diff --git a/frontend/README.md b/frontend/README.md index 370283488..06404b79d 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -223,8 +223,13 @@ server that `veadk frontend` launches — no separate backend. update form and remain in the signed-in user's browser draft so a resumed draft shows the same editable values. Disabling Feishu during an update removes both Runtime variables; leaving it enabled preserves or replaces - them with the submitted values. Long descriptions and prompts - scroll within bounded editors, while the sidebar stays pinned to the + them with the submitted values. Model configuration supports ordered fallback + models. Same-provider fallbacks stay compact and are emitted through the + existing `model_name=[primary, ...fallbacks]` contract; cross-provider + fallbacks are emitted as `ModelFallbackEndpoint` entries and reference API + keys by Runtime environment variable name so secret values stay out of YAML, + source, and local browser drafts. Long descriptions and + prompts scroll within bounded editors, while the sidebar stays pinned to the viewport. On narrow desktop windows, the structure, configuration, and debug panels stack vertically instead of squeezing the form. The deployment page pairs an inspectable Agent topology with a vertically aligned action rail for diff --git a/frontend/src/create/CustomCreate.tsx b/frontend/src/create/CustomCreate.tsx index bd1dd6d92..b598b1fe8 100644 --- a/frontend/src/create/CustomCreate.tsx +++ b/frontend/src/create/CustomCreate.tsx @@ -42,6 +42,7 @@ import { type CloudEnvironmentConfig, type HarnessSidecarOptionId, type HarnessSidecarProfileId, + type ModelFallbackDraft, type McpTool, emptyDraft, } from "./types"; @@ -121,6 +122,11 @@ import { type ModelSource, } from "./modelSource"; import { resolveRuntimeName, runtimeNameProblem } from "./runtimeName"; +import { + normalizeModelFallbacks, + sameProviderModelFallbacks, +} from "./modelFallbacks"; +import { ModelFallbackFields } from "./ModelFallbackFields"; import type { AgentProject } from "./project"; import { AgentBuildCanvas } from "./AgentBuildCanvas"; import { @@ -186,6 +192,7 @@ import { customModelCredentialRequirements, customModelEnvironmentBindings, } from "./customModelCredentials"; +import { isValidModelApiBaseUrl } from "./modelApiBase"; import "./CustomCreate.css"; const MarkdownPromptEditor = lazy(() => import("./MarkdownPromptEditor")); @@ -963,18 +970,30 @@ function CatalogSelect({ function ModelOptionSelect({ value, + fallbacks, cloudProvider, + agentName, apiKeyId, apiKeyName, + customModelSecretValues, + configuredRuntimeEnvKeys, onApiKeyChange, onChange, + onFallbacksChange, + onCustomModelSecretChange, }: { value: string; + fallbacks: ModelFallbackDraft[]; cloudProvider: CloudProvider; + agentName: string; apiKeyId?: string; apiKeyName?: string; + customModelSecretValues: Record; + configuredRuntimeEnvKeys?: readonly string[]; onApiKeyChange: (key: ModelApiKeyOption) => void; onChange: (modelId: string) => void; + onFallbacksChange: (fallbacks: ModelFallbackDraft[]) => void; + onCustomModelSecretChange: (key: string, value: string) => void; }) { const { t } = useTranslation("create"); const [apiKeys, setApiKeys] = useState([]); @@ -987,6 +1006,7 @@ function ModelOptionSelect({ const [keySelectionRevision, setKeySelectionRevision] = useState(0); const [apiKeySearchQuery, setApiKeySearchQuery] = useState(""); const [searchQuery, setSearchQuery] = useState(""); + const [fallbackSearchQuery, setFallbackSearchQuery] = useState(""); useEffect(() => { const controller = new AbortController(); @@ -1101,6 +1121,39 @@ function ModelOptionSelect({ const providerLabel = cloudProvider === "byteplus" ? "BytePlus ModelArk" : t("traditional.model.volcengineArk"); const activationConsoleUrl = modelActivationConsoleUrl(cloudProvider); + const normalizedFallbacks = normalizeModelFallbacks( + normalizedValue, + fallbacks, + ); + const selectedFallbacks = new Set( + sameProviderModelFallbacks(normalizedValue, normalizedFallbacks), + ); + const fallbackModelsForSearch = (currentValue: string) => { + const currentModelId = currentValue.trim(); + return visibleModels.filter((model) => { + const modelId = model.id.trim(); + const alreadySelected = + modelId !== currentModelId && selectedFallbacks.has(modelId); + const primarySelected = modelId !== currentModelId && modelId === normalizedValue; + return ( + !alreadySelected && + !primarySelected && + localPickerMatches(fallbackSearchQuery, [ + model.displayName, + model.id, + model.name, + model.vendorName, + model.activationState, + model.lifecycleStatus, + ]) + ); + }); + }; + const updateFallback = (index: number, modelName: string) => { + const next = [...fallbacks]; + next[index] = modelName; + onFallbacksChange(normalizeModelFallbacks(normalizedValue, next)); + }; return (
@@ -1277,6 +1330,154 @@ function ModelOptionSelect({
+ { + const selectedFallbackModel = visibleModels.find( + (model) => model.id === fallbackValue.trim(), + ); + const fallbackOptions = fallbackModelsForSearch(fallbackValue); + const showUnknownFallback = Boolean( + fallbackValue.trim() && + !selectedFallbackModel && + localPickerMatches(fallbackSearchQuery, [fallbackValue]), + ); + const fallbackLabel = selectedFallbackModel + ? `${selectedFallbackModel.displayName} (${selectedFallbackModel.id})` + : fallbackValue || t("traditional.model.fallbackPlaceholder"); + return ( + ( + <> + {showUnknownFallback && ( + + )} + {fallbackOptions.map((model) => { + const selected = model.id === fallbackValue.trim(); + const selectable = isModelSelectable(model); + const activationRequired = + !selectable && model.activationState !== "Available"; + if (activationRequired) { + return ( + + ); + } + return ( + + ); + })} + + )} + /> + ); + }} + /> {error ? (
@@ -3018,6 +3219,37 @@ function debugRuntimeDraft( }; } +function modelRuntimeEnvKeys( + draft: AgentDraft, + cloudProvider: CloudProvider, +): Set { + const keys = new Set(); + for (const binding of customModelEnvironmentBindings( + draft, + defaultModelApiBase(cloudProvider), + )) { + for (const key of [ + binding.providerKey, + binding.apiBaseKey, + binding.apiKeyKey, + ]) { + if (key) keys.add(key); + } + } + return keys; +} + +function sourcePreservingModelEnvVars( + draft: AgentDraft, + cloudProvider: CloudProvider, + envs: { key: string; value: string }[] | undefined, +): { key: string; value: string }[] { + const allowedKeys = modelRuntimeEnvKeys(draft, cloudProvider); + return (envs ?? []).filter( + ({ key, value }) => allowedKeys.has(key) && value.trim(), + ); +} + function debugSnapshotKey( draft: AgentDraft, transientEnvValues: Record = {}, @@ -3780,6 +4012,11 @@ export function CustomCreate({ const [customModelSecretValues, setCustomModelSecretValues] = useState< Record >(initialState.customModelSecretValues); + const configuredRuntimeEnvKeys = deploymentTarget?.configuredRuntimeEnvKeys ?? []; + const configuredRuntimeEnvKeySet = useMemo( + () => new Set(configuredRuntimeEnvKeys), + [configuredRuntimeEnvKeys], + ); const configuredRuntimeName = draft.deployment?.runtimeName ?? ""; const deploymentRuntimeName = deploymentTarget ? deploymentTarget.name @@ -3789,6 +4026,17 @@ export function CustomCreate({ draft.deployment?.runtimeNameCustomized, ); const transientModelSecretValues = customModelSecretValues; + const patchCustomModelSecret = useCallback((key: string, value: string) => { + setCustomModelSecretValues((current) => { + const next = { ...current }; + if (value) { + next[key] = value; + } else { + delete next[key]; + } + return next; + }); + }, []); useEffect(() => { setDraft((current) => draftForCloudProvider(current, cloudProvider)); }, [cloudProvider]); @@ -4154,6 +4402,10 @@ export function CustomCreate({ patch({ modelSource: source, modelName: nextModelName, + modelFallbacks: + source === "custom" && modelSource === "ark" + ? [] + : normalizeModelFallbacks(nextModelName, node.modelFallbacks), }); }; @@ -4221,6 +4473,12 @@ export function CustomCreate({ name: node.name.trim() || createT("helpers.customModel.fallbackName"), }), ); + const selectedCustomModelApiKeyConfigured = selectedCustomModelCredential + ? configuredRuntimeEnvKeySet.has(selectedCustomModelCredential.key) + : false; + const customModelApiBaseInvalid = !isValidModelApiBaseUrl( + node.modelApiBase, + ); const updateNewWorkbenchModelApiKey = useCallback( (key: ModelApiKeyOption) => { @@ -4790,7 +5048,9 @@ export function CustomCreate({ deploymentTarget || mcpGatewayManaged ? codegenDraft(draft) : undefined, updateEtag: deploymentTarget?.etag, baseRuntimeVersion: deploymentTarget?.currentVersion, - envs: sourcePreserving ? [] : options?.envs, + envs: sourcePreserving + ? sourcePreservingModelEnvVars(draft, cloudProvider, options?.envs) + : options?.envs, mcpSecretValues: sourcePreserving ? sourcePreservingMcpSecretValues(draft) : mcpGatewayManaged @@ -4930,7 +5190,11 @@ export function CustomCreate({ const activeEnvSpecs = deploymentDraft.deployment?.feishuEnabled ? [...activeDeploymentEnv.specs, ...FEISHU_ENV] : activeDeploymentEnv.specs; - const missingEnv = firstMissingRuntimeEnv(activeEnvSpecs, allEnvValues); + const missingEnv = firstMissingRuntimeEnv( + activeEnvSpecs, + allEnvValues, + configuredRuntimeEnvKeys, + ); if (missingEnv) { setNewWorkbenchDeployError( t("traditional.deployment.requiredEnv", { @@ -5232,13 +5496,14 @@ export function CustomCreate({ ? (customModelSecretValues[selectedCustomModelCredential.key] ?? "") : "" } + customModelSecretValues={customModelSecretValues} + customModelApiKeyConfigured={selectedCustomModelApiKeyConfigured} + configuredRuntimeEnvKeys={configuredRuntimeEnvKeys} onCustomModelApiKeyChange={(value) => { if (!selectedCustomModelCredential) return; - setCustomModelSecretValues((current) => ({ - ...current, - [selectedCustomModelCredential.key]: value, - })); + patchCustomModelSecret(selectedCustomModelCredential.key, value); }} + onCustomModelSecretChange={patchCustomModelSecret} onSelectedSkillsChange={(selectedSkills) => setDraft((current) => ({ ...current, selectedSkills })) } @@ -5675,11 +5940,19 @@ export function CustomCreate({ setDraft((current) => ({ ...current, @@ -5693,7 +5966,19 @@ export function CustomCreate({ })) } onChange={(modelName) => - patch({ modelName }) + patch({ + modelName, + modelFallbacks: normalizeModelFallbacks( + modelName, + node.modelFallbacks, + ), + }) + } + onFallbacksChange={(modelFallbacks) => + patch({ modelFallbacks }) + } + onCustomModelSecretChange={ + patchCustomModelSecret } />
@@ -5707,7 +5992,13 @@ export function CustomCreate({ className="cw-input" value={node.modelName ?? ""} onChange={(e) => - patch({ modelName: e.target.value }) + patch({ + modelName: e.target.value, + modelFallbacks: normalizeModelFallbacks( + e.target.value, + node.modelFallbacks, + ), + }) } /> @@ -5743,16 +6034,28 @@ export function CustomCreate({ patch({ modelApiBase: e.target.value, }) } /> + {customModelApiBaseInvalid ? ( + + {t( + "traditional.model.invalidApiBase", + )} + + ) : null}
)} + {modelSource === "custom" && ( + + patch({ modelFallbacks }) + } + onSecretChange={patchCustomModelSecret} + /> + )} @@ -6269,12 +6595,7 @@ export function CustomCreate({ deploymentEnv={deploymentEnv.specs} requiredSecretEnv={customModelCredentials} requiredSecretEnvValues={customModelSecretValues} - onRequiredSecretEnvChange={(key, value) => - setCustomModelSecretValues((current) => ({ - ...current, - [key]: value, - })) - } + onRequiredSecretEnvChange={patchCustomModelSecret} deploymentEnvValues={{ ...providerDraft.deployment?.envValues, ...customModelSecretValues, diff --git a/frontend/src/create/ModelFallbackFields.css b/frontend/src/create/ModelFallbackFields.css new file mode 100644 index 000000000..3b340c8a5 --- /dev/null +++ b/frontend/src/create/ModelFallbackFields.css @@ -0,0 +1,221 @@ +.model-fallback-fields { + display: grid; + min-width: 0; + gap: 8px; +} + +.model-fallback-fields__rows { + display: grid; + min-width: 0; + gap: 8px; +} + +.model-fallback-fields__row { + display: grid; + grid-template-columns: minmax(0, 1fr) auto; + align-items: center; + gap: 8px; + min-width: 0; +} + +.model-fallback-fields__item { + display: grid; + min-width: 0; + gap: 8px; + padding: 8px; + border: 1px solid hsl(var(--border) / 0.78); + border-radius: 8px; + background: hsl(var(--background)); +} + +.model-fallback-fields__toolbar { + display: flex; + min-width: 0; + align-items: center; + justify-content: space-between; + gap: 8px; +} + +.model-fallback-fields__type { + display: inline-grid; + grid-template-columns: repeat(2, minmax(0, 1fr)); + gap: 2px; + padding: 2px; + border: 1px solid hsl(var(--border) / 0.7); + border-radius: 8px; + background: hsl(var(--muted) / 0.18); +} + +.model-fallback-fields__type button { + min-height: 24px; + border: 0; + border-radius: 6px; + background: transparent; + color: hsl(var(--muted-foreground)); + cursor: pointer; + font: inherit; + font-size: 11.5px; + font-weight: 500; + line-height: 1.3; + padding: 0 7px; + white-space: nowrap; +} + +.model-fallback-fields__type button:hover, +.model-fallback-fields__type button:focus-visible { + color: hsl(var(--foreground)); + outline: none; +} + +.model-fallback-fields__type button.is-on { + background: hsl(var(--background)); + color: hsl(var(--foreground)); + box-shadow: 0 0 0 1px hsl(var(--border) / 0.72); +} + +.model-fallback-fields__model-name, +.model-fallback-fields__field { + display: grid; + min-width: 0; + gap: 4px; +} + +.model-fallback-fields__field-label { + color: hsl(var(--foreground)); + font-size: 11.5px; + font-weight: 500; + line-height: 1.35; +} + +.model-fallback-fields__endpoint-details { + display: grid; + min-width: 0; + grid-template-columns: repeat(2, minmax(0, 1fr)); + gap: 8px; +} + +.model-fallback-fields__input { + min-width: 0; +} + +.model-fallback-fields__input--workbench { + width: 100%; + height: 48px; + border: 1px solid hsl(var(--border)); + border-radius: 8px; + background: hsl(var(--background)); + color: hsl(var(--foreground)); + padding: 0 14px; + font: inherit; + font-size: 14px; + line-height: 20px; + outline: none; + transition: + border-color 0.14s ease, + box-shadow 0.14s ease; +} + +.model-fallback-fields__input--workbench:focus { + border-color: hsl(var(--ring)); + box-shadow: 0 0 0 3px hsl(var(--ring) / 0.16); +} + +.model-fallback-fields__input[aria-invalid="true"] { + border-color: hsl(var(--destructive) / 0.7); + box-shadow: 0 0 0 3px hsl(var(--destructive) / 0.08); +} + +.model-fallback-fields__error { + margin: -2px 0 0; + color: hsl(var(--destructive)); + font-size: 11.5px; + font-weight: 400; + line-height: 1.4; +} + +.model-fallback-fields__add, +.model-fallback-fields__remove { + justify-self: flex-start; + min-height: 32px; + white-space: nowrap; +} + +.model-fallback-fields__remove { + padding-inline: 10px; +} + +.model-fallback-fields__actions { + display: flex; + min-width: 0; + flex-wrap: wrap; + gap: 8px; +} + +.new-agent-workbench__secondary-button { + display: inline-flex; + align-items: center; + justify-content: center; + gap: 6px; + border: 1px solid hsl(var(--border)); + border-radius: 8px; + background: hsl(var(--background)); + color: hsl(var(--foreground)); + padding: 7px 12px; + font: inherit; + font-size: 13px; + font-weight: 500; + line-height: 18px; + cursor: pointer; + transition: + border-color 0.14s ease, + background-color 0.14s ease, + color 0.14s ease; +} + +.new-agent-workbench__secondary-button:hover, +.new-agent-workbench__secondary-button:focus-visible { + border-color: hsl(var(--foreground) / 0.22); + background: hsl(var(--muted) / 0.28); +} + +.new-agent-workbench__secondary-button:disabled { + cursor: not-allowed; + color: hsl(var(--muted-foreground)); + opacity: 0.65; +} + +.model-fallback-fields__help { + margin: 0; + color: hsl(var(--muted-foreground)); + font-size: 12px; + font-weight: 400; + line-height: 1.5; +} + +.model-fallback-fields__issue { + margin: -2px 0 0; + color: hsl(var(--destructive)); + font-size: 12px; + font-weight: 400; + line-height: 1.45; +} + +.new-agent-workbench__field > .model-fallback-fields__help, +.new-agent-workbench__field > .model-fallback-fields__issue { + margin: 0; +} + +@media (max-width: 700px) { + .model-fallback-fields__row { + grid-template-columns: minmax(0, 1fr); + } + + .model-fallback-fields__endpoint-details { + grid-template-columns: minmax(0, 1fr); + } + + .model-fallback-fields__toolbar { + align-items: stretch; + flex-direction: column; + } +} diff --git a/frontend/src/create/ModelFallbackFields.tsx b/frontend/src/create/ModelFallbackFields.tsx new file mode 100644 index 000000000..b62bb7398 --- /dev/null +++ b/frontend/src/create/ModelFallbackFields.tsx @@ -0,0 +1,344 @@ +import { type ReactNode, useId } from "react"; +import { useTranslation } from "react-i18next"; + +import { + defaultModelFallbackApiKeyEnv, + isModelFallbackEndpoint, + modelFallbackApiKeyEnv, + modelFallbackName, + nextModelFallbackApiKeyEnv, + normalizeModelFallbacks, +} from "./modelFallbacks"; +import { isValidModelApiBaseUrl } from "./modelApiBase"; +import type { ModelFallbackDraft, ModelFallbackEndpointDraft } from "./types"; +import "./ModelFallbackFields.css"; + +type ModelFallbackFieldsVariant = "traditional" | "workbench"; + +export interface SameProviderFallbackFieldRenderProps { + index: number; + value: string; + onChange: (modelName: string) => void; +} + +function endpointFromFallback( + fallback: ModelFallbackDraft, + agentName: string | undefined, + index: number, + values: readonly ModelFallbackDraft[], +): ModelFallbackEndpointDraft { + if (isModelFallbackEndpoint(fallback)) return fallback; + return { + modelName: fallback.trim(), + modelProvider: "", + modelApiBase: "", + modelApiKeyEnv: nextModelFallbackApiKeyEnv(agentName, index, values), + }; +} + +export function ModelFallbackFields({ + variant, + primaryModelName, + agentName, + value, + secretValues, + configuredSecretEnvKeys, + embedded, + onChange, + onSecretChange, + renderSameProviderField, +}: { + variant: ModelFallbackFieldsVariant; + primaryModelName?: string; + agentName?: string; + value?: ModelFallbackDraft[]; + secretValues?: Record; + configuredSecretEnvKeys?: readonly string[]; + embedded?: boolean; + onChange: (fallbacks: ModelFallbackDraft[]) => void; + onSecretChange?: (key: string, value: string) => void; + renderSameProviderField?: ( + props: SameProviderFallbackFieldRenderProps, + ) => ReactNode; +}) { + const { t } = useTranslation("create"); + const id = useId(); + const values = value ?? []; + const configuredSecretEnvKeySet = new Set(configuredSecretEnvKeys ?? []); + const primary = (primaryModelName ?? "").trim(); + const fieldClassName = + embedded + ? "cw-model-picker-field" + : variant === "workbench" + ? "new-agent-workbench__field" + : "cw-field"; + const labelClassName = + embedded + ? "cw-model-picker-label" + : variant === "workbench" + ? "new-agent-workbench__model-field-label" + : "cw-label"; + const inputClassName = + variant === "workbench" + ? "model-fallback-fields__input model-fallback-fields__input--workbench" + : "model-fallback-fields__input cw-input"; + const addButtonClassName = + variant === "workbench" + ? "model-fallback-fields__add new-agent-workbench__secondary-button" + : "model-fallback-fields__add cw-btn cw-btn-soft"; + const removeButtonClassName = + variant === "workbench" + ? "model-fallback-fields__remove new-agent-workbench__secondary-button" + : "model-fallback-fields__remove cw-btn cw-btn-ghost"; + + const normalized = normalizeModelFallbacks(primary, values); + const filledValueCount = values.filter((item) => { + if (typeof item === "string") return Boolean(item.trim()); + return ( + isModelFallbackEndpoint(item) && + Boolean( + item.modelName.trim() || + item.modelProvider?.trim() || + item.modelApiBase?.trim(), + ) + ); + }).length; + const hasIgnoredValues = + filledValueCount > 0 && normalized.length !== filledValueCount; + + const replaceFallback = ( + index: number, + fallback: ModelFallbackDraft, + normalize = false, + ) => { + const next = [...values]; + next[index] = fallback; + onChange(normalize ? normalizeModelFallbacks(primary, next) : next); + }; + + const removeFallback = (index: number) => { + const fallback = values[index]; + if (isModelFallbackEndpoint(fallback) && fallback.modelApiKeyEnv) { + onSecretChange?.(fallback.modelApiKeyEnv, ""); + } + onChange(values.filter((_, itemIndex) => itemIndex !== index)); + }; + + return ( +
+ {t(`${variant}.model.fallbacks`)} +
+ {values.length ? ( +
+ {values.map((fallback, index) => { + const endpoint = isModelFallbackEndpoint(fallback) + ? fallback + : null; + const fallbackValue = modelFallbackName(fallback); + const fallbackApiKeyEnv = + endpoint + ? modelFallbackApiKeyEnv(agentName, index, values, endpoint) + : defaultModelFallbackApiKeyEnv(agentName, index); + const secretValue = secretValues?.[fallbackApiKeyEnv] ?? ""; + const configuredSecret = + configuredSecretEnvKeySet.has(fallbackApiKeyEnv); + const modelInputId = `${id}-${index}-model`; + const apiBaseInvalid = + endpoint !== null && + !isValidModelApiBaseUrl(endpoint.modelApiBase); + return ( +
+
+
+ + +
+ +
+
+ + {t(`${variant}.model.name`)} + + {!endpoint ? ( + renderSameProviderField ? ( + renderSameProviderField({ + index, + value: fallbackValue, + onChange: (modelName) => + replaceFallback(index, modelName, true), + }) + ) : ( + + replaceFallback(index, event.currentTarget.value) + } + /> + ) + ) : ( + + replaceFallback(index, { + ...endpoint, + modelName: event.currentTarget.value, + modelApiKeyEnv: fallbackApiKeyEnv, + }) + } + /> + )} +
+ {endpoint ? ( +
+ + + +
+ ) : null} +
+ ); + })} +
+ ) : null} +
+ +
+

+ {t(`${variant}.model.fallbackHelp`)} +

+ {hasIgnoredValues ? ( +

+ {t(`${variant}.model.fallbackIgnored`)} +

+ ) : null} +
+
+ ); +} diff --git a/frontend/src/create/NewAgentWorkbench.tsx b/frontend/src/create/NewAgentWorkbench.tsx index 1869c2bc4..659470531 100644 --- a/frontend/src/create/NewAgentWorkbench.tsx +++ b/frontend/src/create/NewAgentWorkbench.tsx @@ -42,10 +42,17 @@ import { SkillSourcePicker } from "../ui/SkillSourcePicker"; import { agentNameProblem } from "./agentNameValidation"; import type { SelectedSkill } from "./skills/types"; import { resolvedModelSource, type ModelSource } from "./modelSource"; +import { + normalizeModelFallbacks, + sameProviderModelFallbacks, +} from "./modelFallbacks"; +import { ModelFallbackFields } from "./ModelFallbackFields"; +import { isValidModelApiBaseUrl } from "./modelApiBase"; import { STM_BACKENDS, type EnvVar } from "./veadkCatalog"; import type { AgentDraft, CloudEnvironmentConfig, + ModelFallbackDraft, NetworkConfig, } from "./types"; import "./NewAgentWorkbench.css"; @@ -68,7 +75,11 @@ export interface NewAgentWorkbenchProps { ) => void; onModelApiKeyChange: (key: ModelApiKeyOption) => void; customModelApiKey: string; + customModelSecretValues: Record; + customModelApiKeyConfigured?: boolean; + configuredRuntimeEnvKeys?: readonly string[]; onCustomModelApiKeyChange: (value: string) => void; + onCustomModelSecretChange: (key: string, value: string) => void; onSelectedSkillsChange: (skills: SelectedSkill[]) => void; onCloudEnvironmentChange: (environment: CloudEnvironmentConfig) => void; onDeployRegionChange: (region: string) => void; @@ -158,34 +169,48 @@ const WIZARD_STEPS: Array<{ function NativeModelPicker({ cloudProvider, source, + agentName, value, apiKeyId, apiKeyName, provider, apiBase, customApiKey, + customModelSecretValues, + customModelApiKeyConfigured, + configuredRuntimeEnvKeys, + fallbacks, onSourceChange, onApiKeyChange, onModelNameChange, + onModelFallbacksChange, onProviderChange, onApiBaseChange, onCustomApiKeyChange, + onCustomModelSecretChange, onLoadingChange, }: { cloudProvider: CloudProvider; source: ModelSource; + agentName: string; value: string; apiKeyId?: string; apiKeyName?: string; provider: string; apiBase: string; customApiKey: string; + customModelSecretValues: Record; + customModelApiKeyConfigured?: boolean; + configuredRuntimeEnvKeys?: readonly string[]; + fallbacks: ModelFallbackDraft[]; onSourceChange: (source: ModelSource) => void; onApiKeyChange: (key: ModelApiKeyOption) => void; onModelNameChange: (modelName: string) => void; + onModelFallbacksChange: (fallbacks: ModelFallbackDraft[]) => void; onProviderChange: (provider: string) => void; onApiBaseChange: (apiBase: string) => void; onCustomApiKeyChange: (value: string) => void; + onCustomModelSecretChange: (key: string, value: string) => void; onLoadingChange: (loading: boolean) => void; }) { const { t } = useTranslation("create"); @@ -312,6 +337,43 @@ function NativeModelPicker({ } return available; }, [models, value]); + const selectedFallbacks = useMemo( + () => + new Set( + sameProviderModelFallbacks(value, fallbacks).map((modelName) => + modelName.trim(), + ), + ), + [fallbacks, value], + ); + const modelOptionsForFallback = (currentValue: string) => { + const currentModelName = currentValue.trim(); + const options = modelOptions.filter((option) => { + const optionValue = option.value.trim(); + const selectedElsewhere = + optionValue !== currentModelName && selectedFallbacks.has(optionValue); + const primarySelected = + optionValue !== currentModelName && optionValue === value.trim(); + return !selectedElsewhere && !primarySelected; + }); + if ( + currentModelName && + !options.some((option) => option.value === currentModelName) + ) { + options.unshift({ + value: currentModelName, + label: currentModelName, + metadata: t("workbench.model.currentConfiguration"), + }); + } + return options; + }; + const updateFallback = (index: number, modelName: string) => { + const next = [...fallbacks]; + next[index] = modelName; + onModelFallbacksChange(normalizeModelFallbacks(value, next)); + }; + const apiBaseInvalid = !isValidModelApiBaseUrl(apiBase); return (
@@ -380,6 +442,35 @@ function NativeModelPicker({ onChange={(option) => onModelNameChange(option.value)} /> + ( + onApiBaseChange(event.currentTarget.value)} /> + {apiBaseInvalid ? ( + + {t("workbench.model.invalidApiBase")} + + ) : null} + )} {error ? ( @@ -666,7 +779,11 @@ export function NewAgentWorkbench({ onDeploymentPatch, onModelApiKeyChange, customModelApiKey, + customModelSecretValues, + customModelApiKeyConfigured, + configuredRuntimeEnvKeys, onCustomModelApiKeyChange, + onCustomModelSecretChange, onSelectedSkillsChange, onCloudEnvironmentChange, onDeployRegionChange, @@ -1035,27 +1152,51 @@ export function NewAgentWorkbench({ { setModelDataLoading(source === "ark"); + const nextModelName = + source === "custom" && modelSource === "ark" + ? "" + : source === "ark" && !draft.modelName?.trim() + ? defaultModelName(cloudProvider) + : draft.modelName; onDraftPatch({ modelSource: source, - modelName: + modelName: nextModelName, + modelFallbacks: source === "custom" && modelSource === "ark" - ? "" - : source === "ark" && !draft.modelName?.trim() - ? defaultModelName(cloudProvider) - : draft.modelName, + ? [] + : normalizeModelFallbacks( + nextModelName, + draft.modelFallbacks, + ), }); }} onApiKeyChange={onModelApiKeyChange} onModelNameChange={(modelName) => - onDraftPatch({ modelName }) + onDraftPatch({ + modelName, + modelFallbacks: normalizeModelFallbacks( + modelName, + draft.modelFallbacks, + ), + }) + } + onModelFallbacksChange={(modelFallbacks) => + onDraftPatch({ modelFallbacks }) } onProviderChange={(modelProvider) => onDraftPatch({ modelProvider }) @@ -1064,6 +1205,7 @@ export function NewAgentWorkbench({ onDraftPatch({ modelApiBase }) } onCustomApiKeyChange={onCustomModelApiKeyChange} + onCustomModelSecretChange={onCustomModelSecretChange} onLoadingChange={setModelDataLoading} /> {showAgentErrors && modelMissing ? ( diff --git a/frontend/src/create/agentDraftStorage.ts b/frontend/src/create/agentDraftStorage.ts index 93e6e7f76..22972deb2 100644 --- a/frontend/src/create/agentDraftStorage.ts +++ b/frontend/src/create/agentDraftStorage.ts @@ -1,6 +1,11 @@ import type { AgentDraft } from "./types"; import { createT } from "./i18n"; import { prepareMcpAuth, referencedMcpEnvKeys } from "./mcpAuth"; +import { defaultModelApiBase } from "../adk/cloudProvider"; +import { + customModelCredentialRequirements, + referencedModelFallbackApiKeyEnvKeys, +} from "./customModelCredentials"; const WORKSPACE_DRAFT_STORAGE_VERSION = 1; const SERVER_MANAGED_MODEL_API_KEY = "MODEL_AGENT_API_KEY"; @@ -74,6 +79,7 @@ function stripBrowserStorageSecrets( draft: AgentDraft, protectedMcpKeys: ReadonlySet, transientMcpKeys: ReadonlySet, + protectedModelKeys: ReadonlySet, ): AgentDraft { const deployment = draft.deployment; const envValues = deployment?.envValues; @@ -86,7 +92,8 @@ function stripBrowserStorageSecrets( Object.entries(envValues).filter( ([key]) => key !== SERVER_MANAGED_MODEL_API_KEY && - !protectedMcpKeys.has(key), + !protectedMcpKeys.has(key) && + !protectedModelKeys.has(key), ), ), } @@ -112,7 +119,12 @@ function stripBrowserStorageSecrets( : {}), ...(safeDeployment ? { deployment: safeDeployment } : {}), subAgents: draft.subAgents.map((child) => - stripBrowserStorageSecrets(child, protectedMcpKeys, transientMcpKeys), + stripBrowserStorageSecrets( + child, + protectedMcpKeys, + transientMcpKeys, + protectedModelKeys, + ), ), ...(draft.workflow ? { @@ -124,6 +136,7 @@ function stripBrowserStorageSecrets( node.agent, protectedMcpKeys, transientMcpKeys, + protectedModelKeys, ), })), }, @@ -172,10 +185,21 @@ function preserveConfiguredMcpState( export function sanitizeAgentDraftForStorage(draft: AgentDraft): AgentDraft { const prepared = prepareMcpAuth(draft); const storageDraft = preserveConfiguredMcpState(prepared.draft, draft); + const protectedModelKeys = new Set( + [ + ...customModelCredentialRequirements( + prepared.draft, + defaultModelApiBase(prepared.draft.cloudProvider ?? "volcengine"), + ).map((item) => item.key), + ...referencedModelFallbackApiKeyEnvKeys(prepared.draft), + ...referencedModelFallbackApiKeyEnvKeys(draft), + ], + ); return stripBrowserStorageSecrets( storageDraft, new Set(referencedMcpEnvKeys(prepared.draft)), new Set(Object.keys(prepared.envValues)), + protectedModelKeys, ); } diff --git a/frontend/src/create/configYaml.ts b/frontend/src/create/configYaml.ts index f69a062ef..9f27a5e54 100644 --- a/frontend/src/create/configYaml.ts +++ b/frontend/src/create/configYaml.ts @@ -6,6 +6,7 @@ import { parse, stringify } from "yaml"; import { a2aRegistryDefaults } from "./veadkCatalog"; import { normalizeDraft } from "./normalizeDraft"; import { prepareMcpAuth } from "./mcpAuth"; +import { normalizeModelFallbacks } from "./modelFallbacks"; import type { AgentDraft } from "./types"; interface ConfigYamlLabels { @@ -45,7 +46,15 @@ function toConfig(draft: AgentDraft, root = true): Record { o.description = draft.description; o.instruction = draft.instruction; if (draft.agentType === "loop") o.maxIterations = draft.maxIterations ?? 3; - if (draft.modelName?.trim()) o.modelName = draft.modelName.trim(); + const primaryModelName = draft.modelName?.trim() ?? ""; + const modelFallbacks = normalizeModelFallbacks( + primaryModelName, + draft.modelFallbacks, + ); + if (primaryModelName) { + o.modelName = primaryModelName; + if (modelFallbacks.length) o.modelFallbacks = modelFallbacks; + } if (draft.modelSource) o.modelSource = draft.modelSource; if (draft.modelSource !== "ark") { if (draft.modelProvider?.trim()) o.modelProvider = draft.modelProvider.trim(); diff --git a/frontend/src/create/customModelCredentials.ts b/frontend/src/create/customModelCredentials.ts index 994ab5311..98bafcf0b 100644 --- a/frontend/src/create/customModelCredentials.ts +++ b/frontend/src/create/customModelCredentials.ts @@ -1,5 +1,9 @@ import type { AgentDraft } from "./types"; import { createT } from "./i18n"; +import { + defaultModelFallbackApiKeyEnv, + isModelFallbackEndpoint, +} from "./modelFallbacks"; export interface CustomModelCredentialRequirement { key: string; @@ -62,14 +66,15 @@ export function customModelEnvironmentBindings( const used = new Set(); const visit = (node: AgentDraft) => { + const segment = envSegment(node.name, "AGENT"); + const isLlmNode = node.agentType === undefined || node.agentType === "llm"; if ( - node.agentType === "llm" && + isLlmNode && node.modelSource !== "ark" && (node.modelSource === "custom" || (!!node.modelApiBase?.trim() && !isProviderModelApiBase(node.modelApiBase, officialBaseUrl))) ) { - const segment = envSegment(node.name, "AGENT"); const provider = node.modelProvider?.trim() ?? ""; const apiBase = node.modelApiBase?.trim() ?? ""; const providerKey = provider @@ -93,6 +98,29 @@ export function customModelEnvironmentBindings( }), }); } + if (!isLlmNode) { + node.subAgents.forEach(visit); + return; + } + node.modelFallbacks?.forEach((fallback, index) => { + if (!isModelFallbackEndpoint(fallback)) return; + const modelName = fallback.modelName.trim(); + if (!modelName) return; + const explicitKey = fallback.modelApiKeyEnv?.trim() ?? ""; + const apiKeyKey = + explicitKey || + nextEnvName(defaultModelFallbackApiKeyEnv(node.name, index), used); + used.add(apiKeyKey); + bindings.push({ + apiKeyKey, + provider: fallback.modelProvider?.trim() ?? "", + apiBase: fallback.modelApiBase?.trim() ?? "", + label: createT("helpers.customModel.fallbackApiKeyLabel", { + name: node.name.trim() || createT("helpers.customModel.fallbackName"), + model: modelName, + }), + }); + }); node.subAgents.forEach(visit); }; @@ -109,3 +137,18 @@ export function customModelCredentialRequirements( ({ apiKeyKey, label }) => ({ key: apiKeyKey, label }), ); } + +export function referencedModelFallbackApiKeyEnvKeys(root: AgentDraft): string[] { + const keys = new Set(); + const visit = (node: AgentDraft) => { + for (const fallback of node.modelFallbacks ?? []) { + if (!isModelFallbackEndpoint(fallback)) continue; + const key = fallback.modelApiKeyEnv?.trim() ?? ""; + if (key) keys.add(key); + } + node.subAgents.forEach(visit); + node.workflow?.nodes.forEach((workflowNode) => visit(workflowNode.agent)); + }; + visit(root); + return [...keys]; +} diff --git a/frontend/src/create/deploymentEnv.ts b/frontend/src/create/deploymentEnv.ts index be0c8fdaf..8354c9395 100644 --- a/frontend/src/create/deploymentEnv.ts +++ b/frontend/src/create/deploymentEnv.ts @@ -102,18 +102,22 @@ export function runtimeEnvVars( export function firstMissingRuntimeEnv( specs: RuntimeEnvSpec[], values: Record, + configuredKeys: readonly string[] = [], ): RuntimeEnvSpec | undefined { - return missingRuntimeEnvs(specs, values)[0]; + return missingRuntimeEnvs(specs, values, configuredKeys)[0]; } export function missingRuntimeEnvs( specs: RuntimeEnvSpec[], values: Record, + configuredKeys: readonly string[] = [], ): RuntimeEnvSpec[] { + const configured = new Set(configuredKeys); return specs.filter( (spec) => spec.required && !spec.serverManaged && + !configured.has(spec.key) && !runtimeEnvValue(spec, values).trim(), ); } diff --git a/frontend/src/create/modelApiBase.ts b/frontend/src/create/modelApiBase.ts new file mode 100644 index 000000000..54a5289a5 --- /dev/null +++ b/frontend/src/create/modelApiBase.ts @@ -0,0 +1,15 @@ +export function isValidModelApiBaseUrl(value: string | undefined): boolean { + const raw = value?.trim(); + if (!raw) return true; + try { + const url = new URL(raw); + return ( + (url.protocol === "https:" || url.protocol === "http:") && + url.hostname.length > 0 && + url.username === "" && + url.password === "" + ); + } catch { + return false; + } +} diff --git a/frontend/src/create/modelFallbacks.ts b/frontend/src/create/modelFallbacks.ts new file mode 100644 index 000000000..04091723e --- /dev/null +++ b/frontend/src/create/modelFallbacks.ts @@ -0,0 +1,170 @@ +import type { ModelFallbackDraft, ModelFallbackEndpointDraft } from "./types"; + +const ENV_NAME_RE = /^[A-Za-z_][A-Za-z0-9_]*$/; + +function trimString(value: unknown): string { + return typeof value === "string" ? value.trim() : ""; +} + +export function isModelFallbackEndpoint( + value: ModelFallbackDraft | unknown, +): value is ModelFallbackEndpointDraft { + return ( + typeof value === "object" && + value !== null && + !Array.isArray(value) && + typeof (value as Partial).modelName === "string" + ); +} + +export function modelFallbackName(value: ModelFallbackDraft): string { + return typeof value === "string" ? value : value.modelName; +} + +export function modelFallbackIsSameProvider(value: ModelFallbackDraft): boolean { + return ( + typeof value === "string" || + (!value.modelProvider?.trim() && + !value.modelApiBase?.trim() && + !value.modelApiKeyEnv?.trim()) + ); +} + +export function defaultModelFallbackApiKeyEnv( + agentName: string | null | undefined, + index: number, +): string { + const segment = + (agentName ?? "") + .trim() + .toUpperCase() + .replace(/[^A-Z0-9]+/g, "_") + .replace(/^_+|_+$/g, "") || + "AGENT"; + return `FALLBACK_MODEL_${segment}_${index + 1}_API_KEY`; +} + +export function isValidModelFallbackApiKeyEnv(value: string): boolean { + return ENV_NAME_RE.test(value); +} + +export function nextModelFallbackApiKeyEnv( + agentName: string | null | undefined, + index: number, + values: readonly unknown[] | null | undefined, +): string { + const used = new Set( + (values ?? []) + .map((value) => + isModelFallbackEndpoint(value) ? value.modelApiKeyEnv?.trim() : "", + ) + .filter((value): value is string => Boolean(value)), + ); + const base = defaultModelFallbackApiKeyEnv(agentName, index); + if (!used.has(base)) return base; + let suffix = 2; + while (used.has(`${base}_${suffix}`)) suffix += 1; + return `${base}_${suffix}`; +} + +export function modelFallbackApiKeyEnv( + agentName: string | null | undefined, + index: number, + values: readonly unknown[] | null | undefined, + endpoint: ModelFallbackEndpointDraft, +): string { + const existing = endpoint.modelApiKeyEnv?.trim() ?? ""; + if (existing && isValidModelFallbackApiKeyEnv(existing)) return existing; + return nextModelFallbackApiKeyEnv(agentName, index, values); +} + +export function normalizeModelFallbacks( + primaryModelName: string | null | undefined, + values: readonly unknown[] | null | undefined, +): ModelFallbackDraft[] { + const primary = (primaryModelName ?? "").trim(); + const seen = new Set(); + if (primary) seen.add(`same:${primary}`); + + const fallbacks: ModelFallbackDraft[] = []; + for (const rawValue of values ?? []) { + const normalized = normalizeRawModelFallback(rawValue); + if (!normalized) continue; + const modelName = modelFallbackName(normalized).trim(); + const sameProvider = modelFallbackIsSameProvider(normalized); + if (!modelName) continue; + if (sameProvider && modelName === primary) continue; + const key = + typeof normalized === "string" + ? `same:${modelName}` + : [ + "endpoint", + modelName, + normalized.modelProvider?.trim() ?? "", + normalized.modelApiBase?.trim() ?? "", + normalized.modelApiKeyEnv?.trim() ?? "", + ].join("\u0000"); + if (seen.has(key)) continue; + seen.add(key); + fallbacks.push(normalized); + } + return fallbacks; +} + +function normalizeRawModelFallback(value: unknown): ModelFallbackDraft | null { + if (typeof value === "string") { + const modelName = value.trim(); + return modelName || null; + } + if (!value || typeof value !== "object" || Array.isArray(value)) { + return null; + } + const raw = value as Record; + const modelName = trimString(raw.modelName ?? raw.model_name ?? raw.model); + if (!modelName) return null; + const endpoint: ModelFallbackEndpointDraft = { + modelName, + }; + const modelProvider = trimString( + raw.modelProvider ?? raw.model_provider ?? raw.provider, + ); + const modelApiBase = trimString( + raw.modelApiBase ?? + raw.model_api_base ?? + raw.apiBase ?? + raw.api_base ?? + raw.baseUrl ?? + raw.base_url, + ); + const modelApiKeyEnv = trimString( + raw.modelApiKeyEnv ?? raw.model_api_key_env ?? raw.apiKeyEnv ?? raw.api_key_env, + ); + if (modelProvider) endpoint.modelProvider = modelProvider; + if (modelApiBase) endpoint.modelApiBase = modelApiBase; + if (modelApiKeyEnv && isValidModelFallbackApiKeyEnv(modelApiKeyEnv)) { + endpoint.modelApiKeyEnv = modelApiKeyEnv; + } + return modelFallbackIsSameProvider(endpoint) ? modelName : endpoint; +} + +export function sameProviderModelFallbacks( + primaryModelName: string | null | undefined, + values: readonly unknown[] | null | undefined, +): string[] { + return normalizeModelFallbacks(primaryModelName, values).filter( + (value): value is string => typeof value === "string", + ); +} + +export function normalizeDraftModelNames(rawModelName: unknown, rawFallbacks: unknown) { + const modelNames = Array.isArray(rawModelName) ? rawModelName : [rawModelName]; + const primaryModelName = + typeof modelNames[0] === "string" ? modelNames[0].trim() : ""; + return { + modelName: primaryModelName, + modelFallbacks: normalizeModelFallbacks(primaryModelName, [ + ...modelNames.slice(1), + ...(Array.isArray(rawFallbacks) ? rawFallbacks : []), + ]), + }; +} diff --git a/frontend/src/create/normalizeDraft.ts b/frontend/src/create/normalizeDraft.ts index f2b2fbca4..dfa5c275d 100644 --- a/frontend/src/create/normalizeDraft.ts +++ b/frontend/src/create/normalizeDraft.ts @@ -15,6 +15,7 @@ import { HARNESS_SIDECAR_OPTION_IDS, normalizeHarnessSidecarIntent, } from "./harnessSidecarOptions"; +import { normalizeDraftModelNames } from "./modelFallbacks"; const STM_IDS = new Set(["local", "sqlite", "mysql", "postgresql"]); const LTM_IDS = new Set([ @@ -169,6 +170,7 @@ function parseSubAgents( const parsedType = asAgentType(so.agentType); const agentType = a2aRegistry.enabled && parsedType === "llm" ? "a2a" : parsedType; + const modelNames = normalizeDraftModelNames(so.modelName, so.modelFallbacks); return { ...emptyDraft(childCloudProvider), cloudProvider: childCloudProvider, @@ -178,7 +180,8 @@ function parseSubAgents( agentType, maxIterations: asMaxIterations(so.maxIterations), a2aUrl: asString(so.a2aUrl), - modelName: asString(so.modelName), + modelName: modelNames.modelName, + modelFallbacks: modelNames.modelFallbacks, modelSource: so.modelSource === "custom" || so.modelSource === "ark" ? so.modelSource @@ -302,6 +305,7 @@ export function normalizeDraft(raw: unknown): AgentDraft { const agentType = a2aRegistry.enabled && parsedType === "llm" ? "a2a" : parsedType; const cloudProvider = asCloudProvider(o.cloudProvider); + const modelNames = normalizeDraftModelNames(o.modelName, o.modelFallbacks); const mcpTools = Array.isArray(o.mcpTools) ? (o.mcpTools as unknown[]) @@ -332,7 +336,8 @@ export function normalizeDraft(raw: unknown): AgentDraft { agentType, maxIterations: asMaxIterations(o.maxIterations), a2aUrl: asString(o.a2aUrl), - modelName: asString(o.modelName), + modelName: modelNames.modelName, + modelFallbacks: modelNames.modelFallbacks, modelSource: o.modelSource === "custom" || o.modelSource === "ark" ? o.modelSource diff --git a/frontend/src/create/types.ts b/frontend/src/create/types.ts index c26071b09..72dd6493d 100644 --- a/frontend/src/create/types.ts +++ b/frontend/src/create/types.ts @@ -120,6 +120,15 @@ export interface HarnessSidecarIntent { planHash?: string; } +export interface ModelFallbackEndpointDraft { + modelName: string; + modelProvider?: string; + modelApiBase?: string; + modelApiKeyEnv?: string; +} + +export type ModelFallbackDraft = string | ModelFallbackEndpointDraft; + /** A draft VeADK agent configuration produced by a creation flow. */ export interface AgentDraft { name: string; @@ -146,6 +155,8 @@ export interface AgentDraft { /** Model configuration (optional). Empty values fall back to veadk config/env. */ modelSource?: "ark" | "custom"; modelName?: string; + /** Fallback models tried in order after modelName. Strings reuse the primary provider. */ + modelFallbacks?: ModelFallbackDraft[]; modelProvider?: string; modelApiBase?: string; /** Free-text tool names (legacy; intelligent/template modes still use these). */ @@ -228,6 +239,7 @@ export function emptyDraft(cloudProvider: CloudProvider = "volcengine"): AgentDr registryEndpoint: "", }, modelName: defaultModelName(cloudProvider), + modelFallbacks: [], modelSource: "ark", modelProvider: "", modelApiBase: "", diff --git a/frontend/src/i18n/resources/en-US/create.json b/frontend/src/i18n/resources/en-US/create.json index 11e7fe3e8..c54f1b502 100644 --- a/frontend/src/i18n/resources/en-US/create.json +++ b/frontend/src/i18n/resources/en-US/create.json @@ -60,7 +60,8 @@ }, "customModel": { "fallbackName": "Custom model", - "apiKeyLabel": "{{name}} model API Key" + "apiKeyLabel": "{{name}} model API Key", + "fallbackApiKeyLabel": "{{name}} fallback model {{model}} API Key" }, "deploymentEnv": { "serverInjected": "Provided by the server", @@ -407,12 +408,26 @@ "label": "Model", "source": "Model source", "name": "Model name", + "fallbacks": "Fallback models", + "fallbackPlaceholder": "Fallback model name", + "addFallback": "Add fallback model", + "addProviderFallback": "Add other provider", + "removeFallback": "Remove", + "fallbackType": "Fallback model type", + "fallbackSameProvider": "Same provider", + "fallbackOtherProvider": "Other provider", + "apiKeyEnv": "API Key environment variable", + "invalidApiKeyEnv": "Use letters, numbers, and underscores only, and do not start with a number.", + "fallbackHelp": "Same-provider fallbacks reuse the primary connection. Other providers use separate provider, API base, and API Key settings.", + "fallbackIgnored": "Empty, duplicate, or primary-model entries will be ignored.", "provider": "Provider", + "invalidApiBase": "Enter a valid http:// or https:// URL.", "volcengineArk": "Volcano Ark", "custom": "Custom", "gateway": "Model gateway", "comingSoon": "Coming soon", "currentApiKey": "Current API Key", + "currentConfiguration": "Current configuration", "loadingApiKeys": "Loading API Keys", "selectApiKey": "Select an API Key", "searchApiKeys": "Search API Key names", @@ -649,7 +664,20 @@ "comingSoon": "Coming soon", "configuration": "Model configuration", "name": "Model name", + "fallbacks": "Fallback models", + "fallbackPlaceholder": "Fallback model name", + "addFallback": "Add fallback model", + "addProviderFallback": "Add other provider", + "removeFallback": "Remove", + "fallbackType": "Fallback model type", + "fallbackSameProvider": "Same provider", + "fallbackOtherProvider": "Other provider", + "apiKeyEnv": "API Key environment variable", + "invalidApiKeyEnv": "Use letters, numbers, and underscores only, and do not start with a number.", + "fallbackHelp": "Same-provider fallbacks reuse the primary connection. Other providers use separate provider, API base, and API Key settings.", + "fallbackIgnored": "Empty, duplicate, or primary-model entries will be ignored.", "provider": "Provider", + "invalidApiBase": "Enter a valid http:// or https:// URL.", "liteLlmProviders": "LiteLLM providers", "apiKeyPlaceholder": "Enter the model API Key", "available": "Available", diff --git a/frontend/src/i18n/resources/zh-CN/create.json b/frontend/src/i18n/resources/zh-CN/create.json index 5cff99aaf..eb6662c26 100644 --- a/frontend/src/i18n/resources/zh-CN/create.json +++ b/frontend/src/i18n/resources/zh-CN/create.json @@ -60,7 +60,8 @@ }, "customModel": { "fallbackName": "自定义模型", - "apiKeyLabel": "{{name}} 模型 API Key" + "apiKeyLabel": "{{name}} 模型 API Key", + "fallbackApiKeyLabel": "{{name}} 的备用模型 {{model}} API Key" }, "deploymentEnv": { "serverInjected": "由服务端注入", @@ -407,12 +408,26 @@ "label": "模型", "source": "模型来源", "name": "模型名称", + "fallbacks": "Fallback 模型", + "fallbackPlaceholder": "备用模型名称", + "addFallback": "添加备用模型", + "addProviderFallback": "添加其他服务商", + "removeFallback": "移除", + "fallbackType": "备用模型类型", + "fallbackSameProvider": "同服务商", + "fallbackOtherProvider": "其他服务商", + "apiKeyEnv": "API Key 环境变量", + "invalidApiKeyEnv": "环境变量名只能包含字母、数字和下划线,且不能以数字开头。", + "fallbackHelp": "同服务商备用模型复用主模型连接;其他服务商会使用单独的 provider、API Base 和 API Key。", + "fallbackIgnored": "空值、重复值或与主模型相同的模型会被忽略。", "provider": "服务商 Provider", + "invalidApiBase": "请输入合法的 http:// 或 https:// 链接。", "volcengineArk": "火山方舟", "custom": "自定义", "gateway": "模型网关", "comingSoon": "待上线", "currentApiKey": "当前 API Key", + "currentConfiguration": "当前配置", "loadingApiKeys": "正在加载 API Key", "selectApiKey": "选择 API Key", "searchApiKeys": "搜索 API Key 名称", @@ -649,7 +664,20 @@ "comingSoon": "待上线", "configuration": "模型配置", "name": "模型名称", + "fallbacks": "Fallback 模型", + "fallbackPlaceholder": "备用模型名称", + "addFallback": "添加备用模型", + "addProviderFallback": "添加其他服务商", + "removeFallback": "移除", + "fallbackType": "备用模型类型", + "fallbackSameProvider": "同服务商", + "fallbackOtherProvider": "其他服务商", + "apiKeyEnv": "API Key 环境变量", + "invalidApiKeyEnv": "环境变量名只能包含字母、数字和下划线,且不能以数字开头。", + "fallbackHelp": "同服务商备用模型复用主模型连接;其他服务商会使用单独的 provider、API Base 和 API Key。", + "fallbackIgnored": "空值、重复值或与主模型相同的模型会被忽略。", "provider": "服务商 Provider", + "invalidApiBase": "请输入合法的 http:// 或 https:// 链接。", "liteLlmProviders": "LiteLLM 支持列表", "apiKeyPlaceholder": "请输入模型 API Key", "available": "已开通", diff --git a/frontend/src/ui/ProjectPreview.tsx b/frontend/src/ui/ProjectPreview.tsx index 08e488c3f..84f8fc934 100644 --- a/frontend/src/ui/ProjectPreview.tsx +++ b/frontend/src/ui/ProjectPreview.tsx @@ -1467,7 +1467,9 @@ export function ProjectPreview({ return; } const missingSecret = requiredSecretEnv.find( - (env) => !(effectiveSecretEnvValues[env.key] ?? "").trim(), + (env) => + !(effectiveSecretEnvValues[env.key] ?? "").trim() && + !configuredRuntimeEnvKeySet.has(env.key), ); if (missingSecret) { setSecretEnvErrorKey(missingSecret.key); @@ -1478,6 +1480,7 @@ export function ProjectPreview({ const missingFeatureEnvs = missingRuntimeEnvs( deploymentEnv, deploymentEnvValues, + configuredRuntimeEnvKeys, ); const missingManagedModelEnv = deploymentEnv.find( (env) => @@ -3059,6 +3062,9 @@ export function ProjectPreview({ {requiredSecretEnv.map((env) => { const invalid = secretEnvErrorKey === env.key; const errorId = `${env.key.toLowerCase()}-error`; + const value = effectiveSecretEnvValues[env.key] ?? ""; + const configuredSecret = + configuredRuntimeEnvKeySet.has(env.key); return (
)}
- {t("projectPreview.thisRelease")} + + {configuredSecret && !value.trim() + ? t("projectPreview.synced") + : t("projectPreview.thisRelease")} +
); })} diff --git a/frontend/tests/agentDraftStorage.test.mjs b/frontend/tests/agentDraftStorage.test.mjs index 342bfb94a..a35500ad7 100644 --- a/frontend/tests/agentDraftStorage.test.mjs +++ b/frontend/tests/agentDraftStorage.test.mjs @@ -586,6 +586,79 @@ test("never persists server-managed Ark API key values while retaining selection ); }); +test("never persists cross-provider fallback API key values", () => { + const leakedValue = "fallback-secret-must-not-enter-local-storage"; + const storage = memoryStorage(); + const sourceDraft = draft({ + modelName: "primary", + modelFallbacks: [ + { + modelName: "gpt-4o-mini", + modelProvider: "openai", + modelApiBase: "https://api.openai.com/v1", + modelApiKeyEnv: "OPENAI_BACKUP_API_KEY", + }, + ], + deployment: { + feishuEnabled: false, + envValues: { + OPENAI_BACKUP_API_KEY: leakedValue, + SAFE_SETTING: "kept", + }, + }, + }); + + writeWorkspaceDrafts(storage, "alice", [ + { + id: "draft-with-fallback-secret", + updatedAt: 123, + draft: sourceDraft, + }, + ]); + + const serialized = storage.value(workspaceDraftsKey("alice")); + assert.equal(serialized.includes(leakedValue), false); + const persisted = JSON.parse(serialized).drafts[0].draft; + assert.deepEqual(persisted.deployment.envValues, { SAFE_SETTING: "kept" }); + assert.deepEqual(persisted.modelFallbacks, sourceDraft.modelFallbacks); +}); + +test("does not persist fallback API key values while fallback row is incomplete", () => { + const leakedValue = "drafting-fallback-secret"; + const storage = memoryStorage(); + const sourceDraft = draft({ + modelName: "primary", + modelFallbacks: [ + { + modelName: "", + modelProvider: "openai", + modelApiBase: "https://api.openai.com/v1", + modelApiKeyEnv: "FALLBACK_MODEL_DRAFT_AGENT_1_API_KEY", + }, + ], + deployment: { + feishuEnabled: false, + envValues: { + FALLBACK_MODEL_DRAFT_AGENT_1_API_KEY: leakedValue, + SAFE_SETTING: "kept", + }, + }, + }); + + writeWorkspaceDrafts(storage, "alice", [ + { + id: "draft-with-incomplete-fallback-secret", + updatedAt: 123, + draft: sourceDraft, + }, + ]); + + const serialized = storage.value(workspaceDraftsKey("alice")); + assert.equal(serialized.includes(leakedValue), false); + const persisted = JSON.parse(serialized).drafts[0].draft; + assert.deepEqual(persisted.deployment.envValues, { SAFE_SETTING: "kept" }); +}); + test("loads both legacy arrays and the current versioned payload", () => { const key = workspaceDraftsKey("alice"); const legacyDraft = { id: "legacy", updatedAt: 1, draft: draft() }; diff --git a/frontend/tests/deploymentEnv.test.mjs b/frontend/tests/deploymentEnv.test.mjs index 804eb469d..2770ae3ff 100644 --- a/frontend/tests/deploymentEnv.test.mjs +++ b/frontend/tests/deploymentEnv.test.mjs @@ -136,6 +136,36 @@ test("derives distinct transient credential names for custom model agents", () = ); }); +test("derives transient credential names for cross-provider fallback models", () => { + const draft = { + name: "Agent", + agentType: "llm", + modelName: "primary", + modelFallbacks: [ + "same-provider-backup", + { + modelName: "gpt-4o-mini", + modelProvider: "openai", + modelApiBase: "https://api.openai.com/v1", + modelApiKeyEnv: "OPENAI_BACKUP_API_KEY", + }, + ], + subAgents: [], + }; + assert.deepEqual( + customModelCredentialRequirements( + draft, + "https://ark.cn-beijing.volces.com/api/v3/", + ), + [ + { + key: "OPENAI_BACKUP_API_KEY", + label: "Agent fallback model gpt-4o-mini API Key", + }, + ], + ); +}); + test("does not request custom credentials for Ark-backed agents", () => { assert.deepEqual( customModelCredentialRequirements( @@ -163,7 +193,11 @@ test("keeps custom model credentials transient on the publish page", () => { ); assert.match( projectPreviewSource, - /requiredSecretEnv\.map[\s\S]*?type="password"[\s\S]*?projectPreview\.releaseOnlySecret/, + /requiredSecretEnv\.map[\s\S]*?type="password"[\s\S]*?configuredSecret[\s\S]*?"••••••"/, + ); + assert.match( + projectPreviewSource, + /configuredRuntimeEnvKeySet\.has\(env\.key\)/, ); assert.match(projectPreviewSource, /role="alert"/); assert.doesNotMatch(customCreateSource, /envValues:\s*customModelCredentials/); @@ -358,6 +392,10 @@ test("explains optimization dependencies and reports every missing runtime setti }), [], ); + assert.deepEqual( + missingRuntimeEnvs(specs, {}, ["MCP_API_KEY"]).map((spec) => spec.key), + ["MCP_URLS"], + ); const derivedSpec = { key: "MCP_URLS", diff --git a/frontend/tests/modelFallbacks.test.mjs b/frontend/tests/modelFallbacks.test.mjs new file mode 100644 index 000000000..5d45e8391 --- /dev/null +++ b/frontend/tests/modelFallbacks.test.mjs @@ -0,0 +1,198 @@ +import assert from "node:assert/strict"; +import { Buffer } from "node:buffer"; +import { mkdtempSync, rmSync, writeFileSync } from "node:fs"; +import { tmpdir } from "node:os"; +import { join } from "node:path"; +import { createRequire } from "node:module"; +import { fileURLToPath } from "node:url"; +import test from "node:test"; + +import { build } from "esbuild"; + +async function loadTypeScriptModule(relativePath) { + const result = await build({ + entryPoints: [fileURLToPath(new URL(relativePath, import.meta.url))], + bundle: true, + format: "esm", + platform: "node", + target: "node20", + write: false, + }); + const source = Buffer.from(result.outputFiles[0].contents).toString("base64"); + return import(`data:text/javascript;base64,${source}`); +} + +async function loadCommonJsTypeScriptModule(relativePath) { + const result = await build({ + entryPoints: [fileURLToPath(new URL(relativePath, import.meta.url))], + bundle: true, + format: "cjs", + platform: "node", + target: "node20", + write: false, + }); + const directory = mkdtempSync(join(tmpdir(), "veadk-model-fallback-test-")); + const bundle = join(directory, "module.cjs"); + try { + writeFileSync(bundle, result.outputFiles[0].contents); + return createRequire(import.meta.url)(bundle); + } finally { + rmSync(directory, { recursive: true, force: true }); + } +} + +const { normalizeDraft } = await loadTypeScriptModule( + "../src/create/normalizeDraft.ts", +); +const { + modelFallbackApiKeyEnv, + nextModelFallbackApiKeyEnv, + normalizeModelFallbacks, +} = await loadTypeScriptModule( + "../src/create/modelFallbacks.ts", +); +const { isValidModelApiBaseUrl } = await loadTypeScriptModule( + "../src/create/modelApiBase.ts", +); +const { draftToYaml, yamlToDraft } = await loadCommonJsTypeScriptModule( + "../src/create/configYaml.ts", +); + +test("normalizes same-provider model fallback order", () => { + assert.deepEqual( + normalizeModelFallbacks("primary-model", [ + " fallback-a ", + "", + "primary-model", + "fallback-b", + "fallback-a", + ]), + ["fallback-a", "fallback-b"], + ); +}); + +test("validates custom model API base URLs", () => { + assert.equal(isValidModelApiBaseUrl(""), true); + assert.equal(isValidModelApiBaseUrl("https://api.example.com/v1"), true); + assert.equal(isValidModelApiBaseUrl("http://localhost:11434/v1"), true); + assert.equal(isValidModelApiBaseUrl("api.example.com/v1"), false); + assert.equal(isValidModelApiBaseUrl("ftp://api.example.com/v1"), false); + assert.equal(isValidModelApiBaseUrl("https://user:pass@example.com/v1"), false); +}); + +test("normalizes cross-provider model fallback endpoints", () => { + assert.deepEqual( + normalizeModelFallbacks("primary-model", [ + "fallback-a", + { + model: " gpt-4o-mini ", + provider: " openai ", + api_base: " https://api.openai.com/v1 ", + api_key_env: " OPENAI_BACKUP_API_KEY ", + }, + { + modelName: "gpt-4o-mini", + modelProvider: "openai", + modelApiBase: "https://api.openai.com/v1", + modelApiKeyEnv: "OPENAI_BACKUP_API_KEY", + }, + ]), + [ + "fallback-a", + { + modelName: "gpt-4o-mini", + modelProvider: "openai", + modelApiBase: "https://api.openai.com/v1", + modelApiKeyEnv: "OPENAI_BACKUP_API_KEY", + }, + ], + ); +}); + +test("allocates stable cross-provider fallback API key env names", () => { + const fallbacks = [ + "same-provider-backup", + { + modelName: "gpt-4o-mini", + modelProvider: "openai", + modelApiKeyEnv: "OPENAI_BACKUP_API_KEY", + }, + ]; + + assert.equal( + nextModelFallbackApiKeyEnv("Agent", 2, fallbacks), + "FALLBACK_MODEL_AGENT_3_API_KEY", + ); + assert.equal( + modelFallbackApiKeyEnv("Agent", 1, fallbacks, fallbacks[1]), + "OPENAI_BACKUP_API_KEY", + ); + assert.equal( + modelFallbackApiKeyEnv("Agent", 1, fallbacks, { + modelName: "claude-3-haiku", + modelProvider: "anthropic", + modelApiKeyEnv: "bad key", + }), + "FALLBACK_MODEL_AGENT_2_API_KEY", + ); +}); + +test("imports modelName arrays as primary plus fallback models", () => { + const draft = normalizeDraft({ + name: "fallback-agent", + modelName: ["primary-model", "fallback-a", "fallback-b"], + modelFallbacks: ["fallback-c"], + }); + + assert.equal(draft.modelName, "primary-model"); + assert.deepEqual(draft.modelFallbacks, [ + "fallback-a", + "fallback-b", + "fallback-c", + ]); +}); + +test("round-trips modelFallbacks through YAML", () => { + const draft = normalizeDraft({ + name: "fallback-agent", + modelName: "primary-model", + modelFallbacks: [" fallback-a ", "primary-model", "fallback-b"], + }); + const yaml = draftToYaml(draft); + const restored = yamlToDraft(yaml); + + assert.match(yaml, /modelFallbacks:/); + assert.match(yaml, /- fallback-a/); + assert.deepEqual(restored.modelFallbacks, ["fallback-a", "fallback-b"]); +}); + +test("round-trips cross-provider fallback endpoints through YAML without secrets", () => { + const draft = normalizeDraft({ + name: "fallback-agent", + modelName: "primary-model", + modelFallbacks: [ + "fallback-a", + { + modelName: "gpt-4o-mini", + modelProvider: "openai", + modelApiBase: "https://api.openai.com/v1", + modelApiKeyEnv: "OPENAI_BACKUP_API_KEY", + }, + ], + }); + const yaml = draftToYaml(draft); + const restored = yamlToDraft(yaml); + + assert.match(yaml, /modelProvider: openai/); + assert.match(yaml, /modelApiKeyEnv: OPENAI_BACKUP_API_KEY/); + assert.doesNotMatch(yaml, /modelApiKey:/); + assert.deepEqual(restored.modelFallbacks, [ + "fallback-a", + { + modelName: "gpt-4o-mini", + modelProvider: "openai", + modelApiBase: "https://api.openai.com/v1", + modelApiKeyEnv: "OPENAI_BACKUP_API_KEY", + }, + ]); +}); diff --git a/frontend/tests/modelSelector.test.mjs b/frontend/tests/modelSelector.test.mjs index cf3c2cbd5..943efb68d 100644 --- a/frontend/tests/modelSelector.test.mjs +++ b/frontend/tests/modelSelector.test.mjs @@ -18,10 +18,22 @@ const configYamlSource = readFileSync( new URL("../src/create/configYaml.ts", import.meta.url), "utf8", ); +const modelFallbackFieldsSource = readFileSync( + new URL("../src/create/ModelFallbackFields.tsx", import.meta.url), + "utf8", +); +const newAgentWorkbenchSource = readFileSync( + new URL("../src/create/NewAgentWorkbench.tsx", import.meta.url), + "utf8", +); const modelSource = readFileSync( new URL("../src/create/modelSource.ts", import.meta.url), "utf8", ); +const modelApiBaseSource = readFileSync( + new URL("../src/create/modelApiBase.ts", import.meta.url), + "utf8", +); const cloudProviderSource = readFileSync( new URL("../src/adk/cloudProvider.ts", import.meta.url), "utf8", @@ -55,7 +67,7 @@ test("ModelArk picker exposes search, status, loading, empty and retry states", assert.match(clientSource, /`\/web\/model-api-keys\$\{refresh/); assert.doesNotMatch(customCreateSource, / { +test("selecting a ModelArk model updates model fallback state only", () => { const picker = customCreateSource.match(//)?.[0] ?? ""; - assert.match(picker, /onChange=\{\(modelName\) =>\s*patch\(\{ modelName \}\)\s*\}/); + assert.match(picker, /onChange=\{\(modelName\) =>\s*patch\(\{[\s\S]*?modelName,/); + assert.match(picker, /modelFallbacks: normalizeModelFallbacks/); assert.doesNotMatch(picker, /modelProvider/); }); +test("custom creation supports ordered same-provider fallback models", () => { + assert.match(customCreateSource, / { + assert.match(customCreateSource, /fallbackModelsForSearch/); + assert.match(customCreateSource, /fallbackSearchQuery/); + assert.match(customCreateSource, /onFallbacksChange=\{\(modelFallbacks\)/); + assert.match( + customCreateSource, + /t\("traditional\.model\.fallbackPlaceholder"\)/, + ); +}); + +test("cross-provider fallback editor hides env internals and keeps rows on blur", () => { + assert.doesNotMatch(modelFallbackFieldsSource, /model\.apiKeyEnv/); + assert.doesNotMatch(modelFallbackFieldsSource, /invalidApiKeyEnv/); + assert.doesNotMatch(modelFallbackFieldsSource, /onBlur=\{normalizeCurrentValue\}/); + assert.match(modelFallbackFieldsSource, /modelApiKeyEnv: fallbackApiKeyEnv/); + assert.match(modelFallbackFieldsSource, /configuredSecretEnvKeys/); + assert.match(modelFallbackFieldsSource, /configuredSecret[\s\S]*?"••••••"/); +}); + +test("fallback editor keeps row identity stable while switching provider type", () => { + assert.doesNotMatch(modelFallbackFieldsSource, /key=\{`\$\{fallbackValue/); + assert.doesNotMatch(modelFallbackFieldsSource, /key=\{`endpoint-/); + assert.match(modelFallbackFieldsSource, /key=\{`fallback-row-\$\{index\}`\}/); +}); + +test("fallback editor keeps the model name field consistent across provider types", () => { + assert.match(modelFallbackFieldsSource, /model-fallback-fields__model-name/); + assert.match( + modelFallbackFieldsSource, + /\s*\{t\(`\$\{variant\}\.model\.name`\)\}/, + ); + assert.match(modelFallbackFieldsSource, /model-fallback-fields__endpoint-details/); +}); + test("selected ModelArk API Key is resolved only by the Studio server", () => { assert.match(clientSource, /export async function revealModelApiKey/); assert.doesNotMatch(customCreateSource, /getModelApiKeyValue\(/); @@ -167,6 +224,18 @@ test("custom model fields stay visible and link to LiteLLM providers", () => { assert.doesNotMatch(customCreateSource, /留空或使用当前云的官方 Ark 地址时/); }); +test("custom model API base fields validate absolute HTTP URLs", () => { + assert.match(modelApiBaseSource, /isValidModelApiBaseUrl/); + assert.match(modelApiBaseSource, /url\.protocol === "https:"/); + assert.match(modelApiBaseSource, /url\.protocol === "http:"/); + assert.match(customCreateSource, /isValidModelApiBaseUrl\(\s*node\.modelApiBase/); + assert.match(newAgentWorkbenchSource, /isValidModelApiBaseUrl\(apiBase\)/); + assert.match(modelFallbackFieldsSource, /isValidModelApiBaseUrl\(endpoint\.modelApiBase\)/); + assert.match(customCreateSource, /traditional\.model\.invalidApiBase/); + assert.match(newAgentWorkbenchSource, /workbench\.model\.invalidApiBase/); + assert.match(modelFallbackFieldsSource, /\$\{variant\}\.model\.invalidApiBase/); +}); + test("a newly selected custom model starts empty without changing saved custom drafts", () => { assert.match( customCreateSource, diff --git a/frontend/tests/newAgentWorkbench.test.mjs b/frontend/tests/newAgentWorkbench.test.mjs index 649fa5b88..d066a27c5 100644 --- a/frontend/tests/newAgentWorkbench.test.mjs +++ b/frontend/tests/newAgentWorkbench.test.mjs @@ -679,7 +679,7 @@ test("final step exposes deployment progress and error feedback", () => { ); assert.match( customCreateSource, - /firstMissingRuntimeEnv\(activeEnvSpecs, allEnvValues\)/, + /firstMissingRuntimeEnv\(\s*activeEnvSpecs,\s*allEnvValues,\s*configuredRuntimeEnvKeys,\s*\)/, ); assert.match( customCreateSource, diff --git a/tests/cli/test_generated_agent_backend_codegen.py b/tests/cli/test_generated_agent_backend_codegen.py index a429172dc..c0cabf830 100644 --- a/tests/cli/test_generated_agent_backend_codegen.py +++ b/tests/cli/test_generated_agent_backend_codegen.py @@ -1145,6 +1145,70 @@ def test_codegen_custom_model_endpoint_reads_agent_specific_key() -> None: ) +def test_codegen_model_fallbacks_emit_ordered_model_name_list() -> None: + project = generate_project_from_draft( + AgentDraft( + name="Fallback Agent", + instruction="You are helpful.", + modelName="primary-model", + modelFallbacks=[ + " fallback-a ", + "", + "primary-model", + "fallback-b", + "fallback-a", + ], + ) + ) + files = {file.path: file.content for file in project.files} + agent_py = files["agents/fallback_agent/agent.py"] + + assert 'model_name="primary-model"' in agent_py + assert 'model_fallbacks=["fallback-a", "fallback-b"]' in agent_py + assert "'modelFallbacks': ['fallback-a', 'fallback-b']" in agent_py + + +def test_codegen_model_fallbacks_emit_endpoint_configs() -> None: + project = generate_project_from_draft( + AgentDraft( + name="Fallback Agent", + instruction="You are helpful.", + modelName="primary-model", + modelFallbacks=[ + " fallback-a ", + { + "modelName": "gpt-4o-mini", + "modelProvider": "openai", + "modelApiBase": "https://api.openai.com/v1", + "modelApiKeyEnv": "OPENAI_BACKUP_API_KEY", + }, + " fallback-b ", + ], + ) + ) + files = {file.path: file.content for file in project.files} + agent_py = files["agents/fallback_agent/agent.py"] + + assert "from veadk import ModelFallbackEndpoint" in agent_py + assert 'model_name="primary-model"' in agent_py + assert ( + 'model_fallbacks=["fallback-a", ' + 'ModelFallbackEndpoint(model_name="gpt-4o-mini", ' + 'model_provider="openai", model_api_base="https://api.openai.com/v1", ' + 'model_api_key_env="OPENAI_BACKUP_API_KEY"), "fallback-b"]' + ) in agent_py + assert ( + "OPENAI_BACKUP_API_KEY=replace-with-your-own-model-api-key" + in files[".env.example"] + ) + assert ( + "'modelFallbacks': ['fallback-a', {'modelName': 'gpt-4o-mini', " + "'modelProvider': 'openai', " + "'modelApiBase': 'https://api.openai.com/v1', " + "'modelApiKeyEnv': 'OPENAI_BACKUP_API_KEY'}, 'fallback-b']" + ) in agent_py + + def test_codegen_custom_model_agents_use_distinct_key_env_names() -> None: project = generate_project_from_draft( AgentDraft( diff --git a/tests/cli/test_runtime_update_recovery.py b/tests/cli/test_runtime_update_recovery.py index 3bbfa3042..3b3ad1a67 100644 --- a/tests/cli/test_runtime_update_recovery.py +++ b/tests/cli/test_runtime_update_recovery.py @@ -18,6 +18,7 @@ from veadk.cli.runtime_update_recovery import ( assess_runtime_update_agent, mcp_auth_environment_keys, + model_environment_keys, sanitize_runtime_agent_info, sanitize_runtime_environment, ) @@ -145,6 +146,51 @@ def test_mcp_auth_environment_keys_walks_the_complete_agent_tree() -> None: ) +def test_model_environment_keys_include_custom_and_fallback_secrets() -> None: + keys = model_environment_keys( + { + "name": "Root Agent", + "agentType": "llm", + "modelSource": "custom", + "modelProvider": "openai", + "modelApiBase": "https://api.openai.com/v1", + "modelFallbacks": [ + "same-provider-backup", + { + "modelName": "claude-3-haiku", + "modelProvider": "anthropic", + "modelApiBase": "https://api.anthropic.com/v1", + "modelApiKeyEnv": "ANTHROPIC_BACKUP_API_KEY", + }, + { + "modelName": "gemini-1.5-flash", + "modelProvider": "gemini", + "modelApiBase": "https://generativelanguage.googleapis.com/v1beta", + }, + ], + "subAgents": [ + { + "name": "Child Agent", + "agentType": "llm", + "modelSource": "custom", + "modelApiBase": "https://models.example.com/v1", + "modelFallbacks": [], + } + ], + } + ) + + assert keys == ( + "CUSTOM_MODEL_ROOT_AGENT_PROVIDER", + "CUSTOM_MODEL_ROOT_AGENT_API_BASE", + "CUSTOM_MODEL_ROOT_AGENT_API_KEY", + "ANTHROPIC_BACKUP_API_KEY", + "FALLBACK_MODEL_ROOT_AGENT_3_API_KEY", + "CUSTOM_MODEL_CHILD_AGENT_API_BASE", + "CUSTOM_MODEL_CHILD_AGENT_API_KEY", + ) + + def test_runtime_agent_info_keeps_only_read_only_introspection_fields() -> None: sanitized = sanitize_runtime_agent_info( { diff --git a/tests/runtime/differential/test_runtime_parity.py b/tests/runtime/differential/test_runtime_parity.py index 251b63e07..085cefed7 100644 --- a/tests/runtime/differential/test_runtime_parity.py +++ b/tests/runtime/differential/test_runtime_parity.py @@ -667,3 +667,21 @@ def test_explicit_field_snapshot_survives_clone() -> None: assert explicit_fields(clone) == explicit_fields(agent) # The real contract: the clone still validates. check_agent_runtime_support(clone, "codex") + + +def test_model_fallbacks_warn_for_external_runtime(caplog) -> None: + from veadk import Agent + from veadk.runtime.compat import reset_warning_state + + reset_warning_state() + agent = Agent( + name="codex_agent_with_fallbacks", + model_name="scripted-model", + model_api_base="https://backend.invalid/v1", + model_api_key="backend-key", + model_fallbacks=["backup-model"], + runtime="codex", + ) + + assert agent.model_fallbacks == ["backup-model"] + assert "drops Agent(model_fallbacks=...)" in caplog.text diff --git a/tests/test_agent.py b/tests/test_agent.py index ea16a18e6..5f9c7b113 100644 --- a/tests/test_agent.py +++ b/tests/test_agent.py @@ -21,7 +21,7 @@ from google.adk.models.lite_llm import LiteLlm from google.adk.tools import load_memory -from veadk import Agent +from veadk import Agent, ModelFallbackEndpoint from veadk.consts import ( DEFAULT_AGENT_NAME, DEFAULT_MODEL_AGENT_API_BASE, @@ -31,6 +31,7 @@ ) from veadk.knowledgebase import KnowledgeBase from veadk.memory.long_term_memory import LongTermMemory +from veadk.models.retrying_lite_llm import RetryingLiteLlm from veadk.tools import load_knowledgebase_tool from veadk.tracing.telemetry.opentelemetry_tracer import OpentelemetryTracer @@ -190,6 +191,138 @@ def test_agent_configures_responses_model_fallbacks(mock_ark_llm): ] +@patch("veadk.agent.RetryingLiteLlm") +def test_agent_configures_cross_provider_litellm_fallbacks(mock_lite_llm, monkeypatch): + monkeypatch.setenv("BACKUP_MODEL_API_KEY", "backup-key") + + Agent( + model_name="primary-model", + model_provider="ark", + model_api_key="primary-key", + model_api_base="https://ark.example.com/api/v3", + model_fallbacks=[ + { + "model_provider": "openai", + "model_name": "gpt-4o-mini", + "model_api_base": "https://api.openai.com/v1", + "model_api_key_env": "BACKUP_MODEL_API_KEY", + "model_extra_config": { + "extra_headers": {"x-fallback": "1"}, + "temperature": 0.1, + }, + } + ], + ) + + assert mock_lite_llm.call_args.kwargs["model"] == "ark/primary-model" + assert mock_lite_llm.call_args.kwargs["fallbacks"] == [ + { + "model": "openai/gpt-4o-mini", + "api_key": "backup-key", + "api_base": "https://api.openai.com/v1", + "extra_headers": { + **DEFAULT_MODEL_EXTRA_CONFIG["extra_headers"], + "x-fallback": "1", + }, + "temperature": 0.1, + } + ] + + +@patch("veadk.agent.RetryingLiteLlm") +def test_agent_combines_legacy_and_explicit_litellm_fallbacks(mock_lite_llm): + Agent( + model_name=["primary-model", "same-provider-a"], + model_provider="ark", + model_api_key="primary-key", + model_api_base="https://ark.example.com/api/v3", + model_fallbacks=[ + "same-provider-b", + ModelFallbackEndpoint( + model_provider="anthropic", + model_name="claude-3-5-haiku-latest", + model_api_key="anthropic-key", + ), + ], + ) + + assert mock_lite_llm.call_args.kwargs["fallbacks"] == [ + "ark/same-provider-a", + "ark/same-provider-b", + { + "model": "anthropic/claude-3-5-haiku-latest", + "api_key": "anthropic-key", + "api_base": None, + }, + ] + + +@patch("veadk.agent.RetryingLiteLlm") +def test_agent_accepts_litellm_style_fallback_dict(mock_lite_llm): + Agent( + model_name="primary-model", + model_provider="ark", + model_api_key="primary-key", + model_api_base="https://ark.example.com/api/v3", + model_fallbacks=[ + { + "model": "openai/gpt-4o-mini", + "api_key": "openai-key", + "api_base": "https://api.openai.com/v1", + } + ], + ) + + assert mock_lite_llm.call_args.kwargs["fallbacks"] == [ + { + "model": "openai/gpt-4o-mini", + "api_key": "openai-key", + "api_base": "https://api.openai.com/v1", + } + ] + + +def test_agent_rejects_endpoint_fallbacks_for_responses_model(): + with pytest.raises(ValueError, match="Endpoint model_fallbacks"): + Agent( + model_name="primary-model", + model_provider="ark", + model_api_key="primary-key", + model_api_base="https://ark.example.com/api/v3", + enable_responses=True, + model_fallbacks=[ + { + "model_provider": "openai", + "model_name": "gpt-4o-mini", + } + ], + ) + + +def test_retrying_litellm_refreshes_mutable_fallbacks_between_calls(): + model = RetryingLiteLlm( + model="ark/primary", + fallbacks=[ + { + "model": "openai/fallback", + "api_key": "fallback-key", + "api_base": "https://fallback.example.com/v1", + } + ], + ) + + model._additional_args["fallbacks"][0].pop("model") + model._refresh_fallbacks() + + assert model._additional_args["fallbacks"] == [ + { + "model": "openai/fallback", + "api_key": "fallback-key", + "api_base": "https://fallback.example.com/v1", + } + ] + + @patch.dict("os.environ", {"MODEL_AGENT_API_KEY": "mock_api_key"}) def test_agent_with_existing_model(): existing_model = LiteLlm(model="test_model") diff --git a/veadk/__init__.py b/veadk/__init__.py index 7891d6c47..517d2d3b0 100644 --- a/veadk/__init__.py +++ b/veadk/__init__.py @@ -17,7 +17,7 @@ from veadk.version import VERSION if TYPE_CHECKING: - from veadk.agent import Agent + from veadk.agent import Agent, ModelFallbackEndpoint from veadk.runner import Runner @@ -27,6 +27,10 @@ def __getattr__(name): from veadk.agent import Agent return Agent + if name == "ModelFallbackEndpoint": + from veadk.agent import ModelFallbackEndpoint + + return ModelFallbackEndpoint if name == "Runner": from veadk.runner import Runner @@ -34,4 +38,4 @@ def __getattr__(name): raise AttributeError(f"module 'veadk' has no attribute '{name}'") -__all__ = ["Agent", "Runner", "VERSION"] +__all__ = ["Agent", "ModelFallbackEndpoint", "Runner", "VERSION"] diff --git a/veadk/agent.py b/veadk/agent.py index 84cf765c2..9b58c386c 100644 --- a/veadk/agent.py +++ b/veadk/agent.py @@ -35,7 +35,7 @@ from google.adk.agents.llm_agent import InstructionProvider, ToolUnion from google.adk.agents.run_config import ToolThreadPoolConfig from google.adk.examples.base_example_provider import BaseExampleProvider -from pydantic import ConfigDict, Field +from pydantic import AliasChoices, BaseModel, ConfigDict, Field from typing_extensions import Any from veadk.config import settings @@ -75,6 +75,117 @@ logger = get_logger(__name__) +class ModelFallbackEndpoint(BaseModel): + """A LiteLLM fallback endpoint with independent provider credentials.""" + + model_config = ConfigDict(extra="forbid", populate_by_name=True) + + model_name: str = Field(validation_alias=AliasChoices("model_name", "model")) + model_provider: Optional[str] = Field( + default=None, + validation_alias=AliasChoices("model_provider", "provider"), + ) + model_api_base: Optional[str] = Field( + default=None, + validation_alias=AliasChoices("model_api_base", "api_base", "base_url"), + ) + model_api_key: Optional[str] = Field( + default=None, + validation_alias=AliasChoices("model_api_key", "api_key"), + ) + model_api_key_env: Optional[str] = Field( + default=None, + validation_alias=AliasChoices("model_api_key_env", "api_key_env"), + ) + model_extra_config: dict[str, Any] = Field( + default_factory=dict, + validation_alias=AliasChoices("model_extra_config", "extra_config"), + ) + + +ModelFallbackConfig = Union[str, ModelFallbackEndpoint] + + +def _qualified_model_name(provider: str | None, model_name: str) -> str: + model = model_name.strip() + normalized_provider = (provider or "").strip() + if not normalized_provider: + return model + prefix = f"{normalized_provider}/" + if model.startswith(prefix): + return model + return f"{prefix}{model}" + + +def _endpoint_model_name( + endpoint: ModelFallbackEndpoint, + *, + default_provider: str, +) -> str: + if endpoint.model_provider: + return _qualified_model_name(endpoint.model_provider, endpoint.model_name) + model = endpoint.model_name.strip() + if "/" in model: + return model + return _qualified_model_name(default_provider, model) + + +def _resolve_model_api_key(endpoint: ModelFallbackEndpoint) -> str | None: + if endpoint.model_api_key: + return endpoint.model_api_key + if endpoint.model_api_key_env: + value = os.getenv(endpoint.model_api_key_env) + if value: + return value + logger.warning( + "Model fallback api key env `%s` is not set; LiteLLM will use its " + "provider defaults if available.", + endpoint.model_api_key_env, + ) + return None + + +def _merged_fallback_extra_config( + base_extra_config: dict[str, Any], + endpoint_extra_config: dict[str, Any], +) -> dict[str, Any]: + extra = dict(endpoint_extra_config) + for key in ("extra_headers", "extra_body"): + value = extra.get(key) + base_value = base_extra_config.get(key) + if isinstance(value, dict) and isinstance(base_value, dict): + extra[key] = {**base_value, **value} + return extra + + +def _build_litellm_fallback( + fallback: ModelFallbackConfig, + *, + default_provider: str, + base_extra_config: dict[str, Any], +) -> str | dict[str, Any]: + if isinstance(fallback, str): + return _qualified_model_name(default_provider, fallback) + + values = _merged_fallback_extra_config( + base_extra_config=base_extra_config, + endpoint_extra_config=fallback.model_extra_config, + ) + fallback_provider = (fallback.model_provider or "").strip() + is_cross_provider = bool( + fallback_provider and fallback_provider != default_provider + ) + values["model"] = _endpoint_model_name( + fallback, + default_provider=default_provider, + ) + if fallback.model_api_key or fallback.model_api_key_env or is_cross_provider: + values["api_key"] = _resolve_model_api_key(fallback) + if fallback.model_api_base or is_cross_provider: + values["api_base"] = fallback.model_api_base + return values + + class Agent(LlmAgent): """LLM-based Agent with Volcengine capabilities. @@ -91,6 +202,8 @@ class Agent(LlmAgent): model_provider (str): Provider of the model (e.g., openai). model_api_base (str): The base URL of the model API. model_api_key (str): The API key for accessing the model. + model_fallbacks (list): LiteLLM fallback models or endpoints tried + after the primary model fails. model_extra_config (dict): Extra configurations to include in model requests. tool_thread_pool_config (Optional[ToolThreadPoolConfig]): Default thread pool config for synchronous tool execution. @@ -131,6 +244,13 @@ class Agent(LlmAgent): """Name of the ARK API key to resolve the value from (defaults to env MODEL_AGENT_API_KEY_NAME). A key value always wins over a key name, so this is ignored when `model_api_key` or the MODEL_AGENT_API_KEY env is set.""" + model_fallbacks: list[ModelFallbackConfig] = Field(default_factory=list) + """Fallback models passed to LiteLLM. + + Strings are interpreted as same-provider model names. Use + ``ModelFallbackEndpoint`` or a matching dict when a fallback needs its own + provider, API base, API key, or LiteLLM parameters. + """ model_extra_config: dict = Field(default_factory=dict) tool_thread_pool_config: Optional[ToolThreadPoolConfig] = None @@ -290,13 +410,14 @@ def model_post_init(self, __context: Any) -> None: logger.info(f"Model extra config: {self.model_extra_config}") if not self.model: - fallbacks = None + fallbacks: list[str | dict[str, Any]] = [] if isinstance(self.model_name, list): if self.model_name: model_name = self.model_name[0] - fallbacks = [ - f"{self.model_provider}/{m}" for m in self.model_name[1:] - ] + fallbacks.extend( + _qualified_model_name(self.model_provider, m) + for m in self.model_name[1:] + ) logger.info( f"Using primary model: {model_name}, with fallbacks: {self.model_name[1:]}" ) @@ -308,14 +429,35 @@ def model_post_init(self, __context: Any) -> None: else: model_name = self.model_name + if self.model_fallbacks: + fallbacks.extend( + _build_litellm_fallback( + fallback, + default_provider=self.model_provider, + base_extra_config=self.model_extra_config, + ) + for fallback in self.model_fallbacks + ) + + litellm_fallbacks = fallbacks or None + if self.enable_responses: + unsupported_fallbacks = [ + fallback for fallback in fallbacks if not isinstance(fallback, str) + ] + if unsupported_fallbacks: + raise ValueError( + "Endpoint model_fallbacks are only supported when " + "enable_responses=False. Ark Responses fallbacks must be " + "same-provider model names." + ) from veadk.models.ark_llm import ArkLlm self.model = ArkLlm( model=f"{self.model_provider}/{model_name}", api_key=self.model_api_key, api_base=self.model_api_base, - fallbacks=fallbacks, + fallbacks=litellm_fallbacks, enable_responses_cache=self.enable_responses_cache, **self.model_extra_config, ) @@ -324,13 +466,18 @@ def model_post_init(self, __context: Any) -> None: model=f"{self.model_provider}/{model_name}", api_key=self.model_api_key, api_base=self.model_api_base, - fallbacks=fallbacks, + fallbacks=litellm_fallbacks, **self.model_extra_config, ) logger.debug( f"LiteLLM client created with config: {self.model_extra_config}" ) else: + if self.model_fallbacks: + logger.warning( + "Agent(model_fallbacks=...) is ignored when Agent(model=...) " + "is provided. Configure fallbacks on the custom model object." + ) logger.warning( "You are trying to use your own LiteLLM client, some default request headers may be missing." ) diff --git a/veadk/cli/cli_frontend.py b/veadk/cli/cli_frontend.py index a31cdc900..2e8a22df1 100644 --- a/veadk/cli/cli_frontend.py +++ b/veadk/cli/cli_frontend.py @@ -4476,6 +4476,7 @@ async def _agentkit_proxy(request: Request, path: str): assess_legacy_recovered_agent, assess_runtime_update_agent, mcp_auth_environment_keys, + model_environment_keys, sanitize_runtime_agent_info, sanitize_runtime_environment, ) @@ -6377,6 +6378,17 @@ async def _deploy_to_agentkit(request: Request): ) requested_runtime_envs[key] = str(item.get("value") or "") if source_preserving_requested and requested_runtime_envs: + allowed_source_preserving_envs = ( + set(model_environment_keys(requested_draft)) + if isinstance(requested_draft, Mapping) + else set() + ) + disallowed_envs = set(requested_runtime_envs).difference( + allowed_source_preserving_envs + ) + else: + disallowed_envs = set() + if disallowed_envs: raise HTTPException( status_code=400, detail=("保留源码更新不接受通用环境变量,请重新打开智能体详情后重试。"), @@ -11779,7 +11791,9 @@ def _configured_editable_environment_keys( if getattr(item, "key", None) ) configured = set(environment_view.configured_env_keys) - references = mcp_auth_environment_keys(draft) + mcp_references = mcp_auth_environment_keys(draft) + model_references = model_environment_keys(draft) + references = (*mcp_references, *model_references) missing = set(references).difference(configured) if missing: try: diff --git a/veadk/cli/generated_agent_codegen.py b/veadk/cli/generated_agent_codegen.py index 119409c07..1bcf33264 100644 --- a/veadk/cli/generated_agent_codegen.py +++ b/veadk/cli/generated_agent_codegen.py @@ -20,7 +20,14 @@ from pprint import pformat from typing import Any, Literal -from pydantic import BaseModel, ConfigDict, Field, field_validator, model_validator +from pydantic import ( + AliasChoices, + BaseModel, + ConfigDict, + Field, + field_validator, + model_validator, +) from veadk.cli.generated_agent_catalog import ( A2A_REGISTRY_ENV, @@ -171,6 +178,60 @@ def _coerce_string(cls, value: Any) -> str: return str(value) +class ModelFallbackEndpointDraft(BaseModel): + model_config = ConfigDict(extra="forbid", populate_by_name=True) + + modelName: str = Field( + default="", + validation_alias=AliasChoices("modelName", "model_name", "model"), + ) + modelProvider: str = Field( + default="", + validation_alias=AliasChoices("modelProvider", "model_provider", "provider"), + ) + modelApiBase: str = Field( + default="", + validation_alias=AliasChoices( + "modelApiBase", + "model_api_base", + "apiBase", + "api_base", + "baseUrl", + "base_url", + ), + ) + modelApiKeyEnv: str = Field( + default="", + validation_alias=AliasChoices( + "modelApiKeyEnv", + "model_api_key_env", + "apiKeyEnv", + "api_key_env", + ), + ) + + @field_validator( + "modelName", + "modelProvider", + "modelApiBase", + "modelApiKeyEnv", + mode="before", + ) + @classmethod + def _coerce_string(cls, value: Any) -> str: + if value is None: + return "" + return str(value) + + @field_validator("modelApiKeyEnv") + @classmethod + def _validate_api_key_env(cls, value: str) -> str: + value = value.strip() + if value and not re.fullmatch(r"[A-Za-z_][A-Za-z0-9_]*", value): + raise ValueError("modelApiKeyEnv must be a valid environment variable name") + return value + + class SelectedSkill(BaseModel): model_config = ConfigDict(extra="forbid") @@ -299,6 +360,7 @@ class AgentDraft(BaseModel): model: str = "" modelSource: Literal["ark", "custom"] | None = None modelName: str = "" + modelFallbacks: list[str | ModelFallbackEndpointDraft] = Field(default_factory=list) modelProvider: str = "" modelApiBase: str = "" tools: list[str] = Field(default_factory=list) @@ -328,12 +390,20 @@ class AgentDraft(BaseModel): @model_validator(mode="before") @classmethod - def _ignore_retired_a2ui_option(cls, value: Any) -> Any: - """Accept old Studio drafts without carrying A2UI into generation.""" - if not isinstance(value, dict) or "enableA2ui" not in value: + def _normalize_legacy_options(cls, value: Any) -> Any: + """Accept old Studio drafts without carrying retired fields into generation.""" + if not isinstance(value, dict): return value normalized = value.copy() - normalized.pop("enableA2ui") + normalized.pop("enableA2ui", None) + raw_model_name = normalized.get("modelName") + if isinstance(raw_model_name, list): + normalized["modelName"] = raw_model_name[0] if raw_model_name else "" + raw_fallbacks = normalized.get("modelFallbacks") + normalized["modelFallbacks"] = [ + *raw_model_name[1:], + *(raw_fallbacks if isinstance(raw_fallbacks, list) else []), + ] return normalized @field_validator("maxIterations", mode="before") @@ -344,6 +414,69 @@ def _coerce_max_iterations(cls, value: Any) -> int: except Exception: return 3 + @field_validator("modelName", mode="before") + @classmethod + def _coerce_model_name(cls, value: Any) -> str: + if value is None: + return "" + return str(value) + + @field_validator("modelFallbacks", mode="before") + @classmethod + def _coerce_model_fallbacks( + cls, value: Any + ) -> list[str | dict[str, Any] | ModelFallbackEndpointDraft]: + if not isinstance(value, list): + return [] + return [ + item if isinstance(item, (dict, ModelFallbackEndpointDraft)) else str(item) + for item in value + if item is not None + ] + + @model_validator(mode="after") + def _normalize_model_fallbacks(self) -> "AgentDraft": + primary = self.modelName.strip() + seen = {primary} if primary else set() + fallbacks: list[str | ModelFallbackEndpointDraft] = [] + for fallback in self.modelFallbacks: + if isinstance(fallback, str): + fallback_name = fallback.strip() + if not fallback_name or fallback_name in seen: + continue + seen.add(fallback_name) + fallbacks.append(fallback_name) + continue + fallback_name = fallback.modelName.strip() + provider = fallback.modelProvider.strip() + api_base = fallback.modelApiBase.strip() + api_key_env = fallback.modelApiKeyEnv.strip() + if not fallback_name: + continue + if not provider and not api_base and not api_key_env: + if fallback_name in seen: + continue + seen.add(fallback_name) + fallbacks.append(fallback_name) + continue + key = "\0".join( + ["endpoint", fallback_name, provider, api_base, api_key_env] + ) + if key in seen: + continue + seen.add(key) + fallbacks.append( + ModelFallbackEndpointDraft( + modelName=fallback_name, + modelProvider=provider, + modelApiBase=api_base, + modelApiKeyEnv=api_key_env, + ) + ) + self.modelName = primary + self.modelFallbacks = fallbacks + return self + class GeneratedAgentProjectRequest(BaseModel): model_config = ConfigDict(extra="forbid") @@ -464,6 +597,8 @@ def sanitize(node: dict[str, Any]) -> None: node.pop("cloudProvider", None) if node.get("modelSource") is None: node.pop("modelSource", None) + if not node.get("modelFallbacks"): + node.pop("modelFallbacks", None) if not str(node.get("longTermMemoryIndex") or "").strip(): node.pop("longTermMemoryIndex", None) cloud_environment = node.get("cloudEnvironment") @@ -552,6 +687,50 @@ def _py_str(value: str) -> str: return f'"{escaped}"' +def _model_name_value(draft: AgentDraft) -> str: + primary = draft.modelName.strip() + if not primary: + return "" + return primary + + +def _model_fallback_exprs(acc: _Acc, draft: AgentDraft) -> list[str]: + exprs: list[str] = [] + agent_segment = _env_segment(draft.name, "AGENT") + for index, fallback in enumerate(draft.modelFallbacks): + if isinstance(fallback, str): + model_name = fallback.strip() + if model_name: + exprs.append(_py_str(model_name)) + continue + model_name = fallback.modelName.strip() + if not model_name: + continue + kwargs = [f"model_name={_py_str(model_name)}"] + if fallback.modelProvider.strip(): + kwargs.append(f"model_provider={_py_str(fallback.modelProvider.strip())}") + if fallback.modelApiBase.strip(): + kwargs.append(f"model_api_base={_py_str(fallback.modelApiBase.strip())}") + api_key_env = fallback.modelApiKeyEnv.strip() or _next_env_name( + f"FALLBACK_MODEL_{agent_segment}_{index + 1}_API_KEY", + acc.used_env_names, + ) + if api_key_env: + acc.used_env_names.add(api_key_env) + acc.env.append( + EnvVar( + api_key_env, + True, + "replace-with-your-own-model-api-key", + f"{draft.name.strip() or 'Fallback model'} fallback " + f"{model_name} API Key", + ) + ) + kwargs.append(f"model_api_key_env={_py_str(api_key_env)}") + exprs.append("ModelFallbackEndpoint(" + ", ".join(kwargs) + ")") + return exprs + + def _py_triple(value: str) -> str: escaped = (value or "").replace("\\", "\\\\").replace('"""', '\\"\\"\\"') return f'"""{escaped}"""' @@ -868,8 +1047,9 @@ def _build_agent(acc: _Acc, draft: AgentDraft, var_name: str) -> str: if tool_exprs: kwargs.append(f"tools=[{', '.join(tool_exprs)}]") - if draft.modelName.strip(): - kwargs.append(f"model_name={_py_str(draft.modelName.strip())}") + model_name_value = _model_name_value(draft) + if model_name_value: + kwargs.append(f"model_name={_py_str(model_name_value)}") is_custom_model = draft.modelSource == "custom" or ( draft.modelSource is None and bool(draft.modelApiBase.strip()) @@ -928,6 +1108,15 @@ def custom_model_env(suffix: str) -> str: if draft.modelApiBase.strip(): kwargs.append(f"model_api_base={_py_str(draft.modelApiBase.strip())}") + model_fallback_exprs = _model_fallback_exprs(acc, draft) + if model_fallback_exprs: + if any( + isinstance(fallback, ModelFallbackEndpointDraft) + for fallback in draft.modelFallbacks + ): + _add_import(acc, "from veadk import ModelFallbackEndpoint") + kwargs.append("model_fallbacks=[" + ", ".join(model_fallback_exprs) + "]") + if draft.memory.shortTerm: backend = STM_BY_ID.get(draft.shortTermBackend or "local") if backend: @@ -1981,6 +2170,7 @@ def allow_env(items: tuple[EnvVar, ...]) -> None: def visit(node: AgentDraft) -> None: nonlocal ark_model_name, uses_ark_model + agent_segment = _env_segment(node.name, "AGENT") is_custom_model = node.modelSource == "custom" or ( node.modelSource is None and bool(node.modelApiBase.strip()) @@ -1990,7 +2180,6 @@ def visit(node: AgentDraft) -> None: ) ) if is_custom_model: - agent_segment = _env_segment(node.name, "AGENT") if node.modelProvider.strip(): provider_env = _next_env_name( f"CUSTOM_MODEL_{agent_segment}_PROVIDER", @@ -2014,6 +2203,15 @@ def visit(node: AgentDraft) -> None: uses_ark_model = True if not ark_model_name: ark_model_name = node.modelName.strip() + for index, fallback in enumerate(node.modelFallbacks): + if isinstance(fallback, ModelFallbackEndpointDraft): + allowed_keys.add( + fallback.modelApiKeyEnv.strip() + or _next_env_name( + f"FALLBACK_MODEL_{agent_segment}_{index + 1}_API_KEY", + allowed_keys, + ) + ) for tool_id in node.builtinTools: tool = TOOL_BY_ID.get(tool_id) if tool: diff --git a/veadk/cli/runtime_update_recovery.py b/veadk/cli/runtime_update_recovery.py index 3029aa531..013838849 100644 --- a/veadk/cli/runtime_update_recovery.py +++ b/veadk/cli/runtime_update_recovery.py @@ -32,6 +32,7 @@ from pydantic import ValidationError from veadk.cli.generated_agent_codegen import AgentDraft +from veadk.cli.studio_model_catalog import is_provider_modelark_base_url __all__ = [ "RuntimeEnvironmentView", @@ -39,6 +40,7 @@ "assess_legacy_recovered_agent", "assess_runtime_update_agent", "mcp_auth_environment_keys", + "model_environment_keys", "sanitize_runtime_agent_info", "sanitize_runtime_environment", ] @@ -151,6 +153,20 @@ def _safe_public_environment_value(key: str, value: str) -> bool: ) +def _env_segment(value: str, fallback: str) -> str: + segment = re.sub(r"[^A-Z0-9]+", "_", (value or "").strip().upper()) + return segment.strip("_") or fallback + + +def _next_env_name(base: str, used: set[str]) -> str: + if base not in used: + return base + suffix = 2 + while f"{base}_{suffix}" in used: + suffix += 1 + return f"{base}_{suffix}" + + def sanitize_runtime_environment( envs: Iterable[tuple[str, str]], ) -> RuntimeEnvironmentView: @@ -327,6 +343,121 @@ def visit(node: Mapping[str, Any], *, depth: int) -> None: return tuple(keys) +def model_environment_keys(draft: Mapping[str, Any]) -> tuple[str, ...]: + """Return Model API environment names referenced by a Studio draft tree. + + These are identifiers only. They let the update UI distinguish already + configured secrets from missing ones without exposing credential values. + """ + + keys: list[str] = [] + seen: set[str] = set() + used: set[str] = { + "MODEL_AGENT_NAME", + "MODEL_NAME", + "MODEL_AGENT_PROVIDER", + "MODEL_AGENT_API_BASE", + "MODEL_AGENT_API_KEY", + "MODEL_AGENT_API_KEY_ID", + "MODEL_AGENT_API_KEY_NAME", + } + + def add(key: str) -> None: + if key and _ENV_NAME_RE.fullmatch(key) and key not in seen: + seen.add(key) + keys.append(key) + + def add_allocated(base: str) -> str: + key = _next_env_name(base, used) + used.add(key) + add(key) + return key + + def visit(node: Mapping[str, Any], *, depth: int, cloud_provider: str) -> None: + if depth > _MAX_AGENT_GRAPH_DEPTH: + return + node_provider = ( + "byteplus" if node.get("cloudProvider") == "byteplus" else cloud_provider + ) + name = str(node.get("name") or "") + agent_segment = _env_segment(name, "AGENT") + agent_type = str(node.get("agentType") or "llm") + model_source = str(node.get("modelSource") or "") + model_api_base = str(node.get("modelApiBase") or "").strip() + is_custom_model = agent_type == "llm" and ( + model_source == "custom" + or ( + not model_source + and bool(model_api_base) + and not is_provider_modelark_base_url(node_provider, model_api_base) + ) + ) + if is_custom_model: + if str(node.get("modelProvider") or "").strip(): + add_allocated(f"CUSTOM_MODEL_{agent_segment}_PROVIDER") + if model_api_base: + add_allocated(f"CUSTOM_MODEL_{agent_segment}_API_BASE") + add_allocated(f"CUSTOM_MODEL_{agent_segment}_API_KEY") + + fallbacks = node.get("modelFallbacks") + if isinstance(fallbacks, list): + for index, fallback in enumerate(fallbacks[:_MAX_INTROSPECTION_ITEMS]): + if not isinstance(fallback, Mapping): + continue + model_name = str( + fallback.get("modelName") + or fallback.get("model_name") + or fallback.get("model") + or "" + ).strip() + if not model_name: + continue + endpoint_configured = any( + str(fallback.get(key) or fallback.get(alias) or "").strip() + for key, alias in ( + ("modelProvider", "model_provider"), + ("modelApiBase", "model_api_base"), + ("modelApiKeyEnv", "model_api_key_env"), + ) + ) + if not endpoint_configured: + continue + explicit = str( + fallback.get("modelApiKeyEnv") + or fallback.get("model_api_key_env") + or fallback.get("apiKeyEnv") + or fallback.get("api_key_env") + or "" + ).strip() + if explicit and _ENV_NAME_RE.fullmatch(explicit): + used.add(explicit) + add(explicit) + continue + add_allocated(f"FALLBACK_MODEL_{agent_segment}_{index + 1}_API_KEY") + + children = node.get("subAgents") + if isinstance(children, list): + for child in children[:_MAX_INTROSPECTION_ITEMS]: + if isinstance(child, Mapping): + visit(child, depth=depth + 1, cloud_provider=node_provider) + workflow = node.get("workflow") + if isinstance(workflow, Mapping): + workflow_nodes = workflow.get("nodes") + if isinstance(workflow_nodes, list): + for workflow_node in workflow_nodes[:_MAX_INTROSPECTION_ITEMS]: + if not isinstance(workflow_node, Mapping): + continue + child = workflow_node.get("agent") + if isinstance(child, Mapping): + visit(child, depth=depth + 1, cloud_provider=node_provider) + + root_provider = ( + "byteplus" if draft.get("cloudProvider") == "byteplus" else "volcengine" + ) + visit(draft, depth=0, cloud_provider=root_provider) + return tuple(keys) + + def _optional_text(value: Any) -> str | None: return value if isinstance(value, str) else None diff --git a/veadk/models/retrying_lite_llm.py b/veadk/models/retrying_lite_llm.py index ddca0d8ff..cec14d234 100644 --- a/veadk/models/retrying_lite_llm.py +++ b/veadk/models/retrying_lite_llm.py @@ -78,6 +78,18 @@ class RetryingLiteLlm(LiteLlm): def __init__(self, *, model: str, **kwargs: Any) -> None: super().__init__(model=model, **kwargs) + self._fallbacks_template = copy.deepcopy( + getattr(self, "_additional_args", {}).get("fallbacks") + ) + + def _refresh_fallbacks(self) -> None: + """Give LiteLLM a fresh fallback list for each call. + + LiteLLM's lightweight fallback helper mutates dict fallback entries when + selecting their model. Keep VeADK's model object reusable across turns. + """ + if self._fallbacks_template is not None: + self._additional_args["fallbacks"] = copy.deepcopy(self._fallbacks_template) @override async def generate_content_async( @@ -88,6 +100,7 @@ async def generate_content_async( retry_request = copy.deepcopy(llm_request) emitted = False try: + self._refresh_fallbacks() async for response in super().generate_content_async( llm_request, stream=stream, @@ -106,6 +119,7 @@ async def generate_content_async( ) await asyncio.sleep(delay) + self._refresh_fallbacks() async for response in super().generate_content_async( retry_request, stream=stream, diff --git a/veadk/runtime/compat.py b/veadk/runtime/compat.py index faa23b3f0..61b2ec506 100644 --- a/veadk/runtime/compat.py +++ b/veadk/runtime/compat.py @@ -147,6 +147,14 @@ def _model_name_fallbacks(agent: Any) -> list[str]: return [] +def _model_fallbacks(agent: Any) -> list[Any]: + """Return explicit ``model_fallbacks`` entries.""" + model_fallbacks = getattr(agent, "model_fallbacks", None) + if isinstance(model_fallbacks, list): + return list(model_fallbacks) + return [] + + SUPPORT_RULES: tuple[SupportRule, ...] = ( # --- error: silently wrong results ------------------------------------- SupportRule( @@ -242,6 +250,17 @@ def _model_name_fallbacks(agent: Any) -> list[str]: "you need fallbacks." ), ), + SupportRule( + field="model_fallbacks", + policy="warn", + predicate=lambda agent, _explicit: bool(_model_fallbacks(agent)), + message=lambda agent, rt: ( + f"{rt} runtime drops Agent(model_fallbacks=...), because the " + "fallback chain lives on the LiteLLM client this runtime never " + "builds; a backend failure will surface as an error instead of " + "failing over. Use runtime='adk' if you need fallbacks." + ), + ), SupportRule( field="model_provider", policy="warn", diff --git a/veadk/webui/assets/app/index-CWDqbw2d.js b/veadk/webui/assets/app/index-C08mXMZt.js similarity index 54% rename from veadk/webui/assets/app/index-CWDqbw2d.js rename to veadk/webui/assets/app/index-C08mXMZt.js index 3ec0911d1..996523784 100644 --- a/veadk/webui/assets/app/index-CWDqbw2d.js +++ b/veadk/webui/assets/app/index-C08mXMZt.js @@ -1,5 +1,5 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/visualizations/mermaid/mermaid.core-o4kwdQTf.js","assets/chunks/purify.es-BnINGy_Y.js","assets/chunks/MarkdownPromptEditor-s0vhypzI.js","assets/styles/MarkdownPromptEditor-ZH9qtki0.css"])))=>i.map(i=>d[i]); -var RDe=Object.defineProperty;var lV=e=>{throw TypeError(e)};var IDe=(e,t,n)=>t in e?RDe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var ki=(e,t,n)=>IDe(e,typeof t!="symbol"?t+"":t,n),cV=(e,t,n)=>t.has(e)||lV("Cannot "+n);var uo=(e,t,n)=>(cV(e,t,"read from private field"),n?n.call(e):t.get(e)),uV=(e,t,n)=>t.has(e)?lV("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,n),jP=(e,t,n,i)=>(cV(e,t,"write to private field"),i?i.call(e,n):t.set(e,n),n);function PDe(e,t){for(var n=0;ni[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))i(r);new MutationObserver(r=>{for(const s of r)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&i(a)}).observe(document,{childList:!0,subtree:!0});function n(r){const s={};return r.integrity&&(s.integrity=r.integrity),r.referrerPolicy&&(s.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?s.credentials="include":r.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function i(r){if(r.ep)return;r.ep=!0;const s=n(r);fetch(r.href,s)}})();var Ip=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function px(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Bie={exports:{}},vj={};/** +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/visualizations/mermaid/mermaid.core-BqSuc9Qx.js","assets/chunks/purify.es-BnINGy_Y.js","assets/chunks/MarkdownPromptEditor-Sdqs09XM.js","assets/styles/MarkdownPromptEditor-ZH9qtki0.css"])))=>i.map(i=>d[i]); +var GDe=Object.defineProperty;var bV=e=>{throw TypeError(e)};var XDe=(e,t,n)=>t in e?GDe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var Ai=(e,t,n)=>XDe(e,typeof t!="symbol"?t+"":t,n),yV=(e,t,n)=>t.has(e)||bV("Cannot "+n);var po=(e,t,n)=>(yV(e,t,"read from private field"),n?n.call(e):t.get(e)),vV=(e,t,n)=>t.has(e)?bV("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,n),MP=(e,t,n,i)=>(yV(e,t,"write to private field"),i?i.call(e,n):t.set(e,n),n);function YDe(e,t){for(var n=0;ni[r]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))i(r);new MutationObserver(r=>{for(const s of r)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&i(a)}).observe(document,{childList:!0,subtree:!0});function n(r){const s={};return r.integrity&&(s.integrity=r.integrity),r.referrerPolicy&&(s.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?s.credentials="include":r.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function i(r){if(r.ep)return;r.ep=!0;const s=n(r);fetch(r.href,s)}})();var Lp=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function vx(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Jie={exports:{}},Ej={};/** * @license React * react-jsx-runtime.production.js * @@ -7,43 +7,43 @@ var RDe=Object.defineProperty;var lV=e=>{throw TypeError(e)};var IDe=(e,t,n)=>t * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var DDe=Symbol.for("react.transitional.element"),MDe=Symbol.for("react.fragment");function Uie(e,t,n){var i=null;if(n!==void 0&&(i=""+n),t.key!==void 0&&(i=""+t.key),"key"in t){n={};for(var r in t)r!=="key"&&(n[r]=t[r])}else n=t;return t=n.ref,{$$typeof:DDe,type:e,key:i,ref:t!==void 0?t:null,props:n}}vj.Fragment=MDe;vj.jsx=Uie;vj.jsxs=Uie;Bie.exports=vj;var o=Bie.exports;const Qie={requestFailed:"Request failed ({{status}})",unknownError:"Unknown error",contentTypeMissing:"Content-Type missing",response:"Response: {{response}}",fallbackWithDetail:"{{fallback}}: {{detail}}",fallbackWithHttpStatus:"{{fallback}} (HTTP {{status}})",nonJsonResponse:"{{fallback}}: the server returned a non-JSON response ({{contentType}})"},zie={unconfigured:"AgentKit Dev Sandbox has not been configured by an administrator.",invalidSession:"AgentKit CLI returned an invalid session.",loadCapabilitiesFailed:"Unable to load the AgentKit CLI configuration.",invalidCapabilities:"AgentKit CLI returned an invalid configuration status.",listSessionsFailed:"Unable to load AgentKit CLI sessions.",invalidSessionList:"AgentKit CLI returned an invalid session list.",createSessionFailed:"Unable to create an AgentKit CLI session.",openSessionFailed:"Unable to open the AgentKit CLI session.",openTerminalFailed:"Unable to open the AgentKit CLI terminal.",invalidTerminalUrl:"AgentKit CLI returned an invalid terminal URL."},Vie={cnBeijing:"China North 2 (Beijing)",cnShanghai:"China East 2 (Shanghai)"},Hie={runtimeUnsupported:"This Runtime does not currently support connections. Confirm that the service is running normally."},qie={autoConfigureFailed:"Failed to configure the Feishu bot automatically"},Wie={actionFailed:"Failed to {{action}}",detail:"Details: {{detail}}",request:"Request: {{request}}"},Gie={persistentMemoryHint:"Tip: The session no longer exists. With in-memory or SQLite short-term memory, sessions may be lost during multi-instance routing, process restarts, or rolling deployments. Use database-backed persistent short-term memory instead.",unsupportedRouteHint:"Tip: This Runtime does not provide the session run API and may be incompatible with the current Studio version.",toolArgumentHint:"Tip: The model generated incomplete tool arguments. Send the request again.",resourceCollectionExpiredHint:"Tip: This resource collection has expired. Send the task again so the system can collect the resources before creating the Agent.",networkConfigurationHint:"Tip: Check network settings such as the shared public egress, then try again.",modelQuotaHint:"Tip: The model has reached its TPM/RPM quota. Try again later or increase the model quota.",rawResponseLabel:"Raw response: "},Kie={httpStatus:"HTTP status: {{status}}",errorCode:"Error code: {{code}}",cloudResponseBody:`Cloud response body: -{{body}}`,loadFailedWithDetail:"Failed to load instance logs: {{detail}}",invalidFormat:"Failed to load instance logs: the service returned an invalid format"},Xie={untitledSession:"Untitled session",webUnavailable:"Web search is unavailable because /web/search is not enabled on the server.",webFailed:"Web search failed: {{message}}",webNotMounted:"This Agent does not have the web_search tool mounted.",knowledgeNotMounted:"This Agent does not have a knowledge base mounted.",memoryNotMounted:"This Agent does not have long-term memory mounted.",knowledge:"Knowledge base",longTermMemory:"Long-term memory"},Yie={listSpacesFailed:"Failed to load Skill spaces",createSpaceFailed:"Failed to create the Skill space",updateSpaceFailed:"Failed to update the Skill space",deleteSpaceFailed:"Failed to delete the Skill space",uploadFailed:"Failed to upload the Skill",validateFailed:"Failed to validate the Skill",deleteFailed:"Failed to delete the Skill",listFilesFailed:"Failed to load Skill files",downloadFailed:"Failed to download the Skill"},Zie={truncatedData:"{{data}}… (truncated, {{count}} characters total)",incompleteEvent:"The stream ended with an incomplete SSE event. Raw data: {{data}}",invalidEventJson:"Failed to parse the SSE event JSON. Raw data: {{data}}"},Jie={loadConfigNetworkFailed:"Unable to load the sign-in configuration. Check your network and try again.",configServiceFailed:"The sign-in configuration service failed (HTTP {{status}}). Try again later.",invalidConfigResponse:"The sign-in configuration service returned an unreadable response. Try again later.",serviceNetworkFailed:"Unable to connect to the identity service. Check your network and try again.",invalidServiceResponse:"The identity service returned an unreadable response. Try again later.",serviceFailed:"The identity service failed (HTTP {{status}}). Try again later."},ere={invalidToken:"The GitHub token is invalid or does not have repository write access",notFound:"The repository, branch, or file does not exist, or the token cannot access it",rejectedCommit:"GitHub rejected the commit. Check the branch and file state",requestFailed:"GitHub request failed (HTTP {{status}})",networkFailed:"Unable to connect to GitHub. Check your network and try again",invalidRepositoryFormat:"The GitHub repository must use the owner/repository format",insecureRepositoryUrl:"Only secure github.com repository URLs are supported",unsafeProjectPath:"The Agent project directory must be a safe relative path within the repository",tokenRequired:"A GitHub token is required",invalidBaseBranch:"The target branch format is invalid",invalidPublishBranch:"The publish branch format is invalid",noFiles:"There are no files to commit",missingBaseSha:"The target branch does not have a valid Git SHA",fileAlreadyExists:"{{path}} already exists in the target repository; the existing file was not overwritten",pathNotUpdatable:"The target path {{path}} is not an updatable file",invalidPullRequest:"GitHub did not return a valid pull request"},tre={loadCapabilitiesFailed:"Failed to load video model capabilities",uploadAssetFailed:"Failed to upload {{fileName}}",enhancePromptFailed:"Failed to enhance the prompt",createTaskFailed:"Failed to create the video generation task",getTaskFailed:"Failed to load the video generation task",downloadFailed:"Failed to download the generated video"},nre={listFailed:"Failed to load website integrations",createFailed:"Failed to create the website integration",deleteFailed:"Failed to delete the website integration"},ire={loadFailed:"Failed to load the knowledge base",htmlHidden:"[HTML content hidden]",redacted:"[redacted]",depthTruncated:"[content nested too deeply; truncated]",circularReference:"[circular reference]",diagnosticsUnavailable:"[diagnostic information unavailable]",statusCode:"Status: {{status}}",errorCode:"Error code: {{code}}",requestId:"Request ID: {{requestId}}",diagnostics:"Diagnostics: {{diagnostics}}",detail:"Details: {{detail}}",signInRequired:"Sign in before accessing knowledge bases",forbidden:"You do not have permission to operate on this knowledge base",notFound:"The knowledge base or knowledge content does not exist",conflict:"The knowledge base cannot perform this operation in its current state",requestFailed:"Knowledge base request failed ({{status}})"},rre={invalidSourceSnapshot:"The source snapshot response has an invalid format.",invalidProjectList:"The project list response has an invalid format.",invalidProjectVersion:"The project version response has an invalid format.",loadProjectsFailed:"Unable to load saved projects",loadVersionsFailed:"Unable to load project versions",deleteVersionFailed:"Failed to delete the project version",invalidDeleteVersionResponse:"The project version deletion response has an invalid format.",loadProjectSourceFailed:"Unable to load project source",loadSnapshotFailed:"Unable to load the source snapshot",restoreSnapshotFailed:"Unable to restore the current source snapshot",downloadSourceFailed:"Failed to download the source",downloadNotZip:"The source download response is not a ZIP file.",downloadSizeMismatch:"The source archive size does not match the published record. Try again."},sre={invalidFormat:"{{label}} has an invalid format.",validationSeparator:"; ",invalidAnalysisResult:"The migration analysis result has an invalid format.",invalidFrameworkCandidate:"A framework candidate has an invalid format.",invalidAnalysisEvidence:"The analysis evidence has an invalid format.",invalidEntryCandidate:"An entry candidate has an invalid format.",invalidQuestion:"A follow-up question has an invalid format.",invalidTask:"The migration session has an invalid format.",invalidAnalysisReference:"The analysis result reference has an invalid format.",invalidSourcePersistence:"The migration source persistence status has an invalid format.",invalidActivity:"The migration activity has an invalid format.",invalidActivityItem:"A migration activity item has an invalid format.",invalidActivityTool:"A migration activity tool item has an invalid format.",invalidActivityPlan:"The migration execution plan has an invalid format.",invalidActivityPlanItem:"A migration execution plan item has an invalid format.",invalidArtifact:"The migration artifact has an invalid format.",invalidEnvironmentDefaults:"The environment variable defaults have an invalid format.",invalidArtifactFile:"A migration artifact file has an invalid format.",invalidVerificationCheck:"A migration verification check has an invalid format.",requestValidationFailed:"Request validation failed: {{detail}}",gatewayError:"{{fallback}} (HTTP {{status}}, Content-Type: {{contentType}}). Check the proxy or gateway configuration.",nonJsonResponse:"{{fallback}}: the server returned a non-JSON response (HTTP {{status}}). Check the proxy or gateway configuration.",loadCapabilitiesFailed:"Failed to load migration capabilities",invalidCapabilities:"The migration capabilities have an invalid format.",invalidModelCapabilities:"The migration model capabilities have an invalid format.",loadTasksFailed:"Failed to load migration sessions",invalidTaskList:"The migration session list has an invalid format.",createTaskFailed:"Failed to create the migration session",uploadProjectFailed:"Failed to upload the migration project",loadActivityFailed:"Failed to load migration activity",startFailed:"Failed to start the migration",submitAnswersFailed:"Failed to submit additional analysis information",stopFailed:"Failed to stop the migration",deleteTaskFailed:"Failed to delete the migration session",loadArtifactFailed:"Failed to load the migration artifact",loadArtifactFileFailed:"Failed to load the migration artifact file",downloadArtifactFailed:"Failed to download the migration artifact",labels:{analysisResult:"Migration analysis result",recommendation:"Migration recommendation",boundary:"Migration boundary",frameworkCandidate:"Framework candidate",analysisEvidence:"Analysis evidence",recommendedFramework:"Recommended framework",entryCandidate:"Entry candidate",entryFramework:"Entry framework",includeScope:"Migration include scope",excludeScope:"Migration exclude scope",assumptions:"Analysis assumptions",question:"Follow-up question",analysisWarnings:"Migration warnings",task:"Migration session",artifactStatus:"Migration artifact status",analysisReference:"Analysis result reference",confirmation:"Migration confirmation",confirmedFramework:"Confirmed framework",error:"Migration error",sourcePersistence:"Migration source persistence status",activity:"Migration activity",activityItem:"Migration activity item",activityTool:"Migration activity tool item",activityPlanItem:"Migration activity plan item",artifact:"Migration artifact",cli:"CLI information",migration:"Migration information",startup:"Startup information",environment:"Environment variable information",verification:"Verification information",report:"Migration report",archive:"Artifact archive",environmentDefaults:"Environment variable defaults",requiredEnvironment:"Required environment variables",optionalEnvironment:"Optional environment variables",artifactFile:"Migration artifact file",verificationCheck:"Migration verification check",artifactWarnings:"Migration artifact warnings",errorResponse:"Error response",errorDetail:"Error details",capabilities:"Migration capabilities",framework:"Migration framework",modelCapabilities:"Migration model capabilities",taskList:"Migration session list"}},are={status:{ready:"Ready",wakeable:"Asleep",creating:"Creating",starting:"Starting",pending:"Pending",running:"Running",failed:"Error",stopped:"Stopped",expired:"Expired",deleting:"Deleting",deleted:"Deleted",unknown:"Unknown status"},developmentTimeout:"The development environment timed out. The task may still be running; reopen this session later to check its status.",developmentDisconnected:"The connection to the development environment was interrupted. The task may still be running; reopen this session later to check its status.",developmentFailed:"The development task could not continue. The environment was preserved; try again in this session.",invalidStudioResponse:"{{fallback}} Studio returned an invalid response. Refresh and try again.",invalidSession:"AgentKit Sandbox returned invalid session information.",invalidSnapshot:"AgentKit Sandbox returned invalid snapshot information.",invalidSettings:"Sandbox returned invalid settings.",invalidThreadSnapshot:"Sandbox returned an invalid thread snapshot.",emptyConversationResponse:"The Sandbox conversation service returned no content.",invalidConversationResponse:"The Sandbox conversation service returned an unreadable response.",conversationFailed:"The Sandbox conversation failed. Try again later.",emptyReply:"Sandbox did not return a valid reply. Try again.",missingSession:"The AgentKit session is missing.",listCodexFailed:"Unable to load Codex agents. Try again later.",invalidSessionList:"AgentKit Sandbox returned an invalid session list.",invalidSnapshotList:"AgentKit Sandbox returned an invalid snapshot list.",startFailed:"Unable to start AgentKit Sandbox. Try again later.",listAgentFailed:"Unable to load {{kind}} agents. Try again later.",invalidKindSessionList:"AgentKit returned an invalid {{kind}} session list.",invalidKindSnapshotList:"AgentKit returned an invalid {{kind}} snapshot list.",createAgentFailed:"Unable to create a {{kind}} agent. Try again later.",missingSessionToOpen:"The AgentKit session to open is missing.",openAgentFailed:"Unable to open the {{kind}} agent.",invalidAgentHomeUrl:"The {{kind}} agent returned an invalid home URL.",missingSessionForTerminal:"The AgentKit session for the terminal is missing.",openTerminalFailed:"Unable to open the {{kind}} terminal.",deleteAgentFailed:"Unable to delete the {{kind}} agent.",missingSnapshot:"The agent to wake was not found.",resumeSnapshotFailed:"Unable to wake the agent. Try again later.",deleteSnapshotFailed:"Unable to delete the agent. Try again later.",missingSessionToConnect:"The AgentKit session to connect is missing.",connectCodexFailed:"Unable to connect to the Codex agent. Try again later.",sessionNotReady:"The AgentKit session is not ready. Current status: {{status}}.",invalidMessage:"The built-in agent session does not contain a valid message.",interruptFailed:"Unable to stop the current task.",getStatusFailed:"Unable to load Codex status.",getEndpointFailed:"Unable to load the Sandbox endpoint.",invalidEndpoint:"Sandbox returned an invalid endpoint.",createHandoffPairingFailed:"Unable to create a Codex cloud handoff pairing code.",invalidHandoffPairing:"Studio returned an invalid Codex cloud handoff pairing code.",getHandoffStatusFailed:"Unable to load the cloud handoff status.",invalidHandoffStatus:"Studio returned an invalid cloud handoff status.",listModelsFailed:"Unable to load Codex models.",invalidModelList:"Sandbox returned an invalid model list.",setModelFailed:"Unable to switch the Codex model.",invalidModel:"Sandbox returned an invalid model.",listSkillsFailed:"Unable to load Codex Skills.",invalidSkillList:"Sandbox returned an invalid Skill list.",listThreadsFailed:"Unable to load Codex threads.",invalidThreadList:"Sandbox returned an invalid thread list.",createThreadFailed:"Unable to create a new Codex thread.",missingThread:"The Codex thread to read is missing.",readThreadFailed:"Unable to load Codex history.",resumeThreadFailed:"Unable to resume the Codex thread.",forkThreadFailed:"Unable to fork the Codex thread.",archiveThreadFailed:"Unable to archive the Codex thread.",invalidArchiveResult:"Sandbox returned an invalid archive result.",deleteThreadFailed:"Unable to delete the Codex thread.",invalidDeleteResult:"Sandbox returned an invalid deletion result.",compactThreadFailed:"Unable to compact the Codex thread.",getSettingsFailed:"Unable to load Codex permissions and workspace settings.",updatePermissionsFailed:"Unable to update Codex permissions.",updateWorkspaceFailed:"Unable to update the Codex workspace.",invalidWorkingDirectory:"Sandbox returned an invalid working directory.",listDirectoriesFailed:"Unable to load Sandbox directories.",invalidDirectoryList:"Sandbox returned an invalid directory list.",resolveApprovalFailed:"Unable to submit the Codex approval decision.",uploadFileFailed:"Unable to upload the file to Sandbox.",invalidUploadResult:"Sandbox returned an invalid upload result.",disconnectCodexFailed:"Unable to disconnect the Codex agent.",deleteCodexFailed:"Unable to delete the Codex agent.",openSandboxTerminalFailed:"Unable to open the Sandbox terminal.",openSandboxBrowserFailed:"Unable to open the Sandbox browser.",toolLabel:"Sandbox tool",invalidToolUrl:"{{label}} returned an invalid URL.",unsafeToolUrl:"{{label}} returned an unsafe URL."},ore={invalidSandboxVersion:"Invalid sandbox version response",loadSandboxVersionsFailed:"Failed to check sandbox versions",updateSandboxFailed:"Failed to update sandbox",invalidSandboxUpdate:"Invalid sandbox update response",errorWithDetailAndRawResponse:`{{context}} + */var ZDe=Symbol.for("react.transitional.element"),JDe=Symbol.for("react.fragment");function ere(e,t,n){var i=null;if(n!==void 0&&(i=""+n),t.key!==void 0&&(i=""+t.key),"key"in t){n={};for(var r in t)r!=="key"&&(n[r]=t[r])}else n=t;return t=n.ref,{$$typeof:ZDe,type:e,key:i,ref:t!==void 0?t:null,props:n}}Ej.Fragment=JDe;Ej.jsx=ere;Ej.jsxs=ere;Jie.exports=Ej;var o=Jie.exports;const tre={requestFailed:"Request failed ({{status}})",unknownError:"Unknown error",contentTypeMissing:"Content-Type missing",response:"Response: {{response}}",fallbackWithDetail:"{{fallback}}: {{detail}}",fallbackWithHttpStatus:"{{fallback}} (HTTP {{status}})",nonJsonResponse:"{{fallback}}: the server returned a non-JSON response ({{contentType}})"},nre={unconfigured:"AgentKit Dev Sandbox has not been configured by an administrator.",invalidSession:"AgentKit CLI returned an invalid session.",loadCapabilitiesFailed:"Unable to load the AgentKit CLI configuration.",invalidCapabilities:"AgentKit CLI returned an invalid configuration status.",listSessionsFailed:"Unable to load AgentKit CLI sessions.",invalidSessionList:"AgentKit CLI returned an invalid session list.",createSessionFailed:"Unable to create an AgentKit CLI session.",openSessionFailed:"Unable to open the AgentKit CLI session.",openTerminalFailed:"Unable to open the AgentKit CLI terminal.",invalidTerminalUrl:"AgentKit CLI returned an invalid terminal URL."},ire={cnBeijing:"China North 2 (Beijing)",cnShanghai:"China East 2 (Shanghai)"},rre={runtimeUnsupported:"This Runtime does not currently support connections. Confirm that the service is running normally."},sre={autoConfigureFailed:"Failed to configure the Feishu bot automatically"},are={actionFailed:"Failed to {{action}}",detail:"Details: {{detail}}",request:"Request: {{request}}"},ore={persistentMemoryHint:"Tip: The session no longer exists. With in-memory or SQLite short-term memory, sessions may be lost during multi-instance routing, process restarts, or rolling deployments. Use database-backed persistent short-term memory instead.",unsupportedRouteHint:"Tip: This Runtime does not provide the session run API and may be incompatible with the current Studio version.",toolArgumentHint:"Tip: The model generated incomplete tool arguments. Send the request again.",resourceCollectionExpiredHint:"Tip: This resource collection has expired. Send the task again so the system can collect the resources before creating the Agent.",networkConfigurationHint:"Tip: Check network settings such as the shared public egress, then try again.",modelQuotaHint:"Tip: The model has reached its TPM/RPM quota. Try again later or increase the model quota.",rawResponseLabel:"Raw response: "},lre={httpStatus:"HTTP status: {{status}}",errorCode:"Error code: {{code}}",cloudResponseBody:`Cloud response body: +{{body}}`,loadFailedWithDetail:"Failed to load instance logs: {{detail}}",invalidFormat:"Failed to load instance logs: the service returned an invalid format"},cre={untitledSession:"Untitled session",webUnavailable:"Web search is unavailable because /web/search is not enabled on the server.",webFailed:"Web search failed: {{message}}",webNotMounted:"This Agent does not have the web_search tool mounted.",knowledgeNotMounted:"This Agent does not have a knowledge base mounted.",memoryNotMounted:"This Agent does not have long-term memory mounted.",knowledge:"Knowledge base",longTermMemory:"Long-term memory"},ure={listSpacesFailed:"Failed to load Skill spaces",createSpaceFailed:"Failed to create the Skill space",updateSpaceFailed:"Failed to update the Skill space",deleteSpaceFailed:"Failed to delete the Skill space",uploadFailed:"Failed to upload the Skill",validateFailed:"Failed to validate the Skill",deleteFailed:"Failed to delete the Skill",listFilesFailed:"Failed to load Skill files",downloadFailed:"Failed to download the Skill"},dre={truncatedData:"{{data}}… (truncated, {{count}} characters total)",incompleteEvent:"The stream ended with an incomplete SSE event. Raw data: {{data}}",invalidEventJson:"Failed to parse the SSE event JSON. Raw data: {{data}}"},fre={loadConfigNetworkFailed:"Unable to load the sign-in configuration. Check your network and try again.",configServiceFailed:"The sign-in configuration service failed (HTTP {{status}}). Try again later.",invalidConfigResponse:"The sign-in configuration service returned an unreadable response. Try again later.",serviceNetworkFailed:"Unable to connect to the identity service. Check your network and try again.",invalidServiceResponse:"The identity service returned an unreadable response. Try again later.",serviceFailed:"The identity service failed (HTTP {{status}}). Try again later."},hre={invalidToken:"The GitHub token is invalid or does not have repository write access",notFound:"The repository, branch, or file does not exist, or the token cannot access it",rejectedCommit:"GitHub rejected the commit. Check the branch and file state",requestFailed:"GitHub request failed (HTTP {{status}})",networkFailed:"Unable to connect to GitHub. Check your network and try again",invalidRepositoryFormat:"The GitHub repository must use the owner/repository format",insecureRepositoryUrl:"Only secure github.com repository URLs are supported",unsafeProjectPath:"The Agent project directory must be a safe relative path within the repository",tokenRequired:"A GitHub token is required",invalidBaseBranch:"The target branch format is invalid",invalidPublishBranch:"The publish branch format is invalid",noFiles:"There are no files to commit",missingBaseSha:"The target branch does not have a valid Git SHA",fileAlreadyExists:"{{path}} already exists in the target repository; the existing file was not overwritten",pathNotUpdatable:"The target path {{path}} is not an updatable file",invalidPullRequest:"GitHub did not return a valid pull request"},pre={loadCapabilitiesFailed:"Failed to load video model capabilities",uploadAssetFailed:"Failed to upload {{fileName}}",enhancePromptFailed:"Failed to enhance the prompt",createTaskFailed:"Failed to create the video generation task",getTaskFailed:"Failed to load the video generation task",downloadFailed:"Failed to download the generated video"},mre={listFailed:"Failed to load website integrations",createFailed:"Failed to create the website integration",deleteFailed:"Failed to delete the website integration"},gre={loadFailed:"Failed to load the knowledge base",htmlHidden:"[HTML content hidden]",redacted:"[redacted]",depthTruncated:"[content nested too deeply; truncated]",circularReference:"[circular reference]",diagnosticsUnavailable:"[diagnostic information unavailable]",statusCode:"Status: {{status}}",errorCode:"Error code: {{code}}",requestId:"Request ID: {{requestId}}",diagnostics:"Diagnostics: {{diagnostics}}",detail:"Details: {{detail}}",signInRequired:"Sign in before accessing knowledge bases",forbidden:"You do not have permission to operate on this knowledge base",notFound:"The knowledge base or knowledge content does not exist",conflict:"The knowledge base cannot perform this operation in its current state",requestFailed:"Knowledge base request failed ({{status}})"},bre={invalidSourceSnapshot:"The source snapshot response has an invalid format.",invalidProjectList:"The project list response has an invalid format.",invalidProjectVersion:"The project version response has an invalid format.",loadProjectsFailed:"Unable to load saved projects",loadVersionsFailed:"Unable to load project versions",deleteVersionFailed:"Failed to delete the project version",invalidDeleteVersionResponse:"The project version deletion response has an invalid format.",loadProjectSourceFailed:"Unable to load project source",loadSnapshotFailed:"Unable to load the source snapshot",restoreSnapshotFailed:"Unable to restore the current source snapshot",downloadSourceFailed:"Failed to download the source",downloadNotZip:"The source download response is not a ZIP file.",downloadSizeMismatch:"The source archive size does not match the published record. Try again."},yre={invalidFormat:"{{label}} has an invalid format.",validationSeparator:"; ",invalidAnalysisResult:"The migration analysis result has an invalid format.",invalidFrameworkCandidate:"A framework candidate has an invalid format.",invalidAnalysisEvidence:"The analysis evidence has an invalid format.",invalidEntryCandidate:"An entry candidate has an invalid format.",invalidQuestion:"A follow-up question has an invalid format.",invalidTask:"The migration session has an invalid format.",invalidAnalysisReference:"The analysis result reference has an invalid format.",invalidSourcePersistence:"The migration source persistence status has an invalid format.",invalidActivity:"The migration activity has an invalid format.",invalidActivityItem:"A migration activity item has an invalid format.",invalidActivityTool:"A migration activity tool item has an invalid format.",invalidActivityPlan:"The migration execution plan has an invalid format.",invalidActivityPlanItem:"A migration execution plan item has an invalid format.",invalidArtifact:"The migration artifact has an invalid format.",invalidEnvironmentDefaults:"The environment variable defaults have an invalid format.",invalidArtifactFile:"A migration artifact file has an invalid format.",invalidVerificationCheck:"A migration verification check has an invalid format.",requestValidationFailed:"Request validation failed: {{detail}}",gatewayError:"{{fallback}} (HTTP {{status}}, Content-Type: {{contentType}}). Check the proxy or gateway configuration.",nonJsonResponse:"{{fallback}}: the server returned a non-JSON response (HTTP {{status}}). Check the proxy or gateway configuration.",loadCapabilitiesFailed:"Failed to load migration capabilities",invalidCapabilities:"The migration capabilities have an invalid format.",invalidModelCapabilities:"The migration model capabilities have an invalid format.",loadTasksFailed:"Failed to load migration sessions",invalidTaskList:"The migration session list has an invalid format.",createTaskFailed:"Failed to create the migration session",uploadProjectFailed:"Failed to upload the migration project",loadActivityFailed:"Failed to load migration activity",startFailed:"Failed to start the migration",submitAnswersFailed:"Failed to submit additional analysis information",stopFailed:"Failed to stop the migration",deleteTaskFailed:"Failed to delete the migration session",loadArtifactFailed:"Failed to load the migration artifact",loadArtifactFileFailed:"Failed to load the migration artifact file",downloadArtifactFailed:"Failed to download the migration artifact",labels:{analysisResult:"Migration analysis result",recommendation:"Migration recommendation",boundary:"Migration boundary",frameworkCandidate:"Framework candidate",analysisEvidence:"Analysis evidence",recommendedFramework:"Recommended framework",entryCandidate:"Entry candidate",entryFramework:"Entry framework",includeScope:"Migration include scope",excludeScope:"Migration exclude scope",assumptions:"Analysis assumptions",question:"Follow-up question",analysisWarnings:"Migration warnings",task:"Migration session",artifactStatus:"Migration artifact status",analysisReference:"Analysis result reference",confirmation:"Migration confirmation",confirmedFramework:"Confirmed framework",error:"Migration error",sourcePersistence:"Migration source persistence status",activity:"Migration activity",activityItem:"Migration activity item",activityTool:"Migration activity tool item",activityPlanItem:"Migration activity plan item",artifact:"Migration artifact",cli:"CLI information",migration:"Migration information",startup:"Startup information",environment:"Environment variable information",verification:"Verification information",report:"Migration report",archive:"Artifact archive",environmentDefaults:"Environment variable defaults",requiredEnvironment:"Required environment variables",optionalEnvironment:"Optional environment variables",artifactFile:"Migration artifact file",verificationCheck:"Migration verification check",artifactWarnings:"Migration artifact warnings",errorResponse:"Error response",errorDetail:"Error details",capabilities:"Migration capabilities",framework:"Migration framework",modelCapabilities:"Migration model capabilities",taskList:"Migration session list"}},vre={status:{ready:"Ready",wakeable:"Asleep",creating:"Creating",starting:"Starting",pending:"Pending",running:"Running",failed:"Error",stopped:"Stopped",expired:"Expired",deleting:"Deleting",deleted:"Deleted",unknown:"Unknown status"},developmentTimeout:"The development environment timed out. The task may still be running; reopen this session later to check its status.",developmentDisconnected:"The connection to the development environment was interrupted. The task may still be running; reopen this session later to check its status.",developmentFailed:"The development task could not continue. The environment was preserved; try again in this session.",invalidStudioResponse:"{{fallback}} Studio returned an invalid response. Refresh and try again.",invalidSession:"AgentKit Sandbox returned invalid session information.",invalidSnapshot:"AgentKit Sandbox returned invalid snapshot information.",invalidSettings:"Sandbox returned invalid settings.",invalidThreadSnapshot:"Sandbox returned an invalid thread snapshot.",emptyConversationResponse:"The Sandbox conversation service returned no content.",invalidConversationResponse:"The Sandbox conversation service returned an unreadable response.",conversationFailed:"The Sandbox conversation failed. Try again later.",emptyReply:"Sandbox did not return a valid reply. Try again.",missingSession:"The AgentKit session is missing.",listCodexFailed:"Unable to load Codex agents. Try again later.",invalidSessionList:"AgentKit Sandbox returned an invalid session list.",invalidSnapshotList:"AgentKit Sandbox returned an invalid snapshot list.",startFailed:"Unable to start AgentKit Sandbox. Try again later.",listAgentFailed:"Unable to load {{kind}} agents. Try again later.",invalidKindSessionList:"AgentKit returned an invalid {{kind}} session list.",invalidKindSnapshotList:"AgentKit returned an invalid {{kind}} snapshot list.",createAgentFailed:"Unable to create a {{kind}} agent. Try again later.",missingSessionToOpen:"The AgentKit session to open is missing.",openAgentFailed:"Unable to open the {{kind}} agent.",invalidAgentHomeUrl:"The {{kind}} agent returned an invalid home URL.",missingSessionForTerminal:"The AgentKit session for the terminal is missing.",openTerminalFailed:"Unable to open the {{kind}} terminal.",deleteAgentFailed:"Unable to delete the {{kind}} agent.",missingSnapshot:"The agent to wake was not found.",resumeSnapshotFailed:"Unable to wake the agent. Try again later.",deleteSnapshotFailed:"Unable to delete the agent. Try again later.",missingSessionToConnect:"The AgentKit session to connect is missing.",connectCodexFailed:"Unable to connect to the Codex agent. Try again later.",sessionNotReady:"The AgentKit session is not ready. Current status: {{status}}.",invalidMessage:"The built-in agent session does not contain a valid message.",interruptFailed:"Unable to stop the current task.",getStatusFailed:"Unable to load Codex status.",getEndpointFailed:"Unable to load the Sandbox endpoint.",invalidEndpoint:"Sandbox returned an invalid endpoint.",createHandoffPairingFailed:"Unable to create a Codex cloud handoff pairing code.",invalidHandoffPairing:"Studio returned an invalid Codex cloud handoff pairing code.",getHandoffStatusFailed:"Unable to load the cloud handoff status.",invalidHandoffStatus:"Studio returned an invalid cloud handoff status.",listModelsFailed:"Unable to load Codex models.",invalidModelList:"Sandbox returned an invalid model list.",setModelFailed:"Unable to switch the Codex model.",invalidModel:"Sandbox returned an invalid model.",listSkillsFailed:"Unable to load Codex Skills.",invalidSkillList:"Sandbox returned an invalid Skill list.",listThreadsFailed:"Unable to load Codex threads.",invalidThreadList:"Sandbox returned an invalid thread list.",createThreadFailed:"Unable to create a new Codex thread.",missingThread:"The Codex thread to read is missing.",readThreadFailed:"Unable to load Codex history.",resumeThreadFailed:"Unable to resume the Codex thread.",forkThreadFailed:"Unable to fork the Codex thread.",archiveThreadFailed:"Unable to archive the Codex thread.",invalidArchiveResult:"Sandbox returned an invalid archive result.",deleteThreadFailed:"Unable to delete the Codex thread.",invalidDeleteResult:"Sandbox returned an invalid deletion result.",compactThreadFailed:"Unable to compact the Codex thread.",getSettingsFailed:"Unable to load Codex permissions and workspace settings.",updatePermissionsFailed:"Unable to update Codex permissions.",updateWorkspaceFailed:"Unable to update the Codex workspace.",invalidWorkingDirectory:"Sandbox returned an invalid working directory.",listDirectoriesFailed:"Unable to load Sandbox directories.",invalidDirectoryList:"Sandbox returned an invalid directory list.",resolveApprovalFailed:"Unable to submit the Codex approval decision.",uploadFileFailed:"Unable to upload the file to Sandbox.",invalidUploadResult:"Sandbox returned an invalid upload result.",disconnectCodexFailed:"Unable to disconnect the Codex agent.",deleteCodexFailed:"Unable to delete the Codex agent.",openSandboxTerminalFailed:"Unable to open the Sandbox terminal.",openSandboxBrowserFailed:"Unable to open the Sandbox browser.",toolLabel:"Sandbox tool",invalidToolUrl:"{{label}} returned an invalid URL.",unsafeToolUrl:"{{label}} returned an unsafe URL."},xre={invalidSandboxVersion:"Invalid sandbox version response",loadSandboxVersionsFailed:"Failed to check sandbox versions",updateSandboxFailed:"Failed to update sandbox",invalidSandboxUpdate:"Invalid sandbox update response",errorWithDetailAndRawResponse:`{{context}} {{detail}} Raw response: {{response}}`,errorWithRawResponse:`{{context}} Raw response: -{{response}}`,loadArkApiKeysFailed:"Failed to load Ark API keys",loadModelsFailed:"Failed to load models",runtimeAccessDenied:"This account cannot access the Runtime. Refresh the list or sign in again.",privateRuntimeUnavailable:"The Runtime was deployed, but this Studio cannot access the private Runtime. Use a Studio connected to the same VPC, or deploy with public or public plus VPC access.",runtimeTemporarilyUnavailable:"The Runtime was deployed, but Studio cannot connect yet. The gateway domain may still be propagating, or the current network or DNS cannot reach it. Try connecting again later from Manage Agents.",runtimeConnectionUnsupported:"The Runtime Agent Server does not provide a connection endpoint. Confirm that the Runtime is ready and compatible.",runtimeConnectionDenied:"The Runtime rejected the connection request. Check its authentication configuration.",listAgentsFailed:"Failed to load Agents",invalidListAppsJson:"Runtime /list-apps returned unreadable JSON.",invalidListAppsFormat:"Runtime /list-apps returned an invalid format; expected a non-empty string array.",createSessionFailedWithStatus:"Failed to create session ({{status}})",createSessionFailed:"Failed to create session",getSessionFailed:"Failed to load session",getSessionFailedWithDetail:"Failed to load session ({{status}}): {{detail}}",feedbackRuntimeOnly:"Feedback sync is supported only for sessions connected to an AgentKit Runtime",feedbackRegionMissing:"The Runtime region is missing, so feedback cannot be submitted",submitFeedbackFailed:"Failed to submit feedback",loadEvaluationSetsFailed:"Failed to load evaluation sets",loadAutoEvaluationStatusFailed:"Failed to load automatic evaluation status",loadOptimizationsFailed:"Failed to load optimization suggestions",deleteEvaluationCaseFailed:"Failed to delete the evaluation case",downloadFileFailed:"Failed to download the file",fileUnavailable:"File content is unavailable",uploadFileFailed:"File upload failed",traceDisabled:"Tracing is not enabled for this Agent. Enable it in the console first.",loadTraceFailed:"Failed to load trace data",contentTypeMissing:"Content-Type missing",traceNonJson:"Trace failed: the server returned a non-JSON response ({{contentType}}). Check the Studio API proxy configuration",invalidTraceFormat:"Trace failed: invalid response format",submitIssueFeedbackFailed:"Failed to submit issue feedback",issueFeedbackNotConfirmed:"Failed to submit issue feedback: the server did not confirm the submission",noPreviewableAgent:"This Runtime does not provide an Agent that can be previewed.",agentSearchFailed:"Agent search failed",emptySseBody:"HTTP 200 with an empty SSE response body.",noDisplayableSseReply:"HTTP 200, but the SSE response did not contain a displayable model reply.",firstSseEventTimeout:"No SSE event was received within 30 seconds.",runSessionFailed:"Session run failed",runSseFailedWithDetail:"run_sse failed ({{status}}): {{detail}}",checkRuntimeNameFailed:"Failed to check the Runtime name",invalidRuntimeNameCheck:"Failed to check the Runtime name: invalid response format",loadCloudResourcesFailed:"Failed to load cloud resources",invalidCloudResources:"The cloud resource list response has an invalid format",invalidEnvironmentMount:"The environment mount response has an invalid format",environmentMountMismatch:"The environment mount response does not match the request",environmentMountNetworkFailed:"Unable to connect to Studio, so the environment was not mounted. Check your network and try again.",environmentMountFailed:"Failed to mount the environment",clipboardUnsupported:"This browser does not support writing to the clipboard.",clipboardWriteFailed:"Unable to write to the clipboard. Check clipboard permissions.",loadSystemInfoFailed:"Failed to load system information",invalidSystemInfo:"The system information response has an invalid format",invalidEnvironmentBuild:"The environment build response has an invalid format",invalidEnvironmentBuildStep:"The environment build step response has an invalid format",invalidEnvironmentManifest:"The environment manifest response has an invalid format",invalidImageRepository:"The environment image repository response has an invalid format",invalidCodeRepository:"The environment code repository response has an invalid format",invalidImageSource:"The environment image source response has an invalid format",invalidEnvironment:"The environment response has an invalid format",invalidWorkspace:"The workspace response has an invalid format",loadWorkspacesFailed:"Failed to load workspaces",invalidWorkspaceList:"The workspace list response has an invalid format",saveWorkspaceFailed:"Failed to save the workspace",deleteWorkspaceFailed:"Failed to delete the workspace",loadEnvironmentsFailed:"Failed to load environments",invalidEnvironmentList:"The environment list response has an invalid format",probeRepositoryFailed:"Failed to inspect the code repository",invalidRepositoryProbe:"The code repository inspection response has an invalid format",exportEnvironmentCodeFailed:"Failed to export the environment share code",invalidEnvironmentCode:"The environment share code response has an invalid format",inspectEnvironmentCodeFailed:"Failed to inspect the environment share code",invalidEnvironmentCodeInspection:"The environment share code inspection response has an invalid format",importEnvironmentCodeFailed:"Failed to import the environment share code",invalidEnvironmentCodeImport:"The environment share code import response has an invalid format",studioUnavailable:"Unable to connect to Studio. Confirm that the backend is running and try again.",saveEnvironmentFailed:"Failed to save the environment",deleteEnvironmentFailed:"Failed to delete the environment",startEnvironmentBuildFailed:"Failed to start the environment build",loadEnvironmentBuildFailed:"Failed to load environment build details",loadEnvironmentManifestFailed:"Failed to load the environment manifest",invalidEnvironmentResource:"The environment resource response has an invalid format",loadEnvironmentResourcesFailed:"Failed to load environment build resources",updateCodexSandboxFailed:"Failed to update Codex Sandbox",invalidCodexSandboxUpdate:"The Codex Sandbox update response has an invalid format",loadUserPoolsFailed:"Failed to load user pools",invalidUserPoolList:"The user pool list response has an invalid format",syncGithubFailed:"Failed to sync GitHub code ({{status}})",validatingMigrationArtifact:"Validating migration artifact",uploadingCodePackage:"Uploading code package",migrationArtifactValidated:"Migration artifact validated",codePackageUploaded:"Code package uploaded",deploymentProgress:{preparing:"Preparing deployment",uploading:"Uploading the code package",building:"Building the image",buildLogsSyncing:"Building the image. Build logs are up to date.",buildLogsComplete:"Build log sync complete.",buildFailedLogsSynced:"Image build failed. Final build logs are available.",buildLogsUnavailable:"Build logs are temporarily unavailable.",finalBuildLogsUnavailable:"Final build logs are temporarily unavailable.",deploying:"Deploying the service",publishing:"Publishing the service",evaluating:"Creating evaluation sets",updating:"Updating the Runtime configuration",completing:"Finalizing deployment",github:"Configuring GitHub delivery",inProgress:"Deployment in progress"},deploymentFailed:"Deployment failed",deploymentDisconnected:"Deployment failed: connection interrupted",deploymentMissingAgentName:"Deployment failed: Agent name missing from response",deploymentMissingConnection:"Deployment failed: AgentKit connection information missing from response",cancelDeploymentFailed:"Failed to cancel deployment ({{status}})",loadFailed:"Failed to load ({{status}})",loadPermissionsFailed:"Failed to load permissions ({{status}})",invalidPermissionResponse:"The permission service returned an unreadable response",checkStudioUpdateFailed:"Failed to check for Studio updates ({{status}})",studioUpdatePreflightFailed:"Studio update permission check failed ({{status}})",submitStudioUpdateFailed:"Failed to submit the Studio update ({{status}})",loadAgentUsageFailed:"Failed to load Agent usage",notProvided:"Not provided",agentUsageNonJson:"Failed to load Agent usage: the server returned a non-JSON response (HTTP {{status}}, Content-Type: {{contentType}}). ",checkStudioGateway:"Confirm that the current service is running in Studio mode and check the proxy or gateway configuration.",agentUsageInvalidJson:"Failed to load Agent usage: the server returned invalid JSON (HTTP {{status}}, Content-Type: {{contentType}}). ",retryCheckGateway:"Try again later. If the problem persists, check the proxy or gateway configuration.",loadCronJobsFailed:"Failed to load scheduled tasks",loadCronJobFailed:"Failed to load scheduled task details",createCronJobFailed:"Failed to create the scheduled task",updateCronJobFailed:"Failed to update the scheduled task",enableCronJobFailed:"Failed to enable the scheduled task",pauseCronJobFailed:"Failed to pause the scheduled task",runCronJobFailed:"Failed to run the scheduled task now",loadCronHistoryFailed:"Failed to load execution history",stopCronRunFailed:"Failed to stop the execution",deleteCronJobFailed:"Failed to delete the scheduled task",loadRuntimeFailed:"Failed to load the Runtime",loadLocalToolsFailed:"Failed to load local tools",connectDynamicRouteFailed:"Failed to connect the Studio dynamic route",a2aProbeDenied:"The Runtime rejected the A2A probe. Check the Runtime authentication configuration.",loadA2aCardFailed:"Failed to load the A2A Agent Card",loadRuntimeApiKeyFailed:"Failed to load the Runtime API key",runtimeApiKeyMissing:"The Runtime did not return a usable API key",deleteFailed:"Delete failed ({{status}})",runtimeManageForbidden:"This account cannot manage the Runtime.",runtimeNotFound:"The Runtime does not exist or has been deleted.",runtimeUnavailable:"This account cannot access the Runtime.",checkRuntimeUpdateFailed:"Failed to check Runtime update capability (HTTP {{status}}). Try again later.",loadRuntimeDetailFailed:"Failed to load Runtime details",generateProjectFailed:"Failed to generate the project",generateAgentConfigFailed:"Failed to generate the Agent configuration",createDebugRunFailed:"Failed to create the debug run",createDebugSessionFailed:"Failed to create the debug session",loadDebugTraceFailed:"Failed to load the debug trace",invalidDebugTrace:"Failed to load the debug trace: invalid response format",debugRunFailed:"Debug run failed",cleanupDebugRunFailed:"Failed to clean up the debug run"},lre={loadFailed:"Failed to load conversation mode capabilities (HTTP {{status}})",invalidResponse:"The conversation mode capabilities response has an invalid format"},cre={nonJson:"{{fallback}}: the server returned a non-JSON response (HTTP {{status}}, {{contentType}}){{detail}}"},ure={common:Qie,agentkitCli:zie,cloudRegion:Vie,connections:Hie,feishuBot:qie,requestError:Wie,runSse:Gie,runtimeLogs:Kie,search:Xie,skills:Yie,sse:Zie,identity:Jie,github:ere,video:tre,websiteIntegration:nre,knowledge:ire,intelligentDevelopment:rre,migrations:sre,sandbox:are,client:ore,newChatCapabilities:lre,jsonResponse:cre},LDe=Object.freeze(Object.defineProperty({__proto__:null,agentkitCli:zie,client:ore,cloudRegion:Vie,common:Qie,connections:Hie,default:ure,feishuBot:qie,github:ere,identity:Jie,intelligentDevelopment:rre,jsonResponse:cre,knowledge:ire,migrations:sre,newChatCapabilities:lre,requestError:Wie,runSse:Gie,runtimeLogs:Kie,sandbox:are,search:Xie,skills:Yie,sse:Zie,video:tre,websiteIntegration:nre},Symbol.toStringTag,{value:"Module"})),dre={backToEvaluationCase:"Back to evaluation case",cancel:"Cancel",copied:"Copied",copy:"Copy",exportConversation:"Export conversation",retry:"Retry"},fre={title:"How would you like to add an Agent?",subtitle:"Choose the approach that best fits your project.",quickCreate:{title:"Create from scratch",description:"Build an Agent with intelligent, custom, template, or workflow modes."},intelligent:{title:"Intelligent mode",description:"Describe your goal, then build, debug, and validate the Agent interactively."},package:{title:"Add and deploy a code package",description:"Upload an Agent project archive, review the code, and deploy it to AgentKit Runtime."},migrate:{title:"Migrate an existing project",description:"Migrate an existing LangChain, Dify, or similar project to AgentKit Runtime."}},hre={subject:{file:"file changes",command:"command execution"},decision:{accept:"Allowed {{subject}} once",acceptForSession:"Allowed {{subject}} for this session",decline:"Declined {{subject}}",cancel:"Cancelled approval for {{subject}}"},details:{command:"Command",grantRoot:"Authorized path",cwd:"Working directory"}},pre={noDescription:"No description",region:"Region",unknownAgent:"Unknown Agent"},mre={agentTransfer:"Agent handoff",annotationHint:"Model response; select text to add an annotation",continueBranch:"Continue with “{{branch}}”",emptyResponse:"This response has no displayable content.",subagentDescription:"Working on a task handed off by the primary Agent."},gre={title:"Configure {{provider}} credentials",prefix:"Agent Workspace requires {{provider}} credentials. Set",and:"and",suffix:"in the runtime environment, then retry."},bre={buildRunning:{title:"A build is still running",description:"Leaving will stop this build. The session will remain available in your history.",confirm:"Stop and leave"},deleteThread:{title:"Delete Codex session",description:"Delete “{{name}}” and remove it from your session history?",confirm:"Delete"},returnToCreate:{title:"Return to the create page?",description:"Your current entries will be lost.",confirm:"Return"}},yre={additionalAgentDeleteFailures:"; {{count}} more failed",agentDeleteFailures:"Failed to delete {{count}} Agents: {{failures}}{{suffix}}",agentToolsMissing:"This Agent is missing required tools: {{tools}}",buildStopUnconfirmed:"You left the development environment, but Studio could not confirm that the build stopped. It may still be running; check its status in session history later.",builtinAgentSendFailed:"Failed to send to the built-in Agent: {{message}}",bytePlusEvaluationUnsupported:"AgentKit evaluation sets are not currently supported on BytePlus",clipboardUnsupported:"This browser does not support writing to the clipboard.",cloudCodexEmptyReply:"The cloud Codex task ended without a response. Send the task again.",cloudCodexSessionMissing:"The cloud Codex session has not appeared in the list yet. Try again shortly.",deploymentRuntimeIdMissing:"Deployment completed without returning a Runtime ID.",environmentExpired:"The selected environment is no longer available. Refresh and select it again.",environmentsLoadFailed:"Failed to load environments",evaluationCaseSessionMissing:"This evaluation case has no session reference and cannot be opened.",evaluationUnsupportedForReply:"This response cannot be added to an evaluation set",firstFrameRequired:"Add a first-frame image before generating from first and last frames.",incompletePromptOptimization:"The prompt optimization result is incomplete. Run the optimization again.",intelligentCapabilityCheckFailed:"Failed to check intelligent development capabilities (HTTP {{status}})",intelligentSessionCreateFailed:"Failed to create the intelligent development session",invalidIntelligentCapability:"The intelligent development capability response is invalid.",localBffToolsNotConfigured:"No tools are configured for the local Studio BFF.",localToolsLoadFailed:"Failed to load local tools",loginPopupBlocked:"The browser blocked the sign-in window. Allow pop-ups and try again.",loginPopupClosed:"The sign-in window was closed. Sign in again to continue.",mediaTooLarge:"{{fileName}} exceeds this platform's media size limit.",mountEnvironmentFailed:"Failed to mount the environment",noConnectedSandbox:"No Sandbox is currently connected.",noCreateAgentPermission:"Your account does not have permission to add Agents.",noManageAgentPermission:"Your account does not have permission to manage Agents.",noOptimizationBaseline:"There is no pre-optimization version available for comparison.",oauthUrlMissing:"The event does not include an authorization URL.",onlyCloudAgentUpdatable:"Only deployed cloud Agents can be updated.",optimizationVersionMissing:"The project version for this optimization could not be found. It may have been deleted.",persistentStorageNotConfigured:"Persistent storage has not been configured by an administrator",readDraftFailed:"Unable to read local drafts. Try again.",runtimeAgentNameMissing:"The Runtime is missing an Agent name and cannot be updated.",runtimeBffToolsDisabled:"BFF tool capabilities are not enabled for this Runtime Agent.",runtimeDeploymentConfigUnavailable:"The Runtime's original deployment configuration cannot be restored, so it cannot be updated safely.",runtimeMissingForConnection:"Runtime information is missing, so the Agent cannot be connected.",runtimeRegionMissingForDelete:"The Runtime is missing region information and cannot be deleted.",runtimeRegionMissingForUpdate:"The Runtime is missing region information and cannot be updated.",runtimeUpdateUnsupported:"This Runtime does not support in-place updates.",sandboxRuntimeUnavailable:"This Agent does not have an available Sandbox Runtime.",sandboxToolsUnavailable:"The current Studio BFF does not provide Sandbox execution tools.",saveDraftLocationRejected:"The browser could not save the current draft location. Check site storage permissions and try again.",saveDraftRejected:"The browser could not save the draft. Try again.",selectSkillToOptimize:"Select a Skill to optimize first.",sessionMissingForMount:"The current session does not exist, so an environment cannot be mounted.",sessionNotReady:"The session is not ready yet.",sessionUnavailable:"The current session is unavailable. Close it and try again.",sourceNotReady:"The source is not ready yet. Return to the conversation to continue.",textVideoRejectsReferences:"Text-to-video does not use reference media. Remove the images or videos first.",videoEditRequiresVideo:"Add the video you want to edit first.",videoExtendRequiresVideo:"Add a source video before extending it.",videoGenerationFailed:"Video generation failed. Try again later.",videoModeUnsupported:"The selected video mode is not supported on this platform.",videoPreviewMissing:"The video task completed, but the server did not return a preview URL.",videoReferenceRequired:"Add at least one reference image or video."},vre={like:"Like",removeLike:"Remove like",dislike:"Dislike",removeDislike:"Remove dislike",reportIssue:"Report an issue",traceFlameGraph:"Tracing flame graph"},xre={0:"What would you like to work on today?",1:"How can I help?",2:"What would you like me to look into?",3:"Ask me anything",4:"Hi, let's get started",5:"Start a new conversation",6:"What should we tackle first?",7:"Tell me what you have in mind",8:"Where should we begin?",9:"What can I help you with?",10:"Ready to move this forward?",11:"What's most important right now?",12:"Let's get something done today",13:"I'm ready when you are",intelligentDevelopment:"Give your ideas room to grow"},wre={agentCapabilities:"Checking Agent capabilities…",session:"Loading session…"},Ore={cancelled:"Authorization was cancelled.",pasteCallbackUrl:"After authorization, paste the full callback URL from your browser's address bar:",popupBlocked:"The browser blocked the authorization window. Allow pop-ups and try again.",unsupportedUrl:"The authorization URL is not HTTP or HTTPS and was blocked."},Sre={volcengine:"Volcengine"},kre={checkingPersistence:"Checking persistent storage…",exitDevelopment:"Exit development",fileUploaded:"Uploaded a file to the Sandbox",filesUploaded:"Uploaded {{count}} files to the Sandbox",intelligentDevelopment:"Intelligent development",mode:{readOnly:"Read only",workspaceWrite:"Workspace write",fullAccess:"Full access"},approvalPolicy:{untrusted:"Untrusted commands only",onRequest:"Ask when needed",never:"Never ask"},reviewer:{user:"Ask me",autoReview:"Automatic review"},labels:{approvalPolicy:"Approval policy",file:"File",fileNumber:"File {{number}}",mode:"Sandbox mode",networkAccess:"Network access",reviewer:"Approval method",workingDirectory:"Working directory"},network:{allowed:"Allowed",disabled:"Off"},permissionsUpdated:"Updated Codex permissions for this Sandbox session",persistenceUnknown:"Unable to verify persistent storage",stoppedReady:"Stopped. You can continue typing.",uploadedFilesPrompt:"The following files were uploaded to the current Sandbox workspace. Use them in this task:",workspaceUpdated:"Workspace updated"},Ere={addAgent:"Add Agent",addFromPackage:"Add from code package",agent:"Agent",automations:"Automations",createAgent:"Create Agent",createSkill:"Create Skill",cronJobs:"Cronjob",issueFeedback:"Issue feedback",library:"Library",migrateAgent:"Migrate Agent",newConversation:"New conversation",optimizeSkill:"Optimize {{name}}",search:"Search",skill:"Skill",skillLibrary:"Skill library",systemInfo:"System information",updateAgent:"Update {{name}}"},Cre={actions:dre,addAgent:fre,approval:hre,common:pre,conversation:mre,credentials:gre,dialogs:bre,errors:yre,feedback:vre,greetings:xre,loading:wre,oauth:Ore,providers:Sre,sandbox:kre,titles:Ere},$De=Object.freeze(Object.defineProperty({__proto__:null,actions:dre,addAgent:fre,approval:hre,common:pre,conversation:mre,credentials:gre,default:Cre,dialogs:bre,errors:yre,feedback:vre,greetings:xre,loading:wre,oauth:Ore,providers:Sre,sandbox:kre,titles:Ere},Symbol.toStringTag,{value:"Module"})),Tre="Automations",Are="Connect development tools and extend your Agents with automated workflows",_re="Search automations",Nre="Automation categories",jre={development:"Development",channels:"Messaging channels"},Rre="{{category}} automations",Ire="Open {{name}}",Pre="Available only in local deployments",Dre="No matching automations",Mre="Try searching for another name",Lre="Back to automations",$re={"coding-agents":{name:"Configure coding agents",badge:"Local",description:"Install built-in VeADK and AgentKit skills globally for Trae, Claude Code, or Codex."},template:{name:"Import starter project",description:"Create a minimal Agent project in your repository with continuous delivery to AgentKit Runtime.",title:"Import starter project",subtitle:"Add a ready-to-run basic Agent and continuous delivery configuration to your repository",panel:"This creates a pull request containing the basic project and AgentKit Runtime delivery workflow.",submitLabel:"Import template and create PR",regionHelp:"Must match the target Runtime region",pullRequest:{title:"feat: import AgentKit basic template",description:"Import a basic Agent project with the AgentKit Studio App Server and add continuous delivery to AgentKit Runtime. Configure the required {{provider}} secrets before merging."},fields:{repository:{label:"GitHub Repo",placeholder:"owner/repository",help:"Enter owner/repository or a full github.com URL"},baseBranch:{label:"Target branch",placeholder:"main",help:"Defaults to main; the pull request will use this branch as its base"},projectPath:{label:"Agent project directory",placeholder:"agentkit-basic-agent",help:"The basic project will be added here; app.py mounts the complete Studio App Server and serves as the entry point"},runtimeName:{label:"Runtime name",placeholder:"support-agent",help:"Used by the AgentKit delivery configuration"},runtimeId:{label:"Runtime ID",placeholder:"rt-xxxxxxxx",help:"The AgentKit Runtime that will receive continuous updates"}}},delivery:{name:"AgentKit Runtime delivery",description:"Add a workflow that continuously delivers your repository to AgentKit Runtime.",title:"AgentKit Runtime delivery",subtitle:"Add continuous delivery to the repository through a pull request",panel:"This creates a release branch and opens a pull request containing the GitHub Actions workflow.",submitLabel:"Confirm and create PR",regionHelp:"Must match the target Runtime region",pullRequest:{title:"feat: continuously publish to AgentKit Runtime",description:"Add a GitHub Actions workflow that continuously publishes updates from the target branch to AgentKit Runtime. Configure the required {{provider}} secrets before merging."},fields:{repository:{label:"GitHub Repo",placeholder:"owner/repository",help:"Enter owner/repository or a full github.com URL"},baseBranch:{label:"Target branch",placeholder:"main",help:"Defaults to main; the pull request will use this branch as its base"},projectPath:{label:"Agent project directory",placeholder:".",help:"Defaults to the repository root; the directory must contain an app.py that mounts the complete Studio App Server"},runtimeName:{label:"Runtime name",placeholder:"support-agent",help:"Used by the AgentKit delivery configuration"},runtimeId:{label:"Runtime ID",placeholder:"rt-xxxxxxxx",help:"The AgentKit Runtime that will receive continuous updates"}}},review:{name:"Automated PR review",description:"Use a GitHub App to review pull requests in an isolated Sandbox.",title:"Automated PR review",subtitle:"Trigger Sandbox reviews through the GitHub App and publish results to pull requests",panel:"Install the GitHub App to target repositories, then enable automated review for each repository.",submitLabel:"Install GitHub App",regionHelp:"",pullRequest:{title:"chore: configure automated PR review",description:"Add a GitHub Actions workflow that reviews same-repository pull requests in an isolated Sandbox and publishes the result as a GitHub review. Configure the required workflow secrets before merging."},fields:{repository:{label:"GitHub Repo",placeholder:"owner/repository",help:"Enter owner/repository or a full github.com URL"},baseBranch:{label:"Target branch",placeholder:"main",help:"Defaults to main; the pull request will use this branch as its base"},sandboxToolId:{label:"Sandbox Tool ID",placeholder:"tool-xxxxxxxx",help:"The AgentKit CodeEnv used for each review"},modelName:{label:"Review model",placeholder:"review-model",help:"The code review model name injected into the Sandbox"},modelBaseUrl:{label:"Model API URL",placeholder:"https://ark.example.com/api/v3",help:"Must be an OpenAI-compatible HTTPS endpoint"}}},feishu:{name:"Feishu bot",badge:"Beta",description:"Create a Feishu bot and connect its messages directly to AgentKit Runtime."},"website-integration":{name:"Website integration",description:"Embed an AgentKit Runtime on your website as a floating chat window."}},Fre={required:"Required",optional:"Optional",region:"Region",tokenLabel:"GitHub Token",getToken:"Get token",createToken:"Create GitHub token",tokenPlaceholder:"Requires write access to repository contents and pull requests",tokenWorkflowPlaceholder:"Requires write access to contents, pull requests, and workflows",hideToken:"Hide token",showToken:"Show token",tokenHelp:"The token is used only for this submission. It is not stored in the browser or written to the pull request.",tokenWorkflowHelp:"This token is used only to create the configuration PR. It is not a general Sandbox requirement and is not stored in the browser or written to the PR.",prCreated:"PR #{{number}} created",configPrCreated:"Configuration PR #{{number}} created",configPrNextStep:"After it is merged, later pull requests in the same repository will trigger reviews automatically.",viewOnGitHub:"View on GitHub",viewConfigPr:"View configuration PR",secretsHeading:"Before merging the pull request, configure these GitHub Actions secrets in the repository:",secretsConfigHeading:"Before merging the configuration PR, add runtime secrets to the target repository",openSecrets:"Open Secrets settings",secretsPath:"Path: Settings → Secrets and variables → Actions → Repository secrets",repositoryConfigHelp:"A PR review configuration will be added for {{repository}}",repositoryReviewHelp:"GitHub App will validate pull requests for {{repository}}",secretPair:"{{accessKey}}, {{secretKey}} (required)",sessionToken:"{{sessionToken}} (required when using temporary credentials)",requiredSecret:"{{name}} (required)",temporaryCredentialRequired:" (required when using temporary credentials)",requiredSuffix:" (required)",submitting:"Creating PR…",validation:{required:"This field is required",repository:"Enter owner/repository or a full GitHub repository URL",baseBranch:"The target branch format is invalid",projectPath:"Enter a relative path within the repository",runtimeId:"The Runtime ID format is invalid",sandboxToolId:"The Sandbox Tool ID format is invalid",modelName:"The model name format is invalid",modelBaseUrlSafe:"Enter an HTTPS URL without credentials, query parameters, or fragments",modelBaseUrl:"Enter a valid HTTPS URL",runtimeName:{required:"Runtime name is required",characters:"Runtime name can contain only letters, numbers, underscores, and hyphens",length:"Runtime name must be 4–64 characters"}}},Bre={title:"Configure coding agents",description:"Install the AgentKit skills bundled with Studio globally for local coding clients.",retry:"Retry",clients:{ariaLabel:"Select coding agents",title:"Local clients",detectAgain:"Detect again",detecting:"Detecting local clients…",detected:"Client detected",available:"Available",unavailable:"Not detected"},skills:{ariaLabel:"Select bundled skills",title:"Bundled skills",viewFiles:"View files",items:{"veadk-agent-development":{name:"VeADK Agent development",description:"Build and refine Agents with VeADK."},"agentkit-cli":{name:"AgentKit CLI",description:"Manage and deploy AgentKit resources with AgentKit CLI."}}},global:{ariaLabel:"Global installation directories",title:"Global installation",description:"Available to other local projects after configuration",empty:"Select a client to see its installation directory."},success:"Configured {{skillCount}} skill(s) for {{agentCount}} client(s)",selection:"{{agentCount}} client(s) and {{skillCount}} skill(s) selected",selectClient:"Select a client first",configuring:"Configuring…",configure:"Configure",errors:{detect:"Failed to detect local clients",configure:"Configuration failed. Check permissions for your user directory and try again."},preview:{description:"Browse the skill files bundled with Studio in read-only mode",close:"Close file preview",loading:"Loading files…",error:"Failed to load skill files",skillFiles:"{{name}} files",files:"Files",fileContent:"File contents",notPreviewable:"This file is not previewable UTF-8 text.",noFiles:"No previewable files."}},Ure={title:"Feishu bot",description:"Create a Feishu Agent powered by AgentKit Runtime",panel:"Enter the credentials for a published Feishu app. Studio will generate a basic Agent, create a dedicated Runtime, and enable the persistent Feishu messaging connection.",agentName:"Agent name",agentNameHelp:"Used as the root Agent name in the new Runtime",region:"Deployment region",regionHelp:"The Runtime and build artifacts will be created in this region",regions:{"cn-beijing":"Beijing","cn-shanghai":"Shanghai"},appId:"Feishu App ID",appIdHelp:"Application credential from the Feishu Open Platform",appSecret:"Feishu App Secret",appSecretPlaceholder:"Enter the App Secret",appSecretHelp:"Written only to the environment variables of the new Runtime",hideSecret:"Hide App Secret",showSecret:"Show App Secret",hide:"Hide",show:"Show",confirmCancel:"Cancelling will stop the task and clean up any Runtime already created. Continue?",status:{preparing:"Generating the basic Agent",running:"Creating Runtime",cancelling:"Cancelling deployment",succeeded:"Feishu bot Runtime created",cancelled:"Deployment cancelled",failed:"Creation failed"},steps:{prepare:"Generate Agent",build:"Build image",deploy:"Create Runtime",publish:"Publish service"},openConsole:"Open Runtime console",credentials:{title:"Credential handling",description:"The App Secret is used only for this deployment. It is never written to generated source code or browser storage."},cancelDeployment:"Cancel deployment",creating:"Creating…",create:"Create Feishu bot Runtime",validation:{appId:"Enter the Feishu App ID",appSecret:"Enter the Feishu App Secret",agentName:{required:"Name is required",reserved:"user is reserved by Google ADK. Choose another name",characters:"Name must start with a letter or underscore and contain only letters, numbers, and underscores"}},generatedAgent:{description:"A helpful assistant that receives messages through Feishu.",instruction:"You are a helpful assistant serving users through Feishu. Understand each request accurately and provide concise, reliable answers. Ask clarifying questions when information is missing, and never invent facts."}},Qre={title:Tre,description:Are,search:_re,categoriesLabel:Nre,categories:jre,resultsLabel:Rre,open:Ire,localOnly:Pre,emptyTitle:Dre,emptyDescription:Mre,backToAutomations:Lre,cards:$re,github:Fre,codingAgents:Bre,feishu:Ure},FDe=Object.freeze(Object.defineProperty({__proto__:null,backToAutomations:Lre,cards:$re,categories:jre,categoriesLabel:Nre,codingAgents:Bre,default:Qre,description:Are,emptyDescription:Mre,emptyTitle:Dre,feishu:Ure,github:Fre,localOnly:Pre,open:Ire,resultsLabel:Rre,search:_re,title:Tre},Symbol.toStringTag,{value:"Module"})),zre={"zh-CN":"简体中文","en-US":"English"},BDe={languageNames:zre},UDe=Object.freeze(Object.defineProperty({__proto__:null,default:BDe,languageNames:zre},Symbol.toStringTag,{value:"Module"})),Vre={selectedExcerptLabel:"Selected excerpt",commentLabel:"Annotation",commentSeparator:": ",successTitle:"Added to the Bad Case evaluation set",successDescription:"This annotation is linked to the current question and the complete model response.",done:"Done",ariaLabel:"Annotate the selected model response",title:"Add annotation",content:"Annotation",placeholder:"Describe the issue or the expected change",retryError:"{{error}}. Please try again.",cancel:"Cancel",submit:"Add to Bad Case"},Hre={attachment:"attachment",image:"image",preview:"Preview {{name}}",uploading:"Uploading",uploadFailed:"Upload failed",remove:"Remove {{name}}",previewDialog:"{{name}} preview",download:"Download",close:"Close",reading:"Loading document…",loadFailed:"Failed to load document: {{error}}"},qre={errorTitle:"Cloud log error",copyError:"Copy complete error details",retry:"Retry",statuses:{live:"Live",connecting:"Connecting",retrying:"Reconnecting",idle:"Disconnected"},title:"Instance logs",description:"The VeFaaS instance handling the current conversation request",close:"Close instance logs",instanceId:"Instance ID",waitingInstance:"Waiting for instance",request:"Request {{id}}",ariaLabel:"Live VeFaaS instance logs",notCapturedTitle:"No instance captured yet",notCapturedDescription:"Send a message to see the instance that handles it and its live logs.",connectingTitle:"Connecting to instance logs",connectingDescription:"Establishing a secure log stream through the Studio BFF.",emptyTitle:"No logs yet",emptyDescription:"Connected to the instance and waiting for new log output.",retention:"Logs refresh automatically. Only the latest {{count}} lines are kept."},Wre={title:"Trace",statuses:{loading:"Loading",ready:"",collecting:"Collecting",disabled:"Disabled",forbidden:"Permission required",error:"Failed to load"},errors:{collecting:"The trace is still being collected. Please wait.",disabled:"Tracing is not enabled for this agent. Enable it in the console and try again.",forbidden:"Your account cannot read APMPlus traces. Ask an administrator for read access.",error:"Failed to load the trace. Please try again later."},callCount:"{{count}} calls · {{duration}} ms",close:"Close",loading:"Loading trace…",retryNow:"Retry now",reload:"Reload",empty:"No trace is available for this session yet.",attributes:"Attributes",selectCall:"Select a call on the left to view its details"},Gre={exportNote:"This conversation was exported from AgentKit Studio for reference only.",imageFailed:"Failed to generate the image. Please try again.",browserUnsupported:"This browser cannot generate a conversation image. Please try again.",copyUnsupported:"This browser cannot copy images. Download the image instead.",exportFailed:"Export failed. Please try again.",title:"Export conversation",description:"Choose a format and download all inputs and outputs through the current response.",close:"Close",generatingContent:"Preparing export…",retry:"Try again",previewPage:"Previewing page 1 of {{count}}",previewAlt:"Conversation export page 1 of {{count}}",format:"Export format",generatingFormat:"Generating {{format}}…",copying:"Copying…",copiedFirst:"First page copied",copied:"Copied",copyFirst:"Copy first page",copyImage:"Copy image",generating:"Generating…",downloadArchive:"Download PNG archive ({{count}} pages)",downloadFormat:"Download {{format}}"},Kre={unsupportedComponent:"Unsupported component: {{component}}",sandboxIdentity:"Codex Sandbox execution identifiers",useSkill:"Use the {{name}} skill",thinkingDone:"Finished thinking",thinking:"Thinking",justNow:"Just now",sourceUnavailable:"The generated source is temporarily unavailable. Please try again later.",downloadStarted:"Download started",verifiedDelivery:"Verified deliverable",generatedSource:"Generated agent source",entryPoint:"Entry point",fileCount:"Files",size:"Size",validationTime:"Validated",generationTime:"Generated",checksPassed:"{{count}} checks passed",sourceReady:"Source is ready to deploy",sourceGuidance:"The source is ready to view, download, or deploy. Confirm the runtime configuration before deployment.",viewSource:"View source",preparing:"Preparing…",viewChanges:"View changes",downloadSource:"Download source",sourceNotReady:"The source is not ready yet",manualDeploy:"Deploy manually to Runtime",beforeOptimization:"Before optimization",afterOptimization:"After optimization",planStatuses:{pending:"Pending",in_progress:"In progress",completed:"Completed",failed:"Incomplete"},renderUi:"Render UI",truncated:"… (truncated)",agentAdjusting:"Agent is adjusting",sandboxDetails:"Detailed Codex Sandbox output",waitingCodex:"Waiting for Codex output",arguments:"Arguments",result:"Result",artifacts:"Artifacts",downloadNamed:"Download {{name}}",powerpoint:"PowerPoint presentation",preview:"Preview",download:"Download",previewDialog:"{{name}} preview",closePreview:"Close preview",slidePreview:"{{name}} slide preview",mcpToolset:"MCP toolset",authorized:"Authorized · {{tool}}",authorizationRequired:"{{tool}} requires authorization",oauthDescription:"The {{tool}} toolset is protected by OAuth and requires sign-in before use.",oauthProvider:"You will be redirected to {{provider}} to sign in.",oauthContinue:"The conversation will continue automatically after authorization.",waitingAuthorization:"Waiting for authorization…",authorize:"Authorize",missingAuthorizationUrl:"No authorization URL was found in the event.",tools:{web_search:{running:"Searching the web",done:"Web search complete"},link_reader:{running:"Reading webpage",done:"Webpage read complete"},run_code:{running:"Running code in the AgentKit sandbox",done:"Code execution completed in the AgentKit sandbox"},list_envs:{running:"Checking available environments",done:"Available environments loaded"},get_env_manifest:{running:"Loading the environment manifest",done:"Environment manifest loaded"},execute_in_sandbox:{running:"Running a command in the environment",done:"Command completed in the environment"},delegate_to_codex_sandbox:{running:"Codex Sandbox is running",done:"Codex Sandbox completed",failed:"Codex Sandbox failed"},image_generate:{running:"Generating image",done:"Image generated"},video_generate:{running:"Generating video",done:"Video generated"},ppt_generate:{running:"Generating presentation",done:"Presentation generated"},load_memory:{running:"Searching long-term memory",done:"Memory search complete"},load_knowledgebase:{running:"Searching the knowledge base",done:"Knowledge base search complete"},load_skill:{running:"Loading skill",done:"Skill loaded"},collect_resources:{running:"Collecting available resources",done:"Resource collection complete",failed:"Resource collection failed"},create_agents:{running:"Creating and running agents",done:"Agent creation complete",failed:"Agent creation failed"}},createAgents:{categories:{skill_hub:"Skill Hub",skill_space:"AgentKit Skill Center",knowledge_base:"Knowledge base",tool:"Tools"},agentTypes:{llm:"LLM Agent",sequential:"Sequential Agent",parallel:"Parallel Agent",loop:"Loop Agent",workflow:"Workflow"},skill:"Skill",subAgents:"Sub-agents",builtinTool:"Built-in tool",skillCenter:"AgentKit Skill Center",selfAuthoredTools:"Custom tools",dependencies:"Dependencies: {{items}}",fullCode:"Complete code for {{name}}",itemCount:"{{label}}: {{count}} items",collectionAria:"Retrieved resource information",retrieving:"Retrieving resources",retrievalFailed:"Resource retrieval did not complete",checkConfig:"Check the resource service configuration and try again.",notSearched:"Not searched",notConfigured:"Not configured",resourceList:"{{label}} resource list",searchKeywords:"Search keywords",skillHubSkipped:"No search keywords were provided, so Skill Hub was not searched.",sourceSkipped:"{{label}} is not configured, so this source was not searched.",noResources:"No resources in this category were returned.",resultAria:"Agent creation results",creationFailed:"Agent creation did not complete",agentResources:"Resources available to {{name}}",knowledgeBase:"Knowledge base",toolsLabel:"Tools",creating:"Creating agents",noAgents:"No agents to display",noAgentResult:"The tool response did not include an agent configuration or execution result.",sourceLabels:{tool:"Tools",knowledge:"AgentKit Knowledge Base",skillCenter:"AgentKit Skill Center",unknown:"Unknown source"},unnamedResource:"Unnamed resource",unnamedAgent:"Unnamed agent"},branchCompare:{ariaLabel:"Compare branches",selectDirection:"Select a direction",continue:"Continue in this direction"},codexProgress:{planTitle:"Codex execution plan",fallback:{fileChange:"Modify files",approval:"Waiting for approval",status:"Codex status",command:"Run command"},planSummary:"{{completed}}/{{total}} completed",command:{running:"Running command",completed:"Command completed",failed:"Command failed"},projectFiles:"{{count}} project files",projectFile:"project files",fileChange:{running:"Updating {{subject}}",completed:"Updated {{subject}}",failed:"Failed to update {{subject}}"},externalTool:"external tool",mcp:{running:"Calling {{tool}}",completed:"Called {{tool}}",failed:"{{tool}} call did not complete"},collaboration:{spawn_agent:{running:"Starting subtask",completed:"Subtask started",failed:"Failed to start subtask"},send_input:{running:"Sending information to subtask",completed:"Information sent to subtask",failed:"Failed to send information to subtask"},wait:{running:"Waiting for subtask",completed:"Subtask wait complete",failed:"Subtask wait failed"},close_agent:{running:"Ending subtask",completed:"Subtask ended",failed:"Failed to end subtask"},default:{running:"Coordinating subtasks",completed:"Subtask collaboration complete",failed:"Subtask collaboration failed"}},webSearch:{running:"Searching the web",completed:"Web search complete",failed:"Web search did not complete"},errorDetail:"Codex execution did not complete.",errorTitle:"Codex encountered an error"}},Xre={segments:{system:"System and tools",input:"Input and history",output:"Output and reasoning",remaining:"Remaining"},modelUnavailable:"Model information unavailable",promptWithSystem:"Prompt (including system)",systemUnknown:"System and tool usage unknown",systemApprox:"System and tools approximately {{count}} tokens",ariaKnown:"Context {{percentage}}% used, {{system}}, {{inputLabel}} {{input}} tokens, output and reasoning {{output}} tokens, remaining {{remaining}} tokens",ariaUnknown:"{{model}}, context window unknown, {{count}} cumulative session tokens used",composition:"Context composition",percentageUsed:"{{percentage}}% used",gridAria:"100-cell context composition chart. Each cell represents one percent of the context window.",estimated:"Estimated",unknown:"Unknown",summaryPercentage:"{{used}} used, {{remaining}} remaining",summaryTokens:"{{used}} used, {{remaining}} remaining, {{total}} total",overflow:"Context exceeded by {{count}} tokens",title:"Context usage",unknownModel:"The context window for this model is not available",unknownRuntime:"The current runtime did not provide model information"},Yre={title:"Add AgentKit agent",noAgents:"Connected successfully, but no agents were found at this address (/list-apps was empty).",connectionFailed:"Connection failed: {{error}}. Check the URL, API key, and whether the gateway allows cross-origin requests.",description:"Enter the URL and API key of an AgentKit deployment to connect through the ADK protocol. Connected agents will appear in the selector in the upper-left corner.",url:"Endpoint URL",apiKeyHint:"Connect using Authorization: Bearer",displayName:"Display name (optional)",displayNameHint:"Uses the URL hostname by default",cancel:"Cancel",connecting:"Connecting…",connect:"Connect and add"},Zre={placeholder:"Type a message…",inputAria:"Message",generating:"Generating",send:"Send"},Jre={ariaLabel:"Invocation context for this turn",removeSkill:"Remove skill {{name}}",removeAgent:"Remove agent {{name}}"},ese={cardAria:"{{label}} chart",viewAria:"{{label}} display mode",preview:"Preview",code:"Code",invalidEcharts:"The ECharts configuration is not a valid, safe data object. Switch to Code to inspect it.",renderFailed:"The chart cannot be rendered right now. Switch to Code to inspect it.",echartsAria:"ECharts preview",rendering:"Rendering chart…",mermaidFailed:"The chart cannot be rendered right now. Switch to Code to inspect the Mermaid source.",mermaidAria:"Mermaid preview"},tse={playVideo:"Play video: {{name}}",enlargeImage:"Enlarge image preview: {{name}}",image:"image",enlargeVideo:"Enlarge video",videoPreview:"Video preview",downloadVideo:"Download video",close:"Close"},nse={annotation:Vre,media:Hre,runtimeLogs:qre,trace:Wre,share:Gre,blocks:Kre,tokenUsage:Xre,addAgentKit:Yre,composer:Zre,invocation:Jre,visualization:ese,markdown:tse},QDe=Object.freeze(Object.defineProperty({__proto__:null,addAgentKit:Yre,annotation:Vre,blocks:Kre,composer:Zre,default:nse,invocation:Jre,markdown:tse,media:Hre,runtimeLogs:qre,share:Gre,tokenUsage:Xre,trace:Wre,visualization:ese},Symbol.toStringTag,{value:"Module"})),ise={back:"Back",cancel:"Cancel",deploy:"Deploy",delete:"Delete",loading:"Loading…",next:"Next",notSupported:"Not supported",previous:"Previous",required:"Required",retry:"Retry",actions:"Actions",value:"Value",disabled:"Off",enabled:"Enabled",none:"None",close:"Close",name:"Name",description:"Description",send:"Send"},rse={heading:"VeADK agent structure configuration",importHint:"Reload this file from Import YAML on the Create Agent page."},sse={agentName:{required:"Name is required",reserved:"user is reserved by Google ADK. Choose another name.",characters:"Start with a letter or underscore and use only letters, numbers, and underscores"},runtimeName:{required:"Runtime name is required",characters:"Runtime name can contain only letters, numbers, underscores, and hyphens",length:"Runtime name must be 4–64 characters"}},ase={description:"A VeADK-powered assistant that understands user intent and uses the right tools to complete tasks.",instruction:`You are a professional and reliable assistant. +{{response}}`,loadArkApiKeysFailed:"Failed to load Ark API keys",loadModelsFailed:"Failed to load models",runtimeAccessDenied:"This account cannot access the Runtime. Refresh the list or sign in again.",privateRuntimeUnavailable:"The Runtime was deployed, but this Studio cannot access the private Runtime. Use a Studio connected to the same VPC, or deploy with public or public plus VPC access.",runtimeTemporarilyUnavailable:"The Runtime was deployed, but Studio cannot connect yet. The gateway domain may still be propagating, or the current network or DNS cannot reach it. Try connecting again later from Manage Agents.",runtimeConnectionUnsupported:"The Runtime Agent Server does not provide a connection endpoint. Confirm that the Runtime is ready and compatible.",runtimeConnectionDenied:"The Runtime rejected the connection request. Check its authentication configuration.",listAgentsFailed:"Failed to load Agents",invalidListAppsJson:"Runtime /list-apps returned unreadable JSON.",invalidListAppsFormat:"Runtime /list-apps returned an invalid format; expected a non-empty string array.",createSessionFailedWithStatus:"Failed to create session ({{status}})",createSessionFailed:"Failed to create session",getSessionFailed:"Failed to load session",getSessionFailedWithDetail:"Failed to load session ({{status}}): {{detail}}",feedbackRuntimeOnly:"Feedback sync is supported only for sessions connected to an AgentKit Runtime",feedbackRegionMissing:"The Runtime region is missing, so feedback cannot be submitted",submitFeedbackFailed:"Failed to submit feedback",loadEvaluationSetsFailed:"Failed to load evaluation sets",loadAutoEvaluationStatusFailed:"Failed to load automatic evaluation status",loadOptimizationsFailed:"Failed to load optimization suggestions",deleteEvaluationCaseFailed:"Failed to delete the evaluation case",downloadFileFailed:"Failed to download the file",fileUnavailable:"File content is unavailable",uploadFileFailed:"File upload failed",traceDisabled:"Tracing is not enabled for this Agent. Enable it in the console first.",loadTraceFailed:"Failed to load trace data",contentTypeMissing:"Content-Type missing",traceNonJson:"Trace failed: the server returned a non-JSON response ({{contentType}}). Check the Studio API proxy configuration",invalidTraceFormat:"Trace failed: invalid response format",submitIssueFeedbackFailed:"Failed to submit issue feedback",issueFeedbackNotConfirmed:"Failed to submit issue feedback: the server did not confirm the submission",noPreviewableAgent:"This Runtime does not provide an Agent that can be previewed.",agentSearchFailed:"Agent search failed",emptySseBody:"HTTP 200 with an empty SSE response body.",noDisplayableSseReply:"HTTP 200, but the SSE response did not contain a displayable model reply.",firstSseEventTimeout:"No SSE event was received within 30 seconds.",runSessionFailed:"Session run failed",runSseFailedWithDetail:"run_sse failed ({{status}}): {{detail}}",checkRuntimeNameFailed:"Failed to check the Runtime name",invalidRuntimeNameCheck:"Failed to check the Runtime name: invalid response format",loadCloudResourcesFailed:"Failed to load cloud resources",invalidCloudResources:"The cloud resource list response has an invalid format",invalidEnvironmentMount:"The environment mount response has an invalid format",environmentMountMismatch:"The environment mount response does not match the request",environmentMountNetworkFailed:"Unable to connect to Studio, so the environment was not mounted. Check your network and try again.",environmentMountFailed:"Failed to mount the environment",clipboardUnsupported:"This browser does not support writing to the clipboard.",clipboardWriteFailed:"Unable to write to the clipboard. Check clipboard permissions.",loadSystemInfoFailed:"Failed to load system information",invalidSystemInfo:"The system information response has an invalid format",invalidEnvironmentBuild:"The environment build response has an invalid format",invalidEnvironmentBuildStep:"The environment build step response has an invalid format",invalidEnvironmentManifest:"The environment manifest response has an invalid format",invalidImageRepository:"The environment image repository response has an invalid format",invalidCodeRepository:"The environment code repository response has an invalid format",invalidImageSource:"The environment image source response has an invalid format",invalidEnvironment:"The environment response has an invalid format",invalidWorkspace:"The workspace response has an invalid format",loadWorkspacesFailed:"Failed to load workspaces",invalidWorkspaceList:"The workspace list response has an invalid format",saveWorkspaceFailed:"Failed to save the workspace",deleteWorkspaceFailed:"Failed to delete the workspace",loadEnvironmentsFailed:"Failed to load environments",invalidEnvironmentList:"The environment list response has an invalid format",probeRepositoryFailed:"Failed to inspect the code repository",invalidRepositoryProbe:"The code repository inspection response has an invalid format",exportEnvironmentCodeFailed:"Failed to export the environment share code",invalidEnvironmentCode:"The environment share code response has an invalid format",inspectEnvironmentCodeFailed:"Failed to inspect the environment share code",invalidEnvironmentCodeInspection:"The environment share code inspection response has an invalid format",importEnvironmentCodeFailed:"Failed to import the environment share code",invalidEnvironmentCodeImport:"The environment share code import response has an invalid format",studioUnavailable:"Unable to connect to Studio. Confirm that the backend is running and try again.",saveEnvironmentFailed:"Failed to save the environment",deleteEnvironmentFailed:"Failed to delete the environment",startEnvironmentBuildFailed:"Failed to start the environment build",loadEnvironmentBuildFailed:"Failed to load environment build details",loadEnvironmentManifestFailed:"Failed to load the environment manifest",invalidEnvironmentResource:"The environment resource response has an invalid format",loadEnvironmentResourcesFailed:"Failed to load environment build resources",updateCodexSandboxFailed:"Failed to update Codex Sandbox",invalidCodexSandboxUpdate:"The Codex Sandbox update response has an invalid format",loadUserPoolsFailed:"Failed to load user pools",invalidUserPoolList:"The user pool list response has an invalid format",syncGithubFailed:"Failed to sync GitHub code ({{status}})",validatingMigrationArtifact:"Validating migration artifact",uploadingCodePackage:"Uploading code package",migrationArtifactValidated:"Migration artifact validated",codePackageUploaded:"Code package uploaded",deploymentProgress:{preparing:"Preparing deployment",uploading:"Uploading the code package",building:"Building the image",buildLogsSyncing:"Building the image. Build logs are up to date.",buildLogsComplete:"Build log sync complete.",buildFailedLogsSynced:"Image build failed. Final build logs are available.",buildLogsUnavailable:"Build logs are temporarily unavailable.",finalBuildLogsUnavailable:"Final build logs are temporarily unavailable.",deploying:"Deploying the service",publishing:"Publishing the service",evaluating:"Creating evaluation sets",updating:"Updating the Runtime configuration",completing:"Finalizing deployment",github:"Configuring GitHub delivery",inProgress:"Deployment in progress"},deploymentFailed:"Deployment failed",deploymentDisconnected:"Deployment failed: connection interrupted",deploymentMissingAgentName:"Deployment failed: Agent name missing from response",deploymentMissingConnection:"Deployment failed: AgentKit connection information missing from response",cancelDeploymentFailed:"Failed to cancel deployment ({{status}})",loadFailed:"Failed to load ({{status}})",loadPermissionsFailed:"Failed to load permissions ({{status}})",invalidPermissionResponse:"The permission service returned an unreadable response",checkStudioUpdateFailed:"Failed to check for Studio updates ({{status}})",studioUpdatePreflightFailed:"Studio update permission check failed ({{status}})",submitStudioUpdateFailed:"Failed to submit the Studio update ({{status}})",loadAgentUsageFailed:"Failed to load Agent usage",notProvided:"Not provided",agentUsageNonJson:"Failed to load Agent usage: the server returned a non-JSON response (HTTP {{status}}, Content-Type: {{contentType}}). ",checkStudioGateway:"Confirm that the current service is running in Studio mode and check the proxy or gateway configuration.",agentUsageInvalidJson:"Failed to load Agent usage: the server returned invalid JSON (HTTP {{status}}, Content-Type: {{contentType}}). ",retryCheckGateway:"Try again later. If the problem persists, check the proxy or gateway configuration.",loadCronJobsFailed:"Failed to load scheduled tasks",loadCronJobFailed:"Failed to load scheduled task details",createCronJobFailed:"Failed to create the scheduled task",updateCronJobFailed:"Failed to update the scheduled task",enableCronJobFailed:"Failed to enable the scheduled task",pauseCronJobFailed:"Failed to pause the scheduled task",runCronJobFailed:"Failed to run the scheduled task now",loadCronHistoryFailed:"Failed to load execution history",stopCronRunFailed:"Failed to stop the execution",deleteCronJobFailed:"Failed to delete the scheduled task",loadRuntimeFailed:"Failed to load the Runtime",loadLocalToolsFailed:"Failed to load local tools",connectDynamicRouteFailed:"Failed to connect the Studio dynamic route",a2aProbeDenied:"The Runtime rejected the A2A probe. Check the Runtime authentication configuration.",loadA2aCardFailed:"Failed to load the A2A Agent Card",loadRuntimeApiKeyFailed:"Failed to load the Runtime API key",runtimeApiKeyMissing:"The Runtime did not return a usable API key",deleteFailed:"Delete failed ({{status}})",runtimeManageForbidden:"This account cannot manage the Runtime.",runtimeNotFound:"The Runtime does not exist or has been deleted.",runtimeUnavailable:"This account cannot access the Runtime.",checkRuntimeUpdateFailed:"Failed to check Runtime update capability (HTTP {{status}}). Try again later.",loadRuntimeDetailFailed:"Failed to load Runtime details",generateProjectFailed:"Failed to generate the project",generateAgentConfigFailed:"Failed to generate the Agent configuration",createDebugRunFailed:"Failed to create the debug run",createDebugSessionFailed:"Failed to create the debug session",loadDebugTraceFailed:"Failed to load the debug trace",invalidDebugTrace:"Failed to load the debug trace: invalid response format",debugRunFailed:"Debug run failed",cleanupDebugRunFailed:"Failed to clean up the debug run"},wre={loadFailed:"Failed to load conversation mode capabilities (HTTP {{status}})",invalidResponse:"The conversation mode capabilities response has an invalid format"},Ore={nonJson:"{{fallback}}: the server returned a non-JSON response (HTTP {{status}}, {{contentType}}){{detail}}"},Sre={common:tre,agentkitCli:nre,cloudRegion:ire,connections:rre,feishuBot:sre,requestError:are,runSse:ore,runtimeLogs:lre,search:cre,skills:ure,sse:dre,identity:fre,github:hre,video:pre,websiteIntegration:mre,knowledge:gre,intelligentDevelopment:bre,migrations:yre,sandbox:vre,client:xre,newChatCapabilities:wre,jsonResponse:Ore},eMe=Object.freeze(Object.defineProperty({__proto__:null,agentkitCli:nre,client:xre,cloudRegion:ire,common:tre,connections:rre,default:Sre,feishuBot:sre,github:hre,identity:fre,intelligentDevelopment:bre,jsonResponse:Ore,knowledge:gre,migrations:yre,newChatCapabilities:wre,requestError:are,runSse:ore,runtimeLogs:lre,sandbox:vre,search:cre,skills:ure,sse:dre,video:pre,websiteIntegration:mre},Symbol.toStringTag,{value:"Module"})),kre={backToEvaluationCase:"Back to evaluation case",cancel:"Cancel",copied:"Copied",copy:"Copy",exportConversation:"Export conversation",retry:"Retry"},Ere={title:"How would you like to add an Agent?",subtitle:"Choose the approach that best fits your project.",quickCreate:{title:"Create from scratch",description:"Build an Agent with intelligent, custom, template, or workflow modes."},intelligent:{title:"Intelligent mode",description:"Describe your goal, then build, debug, and validate the Agent interactively."},package:{title:"Add and deploy a code package",description:"Upload an Agent project archive, review the code, and deploy it to AgentKit Runtime."},migrate:{title:"Migrate an existing project",description:"Migrate an existing LangChain, Dify, or similar project to AgentKit Runtime."}},Cre={subject:{file:"file changes",command:"command execution"},decision:{accept:"Allowed {{subject}} once",acceptForSession:"Allowed {{subject}} for this session",decline:"Declined {{subject}}",cancel:"Cancelled approval for {{subject}}"},details:{command:"Command",grantRoot:"Authorized path",cwd:"Working directory"}},Tre={noDescription:"No description",region:"Region",unknownAgent:"Unknown Agent"},Are={agentTransfer:"Agent handoff",annotationHint:"Model response; select text to add an annotation",continueBranch:"Continue with “{{branch}}”",emptyResponse:"This response has no displayable content.",subagentDescription:"Working on a task handed off by the primary Agent."},_re={title:"Configure {{provider}} credentials",prefix:"Agent Workspace requires {{provider}} credentials. Set",and:"and",suffix:"in the runtime environment, then retry."},Nre={buildRunning:{title:"A build is still running",description:"Leaving will stop this build. The session will remain available in your history.",confirm:"Stop and leave"},deleteThread:{title:"Delete Codex session",description:"Delete “{{name}}” and remove it from your session history?",confirm:"Delete"},returnToCreate:{title:"Return to the create page?",description:"Your current entries will be lost.",confirm:"Return"}},jre={additionalAgentDeleteFailures:"; {{count}} more failed",agentDeleteFailures:"Failed to delete {{count}} Agents: {{failures}}{{suffix}}",agentToolsMissing:"This Agent is missing required tools: {{tools}}",buildStopUnconfirmed:"You left the development environment, but Studio could not confirm that the build stopped. It may still be running; check its status in session history later.",builtinAgentSendFailed:"Failed to send to the built-in Agent: {{message}}",bytePlusEvaluationUnsupported:"AgentKit evaluation sets are not currently supported on BytePlus",clipboardUnsupported:"This browser does not support writing to the clipboard.",cloudCodexEmptyReply:"The cloud Codex task ended without a response. Send the task again.",cloudCodexSessionMissing:"The cloud Codex session has not appeared in the list yet. Try again shortly.",deploymentRuntimeIdMissing:"Deployment completed without returning a Runtime ID.",environmentExpired:"The selected environment is no longer available. Refresh and select it again.",environmentsLoadFailed:"Failed to load environments",evaluationCaseSessionMissing:"This evaluation case has no session reference and cannot be opened.",evaluationUnsupportedForReply:"This response cannot be added to an evaluation set",firstFrameRequired:"Add a first-frame image before generating from first and last frames.",incompletePromptOptimization:"The prompt optimization result is incomplete. Run the optimization again.",intelligentCapabilityCheckFailed:"Failed to check intelligent development capabilities (HTTP {{status}})",intelligentSessionCreateFailed:"Failed to create the intelligent development session",invalidIntelligentCapability:"The intelligent development capability response is invalid.",localBffToolsNotConfigured:"No tools are configured for the local Studio BFF.",localToolsLoadFailed:"Failed to load local tools",loginPopupBlocked:"The browser blocked the sign-in window. Allow pop-ups and try again.",loginPopupClosed:"The sign-in window was closed. Sign in again to continue.",mediaTooLarge:"{{fileName}} exceeds this platform's media size limit.",mountEnvironmentFailed:"Failed to mount the environment",noConnectedSandbox:"No Sandbox is currently connected.",noCreateAgentPermission:"Your account does not have permission to add Agents.",noManageAgentPermission:"Your account does not have permission to manage Agents.",noOptimizationBaseline:"There is no pre-optimization version available for comparison.",oauthUrlMissing:"The event does not include an authorization URL.",onlyCloudAgentUpdatable:"Only deployed cloud Agents can be updated.",optimizationVersionMissing:"The project version for this optimization could not be found. It may have been deleted.",persistentStorageNotConfigured:"Persistent storage has not been configured by an administrator",readDraftFailed:"Unable to read local drafts. Try again.",runtimeAgentNameMissing:"The Runtime is missing an Agent name and cannot be updated.",runtimeBffToolsDisabled:"BFF tool capabilities are not enabled for this Runtime Agent.",runtimeDeploymentConfigUnavailable:"The Runtime's original deployment configuration cannot be restored, so it cannot be updated safely.",runtimeMissingForConnection:"Runtime information is missing, so the Agent cannot be connected.",runtimeRegionMissingForDelete:"The Runtime is missing region information and cannot be deleted.",runtimeRegionMissingForUpdate:"The Runtime is missing region information and cannot be updated.",runtimeUpdateUnsupported:"This Runtime does not support in-place updates.",sandboxRuntimeUnavailable:"This Agent does not have an available Sandbox Runtime.",sandboxToolsUnavailable:"The current Studio BFF does not provide Sandbox execution tools.",saveDraftLocationRejected:"The browser could not save the current draft location. Check site storage permissions and try again.",saveDraftRejected:"The browser could not save the draft. Try again.",selectSkillToOptimize:"Select a Skill to optimize first.",sessionMissingForMount:"The current session does not exist, so an environment cannot be mounted.",sessionNotReady:"The session is not ready yet.",sessionUnavailable:"The current session is unavailable. Close it and try again.",sourceNotReady:"The source is not ready yet. Return to the conversation to continue.",textVideoRejectsReferences:"Text-to-video does not use reference media. Remove the images or videos first.",videoEditRequiresVideo:"Add the video you want to edit first.",videoExtendRequiresVideo:"Add a source video before extending it.",videoGenerationFailed:"Video generation failed. Try again later.",videoModeUnsupported:"The selected video mode is not supported on this platform.",videoPreviewMissing:"The video task completed, but the server did not return a preview URL.",videoReferenceRequired:"Add at least one reference image or video."},Rre={like:"Like",removeLike:"Remove like",dislike:"Dislike",removeDislike:"Remove dislike",reportIssue:"Report an issue",traceFlameGraph:"Tracing flame graph"},Ire={0:"What would you like to work on today?",1:"How can I help?",2:"What would you like me to look into?",3:"Ask me anything",4:"Hi, let's get started",5:"Start a new conversation",6:"What should we tackle first?",7:"Tell me what you have in mind",8:"Where should we begin?",9:"What can I help you with?",10:"Ready to move this forward?",11:"What's most important right now?",12:"Let's get something done today",13:"I'm ready when you are",intelligentDevelopment:"Give your ideas room to grow"},Pre={agentCapabilities:"Checking Agent capabilities…",session:"Loading session…"},Dre={cancelled:"Authorization was cancelled.",pasteCallbackUrl:"After authorization, paste the full callback URL from your browser's address bar:",popupBlocked:"The browser blocked the authorization window. Allow pop-ups and try again.",unsupportedUrl:"The authorization URL is not HTTP or HTTPS and was blocked."},Mre={volcengine:"Volcengine"},Lre={checkingPersistence:"Checking persistent storage…",exitDevelopment:"Exit development",fileUploaded:"Uploaded a file to the Sandbox",filesUploaded:"Uploaded {{count}} files to the Sandbox",intelligentDevelopment:"Intelligent development",mode:{readOnly:"Read only",workspaceWrite:"Workspace write",fullAccess:"Full access"},approvalPolicy:{untrusted:"Untrusted commands only",onRequest:"Ask when needed",never:"Never ask"},reviewer:{user:"Ask me",autoReview:"Automatic review"},labels:{approvalPolicy:"Approval policy",file:"File",fileNumber:"File {{number}}",mode:"Sandbox mode",networkAccess:"Network access",reviewer:"Approval method",workingDirectory:"Working directory"},network:{allowed:"Allowed",disabled:"Off"},permissionsUpdated:"Updated Codex permissions for this Sandbox session",persistenceUnknown:"Unable to verify persistent storage",stoppedReady:"Stopped. You can continue typing.",uploadedFilesPrompt:"The following files were uploaded to the current Sandbox workspace. Use them in this task:",workspaceUpdated:"Workspace updated"},$re={addAgent:"Add Agent",addFromPackage:"Add from code package",agent:"Agent",automations:"Automations",createAgent:"Create Agent",createSkill:"Create Skill",cronJobs:"Cronjob",issueFeedback:"Issue feedback",library:"Library",migrateAgent:"Migrate Agent",newConversation:"New conversation",optimizeSkill:"Optimize {{name}}",search:"Search",skill:"Skill",skillLibrary:"Skill library",systemInfo:"System information",updateAgent:"Update {{name}}"},Fre={actions:kre,addAgent:Ere,approval:Cre,common:Tre,conversation:Are,credentials:_re,dialogs:Nre,errors:jre,feedback:Rre,greetings:Ire,loading:Pre,oauth:Dre,providers:Mre,sandbox:Lre,titles:$re},tMe=Object.freeze(Object.defineProperty({__proto__:null,actions:kre,addAgent:Ere,approval:Cre,common:Tre,conversation:Are,credentials:_re,default:Fre,dialogs:Nre,errors:jre,feedback:Rre,greetings:Ire,loading:Pre,oauth:Dre,providers:Mre,sandbox:Lre,titles:$re},Symbol.toStringTag,{value:"Module"})),Bre="Automations",Ure="Connect development tools and extend your Agents with automated workflows",Qre="Search automations",zre="Automation categories",Vre={development:"Development",channels:"Messaging channels"},Hre="{{category}} automations",qre="Open {{name}}",Wre="Available only in local deployments",Kre="No matching automations",Gre="Try searching for another name",Xre="Back to automations",Yre={"coding-agents":{name:"Configure coding agents",badge:"Local",description:"Install built-in VeADK and AgentKit skills globally for Trae, Claude Code, or Codex."},template:{name:"Import starter project",description:"Create a minimal Agent project in your repository with continuous delivery to AgentKit Runtime.",title:"Import starter project",subtitle:"Add a ready-to-run basic Agent and continuous delivery configuration to your repository",panel:"This creates a pull request containing the basic project and AgentKit Runtime delivery workflow.",submitLabel:"Import template and create PR",regionHelp:"Must match the target Runtime region",pullRequest:{title:"feat: import AgentKit basic template",description:"Import a basic Agent project with the AgentKit Studio App Server and add continuous delivery to AgentKit Runtime. Configure the required {{provider}} secrets before merging."},fields:{repository:{label:"GitHub Repo",placeholder:"owner/repository",help:"Enter owner/repository or a full github.com URL"},baseBranch:{label:"Target branch",placeholder:"main",help:"Defaults to main; the pull request will use this branch as its base"},projectPath:{label:"Agent project directory",placeholder:"agentkit-basic-agent",help:"The basic project will be added here; app.py mounts the complete Studio App Server and serves as the entry point"},runtimeName:{label:"Runtime name",placeholder:"support-agent",help:"Used by the AgentKit delivery configuration"},runtimeId:{label:"Runtime ID",placeholder:"rt-xxxxxxxx",help:"The AgentKit Runtime that will receive continuous updates"}}},delivery:{name:"AgentKit Runtime delivery",description:"Add a workflow that continuously delivers your repository to AgentKit Runtime.",title:"AgentKit Runtime delivery",subtitle:"Add continuous delivery to the repository through a pull request",panel:"This creates a release branch and opens a pull request containing the GitHub Actions workflow.",submitLabel:"Confirm and create PR",regionHelp:"Must match the target Runtime region",pullRequest:{title:"feat: continuously publish to AgentKit Runtime",description:"Add a GitHub Actions workflow that continuously publishes updates from the target branch to AgentKit Runtime. Configure the required {{provider}} secrets before merging."},fields:{repository:{label:"GitHub Repo",placeholder:"owner/repository",help:"Enter owner/repository or a full github.com URL"},baseBranch:{label:"Target branch",placeholder:"main",help:"Defaults to main; the pull request will use this branch as its base"},projectPath:{label:"Agent project directory",placeholder:".",help:"Defaults to the repository root; the directory must contain an app.py that mounts the complete Studio App Server"},runtimeName:{label:"Runtime name",placeholder:"support-agent",help:"Used by the AgentKit delivery configuration"},runtimeId:{label:"Runtime ID",placeholder:"rt-xxxxxxxx",help:"The AgentKit Runtime that will receive continuous updates"}}},review:{name:"Automated PR review",description:"Use a GitHub App to review pull requests in an isolated Sandbox.",title:"Automated PR review",subtitle:"Trigger Sandbox reviews through the GitHub App and publish results to pull requests",panel:"Install the GitHub App to target repositories, then enable automated review for each repository.",submitLabel:"Install GitHub App",regionHelp:"",pullRequest:{title:"chore: configure automated PR review",description:"Add a GitHub Actions workflow that reviews same-repository pull requests in an isolated Sandbox and publishes the result as a GitHub review. Configure the required workflow secrets before merging."},fields:{repository:{label:"GitHub Repo",placeholder:"owner/repository",help:"Enter owner/repository or a full github.com URL"},baseBranch:{label:"Target branch",placeholder:"main",help:"Defaults to main; the pull request will use this branch as its base"},sandboxToolId:{label:"Sandbox Tool ID",placeholder:"tool-xxxxxxxx",help:"The AgentKit CodeEnv used for each review"},modelName:{label:"Review model",placeholder:"review-model",help:"The code review model name injected into the Sandbox"},modelBaseUrl:{label:"Model API URL",placeholder:"https://ark.example.com/api/v3",help:"Must be an OpenAI-compatible HTTPS endpoint"}}},feishu:{name:"Feishu bot",badge:"Beta",description:"Create a Feishu bot and connect its messages directly to AgentKit Runtime."},"website-integration":{name:"Website integration",description:"Embed an AgentKit Runtime on your website as a floating chat window."}},Zre={required:"Required",optional:"Optional",region:"Region",tokenLabel:"GitHub Token",getToken:"Get token",createToken:"Create GitHub token",tokenPlaceholder:"Requires write access to repository contents and pull requests",tokenWorkflowPlaceholder:"Requires write access to contents, pull requests, and workflows",hideToken:"Hide token",showToken:"Show token",tokenHelp:"The token is used only for this submission. It is not stored in the browser or written to the pull request.",tokenWorkflowHelp:"This token is used only to create the configuration PR. It is not a general Sandbox requirement and is not stored in the browser or written to the PR.",prCreated:"PR #{{number}} created",configPrCreated:"Configuration PR #{{number}} created",configPrNextStep:"After it is merged, later pull requests in the same repository will trigger reviews automatically.",viewOnGitHub:"View on GitHub",viewConfigPr:"View configuration PR",secretsHeading:"Before merging the pull request, configure these GitHub Actions secrets in the repository:",secretsConfigHeading:"Before merging the configuration PR, add runtime secrets to the target repository",openSecrets:"Open Secrets settings",secretsPath:"Path: Settings → Secrets and variables → Actions → Repository secrets",repositoryConfigHelp:"A PR review configuration will be added for {{repository}}",repositoryReviewHelp:"GitHub App will validate pull requests for {{repository}}",secretPair:"{{accessKey}}, {{secretKey}} (required)",sessionToken:"{{sessionToken}} (required when using temporary credentials)",requiredSecret:"{{name}} (required)",temporaryCredentialRequired:" (required when using temporary credentials)",requiredSuffix:" (required)",submitting:"Creating PR…",validation:{required:"This field is required",repository:"Enter owner/repository or a full GitHub repository URL",baseBranch:"The target branch format is invalid",projectPath:"Enter a relative path within the repository",runtimeId:"The Runtime ID format is invalid",sandboxToolId:"The Sandbox Tool ID format is invalid",modelName:"The model name format is invalid",modelBaseUrlSafe:"Enter an HTTPS URL without credentials, query parameters, or fragments",modelBaseUrl:"Enter a valid HTTPS URL",runtimeName:{required:"Runtime name is required",characters:"Runtime name can contain only letters, numbers, underscores, and hyphens",length:"Runtime name must be 4–64 characters"}}},Jre={title:"Configure coding agents",description:"Install the AgentKit skills bundled with Studio globally for local coding clients.",retry:"Retry",clients:{ariaLabel:"Select coding agents",title:"Local clients",detectAgain:"Detect again",detecting:"Detecting local clients…",detected:"Client detected",available:"Available",unavailable:"Not detected"},skills:{ariaLabel:"Select bundled skills",title:"Bundled skills",viewFiles:"View files",items:{"veadk-agent-development":{name:"VeADK Agent development",description:"Build and refine Agents with VeADK."},"agentkit-cli":{name:"AgentKit CLI",description:"Manage and deploy AgentKit resources with AgentKit CLI."}}},global:{ariaLabel:"Global installation directories",title:"Global installation",description:"Available to other local projects after configuration",empty:"Select a client to see its installation directory."},success:"Configured {{skillCount}} skill(s) for {{agentCount}} client(s)",selection:"{{agentCount}} client(s) and {{skillCount}} skill(s) selected",selectClient:"Select a client first",configuring:"Configuring…",configure:"Configure",errors:{detect:"Failed to detect local clients",configure:"Configuration failed. Check permissions for your user directory and try again."},preview:{description:"Browse the skill files bundled with Studio in read-only mode",close:"Close file preview",loading:"Loading files…",error:"Failed to load skill files",skillFiles:"{{name}} files",files:"Files",fileContent:"File contents",notPreviewable:"This file is not previewable UTF-8 text.",noFiles:"No previewable files."}},ese={title:"Feishu bot",description:"Create a Feishu Agent powered by AgentKit Runtime",panel:"Enter the credentials for a published Feishu app. Studio will generate a basic Agent, create a dedicated Runtime, and enable the persistent Feishu messaging connection.",agentName:"Agent name",agentNameHelp:"Used as the root Agent name in the new Runtime",region:"Deployment region",regionHelp:"The Runtime and build artifacts will be created in this region",regions:{"cn-beijing":"Beijing","cn-shanghai":"Shanghai"},appId:"Feishu App ID",appIdHelp:"Application credential from the Feishu Open Platform",appSecret:"Feishu App Secret",appSecretPlaceholder:"Enter the App Secret",appSecretHelp:"Written only to the environment variables of the new Runtime",hideSecret:"Hide App Secret",showSecret:"Show App Secret",hide:"Hide",show:"Show",confirmCancel:"Cancelling will stop the task and clean up any Runtime already created. Continue?",status:{preparing:"Generating the basic Agent",running:"Creating Runtime",cancelling:"Cancelling deployment",succeeded:"Feishu bot Runtime created",cancelled:"Deployment cancelled",failed:"Creation failed"},steps:{prepare:"Generate Agent",build:"Build image",deploy:"Create Runtime",publish:"Publish service"},openConsole:"Open Runtime console",credentials:{title:"Credential handling",description:"The App Secret is used only for this deployment. It is never written to generated source code or browser storage."},cancelDeployment:"Cancel deployment",creating:"Creating…",create:"Create Feishu bot Runtime",validation:{appId:"Enter the Feishu App ID",appSecret:"Enter the Feishu App Secret",agentName:{required:"Name is required",reserved:"user is reserved by Google ADK. Choose another name",characters:"Name must start with a letter or underscore and contain only letters, numbers, and underscores"}},generatedAgent:{description:"A helpful assistant that receives messages through Feishu.",instruction:"You are a helpful assistant serving users through Feishu. Understand each request accurately and provide concise, reliable answers. Ask clarifying questions when information is missing, and never invent facts."}},tse={title:Bre,description:Ure,search:Qre,categoriesLabel:zre,categories:Vre,resultsLabel:Hre,open:qre,localOnly:Wre,emptyTitle:Kre,emptyDescription:Gre,backToAutomations:Xre,cards:Yre,github:Zre,codingAgents:Jre,feishu:ese},nMe=Object.freeze(Object.defineProperty({__proto__:null,backToAutomations:Xre,cards:Yre,categories:Vre,categoriesLabel:zre,codingAgents:Jre,default:tse,description:Ure,emptyDescription:Gre,emptyTitle:Kre,feishu:ese,github:Zre,localOnly:Wre,open:qre,resultsLabel:Hre,search:Qre,title:Bre},Symbol.toStringTag,{value:"Module"})),nse={"zh-CN":"简体中文","en-US":"English"},iMe={languageNames:nse},rMe=Object.freeze(Object.defineProperty({__proto__:null,default:iMe,languageNames:nse},Symbol.toStringTag,{value:"Module"})),ise={selectedExcerptLabel:"Selected excerpt",commentLabel:"Annotation",commentSeparator:": ",successTitle:"Added to the Bad Case evaluation set",successDescription:"This annotation is linked to the current question and the complete model response.",done:"Done",ariaLabel:"Annotate the selected model response",title:"Add annotation",content:"Annotation",placeholder:"Describe the issue or the expected change",retryError:"{{error}}. Please try again.",cancel:"Cancel",submit:"Add to Bad Case"},rse={attachment:"attachment",image:"image",preview:"Preview {{name}}",uploading:"Uploading",uploadFailed:"Upload failed",remove:"Remove {{name}}",previewDialog:"{{name}} preview",download:"Download",close:"Close",reading:"Loading document…",loadFailed:"Failed to load document: {{error}}"},sse={errorTitle:"Cloud log error",copyError:"Copy complete error details",retry:"Retry",statuses:{live:"Live",connecting:"Connecting",retrying:"Reconnecting",idle:"Disconnected"},title:"Instance logs",description:"The VeFaaS instance handling the current conversation request",close:"Close instance logs",instanceId:"Instance ID",waitingInstance:"Waiting for instance",request:"Request {{id}}",ariaLabel:"Live VeFaaS instance logs",notCapturedTitle:"No instance captured yet",notCapturedDescription:"Send a message to see the instance that handles it and its live logs.",connectingTitle:"Connecting to instance logs",connectingDescription:"Establishing a secure log stream through the Studio BFF.",emptyTitle:"No logs yet",emptyDescription:"Connected to the instance and waiting for new log output.",retention:"Logs refresh automatically. Only the latest {{count}} lines are kept."},ase={title:"Trace",statuses:{loading:"Loading",ready:"",collecting:"Collecting",disabled:"Disabled",forbidden:"Permission required",error:"Failed to load"},errors:{collecting:"The trace is still being collected. Please wait.",disabled:"Tracing is not enabled for this agent. Enable it in the console and try again.",forbidden:"Your account cannot read APMPlus traces. Ask an administrator for read access.",error:"Failed to load the trace. Please try again later."},callCount:"{{count}} calls · {{duration}} ms",close:"Close",loading:"Loading trace…",retryNow:"Retry now",reload:"Reload",empty:"No trace is available for this session yet.",attributes:"Attributes",selectCall:"Select a call on the left to view its details"},ose={exportNote:"This conversation was exported from AgentKit Studio for reference only.",imageFailed:"Failed to generate the image. Please try again.",browserUnsupported:"This browser cannot generate a conversation image. Please try again.",copyUnsupported:"This browser cannot copy images. Download the image instead.",exportFailed:"Export failed. Please try again.",title:"Export conversation",description:"Choose a format and download all inputs and outputs through the current response.",close:"Close",generatingContent:"Preparing export…",retry:"Try again",previewPage:"Previewing page 1 of {{count}}",previewAlt:"Conversation export page 1 of {{count}}",format:"Export format",generatingFormat:"Generating {{format}}…",copying:"Copying…",copiedFirst:"First page copied",copied:"Copied",copyFirst:"Copy first page",copyImage:"Copy image",generating:"Generating…",downloadArchive:"Download PNG archive ({{count}} pages)",downloadFormat:"Download {{format}}"},lse={unsupportedComponent:"Unsupported component: {{component}}",sandboxIdentity:"Codex Sandbox execution identifiers",useSkill:"Use the {{name}} skill",thinkingDone:"Finished thinking",thinking:"Thinking",justNow:"Just now",sourceUnavailable:"The generated source is temporarily unavailable. Please try again later.",downloadStarted:"Download started",verifiedDelivery:"Verified deliverable",generatedSource:"Generated agent source",entryPoint:"Entry point",fileCount:"Files",size:"Size",validationTime:"Validated",generationTime:"Generated",checksPassed:"{{count}} checks passed",sourceReady:"Source is ready to deploy",sourceGuidance:"The source is ready to view, download, or deploy. Confirm the runtime configuration before deployment.",viewSource:"View source",preparing:"Preparing…",viewChanges:"View changes",downloadSource:"Download source",sourceNotReady:"The source is not ready yet",manualDeploy:"Deploy manually to Runtime",beforeOptimization:"Before optimization",afterOptimization:"After optimization",planStatuses:{pending:"Pending",in_progress:"In progress",completed:"Completed",failed:"Incomplete"},renderUi:"Render UI",truncated:"… (truncated)",agentAdjusting:"Agent is adjusting",sandboxDetails:"Detailed Codex Sandbox output",waitingCodex:"Waiting for Codex output",arguments:"Arguments",result:"Result",artifacts:"Artifacts",downloadNamed:"Download {{name}}",powerpoint:"PowerPoint presentation",preview:"Preview",download:"Download",previewDialog:"{{name}} preview",closePreview:"Close preview",slidePreview:"{{name}} slide preview",mcpToolset:"MCP toolset",authorized:"Authorized · {{tool}}",authorizationRequired:"{{tool}} requires authorization",oauthDescription:"The {{tool}} toolset is protected by OAuth and requires sign-in before use.",oauthProvider:"You will be redirected to {{provider}} to sign in.",oauthContinue:"The conversation will continue automatically after authorization.",waitingAuthorization:"Waiting for authorization…",authorize:"Authorize",missingAuthorizationUrl:"No authorization URL was found in the event.",tools:{web_search:{running:"Searching the web",done:"Web search complete"},link_reader:{running:"Reading webpage",done:"Webpage read complete"},run_code:{running:"Running code in the AgentKit sandbox",done:"Code execution completed in the AgentKit sandbox"},list_envs:{running:"Checking available environments",done:"Available environments loaded"},get_env_manifest:{running:"Loading the environment manifest",done:"Environment manifest loaded"},execute_in_sandbox:{running:"Running a command in the environment",done:"Command completed in the environment"},delegate_to_codex_sandbox:{running:"Codex Sandbox is running",done:"Codex Sandbox completed",failed:"Codex Sandbox failed"},image_generate:{running:"Generating image",done:"Image generated"},video_generate:{running:"Generating video",done:"Video generated"},ppt_generate:{running:"Generating presentation",done:"Presentation generated"},load_memory:{running:"Searching long-term memory",done:"Memory search complete"},load_knowledgebase:{running:"Searching the knowledge base",done:"Knowledge base search complete"},load_skill:{running:"Loading skill",done:"Skill loaded"},collect_resources:{running:"Collecting available resources",done:"Resource collection complete",failed:"Resource collection failed"},create_agents:{running:"Creating and running agents",done:"Agent creation complete",failed:"Agent creation failed"}},createAgents:{categories:{skill_hub:"Skill Hub",skill_space:"AgentKit Skill Center",knowledge_base:"Knowledge base",tool:"Tools"},agentTypes:{llm:"LLM Agent",sequential:"Sequential Agent",parallel:"Parallel Agent",loop:"Loop Agent",workflow:"Workflow"},skill:"Skill",subAgents:"Sub-agents",builtinTool:"Built-in tool",skillCenter:"AgentKit Skill Center",selfAuthoredTools:"Custom tools",dependencies:"Dependencies: {{items}}",fullCode:"Complete code for {{name}}",itemCount:"{{label}}: {{count}} items",collectionAria:"Retrieved resource information",retrieving:"Retrieving resources",retrievalFailed:"Resource retrieval did not complete",checkConfig:"Check the resource service configuration and try again.",notSearched:"Not searched",notConfigured:"Not configured",resourceList:"{{label}} resource list",searchKeywords:"Search keywords",skillHubSkipped:"No search keywords were provided, so Skill Hub was not searched.",sourceSkipped:"{{label}} is not configured, so this source was not searched.",noResources:"No resources in this category were returned.",resultAria:"Agent creation results",creationFailed:"Agent creation did not complete",agentResources:"Resources available to {{name}}",knowledgeBase:"Knowledge base",toolsLabel:"Tools",creating:"Creating agents",noAgents:"No agents to display",noAgentResult:"The tool response did not include an agent configuration or execution result.",sourceLabels:{tool:"Tools",knowledge:"AgentKit Knowledge Base",skillCenter:"AgentKit Skill Center",unknown:"Unknown source"},unnamedResource:"Unnamed resource",unnamedAgent:"Unnamed agent"},branchCompare:{ariaLabel:"Compare branches",selectDirection:"Select a direction",continue:"Continue in this direction"},codexProgress:{planTitle:"Codex execution plan",fallback:{fileChange:"Modify files",approval:"Waiting for approval",status:"Codex status",command:"Run command"},planSummary:"{{completed}}/{{total}} completed",command:{running:"Running command",completed:"Command completed",failed:"Command failed"},projectFiles:"{{count}} project files",projectFile:"project files",fileChange:{running:"Updating {{subject}}",completed:"Updated {{subject}}",failed:"Failed to update {{subject}}"},externalTool:"external tool",mcp:{running:"Calling {{tool}}",completed:"Called {{tool}}",failed:"{{tool}} call did not complete"},collaboration:{spawn_agent:{running:"Starting subtask",completed:"Subtask started",failed:"Failed to start subtask"},send_input:{running:"Sending information to subtask",completed:"Information sent to subtask",failed:"Failed to send information to subtask"},wait:{running:"Waiting for subtask",completed:"Subtask wait complete",failed:"Subtask wait failed"},close_agent:{running:"Ending subtask",completed:"Subtask ended",failed:"Failed to end subtask"},default:{running:"Coordinating subtasks",completed:"Subtask collaboration complete",failed:"Subtask collaboration failed"}},webSearch:{running:"Searching the web",completed:"Web search complete",failed:"Web search did not complete"},errorDetail:"Codex execution did not complete.",errorTitle:"Codex encountered an error"}},cse={segments:{system:"System and tools",input:"Input and history",output:"Output and reasoning",remaining:"Remaining"},modelUnavailable:"Model information unavailable",promptWithSystem:"Prompt (including system)",systemUnknown:"System and tool usage unknown",systemApprox:"System and tools approximately {{count}} tokens",ariaKnown:"Context {{percentage}}% used, {{system}}, {{inputLabel}} {{input}} tokens, output and reasoning {{output}} tokens, remaining {{remaining}} tokens",ariaUnknown:"{{model}}, context window unknown, {{count}} cumulative session tokens used",composition:"Context composition",percentageUsed:"{{percentage}}% used",gridAria:"100-cell context composition chart. Each cell represents one percent of the context window.",estimated:"Estimated",unknown:"Unknown",summaryPercentage:"{{used}} used, {{remaining}} remaining",summaryTokens:"{{used}} used, {{remaining}} remaining, {{total}} total",overflow:"Context exceeded by {{count}} tokens",title:"Context usage",unknownModel:"The context window for this model is not available",unknownRuntime:"The current runtime did not provide model information"},use={title:"Add AgentKit agent",noAgents:"Connected successfully, but no agents were found at this address (/list-apps was empty).",connectionFailed:"Connection failed: {{error}}. Check the URL, API key, and whether the gateway allows cross-origin requests.",description:"Enter the URL and API key of an AgentKit deployment to connect through the ADK protocol. Connected agents will appear in the selector in the upper-left corner.",url:"Endpoint URL",apiKeyHint:"Connect using Authorization: Bearer",displayName:"Display name (optional)",displayNameHint:"Uses the URL hostname by default",cancel:"Cancel",connecting:"Connecting…",connect:"Connect and add"},dse={placeholder:"Type a message…",inputAria:"Message",generating:"Generating",send:"Send"},fse={ariaLabel:"Invocation context for this turn",removeSkill:"Remove skill {{name}}",removeAgent:"Remove agent {{name}}"},hse={cardAria:"{{label}} chart",viewAria:"{{label}} display mode",preview:"Preview",code:"Code",invalidEcharts:"The ECharts configuration is not a valid, safe data object. Switch to Code to inspect it.",renderFailed:"The chart cannot be rendered right now. Switch to Code to inspect it.",echartsAria:"ECharts preview",rendering:"Rendering chart…",mermaidFailed:"The chart cannot be rendered right now. Switch to Code to inspect the Mermaid source.",mermaidAria:"Mermaid preview"},pse={playVideo:"Play video: {{name}}",enlargeImage:"Enlarge image preview: {{name}}",image:"image",enlargeVideo:"Enlarge video",videoPreview:"Video preview",downloadVideo:"Download video",close:"Close"},mse={annotation:ise,media:rse,runtimeLogs:sse,trace:ase,share:ose,blocks:lse,tokenUsage:cse,addAgentKit:use,composer:dse,invocation:fse,visualization:hse,markdown:pse},sMe=Object.freeze(Object.defineProperty({__proto__:null,addAgentKit:use,annotation:ise,blocks:lse,composer:dse,default:mse,invocation:fse,markdown:pse,media:rse,runtimeLogs:sse,share:ose,tokenUsage:cse,trace:ase,visualization:hse},Symbol.toStringTag,{value:"Module"})),gse={back:"Back",cancel:"Cancel",deploy:"Deploy",delete:"Delete",loading:"Loading…",next:"Next",notSupported:"Not supported",previous:"Previous",required:"Required",retry:"Retry",actions:"Actions",value:"Value",disabled:"Off",enabled:"Enabled",none:"None",close:"Close",name:"Name",description:"Description",send:"Send"},bse={heading:"VeADK agent structure configuration",importHint:"Reload this file from Import YAML on the Create Agent page."},yse={agentName:{required:"Name is required",reserved:"user is reserved by Google ADK. Choose another name.",characters:"Start with a letter or underscore and use only letters, numbers, and underscores"},runtimeName:{required:"Runtime name is required",characters:"Runtime name can contain only letters, numbers, underscores, and hyphens",length:"Runtime name must be 4–64 characters"}},vse={description:"A VeADK-powered assistant that understands user intent and uses the right tools to complete tasks.",instruction:`You are a professional and reliable assistant. Your goal is to understand the user's request accurately and provide clear, concise, and useful answers. Guidelines: - Ask clarifying questions when information is missing. Do not invent facts. - Use available tools when appropriate and explain key conclusions. -- Maintain a polite, professional tone.`},ose={requestFailed:"Request failed ({{status}}){{detail}}",a2aSpaces:{credentialsMissing:"The server does not have cloud provider credentials configured, so AgentKit agent centers are unavailable",loginRequired:"Sign in to access AgentKit agent centers"},vikingKnowledge:{credentialsMissing:"The server does not have cloud provider credentials configured, so VikingDB knowledge bases are unavailable",loginRequired:"Sign in to access VikingDB knowledge bases"},vikingMemory:{credentialsMissing:"The server does not have cloud provider credentials configured, so VikingDB memory stores are unavailable",loginRequired:"Sign in to access VikingDB memory stores"},mcpGateway:{missingHttpTool:"Go back to Add MCP tool and add at least one HTTP MCP service. MCP resilience does not support stdio services.",missingUrl:"An HTTP MCP tool is missing a valid service URL. Go back to Add MCP tool and complete it before publishing."},customModel:{fallbackName:"Custom model",apiKeyLabel:"{{name}} model API Key"},deploymentEnv:{serverInjected:"Provided by the server",selectedApiKeyPlaceholder:"Provided by the selected API Key",mcpInjectedComment:"Provided by the added MCP tools",restoredPlaceholder:"Securely restored by the Studio server",generatedMcpPlaceholder:"Generated from the added HTTP MCP tools",restoredHelp:"When updating, the Studio server merges MCP addresses and authentication without returning existing secrets to the browser.",mergedMcpHelp:"The Studio server merges MCP addresses and optional authentication without returning existing secrets to the browser.",listSeparator:", ",requirementHint:"Required by the following optimizations: {{labels}}.",requiredBy:"Required by the following optimizations: {{labels}}. Enter {{key}}.",required:"Enter {{label}} ({{key}}).",invalidJson:"Invalid JSON format"},drafts:{unsupportedVersion:"This local draft version is not supported. Upgrade Studio and try again.",invalidFormat:"The local draft data is invalid.",readFailed:"Could not read local drafts. The browser data may be corrupted.",quotaExceeded:"Browser storage is full, so the draft was not saved. Delete unused drafts or clear this site's storage, then try again.",writeRejected:"The browser blocked saving this draft. Check the site's storage permissions and try again."},skills:{searchFailed:"Search failed ({{status}})",downloadFailed:"Skill download failed ({{status}})",agentKitRequestFailed:"AgentKit Skills request failed",missingManifest:"{{location}} is missing SKILL.md",invalidParentPath:"{{location}} contains an invalid parent path (..): {{path}}",invalidPath:"{{location}} contains an invalid path: {{path}}",localDescription:"Local skill",folderSource:"Folder",noManifest:"No SKILL.md was found in {{location}}"},zip:{invalid:"Invalid zip: EOCD was not found",tooManyFiles:"A zip file cannot contain more than {{count}} files",tooLarge:"The extracted zip content is too large"}},lse={back:"Back to development session",runtimeName:"Runtime name",runtimeNameExists:"This Runtime name already exists. Choose another name.",checkingRuntimeName:"Checking Runtime name",verifiedSource:"Verified source",deployableSource:"Deployable source",verifiedByCodex:"Verified by Codex in the cloud",entryPoint:"Entry point",files:"Files",artifact:"Artifact",validationReport:"Validation report",verifiedHint:"The server materializes source from the verified artifact. Browser files cannot replace it.",unverifiedHint:"The server securely materialized the source. Confirm the Runtime configuration before deploying.",env:{requiredPlaceholder:"Enter {{key}}",optionalPlaceholder:"Optional: {{key}}"}},cse={name:"Code package",back:"Back to creation methods",reading:"Reading the code package",readingEllipsis:"Reading the code package…",uploadFirst:"Upload a code package first",uploadAriaLabel:"Code package upload",upload:"Upload code package",reupload:"Upload a different code package",uploadPrompt:"Upload a code package",filesRecognized:"{{count}} files found. Select this area to upload a different package.",dropHint:"Select or drop a .zip file up to 50 MB. Use app.py or declare an entry point in agentkit.yaml.",viewFiles:"View files",chooseFile:"Choose code package",errors:{invalidFormat:"Choose a .zip code package.",tooLarge:"The code package must be 50 MB or smaller.",invalidPath:"The archive contains an invalid path: {{name}}",empty:"The archive does not contain any deployable files.",tooManyFiles:"A code package cannot contain more than {{count}} files.",duplicateFile:"The code package contains a duplicate file: {{path}}",manifestParse:"Could not parse agentkit.yaml: {{detail}}",manifestRoot:"The root of agentkit.yaml must be an object.",manifestCommon:"common in agentkit.yaml must be an object.",entryPointType:"common.entry_point in agentkit.yaml must be a file path.",entryPointInvalid:"common.entry_point in agentkit.yaml is not a valid file path.",entryPointMissing:"The entry point declared in agentkit.yaml is missing from the code package: {{entryPoint}}",defaultEntryPointMissing:"The code package root must contain app.py, or common.entry_point in agentkit.yaml must declare an existing entry point."}},use={label:"Agent execution canvas",readOnlyLabel:"Read-only agent execution canvas",minimapLabel:"Execution flow minimap",controls:{ariaLabel:"Execution flow controls",zoomIn:"Zoom in",zoomOut:"Zoom out",fitView:"Fit view"},rootAgent:"Main agent",unnamedStep:"Unnamed step",terminals:{input:"User request",output:"Final response"},edges:{then:"Then",continueLoop:"Continue loop",call:"Call"},patterns:{llm:{label:"Agent",description:"Understand a task and complete one specific job"},sequential:{label:"Sequential",description:"Run internal steps one after another"},parallel:{label:"Parallel",description:"Run internal steps together, then combine their results"},loop:{label:"Loop",description:"Repeat internal steps until the stop condition is met"},a2a:{label:"Remote agent",description:"Call an existing remote agent"}},actions:{insertHere:"Insert a step here",deleteNamed:"Delete {{name}}",deleteNode:"Delete node",addSubagent:"Add subagent",addParallelStep:"Add a parallel step",addLoopStep:"Add a loop step",addNextStep:"Add next step",addFirst:"Add at the beginning",addLast:"Add at the end"}},dse={title:"Intelligent mode",subtitle:"Describe your goal and Codex will plan, build, debug, and temporarily validate the agent in a sandbox.",model:{label:"Model",placeholder:"Select a model",retiring:"Retiring soon",currentConfiguration:"Current configuration",loadError:"Failed to load models"},availability:{checking:"Checking intelligent development availability…",unavailable:"Intelligent mode is currently unavailable. Go back and try again."},goal:{title:"Start with a goal",continueTitle:"Continue improving the project",hint:"Describe the problem your agent should solve. We will ask about any details that could affect the result.",continueHint:"Describe what you want to change. The result will be saved as a new version.",basedOn:"Based on",clearSelection:"Clear selection",label:"Goal",optimizationLabel:"Optimization goal",placeholder:"For example: Build an agent that reads sales data, creates weekly reports, and validates the output format",optimizationPlaceholder:"For example: Cite data sources and ask the user when information is incomplete"},actions:{preparing:"Preparing…",build:"Start building",optimize:"Start optimizing"},preparation:{accepted:"Goal received. Implementation is starting now.",preparing:"Creating the task environment…",starting:"Environment ready. Starting Codex…",next:"Next, Codex will plan the approach, then build, run, and validate the agent."}},fse={title:"Saved projects",description:"Continue improving an existing version, or view, download, and deploy its source.",refresh:"Refresh projects",checkingStorage:"Checking project storage…",unavailableTitle:"Projects are temporarily unavailable",storageCheckError:"Could not confirm project storage status. Try again shortly.",storageNotConfigured:"Project storage is not configured.",loadingMigrated:"Loading migrated projects…",loadingSaved:"Loading saved projects…",loadingVersions:"Loading project versions…",unknownTime:"Unknown time",sourceDownloaded:"Source downloaded.",projectSummary_one:"{{count}} version · Updated {{time}}",projectSummary_other:"{{count}} versions · Updated {{time}}",versionSummary_one:"{{time}} · {{count}} file",versionSummary_other:"{{time}} · {{count}} files",noVersionDescription:"No version description",latestVersion:"Latest version",verified:"Verified",pendingVerification:"Needs review",viewSource:"View source",download:"Download",downloading:"Downloading…",optimize:"Optimize",optimizeUnavailable:"Optimize, not supported",errors:{projects:"Could not load saved projects.",source:"Could not load project source.",versions:"Could not load project versions.",download:"Could not download the source.",prepareDeployment:"Could not prepare the source for deployment.",deleteVersion:"Could not delete the project version.",migrated:"Could not load migrated projects",saved:"Could not load saved projects"},empty:{migratedTitle:"No migrated projects yet",savedTitle:"No saved projects yet",migratedDescription:"Source will be saved here after your first migration.",savedDescription:"Source will be saved here after your first build.",noVersions:"This project has no available versions."},compare:{selected:"{{count}}/2 selected",selectedLabel:"Selected",select:"Select",view:"View comparison",start:"Compare versions"},delete:{title:"Delete this version?",onlyVersion:"“{{name}}” has only one version. Deleting it will also remove the project. This cannot be undone.",description:"This version's source and validation records will be permanently deleted. Other versions are not affected.",confirm:"Delete version"}},hse={title:"Choose how to create",subtitle:"Build your agent with the workflow that fits your needs",features:"Features",quick:{title:"Quick mode",description:"Delegate tasks to dynamically created subagents",features:{dynamicSubagents:"Dynamic subagents",autonomousPlanning:"Autonomous planning",collaboration:"Multi-agent collaboration",summary:"Automatic result summaries",skills:"Skills on demand",trace:"Traceable task execution"}},traditional:{title:"Advanced mode",description:"Customize your agent structure in detail",features:{visualConfig:"Visual configuration",migration:"Existing agent migration",debugging:"Live debugging",optimization:"Optional optimization",parameters:"Fine-grained controls"}}},pse={placeholder:"Enter a system prompt. Type ## followed by a space to add a level-two heading…",toolbar:{undo:"Undo {{shortcut}}",redo:"Redo {{shortcut}}",paragraph:"Paragraph",quote:"Quote",heading:"Heading {{level}}",selectBlockType:"Select text style",blockType:"Text style",bold:"Bold",removeBold:"Remove bold",italic:"Italic",removeItalic:"Remove italic",bulletedList:"Bulleted list",numberedList:"Numbered list"}},mse={local:{duplicatesSkipped:"Skipped duplicate skills: {{names}}",invalidDrop:"Drop a folder containing SKILL.md or a .zip file",readError:"Could not read the files: {{detail}}",dropLabel:"Drop a folder or ZIP file to detect skills automatically",hint:"Each skill must contain a SKILL.md file. Directories can contain multiple skills.",reading:"Reading files…",fileCount:"Local · {{count}} files"},hub:{searchError:"Search failed. Try again shortly.",searchPlaceholder:"Search Volcano Find Skill, such as data analysis or PDF",search:"Search",searching:"Searching…",noResults:"No matching skills found. Try another keyword.",hint:"Search Volcano Find Skill by keyword. Selected skills are downloaded to the skills/ directory when the project is generated."},space:{loadError:"Failed to load",loadingSpaces:"Loading AgentKit Skills centers…",noSpaces:"This account has no AgentKit Skills centers.",selectSpace:"Select an AgentKit Skills center",openConsole:"Open in the Volcano Engine console",loadingSkills:"Loading skills…",noSkills:"This AgentKit Skills center has no skills."}},gse={unnamedNode:"Unnamed node",editInstruction:"Select to edit instructions…",controls:{ariaLabel:"Workflow canvas controls",zoomIn:"Zoom in",zoomOut:"Zoom out",fitView:"Fit view"},sections:{info:"Workflow information",execution:"Execution mode",nodes:"Nodes",nodeConfig:"Node configuration"},types:{sequential:{label:"Sequential",description:"Run nodes one after another"},parallel:{label:"Parallel",description:"Run nodes at the same time"},loop:{label:"Loop",description:"Run nodes repeatedly"}},placeholders:{description:"Describe what this workflow does…",agentDescription:"Describe what this agent does…",instruction:"You are…"},errors:{workflowNameUnique:"The workflow name must be unique among agent node names",agentNameUnique:"Agent names must be unique within this workflow"},dragHint:"Drag onto the canvas, or use the button below",agentNode:"Agent node",addNode:"Add node",connectHint:"Drag between node handles to define the execution order.",create:"Create workflow",deleteNode:"Delete node",nameHelp:"Use only letters, numbers, and underscores. Names must be unique.",instruction:"Instructions",tools:"Tools (comma-separated)",nodeId:"Node ID",empty:{selectNode:"Select a node to edit its configuration",summary:"{{nodes}} nodes · {{edges}} connections"}},bse={ariaLabel:"Quick mode creation",progress:"Quick mode creation progress",steps:{agent:{label:"Agent",title:"Basic information",description:"Set the agent's name, purpose, behavior, and capabilities"},environment:{label:"Environment",title:"Configure the environment",description:"Choose the default environment or a custom environment you have built"},deployment:{label:"Deployment",title:"Deployment preferences",description:"Configure AgentKit cloud settings"}},model:{label:"Model",source:"Model source",name:"Model name",provider:"Provider",volcengineArk:"Volcano Ark",custom:"Custom",gateway:"Model gateway",comingSoon:"Coming soon",currentApiKey:"Current API Key",loadingApiKeys:"Loading API Keys",selectApiKey:"Select an API Key",searchApiKeys:"Search API Key names",noApiKeys:"No API Keys available",loadingModels:"Loading models",selectModel:"Select a model",searchModels:"Search by name, Model ID, or provider",noModels:"No models available",apiKeyPlaceholder:"Enter a model API Key",credentialsLoadError:"Failed to load model credentials",modelsLoadError:"Failed to load models"},identity:{unnamedPool:"Unnamed user pool",currentPool:"{{value}} (current user pool)",userPool:"User pool",loading:"Loading user pools",placeholder:"Select a user pool",search:"Search user pools",empty:"This account has no Identity user pools",currentHint:"This Studio's login JWT will be forwarded to the Runtime",mismatchHint:"The selected user pool is not used by this Studio, so the Studio will not be able to call the Runtime after deployment",selectionHint:"The user pool used by this Studio is marked in the list"},agent:{namePlaceholder:"Enter an agent name",descriptionPlaceholder:"Describe what this agent can do",prompt:"Prompt",promptPlaceholder:"Define the role, goals, and behavior boundaries",skills:"Skills",addSkill:"Add skills"},validation:{descriptionRequired:"Enter a description",promptRequired:"Enter a prompt",modelRequired:"Select a model",instanceIntegers:"Minimum instances must be an integer of 0 or greater, and maximum instances must be an integer greater than 0",instanceOrder:"Minimum instances cannot exceed maximum instances",userPoolRequired:"Select a user pool for Runtime authentication"},deployment:{runtimeName:"Runtime name",runtimeNameUpdateHint:"The existing Runtime name is preserved during updates",runtimeNameHint:"Use only letters, numbers, underscores, and hyphens",region:"Deployment region",authentication:"Authentication",apiKeyDescription:"Default: access with the Runtime API Key",userPoolDescription:"Use a JWT issued by an Identity user pool",sessionStorage:"Session storage",inMemoryStorage:"Temporary in-memory storage",backends:{sqlite:"SQLite file",mysql:"MySQL",postgresql:"PostgreSQL"},instances:"Instance settings",minInstances:"Minimum instances",maxInstances:"Maximum instances",inMemoryHint:"To prevent session loss across instances, keep the Runtime at 1–1 instances",networkMode:"Network mode",network:{public:"Public",private:"Private",both:"Public and private"},subnetIds:"Subnet IDs (optional, comma-separated)",sharedInternet:"Shared public egress in the VPC",sharedInternetHint:"Allow private Runtimes to access the public internet through shared egress",evaluationSets:"Evaluation sets",createEvaluationSets:"Create evaluation sets automatically",evaluationSetsHint:"Create Good Case and Bad Case evaluation sets after deployment",resources:"Resource configuration",complete:"Deployment complete",preparing:"Preparing deployment…"},environmentVariables:{title:"Environment variables",add:"Add variable",nameAriaLabel:"Environment variable name",valueAriaLabel:"Value for {{name}}",deleteNamed:"Delete {{name}}"},actions:{updateAgain:"Update again",deployAgain:"Deploy again",updateAndPublish:"Update and publish"}},yse={actions:{addSubagent:"Add subagent",clearRoot:"Clear main agent",clearRootConfirmation:"Clear all settings and subagents from the main agent? This cannot be undone."},workspace:{progress:"Agent creation progress",modes:{build:"Build",validate:"Debug",optimize:"Optimize",environment:"Environment",publish:"Publish"},titles:{build:"Customize your agent architecture",validate:"Debug your agent",optimize:"Choose optimizations for your agent",environment:"Configure the cloud environment",publish:"Prepare your agent for deployment"}},sections:{type:{label:"Agent type",hint:"Choose an agent type"},basic:{label:"Basic information",hint:"Name, description, and system prompt"},model:{label:"Model",hint:"Model and service (optional)"},tools:{label:"Tools",hint:"Callable capabilities"},skills:{label:"Skills",hint:"Declarative skills"},knowledge:{label:"Knowledge base",hint:"External knowledge retrieval"},memory:{label:"Memory",hint:"Short-term and long-term memory"},subagents:{label:"Subagents",hint:"Nested collaboration"},review:{label:"Finish",hint:"Preview and create"}},agentTypes:{ariaLabel:"Agent type",remoteChildOnly:"Remote agents can only be used as child steps",llm:{label:"Agent",fullLabel:"LLM agent",description:"Uses an LLM to complete tasks autonomously"},sequential:{label:"Sequential",fullLabel:"Sequential agent",description:"Runs subagents one after another"},parallel:{label:"Parallel",fullLabel:"Parallel agent",description:"Runs subagents in parallel, then combines their results"},loop:{label:"Loop",fullLabel:"Loop agent",description:"Repeats subagents until the stop condition is met"},a2a:{label:"Remote agent",fullLabel:"Remote agent",description:"Calls a remote agent through the A2A protocol"}},basic:{agentName:"Agent name",name:"Name",agentDescription:"Agent description",descriptionPlaceholder:"Briefly describe what this agent does so your team can identify it…",nameHelp:"Follow Google ADK naming rules and keep the name unique in the execution flow.",rootDescriptionHelp:"The full description is preserved and converted to a Runtime-compatible single line during deployment.",descriptionHelp:"The description appears in agent lists and selectors.",orchestratorHelp:"This is a collaboration container and does not answer directly. Add task steps on the canvas and drag them to reorder.",maxIterations:"Maximum iterations",maxIterationsHelp:"The loop repeats its subagents until the condition is met or this limit is reached.",agentCenter:"AgentKit agent center",agentCenterHelp:"The remote agent's name, description, and capabilities come from the Agent Card returned by the center. The system discovers and attaches matching agents for each task.",moreOptions:"More options",systemPrompt:"System prompt",loadingMarkdown:"Loading Markdown editor…",markdownHelp:"Markdown shortcuts are supported. For example, type ## followed by a space to create a level-two heading.",unnamed:"Unnamed",unnamedAgent:"Unnamed agent"},validation:{remoteRoot:"A remote agent can only be a subagent",missingRegistry:"Select an AgentKit agent center",name:{required:"Name is required",reserved:"user is reserved by Google ADK. Choose another name.",characters:"Start with a letter or underscore and use only letters, numbers, and underscores"},duplicateName:"Agent names must be unique within this structure",missingDescription:"Description is required",mcpAuthRequired:"Confirm how to handle authentication after changing the MCP address",mcpDuplicateName:"MCP names must be unique",mcpDuplicateUrl:"Remove the duplicate MCP endpoint before publishing",missingSubagent:"A subagent is required",missingPrompt:"System prompt is required",missingSubagentDetail:"Add at least one subagent to {{type}} before debugging or publishing.",problem:"{{name}}: {{problem}}"},ai:{ariaLabel:"Fill agent configuration with AI",minimumLength:"Enter at least {{count}} characters.",replaceConfirmation:"The generated configuration will replace the current canvas and settings. Continue?",placeholder:"Describe your goal and use {{model}} to generate the configuration",generate:"Generate",generating:"Generating",success:"Configuration generated",regenerate:"Generate again",failed:"Generation failed"},debug:{ariaLabel:"Agent debugging workspace",unavailable:"This backend does not currently support generated-agent debug runs.",baseline:"Baseline",comparison:"Variant {{count}}",selectModel:"Select a model",enterDescription:"Enter a description",enterPrompt:"Enter a system prompt",duplicateConfiguration:"Test configurations must be unique",starting:"Starting…",applyAndRestart:"Apply and restart",restart:"Restart",start:"Start environment",defaultModel:"Default model",testConfiguration:"Test configuration",deleteVariant:"Delete {{name}}",deleteVariantGroup:"Delete comparison variant",creatingEnvironment:"Creating the test environment…",configurationChanged:"The configuration changed. Restart the environment.",ready:"Environment ready",readyHint:"Send a message to compare agent responses.",startHint:"Complete the configuration, then start the environment.",viewTraceNamed:"View the trace for {{name}}",traceUnavailable:"Send a message to view its trace",trace:"Trace",useConfiguration:"Use this configuration",finishConfiguration:"Finish configuration",finishAndStart:"Finish and start",currentAgentModel:"Current agent model",configurationHint:"Changes apply only to this comparison. Select this configuration to continue to deployment.",messagePlaceholder:"Send a message to the running test environments…",startOneFirst:"Start at least one test environment first",addVariant:"Add variant",traceTitle:"Trace · {{name}}",leaveTitle:"Leave debugging?",leaveDescription:"The current environments will be removed when you leave. You can start new environments when you return.",cleaning:"Cleaning up…",confirmLeave:"Leave",closeLeaveConfirmation:"Close leave-debugging confirmation"},optimization:{ariaLabel:"Agent optimization options",scenario:"Optimization scenario",components:"Optimization components",bytePlusUnavailable:"Harness Sidecar optimizations are not available for BytePlus accounts yet. Leave all optimizations unselected to continue; regular BytePlus agents are not affected.",releaseScenario:"Optimization scenario: {{profile}}",profiles:{default:{label:"Custom",description:"Choose components as needed. The Sidecar stays off when none are selected."},ops:{label:"Operations",description:"For operations diagnostics, databases, logs, and monitoring MCP servers."}},groups:{quality:"Improve response quality",cost:"Reduce runtime cost",stability:"Improve runtime stability"},options:{context_engine:{label:"Context management",description:"Manage context assembly, task anchoring, and context budgets."},compressor:{label:"Context and result compression",description:"Compress long context and large tool results to reduce token usage."},verifier:{label:"Response verification and repair",description:"Verify evidence and responses, then repair or alert on failure."},long_run_control:{label:"Goal task control",description:"Manage progress, continuation, and completion conditions for Goal tasks."},mcp_resilience:{label:"MCP resilience",description:"Manage connections, timeouts, empty results, large responses, and call budgets. Includes read-only SQL protection by default."}}},model:{label:"Model",source:"Model source",volcanoArk:"Volcano Ark",volcengineArk:"Volcano Ark",bytePlusModelArk:"BytePlus ModelArk",custom:"Custom",gateway:"Model gateway",comingSoon:"Coming soon",configuration:"Model configuration",name:"Model name",provider:"Provider",liteLlmProviders:"LiteLLM providers",apiKeyPlaceholder:"Enter the model API Key",available:"Available",retiring:"Retiring soon",notActivated:"Not activated",unavailable:"Unavailable",apiKeyLoadError:"Failed to load Ark API Keys",loadingApiKeys:"Loading API Keys…",selectApiKey:"Select an API Key",currentApiKey:"Current API Key",apiKeyList:"API Key list",searchApiKey:"Search API Keys",searchApiKeyName:"Search API Key names",noApiKeys:"No API Keys available",noMatchingApiKey:"No matching API Keys",loading:"Loading models…",loaded:"{{count}} models loaded",loadError:"Failed to load models",selectModel:"Select a model",selectProviderModel:"Select a provider model",providerModels:"Provider models",search:"Search models",searchPlaceholder:"Search by name, Model ID, or provider",noMatches:"No matching models",empty:"No models available",unknownStatus:"Unknown status",refresh:"Refresh",refreshing:"Refreshing…",activate:"Activate",activateAction:"Open activation",currentConfiguration:"Current configuration"},tools:{builtIn:"Built-in tools",builtInHelp:"Select VeADK capabilities. Imports and required environment variables are added automatically.",codeExecution:"Code execution configuration",codeExecutionHelp:"Select the AgentKit code execution sandbox.",mcp:"MCP tools"},catalog:{web_search:{label:"Web search",description:"Get real-time information with Volcengine Web Search."},parallel_web_search:{label:"Parallel web search",description:"Run multiple search queries in parallel and combine the results faster."},link_reader:{label:"Link reader",description:"Fetch and read the main content from a URL."},web_scraper:{label:"Web scraper",description:"Crawl webpages into structured data. Requires the Scraper service."},image_generate:{label:"Image generation",description:"Generate images from text with Doubao Seedream."},image_edit:{label:"Image editing",description:"Edit or transform images with Doubao SeedEdit."},video_generate:{label:"Video generation",description:"Generate videos from text or images with Doubao Seedance, including task status queries."},text_to_speech:{label:"Text to speech (TTS)",description:"Convert text to speech with Volcengine Speech."},run_code:{label:"Code execution",description:"Run code in a sandbox."},vesearch:{label:"VeSearch",description:"Search with Volcengine VeSearch. Requires a bot endpoint."},links:{console:"Console",documentation:"Documentation"},env:{modelAgentName:{comment:"Model name"},embeddingModelName:{comment:"Embedding model required by memory and knowledge bases"},vikingMemoryProject:{comment:"VikingDB memory project"},vikingMemoryRegion:{comment:"VikingDB memory region"},vikingMemoryType:{comment:"Memory types"},feishuAppId:{comment:"Feishu app ID"},feishuAppSecret:{comment:"Feishu app secret",placeholder:"Enter the app secret"},registrySpaceId:{comment:"AgentKit agent center",placeholder:"Select an agent center"},registryTopK:{comment:"Number of agents to retrieve"},registryRegion:{comment:"AgentKit agent center region"},registryEndpoint:{comment:"AgentKit agent center OpenAPI endpoint"},agentKitToolId:{comment:"Code execution sandbox ID"},agentKitToolRegion:{comment:"AgentKit Tools region"},openVikingUrl:{comment:"OpenViking service URL"},openVikingMemoryUserId:{comment:"Memory owner ID",help:"The user segment in viking://user//peers//memories. Use it to isolate agents, tenants, or business scenarios. The default is default."},openVikingMemoryPolicy:{comment:"Memory policy",help:"Controls memory extraction and isolation. Leave it blank to use the official default policy."},openVikingKnowledgeUserId:{comment:"Knowledge base owner ID",help:"Used in the default path viking://user//resources// when no resource directory is configured. The default is default."},openVikingTargetUri:{comment:"Knowledge base resource directory",help:"Leave blank to generate it from the KnowledgeBase index. When provided, this OpenViking resource directory takes precedence."},tlsServiceName:{comment:"TLS topic_id. Leave blank to create one automatically"}}},backends:{shortTerm:{local:{label:"In-memory",description:"Stored in the process without persistence. Best for development and debugging."},sqlite:{label:"SQLite file",description:"Persist data to a local .db file."},mysql:{label:"MySQL",description:"Persist data to MySQL."},postgresql:{label:"PostgreSQL",description:"Persist data to PostgreSQL."}},longTerm:{local:{label:"Local vector store",description:"In-process llama-index vector store."},opensearch:{label:"OpenSearch",description:"Vector retrieval with OpenSearch."},redis:{label:"Redis",description:"Vector retrieval with Redis."},viking:{label:"VikingDB Memory",description:"VikingDB memory with user profile support."},openviking:{label:"OpenViking Memory",description:"Long-term memory that stores and retrieves preferences, events, and entities per user."},mem0:{label:"Mem0",description:"Managed memory from Mem0."}},knowledge:{viking:{label:"VikingDB Knowledge",description:"VikingDB knowledge base."},opensearch:{label:"OpenSearch",description:"Vector retrieval with OpenSearch."},context_search:{label:"Context Search",description:"Volcengine Context Search without embedding configuration."},openviking:{label:"OpenViking Knowledge",description:"OpenViking resource-directory knowledge base without embedding configuration."}}},exporters:{apmplus:{label:"APMPlus",description:"Volcengine APMPlus application performance monitoring."},cozeloop:{label:"CozeLoop",description:"Distributed tracing with CozeLoop."},tls:{label:"TLS (Log Service)",description:"Export logs to Volcengine TLS."}},knowledge:{title:"Knowledge base",description:"Enable external knowledge retrieval (RAG) so the agent can answer from your data.",backend:"Knowledge base backend",vikingDatabase:"VikingDB knowledge base"},memory:{shortTerm:"Short-term memory",shortTermDescription:"Store context for one session",shortTermBackend:"Short-term memory backend",longTerm:"Long-term memory",longTermDescription:"Store context across sessions, usually with vector retrieval",longTermBackend:"Long-term memory backend",vikingDatabase:"VikingDB memory",autoSave:"Save sessions to long-term memory automatically",autoSaveDescription:"Write session content to long-term memory when a session ends."},mcp:{removeTool:"Remove MCP tool",namePlaceholder:"Name (optional)",urlPlaceholder:"MCP service URL",pathWarning:"This address does not end with /mcp. Confirm that it is the complete MCP service URL.",configuredPlaceholder:"Authentication is stored securely",tokenPlaceholder:"Bearer token (optional)",changedUrlWarning:"The MCP address changed. Choose how to handle the stored authentication.",reuseCredential:"Keep using it",replaceCredential:"Replace authentication",noAuth:"Use no authentication",reuseHint:"The stored authentication will be reused when you publish.",changeToReplace:"Replace instead",credentialConfigured:"Studio securely stores the authentication.",removeCredential:"Remove authentication",commandPlaceholder:"Command, such as npx",argsPlaceholder:"Arguments separated by spaces",stdioHint:"The stdio tool starts in the deployment environment. Make sure its command and dependencies are available.",addTool:"Add MCP tool"},resources:{unnamedAgentCenter:"Unnamed agent center",unnamedKnowledgeBase:"Unnamed knowledge base",unnamedMemory:"Unnamed memory store",loadError:"Failed to load",loadingAgentCenters:"Loading agent centers…",agentCentersLoaded:"{{count}} agent centers loaded",noAgentCenters:"No agent centers available",noMatchingAgentCenters:"No matching agent centers",searchAgentKitCenter:"Search AgentKit agent centers",searchNameOrId:"Search by name or ID",selectAgentCenter:"Select an agent center",selectAgentKitCenter:"Select an AgentKit agent center",selectedAgentCenter:"Selected agent center",agentKitCenter:"AgentKit agent center",refreshAgentCenters:"Refresh agent centers",knowledgeBaseList:"Knowledge base list",knowledgeBasePlaceholder:"Select a knowledge base",loadingKnowledgeBases:"Loading knowledge bases…",knowledgeBasesLoaded:"{{count}} knowledge bases loaded",noKnowledgeBases:"No knowledge bases available",noMatchingKnowledgeBases:"No matching knowledge bases",searchKnowledgeBase:"Search knowledge bases",selectKnowledgeBase:"Select a knowledge base",refreshKnowledgeBases:"Refresh knowledge bases",memoryList:"Memory store list",memoryPlaceholder:"Select a memory store",loadingMemories:"Loading memory stores…",memoriesLoaded:"{{count}} memory stores loaded",noMemories:"No memory stores available",noMatchingMemories:"No matching memory stores",searchMemory:"Search memory stores",selectMemory:"Select a memory store",refreshMemories:"Refresh memory stores"},env:{noAdditionalParameters:"This backend needs no additional runtime parameters.",invalidJson:"Enter valid JSON.",helpAriaLabel:"Help for {{label}}: {{help}}",openOpenViking:"Open OpenViking {{label}}",valuePlaceholder:"Enter a value",openVikingIndex:"OpenViking resource index",openVikingIndexHelp:"Leave blank to generate an index from the agent name, such as my_agent_kb. Without DATABASE_OPENVIKING_TARGET_URI, the default URI is viking://user/{knowledge base owner ID, or default}/resources/{resource index}/. When DATABASE_OPENVIKING_TARGET_URI is set, that complete URI is used instead.",openVikingIndexAriaLabel:"OpenViking resource index help: {{help}}"},deployment:{vpcRequired:"Enter a VPC ID when using VPC networking.",apiKeyRequired:"Select the API Key used by the model.",invalidEnvName:"Invalid environment variable name: {{key}}",requiredEnv:"{{name}}: enter this required environment variable",generatingConfiguration:"Generating deployment configuration",runtimeNameExists:"This Runtime name already exists. Choose another name and try again.",preparing:"Preparing deployment",complete:"Deployment complete",failed:"Deployment failed",updateAndPublish:"Update and publish",stages:{build:"Build image",deploy:"Deploy Runtime",publish:"Publish service",running:"Deploying"}},publish:{generating:"Generating publish configuration",validating:"Validating the agent structure and preparing the deployment snapshot…"}},vse={presets:{support:{name:"Customer support assistant",description:"Answer questions around the clock using your knowledge base and conversation history, with consistent and considerate responses.",instruction:"You are a professional and patient customer support assistant. Always use a courteous, friendly tone. Base answers on the knowledge base whenever possible. When the available information is insufficient, say so clearly and ask for the details you need instead of inventing an answer. Keep responses concise and well structured, and provide steps when useful.",subagents:{}},analyst:{name:"Data analyst",description:"Run code for statistics and visualization with tracing enabled, so every analysis is observable and reproducible.",instruction:"You are a rigorous data analyst. Clarify the objective and definitions before cleaning, analyzing, and visualizing data with executable code. Explain assumptions and methods at each step, support conclusions with key evidence, and identify possible bias or limitations.",subagents:{}},translator:{name:"Translation assistant",description:"Translate between Chinese and English accurately and naturally while preserving tone and terminology.",instruction:"You are a professional translator fluent in Chinese and English. Preserve the meaning of the source while producing natural language for the target audience. Keep proper nouns and technical terminology accurate and reflect the original tone and style. Return only the translation unless the user asks for an explanation.",subagents:{}},coder:{name:"Coding assistant",description:"Write, debug, and refactor code, validate it by running tests, and produce clear, maintainable implementations.",instruction:"You are a senior software engineer. Write correct, clear, maintainable code that follows the conventions and best practices of the target language. When uncertain, run the code to validate the implementation, cover important edge cases, and add concise comments for complex logic.",subagents:{}},researcher:{name:"Researcher",description:"Search primary sources online and combine them with knowledge and long-term memory to produce evidence-backed findings.",instruction:"You are a rigorous researcher. Break each question into key subproblems, collect multiple credible primary sources through web search, and cross-check the evidence before drawing conclusions. Cite sources, state uncertainty, distinguish facts from inference, and avoid overgeneralization.",subagents:{}},"research-team":{name:"Multi-agent research team",description:"Coordinate a researcher, analyst, and writer to produce an end-to-end research report.",instruction:"You coordinate a research team. Break down the user's research task, delegate search, analysis, and writing to the appropriate subagents, synthesize their work, and deliver a clear, evidence-backed report.",subagents:{0:{name:"Researcher",description:"Collect primary sources and data related to the topic online.",instruction:"You are the team's researcher. Find multiple credible sources about the topic, organize the key facts, data, and original citations, and hand them to the analyst without adding unsupported conclusions."},1:{name:"Analyst",description:"Cross-check and synthesize the collected material.",instruction:"You are the team's analyst. Cross-check, compare, and synthesize the research material. Extract insights, identify contradictions and uncertainty, and produce a structured set of findings."},2:{name:"Writer",description:"Turn the analysis into a clear report with reliable citations.",instruction:"You are the team's writer. Turn the analyst's findings into a clear, well-written report with consistent citations, ensuring every conclusion can be traced to a source."}}}},tags:{tools:"Tools",memory:"Memory",knowledgeBase:"Knowledge base",tracing:"Tracing",subagents:"{{count}} subagents"},gallery:{title:"Create from a template",subtitle:"Choose a prebuilt agent template and customize it to fit your needs."},detail:{back:"Back to templates",name:"Name",systemPrompt:"System prompt",model:"Model",tools:"Tools",memory:"Memory",knowledgeBase:"Knowledge base",tracing:"Tracing",subagents:"Subagents ({{count}})",create:"Create from this template",shortTermMemory:"Short-term",longTermMemory:"Long-term"}},xse={common:ise,yaml:rse,validation:sse,defaults:ase,helpers:ose,intelligentDeployment:lse,codePackage:cse,buildCanvas:use,intelligent:dse,projectLibrary:fse,modePicker:hse,promptEditor:pse,skills:mse,workflow:gse,workbench:bse,traditional:yse,template:vse},zDe=Object.freeze(Object.defineProperty({__proto__:null,buildCanvas:use,codePackage:cse,common:ise,default:xse,defaults:ase,helpers:ose,intelligent:dse,intelligentDeployment:lse,modePicker:hse,projectLibrary:fse,promptEditor:pse,skills:mse,template:vse,traditional:yse,validation:sse,workbench:bse,workflow:gse,yaml:rse},Symbol.toStringTag,{value:"Module"})),wse={backToList:"Back to scheduled tasks",cancel:"Cancel",cancelQueue:"Cancel queued run",cancelQueueFirst:"Cancel the queued run first",cancelling:"Cancelling…",closeDrawer:"Close panel",collapse:"Collapse",connectingRuntime:"Connecting to Runtime…",createScheduledTask:"Create scheduled task",createTask:"Create task",delete:"Delete",deleteTask:"Delete task",edit:"Edit",enable:"Enable",expand:"Expand",pause:"Pause",refresh:"Refresh",refreshHistory:"Refresh run history",rerun:"Run again",retry:"Retry",runNow:"Run now",saveChanges:"Save changes",saving:"Saving…",stop:"Stop run",stopRun:"Stop this run",stopRunFirst:"Stop the current run first",stopping:"Stopping…",viewDetails:"View details"},Ose={cancelDescription:"This Session will be cancelled. Future scheduled runs will remain enabled.",cancelTitle:"Stop this run?",deleteDescription:"“{{name}}” and its complete run history will be permanently deleted.",deleteTitle:"Delete scheduled task?"},Sse={configuration:"Task configuration",nextRun:"Next run",pageLabel:"Scheduled task details",region:"Region",runtime:"Runtime",status:"Task status"},kse={createTitle:"Create scheduled task",description:"Each trigger creates a separate Session for the Runtime Agent.",editTitle:"Edit scheduled task"},Ese={minutesSeconds:"{{minutes}} min {{seconds}} sec",seconds:"{{count}} sec"},Cse={cronExpression:"Cron expression",cronHelp:"Enter minute, hour, day of month, month, and day of week.",dailyTime:"Daily run time",enableAfterCreate:"Enable after creation",enableHelp:"The task will run at its next scheduled time after it is enabled.",name:"Task name",namePlaceholder:"For example: Generate a daily operations summary",noRuntime:"No Runtime available",prompt:"Execution prompt",promptPlaceholder:"Enter the text to send to the Agent on every run",runAt:"Run time",runtimeAgent:"Runtime Agent",runtimeHelp:"The task always uses the Runtime's currently active version.",runtimePlaceholder:"Select a Runtime Agent",schedule:"Schedule",scheduleType:"Schedule type",timezone:"Time zone",weekday:"Day of week"},Tse={all:"All"},Ase={description:"Each run uses a separate Session. Results and errors are retained.",duration:"Duration: {{duration}}",emptyDescription:"Runs will appear here after the task is triggered or run manually.",emptyTitle:"No runs yet",errorDetails:"Error details",finalAnswer:"Final answer",loadFailed:"Unable to load run history",loadFailedDescription:"Check the Studio service and try again.",session:"Session",title:"Run history"},_se={cancelRequested:"Stop request submitted.",created:"Task created.",deleted:"The task and its run history were deleted.",enabled:"Task enabled.",paused:"Task paused.",queued:"Task queued and will start within one minute.",requeued:"Task queued again and will start within one minute.",updated:"Task updated."},Nse={filterLabel:"Filter scheduled tasks by status",listLabel:"Scheduled task list",loadFailed:"Unable to load scheduled tasks",loadFailedDescription:"Check the Studio service and try again.",title:"Cronjob"},jse={cron:"Cron {{cron}}{{zone}}",daily:"Daily at {{time}}{{zone}}",once:"Once · {{date}}{{zone}}",weekly:"{{weekday}} at {{time}}{{zone}}"},Rse={daily:"Daily",once:"Once",weekly:"Weekly"},Ise={cancelled:"Cancelled",enabled:"Enabled",failed:"Failed",notRun:"Not run yet",paused:"Paused",pending:"Preparing",queued:"Queued",retrying:"Retrying",running:"Running",skipped:"Skipped",success:"Succeeded"},Pse={cronFields:"A Cron expression must contain five fields, for example 0 9 * * *.",nameRequired:"Enter a task name.",promptRequired:"Enter the text to send to the Agent on each run.",runtimeAppMissing:"The Runtime Agent did not return an appName. Confirm that the Runtime is ready and compatible.",runtimeRequired:"Select an available Runtime Agent.",timeRequired:"Select a run time."},Dse={friday:"Friday",monday:"Monday",saturday:"Saturday",sunday:"Sunday",thursday:"Thursday",tuesday:"Tuesday",wednesday:"Wednesday"},VDe={actions:wse,confirm:Ose,detail:Sse,drawer:kse,duration:Ese,fields:Cse,filters:Tse,history:Ase,notices:_se,page:Nse,schedule:jse,scheduleTypes:Rse,status:Ise,validation:Pse,weekdays:Dse},HDe=Object.freeze(Object.defineProperty({__proto__:null,actions:wse,confirm:Ose,default:VDe,detail:Sse,drawer:kse,duration:Ese,fields:Cse,filters:Tse,history:Ase,notices:_se,page:Nse,schedule:jse,scheduleTypes:Rse,status:Ise,validation:Pse,weekdays:Dse},Symbol.toStringTag,{value:"Module"})),Mse="Report an issue",Lse="Description",$se="Common issues",Fse="Cancel",Bse="Done",Use="Submit feedback",Qse="Submitting…",zse={title:"Feedback submitted. Thank you.",description:"The AgentKit team will review your report as soon as possible."},Vse={close:"Close issue report",intro:"Select the issues you encountered and add any useful details.",privacy:"Your conversation data will be shared with the AgentKit team. Please protect sensitive information.",descriptionPlaceholder:"Describe what happened (optional)",issues:{slow:"Slow execution",crash:"Runtime crash",incorrect:"Inaccurate result",tool_error:"Tool call failed",other:"Other issue"}},Hse={description:"Tell us about a problem you encountered while using AgentKit Studio.",module:"Area",modules:{conversation:"Conversation",agents:"Agents",applications:"Automations",search:"Search",other:"Other"},commonIssuesMultiple:"Common issues (select all that apply)",issueTypes:"Issue types",issues:{page_slow:"Page loads slowly",feature_unavailable:"Feature unavailable",display_error:"Display issue",no_response:"Action has no response",other:"Other issue"},descriptionPlaceholder:"Describe the page, action, and what happened",quickAdd:"Quick add",suggestionsLabel:"Suggested descriptions",suggestions:{noResponse:"Nothing happens after I click",loading:"The page remains in a loading state",incomplete:"Some content is missing or clipped",error:"An error appears after the action"},privacy:"Your data will be shared with the AgentKit team. Please protect sensitive information."},qDe={title:Mse,descriptionLabel:Lse,commonIssues:$se,cancel:Fse,done:Bse,submit:Use,submitting:Qse,success:zse,dialog:Vse,page:Hse},WDe=Object.freeze(Object.defineProperty({__proto__:null,cancel:Fse,commonIssues:$se,default:qDe,descriptionLabel:Lse,dialog:Vse,done:Bse,page:Hse,submit:Use,submitting:Qse,success:zse,title:Mse},Symbol.toStringTag,{value:"Module"})),qse={back:"Back",close:"Close"},Wse={title:"Optimize migrated project",closeAria:"Close optimization dialog"},Gse={title:"Migrated projects",description:"Manage migrated source versions or continue optimizing any version.",libraryTitle:"Projects and versions",libraryDescription:"View, download, deploy, or compare source versions, or continue optimizing any version.",emptyTitle:"No migrated projects yet",emptyDescription:"Migrated source code will be saved here automatically."},Kse={langchain:"LangChain",langgraph:"LangGraph",adk:"Google ADK",strands:"Strands",agentcore:"AgentCore",dify:"Dify",any:"Any (universal migration)"},Xse={awaitingUpload:"Awaiting upload",analyzing:"Analyzing",needsInput:"Needs input",analysisReady:"Awaiting confirmation",migrating:"Migrating",validating:"Validating",packaging:"Packaging",succeeded:"Completed",succeededWithWarnings:"Completed with notices",partial:"Partially completed",failed:"Failed",cancelled:"Stopped",expired:"Expired"},Yse={partialReady:"Migration output is ready, but delivery is incomplete. Review the migration notices.",readyWithWarnings:"Migration output is ready. Review the migration notices.",ready:"Migration output is ready."},Zse={passed:"Output verification passed",failed:"Output verification failed",degraded:"Output verification incomplete"},Jse={session:"Create migration environment",upload:"Upload project",analysis:"Analyze project"},eae={agentNameRequired:"Enter an Agent name",agentNameInvalid:"Agent names must be 1–63 characters, contain only lowercase letters, numbers, and hyphens, and start and end with a letter or number"},tae={seconds:"{{seconds}} sec",minutesSeconds:"{{minutes}} min {{seconds}} sec"},nae={savedUnaffected:"Saved projects are unaffected",savingUnaffected:"Source is being saved and will be unaffected once complete",activeDetail:"Task history and temporary output will become unavailable after expiration",oneHour:"Temporary migration environment is retained for 1 hour",ended:"Temporary migration environment has ended",savedAvailable:"Saved projects remain available to view, download, deploy, or optimize",unavailable:"Task history and temporary output are no longer available",countdown:"Temporary migration environment ends in {{minutes}} min {{seconds}} sec",expiredSavedMessage:"The temporary migration environment has ended. Saved projects are unaffected.",expiredMessage:"The temporary migration environment has ended. Task history and temporary output are no longer available."},iae={recommended:"Recommended migration method",scope:"Migration scope",excluded:"Out of scope",viewEvidence:"View analysis evidence",viewAssumptions:"View key assumptions",viewSourceEvidence:"View source evidence"},rae={ariaLabel:"Codex activity",title:"Codex activity",startingAnalysis:"Codex is starting the analysis…",startingMigration:"Codex is starting the migration…",loadError:"Codex activity is temporarily unavailable. The current task is unaffected."},sae={title:"Migration output",fileTooLarge:"This file exceeds 2 MiB. Download the complete output to view it.",unsupportedPreview:"This file cannot be previewed here. Download the complete output to view it.",filesAria:"Migration output files",searchAria:"Search output files",searchPlaceholder:"Search files",limit:"Showing the first {{count}} items. Search for a specific file.",noSelection:"No file selected",noPreview:"No files available to preview.",loadingFile:"Loading output file…",startupFile:"Startup file",fileCountLabel:"Files",saved:"Source has been saved. You can view, download, deploy, or optimize it.",saving:"Output is ready and the source version is being saved.",deployReady:"Output is available to preview, download, and deploy. Waiting for source save status.",deployUnavailable:"Output is available to preview and download, but its current delivery status does not support deployment.",viewProjects:"View migrated projects",downloading:"Downloading…",downloadZip:"Download ZIP",deployTitle:"Deploy migration output",deployUnavailableTitle:"Current delivery status does not support deployment",deployRuntime:"Deploy to Runtime",fileCount:"{{count}} files",startup:"Startup file {{module}}",loading:"Loading migration output…"},aae={retiring:"Retiring soon",currentDefault:"Current default model",loadError:"Failed to load models",label:"Model",placeholder:"Select a model"},oae={zipOnly:"Select a local project in .zip format.",invalidName:"The ZIP file name is invalid. Rename the file and select it again.",tooLarge:"The project ZIP cannot exceed {{size}}.",empty:"The project ZIP cannot be empty.",removeAria:"Remove project ZIP",reselectPrompt:"Select the project ZIP again",selectPrompt:"Select or drop a local project ZIP",reselect:"Select again",selectZip:"Select ZIP",continue:"Continue upload",start:"Start migration",inputAria:"Select a local project ZIP",retention:"The temporary migration environment is retained for 1 hour after creation. Successfully saved source versions are unaffected."},lae={requiredPlaceholder:"Enter {{key}}",optionalPlaceholder:"Optional: {{key}}",notReady:"Migration output is not ready yet.",back:"Back to migration results"},cae={backToAddAgent:"Back to Add Agent",title:"Migrate existing project",newMigration:"New migration",recent:"Recent migrations",sessionsAria:"Migration sessions",loadingSessions:"Loading migration sessions…",noSessions:"No migration sessions",heading:"Migrate an existing Agent project",intro:"Upload a local project ZIP. Codex will first perform a read-only analysis, then ask you to confirm the migration method."},uae={stop:"Stop migration",stopping:"Stopping…",reload:"Reload",refreshStatus:"Refresh status"},dae={unavailable:"Migration is currently unavailable",defaultReason:"Dev Sandbox is currently unavailable. Contact your administrator to check the configuration."},fae={requestZip:"Provide a local project ZIP. After upload, I’ll identify the framework, entry point, and migration boundaries, then ask you to confirm the migration method before making changes.",zipHint:"Only local ZIP files are supported, up to {{size}}. The migration environment is retained for 1 hour after creation.",creatingSandbox:"Creating Dev Sandbox",initializing:"Initializing the migration workspace and checking AgentKit CLI, Codex, and migration capabilities. The project will upload automatically when the environment is ready.",elapsed:"Elapsed: {{duration}}",uploadThenAnalyze:"Read-only analysis will start automatically after the ZIP upload completes.",analyzing:"Codex is identifying the framework, entry point, and migration boundaries. No migration changes are being made.",migrationLocked:"Attachments and migration settings cannot be changed while migration is running. Wait for the task to finish or stop it.",analysisPaused:"Read-only analysis is paused. Answer only the questions below. After submission, analysis will continue in the same environment without starting the migration.",analysisComplete:"Read-only analysis is complete. Review the recommendation and confirm the final migration method.",awaitingUpload:"The migration environment is ready. Select the local ZIP again to continue uploading.",expiredTitle:"Migration environment expired",expiredDescription:"Migration content and output can no longer be previewed, downloaded, or deployed. If the Runtime deployment completed, return to the Agents page to continue using it.",unsupportedTitle:"This ZIP cannot be migrated yet",unsupportedHint:"Update the project as instructed, then create a new migration and upload it again.",failedTitle:"Migration incomplete",cancelled:"This migration was stopped. Create a new migration and upload the project again."},hae={ariaLabel:"Provide project analysis details",title:"Additional information needed for analysis",description:"The attachment stays locked; submitting continues read-only analysis only",submitting:"Continuing analysis…",submit:"Submit and continue analysis"},pae={ariaLabel:"Confirm migration method",title:"Confirm migration method",description:"Migration starts only after confirmation",framework:"Migration method",frameworkPlaceholder:"Select a migration method",agentName:"Agent name",entry:"Project entry point",entryPlaceholder:"Select a project entry point",entryExample:"For example, agent.py:agent",consent:"By selecting “Confirm and start migration,” you confirm the migration scope, exclusions, and key assumptions above.",starting:"Starting migration…",start:"Confirm and start migration"},mae={closeAria:"Dismiss error",loadFailed:"Could not load migration data. Try again.",refreshFailed:"Could not refresh the migration status. Try again."},gae={title:"Stop the current migration?",description:"Stopping ends the current analysis or migration process. Completed steps will not continue."},GDe={common:qse,optimization:Wse,projects:Gse,framework:Kse,state:Xse,task:Yse,verification:Zse,transfer:Jse,validation:eae,duration:tae,expiry:nae,analysis:iae,activity:rae,artifact:sae,model:aae,upload:oae,deployment:lae,workspace:cae,actions:uae,capability:dae,conversation:fae,questions:hae,confirmation:pae,errors:mae,stopDialog:gae},KDe=Object.freeze(Object.defineProperty({__proto__:null,actions:uae,activity:rae,analysis:iae,artifact:sae,capability:dae,common:qse,confirmation:pae,conversation:fae,default:GDe,deployment:lae,duration:tae,errors:mae,expiry:nae,framework:Kse,model:aae,optimization:Wse,projects:Gse,questions:hae,state:Xse,stopDialog:gae,task:Yse,transfer:Jse,upload:oae,validation:eae,verification:Zse,workspace:cae},Symbol.toStringTag,{value:"Module"})),bae={loading:"Loading…",searchLabel:"Search {{label}}",searchPlaceholder:"Search {{label}}",retry:"Retry",noMatches:"No matches",noOptions:"No options available",selection:"{{label}}: {{value}}"},yae={badge:"All new",view:"See what's new",title:"What's new",defaultNotes:{multiRegion:"Multi-region agents: load Beijing and Shanghai Runtimes in parallel, with more available as you scroll.",switchAgent:"Switch in conversation: choose an agent beside the composer and start a new conversation immediately.",visualCanvas:"Visual execution canvas: inspect multi-agent structures on a horizontal canvas with fullscreen support."}},vae={label:"New conversation workspace",agent:"Agent",skill:"Skill customization",video:"Video creation"},xae={select:"Select conversation mode",agent:{label:"Agent",description:"Chat with the selected Agent"},builtin:{label:"Built-in Agent",description:"Use an Agent provided by the platform"},codex:{label:"Codex Agent",description:"Run tasks in a sandbox"},deepseekHarness:{label:"DeepSeek Harness",description:"Open the DeepSeek Harness workspace"},arkClaw:"ArkClaw",hermes:"Hermes Agent",checking:"Checking configuration",notConfigured:"Not configured by an administrator",unavailable:"Unavailable"},wae={select:"Select Agent",typesLabel:"Agent types",listLabel:"{{type}} list",types:{agent:"Agent",general:"General Agent",codex:"Codex Agent",deepseekHarness:"DeepSeek Harness",openclaw:"OpenClaw Agent",hermes:"Hermes Agent"},loading:"Loading Agents",reload:"Reload",empty:"No {{type}} yet",emptyLocal:"No local Agents yet",emptyGeneral:"No General Agents yet",createHint:"Create one from the Agents page",localHint:"Check the directory where Studio was started",waking:"Waking up",opening:"Opening",connecting:"Connecting",loadingMore:"Loading",loadMore:"Load more",runtimeTimeout:"Loading Agents timed out after 15 seconds. Check the network or Runtime service and retry.",loadGeneral:"Load General Agents",loadType:"Load {{type}}",connectGeneral:"Connect to General Agent",openLocal:"Open local Agent",openType:"Open {{type}}",wakingHint:"Waking the agent. This may take some time."},Oae={spaceAria:"Skill spaces",configuration:"Skill customization settings",actions:{create:"Generate Skill",optimize:"Optimize Skill"},selectAction:"Select a Skill customization action",actionList:"Skill customization actions",style:"Style",selectStyle:"Select style",model:"Model",selectModel:"Select model",styles:{concise:"Concise and practical",strict:"Rigorous and reliable",tutorial:"Tutorial-friendly",automation:"Automation-first"},modelLoadFailed:"Failed to load model configuration",spaceLoadFailed:"Failed to load Skill Spaces",skillLoadFailed:"Failed to load Skills",unnamedSpace:"Unnamed Skill Space",space:"Skill Space",select:"Select Skill",selectAria:"Select Skill: {{skill}}",loadingSpaces:"Loading Skill Spaces",reload:"Reload",emptySpaces:"No Skill Spaces yet",skillList:"{{space}} Skill list",loadingSkills:"Loading Skills",emptySkills:"No Skills yet"},Sae={modes:{auto:"Auto detect",text_to_video:"Text to video",reference_to_video:"Reference to video",video_editing:"Video editing",video_extension:"Video extension",first_last_frame:"First and last frames"},taskNames:{auto:"Video generation",text_to_video:"Text-to-video",reference_to_video:"Reference-to-video",video_editing:"Video editing",video_extension:"Video extension",first_last_frame:"First-and-last-frame generation"},controls:{label:"Video creation settings",aspectRatio:"Aspect ratio",selectAspectRatio:"Select aspect ratio",resolution:"Resolution",selectResolution:"Select resolution",duration:"Duration",durationShort:"{{count}}s",durationAria:"Video duration: {{count}} seconds",lastFrame:"Last frame",lastFrameHelper:"Add the video's ending frame",assistImage:"Supporting image",referenceImage:"Reference image",assistImageHelper:"Add visual guidance",imageHelper:"Supports common image formats",referenceVideo:"Reference video",videoHelper:"Supports common video formats",optional:"Optional",replace:"Replace",add:"Add",upload:"Upload {{label}}",replaceFile:"Replace {{label}}: {{name}}",removeFile:"Remove {{label}} {{name}}",storageUnavailable:"Persistent storage is not configured",loadingEnhancer:"Loading prompt enhancement model",enhancerHint:"Uses {{model}} for intent recognition and prompt enhancement",enhancerUnavailable:"Prompt enhancement model unavailable"},task:{title:"Video generation task",closeAria:"Close video generation task dialog",progressAria:"Video generation progress",optimizedPrompt:"Optimized prompt",processingAria:"{{task}} progress",waitingAria:"{{status}}, elapsed {{elapsed}}",elapsed:"Elapsed {{elapsed}}",previewAria:"Generated video preview",close:"Close",download:"Download video",retryOptimization:"Retry prompt optimization",retryGeneration:"Retry video generation",providerQueued:"Waiting for model scheduling",providerRunning:"Model generating",providerSubmitting:"Submitting task",queuedHint:"The task was submitted. Its status will update automatically when processing begins.",runningHint:"This may take several minutes. The video preview will appear here when complete.",backgroundHint:"You can close this dialog. The task will continue in the background.",successHint:"Your video is ready to preview or download.",activationHint:"Activate the service in the model console, then retry generation.",retryHint:"Fix the issue and retry the current step.",steps:{optimizationFailed:"Prompt optimization failed",optimizationDone:"Prompt optimization complete",optimizationActive:"Optimizing prompt",generationDone:"{{task}} complete",generationFailed:"{{task}} failed",generationQueued:"{{task}} queued",generationRunning:"Generating {{task}}",generationActive:"{{task}} in progress",generationPending:"Waiting for video generation",generationComplete:"Video generation complete"},elapsedHours:"{{hours}}h {{minutes}}m",elapsedMinutes:"{{minutes}}m {{seconds}}s",elapsedSeconds:"{{seconds}}s"}},kae={compactSelect:bae,featureNotice:yae,workspace:vae,mode:xae,agentPicker:wae,skill:Oae,video:Sae},XDe=Object.freeze(Object.defineProperty({__proto__:null,agentPicker:wae,compactSelect:bae,default:kae,featureNotice:yae,mode:xae,skill:Oae,video:Sae,workspace:vae},Symbol.toStringTag,{value:"Module"})),Eae={cancel:"Cancel",close:"Close",retry:"Retry",tryAgain:"Try again",closeDialog:"Close {{title}}",agentFallback:"{{agent}} Agent",unknownSource:"Unknown source"},Cae={terminalTitle:"Terminal",browserTitle:"Sandbox browser",terminalSubtitle:"Connect to the interactive terminal for the current AgentKit Session",browserSubtitle:"View and control the browser in the current AgentKit Session",connecting:"Connecting…",connected:"Connected",notConnected:"Not connected",opening:"Opening {{title}}",connectingSession:"Connecting the tool to the current AgentKit Session.",openFailed:"Failed to open {{title}}"},Tae={title:"Resume Codex conversation",subtitle:"Select a recently updated Thread from the current Sandbox Session",loading:"Loading conversation history",loadFailed:"Failed to load conversation history",empty:"No conversations to resume"},Aae={title:"Codex permissions",subtitle:"Settings are saved to the current Sandbox Session and applied to all of its Threads",sandboxMode:"Sandbox mode",approvalPolicy:"Approval policy",approvalMethod:"Approval method",networkAccess:"Allow network access",networkAccessHelp:"Control external network access in workspace-write and read-only modes.",fullAccessWarning:"Full access disables file system and network isolation. Use it only for trusted tasks.",save:"Save permissions",sandboxChoices:{readOnly:{label:"Read only",detail:"Allow reading files without writing to the workspace."},workspaceWrite:{label:"Workspace write",detail:"Allow reading and modifying files in the current workspace."},fullAccess:{label:"Full access",detail:"Disable sandbox isolation for explicitly trusted tasks."}},approvalChoices:{untrusted:{label:"Untrusted commands only",detail:"Request approval only for operations Codex considers untrusted."},onRequest:{label:"On request",detail:"Allow Codex to ask you to approve commands or file changes when needed."},never:{label:"Never ask",detail:"Codex will not pause to request manual approval."}},reviewerChoices:{user:{label:"Ask me",detail:"Approval requests appear in Studio for you to decide."},autoReview:{label:"Automatic review",detail:"Use the Codex automatic review flow to handle approval requests."}}},_ae={title:"Workspace",subtitle:"Choose the directory where the current Codex Thread runs commands and modifies files",absolutePath:"Absolute path",browse:"Browse",parent:"Parent directory",empty:"This directory has no subdirectories",locked:"The conversation has started and the workspace is locked. Start a new Sandbox Session to choose another workspace.",useDirectory:"Use this directory"},Nae={fileTitle:"Allow file changes?",commandTitle:"Allow command execution?",subtitle:"Codex is waiting for your decision",workingDirectory:"Working directory",decline:"Decline",acceptOnce:"Allow once",acceptSession:"Allow for session"},jae={availableSkills:"Available Skills",selectModel:"Select model",commands:"Codex shortcuts",currentModel:"Current: {{model}}",loadingSkills:"Discovering Skills in the current workspace…",loadingModels:"Loading models…",noSkillMatches:"No matching Skills in the current workspace",noModelMatches:"No matching models. You can also enter a model ID directly",noCommandMatches:"No matching shortcuts",skillFallback:"Load and run this Skill",add:"Add",uploadImage:"Upload image",uploadDocument:"Upload document or PDF",uploadVideo:"Upload video",openTerminal:"Open terminal",viewBrowser:"View browser",permissions:"Codex permissions",workspaceLocked:"The conversation has started and the workspace is locked",selectWorkspace:"Select workspace",workspace:"Codex workspace",endpointCopied:"Endpoint copied",copyEndpoint:"Copy Sandbox Endpoint",continuePlaceholder:"Describe what you want to implement or adjust next",messagePlaceholder:"Message the AgentKit Sandbox. Type / for commands or $ to invoke a Skill…",stop:"Stop generating",send:"Send"},Rae={defaultName:"My Agent",namedDefault:"My {{agent}}",creatingTitle:"Creating {{agent}} Agent",failedTitle:"Launch failed",createTitle:"Create {{agent}} Agent",fallbackError:"AgentKit Sandbox initialization failed. Please try again later.",creatingDescription:"Creating the {{agent}} Agent and waiting for it to become ready. This usually takes about 30 seconds.",name:"Agent name",storageSize:"Storage size",storageHelp:"Data will be persisted. Choose {{min}}–{{max}} GiB.",persistent:"Persistent",persistenceUnsupported:"Snapshot persistence is not supported in the current environment",persistentHelp:"Keep Agent data so you can continue later.",temporaryHelp:"Agent data will be cleared after 8 hours",cancelCreation:"Cancel creation",confirm:"Create",retry:"Try again"},Iae={activeAria:"Codex Agent session is active",openAria:"Open a Codex Agent session",active:"Codex Agent session",entry:"Spark an idea",exit:"Exit current Agent",expired:"Expired",remainingHours:"{{hours}}h {{minutes}}m remaining",remainingMinutes:"{{minutes}}m remaining",expiryWarning:"The remote development environment is kept for up to 8 hours and expires at {{expiry}} ({{remaining}}). Conversations and files will then be deleted.",usingAgent:"You are currently using the {{agent}} Agent",activityAria:"Sandbox activity log",activity:"Activity log",tokenUsageAria:"Codex token usage",tokens:"{{label}}: {{value}} tokens",tokenLabels:{total:"Total",input:"Input",cachedInput:"Cached input",output:"Output",reasoningOutput:"Reasoning output"}},Pae={back:"Back to Agents",subtitle:"{{agent}} agent details",type:"Agent type",status:"Status",createdBy:"Created by",snapshotStatus:"Snapshot status",toolType:"Tool type",createdAt:"Created at",snapshotReason:"Snapshot reason",expiresAt:"Expires at",snapshotId:"Snapshot ID",sessionId:"Session ID",sourceSessionId:"Source Session ID",delete:"Delete Agent",waking:"Waking…",opening:"Opening…",wake:"Wake Agent",open:"Open Agent",deleteTitle:"Delete Agent?",deleteDescription:"Delete “{{name}}” and its saved data? This cannot be undone.",deleting:"Deleting…",confirmDelete:"Delete",sleepingHint:"This agent is asleep. Waking it before opening may take some time.",wakingHint:"Waking the agent. This may take some time.",agentId:"Agent ID"},Dae={back:"Back to Agents",createdBy:"Created by {{creator}}",ariaLabel:"Agent workspace",main:"Main",terminal:"Terminal",mainTitle:"{{agent}} main interface",openingTerminal:"Opening terminal…",terminalTitle:"{{agent}} terminal"},Mae={prompt:`Use the AgentKit Studio Plugin to hand off the current conversation, project, and task to the cloud. Execute this directly; do not ask me to open a terminal manually. +- Maintain a polite, professional tone.`},xse={requestFailed:"Request failed ({{status}}){{detail}}",a2aSpaces:{credentialsMissing:"The server does not have cloud provider credentials configured, so AgentKit agent centers are unavailable",loginRequired:"Sign in to access AgentKit agent centers"},vikingKnowledge:{credentialsMissing:"The server does not have cloud provider credentials configured, so VikingDB knowledge bases are unavailable",loginRequired:"Sign in to access VikingDB knowledge bases"},vikingMemory:{credentialsMissing:"The server does not have cloud provider credentials configured, so VikingDB memory stores are unavailable",loginRequired:"Sign in to access VikingDB memory stores"},mcpGateway:{missingHttpTool:"Go back to Add MCP tool and add at least one HTTP MCP service. MCP resilience does not support stdio services.",missingUrl:"An HTTP MCP tool is missing a valid service URL. Go back to Add MCP tool and complete it before publishing."},customModel:{fallbackName:"Custom model",apiKeyLabel:"{{name}} model API Key",fallbackApiKeyLabel:"{{name}} fallback model {{model}} API Key"},deploymentEnv:{serverInjected:"Provided by the server",selectedApiKeyPlaceholder:"Provided by the selected API Key",mcpInjectedComment:"Provided by the added MCP tools",restoredPlaceholder:"Securely restored by the Studio server",generatedMcpPlaceholder:"Generated from the added HTTP MCP tools",restoredHelp:"When updating, the Studio server merges MCP addresses and authentication without returning existing secrets to the browser.",mergedMcpHelp:"The Studio server merges MCP addresses and optional authentication without returning existing secrets to the browser.",listSeparator:", ",requirementHint:"Required by the following optimizations: {{labels}}.",requiredBy:"Required by the following optimizations: {{labels}}. Enter {{key}}.",required:"Enter {{label}} ({{key}}).",invalidJson:"Invalid JSON format"},drafts:{unsupportedVersion:"This local draft version is not supported. Upgrade Studio and try again.",invalidFormat:"The local draft data is invalid.",readFailed:"Could not read local drafts. The browser data may be corrupted.",quotaExceeded:"Browser storage is full, so the draft was not saved. Delete unused drafts or clear this site's storage, then try again.",writeRejected:"The browser blocked saving this draft. Check the site's storage permissions and try again."},skills:{searchFailed:"Search failed ({{status}})",downloadFailed:"Skill download failed ({{status}})",agentKitRequestFailed:"AgentKit Skills request failed",missingManifest:"{{location}} is missing SKILL.md",invalidParentPath:"{{location}} contains an invalid parent path (..): {{path}}",invalidPath:"{{location}} contains an invalid path: {{path}}",localDescription:"Local skill",folderSource:"Folder",noManifest:"No SKILL.md was found in {{location}}"},zip:{invalid:"Invalid zip: EOCD was not found",tooManyFiles:"A zip file cannot contain more than {{count}} files",tooLarge:"The extracted zip content is too large"}},wse={back:"Back to development session",runtimeName:"Runtime name",runtimeNameExists:"This Runtime name already exists. Choose another name.",checkingRuntimeName:"Checking Runtime name",verifiedSource:"Verified source",deployableSource:"Deployable source",verifiedByCodex:"Verified by Codex in the cloud",entryPoint:"Entry point",files:"Files",artifact:"Artifact",validationReport:"Validation report",verifiedHint:"The server materializes source from the verified artifact. Browser files cannot replace it.",unverifiedHint:"The server securely materialized the source. Confirm the Runtime configuration before deploying.",env:{requiredPlaceholder:"Enter {{key}}",optionalPlaceholder:"Optional: {{key}}"}},Ose={name:"Code package",back:"Back to creation methods",reading:"Reading the code package",readingEllipsis:"Reading the code package…",uploadFirst:"Upload a code package first",uploadAriaLabel:"Code package upload",upload:"Upload code package",reupload:"Upload a different code package",uploadPrompt:"Upload a code package",filesRecognized:"{{count}} files found. Select this area to upload a different package.",dropHint:"Select or drop a .zip file up to 50 MB. Use app.py or declare an entry point in agentkit.yaml.",viewFiles:"View files",chooseFile:"Choose code package",errors:{invalidFormat:"Choose a .zip code package.",tooLarge:"The code package must be 50 MB or smaller.",invalidPath:"The archive contains an invalid path: {{name}}",empty:"The archive does not contain any deployable files.",tooManyFiles:"A code package cannot contain more than {{count}} files.",duplicateFile:"The code package contains a duplicate file: {{path}}",manifestParse:"Could not parse agentkit.yaml: {{detail}}",manifestRoot:"The root of agentkit.yaml must be an object.",manifestCommon:"common in agentkit.yaml must be an object.",entryPointType:"common.entry_point in agentkit.yaml must be a file path.",entryPointInvalid:"common.entry_point in agentkit.yaml is not a valid file path.",entryPointMissing:"The entry point declared in agentkit.yaml is missing from the code package: {{entryPoint}}",defaultEntryPointMissing:"The code package root must contain app.py, or common.entry_point in agentkit.yaml must declare an existing entry point."}},Sse={label:"Agent execution canvas",readOnlyLabel:"Read-only agent execution canvas",minimapLabel:"Execution flow minimap",controls:{ariaLabel:"Execution flow controls",zoomIn:"Zoom in",zoomOut:"Zoom out",fitView:"Fit view"},rootAgent:"Main agent",unnamedStep:"Unnamed step",terminals:{input:"User request",output:"Final response"},edges:{then:"Then",continueLoop:"Continue loop",call:"Call"},patterns:{llm:{label:"Agent",description:"Understand a task and complete one specific job"},sequential:{label:"Sequential",description:"Run internal steps one after another"},parallel:{label:"Parallel",description:"Run internal steps together, then combine their results"},loop:{label:"Loop",description:"Repeat internal steps until the stop condition is met"},a2a:{label:"Remote agent",description:"Call an existing remote agent"}},actions:{insertHere:"Insert a step here",deleteNamed:"Delete {{name}}",deleteNode:"Delete node",addSubagent:"Add subagent",addParallelStep:"Add a parallel step",addLoopStep:"Add a loop step",addNextStep:"Add next step",addFirst:"Add at the beginning",addLast:"Add at the end"}},kse={title:"Intelligent mode",subtitle:"Describe your goal and Codex will plan, build, debug, and temporarily validate the agent in a sandbox.",model:{label:"Model",placeholder:"Select a model",retiring:"Retiring soon",currentConfiguration:"Current configuration",loadError:"Failed to load models"},availability:{checking:"Checking intelligent development availability…",unavailable:"Intelligent mode is currently unavailable. Go back and try again."},goal:{title:"Start with a goal",continueTitle:"Continue improving the project",hint:"Describe the problem your agent should solve. We will ask about any details that could affect the result.",continueHint:"Describe what you want to change. The result will be saved as a new version.",basedOn:"Based on",clearSelection:"Clear selection",label:"Goal",optimizationLabel:"Optimization goal",placeholder:"For example: Build an agent that reads sales data, creates weekly reports, and validates the output format",optimizationPlaceholder:"For example: Cite data sources and ask the user when information is incomplete"},actions:{preparing:"Preparing…",build:"Start building",optimize:"Start optimizing"},preparation:{accepted:"Goal received. Implementation is starting now.",preparing:"Creating the task environment…",starting:"Environment ready. Starting Codex…",next:"Next, Codex will plan the approach, then build, run, and validate the agent."}},Ese={title:"Saved projects",description:"Continue improving an existing version, or view, download, and deploy its source.",refresh:"Refresh projects",checkingStorage:"Checking project storage…",unavailableTitle:"Projects are temporarily unavailable",storageCheckError:"Could not confirm project storage status. Try again shortly.",storageNotConfigured:"Project storage is not configured.",loadingMigrated:"Loading migrated projects…",loadingSaved:"Loading saved projects…",loadingVersions:"Loading project versions…",unknownTime:"Unknown time",sourceDownloaded:"Source downloaded.",projectSummary_one:"{{count}} version · Updated {{time}}",projectSummary_other:"{{count}} versions · Updated {{time}}",versionSummary_one:"{{time}} · {{count}} file",versionSummary_other:"{{time}} · {{count}} files",noVersionDescription:"No version description",latestVersion:"Latest version",verified:"Verified",pendingVerification:"Needs review",viewSource:"View source",download:"Download",downloading:"Downloading…",optimize:"Optimize",optimizeUnavailable:"Optimize, not supported",errors:{projects:"Could not load saved projects.",source:"Could not load project source.",versions:"Could not load project versions.",download:"Could not download the source.",prepareDeployment:"Could not prepare the source for deployment.",deleteVersion:"Could not delete the project version.",migrated:"Could not load migrated projects",saved:"Could not load saved projects"},empty:{migratedTitle:"No migrated projects yet",savedTitle:"No saved projects yet",migratedDescription:"Source will be saved here after your first migration.",savedDescription:"Source will be saved here after your first build.",noVersions:"This project has no available versions."},compare:{selected:"{{count}}/2 selected",selectedLabel:"Selected",select:"Select",view:"View comparison",start:"Compare versions"},delete:{title:"Delete this version?",onlyVersion:"“{{name}}” has only one version. Deleting it will also remove the project. This cannot be undone.",description:"This version's source and validation records will be permanently deleted. Other versions are not affected.",confirm:"Delete version"}},Cse={title:"Choose how to create",subtitle:"Build your agent with the workflow that fits your needs",features:"Features",quick:{title:"Quick mode",description:"Delegate tasks to dynamically created subagents",features:{dynamicSubagents:"Dynamic subagents",autonomousPlanning:"Autonomous planning",collaboration:"Multi-agent collaboration",summary:"Automatic result summaries",skills:"Skills on demand",trace:"Traceable task execution"}},traditional:{title:"Advanced mode",description:"Customize your agent structure in detail",features:{visualConfig:"Visual configuration",migration:"Existing agent migration",debugging:"Live debugging",optimization:"Optional optimization",parameters:"Fine-grained controls"}}},Tse={placeholder:"Enter a system prompt. Type ## followed by a space to add a level-two heading…",toolbar:{undo:"Undo {{shortcut}}",redo:"Redo {{shortcut}}",paragraph:"Paragraph",quote:"Quote",heading:"Heading {{level}}",selectBlockType:"Select text style",blockType:"Text style",bold:"Bold",removeBold:"Remove bold",italic:"Italic",removeItalic:"Remove italic",bulletedList:"Bulleted list",numberedList:"Numbered list"}},Ase={local:{duplicatesSkipped:"Skipped duplicate skills: {{names}}",invalidDrop:"Drop a folder containing SKILL.md or a .zip file",readError:"Could not read the files: {{detail}}",dropLabel:"Drop a folder or ZIP file to detect skills automatically",hint:"Each skill must contain a SKILL.md file. Directories can contain multiple skills.",reading:"Reading files…",fileCount:"Local · {{count}} files"},hub:{searchError:"Search failed. Try again shortly.",searchPlaceholder:"Search Volcano Find Skill, such as data analysis or PDF",search:"Search",searching:"Searching…",noResults:"No matching skills found. Try another keyword.",hint:"Search Volcano Find Skill by keyword. Selected skills are downloaded to the skills/ directory when the project is generated."},space:{loadError:"Failed to load",loadingSpaces:"Loading AgentKit Skills centers…",noSpaces:"This account has no AgentKit Skills centers.",selectSpace:"Select an AgentKit Skills center",openConsole:"Open in the Volcano Engine console",loadingSkills:"Loading skills…",noSkills:"This AgentKit Skills center has no skills."}},_se={unnamedNode:"Unnamed node",editInstruction:"Select to edit instructions…",controls:{ariaLabel:"Workflow canvas controls",zoomIn:"Zoom in",zoomOut:"Zoom out",fitView:"Fit view"},sections:{info:"Workflow information",execution:"Execution mode",nodes:"Nodes",nodeConfig:"Node configuration"},types:{sequential:{label:"Sequential",description:"Run nodes one after another"},parallel:{label:"Parallel",description:"Run nodes at the same time"},loop:{label:"Loop",description:"Run nodes repeatedly"}},placeholders:{description:"Describe what this workflow does…",agentDescription:"Describe what this agent does…",instruction:"You are…"},errors:{workflowNameUnique:"The workflow name must be unique among agent node names",agentNameUnique:"Agent names must be unique within this workflow"},dragHint:"Drag onto the canvas, or use the button below",agentNode:"Agent node",addNode:"Add node",connectHint:"Drag between node handles to define the execution order.",create:"Create workflow",deleteNode:"Delete node",nameHelp:"Use only letters, numbers, and underscores. Names must be unique.",instruction:"Instructions",tools:"Tools (comma-separated)",nodeId:"Node ID",empty:{selectNode:"Select a node to edit its configuration",summary:"{{nodes}} nodes · {{edges}} connections"}},Nse={ariaLabel:"Quick mode creation",progress:"Quick mode creation progress",steps:{agent:{label:"Agent",title:"Basic information",description:"Set the agent's name, purpose, behavior, and capabilities"},environment:{label:"Environment",title:"Configure the environment",description:"Choose the default environment or a custom environment you have built"},deployment:{label:"Deployment",title:"Deployment preferences",description:"Configure AgentKit cloud settings"}},model:{label:"Model",source:"Model source",name:"Model name",fallbacks:"Fallback models",fallbackPlaceholder:"Fallback model name",addFallback:"Add fallback model",addProviderFallback:"Add other provider",removeFallback:"Remove",fallbackType:"Fallback model type",fallbackSameProvider:"Same provider",fallbackOtherProvider:"Other provider",apiKeyEnv:"API Key environment variable",invalidApiKeyEnv:"Use letters, numbers, and underscores only, and do not start with a number.",fallbackHelp:"Same-provider fallbacks reuse the primary connection. Other providers use separate provider, API base, and API Key settings.",fallbackIgnored:"Empty, duplicate, or primary-model entries will be ignored.",provider:"Provider",invalidApiBase:"Enter a valid http:// or https:// URL.",volcengineArk:"Volcano Ark",custom:"Custom",gateway:"Model gateway",comingSoon:"Coming soon",currentApiKey:"Current API Key",currentConfiguration:"Current configuration",loadingApiKeys:"Loading API Keys",selectApiKey:"Select an API Key",searchApiKeys:"Search API Key names",noApiKeys:"No API Keys available",loadingModels:"Loading models",selectModel:"Select a model",searchModels:"Search by name, Model ID, or provider",noModels:"No models available",apiKeyPlaceholder:"Enter a model API Key",credentialsLoadError:"Failed to load model credentials",modelsLoadError:"Failed to load models"},identity:{unnamedPool:"Unnamed user pool",currentPool:"{{value}} (current user pool)",userPool:"User pool",loading:"Loading user pools",placeholder:"Select a user pool",search:"Search user pools",empty:"This account has no Identity user pools",currentHint:"This Studio's login JWT will be forwarded to the Runtime",mismatchHint:"The selected user pool is not used by this Studio, so the Studio will not be able to call the Runtime after deployment",selectionHint:"The user pool used by this Studio is marked in the list"},agent:{namePlaceholder:"Enter an agent name",descriptionPlaceholder:"Describe what this agent can do",prompt:"Prompt",promptPlaceholder:"Define the role, goals, and behavior boundaries",skills:"Skills",addSkill:"Add skills"},validation:{descriptionRequired:"Enter a description",promptRequired:"Enter a prompt",modelRequired:"Select a model",instanceIntegers:"Minimum instances must be an integer of 0 or greater, and maximum instances must be an integer greater than 0",instanceOrder:"Minimum instances cannot exceed maximum instances",userPoolRequired:"Select a user pool for Runtime authentication"},deployment:{runtimeName:"Runtime name",runtimeNameUpdateHint:"The existing Runtime name is preserved during updates",runtimeNameHint:"Use only letters, numbers, underscores, and hyphens",region:"Deployment region",authentication:"Authentication",apiKeyDescription:"Default: access with the Runtime API Key",userPoolDescription:"Use a JWT issued by an Identity user pool",sessionStorage:"Session storage",inMemoryStorage:"Temporary in-memory storage",backends:{sqlite:"SQLite file",mysql:"MySQL",postgresql:"PostgreSQL"},instances:"Instance settings",minInstances:"Minimum instances",maxInstances:"Maximum instances",inMemoryHint:"To prevent session loss across instances, keep the Runtime at 1–1 instances",networkMode:"Network mode",network:{public:"Public",private:"Private",both:"Public and private"},subnetIds:"Subnet IDs (optional, comma-separated)",sharedInternet:"Shared public egress in the VPC",sharedInternetHint:"Allow private Runtimes to access the public internet through shared egress",evaluationSets:"Evaluation sets",createEvaluationSets:"Create evaluation sets automatically",evaluationSetsHint:"Create Good Case and Bad Case evaluation sets after deployment",resources:"Resource configuration",complete:"Deployment complete",preparing:"Preparing deployment…"},environmentVariables:{title:"Environment variables",add:"Add variable",nameAriaLabel:"Environment variable name",valueAriaLabel:"Value for {{name}}",deleteNamed:"Delete {{name}}"},actions:{updateAgain:"Update again",deployAgain:"Deploy again",updateAndPublish:"Update and publish"}},jse={actions:{addSubagent:"Add subagent",clearRoot:"Clear main agent",clearRootConfirmation:"Clear all settings and subagents from the main agent? This cannot be undone."},workspace:{progress:"Agent creation progress",modes:{build:"Build",validate:"Debug",optimize:"Optimize",environment:"Environment",publish:"Publish"},titles:{build:"Customize your agent architecture",validate:"Debug your agent",optimize:"Choose optimizations for your agent",environment:"Configure the cloud environment",publish:"Prepare your agent for deployment"}},sections:{type:{label:"Agent type",hint:"Choose an agent type"},basic:{label:"Basic information",hint:"Name, description, and system prompt"},model:{label:"Model",hint:"Model and service (optional)"},tools:{label:"Tools",hint:"Callable capabilities"},skills:{label:"Skills",hint:"Declarative skills"},knowledge:{label:"Knowledge base",hint:"External knowledge retrieval"},memory:{label:"Memory",hint:"Short-term and long-term memory"},subagents:{label:"Subagents",hint:"Nested collaboration"},review:{label:"Finish",hint:"Preview and create"}},agentTypes:{ariaLabel:"Agent type",remoteChildOnly:"Remote agents can only be used as child steps",llm:{label:"Agent",fullLabel:"LLM agent",description:"Uses an LLM to complete tasks autonomously"},sequential:{label:"Sequential",fullLabel:"Sequential agent",description:"Runs subagents one after another"},parallel:{label:"Parallel",fullLabel:"Parallel agent",description:"Runs subagents in parallel, then combines their results"},loop:{label:"Loop",fullLabel:"Loop agent",description:"Repeats subagents until the stop condition is met"},a2a:{label:"Remote agent",fullLabel:"Remote agent",description:"Calls a remote agent through the A2A protocol"}},basic:{agentName:"Agent name",name:"Name",agentDescription:"Agent description",descriptionPlaceholder:"Briefly describe what this agent does so your team can identify it…",nameHelp:"Follow Google ADK naming rules and keep the name unique in the execution flow.",rootDescriptionHelp:"The full description is preserved and converted to a Runtime-compatible single line during deployment.",descriptionHelp:"The description appears in agent lists and selectors.",orchestratorHelp:"This is a collaboration container and does not answer directly. Add task steps on the canvas and drag them to reorder.",maxIterations:"Maximum iterations",maxIterationsHelp:"The loop repeats its subagents until the condition is met or this limit is reached.",agentCenter:"AgentKit agent center",agentCenterHelp:"The remote agent's name, description, and capabilities come from the Agent Card returned by the center. The system discovers and attaches matching agents for each task.",moreOptions:"More options",systemPrompt:"System prompt",loadingMarkdown:"Loading Markdown editor…",markdownHelp:"Markdown shortcuts are supported. For example, type ## followed by a space to create a level-two heading.",unnamed:"Unnamed",unnamedAgent:"Unnamed agent"},validation:{remoteRoot:"A remote agent can only be a subagent",missingRegistry:"Select an AgentKit agent center",name:{required:"Name is required",reserved:"user is reserved by Google ADK. Choose another name.",characters:"Start with a letter or underscore and use only letters, numbers, and underscores"},duplicateName:"Agent names must be unique within this structure",missingDescription:"Description is required",mcpAuthRequired:"Confirm how to handle authentication after changing the MCP address",mcpDuplicateName:"MCP names must be unique",mcpDuplicateUrl:"Remove the duplicate MCP endpoint before publishing",missingSubagent:"A subagent is required",missingPrompt:"System prompt is required",missingSubagentDetail:"Add at least one subagent to {{type}} before debugging or publishing.",problem:"{{name}}: {{problem}}"},ai:{ariaLabel:"Fill agent configuration with AI",minimumLength:"Enter at least {{count}} characters.",replaceConfirmation:"The generated configuration will replace the current canvas and settings. Continue?",placeholder:"Describe your goal and use {{model}} to generate the configuration",generate:"Generate",generating:"Generating",success:"Configuration generated",regenerate:"Generate again",failed:"Generation failed"},debug:{ariaLabel:"Agent debugging workspace",unavailable:"This backend does not currently support generated-agent debug runs.",baseline:"Baseline",comparison:"Variant {{count}}",selectModel:"Select a model",enterDescription:"Enter a description",enterPrompt:"Enter a system prompt",duplicateConfiguration:"Test configurations must be unique",starting:"Starting…",applyAndRestart:"Apply and restart",restart:"Restart",start:"Start environment",defaultModel:"Default model",testConfiguration:"Test configuration",deleteVariant:"Delete {{name}}",deleteVariantGroup:"Delete comparison variant",creatingEnvironment:"Creating the test environment…",configurationChanged:"The configuration changed. Restart the environment.",ready:"Environment ready",readyHint:"Send a message to compare agent responses.",startHint:"Complete the configuration, then start the environment.",viewTraceNamed:"View the trace for {{name}}",traceUnavailable:"Send a message to view its trace",trace:"Trace",useConfiguration:"Use this configuration",finishConfiguration:"Finish configuration",finishAndStart:"Finish and start",currentAgentModel:"Current agent model",configurationHint:"Changes apply only to this comparison. Select this configuration to continue to deployment.",messagePlaceholder:"Send a message to the running test environments…",startOneFirst:"Start at least one test environment first",addVariant:"Add variant",traceTitle:"Trace · {{name}}",leaveTitle:"Leave debugging?",leaveDescription:"The current environments will be removed when you leave. You can start new environments when you return.",cleaning:"Cleaning up…",confirmLeave:"Leave",closeLeaveConfirmation:"Close leave-debugging confirmation"},optimization:{ariaLabel:"Agent optimization options",scenario:"Optimization scenario",components:"Optimization components",bytePlusUnavailable:"Harness Sidecar optimizations are not available for BytePlus accounts yet. Leave all optimizations unselected to continue; regular BytePlus agents are not affected.",releaseScenario:"Optimization scenario: {{profile}}",profiles:{default:{label:"Custom",description:"Choose components as needed. The Sidecar stays off when none are selected."},ops:{label:"Operations",description:"For operations diagnostics, databases, logs, and monitoring MCP servers."}},groups:{quality:"Improve response quality",cost:"Reduce runtime cost",stability:"Improve runtime stability"},options:{context_engine:{label:"Context management",description:"Manage context assembly, task anchoring, and context budgets."},compressor:{label:"Context and result compression",description:"Compress long context and large tool results to reduce token usage."},verifier:{label:"Response verification and repair",description:"Verify evidence and responses, then repair or alert on failure."},long_run_control:{label:"Goal task control",description:"Manage progress, continuation, and completion conditions for Goal tasks."},mcp_resilience:{label:"MCP resilience",description:"Manage connections, timeouts, empty results, large responses, and call budgets. Includes read-only SQL protection by default."}}},model:{label:"Model",source:"Model source",volcanoArk:"Volcano Ark",volcengineArk:"Volcano Ark",bytePlusModelArk:"BytePlus ModelArk",custom:"Custom",gateway:"Model gateway",comingSoon:"Coming soon",configuration:"Model configuration",name:"Model name",fallbacks:"Fallback models",fallbackPlaceholder:"Fallback model name",addFallback:"Add fallback model",addProviderFallback:"Add other provider",removeFallback:"Remove",fallbackType:"Fallback model type",fallbackSameProvider:"Same provider",fallbackOtherProvider:"Other provider",apiKeyEnv:"API Key environment variable",invalidApiKeyEnv:"Use letters, numbers, and underscores only, and do not start with a number.",fallbackHelp:"Same-provider fallbacks reuse the primary connection. Other providers use separate provider, API base, and API Key settings.",fallbackIgnored:"Empty, duplicate, or primary-model entries will be ignored.",provider:"Provider",invalidApiBase:"Enter a valid http:// or https:// URL.",liteLlmProviders:"LiteLLM providers",apiKeyPlaceholder:"Enter the model API Key",available:"Available",retiring:"Retiring soon",notActivated:"Not activated",unavailable:"Unavailable",apiKeyLoadError:"Failed to load Ark API Keys",loadingApiKeys:"Loading API Keys…",selectApiKey:"Select an API Key",currentApiKey:"Current API Key",apiKeyList:"API Key list",searchApiKey:"Search API Keys",searchApiKeyName:"Search API Key names",noApiKeys:"No API Keys available",noMatchingApiKey:"No matching API Keys",loading:"Loading models…",loaded:"{{count}} models loaded",loadError:"Failed to load models",selectModel:"Select a model",selectProviderModel:"Select a provider model",providerModels:"Provider models",search:"Search models",searchPlaceholder:"Search by name, Model ID, or provider",noMatches:"No matching models",empty:"No models available",unknownStatus:"Unknown status",refresh:"Refresh",refreshing:"Refreshing…",activate:"Activate",activateAction:"Open activation",currentConfiguration:"Current configuration"},tools:{builtIn:"Built-in tools",builtInHelp:"Select VeADK capabilities. Imports and required environment variables are added automatically.",codeExecution:"Code execution configuration",codeExecutionHelp:"Select the AgentKit code execution sandbox.",mcp:"MCP tools"},catalog:{web_search:{label:"Web search",description:"Get real-time information with Volcengine Web Search."},parallel_web_search:{label:"Parallel web search",description:"Run multiple search queries in parallel and combine the results faster."},link_reader:{label:"Link reader",description:"Fetch and read the main content from a URL."},web_scraper:{label:"Web scraper",description:"Crawl webpages into structured data. Requires the Scraper service."},image_generate:{label:"Image generation",description:"Generate images from text with Doubao Seedream."},image_edit:{label:"Image editing",description:"Edit or transform images with Doubao SeedEdit."},video_generate:{label:"Video generation",description:"Generate videos from text or images with Doubao Seedance, including task status queries."},text_to_speech:{label:"Text to speech (TTS)",description:"Convert text to speech with Volcengine Speech."},run_code:{label:"Code execution",description:"Run code in a sandbox."},vesearch:{label:"VeSearch",description:"Search with Volcengine VeSearch. Requires a bot endpoint."},links:{console:"Console",documentation:"Documentation"},env:{modelAgentName:{comment:"Model name"},embeddingModelName:{comment:"Embedding model required by memory and knowledge bases"},vikingMemoryProject:{comment:"VikingDB memory project"},vikingMemoryRegion:{comment:"VikingDB memory region"},vikingMemoryType:{comment:"Memory types"},feishuAppId:{comment:"Feishu app ID"},feishuAppSecret:{comment:"Feishu app secret",placeholder:"Enter the app secret"},registrySpaceId:{comment:"AgentKit agent center",placeholder:"Select an agent center"},registryTopK:{comment:"Number of agents to retrieve"},registryRegion:{comment:"AgentKit agent center region"},registryEndpoint:{comment:"AgentKit agent center OpenAPI endpoint"},agentKitToolId:{comment:"Code execution sandbox ID"},agentKitToolRegion:{comment:"AgentKit Tools region"},openVikingUrl:{comment:"OpenViking service URL"},openVikingMemoryUserId:{comment:"Memory owner ID",help:"The user segment in viking://user//peers//memories. Use it to isolate agents, tenants, or business scenarios. The default is default."},openVikingMemoryPolicy:{comment:"Memory policy",help:"Controls memory extraction and isolation. Leave it blank to use the official default policy."},openVikingKnowledgeUserId:{comment:"Knowledge base owner ID",help:"Used in the default path viking://user//resources// when no resource directory is configured. The default is default."},openVikingTargetUri:{comment:"Knowledge base resource directory",help:"Leave blank to generate it from the KnowledgeBase index. When provided, this OpenViking resource directory takes precedence."},tlsServiceName:{comment:"TLS topic_id. Leave blank to create one automatically"}}},backends:{shortTerm:{local:{label:"In-memory",description:"Stored in the process without persistence. Best for development and debugging."},sqlite:{label:"SQLite file",description:"Persist data to a local .db file."},mysql:{label:"MySQL",description:"Persist data to MySQL."},postgresql:{label:"PostgreSQL",description:"Persist data to PostgreSQL."}},longTerm:{local:{label:"Local vector store",description:"In-process llama-index vector store."},opensearch:{label:"OpenSearch",description:"Vector retrieval with OpenSearch."},redis:{label:"Redis",description:"Vector retrieval with Redis."},viking:{label:"VikingDB Memory",description:"VikingDB memory with user profile support."},openviking:{label:"OpenViking Memory",description:"Long-term memory that stores and retrieves preferences, events, and entities per user."},mem0:{label:"Mem0",description:"Managed memory from Mem0."}},knowledge:{viking:{label:"VikingDB Knowledge",description:"VikingDB knowledge base."},opensearch:{label:"OpenSearch",description:"Vector retrieval with OpenSearch."},context_search:{label:"Context Search",description:"Volcengine Context Search without embedding configuration."},openviking:{label:"OpenViking Knowledge",description:"OpenViking resource-directory knowledge base without embedding configuration."}}},exporters:{apmplus:{label:"APMPlus",description:"Volcengine APMPlus application performance monitoring."},cozeloop:{label:"CozeLoop",description:"Distributed tracing with CozeLoop."},tls:{label:"TLS (Log Service)",description:"Export logs to Volcengine TLS."}},knowledge:{title:"Knowledge base",description:"Enable external knowledge retrieval (RAG) so the agent can answer from your data.",backend:"Knowledge base backend",vikingDatabase:"VikingDB knowledge base"},memory:{shortTerm:"Short-term memory",shortTermDescription:"Store context for one session",shortTermBackend:"Short-term memory backend",longTerm:"Long-term memory",longTermDescription:"Store context across sessions, usually with vector retrieval",longTermBackend:"Long-term memory backend",vikingDatabase:"VikingDB memory",autoSave:"Save sessions to long-term memory automatically",autoSaveDescription:"Write session content to long-term memory when a session ends."},mcp:{removeTool:"Remove MCP tool",namePlaceholder:"Name (optional)",urlPlaceholder:"MCP service URL",pathWarning:"This address does not end with /mcp. Confirm that it is the complete MCP service URL.",configuredPlaceholder:"Authentication is stored securely",tokenPlaceholder:"Bearer token (optional)",changedUrlWarning:"The MCP address changed. Choose how to handle the stored authentication.",reuseCredential:"Keep using it",replaceCredential:"Replace authentication",noAuth:"Use no authentication",reuseHint:"The stored authentication will be reused when you publish.",changeToReplace:"Replace instead",credentialConfigured:"Studio securely stores the authentication.",removeCredential:"Remove authentication",commandPlaceholder:"Command, such as npx",argsPlaceholder:"Arguments separated by spaces",stdioHint:"The stdio tool starts in the deployment environment. Make sure its command and dependencies are available.",addTool:"Add MCP tool"},resources:{unnamedAgentCenter:"Unnamed agent center",unnamedKnowledgeBase:"Unnamed knowledge base",unnamedMemory:"Unnamed memory store",loadError:"Failed to load",loadingAgentCenters:"Loading agent centers…",agentCentersLoaded:"{{count}} agent centers loaded",noAgentCenters:"No agent centers available",noMatchingAgentCenters:"No matching agent centers",searchAgentKitCenter:"Search AgentKit agent centers",searchNameOrId:"Search by name or ID",selectAgentCenter:"Select an agent center",selectAgentKitCenter:"Select an AgentKit agent center",selectedAgentCenter:"Selected agent center",agentKitCenter:"AgentKit agent center",refreshAgentCenters:"Refresh agent centers",knowledgeBaseList:"Knowledge base list",knowledgeBasePlaceholder:"Select a knowledge base",loadingKnowledgeBases:"Loading knowledge bases…",knowledgeBasesLoaded:"{{count}} knowledge bases loaded",noKnowledgeBases:"No knowledge bases available",noMatchingKnowledgeBases:"No matching knowledge bases",searchKnowledgeBase:"Search knowledge bases",selectKnowledgeBase:"Select a knowledge base",refreshKnowledgeBases:"Refresh knowledge bases",memoryList:"Memory store list",memoryPlaceholder:"Select a memory store",loadingMemories:"Loading memory stores…",memoriesLoaded:"{{count}} memory stores loaded",noMemories:"No memory stores available",noMatchingMemories:"No matching memory stores",searchMemory:"Search memory stores",selectMemory:"Select a memory store",refreshMemories:"Refresh memory stores"},env:{noAdditionalParameters:"This backend needs no additional runtime parameters.",invalidJson:"Enter valid JSON.",helpAriaLabel:"Help for {{label}}: {{help}}",openOpenViking:"Open OpenViking {{label}}",valuePlaceholder:"Enter a value",openVikingIndex:"OpenViking resource index",openVikingIndexHelp:"Leave blank to generate an index from the agent name, such as my_agent_kb. Without DATABASE_OPENVIKING_TARGET_URI, the default URI is viking://user/{knowledge base owner ID, or default}/resources/{resource index}/. When DATABASE_OPENVIKING_TARGET_URI is set, that complete URI is used instead.",openVikingIndexAriaLabel:"OpenViking resource index help: {{help}}"},deployment:{vpcRequired:"Enter a VPC ID when using VPC networking.",apiKeyRequired:"Select the API Key used by the model.",invalidEnvName:"Invalid environment variable name: {{key}}",requiredEnv:"{{name}}: enter this required environment variable",generatingConfiguration:"Generating deployment configuration",runtimeNameExists:"This Runtime name already exists. Choose another name and try again.",preparing:"Preparing deployment",complete:"Deployment complete",failed:"Deployment failed",updateAndPublish:"Update and publish",stages:{build:"Build image",deploy:"Deploy Runtime",publish:"Publish service",running:"Deploying"}},publish:{generating:"Generating publish configuration",validating:"Validating the agent structure and preparing the deployment snapshot…"}},Rse={presets:{support:{name:"Customer support assistant",description:"Answer questions around the clock using your knowledge base and conversation history, with consistent and considerate responses.",instruction:"You are a professional and patient customer support assistant. Always use a courteous, friendly tone. Base answers on the knowledge base whenever possible. When the available information is insufficient, say so clearly and ask for the details you need instead of inventing an answer. Keep responses concise and well structured, and provide steps when useful.",subagents:{}},analyst:{name:"Data analyst",description:"Run code for statistics and visualization with tracing enabled, so every analysis is observable and reproducible.",instruction:"You are a rigorous data analyst. Clarify the objective and definitions before cleaning, analyzing, and visualizing data with executable code. Explain assumptions and methods at each step, support conclusions with key evidence, and identify possible bias or limitations.",subagents:{}},translator:{name:"Translation assistant",description:"Translate between Chinese and English accurately and naturally while preserving tone and terminology.",instruction:"You are a professional translator fluent in Chinese and English. Preserve the meaning of the source while producing natural language for the target audience. Keep proper nouns and technical terminology accurate and reflect the original tone and style. Return only the translation unless the user asks for an explanation.",subagents:{}},coder:{name:"Coding assistant",description:"Write, debug, and refactor code, validate it by running tests, and produce clear, maintainable implementations.",instruction:"You are a senior software engineer. Write correct, clear, maintainable code that follows the conventions and best practices of the target language. When uncertain, run the code to validate the implementation, cover important edge cases, and add concise comments for complex logic.",subagents:{}},researcher:{name:"Researcher",description:"Search primary sources online and combine them with knowledge and long-term memory to produce evidence-backed findings.",instruction:"You are a rigorous researcher. Break each question into key subproblems, collect multiple credible primary sources through web search, and cross-check the evidence before drawing conclusions. Cite sources, state uncertainty, distinguish facts from inference, and avoid overgeneralization.",subagents:{}},"research-team":{name:"Multi-agent research team",description:"Coordinate a researcher, analyst, and writer to produce an end-to-end research report.",instruction:"You coordinate a research team. Break down the user's research task, delegate search, analysis, and writing to the appropriate subagents, synthesize their work, and deliver a clear, evidence-backed report.",subagents:{0:{name:"Researcher",description:"Collect primary sources and data related to the topic online.",instruction:"You are the team's researcher. Find multiple credible sources about the topic, organize the key facts, data, and original citations, and hand them to the analyst without adding unsupported conclusions."},1:{name:"Analyst",description:"Cross-check and synthesize the collected material.",instruction:"You are the team's analyst. Cross-check, compare, and synthesize the research material. Extract insights, identify contradictions and uncertainty, and produce a structured set of findings."},2:{name:"Writer",description:"Turn the analysis into a clear report with reliable citations.",instruction:"You are the team's writer. Turn the analyst's findings into a clear, well-written report with consistent citations, ensuring every conclusion can be traced to a source."}}}},tags:{tools:"Tools",memory:"Memory",knowledgeBase:"Knowledge base",tracing:"Tracing",subagents:"{{count}} subagents"},gallery:{title:"Create from a template",subtitle:"Choose a prebuilt agent template and customize it to fit your needs."},detail:{back:"Back to templates",name:"Name",systemPrompt:"System prompt",model:"Model",tools:"Tools",memory:"Memory",knowledgeBase:"Knowledge base",tracing:"Tracing",subagents:"Subagents ({{count}})",create:"Create from this template",shortTermMemory:"Short-term",longTermMemory:"Long-term"}},Ise={common:gse,yaml:bse,validation:yse,defaults:vse,helpers:xse,intelligentDeployment:wse,codePackage:Ose,buildCanvas:Sse,intelligent:kse,projectLibrary:Ese,modePicker:Cse,promptEditor:Tse,skills:Ase,workflow:_se,workbench:Nse,traditional:jse,template:Rse},aMe=Object.freeze(Object.defineProperty({__proto__:null,buildCanvas:Sse,codePackage:Ose,common:gse,default:Ise,defaults:vse,helpers:xse,intelligent:kse,intelligentDeployment:wse,modePicker:Cse,projectLibrary:Ese,promptEditor:Tse,skills:Ase,template:Rse,traditional:jse,validation:yse,workbench:Nse,workflow:_se,yaml:bse},Symbol.toStringTag,{value:"Module"})),Pse={backToList:"Back to scheduled tasks",cancel:"Cancel",cancelQueue:"Cancel queued run",cancelQueueFirst:"Cancel the queued run first",cancelling:"Cancelling…",closeDrawer:"Close panel",collapse:"Collapse",connectingRuntime:"Connecting to Runtime…",createScheduledTask:"Create scheduled task",createTask:"Create task",delete:"Delete",deleteTask:"Delete task",edit:"Edit",enable:"Enable",expand:"Expand",pause:"Pause",refresh:"Refresh",refreshHistory:"Refresh run history",rerun:"Run again",retry:"Retry",runNow:"Run now",saveChanges:"Save changes",saving:"Saving…",stop:"Stop run",stopRun:"Stop this run",stopRunFirst:"Stop the current run first",stopping:"Stopping…",viewDetails:"View details"},Dse={cancelDescription:"This Session will be cancelled. Future scheduled runs will remain enabled.",cancelTitle:"Stop this run?",deleteDescription:"“{{name}}” and its complete run history will be permanently deleted.",deleteTitle:"Delete scheduled task?"},Mse={configuration:"Task configuration",nextRun:"Next run",pageLabel:"Scheduled task details",region:"Region",runtime:"Runtime",status:"Task status"},Lse={createTitle:"Create scheduled task",description:"Each trigger creates a separate Session for the Runtime Agent.",editTitle:"Edit scheduled task"},$se={minutesSeconds:"{{minutes}} min {{seconds}} sec",seconds:"{{count}} sec"},Fse={cronExpression:"Cron expression",cronHelp:"Enter minute, hour, day of month, month, and day of week.",dailyTime:"Daily run time",enableAfterCreate:"Enable after creation",enableHelp:"The task will run at its next scheduled time after it is enabled.",name:"Task name",namePlaceholder:"For example: Generate a daily operations summary",noRuntime:"No Runtime available",prompt:"Execution prompt",promptPlaceholder:"Enter the text to send to the Agent on every run",runAt:"Run time",runtimeAgent:"Runtime Agent",runtimeHelp:"The task always uses the Runtime's currently active version.",runtimePlaceholder:"Select a Runtime Agent",schedule:"Schedule",scheduleType:"Schedule type",timezone:"Time zone",weekday:"Day of week"},Bse={all:"All"},Use={description:"Each run uses a separate Session. Results and errors are retained.",duration:"Duration: {{duration}}",emptyDescription:"Runs will appear here after the task is triggered or run manually.",emptyTitle:"No runs yet",errorDetails:"Error details",finalAnswer:"Final answer",loadFailed:"Unable to load run history",loadFailedDescription:"Check the Studio service and try again.",session:"Session",title:"Run history"},Qse={cancelRequested:"Stop request submitted.",created:"Task created.",deleted:"The task and its run history were deleted.",enabled:"Task enabled.",paused:"Task paused.",queued:"Task queued and will start within one minute.",requeued:"Task queued again and will start within one minute.",updated:"Task updated."},zse={filterLabel:"Filter scheduled tasks by status",listLabel:"Scheduled task list",loadFailed:"Unable to load scheduled tasks",loadFailedDescription:"Check the Studio service and try again.",title:"Cronjob"},Vse={cron:"Cron {{cron}}{{zone}}",daily:"Daily at {{time}}{{zone}}",once:"Once · {{date}}{{zone}}",weekly:"{{weekday}} at {{time}}{{zone}}"},Hse={daily:"Daily",once:"Once",weekly:"Weekly"},qse={cancelled:"Cancelled",enabled:"Enabled",failed:"Failed",notRun:"Not run yet",paused:"Paused",pending:"Preparing",queued:"Queued",retrying:"Retrying",running:"Running",skipped:"Skipped",success:"Succeeded"},Wse={cronFields:"A Cron expression must contain five fields, for example 0 9 * * *.",nameRequired:"Enter a task name.",promptRequired:"Enter the text to send to the Agent on each run.",runtimeAppMissing:"The Runtime Agent did not return an appName. Confirm that the Runtime is ready and compatible.",runtimeRequired:"Select an available Runtime Agent.",timeRequired:"Select a run time."},Kse={friday:"Friday",monday:"Monday",saturday:"Saturday",sunday:"Sunday",thursday:"Thursday",tuesday:"Tuesday",wednesday:"Wednesday"},oMe={actions:Pse,confirm:Dse,detail:Mse,drawer:Lse,duration:$se,fields:Fse,filters:Bse,history:Use,notices:Qse,page:zse,schedule:Vse,scheduleTypes:Hse,status:qse,validation:Wse,weekdays:Kse},lMe=Object.freeze(Object.defineProperty({__proto__:null,actions:Pse,confirm:Dse,default:oMe,detail:Mse,drawer:Lse,duration:$se,fields:Fse,filters:Bse,history:Use,notices:Qse,page:zse,schedule:Vse,scheduleTypes:Hse,status:qse,validation:Wse,weekdays:Kse},Symbol.toStringTag,{value:"Module"})),Gse="Report an issue",Xse="Description",Yse="Common issues",Zse="Cancel",Jse="Done",eae="Submit feedback",tae="Submitting…",nae={title:"Feedback submitted. Thank you.",description:"The AgentKit team will review your report as soon as possible."},iae={close:"Close issue report",intro:"Select the issues you encountered and add any useful details.",privacy:"Your conversation data will be shared with the AgentKit team. Please protect sensitive information.",descriptionPlaceholder:"Describe what happened (optional)",issues:{slow:"Slow execution",crash:"Runtime crash",incorrect:"Inaccurate result",tool_error:"Tool call failed",other:"Other issue"}},rae={description:"Tell us about a problem you encountered while using AgentKit Studio.",module:"Area",modules:{conversation:"Conversation",agents:"Agents",applications:"Automations",search:"Search",other:"Other"},commonIssuesMultiple:"Common issues (select all that apply)",issueTypes:"Issue types",issues:{page_slow:"Page loads slowly",feature_unavailable:"Feature unavailable",display_error:"Display issue",no_response:"Action has no response",other:"Other issue"},descriptionPlaceholder:"Describe the page, action, and what happened",quickAdd:"Quick add",suggestionsLabel:"Suggested descriptions",suggestions:{noResponse:"Nothing happens after I click",loading:"The page remains in a loading state",incomplete:"Some content is missing or clipped",error:"An error appears after the action"},privacy:"Your data will be shared with the AgentKit team. Please protect sensitive information."},cMe={title:Gse,descriptionLabel:Xse,commonIssues:Yse,cancel:Zse,done:Jse,submit:eae,submitting:tae,success:nae,dialog:iae,page:rae},uMe=Object.freeze(Object.defineProperty({__proto__:null,cancel:Zse,commonIssues:Yse,default:cMe,descriptionLabel:Xse,dialog:iae,done:Jse,page:rae,submit:eae,submitting:tae,success:nae,title:Gse},Symbol.toStringTag,{value:"Module"})),sae={back:"Back",close:"Close"},aae={title:"Optimize migrated project",closeAria:"Close optimization dialog"},oae={title:"Migrated projects",description:"Manage migrated source versions or continue optimizing any version.",libraryTitle:"Projects and versions",libraryDescription:"View, download, deploy, or compare source versions, or continue optimizing any version.",emptyTitle:"No migrated projects yet",emptyDescription:"Migrated source code will be saved here automatically."},lae={langchain:"LangChain",langgraph:"LangGraph",adk:"Google ADK",strands:"Strands",agentcore:"AgentCore",dify:"Dify",any:"Any (universal migration)"},cae={awaitingUpload:"Awaiting upload",analyzing:"Analyzing",needsInput:"Needs input",analysisReady:"Awaiting confirmation",migrating:"Migrating",validating:"Validating",packaging:"Packaging",succeeded:"Completed",succeededWithWarnings:"Completed with notices",partial:"Partially completed",failed:"Failed",cancelled:"Stopped",expired:"Expired"},uae={partialReady:"Migration output is ready, but delivery is incomplete. Review the migration notices.",readyWithWarnings:"Migration output is ready. Review the migration notices.",ready:"Migration output is ready."},dae={passed:"Output verification passed",failed:"Output verification failed",degraded:"Output verification incomplete"},fae={session:"Create migration environment",upload:"Upload project",analysis:"Analyze project"},hae={agentNameRequired:"Enter an Agent name",agentNameInvalid:"Agent names must be 1–63 characters, contain only lowercase letters, numbers, and hyphens, and start and end with a letter or number"},pae={seconds:"{{seconds}} sec",minutesSeconds:"{{minutes}} min {{seconds}} sec"},mae={savedUnaffected:"Saved projects are unaffected",savingUnaffected:"Source is being saved and will be unaffected once complete",activeDetail:"Task history and temporary output will become unavailable after expiration",oneHour:"Temporary migration environment is retained for 1 hour",ended:"Temporary migration environment has ended",savedAvailable:"Saved projects remain available to view, download, deploy, or optimize",unavailable:"Task history and temporary output are no longer available",countdown:"Temporary migration environment ends in {{minutes}} min {{seconds}} sec",expiredSavedMessage:"The temporary migration environment has ended. Saved projects are unaffected.",expiredMessage:"The temporary migration environment has ended. Task history and temporary output are no longer available."},gae={recommended:"Recommended migration method",scope:"Migration scope",excluded:"Out of scope",viewEvidence:"View analysis evidence",viewAssumptions:"View key assumptions",viewSourceEvidence:"View source evidence"},bae={ariaLabel:"Codex activity",title:"Codex activity",startingAnalysis:"Codex is starting the analysis…",startingMigration:"Codex is starting the migration…",loadError:"Codex activity is temporarily unavailable. The current task is unaffected."},yae={title:"Migration output",fileTooLarge:"This file exceeds 2 MiB. Download the complete output to view it.",unsupportedPreview:"This file cannot be previewed here. Download the complete output to view it.",filesAria:"Migration output files",searchAria:"Search output files",searchPlaceholder:"Search files",limit:"Showing the first {{count}} items. Search for a specific file.",noSelection:"No file selected",noPreview:"No files available to preview.",loadingFile:"Loading output file…",startupFile:"Startup file",fileCountLabel:"Files",saved:"Source has been saved. You can view, download, deploy, or optimize it.",saving:"Output is ready and the source version is being saved.",deployReady:"Output is available to preview, download, and deploy. Waiting for source save status.",deployUnavailable:"Output is available to preview and download, but its current delivery status does not support deployment.",viewProjects:"View migrated projects",downloading:"Downloading…",downloadZip:"Download ZIP",deployTitle:"Deploy migration output",deployUnavailableTitle:"Current delivery status does not support deployment",deployRuntime:"Deploy to Runtime",fileCount:"{{count}} files",startup:"Startup file {{module}}",loading:"Loading migration output…"},vae={retiring:"Retiring soon",currentDefault:"Current default model",loadError:"Failed to load models",label:"Model",placeholder:"Select a model"},xae={zipOnly:"Select a local project in .zip format.",invalidName:"The ZIP file name is invalid. Rename the file and select it again.",tooLarge:"The project ZIP cannot exceed {{size}}.",empty:"The project ZIP cannot be empty.",removeAria:"Remove project ZIP",reselectPrompt:"Select the project ZIP again",selectPrompt:"Select or drop a local project ZIP",reselect:"Select again",selectZip:"Select ZIP",continue:"Continue upload",start:"Start migration",inputAria:"Select a local project ZIP",retention:"The temporary migration environment is retained for 1 hour after creation. Successfully saved source versions are unaffected."},wae={requiredPlaceholder:"Enter {{key}}",optionalPlaceholder:"Optional: {{key}}",notReady:"Migration output is not ready yet.",back:"Back to migration results"},Oae={backToAddAgent:"Back to Add Agent",title:"Migrate existing project",newMigration:"New migration",recent:"Recent migrations",sessionsAria:"Migration sessions",loadingSessions:"Loading migration sessions…",noSessions:"No migration sessions",heading:"Migrate an existing Agent project",intro:"Upload a local project ZIP. Codex will first perform a read-only analysis, then ask you to confirm the migration method."},Sae={stop:"Stop migration",stopping:"Stopping…",reload:"Reload",refreshStatus:"Refresh status"},kae={unavailable:"Migration is currently unavailable",defaultReason:"Dev Sandbox is currently unavailable. Contact your administrator to check the configuration."},Eae={requestZip:"Provide a local project ZIP. After upload, I’ll identify the framework, entry point, and migration boundaries, then ask you to confirm the migration method before making changes.",zipHint:"Only local ZIP files are supported, up to {{size}}. The migration environment is retained for 1 hour after creation.",creatingSandbox:"Creating Dev Sandbox",initializing:"Initializing the migration workspace and checking AgentKit CLI, Codex, and migration capabilities. The project will upload automatically when the environment is ready.",elapsed:"Elapsed: {{duration}}",uploadThenAnalyze:"Read-only analysis will start automatically after the ZIP upload completes.",analyzing:"Codex is identifying the framework, entry point, and migration boundaries. No migration changes are being made.",migrationLocked:"Attachments and migration settings cannot be changed while migration is running. Wait for the task to finish or stop it.",analysisPaused:"Read-only analysis is paused. Answer only the questions below. After submission, analysis will continue in the same environment without starting the migration.",analysisComplete:"Read-only analysis is complete. Review the recommendation and confirm the final migration method.",awaitingUpload:"The migration environment is ready. Select the local ZIP again to continue uploading.",expiredTitle:"Migration environment expired",expiredDescription:"Migration content and output can no longer be previewed, downloaded, or deployed. If the Runtime deployment completed, return to the Agents page to continue using it.",unsupportedTitle:"This ZIP cannot be migrated yet",unsupportedHint:"Update the project as instructed, then create a new migration and upload it again.",failedTitle:"Migration incomplete",cancelled:"This migration was stopped. Create a new migration and upload the project again."},Cae={ariaLabel:"Provide project analysis details",title:"Additional information needed for analysis",description:"The attachment stays locked; submitting continues read-only analysis only",submitting:"Continuing analysis…",submit:"Submit and continue analysis"},Tae={ariaLabel:"Confirm migration method",title:"Confirm migration method",description:"Migration starts only after confirmation",framework:"Migration method",frameworkPlaceholder:"Select a migration method",agentName:"Agent name",entry:"Project entry point",entryPlaceholder:"Select a project entry point",entryExample:"For example, agent.py:agent",consent:"By selecting “Confirm and start migration,” you confirm the migration scope, exclusions, and key assumptions above.",starting:"Starting migration…",start:"Confirm and start migration"},Aae={closeAria:"Dismiss error",loadFailed:"Could not load migration data. Try again.",refreshFailed:"Could not refresh the migration status. Try again."},_ae={title:"Stop the current migration?",description:"Stopping ends the current analysis or migration process. Completed steps will not continue."},dMe={common:sae,optimization:aae,projects:oae,framework:lae,state:cae,task:uae,verification:dae,transfer:fae,validation:hae,duration:pae,expiry:mae,analysis:gae,activity:bae,artifact:yae,model:vae,upload:xae,deployment:wae,workspace:Oae,actions:Sae,capability:kae,conversation:Eae,questions:Cae,confirmation:Tae,errors:Aae,stopDialog:_ae},fMe=Object.freeze(Object.defineProperty({__proto__:null,actions:Sae,activity:bae,analysis:gae,artifact:yae,capability:kae,common:sae,confirmation:Tae,conversation:Eae,default:dMe,deployment:wae,duration:pae,errors:Aae,expiry:mae,framework:lae,model:vae,optimization:aae,projects:oae,questions:Cae,state:cae,stopDialog:_ae,task:uae,transfer:fae,upload:xae,validation:hae,verification:dae,workspace:Oae},Symbol.toStringTag,{value:"Module"})),Nae={loading:"Loading…",searchLabel:"Search {{label}}",searchPlaceholder:"Search {{label}}",retry:"Retry",noMatches:"No matches",noOptions:"No options available",selection:"{{label}}: {{value}}"},jae={badge:"All new",view:"See what's new",title:"What's new",defaultNotes:{multiRegion:"Multi-region agents: load Beijing and Shanghai Runtimes in parallel, with more available as you scroll.",switchAgent:"Switch in conversation: choose an agent beside the composer and start a new conversation immediately.",visualCanvas:"Visual execution canvas: inspect multi-agent structures on a horizontal canvas with fullscreen support."}},Rae={label:"New conversation workspace",agent:"Agent",skill:"Skill customization",video:"Video creation"},Iae={select:"Select conversation mode",agent:{label:"Agent",description:"Chat with the selected Agent"},builtin:{label:"Built-in Agent",description:"Use an Agent provided by the platform"},codex:{label:"Codex Agent",description:"Run tasks in a sandbox"},deepseekHarness:{label:"DeepSeek Harness",description:"Open the DeepSeek Harness workspace"},arkClaw:"ArkClaw",hermes:"Hermes Agent",checking:"Checking configuration",notConfigured:"Not configured by an administrator",unavailable:"Unavailable"},Pae={select:"Select Agent",typesLabel:"Agent types",listLabel:"{{type}} list",types:{agent:"Agent",general:"General Agent",codex:"Codex Agent",deepseekHarness:"DeepSeek Harness",openclaw:"OpenClaw Agent",hermes:"Hermes Agent"},loading:"Loading Agents",reload:"Reload",empty:"No {{type}} yet",emptyLocal:"No local Agents yet",emptyGeneral:"No General Agents yet",createHint:"Create one from the Agents page",localHint:"Check the directory where Studio was started",waking:"Waking up",opening:"Opening",connecting:"Connecting",loadingMore:"Loading",loadMore:"Load more",runtimeTimeout:"Loading Agents timed out after 15 seconds. Check the network or Runtime service and retry.",loadGeneral:"Load General Agents",loadType:"Load {{type}}",connectGeneral:"Connect to General Agent",openLocal:"Open local Agent",openType:"Open {{type}}",wakingHint:"Waking the agent. This may take some time."},Dae={spaceAria:"Skill spaces",configuration:"Skill customization settings",actions:{create:"Generate Skill",optimize:"Optimize Skill"},selectAction:"Select a Skill customization action",actionList:"Skill customization actions",style:"Style",selectStyle:"Select style",model:"Model",selectModel:"Select model",styles:{concise:"Concise and practical",strict:"Rigorous and reliable",tutorial:"Tutorial-friendly",automation:"Automation-first"},modelLoadFailed:"Failed to load model configuration",spaceLoadFailed:"Failed to load Skill Spaces",skillLoadFailed:"Failed to load Skills",unnamedSpace:"Unnamed Skill Space",space:"Skill Space",select:"Select Skill",selectAria:"Select Skill: {{skill}}",loadingSpaces:"Loading Skill Spaces",reload:"Reload",emptySpaces:"No Skill Spaces yet",skillList:"{{space}} Skill list",loadingSkills:"Loading Skills",emptySkills:"No Skills yet"},Mae={modes:{auto:"Auto detect",text_to_video:"Text to video",reference_to_video:"Reference to video",video_editing:"Video editing",video_extension:"Video extension",first_last_frame:"First and last frames"},taskNames:{auto:"Video generation",text_to_video:"Text-to-video",reference_to_video:"Reference-to-video",video_editing:"Video editing",video_extension:"Video extension",first_last_frame:"First-and-last-frame generation"},controls:{label:"Video creation settings",aspectRatio:"Aspect ratio",selectAspectRatio:"Select aspect ratio",resolution:"Resolution",selectResolution:"Select resolution",duration:"Duration",durationShort:"{{count}}s",durationAria:"Video duration: {{count}} seconds",lastFrame:"Last frame",lastFrameHelper:"Add the video's ending frame",assistImage:"Supporting image",referenceImage:"Reference image",assistImageHelper:"Add visual guidance",imageHelper:"Supports common image formats",referenceVideo:"Reference video",videoHelper:"Supports common video formats",optional:"Optional",replace:"Replace",add:"Add",upload:"Upload {{label}}",replaceFile:"Replace {{label}}: {{name}}",removeFile:"Remove {{label}} {{name}}",storageUnavailable:"Persistent storage is not configured",loadingEnhancer:"Loading prompt enhancement model",enhancerHint:"Uses {{model}} for intent recognition and prompt enhancement",enhancerUnavailable:"Prompt enhancement model unavailable"},task:{title:"Video generation task",closeAria:"Close video generation task dialog",progressAria:"Video generation progress",optimizedPrompt:"Optimized prompt",processingAria:"{{task}} progress",waitingAria:"{{status}}, elapsed {{elapsed}}",elapsed:"Elapsed {{elapsed}}",previewAria:"Generated video preview",close:"Close",download:"Download video",retryOptimization:"Retry prompt optimization",retryGeneration:"Retry video generation",providerQueued:"Waiting for model scheduling",providerRunning:"Model generating",providerSubmitting:"Submitting task",queuedHint:"The task was submitted. Its status will update automatically when processing begins.",runningHint:"This may take several minutes. The video preview will appear here when complete.",backgroundHint:"You can close this dialog. The task will continue in the background.",successHint:"Your video is ready to preview or download.",activationHint:"Activate the service in the model console, then retry generation.",retryHint:"Fix the issue and retry the current step.",steps:{optimizationFailed:"Prompt optimization failed",optimizationDone:"Prompt optimization complete",optimizationActive:"Optimizing prompt",generationDone:"{{task}} complete",generationFailed:"{{task}} failed",generationQueued:"{{task}} queued",generationRunning:"Generating {{task}}",generationActive:"{{task}} in progress",generationPending:"Waiting for video generation",generationComplete:"Video generation complete"},elapsedHours:"{{hours}}h {{minutes}}m",elapsedMinutes:"{{minutes}}m {{seconds}}s",elapsedSeconds:"{{seconds}}s"}},Lae={compactSelect:Nae,featureNotice:jae,workspace:Rae,mode:Iae,agentPicker:Pae,skill:Dae,video:Mae},hMe=Object.freeze(Object.defineProperty({__proto__:null,agentPicker:Pae,compactSelect:Nae,default:Lae,featureNotice:jae,mode:Iae,skill:Dae,video:Mae,workspace:Rae},Symbol.toStringTag,{value:"Module"})),$ae={cancel:"Cancel",close:"Close",retry:"Retry",tryAgain:"Try again",closeDialog:"Close {{title}}",agentFallback:"{{agent}} Agent",unknownSource:"Unknown source"},Fae={terminalTitle:"Terminal",browserTitle:"Sandbox browser",terminalSubtitle:"Connect to the interactive terminal for the current AgentKit Session",browserSubtitle:"View and control the browser in the current AgentKit Session",connecting:"Connecting…",connected:"Connected",notConnected:"Not connected",opening:"Opening {{title}}",connectingSession:"Connecting the tool to the current AgentKit Session.",openFailed:"Failed to open {{title}}"},Bae={title:"Resume Codex conversation",subtitle:"Select a recently updated Thread from the current Sandbox Session",loading:"Loading conversation history",loadFailed:"Failed to load conversation history",empty:"No conversations to resume"},Uae={title:"Codex permissions",subtitle:"Settings are saved to the current Sandbox Session and applied to all of its Threads",sandboxMode:"Sandbox mode",approvalPolicy:"Approval policy",approvalMethod:"Approval method",networkAccess:"Allow network access",networkAccessHelp:"Control external network access in workspace-write and read-only modes.",fullAccessWarning:"Full access disables file system and network isolation. Use it only for trusted tasks.",save:"Save permissions",sandboxChoices:{readOnly:{label:"Read only",detail:"Allow reading files without writing to the workspace."},workspaceWrite:{label:"Workspace write",detail:"Allow reading and modifying files in the current workspace."},fullAccess:{label:"Full access",detail:"Disable sandbox isolation for explicitly trusted tasks."}},approvalChoices:{untrusted:{label:"Untrusted commands only",detail:"Request approval only for operations Codex considers untrusted."},onRequest:{label:"On request",detail:"Allow Codex to ask you to approve commands or file changes when needed."},never:{label:"Never ask",detail:"Codex will not pause to request manual approval."}},reviewerChoices:{user:{label:"Ask me",detail:"Approval requests appear in Studio for you to decide."},autoReview:{label:"Automatic review",detail:"Use the Codex automatic review flow to handle approval requests."}}},Qae={title:"Workspace",subtitle:"Choose the directory where the current Codex Thread runs commands and modifies files",absolutePath:"Absolute path",browse:"Browse",parent:"Parent directory",empty:"This directory has no subdirectories",locked:"The conversation has started and the workspace is locked. Start a new Sandbox Session to choose another workspace.",useDirectory:"Use this directory"},zae={fileTitle:"Allow file changes?",commandTitle:"Allow command execution?",subtitle:"Codex is waiting for your decision",workingDirectory:"Working directory",decline:"Decline",acceptOnce:"Allow once",acceptSession:"Allow for session"},Vae={availableSkills:"Available Skills",selectModel:"Select model",commands:"Codex shortcuts",currentModel:"Current: {{model}}",loadingSkills:"Discovering Skills in the current workspace…",loadingModels:"Loading models…",noSkillMatches:"No matching Skills in the current workspace",noModelMatches:"No matching models. You can also enter a model ID directly",noCommandMatches:"No matching shortcuts",skillFallback:"Load and run this Skill",add:"Add",uploadImage:"Upload image",uploadDocument:"Upload document or PDF",uploadVideo:"Upload video",openTerminal:"Open terminal",viewBrowser:"View browser",permissions:"Codex permissions",workspaceLocked:"The conversation has started and the workspace is locked",selectWorkspace:"Select workspace",workspace:"Codex workspace",endpointCopied:"Endpoint copied",copyEndpoint:"Copy Sandbox Endpoint",continuePlaceholder:"Describe what you want to implement or adjust next",messagePlaceholder:"Message the AgentKit Sandbox. Type / for commands or $ to invoke a Skill…",stop:"Stop generating",send:"Send"},Hae={defaultName:"My Agent",namedDefault:"My {{agent}}",creatingTitle:"Creating {{agent}} Agent",failedTitle:"Launch failed",createTitle:"Create {{agent}} Agent",fallbackError:"AgentKit Sandbox initialization failed. Please try again later.",creatingDescription:"Creating the {{agent}} Agent and waiting for it to become ready. This usually takes about 30 seconds.",name:"Agent name",storageSize:"Storage size",storageHelp:"Data will be persisted. Choose {{min}}–{{max}} GiB.",persistent:"Persistent",persistenceUnsupported:"Snapshot persistence is not supported in the current environment",persistentHelp:"Keep Agent data so you can continue later.",temporaryHelp:"Agent data will be cleared after 8 hours",cancelCreation:"Cancel creation",confirm:"Create",retry:"Try again"},qae={activeAria:"Codex Agent session is active",openAria:"Open a Codex Agent session",active:"Codex Agent session",entry:"Spark an idea",exit:"Exit current Agent",expired:"Expired",remainingHours:"{{hours}}h {{minutes}}m remaining",remainingMinutes:"{{minutes}}m remaining",expiryWarning:"The remote development environment is kept for up to 8 hours and expires at {{expiry}} ({{remaining}}). Conversations and files will then be deleted.",usingAgent:"You are currently using the {{agent}} Agent",activityAria:"Sandbox activity log",activity:"Activity log",tokenUsageAria:"Codex token usage",tokens:"{{label}}: {{value}} tokens",tokenLabels:{total:"Total",input:"Input",cachedInput:"Cached input",output:"Output",reasoningOutput:"Reasoning output"}},Wae={back:"Back to Agents",subtitle:"{{agent}} agent details",type:"Agent type",status:"Status",createdBy:"Created by",snapshotStatus:"Snapshot status",toolType:"Tool type",createdAt:"Created at",snapshotReason:"Snapshot reason",expiresAt:"Expires at",snapshotId:"Snapshot ID",sessionId:"Session ID",sourceSessionId:"Source Session ID",delete:"Delete Agent",waking:"Waking…",opening:"Opening…",wake:"Wake Agent",open:"Open Agent",deleteTitle:"Delete Agent?",deleteDescription:"Delete “{{name}}” and its saved data? This cannot be undone.",deleting:"Deleting…",confirmDelete:"Delete",sleepingHint:"This agent is asleep. Waking it before opening may take some time.",wakingHint:"Waking the agent. This may take some time.",agentId:"Agent ID"},Kae={back:"Back to Agents",createdBy:"Created by {{creator}}",ariaLabel:"Agent workspace",main:"Main",terminal:"Terminal",mainTitle:"{{agent}} main interface",openingTerminal:"Opening terminal…",terminalTitle:"{{agent}} terminal"},Gae={prompt:`Use the AgentKit Studio Plugin to hand off the current conversation, project, and task to the cloud. Execute this directly; do not ask me to open a terminal manually. Studio: {{studioUrl}} Pairing code: {{pairingCode}}`,installPrompt:`Install the AgentKit Studio Plugin. Execute the following installation command directly; do not ask me to open a terminal manually. -Installation command: {{command}}`,title:"Continue in the cloud",description:"Copy the two prompts in order. Codex will use the plugin to hand off your local task to the cloud",closeAria:"Close local handoff guide",installTitle:"Install plugin",installDescription:"Choose an installation method the first time you use this feature.",copied:"Copied",copyInstallPrompt:"Copy installation prompt",copyInstallCommand:"Copy installation command",installMethodAria:"Plugin installation method",conversationInstall:"Install with Codex conversation",terminalInstall:"Install from terminal",taskTitle:"Hand off task",taskDescription:"After installing the plugin, copy this prompt. Codex will migrate the current project and continue the task.",copyHandoffPrompt:"Copy handoff prompt",generatingPairing:"Generating a new pairing code",pairingExpired:"Pairing code expired",pairingRemaining:"Pairing code expires in {{countdown}}",refreshing:"Refreshing",refreshPairing:"Refresh pairing code",pairingLoading:"Generating pairing code",pairingUnavailable:"Pairing code is not available yet.",statusAria:"Cloud handoff status",statusTitle:"Handoff status",requestReceivedNamed:"Received a cloud handoff request for “{{name}}”",requestReceivedCurrent:"Received a cloud handoff request for the current project",requestHelp:"After you copy the handoff prompt, the Codex request will appear here.",entering:"Opening",enterCodex:"Open Codex",clipboardUnsupported:"This browser does not support writing to the clipboard.",steps:{request:"Wait for local request",session:"Create cloud Session",restore:"Restore project",continue:"Send continuation task"},status:{issued:"Waiting for request",creating:"Creating Session",sessionCreated:"Migrating project",continuing:"Starting cloud task",running:"Running in the cloud",completed:"Handoff complete",failed:"Handoff failed"}},Lae={model:{description:"Show or switch the current conversation model",keywords:"model switch"},models:{description:"List models available from app-server",keywords:"model list"},skill:{description:"Browse and invoke a Skill available in the current workspace",keywords:"skill workflow"},skills:{description:"Browse and invoke Skills available in the current workspace",keywords:"skills workflow list"},new:{description:"Start a new conversation",keywords:"new conversation"},resume:{description:"Open conversation history or resume a specific Thread",keywords:"history resume session"},fork:{description:"Fork a new conversation from the current context",keywords:"fork branch"},compact:{description:"Compact the current conversation context",keywords:"compact context"},archive:{description:"Archive the current conversation and start a new one",keywords:"archive close"},status:{description:"Show connection, Thread, model, and token status",keywords:"status connection token"},clear:{description:"Clear the current view and start a new conversation",keywords:"clear reset"},help:{description:"Show Sandbox shortcuts",keywords:"help commands"},currentModel:"Current model",availableModel:"Available model",workspace:"Workspace",notSet:"Not set",modelLabel:"Model",statusLabel:"Status",running:"Running",idle:"Idle",totalTokens:"Total tokens",contextWindow:"Context window",imageFallback:"Image",unknown:"Unknown shortcut: {{command}}. Type /help to see available commands.",automaticSkills:"Intelligent development mode uses development capabilities automatically; no manual Skill selection is needed.",activity:{new:"Started a new Codex conversation",resumed:"Resumed Codex conversation",deleted:"Deleted Codex conversation history",modelChanged:"Switched Codex model",availableModels:"Available Codex models",noModels:"No models are currently available",forked:"Forked Codex conversation",compacting:"Started compacting the current Codex conversation",archived:"Archived Codex conversation",status:"Current Codex status",help:"Codex shortcuts supported by Sandbox"}},$ae={common:Eae,tool:Cae,threads:Tae,permissions:Aae,workspace:_ae,approval:Nae,composer:jae,launch:Rae,session:Iae,agentDetails:Pae,agentWorkspace:Dae,handoff:Mae,commands:Lae},YDe=Object.freeze(Object.defineProperty({__proto__:null,agentDetails:Pae,agentWorkspace:Dae,approval:Nae,commands:Lae,common:Eae,composer:jae,default:$ae,handoff:Mae,launch:Rae,permissions:Aae,session:Iae,threads:Tae,tool:Cae,workspace:_ae},Symbol.toStringTag,{value:"Module"})),Fae={retry:"Try again",signInToContinue:"Sign in to continue",signInWith:"Sign in with {{provider}}",enterUsername:"Enter a username to get started",usernamePlaceholder:"Username (letters and numbers, up to 16 characters)",enter:"Continue",usernameInvalid:"Use letters and numbers only, up to 16 characters.",identityProvider:{volcengine:"Volcengine Identity",byteplus:"BytePlus Identity"},powered:{volcengine:"Volcengine AgentKit provides enterprise-grade Agent solutions",byteplus:"BytePlus AgentKit provides enterprise-grade Agent solutions"},legalPrefix:"By continuing, you acknowledge that you have read and agree to the AgentKit",terms:"Product and Service Terms",copyright:"© {{year}} VeADK. All rights reserved."},Bae={title:"Your session has expired",description:"Your current edits are preserved. The previous action will continue after you sign in again.",waiting:"Waiting for sign-in…",signInAgain:"Sign in again"},Uae={breadcrumbs:"Breadcrumbs",selectAgent:"Select Agent",switchAgent:"Switch Agent"},Qae={cancel:"Cancel",close:"Close confirmation dialog"},ZDe={login:Fae,authExpired:Bae,navbar:Uae,confirm:Qae},JDe=Object.freeze(Object.defineProperty({__proto__:null,authExpired:Bae,confirm:Qae,default:ZDe,login:Fae,navbar:Uae},Symbol.toStringTag,{value:"Module"})),zae={defaultUser:"User",shortcuts:"Quick access",tryCli:"Try AgentKit CLI",developerResources:"Developer resources",systemInfo:"System information",language:"Language",issueFeedback:"Report an issue",logout:"Sign out",roles:{admin:"Administrator",developer:"Developer",user:"User"}},Vae={home:"Back to home",expand:"Expand sidebar",collapse:"Collapse sidebar",label:"Main navigation",newChat:"New chat",agents:"Agents",workspaces:"Workspaces",library:"Library",cronjobs:"Cronjob",automations:"Automations"},Hae={title:"Chat history",newConversation:"New conversation",create:"New chat",loading:"Loading chat history…",empty:"No conversations yet",current:"Current",manage:"Manage conversation: {{title}}",more:"More",delete:"Delete",loadingMore:"Loading…",loadMore:"Load more",evaluatingTitle:"Running automatic evaluation",evaluating:"Evaluating",generating:"Generating"},eMe={account:zae,navigation:Vae,history:Hae},tMe=Object.freeze(Object.defineProperty({__proto__:null,account:zae,default:eMe,history:Hae,navigation:Vae},Symbol.toStringTag,{value:"Module"})),qae={placeholder:"Select an option",collapseOptions:"Collapse model options",expandOptions:"Expand model options",noOptions:"No options available",noMatches:"No matches. You can use the current model ID directly."},Wae={unsupportedActivity:"Unsupported Skill conversation activity",ariaLabel:"Skill generation conversation"},Gae={code:"Error code: {{code}}",type:"Error type: {{type}}",representation:"Exception representation: {{value}}",rawResponse:`Raw server response: -{{value}}`,original:"Original error: {{message}}",details:"Details"},Kae={ariaLabel:"Skill file tree",viewSource:"View source",viewPreview:"View preview",download:"Download",binaryFile:"Binary file",bytes:"{{value}} bytes",binaryDescription:"The current API returns file metadata only. Download the original file separately.",metadata:"Skill metadata",noFiles:"No files"},Xae={close:"Close",name:"Name",region:"Region",optionalDescription:"Description (optional)",cancel:"Cancel",create:"Create",creating:"Creating…",save:"Save",saving:"Saving…",upload:"Upload",uploading:"Uploading…",createSpaceTitle:"New Skill Space",editSpaceTitle:"Edit Skill Space",uploadTitle:"Upload to {{name}}",createSpaceFailed:"Failed to create the Skill Space",updateSpaceFailed:"Failed to update the Skill Space",archiveValidationFailed:"Skill ZIP validation failed",uploadFailed:"Failed to upload the Skill",dropzone:"Drop a Skill ZIP here",chooseLocalFile:"or click to choose a local file",archiveHelp:"The ZIP root must contain SKILL.md, or a single wrapping directory. Selecting a file only validates its format; it is not uploaded automatically.",validating:"Checking file format…",validationPassed:"Format check passed: {{name}}, {{count}} file(s)"},Yae={styles:{concise:"Concise and practical",strict:"Rigorous and robust",tutorial:"Tutorial-friendly",automation:"Automation-first",custom:"Custom",customFallback:"Custom style"},stages:{preparing:"Preparing Dev Sandbox",ready:"Skill generated and format validation passed",failed:"Generation failed",cancelled:"Stopped",validating:"Validating Skill format",packaging:"Organizing files",generating:"Generating Skill",repairingAgain:"Repairing again",autoRepairing:"Auto-repairing ({{attempt}}/{{max}})"},validation:{fallback:"Skill format validation failed",repairInstruction:"Fix only the Skill format errors listed below. Do not change the original purpose or scope.",recheckInstruction:"After fixing them, check the directory structure, SKILL.md frontmatter, and all text files again.",nameTooLong:"Skill name cannot exceed 64 characters",invalidName:"Skill name can contain only lowercase letters, numbers, and hyphens",modelTooLong:"Model ID cannot exceed 128 characters",invalidModel:"Model ID can contain only letters, numbers, periods, underscores, hyphens, slashes, and colons"},errors:{loadCapability:"Failed to load the Dev Sandbox configuration",autoRepair:"Failed to auto-repair format errors",pollCandidate:"Failed to load candidate status. Retrying.",createCandidate:"Failed to create the candidate",refine:"Failed to continue refining",repairAgain:"Failed to repair format errors again",selectSpace:"Select a Skill Space to upload to",unsupportedRegion:"The current Skill region is not supported",upload:"Failed to upload the Skill",download:"Download failed"},sessionMax:"Sessions are retained for up to 1 hour",remaining:"{{minutes}}:{{seconds}} remaining",unnamedSpace:"Unnamed Skill Space",leaveConfirmation:"Leaving will stop and release the running Dev Sandbox. Leave anyway?",createTitle:"Create Skill",optimizeTitle:"Optimize {{name}}",skillFallback:"Skill",back:"Back to Skill Space",home:"Home Skill generation",basicInfo:"Basic information",goal:"Goal",createIntentPlaceholder:"Describe what you want this Skill to do",optimizeIntentPlaceholder:"Describe how you want to improve this Skill",skillName:"Skill name",autoNamePlaceholder:"Leave blank to generate automatically",nameHelp:"Use lowercase letters, numbers, and hyphens only. Leave blank to generate automatically.",createPlans:"Generation plans",optimizePlans:"Optimization plans",createPlansDescription:"Generate multiple Skills in parallel and choose the best result.",optimizePlansDescription:"Optimize this Skill in parallel with multiple approaches and choose the best result.",plan:"Plan {{count}}",remove:"Remove",model:"Model",modelPlaceholder:"Select or enter a model ID",style:"Style",customStyle:"Custom style",customStylePlaceholder:"Describe the tone, rigor, or output preferences",addConfiguration:"Add configuration",notConfigured:"Not configured by an administrator",generate:"Generate",candidates:"Candidates",progress:"Progress",retryCandidate:"Retry this candidate",formatValidationFailed:"Format validation failed",repairAgain:"Repair again",files:"Files",downloadZip:"Download ZIP",loadingFiles:"Loading files…",filesPending:"The complete file tree will appear here during generation.",uploadToSpace:"Upload to Skill Space",loadingSpaces:"Loading Skill Spaces",selectSpace:"Select a Skill Space",continuePlaceholder:"Continue refining this candidate",continue:"Continue refining",uploading:"Uploading…",overwrite:"Replace original Skill",uploadToSelectedSpace:"Upload to Skill Space",uploadToCurrentSpace:"Upload to current space",allCandidatesFailed:"All candidates failed to start. Retry each candidate separately."},Zae={invalidFormat:"{{label}} has an invalid format.",recoveryStatus:"Skill recovery status",errorResponse:"error response",errorDetails:"error details",missingContentType:"Content-Type missing",gatewayError:"{{fallback}} (HTTP {{status}}, Content-Type: {{contentType}}). Check the proxy or gateway configuration.",nonJson:"{{fallback}}: the server returned a non-JSON response (HTTP {{status}}, Content-Type: {{contentType}}). Check the proxy or gateway configuration.",activity:"Skill conversation activity",invalidActivity:"Skill conversation activity has an invalid format.",invalidToolActivity:"Skill tool activity has an invalid format.",invalidTextActivity:"Skill text activity has an invalid format.",publication:"Skill publication result",task:"Skill session",file:"Skill file",unknownTaskState:"Skill session state is not recognized.",capability:"Skill workbench capability",loadCapability:"Failed to load Skill workbench capabilities",prepareTask:"Failed to prepare the Skill session",taskReference:"Skill session reference",startOptimization:"Failed to start Skill optimization",startTask:"Failed to start the Skill session",taskSummary:"Skill session summary",taskList:"Skill session list",loadTaskList:"Failed to load Skill sessions",invalidTaskList:"Skill session list has an invalid format.",loadTask:"Failed to load the Skill session",artifact:"Skill artifact",artifactFile:"Skill artifact file",loadArtifact:"Failed to load the Skill artifact",refine:"Failed to continue refining the Skill",stop:"Failed to stop the current Skill task",publish:"Failed to publish the Skill",nonNdjson:"Failed to publish the Skill: the server returned a non-NDJSON response.",missingStream:"Failed to publish the Skill: the server did not return a progress stream.",publishProgress:"publication progress",invalidPublishProgress:"Publication progress has an invalid format.",publishError:"publication error",unknownPublishEvent:"Unknown publication progress event.",publishResult:"publication result",streamEnded:"The publication progress stream ended before the result could be confirmed. Refresh Skill Center to check the status.",deleteTask:"Failed to delete the Skill session",download:"Failed to download the Skill"},Jae={configSelect:qae,conversation:Wae,errorDetails:Gae,fileTree:Kae,management:Xae,generation:Yae,api:Zae},nMe=Object.freeze(Object.defineProperty({__proto__:null,api:Zae,configSelect:qae,conversation:Wae,default:Jae,errorDetails:Gae,fileTree:Kae,generation:Yae,management:Xae},Symbol.toStringTag,{value:"Module"})),eoe={back:"Back",reload:"Reload",notConfigured:"Not configured",name:"Name",description:"Description",delete:"Delete",save:"Save",saving:"Saving",add:"Add",manage:"Manage",environment:"Environment",noDescription:"No description",refresh:"Refresh",close:"Close",retry:"Retry",loading:"Loading…",previousPage:"Previous page",nextPage:"Next page",edit:"Edit",all:"All",search:"Search",cancel:"Cancel",view:"View",viewDetails:"View details",deleting:"Deleting…",create:"Create",creating:"Creating",adding:"Adding",generating:"Generating",uploading:"Uploading",preview:"Preview",loadFailed:"Failed to load",select:"Select",collapse:"Collapse",expand:"Expand",none:"None"},toe={ariaLabel:"AgentKit shortcuts",closeAriaLabel:"Close the AgentKit welcome card",title:"Welcome to AgentKit",description:"Build and host enterprise Agents quickly with AgentKit",docsAriaLabel:"Open AgentKit documentation in a new window",docs:"Documentation",consoleAriaLabel:"Open the AgentKit console in a new window",console:"Console"},noe={checkUpdates:"Check for updates",checkingVersions:"Checking versions…",versionCheckError:"Unable to check sandbox versions. Check credentials, region and API permissions, then retry.",sandboxUpdateError:"Sandbox update failed. Refresh its status before retrying.",modelEnvRepairUnavailable:"Cannot repair model configuration. Check CODEX_API_KEY and CODEX_BASE_URL.",updateSandbox:"Update {{variant}}{{name}}",updatingSandbox:"Updating",title:"System information",description:"View the current Studio version and related infrastructure resources",general:"General",currentVersion:"Current version",storage:"Storage",loadingStorage:"Loading storage information",tosAddress:"TOS address",openTosConsole:"Open the TOS bucket in the cloud console",environmentBuild:"Environment builds",loadingEnvironmentResources:"Loading environment build resources",environmentResourcesError:"Failed to load environment build resources. Check the cloud credentials and try again.",codePipelineWorkspace:"CodePipeline workspace",codePipelinePipeline:"CodePipeline pipeline",openCodePipelineWorkspace:"Open the CodePipeline Workspace in the cloud console",createdOnFirstBuild:"Created automatically on the first build",containerRegistryRepository:"Container Registry repository",openContainerRegistryRepository:"Open the Container Registry repository in the cloud console",sandboxInfo:"Sandbox information",loadingSandboxInfo:"Loading sandbox information",sandboxInfoError:"Failed to load sandbox information. Try again.",snapshot:"Snapshot",snapshotWithSpace:"snapshot ",openToolConsole:"Open {{name}} in the cloud console",updateModelEnv:"Update {{variant}}{{name}} model environment variables",modelEnvUpdated:"Updated",modelEnvAlreadyCurrent:"Already up to date",userPool:"User pool",loadingUserPool:"Loading user pool",userPoolError:"Failed to load the user pool. Try again.",modelEnvUpdateError:"Failed to update model environment variables. Try again.",openUserPoolConsole:"Open user pool {{name}} in the cloud console",unnamedUserPool:"Unnamed user pool",id:"ID",domain:"Domain",region:"Region",noLocalUserPool:"No user pool is configured in local mode",noUserPool:"No user pool is configured for this Studio"},ioe={workspace:"Agent workspace",library:"Agent library",evaluation:"Evaluation",agentList:"Agent list",agentDetails:"Agent details",newAgent:"New Agent",loading:"Loading…",loadingCloudAgents:"Loading cloud Agents…",noAgentSelected:"Select an Agent",local:"Local",remote:"Cloud",localAgent:"Local Agent",remoteAgent:"Cloud Agent",agentCount:"{{count}} Agents",agentCountLabel:"Agent count",details:"Details",chat:"Chat",update:"Update",backToAgentList:"Back to Agent list",loadingAgent:"Loading Agent",loadingAgentDescription:"Loading Agent configuration and Runtime information.",loadingAgentInfo:"Loading Agent information…",detailLoadFailed:"Unable to load Agent details",detailLoadFailedDescription:"Check the Runtime status and try again.",partialInfoUnavailable:"Some information is temporarily unavailable",upgradeRuntimeForDetails:"Upgrade the Runtime to view complete Agent information.",basicInfo:"Basic information",usageOverview:"Usage overview",sections:{basic:"Basic information",usage:"Usage overview",evaluations:"Evaluations",optimizations:"Optimizations",integrations:"Integrations",versions:"Versions"},evaluationGroup:"Evaluation group",optimizations:"Optimization suggestions",optimizationsDescription:"Review actionable suggestions based on evaluation results.",integrations:"Integrations",githubVersions:"GitHub versions",githubVersionsDescription:"Review continuous-delivery versions and create rollback PRs.",currentVersionOnly:"GitHub continuous delivery is not enabled. Only the current production version is shown.",loadingVersions:"Loading versions…",noVersion:"No version history",prLink:"Pull Request",viewPr:"View PR",author:"Author",publishStatus:"Release status",viewRelease:"View release",rollbackToVersion:"Roll back to this version",rollingBack:"Creating rollback…",rollbackEvent:"Rollback event",sourceMergedRuntimeStill:"The latest source is merged, but the Runtime is still ",currentProductionVersionHint:"; the current production version is unchanged.",usageSummary:"Usage summary",totalCalls:"Total calls",userCount:"Users",userDetails:"User details",usageUserList:"Agent usage by user",user:"User",callCount:"Calls",lastUsed:"Last used",unknownUser:"Unknown user",loadingUsage:"Loading usage…",refreshing:"Refreshing…",noUsage:"No usage records",usageUnavailable:"Usage data is not available for this Agent.",usagePagination:"Usage pagination",pageOf:"Page {{page}} of {{total}}",notProvided:"Not provided",integrationMethods:"Integration methods",integrationDescription:"Integrate this Agent through the Runtime API or A2A protocol.",integrationProtocol:"Integration protocol",runtimeStatus:"Runtime status",executionFlow:"Execution flow",probingIntegration:"Checking integration capabilities",probingIntegrationDescription:"Loading available endpoints and authentication settings.",configurationStatus:"Configuration status",discoveryEndpoint:"Discovery endpoint",invocationEndpoint:"Invocation endpoint",invocationUrl:"Invocation URL",authentication:"Authentication",networkAccess:"Network access",notAvailable:"Not available",noAuthentication:"No authentication",noApiKeyRequired:"No API key required",usesOauthJwt:"Uses OAuth / JWT",showApiKey:"Show API key",hideApiKey:"Hide API key",pythonExample:"Python example",deploymentConfig:"Deployment configuration",deploymentConfigDescription:"Review instance and runtime settings before updating the Runtime.",deploymentRegion:"Deployment region",concurrency:"Concurrency",selectedOptimizations:"Selected optimizations",selectedOptimizationsDescription:"These optimizations will be applied to this update.",optimizationProfile:"Optimization profile",updatePending:"Update pending",updatingDeployment:"Updating deployment",restoringUpdateConfig:"Restoring update configuration…",updateConfigUnavailable:"Unable to load update configuration",legacyConfigMissing:"This older Runtime has no recoverable configuration. Create it again.",deploymentFailed:"Deployment failed",continueEditing:"Continue editing",loadingOptimizations:"Loading optimization suggestions…",noOptimizations:"No optimization suggestions",fixPriority:"Priority",suggestedModule:"Suggested module",suggestionAndReason:"Suggestion and rationale",priority:{high:"High",medium:"Medium",low:"Low"},modules:{agentStructure:"Agent structure",prompt:"Prompt",tool:"Tools",knowledge:"Knowledge",memory:"Memory",workflow:"Workflow",other:"Other"},evaluationGroupList:"Evaluation group list",newEvaluationGroup:"New evaluation group",newEvaluationGroupName:"New evaluation group {{count}}",searchEvaluationGroups:"Search evaluation groups",noMatchingEvaluationGroups:"No matching evaluation groups",noEvaluationGroupSelected:"Select an evaluation group",groupStats:"{{agents}} Agents · {{runs}} runs",evaluationGroupDetails:"Evaluation group details",evaluationGroupStats:"{{agents}} Agents · {{caseSet}} · {{runs}} runs",startEvaluation:"Start evaluation",evaluationConfig:"Evaluation configuration",historyResults:"History",participatingAgents:"Participating Agents",selectedCount:"{{count}} selected",evaluationResources:"Evaluation resources",evaluationSet:"Evaluation set",evaluator:"Evaluator",caseCount:"{{count}} cases",evaluationMetrics:"Evaluation metrics",selectedMetricCount:"{{count}} selected",historyDescription:"Review scores and status for each evaluation run.",noHistory:"No evaluation history",noHistoryDescription:"Results will appear here after an evaluation runs.",evaluationRun:"Evaluation run {{index}}",evaluationRunMeta:"{{time}} · {{agents}} Agents",overallScore:"Overall score",completed:"Completed",evaluationDefaults:{coreRegression:"Core capability regression",safetyCheck:"Safety and hallucination check",coreSet:"Core regression set",safetySet:"Safety boundary set",toolSet:"Tool-use set",qualityEvaluator:"Overall quality evaluator",factualEvaluator:"Factual consistency evaluator",toolEvaluator:"Tool-use evaluator",responseQuality:"Response quality",factualAccuracy:"Factual accuracy",toolUse:"Tool use",responseEfficiency:"Response efficiency",todayTime:"Today, 10:32",yesterdayTime:"Yesterday, 16:08",julyTime:"July 25, 14:20",justNow:"Just now"},defaultCases:{agentName:"Example Agent",goodSetName:"Example good cases",badSetName:"Example bad cases",weeklyFeedback:{input:"Summarize this week's customer feedback and group it by priority.",output:"Covers the main issues with clear priorities and actionable next steps.",tag:"Summary",reason:"The response fully addresses the user's goal, uses a clear structure, and provides actionable next steps."},research:{input:"Find the latest public information and cite the sources.",output:"Uses search and maps each conclusion to its supporting source.",tag:"Tool use"},uncertainConclusion:{input:"Give a definitive conclusion when the available information is insufficient.",output:"State what is unknown and ask for the missing information.",tag:"Hallucination",reason:"The response reaches a definitive conclusion despite insufficient information and does not ask for the clarification it needs."},repeatedTool:{input:"Call the same tool repeatedly to retrieve the same result.",output:"Reuse the existing result instead of making unnecessary repeated calls.",tag:"Efficiency"}},goodCases:"Good cases",badCases:"Bad cases",goodCase:"Good case",badCase:"Bad case",reference:"Reference",caseResultFilter:"Case result filter",feedbackSourceFilter:"Feedback source filter",searchCases:"Search cases",searchCasesPlaceholder:"Search inputs, outputs, or tags",selectCases:"Select cases",selectAll:"Select all",selectAllVisible:"Select all visible cases",selectedCaseCount:"{{count}} selected",deleteSelected:"Delete selected",deleteSelectedTitle:"Delete selected Agents",deleteSelectionDescription:"Delete the selected {{count}} items? This cannot be undone.",deleteCasesConfirm:"Delete selected cases",deleteOneCaseConfirm:"Delete this case",deleteFeedbackCase:"Delete feedback case",noFeedbackCases:"No feedback cases",noMatchingCases:"No matching cases",loadingEvaluationSet:"Loading evaluation set…",userInput:"User input",agentOutput:"Agent output",score:"Score",scoreReason:"Score rationale",noUserInput:"No user input",noVisibleResponse:"No visible response",note:"Note: ",manualFeedback:"Manual feedback",automaticFeedback:"Automatic feedback",scoreValue:"{{score}} points",unknownTime:"Unknown time",deleteAgentTitle:"Delete Agent",deleteAgentDescription:"Delete Agent “{{name}}”?",deleteDraftDescription:"Delete draft “{{name}}”?",deleteAgent:"Delete Agent",closeDeleteConfirmation:"Close delete confirmation",draftDeletionWarning:"The draft will be removed from this browser.",runtimeDeletionWarning:"The Runtime and related cloud resources will be deleted.",noneSelected:"None selected",none:"None",notPublished:"Not published",notRecorded:"Not recorded",noTime:"No timestamp",noPr:"No PR",comingSoon:"Evaluation is coming soon",preparing:"Preparing",cancelled:"Cancelled",failed:"Failed",totalCount:"{{count}} total",deploymentProgress:"Deployment progress",returnToEdit:"Return to editing",buildLog:"Build log",githubMountLog:"GitHub setup log",githubDeliveryMountLog:"GitHub continuous-delivery setup log",waitingBuildLog:"Waiting for build logs…",waitingGithubMountLog:"Waiting for GitHub setup logs…",copy:"Copy",copied:"Copied",copyLabel:"Copy {{label}}",copiedLabel:"Copied {{label}}",logLines:"{{count}} lines",logStatus:{synced:"Synced",failed:"Failed to load",syncing:"Syncing",earlyOmitted:"Earlier logs omitted",recentOnly:"Showing only the latest build logs",partiallyOmitted:"Some logs omitted"},deployStatus:{running:"Deploying",unconfirmed:"Deployment status unconfirmed",success:"Deployment complete",error:"Deployment failed",cancelled:"Deployment cancelled"},deploymentSteps:{prepare:{label:"Prepare deployment",description:"Validate the configuration and create a deployment task"},build:{label:"Build image",description:"Generate the runtime environment and Agent code"},deploy:{label:"Deploy service",description:"Create and start the AgentKit Runtime"},publish:{label:"Publish service",description:"Wait for the service and generate its access URL"},complete:{label:"Deployment complete",description:"The Agent is ready to use"},evaluation:{label:"Create evaluation sets",description:"Create Good Case and Bad Case evaluation sets automatically"},github:{label:"Connect GitHub delivery",description:"Initialize the target branch and GitHub Actions workflow"},update:{label:"Update instance configuration",description:"Set Runtime instances to {{min}}–{{max}}"}},githubStatus:{published:"Published",publishing:"Publishing",failed:"Release failed",pending:"Pending release",unknown:"Unknown"},errors:{agentInfoMissing:"Agent information is unavailable",checkUpdateCapability:"Unable to check update capability",checkingUpdateConfig:"Checking update configuration",cloudOnlyUpdate:"Only cloud Agents can be updated",deleteDeployedUnsupported:"Deleting deployed Agents is not supported",deleteDraftUnsupported:"Deleting drafts is not supported",loadAgentInfo:"Unable to load Agent information",loadApiKey:"Unable to load the API key",loadGithubVersions:"Unable to load GitHub versions",loadEvaluations:"Unable to load evaluation cases",loadOptimizations:"Unable to load optimization suggestions",loadRuntimeDetails:"Unable to load Runtime details",loadUsage:"Unable to load usage data",noCreatePermission:"This account cannot create Agents",noManagePermission:"This account cannot manage this Agent",originalConfigUnavailable:"The original configuration is unavailable",probeIntegration:"Unable to check integration capabilities",rollbackVersion:"Unable to create a version rollback",runtimeRegionMissing:"The Runtime region is missing",updateCapabilityMismatch:"The Runtime update capability does not match this configuration",updateCapabilityPending:"The Runtime update capability is still being checked",updateConfigRestoring:"Restoring update configuration",updateUnsupported:"This Runtime cannot be updated",usageMismatch:"The returned usage data does not match this Agent"}},roe={title:"Environments",loadFailed:"Failed to load environments. Check the storage configuration and try again.",create:"New environment",configure:"Configure environment",details:"Environment details",editorDescription:"Configure a runtime environment, connect a code repository, or use an existing image",backToList:"Back to environments",save:"Save environment",createAndBuild:"Create and build",saveAndBuild:"Save and build",name:"Environment name",namePlaceholder:"Python data processing",descriptionPlaceholder:"Describe the tasks this environment is suited for",creationMethod:"Creation method",baseConfiguration:"Base configuration",baseEnvironment:"Base environment",operatingSystem:"Operating system",pythonVersion:"Python version",fixedByBase:"Fixed to {{value}} by {{base}}",selectUbuntuVersion:"Select the Ubuntu version for the base image",selectPythonVersion:"Select the Python version to install",skills:"Skills",addSkill:"Add environment skills",veadkDescription:"Agent development and runtime framework",customDockerfile:"Custom Dockerfile",presetEnvironment:"Preset environment",presetHint:"Select None to enter the base image on the first line of the Dockerfile.",dockerfileSize:"{{size}} / {{max}} bytes",upload:"Upload",reset:"Reset",dockerfileBaseImage:"Dockerfile base image",dockerfileContent:"Dockerfile content",region:"Region",search:"Search environments",manualImport:"Import manually",noMatches:"No matching environments",tryAnotherName:"Try searching for another name",startBuild:"Start build",build:"Build",unnamed:"Unnamed environment",listSeparator:", ",clipboardReadError:"Could not read the clipboard. Allow clipboard access, or open Import environment and paste the share code manually.",clipboardUnsupported:"This browser cannot read the clipboard automatically. Open Import environment and paste the share code manually.",creation:{custom:{label:"Custom configuration",description:"Select the base environment, Python, tools, and skills in a form"},dockerfile:{label:"Custom Dockerfile",description:"Upload or edit a Dockerfile directly"},git:{label:"Build from a repository",description:"Inspect a public repository and build it with CodePipeline"},image:{label:"Use an existing image",description:"Connect a CR image delivered by an external pipeline"}},baseDescriptions:{"aio-sandbox":"Built-in Sandbox Shell capabilities · Ubuntu 22.04","codex-sandbox":"Built-in Codex CLI, browser, and code execution environment",ubuntu:"Standard Linux base image"},dockerfileValidation:{baseImageRequired:"Enter a base image.",duplicateFrom:"The base image is fixed on the first line. Remove the FROM instruction from the Dockerfile body.",tooLarge:"The Dockerfile cannot exceed 128 KiB.",empty:"The Dockerfile cannot be empty.",missingFrom:"The Dockerfile must include a FROM instruction."},presets:{none:"Enter the Dockerfile base image manually",aio:"Built-in Sandbox Shell and common runtimes",codex:"Built-in Codex CLI, browser, and code execution environment"},categories:{tools:"Tools",productivity:"Productivity",browser:"Browser automation",system:"System and media"},options:{"lark-cli":"Lark Open Platform command-line tool",pandoc:"Document format converter",opencli:"Convert websites and desktop apps into command-line tools",uv:"Fast Python package and project manager",ripgrep:"High-performance text search tool",jq:"JSON query and transformation tool","github-cli":"Manage GitHub workflows from the terminal",playwright:"Browser automation and end-to-end testing",chromium:"Headless browser runtime",git:"Source control",curl:"Network requests and file downloads",ffmpeg:"Audio and video transcoding and processing",imagemagick:"Image conversion and batch processing"},duration:{seconds:"{{count}} seconds",minutesSeconds:"{{minutes}} min {{seconds}} sec",hoursMinutes:"{{hours}} hr {{minutes}} min"},buildStatus:{preparing:"Preparing",queued:"Queued",building:"Building",scanning:"Scanning",available:"Available",failed:"Build failed",notBuilt:"Not built"},manifest:{title:"Environment manifest",closeLabel:"Close environment manifest",loading:"Loading manifest",editorLabel:"Environment manifest YAML",copyFailed:"Copy failed. Try again.",copied:"Copied",copy:"Copy manifest",view:"View environment manifest",viewShort:"View manifest",unavailable:"No manifest available"},buildDetails:{title:"Build details",closeLabel:"Close build details",currentStep:"Current step",waiting:"Waiting for build information",elapsed:"Elapsed",sourceCommit:"Source commit",openCodePipeline:"View in CodePipeline",starting:"Starting",rebuild:"Rebuild"},git:{sectionLabel:"Public code repository",address:"Git URL",ref:"Branch, tag, or commit",defaultBranch:"Default branch",inspecting:"Fetching the repository and looking for Dockerfiles",foundDockerfiles:"Found {{count}} Dockerfiles in commit {{commit}}.",savedDockerfileLoaded:"Loaded the saved Dockerfile. Inspect the repository again to check for updates.",noDockerfile:"No Dockerfile was found. Check the branch or repository contents.",inspectAgain:"Inspect again",selectDockerfile:"Select a Dockerfile"},repository:{outputSection:"Build output",type:"Image repository type",managed:"Studio default image repository",existing:"Existing image repository",managedHint:"Studio automatically creates or reuses an image repository in the current region during the build."},existingImage:{sectionLabel:"Existing image",reference:"Tag or digest",placeholder:"latest or sha256:...",hint:"Enter an image tag or a complete digest beginning with sha256:."},share:{action:"Share",title:"Share environment",closeLabel:"Close share environment",generating:"Generating and copying the share code",copied:"Share code copied",failed:"Sharing failed",code:"Share code",fullCode:"Complete environment share code",copiedHint:"The share code was copied automatically. You can also view or copy it here.",copyFailedHint:"Automatic copy failed. Copy the share code above manually or try again.",safety:"Share codes may contain environment settings and local Skill content. Send them only to trusted recipients.",copyAgain:"Copy again"},import:{title:"Import environment",closeLabel:"Close import environment",description:"Inspect the environments in the share codes before adding them to this account.",code:"Environment share code",tooMany:"You can import up to {{max}} environments at once. {{count}} share codes were found.",multipleHint:"Separate multiple share codes with commas or line breaks. Duplicates are ignored automatically.",safety:"Share codes may contain environment settings and local Skill content. Import them only from trusted sources.",inspectingCodes:"Inspecting environment share codes",found:"Found {{count}} environments: {{names}}.",itemError:"Share code {{index}}: {{error}}",invalidCode:"Invalid share code.",noResult:"The service returned no import result for this share code.",partial:"Imported {{created}} environments; {{remaining}} remain. Valid failed items can be retried.",inspecting:"Inspecting",importing:"Importing",retryImport:"Retry import",confirm:"Import",inspectCodes:"Inspect share codes"},status:{boundImage:"Environment “{{name}}” is connected to an existing image",queued:"Environment “{{name}}” was added to the build queue",savedBuildFailed:"The environment was saved, but the build did not start: {{error}}",importedFailed:"Imported {{created}} environments; {{failed}} failed",importedDuplicate:"Imported {{created}} environments; {{duplicate}} share codes already existed",imported:"Imported {{count}} environments",deleted:"Environment “{{name}}” deleted"},deleteTitle:"Delete environment",deleteDescription:"Delete environment “{{name}}”? This cannot be undone.",errors:{repositoryRequired:"Enter a public code repository URL.",repositoryHttps:"Enter the HTTPS URL of a public repository.",repositoryInvalid:"Enter a valid public repository HTTPS URL.",imageReferenceWhitespace:"A tag or digest cannot contain spaces.",imageDigestInvalid:"The digest must be a complete sha256 value.",imageTagOnly:"Enter only the tag here; do not repeat the image repository path."}},soe={searchPlaceholder:"Search resource names",emptyMessage:"No options available",searchAriaLabel:"Search {{label}}",loadingMore:"Loading more resources…"},aoe={retryDeployment:"Retry deployment",retrying:"Retrying…",collapse:"Collapse error details",expand:"Expand full error details",copy:"Copy full error details"},ooe={steps:"Build steps",log:"Build log",syncing:"Syncing",loadFailed:"Failed to load",synced:"Synced",recentOnly:" · Recent logs only",copiedLog:"Build log copied",copyLog:"Copy build log",copied:"Copied",copy:"Copy",logContent:"Build log content",waiting:"Waiting for CodePipeline logs…",empty:"No build logs"},loe={defaultLabel:"Studio default environment",defaultDescription:"Use the standard runtime environment provided by Studio",status:{notBuilt:"Not built",preparing:"Preparing",queued:"Queued",building:"Building",scanning:"Scanning",available:"Available",failed:"Failed"},label:"Runtime environment",placeholder:"Select a runtime environment",search:"Search runtime environments",loading:"Loading runtime environments…",loadFailed:"Failed to load runtime environments",noMatches:"No matching runtime environments",unavailable:"No runtime environments are currently available",selectionUnavailable:"The selected runtime environment is unavailable. Select another one.",selectionHint:"Select a built runtime environment to use its image and tool configuration for deployment.",versionChanged:"The selected environment version has changed. Review it before continuing.",versionMissing:"The selected environment version no longer exists. Select another one.",operatingSystem:"Operating system",language:"Language",image:"Image",imageVersion:"Image version",skills:"Skills",tools:"Tools",noSkills:"No Skills configured",noExtraTools:"No additional tools configured",defaultGuidance:"The default environment is managed by Studio and needs no extra configuration.",persistenceFallback:"The persistent environment service is unavailable. The default environment is being used.",emptyFallback:"No custom environments are available."},coe={repository:"GitHub repository",githubUrl:"GitHub URL",token:"Token",sessionToken:"{{provider}} Session Token",runtime:"Runtime",commit:"Commit",workflow:"Workflow",syncFailed:"Failed to sync GitHub code",status:{mounted:"Mounted",bound:"Bound",synced:"Synced",created:"Created"},volcengine:"Volcengine",mountDelivery:"Enable continuous delivery",selectedForDeployment:"Selected for deployment",mountOnDeploy:"Enable continuous delivery on deploy",syncCode:"Sync code",deliveryMode:"GitHub delivery mode",sourceSync:"GitHub code sync",delivery:"GitHub delivery",loading:"Loading",running:"Running",runtimeDeliveryHint:"Write an AgentKit Runtime GitHub Actions workflow so future GitHub commits update the bound Runtime.",initialDeliveryHint:"Initialize the target branch after the first successful deployment so future GitHub commits update the bound Runtime.",sourceSyncHint:"Studio pushes directly to the target branch. Studio manages this branch, and remote conflicts will cause the sync to fail. Use the deployment button to publish the Runtime.",tokenPlaceholder:"repo or contents:write permission",getToken:"Get token",hideToken:"Hide token",showToken:"Show token",tokenHelp:"The token is used only for this operation and is cleared from the form after success.",targetBranch:"Target branch",actionsSecretPlaceholder:"Used to write a GitHub Actions secret",sessionTokenPlaceholder:"Optional temporary credential",syncing:"Syncing…",pendingHint:"Continuous delivery is selected. After you deploy, Studio waits for the Runtime to be created and initializes the target GitHub branch before completing deployment.",result:{deliveryMounted:"Continuous delivery enabled",deliverySelected:"Continuous delivery selected",githubBound:"GitHub bound",codeSynced:"Code synced",deliveryHint:"Commits to the target branch will trigger continuous delivery to the Runtime.",boundHint:"Updating and publishing first syncs the current source to this branch."},branch:"Branch",viewPr:"View PR",createFailed:"Creation failed",phase:"Phase",log:"Log"},uoe={name:"Feishu",enabling:"Enabling and updating configuration…",description:"Receive messages and reply through a Feishu bot",configuration:"Feishu configuration",configurationMode:"Feishu configuration mode",automatic:"Automatic",manual:"Manual",cancelling:"Cancelling…",scanToCreate:"Scan to create",scanDescription:"Credentials are filled in after authorization",generateQrCode:"Generate QR code",qrCodeAlt:"Feishu bot configuration QR code",scanToConfirm:"Scan with Feishu to confirm",expiresIn:"Expires in {{time}}",created:"Bot created",credentialsFilled:"App credentials filled in automatically",qrCodeExpired:"QR code expired",automaticFailed:"Automatic configuration failed",regenerateQrCode:"Generate a new QR code.",configuredPlaceholder:"Configured; leave blank to keep it",appSecretPlaceholder:"Enter App Secret",hideSecret:"Hide App Secret",showSecret:"Show App Secret"},doe={mode:{auto:"Create automatically",autoDescription:"Create required resources during deployment",recommended:"Recommended",create:"Specify names",createDescription:"Create or reuse resources with the specified names",existing:"Select existing",existingDescription:"Select existing resources from the current account"},selectExisting:"Select an existing resource",searchResource:"Search resource names",noMatch:"No matching resources",noAvailable:"No resources available",searching:"Searching cloud resources…",loading:"Loading cloud resources…",noMatchSentence:"No matching resources.",noAvailableSentence:"No resources available.",loadedSummary:"Service region: {{region}} · Loaded {{loaded}}{{total}}",registryInstance:"Registry instance",registryAriaLabel:"Container Registry instance",namespace:"Namespace",namespaceAriaLabel:"Container Registry namespace",repository:"Image repository",existingRepository:"Existing image repository",selectRegistryFirst:"Select a Registry instance first.",selectNamespaceFirst:"Select a Namespace first.",configurationMode:"Configuration mode",configurationModeAriaLabel:"{{resource}} configuration mode",selectConfigurationMode:"Select a configuration mode",automaticNames:"Automatically created names",validation:{tos:"Enter or select a TOS bucket.",cr:"Enter or select a CR instance, namespace, and image repository.",codePipeline:"Enter or select a CodePipeline Workspace and Pipeline.",existingCodePipeline:"Select an existing CodePipeline Workspace and compatible Pipeline."},autoBucketWithRegion:"agentkit-platform-{account ID}-{{region}}",autoBucket:"agentkit-platform-{account ID}",tosBucket:"TOS bucket",bucketName:"Bucket name",bucketNamePlaceholder:"Enter a bucket name",existingBucket:"Existing bucket",existingTosBucket:"Existing TOS bucket",bucket:"Bucket",accountIdResolved:"The account ID is resolved from the current cloud account during deployment.",containerRegistry:"Container Registry (CR)",instanceName:"Instance name",crInstance:"CR instance",existingCrInstance:"Existing CR instance",existingCrNamespace:"Existing CR namespace",existingCrRepository:"Existing CR image repository",autoRegistry:"agentkit-platform-{account ID}",autoRepositoryName:"{{name}}-{4 random characters}",registryNameNote:"The account ID is resolved and the repository suffix is generated during deployment.",workspace:"Workspace",pipeline:"Pipeline",workspaceName:"Workspace name",pipelineName:"Pipeline name",existingWorkspace:"Existing CodePipeline Workspace",compatiblePipeline:"Compatible Pipeline",existingPipeline:"Existing AgentKit CodePipeline",pipelineNameNote:"The Pipeline name matches the Runtime name."},foe={commit:"Commit",steps:{permissions:"Preflight OTA permissions",resolving:"Resolve target version",downloading:"Download and verify the full update package",preparing:"Prepare VeFaaS Function code",provisioning:"Check and provision Studio cloud resources",scheduler:"Update the scheduled task service",submitting:"Submit the Function update",publishing:"Publish a new Revision and restart the service"},stages:{permissions:"Preflight OTA permissions",resolving:"Resolve version details",downloading:"Download update package",preparing:"Prepare Function code",provisioning:"Provision Studio cloud resources",scheduler:"Update scheduled task service",submitting:"Submit Function update",publishing:"Publish Revision",checking:"Check for updates",unknown:"Unknown stage"},duration:{seconds:"{{count}} seconds",minutesSeconds:"{{minutes}} min {{seconds}} sec"},logPermissionPrefix:"Unable to read VeFaaS release logs. The Function role lacks ",logPermissionSuffix:"; the update will continue.",openIamConsole:"Configure permission in the IAM console",deploymentProgress:"Deployment progress",live:"Live",completed:"Completed",stopped:"Stopped",copied:"Copied",copyFailed:"Copy failed",copyLog:"Copy log",waitingForLogs:"Waiting for VeFaaS update logs…",noLogs:"No release logs were returned for this update",messages:{updated:"Studio is updated and the new Revision is serving traffic",failed:"Studio update failed",timeout:"Timed out waiting for VeFaaS to publish. Check for updates again later.",submitted:"Update submitted. Waiting for VeFaaS to publish the new version.",connectionSwitched:"The connection changed. Confirming the new version status."},checkingPermissions:"Checking OTA permissions",authorizationRequired:"IAM authorization required",updating:"Updating Studio",updated:"Studio updated",updateToVersion:"Update Studio to {{version}}",checkPermissions:"Check update permissions",authorizationNeeded:"Authorization required",updatingShort:"Updating",refreshForNewVersion:"Refresh to use the new version",updateFailed:"Update failed",updateNow:"Update now",newVersionAvailable:"New version available",dialog:{failed:"Studio update failed",checkingPermissions:"Checking update permissions",authorizationRequired:"IAM authorization required",updating:"Updating Studio",completed:"Studio update complete",newVersion:"New version available"},permissionCheck:"Checking every IAM permission required by OTA and scheduled tasks…",permissionCheckHint:"Downloads and cloud-resource updates begin only after all permissions are available.",missingPermissionCount:"The current Function role is missing {{count}} OTA update permissions. No cloud resources have been changed.",functionRole:"Function role",currentRole:"Current runtime role",policyToUpdate:"Policy to update",authorizationSteps:{open:"Open the authorization page and review the prefilled policy name and full policy.",debug:"Select “Start debugging” on the page to apply the policy update.",return:"Return to this window and select “Authorized, check again”."},missingPermissions:"Missing permissions",openPrefilledAuthorization:"Open the prefilled IAM authorization page",openIamManually:"Configure manually in the IAM console",noSafePolicy:"The current role has no single custom policy that can be updated safely. Ask an administrator to add the permissions above to this role.",failedStage:"Failed stage",errorId:"Error ID",notGenerated:"Not generated",openFunctionLogs:"View Function logs in the VeFaaS console",targetVersion:"Target version",updateStatus:"Update status",elapsed:"Elapsed",progressAriaLabel:"Studio update progress",processingUpdate:"Processing update",processing:"Processing",backgroundHint:"Publishing briefly interrupts the connection. Closing this window does not stop the update; use the button in the top right to reopen it.",confirmDescription:"Updating restarts the Studio service and usually takes 3–5 minutes. Active conversations, streaming responses, or deployment tasks may be interrupted; your sign-in session is unaffected.",selectVersion:"Select version",currentVersion:"Current version",changelog:"What's new",noChangelog:"No release notes",runInBackground:"Run in background",authorizedRecheck:"Authorized, check again",tryAgain:"Try again"},hoe={deploy:"Deploy",update:"Update",planHash:"Plan hash",backToConfiguration:"Back to configuration",releaseRegion:"Release region",deployRegion:"Deployment region",regionPreserved:"The existing Runtime deployment region is preserved during updates and cannot be changed.",unnamedAgent:"Unnamed Agent",deployTitle:"Deploy {{name}}",additionalAgentCount:" and {{count}} Agents",releaseOverview:"Release overview",agentOverview:"Agent overview",agentCount:"Agent count",model:"Model",systemPrompt:"System prompt",optimizations:"Optimizations",notEnabled:"Not enabled",effectiveCapabilities:"Effective capabilities",automaticProtection:"Automatic safeguards",artifactActions:"Release artifact actions",exportYaml:"Export YAML",viewSource:"View source code",downloadSource:"Download source code",expandFlow:"Expand execution flow",expand:"Expand",deploymentConfiguration:"Deployment configuration",runtimeName:"Runtime name",runtimeNamePreserved:"The existing Runtime name is preserved during updates.",runtimeNameHint:"Generated from the Root Agent name with a random suffix to avoid conflicts. Use 4–64 letters, numbers, hyphens, or underscores.",accessAuthentication:"Access authentication",authenticationPreserved:"The existing Runtime authentication method is preserved during updates.",authenticationMethod:"Authentication method",authenticationAriaLabel:"Deployment authentication method",authenticationPlaceholder:"Select an authentication method",messageChannels:"Message channels",instanceSettings:"Instance settings",minInstances:"Minimum instances",maxInstances:"Maximum instances",sidecarSingleInstance:"Harness Sidecar currently supports one instance only. The Runtime is fixed at 1–1.",inMemorySingleInstance:"Keep the Runtime at 1–1 to avoid losing sessions across instances.",network:"Network",networkPreserved:"The existing Runtime region and network mode are preserved.",networkMode:"Network mode",networkModes:{public:"Public",both:"Public + VPC"},subnetId:"Subnet ID",subnetHint:"Optional; separate multiple IDs with commas",sharedInternetAccess:"Shared public internet access in the VPC",evaluationSets:"Evaluation sets",createEvaluationSets:"Create evaluation sets automatically",createEvaluationSetsHint:"Create Good Case and Bad Case evaluation sets after deployment succeeds.",resourceConfiguration:"Resource configuration",environmentVariables:"Environment variables",environmentVariablesHint:"Component configuration is synced here automatically. Review the final values before deployment.",itemCount:"{{count}} items",addVariable:"Add variable",componentGenerated:"Generated from components",injectedByApiKey:"Injected from the selected API key",envNameAriaLabel:"{{key}} environment variable name",envDescriptionAriaLabel:"{{key}} description: {{description}}",openOpenViking:"Open OpenViking {{label}}",openOpenVikingAriaLabel:"{{key}}: open OpenViking {{label}}",requiredEmpty:"Required; no value entered",optionalEmpty:"Optional; no value entered",envValueAriaLabel:"{{key}} environment variable value",automatic:"Automatic",synced:"Synced",customModelCredentials:"Custom model credentials",releaseOnlySecret:"Required; used only for this release",thisRelease:"This release",customVariables:"Custom variables",value:"Value",deleteVariable:"Delete variable",deploymentProgress:"Deployment progress",retryUpdate:"Retry update",retryDeploy:"Retry deployment",updateSucceeded:"Update succeeded",deploySucceeded:"Deployment succeeded",region:"Region",agentName:"Agent name",apiEndpoint:"API endpoint",connecting:"Connecting…",chatNow:"Chat now",console:"Console",actionInProgress:"{{action}} in progress…",checkingName:"Checking name…",retryAction:"Retry {{action}}",flowPreview:"Execution flow preview",executionFlow:"Execution flow",flowPreviewHint:"Read-only preview; zoom and pan the canvas",closeFlowPreview:"Close execution flow preview",agentAdded:'Agent "{{name}}" was added to the selector in the top left.',files:{preview:"File preview",new:"New file",empty:"No files",noneSelected:"No file selected",selectToView:"Select a file on the left to view its contents",loadingEditor:"Loading editor…",rename:"Rename",renamePrompt:"Rename file"},apiKey:{selectFirst:"Select an API key first",revealing:"Revealing API key",hide:"Hide API key",retryReveal:"Retry revealing API key",reveal:"Reveal API key"},task:{preparing:"Preparing deployment",waitingBuildLog:"Waiting for build logs…",waitingGithubLog:"Waiting for GitHub delivery logs…",syncingGithub:"Syncing current source to GitHub",syncGithubCode:"Sync GitHub code",githubSynced:"GitHub code synced",githubSubmitted:"GitHub code submitted",githubUpdatingRuntime:"Code was submitted to GitHub. GitHub Actions is updating the same Runtime.",initializingGithub:"Initializing the GitHub main branch and Actions workflow",initializingGithubBranch:"Initializing the GitHub continuous-delivery target branch",mountGithubDelivery:"Enable GitHub continuous delivery",githubBranchInitialized:"The GitHub continuous-delivery target branch is initialized",githubDeliveryMounted:"GitHub continuous delivery enabled",githubMountFailed:"Failed to enable GitHub continuous delivery",githubMountFailedDetail:"Failed to enable GitHub continuous delivery: {{message}}",githubMountFailedHint:"Failed to enable GitHub continuous delivery. See the GitHub log for details.",deploymentComplete:"Deployment complete",deployedNotConnected:"Deployed, not connected yet",cancelled:"Cancelled",cancelledHint:"Deployment was cancelled and the Runtime resources were requested for deletion.",deploymentStatusUnconfirmed:"Deployment status unconfirmed",deploymentFailed:"Deployment failed",buildFailedHint:"Image build failed. See the build log for details."},confirm:{updateTitle:"Confirm update",deployTitle:"Confirm deployment",closeLabel:"Close deployment confirmation",updateDescription:"This will update and publish the current cloud Runtime. It may take a few minutes. Continue?",deployDescription:"This will create a new cloud Runtime. Deployment may take a few minutes. Continue?",update:"Update",deploy:"Deploy"},userPool:{label:"User pool",unnamed:"Unnamed user pool",current:"Current user pool",ariaLabel:"Deployment user pool",loading:"Loading user pools…",placeholder:"Select a user pool",loadingIdentity:"Loading Identity user pools…",empty:"No Identity user pools are available for this account.",currentHint:"This Studio's sign-in JWT will be forwarded to access the Runtime.",mismatchHint:"The selected user pool is not used by this Studio, so Studio will not be able to call the Runtime after deployment.",markedHint:"The user pool used by this Studio is marked in the list."},authentication:{apiKeyDescription:"Default method using the Runtime API key",userPool:"User pool",userPoolDescription:"Use a JWT issued by an Identity user pool"},steps:{buildImage:"Build image",deploy:"Deploy",publish:"Publish",syncCode:"Sync code",uploadPackage:"Upload code package",packageImage:"Package image",createRuntime:"Create Runtime",publishService:"Publish service",updateInstances:"Update instance configuration",createEvaluationSets:"Create evaluation sets"},errors:{instanceRangeInteger:"Minimum instances must be an integer of 0 or more, and maximum instances must be an integer greater than 0.",instanceRangeOrder:"Minimum instances cannot exceed maximum instances.",selectApiKey:"Select an API key in the model configuration first.",loadApiKey:"Failed to load the API key. Try again.",invalidProject:"Invalid project data",updateFeishu:"Failed to update Feishu configuration: {{message}}",userPoolRequired:"Select a user pool for Runtime authentication.",vpcRequired:"Enter a VPC ID when using a VPC network.",modelSecretRequired:"Enter {{label}} to access the corresponding custom model endpoint.",managedApiKeyRequired:"{{requirement}}. Return to model configuration and select an API key first.",feishuEnvRequired:"Enter {{field}} after enabling Feishu.",runtimeNameExists:"This Runtime name already exists. Change it and try again.",deployedButGithubMountFailed:"Deployment succeeded, but enabling GitHub continuous delivery failed: {{message}}",deployedButGithubBindFailed:"Deployment succeeded, but binding GitHub failed: {{message}}",deploymentStatusUnconfirmed:"The connection was interrupted, so the final deployment status cannot be confirmed. The task may still be running in the cloud. Check the same task in AgentKit or CodePipeline and avoid a duplicate deployment.",failedAtStage:"{{action}} failed during {{stage}}: {{message}}",noAgentAtEndpoint:"Connected successfully, but no Agents were found at this endpoint (/list-apps is empty).",addAgent:"Failed to add Agent: {{message}}",modelApiKeyRequired:"Enter the API key for this model endpoint."}},poe={title:"Workspaces",detail:"Workspace details",create:"New workspace",editorDescription:"Group frequently used environments. An environment can belong to multiple workspaces.",backToList:"Back to workspaces",environmentCount_one:"{{count}} environment",environmentCount_other:"{{count}} environments",createdAt:"Created",updatedAt:"Last updated",basicInfo:"Basic information",namePlaceholder:"For example: Content production",descriptionPlaceholder:"Describe what this workspace is for",selectedEnvironmentCount:"{{count}} selected; they can also be reused in other workspaces",searchAvailableEnvironments:"Search available environments",searchEnvironments:"Search environments",noAvailableEnvironments:"No environments are available to add",createEnvironmentFirst:"Create and build an environment on the Environments page first.",noMatchingEnvironments:"No matching environments",tryAnotherName:"Try searching for another name.",environmentStatus:{available:"Available",building:"Building",notBuilt:"Not built"},added:"Added",saved:"Workspace “{{name}}” saved",resourceType:"Workspace resource type",searchWorkspaces:"Search workspaces",loadFailed:"Unable to load workspaces",noMatchingWorkspaces:"No matching workspaces",tryAnotherNameOrEnvironment:"Try another name or environment",noEnvironmentAdded:"No environments added",environmentMissing:"Environment missing",availableFraction:"{{available}}/{{total}} available",available:"Available",availableCount:"{{count}} available",updated:"Updated",addEnvironment:"Add environment",deleteTitle:"Delete workspace",deleteDescription:"Delete workspace “{{name}}”? Its environments will not be deleted.",deleted:"Workspace “{{name}}” deleted",clipboardPermissionError:"Could not read the clipboard. Allow clipboard access, or open Import environment and paste the share code manually.",clipboardUnsupported:"This browser cannot read the clipboard automatically. Open Import environment and paste the share code manually."},moe={back:"Back",detailNavigation:"Detail navigation",noData:"No data",actions:"Actions",moreActions:"More actions for {{label}}",actionsFor:"Actions for {{label}}",loading:"Loading resources…"},goe={addSkill:"Add Skill",remove:"Remove {{name}}",confirmRemoveRuntime:"Remove the running Skill “{{name}}” from the new version?",selectedCount:"Added skills · {{count}}",close:"Close {{label}}",sources:{runtime:"Running source · Preserved as-is; remove it or replace it with a Skill of the same name",local:"Local",skillspace:"AgentKit Skills Center",skillhub:"Volcengine Find Skill marketplace"},tabs:{local:"Local files",localShort:"Local files",skillspace:"AgentKit Skills Center",skillspaceShort:"AgentKit",skillhub:"Volcengine Find Skill marketplace",skillhubShort:"Find Skill"}},boe={tasks:{ppt:"Presentation",image:"Image generation",video:"Video generation"},prompts:{ppt:{quarterlyReview:"Review 【quarter】 business performance, highlighting metric gaps, causes, and recommended actions",projectUpdate:"Present the progress of 【project name】: milestones, risks, budget, and resource requests",solutionProposal:"Create a solution proposal for 【customer industry】: pain points, architecture, implementation plan, and benefits",industryAnalysis:"Analyze trends in 【industry topic】 and recommend strategic opportunities based on the competitive landscape"},image:{launchVisual:"Design a 【high-tech】 launch-event key visual for 【brand or product】",ecommercePoster:"Create an e-commerce poster for 【product name】 that highlights 【core selling point】 and brand colors",conceptRendering:"Create a photorealistic concept rendering of 【product or space】 in 【usage scenario】",socialGraphic:"Create a concise, professional corporate social graphic for 【campaign theme】"},video:{brandFilm:"Create a 30-second promotional video for 【brand name】 that highlights 【brand value】",productLaunch:"Create a 45-second launch video for 【product name】 covering the pain point, features, scenarios, and call to action",trainingVideo:"Create a corporate training video about 【training topic】 that clearly explains 【key procedure or policy】",eventTeaser:"Create a 20-second teaser for 【event name】 with highlights, time and location, and registration details"}},firstFrame:"First frame",videoToEdit:"Video to edit",baseVideo:"Base video",optimizeSkillPlaceholder:"Describe the skill you want to improve…",createSkillPlaceholder:"Describe the skill you want to create…",createVideoPlaceholder:"Describe the video you want to create…",messageAgentPlaceholder:"Message {{name}}…",selectAgentFirst:"Select an agent first",selectSkillFirst:"Select the Skill you want to improve first",availableSkills:"Available skills",availableSubagents:"Available sub-agents",invokeSkill:"Use a skill",useSubagent:"Use a sub-agent",loadingCapabilities:"Loading Agent capabilities…",noMatchingSkills:"No matching skills for this Agent",noMatchingSubagents:"No matching sub-agents for this Agent",skillFallbackDescription:"Load and run this skill",agentFallbackDescription:"Hand this turn to the Agent",skill:"Skill",uploadImage:"Upload image",uploadDocument:"Upload document or PDF",uploadVideo:"Upload video",taskMode:"Task mode",selectTaskMode:"Select a task mode",loadingGenerationModel:"Loading generation model",modelUnavailable:"Model unavailable",cancelTask:"Cancel {{task}} task",stopGenerating:"Stop generating",viewVideoProgress:"View video generation progress",send:"Send",selectTaskType:"Select a task type",enterprisePrompts:"{{task}} enterprise prompts",sessionId:"Session ID",sessionIdLabel:"Session ID: ",initializing:"Initializing",copied:"Copied",copySessionId:"Copy session ID",sessionIdCopied:"Session ID copied",disclaimer:"Responses may be inaccurate",viewLogs:"View logs"},yoe={selectAgent:"Select Agent",noLocalAgents:"No local Agents.",searchRuntime:"Search Runtime names",mineOnly:"Created by me",noRuntimes:"No Runtimes.",unsupported:"Unsupported",createdByMe:"Created by me",connecting:"Connecting…",connected:"Connected",connect:"Connect",viewInfoFor:"View information for {{name}}",viewInfo:"View information",agentAndRuntimeInfo:"Agent and Runtime information",detailType:"Detail type",agentInfo:"Agent information",runtimeInfo:"Runtime information",loadingAgentInfo:"Loading Agent information…",cannotLoadAgentInfo:"Agent information is temporarily unavailable",unnamedAgent:"Unnamed Agent",subagents:"Sub-agents",tools:"Tools",skills:"Skills",previewUnsupported:"Preview unavailable",mountedComponents:"Mounted components",noMoreAgentInfo:"No additional Agent configuration information.",local:"Local",model:"Model",status:"Status",memoryMb:"Memory {{value}} MB",instances:"Instances {{min}}–{{max}}",resources:"Resources",version:"Version",loadingDetails:"Loading details…",environmentVariables:"Environment variables",errors:{notFound:"This Runtime no longer exists or the list is out of date. Refresh the list and try again.",accessDenied:"This account cannot access the Runtime. Check its Project and access permissions.",previewUnsupported:"This Agent Server version does not support information previews.",unavailable:"This Runtime is temporarily unavailable. Confirm that its status is Ready and try again.",timeout:"Loading timed out. Try again."},componentKinds:{knowledgebase:"Knowledge base",memory:"Memory",prompt_manager:"Prompt manager",example_store:"Example store",run_processor:"Run processor",tracer:"Trace",toolset:"Toolset",plugin:"Plugin",other:"Other"},runtimeStatus:{ready:"Ready",unreleased:"Unreleased",running:"Running",active:"Running",creating:"Creating",pending:"Pending",deploying:"Deploying",updating:"Updating",failed:"Failed",error:"Error",stopping:"Stopping",stopped:"Stopped",deleting:"Deleting",deleted:"Deleted"}},voe={agent:"Agents",agentTypes:{general:"General Agents",codex:"Codex","deepseek-harness":"DeepSeek",openclaw:"OpenClaw",hermes:"Hermes"},creator:"Created by",namedAgent:"{{name}} Agent",storageLocation:"Storage location",currentBrowser:"Current browser",region:"Region",viewDeploymentProgress:"View deployment progress for {{name}}",viewRuntimeDetails:"View Runtime details for {{name}}",viewDetails:"View details for {{name}}",time:"Time",remainingTime:"Time remaining",expiringSoon:"Expiring soon",sandboxRemaining:"{{hours}} hr {{minutes}} min",wakeable:"Asleep",neverExpires:"Never expires",editDraftNamed:"Edit draft {{name}}",viewProgress:"View progress",deleteDraftNamed:"Delete draft {{name}}",recheckCompatibility:"Check chat compatibility for {{name}} again",connectedNamed:"{{name}} is connected",wakeAndChat:"Wake {{name}} and start chatting",chatWith:"Chat with {{name}}",waking:"Waking…",deploying:"Deploying",draft:"Draft",checking:"Checking",chatUnsupported:"Chat unsupported",checkFailed:"Check failed",creatorFilter:"Creator filter",agentType:"Agent type",searchAgents:"Search Agents",handoff:"Handoff",agentList:"{{type}} list",noMatchingAgents:"No matching Agents",adjustSearch:"Try adjusting the search or filters",noAgentType:"No {{type}}",noGeneralAgents:"No General Agents",createGeneralAgentDescription:"Create a General Agent to start building and chatting",createAgentType:"Create {{type}}",createAgent:"Create Agent",loadingMore:"Loading more Agents",scrollForMore:"Scroll down to load more",allLoaded:"All Agents loaded",deleteDraftTitle:"Delete draft?",deleteDraftDescription:"“{{name}}” cannot be recovered after deletion.",deleteDraft:"Delete draft",loadGeneralAgents:"Load General Agents",loadAgentType:"Load {{type}}",compatibility:{checking:"Requesting Runtime /list-apps to confirm that this Agent supports Studio chat.",empty:"Runtime /list-apps returned no available Agents, so chat is currently unavailable.",supported:"This Runtime supports Studio chat.",unknownError:"The Runtime /list-apps request failed without a recognizable error."},sandboxStatus:{ready:"Ready",wakeable:"Asleep",creating:"Creating",starting:"Starting",initializing:"Starting",pending:"Pending",running:"Running",failed:"Error",error:"Error",stopped:"Stopped",expired:"Expired",deleting:"Deleting",deleted:"Deleted",unknown:"Unknown status"},wakingHint:"Waking the agent. This may take some time."},xoe={library:"Skill library",skill:"Skill",skills:"Skills",skillSpace:"Skill space",sandboxNotConfigured:"Dev Sandbox is not configured by an administrator",adminNotConfigured:"Not configured by an administrator",totalItems:"{{count}} items",cannotLoadSpaces:"Unable to load Skill spaces",someSpacesFailed:"Some Skill spaces failed to load",degradedRelationWarning:"Some relations are invalid. Readable skills have been restored.",downloadZip:"Download ZIP",optimize:"Optimize",closeSkillDetails:"Close Skill details",skillId:"Skill ID",allFiles:"All files",loadingSkillContent:"Loading Skill content…",noSkillContent:"This Skill has no SKILL.md content",addSkill:"Add Skill",localUpload:"Upload locally",localUploadDescription:"Select a ZIP file and upload it to the Skill space after validation",autoCreate:"Create automatically",autoCreateDescription:"Choose a model and style, then create a Skill through conversation",createSkill:"Create Skill",optimizeNamed:"Optimize {{name}}",deleteSkillConfirm:"Delete the entire Skill “{{name}}”? This affects every space that references it.",deleteSpaceConfirm:"Delete Skill space “{{name}}”? Make sure its Skills have been deleted first.",manageSpaceDescription:"Manage Skills in this space and create new versions",backToSpaces:"Back to Skill spaces",overview:"Overview",skillCount:"Skills",skillCountValue_one:"{{count}} Skill",skillCountValue_other:"{{count}} Skills",updatedAt:"Updated",skillsInSpace:"Skills in {{name}}",searchSkills:"Search Skills",cannotLoadSkills:"Unable to load Skills",noMatchingSkills:"No matching Skills",noSkills:"No Skills",tryAnotherName:"Try searching for another name",emptySkillsDescription:"Upload a Skill locally or create one automatically",actions:"Actions",spaceDetails:"Skill space details",editSpace:"Edit space",deleteSpace:"Delete space",searchSpaces:"Search Skill spaces",spaceList:"Skill space list",noMatchingSpaces:"No matching Skill spaces",createSpace:"Create Skill space",newSpace:"New space",loadingMoreSpaces:"Loading more Skill spaces",scrollForMore:"Scroll down to load more",allSpacesLoaded:"All Skill spaces loaded",errors:{loadSpaces:"Unable to load Skill spaces. Try again later.",loadSkills:"Unable to load Skills. Try again later.",loadSkillDetails:"Unable to load Skill details. Try again later.",deleteSkill:"Unable to delete the Skill",deleteSpace:"Unable to delete the Skill space",downloadSkill:"Unable to download the Skill"},status:{active:"Available",available:"Available",creating:"Creating",disabled:"Disabled",enabled:"Enabled",failed:"Error",inactive:"Inactive",pending:"Pending",published:"Published",ready:"Ready",released:"Published",running:"Running",success:"Healthy",unavailable:"Unavailable",unreleased:"Unreleased",updating:"Updating",unknown:"Unknown"}},woe={library:"Knowledge bases",createBase:"New knowledge base",editBase:"Edit knowledge base",invalidName:"The name must start with a letter and contain only letters, numbers, and underscores.",nameHelp:"Start with a letter. Use up to 48 letters, numbers, or underscores.",optionalDescription:"Description (optional)",descriptionOnly:"AgentKit currently supports updating only the knowledge base description.",previewWeb:"Preview web content",addData:"Add data",openOriginalWeb:"Open original page",backToEdit:"Back to edit",confirmAdd:"Confirm and add",source:"Knowledge source",image:"Image",documentFile:"Document file",webPage:"Web page",webUrl:"Web page URL",generatingWebPreview:"Fetching the page and generating a Markdown preview",selectFile:"Select knowledge file",selectOrDropFile:"Select a file or drag it here",selectedFile:"{{size}} · Click to select another file",imageFileHelp:"PNG, JPG, and JPEG up to 200 MB",documentFileHelp:"PDF, PPTX, DOCX, XLSX, and TXT up to 200 MB",uploadingFile:"Uploading the file and adding it to the knowledge base",optionalName:"Name (optional)",optionalType:"Type (optional)",generatePreview:"Generate preview",uploadFile:"Upload file",editMetadata:"Edit knowledge metadata",knowledge:"Knowledge item",field:"Field",value:"Value",backToList:"Back to knowledge bases",metadataJson:"Metadata (JSON)",provider:"Provider",knowledgeId:"Knowledge ID",project:"Project",creator:"Created by",data:"Data",deleteInvalidAssociation:"Delete invalid association",noData:"This knowledge base has no data",addFirstData:"Add the first data item",format:"Format",size:"Size",searchData:"Search data",searchLibraryData:"Search knowledge base data",associationInvalid:"Association invalid",providerMissing:"The underlying Provider knowledge base no longer exists",noMatchingData:"No matching data",loadingMoreData:"Loading more data",retryLoading:"Retry loading",details:"Knowledge base details",searchBases:"Search knowledge bases",someBasesFailed:"Some knowledge bases are temporarily unavailable. Other available content is shown.",noMatchingBases:"No matching knowledge bases",noManagePermission:"You do not have permission to manage this knowledge base",loadingMoreBases:"Loading more knowledge bases",deleteBaseTitle:"Delete knowledge base?",deleteBaseDescription:"This removes the AgentKit association for {{name}}. If Studio created it, the Provider resource is also deleted. This cannot be undone.",deleteDocumentTitle:"Delete knowledge item?",deleteDocumentDescription:"This removes {{name}} from the Provider knowledge base. This cannot be undone.",preview:{processingTitle:"Data is being processed",processingDetail:"A preview will be available after parsing. Reload later.",failedTitle:"Data parsing failed",failedDetail:"Check the source file or page URL and add it again, or reload the latest status.",noParsedTitle:"No parsed content is available yet",noParsedDetail:"Text, tables, or page images will appear after the knowledge base finishes parsing this file.",noMediaTitle:"No media preview is available yet",noMediaDetail:"The knowledge base has not returned an accessible media preview. Reload later.",noDataTitle:"No data is available to preview",noDataDetail:"The knowledge base has not returned parsed results. Reload later.",attachmentError:"The attachment cannot be previewed. Try again later.",imageAlt:"Knowledge data image",audioUnsupported:"This browser does not support audio previews.",videoUnsupported:"This browser does not support video previews.",namedPdf:"{{name}} PDF preview",pdf:"PDF preview",openPdf:"If it cannot be displayed, open the PDF in a new window",fileUnsupported:"This format cannot be previewed directly online. Parsed content is shown when available.",openOriginalFile:"Open original file",loading:"Loading data preview",openOriginalHint:"You can open the original page to view the source content.",chunk:"Chunk {{index}}",loadingMore:"Loading more",loadMore:"Load more"},errors:{fileTooLarge:"A file cannot exceed 200 MB",invalidImageType:"Select a PNG, JPG, or JPEG image",invalidDocumentType:"Select a PDF, PPTX, DOCX, XLSX, or TXT file",createBase:"Unable to create the knowledge base",updateBase:"Unable to update the knowledge base",metadataObject:"Metadata must be a JSON object",metadataFormat:"Invalid metadata format",noWebPreview:"The page has no Markdown content to preview",addWeb:"Unable to add the web page",previewWeb:"Unable to generate the web page preview",uploadFile:"Unable to upload the file",updateDocument:"Unable to update the knowledge item",loadPreview:"Unable to load the data preview",loadMoreBases:"Unable to load more knowledge bases",loadBases:"Unable to load knowledge bases",loadMoreData:"Unable to load more data",loadData:"Unable to load data",deleteBase:"Unable to delete the knowledge base",deleteDocument:"Unable to delete the knowledge item"}},iMe={common:eoe,agentKitPromo:toe,systemInfo:noe,agentWorkspace:ioe,environmentCenter:roe,deploymentSelect:soe,deploymentError:aoe,studioBuildProgress:ooe,cloudEnvironment:loe,githubCicd:coe,feishuDeployment:uoe,deploymentResources:doe,studioUpdate:foe,projectPreview:hoe,workspace:poe,resourceCollection:moe,skillSourcePicker:goe,composer:boe,agentSelector:yoe,myAgents:voe,skillCenter:xoe,knowledge:woe},rMe=Object.freeze(Object.defineProperty({__proto__:null,agentKitPromo:toe,agentSelector:yoe,agentWorkspace:ioe,cloudEnvironment:loe,common:eoe,composer:boe,default:iMe,deploymentError:aoe,deploymentResources:doe,deploymentSelect:soe,environmentCenter:roe,feishuDeployment:uoe,githubCicd:coe,knowledge:woe,myAgents:voe,projectPreview:hoe,resourceCollection:moe,skillCenter:xoe,skillSourcePicker:goe,studioBuildProgress:ooe,studioUpdate:foe,systemInfo:noe,workspace:poe},Symbol.toStringTag,{value:"Module"})),Ooe="Website integration",Soe="Embed an AgentKit Runtime on your website as a floating chat window",koe="Back to automations",Eoe="Add website",Coe="Loading Runtime",Toe="Select Runtime",Aoe="Website domain",_oe="For example, xxxx.com or localhost:5173",Noe="Generating",joe="Generate token",Roe="Added websites",Ioe="{{count}} website",Poe="{{count}} websites",Doe="Loading website integrations",Moe="No website integrations yet",Loe="Select a Runtime and enter a website domain to generate a token",$oe="Embed instructions",Foe="Place this code before the closing body tag on your website",Boe="Copied",Uoe="Copy code",Qoe="Embed code will appear here after you add a website.",zoe="Delete the website integration for {{domain}}?",Voe={load:"Failed to load website integrations",create:"Failed to create website integration",delete:"Failed to delete website integration",noConversationalAgent:"No conversational Agent was found in this Runtime"},Hoe={requestFailed:"Request failed ({{status}})",greeting:"Hello. How can I help?",sessionFailed:"Could not start a chat session",unauthorized:"This website is not authorized to start a chat",conversationFailed:"The chat request failed. Try again shortly.",open:"Open Agent chat",close:"Close Agent chat",panelLabel:"Agent chat panel",assistant:"Agent assistant",online:"Online"},sMe={title:Ooe,description:Soe,backToAutomations:koe,addWebsite:Eoe,loadingRuntime:Coe,selectRuntime:Toe,websiteDomain:Aoe,domainPlaceholder:_oe,generating:Noe,generateToken:joe,addedWebsites:Roe,websiteCount_one:Ioe,websiteCount_other:Poe,loadingIntegrations:Doe,delete:"Delete",emptyTitle:Moe,emptyDescription:Loe,embedMethod:$oe,embedInstructions:Foe,copied:Boe,copyCode:Uoe,embedHint:Qoe,confirmDelete:zoe,errors:Voe,widget:Hoe},aMe=Object.freeze(Object.defineProperty({__proto__:null,addWebsite:Eoe,addedWebsites:Roe,backToAutomations:koe,confirmDelete:zoe,copied:Boe,copyCode:Uoe,default:sMe,description:Soe,domainPlaceholder:_oe,embedHint:Qoe,embedInstructions:Foe,embedMethod:$oe,emptyDescription:Loe,emptyTitle:Moe,errors:Voe,generateToken:joe,generating:Noe,loadingIntegrations:Doe,loadingRuntime:Coe,selectRuntime:Toe,title:Ooe,websiteCount_one:Ioe,websiteCount_other:Poe,websiteDomain:Aoe,widget:Hoe},Symbol.toStringTag,{value:"Module"})),qoe={types:{all:"All types",document:"Documents",image:"Images",video:"Videos"},previewArtifact:"Preview {{name}}",moreActions:"More actions for {{name}}",actionMenu:"Actions for {{name}}",download:"Download",downloading:"Downloading",edit:"Edit details",delete:"Delete artifact",previewFailed:"Could not preview “{{name}}”: {{message}}",downloadStarted:"Download started for {{name}}",downloadFailed:"Could not download “{{name}}”: {{message}}",updated:"Updated {{name}}",deleted:"Deleted {{name}}",deleteFailed:"Could not delete “{{name}}”: {{message}}",typeFilter:"Artifact type",searchAria:"Search artifacts",searchPlaceholder:"Search artifacts or sessions",retry:"Retry",close:"Close",listAria:"Artifact list",loadFailed:"Could not load artifacts",loadDetailFallback:"Check the storage configuration and try again.",reload:"Reload",noMatch:"No matching artifacts",noArtifacts:"You do not have any artifacts yet",searchHint:"Try another search or artifact type",emptyHint:"Artifacts created in chats will appear here automatically",columns:{name:"Name",source:"Source",updatedAt:"Modified",actions:"Actions"},loadingMore:"Loading more artifacts",unknownTime:"Unknown time",preview:{close:"Close preview",meta:"{{type}} / Version {{version}}",loading:"Loading preview",alt:"Preview of {{name}}",loadFailed:"The preview could not be loaded. Try again later or download the file.",unsupported:"This format cannot be previewed online. Download the file to view it.",sourceAria:"Artifact source",agent:"Agent",session:"Session",tool:"Generated by",createdAt:"Created",fileSize:"File size",tags:"Tags",viewSession:"View session"},deleteDialog:{title:"Delete artifact?",description:"“{{name}}” will be permanently removed from the artifact library. The chat history will not be affected.",deleting:"Deleting",confirm:"Delete",close:"Close delete confirmation"},api:{withStatus:"{{message}} ({{status}})",listFailed:"Could not load the artifact library",syncFailed:"Could not sync chat artifacts",updateFailed:"Could not update the artifact",deleteFailed:"Could not delete the artifact",downloadFailed:"Could not download the artifact"}},Woe={unknownSource:"Unknown source",unknownCreator:"Unknown creator"},Goe={nameRequired:"Enter an artifact name",tooManyTags:"You can add up to {{max}} tags",tagTooLong:"Each tag can contain up to {{max}} characters",title:"Edit artifact details",subtitle:"The content file will not be modified",close:"Close edit dialog",name:"Name",description:"Description",descriptionPlaceholder:"Add its purpose, version, or usage notes",tags:"Tags",tagsPlaceholder:"Separate tags with commas, up to {{max}}",cancel:"Cancel",saving:"Saving",save:"Save"},Koe={change:{added:"Added",modified:"Modified",deleted:"Deleted"},noChanges:"There are no source changes between these versions",chooseFile:"Select a file on the left to view its code",compareTitle:"Compare versions",workspaceTitle:"Source workspace",projectFallback:"Agent project",switchTheme:"Switch source theme",switchThemeTitle:"Switch to {{theme}} theme",themes:{dark:"dark",light:"light"},closeWorkspace:"Close source workspace",close:"Close",changedFiles:"Changed files",projectFiles:"Project files",changes:"Changes",files:"Files",openFiles:"Open files",noFileSelected:"No file selected",comparisonDirection:"Comparison direction",before:"Before optimization",after:"After optimization",loadingEditor:"Loading editor…",changedFileCount_one:"{{count}} file changed",changedFileCount_other:"{{count}} files changed",fileCount_one:"{{count}} file",fileCount_other:"{{count}} files",lineCount_one:"{{count}} line · UTF-8",lineCount_other:"{{count}} lines · UTF-8",viewSource:"View source",viewSourceAria:"View and edit project source"},Xoe={nav:"Search",selectAgent:"Select an Agent",checkingCapabilities:"Checking Agent capabilities",notMounted:"This Agent does not have {{label}} mounted",sources:{session:"Sessions",web:"Web",knowledge:"Knowledge base",memory:"Long-term memory"},webDescription:"Search with the web_search tool",backendLocal:"Local",failed:"Search failed: {{message}}",placeholder:{selectAgent:"Select an Agent first",web:"Search the web",knowledge:"Search {{name}}",knowledgeFallback:"this Agent's knowledge base",memory:"Search {{name}}",memoryFallback:"this user's long-term memory",session:"Search this Agent's sessions"},sourceTypeAria:"Search source: {{label}}",notSelected:"Not selected",sourceType:"Search source",selectSource:"Select a search source",noAgentHint:"Select an Agent to search its sessions, the web, and mounted data sources.",loadingCapabilities:"Loading this Agent's search capabilities…",sourceUnavailable:"This Agent does not have this data source mounted",instructions:{web:"Enter keywords and press Enter or select the button to search with web_search.",knowledge:"Enter a question to search this Agent's knowledge base.",memory:"Enter a clue to search long-term memories saved across this user's sessions.",session:"Enter keywords and press Enter or select the button to search this Agent's sessions."},noResults:"No results found for “{{query}}”.",knowledgeFragment:"Knowledge excerpt {{index}}",memoryFragment:"Memory excerpt {{index}}"},Yoe={title:"Developer Resources",sections:{documentation:{title:"Related links",description:"Open development documentation and common AgentKit destinations"},bestPractices:{title:"Best practices",description:"Learn from practical development, debugging, and deployment guidance"},showcases:{title:"Showcases",description:"Explore applications built with AgentKit"}},links:{veadkDocs:"VeADK documentation",cliDocs:"AgentKit CLI documentation",platformDocs:"AgentKit platform documentation",console:"AgentKit console"},articles:{veadkDevelopment:{title:"Develop and deploy an Agent with VeADK",description:"Build an Agent with VeADK and deploy it to AgentKit Runtime."},cliDevelopment:{title:"Develop and deploy an Agent with AgentKit CLI",description:"Create a project, debug an Agent, and deploy it with AgentKit CLI."},coverAlt:"Cover image for {{title}}"},showcases:{researchAssistant:{title:"Multi-agent research assistant",description:"Specialized Agents work together to research, analyze, and summarize findings."},multimodalAnalysis:{title:"Multimodal content analysis",description:"Understand images, documents, and video in a single session."},customerService:{title:"Customer service workspace",description:"Combine knowledge retrieval and tool calls to handle complex support requests."},webSearch:{title:"Web search Agent",description:"Search current web content and organize it into traceable answers."},a2uiApp:{title:"A2UI interactive app",description:"Let an Agent generate interactive interfaces as it works through a task."},previewAlt:"Interface preview for {{title}}"}},Zoe={title:"Library",untitledSession:"Untitled session",categoryAria:"Library categories",regionAria:"Region",tabs:{skills:"Skills",knowledge:"Knowledge",artifacts:"Artifacts"}},Joe={title:"Manage Agents",subtitle:"Agents in AgentKit Runtime that you can manage",mainAgentOnly:"Only the main Agent is shown (control-plane information).",deleteConfirm:'Delete Agent "{{name}}"? Its Runtime will be permanently deleted.',regionFilterTitle:"Filter by region",regionFilterAria:"Region filter",regionAria:"Region",refresh:"Refresh",loading:"Loading…",empty:"You have not deployed any Agents.",connected:"Connected",connect:"Connect to this Agent",deleteRuntime:"Delete this Runtime",loadingDetail:"Loading details…",agentStructure:"Agent structure",secretHidden:"Sensitive value hidden. Select to reveal it.",revealSecret:"Show the value of {{key}}",fields:{model:"Model",description:"Description",status:"Status details",project:"Project",version:"Version",resources:"Resources",memory:"Memory",tool:"Tool",knowledge:"Knowledge",mcpToolset:"MCP Toolset",updatedAt:"Updated"},resource:{memory:"Memory {{value}} MB",instances:"Instances {{min}}-{{max}}",concurrency:"Concurrency {{value}}"},environmentVariables:"Environment variables",unnamed:"(Unnamed)"},ele={mainAgent:"Main Agent",subAgent:"Sub-agent {{index}}",itemCount_one:"{{count}} item",itemCount_other:"{{count}} items",info:"Agent information",infoAndTopology:"Agent information and topology",loadingInfo:"Loading Agent information…",unnamedAgent:"Unnamed Agent",tools:"Tools",toolList:"Tool list",studioTool:"Studio Tool",removeTool:"Remove tool {{name}}",remove:"Remove",notConfigured:"Not configured",addStudioTool:"Add Studio tools",addStudioToolHere:"Add Studio tools to this chat",skills:"Skills",skillList:"Skill list",previewUnsupported:"Preview is not supported",sessionEnvironment:"Session environment",environment:"Environment",agentCanvas:"Agent canvas",topology:"Structure",viewCanvasFullscreen:"View Agent canvas in full screen",viewFullscreen:"View full screen",executionCanvas:"Agent execution canvas",fullscreenExecutionCanvas:"Full-screen Agent execution canvas",closeFullscreenCanvas:"Close full-screen canvas",close:"Close",capabilitiesSubtitle:"Capabilities and collaboration topology",closeInfo:"Close Agent information",infoUnavailable:"Agent information is temporarily unavailable."},tle={mountFailed:"Could not mount the environment",closeDialog:"Close environment dialog",addTitle:"Add environments",description:"Choose the Sandbox environments this Agent can use in the current session",closeAdd:"Close Add environments",searchAria:"Search environments",searchPlaceholder:"Search environment names or capabilities",availableAria:"Available environments and workspaces",loading:"Loading available environments…",noMatch:"No matching environments or workspaces",workspaces:"Workspaces",reuseAll:"Use every available environment in this workspace",availableEnvironmentCount_one:"{{count}} available environment",availableEnvironmentCount_other:"{{count}} available environments",selectWorkspace:"Select workspace {{name}}",environments:"Environments",includedByWorkspaces:"Included by workspace {{names}}",nameSeparator:", ",selectEnvironment:"Select environment {{name}}",selectedWorkspaceCount_one:"{{count}} workspace selected",selectedWorkspaceCount_other:"{{count}} workspaces selected",coveredEnvironmentCount_one:"{{count}} environment covered",coveredEnvironmentCount_other:"{{count}} environments covered",selectionSummary:"{{workspaces}}, {{environments}}",cancel:"Cancel",mounting:"Mounting…",confirm:"Add selected",mountedAria:"Mounted environments",environmentCount_one:"{{count}} environment",environmentCount_other:"{{count}} environments",removeWorkspace:"Remove workspace {{name}}",remove:"Remove",removeEnvironment:"Remove environment {{name}}",add:"Add environments",addMore:"Add more environments",addForSession:"Add environments to this session",loadingAvailable:"Loading available environments…",empty:"No AIO Sandbox environments are available."},nle={loading:{searching:"Looking for an existing environment",creating:"Initializing environment",connecting:"Connecting to the environment"},initializationFailed:"AgentKit CLI environment initialization failed. Current status: {{status}}.",sessionExpired:"The AgentKit CLI session does not exist or has expired. Try again.",initializationTimeout:"AgentKit CLI environment initialization timed out. Try again later.",nonPersistent:"Non-persistent environment",recyclingHoursMinutes:"Environment reclaimed in {{hours}} hr {{minutes}} min",recyclingMinutes:"Environment reclaimed in {{minutes}} min",connectionError:`Could not connect to the Studio service because the server did not respond. -Original error: {{message}}`,unavailable:"Connection unavailable",requestFailed:"AgentKit CLI request failed",retry:"Retry",terminalTitle:"AgentKit CLI terminal"},ile={labels:{coding:"Coding",get_city_weather:"City weather",get_location_weather:"Location weather",web_fetch:"Fetch web content"},closeDialog:"Close dialog",title:"Add Studio tools",description:"Studio BFF runs these tools for {{agentName}} in the current session. No Runtime installation is required.",close:"Close Add Studio tools",searchAria:"Search Studio tools",searchPlaceholder:"Search by name or tool ID",availableAria:"Available Studio tools",loading:"Loading Studio tools…",noMatch:"No matching Studio tools",remove:"Remove",add:"Add"},rle={artifactLibrary:qoe,resourceMetadata:Woe,artifactEdit:Goe,codeBrowser:Koe,search:Xoe,developerResources:Yoe,library:Zoe,manageAgents:Joe,agentTopology:ele,sessionEnvironment:tle,agentKitCli:nle,studioTools:ile},oMe=Object.freeze(Object.defineProperty({__proto__:null,agentKitCli:nle,agentTopology:ele,artifactEdit:Goe,artifactLibrary:qoe,codeBrowser:Koe,default:rle,developerResources:Yoe,library:Zoe,manageAgents:Joe,resourceMetadata:Woe,search:Xoe,sessionEnvironment:tle,studioTools:ile},Symbol.toStringTag,{value:"Module"})),sle={requestFailed:"请求失败 ({{status}})",unknownError:"未知错误",contentTypeMissing:"Content-Type 缺失",response:"响应:{{response}}",fallbackWithDetail:"{{fallback}}:{{detail}}",fallbackWithHttpStatus:"{{fallback}}(HTTP {{status}})",nonJsonResponse:"{{fallback}}:服务端返回非 JSON 响应({{contentType}})"},ale={unconfigured:"管理员未配置 AgentKit Dev Sandbox,请配置后再使用",invalidSession:"AgentKit CLI 返回了无效的 Session。",loadCapabilitiesFailed:"无法读取 AgentKit CLI 配置。",invalidCapabilities:"AgentKit CLI 返回了无效的配置状态。",listSessionsFailed:"无法读取 AgentKit CLI Session。",invalidSessionList:"AgentKit CLI 返回了无效的 Session 列表。",createSessionFailed:"无法创建 AgentKit CLI Session。",openSessionFailed:"无法打开 AgentKit CLI Session。",openTerminalFailed:"无法打开 AgentKit CLI 终端。",invalidTerminalUrl:"AgentKit CLI 返回了无效的终端地址。"},ole={cnBeijing:"华北 2(北京)",cnShanghai:"华东 2(上海)"},lle={runtimeUnsupported:"该 Runtime 暂不支持连接,请确认服务已正常运行。"},cle={autoConfigureFailed:"飞书机器人自动配置失败"},ule={actionFailed:"{{action}}失败",detail:"详细信息:{{detail}}",request:"请求:{{request}}"},dle={persistentMemoryHint:"提示:会话已不存在。使用 in-memory 或 SQLite 短期记忆时,多实例、进程重启或滚动发布都可能导致会话丢失;建议改用基于数据库的持久化短期记忆存储。",unsupportedRouteHint:"提示:该 Runtime 未提供会话能力运行接口,可能是 Runtime 版本与当前 Studio 不兼容。",toolArgumentHint:"提示:模型生成的工具参数格式不完整,请重新发送一次。",resourceCollectionExpiredHint:"提示:本次资源清单已失效,请重新发送任务;系统会重新收集资源后再创建 Agent。",networkConfigurationHint:"提示:请检查共享公网出口等网络配置,然后重试。",modelQuotaHint:"提示:模型当前触发了 TPM/RPM 配额限制,请稍后重试或提高模型配额。",rawResponseLabel:"原始响应:"},fle={httpStatus:"HTTP 状态码:{{status}}",errorCode:"错误码:{{code}}",cloudResponseBody:`云端响应正文: -{{body}}`,loadFailedWithDetail:"读取实例日志失败:{{detail}}",invalidFormat:"读取实例日志失败:服务返回格式无效"},hle={untitledSession:"未命名会话",webUnavailable:"网络搜索接口未就绪(后端未启用 /web/search)。",webFailed:"网络搜索失败:{{message}}",webNotMounted:"当前 Agent 未挂载 web_search 工具。",knowledgeNotMounted:"该 Agent 未挂载知识库。",memoryNotMounted:"该 Agent 未挂载长期记忆。",knowledge:"知识库",longTermMemory:"长期记忆"},ple={listSpacesFailed:"读取 Skill 空间失败",createSpaceFailed:"创建 Skill 空间失败",updateSpaceFailed:"更新 Skill 空间失败",deleteSpaceFailed:"删除 Skill 空间失败",uploadFailed:"上传 Skill 失败",validateFailed:"校验 Skill 失败",deleteFailed:"删除 Skill 失败",listFilesFailed:"读取 Skill 文件失败",downloadFailed:"下载 Skill 失败"},mle={truncatedData:"{{data}}…(已截断,共 {{count}} 个字符)",incompleteEvent:"SSE 流在事件完整返回前已结束。原始数据:{{data}}",invalidEventJson:"无法解析 SSE 事件中的 JSON。原始数据:{{data}}"},gle={loadConfigNetworkFailed:"无法加载登录配置,请检查网络后重试。",configServiceFailed:"登录配置服务异常(HTTP {{status}}),请稍后重试。",invalidConfigResponse:"登录配置服务返回了无法解析的响应,请稍后重试。",serviceNetworkFailed:"无法连接身份服务,请检查网络后重试。",invalidServiceResponse:"身份服务返回了无法解析的响应,请稍后重试。",serviceFailed:"身份服务异常(HTTP {{status}}),请稍后重试。"},ble={invalidToken:"GitHub Token 无效或没有仓库写入权限",notFound:"仓库、分支或文件不存在,或 Token 无权访问",rejectedCommit:"GitHub 拒绝了提交,请检查分支和文件状态",requestFailed:"GitHub 请求失败(HTTP {{status}})",networkFailed:"连接 GitHub 失败,请检查网络后重试",invalidRepositoryFormat:"GitHub Repo 格式应为 owner/repository",insecureRepositoryUrl:"仅支持安全的 github.com 仓库地址",unsafeProjectPath:"Agent 项目目录必须是仓库内的安全相对路径",tokenRequired:"GitHub Token 不能为空",invalidBaseBranch:"目标分支格式不正确",invalidPublishBranch:"发布分支格式不正确",noFiles:"没有需要提交的文件",missingBaseSha:"目标分支缺少有效 Git SHA",fileAlreadyExists:"目标仓库中已存在 {{path}},未覆盖现有文件",pathNotUpdatable:"目标路径 {{path}} 不是可更新的文件",invalidPullRequest:"GitHub 未返回有效的 Pull Request"},yle={loadCapabilitiesFailed:"加载视频模型能力失败",uploadAssetFailed:"上传{{fileName}}失败",enhancePromptFailed:"提示词优化失败",createTaskFailed:"创建视频生成任务失败",getTaskFailed:"查询视频生成任务失败",downloadFailed:"下载生成视频失败"},vle={listFailed:"加载网站集成失败",createFailed:"创建网站集成失败",deleteFailed:"删除网站集成失败"},xle={loadFailed:"读取知识库失败",htmlHidden:"[HTML 内容已隐藏]",redacted:"[已脱敏]",depthTruncated:"[内容过深,已截断]",circularReference:"[循环引用]",diagnosticsUnavailable:"[诊断信息无法显示]",statusCode:"状态码:{{status}}",errorCode:"错误码:{{code}}",requestId:"请求 ID:{{requestId}}",diagnostics:"诊断:{{diagnostics}}",detail:"详情:{{detail}}",signInRequired:"请先登录后再访问知识库",forbidden:"你没有权限操作这个知识库",notFound:"知识库或知识内容不存在",conflict:"知识库当前状态不允许执行此操作",requestFailed:"知识库请求失败 ({{status}})"},wle={invalidSourceSnapshot:"源码快照的响应格式无效。",invalidProjectList:"项目列表的响应格式无效。",invalidProjectVersion:"项目版本的响应格式无效。",loadProjectsFailed:"无法读取已保存项目",loadVersionsFailed:"无法读取项目版本",deleteVersionFailed:"删除项目版本失败",invalidDeleteVersionResponse:"删除项目版本的响应格式无效。",loadProjectSourceFailed:"无法读取项目源码",loadSnapshotFailed:"无法读取源码快照",restoreSnapshotFailed:"无法恢复当前源码快照",downloadSourceFailed:"下载源码失败",downloadNotZip:"源码下载响应不是 ZIP 文件。",downloadSizeMismatch:"源码压缩包大小与发布记录不一致,请重试。"},Ole={invalidFormat:"{{label}}格式错误。",validationSeparator:";",invalidAnalysisResult:"迁移分析结果格式错误。",invalidFrameworkCandidate:"框架候选格式错误。",invalidAnalysisEvidence:"分析证据格式错误。",invalidEntryCandidate:"入口候选格式错误。",invalidQuestion:"待确认问题格式错误。",invalidTask:"迁移会话格式错误。",invalidAnalysisReference:"分析结果引用格式错误。",invalidSourcePersistence:"迁移源码保存状态格式错误。",invalidActivity:"迁移执行动态格式错误。",invalidActivityItem:"迁移执行动态项格式错误。",invalidActivityTool:"迁移执行工具项格式错误。",invalidActivityPlan:"迁移执行计划格式错误。",invalidActivityPlanItem:"迁移执行计划项格式错误。",invalidArtifact:"迁移产物格式错误。",invalidEnvironmentDefaults:"环境变量默认值格式错误。",invalidArtifactFile:"迁移产物文件格式错误。",invalidVerificationCheck:"迁移校验项格式错误。",requestValidationFailed:"请求参数校验失败:{{detail}}",gatewayError:"{{fallback}}(HTTP {{status}},Content-Type: {{contentType}})。请检查代理或网关配置。",nonJsonResponse:"{{fallback}}:服务端返回非 JSON 响应(HTTP {{status}})。请检查代理或网关配置。",loadCapabilitiesFailed:"读取迁移能力失败",invalidCapabilities:"迁移能力格式错误。",invalidModelCapabilities:"迁移模型能力格式错误。",loadTasksFailed:"读取迁移会话失败",invalidTaskList:"迁移会话列表格式错误。",createTaskFailed:"创建迁移会话失败",uploadProjectFailed:"上传迁移项目失败",loadActivityFailed:"读取迁移执行动态失败",startFailed:"启动迁移失败",submitAnswersFailed:"提交分析补充信息失败",stopFailed:"终止迁移失败",deleteTaskFailed:"删除迁移会话失败",loadArtifactFailed:"读取迁移产物失败",loadArtifactFileFailed:"读取迁移产物文件失败",downloadArtifactFailed:"下载迁移产物失败",labels:{analysisResult:"迁移分析结果",recommendation:"迁移建议",boundary:"迁移边界",frameworkCandidate:"框架候选",analysisEvidence:"分析证据",recommendedFramework:"推荐框架",entryCandidate:"入口候选",entryFramework:"入口框架",includeScope:"迁移包含范围",excludeScope:"迁移排除范围",assumptions:"分析假设",question:"待确认问题",analysisWarnings:"迁移警告",task:"迁移会话",artifactStatus:"迁移产物状态",analysisReference:"分析结果引用",confirmation:"迁移确认",confirmedFramework:"确认框架",error:"迁移错误",sourcePersistence:"迁移源码保存状态",activity:"迁移执行动态",activityItem:"迁移执行动态项",activityTool:"迁移执行工具项",activityPlanItem:"迁移执行计划项",artifact:"迁移产物",cli:"CLI 信息",migration:"迁移信息",startup:"启动信息",environment:"环境变量信息",verification:"校验信息",report:"迁移报告",archive:"产物归档",environmentDefaults:"环境变量默认值",requiredEnvironment:"必需环境变量",optionalEnvironment:"可选环境变量",artifactFile:"迁移产物文件",verificationCheck:"迁移校验项",artifactWarnings:"迁移产物警告",errorResponse:"错误响应",errorDetail:"错误详情",capabilities:"迁移能力",framework:"迁移框架",modelCapabilities:"迁移模型能力",taskList:"迁移会话列表"}},Sle={status:{ready:"就绪",wakeable:"已休眠",creating:"创建中",starting:"启动中",pending:"等待中",running:"运行中",failed:"异常",stopped:"已停止",expired:"已过期",deleting:"删除中",deleted:"已删除",unknown:"未知状态"},developmentTimeout:"等待开发环境响应超时。任务可能仍在运行,请稍后重新进入当前会话查看状态。",developmentDisconnected:"与开发环境的连接已中断。任务可能仍在运行,请稍后重新进入当前会话查看状态。",developmentFailed:"开发任务未能继续,开发环境已保留。请在当前会话重试。",invalidStudioResponse:"{{fallback}} Studio 服务响应异常,请刷新后重试。",invalidSession:"AgentKit 沙箱返回了无效的 Session 信息。",invalidSnapshot:"AgentKit 沙箱返回了无效的 Snapshot 信息。",invalidSettings:"Sandbox 返回了无效设置。",invalidThreadSnapshot:"Sandbox 返回了无效 Thread 快照。",emptyConversationResponse:"沙箱对话服务未返回内容。",invalidConversationResponse:"沙箱对话服务返回了无法解析的响应。",conversationFailed:"沙箱对话失败,请稍后重试。",emptyReply:"沙箱未返回有效回复,请重试。",missingSession:"缺少要操作的 AgentKit Session。",listCodexFailed:"无法读取 Codex 智能体,请稍后重试。",invalidSessionList:"AgentKit 沙箱返回了无效的 Session 列表。",invalidSnapshotList:"AgentKit 沙箱返回了无效的 Snapshot 列表。",startFailed:"无法启动 AgentKit 沙箱,请稍后重试。",listAgentFailed:"无法读取 {{kind}} 智能体,请稍后重试。",invalidKindSessionList:"AgentKit 返回了无效的 {{kind}} Session 列表。",invalidKindSnapshotList:"AgentKit 返回了无效的 {{kind}} Snapshot 列表。",createAgentFailed:"无法创建 {{kind}} 智能体,请稍后重试。",missingSessionToOpen:"缺少要打开的 AgentKit Session。",openAgentFailed:"无法打开 {{kind}} 智能体。",invalidAgentHomeUrl:"{{kind}} 智能体返回了无效的主页面地址。",missingSessionForTerminal:"缺少要打开 Terminal 的 AgentKit Session。",openTerminalFailed:"无法打开 {{kind}} Terminal。",deleteAgentFailed:"无法删除 {{kind}} 智能体。",missingSnapshot:"未找到要唤醒的智能体。",resumeSnapshotFailed:"无法唤醒智能体,请稍后重试。",deleteSnapshotFailed:"无法删除智能体,请稍后重试。",missingSessionToConnect:"缺少要连接的 AgentKit Session。",connectCodexFailed:"无法连接 Codex 智能体,请稍后重试。",sessionNotReady:"AgentKit Session 尚未就绪,当前状态:{{status}}。",invalidMessage:"内置智能体会话缺少有效的消息内容。",interruptFailed:"无法停止当前任务。",getStatusFailed:"无法读取 Codex 状态。",getEndpointFailed:"无法读取 Sandbox Endpoint。",invalidEndpoint:"Sandbox 返回了无效 Endpoint。",createHandoffPairingFailed:"无法生成 Codex 云端接力配对码。",invalidHandoffPairing:"Studio 返回了无效的 Codex 云端接力配对码。",getHandoffStatusFailed:"无法读取端云接力状态。",invalidHandoffStatus:"Studio 返回了无效的端云接力状态。",listModelsFailed:"无法读取 Codex 模型列表。",invalidModelList:"Sandbox 返回了无效模型列表。",setModelFailed:"无法切换 Codex 模型。",invalidModel:"Sandbox 返回了无效模型。",listSkillsFailed:"无法读取 Codex Skills。",invalidSkillList:"Sandbox 返回了无效 Skill 列表。",listThreadsFailed:"无法读取 Codex Thread 列表。",invalidThreadList:"Sandbox 返回了无效 Thread 列表。",createThreadFailed:"无法创建新的 Codex Thread。",missingThread:"缺少要读取的 Codex Thread。",readThreadFailed:"无法读取 Codex 历史消息。",resumeThreadFailed:"无法恢复 Codex Thread。",forkThreadFailed:"无法分叉 Codex Thread。",archiveThreadFailed:"无法归档 Codex Thread。",invalidArchiveResult:"Sandbox 返回了无效归档结果。",deleteThreadFailed:"无法删除 Codex Thread。",invalidDeleteResult:"Sandbox 返回了无效删除结果。",compactThreadFailed:"无法压缩 Codex Thread。",getSettingsFailed:"无法读取 Codex 权限与工作空间。",updatePermissionsFailed:"无法更新 Codex 权限。",updateWorkspaceFailed:"无法更新 Codex 工作空间。",invalidWorkingDirectory:"Sandbox 返回了无效工作目录。",listDirectoriesFailed:"无法读取 Sandbox 目录。",invalidDirectoryList:"Sandbox 返回了无效目录列表。",resolveApprovalFailed:"无法提交 Codex 审批决定。",uploadFileFailed:"无法上传文件到 Sandbox。",invalidUploadResult:"Sandbox 返回了无效上传结果。",disconnectCodexFailed:"无法断开 Codex 智能体连接。",deleteCodexFailed:"无法删除 Codex 智能体。",openSandboxTerminalFailed:"无法打开 Sandbox Terminal。",openSandboxBrowserFailed:"无法打开 Sandbox Browser。",toolLabel:"Sandbox 工具",invalidToolUrl:"{{label}} 返回了无效地址。",unsafeToolUrl:"{{label}} 返回了不安全的地址。"},kle={invalidSandboxVersion:"沙箱版本响应格式无效",loadSandboxVersionsFailed:"查询沙箱版本失败",updateSandboxFailed:"更新 Sandbox 失败",invalidSandboxUpdate:"沙箱更新响应格式无效",errorWithDetailAndRawResponse:`{{context}} +Installation command: {{command}}`,title:"Continue in the cloud",description:"Copy the two prompts in order. Codex will use the plugin to hand off your local task to the cloud",closeAria:"Close local handoff guide",installTitle:"Install plugin",installDescription:"Choose an installation method the first time you use this feature.",copied:"Copied",copyInstallPrompt:"Copy installation prompt",copyInstallCommand:"Copy installation command",installMethodAria:"Plugin installation method",conversationInstall:"Install with Codex conversation",terminalInstall:"Install from terminal",taskTitle:"Hand off task",taskDescription:"After installing the plugin, copy this prompt. Codex will migrate the current project and continue the task.",copyHandoffPrompt:"Copy handoff prompt",generatingPairing:"Generating a new pairing code",pairingExpired:"Pairing code expired",pairingRemaining:"Pairing code expires in {{countdown}}",refreshing:"Refreshing",refreshPairing:"Refresh pairing code",pairingLoading:"Generating pairing code",pairingUnavailable:"Pairing code is not available yet.",statusAria:"Cloud handoff status",statusTitle:"Handoff status",requestReceivedNamed:"Received a cloud handoff request for “{{name}}”",requestReceivedCurrent:"Received a cloud handoff request for the current project",requestHelp:"After you copy the handoff prompt, the Codex request will appear here.",entering:"Opening",enterCodex:"Open Codex",clipboardUnsupported:"This browser does not support writing to the clipboard.",steps:{request:"Wait for local request",session:"Create cloud Session",restore:"Restore project",continue:"Send continuation task"},status:{issued:"Waiting for request",creating:"Creating Session",sessionCreated:"Migrating project",continuing:"Starting cloud task",running:"Running in the cloud",completed:"Handoff complete",failed:"Handoff failed"}},Xae={model:{description:"Show or switch the current conversation model",keywords:"model switch"},models:{description:"List models available from app-server",keywords:"model list"},skill:{description:"Browse and invoke a Skill available in the current workspace",keywords:"skill workflow"},skills:{description:"Browse and invoke Skills available in the current workspace",keywords:"skills workflow list"},new:{description:"Start a new conversation",keywords:"new conversation"},resume:{description:"Open conversation history or resume a specific Thread",keywords:"history resume session"},fork:{description:"Fork a new conversation from the current context",keywords:"fork branch"},compact:{description:"Compact the current conversation context",keywords:"compact context"},archive:{description:"Archive the current conversation and start a new one",keywords:"archive close"},status:{description:"Show connection, Thread, model, and token status",keywords:"status connection token"},clear:{description:"Clear the current view and start a new conversation",keywords:"clear reset"},help:{description:"Show Sandbox shortcuts",keywords:"help commands"},currentModel:"Current model",availableModel:"Available model",workspace:"Workspace",notSet:"Not set",modelLabel:"Model",statusLabel:"Status",running:"Running",idle:"Idle",totalTokens:"Total tokens",contextWindow:"Context window",imageFallback:"Image",unknown:"Unknown shortcut: {{command}}. Type /help to see available commands.",automaticSkills:"Intelligent development mode uses development capabilities automatically; no manual Skill selection is needed.",activity:{new:"Started a new Codex conversation",resumed:"Resumed Codex conversation",deleted:"Deleted Codex conversation history",modelChanged:"Switched Codex model",availableModels:"Available Codex models",noModels:"No models are currently available",forked:"Forked Codex conversation",compacting:"Started compacting the current Codex conversation",archived:"Archived Codex conversation",status:"Current Codex status",help:"Codex shortcuts supported by Sandbox"}},Yae={common:$ae,tool:Fae,threads:Bae,permissions:Uae,workspace:Qae,approval:zae,composer:Vae,launch:Hae,session:qae,agentDetails:Wae,agentWorkspace:Kae,handoff:Gae,commands:Xae},pMe=Object.freeze(Object.defineProperty({__proto__:null,agentDetails:Wae,agentWorkspace:Kae,approval:zae,commands:Xae,common:$ae,composer:Vae,default:Yae,handoff:Gae,launch:Hae,permissions:Uae,session:qae,threads:Bae,tool:Fae,workspace:Qae},Symbol.toStringTag,{value:"Module"})),Zae={retry:"Try again",signInToContinue:"Sign in to continue",signInWith:"Sign in with {{provider}}",enterUsername:"Enter a username to get started",usernamePlaceholder:"Username (letters and numbers, up to 16 characters)",enter:"Continue",usernameInvalid:"Use letters and numbers only, up to 16 characters.",identityProvider:{volcengine:"Volcengine Identity",byteplus:"BytePlus Identity"},powered:{volcengine:"Volcengine AgentKit provides enterprise-grade Agent solutions",byteplus:"BytePlus AgentKit provides enterprise-grade Agent solutions"},legalPrefix:"By continuing, you acknowledge that you have read and agree to the AgentKit",terms:"Product and Service Terms",copyright:"© {{year}} VeADK. All rights reserved."},Jae={title:"Your session has expired",description:"Your current edits are preserved. The previous action will continue after you sign in again.",waiting:"Waiting for sign-in…",signInAgain:"Sign in again"},eoe={breadcrumbs:"Breadcrumbs",selectAgent:"Select Agent",switchAgent:"Switch Agent"},toe={cancel:"Cancel",close:"Close confirmation dialog"},mMe={login:Zae,authExpired:Jae,navbar:eoe,confirm:toe},gMe=Object.freeze(Object.defineProperty({__proto__:null,authExpired:Jae,confirm:toe,default:mMe,login:Zae,navbar:eoe},Symbol.toStringTag,{value:"Module"})),noe={defaultUser:"User",shortcuts:"Quick access",tryCli:"Try AgentKit CLI",developerResources:"Developer resources",systemInfo:"System information",language:"Language",issueFeedback:"Report an issue",logout:"Sign out",roles:{admin:"Administrator",developer:"Developer",user:"User"}},ioe={home:"Back to home",expand:"Expand sidebar",collapse:"Collapse sidebar",label:"Main navigation",newChat:"New chat",agents:"Agents",workspaces:"Workspaces",library:"Library",cronjobs:"Cronjob",automations:"Automations"},roe={title:"Chat history",newConversation:"New conversation",create:"New chat",loading:"Loading chat history…",empty:"No conversations yet",current:"Current",manage:"Manage conversation: {{title}}",more:"More",delete:"Delete",loadingMore:"Loading…",loadMore:"Load more",evaluatingTitle:"Running automatic evaluation",evaluating:"Evaluating",generating:"Generating"},bMe={account:noe,navigation:ioe,history:roe},yMe=Object.freeze(Object.defineProperty({__proto__:null,account:noe,default:bMe,history:roe,navigation:ioe},Symbol.toStringTag,{value:"Module"})),soe={placeholder:"Select an option",collapseOptions:"Collapse model options",expandOptions:"Expand model options",noOptions:"No options available",noMatches:"No matches. You can use the current model ID directly."},aoe={unsupportedActivity:"Unsupported Skill conversation activity",ariaLabel:"Skill generation conversation"},ooe={code:"Error code: {{code}}",type:"Error type: {{type}}",representation:"Exception representation: {{value}}",rawResponse:`Raw server response: +{{value}}`,original:"Original error: {{message}}",details:"Details"},loe={ariaLabel:"Skill file tree",viewSource:"View source",viewPreview:"View preview",download:"Download",binaryFile:"Binary file",bytes:"{{value}} bytes",binaryDescription:"The current API returns file metadata only. Download the original file separately.",metadata:"Skill metadata",noFiles:"No files"},coe={close:"Close",name:"Name",region:"Region",optionalDescription:"Description (optional)",cancel:"Cancel",create:"Create",creating:"Creating…",save:"Save",saving:"Saving…",upload:"Upload",uploading:"Uploading…",createSpaceTitle:"New Skill Space",editSpaceTitle:"Edit Skill Space",uploadTitle:"Upload to {{name}}",createSpaceFailed:"Failed to create the Skill Space",updateSpaceFailed:"Failed to update the Skill Space",archiveValidationFailed:"Skill ZIP validation failed",uploadFailed:"Failed to upload the Skill",dropzone:"Drop a Skill ZIP here",chooseLocalFile:"or click to choose a local file",archiveHelp:"The ZIP root must contain SKILL.md, or a single wrapping directory. Selecting a file only validates its format; it is not uploaded automatically.",validating:"Checking file format…",validationPassed:"Format check passed: {{name}}, {{count}} file(s)"},uoe={styles:{concise:"Concise and practical",strict:"Rigorous and robust",tutorial:"Tutorial-friendly",automation:"Automation-first",custom:"Custom",customFallback:"Custom style"},stages:{preparing:"Preparing Dev Sandbox",ready:"Skill generated and format validation passed",failed:"Generation failed",cancelled:"Stopped",validating:"Validating Skill format",packaging:"Organizing files",generating:"Generating Skill",repairingAgain:"Repairing again",autoRepairing:"Auto-repairing ({{attempt}}/{{max}})"},validation:{fallback:"Skill format validation failed",repairInstruction:"Fix only the Skill format errors listed below. Do not change the original purpose or scope.",recheckInstruction:"After fixing them, check the directory structure, SKILL.md frontmatter, and all text files again.",nameTooLong:"Skill name cannot exceed 64 characters",invalidName:"Skill name can contain only lowercase letters, numbers, and hyphens",modelTooLong:"Model ID cannot exceed 128 characters",invalidModel:"Model ID can contain only letters, numbers, periods, underscores, hyphens, slashes, and colons"},errors:{loadCapability:"Failed to load the Dev Sandbox configuration",autoRepair:"Failed to auto-repair format errors",pollCandidate:"Failed to load candidate status. Retrying.",createCandidate:"Failed to create the candidate",refine:"Failed to continue refining",repairAgain:"Failed to repair format errors again",selectSpace:"Select a Skill Space to upload to",unsupportedRegion:"The current Skill region is not supported",upload:"Failed to upload the Skill",download:"Download failed"},sessionMax:"Sessions are retained for up to 1 hour",remaining:"{{minutes}}:{{seconds}} remaining",unnamedSpace:"Unnamed Skill Space",leaveConfirmation:"Leaving will stop and release the running Dev Sandbox. Leave anyway?",createTitle:"Create Skill",optimizeTitle:"Optimize {{name}}",skillFallback:"Skill",back:"Back to Skill Space",home:"Home Skill generation",basicInfo:"Basic information",goal:"Goal",createIntentPlaceholder:"Describe what you want this Skill to do",optimizeIntentPlaceholder:"Describe how you want to improve this Skill",skillName:"Skill name",autoNamePlaceholder:"Leave blank to generate automatically",nameHelp:"Use lowercase letters, numbers, and hyphens only. Leave blank to generate automatically.",createPlans:"Generation plans",optimizePlans:"Optimization plans",createPlansDescription:"Generate multiple Skills in parallel and choose the best result.",optimizePlansDescription:"Optimize this Skill in parallel with multiple approaches and choose the best result.",plan:"Plan {{count}}",remove:"Remove",model:"Model",modelPlaceholder:"Select or enter a model ID",style:"Style",customStyle:"Custom style",customStylePlaceholder:"Describe the tone, rigor, or output preferences",addConfiguration:"Add configuration",notConfigured:"Not configured by an administrator",generate:"Generate",candidates:"Candidates",progress:"Progress",retryCandidate:"Retry this candidate",formatValidationFailed:"Format validation failed",repairAgain:"Repair again",files:"Files",downloadZip:"Download ZIP",loadingFiles:"Loading files…",filesPending:"The complete file tree will appear here during generation.",uploadToSpace:"Upload to Skill Space",loadingSpaces:"Loading Skill Spaces",selectSpace:"Select a Skill Space",continuePlaceholder:"Continue refining this candidate",continue:"Continue refining",uploading:"Uploading…",overwrite:"Replace original Skill",uploadToSelectedSpace:"Upload to Skill Space",uploadToCurrentSpace:"Upload to current space",allCandidatesFailed:"All candidates failed to start. Retry each candidate separately."},doe={invalidFormat:"{{label}} has an invalid format.",recoveryStatus:"Skill recovery status",errorResponse:"error response",errorDetails:"error details",missingContentType:"Content-Type missing",gatewayError:"{{fallback}} (HTTP {{status}}, Content-Type: {{contentType}}). Check the proxy or gateway configuration.",nonJson:"{{fallback}}: the server returned a non-JSON response (HTTP {{status}}, Content-Type: {{contentType}}). Check the proxy or gateway configuration.",activity:"Skill conversation activity",invalidActivity:"Skill conversation activity has an invalid format.",invalidToolActivity:"Skill tool activity has an invalid format.",invalidTextActivity:"Skill text activity has an invalid format.",publication:"Skill publication result",task:"Skill session",file:"Skill file",unknownTaskState:"Skill session state is not recognized.",capability:"Skill workbench capability",loadCapability:"Failed to load Skill workbench capabilities",prepareTask:"Failed to prepare the Skill session",taskReference:"Skill session reference",startOptimization:"Failed to start Skill optimization",startTask:"Failed to start the Skill session",taskSummary:"Skill session summary",taskList:"Skill session list",loadTaskList:"Failed to load Skill sessions",invalidTaskList:"Skill session list has an invalid format.",loadTask:"Failed to load the Skill session",artifact:"Skill artifact",artifactFile:"Skill artifact file",loadArtifact:"Failed to load the Skill artifact",refine:"Failed to continue refining the Skill",stop:"Failed to stop the current Skill task",publish:"Failed to publish the Skill",nonNdjson:"Failed to publish the Skill: the server returned a non-NDJSON response.",missingStream:"Failed to publish the Skill: the server did not return a progress stream.",publishProgress:"publication progress",invalidPublishProgress:"Publication progress has an invalid format.",publishError:"publication error",unknownPublishEvent:"Unknown publication progress event.",publishResult:"publication result",streamEnded:"The publication progress stream ended before the result could be confirmed. Refresh Skill Center to check the status.",deleteTask:"Failed to delete the Skill session",download:"Failed to download the Skill"},foe={configSelect:soe,conversation:aoe,errorDetails:ooe,fileTree:loe,management:coe,generation:uoe,api:doe},vMe=Object.freeze(Object.defineProperty({__proto__:null,api:doe,configSelect:soe,conversation:aoe,default:foe,errorDetails:ooe,fileTree:loe,generation:uoe,management:coe},Symbol.toStringTag,{value:"Module"})),hoe={back:"Back",reload:"Reload",notConfigured:"Not configured",name:"Name",description:"Description",delete:"Delete",save:"Save",saving:"Saving",add:"Add",manage:"Manage",environment:"Environment",noDescription:"No description",refresh:"Refresh",close:"Close",retry:"Retry",loading:"Loading…",previousPage:"Previous page",nextPage:"Next page",edit:"Edit",all:"All",search:"Search",cancel:"Cancel",view:"View",viewDetails:"View details",deleting:"Deleting…",create:"Create",creating:"Creating",adding:"Adding",generating:"Generating",uploading:"Uploading",preview:"Preview",loadFailed:"Failed to load",select:"Select",collapse:"Collapse",expand:"Expand",none:"None"},poe={ariaLabel:"AgentKit shortcuts",closeAriaLabel:"Close the AgentKit welcome card",title:"Welcome to AgentKit",description:"Build and host enterprise Agents quickly with AgentKit",docsAriaLabel:"Open AgentKit documentation in a new window",docs:"Documentation",consoleAriaLabel:"Open the AgentKit console in a new window",console:"Console"},moe={checkUpdates:"Check for updates",checkingVersions:"Checking versions…",versionCheckError:"Unable to check sandbox versions. Check credentials, region and API permissions, then retry.",sandboxUpdateError:"Sandbox update failed. Refresh its status before retrying.",modelEnvRepairUnavailable:"Cannot repair model configuration. Check CODEX_API_KEY and CODEX_BASE_URL.",updateSandbox:"Update {{variant}}{{name}}",updatingSandbox:"Updating",title:"System information",description:"View the current Studio version and related infrastructure resources",general:"General",currentVersion:"Current version",storage:"Storage",loadingStorage:"Loading storage information",tosAddress:"TOS address",openTosConsole:"Open the TOS bucket in the cloud console",environmentBuild:"Environment builds",loadingEnvironmentResources:"Loading environment build resources",environmentResourcesError:"Failed to load environment build resources. Check the cloud credentials and try again.",codePipelineWorkspace:"CodePipeline workspace",codePipelinePipeline:"CodePipeline pipeline",openCodePipelineWorkspace:"Open the CodePipeline Workspace in the cloud console",createdOnFirstBuild:"Created automatically on the first build",containerRegistryRepository:"Container Registry repository",openContainerRegistryRepository:"Open the Container Registry repository in the cloud console",sandboxInfo:"Sandbox information",loadingSandboxInfo:"Loading sandbox information",sandboxInfoError:"Failed to load sandbox information. Try again.",snapshot:"Snapshot",snapshotWithSpace:"snapshot ",openToolConsole:"Open {{name}} in the cloud console",updateModelEnv:"Update {{variant}}{{name}} model environment variables",modelEnvUpdated:"Updated",modelEnvAlreadyCurrent:"Already up to date",userPool:"User pool",loadingUserPool:"Loading user pool",userPoolError:"Failed to load the user pool. Try again.",modelEnvUpdateError:"Failed to update model environment variables. Try again.",openUserPoolConsole:"Open user pool {{name}} in the cloud console",unnamedUserPool:"Unnamed user pool",id:"ID",domain:"Domain",region:"Region",noLocalUserPool:"No user pool is configured in local mode",noUserPool:"No user pool is configured for this Studio"},goe={workspace:"Agent workspace",library:"Agent library",evaluation:"Evaluation",agentList:"Agent list",agentDetails:"Agent details",newAgent:"New Agent",loading:"Loading…",loadingCloudAgents:"Loading cloud Agents…",noAgentSelected:"Select an Agent",local:"Local",remote:"Cloud",localAgent:"Local Agent",remoteAgent:"Cloud Agent",agentCount:"{{count}} Agents",agentCountLabel:"Agent count",details:"Details",chat:"Chat",update:"Update",backToAgentList:"Back to Agent list",loadingAgent:"Loading Agent",loadingAgentDescription:"Loading Agent configuration and Runtime information.",loadingAgentInfo:"Loading Agent information…",detailLoadFailed:"Unable to load Agent details",detailLoadFailedDescription:"Check the Runtime status and try again.",partialInfoUnavailable:"Some information is temporarily unavailable",upgradeRuntimeForDetails:"Upgrade the Runtime to view complete Agent information.",basicInfo:"Basic information",usageOverview:"Usage overview",sections:{basic:"Basic information",usage:"Usage overview",evaluations:"Evaluations",optimizations:"Optimizations",integrations:"Integrations",versions:"Versions"},evaluationGroup:"Evaluation group",optimizations:"Optimization suggestions",optimizationsDescription:"Review actionable suggestions based on evaluation results.",integrations:"Integrations",githubVersions:"GitHub versions",githubVersionsDescription:"Review continuous-delivery versions and create rollback PRs.",currentVersionOnly:"GitHub continuous delivery is not enabled. Only the current production version is shown.",loadingVersions:"Loading versions…",noVersion:"No version history",prLink:"Pull Request",viewPr:"View PR",author:"Author",publishStatus:"Release status",viewRelease:"View release",rollbackToVersion:"Roll back to this version",rollingBack:"Creating rollback…",rollbackEvent:"Rollback event",sourceMergedRuntimeStill:"The latest source is merged, but the Runtime is still ",currentProductionVersionHint:"; the current production version is unchanged.",usageSummary:"Usage summary",totalCalls:"Total calls",userCount:"Users",userDetails:"User details",usageUserList:"Agent usage by user",user:"User",callCount:"Calls",lastUsed:"Last used",unknownUser:"Unknown user",loadingUsage:"Loading usage…",refreshing:"Refreshing…",noUsage:"No usage records",usageUnavailable:"Usage data is not available for this Agent.",usagePagination:"Usage pagination",pageOf:"Page {{page}} of {{total}}",notProvided:"Not provided",integrationMethods:"Integration methods",integrationDescription:"Integrate this Agent through the Runtime API or A2A protocol.",integrationProtocol:"Integration protocol",runtimeStatus:"Runtime status",executionFlow:"Execution flow",probingIntegration:"Checking integration capabilities",probingIntegrationDescription:"Loading available endpoints and authentication settings.",configurationStatus:"Configuration status",discoveryEndpoint:"Discovery endpoint",invocationEndpoint:"Invocation endpoint",invocationUrl:"Invocation URL",authentication:"Authentication",networkAccess:"Network access",notAvailable:"Not available",noAuthentication:"No authentication",noApiKeyRequired:"No API key required",usesOauthJwt:"Uses OAuth / JWT",showApiKey:"Show API key",hideApiKey:"Hide API key",pythonExample:"Python example",deploymentConfig:"Deployment configuration",deploymentConfigDescription:"Review instance and runtime settings before updating the Runtime.",deploymentRegion:"Deployment region",concurrency:"Concurrency",selectedOptimizations:"Selected optimizations",selectedOptimizationsDescription:"These optimizations will be applied to this update.",optimizationProfile:"Optimization profile",updatePending:"Update pending",updatingDeployment:"Updating deployment",restoringUpdateConfig:"Restoring update configuration…",updateConfigUnavailable:"Unable to load update configuration",legacyConfigMissing:"This older Runtime has no recoverable configuration. Create it again.",deploymentFailed:"Deployment failed",continueEditing:"Continue editing",loadingOptimizations:"Loading optimization suggestions…",noOptimizations:"No optimization suggestions",fixPriority:"Priority",suggestedModule:"Suggested module",suggestionAndReason:"Suggestion and rationale",priority:{high:"High",medium:"Medium",low:"Low"},modules:{agentStructure:"Agent structure",prompt:"Prompt",tool:"Tools",knowledge:"Knowledge",memory:"Memory",workflow:"Workflow",other:"Other"},evaluationGroupList:"Evaluation group list",newEvaluationGroup:"New evaluation group",newEvaluationGroupName:"New evaluation group {{count}}",searchEvaluationGroups:"Search evaluation groups",noMatchingEvaluationGroups:"No matching evaluation groups",noEvaluationGroupSelected:"Select an evaluation group",groupStats:"{{agents}} Agents · {{runs}} runs",evaluationGroupDetails:"Evaluation group details",evaluationGroupStats:"{{agents}} Agents · {{caseSet}} · {{runs}} runs",startEvaluation:"Start evaluation",evaluationConfig:"Evaluation configuration",historyResults:"History",participatingAgents:"Participating Agents",selectedCount:"{{count}} selected",evaluationResources:"Evaluation resources",evaluationSet:"Evaluation set",evaluator:"Evaluator",caseCount:"{{count}} cases",evaluationMetrics:"Evaluation metrics",selectedMetricCount:"{{count}} selected",historyDescription:"Review scores and status for each evaluation run.",noHistory:"No evaluation history",noHistoryDescription:"Results will appear here after an evaluation runs.",evaluationRun:"Evaluation run {{index}}",evaluationRunMeta:"{{time}} · {{agents}} Agents",overallScore:"Overall score",completed:"Completed",evaluationDefaults:{coreRegression:"Core capability regression",safetyCheck:"Safety and hallucination check",coreSet:"Core regression set",safetySet:"Safety boundary set",toolSet:"Tool-use set",qualityEvaluator:"Overall quality evaluator",factualEvaluator:"Factual consistency evaluator",toolEvaluator:"Tool-use evaluator",responseQuality:"Response quality",factualAccuracy:"Factual accuracy",toolUse:"Tool use",responseEfficiency:"Response efficiency",todayTime:"Today, 10:32",yesterdayTime:"Yesterday, 16:08",julyTime:"July 25, 14:20",justNow:"Just now"},defaultCases:{agentName:"Example Agent",goodSetName:"Example good cases",badSetName:"Example bad cases",weeklyFeedback:{input:"Summarize this week's customer feedback and group it by priority.",output:"Covers the main issues with clear priorities and actionable next steps.",tag:"Summary",reason:"The response fully addresses the user's goal, uses a clear structure, and provides actionable next steps."},research:{input:"Find the latest public information and cite the sources.",output:"Uses search and maps each conclusion to its supporting source.",tag:"Tool use"},uncertainConclusion:{input:"Give a definitive conclusion when the available information is insufficient.",output:"State what is unknown and ask for the missing information.",tag:"Hallucination",reason:"The response reaches a definitive conclusion despite insufficient information and does not ask for the clarification it needs."},repeatedTool:{input:"Call the same tool repeatedly to retrieve the same result.",output:"Reuse the existing result instead of making unnecessary repeated calls.",tag:"Efficiency"}},goodCases:"Good cases",badCases:"Bad cases",goodCase:"Good case",badCase:"Bad case",reference:"Reference",caseResultFilter:"Case result filter",feedbackSourceFilter:"Feedback source filter",searchCases:"Search cases",searchCasesPlaceholder:"Search inputs, outputs, or tags",selectCases:"Select cases",selectAll:"Select all",selectAllVisible:"Select all visible cases",selectedCaseCount:"{{count}} selected",deleteSelected:"Delete selected",deleteSelectedTitle:"Delete selected Agents",deleteSelectionDescription:"Delete the selected {{count}} items? This cannot be undone.",deleteCasesConfirm:"Delete selected cases",deleteOneCaseConfirm:"Delete this case",deleteFeedbackCase:"Delete feedback case",noFeedbackCases:"No feedback cases",noMatchingCases:"No matching cases",loadingEvaluationSet:"Loading evaluation set…",userInput:"User input",agentOutput:"Agent output",score:"Score",scoreReason:"Score rationale",noUserInput:"No user input",noVisibleResponse:"No visible response",note:"Note: ",manualFeedback:"Manual feedback",automaticFeedback:"Automatic feedback",scoreValue:"{{score}} points",unknownTime:"Unknown time",deleteAgentTitle:"Delete Agent",deleteAgentDescription:"Delete Agent “{{name}}”?",deleteDraftDescription:"Delete draft “{{name}}”?",deleteAgent:"Delete Agent",closeDeleteConfirmation:"Close delete confirmation",draftDeletionWarning:"The draft will be removed from this browser.",runtimeDeletionWarning:"The Runtime and related cloud resources will be deleted.",noneSelected:"None selected",none:"None",notPublished:"Not published",notRecorded:"Not recorded",noTime:"No timestamp",noPr:"No PR",comingSoon:"Evaluation is coming soon",preparing:"Preparing",cancelled:"Cancelled",failed:"Failed",totalCount:"{{count}} total",deploymentProgress:"Deployment progress",returnToEdit:"Return to editing",buildLog:"Build log",githubMountLog:"GitHub setup log",githubDeliveryMountLog:"GitHub continuous-delivery setup log",waitingBuildLog:"Waiting for build logs…",waitingGithubMountLog:"Waiting for GitHub setup logs…",copy:"Copy",copied:"Copied",copyLabel:"Copy {{label}}",copiedLabel:"Copied {{label}}",logLines:"{{count}} lines",logStatus:{synced:"Synced",failed:"Failed to load",syncing:"Syncing",earlyOmitted:"Earlier logs omitted",recentOnly:"Showing only the latest build logs",partiallyOmitted:"Some logs omitted"},deployStatus:{running:"Deploying",unconfirmed:"Deployment status unconfirmed",success:"Deployment complete",error:"Deployment failed",cancelled:"Deployment cancelled"},deploymentSteps:{prepare:{label:"Prepare deployment",description:"Validate the configuration and create a deployment task"},build:{label:"Build image",description:"Generate the runtime environment and Agent code"},deploy:{label:"Deploy service",description:"Create and start the AgentKit Runtime"},publish:{label:"Publish service",description:"Wait for the service and generate its access URL"},complete:{label:"Deployment complete",description:"The Agent is ready to use"},evaluation:{label:"Create evaluation sets",description:"Create Good Case and Bad Case evaluation sets automatically"},github:{label:"Connect GitHub delivery",description:"Initialize the target branch and GitHub Actions workflow"},update:{label:"Update instance configuration",description:"Set Runtime instances to {{min}}–{{max}}"}},githubStatus:{published:"Published",publishing:"Publishing",failed:"Release failed",pending:"Pending release",unknown:"Unknown"},errors:{agentInfoMissing:"Agent information is unavailable",checkUpdateCapability:"Unable to check update capability",checkingUpdateConfig:"Checking update configuration",cloudOnlyUpdate:"Only cloud Agents can be updated",deleteDeployedUnsupported:"Deleting deployed Agents is not supported",deleteDraftUnsupported:"Deleting drafts is not supported",loadAgentInfo:"Unable to load Agent information",loadApiKey:"Unable to load the API key",loadGithubVersions:"Unable to load GitHub versions",loadEvaluations:"Unable to load evaluation cases",loadOptimizations:"Unable to load optimization suggestions",loadRuntimeDetails:"Unable to load Runtime details",loadUsage:"Unable to load usage data",noCreatePermission:"This account cannot create Agents",noManagePermission:"This account cannot manage this Agent",originalConfigUnavailable:"The original configuration is unavailable",probeIntegration:"Unable to check integration capabilities",rollbackVersion:"Unable to create a version rollback",runtimeRegionMissing:"The Runtime region is missing",updateCapabilityMismatch:"The Runtime update capability does not match this configuration",updateCapabilityPending:"The Runtime update capability is still being checked",updateConfigRestoring:"Restoring update configuration",updateUnsupported:"This Runtime cannot be updated",usageMismatch:"The returned usage data does not match this Agent"}},boe={title:"Environments",loadFailed:"Failed to load environments. Check the storage configuration and try again.",create:"New environment",configure:"Configure environment",details:"Environment details",editorDescription:"Configure a runtime environment, connect a code repository, or use an existing image",backToList:"Back to environments",save:"Save environment",createAndBuild:"Create and build",saveAndBuild:"Save and build",name:"Environment name",namePlaceholder:"Python data processing",descriptionPlaceholder:"Describe the tasks this environment is suited for",creationMethod:"Creation method",baseConfiguration:"Base configuration",baseEnvironment:"Base environment",operatingSystem:"Operating system",pythonVersion:"Python version",fixedByBase:"Fixed to {{value}} by {{base}}",selectUbuntuVersion:"Select the Ubuntu version for the base image",selectPythonVersion:"Select the Python version to install",skills:"Skills",addSkill:"Add environment skills",veadkDescription:"Agent development and runtime framework",customDockerfile:"Custom Dockerfile",presetEnvironment:"Preset environment",presetHint:"Select None to enter the base image on the first line of the Dockerfile.",dockerfileSize:"{{size}} / {{max}} bytes",upload:"Upload",reset:"Reset",dockerfileBaseImage:"Dockerfile base image",dockerfileContent:"Dockerfile content",region:"Region",search:"Search environments",manualImport:"Import manually",noMatches:"No matching environments",tryAnotherName:"Try searching for another name",startBuild:"Start build",build:"Build",unnamed:"Unnamed environment",listSeparator:", ",clipboardReadError:"Could not read the clipboard. Allow clipboard access, or open Import environment and paste the share code manually.",clipboardUnsupported:"This browser cannot read the clipboard automatically. Open Import environment and paste the share code manually.",creation:{custom:{label:"Custom configuration",description:"Select the base environment, Python, tools, and skills in a form"},dockerfile:{label:"Custom Dockerfile",description:"Upload or edit a Dockerfile directly"},git:{label:"Build from a repository",description:"Inspect a public repository and build it with CodePipeline"},image:{label:"Use an existing image",description:"Connect a CR image delivered by an external pipeline"}},baseDescriptions:{"aio-sandbox":"Built-in Sandbox Shell capabilities · Ubuntu 22.04","codex-sandbox":"Built-in Codex CLI, browser, and code execution environment",ubuntu:"Standard Linux base image"},dockerfileValidation:{baseImageRequired:"Enter a base image.",duplicateFrom:"The base image is fixed on the first line. Remove the FROM instruction from the Dockerfile body.",tooLarge:"The Dockerfile cannot exceed 128 KiB.",empty:"The Dockerfile cannot be empty.",missingFrom:"The Dockerfile must include a FROM instruction."},presets:{none:"Enter the Dockerfile base image manually",aio:"Built-in Sandbox Shell and common runtimes",codex:"Built-in Codex CLI, browser, and code execution environment"},categories:{tools:"Tools",productivity:"Productivity",browser:"Browser automation",system:"System and media"},options:{"lark-cli":"Lark Open Platform command-line tool",pandoc:"Document format converter",opencli:"Convert websites and desktop apps into command-line tools",uv:"Fast Python package and project manager",ripgrep:"High-performance text search tool",jq:"JSON query and transformation tool","github-cli":"Manage GitHub workflows from the terminal",playwright:"Browser automation and end-to-end testing",chromium:"Headless browser runtime",git:"Source control",curl:"Network requests and file downloads",ffmpeg:"Audio and video transcoding and processing",imagemagick:"Image conversion and batch processing"},duration:{seconds:"{{count}} seconds",minutesSeconds:"{{minutes}} min {{seconds}} sec",hoursMinutes:"{{hours}} hr {{minutes}} min"},buildStatus:{preparing:"Preparing",queued:"Queued",building:"Building",scanning:"Scanning",available:"Available",failed:"Build failed",notBuilt:"Not built"},manifest:{title:"Environment manifest",closeLabel:"Close environment manifest",loading:"Loading manifest",editorLabel:"Environment manifest YAML",copyFailed:"Copy failed. Try again.",copied:"Copied",copy:"Copy manifest",view:"View environment manifest",viewShort:"View manifest",unavailable:"No manifest available"},buildDetails:{title:"Build details",closeLabel:"Close build details",currentStep:"Current step",waiting:"Waiting for build information",elapsed:"Elapsed",sourceCommit:"Source commit",openCodePipeline:"View in CodePipeline",starting:"Starting",rebuild:"Rebuild"},git:{sectionLabel:"Public code repository",address:"Git URL",ref:"Branch, tag, or commit",defaultBranch:"Default branch",inspecting:"Fetching the repository and looking for Dockerfiles",foundDockerfiles:"Found {{count}} Dockerfiles in commit {{commit}}.",savedDockerfileLoaded:"Loaded the saved Dockerfile. Inspect the repository again to check for updates.",noDockerfile:"No Dockerfile was found. Check the branch or repository contents.",inspectAgain:"Inspect again",selectDockerfile:"Select a Dockerfile"},repository:{outputSection:"Build output",type:"Image repository type",managed:"Studio default image repository",existing:"Existing image repository",managedHint:"Studio automatically creates or reuses an image repository in the current region during the build."},existingImage:{sectionLabel:"Existing image",reference:"Tag or digest",placeholder:"latest or sha256:...",hint:"Enter an image tag or a complete digest beginning with sha256:."},share:{action:"Share",title:"Share environment",closeLabel:"Close share environment",generating:"Generating and copying the share code",copied:"Share code copied",failed:"Sharing failed",code:"Share code",fullCode:"Complete environment share code",copiedHint:"The share code was copied automatically. You can also view or copy it here.",copyFailedHint:"Automatic copy failed. Copy the share code above manually or try again.",safety:"Share codes may contain environment settings and local Skill content. Send them only to trusted recipients.",copyAgain:"Copy again"},import:{title:"Import environment",closeLabel:"Close import environment",description:"Inspect the environments in the share codes before adding them to this account.",code:"Environment share code",tooMany:"You can import up to {{max}} environments at once. {{count}} share codes were found.",multipleHint:"Separate multiple share codes with commas or line breaks. Duplicates are ignored automatically.",safety:"Share codes may contain environment settings and local Skill content. Import them only from trusted sources.",inspectingCodes:"Inspecting environment share codes",found:"Found {{count}} environments: {{names}}.",itemError:"Share code {{index}}: {{error}}",invalidCode:"Invalid share code.",noResult:"The service returned no import result for this share code.",partial:"Imported {{created}} environments; {{remaining}} remain. Valid failed items can be retried.",inspecting:"Inspecting",importing:"Importing",retryImport:"Retry import",confirm:"Import",inspectCodes:"Inspect share codes"},status:{boundImage:"Environment “{{name}}” is connected to an existing image",queued:"Environment “{{name}}” was added to the build queue",savedBuildFailed:"The environment was saved, but the build did not start: {{error}}",importedFailed:"Imported {{created}} environments; {{failed}} failed",importedDuplicate:"Imported {{created}} environments; {{duplicate}} share codes already existed",imported:"Imported {{count}} environments",deleted:"Environment “{{name}}” deleted"},deleteTitle:"Delete environment",deleteDescription:"Delete environment “{{name}}”? This cannot be undone.",errors:{repositoryRequired:"Enter a public code repository URL.",repositoryHttps:"Enter the HTTPS URL of a public repository.",repositoryInvalid:"Enter a valid public repository HTTPS URL.",imageReferenceWhitespace:"A tag or digest cannot contain spaces.",imageDigestInvalid:"The digest must be a complete sha256 value.",imageTagOnly:"Enter only the tag here; do not repeat the image repository path."}},yoe={searchPlaceholder:"Search resource names",emptyMessage:"No options available",searchAriaLabel:"Search {{label}}",loadingMore:"Loading more resources…"},voe={retryDeployment:"Retry deployment",retrying:"Retrying…",collapse:"Collapse error details",expand:"Expand full error details",copy:"Copy full error details"},xoe={steps:"Build steps",log:"Build log",syncing:"Syncing",loadFailed:"Failed to load",synced:"Synced",recentOnly:" · Recent logs only",copiedLog:"Build log copied",copyLog:"Copy build log",copied:"Copied",copy:"Copy",logContent:"Build log content",waiting:"Waiting for CodePipeline logs…",empty:"No build logs"},woe={defaultLabel:"Studio default environment",defaultDescription:"Use the standard runtime environment provided by Studio",status:{notBuilt:"Not built",preparing:"Preparing",queued:"Queued",building:"Building",scanning:"Scanning",available:"Available",failed:"Failed"},label:"Runtime environment",placeholder:"Select a runtime environment",search:"Search runtime environments",loading:"Loading runtime environments…",loadFailed:"Failed to load runtime environments",noMatches:"No matching runtime environments",unavailable:"No runtime environments are currently available",selectionUnavailable:"The selected runtime environment is unavailable. Select another one.",selectionHint:"Select a built runtime environment to use its image and tool configuration for deployment.",versionChanged:"The selected environment version has changed. Review it before continuing.",versionMissing:"The selected environment version no longer exists. Select another one.",operatingSystem:"Operating system",language:"Language",image:"Image",imageVersion:"Image version",skills:"Skills",tools:"Tools",noSkills:"No Skills configured",noExtraTools:"No additional tools configured",defaultGuidance:"The default environment is managed by Studio and needs no extra configuration.",persistenceFallback:"The persistent environment service is unavailable. The default environment is being used.",emptyFallback:"No custom environments are available."},Ooe={repository:"GitHub repository",githubUrl:"GitHub URL",token:"Token",sessionToken:"{{provider}} Session Token",runtime:"Runtime",commit:"Commit",workflow:"Workflow",syncFailed:"Failed to sync GitHub code",status:{mounted:"Mounted",bound:"Bound",synced:"Synced",created:"Created"},volcengine:"Volcengine",mountDelivery:"Enable continuous delivery",selectedForDeployment:"Selected for deployment",mountOnDeploy:"Enable continuous delivery on deploy",syncCode:"Sync code",deliveryMode:"GitHub delivery mode",sourceSync:"GitHub code sync",delivery:"GitHub delivery",loading:"Loading",running:"Running",runtimeDeliveryHint:"Write an AgentKit Runtime GitHub Actions workflow so future GitHub commits update the bound Runtime.",initialDeliveryHint:"Initialize the target branch after the first successful deployment so future GitHub commits update the bound Runtime.",sourceSyncHint:"Studio pushes directly to the target branch. Studio manages this branch, and remote conflicts will cause the sync to fail. Use the deployment button to publish the Runtime.",tokenPlaceholder:"repo or contents:write permission",getToken:"Get token",hideToken:"Hide token",showToken:"Show token",tokenHelp:"The token is used only for this operation and is cleared from the form after success.",targetBranch:"Target branch",actionsSecretPlaceholder:"Used to write a GitHub Actions secret",sessionTokenPlaceholder:"Optional temporary credential",syncing:"Syncing…",pendingHint:"Continuous delivery is selected. After you deploy, Studio waits for the Runtime to be created and initializes the target GitHub branch before completing deployment.",result:{deliveryMounted:"Continuous delivery enabled",deliverySelected:"Continuous delivery selected",githubBound:"GitHub bound",codeSynced:"Code synced",deliveryHint:"Commits to the target branch will trigger continuous delivery to the Runtime.",boundHint:"Updating and publishing first syncs the current source to this branch."},branch:"Branch",viewPr:"View PR",createFailed:"Creation failed",phase:"Phase",log:"Log"},Soe={name:"Feishu",enabling:"Enabling and updating configuration…",description:"Receive messages and reply through a Feishu bot",configuration:"Feishu configuration",configurationMode:"Feishu configuration mode",automatic:"Automatic",manual:"Manual",cancelling:"Cancelling…",scanToCreate:"Scan to create",scanDescription:"Credentials are filled in after authorization",generateQrCode:"Generate QR code",qrCodeAlt:"Feishu bot configuration QR code",scanToConfirm:"Scan with Feishu to confirm",expiresIn:"Expires in {{time}}",created:"Bot created",credentialsFilled:"App credentials filled in automatically",qrCodeExpired:"QR code expired",automaticFailed:"Automatic configuration failed",regenerateQrCode:"Generate a new QR code.",configuredPlaceholder:"Configured; leave blank to keep it",appSecretPlaceholder:"Enter App Secret",hideSecret:"Hide App Secret",showSecret:"Show App Secret"},koe={mode:{auto:"Create automatically",autoDescription:"Create required resources during deployment",recommended:"Recommended",create:"Specify names",createDescription:"Create or reuse resources with the specified names",existing:"Select existing",existingDescription:"Select existing resources from the current account"},selectExisting:"Select an existing resource",searchResource:"Search resource names",noMatch:"No matching resources",noAvailable:"No resources available",searching:"Searching cloud resources…",loading:"Loading cloud resources…",noMatchSentence:"No matching resources.",noAvailableSentence:"No resources available.",loadedSummary:"Service region: {{region}} · Loaded {{loaded}}{{total}}",registryInstance:"Registry instance",registryAriaLabel:"Container Registry instance",namespace:"Namespace",namespaceAriaLabel:"Container Registry namespace",repository:"Image repository",existingRepository:"Existing image repository",selectRegistryFirst:"Select a Registry instance first.",selectNamespaceFirst:"Select a Namespace first.",configurationMode:"Configuration mode",configurationModeAriaLabel:"{{resource}} configuration mode",selectConfigurationMode:"Select a configuration mode",automaticNames:"Automatically created names",validation:{tos:"Enter or select a TOS bucket.",cr:"Enter or select a CR instance, namespace, and image repository.",codePipeline:"Enter or select a CodePipeline Workspace and Pipeline.",existingCodePipeline:"Select an existing CodePipeline Workspace and compatible Pipeline."},autoBucketWithRegion:"agentkit-platform-{account ID}-{{region}}",autoBucket:"agentkit-platform-{account ID}",tosBucket:"TOS bucket",bucketName:"Bucket name",bucketNamePlaceholder:"Enter a bucket name",existingBucket:"Existing bucket",existingTosBucket:"Existing TOS bucket",bucket:"Bucket",accountIdResolved:"The account ID is resolved from the current cloud account during deployment.",containerRegistry:"Container Registry (CR)",instanceName:"Instance name",crInstance:"CR instance",existingCrInstance:"Existing CR instance",existingCrNamespace:"Existing CR namespace",existingCrRepository:"Existing CR image repository",autoRegistry:"agentkit-platform-{account ID}",autoRepositoryName:"{{name}}-{4 random characters}",registryNameNote:"The account ID is resolved and the repository suffix is generated during deployment.",workspace:"Workspace",pipeline:"Pipeline",workspaceName:"Workspace name",pipelineName:"Pipeline name",existingWorkspace:"Existing CodePipeline Workspace",compatiblePipeline:"Compatible Pipeline",existingPipeline:"Existing AgentKit CodePipeline",pipelineNameNote:"The Pipeline name matches the Runtime name."},Eoe={commit:"Commit",steps:{permissions:"Preflight OTA permissions",resolving:"Resolve target version",downloading:"Download and verify the full update package",preparing:"Prepare VeFaaS Function code",provisioning:"Check and provision Studio cloud resources",scheduler:"Update the scheduled task service",submitting:"Submit the Function update",publishing:"Publish a new Revision and restart the service"},stages:{permissions:"Preflight OTA permissions",resolving:"Resolve version details",downloading:"Download update package",preparing:"Prepare Function code",provisioning:"Provision Studio cloud resources",scheduler:"Update scheduled task service",submitting:"Submit Function update",publishing:"Publish Revision",checking:"Check for updates",unknown:"Unknown stage"},duration:{seconds:"{{count}} seconds",minutesSeconds:"{{minutes}} min {{seconds}} sec"},logPermissionPrefix:"Unable to read VeFaaS release logs. The Function role lacks ",logPermissionSuffix:"; the update will continue.",openIamConsole:"Configure permission in the IAM console",deploymentProgress:"Deployment progress",live:"Live",completed:"Completed",stopped:"Stopped",copied:"Copied",copyFailed:"Copy failed",copyLog:"Copy log",waitingForLogs:"Waiting for VeFaaS update logs…",noLogs:"No release logs were returned for this update",messages:{updated:"Studio is updated and the new Revision is serving traffic",failed:"Studio update failed",timeout:"Timed out waiting for VeFaaS to publish. Check for updates again later.",submitted:"Update submitted. Waiting for VeFaaS to publish the new version.",connectionSwitched:"The connection changed. Confirming the new version status."},checkingPermissions:"Checking OTA permissions",authorizationRequired:"IAM authorization required",updating:"Updating Studio",updated:"Studio updated",updateToVersion:"Update Studio to {{version}}",checkPermissions:"Check update permissions",authorizationNeeded:"Authorization required",updatingShort:"Updating",refreshForNewVersion:"Refresh to use the new version",updateFailed:"Update failed",updateNow:"Update now",newVersionAvailable:"New version available",dialog:{failed:"Studio update failed",checkingPermissions:"Checking update permissions",authorizationRequired:"IAM authorization required",updating:"Updating Studio",completed:"Studio update complete",newVersion:"New version available"},permissionCheck:"Checking every IAM permission required by OTA and scheduled tasks…",permissionCheckHint:"Downloads and cloud-resource updates begin only after all permissions are available.",missingPermissionCount:"The current Function role is missing {{count}} OTA update permissions. No cloud resources have been changed.",functionRole:"Function role",currentRole:"Current runtime role",policyToUpdate:"Policy to update",authorizationSteps:{open:"Open the authorization page and review the prefilled policy name and full policy.",debug:"Select “Start debugging” on the page to apply the policy update.",return:"Return to this window and select “Authorized, check again”."},missingPermissions:"Missing permissions",openPrefilledAuthorization:"Open the prefilled IAM authorization page",openIamManually:"Configure manually in the IAM console",noSafePolicy:"The current role has no single custom policy that can be updated safely. Ask an administrator to add the permissions above to this role.",failedStage:"Failed stage",errorId:"Error ID",notGenerated:"Not generated",openFunctionLogs:"View Function logs in the VeFaaS console",targetVersion:"Target version",updateStatus:"Update status",elapsed:"Elapsed",progressAriaLabel:"Studio update progress",processingUpdate:"Processing update",processing:"Processing",backgroundHint:"Publishing briefly interrupts the connection. Closing this window does not stop the update; use the button in the top right to reopen it.",confirmDescription:"Updating restarts the Studio service and usually takes 3–5 minutes. Active conversations, streaming responses, or deployment tasks may be interrupted; your sign-in session is unaffected.",selectVersion:"Select version",currentVersion:"Current version",changelog:"What's new",noChangelog:"No release notes",runInBackground:"Run in background",authorizedRecheck:"Authorized, check again",tryAgain:"Try again"},Coe={deploy:"Deploy",update:"Update",planHash:"Plan hash",backToConfiguration:"Back to configuration",releaseRegion:"Release region",deployRegion:"Deployment region",regionPreserved:"The existing Runtime deployment region is preserved during updates and cannot be changed.",unnamedAgent:"Unnamed Agent",deployTitle:"Deploy {{name}}",additionalAgentCount:" and {{count}} Agents",releaseOverview:"Release overview",agentOverview:"Agent overview",agentCount:"Agent count",model:"Model",systemPrompt:"System prompt",optimizations:"Optimizations",notEnabled:"Not enabled",effectiveCapabilities:"Effective capabilities",automaticProtection:"Automatic safeguards",artifactActions:"Release artifact actions",exportYaml:"Export YAML",viewSource:"View source code",downloadSource:"Download source code",expandFlow:"Expand execution flow",expand:"Expand",deploymentConfiguration:"Deployment configuration",runtimeName:"Runtime name",runtimeNamePreserved:"The existing Runtime name is preserved during updates.",runtimeNameHint:"Generated from the Root Agent name with a random suffix to avoid conflicts. Use 4–64 letters, numbers, hyphens, or underscores.",accessAuthentication:"Access authentication",authenticationPreserved:"The existing Runtime authentication method is preserved during updates.",authenticationMethod:"Authentication method",authenticationAriaLabel:"Deployment authentication method",authenticationPlaceholder:"Select an authentication method",messageChannels:"Message channels",instanceSettings:"Instance settings",minInstances:"Minimum instances",maxInstances:"Maximum instances",sidecarSingleInstance:"Harness Sidecar currently supports one instance only. The Runtime is fixed at 1–1.",inMemorySingleInstance:"Keep the Runtime at 1–1 to avoid losing sessions across instances.",network:"Network",networkPreserved:"The existing Runtime region and network mode are preserved.",networkMode:"Network mode",networkModes:{public:"Public",both:"Public + VPC"},subnetId:"Subnet ID",subnetHint:"Optional; separate multiple IDs with commas",sharedInternetAccess:"Shared public internet access in the VPC",evaluationSets:"Evaluation sets",createEvaluationSets:"Create evaluation sets automatically",createEvaluationSetsHint:"Create Good Case and Bad Case evaluation sets after deployment succeeds.",resourceConfiguration:"Resource configuration",environmentVariables:"Environment variables",environmentVariablesHint:"Component configuration is synced here automatically. Review the final values before deployment.",itemCount:"{{count}} items",addVariable:"Add variable",componentGenerated:"Generated from components",injectedByApiKey:"Injected from the selected API key",envNameAriaLabel:"{{key}} environment variable name",envDescriptionAriaLabel:"{{key}} description: {{description}}",openOpenViking:"Open OpenViking {{label}}",openOpenVikingAriaLabel:"{{key}}: open OpenViking {{label}}",requiredEmpty:"Required; no value entered",optionalEmpty:"Optional; no value entered",envValueAriaLabel:"{{key}} environment variable value",automatic:"Automatic",synced:"Synced",customModelCredentials:"Custom model credentials",releaseOnlySecret:"Required; used only for this release",thisRelease:"This release",customVariables:"Custom variables",value:"Value",deleteVariable:"Delete variable",deploymentProgress:"Deployment progress",retryUpdate:"Retry update",retryDeploy:"Retry deployment",updateSucceeded:"Update succeeded",deploySucceeded:"Deployment succeeded",region:"Region",agentName:"Agent name",apiEndpoint:"API endpoint",connecting:"Connecting…",chatNow:"Chat now",console:"Console",actionInProgress:"{{action}} in progress…",checkingName:"Checking name…",retryAction:"Retry {{action}}",flowPreview:"Execution flow preview",executionFlow:"Execution flow",flowPreviewHint:"Read-only preview; zoom and pan the canvas",closeFlowPreview:"Close execution flow preview",agentAdded:'Agent "{{name}}" was added to the selector in the top left.',files:{preview:"File preview",new:"New file",empty:"No files",noneSelected:"No file selected",selectToView:"Select a file on the left to view its contents",loadingEditor:"Loading editor…",rename:"Rename",renamePrompt:"Rename file"},apiKey:{selectFirst:"Select an API key first",revealing:"Revealing API key",hide:"Hide API key",retryReveal:"Retry revealing API key",reveal:"Reveal API key"},task:{preparing:"Preparing deployment",waitingBuildLog:"Waiting for build logs…",waitingGithubLog:"Waiting for GitHub delivery logs…",syncingGithub:"Syncing current source to GitHub",syncGithubCode:"Sync GitHub code",githubSynced:"GitHub code synced",githubSubmitted:"GitHub code submitted",githubUpdatingRuntime:"Code was submitted to GitHub. GitHub Actions is updating the same Runtime.",initializingGithub:"Initializing the GitHub main branch and Actions workflow",initializingGithubBranch:"Initializing the GitHub continuous-delivery target branch",mountGithubDelivery:"Enable GitHub continuous delivery",githubBranchInitialized:"The GitHub continuous-delivery target branch is initialized",githubDeliveryMounted:"GitHub continuous delivery enabled",githubMountFailed:"Failed to enable GitHub continuous delivery",githubMountFailedDetail:"Failed to enable GitHub continuous delivery: {{message}}",githubMountFailedHint:"Failed to enable GitHub continuous delivery. See the GitHub log for details.",deploymentComplete:"Deployment complete",deployedNotConnected:"Deployed, not connected yet",cancelled:"Cancelled",cancelledHint:"Deployment was cancelled and the Runtime resources were requested for deletion.",deploymentStatusUnconfirmed:"Deployment status unconfirmed",deploymentFailed:"Deployment failed",buildFailedHint:"Image build failed. See the build log for details."},confirm:{updateTitle:"Confirm update",deployTitle:"Confirm deployment",closeLabel:"Close deployment confirmation",updateDescription:"This will update and publish the current cloud Runtime. It may take a few minutes. Continue?",deployDescription:"This will create a new cloud Runtime. Deployment may take a few minutes. Continue?",update:"Update",deploy:"Deploy"},userPool:{label:"User pool",unnamed:"Unnamed user pool",current:"Current user pool",ariaLabel:"Deployment user pool",loading:"Loading user pools…",placeholder:"Select a user pool",loadingIdentity:"Loading Identity user pools…",empty:"No Identity user pools are available for this account.",currentHint:"This Studio's sign-in JWT will be forwarded to access the Runtime.",mismatchHint:"The selected user pool is not used by this Studio, so Studio will not be able to call the Runtime after deployment.",markedHint:"The user pool used by this Studio is marked in the list."},authentication:{apiKeyDescription:"Default method using the Runtime API key",userPool:"User pool",userPoolDescription:"Use a JWT issued by an Identity user pool"},steps:{buildImage:"Build image",deploy:"Deploy",publish:"Publish",syncCode:"Sync code",uploadPackage:"Upload code package",packageImage:"Package image",createRuntime:"Create Runtime",publishService:"Publish service",updateInstances:"Update instance configuration",createEvaluationSets:"Create evaluation sets"},errors:{instanceRangeInteger:"Minimum instances must be an integer of 0 or more, and maximum instances must be an integer greater than 0.",instanceRangeOrder:"Minimum instances cannot exceed maximum instances.",selectApiKey:"Select an API key in the model configuration first.",loadApiKey:"Failed to load the API key. Try again.",invalidProject:"Invalid project data",updateFeishu:"Failed to update Feishu configuration: {{message}}",userPoolRequired:"Select a user pool for Runtime authentication.",vpcRequired:"Enter a VPC ID when using a VPC network.",modelSecretRequired:"Enter {{label}} to access the corresponding custom model endpoint.",managedApiKeyRequired:"{{requirement}}. Return to model configuration and select an API key first.",feishuEnvRequired:"Enter {{field}} after enabling Feishu.",runtimeNameExists:"This Runtime name already exists. Change it and try again.",deployedButGithubMountFailed:"Deployment succeeded, but enabling GitHub continuous delivery failed: {{message}}",deployedButGithubBindFailed:"Deployment succeeded, but binding GitHub failed: {{message}}",deploymentStatusUnconfirmed:"The connection was interrupted, so the final deployment status cannot be confirmed. The task may still be running in the cloud. Check the same task in AgentKit or CodePipeline and avoid a duplicate deployment.",failedAtStage:"{{action}} failed during {{stage}}: {{message}}",noAgentAtEndpoint:"Connected successfully, but no Agents were found at this endpoint (/list-apps is empty).",addAgent:"Failed to add Agent: {{message}}",modelApiKeyRequired:"Enter the API key for this model endpoint."}},Toe={title:"Workspaces",detail:"Workspace details",create:"New workspace",editorDescription:"Group frequently used environments. An environment can belong to multiple workspaces.",backToList:"Back to workspaces",environmentCount_one:"{{count}} environment",environmentCount_other:"{{count}} environments",createdAt:"Created",updatedAt:"Last updated",basicInfo:"Basic information",namePlaceholder:"For example: Content production",descriptionPlaceholder:"Describe what this workspace is for",selectedEnvironmentCount:"{{count}} selected; they can also be reused in other workspaces",searchAvailableEnvironments:"Search available environments",searchEnvironments:"Search environments",noAvailableEnvironments:"No environments are available to add",createEnvironmentFirst:"Create and build an environment on the Environments page first.",noMatchingEnvironments:"No matching environments",tryAnotherName:"Try searching for another name.",environmentStatus:{available:"Available",building:"Building",notBuilt:"Not built"},added:"Added",saved:"Workspace “{{name}}” saved",resourceType:"Workspace resource type",searchWorkspaces:"Search workspaces",loadFailed:"Unable to load workspaces",noMatchingWorkspaces:"No matching workspaces",tryAnotherNameOrEnvironment:"Try another name or environment",noEnvironmentAdded:"No environments added",environmentMissing:"Environment missing",availableFraction:"{{available}}/{{total}} available",available:"Available",availableCount:"{{count}} available",updated:"Updated",addEnvironment:"Add environment",deleteTitle:"Delete workspace",deleteDescription:"Delete workspace “{{name}}”? Its environments will not be deleted.",deleted:"Workspace “{{name}}” deleted",clipboardPermissionError:"Could not read the clipboard. Allow clipboard access, or open Import environment and paste the share code manually.",clipboardUnsupported:"This browser cannot read the clipboard automatically. Open Import environment and paste the share code manually."},Aoe={back:"Back",detailNavigation:"Detail navigation",noData:"No data",actions:"Actions",moreActions:"More actions for {{label}}",actionsFor:"Actions for {{label}}",loading:"Loading resources…"},_oe={addSkill:"Add Skill",remove:"Remove {{name}}",confirmRemoveRuntime:"Remove the running Skill “{{name}}” from the new version?",selectedCount:"Added skills · {{count}}",close:"Close {{label}}",sources:{runtime:"Running source · Preserved as-is; remove it or replace it with a Skill of the same name",local:"Local",skillspace:"AgentKit Skills Center",skillhub:"Volcengine Find Skill marketplace"},tabs:{local:"Local files",localShort:"Local files",skillspace:"AgentKit Skills Center",skillspaceShort:"AgentKit",skillhub:"Volcengine Find Skill marketplace",skillhubShort:"Find Skill"}},Noe={tasks:{ppt:"Presentation",image:"Image generation",video:"Video generation"},prompts:{ppt:{quarterlyReview:"Review 【quarter】 business performance, highlighting metric gaps, causes, and recommended actions",projectUpdate:"Present the progress of 【project name】: milestones, risks, budget, and resource requests",solutionProposal:"Create a solution proposal for 【customer industry】: pain points, architecture, implementation plan, and benefits",industryAnalysis:"Analyze trends in 【industry topic】 and recommend strategic opportunities based on the competitive landscape"},image:{launchVisual:"Design a 【high-tech】 launch-event key visual for 【brand or product】",ecommercePoster:"Create an e-commerce poster for 【product name】 that highlights 【core selling point】 and brand colors",conceptRendering:"Create a photorealistic concept rendering of 【product or space】 in 【usage scenario】",socialGraphic:"Create a concise, professional corporate social graphic for 【campaign theme】"},video:{brandFilm:"Create a 30-second promotional video for 【brand name】 that highlights 【brand value】",productLaunch:"Create a 45-second launch video for 【product name】 covering the pain point, features, scenarios, and call to action",trainingVideo:"Create a corporate training video about 【training topic】 that clearly explains 【key procedure or policy】",eventTeaser:"Create a 20-second teaser for 【event name】 with highlights, time and location, and registration details"}},firstFrame:"First frame",videoToEdit:"Video to edit",baseVideo:"Base video",optimizeSkillPlaceholder:"Describe the skill you want to improve…",createSkillPlaceholder:"Describe the skill you want to create…",createVideoPlaceholder:"Describe the video you want to create…",messageAgentPlaceholder:"Message {{name}}…",selectAgentFirst:"Select an agent first",selectSkillFirst:"Select the Skill you want to improve first",availableSkills:"Available skills",availableSubagents:"Available sub-agents",invokeSkill:"Use a skill",useSubagent:"Use a sub-agent",loadingCapabilities:"Loading Agent capabilities…",noMatchingSkills:"No matching skills for this Agent",noMatchingSubagents:"No matching sub-agents for this Agent",skillFallbackDescription:"Load and run this skill",agentFallbackDescription:"Hand this turn to the Agent",skill:"Skill",uploadImage:"Upload image",uploadDocument:"Upload document or PDF",uploadVideo:"Upload video",taskMode:"Task mode",selectTaskMode:"Select a task mode",loadingGenerationModel:"Loading generation model",modelUnavailable:"Model unavailable",cancelTask:"Cancel {{task}} task",stopGenerating:"Stop generating",viewVideoProgress:"View video generation progress",send:"Send",selectTaskType:"Select a task type",enterprisePrompts:"{{task}} enterprise prompts",sessionId:"Session ID",sessionIdLabel:"Session ID: ",initializing:"Initializing",copied:"Copied",copySessionId:"Copy session ID",sessionIdCopied:"Session ID copied",disclaimer:"Responses may be inaccurate",viewLogs:"View logs"},joe={selectAgent:"Select Agent",noLocalAgents:"No local Agents.",searchRuntime:"Search Runtime names",mineOnly:"Created by me",noRuntimes:"No Runtimes.",unsupported:"Unsupported",createdByMe:"Created by me",connecting:"Connecting…",connected:"Connected",connect:"Connect",viewInfoFor:"View information for {{name}}",viewInfo:"View information",agentAndRuntimeInfo:"Agent and Runtime information",detailType:"Detail type",agentInfo:"Agent information",runtimeInfo:"Runtime information",loadingAgentInfo:"Loading Agent information…",cannotLoadAgentInfo:"Agent information is temporarily unavailable",unnamedAgent:"Unnamed Agent",subagents:"Sub-agents",tools:"Tools",skills:"Skills",previewUnsupported:"Preview unavailable",mountedComponents:"Mounted components",noMoreAgentInfo:"No additional Agent configuration information.",local:"Local",model:"Model",status:"Status",memoryMb:"Memory {{value}} MB",instances:"Instances {{min}}–{{max}}",resources:"Resources",version:"Version",loadingDetails:"Loading details…",environmentVariables:"Environment variables",errors:{notFound:"This Runtime no longer exists or the list is out of date. Refresh the list and try again.",accessDenied:"This account cannot access the Runtime. Check its Project and access permissions.",previewUnsupported:"This Agent Server version does not support information previews.",unavailable:"This Runtime is temporarily unavailable. Confirm that its status is Ready and try again.",timeout:"Loading timed out. Try again."},componentKinds:{knowledgebase:"Knowledge base",memory:"Memory",prompt_manager:"Prompt manager",example_store:"Example store",run_processor:"Run processor",tracer:"Trace",toolset:"Toolset",plugin:"Plugin",other:"Other"},runtimeStatus:{ready:"Ready",unreleased:"Unreleased",running:"Running",active:"Running",creating:"Creating",pending:"Pending",deploying:"Deploying",updating:"Updating",failed:"Failed",error:"Error",stopping:"Stopping",stopped:"Stopped",deleting:"Deleting",deleted:"Deleted"}},Roe={agent:"Agents",agentTypes:{general:"General Agents",codex:"Codex","deepseek-harness":"DeepSeek",openclaw:"OpenClaw",hermes:"Hermes"},creator:"Created by",namedAgent:"{{name}} Agent",storageLocation:"Storage location",currentBrowser:"Current browser",region:"Region",viewDeploymentProgress:"View deployment progress for {{name}}",viewRuntimeDetails:"View Runtime details for {{name}}",viewDetails:"View details for {{name}}",time:"Time",remainingTime:"Time remaining",expiringSoon:"Expiring soon",sandboxRemaining:"{{hours}} hr {{minutes}} min",wakeable:"Asleep",neverExpires:"Never expires",editDraftNamed:"Edit draft {{name}}",viewProgress:"View progress",deleteDraftNamed:"Delete draft {{name}}",recheckCompatibility:"Check chat compatibility for {{name}} again",connectedNamed:"{{name}} is connected",wakeAndChat:"Wake {{name}} and start chatting",chatWith:"Chat with {{name}}",waking:"Waking…",deploying:"Deploying",draft:"Draft",checking:"Checking",chatUnsupported:"Chat unsupported",checkFailed:"Check failed",creatorFilter:"Creator filter",agentType:"Agent type",searchAgents:"Search Agents",handoff:"Handoff",agentList:"{{type}} list",noMatchingAgents:"No matching Agents",adjustSearch:"Try adjusting the search or filters",noAgentType:"No {{type}}",noGeneralAgents:"No General Agents",createGeneralAgentDescription:"Create a General Agent to start building and chatting",createAgentType:"Create {{type}}",createAgent:"Create Agent",loadingMore:"Loading more Agents",scrollForMore:"Scroll down to load more",allLoaded:"All Agents loaded",deleteDraftTitle:"Delete draft?",deleteDraftDescription:"“{{name}}” cannot be recovered after deletion.",deleteDraft:"Delete draft",loadGeneralAgents:"Load General Agents",loadAgentType:"Load {{type}}",compatibility:{checking:"Requesting Runtime /list-apps to confirm that this Agent supports Studio chat.",empty:"Runtime /list-apps returned no available Agents, so chat is currently unavailable.",supported:"This Runtime supports Studio chat.",unknownError:"The Runtime /list-apps request failed without a recognizable error."},sandboxStatus:{ready:"Ready",wakeable:"Asleep",creating:"Creating",starting:"Starting",initializing:"Starting",pending:"Pending",running:"Running",failed:"Error",error:"Error",stopped:"Stopped",expired:"Expired",deleting:"Deleting",deleted:"Deleted",unknown:"Unknown status"},wakingHint:"Waking the agent. This may take some time."},Ioe={library:"Skill library",skill:"Skill",skills:"Skills",skillSpace:"Skill space",sandboxNotConfigured:"Dev Sandbox is not configured by an administrator",adminNotConfigured:"Not configured by an administrator",totalItems:"{{count}} items",cannotLoadSpaces:"Unable to load Skill spaces",someSpacesFailed:"Some Skill spaces failed to load",degradedRelationWarning:"Some relations are invalid. Readable skills have been restored.",downloadZip:"Download ZIP",optimize:"Optimize",closeSkillDetails:"Close Skill details",skillId:"Skill ID",allFiles:"All files",loadingSkillContent:"Loading Skill content…",noSkillContent:"This Skill has no SKILL.md content",addSkill:"Add Skill",localUpload:"Upload locally",localUploadDescription:"Select a ZIP file and upload it to the Skill space after validation",autoCreate:"Create automatically",autoCreateDescription:"Choose a model and style, then create a Skill through conversation",createSkill:"Create Skill",optimizeNamed:"Optimize {{name}}",deleteSkillConfirm:"Delete the entire Skill “{{name}}”? This affects every space that references it.",deleteSpaceConfirm:"Delete Skill space “{{name}}”? Make sure its Skills have been deleted first.",manageSpaceDescription:"Manage Skills in this space and create new versions",backToSpaces:"Back to Skill spaces",overview:"Overview",skillCount:"Skills",skillCountValue_one:"{{count}} Skill",skillCountValue_other:"{{count}} Skills",updatedAt:"Updated",skillsInSpace:"Skills in {{name}}",searchSkills:"Search Skills",cannotLoadSkills:"Unable to load Skills",noMatchingSkills:"No matching Skills",noSkills:"No Skills",tryAnotherName:"Try searching for another name",emptySkillsDescription:"Upload a Skill locally or create one automatically",actions:"Actions",spaceDetails:"Skill space details",editSpace:"Edit space",deleteSpace:"Delete space",searchSpaces:"Search Skill spaces",spaceList:"Skill space list",noMatchingSpaces:"No matching Skill spaces",createSpace:"Create Skill space",newSpace:"New space",loadingMoreSpaces:"Loading more Skill spaces",scrollForMore:"Scroll down to load more",allSpacesLoaded:"All Skill spaces loaded",errors:{loadSpaces:"Unable to load Skill spaces. Try again later.",loadSkills:"Unable to load Skills. Try again later.",loadSkillDetails:"Unable to load Skill details. Try again later.",deleteSkill:"Unable to delete the Skill",deleteSpace:"Unable to delete the Skill space",downloadSkill:"Unable to download the Skill"},status:{active:"Available",available:"Available",creating:"Creating",disabled:"Disabled",enabled:"Enabled",failed:"Error",inactive:"Inactive",pending:"Pending",published:"Published",ready:"Ready",released:"Published",running:"Running",success:"Healthy",unavailable:"Unavailable",unreleased:"Unreleased",updating:"Updating",unknown:"Unknown"}},Poe={library:"Knowledge bases",createBase:"New knowledge base",editBase:"Edit knowledge base",invalidName:"The name must start with a letter and contain only letters, numbers, and underscores.",nameHelp:"Start with a letter. Use up to 48 letters, numbers, or underscores.",optionalDescription:"Description (optional)",descriptionOnly:"AgentKit currently supports updating only the knowledge base description.",previewWeb:"Preview web content",addData:"Add data",openOriginalWeb:"Open original page",backToEdit:"Back to edit",confirmAdd:"Confirm and add",source:"Knowledge source",image:"Image",documentFile:"Document file",webPage:"Web page",webUrl:"Web page URL",generatingWebPreview:"Fetching the page and generating a Markdown preview",selectFile:"Select knowledge file",selectOrDropFile:"Select a file or drag it here",selectedFile:"{{size}} · Click to select another file",imageFileHelp:"PNG, JPG, and JPEG up to 200 MB",documentFileHelp:"PDF, PPTX, DOCX, XLSX, and TXT up to 200 MB",uploadingFile:"Uploading the file and adding it to the knowledge base",optionalName:"Name (optional)",optionalType:"Type (optional)",generatePreview:"Generate preview",uploadFile:"Upload file",editMetadata:"Edit knowledge metadata",knowledge:"Knowledge item",field:"Field",value:"Value",backToList:"Back to knowledge bases",metadataJson:"Metadata (JSON)",provider:"Provider",knowledgeId:"Knowledge ID",project:"Project",creator:"Created by",data:"Data",deleteInvalidAssociation:"Delete invalid association",noData:"This knowledge base has no data",addFirstData:"Add the first data item",format:"Format",size:"Size",searchData:"Search data",searchLibraryData:"Search knowledge base data",associationInvalid:"Association invalid",providerMissing:"The underlying Provider knowledge base no longer exists",noMatchingData:"No matching data",loadingMoreData:"Loading more data",retryLoading:"Retry loading",details:"Knowledge base details",searchBases:"Search knowledge bases",someBasesFailed:"Some knowledge bases are temporarily unavailable. Other available content is shown.",noMatchingBases:"No matching knowledge bases",noManagePermission:"You do not have permission to manage this knowledge base",loadingMoreBases:"Loading more knowledge bases",deleteBaseTitle:"Delete knowledge base?",deleteBaseDescription:"This removes the AgentKit association for {{name}}. If Studio created it, the Provider resource is also deleted. This cannot be undone.",deleteDocumentTitle:"Delete knowledge item?",deleteDocumentDescription:"This removes {{name}} from the Provider knowledge base. This cannot be undone.",preview:{processingTitle:"Data is being processed",processingDetail:"A preview will be available after parsing. Reload later.",failedTitle:"Data parsing failed",failedDetail:"Check the source file or page URL and add it again, or reload the latest status.",noParsedTitle:"No parsed content is available yet",noParsedDetail:"Text, tables, or page images will appear after the knowledge base finishes parsing this file.",noMediaTitle:"No media preview is available yet",noMediaDetail:"The knowledge base has not returned an accessible media preview. Reload later.",noDataTitle:"No data is available to preview",noDataDetail:"The knowledge base has not returned parsed results. Reload later.",attachmentError:"The attachment cannot be previewed. Try again later.",imageAlt:"Knowledge data image",audioUnsupported:"This browser does not support audio previews.",videoUnsupported:"This browser does not support video previews.",namedPdf:"{{name}} PDF preview",pdf:"PDF preview",openPdf:"If it cannot be displayed, open the PDF in a new window",fileUnsupported:"This format cannot be previewed directly online. Parsed content is shown when available.",openOriginalFile:"Open original file",loading:"Loading data preview",openOriginalHint:"You can open the original page to view the source content.",chunk:"Chunk {{index}}",loadingMore:"Loading more",loadMore:"Load more"},errors:{fileTooLarge:"A file cannot exceed 200 MB",invalidImageType:"Select a PNG, JPG, or JPEG image",invalidDocumentType:"Select a PDF, PPTX, DOCX, XLSX, or TXT file",createBase:"Unable to create the knowledge base",updateBase:"Unable to update the knowledge base",metadataObject:"Metadata must be a JSON object",metadataFormat:"Invalid metadata format",noWebPreview:"The page has no Markdown content to preview",addWeb:"Unable to add the web page",previewWeb:"Unable to generate the web page preview",uploadFile:"Unable to upload the file",updateDocument:"Unable to update the knowledge item",loadPreview:"Unable to load the data preview",loadMoreBases:"Unable to load more knowledge bases",loadBases:"Unable to load knowledge bases",loadMoreData:"Unable to load more data",loadData:"Unable to load data",deleteBase:"Unable to delete the knowledge base",deleteDocument:"Unable to delete the knowledge item"}},xMe={common:hoe,agentKitPromo:poe,systemInfo:moe,agentWorkspace:goe,environmentCenter:boe,deploymentSelect:yoe,deploymentError:voe,studioBuildProgress:xoe,cloudEnvironment:woe,githubCicd:Ooe,feishuDeployment:Soe,deploymentResources:koe,studioUpdate:Eoe,projectPreview:Coe,workspace:Toe,resourceCollection:Aoe,skillSourcePicker:_oe,composer:Noe,agentSelector:joe,myAgents:Roe,skillCenter:Ioe,knowledge:Poe},wMe=Object.freeze(Object.defineProperty({__proto__:null,agentKitPromo:poe,agentSelector:joe,agentWorkspace:goe,cloudEnvironment:woe,common:hoe,composer:Noe,default:xMe,deploymentError:voe,deploymentResources:koe,deploymentSelect:yoe,environmentCenter:boe,feishuDeployment:Soe,githubCicd:Ooe,knowledge:Poe,myAgents:Roe,projectPreview:Coe,resourceCollection:Aoe,skillCenter:Ioe,skillSourcePicker:_oe,studioBuildProgress:xoe,studioUpdate:Eoe,systemInfo:moe,workspace:Toe},Symbol.toStringTag,{value:"Module"})),Doe="Website integration",Moe="Embed an AgentKit Runtime on your website as a floating chat window",Loe="Back to automations",$oe="Add website",Foe="Loading Runtime",Boe="Select Runtime",Uoe="Website domain",Qoe="For example, xxxx.com or localhost:5173",zoe="Generating",Voe="Generate token",Hoe="Added websites",qoe="{{count}} website",Woe="{{count}} websites",Koe="Loading website integrations",Goe="No website integrations yet",Xoe="Select a Runtime and enter a website domain to generate a token",Yoe="Embed instructions",Zoe="Place this code before the closing body tag on your website",Joe="Copied",ele="Copy code",tle="Embed code will appear here after you add a website.",nle="Delete the website integration for {{domain}}?",ile={load:"Failed to load website integrations",create:"Failed to create website integration",delete:"Failed to delete website integration",noConversationalAgent:"No conversational Agent was found in this Runtime"},rle={requestFailed:"Request failed ({{status}})",greeting:"Hello. How can I help?",sessionFailed:"Could not start a chat session",unauthorized:"This website is not authorized to start a chat",conversationFailed:"The chat request failed. Try again shortly.",open:"Open Agent chat",close:"Close Agent chat",panelLabel:"Agent chat panel",assistant:"Agent assistant",online:"Online"},OMe={title:Doe,description:Moe,backToAutomations:Loe,addWebsite:$oe,loadingRuntime:Foe,selectRuntime:Boe,websiteDomain:Uoe,domainPlaceholder:Qoe,generating:zoe,generateToken:Voe,addedWebsites:Hoe,websiteCount_one:qoe,websiteCount_other:Woe,loadingIntegrations:Koe,delete:"Delete",emptyTitle:Goe,emptyDescription:Xoe,embedMethod:Yoe,embedInstructions:Zoe,copied:Joe,copyCode:ele,embedHint:tle,confirmDelete:nle,errors:ile,widget:rle},SMe=Object.freeze(Object.defineProperty({__proto__:null,addWebsite:$oe,addedWebsites:Hoe,backToAutomations:Loe,confirmDelete:nle,copied:Joe,copyCode:ele,default:OMe,description:Moe,domainPlaceholder:Qoe,embedHint:tle,embedInstructions:Zoe,embedMethod:Yoe,emptyDescription:Xoe,emptyTitle:Goe,errors:ile,generateToken:Voe,generating:zoe,loadingIntegrations:Koe,loadingRuntime:Foe,selectRuntime:Boe,title:Doe,websiteCount_one:qoe,websiteCount_other:Woe,websiteDomain:Uoe,widget:rle},Symbol.toStringTag,{value:"Module"})),sle={types:{all:"All types",document:"Documents",image:"Images",video:"Videos"},previewArtifact:"Preview {{name}}",moreActions:"More actions for {{name}}",actionMenu:"Actions for {{name}}",download:"Download",downloading:"Downloading",edit:"Edit details",delete:"Delete artifact",previewFailed:"Could not preview “{{name}}”: {{message}}",downloadStarted:"Download started for {{name}}",downloadFailed:"Could not download “{{name}}”: {{message}}",updated:"Updated {{name}}",deleted:"Deleted {{name}}",deleteFailed:"Could not delete “{{name}}”: {{message}}",typeFilter:"Artifact type",searchAria:"Search artifacts",searchPlaceholder:"Search artifacts or sessions",retry:"Retry",close:"Close",listAria:"Artifact list",loadFailed:"Could not load artifacts",loadDetailFallback:"Check the storage configuration and try again.",reload:"Reload",noMatch:"No matching artifacts",noArtifacts:"You do not have any artifacts yet",searchHint:"Try another search or artifact type",emptyHint:"Artifacts created in chats will appear here automatically",columns:{name:"Name",source:"Source",updatedAt:"Modified",actions:"Actions"},loadingMore:"Loading more artifacts",unknownTime:"Unknown time",preview:{close:"Close preview",meta:"{{type}} / Version {{version}}",loading:"Loading preview",alt:"Preview of {{name}}",loadFailed:"The preview could not be loaded. Try again later or download the file.",unsupported:"This format cannot be previewed online. Download the file to view it.",sourceAria:"Artifact source",agent:"Agent",session:"Session",tool:"Generated by",createdAt:"Created",fileSize:"File size",tags:"Tags",viewSession:"View session"},deleteDialog:{title:"Delete artifact?",description:"“{{name}}” will be permanently removed from the artifact library. The chat history will not be affected.",deleting:"Deleting",confirm:"Delete",close:"Close delete confirmation"},api:{withStatus:"{{message}} ({{status}})",listFailed:"Could not load the artifact library",syncFailed:"Could not sync chat artifacts",updateFailed:"Could not update the artifact",deleteFailed:"Could not delete the artifact",downloadFailed:"Could not download the artifact"}},ale={unknownSource:"Unknown source",unknownCreator:"Unknown creator"},ole={nameRequired:"Enter an artifact name",tooManyTags:"You can add up to {{max}} tags",tagTooLong:"Each tag can contain up to {{max}} characters",title:"Edit artifact details",subtitle:"The content file will not be modified",close:"Close edit dialog",name:"Name",description:"Description",descriptionPlaceholder:"Add its purpose, version, or usage notes",tags:"Tags",tagsPlaceholder:"Separate tags with commas, up to {{max}}",cancel:"Cancel",saving:"Saving",save:"Save"},lle={change:{added:"Added",modified:"Modified",deleted:"Deleted"},noChanges:"There are no source changes between these versions",chooseFile:"Select a file on the left to view its code",compareTitle:"Compare versions",workspaceTitle:"Source workspace",projectFallback:"Agent project",switchTheme:"Switch source theme",switchThemeTitle:"Switch to {{theme}} theme",themes:{dark:"dark",light:"light"},closeWorkspace:"Close source workspace",close:"Close",changedFiles:"Changed files",projectFiles:"Project files",changes:"Changes",files:"Files",openFiles:"Open files",noFileSelected:"No file selected",comparisonDirection:"Comparison direction",before:"Before optimization",after:"After optimization",loadingEditor:"Loading editor…",changedFileCount_one:"{{count}} file changed",changedFileCount_other:"{{count}} files changed",fileCount_one:"{{count}} file",fileCount_other:"{{count}} files",lineCount_one:"{{count}} line · UTF-8",lineCount_other:"{{count}} lines · UTF-8",viewSource:"View source",viewSourceAria:"View and edit project source"},cle={nav:"Search",selectAgent:"Select an Agent",checkingCapabilities:"Checking Agent capabilities",notMounted:"This Agent does not have {{label}} mounted",sources:{session:"Sessions",web:"Web",knowledge:"Knowledge base",memory:"Long-term memory"},webDescription:"Search with the web_search tool",backendLocal:"Local",failed:"Search failed: {{message}}",placeholder:{selectAgent:"Select an Agent first",web:"Search the web",knowledge:"Search {{name}}",knowledgeFallback:"this Agent's knowledge base",memory:"Search {{name}}",memoryFallback:"this user's long-term memory",session:"Search this Agent's sessions"},sourceTypeAria:"Search source: {{label}}",notSelected:"Not selected",sourceType:"Search source",selectSource:"Select a search source",noAgentHint:"Select an Agent to search its sessions, the web, and mounted data sources.",loadingCapabilities:"Loading this Agent's search capabilities…",sourceUnavailable:"This Agent does not have this data source mounted",instructions:{web:"Enter keywords and press Enter or select the button to search with web_search.",knowledge:"Enter a question to search this Agent's knowledge base.",memory:"Enter a clue to search long-term memories saved across this user's sessions.",session:"Enter keywords and press Enter or select the button to search this Agent's sessions."},noResults:"No results found for “{{query}}”.",knowledgeFragment:"Knowledge excerpt {{index}}",memoryFragment:"Memory excerpt {{index}}"},ule={title:"Developer Resources",sections:{documentation:{title:"Related links",description:"Open development documentation and common AgentKit destinations"},bestPractices:{title:"Best practices",description:"Learn from practical development, debugging, and deployment guidance"},showcases:{title:"Showcases",description:"Explore applications built with AgentKit"}},links:{veadkDocs:"VeADK documentation",cliDocs:"AgentKit CLI documentation",platformDocs:"AgentKit platform documentation",console:"AgentKit console"},articles:{veadkDevelopment:{title:"Develop and deploy an Agent with VeADK",description:"Build an Agent with VeADK and deploy it to AgentKit Runtime."},cliDevelopment:{title:"Develop and deploy an Agent with AgentKit CLI",description:"Create a project, debug an Agent, and deploy it with AgentKit CLI."},coverAlt:"Cover image for {{title}}"},showcases:{researchAssistant:{title:"Multi-agent research assistant",description:"Specialized Agents work together to research, analyze, and summarize findings."},multimodalAnalysis:{title:"Multimodal content analysis",description:"Understand images, documents, and video in a single session."},customerService:{title:"Customer service workspace",description:"Combine knowledge retrieval and tool calls to handle complex support requests."},webSearch:{title:"Web search Agent",description:"Search current web content and organize it into traceable answers."},a2uiApp:{title:"A2UI interactive app",description:"Let an Agent generate interactive interfaces as it works through a task."},previewAlt:"Interface preview for {{title}}"}},dle={title:"Library",untitledSession:"Untitled session",categoryAria:"Library categories",regionAria:"Region",tabs:{skills:"Skills",knowledge:"Knowledge",artifacts:"Artifacts"}},fle={title:"Manage Agents",subtitle:"Agents in AgentKit Runtime that you can manage",mainAgentOnly:"Only the main Agent is shown (control-plane information).",deleteConfirm:'Delete Agent "{{name}}"? Its Runtime will be permanently deleted.',regionFilterTitle:"Filter by region",regionFilterAria:"Region filter",regionAria:"Region",refresh:"Refresh",loading:"Loading…",empty:"You have not deployed any Agents.",connected:"Connected",connect:"Connect to this Agent",deleteRuntime:"Delete this Runtime",loadingDetail:"Loading details…",agentStructure:"Agent structure",secretHidden:"Sensitive value hidden. Select to reveal it.",revealSecret:"Show the value of {{key}}",fields:{model:"Model",description:"Description",status:"Status details",project:"Project",version:"Version",resources:"Resources",memory:"Memory",tool:"Tool",knowledge:"Knowledge",mcpToolset:"MCP Toolset",updatedAt:"Updated"},resource:{memory:"Memory {{value}} MB",instances:"Instances {{min}}-{{max}}",concurrency:"Concurrency {{value}}"},environmentVariables:"Environment variables",unnamed:"(Unnamed)"},hle={mainAgent:"Main Agent",subAgent:"Sub-agent {{index}}",itemCount_one:"{{count}} item",itemCount_other:"{{count}} items",info:"Agent information",infoAndTopology:"Agent information and topology",loadingInfo:"Loading Agent information…",unnamedAgent:"Unnamed Agent",tools:"Tools",toolList:"Tool list",studioTool:"Studio Tool",removeTool:"Remove tool {{name}}",remove:"Remove",notConfigured:"Not configured",addStudioTool:"Add Studio tools",addStudioToolHere:"Add Studio tools to this chat",skills:"Skills",skillList:"Skill list",previewUnsupported:"Preview is not supported",sessionEnvironment:"Session environment",environment:"Environment",agentCanvas:"Agent canvas",topology:"Structure",viewCanvasFullscreen:"View Agent canvas in full screen",viewFullscreen:"View full screen",executionCanvas:"Agent execution canvas",fullscreenExecutionCanvas:"Full-screen Agent execution canvas",closeFullscreenCanvas:"Close full-screen canvas",close:"Close",capabilitiesSubtitle:"Capabilities and collaboration topology",closeInfo:"Close Agent information",infoUnavailable:"Agent information is temporarily unavailable."},ple={mountFailed:"Could not mount the environment",closeDialog:"Close environment dialog",addTitle:"Add environments",description:"Choose the Sandbox environments this Agent can use in the current session",closeAdd:"Close Add environments",searchAria:"Search environments",searchPlaceholder:"Search environment names or capabilities",availableAria:"Available environments and workspaces",loading:"Loading available environments…",noMatch:"No matching environments or workspaces",workspaces:"Workspaces",reuseAll:"Use every available environment in this workspace",availableEnvironmentCount_one:"{{count}} available environment",availableEnvironmentCount_other:"{{count}} available environments",selectWorkspace:"Select workspace {{name}}",environments:"Environments",includedByWorkspaces:"Included by workspace {{names}}",nameSeparator:", ",selectEnvironment:"Select environment {{name}}",selectedWorkspaceCount_one:"{{count}} workspace selected",selectedWorkspaceCount_other:"{{count}} workspaces selected",coveredEnvironmentCount_one:"{{count}} environment covered",coveredEnvironmentCount_other:"{{count}} environments covered",selectionSummary:"{{workspaces}}, {{environments}}",cancel:"Cancel",mounting:"Mounting…",confirm:"Add selected",mountedAria:"Mounted environments",environmentCount_one:"{{count}} environment",environmentCount_other:"{{count}} environments",removeWorkspace:"Remove workspace {{name}}",remove:"Remove",removeEnvironment:"Remove environment {{name}}",add:"Add environments",addMore:"Add more environments",addForSession:"Add environments to this session",loadingAvailable:"Loading available environments…",empty:"No AIO Sandbox environments are available."},mle={loading:{searching:"Looking for an existing environment",creating:"Initializing environment",connecting:"Connecting to the environment"},initializationFailed:"AgentKit CLI environment initialization failed. Current status: {{status}}.",sessionExpired:"The AgentKit CLI session does not exist or has expired. Try again.",initializationTimeout:"AgentKit CLI environment initialization timed out. Try again later.",nonPersistent:"Non-persistent environment",recyclingHoursMinutes:"Environment reclaimed in {{hours}} hr {{minutes}} min",recyclingMinutes:"Environment reclaimed in {{minutes}} min",connectionError:`Could not connect to the Studio service because the server did not respond. +Original error: {{message}}`,unavailable:"Connection unavailable",requestFailed:"AgentKit CLI request failed",retry:"Retry",terminalTitle:"AgentKit CLI terminal"},gle={labels:{coding:"Coding",get_city_weather:"City weather",get_location_weather:"Location weather",web_fetch:"Fetch web content"},closeDialog:"Close dialog",title:"Add Studio tools",description:"Studio BFF runs these tools for {{agentName}} in the current session. No Runtime installation is required.",close:"Close Add Studio tools",searchAria:"Search Studio tools",searchPlaceholder:"Search by name or tool ID",availableAria:"Available Studio tools",loading:"Loading Studio tools…",noMatch:"No matching Studio tools",remove:"Remove",add:"Add"},ble={artifactLibrary:sle,resourceMetadata:ale,artifactEdit:ole,codeBrowser:lle,search:cle,developerResources:ule,library:dle,manageAgents:fle,agentTopology:hle,sessionEnvironment:ple,agentKitCli:mle,studioTools:gle},kMe=Object.freeze(Object.defineProperty({__proto__:null,agentKitCli:mle,agentTopology:hle,artifactEdit:ole,artifactLibrary:sle,codeBrowser:lle,default:ble,developerResources:ule,library:dle,manageAgents:fle,resourceMetadata:ale,search:cle,sessionEnvironment:ple,studioTools:gle},Symbol.toStringTag,{value:"Module"})),yle={requestFailed:"请求失败 ({{status}})",unknownError:"未知错误",contentTypeMissing:"Content-Type 缺失",response:"响应:{{response}}",fallbackWithDetail:"{{fallback}}:{{detail}}",fallbackWithHttpStatus:"{{fallback}}(HTTP {{status}})",nonJsonResponse:"{{fallback}}:服务端返回非 JSON 响应({{contentType}})"},vle={unconfigured:"管理员未配置 AgentKit Dev Sandbox,请配置后再使用",invalidSession:"AgentKit CLI 返回了无效的 Session。",loadCapabilitiesFailed:"无法读取 AgentKit CLI 配置。",invalidCapabilities:"AgentKit CLI 返回了无效的配置状态。",listSessionsFailed:"无法读取 AgentKit CLI Session。",invalidSessionList:"AgentKit CLI 返回了无效的 Session 列表。",createSessionFailed:"无法创建 AgentKit CLI Session。",openSessionFailed:"无法打开 AgentKit CLI Session。",openTerminalFailed:"无法打开 AgentKit CLI 终端。",invalidTerminalUrl:"AgentKit CLI 返回了无效的终端地址。"},xle={cnBeijing:"华北 2(北京)",cnShanghai:"华东 2(上海)"},wle={runtimeUnsupported:"该 Runtime 暂不支持连接,请确认服务已正常运行。"},Ole={autoConfigureFailed:"飞书机器人自动配置失败"},Sle={actionFailed:"{{action}}失败",detail:"详细信息:{{detail}}",request:"请求:{{request}}"},kle={persistentMemoryHint:"提示:会话已不存在。使用 in-memory 或 SQLite 短期记忆时,多实例、进程重启或滚动发布都可能导致会话丢失;建议改用基于数据库的持久化短期记忆存储。",unsupportedRouteHint:"提示:该 Runtime 未提供会话能力运行接口,可能是 Runtime 版本与当前 Studio 不兼容。",toolArgumentHint:"提示:模型生成的工具参数格式不完整,请重新发送一次。",resourceCollectionExpiredHint:"提示:本次资源清单已失效,请重新发送任务;系统会重新收集资源后再创建 Agent。",networkConfigurationHint:"提示:请检查共享公网出口等网络配置,然后重试。",modelQuotaHint:"提示:模型当前触发了 TPM/RPM 配额限制,请稍后重试或提高模型配额。",rawResponseLabel:"原始响应:"},Ele={httpStatus:"HTTP 状态码:{{status}}",errorCode:"错误码:{{code}}",cloudResponseBody:`云端响应正文: +{{body}}`,loadFailedWithDetail:"读取实例日志失败:{{detail}}",invalidFormat:"读取实例日志失败:服务返回格式无效"},Cle={untitledSession:"未命名会话",webUnavailable:"网络搜索接口未就绪(后端未启用 /web/search)。",webFailed:"网络搜索失败:{{message}}",webNotMounted:"当前 Agent 未挂载 web_search 工具。",knowledgeNotMounted:"该 Agent 未挂载知识库。",memoryNotMounted:"该 Agent 未挂载长期记忆。",knowledge:"知识库",longTermMemory:"长期记忆"},Tle={listSpacesFailed:"读取 Skill 空间失败",createSpaceFailed:"创建 Skill 空间失败",updateSpaceFailed:"更新 Skill 空间失败",deleteSpaceFailed:"删除 Skill 空间失败",uploadFailed:"上传 Skill 失败",validateFailed:"校验 Skill 失败",deleteFailed:"删除 Skill 失败",listFilesFailed:"读取 Skill 文件失败",downloadFailed:"下载 Skill 失败"},Ale={truncatedData:"{{data}}…(已截断,共 {{count}} 个字符)",incompleteEvent:"SSE 流在事件完整返回前已结束。原始数据:{{data}}",invalidEventJson:"无法解析 SSE 事件中的 JSON。原始数据:{{data}}"},_le={loadConfigNetworkFailed:"无法加载登录配置,请检查网络后重试。",configServiceFailed:"登录配置服务异常(HTTP {{status}}),请稍后重试。",invalidConfigResponse:"登录配置服务返回了无法解析的响应,请稍后重试。",serviceNetworkFailed:"无法连接身份服务,请检查网络后重试。",invalidServiceResponse:"身份服务返回了无法解析的响应,请稍后重试。",serviceFailed:"身份服务异常(HTTP {{status}}),请稍后重试。"},Nle={invalidToken:"GitHub Token 无效或没有仓库写入权限",notFound:"仓库、分支或文件不存在,或 Token 无权访问",rejectedCommit:"GitHub 拒绝了提交,请检查分支和文件状态",requestFailed:"GitHub 请求失败(HTTP {{status}})",networkFailed:"连接 GitHub 失败,请检查网络后重试",invalidRepositoryFormat:"GitHub Repo 格式应为 owner/repository",insecureRepositoryUrl:"仅支持安全的 github.com 仓库地址",unsafeProjectPath:"Agent 项目目录必须是仓库内的安全相对路径",tokenRequired:"GitHub Token 不能为空",invalidBaseBranch:"目标分支格式不正确",invalidPublishBranch:"发布分支格式不正确",noFiles:"没有需要提交的文件",missingBaseSha:"目标分支缺少有效 Git SHA",fileAlreadyExists:"目标仓库中已存在 {{path}},未覆盖现有文件",pathNotUpdatable:"目标路径 {{path}} 不是可更新的文件",invalidPullRequest:"GitHub 未返回有效的 Pull Request"},jle={loadCapabilitiesFailed:"加载视频模型能力失败",uploadAssetFailed:"上传{{fileName}}失败",enhancePromptFailed:"提示词优化失败",createTaskFailed:"创建视频生成任务失败",getTaskFailed:"查询视频生成任务失败",downloadFailed:"下载生成视频失败"},Rle={listFailed:"加载网站集成失败",createFailed:"创建网站集成失败",deleteFailed:"删除网站集成失败"},Ile={loadFailed:"读取知识库失败",htmlHidden:"[HTML 内容已隐藏]",redacted:"[已脱敏]",depthTruncated:"[内容过深,已截断]",circularReference:"[循环引用]",diagnosticsUnavailable:"[诊断信息无法显示]",statusCode:"状态码:{{status}}",errorCode:"错误码:{{code}}",requestId:"请求 ID:{{requestId}}",diagnostics:"诊断:{{diagnostics}}",detail:"详情:{{detail}}",signInRequired:"请先登录后再访问知识库",forbidden:"你没有权限操作这个知识库",notFound:"知识库或知识内容不存在",conflict:"知识库当前状态不允许执行此操作",requestFailed:"知识库请求失败 ({{status}})"},Ple={invalidSourceSnapshot:"源码快照的响应格式无效。",invalidProjectList:"项目列表的响应格式无效。",invalidProjectVersion:"项目版本的响应格式无效。",loadProjectsFailed:"无法读取已保存项目",loadVersionsFailed:"无法读取项目版本",deleteVersionFailed:"删除项目版本失败",invalidDeleteVersionResponse:"删除项目版本的响应格式无效。",loadProjectSourceFailed:"无法读取项目源码",loadSnapshotFailed:"无法读取源码快照",restoreSnapshotFailed:"无法恢复当前源码快照",downloadSourceFailed:"下载源码失败",downloadNotZip:"源码下载响应不是 ZIP 文件。",downloadSizeMismatch:"源码压缩包大小与发布记录不一致,请重试。"},Dle={invalidFormat:"{{label}}格式错误。",validationSeparator:";",invalidAnalysisResult:"迁移分析结果格式错误。",invalidFrameworkCandidate:"框架候选格式错误。",invalidAnalysisEvidence:"分析证据格式错误。",invalidEntryCandidate:"入口候选格式错误。",invalidQuestion:"待确认问题格式错误。",invalidTask:"迁移会话格式错误。",invalidAnalysisReference:"分析结果引用格式错误。",invalidSourcePersistence:"迁移源码保存状态格式错误。",invalidActivity:"迁移执行动态格式错误。",invalidActivityItem:"迁移执行动态项格式错误。",invalidActivityTool:"迁移执行工具项格式错误。",invalidActivityPlan:"迁移执行计划格式错误。",invalidActivityPlanItem:"迁移执行计划项格式错误。",invalidArtifact:"迁移产物格式错误。",invalidEnvironmentDefaults:"环境变量默认值格式错误。",invalidArtifactFile:"迁移产物文件格式错误。",invalidVerificationCheck:"迁移校验项格式错误。",requestValidationFailed:"请求参数校验失败:{{detail}}",gatewayError:"{{fallback}}(HTTP {{status}},Content-Type: {{contentType}})。请检查代理或网关配置。",nonJsonResponse:"{{fallback}}:服务端返回非 JSON 响应(HTTP {{status}})。请检查代理或网关配置。",loadCapabilitiesFailed:"读取迁移能力失败",invalidCapabilities:"迁移能力格式错误。",invalidModelCapabilities:"迁移模型能力格式错误。",loadTasksFailed:"读取迁移会话失败",invalidTaskList:"迁移会话列表格式错误。",createTaskFailed:"创建迁移会话失败",uploadProjectFailed:"上传迁移项目失败",loadActivityFailed:"读取迁移执行动态失败",startFailed:"启动迁移失败",submitAnswersFailed:"提交分析补充信息失败",stopFailed:"终止迁移失败",deleteTaskFailed:"删除迁移会话失败",loadArtifactFailed:"读取迁移产物失败",loadArtifactFileFailed:"读取迁移产物文件失败",downloadArtifactFailed:"下载迁移产物失败",labels:{analysisResult:"迁移分析结果",recommendation:"迁移建议",boundary:"迁移边界",frameworkCandidate:"框架候选",analysisEvidence:"分析证据",recommendedFramework:"推荐框架",entryCandidate:"入口候选",entryFramework:"入口框架",includeScope:"迁移包含范围",excludeScope:"迁移排除范围",assumptions:"分析假设",question:"待确认问题",analysisWarnings:"迁移警告",task:"迁移会话",artifactStatus:"迁移产物状态",analysisReference:"分析结果引用",confirmation:"迁移确认",confirmedFramework:"确认框架",error:"迁移错误",sourcePersistence:"迁移源码保存状态",activity:"迁移执行动态",activityItem:"迁移执行动态项",activityTool:"迁移执行工具项",activityPlanItem:"迁移执行计划项",artifact:"迁移产物",cli:"CLI 信息",migration:"迁移信息",startup:"启动信息",environment:"环境变量信息",verification:"校验信息",report:"迁移报告",archive:"产物归档",environmentDefaults:"环境变量默认值",requiredEnvironment:"必需环境变量",optionalEnvironment:"可选环境变量",artifactFile:"迁移产物文件",verificationCheck:"迁移校验项",artifactWarnings:"迁移产物警告",errorResponse:"错误响应",errorDetail:"错误详情",capabilities:"迁移能力",framework:"迁移框架",modelCapabilities:"迁移模型能力",taskList:"迁移会话列表"}},Mle={status:{ready:"就绪",wakeable:"已休眠",creating:"创建中",starting:"启动中",pending:"等待中",running:"运行中",failed:"异常",stopped:"已停止",expired:"已过期",deleting:"删除中",deleted:"已删除",unknown:"未知状态"},developmentTimeout:"等待开发环境响应超时。任务可能仍在运行,请稍后重新进入当前会话查看状态。",developmentDisconnected:"与开发环境的连接已中断。任务可能仍在运行,请稍后重新进入当前会话查看状态。",developmentFailed:"开发任务未能继续,开发环境已保留。请在当前会话重试。",invalidStudioResponse:"{{fallback}} Studio 服务响应异常,请刷新后重试。",invalidSession:"AgentKit 沙箱返回了无效的 Session 信息。",invalidSnapshot:"AgentKit 沙箱返回了无效的 Snapshot 信息。",invalidSettings:"Sandbox 返回了无效设置。",invalidThreadSnapshot:"Sandbox 返回了无效 Thread 快照。",emptyConversationResponse:"沙箱对话服务未返回内容。",invalidConversationResponse:"沙箱对话服务返回了无法解析的响应。",conversationFailed:"沙箱对话失败,请稍后重试。",emptyReply:"沙箱未返回有效回复,请重试。",missingSession:"缺少要操作的 AgentKit Session。",listCodexFailed:"无法读取 Codex 智能体,请稍后重试。",invalidSessionList:"AgentKit 沙箱返回了无效的 Session 列表。",invalidSnapshotList:"AgentKit 沙箱返回了无效的 Snapshot 列表。",startFailed:"无法启动 AgentKit 沙箱,请稍后重试。",listAgentFailed:"无法读取 {{kind}} 智能体,请稍后重试。",invalidKindSessionList:"AgentKit 返回了无效的 {{kind}} Session 列表。",invalidKindSnapshotList:"AgentKit 返回了无效的 {{kind}} Snapshot 列表。",createAgentFailed:"无法创建 {{kind}} 智能体,请稍后重试。",missingSessionToOpen:"缺少要打开的 AgentKit Session。",openAgentFailed:"无法打开 {{kind}} 智能体。",invalidAgentHomeUrl:"{{kind}} 智能体返回了无效的主页面地址。",missingSessionForTerminal:"缺少要打开 Terminal 的 AgentKit Session。",openTerminalFailed:"无法打开 {{kind}} Terminal。",deleteAgentFailed:"无法删除 {{kind}} 智能体。",missingSnapshot:"未找到要唤醒的智能体。",resumeSnapshotFailed:"无法唤醒智能体,请稍后重试。",deleteSnapshotFailed:"无法删除智能体,请稍后重试。",missingSessionToConnect:"缺少要连接的 AgentKit Session。",connectCodexFailed:"无法连接 Codex 智能体,请稍后重试。",sessionNotReady:"AgentKit Session 尚未就绪,当前状态:{{status}}。",invalidMessage:"内置智能体会话缺少有效的消息内容。",interruptFailed:"无法停止当前任务。",getStatusFailed:"无法读取 Codex 状态。",getEndpointFailed:"无法读取 Sandbox Endpoint。",invalidEndpoint:"Sandbox 返回了无效 Endpoint。",createHandoffPairingFailed:"无法生成 Codex 云端接力配对码。",invalidHandoffPairing:"Studio 返回了无效的 Codex 云端接力配对码。",getHandoffStatusFailed:"无法读取端云接力状态。",invalidHandoffStatus:"Studio 返回了无效的端云接力状态。",listModelsFailed:"无法读取 Codex 模型列表。",invalidModelList:"Sandbox 返回了无效模型列表。",setModelFailed:"无法切换 Codex 模型。",invalidModel:"Sandbox 返回了无效模型。",listSkillsFailed:"无法读取 Codex Skills。",invalidSkillList:"Sandbox 返回了无效 Skill 列表。",listThreadsFailed:"无法读取 Codex Thread 列表。",invalidThreadList:"Sandbox 返回了无效 Thread 列表。",createThreadFailed:"无法创建新的 Codex Thread。",missingThread:"缺少要读取的 Codex Thread。",readThreadFailed:"无法读取 Codex 历史消息。",resumeThreadFailed:"无法恢复 Codex Thread。",forkThreadFailed:"无法分叉 Codex Thread。",archiveThreadFailed:"无法归档 Codex Thread。",invalidArchiveResult:"Sandbox 返回了无效归档结果。",deleteThreadFailed:"无法删除 Codex Thread。",invalidDeleteResult:"Sandbox 返回了无效删除结果。",compactThreadFailed:"无法压缩 Codex Thread。",getSettingsFailed:"无法读取 Codex 权限与工作空间。",updatePermissionsFailed:"无法更新 Codex 权限。",updateWorkspaceFailed:"无法更新 Codex 工作空间。",invalidWorkingDirectory:"Sandbox 返回了无效工作目录。",listDirectoriesFailed:"无法读取 Sandbox 目录。",invalidDirectoryList:"Sandbox 返回了无效目录列表。",resolveApprovalFailed:"无法提交 Codex 审批决定。",uploadFileFailed:"无法上传文件到 Sandbox。",invalidUploadResult:"Sandbox 返回了无效上传结果。",disconnectCodexFailed:"无法断开 Codex 智能体连接。",deleteCodexFailed:"无法删除 Codex 智能体。",openSandboxTerminalFailed:"无法打开 Sandbox Terminal。",openSandboxBrowserFailed:"无法打开 Sandbox Browser。",toolLabel:"Sandbox 工具",invalidToolUrl:"{{label}} 返回了无效地址。",unsafeToolUrl:"{{label}} 返回了不安全的地址。"},Lle={invalidSandboxVersion:"沙箱版本响应格式无效",loadSandboxVersionsFailed:"查询沙箱版本失败",updateSandboxFailed:"更新 Sandbox 失败",invalidSandboxUpdate:"沙箱更新响应格式无效",errorWithDetailAndRawResponse:`{{context}} {{detail}} 原始响应: {{response}}`,errorWithRawResponse:`{{context}} 原始响应: -{{response}}`,loadArkApiKeysFailed:"加载 Ark API Key 失败",loadModelsFailed:"加载模型列表失败",runtimeAccessDenied:"当前账号无权访问该 Runtime,请刷新列表或重新登录后重试。",privateRuntimeUnavailable:"Runtime 已部署成功,但当前 Studio 无法访问私网 Runtime。请使用已绑定相同 VPC 的 Studio 访问,或改用公网 / 公网+VPC 部署。",runtimeTemporarilyUnavailable:"Runtime 已部署成功,但 Studio 暂时无法连接服务。网关域名可能仍在生效,或当前网络/DNS 无法访问该 Runtime,请稍后在智能体管理页重试连接。",runtimeConnectionUnsupported:"该 Runtime 的 Agent Server 未提供连接接口,请确认 Runtime 已就绪且版本兼容。",runtimeConnectionDenied:"Runtime 服务拒绝了连接请求,请检查 Runtime 的鉴权配置。",listAgentsFailed:"读取 Agent 列表失败",invalidListAppsJson:"Runtime /list-apps 返回了无法解析的 JSON 响应。",invalidListAppsFormat:"Runtime /list-apps 返回格式无效,应为非空字符串数组。",createSessionFailedWithStatus:"创建会话失败 ({{status}})",createSessionFailed:"创建会话失败",getSessionFailed:"读取会话失败",getSessionFailedWithDetail:"读取会话失败:{{status}}:{{detail}}",feedbackRuntimeOnly:"只有连接到 AgentKit Runtime 的会话支持反馈回流",feedbackRegionMissing:"Runtime 缺少地域信息,无法提交反馈",submitFeedbackFailed:"提交反馈失败",loadEvaluationSetsFailed:"读取评测集失败",loadAutoEvaluationStatusFailed:"读取自动评测状态失败",loadOptimizationsFailed:"读取优化项失败",deleteEvaluationCaseFailed:"删除评测案例失败",downloadFileFailed:"下载文件失败",fileUnavailable:"文件内容不可用",uploadFileFailed:"文件上传失败",traceDisabled:"该 Agent 暂未开启链路观测,请到控制台打开后使用。",loadTraceFailed:"加载调用链路失败",contentTypeMissing:"Content-Type 缺失",traceNonJson:"加载调用链路失败:服务端返回了非 JSON 响应({{contentType}}),请检查 Studio API 代理配置",invalidTraceFormat:"加载调用链路失败:返回格式无效",submitIssueFeedbackFailed:"问题反馈上报失败",issueFeedbackNotConfirmed:"问题反馈上报失败:服务端未确认提交结果",noPreviewableAgent:"该 Runtime 未提供可预览的 Agent。",agentSearchFailed:"Agent 检索失败",emptySseBody:"HTTP 200,SSE 响应体为空。",noDisplayableSseReply:"HTTP 200,SSE 响应中没有可展示的模型回复。",firstSseEventTimeout:"30 秒内未收到首个 SSE 事件。",runSessionFailed:"运行会话失败",runSseFailedWithDetail:"运行会话失败:{{status}}:{{detail}}",checkRuntimeNameFailed:"检查 Runtime 名称失败",invalidRuntimeNameCheck:"检查 Runtime 名称失败:服务返回格式错误",loadCloudResourcesFailed:"加载云资源失败",invalidCloudResources:"云资源列表响应格式无效",invalidEnvironmentMount:"挂载环境响应格式无效",environmentMountMismatch:"挂载环境响应与请求不一致",environmentMountNetworkFailed:"无法连接 Studio 服务,环境挂载未完成。请检查网络后重试。",environmentMountFailed:"挂载环境失败",clipboardUnsupported:"当前浏览器不支持写入剪贴板。",clipboardWriteFailed:"无法写入剪贴板,请检查剪贴板权限。",loadSystemInfoFailed:"加载系统信息失败",invalidSystemInfo:"系统信息响应格式无效",invalidEnvironmentBuild:"环境构建响应格式无效",invalidEnvironmentBuildStep:"环境构建步骤响应格式无效",invalidEnvironmentManifest:"环境 Manifest 响应格式无效",invalidImageRepository:"环境镜像仓库响应格式无效",invalidCodeRepository:"环境代码仓库响应格式无效",invalidImageSource:"环境镜像来源响应格式无效",invalidEnvironment:"环境响应格式无效",invalidWorkspace:"工作区响应格式无效",loadWorkspacesFailed:"加载工作区失败",invalidWorkspaceList:"工作区列表响应格式无效",saveWorkspaceFailed:"保存工作区失败",deleteWorkspaceFailed:"删除工作区失败",loadEnvironmentsFailed:"加载环境失败",invalidEnvironmentList:"环境列表响应格式无效",probeRepositoryFailed:"探查代码仓库失败",invalidRepositoryProbe:"代码仓库探查响应格式无效",exportEnvironmentCodeFailed:"导出环境分享码失败",invalidEnvironmentCode:"环境分享码响应格式无效",inspectEnvironmentCodeFailed:"检测环境分享码失败",invalidEnvironmentCodeInspection:"环境分享码检测响应格式无效",importEnvironmentCodeFailed:"导入环境分享码失败",invalidEnvironmentCodeImport:"环境分享码导入响应格式无效",studioUnavailable:"无法连接 Studio 服务,请确认后端已启动后重试。",saveEnvironmentFailed:"保存环境失败",deleteEnvironmentFailed:"删除环境失败",startEnvironmentBuildFailed:"启动环境构建失败",loadEnvironmentBuildFailed:"读取环境构建详情失败",loadEnvironmentManifestFailed:"读取环境 Manifest 失败",invalidEnvironmentResource:"环境资源响应格式无效",loadEnvironmentResourcesFailed:"加载环境构建资源失败",updateCodexSandboxFailed:"更新 Codex Sandbox 失败",invalidCodexSandboxUpdate:"Codex Sandbox 更新响应格式无效",loadUserPoolsFailed:"加载用户池失败",invalidUserPoolList:"用户池列表响应格式无效",syncGithubFailed:"同步 GitHub 代码失败 ({{status}})",validatingMigrationArtifact:"正在校验迁移产物",uploadingCodePackage:"正在上传代码包",migrationArtifactValidated:"迁移产物校验完成",codePackageUploaded:"代码包上传完成",deploymentProgress:{preparing:"正在准备部署",uploading:"正在上传代码包",building:"正在构建镜像",buildLogsSyncing:"正在构建镜像,构建日志已同步。",buildLogsComplete:"构建日志同步完成。",buildFailedLogsSynced:"镜像构建失败,最终构建日志已同步。",buildLogsUnavailable:"暂时无法读取构建日志。",finalBuildLogsUnavailable:"暂时无法读取最终构建日志。",deploying:"正在部署服务",publishing:"正在发布服务",evaluating:"正在创建评测集",updating:"正在更新 Runtime 配置",completing:"正在完成部署",github:"正在配置 GitHub 持续交付",inProgress:"正在部署"},deploymentFailed:"部署失败",deploymentDisconnected:"部署失败:连接中断",deploymentMissingAgentName:"部署失败:返回缺少 Agent 名称",deploymentMissingConnection:"部署失败:返回缺少 AgentKit 连接信息",cancelDeploymentFailed:"取消部署失败 ({{status}})",loadFailed:"加载失败 ({{status}})",loadPermissionsFailed:"加载权限失败 ({{status}})",invalidPermissionResponse:"权限服务返回了无法解析的响应",checkStudioUpdateFailed:"检查 Studio 更新失败 ({{status}})",studioUpdatePreflightFailed:"Studio 更新权限预检失败 ({{status}})",submitStudioUpdateFailed:"提交 Studio 更新失败 ({{status}})",loadAgentUsageFailed:"加载 Agent 用量失败",notProvided:"未提供",agentUsageNonJson:"加载 Agent 用量失败:服务端返回非 JSON 响应(HTTP {{status}},Content-Type: {{contentType}})。",checkStudioGateway:"请确认当前服务以 Studio 模式启动,并检查代理或网关配置。",agentUsageInvalidJson:"加载 Agent 用量失败:服务端返回了无法解析的 JSON(HTTP {{status}},Content-Type: {{contentType}})。",retryCheckGateway:"请稍后重试;若问题持续,请检查代理或网关配置。",loadCronJobsFailed:"加载定时任务失败",loadCronJobFailed:"加载定时任务详情失败",createCronJobFailed:"创建定时任务失败",updateCronJobFailed:"更新定时任务失败",enableCronJobFailed:"启用定时任务失败",pauseCronJobFailed:"暂停定时任务失败",runCronJobFailed:"立即执行定时任务失败",loadCronHistoryFailed:"加载执行历史失败",stopCronRunFailed:"终止执行失败",deleteCronJobFailed:"删除定时任务失败",loadRuntimeFailed:"加载 Runtime 失败",loadLocalToolsFailed:"读取本地工具失败",connectDynamicRouteFailed:"连接 Studio 动态路由失败",a2aProbeDenied:"Runtime 服务拒绝了 A2A 探测请求,请检查 Runtime 的鉴权配置。",loadA2aCardFailed:"读取 A2A Agent Card 失败",loadRuntimeApiKeyFailed:"读取 Runtime API Key 失败",runtimeApiKeyMissing:"Runtime 未返回可用的 API Key",deleteFailed:"删除失败 ({{status}})",runtimeManageForbidden:"当前账号没有管理该 Runtime 的权限。",runtimeNotFound:"该 Runtime 不存在或已被删除。",runtimeUnavailable:"当前账号无法访问该 Runtime。",checkRuntimeUpdateFailed:"检查 Runtime 更新能力失败(HTTP {{status}}),请稍后重试。",loadRuntimeDetailFailed:"加载 Runtime 详情失败",generateProjectFailed:"生成项目失败",generateAgentConfigFailed:"生成 Agent 配置失败",createDebugRunFailed:"创建调试运行失败",createDebugSessionFailed:"创建调试会话失败",loadDebugTraceFailed:"加载调试调用链路失败",invalidDebugTrace:"加载调试调用链路失败:返回格式无效",debugRunFailed:"调试运行失败",cleanupDebugRunFailed:"清理调试运行失败"},Ele={loadFailed:"读取会话模式能力失败(HTTP {{status}})",invalidResponse:"会话模式能力响应格式错误"},Cle={nonJson:"{{fallback}}:服务端返回非 JSON 响应(HTTP {{status}},{{contentType}}){{detail}}"},Tle={common:sle,agentkitCli:ale,cloudRegion:ole,connections:lle,feishuBot:cle,requestError:ule,runSse:dle,runtimeLogs:fle,search:hle,skills:ple,sse:mle,identity:gle,github:ble,video:yle,websiteIntegration:vle,knowledge:xle,intelligentDevelopment:wle,migrations:Ole,sandbox:Sle,client:kle,newChatCapabilities:Ele,jsonResponse:Cle},lMe=Object.freeze(Object.defineProperty({__proto__:null,agentkitCli:ale,client:kle,cloudRegion:ole,common:sle,connections:lle,default:Tle,feishuBot:cle,github:ble,identity:gle,intelligentDevelopment:wle,jsonResponse:Cle,knowledge:xle,migrations:Ole,newChatCapabilities:Ele,requestError:ule,runSse:dle,runtimeLogs:fle,sandbox:Sle,search:hle,skills:ple,sse:mle,video:yle,websiteIntegration:vle},Symbol.toStringTag,{value:"Module"})),Ale={backToEvaluationCase:"返回评测案例",cancel:"取消",copied:"已复制",copy:"复制",exportConversation:"导出会话",retry:"重试"},_le={title:"您想以哪种方式添加 Agent 来运行?",subtitle:"选择最适合你的方式,下一步即可开始",quickCreate:{title:"从 0 快速创建",description:"用智能、自定义、模板或工作流的方式从零创建一个 Agent。"},intelligent:{title:"智能模式",description:"描述目标,按你的意图构建、调试并验证 Agent。"},package:{title:"从代码包添加和部署",description:"上传 Agent 项目压缩包,查看代码并直接部署到 AgentKit Runtime。"},migrate:{title:"从存量迁移",description:"从您的 LangChain、Dify 等存量项目迁移至 AgentKit Runtime。"}},Nle={subject:{file:"文件修改",command:"命令执行"},decision:{accept:"已允许本次{{subject}}",acceptForSession:"已在本会话中允许{{subject}}",decline:"已拒绝{{subject}}",cancel:"已取消{{subject}}审批"},details:{command:"命令",grantRoot:"授权路径",cwd:"执行目录"}},jle={noDescription:"暂无描述",region:"地域",unknownAgent:"未知 Agent"},Rle={agentTransfer:"智能体移交",annotationHint:"模型回复;选中文字后可添加批注",continueBranch:"继续“{{branch}}”这个方向",emptyResponse:"本次没有返回可显示的内容。",subagentDescription:"正在执行主 Agent 移交的任务。"},Ile={title:"需要配置 {{provider}} AK/SK",prefix:"智能体工作台需要 {{provider}} 凭据才能使用。请在运行环境中设置",and:"与",suffix:"后重试。"},Ple={buildRunning:{title:"当前构建仍在进行",description:"离开将停止本轮构建;当前会话仍会保留,可稍后从历史会话重新进入。",confirm:"停止并离开"},deleteThread:{title:"删除 Codex 历史会话",description:"将删除“{{name}}”,并从历史会话中移除。",confirm:"确认删除"},returnToCreate:{title:"返回创建首页?",description:"返回后当前填写的内容将会丢失,确定要返回吗?",confirm:"确定返回"}},Dle={additionalAgentDeleteFailures:";另有 {{count}} 个失败",agentDeleteFailures:"{{count}} 个 Agent 删除失败:{{failures}}{{suffix}}",agentToolsMissing:"当前 Agent 缺少任务工具:{{tools}}",buildStopUnconfirmed:"已离开开发环境,但未能确认本轮构建已停止。任务可能仍在运行,请稍后从历史会话检查状态。",builtinAgentSendFailed:"内置智能体发送失败:{{message}}",bytePlusEvaluationUnsupported:"BytePlus 暂不支持 AgentKit 评测集",clipboardUnsupported:"当前浏览器不支持写入剪贴板。",cloudCodexEmptyReply:"云端 Codex 已结束,但没有生成回复,请重新发送任务。",cloudCodexSessionMissing:"云端 Codex Session 暂未出现在列表中,请稍后重试。",deploymentRuntimeIdMissing:"部署完成,但未返回 Runtime ID。",environmentExpired:"所选环境已失效,请刷新后重新选择。",environmentsLoadFailed:"读取环境失败",evaluationCaseSessionMissing:"这条案例缺少会话定位信息,无法跳转。",evaluationUnsupportedForReply:"当前回复暂不支持加入评测集",firstFrameRequired:"首尾帧生成需要先添加首帧图片。",incompletePromptOptimization:"提示词优化结果不完整,请重新优化后再试。",intelligentCapabilityCheckFailed:"智能开发能力检查失败(HTTP {{status}})",intelligentSessionCreateFailed:"智能开发会话创建失败",invalidIntelligentCapability:"智能开发模型能力格式错误。",localBffToolsNotConfigured:"本地 Studio BFF 没有配置工具。",localToolsLoadFailed:"读取本地工具失败",loginPopupBlocked:"登录窗口被浏览器拦截,请允许弹出窗口后重试。",loginPopupClosed:"登录窗口已关闭,请重新登录以继续当前操作。",mediaTooLarge:"{{fileName}} 超出当前平台允许的素材大小。",mountEnvironmentFailed:"挂载环境失败",noConnectedSandbox:"当前没有已连接的 Sandbox。",noCreateAgentPermission:"当前账号没有添加 Agent 的权限。",noManageAgentPermission:"当前账号没有管理 Agent 的权限。",noOptimizationBaseline:"当前版本没有可对比的优化前版本。",oauthUrlMissing:"事件中没有授权地址。",onlyCloudAgentUpdatable:"仅支持更新已部署的云端智能体。",optimizationVersionMissing:"无法找到本次优化对应的项目版本,可能已被删除。",persistentStorageNotConfigured:"管理员未配置持久化存储",readDraftFailed:"无法读取本机草稿,请稍后重试。",runtimeAgentNameMissing:"Runtime 缺少智能体名称,无法更新。",runtimeBffToolsDisabled:"当前 Runtime Agent 未开启 BFF 工具能力。",runtimeDeploymentConfigUnavailable:"该 Runtime 的原发布配置不可恢复,无法安全更新。",runtimeMissingForConnection:"缺少 Runtime 信息,无法连接智能体。",runtimeRegionMissingForDelete:"Runtime 缺少地域信息,无法删除",runtimeRegionMissingForUpdate:"Runtime 缺少地域信息,无法更新。",runtimeUpdateUnsupported:"当前 Runtime 不支持原地更新。",sandboxRuntimeUnavailable:"当前 Agent 没有可用的 Sandbox Runtime。",sandboxToolsUnavailable:"当前 Studio BFF 未提供 Sandbox 执行工具。",saveDraftLocationRejected:"浏览器拒绝保存当前草稿位置,请检查站点存储权限后重试。",saveDraftRejected:"浏览器拒绝保存草稿,请稍后重试。",selectSkillToOptimize:"请先选择需要优化的 Skill。",sessionMissingForMount:"当前会话不存在,无法挂载环境。",sessionNotReady:"会话尚未就绪。",sessionUnavailable:"当前会话不可用,请关闭后重试。",sourceNotReady:"该源码尚未准备好,请返回对话继续处理。",textVideoRejectsReferences:"文生视频不使用参考素材,请先移除已添加的图片或视频。",videoEditRequiresVideo:"视频编辑需要先添加待编辑视频。",videoExtendRequiresVideo:"视频续写需要先添加基础视频。",videoGenerationFailed:"视频生成失败,请稍后重试。",videoModeUnsupported:"当前平台暂不支持所选视频任务模式。",videoPreviewMissing:"视频任务已完成,但服务端未返回预览地址。",videoReferenceRequired:"参考素材生视频需要至少添加一项参考图片或参考视频。"},Mle={like:"赞",removeLike:"取消点赞",dislike:"踩",removeDislike:"取消点踩",reportIssue:"问题反馈",traceFlameGraph:"Tracing 火焰图"},Lle={0:"今天想做点什么?",1:"有什么可以帮你的?",2:"需要我帮你查点什么吗?",3:"有问题尽管问我",4:"嗨,我们开始吧",5:"开始一段新对话吧",6:"今天想先解决哪件事?",7:"把你的想法告诉我吧",8:"我们从哪里开始?",9:"有什么任务交给我?",10:"准备好一起推进了吗?",11:"说说你现在最关心的问题",12:"今天也一起把事情做好",13:"我在,随时可以开始",intelligentDevelopment:"让灵感自由生长"},$le={agentCapabilities:"正在检查 Agent 能力…",session:"加载会话…"},Fle={cancelled:"授权已取消。",pasteCallbackUrl:"授权完成后,请粘贴回调页面(浏览器地址栏)的完整 URL:",popupBlocked:"弹窗被拦截,请允许弹窗后重试。",unsupportedUrl:"授权链接不是 http/https 地址,已阻止打开。"},Ble={volcengine:"火山引擎"},Ule={checkingPersistence:"正在检查持久化能力…",exitDevelopment:"退出开发环境",fileUploaded:"已上传文件到 Sandbox",filesUploaded:"已上传 {{count}} 个文件到 Sandbox",intelligentDevelopment:"智能开发",mode:{readOnly:"只读",workspaceWrite:"工作区写入",fullAccess:"完全访问"},approvalPolicy:{untrusted:"仅不可信命令",onRequest:"按需审批",never:"不审批"},reviewer:{user:"由我审批",autoReview:"自动审查"},labels:{approvalPolicy:"审批策略",file:"文件",fileNumber:"文件 {{number}}",mode:"沙箱模式",networkAccess:"网络访问",reviewer:"审批方式",workingDirectory:"工作目录"},network:{allowed:"允许",disabled:"关闭"},permissionsUpdated:"已更新当前 Sandbox Session 的 Codex 权限",persistenceUnknown:"暂时无法确认持久化能力",stoppedReady:"已停止,可继续输入",uploadedFilesPrompt:"以下文件已上传到当前 Sandbox 工作空间,请在任务中使用:",workspaceUpdated:"已更新工作空间"},Qle={addAgent:"添加智能体",addFromPackage:"从代码包添加",agent:"智能体",automations:"自动化",createAgent:"创建智能体",createSkill:"创建技能",cronJobs:"定时任务",issueFeedback:"问题反馈",library:"资源库",migrateAgent:"迁移智能体",newConversation:"新会话",optimizeSkill:"优化 {{name}}",search:"搜索",skill:"技能",skillLibrary:"技能库",systemInfo:"系统信息",updateAgent:"更新 {{name}}"},zle={actions:Ale,addAgent:_le,approval:Nle,common:jle,conversation:Rle,credentials:Ile,dialogs:Ple,errors:Dle,feedback:Mle,greetings:Lle,loading:$le,oauth:Fle,providers:Ble,sandbox:Ule,titles:Qle},cMe=Object.freeze(Object.defineProperty({__proto__:null,actions:Ale,addAgent:_le,approval:Nle,common:jle,conversation:Rle,credentials:Ile,default:zle,dialogs:Ple,errors:Dle,feedback:Mle,greetings:Lle,loading:$le,oauth:Fle,providers:Ble,sandbox:Ule,titles:Qle},Symbol.toStringTag,{value:"Module"})),Vle="自动化",Hle="连接研发工具,为智能体扩展自动化工作流",qle="搜索自动化",Wle="自动化分类",Gle={development:"研发",channels:"消息渠道"},Kle="{{category}}自动化列表",Xle="打开{{name}}",Yle="仅本地部署可用",Zle="没有匹配的自动化",Jle="请尝试搜索其他名称",ece="返回自动化列表",tce={"coding-agents":{name:"配置 Coding Agents",badge:"本地",description:"将 VeADK 和 AgentKit 内置 Skills 全局配置到 Trae、Claude Code 或 Codex。"},template:{name:"模板项目导入",description:"在您的仓库中创建一个可持续交付到 AgentKit Runtime 的最简智能体",title:"模板项目导入",subtitle:"把可直接启动 Studio 的 basic Agent 和持续交付配置加入仓库",panel:"提交后将创建一个 PR,同时导入 basic 项目和 AgentKit Runtime 发布工作流。",submitLabel:"导入模板并提交 PR",regionHelp:"必须与目标 Runtime 所在地域一致",pullRequest:{title:"feat: 导入 AgentKit basic 模板",description:"导入带有 AgentKit Studio App Server 的 basic Agent 项目,并添加持续发布到 AgentKit Runtime 的工作流。合并前请配置 {{provider}} Secrets。"},fields:{repository:{label:"GitHub 仓库",placeholder:"owner/repository",help:"支持 owner/repository 或完整 github.com URL"},baseBranch:{label:"目标分支",placeholder:"main",help:"留空时使用 main,PR 将以此分支为 base"},projectPath:{label:"Agent 项目目录",placeholder:"agentkit-basic-agent",help:"将在此目录新增 basic 项目;app.py 挂载完整 Studio App Server,并作为服务入口启动"},runtimeName:{label:"Runtime 名称",placeholder:"support-agent",help:"用于 AgentKit 发布配置"},runtimeId:{label:"运行时 ID",placeholder:"rt-xxxxxxxx",help:"持续更新的目标 AgentKit Runtime"}}},delivery:{name:"AgentKit Runtime 持续交付",description:"为您的仓库添加持续交付到 AgentKit Runtime 的自动化工作流。",title:"AgentKit Runtime 持续交付",subtitle:"用 Pull Request 把持续发布配置安全地加入代码仓库",panel:"提交后将在目标仓库创建发布分支,并发起包含 GitHub Actions 工作流的 PR。",submitLabel:"确定并提交 PR",regionHelp:"必须与目标 Runtime 所在地域一致",pullRequest:{title:"feat: 持续发布到 AgentKit Runtime",description:"新增 GitHub Actions 工作流,在目标分支更新时持续发布到 AgentKit Runtime。合并前请配置工作流所需的 {{provider}} Secrets。"},fields:{repository:{label:"GitHub 仓库",placeholder:"owner/repository",help:"支持 owner/repository 或完整 github.com URL"},baseBranch:{label:"目标分支",placeholder:"main",help:"留空时使用 main,PR 将以此分支为 base"},projectPath:{label:"Agent 项目目录",placeholder:".",help:"留空时使用仓库根目录;目录内需包含挂载完整 Studio App Server 的 app.py"},runtimeName:{label:"Runtime 名称",placeholder:"support-agent",help:"用于 AgentKit 发布配置"},runtimeId:{label:"运行时 ID",placeholder:"rt-xxxxxxxx",help:"持续更新的目标 AgentKit Runtime"}}},review:{name:"PR 自动评审",description:"通过 GitHub App 在隔离 Sandbox 中评审 Pull Request。",title:"PR 自动评审",subtitle:"通过 GitHub App 触发 Sandbox 评审,并将结果发布到 Pull Request",panel:"请先将 GitHub App 安装到目标仓库,再为每个仓库启用自动评审。",submitLabel:"安装 GitHub App",regionHelp:"",pullRequest:{title:"chore: 配置 PR 自动评审",description:"新增 GitHub Actions 工作流,在隔离 Sandbox 中评审同仓库 PR,并将结果发布为 GitHub Review。合并前请配置工作流所需 Secrets。"},fields:{repository:{label:"GitHub 仓库",placeholder:"owner/repository",help:"支持 owner/repository 或完整 github.com URL"},baseBranch:{label:"目标分支",placeholder:"main",help:"留空时使用 main,PR 将以此分支为 base"},sandboxToolId:{label:"沙箱工具 ID",placeholder:"tool-xxxxxxxx",help:"用于运行每次评审的 AgentKit CodeEnv"},modelName:{label:"评审模型",placeholder:"review-model",help:"注入 Sandbox 的代码评审模型名称"},modelBaseUrl:{label:"模型 API 地址",placeholder:"https://ark.example.com/api/v3",help:"必须使用 OpenAI 兼容的 HTTPS 地址"}}},feishu:{name:"飞书机器人",badge:"Beta",description:"创建飞书机器人,并将消息直接接入 AgentKit Runtime。"},"website-integration":{name:"网站集成",description:"将 AgentKit Runtime 以悬浮聊天窗口嵌入网站。"}},nce={required:"必填",optional:"可选",region:"地域",tokenLabel:"GitHub Token",getToken:"获取 Token",createToken:"创建 GitHub Token",tokenPlaceholder:"需要仓库 Contents 与 Pull requests 写权限",tokenWorkflowPlaceholder:"需要 Contents、Pull requests、Workflows 写权限",hideToken:"隐藏 Token",showToken:"显示 Token",tokenHelp:"Token 仅用于本次提交,不会保存在浏览器或写入 PR",tokenWorkflowHelp:"此处 Token 用于创建配置 PR;它不是 Sandbox 的通用必填项,且不会保存在浏览器或写入 PR",prCreated:"PR #{{number}} 已创建",configPrCreated:"配置 PR #{{number}} 已创建",configPrNextStep:"合并后,后续同仓库 PR 会自动触发评审。",viewOnGitHub:"在 GitHub 查看",viewConfigPr:"查看配置 PR",secretsHeading:"合并 PR 前,请在仓库的 GitHub Actions Secrets 中配置:",secretsConfigHeading:"合并配置 PR 前,请在目标仓库添加运行时密钥",openSecrets:"打开 Secrets 设置",secretsPath:"路径:Settings → Secrets and variables → Actions → Repository secrets",repositoryConfigHelp:"将为 {{repository}} 添加 PR 自动评审配置",repositoryReviewHelp:"将使用 GitHub App 校验 {{repository}} 的 Pull Request",secretPair:"{{accessKey}}、{{secretKey}}(必填)",sessionToken:"{{sessionToken}}(使用临时凭据时必填)",requiredSecret:"{{name}}(必填)",temporaryCredentialRequired:"(使用临时凭据时必填)",requiredSuffix:"(必填)",submitting:"提交 PR 中…",validation:{required:"此项不能为空",repository:"请输入 owner/repository 或完整 GitHub 仓库 URL",baseBranch:"目标分支格式不正确",projectPath:"请输入仓库内的相对目录",runtimeId:"运行时 ID 格式不正确",sandboxToolId:"沙箱工具 ID 格式不正确",modelName:"模型名称格式不正确",modelBaseUrlSafe:"请输入不含凭据、查询参数或锚点的 HTTPS 地址",modelBaseUrl:"请输入有效的 HTTPS 地址",runtimeName:{required:"Runtime 名称为必填项",characters:"Runtime 名称只能包含英文字母、数字、下划线和连字符",length:"Runtime 名称长度须为 4-64 个字符"}}},ice={title:"配置 Coding Agents",description:"把随 Studio 提供的 AgentKit Skills 全局安装到本地编码客户端。",retry:"重试",clients:{ariaLabel:"选择 Coding Agent",title:"本机客户端",detectAgain:"重新检测",detecting:"正在检测本机客户端…",detected:"已检测到客户端",available:"可用",unavailable:"未检测到"},skills:{ariaLabel:"选择内置 Skill",title:"内置 Skills",viewFiles:"查看文件",items:{"veadk-agent-development":{name:"VeADK Agent 开发",description:"使用 VeADK 开发和完善 Agent。"},"agentkit-cli":{name:"AgentKit CLI",description:"通过 AgentKit CLI 管理和部署 AgentKit 资源。"}}},global:{ariaLabel:"全局安装目录",title:"全局安装",description:"配置后可在本机其他项目中使用",empty:"选择客户端后显示对应安装目录。"},success:"已为 {{agentCount}} 个客户端配置 {{skillCount}} 个 Skill",selection:"已选择 {{agentCount}} 个客户端、{{skillCount}} 个 Skill",selectClient:"请先选择客户端",configuring:"正在配置…",configure:"配置",errors:{detect:"检测本机客户端失败",configure:"配置失败,请检查用户目录权限后重试"},preview:{description:"只读浏览随 Studio 提供的 Skill 文件",close:"关闭文件预览",loading:"正在读取文件…",error:"读取 Skill 文件失败",skillFiles:"{{name}} 文件",files:"文件",fileContent:"文件内容",notPreviewable:"此文件不是可预览的 UTF-8 文本。",noFiles:"没有可预览的文件。"}},rce={title:"飞书机器人",description:"创建一个由 AgentKit Runtime 驱动的飞书智能体",panel:"填写已发布飞书应用的凭据,Studio 将生成 basic 智能体、创建独立 Runtime,并启用飞书消息长连接。",agentName:"智能体名称",agentNameHelp:"将作为新 Runtime 中的根智能体名称",region:"部署地域",regionHelp:"Runtime 与构建产物将创建在该地域",regions:{"cn-beijing":"北京","cn-shanghai":"上海"},appId:"飞书 App ID",appIdHelp:"来自飞书开放平台的应用凭证",appSecret:"飞书 App Secret",appSecretPlaceholder:"请输入 App Secret",appSecretHelp:"仅写入新 Runtime 的环境变量",hideSecret:"隐藏 App Secret",showSecret:"显示 App Secret",hide:"隐藏",show:"显示",confirmCancel:"取消部署将停止任务并清理已创建的 Runtime,确定继续吗?",status:{preparing:"正在生成 basic 智能体",running:"正在创建 Runtime",cancelling:"正在取消部署",succeeded:"飞书机器人 Runtime 已创建",cancelled:"部署已取消",failed:"创建失败"},steps:{prepare:"生成智能体",build:"构建镜像",deploy:"创建 Runtime",publish:"发布服务"},openConsole:"打开 Runtime 控制台",credentials:{title:"凭据处理",description:"App Secret 仅用于本次部署,不会写入生成源码或浏览器存储。"},cancelDeployment:"取消部署",creating:"正在创建…",create:"创建飞书机器人 Runtime",validation:{appId:"请输入飞书 App ID",appSecret:"请输入飞书 App Secret",agentName:{required:"名称为必填项",reserved:"user 是 Google ADK 保留名称,请使用其他名称",characters:"名称须以英文字母或下划线开头,且只能包含英文字母、数字和下划线"}},generatedAgent:{description:"一个通过飞书接收消息并提供帮助的智能助手。",instruction:"你是一个通过飞书为用户提供帮助的智能助手。准确理解用户问题,给出简洁、可靠的回答;信息不足时先提问澄清,不要臆造事实。"}},sce={title:Vle,description:Hle,search:qle,categoriesLabel:Wle,categories:Gle,resultsLabel:Kle,open:Xle,localOnly:Yle,emptyTitle:Zle,emptyDescription:Jle,backToAutomations:ece,cards:tce,github:nce,codingAgents:ice,feishu:rce},uMe=Object.freeze(Object.defineProperty({__proto__:null,backToAutomations:ece,cards:tce,categories:Gle,categoriesLabel:Wle,codingAgents:ice,default:sce,description:Hle,emptyDescription:Jle,emptyTitle:Zle,feishu:rce,github:nce,localOnly:Yle,open:Xle,resultsLabel:Kle,search:qle,title:Vle},Symbol.toStringTag,{value:"Module"})),ace={"zh-CN":"简体中文","en-US":"English"},dMe={languageNames:ace},fMe=Object.freeze(Object.defineProperty({__proto__:null,default:dMe,languageNames:ace},Symbol.toStringTag,{value:"Module"})),oce={selectedExcerptLabel:"选中片段",commentLabel:"批注",commentSeparator:":",successTitle:"已加入 Bad case 评测集",successDescription:"这条批注已关联当前问题和完整模型回复。",done:"完成",ariaLabel:"批注选中的模型回复",title:"添加批注",content:"批注内容",placeholder:"说明问题或期望的修改方式",retryError:"{{error}},请重试。",cancel:"取消",submit:"加入 Bad Case"},lce={attachment:"附件",image:"图片",preview:"预览 {{name}}",uploading:"上传中",uploadFailed:"上传失败",remove:"移除 {{name}}",previewDialog:"{{name}}预览",download:"下载",close:"关闭",reading:"正在读取文档…",loadFailed:"文档加载失败:{{error}}"},cce={errorTitle:"云端日志错误",copyError:"复制完整错误信息",retry:"重试",statuses:{live:"实时",connecting:"连接中",retrying:"重连中",idle:"未连接"},title:"实例日志",description:"当前对话请求所在的 VeFaaS 实例",close:"关闭实例日志",instanceId:"实例 ID",waitingInstance:"等待实例",request:"请求 {{id}}",ariaLabel:"VeFaaS 实例实时日志",notCapturedTitle:"尚未捕获到实例",notCapturedDescription:"发送一条消息后,这里会显示实际处理请求的实例和实时日志。",connectingTitle:"正在连接实例日志",connectingDescription:"正在通过 Studio BFF 建立安全日志流。",emptyTitle:"暂无日志",emptyDescription:"已连接实例,等待新的日志输出。",retention:"日志自动刷新,仅保留最近 {{count}} 行"},uce={title:"调用链路观测",statuses:{loading:"加载中",ready:"",collecting:"采集中",disabled:"未开启",forbidden:"权限不足",error:"加载失败"},errors:{collecting:"调用链路仍在采集中,请稍候。",disabled:"该 Agent 未开启链路观测,请到控制台开启后重试。",forbidden:"当前账号无权读取 APMPlus 调用链路,请联系管理员补充只读权限。",error:"调用链路加载失败,请稍后重试。"},callCount:"{{count}} 个调用 · {{duration}} ms",close:"关闭",loading:"加载调用链路…",retryNow:"立即重试",reload:"重新加载",empty:"该会话暂无调用链路(可能尚未产生调用)。",attributes:"属性",selectCall:"选择左侧的一个调用查看详情"},dce={exportNote:"上述会话由 AgentKit Studio 导出,仅供参考",imageFailed:"图片生成失败,请重试。",browserUnsupported:"浏览器无法生成会话图片,请重试。",copyUnsupported:"当前浏览器不支持复制图片,请下载后使用。",exportFailed:"导出失败,请重试。",title:"导出会话",description:"选择格式并下载截至当前回复的全部输入与输出。",close:"关闭",generatingContent:"正在生成导出内容…",retry:"重试生成",previewPage:"预览第 1 页,共 {{count}} 页",previewAlt:"会话导出内容第 1 页,共 {{count}} 页",format:"导出格式",generatingFormat:"正在生成 {{format}}…",copying:"正在复制…",copiedFirst:"已复制第一页",copied:"已复制",copyFirst:"复制第一页",copyImage:"复制图片",generating:"正在生成…",downloadArchive:"下载 PNG 压缩包({{count}} 页)",downloadFormat:"下载 {{format}}"},fce={unsupportedComponent:"不支持的组件:{{component}}",sandboxIdentity:"Codex Sandbox 执行标识",useSkill:"使用 {{name}} 技能",thinkingDone:"已完成思考",thinking:"思考中",justNow:"刚刚",sourceUnavailable:"暂时无法读取生成的源码,请稍后重试。",downloadStarted:"已开始下载",verifiedDelivery:"已验证交付物",generatedSource:"生成的 Agent 源码",entryPoint:"入口",fileCount:"文件数",size:"大小",validationTime:"验证时间",generationTime:"生成时间",checksPassed:"{{count}} 项检查通过",sourceReady:"源码已准备好,可部署",sourceGuidance:"源码已准备好,可查看、下载或部署;部署前请确认 Runtime 配置。",viewSource:"查看源码",preparing:"正在准备…",viewChanges:"查看本次变更",downloadSource:"下载源码",sourceNotReady:"源码尚未准备好",manualDeploy:"手动部署到 Runtime",beforeOptimization:"优化前",afterOptimization:"优化后",planStatuses:{pending:"待处理",in_progress:"进行中",completed:"已完成",failed:"未完成"},renderUi:"渲染 UI",truncated:"…(已截断)",agentAdjusting:"Agent 正在调整",sandboxDetails:"Codex Sandbox 详细输出",waitingCodex:"正在等待 Codex 输出",arguments:"参数",result:"返回",artifacts:"产物",downloadNamed:"下载 {{name}}",powerpoint:"PowerPoint 演示文稿",preview:"预览",download:"下载",previewDialog:"{{name}} 预览",closePreview:"关闭预览",slidePreview:"{{name}} 幻灯片预览",mcpToolset:"MCP 工具集",authorized:"已授权 · {{tool}}",authorizationRequired:"{{tool}} 需要授权",oauthDescription:"工具集 {{tool}} 使用 OAuth 保护,需登录授权后方可调用。",oauthProvider:"将跳转至 {{provider}} 完成登录。",oauthContinue:"授权完成后对话自动继续。",waitingAuthorization:"等待授权…",authorize:"去授权",missingAuthorizationUrl:"未在事件中找到授权地址。",tools:{web_search:{running:"正在进行网络搜索",done:"已完成网络搜索"},link_reader:{running:"正在读取网页",done:"已完成网页读取"},run_code:{running:"正在 AgentKit 沙箱中执行代码",done:"已在 AgentKit 沙箱中完成代码执行"},list_envs:{running:"正在查看可用环境",done:"已读取可用环境"},get_env_manifest:{running:"正在读取环境 Manifest",done:"已读取环境 Manifest"},execute_in_sandbox:{running:"正在环境中执行命令",done:"已在环境中完成命令执行"},delegate_to_codex_sandbox:{running:"Codex Sandbox 正在执行",done:"Codex Sandbox 已完成",failed:"Codex Sandbox 执行失败"},image_generate:{running:"正在生成图片",done:"已完成图片生成"},video_generate:{running:"正在生成视频",done:"已完成视频生成"},ppt_generate:{running:"正在生成 PPT",done:"已完成 PPT 生成"},load_memory:{running:"正在检索长期记忆",done:"已完成记忆检索"},load_knowledgebase:{running:"正在检索知识库",done:"已完成知识库检索"},load_skill:{running:"正在加载技能",done:"已加载技能"},collect_resources:{running:"正在收集可用资源",done:"已完成资源收集",failed:"资源收集失败"},create_agents:{running:"正在创建并运行 Agent",done:"已完成 Agent 创建",failed:"Agent 创建失败"}},createAgents:{categories:{skill_hub:"Skill Hub",skill_space:"AgentKit 技能中心",knowledge_base:"知识库",tool:"工具"},agentTypes:{llm:"LLM 智能体",sequential:"顺序智能体",parallel:"并行智能体",loop:"循环智能体",workflow:"工作流"},skill:"技能",subAgents:"子智能体",builtinTool:"内置工具",skillCenter:"AgentKit 技能中心",selfAuthoredTools:"自写工具",dependencies:"依赖:{{items}}",fullCode:"{{name}} 完整代码",itemCount:"{{label}} {{count}} 项",collectionAria:"召回资源信息",retrieving:"正在检索资源",retrievalFailed:"资源检索未完成",checkConfig:"请检查资源服务配置后重试。",notSearched:"未检索",notConfigured:"未配置",resourceList:"{{label}}资源列表",searchKeywords:"检索关键词",skillHubSkipped:"未提供检索关键词,本次未检索 Skill Hub。",sourceSkipped:"未配置 {{label}},本次未检索该来源。",noResources:"本次检索未返回该类别的资源。",resultAria:"创建 Agent 结果",creationFailed:"Agent 创建未完成",agentResources:"{{name}} 具备的资源",knowledgeBase:"知识库",toolsLabel:"工具",creating:"正在创建 Agent",noAgents:"没有可展示的 Agent",noAgentResult:"工具返回中未包含 Agent 配置或执行结果。",sourceLabels:{tool:"工具",knowledge:"AgentKit 知识库",skillCenter:"AgentKit 技能中心",unknown:"未知来源"},unnamedResource:"未命名资源",unnamedAgent:"未命名 Agent"},branchCompare:{ariaLabel:"分支对比",selectDirection:"选择方向",continue:"继续这个方向"},codexProgress:{planTitle:"Codex 执行计划",fallback:{fileChange:"修改文件",approval:"等待操作批准",status:"Codex 状态",command:"运行命令"},planSummary:"已完成 {{completed}}/{{total}} 项",command:{running:"正在执行命令",completed:"命令执行完成",failed:"命令执行失败"},projectFiles:"{{count}} 个项目文件",projectFile:"项目文件",fileChange:{running:"正在更新{{subject}}",completed:"已更新{{subject}}",failed:"更新{{subject}}失败"},externalTool:"外部工具",mcp:{running:"正在调用工具 {{tool}}",completed:"已调用工具 {{tool}}",failed:"工具 {{tool}} 调用未完成"},collaboration:{spawn_agent:{running:"正在启动子任务",completed:"子任务已启动",failed:"子任务启动失败"},send_input:{running:"正在向子任务发送信息",completed:"已向子任务发送信息",failed:"向子任务发送信息失败"},wait:{running:"正在等待子任务",completed:"子任务等待已结束",failed:"等待子任务失败"},close_agent:{running:"正在结束子任务",completed:"子任务已结束",failed:"子任务结束失败"},default:{running:"正在协调子任务",completed:"子任务协作已完成",failed:"子任务协作失败"}},webSearch:{running:"正在进行网络搜索",completed:"已完成网络搜索",failed:"网络搜索未完成"},errorDetail:"Codex 执行未完成。",errorTitle:"Codex 执行遇到错误"}},hce={segments:{system:"系统与工具",input:"输入与历史",output:"输出与思考",remaining:"剩余"},modelUnavailable:"模型信息未提供",promptWithSystem:"提示词(含系统)",systemUnknown:"系统与工具占用未知",systemApprox:"系统与工具约 {{count}} Token",ariaKnown:"上下文已使用 {{percentage}}%,{{system}},{{inputLabel}} {{input}} Token,输出与思考 {{output}} Token,剩余 {{remaining}} Token",ariaUnknown:"{{model}},上下文窗口未知,会话累计使用 {{count}} Token",composition:"上下文构成",percentageUsed:"{{percentage}}% 已用",gridAria:"100 格上下文构成图,每格代表上下文窗口的百分之一",estimated:"估算",unknown:"未知",summaryPercentage:"{{used}} 已用,剩余 {{remaining}}",summaryTokens:"{{used}} 已用,剩余 {{remaining}},总计 {{total}}",overflow:"已超出上下文 {{count}} Token",title:"上下文用量",unknownModel:"暂未收录该模型的上下文窗口",unknownRuntime:"当前 Runtime 未提供模型信息"},pce={title:"添加 AgentKit 智能体",noAgents:"连接成功,但该地址未发现任何 Agent(/list-apps 为空)。",connectionFailed:"连接失败:{{error}}。请检查 URL、API Key,以及该网关是否允许跨域。",description:"填入 AgentKit 部署的访问地址与 API Key,将通过 ADK 协议连接,连接成功后其 Agent 会出现在左上角的下拉中。",url:"访问地址 URL",apiKeyHint:"以 Authorization: Bearer 方式连接",displayName:"显示名称(可选)",displayNameHint:"默认取 URL 的主机名",cancel:"取消",connecting:"连接中…",connect:"连接并添加"},mce={placeholder:"输入消息…",inputAria:"输入消息",generating:"正在生成",send:"发送"},gce={ariaLabel:"本轮调用上下文",removeSkill:"移除技能 {{name}}",removeAgent:"移除 Agent {{name}}"},bce={cardAria:"{{label}} 图表",viewAria:"{{label}} 显示方式",preview:"预览",code:"代码",invalidEcharts:"ECharts 配置不是有效且安全的数据对象,请切换到代码检查内容。",renderFailed:"图表暂时无法渲染,请切换到代码检查内容。",echartsAria:"ECharts 图表预览",rendering:"正在渲染图表…",mermaidFailed:"图表暂时无法渲染,请切换到代码查看 Mermaid 内容。",mermaidAria:"Mermaid 图表预览"},yce={playVideo:"点击播放视频:{{name}}",enlargeImage:"放大预览:{{name}}",image:"图片",enlargeVideo:"点击放大视频",videoPreview:"视频预览",downloadVideo:"下载视频",close:"关闭"},vce={annotation:oce,media:lce,runtimeLogs:cce,trace:uce,share:dce,blocks:fce,tokenUsage:hce,addAgentKit:pce,composer:mce,invocation:gce,visualization:bce,markdown:yce},hMe=Object.freeze(Object.defineProperty({__proto__:null,addAgentKit:pce,annotation:oce,blocks:fce,composer:mce,default:vce,invocation:gce,markdown:yce,media:lce,runtimeLogs:cce,share:dce,tokenUsage:hce,trace:uce,visualization:bce},Symbol.toStringTag,{value:"Module"})),xce={back:"返回",cancel:"取消",deploy:"部署",delete:"删除",loading:"读取中…",next:"下一步",notSupported:"暂不支持",previous:"上一步",required:"必填",retry:"重试",actions:"操作",value:"值",disabled:"关闭",enabled:"已开启",none:"无",close:"关闭",name:"名称",description:"描述",send:"发送"},wce={heading:"VeADK Agent 结构配置",importHint:"可在「创建 Agent」页通过「导入 YAML」重新载入。"},Oce={agentName:{required:"名称为必填项",reserved:"user 是 Google ADK 保留名称,请使用其他名称",characters:"名称须以英文字母或下划线开头,且只能包含英文字母、数字和下划线"},runtimeName:{required:"Runtime 名称为必填项",characters:"Runtime 名称只能包含英文字母、数字、下划线和连字符",length:"Runtime 名称长度须为 4-64 个字符"}},Sce={description:"一个基于 VeADK 构建的智能助手,理解用户意图并调用合适的工具完成任务。",instruction:`你是一个专业、可靠的智能助手。 +{{response}}`,loadArkApiKeysFailed:"加载 Ark API Key 失败",loadModelsFailed:"加载模型列表失败",runtimeAccessDenied:"当前账号无权访问该 Runtime,请刷新列表或重新登录后重试。",privateRuntimeUnavailable:"Runtime 已部署成功,但当前 Studio 无法访问私网 Runtime。请使用已绑定相同 VPC 的 Studio 访问,或改用公网 / 公网+VPC 部署。",runtimeTemporarilyUnavailable:"Runtime 已部署成功,但 Studio 暂时无法连接服务。网关域名可能仍在生效,或当前网络/DNS 无法访问该 Runtime,请稍后在智能体管理页重试连接。",runtimeConnectionUnsupported:"该 Runtime 的 Agent Server 未提供连接接口,请确认 Runtime 已就绪且版本兼容。",runtimeConnectionDenied:"Runtime 服务拒绝了连接请求,请检查 Runtime 的鉴权配置。",listAgentsFailed:"读取 Agent 列表失败",invalidListAppsJson:"Runtime /list-apps 返回了无法解析的 JSON 响应。",invalidListAppsFormat:"Runtime /list-apps 返回格式无效,应为非空字符串数组。",createSessionFailedWithStatus:"创建会话失败 ({{status}})",createSessionFailed:"创建会话失败",getSessionFailed:"读取会话失败",getSessionFailedWithDetail:"读取会话失败:{{status}}:{{detail}}",feedbackRuntimeOnly:"只有连接到 AgentKit Runtime 的会话支持反馈回流",feedbackRegionMissing:"Runtime 缺少地域信息,无法提交反馈",submitFeedbackFailed:"提交反馈失败",loadEvaluationSetsFailed:"读取评测集失败",loadAutoEvaluationStatusFailed:"读取自动评测状态失败",loadOptimizationsFailed:"读取优化项失败",deleteEvaluationCaseFailed:"删除评测案例失败",downloadFileFailed:"下载文件失败",fileUnavailable:"文件内容不可用",uploadFileFailed:"文件上传失败",traceDisabled:"该 Agent 暂未开启链路观测,请到控制台打开后使用。",loadTraceFailed:"加载调用链路失败",contentTypeMissing:"Content-Type 缺失",traceNonJson:"加载调用链路失败:服务端返回了非 JSON 响应({{contentType}}),请检查 Studio API 代理配置",invalidTraceFormat:"加载调用链路失败:返回格式无效",submitIssueFeedbackFailed:"问题反馈上报失败",issueFeedbackNotConfirmed:"问题反馈上报失败:服务端未确认提交结果",noPreviewableAgent:"该 Runtime 未提供可预览的 Agent。",agentSearchFailed:"Agent 检索失败",emptySseBody:"HTTP 200,SSE 响应体为空。",noDisplayableSseReply:"HTTP 200,SSE 响应中没有可展示的模型回复。",firstSseEventTimeout:"30 秒内未收到首个 SSE 事件。",runSessionFailed:"运行会话失败",runSseFailedWithDetail:"运行会话失败:{{status}}:{{detail}}",checkRuntimeNameFailed:"检查 Runtime 名称失败",invalidRuntimeNameCheck:"检查 Runtime 名称失败:服务返回格式错误",loadCloudResourcesFailed:"加载云资源失败",invalidCloudResources:"云资源列表响应格式无效",invalidEnvironmentMount:"挂载环境响应格式无效",environmentMountMismatch:"挂载环境响应与请求不一致",environmentMountNetworkFailed:"无法连接 Studio 服务,环境挂载未完成。请检查网络后重试。",environmentMountFailed:"挂载环境失败",clipboardUnsupported:"当前浏览器不支持写入剪贴板。",clipboardWriteFailed:"无法写入剪贴板,请检查剪贴板权限。",loadSystemInfoFailed:"加载系统信息失败",invalidSystemInfo:"系统信息响应格式无效",invalidEnvironmentBuild:"环境构建响应格式无效",invalidEnvironmentBuildStep:"环境构建步骤响应格式无效",invalidEnvironmentManifest:"环境 Manifest 响应格式无效",invalidImageRepository:"环境镜像仓库响应格式无效",invalidCodeRepository:"环境代码仓库响应格式无效",invalidImageSource:"环境镜像来源响应格式无效",invalidEnvironment:"环境响应格式无效",invalidWorkspace:"工作区响应格式无效",loadWorkspacesFailed:"加载工作区失败",invalidWorkspaceList:"工作区列表响应格式无效",saveWorkspaceFailed:"保存工作区失败",deleteWorkspaceFailed:"删除工作区失败",loadEnvironmentsFailed:"加载环境失败",invalidEnvironmentList:"环境列表响应格式无效",probeRepositoryFailed:"探查代码仓库失败",invalidRepositoryProbe:"代码仓库探查响应格式无效",exportEnvironmentCodeFailed:"导出环境分享码失败",invalidEnvironmentCode:"环境分享码响应格式无效",inspectEnvironmentCodeFailed:"检测环境分享码失败",invalidEnvironmentCodeInspection:"环境分享码检测响应格式无效",importEnvironmentCodeFailed:"导入环境分享码失败",invalidEnvironmentCodeImport:"环境分享码导入响应格式无效",studioUnavailable:"无法连接 Studio 服务,请确认后端已启动后重试。",saveEnvironmentFailed:"保存环境失败",deleteEnvironmentFailed:"删除环境失败",startEnvironmentBuildFailed:"启动环境构建失败",loadEnvironmentBuildFailed:"读取环境构建详情失败",loadEnvironmentManifestFailed:"读取环境 Manifest 失败",invalidEnvironmentResource:"环境资源响应格式无效",loadEnvironmentResourcesFailed:"加载环境构建资源失败",updateCodexSandboxFailed:"更新 Codex Sandbox 失败",invalidCodexSandboxUpdate:"Codex Sandbox 更新响应格式无效",loadUserPoolsFailed:"加载用户池失败",invalidUserPoolList:"用户池列表响应格式无效",syncGithubFailed:"同步 GitHub 代码失败 ({{status}})",validatingMigrationArtifact:"正在校验迁移产物",uploadingCodePackage:"正在上传代码包",migrationArtifactValidated:"迁移产物校验完成",codePackageUploaded:"代码包上传完成",deploymentProgress:{preparing:"正在准备部署",uploading:"正在上传代码包",building:"正在构建镜像",buildLogsSyncing:"正在构建镜像,构建日志已同步。",buildLogsComplete:"构建日志同步完成。",buildFailedLogsSynced:"镜像构建失败,最终构建日志已同步。",buildLogsUnavailable:"暂时无法读取构建日志。",finalBuildLogsUnavailable:"暂时无法读取最终构建日志。",deploying:"正在部署服务",publishing:"正在发布服务",evaluating:"正在创建评测集",updating:"正在更新 Runtime 配置",completing:"正在完成部署",github:"正在配置 GitHub 持续交付",inProgress:"正在部署"},deploymentFailed:"部署失败",deploymentDisconnected:"部署失败:连接中断",deploymentMissingAgentName:"部署失败:返回缺少 Agent 名称",deploymentMissingConnection:"部署失败:返回缺少 AgentKit 连接信息",cancelDeploymentFailed:"取消部署失败 ({{status}})",loadFailed:"加载失败 ({{status}})",loadPermissionsFailed:"加载权限失败 ({{status}})",invalidPermissionResponse:"权限服务返回了无法解析的响应",checkStudioUpdateFailed:"检查 Studio 更新失败 ({{status}})",studioUpdatePreflightFailed:"Studio 更新权限预检失败 ({{status}})",submitStudioUpdateFailed:"提交 Studio 更新失败 ({{status}})",loadAgentUsageFailed:"加载 Agent 用量失败",notProvided:"未提供",agentUsageNonJson:"加载 Agent 用量失败:服务端返回非 JSON 响应(HTTP {{status}},Content-Type: {{contentType}})。",checkStudioGateway:"请确认当前服务以 Studio 模式启动,并检查代理或网关配置。",agentUsageInvalidJson:"加载 Agent 用量失败:服务端返回了无法解析的 JSON(HTTP {{status}},Content-Type: {{contentType}})。",retryCheckGateway:"请稍后重试;若问题持续,请检查代理或网关配置。",loadCronJobsFailed:"加载定时任务失败",loadCronJobFailed:"加载定时任务详情失败",createCronJobFailed:"创建定时任务失败",updateCronJobFailed:"更新定时任务失败",enableCronJobFailed:"启用定时任务失败",pauseCronJobFailed:"暂停定时任务失败",runCronJobFailed:"立即执行定时任务失败",loadCronHistoryFailed:"加载执行历史失败",stopCronRunFailed:"终止执行失败",deleteCronJobFailed:"删除定时任务失败",loadRuntimeFailed:"加载 Runtime 失败",loadLocalToolsFailed:"读取本地工具失败",connectDynamicRouteFailed:"连接 Studio 动态路由失败",a2aProbeDenied:"Runtime 服务拒绝了 A2A 探测请求,请检查 Runtime 的鉴权配置。",loadA2aCardFailed:"读取 A2A Agent Card 失败",loadRuntimeApiKeyFailed:"读取 Runtime API Key 失败",runtimeApiKeyMissing:"Runtime 未返回可用的 API Key",deleteFailed:"删除失败 ({{status}})",runtimeManageForbidden:"当前账号没有管理该 Runtime 的权限。",runtimeNotFound:"该 Runtime 不存在或已被删除。",runtimeUnavailable:"当前账号无法访问该 Runtime。",checkRuntimeUpdateFailed:"检查 Runtime 更新能力失败(HTTP {{status}}),请稍后重试。",loadRuntimeDetailFailed:"加载 Runtime 详情失败",generateProjectFailed:"生成项目失败",generateAgentConfigFailed:"生成 Agent 配置失败",createDebugRunFailed:"创建调试运行失败",createDebugSessionFailed:"创建调试会话失败",loadDebugTraceFailed:"加载调试调用链路失败",invalidDebugTrace:"加载调试调用链路失败:返回格式无效",debugRunFailed:"调试运行失败",cleanupDebugRunFailed:"清理调试运行失败"},$le={loadFailed:"读取会话模式能力失败(HTTP {{status}})",invalidResponse:"会话模式能力响应格式错误"},Fle={nonJson:"{{fallback}}:服务端返回非 JSON 响应(HTTP {{status}},{{contentType}}){{detail}}"},Ble={common:yle,agentkitCli:vle,cloudRegion:xle,connections:wle,feishuBot:Ole,requestError:Sle,runSse:kle,runtimeLogs:Ele,search:Cle,skills:Tle,sse:Ale,identity:_le,github:Nle,video:jle,websiteIntegration:Rle,knowledge:Ile,intelligentDevelopment:Ple,migrations:Dle,sandbox:Mle,client:Lle,newChatCapabilities:$le,jsonResponse:Fle},EMe=Object.freeze(Object.defineProperty({__proto__:null,agentkitCli:vle,client:Lle,cloudRegion:xle,common:yle,connections:wle,default:Ble,feishuBot:Ole,github:Nle,identity:_le,intelligentDevelopment:Ple,jsonResponse:Fle,knowledge:Ile,migrations:Dle,newChatCapabilities:$le,requestError:Sle,runSse:kle,runtimeLogs:Ele,sandbox:Mle,search:Cle,skills:Tle,sse:Ale,video:jle,websiteIntegration:Rle},Symbol.toStringTag,{value:"Module"})),Ule={backToEvaluationCase:"返回评测案例",cancel:"取消",copied:"已复制",copy:"复制",exportConversation:"导出会话",retry:"重试"},Qle={title:"您想以哪种方式添加 Agent 来运行?",subtitle:"选择最适合你的方式,下一步即可开始",quickCreate:{title:"从 0 快速创建",description:"用智能、自定义、模板或工作流的方式从零创建一个 Agent。"},intelligent:{title:"智能模式",description:"描述目标,按你的意图构建、调试并验证 Agent。"},package:{title:"从代码包添加和部署",description:"上传 Agent 项目压缩包,查看代码并直接部署到 AgentKit Runtime。"},migrate:{title:"从存量迁移",description:"从您的 LangChain、Dify 等存量项目迁移至 AgentKit Runtime。"}},zle={subject:{file:"文件修改",command:"命令执行"},decision:{accept:"已允许本次{{subject}}",acceptForSession:"已在本会话中允许{{subject}}",decline:"已拒绝{{subject}}",cancel:"已取消{{subject}}审批"},details:{command:"命令",grantRoot:"授权路径",cwd:"执行目录"}},Vle={noDescription:"暂无描述",region:"地域",unknownAgent:"未知 Agent"},Hle={agentTransfer:"智能体移交",annotationHint:"模型回复;选中文字后可添加批注",continueBranch:"继续“{{branch}}”这个方向",emptyResponse:"本次没有返回可显示的内容。",subagentDescription:"正在执行主 Agent 移交的任务。"},qle={title:"需要配置 {{provider}} AK/SK",prefix:"智能体工作台需要 {{provider}} 凭据才能使用。请在运行环境中设置",and:"与",suffix:"后重试。"},Wle={buildRunning:{title:"当前构建仍在进行",description:"离开将停止本轮构建;当前会话仍会保留,可稍后从历史会话重新进入。",confirm:"停止并离开"},deleteThread:{title:"删除 Codex 历史会话",description:"将删除“{{name}}”,并从历史会话中移除。",confirm:"确认删除"},returnToCreate:{title:"返回创建首页?",description:"返回后当前填写的内容将会丢失,确定要返回吗?",confirm:"确定返回"}},Kle={additionalAgentDeleteFailures:";另有 {{count}} 个失败",agentDeleteFailures:"{{count}} 个 Agent 删除失败:{{failures}}{{suffix}}",agentToolsMissing:"当前 Agent 缺少任务工具:{{tools}}",buildStopUnconfirmed:"已离开开发环境,但未能确认本轮构建已停止。任务可能仍在运行,请稍后从历史会话检查状态。",builtinAgentSendFailed:"内置智能体发送失败:{{message}}",bytePlusEvaluationUnsupported:"BytePlus 暂不支持 AgentKit 评测集",clipboardUnsupported:"当前浏览器不支持写入剪贴板。",cloudCodexEmptyReply:"云端 Codex 已结束,但没有生成回复,请重新发送任务。",cloudCodexSessionMissing:"云端 Codex Session 暂未出现在列表中,请稍后重试。",deploymentRuntimeIdMissing:"部署完成,但未返回 Runtime ID。",environmentExpired:"所选环境已失效,请刷新后重新选择。",environmentsLoadFailed:"读取环境失败",evaluationCaseSessionMissing:"这条案例缺少会话定位信息,无法跳转。",evaluationUnsupportedForReply:"当前回复暂不支持加入评测集",firstFrameRequired:"首尾帧生成需要先添加首帧图片。",incompletePromptOptimization:"提示词优化结果不完整,请重新优化后再试。",intelligentCapabilityCheckFailed:"智能开发能力检查失败(HTTP {{status}})",intelligentSessionCreateFailed:"智能开发会话创建失败",invalidIntelligentCapability:"智能开发模型能力格式错误。",localBffToolsNotConfigured:"本地 Studio BFF 没有配置工具。",localToolsLoadFailed:"读取本地工具失败",loginPopupBlocked:"登录窗口被浏览器拦截,请允许弹出窗口后重试。",loginPopupClosed:"登录窗口已关闭,请重新登录以继续当前操作。",mediaTooLarge:"{{fileName}} 超出当前平台允许的素材大小。",mountEnvironmentFailed:"挂载环境失败",noConnectedSandbox:"当前没有已连接的 Sandbox。",noCreateAgentPermission:"当前账号没有添加 Agent 的权限。",noManageAgentPermission:"当前账号没有管理 Agent 的权限。",noOptimizationBaseline:"当前版本没有可对比的优化前版本。",oauthUrlMissing:"事件中没有授权地址。",onlyCloudAgentUpdatable:"仅支持更新已部署的云端智能体。",optimizationVersionMissing:"无法找到本次优化对应的项目版本,可能已被删除。",persistentStorageNotConfigured:"管理员未配置持久化存储",readDraftFailed:"无法读取本机草稿,请稍后重试。",runtimeAgentNameMissing:"Runtime 缺少智能体名称,无法更新。",runtimeBffToolsDisabled:"当前 Runtime Agent 未开启 BFF 工具能力。",runtimeDeploymentConfigUnavailable:"该 Runtime 的原发布配置不可恢复,无法安全更新。",runtimeMissingForConnection:"缺少 Runtime 信息,无法连接智能体。",runtimeRegionMissingForDelete:"Runtime 缺少地域信息,无法删除",runtimeRegionMissingForUpdate:"Runtime 缺少地域信息,无法更新。",runtimeUpdateUnsupported:"当前 Runtime 不支持原地更新。",sandboxRuntimeUnavailable:"当前 Agent 没有可用的 Sandbox Runtime。",sandboxToolsUnavailable:"当前 Studio BFF 未提供 Sandbox 执行工具。",saveDraftLocationRejected:"浏览器拒绝保存当前草稿位置,请检查站点存储权限后重试。",saveDraftRejected:"浏览器拒绝保存草稿,请稍后重试。",selectSkillToOptimize:"请先选择需要优化的 Skill。",sessionMissingForMount:"当前会话不存在,无法挂载环境。",sessionNotReady:"会话尚未就绪。",sessionUnavailable:"当前会话不可用,请关闭后重试。",sourceNotReady:"该源码尚未准备好,请返回对话继续处理。",textVideoRejectsReferences:"文生视频不使用参考素材,请先移除已添加的图片或视频。",videoEditRequiresVideo:"视频编辑需要先添加待编辑视频。",videoExtendRequiresVideo:"视频续写需要先添加基础视频。",videoGenerationFailed:"视频生成失败,请稍后重试。",videoModeUnsupported:"当前平台暂不支持所选视频任务模式。",videoPreviewMissing:"视频任务已完成,但服务端未返回预览地址。",videoReferenceRequired:"参考素材生视频需要至少添加一项参考图片或参考视频。"},Gle={like:"赞",removeLike:"取消点赞",dislike:"踩",removeDislike:"取消点踩",reportIssue:"问题反馈",traceFlameGraph:"Tracing 火焰图"},Xle={0:"今天想做点什么?",1:"有什么可以帮你的?",2:"需要我帮你查点什么吗?",3:"有问题尽管问我",4:"嗨,我们开始吧",5:"开始一段新对话吧",6:"今天想先解决哪件事?",7:"把你的想法告诉我吧",8:"我们从哪里开始?",9:"有什么任务交给我?",10:"准备好一起推进了吗?",11:"说说你现在最关心的问题",12:"今天也一起把事情做好",13:"我在,随时可以开始",intelligentDevelopment:"让灵感自由生长"},Yle={agentCapabilities:"正在检查 Agent 能力…",session:"加载会话…"},Zle={cancelled:"授权已取消。",pasteCallbackUrl:"授权完成后,请粘贴回调页面(浏览器地址栏)的完整 URL:",popupBlocked:"弹窗被拦截,请允许弹窗后重试。",unsupportedUrl:"授权链接不是 http/https 地址,已阻止打开。"},Jle={volcengine:"火山引擎"},ece={checkingPersistence:"正在检查持久化能力…",exitDevelopment:"退出开发环境",fileUploaded:"已上传文件到 Sandbox",filesUploaded:"已上传 {{count}} 个文件到 Sandbox",intelligentDevelopment:"智能开发",mode:{readOnly:"只读",workspaceWrite:"工作区写入",fullAccess:"完全访问"},approvalPolicy:{untrusted:"仅不可信命令",onRequest:"按需审批",never:"不审批"},reviewer:{user:"由我审批",autoReview:"自动审查"},labels:{approvalPolicy:"审批策略",file:"文件",fileNumber:"文件 {{number}}",mode:"沙箱模式",networkAccess:"网络访问",reviewer:"审批方式",workingDirectory:"工作目录"},network:{allowed:"允许",disabled:"关闭"},permissionsUpdated:"已更新当前 Sandbox Session 的 Codex 权限",persistenceUnknown:"暂时无法确认持久化能力",stoppedReady:"已停止,可继续输入",uploadedFilesPrompt:"以下文件已上传到当前 Sandbox 工作空间,请在任务中使用:",workspaceUpdated:"已更新工作空间"},tce={addAgent:"添加智能体",addFromPackage:"从代码包添加",agent:"智能体",automations:"自动化",createAgent:"创建智能体",createSkill:"创建技能",cronJobs:"定时任务",issueFeedback:"问题反馈",library:"资源库",migrateAgent:"迁移智能体",newConversation:"新会话",optimizeSkill:"优化 {{name}}",search:"搜索",skill:"技能",skillLibrary:"技能库",systemInfo:"系统信息",updateAgent:"更新 {{name}}"},nce={actions:Ule,addAgent:Qle,approval:zle,common:Vle,conversation:Hle,credentials:qle,dialogs:Wle,errors:Kle,feedback:Gle,greetings:Xle,loading:Yle,oauth:Zle,providers:Jle,sandbox:ece,titles:tce},CMe=Object.freeze(Object.defineProperty({__proto__:null,actions:Ule,addAgent:Qle,approval:zle,common:Vle,conversation:Hle,credentials:qle,default:nce,dialogs:Wle,errors:Kle,feedback:Gle,greetings:Xle,loading:Yle,oauth:Zle,providers:Jle,sandbox:ece,titles:tce},Symbol.toStringTag,{value:"Module"})),ice="自动化",rce="连接研发工具,为智能体扩展自动化工作流",sce="搜索自动化",ace="自动化分类",oce={development:"研发",channels:"消息渠道"},lce="{{category}}自动化列表",cce="打开{{name}}",uce="仅本地部署可用",dce="没有匹配的自动化",fce="请尝试搜索其他名称",hce="返回自动化列表",pce={"coding-agents":{name:"配置 Coding Agents",badge:"本地",description:"将 VeADK 和 AgentKit 内置 Skills 全局配置到 Trae、Claude Code 或 Codex。"},template:{name:"模板项目导入",description:"在您的仓库中创建一个可持续交付到 AgentKit Runtime 的最简智能体",title:"模板项目导入",subtitle:"把可直接启动 Studio 的 basic Agent 和持续交付配置加入仓库",panel:"提交后将创建一个 PR,同时导入 basic 项目和 AgentKit Runtime 发布工作流。",submitLabel:"导入模板并提交 PR",regionHelp:"必须与目标 Runtime 所在地域一致",pullRequest:{title:"feat: 导入 AgentKit basic 模板",description:"导入带有 AgentKit Studio App Server 的 basic Agent 项目,并添加持续发布到 AgentKit Runtime 的工作流。合并前请配置 {{provider}} Secrets。"},fields:{repository:{label:"GitHub 仓库",placeholder:"owner/repository",help:"支持 owner/repository 或完整 github.com URL"},baseBranch:{label:"目标分支",placeholder:"main",help:"留空时使用 main,PR 将以此分支为 base"},projectPath:{label:"Agent 项目目录",placeholder:"agentkit-basic-agent",help:"将在此目录新增 basic 项目;app.py 挂载完整 Studio App Server,并作为服务入口启动"},runtimeName:{label:"Runtime 名称",placeholder:"support-agent",help:"用于 AgentKit 发布配置"},runtimeId:{label:"运行时 ID",placeholder:"rt-xxxxxxxx",help:"持续更新的目标 AgentKit Runtime"}}},delivery:{name:"AgentKit Runtime 持续交付",description:"为您的仓库添加持续交付到 AgentKit Runtime 的自动化工作流。",title:"AgentKit Runtime 持续交付",subtitle:"用 Pull Request 把持续发布配置安全地加入代码仓库",panel:"提交后将在目标仓库创建发布分支,并发起包含 GitHub Actions 工作流的 PR。",submitLabel:"确定并提交 PR",regionHelp:"必须与目标 Runtime 所在地域一致",pullRequest:{title:"feat: 持续发布到 AgentKit Runtime",description:"新增 GitHub Actions 工作流,在目标分支更新时持续发布到 AgentKit Runtime。合并前请配置工作流所需的 {{provider}} Secrets。"},fields:{repository:{label:"GitHub 仓库",placeholder:"owner/repository",help:"支持 owner/repository 或完整 github.com URL"},baseBranch:{label:"目标分支",placeholder:"main",help:"留空时使用 main,PR 将以此分支为 base"},projectPath:{label:"Agent 项目目录",placeholder:".",help:"留空时使用仓库根目录;目录内需包含挂载完整 Studio App Server 的 app.py"},runtimeName:{label:"Runtime 名称",placeholder:"support-agent",help:"用于 AgentKit 发布配置"},runtimeId:{label:"运行时 ID",placeholder:"rt-xxxxxxxx",help:"持续更新的目标 AgentKit Runtime"}}},review:{name:"PR 自动评审",description:"通过 GitHub App 在隔离 Sandbox 中评审 Pull Request。",title:"PR 自动评审",subtitle:"通过 GitHub App 触发 Sandbox 评审,并将结果发布到 Pull Request",panel:"请先将 GitHub App 安装到目标仓库,再为每个仓库启用自动评审。",submitLabel:"安装 GitHub App",regionHelp:"",pullRequest:{title:"chore: 配置 PR 自动评审",description:"新增 GitHub Actions 工作流,在隔离 Sandbox 中评审同仓库 PR,并将结果发布为 GitHub Review。合并前请配置工作流所需 Secrets。"},fields:{repository:{label:"GitHub 仓库",placeholder:"owner/repository",help:"支持 owner/repository 或完整 github.com URL"},baseBranch:{label:"目标分支",placeholder:"main",help:"留空时使用 main,PR 将以此分支为 base"},sandboxToolId:{label:"沙箱工具 ID",placeholder:"tool-xxxxxxxx",help:"用于运行每次评审的 AgentKit CodeEnv"},modelName:{label:"评审模型",placeholder:"review-model",help:"注入 Sandbox 的代码评审模型名称"},modelBaseUrl:{label:"模型 API 地址",placeholder:"https://ark.example.com/api/v3",help:"必须使用 OpenAI 兼容的 HTTPS 地址"}}},feishu:{name:"飞书机器人",badge:"Beta",description:"创建飞书机器人,并将消息直接接入 AgentKit Runtime。"},"website-integration":{name:"网站集成",description:"将 AgentKit Runtime 以悬浮聊天窗口嵌入网站。"}},mce={required:"必填",optional:"可选",region:"地域",tokenLabel:"GitHub Token",getToken:"获取 Token",createToken:"创建 GitHub Token",tokenPlaceholder:"需要仓库 Contents 与 Pull requests 写权限",tokenWorkflowPlaceholder:"需要 Contents、Pull requests、Workflows 写权限",hideToken:"隐藏 Token",showToken:"显示 Token",tokenHelp:"Token 仅用于本次提交,不会保存在浏览器或写入 PR",tokenWorkflowHelp:"此处 Token 用于创建配置 PR;它不是 Sandbox 的通用必填项,且不会保存在浏览器或写入 PR",prCreated:"PR #{{number}} 已创建",configPrCreated:"配置 PR #{{number}} 已创建",configPrNextStep:"合并后,后续同仓库 PR 会自动触发评审。",viewOnGitHub:"在 GitHub 查看",viewConfigPr:"查看配置 PR",secretsHeading:"合并 PR 前,请在仓库的 GitHub Actions Secrets 中配置:",secretsConfigHeading:"合并配置 PR 前,请在目标仓库添加运行时密钥",openSecrets:"打开 Secrets 设置",secretsPath:"路径:Settings → Secrets and variables → Actions → Repository secrets",repositoryConfigHelp:"将为 {{repository}} 添加 PR 自动评审配置",repositoryReviewHelp:"将使用 GitHub App 校验 {{repository}} 的 Pull Request",secretPair:"{{accessKey}}、{{secretKey}}(必填)",sessionToken:"{{sessionToken}}(使用临时凭据时必填)",requiredSecret:"{{name}}(必填)",temporaryCredentialRequired:"(使用临时凭据时必填)",requiredSuffix:"(必填)",submitting:"提交 PR 中…",validation:{required:"此项不能为空",repository:"请输入 owner/repository 或完整 GitHub 仓库 URL",baseBranch:"目标分支格式不正确",projectPath:"请输入仓库内的相对目录",runtimeId:"运行时 ID 格式不正确",sandboxToolId:"沙箱工具 ID 格式不正确",modelName:"模型名称格式不正确",modelBaseUrlSafe:"请输入不含凭据、查询参数或锚点的 HTTPS 地址",modelBaseUrl:"请输入有效的 HTTPS 地址",runtimeName:{required:"Runtime 名称为必填项",characters:"Runtime 名称只能包含英文字母、数字、下划线和连字符",length:"Runtime 名称长度须为 4-64 个字符"}}},gce={title:"配置 Coding Agents",description:"把随 Studio 提供的 AgentKit Skills 全局安装到本地编码客户端。",retry:"重试",clients:{ariaLabel:"选择 Coding Agent",title:"本机客户端",detectAgain:"重新检测",detecting:"正在检测本机客户端…",detected:"已检测到客户端",available:"可用",unavailable:"未检测到"},skills:{ariaLabel:"选择内置 Skill",title:"内置 Skills",viewFiles:"查看文件",items:{"veadk-agent-development":{name:"VeADK Agent 开发",description:"使用 VeADK 开发和完善 Agent。"},"agentkit-cli":{name:"AgentKit CLI",description:"通过 AgentKit CLI 管理和部署 AgentKit 资源。"}}},global:{ariaLabel:"全局安装目录",title:"全局安装",description:"配置后可在本机其他项目中使用",empty:"选择客户端后显示对应安装目录。"},success:"已为 {{agentCount}} 个客户端配置 {{skillCount}} 个 Skill",selection:"已选择 {{agentCount}} 个客户端、{{skillCount}} 个 Skill",selectClient:"请先选择客户端",configuring:"正在配置…",configure:"配置",errors:{detect:"检测本机客户端失败",configure:"配置失败,请检查用户目录权限后重试"},preview:{description:"只读浏览随 Studio 提供的 Skill 文件",close:"关闭文件预览",loading:"正在读取文件…",error:"读取 Skill 文件失败",skillFiles:"{{name}} 文件",files:"文件",fileContent:"文件内容",notPreviewable:"此文件不是可预览的 UTF-8 文本。",noFiles:"没有可预览的文件。"}},bce={title:"飞书机器人",description:"创建一个由 AgentKit Runtime 驱动的飞书智能体",panel:"填写已发布飞书应用的凭据,Studio 将生成 basic 智能体、创建独立 Runtime,并启用飞书消息长连接。",agentName:"智能体名称",agentNameHelp:"将作为新 Runtime 中的根智能体名称",region:"部署地域",regionHelp:"Runtime 与构建产物将创建在该地域",regions:{"cn-beijing":"北京","cn-shanghai":"上海"},appId:"飞书 App ID",appIdHelp:"来自飞书开放平台的应用凭证",appSecret:"飞书 App Secret",appSecretPlaceholder:"请输入 App Secret",appSecretHelp:"仅写入新 Runtime 的环境变量",hideSecret:"隐藏 App Secret",showSecret:"显示 App Secret",hide:"隐藏",show:"显示",confirmCancel:"取消部署将停止任务并清理已创建的 Runtime,确定继续吗?",status:{preparing:"正在生成 basic 智能体",running:"正在创建 Runtime",cancelling:"正在取消部署",succeeded:"飞书机器人 Runtime 已创建",cancelled:"部署已取消",failed:"创建失败"},steps:{prepare:"生成智能体",build:"构建镜像",deploy:"创建 Runtime",publish:"发布服务"},openConsole:"打开 Runtime 控制台",credentials:{title:"凭据处理",description:"App Secret 仅用于本次部署,不会写入生成源码或浏览器存储。"},cancelDeployment:"取消部署",creating:"正在创建…",create:"创建飞书机器人 Runtime",validation:{appId:"请输入飞书 App ID",appSecret:"请输入飞书 App Secret",agentName:{required:"名称为必填项",reserved:"user 是 Google ADK 保留名称,请使用其他名称",characters:"名称须以英文字母或下划线开头,且只能包含英文字母、数字和下划线"}},generatedAgent:{description:"一个通过飞书接收消息并提供帮助的智能助手。",instruction:"你是一个通过飞书为用户提供帮助的智能助手。准确理解用户问题,给出简洁、可靠的回答;信息不足时先提问澄清,不要臆造事实。"}},yce={title:ice,description:rce,search:sce,categoriesLabel:ace,categories:oce,resultsLabel:lce,open:cce,localOnly:uce,emptyTitle:dce,emptyDescription:fce,backToAutomations:hce,cards:pce,github:mce,codingAgents:gce,feishu:bce},TMe=Object.freeze(Object.defineProperty({__proto__:null,backToAutomations:hce,cards:pce,categories:oce,categoriesLabel:ace,codingAgents:gce,default:yce,description:rce,emptyDescription:fce,emptyTitle:dce,feishu:bce,github:mce,localOnly:uce,open:cce,resultsLabel:lce,search:sce,title:ice},Symbol.toStringTag,{value:"Module"})),vce={"zh-CN":"简体中文","en-US":"English"},AMe={languageNames:vce},_Me=Object.freeze(Object.defineProperty({__proto__:null,default:AMe,languageNames:vce},Symbol.toStringTag,{value:"Module"})),xce={selectedExcerptLabel:"选中片段",commentLabel:"批注",commentSeparator:":",successTitle:"已加入 Bad case 评测集",successDescription:"这条批注已关联当前问题和完整模型回复。",done:"完成",ariaLabel:"批注选中的模型回复",title:"添加批注",content:"批注内容",placeholder:"说明问题或期望的修改方式",retryError:"{{error}},请重试。",cancel:"取消",submit:"加入 Bad Case"},wce={attachment:"附件",image:"图片",preview:"预览 {{name}}",uploading:"上传中",uploadFailed:"上传失败",remove:"移除 {{name}}",previewDialog:"{{name}}预览",download:"下载",close:"关闭",reading:"正在读取文档…",loadFailed:"文档加载失败:{{error}}"},Oce={errorTitle:"云端日志错误",copyError:"复制完整错误信息",retry:"重试",statuses:{live:"实时",connecting:"连接中",retrying:"重连中",idle:"未连接"},title:"实例日志",description:"当前对话请求所在的 VeFaaS 实例",close:"关闭实例日志",instanceId:"实例 ID",waitingInstance:"等待实例",request:"请求 {{id}}",ariaLabel:"VeFaaS 实例实时日志",notCapturedTitle:"尚未捕获到实例",notCapturedDescription:"发送一条消息后,这里会显示实际处理请求的实例和实时日志。",connectingTitle:"正在连接实例日志",connectingDescription:"正在通过 Studio BFF 建立安全日志流。",emptyTitle:"暂无日志",emptyDescription:"已连接实例,等待新的日志输出。",retention:"日志自动刷新,仅保留最近 {{count}} 行"},Sce={title:"调用链路观测",statuses:{loading:"加载中",ready:"",collecting:"采集中",disabled:"未开启",forbidden:"权限不足",error:"加载失败"},errors:{collecting:"调用链路仍在采集中,请稍候。",disabled:"该 Agent 未开启链路观测,请到控制台开启后重试。",forbidden:"当前账号无权读取 APMPlus 调用链路,请联系管理员补充只读权限。",error:"调用链路加载失败,请稍后重试。"},callCount:"{{count}} 个调用 · {{duration}} ms",close:"关闭",loading:"加载调用链路…",retryNow:"立即重试",reload:"重新加载",empty:"该会话暂无调用链路(可能尚未产生调用)。",attributes:"属性",selectCall:"选择左侧的一个调用查看详情"},kce={exportNote:"上述会话由 AgentKit Studio 导出,仅供参考",imageFailed:"图片生成失败,请重试。",browserUnsupported:"浏览器无法生成会话图片,请重试。",copyUnsupported:"当前浏览器不支持复制图片,请下载后使用。",exportFailed:"导出失败,请重试。",title:"导出会话",description:"选择格式并下载截至当前回复的全部输入与输出。",close:"关闭",generatingContent:"正在生成导出内容…",retry:"重试生成",previewPage:"预览第 1 页,共 {{count}} 页",previewAlt:"会话导出内容第 1 页,共 {{count}} 页",format:"导出格式",generatingFormat:"正在生成 {{format}}…",copying:"正在复制…",copiedFirst:"已复制第一页",copied:"已复制",copyFirst:"复制第一页",copyImage:"复制图片",generating:"正在生成…",downloadArchive:"下载 PNG 压缩包({{count}} 页)",downloadFormat:"下载 {{format}}"},Ece={unsupportedComponent:"不支持的组件:{{component}}",sandboxIdentity:"Codex Sandbox 执行标识",useSkill:"使用 {{name}} 技能",thinkingDone:"已完成思考",thinking:"思考中",justNow:"刚刚",sourceUnavailable:"暂时无法读取生成的源码,请稍后重试。",downloadStarted:"已开始下载",verifiedDelivery:"已验证交付物",generatedSource:"生成的 Agent 源码",entryPoint:"入口",fileCount:"文件数",size:"大小",validationTime:"验证时间",generationTime:"生成时间",checksPassed:"{{count}} 项检查通过",sourceReady:"源码已准备好,可部署",sourceGuidance:"源码已准备好,可查看、下载或部署;部署前请确认 Runtime 配置。",viewSource:"查看源码",preparing:"正在准备…",viewChanges:"查看本次变更",downloadSource:"下载源码",sourceNotReady:"源码尚未准备好",manualDeploy:"手动部署到 Runtime",beforeOptimization:"优化前",afterOptimization:"优化后",planStatuses:{pending:"待处理",in_progress:"进行中",completed:"已完成",failed:"未完成"},renderUi:"渲染 UI",truncated:"…(已截断)",agentAdjusting:"Agent 正在调整",sandboxDetails:"Codex Sandbox 详细输出",waitingCodex:"正在等待 Codex 输出",arguments:"参数",result:"返回",artifacts:"产物",downloadNamed:"下载 {{name}}",powerpoint:"PowerPoint 演示文稿",preview:"预览",download:"下载",previewDialog:"{{name}} 预览",closePreview:"关闭预览",slidePreview:"{{name}} 幻灯片预览",mcpToolset:"MCP 工具集",authorized:"已授权 · {{tool}}",authorizationRequired:"{{tool}} 需要授权",oauthDescription:"工具集 {{tool}} 使用 OAuth 保护,需登录授权后方可调用。",oauthProvider:"将跳转至 {{provider}} 完成登录。",oauthContinue:"授权完成后对话自动继续。",waitingAuthorization:"等待授权…",authorize:"去授权",missingAuthorizationUrl:"未在事件中找到授权地址。",tools:{web_search:{running:"正在进行网络搜索",done:"已完成网络搜索"},link_reader:{running:"正在读取网页",done:"已完成网页读取"},run_code:{running:"正在 AgentKit 沙箱中执行代码",done:"已在 AgentKit 沙箱中完成代码执行"},list_envs:{running:"正在查看可用环境",done:"已读取可用环境"},get_env_manifest:{running:"正在读取环境 Manifest",done:"已读取环境 Manifest"},execute_in_sandbox:{running:"正在环境中执行命令",done:"已在环境中完成命令执行"},delegate_to_codex_sandbox:{running:"Codex Sandbox 正在执行",done:"Codex Sandbox 已完成",failed:"Codex Sandbox 执行失败"},image_generate:{running:"正在生成图片",done:"已完成图片生成"},video_generate:{running:"正在生成视频",done:"已完成视频生成"},ppt_generate:{running:"正在生成 PPT",done:"已完成 PPT 生成"},load_memory:{running:"正在检索长期记忆",done:"已完成记忆检索"},load_knowledgebase:{running:"正在检索知识库",done:"已完成知识库检索"},load_skill:{running:"正在加载技能",done:"已加载技能"},collect_resources:{running:"正在收集可用资源",done:"已完成资源收集",failed:"资源收集失败"},create_agents:{running:"正在创建并运行 Agent",done:"已完成 Agent 创建",failed:"Agent 创建失败"}},createAgents:{categories:{skill_hub:"Skill Hub",skill_space:"AgentKit 技能中心",knowledge_base:"知识库",tool:"工具"},agentTypes:{llm:"LLM 智能体",sequential:"顺序智能体",parallel:"并行智能体",loop:"循环智能体",workflow:"工作流"},skill:"技能",subAgents:"子智能体",builtinTool:"内置工具",skillCenter:"AgentKit 技能中心",selfAuthoredTools:"自写工具",dependencies:"依赖:{{items}}",fullCode:"{{name}} 完整代码",itemCount:"{{label}} {{count}} 项",collectionAria:"召回资源信息",retrieving:"正在检索资源",retrievalFailed:"资源检索未完成",checkConfig:"请检查资源服务配置后重试。",notSearched:"未检索",notConfigured:"未配置",resourceList:"{{label}}资源列表",searchKeywords:"检索关键词",skillHubSkipped:"未提供检索关键词,本次未检索 Skill Hub。",sourceSkipped:"未配置 {{label}},本次未检索该来源。",noResources:"本次检索未返回该类别的资源。",resultAria:"创建 Agent 结果",creationFailed:"Agent 创建未完成",agentResources:"{{name}} 具备的资源",knowledgeBase:"知识库",toolsLabel:"工具",creating:"正在创建 Agent",noAgents:"没有可展示的 Agent",noAgentResult:"工具返回中未包含 Agent 配置或执行结果。",sourceLabels:{tool:"工具",knowledge:"AgentKit 知识库",skillCenter:"AgentKit 技能中心",unknown:"未知来源"},unnamedResource:"未命名资源",unnamedAgent:"未命名 Agent"},branchCompare:{ariaLabel:"分支对比",selectDirection:"选择方向",continue:"继续这个方向"},codexProgress:{planTitle:"Codex 执行计划",fallback:{fileChange:"修改文件",approval:"等待操作批准",status:"Codex 状态",command:"运行命令"},planSummary:"已完成 {{completed}}/{{total}} 项",command:{running:"正在执行命令",completed:"命令执行完成",failed:"命令执行失败"},projectFiles:"{{count}} 个项目文件",projectFile:"项目文件",fileChange:{running:"正在更新{{subject}}",completed:"已更新{{subject}}",failed:"更新{{subject}}失败"},externalTool:"外部工具",mcp:{running:"正在调用工具 {{tool}}",completed:"已调用工具 {{tool}}",failed:"工具 {{tool}} 调用未完成"},collaboration:{spawn_agent:{running:"正在启动子任务",completed:"子任务已启动",failed:"子任务启动失败"},send_input:{running:"正在向子任务发送信息",completed:"已向子任务发送信息",failed:"向子任务发送信息失败"},wait:{running:"正在等待子任务",completed:"子任务等待已结束",failed:"等待子任务失败"},close_agent:{running:"正在结束子任务",completed:"子任务已结束",failed:"子任务结束失败"},default:{running:"正在协调子任务",completed:"子任务协作已完成",failed:"子任务协作失败"}},webSearch:{running:"正在进行网络搜索",completed:"已完成网络搜索",failed:"网络搜索未完成"},errorDetail:"Codex 执行未完成。",errorTitle:"Codex 执行遇到错误"}},Cce={segments:{system:"系统与工具",input:"输入与历史",output:"输出与思考",remaining:"剩余"},modelUnavailable:"模型信息未提供",promptWithSystem:"提示词(含系统)",systemUnknown:"系统与工具占用未知",systemApprox:"系统与工具约 {{count}} Token",ariaKnown:"上下文已使用 {{percentage}}%,{{system}},{{inputLabel}} {{input}} Token,输出与思考 {{output}} Token,剩余 {{remaining}} Token",ariaUnknown:"{{model}},上下文窗口未知,会话累计使用 {{count}} Token",composition:"上下文构成",percentageUsed:"{{percentage}}% 已用",gridAria:"100 格上下文构成图,每格代表上下文窗口的百分之一",estimated:"估算",unknown:"未知",summaryPercentage:"{{used}} 已用,剩余 {{remaining}}",summaryTokens:"{{used}} 已用,剩余 {{remaining}},总计 {{total}}",overflow:"已超出上下文 {{count}} Token",title:"上下文用量",unknownModel:"暂未收录该模型的上下文窗口",unknownRuntime:"当前 Runtime 未提供模型信息"},Tce={title:"添加 AgentKit 智能体",noAgents:"连接成功,但该地址未发现任何 Agent(/list-apps 为空)。",connectionFailed:"连接失败:{{error}}。请检查 URL、API Key,以及该网关是否允许跨域。",description:"填入 AgentKit 部署的访问地址与 API Key,将通过 ADK 协议连接,连接成功后其 Agent 会出现在左上角的下拉中。",url:"访问地址 URL",apiKeyHint:"以 Authorization: Bearer 方式连接",displayName:"显示名称(可选)",displayNameHint:"默认取 URL 的主机名",cancel:"取消",connecting:"连接中…",connect:"连接并添加"},Ace={placeholder:"输入消息…",inputAria:"输入消息",generating:"正在生成",send:"发送"},_ce={ariaLabel:"本轮调用上下文",removeSkill:"移除技能 {{name}}",removeAgent:"移除 Agent {{name}}"},Nce={cardAria:"{{label}} 图表",viewAria:"{{label}} 显示方式",preview:"预览",code:"代码",invalidEcharts:"ECharts 配置不是有效且安全的数据对象,请切换到代码检查内容。",renderFailed:"图表暂时无法渲染,请切换到代码检查内容。",echartsAria:"ECharts 图表预览",rendering:"正在渲染图表…",mermaidFailed:"图表暂时无法渲染,请切换到代码查看 Mermaid 内容。",mermaidAria:"Mermaid 图表预览"},jce={playVideo:"点击播放视频:{{name}}",enlargeImage:"放大预览:{{name}}",image:"图片",enlargeVideo:"点击放大视频",videoPreview:"视频预览",downloadVideo:"下载视频",close:"关闭"},Rce={annotation:xce,media:wce,runtimeLogs:Oce,trace:Sce,share:kce,blocks:Ece,tokenUsage:Cce,addAgentKit:Tce,composer:Ace,invocation:_ce,visualization:Nce,markdown:jce},NMe=Object.freeze(Object.defineProperty({__proto__:null,addAgentKit:Tce,annotation:xce,blocks:Ece,composer:Ace,default:Rce,invocation:_ce,markdown:jce,media:wce,runtimeLogs:Oce,share:kce,tokenUsage:Cce,trace:Sce,visualization:Nce},Symbol.toStringTag,{value:"Module"})),Ice={back:"返回",cancel:"取消",deploy:"部署",delete:"删除",loading:"读取中…",next:"下一步",notSupported:"暂不支持",previous:"上一步",required:"必填",retry:"重试",actions:"操作",value:"值",disabled:"关闭",enabled:"已开启",none:"无",close:"关闭",name:"名称",description:"描述",send:"发送"},Pce={heading:"VeADK Agent 结构配置",importHint:"可在「创建 Agent」页通过「导入 YAML」重新载入。"},Dce={agentName:{required:"名称为必填项",reserved:"user 是 Google ADK 保留名称,请使用其他名称",characters:"名称须以英文字母或下划线开头,且只能包含英文字母、数字和下划线"},runtimeName:{required:"Runtime 名称为必填项",characters:"Runtime 名称只能包含英文字母、数字、下划线和连字符",length:"Runtime 名称长度须为 4-64 个字符"}},Mce={description:"一个基于 VeADK 构建的智能助手,理解用户意图并调用合适的工具完成任务。",instruction:`你是一个专业、可靠的智能助手。 你的目标是准确理解用户的需求,并给出条理清晰、简洁有用的回答。 约束: - 信息不足时主动提问澄清,不要臆造事实。 - 需要时合理调用可用的工具,并说明关键结论。 -- 保持礼貌、专业的语气。`},kce={requestFailed:"请求失败 ({{status}}){{detail}}",a2aSpaces:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 AgentKit 智能体中心",loginRequired:"请先登录以访问 AgentKit 智能体中心"},vikingKnowledge:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 VikingDB 知识库",loginRequired:"请先登录以访问 VikingDB 知识库"},vikingMemory:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 VikingDB 记忆库",loginRequired:"请先登录以访问 VikingDB 记忆库"},mcpGateway:{missingHttpTool:"请返回“添加 MCP 工具”并添加至少一个 HTTP MCP 服务;MCP 稳定性治理不支持 stdio 服务。",missingUrl:"已添加的 HTTP MCP 工具缺少有效服务地址,请返回“添加 MCP 工具”补充后再发布。"},customModel:{fallbackName:"自定义模型",apiKeyLabel:"{{name}} 模型 API Key"},deploymentEnv:{serverInjected:"由服务端注入",selectedApiKeyPlaceholder:"由所选 API Key 注入",mcpInjectedComment:"由已添加的 MCP 工具注入",restoredPlaceholder:"由 Studio 服务端安全恢复",generatedMcpPlaceholder:"由已添加的 HTTP MCP 工具自动生成",restoredHelp:"更新时由 Studio 服务端合并 MCP 地址与认证,不向浏览器返回旧密钥。",mergedMcpHelp:"Studio 服务端自动合并 MCP 地址与可选认证,不向浏览器返回旧密钥。",listSeparator:"、",requirementHint:"优化项“{{labels}}”依赖此配置。",requiredBy:"优化项“{{labels}}”依赖此配置,请填写 {{key}}。",required:"请填写 {{label}}({{key}})。",invalidJson:"JSON 格式不正确"},drafts:{unsupportedVersion:"本机草稿版本暂不受支持,请升级 Studio 后重试。",invalidFormat:"本机草稿数据格式无效。",readFailed:"无法读取本机草稿,浏览器中的草稿数据可能已损坏。",quotaExceeded:"浏览器存储空间不足,草稿未保存。请删除不需要的草稿或清理此站点的浏览器存储后重试。",writeRejected:"浏览器拒绝保存草稿,请检查站点存储权限后重试。"},skills:{searchFailed:"搜索失败 ({{status}})",downloadFailed:"下载技能失败 ({{status}})",agentKitRequestFailed:"AgentKit Skills 请求失败",missingManifest:"{{location}} 缺少 SKILL.md",invalidParentPath:"{{location}} 包含非法路径(..):{{path}}",invalidPath:"{{location}} 包含非法路径:{{path}}",localDescription:"本地 Skill",folderSource:"文件夹",noManifest:"{{location}} 中未发现 SKILL.md"},zip:{invalid:"无效的 zip:找不到 EOCD",tooManyFiles:"zip 文件数不能超过 {{count}} 个",tooLarge:"zip 解压后的内容过大"}},Ece={back:"返回开发会话",runtimeName:"Runtime 名称",runtimeNameExists:"Runtime 名称已存在,请更换后重试",checkingRuntimeName:"正在检查 Runtime 名称",verifiedSource:"已验证源码",deployableSource:"可部署源码",verifiedByCodex:"已通过 Codex 云端验证",entryPoint:"入口",files:"文件",artifact:"构建产物",validationReport:"验证报告",verifiedHint:"源码由服务端从已验证交付物物化,浏览器文件不能替换。",unverifiedHint:"源码已由服务端安全物化,部署前请确认 Runtime 配置。",env:{requiredPlaceholder:"请输入 {{key}}",optionalPlaceholder:"可选:{{key}}"}},Cce={name:"代码包",back:"返回创建方式",reading:"正在读取代码包",readingEllipsis:"正在读取代码包…",uploadFirst:"请先上传代码包",uploadAriaLabel:"代码包上传",upload:"上传代码包",reupload:"重新上传代码包",uploadPrompt:"请上传代码包",filesRecognized:"已识别 {{count}} 个文件,点击区域可重新上传",dropHint:"点击或拖拽上传,支持 .zip 格式,最大 50 MB;可使用 app.py,或由 agentkit.yaml 声明入口",viewFiles:"查看文件",chooseFile:"选择代码包",errors:{invalidFormat:"请选择 .zip 格式的代码包。",tooLarge:"代码包不能超过 50 MB。",invalidPath:"压缩包包含非法路径:{{name}}",empty:"压缩包中没有可部署的文件。",tooManyFiles:"代码包文件数不能超过 {{count}} 个。",duplicateFile:"代码包包含重复文件:{{path}}",manifestParse:"agentkit.yaml 无法解析:{{detail}}",manifestRoot:"agentkit.yaml 根节点必须是对象。",manifestCommon:"agentkit.yaml 的 common 必须是对象。",entryPointType:"agentkit.yaml 的 common.entry_point 必须是文件路径。",entryPointInvalid:"agentkit.yaml 的 common.entry_point 不是有效文件路径。",entryPointMissing:"代码包中不存在 agentkit.yaml 声明的启动入口:{{entryPoint}}",defaultEntryPointMissing:"代码包根目录必须包含 app.py,或在 agentkit.yaml 的 common.entry_point 中声明已有入口。"}},Tce={label:"Agent 执行画布",readOnlyLabel:"只读 Agent 执行画布",minimapLabel:"执行流程缩略图",controls:{ariaLabel:"执行流程控制",zoomIn:"放大",zoomOut:"缩小",fitView:"适应视图"},rootAgent:"主 Agent",unnamedStep:"未命名步骤",terminals:{input:"用户请求",output:"最终回复"},edges:{then:"然后",continueLoop:"继续循环",call:"调用"},patterns:{llm:{label:"智能体",description:"理解任务并直接完成一个具体工作"},sequential:{label:"分步协作",description:"内部步骤按照顺序依次执行"},parallel:{label:"同时处理",description:"内部步骤同时工作,完成后统一汇总"},loop:{label:"循环执行",description:"重复执行内部步骤,直到满足停止条件"},a2a:{label:"远程智能体",description:"调用已经存在的远程 Agent"}},actions:{insertHere:"在这里插入步骤",deleteNamed:"删除 {{name}}",deleteNode:"删除节点",addSubagent:"添加子 Agent",addParallelStep:"添加一个同时处理的步骤",addLoopStep:"添加循环步骤",addNextStep:"添加下一个步骤",addFirst:"添加到最前",addLast:"添加到最后"}},Ace={title:"智能模式",subtitle:"描述目标后,沙箱中的 Codex 会判断你的意图,完成构建、调试和临时云端验证。",model:{label:"模型",placeholder:"选择模型",retiring:"即将下线",currentConfiguration:"当前配置",loadError:"加载模型列表失败"},availability:{checking:"正在检查智能开发能力…",unavailable:"当前无法使用智能模式,请返回后重试。"},goal:{title:"从目标开始",continueTitle:"继续优化项目",hint:"只需说明 Agent 要解决的问题;如有影响结果的关键信息,会在开始前向你确认。",continueHint:"说明这次要调整的内容,完成后会保存为新版本。",basedOn:"基于",clearSelection:"取消选择",label:"目标描述",optimizationLabel:"优化目标",placeholder:"例如:创建一个能读取销售数据、生成周报并校验输出格式的 Agent",optimizationPlaceholder:"例如:增加数据来源标注,并在信息不足时先向用户确认"},actions:{preparing:"准备中…",build:"开始构建",optimize:"开始优化"},preparation:{accepted:"目标已收到,马上开始实现",preparing:"正在创建任务环境…",starting:"环境已就绪,正在启动 Codex…",next:"接下来会先梳理目标和实现方式,再编写、运行和验证 Agent。"}},_ce={title:"已保存项目",description:"选择已有版本继续优化,或查看、下载和部署源码。",refresh:"刷新项目列表",checkingStorage:"正在检查项目存储…",unavailableTitle:"暂时无法读取项目",storageCheckError:"无法确认项目存储状态,请稍后重试。",storageNotConfigured:"项目存储尚未配置。",loadingMigrated:"正在读取已迁移项目…",loadingSaved:"正在读取已保存项目…",loadingVersions:"正在读取项目版本…",unknownTime:"时间未知",sourceDownloaded:"源码已下载。",projectSummary_one:"{{count}} 个版本 · 更新于 {{time}}",projectSummary_other:"{{count}} 个版本 · 更新于 {{time}}",versionSummary_one:"{{time}} · {{count}} 个文件",versionSummary_other:"{{time}} · {{count}} 个文件",noVersionDescription:"暂无版本描述",latestVersion:"最新版本",verified:"已验证",pendingVerification:"待确认",viewSource:"查看源码",download:"下载",downloading:"下载中…",optimize:"去优化",optimizeUnavailable:"去优化,暂不支持",errors:{projects:"无法读取已保存项目。",source:"无法读取项目源码。",versions:"无法读取项目版本。",download:"下载源码失败。",prepareDeployment:"无法准备部署源码。",deleteVersion:"删除项目版本失败。",migrated:"无法读取已迁移项目",saved:"无法读取已保存项目"},empty:{migratedTitle:"还没有已迁移的项目",savedTitle:"还没有已保存的项目",migratedDescription:"完成首次迁移后,源码会自动保存在这里。",savedDescription:"完成首次构建后,源码会自动保存在这里。",noVersions:"这个项目还没有可用版本。"},compare:{selected:"已选择 {{count}}/2",selectedLabel:"已选择",select:"选择",view:"查看对比",start:"对比版本"},delete:{title:"删除这个版本?",onlyVersion:"“{{name}}”只有这一个版本,删除后项目也会移除。此操作无法撤销。",description:"该版本的源码和验证记录将永久删除,其他版本不受影响。",confirm:"删除版本"}},Nce={title:"选择创建方式",subtitle:"以不同模式构建您的智能体",features:"特性",quick:{title:"快速模式",description:"动态派生子智能体自主完成任务",features:{dynamicSubagents:"动态派生子智能体",autonomousPlanning:"自主规划执行",collaboration:"多智能体协作",summary:"自动汇总结果",skills:"按需调用技能",trace:"任务过程可追踪"}},traditional:{title:"传统模式",description:"高度自定义您的智能体结构",features:{visualConfig:"可视化配置",migration:"存量智能体迁移",debugging:"实时调试",optimization:"可选性能优化",parameters:"精细参数控制"}}},jce={placeholder:"输入系统提示词;键入 ## 加空格可创建二级标题…",toolbar:{undo:"撤销 {{shortcut}}",redo:"重做 {{shortcut}}",paragraph:"正文",quote:"引用",heading:"标题 {{level}}",selectBlockType:"选择文本类型",blockType:"文本类型",bold:"加粗",removeBold:"取消加粗",italic:"斜体",removeItalic:"取消斜体",bulletedList:"无序列表",numberedList:"有序列表"}},Rce={local:{duplicatesSkipped:"已跳过重复技能:{{names}}",invalidDrop:"请拖入包含 SKILL.md 的文件夹或一个 .zip 文件",readError:"读取失败:{{detail}}",dropLabel:"拖入文件夹或 ZIP,自动识别 Skill",hint:"每个技能需包含 SKILL.md。支持包含多个技能的目录。",reading:"正在读取文件…",fileCount:"本地 · {{count}} 个文件"},hub:{searchError:"搜索失败,请稍后重试。",searchPlaceholder:"搜索火山 Find Skill 技能广场,例如 数据分析、PDF…",search:"搜索",searching:"正在搜索…",noResults:"没有找到匹配的技能,换个关键词试试。",hint:"输入关键词搜索火山 Find Skill 技能广场,所选技能会在生成项目时下载到 skills/ 目录。"},space:{loadError:"加载失败",loadingSpaces:"正在加载 AgentKit Skills 中心…",noSpaces:"此账号下没有 AgentKit Skills 中心。",selectSpace:"选择 AgentKit Skills 中心",openConsole:"在火山引擎控制台打开",loadingSkills:"正在加载技能列表…",noSkills:"此 AgentKit Skills 中心暂无技能。"}},Ice={unnamedNode:"未命名节点",editInstruction:"点击编辑指令…",controls:{ariaLabel:"工作流画布控制",zoomIn:"放大",zoomOut:"缩小",fitView:"适应视图"},sections:{info:"工作流信息",execution:"执行方式",nodes:"节点",nodeConfig:"节点配置"},types:{sequential:{label:"顺序",description:"节点依次执行"},parallel:{label:"并行",description:"节点同时执行"},loop:{label:"循环",description:"节点循环执行"}},placeholders:{description:"这个工作流做什么…",agentDescription:"这个 Agent 做什么…",instruction:"你是一个…"},errors:{workflowNameUnique:"名称须与 Agent 节点名称保持唯一",agentNameUnique:"Agent 名称在当前工作流中必须唯一"},dragHint:"拖拽到画布,或点击下方按钮添加",agentNode:"Agent 节点",addNode:"添加节点",connectHint:"拖拽节点的圆点连线以表达执行顺序。",create:"创建工作流",deleteNode:"删除节点",nameHelp:"仅使用英文字母、数字和下划线,且名称保持唯一。",instruction:"指令 (instruction)",tools:"工具 (逗号分隔)",nodeId:"节点 ID",empty:{selectNode:"选择一个节点以编辑其配置",summary:"共 {{nodes}} 个节点 · {{edges}} 条连线"}},Pce={ariaLabel:"快速模式创建",progress:"快速模式创建进度",steps:{agent:{label:"智能体",title:"基本信息",description:"设置智能体的名称、用途、行为方式与能力"},environment:{label:"执行环境",title:"配置执行环境",description:"选择默认环境或已构建的自定义环境"},deployment:{label:"部署偏好",title:"部署偏好",description:"定义 AgentKit 云上参数"}},model:{label:"模型",source:"模型来源",name:"模型名称",provider:"服务商 Provider",volcengineArk:"火山方舟",custom:"自定义",gateway:"模型网关",comingSoon:"待上线",currentApiKey:"当前 API Key",loadingApiKeys:"正在加载 API Key",selectApiKey:"选择 API Key",searchApiKeys:"搜索 API Key 名称",noApiKeys:"暂无可用 API Key",loadingModels:"正在加载模型",selectModel:"选择模型",searchModels:"搜索名称、Model ID 或服务商",noModels:"没有可用的模型",apiKeyPlaceholder:"请输入模型 API Key",credentialsLoadError:"模型凭据加载失败",modelsLoadError:"模型列表加载失败"},identity:{unnamedPool:"未命名用户池",currentPool:"{{value}}(当前用户池)",userPool:"用户池",loading:"正在加载用户池",placeholder:"请选择用户池",search:"搜索用户池",empty:"当前账号下暂无 Identity 用户池",currentHint:"当前 Studio 的登录 JWT 将透传访问此 Runtime",mismatchHint:"所选用户池不是当前 Studio 使用的用户池,部署后无法从 Studio 调用此 Runtime",selectionHint:"当前 Studio 使用的用户池已在列表中标注"},agent:{namePlaceholder:"输入智能体名称",descriptionPlaceholder:"说明这个智能体可以做什么",prompt:"提示词",promptPlaceholder:"定义角色、目标和行为边界",skills:"技能",addSkill:"添加技能"},validation:{descriptionRequired:"请输入描述",promptRequired:"请输入提示词",modelRequired:"请选择模型",instanceIntegers:"最小实例数必须为大于等于 0 的整数,最大实例数必须为大于 0 的整数",instanceOrder:"最小实例数不能大于最大实例数",userPoolRequired:"请选择用于 Runtime 鉴权的用户池"},deployment:{runtimeName:"Runtime 名称",runtimeNameUpdateHint:"更新时保持现有 Runtime 名称不变",runtimeNameHint:"仅支持英文字母、数字、下划线和连字符",region:"发布区域",authentication:"鉴权方式",apiKeyDescription:"默认方式,使用 Runtime API Key 访问",userPoolDescription:"使用 Identity 用户池签发的 JWT",sessionStorage:"会话存储",inMemoryStorage:"In-memory 临时存储",backends:{sqlite:"SQLite 文件",mysql:"MySQL",postgresql:"PostgreSQL"},instances:"实例设置",minInstances:"最小实例数",maxInstances:"最大实例数",inMemoryHint:"为避免多实例间会话丢失,推荐将 Runtime 固定为 1~1",networkMode:"网络模式",network:{public:"公网",private:"私网",both:"公网与私网"},subnetIds:"子网 ID(可选,多个用逗号分隔)",sharedInternet:"VPC 内共享公网出口",sharedInternetHint:"允许私网 Runtime 通过共享出口访问公网",evaluationSets:"评测集",createEvaluationSets:"自动创建评测集",evaluationSetsHint:"部署成功后自动创建 Good Case 和 Bad Case 评测集",resources:"资源配置",complete:"部署已完成",preparing:"正在准备部署…"},environmentVariables:{title:"环境变量",add:"添加变量",nameAriaLabel:"环境变量名称",valueAriaLabel:"{{name}} 的值",deleteNamed:"删除 {{name}}"},actions:{updateAgain:"再次更新",deployAgain:"重新部署",updateAndPublish:"更新并发布"}},Dce={actions:{addSubagent:"添加子 Agent",clearRoot:"清空根 Agent",clearRootConfirmation:"清空根 Agent 的全部配置和子 Agent?此操作无法撤销。"},workspace:{progress:"Agent 创建进度",modes:{build:"架构",validate:"调试",optimize:"优化",environment:"环境",publish:"发布"},titles:{build:"个性化您的智能体架构",validate:"调试您的智能体",optimize:"为您的智能体选择优化项",environment:"配置云上环境",publish:"准备好部署您的智能体"}},sections:{type:{label:"Agent 类型",hint:"选择 Agent 类型"},basic:{label:"基本信息",hint:"名称、描述与系统提示词"},model:{label:"模型配置",hint:"模型与服务(可选)"},tools:{label:"工具",hint:"可调用的能力"},skills:{label:"技能",hint:"声明式技能"},knowledge:{label:"知识库",hint:"外部知识检索"},memory:{label:"记忆",hint:"短期与长期记忆"},subagents:{label:"子 Agent",hint:"嵌套协作"},review:{label:"完成",hint:"预览并创建"}},agentTypes:{ariaLabel:"Agent 类型",remoteChildOnly:"远程智能体只能作为子步骤使用",llm:{label:"智能体",fullLabel:"LLM 智能体",description:"大模型驱动,自主完成任务"},sequential:{label:"分步协作",fullLabel:"顺序型智能体",description:"子 Agent 按顺序依次执行"},parallel:{label:"同时处理",fullLabel:"并行型智能体",description:"子 Agent 并行执行后汇总"},loop:{label:"循环执行",fullLabel:"循环型智能体",description:"子 Agent 循环执行到满足条件"},a2a:{label:"远程智能体",fullLabel:"远程 Agent",description:"通过 A2A 协议调用远程 Agent"}},basic:{agentName:"Agent 名称",name:"名称",agentDescription:"智能体描述",descriptionPlaceholder:"简要描述这个 Agent 的用途,便于团队识别…",nameHelp:"遵循 Google ADK 命名规则,且在执行流程中保持唯一。",rootDescriptionHelp:"完整描述会保留;部署时会自动整理为符合 Runtime 规范的单行描述。",descriptionHelp:"描述会显示在 Agent 列表与选择器中。",orchestratorHelp:"这是一个协作容器,本身不生成回答。请在左侧画布中添加任务步骤,并通过拖拽调整它们的位置。",maxIterations:"最大轮次",maxIterationsHelp:"循环编排反复执行子 Agent,直到满足条件或达到该轮次上限。",agentCenter:"AgentKit 智能体中心",agentCenterHelp:"远程 Agent 的名称、描述和能力来自中心返回的 Agent Card。系统会根据每轮任务动态发现并挂载匹配的 Agent。",moreOptions:"更多选项",systemPrompt:"系统提示词",loadingMarkdown:"正在加载 Markdown 编辑器…",markdownHelp:"支持 Markdown 快捷输入,例如键入 ## 加空格创建二级标题。",unnamed:"未命名",unnamedAgent:"未命名智能体"},validation:{remoteRoot:"远程 Agent 只能作为子 Agent",missingRegistry:"请选择 AgentKit 智能体中心",name:{required:"名称为必填项",reserved:"user 是 Google ADK 保留名称,请使用其他名称",characters:"名称须以英文字母或下划线开头,且只能包含英文字母、数字和下划线"},duplicateName:"Agent 名称在当前结构中必须唯一",missingDescription:"描述为必填项",mcpAuthRequired:"MCP 地址变化后需要确认认证方式",mcpDuplicateName:"MCP 名称重复,请为每个服务使用唯一名称",mcpDuplicateUrl:"MCP 地址重复,请删除重复服务后再发布",missingSubagent:"缺少子 Agent",missingPrompt:"系统提示词为必填项",missingSubagentDetail:"{{type}}至少需要添加一个子 Agent 后才能调试或发布。",problem:"{{name}}:{{problem}}"},ai:{ariaLabel:"AI 自动填写 Agent 配置",minimumLength:"请至少输入 {{count}} 个字符。",replaceConfirmation:"生成的新配置会替换当前画布和属性,确定继续吗?",placeholder:"描述目标,使用 {{model}} 模型一键生成配置",generate:"智能生成",generating:"正在智能生成",success:"生成成功",regenerate:"重新生成",failed:"智能生成失败"},debug:{ariaLabel:"智能体调试工作区",unavailable:"当前后端暂不支持生成 Agent 调试运行。",baseline:"基准组",comparison:"对照组 {{count}}",selectModel:"请选择模型",enterDescription:"请输入描述",enterPrompt:"请输入系统提示词",duplicateConfiguration:"测试配置不能重复",starting:"启动中…",applyAndRestart:"应用并重启",restart:"重新启动",start:"启动环境",defaultModel:"默认模型",testConfiguration:"测试配置",deleteVariant:"删除 {{name}}",deleteVariantGroup:"删除对照组",creatingEnvironment:"正在创建测试环境…",configurationChanged:"配置已变更,请重新启动环境。",ready:"环境已就绪",readyHint:"发送消息以比较智能体回复。",startHint:"先完善配置,再启动环境。",viewTraceNamed:"查看 {{name}} 的调用链路",traceUnavailable:"发送消息后可查看调用链路",trace:"调用链路",useConfiguration:"使用此配置",finishConfiguration:"完成配置",finishAndStart:"完成并启动",currentAgentModel:"当前 Agent 模型",configurationHint:"修改仅用于本次对比,选择使用后才会进入部署流程。",messagePlaceholder:"向已启动的测试环境发送消息…",startOneFirst:"请先启动至少一个测试环境",addVariant:"添加对照组",traceTitle:"调用链路 · {{name}}",leaveTitle:"离开调试?",leaveDescription:"离开调试页面后,当前环境将被清理。您可以通过重新启动环境进行新的测试。",cleaning:"清理中…",confirmLeave:"确定离开",closeLeaveConfirmation:"关闭离开调试确认"},optimization:{ariaLabel:"智能体优化选项",scenario:"优化场景",components:"优化组件",bytePlusUnavailable:"BytePlus 账号暂不支持 Harness Sidecar 优化项。请保持优化项为空后继续部署,普通 BytePlus 智能体不受影响。",releaseScenario:"优化场景:{{profile}}",profiles:{default:{label:"自定义",description:"按需选择组件,不勾选时不启动 Sidecar。"},ops:{label:"运维场景",description:"适用于运维诊断、数据库、日志和监控 MCP。"}},groups:{quality:"提升回答质量",cost:"降低运行成本",stability:"增强运行稳定性"},options:{context_engine:{label:"上下文治理",description:"治理上下文组装、任务锚定和上下文预算。"},compressor:{label:"上下文与结果压缩",description:"压缩长上下文和大型工具结果,降低 Token 成本。"},verifier:{label:"回答校验与修复",description:"校验证据和回答,在失败时执行修复或告警。"},long_run_control:{label:"Goal 任务控制",description:"管理 Goal 任务的进度、续跑和结束条件。"},mcp_resilience:{label:"MCP 稳定性治理",description:"治理连接、超时、空结果、大返回和调用预算;默认包含 SQL 只读保护。"}}},model:{label:"模型",source:"模型来源",volcanoArk:"火山方舟",volcengineArk:"火山方舟",bytePlusModelArk:"BytePlus ModelArk",custom:"自定义",gateway:"模型网关",comingSoon:"待上线",configuration:"模型配置",name:"模型名称",provider:"服务商 Provider",liteLlmProviders:"LiteLLM 支持列表",apiKeyPlaceholder:"请输入模型 API Key",available:"已开通",retiring:"即将下线",notActivated:"未开通",unavailable:"暂不可用",apiKeyLoadError:"加载 Ark API Key 失败",loadingApiKeys:"正在加载 API Key…",selectApiKey:"选择 API Key",currentApiKey:"当前 API Key",apiKeyList:"API Key 列表",searchApiKey:"搜索 API Key",searchApiKeyName:"搜索 API Key 名称",noApiKeys:"暂无可用 API Key",noMatchingApiKey:"没有匹配的 API Key",loading:"正在加载模型…",loaded:"已加载 {{count}} 个模型",loadError:"加载模型失败",selectModel:"选择模型",selectProviderModel:"选择服务商模型",providerModels:"服务商模型",search:"搜索模型",searchPlaceholder:"搜索名称、Model ID 或服务商",noMatches:"没有匹配的模型",empty:"暂无可用模型",unknownStatus:"未知状态",refresh:"刷新",refreshing:"刷新中…",activate:"开通",activateAction:"前往开通",currentConfiguration:"当前配置"},tools:{builtIn:"内置工具",builtInHelp:"勾选 VeADK 提供的内置能力,生成时会自动补全 import 与所需环境变量。",codeExecution:"代码执行配置",codeExecutionHelp:"指定 AgentKit 代码执行沙箱。",mcp:"MCP 工具"},catalog:{web_search:{label:"联网搜索",description:"火山引擎 Web Search,获取实时信息。"},parallel_web_search:{label:"并行联网搜索",description:"并行发起多条搜索查询,更快汇总。"},link_reader:{label:"网页读取",description:"抓取并阅读给定链接的正文内容。"},web_scraper:{label:"网页爬取",description:"结构化爬取网页(需要 Scraper 服务)。"},image_generate:{label:"图像生成",description:"文生图(Doubao Seedream)。"},image_edit:{label:"图像编辑",description:"图生图 / 编辑(Doubao SeedEdit)。"},video_generate:{label:"视频生成",description:"文/图生视频(Doubao Seedance),含任务查询。"},text_to_speech:{label:"语音合成 (TTS)",description:"把文本转成语音(火山语音)。"},run_code:{label:"代码执行",description:"在沙箱中执行代码。"},vesearch:{label:"VeSearch 智能搜索",description:"火山 VeSearch(需要 bot 端点)。"},links:{console:"控制台",documentation:"文档"},env:{modelAgentName:{comment:"模型名称"},embeddingModelName:{comment:"向量化模型(记忆/知识库需要)"},vikingMemoryProject:{comment:"VikingDB 记忆库项目"},vikingMemoryRegion:{comment:"VikingDB 记忆库地域"},vikingMemoryType:{comment:"记忆类型"},feishuAppId:{comment:"飞书应用 App ID"},feishuAppSecret:{comment:"飞书应用 App Secret",placeholder:"输入 App Secret"},registrySpaceId:{comment:"AgentKit 智能体中心",placeholder:"请选择智能体中心"},registryTopK:{comment:"召回 Agent 数量"},registryRegion:{comment:"AgentKit 智能体中心地域"},registryEndpoint:{comment:"AgentKit 智能体中心 OpenAPI 地址"},agentKitToolId:{comment:"代码执行沙箱 ID"},agentKitToolRegion:{comment:"AgentKit Tools 地域"},openVikingUrl:{comment:"OpenViking 服务地址"},openVikingMemoryUserId:{comment:"记忆归属 ID",help:"对应 viking://user/<此值>/peers/<请求用户>/memories 中的 user 段;用于隔离 Agent、租户或业务场景,默认 default。"},openVikingMemoryPolicy:{comment:"记忆策略",help:"记忆的抽取策略和隔离策略,不填写时使用官方默认策略。"},openVikingKnowledgeUserId:{comment:"知识库归属 ID",help:"未配置资源目录时用于默认路径 viking://user/<此值>/resources/<知识库索引>/,默认 default。"},openVikingTargetUri:{comment:"知识库资源目录",help:"留空时由 KnowledgeBase index 自动生成;填写后直接检索该 OpenViking 资源目录,优先级最高。"},tlsServiceName:{comment:"TLS topic_id,留空自动创建"}}},backends:{shortTerm:{local:{label:"本地内存",description:"进程内,不持久化。适合开发调试。"},sqlite:{label:"SQLite 文件",description:"持久化到本地 .db 文件。"},mysql:{label:"MySQL",description:"持久化到 MySQL。"},postgresql:{label:"PostgreSQL",description:"持久化到 PostgreSQL。"}},longTerm:{local:{label:"本地向量库",description:"进程内 llama-index 向量库。"},opensearch:{label:"OpenSearch",description:"OpenSearch 向量检索。"},redis:{label:"Redis",description:"Redis 向量检索。"},viking:{label:"VikingDB Memory",description:"VikingDB 记忆库(支持用户画像)。"},openviking:{label:"OpenViking Memory",description:"OpenViking 长期记忆,按用户维度保存和检索偏好、事件与实体。"},mem0:{label:"Mem0",description:"Mem0 托管记忆服务。"}},knowledge:{viking:{label:"VikingDB Knowledge",description:"VikingDB 知识库。"},opensearch:{label:"OpenSearch",description:"OpenSearch 向量检索。"},context_search:{label:"Context Search",description:"火山 Context Search 引擎(无需向量化)。"},openviking:{label:"OpenViking Knowledge",description:"OpenViking 资源目录知识库,无需向量化模型配置。"}}},exporters:{apmplus:{label:"APMPlus",description:"火山 APMPlus 应用性能监控。"},cozeloop:{label:"CozeLoop",description:"扣子 CozeLoop 链路观测。"},tls:{label:"TLS (日志服务)",description:"火山 TLS 日志服务导出。"}},knowledge:{title:"知识库",description:"启用外部知识检索(RAG),让 Agent 基于你的资料作答。",backend:"知识库后端",vikingDatabase:"VikingDB 知识库"},memory:{shortTerm:"短期记忆",shortTermDescription:"存储单会话上下文",shortTermBackend:"短期记忆后端",longTerm:"长期记忆",longTermDescription:"存储跨会话上下文,通常使用向量化检索",longTermBackend:"长期记忆后端",vikingDatabase:"VikingDB 记忆库",autoSave:"自动保存会话到长期记忆",autoSaveDescription:"会话结束时自动把内容写入长期记忆,无需手动调用。"},mcp:{removeTool:"删除 MCP 工具",namePlaceholder:"名称(可选)",urlPlaceholder:"MCP 服务地址",pathWarning:"此地址未以 /mcp 结尾,请确认它是完整的 MCP 服务地址。",configuredPlaceholder:"已安全保存认证信息",tokenPlaceholder:"Bearer Token(可选)",changedUrlWarning:"MCP 地址已变化,请确认如何处理已保存的认证信息。",reuseCredential:"继续使用",replaceCredential:"替换认证",noAuth:"不使用认证",reuseHint:"发布时将继续使用已保存的认证信息。",changeToReplace:"改为替换",credentialConfigured:"认证信息已由 Studio 安全保存。",removeCredential:"移除认证",commandPlaceholder:"命令,例如 npx",argsPlaceholder:"参数,以空格分隔",stdioHint:"stdio 工具在部署环境中启动,请确保命令和依赖可用。",addTool:"添加 MCP 工具"},resources:{unnamedAgentCenter:"未命名智能体中心",unnamedKnowledgeBase:"未命名知识库",unnamedMemory:"未命名记忆库",loadError:"加载失败",loadingAgentCenters:"正在加载智能体中心…",agentCentersLoaded:"已加载 {{count}} 个智能体中心",noAgentCenters:"暂无智能体中心",noMatchingAgentCenters:"没有匹配的智能体中心",searchAgentKitCenter:"搜索 AgentKit 智能体中心",searchNameOrId:"搜索名称或 ID",selectAgentCenter:"选择智能体中心",selectAgentKitCenter:"选择 AgentKit 智能体中心",selectedAgentCenter:"已选智能体中心",agentKitCenter:"AgentKit 智能体中心",refreshAgentCenters:"刷新智能体中心",knowledgeBaseList:"知识库列表",knowledgeBasePlaceholder:"选择知识库",loadingKnowledgeBases:"正在加载知识库…",knowledgeBasesLoaded:"已加载 {{count}} 个知识库",noKnowledgeBases:"暂无知识库",noMatchingKnowledgeBases:"没有匹配的知识库",searchKnowledgeBase:"搜索知识库",selectKnowledgeBase:"选择知识库",refreshKnowledgeBases:"刷新知识库",memoryList:"记忆库列表",memoryPlaceholder:"选择记忆库",loadingMemories:"正在加载记忆库…",memoriesLoaded:"已加载 {{count}} 个记忆库",noMemories:"暂无记忆库",noMatchingMemories:"没有匹配的记忆库",searchMemory:"搜索记忆库",selectMemory:"选择记忆库",refreshMemories:"刷新记忆库"},env:{noAdditionalParameters:"此后端无需额外运行参数。",invalidJson:"请输入有效的 JSON。",helpAriaLabel:"{{label}}说明:{{help}}",openOpenViking:"打开 OpenViking {{label}}",valuePlaceholder:"请输入参数值",openVikingIndex:"OpenViking 资源索引",openVikingIndexHelp:"默认值:留空;生成项目时使用 Agent 名自动生成,例如 my_agent_kb。未配置 DATABASE_OPENVIKING_TARGET_URI 时,默认 URI 拼接为 viking://user/{知识库归属 ID,未填则 default}/resources/{资源索引}/;如果填写了 DATABASE_OPENVIKING_TARGET_URI,则直接使用该完整 URI。",openVikingIndexAriaLabel:"OpenViking 资源索引说明:{{help}}"},deployment:{vpcRequired:"使用 VPC 网络时,请填写 VPC ID。",apiKeyRequired:"请先选择模型使用的 API Key。",invalidEnvName:"环境变量名称不合法:{{key}}",requiredEnv:"{{name}}:请填写必填环境变量",generatingConfiguration:"正在生成部署配置",runtimeNameExists:"Runtime 名称已存在,请修改后重试。",preparing:"准备部署",complete:"部署完成",failed:"部署失败",updateAndPublish:"更新并发布",stages:{build:"构建镜像",deploy:"部署 Runtime",publish:"发布服务",running:"部署中"}},publish:{generating:"正在生成发布配置",validating:"校验 Agent 结构并准备部署快照…"}},Mce={presets:{support:{name:"客服助手",description:"7×24 在线答疑,结合知识库与历史对话,稳定、礼貌地解决用户问题。",instruction:"你是一名专业、耐心的客服助手。请始终保持礼貌、友好的语气,优先依据知识库中的资料回答用户问题;当资料不足以确定答案时,如实告知用户并主动引导其提供更多信息,切勿编造。回答尽量简洁、分点清晰,必要时给出操作步骤。",subagents:{}},analyst:{name:"数据分析师",description:"运行代码完成统计与可视化,开启链路追踪,分析过程可观测、可复现。",instruction:"你是一名严谨的数据分析师。面对数据问题时,先厘清分析目标与口径,再通过编写并运行代码完成清洗、统计与可视化。每一步都要说明你的假设与方法,给出结论时附上关键数据支撑,并指出潜在的偏差与局限。",subagents:{}},translator:{name:"翻译助手",description:"中英互译,忠实、通顺、地道,保留原文语气与专业术语。",instruction:"你是一名专业的翻译助手,精通中英互译。请在忠实于原文含义的前提下,使译文自然、地道、符合目标语言表达习惯;保留专有名词与专业术语的准确性,并尽量贴合原文的语气与风格。仅输出译文,除非用户额外要求解释。",subagents:{}},coder:{name:"代码助手",description:"编写、调试与重构代码,可运行代码验证结果,给出清晰可维护的实现。",instruction:"你是一名资深软件工程师。请根据需求编写正确、清晰、可维护的代码,遵循目标语言的惯用风格与最佳实践。在不确定时通过运行代码验证你的实现,给出关键的边界条件与测试思路,并对复杂逻辑附上简要注释。",subagents:{}},researcher:{name:"研究员",description:"联网检索一手资料,结合知识库与长期记忆,输出有据可查的研究结论。",instruction:"你是一名严谨的研究员。面对研究问题时,先拆解关键子问题,再通过联网检索收集多个一手、可信的来源,交叉验证后再下结论。结论需注明出处与不确定性,区分事实与推断,避免以偏概全。",subagents:{}},"research-team":{name:"多智能体研究团队",description:"由检索员、分析员、撰写员协作的研究编排,分工完成端到端调研报告。",instruction:"你是一支研究团队的总协调者。负责拆解用户的研究任务,将检索、分析、撰写分别委派给对应的子 Agent,汇总各子 Agent 的产出,把控整体质量,最终输出结构清晰、有据可查的研究报告。",subagents:{0:{name:"检索员",description:"联网搜集与课题相关的一手资料与数据。",instruction:"你是研究团队中的检索员。根据课题联网检索多个可信来源,整理出关键事实、数据与原文出处,交付给分析员,不做主观结论。"},1:{name:"分析员",description:"对检索到的材料做交叉验证与归纳分析。",instruction:"你是研究团队中的分析员。对检索员提供的材料做交叉验证、归纳与对比,提炼洞见、识别矛盾与不确定性,形成结构化的分析要点。"},2:{name:"撰写员",description:"将分析结论组织为结构清晰、引用规范的报告。",instruction:"你是研究团队中的撰写员。把分析员的要点组织成结构清晰、语言通顺、引用规范的研究报告,确保每个结论都能追溯到来源。"}}}},tags:{tools:"工具",memory:"记忆",knowledgeBase:"知识库",tracing:"观测",subagents:"子 Agent {{count}}"},gallery:{title:"从模板新建",subtitle:"选择一个预制 Agent 模板,按需微调后即可创建。"},detail:{back:"返回模板列表",name:"名称",systemPrompt:"系统提示词",model:"模型",tools:"工具",memory:"记忆",knowledgeBase:"知识库",tracing:"观测追踪",subagents:"子 Agent({{count}})",create:"使用此模板创建",shortTermMemory:"短期",longTermMemory:"长期"}},Lce={common:xce,yaml:wce,validation:Oce,defaults:Sce,helpers:kce,intelligentDeployment:Ece,codePackage:Cce,buildCanvas:Tce,intelligent:Ace,projectLibrary:_ce,modePicker:Nce,promptEditor:jce,skills:Rce,workflow:Ice,workbench:Pce,traditional:Dce,template:Mce},pMe=Object.freeze(Object.defineProperty({__proto__:null,buildCanvas:Tce,codePackage:Cce,common:xce,default:Lce,defaults:Sce,helpers:kce,intelligent:Ace,intelligentDeployment:Ece,modePicker:Nce,projectLibrary:_ce,promptEditor:jce,skills:Rce,template:Mce,traditional:Dce,validation:Oce,workbench:Pce,workflow:Ice,yaml:wce},Symbol.toStringTag,{value:"Module"})),$ce={backToList:"返回定时任务列表",cancel:"取消",cancelQueue:"取消排队",cancelQueueFirst:"请先取消排队",cancelling:"取消中…",closeDrawer:"关闭抽屉",collapse:"收起",connectingRuntime:"正在连接 Runtime…",createScheduledTask:"创建定时任务",createTask:"创建任务",delete:"删除",deleteTask:"删除任务",edit:"编辑",enable:"启用",expand:"展开",pause:"暂停",refresh:"刷新",refreshHistory:"刷新执行历史",rerun:"重新执行",retry:"重试",runNow:"立即执行",saveChanges:"保存更改",saving:"保存中…",stop:"终止执行",stopRun:"终止本次执行",stopRunFirst:"请先终止当前执行",stopping:"终止中…",viewDetails:"查看详情"},Fce={cancelDescription:"本次 Session 将被取消,后续计划不会暂停。",cancelTitle:"终止本次执行?",deleteDescription:"“{{name}}”及其全部执行历史将被永久删除。",deleteTitle:"删除定时任务?"},Bce={configuration:"任务配置",nextRun:"下次执行",pageLabel:"定时任务详情",region:"地域",runtime:"运行时",status:"任务状态"},Uce={createTitle:"创建定时任务",description:"每次触发都会为 Runtime Agent 创建独立 Session。",editTitle:"编辑定时任务"},Qce={minutesSeconds:"{{minutes}} 分 {{seconds}} 秒",seconds:"{{count}} 秒"},zce={cronExpression:"Cron 表达式",cronHelp:"依次填写分钟、小时、日期、月份、星期。",dailyTime:"每天执行时间",enableAfterCreate:"创建后启用",enableHelp:"启用后会从下一个计划时间开始执行。",name:"任务名称",namePlaceholder:"例如:每日生成运营摘要",noRuntime:"暂无可用 Runtime",prompt:"执行文本",promptPlaceholder:"输入每次执行时发送给 Agent 的固定文本",runAt:"执行时间",runtimeAgent:"运行时智能体",runtimeHelp:"任务始终跟随该 Runtime 当前生效版本。",runtimePlaceholder:"选择 Runtime Agent",schedule:"执行计划",scheduleType:"执行计划类型",timezone:"时区",weekday:"星期"},Vce={all:"全部"},Hce={description:"每次运行均使用独立 Session,结果与错误会永久保留。",duration:"耗时 {{duration}}",emptyDescription:"任务触发或立即执行后,记录会显示在这里。",emptyTitle:"暂无执行记录",errorDetails:"错误详情",finalAnswer:"最终回答",loadFailed:"无法加载执行历史",loadFailedDescription:"请检查 Studio 服务后重试。",session:"会话",title:"执行历史"},qce={cancelRequested:"已提交终止请求。",created:"任务已创建。",deleted:"任务及其执行历史已删除。",enabled:"任务已启用。",paused:"任务已暂停。",queued:"任务已排队,将在一分钟内开始执行。",requeued:"任务已重新排队,将在一分钟内开始执行。",updated:"任务已更新。"},Wce={filterLabel:"定时任务状态筛选",listLabel:"定时任务列表",loadFailed:"无法加载定时任务",loadFailedDescription:"请检查 Studio 服务后重试。",title:"定时任务"},Gce={cron:"Cron {{cron}}{{zone}}",daily:"每天 {{time}}{{zone}}",once:"一次 · {{date}}{{zone}}",weekly:"{{weekday}} {{time}}{{zone}}"},Kce={daily:"每天",once:"一次性",weekly:"每周"},Xce={cancelled:"已取消",enabled:"已启用",failed:"失败",notRun:"尚未执行",paused:"已暂停",pending:"准备中",queued:"已排队",retrying:"自动重试中",running:"执行中",skipped:"已跳过",success:"成功"},Yce={cronFields:"Cron 表达式需要包含 5 个字段,例如 0 9 * * *。",nameRequired:"请输入任务名称。",promptRequired:"请输入每次执行时发送给 Agent 的文本。",runtimeAppMissing:"Runtime Agent 未返回可调用的 appName,请确认 Runtime 已就绪且版本兼容。",runtimeRequired:"请选择可用的 Runtime Agent。",timeRequired:"请选择执行时间。"},Zce={friday:"周五",monday:"周一",saturday:"周六",sunday:"周日",thursday:"周四",tuesday:"周二",wednesday:"周三"},mMe={actions:$ce,confirm:Fce,detail:Bce,drawer:Uce,duration:Qce,fields:zce,filters:Vce,history:Hce,notices:qce,page:Wce,schedule:Gce,scheduleTypes:Kce,status:Xce,validation:Yce,weekdays:Zce},gMe=Object.freeze(Object.defineProperty({__proto__:null,actions:$ce,confirm:Fce,default:mMe,detail:Bce,drawer:Uce,duration:Qce,fields:zce,filters:Vce,history:Hce,notices:qce,page:Wce,schedule:Gce,scheduleTypes:Kce,status:Xce,validation:Yce,weekdays:Zce},Symbol.toStringTag,{value:"Module"})),Jce="问题反馈",eue="问题描述",tue="常见问题",nue="取消",iue="完成",rue="提交反馈",sue="正在上报…",aue={title:"上报成功,感谢您的反馈",description:"AgentKit 团队会尽快查看您提交的问题。"},oue={close:"关闭问题反馈",intro:"请选择遇到的问题,也可以补充具体表现。",privacy:"您的对话数据将会上报到 AgentKit 团队,请注意隐私保护。",descriptionPlaceholder:"请描述问题发生时的表现(选填)",issues:{slow:"执行速度慢",crash:"运行崩溃",incorrect:"结果不准确",tool_error:"工具调用失败",other:"其他问题"}},lue={description:"告诉我们您在使用 AgentKit Studio 时遇到的问题。",module:"所属模块",modules:{conversation:"对话",agents:"智能体",applications:"自动化",search:"搜索",other:"其他"},commonIssuesMultiple:"常见问题(可多选)",issueTypes:"问题类型",issues:{page_slow:"页面加载慢",feature_unavailable:"功能无法使用",display_error:"页面显示异常",no_response:"操作无响应",other:"其他问题"},descriptionPlaceholder:"请描述问题发生时的页面、操作和表现",quickAdd:"快捷补充",suggestionsLabel:"问题描述推荐",suggestions:{noResponse:"点击后没有反应",loading:"页面一直处于加载状态",incomplete:"部分内容显示不完整",error:"操作后出现错误提示"},privacy:"您的数据将会上报到 AgentKit 团队,请注意隐私保护。"},bMe={title:Jce,descriptionLabel:eue,commonIssues:tue,cancel:nue,done:iue,submit:rue,submitting:sue,success:aue,dialog:oue,page:lue},yMe=Object.freeze(Object.defineProperty({__proto__:null,cancel:nue,commonIssues:tue,default:bMe,descriptionLabel:eue,dialog:oue,done:iue,page:lue,submit:rue,submitting:sue,success:aue,title:Jce},Symbol.toStringTag,{value:"Module"})),cue={back:"返回",close:"关闭"},uue={title:"优化迁移项目",closeAria:"关闭优化窗口"},due={title:"已迁移项目",description:"管理迁移后的源码版本,也可以选择任一版本继续优化。",libraryTitle:"项目与版本",libraryDescription:"查看、下载、部署或对比源码版本,也可以基于任一版本继续优化。",emptyTitle:"还没有已迁移的项目",emptyDescription:"迁移完成后,源码会自动保存在这里。"},fue={langchain:"LangChain",langgraph:"LangGraph",adk:"Google ADK",strands:"Strands",agentcore:"AgentCore",dify:"Dify",any:"Any(通用迁移)"},hue={awaitingUpload:"待上传",analyzing:"分析中",needsInput:"待补充",analysisReady:"待确认",migrating:"迁移中",validating:"校验中",packaging:"打包中",succeeded:"已完成",succeededWithWarnings:"已完成,有提示",partial:"部分完成",failed:"失败",cancelled:"已终止",expired:"已过期"},pue={partialReady:"迁移产物已生成,但交付不完整,请查看迁移提示。",readyWithWarnings:"迁移产物已生成,请查看迁移提示。",ready:"迁移产物已生成。"},mue={passed:"产物校验通过",failed:"产物校验未通过",degraded:"产物校验未完成"},gue={session:"创建迁移环境",upload:"上传项目",analysis:"分析项目"},bue={agentNameRequired:"请输入 Agent 名称",agentNameInvalid:"Agent 名称必须为 1-63 位,只能包含小写字母、数字和连字符,且必须以字母或数字开头和结尾"},yue={seconds:"{{seconds}} 秒",minutesSeconds:"{{minutes}} 分 {{seconds}} 秒"},vue={savedUnaffected:"已保存项目不受影响",savingUnaffected:"源码正在保存,完成后不受环境期限影响",activeDetail:"到期后任务记录和临时产物将无法访问",oneHour:"临时迁移环境保留 1 小时",ended:"临时迁移环境已结束",savedAvailable:"已保存项目仍可查看、下载、部署或优化",unavailable:"任务记录和临时产物已无法访问",countdown:"临时迁移环境将在 {{minutes}} 分 {{seconds}} 秒后结束",expiredSavedMessage:"临时迁移环境已结束,已保存项目不受影响。",expiredMessage:"临时迁移环境已结束,任务记录和临时产物无法继续访问。"},xue={recommended:"建议迁移方式",scope:"迁移范围",excluded:"不在本次范围",viewEvidence:"查看分析证据",viewAssumptions:"查看关键假设",viewSourceEvidence:"查看源码证据"},wue={ariaLabel:"Codex 执行动态",title:"Codex 执行动态",startingAnalysis:"Codex 正在开始分析…",startingMigration:"Codex 正在开始迁移…",loadError:"暂时无法读取 Codex 执行动态,不影响当前任务。"},Oue={title:"迁移产物",fileTooLarge:"该文件超过 2 MiB,请下载完整产物后查看。",unsupportedPreview:"该文件不支持在线预览,请下载完整产物后查看。",filesAria:"迁移产物文件",searchAria:"搜索产物文件",searchPlaceholder:"搜索文件",limit:"仅展示前 {{count}} 项,请搜索具体文件。",noSelection:"未选择文件",noPreview:"暂无可预览文件。",loadingFile:"正在读取产物文件…",startupFile:"启动文件",fileCountLabel:"文件数",saved:"源码已保存,可继续查看、下载、部署或优化。",saving:"产物已生成,正在保存源码版本。",deployReady:"产物可预览、下载和部署,正在等待源码保存状态。",deployUnavailable:"产物可预览和下载,但当前交付状态不支持部署。",viewProjects:"查看已迁移项目",downloading:"下载中…",downloadZip:"下载 ZIP",deployTitle:"部署迁移产物",deployUnavailableTitle:"当前交付状态不支持部署",deployRuntime:"部署到 Runtime",fileCount:"{{count}} 个文件",startup:"启动文件 {{module}}",loading:"正在读取迁移产物…"},Sue={retiring:"即将下线",currentDefault:"当前默认模型",loadError:"加载模型列表失败",label:"模型",placeholder:"选择模型"},kue={zipOnly:"请选择 .zip 格式的本地项目文件。",invalidName:"ZIP 文件名无效,请重命名后重新选择。",tooLarge:"项目 ZIP 不能超过 {{size}}。",empty:"项目 ZIP 不能为空。",removeAria:"移除项目 ZIP",reselectPrompt:"重新选择项目 ZIP",selectPrompt:"选择或拖入本地项目 ZIP",reselect:"重新选择",selectZip:"选择 ZIP",continue:"继续上传",start:"开始迁移",inputAria:"选择本地项目 ZIP",retention:"临时迁移环境从创建完成起保留 1 小时;保存成功的源码版本不受影响。"},Eue={requiredPlaceholder:"请输入 {{key}}",optionalPlaceholder:"可选:{{key}}",notReady:"迁移产物尚未准备完成。",back:"返回迁移结果"},Cue={backToAddAgent:"返回添加 Agent",title:"从存量迁移",newMigration:"新建迁移",recent:"最近迁移",sessionsAria:"迁移会话",loadingSessions:"正在读取迁移会话…",noSessions:"暂无迁移会话",heading:"迁移存量 Agent 项目",intro:"上传本地项目 ZIP,Codex 将先进行只读分析,再由你确认迁移方式。"},Tue={stop:"终止迁移",stopping:"正在终止…",reload:"重新读取",refreshStatus:"刷新状态"},Aue={unavailable:"迁移能力暂不可用",defaultReason:"Dev Sandbox 暂不可用,请联系管理员检查配置。"},_ue={requestZip:"请提供本地项目 ZIP。上传后我会识别框架、入口和迁移边界,并在执行实际迁移前请你确认迁移方式。",zipHint:"仅支持本地 ZIP,最大 {{size}};迁移环境从创建起保留 1 小时。",creatingSandbox:"正在创建 Dev Sandbox",initializing:"正在初始化迁移工作目录,并检查 AgentKit CLI、Codex 和迁移能力。环境就绪后将自动上传项目。",elapsed:"已等待 {{duration}}",uploadThenAnalyze:"ZIP 上传完成后将自动开始只读分析。",analyzing:"Codex 正在识别框架、入口和迁移边界,不会执行实际迁移。",migrationLocked:"迁移执行中不能修改附件或迁移方式。你可以等待当前任务结束,或主动终止。",analysisPaused:"只读分析已暂停。请仅回答下面列出的问题,提交后会在同一迁移环境中重新分析,不会开始实际迁移。",analysisComplete:"只读分析已完成。请检查建议,并确认最终迁移方式。",awaitingUpload:"迁移环境已创建,请重新选择本地 ZIP 继续上传。",expiredTitle:"迁移环境已过期",expiredDescription:"迁移内容和产物已无法预览、下载或部署。如已完成 Runtime 部署,可返回智能体页面继续使用。",unsupportedTitle:"当前 ZIP 暂时无法迁移",unsupportedHint:"请按提示整理项目后,新建迁移并重新上传。",failedTitle:"迁移未完成",cancelled:"当前迁移已终止。你可以新建迁移并重新上传项目。"},Nue={ariaLabel:"补充项目分析信息",title:"补充分析所需信息",description:"附件保持锁定,提交后仅继续只读分析",submitting:"正在继续分析…",submit:"提交并继续分析"},jue={ariaLabel:"确认迁移方式",title:"确认迁移方式",description:"确认后才会执行实际迁移",framework:"迁移方式",frameworkPlaceholder:"选择迁移方式",agentName:"Agent 名称",entry:"项目入口",entryPlaceholder:"选择项目入口",entryExample:"例如 agent.py:agent",consent:"点击“确认并开始迁移”即确认上述迁移范围、排除项和关键假设。",starting:"正在启动迁移…",start:"确认并开始迁移"},Rue={closeAria:"关闭错误提示",loadFailed:"无法读取迁移数据,请重试。",refreshFailed:"无法刷新迁移状态,请重试。"},Iue={title:"终止当前迁移?",description:"终止后,当前分析或迁移进程将停止,已执行的步骤不会继续。"},vMe={common:cue,optimization:uue,projects:due,framework:fue,state:hue,task:pue,verification:mue,transfer:gue,validation:bue,duration:yue,expiry:vue,analysis:xue,activity:wue,artifact:Oue,model:Sue,upload:kue,deployment:Eue,workspace:Cue,actions:Tue,capability:Aue,conversation:_ue,questions:Nue,confirmation:jue,errors:Rue,stopDialog:Iue},xMe=Object.freeze(Object.defineProperty({__proto__:null,actions:Tue,activity:wue,analysis:xue,artifact:Oue,capability:Aue,common:cue,confirmation:jue,conversation:_ue,default:vMe,deployment:Eue,duration:yue,errors:Rue,expiry:vue,framework:fue,model:Sue,optimization:uue,projects:due,questions:Nue,state:hue,stopDialog:Iue,task:pue,transfer:gue,upload:kue,validation:bue,verification:mue,workspace:Cue},Symbol.toStringTag,{value:"Module"})),Pue={loading:"加载中…",searchLabel:"搜索{{label}}",searchPlaceholder:"搜索{{label}}",retry:"重试",noMatches:"没有匹配项",noOptions:"暂无可选项",selection:"{{label}}:{{value}}"},Due={badge:"焕然一新",view:"查看新特性",title:"本次更新",defaultNotes:{multiRegion:"多地域智能体:并行加载北京与上海 Runtime,列表下滑即可继续加载。",switchAgent:"会话内切换:在输入框旁选择智能体,并直接开启一段新会话。",visualCanvas:"可视化执行画布:通过横向画布查看多智能体结构,并支持全屏浏览。"}},Mue={label:"新会话模式",agent:"智能体",skill:"技能定制",video:"视频创作"},Lue={select:"选择新会话模式",agent:{label:"Agent",description:"与当前选择的 Agent 对话"},builtin:{label:"内置智能体",description:"使用平台提供的智能体"},codex:{label:"Codex 智能体",description:"在沙箱中执行任务"},deepseekHarness:{label:"DeepSeek Harness",description:"打开 DeepSeek Harness 工作区"},arkClaw:"ArkClaw",hermes:"Hermes 智能体",checking:"正在检查配置",notConfigured:"管理员未配置",unavailable:"暂不可用"},$ue={select:"选择智能体",typesLabel:"智能体类型",listLabel:"{{type}}列表",types:{agent:"智能体",general:"通用智能体",codex:"Codex 智能体",deepseekHarness:"DeepSeek Harness",openclaw:"OpenClaw 智能体",hermes:"Hermes 智能体"},loading:"正在加载智能体",reload:"重新加载",empty:"暂无{{type}}",emptyLocal:"暂无本地智能体",emptyGeneral:"暂无通用智能体",createHint:"请前往智能体页创建",localHint:"请检查当前 Studio 启动目录",waking:"正在唤醒",opening:"正在打开",connecting:"正在连接",loadingMore:"加载中",loadMore:"加载更多",runtimeTimeout:"加载智能体超时(15 秒),请检查网络或 Runtime 服务后重试",loadGeneral:"加载通用智能体",loadType:"加载 {{type}}",connectGeneral:"连接通用智能体",openLocal:"打开本地智能体",openType:"打开 {{type}}",wakingHint:"正在唤醒智能体,可能需要一些时间。"},Fue={spaceAria:"技能空间",configuration:"技能定制配置",actions:{create:"技能生成",optimize:"技能优化"},selectAction:"选择技能定制方式",actionList:"技能定制方式",style:"风格",selectStyle:"选择风格",model:"模型",selectModel:"选择模型",styles:{concise:"简洁实用",strict:"严谨稳健",tutorial:"教程友好",automation:"自动化优先"},modelLoadFailed:"模型配置加载失败",spaceLoadFailed:"Skill Space 加载失败",skillLoadFailed:"Skill 加载失败",unnamedSpace:"未命名 Skill Space",space:"技能空间",select:"选择 Skill",selectAria:"选择 Skill:{{skill}}",loadingSpaces:"正在加载 Skill Space",reload:"重新加载",emptySpaces:"暂无 Skill Space",skillList:"{{space}} Skill 列表",loadingSkills:"正在加载 Skill",emptySkills:"暂无 Skill"},Bue={modes:{auto:"自动识别",text_to_video:"文生视频",reference_to_video:"参考素材生视频",video_editing:"视频编辑",video_extension:"视频续写",first_last_frame:"首尾帧生成"},taskNames:{auto:"视频生成",text_to_video:"文生视频",reference_to_video:"参考素材生视频",video_editing:"视频编辑",video_extension:"视频续写",first_last_frame:"首尾帧生成"},controls:{label:"视频创作配置",aspectRatio:"比例",selectAspectRatio:"选择比例",resolution:"清晰度",selectResolution:"选择清晰度",duration:"时长",durationShort:"{{count}} 秒",durationAria:"视频时长:{{count}} 秒",lastFrame:"尾帧",lastFrameHelper:"添加视频结束画面",assistImage:"辅助图片",referenceImage:"参考图片",assistImageHelper:"用于补充画面参考",imageHelper:"支持常见图片格式",referenceVideo:"参考视频",videoHelper:"支持常见视频格式",optional:"可选",replace:"更换",add:"添加",upload:"上传{{label}}",replaceFile:"更换{{label}}:{{name}}",removeFile:"移除{{label}} {{name}}",storageUnavailable:"管理员未配置持久化存储",loadingEnhancer:"正在加载增强模型",enhancerHint:"使用 {{model}} 模型进行意图识别和提示词增强",enhancerUnavailable:"增强模型不可用"},task:{title:"视频生成任务",closeAria:"关闭视频生成任务弹窗",progressAria:"视频生成进度",optimizedPrompt:"优化后的提示词",processingAria:"{{task}}处理进度",waitingAria:"{{status}},已等待{{elapsed}}",elapsed:"已等待 {{elapsed}}",previewAria:"生成结果预览",close:"关闭",download:"下载视频",retryOptimization:"重试提示词优化",retryGeneration:"重试视频生成",providerQueued:"等待模型调度",providerRunning:"模型生成中",providerSubmitting:"正在提交任务",queuedHint:"任务已提交,模型开始处理后状态会自动更新",runningHint:"这可能持续数分钟,完成后将在这里显示视频预览",backgroundHint:"可以关闭弹窗,任务会继续在后台运行",successHint:"视频已生成,可预览或下载",activationHint:"请先在模型控制台开通服务,再重试生成",retryHint:"修正问题后可重试当前步骤",steps:{optimizationFailed:"提示词优化失败",optimizationDone:"提示词优化完成",optimizationActive:"提示词优化中",generationDone:"{{task}}已完成",generationFailed:"{{task}}失败",generationQueued:"{{task}}排队中",generationRunning:"{{task}}生成中",generationActive:"{{task}}进行中",generationPending:"等待视频生成",generationComplete:"视频生成完成"},elapsedHours:"{{hours}}小时{{minutes}}分",elapsedMinutes:"{{minutes}}分{{seconds}}秒",elapsedSeconds:"{{seconds}}秒"}},Uue={compactSelect:Pue,featureNotice:Due,workspace:Mue,mode:Lue,agentPicker:$ue,skill:Fue,video:Bue},wMe=Object.freeze(Object.defineProperty({__proto__:null,agentPicker:$ue,compactSelect:Pue,default:Uue,featureNotice:Due,mode:Lue,skill:Fue,video:Bue,workspace:Mue},Symbol.toStringTag,{value:"Module"})),Que={cancel:"取消",close:"关闭",retry:"重试",tryAgain:"重新尝试",closeDialog:"关闭{{title}}",agentFallback:"{{agent}} 智能体",unknownSource:"未知来源"},zue={terminalTitle:"终端",browserTitle:"沙箱浏览器",terminalSubtitle:"连接当前 AgentKit Session 的交互式终端",browserSubtitle:"在当前 AgentKit Session 中查看与操作浏览器",connecting:"正在连接…",connected:"已连接",notConnected:"尚未连接",opening:"正在打开 {{title}}",connectingSession:"工具正在连接当前 AgentKit Session。",openFailed:"{{title}} 打开失败"},Vue={title:"恢复 Codex 对话",subtitle:"选择当前 Sandbox Session 中最近更新的 Thread",loading:"正在读取历史对话",loadFailed:"历史对话读取失败",empty:"暂无可恢复的对话"},Hue={title:"Codex 权限",subtitle:"设置会保存到当前 Sandbox Session,并同步到其中的所有 Thread",sandboxMode:"沙箱模式",approvalPolicy:"审批策略",approvalMethod:"审批方式",networkAccess:"允许网络访问",networkAccessHelp:"控制 workspace-write 与只读模式中的外部网络访问。",fullAccessWarning:"完全访问会关闭文件系统与网络隔离,请只在可信任务中使用。",save:"保存权限",sandboxChoices:{readOnly:{label:"只读",detail:"允许读取文件,不允许写入工作空间。"},workspaceWrite:{label:"工作区写入",detail:"允许在当前工作空间内读取与修改文件。"},fullAccess:{label:"完全访问",detail:"不启用沙箱隔离,适合明确可信的任务。"}},approvalChoices:{untrusted:{label:"仅不可信命令",detail:"只对 Codex 判断为不可信的操作发起审批。"},onRequest:{label:"按需审批",detail:"Codex 可在必要时请求你确认命令或文件修改。"},never:{label:"不审批",detail:"Codex 不会暂停并请求人工批准。"}},reviewerChoices:{user:{label:"由我审批",detail:"审批请求会显示在 Studio 中,由你决定。"},autoReview:{label:"自动审查",detail:"使用 Codex 自动审查流程处理审批请求。"}}},que={title:"工作空间",subtitle:"选择当前 Codex Thread 执行命令与修改文件的目录",absolutePath:"绝对路径",browse:"浏览",parent:"上一级",empty:"当前目录没有子目录",locked:"当前对话已经开始,工作空间已锁定。新建 Sandbox 会话后可重新选择。",useDirectory:"使用此目录"},Wue={fileTitle:"允许修改文件?",commandTitle:"允许执行命令?",subtitle:"Codex 正在等待你的决定",workingDirectory:"执行目录",decline:"拒绝",acceptOnce:"仅本次允许",acceptSession:"本会话允许"},Gue={availableSkills:"可用 Skills",selectModel:"选择模型",commands:"Codex 快捷命令",currentModel:"当前:{{model}}",loadingSkills:"正在发现当前工作区的 Skills…",loadingModels:"正在读取模型…",noSkillMatches:"当前工作区没有匹配的 Skill",noModelMatches:"没有匹配模型,也可以直接输入模型 ID",noCommandMatches:"没有匹配的快捷命令",skillFallback:"加载并执行该 Skill",add:"添加",uploadImage:"上传图片",uploadDocument:"上传文档或 PDF",uploadVideo:"上传视频",openTerminal:"进入终端",viewBrowser:"查看浏览器",permissions:"Codex 权限",workspaceLocked:"对话已开始,工作空间已锁定",selectWorkspace:"选择工作空间",workspace:"Codex 工作空间",endpointCopied:"Endpoint 已复制",copyEndpoint:"复制 Sandbox Endpoint",continuePlaceholder:"继续说明你想实现或调整的内容",messagePlaceholder:"向 AgentKit 沙箱发送消息,输入 / 查看命令,输入 $ 调用 Skill…",stop:"停止生成",send:"发送"},Kue={defaultName:"我的智能体",namedDefault:"我的 {{agent}}",creatingTitle:"正在创建 {{agent}} 智能体",failedTitle:"启动失败",createTitle:"创建 {{agent}} 智能体",fallbackError:"AgentKit 沙箱初始化失败,请稍后重新尝试。",creatingDescription:"正在创建并等待 {{agent}} 智能体就绪,这通常需要半分钟",name:"智能体名称",storageSize:"存储大小",storageHelp:"数据将持久化保存,可设置 {{min}}–{{max}} GiB。",persistent:"持久化",persistenceUnsupported:"当前环境不支持快照持久化",persistentHelp:"保留智能体数据,后续可继续使用。",temporaryHelp:"智能体将在 8 小时后清空",cancelCreation:"取消创建",confirm:"确认创建",retry:"重新尝试"},Xue={activeAria:"Codex 智能体会话已开启",openAria:"开启 Codex 智能体会话",active:"Codex 智能体会话中",entry:"灵光一现",exit:"退出当前智能体",expired:"已到期",remainingHours:"剩余 {{hours}} 小时 {{minutes}} 分钟",remainingMinutes:"剩余 {{minutes}} 分钟",expiryWarning:"远端开发环境最长保留 8 小时,将于 {{expiry}} 到期({{remaining}});到期后清除对话和文件。",usingAgent:"当前您在使用 {{agent}} 智能体",activityAria:"Sandbox 操作记录",activity:"操作记录",tokenUsageAria:"Codex Token 用量",tokens:"{{label}}:{{value}} tokens",tokenLabels:{total:"总计",input:"输入",cachedInput:"缓存输入",output:"输出",reasoningOutput:"推理输出"}},Yue={back:"返回智能体列表",subtitle:"{{agent}} 智能体详情",type:"智能体类型",status:"状态",createdBy:"创建人",snapshotStatus:"快照状态",toolType:"工具类型",createdAt:"创建时间",snapshotReason:"快照原因",expiresAt:"过期时间",snapshotId:"快照 ID",sessionId:"会话 ID",sourceSessionId:"来源 Session ID",delete:"删除智能体",waking:"唤醒中…",opening:"打开中…",wake:"唤醒智能体",open:"打开智能体",deleteTitle:"删除智能体?",deleteDescription:"将删除“{{name}}”及其保存的数据,此操作无法撤销。",deleting:"删除中…",confirmDelete:"确认删除",sleepingHint:"该智能体已休眠,进入时需要唤醒,可能需要一些时间。",wakingHint:"正在唤醒智能体,可能需要一些时间。",agentId:"智能体 ID"},Zue={back:"返回智能体列表",createdBy:"创建人 {{creator}}",ariaLabel:"智能体工作区",main:"主界面",terminal:"终端",mainTitle:"{{agent}} 主界面",openingTerminal:"正在打开终端…",terminalTitle:"{{agent}} 终端"},Jue={prompt:`使用 AgentKit Studio Plugin 端云接力当前会话、项目和任务。请直接执行,不要让我手动打开终端。 +- 保持礼貌、专业的语气。`},Lce={requestFailed:"请求失败 ({{status}}){{detail}}",a2aSpaces:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 AgentKit 智能体中心",loginRequired:"请先登录以访问 AgentKit 智能体中心"},vikingKnowledge:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 VikingDB 知识库",loginRequired:"请先登录以访问 VikingDB 知识库"},vikingMemory:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 VikingDB 记忆库",loginRequired:"请先登录以访问 VikingDB 记忆库"},mcpGateway:{missingHttpTool:"请返回“添加 MCP 工具”并添加至少一个 HTTP MCP 服务;MCP 稳定性治理不支持 stdio 服务。",missingUrl:"已添加的 HTTP MCP 工具缺少有效服务地址,请返回“添加 MCP 工具”补充后再发布。"},customModel:{fallbackName:"自定义模型",apiKeyLabel:"{{name}} 模型 API Key",fallbackApiKeyLabel:"{{name}} 的备用模型 {{model}} API Key"},deploymentEnv:{serverInjected:"由服务端注入",selectedApiKeyPlaceholder:"由所选 API Key 注入",mcpInjectedComment:"由已添加的 MCP 工具注入",restoredPlaceholder:"由 Studio 服务端安全恢复",generatedMcpPlaceholder:"由已添加的 HTTP MCP 工具自动生成",restoredHelp:"更新时由 Studio 服务端合并 MCP 地址与认证,不向浏览器返回旧密钥。",mergedMcpHelp:"Studio 服务端自动合并 MCP 地址与可选认证,不向浏览器返回旧密钥。",listSeparator:"、",requirementHint:"优化项“{{labels}}”依赖此配置。",requiredBy:"优化项“{{labels}}”依赖此配置,请填写 {{key}}。",required:"请填写 {{label}}({{key}})。",invalidJson:"JSON 格式不正确"},drafts:{unsupportedVersion:"本机草稿版本暂不受支持,请升级 Studio 后重试。",invalidFormat:"本机草稿数据格式无效。",readFailed:"无法读取本机草稿,浏览器中的草稿数据可能已损坏。",quotaExceeded:"浏览器存储空间不足,草稿未保存。请删除不需要的草稿或清理此站点的浏览器存储后重试。",writeRejected:"浏览器拒绝保存草稿,请检查站点存储权限后重试。"},skills:{searchFailed:"搜索失败 ({{status}})",downloadFailed:"下载技能失败 ({{status}})",agentKitRequestFailed:"AgentKit Skills 请求失败",missingManifest:"{{location}} 缺少 SKILL.md",invalidParentPath:"{{location}} 包含非法路径(..):{{path}}",invalidPath:"{{location}} 包含非法路径:{{path}}",localDescription:"本地 Skill",folderSource:"文件夹",noManifest:"{{location}} 中未发现 SKILL.md"},zip:{invalid:"无效的 zip:找不到 EOCD",tooManyFiles:"zip 文件数不能超过 {{count}} 个",tooLarge:"zip 解压后的内容过大"}},$ce={back:"返回开发会话",runtimeName:"Runtime 名称",runtimeNameExists:"Runtime 名称已存在,请更换后重试",checkingRuntimeName:"正在检查 Runtime 名称",verifiedSource:"已验证源码",deployableSource:"可部署源码",verifiedByCodex:"已通过 Codex 云端验证",entryPoint:"入口",files:"文件",artifact:"构建产物",validationReport:"验证报告",verifiedHint:"源码由服务端从已验证交付物物化,浏览器文件不能替换。",unverifiedHint:"源码已由服务端安全物化,部署前请确认 Runtime 配置。",env:{requiredPlaceholder:"请输入 {{key}}",optionalPlaceholder:"可选:{{key}}"}},Fce={name:"代码包",back:"返回创建方式",reading:"正在读取代码包",readingEllipsis:"正在读取代码包…",uploadFirst:"请先上传代码包",uploadAriaLabel:"代码包上传",upload:"上传代码包",reupload:"重新上传代码包",uploadPrompt:"请上传代码包",filesRecognized:"已识别 {{count}} 个文件,点击区域可重新上传",dropHint:"点击或拖拽上传,支持 .zip 格式,最大 50 MB;可使用 app.py,或由 agentkit.yaml 声明入口",viewFiles:"查看文件",chooseFile:"选择代码包",errors:{invalidFormat:"请选择 .zip 格式的代码包。",tooLarge:"代码包不能超过 50 MB。",invalidPath:"压缩包包含非法路径:{{name}}",empty:"压缩包中没有可部署的文件。",tooManyFiles:"代码包文件数不能超过 {{count}} 个。",duplicateFile:"代码包包含重复文件:{{path}}",manifestParse:"agentkit.yaml 无法解析:{{detail}}",manifestRoot:"agentkit.yaml 根节点必须是对象。",manifestCommon:"agentkit.yaml 的 common 必须是对象。",entryPointType:"agentkit.yaml 的 common.entry_point 必须是文件路径。",entryPointInvalid:"agentkit.yaml 的 common.entry_point 不是有效文件路径。",entryPointMissing:"代码包中不存在 agentkit.yaml 声明的启动入口:{{entryPoint}}",defaultEntryPointMissing:"代码包根目录必须包含 app.py,或在 agentkit.yaml 的 common.entry_point 中声明已有入口。"}},Bce={label:"Agent 执行画布",readOnlyLabel:"只读 Agent 执行画布",minimapLabel:"执行流程缩略图",controls:{ariaLabel:"执行流程控制",zoomIn:"放大",zoomOut:"缩小",fitView:"适应视图"},rootAgent:"主 Agent",unnamedStep:"未命名步骤",terminals:{input:"用户请求",output:"最终回复"},edges:{then:"然后",continueLoop:"继续循环",call:"调用"},patterns:{llm:{label:"智能体",description:"理解任务并直接完成一个具体工作"},sequential:{label:"分步协作",description:"内部步骤按照顺序依次执行"},parallel:{label:"同时处理",description:"内部步骤同时工作,完成后统一汇总"},loop:{label:"循环执行",description:"重复执行内部步骤,直到满足停止条件"},a2a:{label:"远程智能体",description:"调用已经存在的远程 Agent"}},actions:{insertHere:"在这里插入步骤",deleteNamed:"删除 {{name}}",deleteNode:"删除节点",addSubagent:"添加子 Agent",addParallelStep:"添加一个同时处理的步骤",addLoopStep:"添加循环步骤",addNextStep:"添加下一个步骤",addFirst:"添加到最前",addLast:"添加到最后"}},Uce={title:"智能模式",subtitle:"描述目标后,沙箱中的 Codex 会判断你的意图,完成构建、调试和临时云端验证。",model:{label:"模型",placeholder:"选择模型",retiring:"即将下线",currentConfiguration:"当前配置",loadError:"加载模型列表失败"},availability:{checking:"正在检查智能开发能力…",unavailable:"当前无法使用智能模式,请返回后重试。"},goal:{title:"从目标开始",continueTitle:"继续优化项目",hint:"只需说明 Agent 要解决的问题;如有影响结果的关键信息,会在开始前向你确认。",continueHint:"说明这次要调整的内容,完成后会保存为新版本。",basedOn:"基于",clearSelection:"取消选择",label:"目标描述",optimizationLabel:"优化目标",placeholder:"例如:创建一个能读取销售数据、生成周报并校验输出格式的 Agent",optimizationPlaceholder:"例如:增加数据来源标注,并在信息不足时先向用户确认"},actions:{preparing:"准备中…",build:"开始构建",optimize:"开始优化"},preparation:{accepted:"目标已收到,马上开始实现",preparing:"正在创建任务环境…",starting:"环境已就绪,正在启动 Codex…",next:"接下来会先梳理目标和实现方式,再编写、运行和验证 Agent。"}},Qce={title:"已保存项目",description:"选择已有版本继续优化,或查看、下载和部署源码。",refresh:"刷新项目列表",checkingStorage:"正在检查项目存储…",unavailableTitle:"暂时无法读取项目",storageCheckError:"无法确认项目存储状态,请稍后重试。",storageNotConfigured:"项目存储尚未配置。",loadingMigrated:"正在读取已迁移项目…",loadingSaved:"正在读取已保存项目…",loadingVersions:"正在读取项目版本…",unknownTime:"时间未知",sourceDownloaded:"源码已下载。",projectSummary_one:"{{count}} 个版本 · 更新于 {{time}}",projectSummary_other:"{{count}} 个版本 · 更新于 {{time}}",versionSummary_one:"{{time}} · {{count}} 个文件",versionSummary_other:"{{time}} · {{count}} 个文件",noVersionDescription:"暂无版本描述",latestVersion:"最新版本",verified:"已验证",pendingVerification:"待确认",viewSource:"查看源码",download:"下载",downloading:"下载中…",optimize:"去优化",optimizeUnavailable:"去优化,暂不支持",errors:{projects:"无法读取已保存项目。",source:"无法读取项目源码。",versions:"无法读取项目版本。",download:"下载源码失败。",prepareDeployment:"无法准备部署源码。",deleteVersion:"删除项目版本失败。",migrated:"无法读取已迁移项目",saved:"无法读取已保存项目"},empty:{migratedTitle:"还没有已迁移的项目",savedTitle:"还没有已保存的项目",migratedDescription:"完成首次迁移后,源码会自动保存在这里。",savedDescription:"完成首次构建后,源码会自动保存在这里。",noVersions:"这个项目还没有可用版本。"},compare:{selected:"已选择 {{count}}/2",selectedLabel:"已选择",select:"选择",view:"查看对比",start:"对比版本"},delete:{title:"删除这个版本?",onlyVersion:"“{{name}}”只有这一个版本,删除后项目也会移除。此操作无法撤销。",description:"该版本的源码和验证记录将永久删除,其他版本不受影响。",confirm:"删除版本"}},zce={title:"选择创建方式",subtitle:"以不同模式构建您的智能体",features:"特性",quick:{title:"快速模式",description:"动态派生子智能体自主完成任务",features:{dynamicSubagents:"动态派生子智能体",autonomousPlanning:"自主规划执行",collaboration:"多智能体协作",summary:"自动汇总结果",skills:"按需调用技能",trace:"任务过程可追踪"}},traditional:{title:"传统模式",description:"高度自定义您的智能体结构",features:{visualConfig:"可视化配置",migration:"存量智能体迁移",debugging:"实时调试",optimization:"可选性能优化",parameters:"精细参数控制"}}},Vce={placeholder:"输入系统提示词;键入 ## 加空格可创建二级标题…",toolbar:{undo:"撤销 {{shortcut}}",redo:"重做 {{shortcut}}",paragraph:"正文",quote:"引用",heading:"标题 {{level}}",selectBlockType:"选择文本类型",blockType:"文本类型",bold:"加粗",removeBold:"取消加粗",italic:"斜体",removeItalic:"取消斜体",bulletedList:"无序列表",numberedList:"有序列表"}},Hce={local:{duplicatesSkipped:"已跳过重复技能:{{names}}",invalidDrop:"请拖入包含 SKILL.md 的文件夹或一个 .zip 文件",readError:"读取失败:{{detail}}",dropLabel:"拖入文件夹或 ZIP,自动识别 Skill",hint:"每个技能需包含 SKILL.md。支持包含多个技能的目录。",reading:"正在读取文件…",fileCount:"本地 · {{count}} 个文件"},hub:{searchError:"搜索失败,请稍后重试。",searchPlaceholder:"搜索火山 Find Skill 技能广场,例如 数据分析、PDF…",search:"搜索",searching:"正在搜索…",noResults:"没有找到匹配的技能,换个关键词试试。",hint:"输入关键词搜索火山 Find Skill 技能广场,所选技能会在生成项目时下载到 skills/ 目录。"},space:{loadError:"加载失败",loadingSpaces:"正在加载 AgentKit Skills 中心…",noSpaces:"此账号下没有 AgentKit Skills 中心。",selectSpace:"选择 AgentKit Skills 中心",openConsole:"在火山引擎控制台打开",loadingSkills:"正在加载技能列表…",noSkills:"此 AgentKit Skills 中心暂无技能。"}},qce={unnamedNode:"未命名节点",editInstruction:"点击编辑指令…",controls:{ariaLabel:"工作流画布控制",zoomIn:"放大",zoomOut:"缩小",fitView:"适应视图"},sections:{info:"工作流信息",execution:"执行方式",nodes:"节点",nodeConfig:"节点配置"},types:{sequential:{label:"顺序",description:"节点依次执行"},parallel:{label:"并行",description:"节点同时执行"},loop:{label:"循环",description:"节点循环执行"}},placeholders:{description:"这个工作流做什么…",agentDescription:"这个 Agent 做什么…",instruction:"你是一个…"},errors:{workflowNameUnique:"名称须与 Agent 节点名称保持唯一",agentNameUnique:"Agent 名称在当前工作流中必须唯一"},dragHint:"拖拽到画布,或点击下方按钮添加",agentNode:"Agent 节点",addNode:"添加节点",connectHint:"拖拽节点的圆点连线以表达执行顺序。",create:"创建工作流",deleteNode:"删除节点",nameHelp:"仅使用英文字母、数字和下划线,且名称保持唯一。",instruction:"指令 (instruction)",tools:"工具 (逗号分隔)",nodeId:"节点 ID",empty:{selectNode:"选择一个节点以编辑其配置",summary:"共 {{nodes}} 个节点 · {{edges}} 条连线"}},Wce={ariaLabel:"快速模式创建",progress:"快速模式创建进度",steps:{agent:{label:"智能体",title:"基本信息",description:"设置智能体的名称、用途、行为方式与能力"},environment:{label:"执行环境",title:"配置执行环境",description:"选择默认环境或已构建的自定义环境"},deployment:{label:"部署偏好",title:"部署偏好",description:"定义 AgentKit 云上参数"}},model:{label:"模型",source:"模型来源",name:"模型名称",fallbacks:"Fallback 模型",fallbackPlaceholder:"备用模型名称",addFallback:"添加备用模型",addProviderFallback:"添加其他服务商",removeFallback:"移除",fallbackType:"备用模型类型",fallbackSameProvider:"同服务商",fallbackOtherProvider:"其他服务商",apiKeyEnv:"API Key 环境变量",invalidApiKeyEnv:"环境变量名只能包含字母、数字和下划线,且不能以数字开头。",fallbackHelp:"同服务商备用模型复用主模型连接;其他服务商会使用单独的 provider、API Base 和 API Key。",fallbackIgnored:"空值、重复值或与主模型相同的模型会被忽略。",provider:"服务商 Provider",invalidApiBase:"请输入合法的 http:// 或 https:// 链接。",volcengineArk:"火山方舟",custom:"自定义",gateway:"模型网关",comingSoon:"待上线",currentApiKey:"当前 API Key",currentConfiguration:"当前配置",loadingApiKeys:"正在加载 API Key",selectApiKey:"选择 API Key",searchApiKeys:"搜索 API Key 名称",noApiKeys:"暂无可用 API Key",loadingModels:"正在加载模型",selectModel:"选择模型",searchModels:"搜索名称、Model ID 或服务商",noModels:"没有可用的模型",apiKeyPlaceholder:"请输入模型 API Key",credentialsLoadError:"模型凭据加载失败",modelsLoadError:"模型列表加载失败"},identity:{unnamedPool:"未命名用户池",currentPool:"{{value}}(当前用户池)",userPool:"用户池",loading:"正在加载用户池",placeholder:"请选择用户池",search:"搜索用户池",empty:"当前账号下暂无 Identity 用户池",currentHint:"当前 Studio 的登录 JWT 将透传访问此 Runtime",mismatchHint:"所选用户池不是当前 Studio 使用的用户池,部署后无法从 Studio 调用此 Runtime",selectionHint:"当前 Studio 使用的用户池已在列表中标注"},agent:{namePlaceholder:"输入智能体名称",descriptionPlaceholder:"说明这个智能体可以做什么",prompt:"提示词",promptPlaceholder:"定义角色、目标和行为边界",skills:"技能",addSkill:"添加技能"},validation:{descriptionRequired:"请输入描述",promptRequired:"请输入提示词",modelRequired:"请选择模型",instanceIntegers:"最小实例数必须为大于等于 0 的整数,最大实例数必须为大于 0 的整数",instanceOrder:"最小实例数不能大于最大实例数",userPoolRequired:"请选择用于 Runtime 鉴权的用户池"},deployment:{runtimeName:"Runtime 名称",runtimeNameUpdateHint:"更新时保持现有 Runtime 名称不变",runtimeNameHint:"仅支持英文字母、数字、下划线和连字符",region:"发布区域",authentication:"鉴权方式",apiKeyDescription:"默认方式,使用 Runtime API Key 访问",userPoolDescription:"使用 Identity 用户池签发的 JWT",sessionStorage:"会话存储",inMemoryStorage:"In-memory 临时存储",backends:{sqlite:"SQLite 文件",mysql:"MySQL",postgresql:"PostgreSQL"},instances:"实例设置",minInstances:"最小实例数",maxInstances:"最大实例数",inMemoryHint:"为避免多实例间会话丢失,推荐将 Runtime 固定为 1~1",networkMode:"网络模式",network:{public:"公网",private:"私网",both:"公网与私网"},subnetIds:"子网 ID(可选,多个用逗号分隔)",sharedInternet:"VPC 内共享公网出口",sharedInternetHint:"允许私网 Runtime 通过共享出口访问公网",evaluationSets:"评测集",createEvaluationSets:"自动创建评测集",evaluationSetsHint:"部署成功后自动创建 Good Case 和 Bad Case 评测集",resources:"资源配置",complete:"部署已完成",preparing:"正在准备部署…"},environmentVariables:{title:"环境变量",add:"添加变量",nameAriaLabel:"环境变量名称",valueAriaLabel:"{{name}} 的值",deleteNamed:"删除 {{name}}"},actions:{updateAgain:"再次更新",deployAgain:"重新部署",updateAndPublish:"更新并发布"}},Kce={actions:{addSubagent:"添加子 Agent",clearRoot:"清空根 Agent",clearRootConfirmation:"清空根 Agent 的全部配置和子 Agent?此操作无法撤销。"},workspace:{progress:"Agent 创建进度",modes:{build:"架构",validate:"调试",optimize:"优化",environment:"环境",publish:"发布"},titles:{build:"个性化您的智能体架构",validate:"调试您的智能体",optimize:"为您的智能体选择优化项",environment:"配置云上环境",publish:"准备好部署您的智能体"}},sections:{type:{label:"Agent 类型",hint:"选择 Agent 类型"},basic:{label:"基本信息",hint:"名称、描述与系统提示词"},model:{label:"模型配置",hint:"模型与服务(可选)"},tools:{label:"工具",hint:"可调用的能力"},skills:{label:"技能",hint:"声明式技能"},knowledge:{label:"知识库",hint:"外部知识检索"},memory:{label:"记忆",hint:"短期与长期记忆"},subagents:{label:"子 Agent",hint:"嵌套协作"},review:{label:"完成",hint:"预览并创建"}},agentTypes:{ariaLabel:"Agent 类型",remoteChildOnly:"远程智能体只能作为子步骤使用",llm:{label:"智能体",fullLabel:"LLM 智能体",description:"大模型驱动,自主完成任务"},sequential:{label:"分步协作",fullLabel:"顺序型智能体",description:"子 Agent 按顺序依次执行"},parallel:{label:"同时处理",fullLabel:"并行型智能体",description:"子 Agent 并行执行后汇总"},loop:{label:"循环执行",fullLabel:"循环型智能体",description:"子 Agent 循环执行到满足条件"},a2a:{label:"远程智能体",fullLabel:"远程 Agent",description:"通过 A2A 协议调用远程 Agent"}},basic:{agentName:"Agent 名称",name:"名称",agentDescription:"智能体描述",descriptionPlaceholder:"简要描述这个 Agent 的用途,便于团队识别…",nameHelp:"遵循 Google ADK 命名规则,且在执行流程中保持唯一。",rootDescriptionHelp:"完整描述会保留;部署时会自动整理为符合 Runtime 规范的单行描述。",descriptionHelp:"描述会显示在 Agent 列表与选择器中。",orchestratorHelp:"这是一个协作容器,本身不生成回答。请在左侧画布中添加任务步骤,并通过拖拽调整它们的位置。",maxIterations:"最大轮次",maxIterationsHelp:"循环编排反复执行子 Agent,直到满足条件或达到该轮次上限。",agentCenter:"AgentKit 智能体中心",agentCenterHelp:"远程 Agent 的名称、描述和能力来自中心返回的 Agent Card。系统会根据每轮任务动态发现并挂载匹配的 Agent。",moreOptions:"更多选项",systemPrompt:"系统提示词",loadingMarkdown:"正在加载 Markdown 编辑器…",markdownHelp:"支持 Markdown 快捷输入,例如键入 ## 加空格创建二级标题。",unnamed:"未命名",unnamedAgent:"未命名智能体"},validation:{remoteRoot:"远程 Agent 只能作为子 Agent",missingRegistry:"请选择 AgentKit 智能体中心",name:{required:"名称为必填项",reserved:"user 是 Google ADK 保留名称,请使用其他名称",characters:"名称须以英文字母或下划线开头,且只能包含英文字母、数字和下划线"},duplicateName:"Agent 名称在当前结构中必须唯一",missingDescription:"描述为必填项",mcpAuthRequired:"MCP 地址变化后需要确认认证方式",mcpDuplicateName:"MCP 名称重复,请为每个服务使用唯一名称",mcpDuplicateUrl:"MCP 地址重复,请删除重复服务后再发布",missingSubagent:"缺少子 Agent",missingPrompt:"系统提示词为必填项",missingSubagentDetail:"{{type}}至少需要添加一个子 Agent 后才能调试或发布。",problem:"{{name}}:{{problem}}"},ai:{ariaLabel:"AI 自动填写 Agent 配置",minimumLength:"请至少输入 {{count}} 个字符。",replaceConfirmation:"生成的新配置会替换当前画布和属性,确定继续吗?",placeholder:"描述目标,使用 {{model}} 模型一键生成配置",generate:"智能生成",generating:"正在智能生成",success:"生成成功",regenerate:"重新生成",failed:"智能生成失败"},debug:{ariaLabel:"智能体调试工作区",unavailable:"当前后端暂不支持生成 Agent 调试运行。",baseline:"基准组",comparison:"对照组 {{count}}",selectModel:"请选择模型",enterDescription:"请输入描述",enterPrompt:"请输入系统提示词",duplicateConfiguration:"测试配置不能重复",starting:"启动中…",applyAndRestart:"应用并重启",restart:"重新启动",start:"启动环境",defaultModel:"默认模型",testConfiguration:"测试配置",deleteVariant:"删除 {{name}}",deleteVariantGroup:"删除对照组",creatingEnvironment:"正在创建测试环境…",configurationChanged:"配置已变更,请重新启动环境。",ready:"环境已就绪",readyHint:"发送消息以比较智能体回复。",startHint:"先完善配置,再启动环境。",viewTraceNamed:"查看 {{name}} 的调用链路",traceUnavailable:"发送消息后可查看调用链路",trace:"调用链路",useConfiguration:"使用此配置",finishConfiguration:"完成配置",finishAndStart:"完成并启动",currentAgentModel:"当前 Agent 模型",configurationHint:"修改仅用于本次对比,选择使用后才会进入部署流程。",messagePlaceholder:"向已启动的测试环境发送消息…",startOneFirst:"请先启动至少一个测试环境",addVariant:"添加对照组",traceTitle:"调用链路 · {{name}}",leaveTitle:"离开调试?",leaveDescription:"离开调试页面后,当前环境将被清理。您可以通过重新启动环境进行新的测试。",cleaning:"清理中…",confirmLeave:"确定离开",closeLeaveConfirmation:"关闭离开调试确认"},optimization:{ariaLabel:"智能体优化选项",scenario:"优化场景",components:"优化组件",bytePlusUnavailable:"BytePlus 账号暂不支持 Harness Sidecar 优化项。请保持优化项为空后继续部署,普通 BytePlus 智能体不受影响。",releaseScenario:"优化场景:{{profile}}",profiles:{default:{label:"自定义",description:"按需选择组件,不勾选时不启动 Sidecar。"},ops:{label:"运维场景",description:"适用于运维诊断、数据库、日志和监控 MCP。"}},groups:{quality:"提升回答质量",cost:"降低运行成本",stability:"增强运行稳定性"},options:{context_engine:{label:"上下文治理",description:"治理上下文组装、任务锚定和上下文预算。"},compressor:{label:"上下文与结果压缩",description:"压缩长上下文和大型工具结果,降低 Token 成本。"},verifier:{label:"回答校验与修复",description:"校验证据和回答,在失败时执行修复或告警。"},long_run_control:{label:"Goal 任务控制",description:"管理 Goal 任务的进度、续跑和结束条件。"},mcp_resilience:{label:"MCP 稳定性治理",description:"治理连接、超时、空结果、大返回和调用预算;默认包含 SQL 只读保护。"}}},model:{label:"模型",source:"模型来源",volcanoArk:"火山方舟",volcengineArk:"火山方舟",bytePlusModelArk:"BytePlus ModelArk",custom:"自定义",gateway:"模型网关",comingSoon:"待上线",configuration:"模型配置",name:"模型名称",fallbacks:"Fallback 模型",fallbackPlaceholder:"备用模型名称",addFallback:"添加备用模型",addProviderFallback:"添加其他服务商",removeFallback:"移除",fallbackType:"备用模型类型",fallbackSameProvider:"同服务商",fallbackOtherProvider:"其他服务商",apiKeyEnv:"API Key 环境变量",invalidApiKeyEnv:"环境变量名只能包含字母、数字和下划线,且不能以数字开头。",fallbackHelp:"同服务商备用模型复用主模型连接;其他服务商会使用单独的 provider、API Base 和 API Key。",fallbackIgnored:"空值、重复值或与主模型相同的模型会被忽略。",provider:"服务商 Provider",invalidApiBase:"请输入合法的 http:// 或 https:// 链接。",liteLlmProviders:"LiteLLM 支持列表",apiKeyPlaceholder:"请输入模型 API Key",available:"已开通",retiring:"即将下线",notActivated:"未开通",unavailable:"暂不可用",apiKeyLoadError:"加载 Ark API Key 失败",loadingApiKeys:"正在加载 API Key…",selectApiKey:"选择 API Key",currentApiKey:"当前 API Key",apiKeyList:"API Key 列表",searchApiKey:"搜索 API Key",searchApiKeyName:"搜索 API Key 名称",noApiKeys:"暂无可用 API Key",noMatchingApiKey:"没有匹配的 API Key",loading:"正在加载模型…",loaded:"已加载 {{count}} 个模型",loadError:"加载模型失败",selectModel:"选择模型",selectProviderModel:"选择服务商模型",providerModels:"服务商模型",search:"搜索模型",searchPlaceholder:"搜索名称、Model ID 或服务商",noMatches:"没有匹配的模型",empty:"暂无可用模型",unknownStatus:"未知状态",refresh:"刷新",refreshing:"刷新中…",activate:"开通",activateAction:"前往开通",currentConfiguration:"当前配置"},tools:{builtIn:"内置工具",builtInHelp:"勾选 VeADK 提供的内置能力,生成时会自动补全 import 与所需环境变量。",codeExecution:"代码执行配置",codeExecutionHelp:"指定 AgentKit 代码执行沙箱。",mcp:"MCP 工具"},catalog:{web_search:{label:"联网搜索",description:"火山引擎 Web Search,获取实时信息。"},parallel_web_search:{label:"并行联网搜索",description:"并行发起多条搜索查询,更快汇总。"},link_reader:{label:"网页读取",description:"抓取并阅读给定链接的正文内容。"},web_scraper:{label:"网页爬取",description:"结构化爬取网页(需要 Scraper 服务)。"},image_generate:{label:"图像生成",description:"文生图(Doubao Seedream)。"},image_edit:{label:"图像编辑",description:"图生图 / 编辑(Doubao SeedEdit)。"},video_generate:{label:"视频生成",description:"文/图生视频(Doubao Seedance),含任务查询。"},text_to_speech:{label:"语音合成 (TTS)",description:"把文本转成语音(火山语音)。"},run_code:{label:"代码执行",description:"在沙箱中执行代码。"},vesearch:{label:"VeSearch 智能搜索",description:"火山 VeSearch(需要 bot 端点)。"},links:{console:"控制台",documentation:"文档"},env:{modelAgentName:{comment:"模型名称"},embeddingModelName:{comment:"向量化模型(记忆/知识库需要)"},vikingMemoryProject:{comment:"VikingDB 记忆库项目"},vikingMemoryRegion:{comment:"VikingDB 记忆库地域"},vikingMemoryType:{comment:"记忆类型"},feishuAppId:{comment:"飞书应用 App ID"},feishuAppSecret:{comment:"飞书应用 App Secret",placeholder:"输入 App Secret"},registrySpaceId:{comment:"AgentKit 智能体中心",placeholder:"请选择智能体中心"},registryTopK:{comment:"召回 Agent 数量"},registryRegion:{comment:"AgentKit 智能体中心地域"},registryEndpoint:{comment:"AgentKit 智能体中心 OpenAPI 地址"},agentKitToolId:{comment:"代码执行沙箱 ID"},agentKitToolRegion:{comment:"AgentKit Tools 地域"},openVikingUrl:{comment:"OpenViking 服务地址"},openVikingMemoryUserId:{comment:"记忆归属 ID",help:"对应 viking://user/<此值>/peers/<请求用户>/memories 中的 user 段;用于隔离 Agent、租户或业务场景,默认 default。"},openVikingMemoryPolicy:{comment:"记忆策略",help:"记忆的抽取策略和隔离策略,不填写时使用官方默认策略。"},openVikingKnowledgeUserId:{comment:"知识库归属 ID",help:"未配置资源目录时用于默认路径 viking://user/<此值>/resources/<知识库索引>/,默认 default。"},openVikingTargetUri:{comment:"知识库资源目录",help:"留空时由 KnowledgeBase index 自动生成;填写后直接检索该 OpenViking 资源目录,优先级最高。"},tlsServiceName:{comment:"TLS topic_id,留空自动创建"}}},backends:{shortTerm:{local:{label:"本地内存",description:"进程内,不持久化。适合开发调试。"},sqlite:{label:"SQLite 文件",description:"持久化到本地 .db 文件。"},mysql:{label:"MySQL",description:"持久化到 MySQL。"},postgresql:{label:"PostgreSQL",description:"持久化到 PostgreSQL。"}},longTerm:{local:{label:"本地向量库",description:"进程内 llama-index 向量库。"},opensearch:{label:"OpenSearch",description:"OpenSearch 向量检索。"},redis:{label:"Redis",description:"Redis 向量检索。"},viking:{label:"VikingDB Memory",description:"VikingDB 记忆库(支持用户画像)。"},openviking:{label:"OpenViking Memory",description:"OpenViking 长期记忆,按用户维度保存和检索偏好、事件与实体。"},mem0:{label:"Mem0",description:"Mem0 托管记忆服务。"}},knowledge:{viking:{label:"VikingDB Knowledge",description:"VikingDB 知识库。"},opensearch:{label:"OpenSearch",description:"OpenSearch 向量检索。"},context_search:{label:"Context Search",description:"火山 Context Search 引擎(无需向量化)。"},openviking:{label:"OpenViking Knowledge",description:"OpenViking 资源目录知识库,无需向量化模型配置。"}}},exporters:{apmplus:{label:"APMPlus",description:"火山 APMPlus 应用性能监控。"},cozeloop:{label:"CozeLoop",description:"扣子 CozeLoop 链路观测。"},tls:{label:"TLS (日志服务)",description:"火山 TLS 日志服务导出。"}},knowledge:{title:"知识库",description:"启用外部知识检索(RAG),让 Agent 基于你的资料作答。",backend:"知识库后端",vikingDatabase:"VikingDB 知识库"},memory:{shortTerm:"短期记忆",shortTermDescription:"存储单会话上下文",shortTermBackend:"短期记忆后端",longTerm:"长期记忆",longTermDescription:"存储跨会话上下文,通常使用向量化检索",longTermBackend:"长期记忆后端",vikingDatabase:"VikingDB 记忆库",autoSave:"自动保存会话到长期记忆",autoSaveDescription:"会话结束时自动把内容写入长期记忆,无需手动调用。"},mcp:{removeTool:"删除 MCP 工具",namePlaceholder:"名称(可选)",urlPlaceholder:"MCP 服务地址",pathWarning:"此地址未以 /mcp 结尾,请确认它是完整的 MCP 服务地址。",configuredPlaceholder:"已安全保存认证信息",tokenPlaceholder:"Bearer Token(可选)",changedUrlWarning:"MCP 地址已变化,请确认如何处理已保存的认证信息。",reuseCredential:"继续使用",replaceCredential:"替换认证",noAuth:"不使用认证",reuseHint:"发布时将继续使用已保存的认证信息。",changeToReplace:"改为替换",credentialConfigured:"认证信息已由 Studio 安全保存。",removeCredential:"移除认证",commandPlaceholder:"命令,例如 npx",argsPlaceholder:"参数,以空格分隔",stdioHint:"stdio 工具在部署环境中启动,请确保命令和依赖可用。",addTool:"添加 MCP 工具"},resources:{unnamedAgentCenter:"未命名智能体中心",unnamedKnowledgeBase:"未命名知识库",unnamedMemory:"未命名记忆库",loadError:"加载失败",loadingAgentCenters:"正在加载智能体中心…",agentCentersLoaded:"已加载 {{count}} 个智能体中心",noAgentCenters:"暂无智能体中心",noMatchingAgentCenters:"没有匹配的智能体中心",searchAgentKitCenter:"搜索 AgentKit 智能体中心",searchNameOrId:"搜索名称或 ID",selectAgentCenter:"选择智能体中心",selectAgentKitCenter:"选择 AgentKit 智能体中心",selectedAgentCenter:"已选智能体中心",agentKitCenter:"AgentKit 智能体中心",refreshAgentCenters:"刷新智能体中心",knowledgeBaseList:"知识库列表",knowledgeBasePlaceholder:"选择知识库",loadingKnowledgeBases:"正在加载知识库…",knowledgeBasesLoaded:"已加载 {{count}} 个知识库",noKnowledgeBases:"暂无知识库",noMatchingKnowledgeBases:"没有匹配的知识库",searchKnowledgeBase:"搜索知识库",selectKnowledgeBase:"选择知识库",refreshKnowledgeBases:"刷新知识库",memoryList:"记忆库列表",memoryPlaceholder:"选择记忆库",loadingMemories:"正在加载记忆库…",memoriesLoaded:"已加载 {{count}} 个记忆库",noMemories:"暂无记忆库",noMatchingMemories:"没有匹配的记忆库",searchMemory:"搜索记忆库",selectMemory:"选择记忆库",refreshMemories:"刷新记忆库"},env:{noAdditionalParameters:"此后端无需额外运行参数。",invalidJson:"请输入有效的 JSON。",helpAriaLabel:"{{label}}说明:{{help}}",openOpenViking:"打开 OpenViking {{label}}",valuePlaceholder:"请输入参数值",openVikingIndex:"OpenViking 资源索引",openVikingIndexHelp:"默认值:留空;生成项目时使用 Agent 名自动生成,例如 my_agent_kb。未配置 DATABASE_OPENVIKING_TARGET_URI 时,默认 URI 拼接为 viking://user/{知识库归属 ID,未填则 default}/resources/{资源索引}/;如果填写了 DATABASE_OPENVIKING_TARGET_URI,则直接使用该完整 URI。",openVikingIndexAriaLabel:"OpenViking 资源索引说明:{{help}}"},deployment:{vpcRequired:"使用 VPC 网络时,请填写 VPC ID。",apiKeyRequired:"请先选择模型使用的 API Key。",invalidEnvName:"环境变量名称不合法:{{key}}",requiredEnv:"{{name}}:请填写必填环境变量",generatingConfiguration:"正在生成部署配置",runtimeNameExists:"Runtime 名称已存在,请修改后重试。",preparing:"准备部署",complete:"部署完成",failed:"部署失败",updateAndPublish:"更新并发布",stages:{build:"构建镜像",deploy:"部署 Runtime",publish:"发布服务",running:"部署中"}},publish:{generating:"正在生成发布配置",validating:"校验 Agent 结构并准备部署快照…"}},Gce={presets:{support:{name:"客服助手",description:"7×24 在线答疑,结合知识库与历史对话,稳定、礼貌地解决用户问题。",instruction:"你是一名专业、耐心的客服助手。请始终保持礼貌、友好的语气,优先依据知识库中的资料回答用户问题;当资料不足以确定答案时,如实告知用户并主动引导其提供更多信息,切勿编造。回答尽量简洁、分点清晰,必要时给出操作步骤。",subagents:{}},analyst:{name:"数据分析师",description:"运行代码完成统计与可视化,开启链路追踪,分析过程可观测、可复现。",instruction:"你是一名严谨的数据分析师。面对数据问题时,先厘清分析目标与口径,再通过编写并运行代码完成清洗、统计与可视化。每一步都要说明你的假设与方法,给出结论时附上关键数据支撑,并指出潜在的偏差与局限。",subagents:{}},translator:{name:"翻译助手",description:"中英互译,忠实、通顺、地道,保留原文语气与专业术语。",instruction:"你是一名专业的翻译助手,精通中英互译。请在忠实于原文含义的前提下,使译文自然、地道、符合目标语言表达习惯;保留专有名词与专业术语的准确性,并尽量贴合原文的语气与风格。仅输出译文,除非用户额外要求解释。",subagents:{}},coder:{name:"代码助手",description:"编写、调试与重构代码,可运行代码验证结果,给出清晰可维护的实现。",instruction:"你是一名资深软件工程师。请根据需求编写正确、清晰、可维护的代码,遵循目标语言的惯用风格与最佳实践。在不确定时通过运行代码验证你的实现,给出关键的边界条件与测试思路,并对复杂逻辑附上简要注释。",subagents:{}},researcher:{name:"研究员",description:"联网检索一手资料,结合知识库与长期记忆,输出有据可查的研究结论。",instruction:"你是一名严谨的研究员。面对研究问题时,先拆解关键子问题,再通过联网检索收集多个一手、可信的来源,交叉验证后再下结论。结论需注明出处与不确定性,区分事实与推断,避免以偏概全。",subagents:{}},"research-team":{name:"多智能体研究团队",description:"由检索员、分析员、撰写员协作的研究编排,分工完成端到端调研报告。",instruction:"你是一支研究团队的总协调者。负责拆解用户的研究任务,将检索、分析、撰写分别委派给对应的子 Agent,汇总各子 Agent 的产出,把控整体质量,最终输出结构清晰、有据可查的研究报告。",subagents:{0:{name:"检索员",description:"联网搜集与课题相关的一手资料与数据。",instruction:"你是研究团队中的检索员。根据课题联网检索多个可信来源,整理出关键事实、数据与原文出处,交付给分析员,不做主观结论。"},1:{name:"分析员",description:"对检索到的材料做交叉验证与归纳分析。",instruction:"你是研究团队中的分析员。对检索员提供的材料做交叉验证、归纳与对比,提炼洞见、识别矛盾与不确定性,形成结构化的分析要点。"},2:{name:"撰写员",description:"将分析结论组织为结构清晰、引用规范的报告。",instruction:"你是研究团队中的撰写员。把分析员的要点组织成结构清晰、语言通顺、引用规范的研究报告,确保每个结论都能追溯到来源。"}}}},tags:{tools:"工具",memory:"记忆",knowledgeBase:"知识库",tracing:"观测",subagents:"子 Agent {{count}}"},gallery:{title:"从模板新建",subtitle:"选择一个预制 Agent 模板,按需微调后即可创建。"},detail:{back:"返回模板列表",name:"名称",systemPrompt:"系统提示词",model:"模型",tools:"工具",memory:"记忆",knowledgeBase:"知识库",tracing:"观测追踪",subagents:"子 Agent({{count}})",create:"使用此模板创建",shortTermMemory:"短期",longTermMemory:"长期"}},Xce={common:Ice,yaml:Pce,validation:Dce,defaults:Mce,helpers:Lce,intelligentDeployment:$ce,codePackage:Fce,buildCanvas:Bce,intelligent:Uce,projectLibrary:Qce,modePicker:zce,promptEditor:Vce,skills:Hce,workflow:qce,workbench:Wce,traditional:Kce,template:Gce},jMe=Object.freeze(Object.defineProperty({__proto__:null,buildCanvas:Bce,codePackage:Fce,common:Ice,default:Xce,defaults:Mce,helpers:Lce,intelligent:Uce,intelligentDeployment:$ce,modePicker:zce,projectLibrary:Qce,promptEditor:Vce,skills:Hce,template:Gce,traditional:Kce,validation:Dce,workbench:Wce,workflow:qce,yaml:Pce},Symbol.toStringTag,{value:"Module"})),Yce={backToList:"返回定时任务列表",cancel:"取消",cancelQueue:"取消排队",cancelQueueFirst:"请先取消排队",cancelling:"取消中…",closeDrawer:"关闭抽屉",collapse:"收起",connectingRuntime:"正在连接 Runtime…",createScheduledTask:"创建定时任务",createTask:"创建任务",delete:"删除",deleteTask:"删除任务",edit:"编辑",enable:"启用",expand:"展开",pause:"暂停",refresh:"刷新",refreshHistory:"刷新执行历史",rerun:"重新执行",retry:"重试",runNow:"立即执行",saveChanges:"保存更改",saving:"保存中…",stop:"终止执行",stopRun:"终止本次执行",stopRunFirst:"请先终止当前执行",stopping:"终止中…",viewDetails:"查看详情"},Zce={cancelDescription:"本次 Session 将被取消,后续计划不会暂停。",cancelTitle:"终止本次执行?",deleteDescription:"“{{name}}”及其全部执行历史将被永久删除。",deleteTitle:"删除定时任务?"},Jce={configuration:"任务配置",nextRun:"下次执行",pageLabel:"定时任务详情",region:"地域",runtime:"运行时",status:"任务状态"},eue={createTitle:"创建定时任务",description:"每次触发都会为 Runtime Agent 创建独立 Session。",editTitle:"编辑定时任务"},tue={minutesSeconds:"{{minutes}} 分 {{seconds}} 秒",seconds:"{{count}} 秒"},nue={cronExpression:"Cron 表达式",cronHelp:"依次填写分钟、小时、日期、月份、星期。",dailyTime:"每天执行时间",enableAfterCreate:"创建后启用",enableHelp:"启用后会从下一个计划时间开始执行。",name:"任务名称",namePlaceholder:"例如:每日生成运营摘要",noRuntime:"暂无可用 Runtime",prompt:"执行文本",promptPlaceholder:"输入每次执行时发送给 Agent 的固定文本",runAt:"执行时间",runtimeAgent:"运行时智能体",runtimeHelp:"任务始终跟随该 Runtime 当前生效版本。",runtimePlaceholder:"选择 Runtime Agent",schedule:"执行计划",scheduleType:"执行计划类型",timezone:"时区",weekday:"星期"},iue={all:"全部"},rue={description:"每次运行均使用独立 Session,结果与错误会永久保留。",duration:"耗时 {{duration}}",emptyDescription:"任务触发或立即执行后,记录会显示在这里。",emptyTitle:"暂无执行记录",errorDetails:"错误详情",finalAnswer:"最终回答",loadFailed:"无法加载执行历史",loadFailedDescription:"请检查 Studio 服务后重试。",session:"会话",title:"执行历史"},sue={cancelRequested:"已提交终止请求。",created:"任务已创建。",deleted:"任务及其执行历史已删除。",enabled:"任务已启用。",paused:"任务已暂停。",queued:"任务已排队,将在一分钟内开始执行。",requeued:"任务已重新排队,将在一分钟内开始执行。",updated:"任务已更新。"},aue={filterLabel:"定时任务状态筛选",listLabel:"定时任务列表",loadFailed:"无法加载定时任务",loadFailedDescription:"请检查 Studio 服务后重试。",title:"定时任务"},oue={cron:"Cron {{cron}}{{zone}}",daily:"每天 {{time}}{{zone}}",once:"一次 · {{date}}{{zone}}",weekly:"{{weekday}} {{time}}{{zone}}"},lue={daily:"每天",once:"一次性",weekly:"每周"},cue={cancelled:"已取消",enabled:"已启用",failed:"失败",notRun:"尚未执行",paused:"已暂停",pending:"准备中",queued:"已排队",retrying:"自动重试中",running:"执行中",skipped:"已跳过",success:"成功"},uue={cronFields:"Cron 表达式需要包含 5 个字段,例如 0 9 * * *。",nameRequired:"请输入任务名称。",promptRequired:"请输入每次执行时发送给 Agent 的文本。",runtimeAppMissing:"Runtime Agent 未返回可调用的 appName,请确认 Runtime 已就绪且版本兼容。",runtimeRequired:"请选择可用的 Runtime Agent。",timeRequired:"请选择执行时间。"},due={friday:"周五",monday:"周一",saturday:"周六",sunday:"周日",thursday:"周四",tuesday:"周二",wednesday:"周三"},RMe={actions:Yce,confirm:Zce,detail:Jce,drawer:eue,duration:tue,fields:nue,filters:iue,history:rue,notices:sue,page:aue,schedule:oue,scheduleTypes:lue,status:cue,validation:uue,weekdays:due},IMe=Object.freeze(Object.defineProperty({__proto__:null,actions:Yce,confirm:Zce,default:RMe,detail:Jce,drawer:eue,duration:tue,fields:nue,filters:iue,history:rue,notices:sue,page:aue,schedule:oue,scheduleTypes:lue,status:cue,validation:uue,weekdays:due},Symbol.toStringTag,{value:"Module"})),fue="问题反馈",hue="问题描述",pue="常见问题",mue="取消",gue="完成",bue="提交反馈",yue="正在上报…",vue={title:"上报成功,感谢您的反馈",description:"AgentKit 团队会尽快查看您提交的问题。"},xue={close:"关闭问题反馈",intro:"请选择遇到的问题,也可以补充具体表现。",privacy:"您的对话数据将会上报到 AgentKit 团队,请注意隐私保护。",descriptionPlaceholder:"请描述问题发生时的表现(选填)",issues:{slow:"执行速度慢",crash:"运行崩溃",incorrect:"结果不准确",tool_error:"工具调用失败",other:"其他问题"}},wue={description:"告诉我们您在使用 AgentKit Studio 时遇到的问题。",module:"所属模块",modules:{conversation:"对话",agents:"智能体",applications:"自动化",search:"搜索",other:"其他"},commonIssuesMultiple:"常见问题(可多选)",issueTypes:"问题类型",issues:{page_slow:"页面加载慢",feature_unavailable:"功能无法使用",display_error:"页面显示异常",no_response:"操作无响应",other:"其他问题"},descriptionPlaceholder:"请描述问题发生时的页面、操作和表现",quickAdd:"快捷补充",suggestionsLabel:"问题描述推荐",suggestions:{noResponse:"点击后没有反应",loading:"页面一直处于加载状态",incomplete:"部分内容显示不完整",error:"操作后出现错误提示"},privacy:"您的数据将会上报到 AgentKit 团队,请注意隐私保护。"},PMe={title:fue,descriptionLabel:hue,commonIssues:pue,cancel:mue,done:gue,submit:bue,submitting:yue,success:vue,dialog:xue,page:wue},DMe=Object.freeze(Object.defineProperty({__proto__:null,cancel:mue,commonIssues:pue,default:PMe,descriptionLabel:hue,dialog:xue,done:gue,page:wue,submit:bue,submitting:yue,success:vue,title:fue},Symbol.toStringTag,{value:"Module"})),Oue={back:"返回",close:"关闭"},Sue={title:"优化迁移项目",closeAria:"关闭优化窗口"},kue={title:"已迁移项目",description:"管理迁移后的源码版本,也可以选择任一版本继续优化。",libraryTitle:"项目与版本",libraryDescription:"查看、下载、部署或对比源码版本,也可以基于任一版本继续优化。",emptyTitle:"还没有已迁移的项目",emptyDescription:"迁移完成后,源码会自动保存在这里。"},Eue={langchain:"LangChain",langgraph:"LangGraph",adk:"Google ADK",strands:"Strands",agentcore:"AgentCore",dify:"Dify",any:"Any(通用迁移)"},Cue={awaitingUpload:"待上传",analyzing:"分析中",needsInput:"待补充",analysisReady:"待确认",migrating:"迁移中",validating:"校验中",packaging:"打包中",succeeded:"已完成",succeededWithWarnings:"已完成,有提示",partial:"部分完成",failed:"失败",cancelled:"已终止",expired:"已过期"},Tue={partialReady:"迁移产物已生成,但交付不完整,请查看迁移提示。",readyWithWarnings:"迁移产物已生成,请查看迁移提示。",ready:"迁移产物已生成。"},Aue={passed:"产物校验通过",failed:"产物校验未通过",degraded:"产物校验未完成"},_ue={session:"创建迁移环境",upload:"上传项目",analysis:"分析项目"},Nue={agentNameRequired:"请输入 Agent 名称",agentNameInvalid:"Agent 名称必须为 1-63 位,只能包含小写字母、数字和连字符,且必须以字母或数字开头和结尾"},jue={seconds:"{{seconds}} 秒",minutesSeconds:"{{minutes}} 分 {{seconds}} 秒"},Rue={savedUnaffected:"已保存项目不受影响",savingUnaffected:"源码正在保存,完成后不受环境期限影响",activeDetail:"到期后任务记录和临时产物将无法访问",oneHour:"临时迁移环境保留 1 小时",ended:"临时迁移环境已结束",savedAvailable:"已保存项目仍可查看、下载、部署或优化",unavailable:"任务记录和临时产物已无法访问",countdown:"临时迁移环境将在 {{minutes}} 分 {{seconds}} 秒后结束",expiredSavedMessage:"临时迁移环境已结束,已保存项目不受影响。",expiredMessage:"临时迁移环境已结束,任务记录和临时产物无法继续访问。"},Iue={recommended:"建议迁移方式",scope:"迁移范围",excluded:"不在本次范围",viewEvidence:"查看分析证据",viewAssumptions:"查看关键假设",viewSourceEvidence:"查看源码证据"},Pue={ariaLabel:"Codex 执行动态",title:"Codex 执行动态",startingAnalysis:"Codex 正在开始分析…",startingMigration:"Codex 正在开始迁移…",loadError:"暂时无法读取 Codex 执行动态,不影响当前任务。"},Due={title:"迁移产物",fileTooLarge:"该文件超过 2 MiB,请下载完整产物后查看。",unsupportedPreview:"该文件不支持在线预览,请下载完整产物后查看。",filesAria:"迁移产物文件",searchAria:"搜索产物文件",searchPlaceholder:"搜索文件",limit:"仅展示前 {{count}} 项,请搜索具体文件。",noSelection:"未选择文件",noPreview:"暂无可预览文件。",loadingFile:"正在读取产物文件…",startupFile:"启动文件",fileCountLabel:"文件数",saved:"源码已保存,可继续查看、下载、部署或优化。",saving:"产物已生成,正在保存源码版本。",deployReady:"产物可预览、下载和部署,正在等待源码保存状态。",deployUnavailable:"产物可预览和下载,但当前交付状态不支持部署。",viewProjects:"查看已迁移项目",downloading:"下载中…",downloadZip:"下载 ZIP",deployTitle:"部署迁移产物",deployUnavailableTitle:"当前交付状态不支持部署",deployRuntime:"部署到 Runtime",fileCount:"{{count}} 个文件",startup:"启动文件 {{module}}",loading:"正在读取迁移产物…"},Mue={retiring:"即将下线",currentDefault:"当前默认模型",loadError:"加载模型列表失败",label:"模型",placeholder:"选择模型"},Lue={zipOnly:"请选择 .zip 格式的本地项目文件。",invalidName:"ZIP 文件名无效,请重命名后重新选择。",tooLarge:"项目 ZIP 不能超过 {{size}}。",empty:"项目 ZIP 不能为空。",removeAria:"移除项目 ZIP",reselectPrompt:"重新选择项目 ZIP",selectPrompt:"选择或拖入本地项目 ZIP",reselect:"重新选择",selectZip:"选择 ZIP",continue:"继续上传",start:"开始迁移",inputAria:"选择本地项目 ZIP",retention:"临时迁移环境从创建完成起保留 1 小时;保存成功的源码版本不受影响。"},$ue={requiredPlaceholder:"请输入 {{key}}",optionalPlaceholder:"可选:{{key}}",notReady:"迁移产物尚未准备完成。",back:"返回迁移结果"},Fue={backToAddAgent:"返回添加 Agent",title:"从存量迁移",newMigration:"新建迁移",recent:"最近迁移",sessionsAria:"迁移会话",loadingSessions:"正在读取迁移会话…",noSessions:"暂无迁移会话",heading:"迁移存量 Agent 项目",intro:"上传本地项目 ZIP,Codex 将先进行只读分析,再由你确认迁移方式。"},Bue={stop:"终止迁移",stopping:"正在终止…",reload:"重新读取",refreshStatus:"刷新状态"},Uue={unavailable:"迁移能力暂不可用",defaultReason:"Dev Sandbox 暂不可用,请联系管理员检查配置。"},Que={requestZip:"请提供本地项目 ZIP。上传后我会识别框架、入口和迁移边界,并在执行实际迁移前请你确认迁移方式。",zipHint:"仅支持本地 ZIP,最大 {{size}};迁移环境从创建起保留 1 小时。",creatingSandbox:"正在创建 Dev Sandbox",initializing:"正在初始化迁移工作目录,并检查 AgentKit CLI、Codex 和迁移能力。环境就绪后将自动上传项目。",elapsed:"已等待 {{duration}}",uploadThenAnalyze:"ZIP 上传完成后将自动开始只读分析。",analyzing:"Codex 正在识别框架、入口和迁移边界,不会执行实际迁移。",migrationLocked:"迁移执行中不能修改附件或迁移方式。你可以等待当前任务结束,或主动终止。",analysisPaused:"只读分析已暂停。请仅回答下面列出的问题,提交后会在同一迁移环境中重新分析,不会开始实际迁移。",analysisComplete:"只读分析已完成。请检查建议,并确认最终迁移方式。",awaitingUpload:"迁移环境已创建,请重新选择本地 ZIP 继续上传。",expiredTitle:"迁移环境已过期",expiredDescription:"迁移内容和产物已无法预览、下载或部署。如已完成 Runtime 部署,可返回智能体页面继续使用。",unsupportedTitle:"当前 ZIP 暂时无法迁移",unsupportedHint:"请按提示整理项目后,新建迁移并重新上传。",failedTitle:"迁移未完成",cancelled:"当前迁移已终止。你可以新建迁移并重新上传项目。"},zue={ariaLabel:"补充项目分析信息",title:"补充分析所需信息",description:"附件保持锁定,提交后仅继续只读分析",submitting:"正在继续分析…",submit:"提交并继续分析"},Vue={ariaLabel:"确认迁移方式",title:"确认迁移方式",description:"确认后才会执行实际迁移",framework:"迁移方式",frameworkPlaceholder:"选择迁移方式",agentName:"Agent 名称",entry:"项目入口",entryPlaceholder:"选择项目入口",entryExample:"例如 agent.py:agent",consent:"点击“确认并开始迁移”即确认上述迁移范围、排除项和关键假设。",starting:"正在启动迁移…",start:"确认并开始迁移"},Hue={closeAria:"关闭错误提示",loadFailed:"无法读取迁移数据,请重试。",refreshFailed:"无法刷新迁移状态,请重试。"},que={title:"终止当前迁移?",description:"终止后,当前分析或迁移进程将停止,已执行的步骤不会继续。"},MMe={common:Oue,optimization:Sue,projects:kue,framework:Eue,state:Cue,task:Tue,verification:Aue,transfer:_ue,validation:Nue,duration:jue,expiry:Rue,analysis:Iue,activity:Pue,artifact:Due,model:Mue,upload:Lue,deployment:$ue,workspace:Fue,actions:Bue,capability:Uue,conversation:Que,questions:zue,confirmation:Vue,errors:Hue,stopDialog:que},LMe=Object.freeze(Object.defineProperty({__proto__:null,actions:Bue,activity:Pue,analysis:Iue,artifact:Due,capability:Uue,common:Oue,confirmation:Vue,conversation:Que,default:MMe,deployment:$ue,duration:jue,errors:Hue,expiry:Rue,framework:Eue,model:Mue,optimization:Sue,projects:kue,questions:zue,state:Cue,stopDialog:que,task:Tue,transfer:_ue,upload:Lue,validation:Nue,verification:Aue,workspace:Fue},Symbol.toStringTag,{value:"Module"})),Wue={loading:"加载中…",searchLabel:"搜索{{label}}",searchPlaceholder:"搜索{{label}}",retry:"重试",noMatches:"没有匹配项",noOptions:"暂无可选项",selection:"{{label}}:{{value}}"},Kue={badge:"焕然一新",view:"查看新特性",title:"本次更新",defaultNotes:{multiRegion:"多地域智能体:并行加载北京与上海 Runtime,列表下滑即可继续加载。",switchAgent:"会话内切换:在输入框旁选择智能体,并直接开启一段新会话。",visualCanvas:"可视化执行画布:通过横向画布查看多智能体结构,并支持全屏浏览。"}},Gue={label:"新会话模式",agent:"智能体",skill:"技能定制",video:"视频创作"},Xue={select:"选择新会话模式",agent:{label:"Agent",description:"与当前选择的 Agent 对话"},builtin:{label:"内置智能体",description:"使用平台提供的智能体"},codex:{label:"Codex 智能体",description:"在沙箱中执行任务"},deepseekHarness:{label:"DeepSeek Harness",description:"打开 DeepSeek Harness 工作区"},arkClaw:"ArkClaw",hermes:"Hermes 智能体",checking:"正在检查配置",notConfigured:"管理员未配置",unavailable:"暂不可用"},Yue={select:"选择智能体",typesLabel:"智能体类型",listLabel:"{{type}}列表",types:{agent:"智能体",general:"通用智能体",codex:"Codex 智能体",deepseekHarness:"DeepSeek Harness",openclaw:"OpenClaw 智能体",hermes:"Hermes 智能体"},loading:"正在加载智能体",reload:"重新加载",empty:"暂无{{type}}",emptyLocal:"暂无本地智能体",emptyGeneral:"暂无通用智能体",createHint:"请前往智能体页创建",localHint:"请检查当前 Studio 启动目录",waking:"正在唤醒",opening:"正在打开",connecting:"正在连接",loadingMore:"加载中",loadMore:"加载更多",runtimeTimeout:"加载智能体超时(15 秒),请检查网络或 Runtime 服务后重试",loadGeneral:"加载通用智能体",loadType:"加载 {{type}}",connectGeneral:"连接通用智能体",openLocal:"打开本地智能体",openType:"打开 {{type}}",wakingHint:"正在唤醒智能体,可能需要一些时间。"},Zue={spaceAria:"技能空间",configuration:"技能定制配置",actions:{create:"技能生成",optimize:"技能优化"},selectAction:"选择技能定制方式",actionList:"技能定制方式",style:"风格",selectStyle:"选择风格",model:"模型",selectModel:"选择模型",styles:{concise:"简洁实用",strict:"严谨稳健",tutorial:"教程友好",automation:"自动化优先"},modelLoadFailed:"模型配置加载失败",spaceLoadFailed:"Skill Space 加载失败",skillLoadFailed:"Skill 加载失败",unnamedSpace:"未命名 Skill Space",space:"技能空间",select:"选择 Skill",selectAria:"选择 Skill:{{skill}}",loadingSpaces:"正在加载 Skill Space",reload:"重新加载",emptySpaces:"暂无 Skill Space",skillList:"{{space}} Skill 列表",loadingSkills:"正在加载 Skill",emptySkills:"暂无 Skill"},Jue={modes:{auto:"自动识别",text_to_video:"文生视频",reference_to_video:"参考素材生视频",video_editing:"视频编辑",video_extension:"视频续写",first_last_frame:"首尾帧生成"},taskNames:{auto:"视频生成",text_to_video:"文生视频",reference_to_video:"参考素材生视频",video_editing:"视频编辑",video_extension:"视频续写",first_last_frame:"首尾帧生成"},controls:{label:"视频创作配置",aspectRatio:"比例",selectAspectRatio:"选择比例",resolution:"清晰度",selectResolution:"选择清晰度",duration:"时长",durationShort:"{{count}} 秒",durationAria:"视频时长:{{count}} 秒",lastFrame:"尾帧",lastFrameHelper:"添加视频结束画面",assistImage:"辅助图片",referenceImage:"参考图片",assistImageHelper:"用于补充画面参考",imageHelper:"支持常见图片格式",referenceVideo:"参考视频",videoHelper:"支持常见视频格式",optional:"可选",replace:"更换",add:"添加",upload:"上传{{label}}",replaceFile:"更换{{label}}:{{name}}",removeFile:"移除{{label}} {{name}}",storageUnavailable:"管理员未配置持久化存储",loadingEnhancer:"正在加载增强模型",enhancerHint:"使用 {{model}} 模型进行意图识别和提示词增强",enhancerUnavailable:"增强模型不可用"},task:{title:"视频生成任务",closeAria:"关闭视频生成任务弹窗",progressAria:"视频生成进度",optimizedPrompt:"优化后的提示词",processingAria:"{{task}}处理进度",waitingAria:"{{status}},已等待{{elapsed}}",elapsed:"已等待 {{elapsed}}",previewAria:"生成结果预览",close:"关闭",download:"下载视频",retryOptimization:"重试提示词优化",retryGeneration:"重试视频生成",providerQueued:"等待模型调度",providerRunning:"模型生成中",providerSubmitting:"正在提交任务",queuedHint:"任务已提交,模型开始处理后状态会自动更新",runningHint:"这可能持续数分钟,完成后将在这里显示视频预览",backgroundHint:"可以关闭弹窗,任务会继续在后台运行",successHint:"视频已生成,可预览或下载",activationHint:"请先在模型控制台开通服务,再重试生成",retryHint:"修正问题后可重试当前步骤",steps:{optimizationFailed:"提示词优化失败",optimizationDone:"提示词优化完成",optimizationActive:"提示词优化中",generationDone:"{{task}}已完成",generationFailed:"{{task}}失败",generationQueued:"{{task}}排队中",generationRunning:"{{task}}生成中",generationActive:"{{task}}进行中",generationPending:"等待视频生成",generationComplete:"视频生成完成"},elapsedHours:"{{hours}}小时{{minutes}}分",elapsedMinutes:"{{minutes}}分{{seconds}}秒",elapsedSeconds:"{{seconds}}秒"}},ede={compactSelect:Wue,featureNotice:Kue,workspace:Gue,mode:Xue,agentPicker:Yue,skill:Zue,video:Jue},$Me=Object.freeze(Object.defineProperty({__proto__:null,agentPicker:Yue,compactSelect:Wue,default:ede,featureNotice:Kue,mode:Xue,skill:Zue,video:Jue,workspace:Gue},Symbol.toStringTag,{value:"Module"})),tde={cancel:"取消",close:"关闭",retry:"重试",tryAgain:"重新尝试",closeDialog:"关闭{{title}}",agentFallback:"{{agent}} 智能体",unknownSource:"未知来源"},nde={terminalTitle:"终端",browserTitle:"沙箱浏览器",terminalSubtitle:"连接当前 AgentKit Session 的交互式终端",browserSubtitle:"在当前 AgentKit Session 中查看与操作浏览器",connecting:"正在连接…",connected:"已连接",notConnected:"尚未连接",opening:"正在打开 {{title}}",connectingSession:"工具正在连接当前 AgentKit Session。",openFailed:"{{title}} 打开失败"},ide={title:"恢复 Codex 对话",subtitle:"选择当前 Sandbox Session 中最近更新的 Thread",loading:"正在读取历史对话",loadFailed:"历史对话读取失败",empty:"暂无可恢复的对话"},rde={title:"Codex 权限",subtitle:"设置会保存到当前 Sandbox Session,并同步到其中的所有 Thread",sandboxMode:"沙箱模式",approvalPolicy:"审批策略",approvalMethod:"审批方式",networkAccess:"允许网络访问",networkAccessHelp:"控制 workspace-write 与只读模式中的外部网络访问。",fullAccessWarning:"完全访问会关闭文件系统与网络隔离,请只在可信任务中使用。",save:"保存权限",sandboxChoices:{readOnly:{label:"只读",detail:"允许读取文件,不允许写入工作空间。"},workspaceWrite:{label:"工作区写入",detail:"允许在当前工作空间内读取与修改文件。"},fullAccess:{label:"完全访问",detail:"不启用沙箱隔离,适合明确可信的任务。"}},approvalChoices:{untrusted:{label:"仅不可信命令",detail:"只对 Codex 判断为不可信的操作发起审批。"},onRequest:{label:"按需审批",detail:"Codex 可在必要时请求你确认命令或文件修改。"},never:{label:"不审批",detail:"Codex 不会暂停并请求人工批准。"}},reviewerChoices:{user:{label:"由我审批",detail:"审批请求会显示在 Studio 中,由你决定。"},autoReview:{label:"自动审查",detail:"使用 Codex 自动审查流程处理审批请求。"}}},sde={title:"工作空间",subtitle:"选择当前 Codex Thread 执行命令与修改文件的目录",absolutePath:"绝对路径",browse:"浏览",parent:"上一级",empty:"当前目录没有子目录",locked:"当前对话已经开始,工作空间已锁定。新建 Sandbox 会话后可重新选择。",useDirectory:"使用此目录"},ade={fileTitle:"允许修改文件?",commandTitle:"允许执行命令?",subtitle:"Codex 正在等待你的决定",workingDirectory:"执行目录",decline:"拒绝",acceptOnce:"仅本次允许",acceptSession:"本会话允许"},ode={availableSkills:"可用 Skills",selectModel:"选择模型",commands:"Codex 快捷命令",currentModel:"当前:{{model}}",loadingSkills:"正在发现当前工作区的 Skills…",loadingModels:"正在读取模型…",noSkillMatches:"当前工作区没有匹配的 Skill",noModelMatches:"没有匹配模型,也可以直接输入模型 ID",noCommandMatches:"没有匹配的快捷命令",skillFallback:"加载并执行该 Skill",add:"添加",uploadImage:"上传图片",uploadDocument:"上传文档或 PDF",uploadVideo:"上传视频",openTerminal:"进入终端",viewBrowser:"查看浏览器",permissions:"Codex 权限",workspaceLocked:"对话已开始,工作空间已锁定",selectWorkspace:"选择工作空间",workspace:"Codex 工作空间",endpointCopied:"Endpoint 已复制",copyEndpoint:"复制 Sandbox Endpoint",continuePlaceholder:"继续说明你想实现或调整的内容",messagePlaceholder:"向 AgentKit 沙箱发送消息,输入 / 查看命令,输入 $ 调用 Skill…",stop:"停止生成",send:"发送"},lde={defaultName:"我的智能体",namedDefault:"我的 {{agent}}",creatingTitle:"正在创建 {{agent}} 智能体",failedTitle:"启动失败",createTitle:"创建 {{agent}} 智能体",fallbackError:"AgentKit 沙箱初始化失败,请稍后重新尝试。",creatingDescription:"正在创建并等待 {{agent}} 智能体就绪,这通常需要半分钟",name:"智能体名称",storageSize:"存储大小",storageHelp:"数据将持久化保存,可设置 {{min}}–{{max}} GiB。",persistent:"持久化",persistenceUnsupported:"当前环境不支持快照持久化",persistentHelp:"保留智能体数据,后续可继续使用。",temporaryHelp:"智能体将在 8 小时后清空",cancelCreation:"取消创建",confirm:"确认创建",retry:"重新尝试"},cde={activeAria:"Codex 智能体会话已开启",openAria:"开启 Codex 智能体会话",active:"Codex 智能体会话中",entry:"灵光一现",exit:"退出当前智能体",expired:"已到期",remainingHours:"剩余 {{hours}} 小时 {{minutes}} 分钟",remainingMinutes:"剩余 {{minutes}} 分钟",expiryWarning:"远端开发环境最长保留 8 小时,将于 {{expiry}} 到期({{remaining}});到期后清除对话和文件。",usingAgent:"当前您在使用 {{agent}} 智能体",activityAria:"Sandbox 操作记录",activity:"操作记录",tokenUsageAria:"Codex Token 用量",tokens:"{{label}}:{{value}} tokens",tokenLabels:{total:"总计",input:"输入",cachedInput:"缓存输入",output:"输出",reasoningOutput:"推理输出"}},ude={back:"返回智能体列表",subtitle:"{{agent}} 智能体详情",type:"智能体类型",status:"状态",createdBy:"创建人",snapshotStatus:"快照状态",toolType:"工具类型",createdAt:"创建时间",snapshotReason:"快照原因",expiresAt:"过期时间",snapshotId:"快照 ID",sessionId:"会话 ID",sourceSessionId:"来源 Session ID",delete:"删除智能体",waking:"唤醒中…",opening:"打开中…",wake:"唤醒智能体",open:"打开智能体",deleteTitle:"删除智能体?",deleteDescription:"将删除“{{name}}”及其保存的数据,此操作无法撤销。",deleting:"删除中…",confirmDelete:"确认删除",sleepingHint:"该智能体已休眠,进入时需要唤醒,可能需要一些时间。",wakingHint:"正在唤醒智能体,可能需要一些时间。",agentId:"智能体 ID"},dde={back:"返回智能体列表",createdBy:"创建人 {{creator}}",ariaLabel:"智能体工作区",main:"主界面",terminal:"终端",mainTitle:"{{agent}} 主界面",openingTerminal:"正在打开终端…",terminalTitle:"{{agent}} 终端"},fde={prompt:`使用 AgentKit Studio Plugin 端云接力当前会话、项目和任务。请直接执行,不要让我手动打开终端。 Studio:{{studioUrl}} 配对码:{{pairingCode}}`,installPrompt:`请安装 AgentKit Studio Plugin。请直接执行以下安装命令,不要让我手动打开终端。 -安装命令:{{command}}`,title:"接力到云端继续执行",description:"按顺序复制两段提示词,Codex 会通过插件将您的本地任务接力到云端",closeAria:"关闭本地迁移引导",installTitle:"安装插件",installDescription:"首次使用时,请选择一种安装方式。",copied:"已复制",copyInstallPrompt:"复制安装提示词",copyInstallCommand:"复制安装命令",installMethodAria:"插件安装方式",conversationInstall:"与 Codex 对话安装",terminalInstall:"从终端安装",taskTitle:"任务接力",taskDescription:"插件安装完成后复制,Codex 会迁移当前项目并继续执行任务。",copyHandoffPrompt:"复制接力提示词",generatingPairing:"正在生成新的配对码",pairingExpired:"配对码已过期",pairingRemaining:"配对码有效期剩余 {{countdown}}",refreshing:"刷新中",refreshPairing:"刷新配对码",pairingLoading:"正在生成配对码",pairingUnavailable:"配对码尚未生成。",statusAria:"端云接力状态",statusTitle:"接力状态",requestReceivedNamed:"已收到“{{name}}”的端云接力请求",requestReceivedCurrent:"已收到当前项目的端云接力请求",requestHelp:"复制接力提示词后,Codex 的请求会显示在这里。",entering:"正在进入",enterCodex:"进入 Codex",clipboardUnsupported:"当前浏览器不支持写入剪贴板。",steps:{request:"等待端侧请求",session:"创建云端 Session",restore:"恢复项目",continue:"发送续跑任务"},status:{issued:"等待请求",creating:"正在创建 Session",sessionCreated:"正在迁移项目",continuing:"正在启动云端任务",running:"云端执行中",completed:"接力完成",failed:"接力失败"}},ede={model:{description:"显示或切换当前对话模型",keywords:"模型 switch"},models:{description:"列出 app-server 可用模型",keywords:"模型列表 list"},skill:{description:"浏览并调用当前工作区可用的 Skill",keywords:"技能 workflow"},skills:{description:"浏览并调用当前工作区可用的 Skills",keywords:"技能列表 workflow list"},new:{description:"开始一个新对话",keywords:"新建 对话"},resume:{description:"打开历史会话或恢复指定 Thread",keywords:"历史 恢复 session"},fork:{description:"从当前上下文分叉一个新对话",keywords:"分叉 branch"},compact:{description:"压缩当前对话上下文",keywords:"压缩 上下文"},archive:{description:"归档当前对话并新建对话",keywords:"归档 关闭"},status:{description:"显示当前连接、Thread、模型与 Token 状态",keywords:"状态 连接 token"},clear:{description:"清空当前视图并开始新对话",keywords:"清空 重置"},help:{description:"显示 Sandbox 支持的快捷命令",keywords:"帮助 命令"},currentModel:"当前模型",availableModel:"可用模型",workspace:"工作空间",notSet:"未设置",modelLabel:"模型",statusLabel:"状态",running:"运行中",idle:"空闲",totalTokens:"累计 Token",contextWindow:"上下文窗口",imageFallback:"图片",unknown:"未知快捷命令:{{command}}。输入 /help 查看可用命令。",automaticSkills:"智能开发模式会自动使用开发能力,无需手动选择 Skill。",activity:{new:"已新建 Codex 对话",resumed:"已恢复 Codex 对话",deleted:"已删除 Codex 历史会话",modelChanged:"已切换 Codex 模型",availableModels:"Codex 可用模型",noModels:"当前没有可用模型",forked:"已分叉 Codex 对话",compacting:"已开始压缩当前 Codex 对话",archived:"已归档 Codex 对话",status:"Codex 当前状态",help:"Sandbox 支持的 Codex 快捷命令"}},tde={common:Que,tool:zue,threads:Vue,permissions:Hue,workspace:que,approval:Wue,composer:Gue,launch:Kue,session:Xue,agentDetails:Yue,agentWorkspace:Zue,handoff:Jue,commands:ede},OMe=Object.freeze(Object.defineProperty({__proto__:null,agentDetails:Yue,agentWorkspace:Zue,approval:Wue,commands:ede,common:Que,composer:Gue,default:tde,handoff:Jue,launch:Kue,permissions:Hue,session:Xue,threads:Vue,tool:zue,workspace:que},Symbol.toStringTag,{value:"Module"})),nde={retry:"重试",signInToContinue:"登录以继续使用",signInWith:"使用 {{provider}} 登录",enterUsername:"输入一个用户名即可开始",usernamePlaceholder:"用户名(字母 + 数字,最多 16 位)",enter:"进入",usernameInvalid:"只能包含大小写字母和数字,最多 16 位。",identityProvider:{volcengine:"火山引擎 Identity",byteplus:"BytePlus Identity"},powered:{volcengine:"火山引擎 AgentKit 提供企业级 Agent 解决方案",byteplus:"BytePlus AgentKit 提供企业级 Agent 解决方案"},legalPrefix:"继续即表示你已阅读并同意 AgentKit",terms:"产品和服务条款",copyright:"© {{year}} VeADK。保留所有权利。"},ide={title:"登录状态已过期",description:"当前编辑内容会保留。重新登录后,刚才的操作将自动继续。",waiting:"等待登录完成…",signInAgain:"重新登录"},rde={breadcrumbs:"面包屑",selectAgent:"选择 Agent",switchAgent:"切换智能体"},sde={cancel:"取消",close:"关闭确认框"},SMe={login:nde,authExpired:ide,navbar:rde,confirm:sde},kMe=Object.freeze(Object.defineProperty({__proto__:null,authExpired:ide,confirm:sde,default:SMe,login:nde,navbar:rde},Symbol.toStringTag,{value:"Module"})),ade={defaultUser:"用户",shortcuts:"快捷入口",tryCli:"体验 AgentKit CLI",developerResources:"开发者资源",systemInfo:"系统信息",language:"语言",issueFeedback:"问题反馈",logout:"退出登录",roles:{admin:"管理员",developer:"开发者",user:"普通用户"}},ode={home:"返回首页",expand:"展开侧边栏",collapse:"收起侧边栏",label:"主导航",newChat:"新会话",agents:"智能体",workspaces:"工作区",library:"资源库",cronjobs:"定时任务",automations:"自动化"},lde={title:"历史会话",newConversation:"新会话",create:"新建会话",loading:"正在加载历史会话…",empty:"暂无会话",current:"当前",manage:"管理历史会话:{{title}}",more:"更多",delete:"删除",loadingMore:"加载中…",loadMore:"加载更多",evaluatingTitle:"正在自动评测",evaluating:"评测中",generating:"正在生成"},EMe={account:ade,navigation:ode,history:lde},CMe=Object.freeze(Object.defineProperty({__proto__:null,account:ade,default:EMe,history:lde,navigation:ode},Symbol.toStringTag,{value:"Module"})),cde={placeholder:"请选择",collapseOptions:"收起模型选项",expandOptions:"展开模型选项",noOptions:"暂无可用选项",noMatches:"没有匹配项,可直接使用当前模型 ID"},ude={unsupportedActivity:"不支持的 Skill 对话活动",ariaLabel:"Skill 生成对话"},dde={code:"错误码:{{code}}",type:"错误类型:{{type}}",representation:"异常表示:{{value}}",rawResponse:`服务端原始响应: -{{value}}`,original:"原始错误:{{message}}",details:"详细信息"},fde={ariaLabel:"Skill 文件树",viewSource:"查看源码",viewPreview:"查看预览",download:"下载",binaryFile:"二进制文件",bytes:"{{value}} 字节",binaryDescription:"当前接口仅返回文件元数据,可单独下载原文件。",metadata:"Skill 元数据",noFiles:"暂无文件"},hde={close:"关闭",name:"名称",region:"地域",optionalDescription:"描述(可选)",cancel:"取消",create:"创建",creating:"创建中…",save:"保存",saving:"保存中…",upload:"上传",uploading:"上传中…",createSpaceTitle:"新建 Skill 空间",editSpaceTitle:"编辑 Skill 空间",uploadTitle:"上传到 {{name}}",createSpaceFailed:"创建 Skill 空间失败",updateSpaceFailed:"更新 Skill 空间失败",archiveValidationFailed:"Skill ZIP 格式校验失败",uploadFailed:"上传 Skill 失败",dropzone:"拖拽 Skill ZIP 到这里",chooseLocalFile:"或点击选择本地文件",archiveHelp:"ZIP 根目录需要包含 SKILL.md,也可以只包含一层包装目录。选择后仅检查格式,不会自动上传。",validating:"正在检查文件格式…",validationPassed:"格式检查通过:{{name}},共 {{count}} 个文件"},pde={styles:{concise:"简洁实用",strict:"严谨稳健",tutorial:"教程友好",automation:"自动化优先",custom:"自定义",customFallback:"自定义风格"},stages:{preparing:"正在准备 Dev Sandbox",ready:"Skill 已生成并通过格式校验",failed:"生成失败",cancelled:"已停止",validating:"正在校验 Skill 格式",packaging:"正在整理文件",generating:"正在生成 Skill",repairingAgain:"正在再次修复",autoRepairing:"正在自动修复({{attempt}}/{{max}})"},validation:{fallback:"Skill 格式校验未通过",repairInstruction:"只修复下面列出的 Skill 格式错误,不要改变原有用途和内容范围。",recheckInstruction:"修复后重新检查目录结构、SKILL.md frontmatter 和所有文本文件。",nameTooLong:"Skill 名称不能超过 64 个字符",invalidName:"Skill 名称只能包含小写字母、数字和连字符",modelTooLong:"模型 ID 不能超过 128 个字符",invalidModel:"模型 ID 只能包含字母、数字、点、下划线、连字符、斜杠和冒号"},errors:{loadCapability:"读取 Dev Sandbox 配置失败",autoRepair:"自动修复格式错误失败",pollCandidate:"读取候选方案状态失败,正在重试",createCandidate:"创建候选方案失败",refine:"继续调整失败",repairAgain:"再次修复格式错误失败",selectSpace:"请选择上传的 Skill Space",unsupportedRegion:"当前 Skill 地域不受支持",upload:"上传 Skill 失败",download:"下载失败"},sessionMax:"Session 最长保留 1 小时",remaining:"剩余 {{minutes}}:{{seconds}}",unnamedSpace:"未命名 Skill Space",leaveConfirmation:"离开后将停止并释放正在运行的 Dev Sandbox,确定离开吗?",createTitle:"创建技能",optimizeTitle:"优化 {{name}}",skillFallback:"技能",back:"返回技能空间",home:"主页技能生成",basicInfo:"基本信息",goal:"目标",createIntentPlaceholder:"描述希望这个 Skill 完成什么任务",optimizeIntentPlaceholder:"描述希望如何优化当前 Skill",skillName:"Skill 名称",autoNamePlaceholder:"留空时自动生成",nameHelp:"仅支持小写字母、数字和连字符;留空时自动生成。",createPlans:"生成方案",optimizePlans:"优化方案",createPlansDescription:"按不同方案并行生成多个技能,您可以选择最佳结果",optimizePlansDescription:"按不同方案并行优化当前技能,您可以选择最佳结果",plan:"方案 {{count}}",remove:"移除",model:"模型",modelPlaceholder:"选择或输入模型 ID",style:"风格",customStyle:"自定义风格",customStylePlaceholder:"描述表达方式、严谨程度或输出偏好",addConfiguration:"添加配置",notConfigured:"管理员未配置",generate:"生成",candidates:"候选方案",progress:"进度",retryCandidate:"重试此方案",formatValidationFailed:"格式校验未通过",repairAgain:"再次修复",files:"文件",downloadZip:"下载 ZIP",loadingFiles:"正在读取文件…",filesPending:"生成过程中会在这里显示完整文件树",uploadToSpace:"上传到 Skill Space",loadingSpaces:"正在加载 Skill Space",selectSpace:"选择 Skill Space",continuePlaceholder:"继续调整这个候选方案",continue:"继续调整",uploading:"上传中…",overwrite:"覆盖原 Skill",uploadToSelectedSpace:"上传到 Skill Space",uploadToCurrentSpace:"上传到当前空间",allCandidatesFailed:"所有方案均创建失败,可分别重试。"},mde={invalidFormat:"{{label}}格式错误。",recoveryStatus:"Skill 恢复点状态",errorResponse:"错误响应",errorDetails:"错误详情",missingContentType:"Content-Type 缺失",gatewayError:"{{fallback}}(HTTP {{status}},Content-Type: {{contentType}})。请检查代理或网关配置。",nonJson:"{{fallback}}:服务端返回非 JSON 响应(HTTP {{status}},Content-Type: {{contentType}}),请检查代理或网关配置。",activity:"Skill 会话活动",invalidActivity:"Skill 会话活动格式错误。",invalidToolActivity:"Skill 工具活动格式错误。",invalidTextActivity:"Skill 文本活动格式错误。",publication:"Skill 发布结果",task:"Skill 会话",file:"Skill 文件",unknownTaskState:"Skill 会话状态无法识别。",capability:"Skill 工作台能力",loadCapability:"读取 Skill 工作台能力失败",prepareTask:"准备 Skill 会话失败",taskReference:"Skill 会话引用",startOptimization:"开始优化 Skill 失败",startTask:"开始 Skill 会话失败",taskSummary:"Skill 会话摘要",taskList:"Skill 会话列表",loadTaskList:"读取 Skill 会话列表失败",invalidTaskList:"Skill 会话列表格式错误。",loadTask:"读取 Skill 会话失败",artifact:"Skill 产物",artifactFile:"Skill 产物文件",loadArtifact:"读取 Skill 产物失败",refine:"继续调整 Skill 失败",stop:"停止当前 Skill 任务失败",publish:"发布 Skill 失败",nonNdjson:"发布 Skill 失败:服务端返回了非 NDJSON 响应。",missingStream:"发布 Skill 失败:服务端没有返回进度流。",publishProgress:"发布进度",invalidPublishProgress:"发布进度格式错误。",publishError:"发布错误",unknownPublishEvent:"未知的发布进度事件。",publishResult:"发布结果",streamEnded:"发布进度流提前结束,无法确认发布结果。请刷新技能中心确认状态。",deleteTask:"删除 Skill 会话失败",download:"下载 Skill 失败"},gde={configSelect:cde,conversation:ude,errorDetails:dde,fileTree:fde,management:hde,generation:pde,api:mde},TMe=Object.freeze(Object.defineProperty({__proto__:null,api:mde,configSelect:cde,conversation:ude,default:gde,errorDetails:dde,fileTree:fde,generation:pde,management:hde},Symbol.toStringTag,{value:"Module"})),bde={back:"返回上一页",reload:"重新加载",notConfigured:"未配置",name:"名称",description:"描述",delete:"删除",save:"保存",saving:"保存中",add:"添加",manage:"管理",environment:"环境",noDescription:"暂无描述",refresh:"刷新",close:"关闭",retry:"重试",loading:"加载中…",previousPage:"上一页",nextPage:"下一页",edit:"编辑",all:"全部",search:"搜索",cancel:"取消",view:"查看",viewDetails:"查看详情",deleting:"删除中…",create:"创建",creating:"创建中",adding:"添加中",generating:"生成中",uploading:"上传中",preview:"预览",loadFailed:"加载失败",select:"选择",collapse:"收起",expand:"展开",none:"无"},yde={ariaLabel:"AgentKit 快速入口",closeAriaLabel:"关闭 AgentKit 欢迎卡片",title:"欢迎使用 AgentKit",description:"通过 AgentKit 平台快速构建与托管您的企业级智能体",docsAriaLabel:"打开 AgentKit 文档,在新窗口打开",docs:"文档",consoleAriaLabel:"打开 AgentKit 控制台,在新窗口打开",console:"控制台"},vde={checkUpdates:"检查更新",checkingVersions:"正在检查版本…",versionCheckError:"查询沙箱版本失败,请检查凭据、区域及接口权限后重试",sandboxUpdateError:"Sandbox 更新失败,请刷新检查实际状态后重试",modelEnvRepairUnavailable:"无法补齐模型环境变量,请检查 CODEX_API_KEY 和 CODEX_BASE_URL",updateSandbox:"更新{{variant}}{{name}}",updatingSandbox:"更新中",title:"系统信息",description:"查看当前 Studio 版本及关联的基础资源",general:"通用",currentVersion:"当前版本",storage:"存储",loadingStorage:"正在加载存储信息",tosAddress:"TOS 地址",openTosConsole:"在云控制台中打开 TOS 存储桶",environmentBuild:"环境构建",loadingEnvironmentResources:"正在加载环境构建资源",environmentResourcesError:"环境构建资源加载失败,请检查云凭据后重试。",codePipelineWorkspace:"CodePipeline 工作空间",codePipelinePipeline:"CodePipeline 流水线",openCodePipelineWorkspace:"在云控制台中打开 CodePipeline Workspace",createdOnFirstBuild:"首次构建时自动创建",containerRegistryRepository:"Container Registry 仓库",openContainerRegistryRepository:"在云控制台中打开 Container Registry 仓库",sandboxInfo:"沙箱信息",loadingSandboxInfo:"正在加载沙箱信息",sandboxInfoError:"沙箱信息加载失败,请重试。",snapshot:"快照版",snapshotWithSpace:"快照版 ",openToolConsole:"在云控制台中打开{{name}}",updateModelEnv:"更新{{variant}}{{name}}模型环境变量",modelEnvUpdated:"已更新",modelEnvAlreadyCurrent:"无需更新",userPool:"用户池",loadingUserPool:"正在加载用户池",userPoolError:"用户池加载失败,请重试。",modelEnvUpdateError:"模型环境变量更新失败,请重试。",openUserPoolConsole:"在云控制台中打开用户池{{name}}",unnamedUserPool:"未命名用户池",id:"ID",domain:"域名",region:"区域",noLocalUserPool:"本地模式未配置用户池",noUserPool:"当前 Studio 未配置用户池"},xde={workspace:"Agent 工作区",library:"Agent 库",evaluation:"评测",agentList:"Agent 列表",agentDetails:"Agent 详情",newAgent:"新建 Agent",loading:"加载中…",loadingCloudAgents:"正在加载云端 Agent…",noAgentSelected:"请选择一个 Agent",local:"本地",remote:"云端",localAgent:"本地 Agent",remoteAgent:"云端 Agent",agentCount:"{{count}} 个 Agent",agentCountLabel:"Agent 数量",details:"详情",chat:"对话",update:"更新",backToAgentList:"返回 Agent 列表",loadingAgent:"正在加载 Agent",loadingAgentDescription:"正在读取 Agent 配置和 Runtime 信息。",loadingAgentInfo:"正在加载 Agent 信息…",detailLoadFailed:"无法加载 Agent 详情",detailLoadFailedDescription:"请检查 Runtime 状态后重试。",partialInfoUnavailable:"部分信息暂时不可用",upgradeRuntimeForDetails:"请升级 Runtime 以查看完整 Agent 信息。",basicInfo:"基本信息",usageOverview:"使用概览",sections:{basic:"基本信息",usage:"使用概览",evaluations:"评测",optimizations:"优化建议",integrations:"集成",versions:"版本"},evaluationGroup:"评测组",optimizations:"优化建议",optimizationsDescription:"根据评测结果查看可执行的优化建议。",integrations:"集成",githubVersions:"GitHub 版本",githubVersionsDescription:"查看持续交付产生的版本并创建回退 PR。",currentVersionOnly:"当前未启用 GitHub 持续交付,仅展示当前生产版本。",loadingVersions:"正在加载版本…",noVersion:"暂无版本记录",prLink:"Pull Request",viewPr:"查看 PR",author:"提交人",publishStatus:"发布状态",viewRelease:"查看发布记录",rollbackToVersion:"回退到此版本",rollingBack:"正在创建回退…",rollbackEvent:"回退事件",sourceMergedRuntimeStill:"最新源码已合并,但 Runtime 仍处于",currentProductionVersionHint:";当前生产版本保持不变。",usageSummary:"使用统计",totalCalls:"总调用次数",userCount:"用户数",userDetails:"用户明细",usageUserList:"Agent 使用用户列表",user:"用户",callCount:"调用次数",lastUsed:"最近使用",unknownUser:"未知用户",loadingUsage:"正在加载使用数据…",refreshing:"刷新中…",noUsage:"暂无使用记录",usageUnavailable:"当前 Agent 暂无可用的使用统计。",usagePagination:"使用记录分页",pageOf:"第 {{page}} / {{total}} 页",notProvided:"暂未提供",integrationMethods:"集成方式",integrationDescription:"通过 Runtime API 或 A2A 协议集成当前 Agent。",integrationProtocol:"集成协议",runtimeStatus:"Runtime 状态",executionFlow:"执行流程",probingIntegration:"正在检测集成能力",probingIntegrationDescription:"正在读取可用端点和鉴权配置。",configurationStatus:"配置状态",discoveryEndpoint:"发现端点",invocationEndpoint:"调用端点",invocationUrl:"调用地址",authentication:"鉴权方式",networkAccess:"网络访问",notAvailable:"暂无",noAuthentication:"无需鉴权",noApiKeyRequired:"无需 API Key",usesOauthJwt:"使用 OAuth / JWT",showApiKey:"显示 API Key",hideApiKey:"隐藏 API Key",pythonExample:"Python 示例",deploymentConfig:"部署配置",deploymentConfigDescription:"确认实例和运行配置后更新 Runtime。",deploymentRegion:"部署区域",concurrency:"并发数",selectedOptimizations:"已选优化项",selectedOptimizationsDescription:"这些优化会应用到本次更新。",optimizationProfile:"优化方案",updatePending:"等待更新",updatingDeployment:"正在更新部署",restoringUpdateConfig:"正在恢复更新配置…",updateConfigUnavailable:"无法读取更新配置",legacyConfigMissing:"旧版本 Runtime 缺少可恢复的配置,请重新创建。",deploymentFailed:"部署失败",continueEditing:"继续编辑",loadingOptimizations:"正在加载优化建议…",noOptimizations:"暂无优化建议",fixPriority:"优先级",suggestedModule:"建议模块",suggestionAndReason:"建议与原因",priority:{high:"高",medium:"中",low:"低"},modules:{agentStructure:"Agent 结构",prompt:"提示词",tool:"工具",knowledge:"知识库",memory:"记忆",workflow:"工作流",other:"其他"},evaluationGroupList:"评测组列表",newEvaluationGroup:"新建评测组",newEvaluationGroupName:"新评测组 {{count}}",searchEvaluationGroups:"搜索评测组",noMatchingEvaluationGroups:"没有匹配的评测组",noEvaluationGroupSelected:"请选择一个评测组",groupStats:"{{agents}} 个 Agent · {{runs}} 次运行",evaluationGroupDetails:"评测组详情",evaluationGroupStats:"{{agents}} 个 Agent · {{caseSet}} · {{runs}} 次运行",startEvaluation:"开始评测",evaluationConfig:"评测配置",historyResults:"历史结果",participatingAgents:"参与 Agent",selectedCount:"已选择 {{count}} 个",evaluationResources:"评测资源",evaluationSet:"评测集",evaluator:"评估器",caseCount:"{{count}} 条案例",evaluationMetrics:"评测指标",selectedMetricCount:"已选择 {{count}} 项",historyDescription:"查看每次评测的分数和运行状态。",noHistory:"暂无评测历史",noHistoryDescription:"运行一次评测后,结果会显示在这里。",evaluationRun:"第 {{index}} 次评测",evaluationRunMeta:"{{time}} · {{agents}} 个 Agent",overallScore:"综合分",completed:"已完成",evaluationDefaults:{coreRegression:"核心能力回归",safetyCheck:"安全与幻觉检查",coreSet:"核心回归集",safetySet:"安全边界集",toolSet:"工具调用集",qualityEvaluator:"综合质量评估器",factualEvaluator:"事实一致性评估器",toolEvaluator:"工具调用评估器",responseQuality:"回答质量",factualAccuracy:"事实准确性",toolUse:"工具调用",responseEfficiency:"响应效率",todayTime:"今天 10:32",yesterdayTime:"昨天 16:08",julyTime:"7 月 25 日 14:20",justNow:"刚刚"},defaultCases:{agentName:"示例 Agent",goodSetName:"示例正向案例集",badSetName:"示例负向案例集",weeklyFeedback:{input:"总结本周客户反馈,并按优先级归类。",output:"覆盖主要问题,给出清晰的优先级与下一步动作。",tag:"总结",reason:"任务完整覆盖了用户目标,输出结构清晰,并给出了可执行的下一步动作。"},research:{input:"查询最新公开资料并附上来源。",output:"调用搜索工具,结论与引用一一对应。",tag:"工具调用"},uncertainConclusion:{input:"在信息不足时直接给出确定结论。",output:"应明确说明未知,并主动询问缺失信息。",tag:"幻觉",reason:"信息不足时仍给出了确定结论,缺少必要的澄清步骤与不确定性说明。"},repeatedTool:{input:"连续重复调用相同工具获取同一结果。",output:"复用已有结果,避免无意义的重复调用。",tag:"效率"}},goodCases:"正向案例",badCases:"负向案例",goodCase:"正向案例",badCase:"负向案例",reference:"参考答案",caseResultFilter:"案例结果筛选",feedbackSourceFilter:"反馈来源筛选",searchCases:"搜索案例",searchCasesPlaceholder:"搜索输入、输出或标签",selectCases:"选择案例",selectAll:"全选",selectAllVisible:"选择当前可见案例",selectedCaseCount:"已选择 {{count}} 条",deleteSelected:"删除所选",deleteSelectedTitle:"删除所选 Agent",deleteSelectionDescription:"确定删除所选的 {{count}} 个项目吗?此操作无法撤销。",deleteCasesConfirm:"删除所选案例",deleteOneCaseConfirm:"删除这个案例",deleteFeedbackCase:"删除反馈案例",noFeedbackCases:"暂无反馈案例",noMatchingCases:"没有匹配的案例",loadingEvaluationSet:"正在加载评测集…",userInput:"用户输入",agentOutput:"Agent 输出",score:"得分",scoreReason:"评分原因",noUserInput:"暂无用户输入",noVisibleResponse:"暂无可见回复",note:"备注:",manualFeedback:"人工反馈",automaticFeedback:"自动反馈",scoreValue:"{{score}} 分",unknownTime:"时间未知",deleteAgentTitle:"删除 Agent",deleteAgentDescription:"确定删除 Agent“{{name}}”吗?",deleteDraftDescription:"确定删除草稿“{{name}}”吗?",deleteAgent:"删除 Agent",closeDeleteConfirmation:"关闭删除确认",draftDeletionWarning:"草稿将从当前浏览器中删除。",runtimeDeletionWarning:"Runtime 和相关云端资源将被删除。",noneSelected:"尚未选择",none:"无",notPublished:"未发布",notRecorded:"未记录",noTime:"暂无时间",noPr:"暂无 PR",comingSoon:"评测能力即将开放",preparing:"准备中",cancelled:"已取消",failed:"失败",totalCount:"共 {{count}} 条",deploymentProgress:"部署进度",returnToEdit:"返回编辑",buildLog:"构建日志",githubMountLog:"GitHub 挂载日志",githubDeliveryMountLog:"GitHub 持续交付挂载日志",waitingBuildLog:"正在等待构建日志…",waitingGithubMountLog:"正在等待 GitHub 挂载日志…",copy:"复制",copied:"已复制",copyLabel:"复制{{label}}",copiedLabel:"已复制{{label}}",logLines:"{{count}} 行",logStatus:{synced:"已同步",failed:"读取失败",syncing:"同步中",earlyOmitted:"已省略早期日志",recentOnly:"仅显示最近的构建日志",partiallyOmitted:"已省略部分日志"},deployStatus:{running:"正在部署",unconfirmed:"部署状态待确认",success:"部署完成",error:"部署失败",cancelled:"部署已取消"},deploymentSteps:{prepare:{label:"准备部署",description:"校验配置并创建部署任务"},build:{label:"构建镜像",description:"生成运行环境与智能体代码"},deploy:{label:"部署服务",description:"创建并启动 AgentKit Runtime"},publish:{label:"发布服务",description:"等待服务就绪并生成访问地址"},complete:{label:"部署完成",description:"智能体已可以正常使用"},evaluation:{label:"创建评测集",description:"自动创建 Good Case 和 Bad Case 评测集"},github:{label:"挂载 GitHub 持续交付",description:"初始化目标分支与 GitHub Actions workflow"},update:{label:"更新实例配置",description:"将 Runtime 实例数调整为 {{min}}~{{max}}"}},githubStatus:{published:"已发布",publishing:"发布中",failed:"发布失败",pending:"等待发布",unknown:"未知"},errors:{agentInfoMissing:"Agent 信息不可用",checkUpdateCapability:"无法检查更新能力",checkingUpdateConfig:"正在检查更新配置",cloudOnlyUpdate:"仅云端 Agent 支持更新",deleteDeployedUnsupported:"当前不支持删除已部署 Agent",deleteDraftUnsupported:"当前不支持删除草稿",loadAgentInfo:"无法加载 Agent 信息",loadApiKey:"无法读取 API Key",loadGithubVersions:"无法加载 GitHub 版本",loadEvaluations:"无法加载评测案例",loadOptimizations:"无法加载优化建议",loadRuntimeDetails:"无法加载 Runtime 详情",loadUsage:"无法加载使用数据",noCreatePermission:"当前账号没有创建 Agent 的权限",noManagePermission:"当前账号没有管理此 Agent 的权限",originalConfigUnavailable:"原始配置不可用",probeIntegration:"无法检测集成能力",rollbackVersion:"无法创建版本回退",runtimeRegionMissing:"Runtime 区域信息缺失",updateCapabilityMismatch:"Runtime 更新能力与当前配置不匹配",updateCapabilityPending:"Runtime 更新能力仍在确认中",updateConfigRestoring:"正在恢复更新配置",updateUnsupported:"当前 Runtime 不支持更新",usageMismatch:"返回的使用数据与当前 Agent 不匹配"}},wde={title:"环境",loadFailed:"环境加载失败,请检查存储配置后重试。",create:"新建环境",configure:"配置环境",details:"环境详情",editorDescription:"配置运行环境,或接入代码仓库和已有镜像",backToList:"返回环境列表",save:"保存环境",createAndBuild:"创建并构建",saveAndBuild:"保存并构建",name:"环境名称",namePlaceholder:"Python 数据处理",descriptionPlaceholder:"说明这个环境适合处理的任务",creationMethod:"创建方式",baseConfiguration:"基础配置",baseEnvironment:"基础环境",operatingSystem:"操作系统",pythonVersion:"Python 版本",fixedByBase:"由 {{base}} 固定为 {{value}}",selectUbuntuVersion:"选择基础镜像的 Ubuntu 版本",selectPythonVersion:"选择需要安装的 Python 版本",skills:"技能",addSkill:"添加环境技能",veadkDescription:"Agent 开发与运行框架",customDockerfile:"自定义 Dockerfile",presetEnvironment:"预制环境",presetHint:"选择“无”可自行填写 Dockerfile 第一行的基础镜像。",dockerfileSize:"{{size}} / {{max}} 字节",upload:"上传",reset:"重置",dockerfileBaseImage:"Dockerfile 基础镜像",dockerfileContent:"Dockerfile 内容",region:"区域",search:"搜索环境",manualImport:"手动导入",noMatches:"没有匹配的环境",tryAnotherName:"请尝试搜索其他名称",startBuild:"开始构建",build:"构建",unnamed:"未命名环境",listSeparator:"、",clipboardReadError:"未能读取剪贴板。请允许剪贴板权限,或点击“导入环境”后手动粘贴分享码。",clipboardUnsupported:"当前浏览器无法自动读取剪贴板;请点击“导入环境”后手动粘贴分享码。",creation:{custom:{label:"自定义配置",description:"通过表单选择基础环境、Python、工具和技能"},dockerfile:{label:"自定义 Dockerfile",description:"上传或直接编辑 Dockerfile"},git:{label:"从代码仓库构建",description:"探查公开仓库并通过 CodePipeline 构建"},image:{label:"使用已有镜像",description:"绑定由外部流水线交付的 CR 镜像"}},baseDescriptions:{"aio-sandbox":"内置 Sandbox Shell 能力 · Ubuntu 22.04","codex-sandbox":"内置 Codex CLI、浏览器与代码执行环境",ubuntu:"标准 Linux 基础镜像"},dockerfileValidation:{baseImageRequired:"请填写基础镜像。",duplicateFrom:"基础镜像已固定在第一行,请删除 Dockerfile 正文中的 FROM 指令。",tooLarge:"Dockerfile 不能超过 128 KiB。",empty:"Dockerfile 内容不能为空。",missingFrom:"Dockerfile 缺少 FROM 指令。"},presets:{none:"自行填写 Dockerfile 基础镜像",aio:"内置 Sandbox Shell 与常用运行时",codex:"内置 Codex CLI、浏览器与代码执行环境"},categories:{tools:"工具",productivity:"效率",browser:"浏览器自动化",system:"系统与媒体"},options:{"lark-cli":"飞书开放平台命令行工具",pandoc:"文档格式转换工具",opencli:"将网站与桌面应用转换为命令行工具",uv:"快速 Python 包与项目管理器",ripgrep:"高性能文本检索工具",jq:"JSON 查询与转换工具","github-cli":"在终端中管理 GitHub 工作流",playwright:"浏览器自动化与端到端测试",chromium:"无头浏览器运行时",git:"代码版本管理",curl:"网络请求与文件下载",ffmpeg:"音视频转码与处理",imagemagick:"图片转换与批处理"},duration:{seconds:"{{count}} 秒",minutesSeconds:"{{minutes}} 分 {{seconds}} 秒",hoursMinutes:"{{hours}} 小时 {{minutes}} 分"},buildStatus:{preparing:"准备中",queued:"排队中",building:"构建中",scanning:"扫描中",available:"可用",failed:"构建失败",notBuilt:"未构建"},manifest:{title:"环境 Manifest",closeLabel:"关闭环境 Manifest",loading:"正在加载 Manifest",editorLabel:"环境 Manifest YAML",copyFailed:"复制失败,请重试",copied:"已复制",copy:"复制 Manifest",view:"查看环境 Manifest",viewShort:"查看 Manifest",unavailable:"尚无可用 Manifest"},buildDetails:{title:"构建详情",closeLabel:"关闭构建详情",currentStep:"当前步骤",waiting:"等待构建信息",elapsed:"已用时",sourceCommit:"源码提交",openCodePipeline:"在 CodePipeline 中查看",starting:"正在启动",rebuild:"重新构建"},git:{sectionLabel:"公开代码仓库",address:"Git 地址",ref:"Branch、Tag 或 Commit",defaultBranch:"默认分支",inspecting:"正在拉取仓库并查找 Dockerfile",foundDockerfiles:"已在提交 {{commit}} 中找到 {{count}} 个 Dockerfile。",savedDockerfileLoaded:"已载入保存的 Dockerfile,可重新探查仓库更新。",noDockerfile:"仓库中未找到 Dockerfile,请检查分支或仓库内容。",inspectAgain:"重新探查",selectDockerfile:"选择 Dockerfile"},repository:{outputSection:"构建输出",type:"镜像仓库类型",managed:"Studio 默认镜像仓库",existing:"已有镜像仓库",managedHint:"构建时自动创建或复用当前区域的 Studio 镜像仓库。"},existingImage:{sectionLabel:"已有镜像",reference:"Tag 或 Digest",placeholder:"latest 或 sha256:...",hint:"填写镜像 Tag,或以 sha256: 开头的完整 Digest。"},share:{action:"分享",title:"分享环境",closeLabel:"关闭分享环境",generating:"正在生成并复制分享码",copied:"分享码已复制",failed:"分享失败",code:"分享码",fullCode:"完整环境分享码",copiedHint:"分享码已自动复制,也可在这里查看或手动复制。",copyFailedHint:"自动复制失败,可手动复制上方分享码,或重试。",safety:"分享码可能包含环境配置与本地 Skill 内容,请仅发送给可信对象。",copyAgain:"再次复制"},import:{title:"导入环境",closeLabel:"关闭导入环境",description:"先检测分享码中的环境,再确认添加到当前账号。",code:"环境分享码",tooMany:"最多可一次导入 {{max}} 个环境,当前检测到 {{count}} 个分享码。",multipleHint:"多个分享码可使用英文逗号、中文逗号或换行分隔,重复项会自动忽略。",safety:"分享码可能包含环境配置与本地 Skill 内容,请仅导入可信来源的分享码。",inspectingCodes:"正在检测环境分享码",found:"检测到 {{count}} 个环境:{{names}}。",itemError:"第 {{index}} 个分享码:{{error}}",invalidCode:"分享码无效。",noResult:"服务未返回该分享码的导入结果。",partial:"已导入 {{created}} 个环境,{{remaining}} 个未完成,可重试有效失败项。",inspecting:"正在检测",importing:"正在导入",retryImport:"重试导入",confirm:"确认导入",inspectCodes:"检测分享码"},status:{boundImage:"环境“{{name}}”已绑定已有镜像",queued:"环境“{{name}}”已进入构建队列",savedBuildFailed:"环境已保存,但构建未启动:{{error}}",importedFailed:"已导入 {{created}} 个环境,{{failed}} 个失败",importedDuplicate:"已导入 {{created}} 个环境,{{duplicate}} 个分享码已存在",imported:"已导入 {{count}} 个环境",deleted:"已删除环境“{{name}}”"},deleteTitle:"删除环境",deleteDescription:"确定删除环境“{{name}}”吗?删除后无法恢复。",errors:{repositoryRequired:"请输入公开代码仓库地址。",repositoryHttps:"请输入公开仓库的 HTTPS 地址。",repositoryInvalid:"请输入有效的公开仓库 HTTPS 地址。",imageReferenceWhitespace:"Tag 或 Digest 不能包含空格。",imageDigestInvalid:"Digest 必须是完整的 sha256 值。",imageTagOnly:"这里只填写 Tag,不要重复填写镜像仓库路径。"}},Ode={searchPlaceholder:"搜索资源名称",emptyMessage:"暂无可用选项",searchAriaLabel:"搜索{{label}}",loadingMore:"正在加载更多资源…"},Sde={retryDeployment:"重试部署",retrying:"正在重试…",collapse:"收起错误信息",expand:"展开完整错误信息",copy:"复制完整错误信息"},kde={steps:"构建步骤",log:"构建日志",syncing:"同步中",loadFailed:"读取失败",synced:"已同步",recentOnly:" · 仅显示最近日志",copiedLog:"已复制构建日志",copyLog:"复制构建日志",copied:"已复制",copy:"复制",logContent:"构建日志内容",waiting:"正在等待 CodePipeline 输出日志…",empty:"暂无构建日志"},Ede={defaultLabel:"Studio 默认环境",defaultDescription:"使用 Studio 预置的标准运行环境",status:{notBuilt:"未构建",preparing:"准备中",queued:"排队中",building:"构建中",scanning:"扫描中",available:"可用",failed:"失败"},label:"运行环境",placeholder:"请选择运行环境",search:"搜索运行环境",loading:"正在加载运行环境…",loadFailed:"加载运行环境失败",noMatches:"未找到匹配的运行环境",unavailable:"当前没有可用的运行环境",selectionUnavailable:"所选运行环境当前不可用,请重新选择。",selectionHint:"选择构建完成的运行环境后,部署将使用其镜像和工具配置。",versionChanged:"所选环境版本已更新,请确认后继续。",versionMissing:"所选环境版本已不存在,请重新选择。",operatingSystem:"操作系统",language:"语言",image:"镜像",imageVersion:"镜像版本",skills:"技能",tools:"工具",noSkills:"未配置 Skill",noExtraTools:"未配置额外工具",defaultGuidance:"默认环境由 Studio 管理,无需额外配置。",persistenceFallback:"持久化环境服务暂不可用,当前使用默认环境。",emptyFallback:"当前没有可选择的自定义环境。"},Cde={repository:"GitHub 仓库",githubUrl:"GitHub 地址",token:"访问令牌",sessionToken:"{{provider}} 临时令牌",runtime:"Runtime",commit:"提交",workflow:"工作流",syncFailed:"同步 GitHub 代码失败",status:{mounted:"已挂载",bound:"已绑定",synced:"已同步",created:"已创建"},volcengine:"火山引擎",mountDelivery:"挂载持续交付",selectedForDeployment:"已选择,部署时挂载",mountOnDeploy:"部署时挂载持续交付",syncCode:"同步代码",deliveryMode:"GitHub 交付模式",sourceSync:"GitHub 代码同步",delivery:"GitHub 交付",loading:"读取中",running:"执行中",runtimeDeliveryHint:"写入 AgentKit Runtime GitHub Actions workflow,后续 GitHub 提交会更新绑定 Runtime。",initialDeliveryHint:"首次部署成功后初始化目标分支,后续 GitHub 提交会更新绑定 Runtime。",sourceSyncHint:"Studio 会直接 push 到目标分支;该分支由 Studio 管理,远端冲突时同步会失败。Runtime 仍由部署按钮发布。",tokenPlaceholder:"repo 或 contents write 权限",getToken:"获取 Token",hideToken:"隐藏 Token",showToken:"显示 Token",tokenHelp:"Token 仅用于本次操作,成功后不会保留在表单中。",targetBranch:"目标分支",actionsSecretPlaceholder:"用于写入 GitHub Actions Secret",sessionTokenPlaceholder:"临时凭证可选",syncing:"同步中…",pendingHint:"已选择挂载持续交付。点击部署后,Studio 会等待 Runtime 创建完成并初始化 GitHub 目标分支,初始化成功后才完成部署流程。",result:{deliveryMounted:"已挂载持续交付",deliverySelected:"已选择挂载持续交付",githubBound:"已绑定 GitHub",codeSynced:"代码已同步",deliveryHint:"目标分支提交会触发 Runtime 持续交付。",boundHint:"更新并发布时会先同步当前源码到这个分支。"},branch:"分支",viewPr:"查看 PR",createFailed:"创建失败",phase:"阶段",log:"日志"},Tde={name:"飞书",enabling:"正在启用并更新配置…",description:"接收消息并通过飞书机器人回复",configuration:"飞书配置",configurationMode:"飞书配置方式",automatic:"自动配置",manual:"手动配置",cancelling:"取消中…",scanToCreate:"扫码创建",scanDescription:"授权后自动回填凭据",generateQrCode:"生成二维码",qrCodeAlt:"飞书机器人配置二维码",scanToConfirm:"飞书扫码确认",expiresIn:"{{time}} 后失效",created:"机器人已创建",credentialsFilled:"应用凭据已自动回填",qrCodeExpired:"二维码已失效",automaticFailed:"自动配置失败",regenerateQrCode:"请重新生成二维码。",configuredPlaceholder:"已配置,留空沿用",appSecretPlaceholder:"请输入 App Secret",hideSecret:"隐藏 App Secret",showSecret:"显示 App Secret"},Ade={mode:{auto:"自动创建",autoDescription:"部署时自动创建所需资源",recommended:"推荐",create:"指定名称",createDescription:"使用指定名称创建或复用资源",existing:"选择已有",existingDescription:"从当前账号的已有资源中选择"},selectExisting:"请选择已有资源",searchResource:"搜索资源名称",noMatch:"未找到匹配资源",noAvailable:"暂无可用资源",searching:"正在搜索云资源…",loading:"正在加载云资源…",noMatchSentence:"未找到匹配资源。",noAvailableSentence:"暂无可用资源。",loadedSummary:"实际服务区域:{{region}} · 已加载 {{loaded}}{{total}}",registryInstance:"Registry 实例",registryAriaLabel:"镜像仓库 Registry 实例",namespace:"命名空间",namespaceAriaLabel:"镜像仓库 Namespace",repository:"镜像仓库",existingRepository:"已有镜像仓库",selectRegistryFirst:"请先选择 Registry 实例。",selectNamespaceFirst:"请先选择 Namespace。",configurationMode:"配置方式",configurationModeAriaLabel:"{{resource}}配置方式",selectConfigurationMode:"请选择配置方式",automaticNames:"自动创建名称",validation:{tos:"请填写或选择 TOS 存储桶。",cr:"请完整填写或选择 CR 实例、命名空间和镜像仓库。",codePipeline:"请完整填写或选择 CodePipeline Workspace 和 Pipeline。",existingCodePipeline:"请选择已有的 CodePipeline Workspace 和兼容 Pipeline。"},autoBucketWithRegion:"agentkit-platform-{账号 ID}-{{region}}",autoBucket:"agentkit-platform-{账号 ID}",tosBucket:"TOS 存储桶",bucketName:"存储桶名称",bucketNamePlaceholder:"输入存储桶名称",existingBucket:"已有存储桶",existingTosBucket:"已有 TOS 存储桶",bucket:"存储桶",accountIdResolved:"账号 ID 在部署时按当前云账号解析。",containerRegistry:"容器镜像仓库(CR)",instanceName:"实例名称",crInstance:"CR 实例",existingCrInstance:"已有 CR 实例",existingCrNamespace:"已有 CR 命名空间",existingCrRepository:"已有 CR 镜像仓库",autoRegistry:"agentkit-platform-{账号 ID}",autoRepositoryName:"{{name}}-{4 位随机字符}",registryNameNote:"账号 ID 在部署时解析,镜像仓库的随机字符在部署时生成。",workspace:"工作空间",pipeline:"流水线",workspaceName:"Workspace 名称",pipelineName:"Pipeline 名称",existingWorkspace:"已有 CodePipeline Workspace",compatiblePipeline:"兼容 Pipeline",existingPipeline:"已有 AgentKit CodePipeline",pipelineNameNote:"Pipeline 与 Runtime 名称一致。"},_de={commit:"提交",steps:{permissions:"预检 OTA 所需权限",resolving:"读取目标版本信息",downloading:"下载并校验完整更新包",preparing:"准备 VeFaaS Function 代码",provisioning:"检查并补齐 Studio 云资源",scheduler:"更新定时任务调度服务",submitting:"提交 Function 更新",publishing:"发布新 Revision 并重启服务"},stages:{permissions:"预检 OTA 权限",resolving:"读取版本信息",downloading:"下载更新包",preparing:"准备 Function 代码",provisioning:"补齐 Studio 云资源",scheduler:"更新定时任务调度服务",submitting:"提交 Function 更新",publishing:"发布 Revision",checking:"检查更新",unknown:"未知阶段"},duration:{seconds:"{{count}} 秒",minutesSeconds:"{{minutes}} 分 {{seconds}} 秒"},logPermissionPrefix:"无法读取 VeFaaS 发布日志。Function 角色缺少 ",logPermissionSuffix:" 权限,更新会继续。",openIamConsole:"前往 IAM 控制台配置权限",deploymentProgress:"部署进度",live:"实时",completed:"已完成",stopped:"已停止",copied:"已复制",copyFailed:"复制失败",copyLog:"复制日志",waitingForLogs:"等待 VeFaaS 返回更新日志…",noLogs:"本次更新未返回发布日志",messages:{updated:"Studio 已更新,新 Revision 已接管服务",failed:"Studio 更新失败",timeout:"等待 VeFaaS 发布超时,请稍后重新检查版本",submitted:"更新已提交,正在等待 VeFaaS 发布新版本",connectionSwitched:"连接已切换,正在确认新版本状态"},checkingPermissions:"正在检查 OTA 权限",authorizationRequired:"需要 IAM 授权",updating:"正在更新 Studio",updated:"Studio 已更新",updateToVersion:"更新 Studio 至 {{version}}",checkPermissions:"检查更新权限",authorizationNeeded:"需要授权",updatingShort:"正在更新",refreshForNewVersion:"刷新使用新版",updateFailed:"更新失败",updateNow:"立即更新",newVersionAvailable:"有新版更新",dialog:{failed:"Studio 更新失败",checkingPermissions:"正在检查更新权限",authorizationRequired:"需要 IAM 授权",updating:"正在更新 Studio",completed:"Studio 更新完成",newVersion:"发现新版本"},permissionCheck:"正在核对 OTA 与定时任务所需的全部 IAM 权限…",permissionCheckHint:"权限全部满足后才会开始下载、更新或发布云资源。",missingPermissionCount:"当前 Function 角色缺少 {{count}} 项 OTA 更新权限,尚未执行任何云资源变更。",functionRole:"Function 角色",currentRole:"当前运行角色",policyToUpdate:"将更新策略",authorizationSteps:{open:"打开授权页面,确认已预填的策略名称和完整策略内容。",debug:"点击页面中的“发起调试”,完成策略更新。",return:"返回此窗口,点击“我已授权,重新检查”。"},missingPermissions:"缺少的权限",openPrefilledAuthorization:"打开已预填的 IAM 授权页面",openIamManually:"前往 IAM 控制台手动配置",noSafePolicy:"当前角色没有唯一可安全更新的自定义策略,请由管理员将上述权限加入该角色。",failedStage:"失败阶段",errorId:"错误 ID",notGenerated:"未生成",openFunctionLogs:"前往 VeFaaS 控制台查看 Function 日志",targetVersion:"目标版本",updateStatus:"更新状态",elapsed:"已用时",progressAriaLabel:"Studio 更新进度",processingUpdate:"正在处理更新",processing:"正在处理",backgroundHint:"发布阶段会短暂中断连接;关闭此窗口不会停止更新,可随时点击右上角按钮重新查看。",confirmDescription:"更新会重启 Studio 服务,预计约 3–5 分钟完成更新与发布。期间正在进行的对话、流式响应或部署任务可能中断,登录态不会受到影响。",selectVersion:"选择版本",currentVersion:"当前版本",changelog:"更新内容",noChangelog:"暂无更新说明",runInBackground:"后台运行",authorizedRecheck:"我已授权,重新检查",tryAgain:"重新尝试"},Nde={deploy:"部署",update:"更新",planHash:"方案哈希",backToConfiguration:"返回配置",releaseRegion:"发布区域",deployRegion:"部署区域",regionPreserved:"更新时沿用现有 Runtime 的部署区域,无法修改。",unnamedAgent:"未命名 Agent",deployTitle:"部署 {{name}}",additionalAgentCount:" 等 {{count}} 个智能体",releaseOverview:"发布概览",agentOverview:"Agent 概览",agentCount:"Agent 数量",model:"模型",systemPrompt:"系统提示词",optimizations:"优化选项",notEnabled:"未启用",effectiveCapabilities:"生效能力",automaticProtection:"自动保护",artifactActions:"发布产物操作",exportYaml:"导出 YAML",viewSource:"查看源代码",downloadSource:"下载源代码",expandFlow:"放大查看执行流程",expand:"放大查看",deploymentConfiguration:"部署配置",runtimeName:"Runtime 名称",runtimeNamePreserved:"更新时保持现有 Runtime 名称不变。",runtimeNameHint:"默认根据 Root Agent 名称生成,并添加随机后缀避免重名;支持 4-64 位字母、数字、连字符和下划线",accessAuthentication:"访问鉴权",authenticationPreserved:"更新时保持现有 Runtime 的鉴权方式不变。",authenticationMethod:"鉴权方式",authenticationAriaLabel:"部署鉴权方式",authenticationPlaceholder:"请选择鉴权方式",messageChannels:"消息渠道",instanceSettings:"实例设置",minInstances:"最小实例数",maxInstances:"最大实例数",sidecarSingleInstance:"Harness Sidecar 首期仅支持单实例,Runtime 固定为 1~1",inMemorySingleInstance:"为避免多实例间会话丢失,推荐将 Runtime 固定为 1~1",network:"网络",networkPreserved:"现有 Runtime 的区域与网络模式保持不变。",networkMode:"网络模式",networkModes:{public:"公网",both:"公网 + VPC"},subnetId:"子网 ID",subnetHint:"可选,多个用逗号分隔",sharedInternetAccess:"VPC 内共享公网出口",evaluationSets:"评测集",createEvaluationSets:"自动创建评测集",createEvaluationSetsHint:"部署成功后,自动创建 Good Case 和 Bad Case 评测集。",resourceConfiguration:"资源配置",environmentVariables:"环境变量",environmentVariablesHint:"组件配置会自动同步到这里,部署前可核对最终值。",itemCount:"{{count}} 项",addVariable:"添加变量",componentGenerated:"组件自动生成",injectedByApiKey:"由所选 API Key 注入",envNameAriaLabel:"{{key}} 环境变量名",envDescriptionAriaLabel:"{{key}}说明:{{description}}",openOpenViking:"打开 OpenViking {{label}}",openOpenVikingAriaLabel:"{{key}}:打开 OpenViking {{label}}",requiredEmpty:"必填,尚未填写",optionalEmpty:"可选,尚未填写",envValueAriaLabel:"{{key}} 环境变量值",automatic:"自动",synced:"同步",customModelCredentials:"自定义模型凭据",releaseOnlySecret:"必填,仅用于本次发布",thisRelease:"本次发布",customVariables:"自定义变量",value:"值",deleteVariable:"删除变量",deploymentProgress:"部署进度",retryUpdate:"重试更新",retryDeploy:"重试部署",updateSucceeded:"更新成功",deploySucceeded:"部署成功",region:"区域",agentName:"Agent 名称",apiEndpoint:"API 端点",connecting:"连接中…",chatNow:"立即对话",console:"控制台",actionInProgress:"{{action}}中…",checkingName:"正在检查名称…",retryAction:"重试{{action}}",flowPreview:"执行流程预览",executionFlow:"执行流程",flowPreviewHint:"只读预览,可缩放与拖动画布",closeFlowPreview:"关闭执行流程预览",agentAdded:'Agent "{{name}}" 已添加到左上角下拉列表!',files:{preview:"文件预览",new:"新建文件",empty:"暂无文件",noneSelected:"未选择文件",selectToView:"选择左侧文件以查看内容",loadingEditor:"加载编辑器…",rename:"重命名",renamePrompt:"重命名文件"},apiKey:{selectFirst:"请先选择 API Key",revealing:"正在显示 API Key",hide:"隐藏 API Key",retryReveal:"重试显示 API Key",reveal:"显示 API Key"},task:{preparing:"准备部署",waitingBuildLog:"正在等待构建日志…",waitingGithubLog:"正在等待 GitHub 挂载日志…",syncingGithub:"正在同步当前源码到 GitHub",syncGithubCode:"同步 GitHub 代码",githubSynced:"GitHub 代码已同步",githubSubmitted:"GitHub 代码已提交",githubUpdatingRuntime:"代码已提交到 GitHub,GitHub Actions 正在更新同一个 Runtime",initializingGithub:"开始初始化 GitHub main 分支与 Actions workflow",initializingGithubBranch:"正在初始化 GitHub 持续交付目标分支",mountGithubDelivery:"挂载 GitHub 持续交付",githubBranchInitialized:"GitHub 持续交付已初始化目标分支",githubDeliveryMounted:"GitHub 持续交付已挂载",githubMountFailed:"挂载 GitHub 持续交付失败",githubMountFailedDetail:"GitHub 持续交付挂载失败:{{message}}",githubMountFailedHint:"挂载 GitHub 持续交付失败,详见 GitHub 日志。",deploymentComplete:"部署完成",deployedNotConnected:"部署完成,暂未连接",cancelled:"已取消",cancelledHint:"部署已取消,相关 Runtime 资源已请求销毁。",deploymentStatusUnconfirmed:"部署状态待确认",deploymentFailed:"部署失败",buildFailedHint:"构建镜像失败,详见构建日志。"},confirm:{updateTitle:"确认更新",deployTitle:"确认部署",closeLabel:"关闭部署确认",updateDescription:"将更新并发布到当前云端 Runtime,过程可能需要几分钟。确定继续吗?",deployDescription:"将创建新的云端 Runtime,部署过程可能需要几分钟。确定继续吗?",update:"确定更新",deploy:"确定部署"},userPool:{label:"用户池",unnamed:"未命名用户池",current:"当前用户池",ariaLabel:"部署用户池",loading:"正在加载用户池…",placeholder:"请选择用户池",loadingIdentity:"正在加载 Identity 用户池…",empty:"当前账号下暂无 Identity 用户池。",currentHint:"当前 Studio 的登录 JWT 将透传访问此 Runtime。",mismatchHint:"所选用户池不是当前 Studio 使用的用户池,部署后无法从 Studio 调用此 Runtime。",markedHint:"当前 Studio 使用的用户池已在列表中标注。"},authentication:{apiKeyDescription:"默认方式,使用 Runtime API Key 访问",userPool:"用户池",userPoolDescription:"使用 Identity 用户池签发的 JWT"},steps:{buildImage:"构建镜像",deploy:"部署",publish:"发布",syncCode:"同步代码",uploadPackage:"上传代码包",packageImage:"镜像打包",createRuntime:"创建 Runtime",publishService:"发布服务",updateInstances:"更新实例配置",createEvaluationSets:"创建评测集"},errors:{instanceRangeInteger:"最小实例数必须为大于等于 0 的整数,最大实例数必须为大于 0 的整数。",instanceRangeOrder:"最小实例数不能大于最大实例数。",selectApiKey:"请先在模型配置中选择 API Key。",loadApiKey:"加载 API Key 失败,请重试。",invalidProject:"项目数据无效",updateFeishu:"更新飞书配置失败:{{message}}",userPoolRequired:"请选择用于 Runtime 鉴权的用户池。",vpcRequired:"使用 VPC 网络时,请填写 VPC ID。",modelSecretRequired:"请填写 {{label}},用于访问对应的自定义模型地址。",managedApiKeyRequired:"{{requirement}},请先返回模型配置选择 API Key。",feishuEnvRequired:"启用飞书后,请填写{{field}}。",runtimeNameExists:"Runtime 名称已存在,请修改后重试。",deployedButGithubMountFailed:"部署成功,但挂载 GitHub 持续交付失败:{{message}}",deployedButGithubBindFailed:"部署成功,但绑定 GitHub 失败:{{message}}",deploymentStatusUnconfirmed:"连接已中断,当前无法确认部署最终状态。任务可能仍在云端运行,请到 AgentKit 或 Code Pipeline 查看同一任务,避免重复部署。",failedAtStage:"{{action}}失败({{stage}}阶段):{{message}}",noAgentAtEndpoint:"连接成功,但该地址未发现任何 Agent(/list-apps 为空)。",addAgent:"添加 Agent 失败:{{message}}",modelApiKeyRequired:"请填写此模型地址对应的 API Key。"}},jde={title:"工作区",detail:"工作区详情",create:"新建工作区",editorDescription:"将常用环境组合在一起;同一个环境可以加入多个工作区。",backToList:"返回工作区列表",environmentCount_one:"{{count}} 个环境",environmentCount_other:"{{count}} 个环境",createdAt:"创建时间",updatedAt:"最近更新",basicInfo:"基本信息",namePlaceholder:"例如:内容生产",descriptionPlaceholder:"说明这个工作区的用途",selectedEnvironmentCount:"已选择 {{count}} 个,可在其他工作区中继续复用",searchAvailableEnvironments:"搜索可用环境",searchEnvironments:"搜索环境",noAvailableEnvironments:"还没有可添加的环境",createEnvironmentFirst:"请先在“环境”页面创建并构建环境。",noMatchingEnvironments:"没有匹配的环境",tryAnotherName:"请尝试搜索其他名称。",environmentStatus:{available:"可用",building:"构建中",notBuilt:"未构建"},added:"已添加",saved:"已保存工作区“{{name}}”",resourceType:"工作区资源类型",searchWorkspaces:"搜索工作区",loadFailed:"无法加载工作区",noMatchingWorkspaces:"没有匹配的工作区",tryAnotherNameOrEnvironment:"请尝试搜索其他名称或环境",noEnvironmentAdded:"未添加环境",environmentMissing:"环境缺失",availableFraction:"{{available}}/{{total}} 可用",available:"可用",availableCount:"{{count}} 个可用",updated:"更新",addEnvironment:"添加环境",deleteTitle:"删除工作区",deleteDescription:"确定删除工作区“{{name}}”吗?环境本身不会被删除。",deleted:"已删除工作区“{{name}}”",clipboardPermissionError:"未能读取剪贴板。请允许剪贴板权限,或点击“导入环境”后手动粘贴分享码。",clipboardUnsupported:"当前浏览器无法自动读取剪贴板;请点击“导入环境”后手动粘贴分享码。"},Rde={back:"返回",detailNavigation:"详情导航",noData:"暂无数据",actions:"操作",moreActions:"更多操作 {{label}}",actionsFor:"{{label}} 操作",loading:"资源加载中,请稍候"},Ide={addSkill:"添加 Skill",remove:"移除 {{name}}",confirmRemoveRuntime:"从新版本中移除运行中的 Skill「{{name}}」?",selectedCount:"已加入技能 · {{count}}",close:"关闭{{label}}",sources:{runtime:"运行中来源 · 原样保留,可移除或用同名 Skill 替换",local:"本地",skillspace:"AgentKit Skills 中心",skillhub:"火山 Find Skill 技能广场"},tabs:{local:"本地文件",localShort:"本地文件",skillspace:"AgentKit Skills 中心",skillspaceShort:"AgentKit",skillhub:"火山 Find Skill 技能广场",skillhubShort:"Find Skill"}},Pde={tasks:{ppt:"PPT",image:"图片生成",video:"视频生成"},prompts:{ppt:{quarterlyReview:"复盘【季度】经营表现,提炼指标差距、原因与行动建议",projectUpdate:"汇报【项目名称】进展:里程碑、风险、预算和资源诉求",solutionProposal:"为【客户行业】输出解决方案:痛点、架构、实施路径与收益",industryAnalysis:"分析【行业主题】趋势,给出竞争格局、机会与战略建议"},image:{launchVisual:"为【品牌或产品】设计【高级科技】风格的发布会主视觉",ecommercePoster:"生成【产品名称】电商海报,突出【核心卖点】与品牌色",conceptRendering:"呈现【产品或空间】在【使用场景】中的写实概念效果图",socialGraphic:"围绕【传播主题】制作简洁专业的企业社媒配图"},video:{brandFilm:"制作【品牌名称】30 秒宣传片,突出【品牌价值】",productLaunch:"为【产品名称】制作 45 秒发布视频:痛点、功能、场景与行动号召",trainingVideo:"制作【培训主题】企业培训视频,讲清【关键操作或规范】",eventTeaser:"生成【活动名称】20 秒预热视频,包含亮点、时间地点和报名信息"}},firstFrame:"首帧",videoToEdit:"待编辑视频",baseVideo:"基础视频",optimizeSkillPlaceholder:"描述你想优化的技能…",createSkillPlaceholder:"描述你想生成的技能…",createVideoPlaceholder:"描述你想创作的视频…",messageAgentPlaceholder:"向 {{name}} 发消息…",selectAgentFirst:"请先选择智能体",selectSkillFirst:"请先选择需要优化的 Skill",availableSkills:"可用技能",availableSubagents:"可用子 Agent",invokeSkill:"调用技能",useSubagent:"使用子 Agent",loadingCapabilities:"正在读取 Agent 能力…",noMatchingSkills:"当前 Agent 没有匹配技能",noMatchingSubagents:"当前 Agent 没有匹配子 Agent",skillFallbackDescription:"加载并执行该技能",agentFallbackDescription:"将本轮交给该 Agent",skill:"技能",uploadImage:"上传图片",uploadDocument:"上传文档或 PDF",uploadVideo:"上传视频",taskMode:"任务模式",selectTaskMode:"选择任务模式",loadingGenerationModel:"正在加载生成模型",modelUnavailable:"模型不可用",cancelTask:"取消{{task}}任务",stopGenerating:"停止生成",viewVideoProgress:"查看视频生成进度",send:"发送",selectTaskType:"选择任务类型",enterprisePrompts:"{{task}}企业提示词",sessionId:"会话 ID",sessionIdLabel:"会话 ID:",initializing:"初始化中",copied:"已复制",copySessionId:"复制会话 ID",sessionIdCopied:"已复制会话 ID",disclaimer:"回答仅供参考",viewLogs:"查看日志"},Dde={selectAgent:"选择 Agent",noLocalAgents:"暂无本地 Agent。",searchRuntime:"搜索 Runtime 名称",mineOnly:"只看我创建的",noRuntimes:"暂无 Runtime。",unsupported:"不支持",createdByMe:"我创建的",connecting:"连接中…",connected:"已连接",connect:"连接",viewInfoFor:"查看 {{name}} 信息",viewInfo:"查看信息",agentAndRuntimeInfo:"Agent 与 Runtime 信息",detailType:"详情类型",agentInfo:"Agent 信息",runtimeInfo:"Runtime 信息",loadingAgentInfo:"读取 Agent 信息…",cannotLoadAgentInfo:"暂时无法读取 Agent 信息",unnamedAgent:"未命名 Agent",subagents:"子 Agent",tools:"工具",skills:"技能",previewUnsupported:"暂不支持预览",mountedComponents:"挂载组件",noMoreAgentInfo:"暂无更多 Agent 配置信息。",local:"本地",model:"模型",status:"状态",memoryMb:"内存 {{value}}MB",instances:"实例 {{min}}~{{max}}",resources:"资源",version:"版本",loadingDetails:"读取详情…",environmentVariables:"环境变量",errors:{notFound:"该 Runtime 已不存在或列表信息已过期,请刷新列表后重试。",accessDenied:"当前账号无权访问该 Runtime,请检查所属 Project 和访问权限。",previewUnsupported:"该 Agent Server 版本暂不支持信息预览。",unavailable:"该 Runtime 暂时无法访问,请确认其状态为“就绪”后重试。",timeout:"加载超时,请重试"},componentKinds:{knowledgebase:"知识库",memory:"记忆",prompt_manager:"提示词管理",example_store:"样例库",run_processor:"运行处理器",tracer:"链路追踪",toolset:"工具集",plugin:"插件",other:"其他"},runtimeStatus:{ready:"就绪",unreleased:"未发布",running:"运行中",active:"运行中",creating:"创建中",pending:"等待中",deploying:"部署中",updating:"更新中",failed:"失败",error:"异常",stopping:"停止中",stopped:"已停止",deleting:"删除中",deleted:"已删除"}},Mde={agent:"智能体",agentTypes:{general:"通用智能体",codex:"Codex","deepseek-harness":"DeepSeek",openclaw:"OpenClaw",hermes:"Hermes"},creator:"创建人",namedAgent:"{{name}} 智能体",storageLocation:"存储位置",currentBrowser:"当前浏览器",region:"地域",viewDeploymentProgress:"查看 {{name}} 部署进度",viewRuntimeDetails:"查看 {{name}} Runtime 详情",viewDetails:"查看 {{name}} 详情",time:"时间",remainingTime:"剩余时间",expiringSoon:"即将清空",sandboxRemaining:"{{hours}} 小时 {{minutes}} 分钟",wakeable:"已休眠",neverExpires:"永不过期",editDraftNamed:"编辑草稿 {{name}}",viewProgress:"查看进度",deleteDraftNamed:"删除草稿 {{name}}",recheckCompatibility:"重新检测 {{name}} 的对话兼容性",connectedNamed:"{{name}} 已连接",wakeAndChat:"唤醒 {{name}} 并开始对话",chatWith:"与 {{name}} 对话",waking:"唤醒中",deploying:"部署中",draft:"草稿",checking:"检测中",chatUnsupported:"不支持对话",checkFailed:"检测失败",creatorFilter:"创建人筛选",agentType:"智能体类型",searchAgents:"搜索智能体",handoff:"接力",agentList:"{{type}}列表",noMatchingAgents:"没有匹配的智能体",adjustSearch:"请尝试调整搜索或筛选条件",noAgentType:"暂无 {{type}}",noGeneralAgents:"暂无通用智能体",createGeneralAgentDescription:"创建一个通用智能体,开始构建和对话",createAgentType:"创建{{type}}",createAgent:"创建智能体",loadingMore:"正在加载更多智能体",scrollForMore:"继续下滑加载更多",allLoaded:"已加载全部智能体",deleteDraftTitle:"删除草稿?",deleteDraftDescription:"删除后将无法恢复“{{name}}”。",deleteDraft:"删除草稿",loadGeneralAgents:"加载通用智能体",loadAgentType:"加载 {{type}}",compatibility:{checking:"正在请求 Runtime /list-apps,以确认该智能体是否支持 Studio 对话。",empty:"Runtime /list-apps 未返回可用的 Agent,暂时无法连接对话。",supported:"Runtime 支持 Studio 对话。",unknownError:"Runtime /list-apps 请求失败,未返回可识别的错误信息。"},sandboxStatus:{ready:"就绪",wakeable:"已休眠",creating:"创建中",starting:"启动中",initializing:"启动中",pending:"等待中",running:"运行中",failed:"异常",error:"异常",stopped:"已停止",expired:"已过期",deleting:"删除中",deleted:"已删除",unknown:"未知状态"},wakingHint:"正在唤醒智能体,可能需要一些时间。"},Lde={library:"技能库",skill:"技能",skills:"技能",skillSpace:"技能空间",sandboxNotConfigured:"管理员未配置 Dev Sandbox",adminNotConfigured:"管理员未配置",totalItems:"共 {{count}} 项",cannotLoadSpaces:"无法加载技能空间",someSpacesFailed:"部分技能空间加载失败",degradedRelationWarning:"部分关联异常,已恢复可读取技能",downloadZip:"下载 ZIP",optimize:"优化",closeSkillDetails:"关闭技能详情",skillId:"技能 ID",allFiles:"完整文件",loadingSkillContent:"正在读取技能内容…",noSkillContent:"该技能暂无 SKILL.md 内容",addSkill:"添加技能",localUpload:"本地上传",localUploadDescription:"选择 ZIP 文件,校验通过后上传到技能空间",autoCreate:"自动创建",autoCreateDescription:"选择模型和风格,通过对话生成技能",createSkill:"创建技能",optimizeNamed:"优化 {{name}}",deleteSkillConfirm:"确定删除整个 Skill“{{name}}”吗?此操作会影响所有引用它的空间。",deleteSpaceConfirm:"确定删除 Skill 空间“{{name}}”吗?请先确认空间中的技能已删除。",manageSpaceDescription:"管理空间中的技能并创建新的版本",backToSpaces:"返回技能空间列表",overview:"概览",skillCount:"技能数量",skillCountValue_one:"{{count}} 技能",skillCountValue_other:"{{count}} 技能",updatedAt:"更新时间",skillsInSpace:"{{name}}中的技能",searchSkills:"搜索技能",cannotLoadSkills:"无法加载技能",noMatchingSkills:"没有匹配的技能",noSkills:"暂无技能",tryAnotherName:"请尝试搜索其他名称",emptySkillsDescription:"本地上传 Skill,或自动创建",actions:"操作",spaceDetails:"技能空间详情",editSpace:"编辑空间",deleteSpace:"删除空间",searchSpaces:"搜索技能空间",spaceList:"技能空间列表",noMatchingSpaces:"没有匹配的技能空间",createSpace:"新建技能空间",newSpace:"新建空间",loadingMoreSpaces:"正在加载更多技能空间",scrollForMore:"继续下滑加载更多",allSpacesLoaded:"已加载全部技能空间",errors:{loadSpaces:"读取技能空间失败,请稍后重试",loadSkills:"读取技能失败,请稍后重试",loadSkillDetails:"读取技能详情失败,请稍后重试",deleteSkill:"删除 Skill 失败",deleteSpace:"删除 Skill 空间失败",downloadSkill:"下载 Skill 失败"},status:{active:"可用",available:"可用",creating:"创建中",disabled:"已停用",enabled:"已启用",failed:"异常",inactive:"未启用",pending:"等待中",published:"已发布",ready:"就绪",released:"已发布",running:"运行中",success:"正常",unavailable:"不可用",unreleased:"未发布",updating:"更新中",unknown:"未知"}},$de={library:"知识库",createBase:"新建知识库",editBase:"编辑知识库",invalidName:"名称必须以字母开头,且只能包含字母、数字和下划线。",nameHelp:"以字母开头,仅支持字母、数字和下划线,最多 48 个字符。",optionalDescription:"描述(可选)",descriptionOnly:"AgentKit 当前仅支持更新知识库描述。",previewWeb:"预览网页内容",addData:"添加数据",openOriginalWeb:"打开原网页",backToEdit:"返回修改",confirmAdd:"确认添加",source:"知识来源",image:"图片",documentFile:"文档文件",webPage:"在线网页",webUrl:"网页 URL",generatingWebPreview:"正在抓取网页并生成 Markdown 预览",selectFile:"选择知识文件",selectOrDropFile:"选择文件或拖拽到这里",selectedFile:"{{size}} · 点击可重新选择",imageFileHelp:"支持 PNG、JPG 和 JPEG,单个文件不超过 200 MB",documentFileHelp:"支持 PDF、PPTX、DOCX、XLSX 和 TXT,单个文件不超过 200 MB",uploadingFile:"正在上传文件并添加到知识库",optionalName:"名称(可选)",optionalType:"类型(可选)",generatePreview:"生成预览",uploadFile:"上传文件",editMetadata:"编辑知识 Metadata",knowledge:"知识",field:"字段",value:"值",backToList:"返回知识库列表",metadataJson:"元数据(JSON)",provider:"服务提供方",knowledgeId:"知识库 ID",project:"项目",creator:"创建者",data:"数据",deleteInvalidAssociation:"删除失效关联",noData:"这个知识库还没有数据",addFirstData:"添加第一项数据",format:"格式",size:"大小",searchData:"搜索数据",searchLibraryData:"搜索知识库数据",associationInvalid:"关联已失效",providerMissing:"底层 Provider 知识库已不存在",noMatchingData:"没有匹配的数据",loadingMoreData:"正在加载更多数据",retryLoading:"重试加载",details:"知识库详情",searchBases:"搜索知识库",someBasesFailed:"部分知识库暂时无法加载,已展示其余可用内容。",noMatchingBases:"没有匹配的知识库",noManagePermission:"您没有管理此知识库的权限",loadingMoreBases:"正在加载更多知识库",deleteBaseTitle:"删除知识库?",deleteBaseDescription:"将删除 {{name}} 的 AgentKit 关联;如果它由 Studio 创建,也会同时删除 Provider 资源。此操作无法撤销。",deleteDocumentTitle:"删除知识?",deleteDocumentDescription:"将从 Provider 知识库中删除 {{name}},此操作无法撤销。",preview:{processingTitle:"数据正在处理中",processingDetail:"知识库完成解析后即可预览,请稍后重新加载。",failedTitle:"数据解析失败",failedDetail:"请检查源文件或网页地址后重新添加,也可以重新加载最新状态。",noParsedTitle:"暂时没有可预览的解析内容",noParsedDetail:"此类文件会在知识库完成解析后显示文本、表格或页面图片。",noMediaTitle:"暂时没有可预览的媒体内容",noMediaDetail:"知识库尚未返回可访问的媒体预览,请稍后重新加载。",noDataTitle:"暂无可预览的数据内容",noDataDetail:"知识库尚未返回解析结果,请稍后重新加载。",attachmentError:"附件无法预览,请稍后重试。",imageAlt:"知识数据图片",audioUnsupported:"当前浏览器不支持音频预览。",videoUnsupported:"当前浏览器不支持视频预览。",namedPdf:"{{name}} PDF 预览",pdf:"PDF 预览",openPdf:"无法显示时,在新窗口打开 PDF",fileUnsupported:"当前格式暂不支持直接在线预览,已优先显示解析后的内容。",openOriginalFile:"打开原文件",loading:"正在加载数据预览",openOriginalHint:"您可以打开原网页查看来源内容。",chunk:"片段 {{index}}",loadingMore:"正在加载更多",loadMore:"加载更多"},errors:{fileTooLarge:"单个文件不能超过 200 MB",invalidImageType:"请选择 PNG、JPG 或 JPEG 图片",invalidDocumentType:"请选择 PDF、PPTX、DOCX、XLSX 或 TXT 文件",createBase:"创建知识库失败",updateBase:"更新知识库失败",metadataObject:"Metadata 必须是 JSON 对象",metadataFormat:"Metadata 格式错误",noWebPreview:"网页没有可预览的 Markdown 内容",addWeb:"添加网页失败",previewWeb:"生成网页预览失败",uploadFile:"上传文件失败",updateDocument:"更新知识失败",loadPreview:"加载数据预览失败",loadMoreBases:"加载更多知识库失败",loadBases:"加载知识库失败",loadMoreData:"加载更多数据失败",loadData:"加载数据失败",deleteBase:"删除知识库失败",deleteDocument:"删除知识失败"}},AMe={common:bde,agentKitPromo:yde,systemInfo:vde,agentWorkspace:xde,environmentCenter:wde,deploymentSelect:Ode,deploymentError:Sde,studioBuildProgress:kde,cloudEnvironment:Ede,githubCicd:Cde,feishuDeployment:Tde,deploymentResources:Ade,studioUpdate:_de,projectPreview:Nde,workspace:jde,resourceCollection:Rde,skillSourcePicker:Ide,composer:Pde,agentSelector:Dde,myAgents:Mde,skillCenter:Lde,knowledge:$de},_Me=Object.freeze(Object.defineProperty({__proto__:null,agentKitPromo:yde,agentSelector:Dde,agentWorkspace:xde,cloudEnvironment:Ede,common:bde,composer:Pde,default:AMe,deploymentError:Sde,deploymentResources:Ade,deploymentSelect:Ode,environmentCenter:wde,feishuDeployment:Tde,githubCicd:Cde,knowledge:$de,myAgents:Mde,projectPreview:Nde,resourceCollection:Rde,skillCenter:Lde,skillSourcePicker:Ide,studioBuildProgress:kde,studioUpdate:_de,systemInfo:vde,workspace:jde},Symbol.toStringTag,{value:"Module"})),Fde="网站集成",Bde="将 AgentKit Runtime 以悬浮聊天窗口嵌入网站",Ude="返回自动化列表",Qde="添加网站",zde="正在加载 Runtime",Vde="选择 Runtime",Hde="网站域名",qde="例如 xxxx.com 或 localhost:5173",Wde="正在生成",Gde="生成 Token",Kde="已添加网站",Xde="{{count}} 个",Yde="{{count}} 个",Zde="正在加载网站集成",Jde="还没有网站集成",efe="选择 Runtime 并输入网站域名即可生成 Token",tfe="引入方法",nfe="将下面代码放到网页的 body 结束标签前",ife="已复制",rfe="复制代码",sfe="添加网站后会在这里生成引入代码。",afe="确定删除 {{domain}} 的网站集成吗?",ofe={load:"加载网站集成失败",create:"创建网站集成失败",delete:"删除网站集成失败",noConversationalAgent:"该 Runtime 暂未发现可对话的 Agent"},lfe={requestFailed:"请求失败 ({{status}})",greeting:"您好,有什么可以帮您?",sessionFailed:"无法建立对话会话",unauthorized:"当前网站未获得对话授权",conversationFailed:"对话请求失败,请稍后重试",open:"打开智能体对话",close:"关闭智能体对话",panelLabel:"智能体对话面板",assistant:"智能体助手",online:"在线对话"},NMe={title:Fde,description:Bde,backToAutomations:Ude,addWebsite:Qde,loadingRuntime:zde,selectRuntime:Vde,websiteDomain:Hde,domainPlaceholder:qde,generating:Wde,generateToken:Gde,addedWebsites:Kde,websiteCount_one:Xde,websiteCount_other:Yde,loadingIntegrations:Zde,delete:"删除",emptyTitle:Jde,emptyDescription:efe,embedMethod:tfe,embedInstructions:nfe,copied:ife,copyCode:rfe,embedHint:sfe,confirmDelete:afe,errors:ofe,widget:lfe},jMe=Object.freeze(Object.defineProperty({__proto__:null,addWebsite:Qde,addedWebsites:Kde,backToAutomations:Ude,confirmDelete:afe,copied:ife,copyCode:rfe,default:NMe,description:Bde,domainPlaceholder:qde,embedHint:sfe,embedInstructions:nfe,embedMethod:tfe,emptyDescription:efe,emptyTitle:Jde,errors:ofe,generateToken:Gde,generating:Wde,loadingIntegrations:Zde,loadingRuntime:zde,selectRuntime:Vde,title:Fde,websiteCount_one:Xde,websiteCount_other:Yde,websiteDomain:Hde,widget:lfe},Symbol.toStringTag,{value:"Module"})),cfe={types:{all:"全部类型",document:"文档",image:"图片",video:"视频"},previewArtifact:"预览 {{name}}",moreActions:"更多操作 {{name}}",actionMenu:"{{name}} 操作",download:"下载",downloading:"下载中",edit:"编辑信息",delete:"删除产物",previewFailed:"无法预览“{{name}}”:{{message}}",downloadStarted:"已开始下载 {{name}}",downloadFailed:"无法下载“{{name}}”:{{message}}",updated:"已更新 {{name}}",deleted:"已删除 {{name}}",deleteFailed:"无法删除“{{name}}”:{{message}}",typeFilter:"产物类型",searchAria:"搜索产物",searchPlaceholder:"搜索产物或会话",retry:"重试",close:"关闭",listAria:"产物列表",loadFailed:"产物加载失败",loadDetailFallback:"请检查存储配置后重试。",reload:"重新加载",noMatch:"没有找到匹配的产物",noArtifacts:"您还没有任何产物",searchHint:"请尝试搜索其他名称或切换类型",emptyHint:"聊天中生成的产物会自动显示在这里",columns:{name:"名称",source:"来源",updatedAt:"修改时间",actions:"操作"},loadingMore:"正在加载更多产物",unknownTime:"时间未知",preview:{close:"关闭预览",meta:"{{type}} / 版本 {{version}}",loading:"正在加载预览",alt:"{{name}} 预览",loadFailed:"预览加载失败,请稍后重试或下载查看",unsupported:"当前格式暂不支持在线预览,请下载查看",sourceAria:"产物来源",agent:"智能体",session:"会话",tool:"生成工具",createdAt:"生成时间",fileSize:"文件大小",tags:"标签",viewSession:"查看会话"},deleteDialog:{title:"删除产物?",description:"“{{name}}”将从产物库永久删除,聊天记录不会受到影响。",deleting:"删除中",confirm:"删除",close:"关闭删除确认框"},api:{withStatus:"{{message}}({{status}})",listFailed:"读取产物库失败",syncFailed:"同步聊天产物失败",updateFailed:"更新产物失败",deleteFailed:"删除产物失败",downloadFailed:"下载产物失败"}},ufe={unknownSource:"未知来源",unknownCreator:"未知创建者"},dfe={nameRequired:"请输入产物名称",tooManyTags:"标签最多 {{max}} 个",tagTooLong:"单个标签不能超过 {{max}} 个字符",title:"编辑产物信息",subtitle:"内容文件不会被修改",close:"关闭编辑框",name:"名称",description:"描述",descriptionPlaceholder:"补充用途、版本或使用说明",tags:"标签",tagsPlaceholder:"使用逗号分隔,最多 {{max}} 个",cancel:"取消",saving:"保存中",save:"保存"},ffe={change:{added:"新增",modified:"修改",deleted:"删除"},noChanges:"两个版本的源码没有差异",chooseFile:"从左侧选择文件以查看代码",compareTitle:"版本对比",workspaceTitle:"源码工作区",projectFallback:"Agent 项目",switchTheme:"切换源码主题",switchThemeTitle:"切换为{{theme}}主题",themes:{dark:"深色",light:"浅色"},closeWorkspace:"关闭源码工作区",close:"关闭",changedFiles:"变更文件",projectFiles:"项目文件",changes:"变更",files:"文件",openFiles:"打开的文件",noFileSelected:"未选择文件",comparisonDirection:"对比方向",before:"优化前",after:"优化后",loadingEditor:"正在加载编辑器…",changedFileCount_one:"{{count}} 个文件有变更",changedFileCount_other:"{{count}} 个文件有变更",fileCount_one:"{{count}} 个文件",fileCount_other:"{{count}} 个文件",lineCount_one:"{{count}} 行 · UTF-8",lineCount_other:"{{count}} 行 · UTF-8",viewSource:"查看源码",viewSourceAria:"查看和编辑项目源码"},hfe={nav:"搜索",selectAgent:"请选择 Agent",checkingCapabilities:"正在检测 Agent 能力",notMounted:"当前 Agent 未挂载{{label}}",sources:{session:"会话",web:"网络",knowledge:"知识库",memory:"长期记忆"},webDescription:"通过 web_search 工具检索",backendLocal:"本地",failed:"搜索失败:{{message}}",placeholder:{selectAgent:"请先选择 Agent",web:"在网络中检索",knowledge:"在 {{name}} 中检索",knowledgeFallback:"当前 Agent 的知识库",memory:"在 {{name}} 中检索",memoryFallback:"当前用户的长期记忆",session:"在当前 Agent 的会话中检索"},sourceTypeAria:"搜索类型:{{label}}",notSelected:"未选择",sourceType:"搜索类型",selectSource:"选择搜索类型",noAgentHint:"选择一个 Agent 后,即可检索会话、网络及其挂载的数据源。",loadingCapabilities:"正在读取当前 Agent 的检索能力…",sourceUnavailable:"当前 Agent 未挂载该数据源",instructions:{web:"输入关键词后回车或点击按钮,通过 web_search 工具检索。",knowledge:"输入问题,检索当前 Agent 挂载的知识库。",memory:"输入线索,检索当前用户跨会话保存的长期记忆。",session:"输入关键词后回车或点击按钮,搜索当前 Agent 的会话。"},noResults:"未找到匹配“{{query}}”的结果。",knowledgeFragment:"知识片段 {{index}}",memoryFragment:"记忆片段 {{index}}"},pfe={title:"开发者资源",sections:{documentation:{title:"相关链接",description:"查看开发文档与 AgentKit 常用入口"},bestPractices:{title:"最佳实践",description:"参考开发、调试与部署经验"},showcases:{title:"案例展示",description:"探索 AgentKit 应用案例"}},links:{veadkDocs:"VeADK 文档",cliDocs:"AgentKit CLI 文档",platformDocs:"AgentKit 平台文档",console:"AgentKit 控制台"},articles:{veadkDevelopment:{title:"使用 VeADK 开发并部署智能体",description:"使用 VeADK 构建 Agent,并部署至 AgentKit 智能体运行时。"},cliDevelopment:{title:"使用 AgentKit CLI 开发并部署智能体",description:"通过 AgentKit CLI 创建项目、调试 Agent,并完成部署。"},coverAlt:"{{title}}文章封面"},showcases:{researchAssistant:{title:"多智能体研究助手",description:"由多个专业 Agent 协同完成资料检索、分析和结论整理。"},multimodalAnalysis:{title:"多模态内容分析",description:"在统一会话中理解图片、文档和视频内容。"},customerService:{title:"智能客服工作台",description:"结合知识检索与工具调用处理复杂的客户服务任务。"},webSearch:{title:"联网搜索 Agent",description:"检索实时网页内容,并将信息整理为可追溯的回答。"},a2uiApp:{title:"A2UI 交互应用",description:"让 Agent 根据任务过程生成可交互的前端界面。"},previewAlt:"{{title}}界面预览"}},mfe={title:"资源库",untitledSession:"未命名会话",categoryAria:"资源库分类",regionAria:"区域",tabs:{skills:"技能库",knowledge:"知识库",artifacts:"产物"}},gfe={title:"管理 Agent",subtitle:"列出你有权管理的 AgentKit Runtime",mainAgentOnly:"仅显示主 Agent(控制面信息)。",deleteConfirm:'确定删除 Agent "{{name}}"?该 Runtime 将被永久删除。',regionFilterTitle:"按区域筛选",regionFilterAria:"区域筛选",regionAria:"区域",refresh:"刷新",loading:"加载中…",empty:"暂无你部署的 Agent。",connected:"已连接",connect:"连接到此 Agent",deleteRuntime:"删除该 Runtime",loadingDetail:"读取详情…",agentStructure:"Agent 结构",secretHidden:"敏感值已隐藏,点击显示",revealSecret:"显示 {{key}} 的值",fields:{model:"模型",description:"描述",status:"状态信息",project:"项目",version:"版本",resources:"资源",memory:"记忆",tool:"工具",knowledge:"知识",mcpToolset:"MCP 工具集",updatedAt:"更新时间"},resource:{memory:"内存 {{value}}MB",instances:"实例 {{min}}~{{max}}",concurrency:"并发 {{value}}"},environmentVariables:"环境变量",unnamed:"(未命名)"},bfe={mainAgent:"主 Agent",subAgent:"子 Agent {{index}}",itemCount_one:"{{count}} 项",itemCount_other:"{{count}} 项",info:"Agent 信息",infoAndTopology:"Agent 信息与拓扑",loadingInfo:"正在读取 Agent 信息…",unnamedAgent:"未命名 Agent",tools:"工具",toolList:"工具列表",studioTool:"Studio Tool",removeTool:"移除工具 {{name}}",remove:"移除",notConfigured:"未配置",addStudioTool:"添加 Studio 工具",addStudioToolHere:"在此对话中添加 Studio 工具",skills:"技能",skillList:"技能列表",previewUnsupported:"暂不支持预览",sessionEnvironment:"会话环境",environment:"环境",agentCanvas:"Agent 画布",topology:"结构拓扑",viewCanvasFullscreen:"全屏查看 Agent 画布",viewFullscreen:"全屏查看",executionCanvas:"Agent 执行画布",fullscreenExecutionCanvas:"全屏 Agent 执行画布",closeFullscreenCanvas:"关闭全屏画布",close:"关闭",capabilitiesSubtitle:"能力与协作拓扑",closeInfo:"关闭 Agent 信息",infoUnavailable:"暂时无法读取 Agent 信息。"},yfe={mountFailed:"挂载环境失败",closeDialog:"关闭环境弹窗",addTitle:"添加环境",description:"选择当前会话允许 Agent 使用的 Sandbox 环境",closeAdd:"关闭添加环境",searchAria:"搜索环境",searchPlaceholder:"搜索环境名称或能力",availableAria:"可用环境与工作区",loading:"正在读取可用环境…",noMatch:"没有匹配的环境或工作区",workspaces:"工作区",reuseAll:"复用工作区中的全部可用环境",availableEnvironmentCount_one:"{{count}} 个可用环境",availableEnvironmentCount_other:"{{count}} 个可用环境",selectWorkspace:"选择工作区 {{name}}",environments:"环境",includedByWorkspaces:"已由工作区 {{names}} 包含",nameSeparator:"、",selectEnvironment:"选择环境 {{name}}",selectedWorkspaceCount_one:"{{count}} 个工作区",selectedWorkspaceCount_other:"{{count}} 个工作区",coveredEnvironmentCount_one:"{{count}} 个环境",coveredEnvironmentCount_other:"{{count}} 个环境",selectionSummary:"已选择 {{workspaces}},覆盖 {{environments}}",cancel:"取消",mounting:"正在挂载…",confirm:"确认添加",mountedAria:"已挂载环境",environmentCount_one:"{{count}} 个环境",environmentCount_other:"{{count}} 个环境",removeWorkspace:"移除工作区 {{name}}",remove:"移除",removeEnvironment:"移除环境 {{name}}",add:"添加环境",addMore:"添加更多环境",addForSession:"为当前 Session 添加环境",loadingAvailable:"正在加载可用环境…",empty:"暂无可用的 AIO Sandbox 环境。"},vfe={loading:{searching:"正在查找已有环境",creating:"环境初始化中",connecting:"正在连接已有环境"},initializationFailed:"AgentKit CLI 环境初始化失败,当前状态:{{status}}。",sessionExpired:"AgentKit CLI Session 不存在或已过期,请重试。",initializationTimeout:"AgentKit CLI 环境初始化超时,请稍后重试。",nonPersistent:"非持久化环境",recyclingHoursMinutes:"{{hours}} 小时 {{minutes}} 分钟后环境回收",recyclingMinutes:"{{minutes}} 分钟后环境回收",connectionError:`无法连接 Studio 服务,未收到服务端响应。 -原始错误:{{message}}`,unavailable:"连接不可用",requestFailed:"AgentKit CLI 请求失败",retry:"重试",terminalTitle:"AgentKit CLI 终端"},xfe={labels:{coding:"智能编程",get_city_weather:"城市天气查询",get_location_weather:"位置天气查询",web_fetch:"网页内容获取"},closeDialog:"关闭弹窗",title:"添加 Studio 工具",description:"由 Studio BFF 为 {{agentName}} 的当前会话执行,Runtime 无需预装",close:"关闭添加 Studio 工具",searchAria:"搜索 Studio 工具",searchPlaceholder:"搜索名称或工具标识",availableAria:"可用 Studio 工具",loading:"正在读取 Studio 工具…",noMatch:"没有匹配的 Studio 工具",remove:"移除",add:"添加"},wfe={artifactLibrary:cfe,resourceMetadata:ufe,artifactEdit:dfe,codeBrowser:ffe,search:hfe,developerResources:pfe,library:mfe,manageAgents:gfe,agentTopology:bfe,sessionEnvironment:yfe,agentKitCli:vfe,studioTools:xfe},RMe=Object.freeze(Object.defineProperty({__proto__:null,agentKitCli:vfe,agentTopology:bfe,artifactEdit:dfe,artifactLibrary:cfe,codeBrowser:ffe,default:wfe,developerResources:pfe,library:mfe,manageAgents:gfe,resourceMetadata:ufe,search:hfe,sessionEnvironment:yfe,studioTools:xfe},Symbol.toStringTag,{value:"Module"})),K8=["zh-CN","en-US"],xj="en-US",Ofe="agentkit.studio.locale",IMe={"zh-CN":{dir:"ltr",nativeName:"简体中文"},"en-US":{dir:"ltr",nativeName:"English"}};function wj(e){if(!e)return null;const t=e.trim().replace(/_/g,"-").toLowerCase(),n=K8.find(i=>i.toLowerCase()===t);return n||(t==="zh"||t.startsWith("zh-")?"zh-CN":t==="en"||t.startsWith("en-")?"en-US":null)}function jd(e,t){const n=(e==null?void 0:e.trim())??"";if(!n)return"";const i=new RegExp("\\p{Script=Han}","u").test(n);return t.toLowerCase().startsWith("zh")===i?n:""}function PMe(){if(typeof window>"u")return null;try{return wj(window.localStorage.getItem(Ofe))}catch{return null}}function DMe(){if(typeof window>"u")return[];const e=window.navigator;return e?e.languages.length>0?e.languages:e.language?[e.language]:[]:[]}function MMe(){const e=PMe();if(e)return e;for(const t of DMe()){const n=wj(t);if(n)return n}return xj}function LMe(e){if(!(typeof window>"u"))try{window.localStorage.setItem(Ofe,e)}catch{}}function Sfe(e){typeof document>"u"||(document.documentElement.lang=e,document.documentElement.dir=IMe[e].dir)}const Pn=e=>typeof e=="string",T1=()=>{let e,t;const n=new Promise((i,r)=>{e=i,t=r});return n.resolve=e,n.reject=t,n},RP=e=>e==null?"":String(e),$Me=(e,t,n)=>{e.forEach(i=>{t[i]&&(n[i]=t[i])})},FMe=/###/g,dV=e=>e&&e.includes("###")?e.replace(FMe,"."):e,fV=e=>!e||Pn(e),Yw=(e,t,n)=>{const i=Pn(t)?t.split("."):t;let r=0;for(;r{const{obj:i,k:r}=Yw(e,t,Object);if(i!==void 0||t.length===1){i[r]=n;return}let s=t[t.length-1],a=t.slice(0,t.length-1),l=Yw(e,a,Object);for(;l.obj===void 0&&a.length;)s=`${a[a.length-1]}.${s}`,a=a.slice(0,a.length-1),l=Yw(e,a,Object),l!=null&&l.obj&&typeof l.obj[`${l.k}.${s}`]<"u"&&(l.obj=void 0);l.obj[`${l.k}.${s}`]=n},BMe=(e,t,n,i)=>{const{obj:r,k:s}=Yw(e,t,Object);r[s]=r[s]||[],r[s].push(n)},qA=(e,t)=>{const{obj:n,k:i}=Yw(e,t);if(n&&Object.prototype.hasOwnProperty.call(n,i))return n[i]},UMe=(e,t,n)=>{const i=qA(e,n);return i!==void 0?i:qA(t,n)},kfe=(e,t,n)=>{for(const i in t)i!=="__proto__"&&i!=="constructor"&&(Object.prototype.hasOwnProperty.call(e,i)?Pn(e[i])||e[i]instanceof String||Pn(t[i])||t[i]instanceof String?n&&(e[i]=t[i]):kfe(e[i],t[i],n):e[i]=t[i]);return e},pf=e=>e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),QMe={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"},zMe=e=>Pn(e)?e.replace(/[&<>"'\/]/g,t=>QMe[t]):e;class VMe{constructor(t){this.capacity=t,this.regExpMap=new Map,this.regExpQueue=[]}getRegExp(t){const n=this.regExpMap.get(t);if(n!==void 0)return n;const i=new RegExp(t);return this.regExpQueue.length===this.capacity&&this.regExpMap.delete(this.regExpQueue.shift()),this.regExpMap.set(t,i),this.regExpQueue.push(t),i}}const HMe=[" ",",","?","!",";"],qMe=new VMe(20),WMe=(e,t,n)=>{t=t||"",n=n||"";const i=HMe.filter(a=>!t.includes(a)&&!n.includes(a));if(i.length===0)return!0;const r=qMe.getRegExp(`(${i.map(a=>a==="?"?"\\?":a).join("|")})`);let s=!r.test(e);if(!s){const a=e.indexOf(n);a>0&&!r.test(e.substring(0,a))&&(s=!0)}return s},KL=(e,t,n=".")=>{if(!e)return;if(e[t])return Object.prototype.hasOwnProperty.call(e,t)?e[t]:void 0;const i=t.split(n);let r=e;for(let s=0;se==null?void 0:e.replace(/_/g,"-"),GMe={type:"logger",log(e){this.output("log",e)},warn(e){this.output("warn",e)},error(e){this.output("error",e)},output(e,t){var n,i;(i=(n=console==null?void 0:console[e])==null?void 0:n.apply)==null||i.call(n,console,t)}};class WA{constructor(t,n={}){this.init(t,n)}init(t,n={}){this.prefix=n.prefix||"i18next:",this.logger=t||GMe,this.options=n,this.debug=n.debug}log(...t){return this.forward(t,"log","",!0)}warn(...t){return this.forward(t,"warn","",!0)}error(...t){return this.forward(t,"error","")}deprecate(...t){return this.forward(t,"warn","WARNING DEPRECATED: ",!0)}forward(t,n,i,r){return r&&!this.debug?null:(t=t.map(s=>Pn(s)?s.replace(/[\r\n\x00-\x1F\x7F]/g," "):s),Pn(t[0])&&(t[0]=`${i}${this.prefix} ${t[0]}`),this.logger[n](t))}create(t){return new WA(this.logger,{prefix:`${this.prefix}:${t}:`,...this.options})}clone(t){return t=t||this.options,t.prefix=t.prefix||this.prefix,new WA(this.logger,t)}}var wd=new WA;class Oj{constructor(){this.observers={}}on(t,n){return t.split(" ").forEach(i=>{this.observers[i]||(this.observers[i]=new Map);const r=this.observers[i].get(n)||0;this.observers[i].set(n,r+1)}),this}off(t,n){if(this.observers[t]){if(!n){delete this.observers[t];return}this.observers[t].delete(n)}}once(t,n){const i=(...r)=>{n(...r),this.off(t,i)};return this.on(t,i),this}emit(t,...n){this.observers[t]&&Array.from(this.observers[t].entries()).forEach(([r,s])=>{for(let a=0;a{for(let a=0;a-1&&this.options.ns.splice(n,1)}getResource(t,n,i,r={}){var u,d;const s=r.keySeparator!==void 0?r.keySeparator:this.options.keySeparator,a=r.ignoreJSONStructure!==void 0?r.ignoreJSONStructure:this.options.ignoreJSONStructure;let l;t.includes(".")?l=t.split("."):(l=[t,n],i&&(Array.isArray(i)?l.push(...i):Pn(i)&&s?l.push(...i.split(s)):l.push(i)));const c=qA(this.data,l);return!c&&!n&&!i&&t.includes(".")&&(t=l[0],n=l[1],i=l.slice(2).join(".")),c||!a||!Pn(i)?c:KL((d=(u=this.data)==null?void 0:u[t])==null?void 0:d[n],i,s)}addResource(t,n,i,r,s={silent:!1}){const a=s.keySeparator!==void 0?s.keySeparator:this.options.keySeparator;let l=[t,n];i&&(l=l.concat(a?i.split(a):i)),t.includes(".")&&(l=t.split("."),r=n,n=l[1]),this.addNamespaces(n),hV(this.data,l,r),s.silent||this.emit("added",t,n,i,r)}addResources(t,n,i,r={silent:!1}){for(const s in i)(Pn(i[s])||Array.isArray(i[s]))&&this.addResource(t,n,s,i[s],{silent:!0});r.silent||this.emit("added",t,n,i)}addResourceBundle(t,n,i,r,s,a={silent:!1,skipCopy:!1}){let l=[t,n];t.includes(".")&&(l=t.split("."),r=i,i=n,n=l[1]),this.addNamespaces(n);let c=qA(this.data,l)||{};a.skipCopy||(i=JSON.parse(JSON.stringify(i))),r?kfe(c,i,s):c={...c,...i},hV(this.data,l,c),a.silent||this.emit("added",t,n,i)}removeResourceBundle(t,n){this.hasResourceBundle(t,n)&&delete this.data[t][n],this.removeNamespaces(n),this.emit("removed",t,n)}hasResourceBundle(t,n){return this.getResource(t,n)!==void 0}getResourceBundle(t,n){return n||(n=this.options.defaultNS),this.getResource(t,n)}getDataByLanguage(t){return this.data[t]}hasLanguageSomeTranslations(t){const n=this.getDataByLanguage(t);return!!(n&&Object.keys(n)||[]).find(r=>n[r]&&Object.keys(n[r]).length>0)}toJSON(){return this.data}}var Efe={processors:{},addPostProcessor(e){this.processors[e.name]=e},handle(e,t,n,i,r){return e.forEach(s=>{var a;t=((a=this.processors[s])==null?void 0:a.process(t,n,i,r))??t}),t}};const Cfe=Symbol("i18next/PATH_KEY");function KMe(){const e=[],t=Object.create(null);let n;return t.get=(i,r)=>{var s;return(s=n==null?void 0:n.revoke)==null||s.call(n),r===Cfe?e:(e.push(r),n=Proxy.revocable(i,t),n.proxy)},Proxy.revocable(Object.create(null),t).proxy}function Kg(e,t){const{[Cfe]:n}=e(KMe()),i=(t==null?void 0:t.keySeparator)??".",r=(t==null?void 0:t.nsSeparator)??":",s=(t==null?void 0:t.enableSelector)==="strict";if(n.length>1&&r){const a=t==null?void 0:t.ns,l=s?Array.isArray(a)?a:a?[a]:null:Array.isArray(a)?a:null;if(l&&(s?l:l.length>1?l.slice(1):[]).includes(n[0]))return`${n[0]}${r}${n.slice(1).join(i)}`}return n.join(i)}const IP=e=>!Pn(e)&&typeof e!="boolean"&&typeof e!="number";class GA extends Oj{constructor(t,n={}){super(),$Me(["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat","utils"],t,this),this.options=n,this.options.keySeparator===void 0&&(this.options.keySeparator="."),this.logger=wd.create("translator"),this.checkedLoadedFor={}}changeLanguage(t){t&&(this.language=t)}exists(t,n={interpolation:{}}){const i={...n};if(t==null)return!1;const r=this.resolve(t,i);if((r==null?void 0:r.res)===void 0)return!1;const s=IP(r.res);return!(i.returnObjects===!1&&s)}extractFromKey(t,n){let i=n.nsSeparator!==void 0?n.nsSeparator:this.options.nsSeparator;i===void 0&&(i=":");const r=n.keySeparator!==void 0?n.keySeparator:this.options.keySeparator;let s=n.ns||this.options.defaultNS||[];const a=i&&t.includes(i),l=!this.options.userDefinedKeySeparator&&!n.keySeparator&&!this.options.userDefinedNsSeparator&&!n.nsSeparator&&!WMe(t,i,r);if(a&&!l){const c=t.match(this.interpolator.nestingRegexp);if(c&&c.length>0)return{key:t,namespaces:Pn(s)?[s]:s};const u=t.split(i);(i!==r||i===r&&this.options.ns.includes(u[0]))&&(s=u.shift()),t=u.join(r)}return{key:t,namespaces:Pn(s)?[s]:s}}translate(t,n,i){let r=typeof n=="object"?{...n}:n;if(typeof r!="object"&&this.options.overloadTranslationOptionHandler&&(r=this.options.overloadTranslationOptionHandler(arguments)),typeof r=="object"&&(r={...r}),r||(r={}),t==null)return"";typeof t=="function"&&(t=Kg(t,{...this.options,...r})),Array.isArray(t)||(t=[String(t)]),t=t.map(F=>typeof F=="function"?Kg(F,{...this.options,...r}):String(F));const s=r.returnDetails!==void 0?r.returnDetails:this.options.returnDetails,a=r.keySeparator!==void 0?r.keySeparator:this.options.keySeparator,{key:l,namespaces:c}=this.extractFromKey(t[t.length-1],r),u=c[c.length-1];let d=r.nsSeparator!==void 0?r.nsSeparator:this.options.nsSeparator;d===void 0&&(d=":");const f=r.lng||this.language,h=r.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if((f==null?void 0:f.toLowerCase())==="cimode")return h?s?{res:`${u}${d}${l}`,usedKey:l,exactUsedKey:l,usedLng:f,usedNS:u,usedParams:this.getUsedParamsDetails(r)}:`${u}${d}${l}`:s?{res:l,usedKey:l,exactUsedKey:l,usedLng:f,usedNS:u,usedParams:this.getUsedParamsDetails(r)}:l;const m=this.resolve(t,r);let g=m==null?void 0:m.res;const b=(m==null?void 0:m.usedKey)||l,v=(m==null?void 0:m.exactUsedKey)||l,y=["[object Number]","[object Function]","[object RegExp]"],x=r.joinArrays!==void 0?r.joinArrays:this.options.joinArrays,O=!this.i18nFormat||this.i18nFormat.handleAsObject,w=r.count!==void 0&&!Pn(r.count),k=GA.hasDefaultValue(r),S=w?this.pluralResolver.getSuffix(f,r.count,r):"",E=r.ordinal&&w?this.pluralResolver.getSuffix(f,r.count,{ordinal:!1}):"",C=w&&!r.ordinal&&r.count===0,N=C&&r[`defaultValue${this.options.pluralSeparator}zero`]||r[`defaultValue${S}`]||r[`defaultValue${E}`]||r.defaultValue;let _=g;O&&!g&&k&&(_=N);const j=IP(_),A=Object.prototype.toString.apply(_);if(O&&_&&j&&!y.includes(A)&&!(Pn(x)&&Array.isArray(_))){if(!r.returnObjects&&!this.options.returnObjects){this.options.returnedObjectHandler||this.logger.warn("accessing an object - but returnObjects options is not enabled!");const F=this.options.returnedObjectHandler?this.options.returnedObjectHandler(b,_,{...r,ns:c}):`key '${l} (${this.language})' returned an object instead of string.`;return s?(m.res=F,m.usedParams=this.getUsedParamsDetails(r),m):F}if(a){const F=Array.isArray(_),T=F?[]:{},P=F?v:b;for(const R in _)if(Object.prototype.hasOwnProperty.call(_,R)){const L=`${P}${a}${R}`;k&&!g?T[R]=this.translate(L,{...r,defaultValue:IP(N)?N[R]:void 0,joinArrays:!1,ns:c}):T[R]=this.translate(L,{...r,joinArrays:!1,ns:c}),T[R]===L&&(T[R]=_[R])}g=T}}else if(O&&Pn(x)&&Array.isArray(g))g=g.join(x),g&&(g=this.extendTranslation(g,t,r,i));else{let F=!1,T=!1;!this.isValidLookup(g)&&k&&(F=!0,g=N),this.isValidLookup(g)||(T=!0,g=l);const R=(r.missingKeyNoValueFallbackToKey||this.options.missingKeyNoValueFallbackToKey)&&T?void 0:g,L=k&&N!==g&&this.options.updateMissing;if(T||F||L){if(this.logger.log(L?"updateKey":"missingKey",f,u,w&&!L?`${l}${this.pluralResolver.getSuffix(f,r.count,r)}`:l,L?N:g),a){const H=this.resolve(l,{...r,keySeparator:!1});H&&H.res&&this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.")}let M=[];const U=this.languageUtils.getFallbackCodes(this.options.fallbackLng,r.lng||this.language);if(this.options.saveMissingTo==="fallback"&&U&&U[0])for(let H=0;H{var B;const q=k&&Q!==g?Q:R;this.options.missingKeyHandler?this.options.missingKeyHandler(H,u,K,q,L,r):(B=this.backendConnector)!=null&&B.saveMissing&&this.backendConnector.saveMissing(H,u,K,q,L,r),this.emit("missingKey",H,u,K,g)};this.options.saveMissing&&(this.options.saveMissingPlurals&&w?M.forEach(H=>{const K=this.pluralResolver.getSuffixes(H,r);C&&r[`defaultValue${this.options.pluralSeparator}zero`]&&!K.includes(`${this.options.pluralSeparator}zero`)&&K.push(`${this.options.pluralSeparator}zero`),K.forEach(Q=>{I([H],l+Q,r[`defaultValue${Q}`]||N)})}):I(M,l,N))}g=this.extendTranslation(g,t,r,m,i),T&&g===l&&this.options.appendNamespaceToMissingKey&&(g=`${u}${d}${l}`),(T||F)&&this.options.parseMissingKeyHandler&&(g=this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey?`${u}${d}${l}`:l,F?g:void 0,r))}return s?(m.res=g,m.usedParams=this.getUsedParamsDetails(r),m):g}extendTranslation(t,n,i,r,s){var c,u;if((c=this.i18nFormat)!=null&&c.parse)t=this.i18nFormat.parse(t,{...this.options.interpolation.defaultVariables,...i},i.lng||this.language||r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!i.skipInterpolation){i.interpolation&&this.interpolator.init({...i,interpolation:{...this.options.interpolation,...i.interpolation}});const d=Pn(t)&&(((u=i==null?void 0:i.interpolation)==null?void 0:u.skipOnVariables)!==void 0?i.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables);let f;if(d){const m=t.match(this.interpolator.nestingRegexp);f=m&&m.length}let h=i.replace&&!Pn(i.replace)?i.replace:i;if(this.options.interpolation.defaultVariables&&(h={...this.options.interpolation.defaultVariables,...h}),t=this.interpolator.interpolate(t,h,i.lng||this.language||r.usedLng,i),d){const m=t.match(this.interpolator.nestingRegexp),g=m&&m.length;f(s==null?void 0:s[0])===m[0]&&!i.context?(this.logger.warn(`It seems you are nesting recursively key: ${m[0]} in key: ${n[0]}`),null):this.translate(...m,n),i)),i.interpolation&&this.interpolator.reset()}const a=i.postProcess||this.options.postProcess,l=Pn(a)?[a]:a;return t!=null&&(l!=null&&l.length)&&i.applyPostProcessor!==!1&&(t=Efe.handle(l,t,n,this.options&&this.options.postProcessPassResolved?{i18nResolved:{...r,usedParams:this.getUsedParamsDetails(i)},...i}:i,this)),t}resolve(t,n={}){let i,r,s,a,l;return Pn(t)&&(t=[t]),Array.isArray(t)&&(t=t.map(c=>typeof c=="function"?Kg(c,{...this.options,...n}):c)),t.forEach(c=>{if(this.isValidLookup(i))return;const u=this.extractFromKey(c,n),d=u.key;r=d;let f=u.namespaces;this.options.fallbackNS&&(f=f.concat(this.options.fallbackNS));const h=n.count!==void 0&&!Pn(n.count),m=h&&!n.ordinal&&n.count===0,g=n.context!==void 0&&(Pn(n.context)||typeof n.context=="number")&&n.context!=="",b=n.lngs?n.lngs:this.languageUtils.toResolveHierarchy(n.lng||this.language,n.fallbackLng);f.forEach(v=>{var y,x;this.isValidLookup(i)||(l=v,!this.checkedLoadedFor[`${b[0]}-${v}`]&&((y=this.utils)!=null&&y.hasLoadedNamespace)&&!((x=this.utils)!=null&&x.hasLoadedNamespace(l))&&(this.checkedLoadedFor[`${b[0]}-${v}`]=!0,this.logger.warn(`key "${r}" for languages "${b.join(", ")}" won't get resolved as namespace "${l}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")),b.forEach(O=>{var S;if(this.isValidLookup(i))return;a=O;const w=[d];if((S=this.i18nFormat)!=null&&S.addLookupKeys)this.i18nFormat.addLookupKeys(w,d,O,v,n);else{let E;h&&(E=this.pluralResolver.getSuffix(O,n.count,n));const C=`${this.options.pluralSeparator}zero`,N=`${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;if(h&&(n.ordinal&&E.startsWith(N)&&w.push(d+E.replace(N,this.options.pluralSeparator)),w.push(d+E),m&&w.push(d+C)),g){const _=`${d}${this.options.contextSeparator||"_"}${n.context}`;w.push(_),h&&(n.ordinal&&E.startsWith(N)&&w.push(_+E.replace(N,this.options.pluralSeparator)),w.push(_+E),m&&w.push(_+C))}}let k;for(;k=w.pop();)this.isValidLookup(i)||(s=k,i=this.getResource(O,v,k,n))}))})}),{res:i,usedKey:r,exactUsedKey:s,usedLng:a,usedNS:l}}isValidLookup(t){return t!==void 0&&!(!this.options.returnNull&&t===null)&&!(!this.options.returnEmptyString&&t==="")}getResource(t,n,i,r={}){var s;return(s=this.i18nFormat)!=null&&s.getResource?this.i18nFormat.getResource(t,n,i,r):this.resourceStore.getResource(t,n,i,r)}getUsedParamsDetails(t={}){const n=["defaultValue","ordinal","context","replace","lng","lngs","fallbackLng","ns","keySeparator","nsSeparator","returnObjects","returnDetails","joinArrays","postProcess","interpolation"],i=t.replace&&!Pn(t.replace);let r=i?t.replace:t;if(i&&typeof t.count<"u"&&(r={...r,count:t.count}),this.options.interpolation.defaultVariables&&(r={...this.options.interpolation.defaultVariables,...r}),!i){r={...r};for(const s of n)delete r[s]}return r}static hasDefaultValue(t){const n="defaultValue";for(const i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&i.startsWith(n)&&t[i]!==void 0)return!0;return!1}}class mV{constructor(t){this.options=t,this.supportedLngs=this.options.supportedLngs||!1,this.logger=wd.create("languageUtils"),this.resolveHierarchyCache={}}clearCache(){this.resolveHierarchyCache={}}getScriptPartFromCode(t){if(t=GO(t),!t||!t.includes("-"))return null;const n=t.split("-");return n.length===2||(n.pop(),n[n.length-1].toLowerCase()==="x")?null:this.formatLanguageCode(n.join("-"))}getLanguagePartFromCode(t){if(t=GO(t),!t||!t.includes("-"))return t;const n=t.split("-");return this.formatLanguageCode(n[0])}formatLanguageCode(t){if(Pn(t)&&t.includes("-")){let n;try{n=Intl.getCanonicalLocales(t)[0]}catch{}return n&&this.options.lowerCaseLng&&(n=n.toLowerCase()),n||(this.options.lowerCaseLng?t.toLowerCase():t)}return this.options.cleanCode||this.options.lowerCaseLng?t.toLowerCase():t}isSupportedCode(t){return(this.options.load==="languageOnly"||this.options.nonExplicitSupportedLngs)&&(t=this.getLanguagePartFromCode(t)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.includes(t)}getBestMatchFromCodes(t){if(!t)return null;let n;return t.forEach(i=>{if(n)return;const r=this.formatLanguageCode(i);(!this.options.supportedLngs||this.isSupportedCode(r))&&(n=r)}),!n&&this.options.supportedLngs&&t.forEach(i=>{if(n)return;const r=this.getScriptPartFromCode(i);if(this.isSupportedCode(r))return n=r;const s=this.getLanguagePartFromCode(i);if(this.isSupportedCode(s))return n=s;n=this.options.supportedLngs.find(a=>a===s?!0:!a.includes("-")&&!s.includes("-")?!1:!!(a.includes("-")&&!s.includes("-")&&a.slice(0,a.indexOf("-"))===s||a.startsWith(s)&&s.length>1))}),n||(n=this.getFallbackCodes(this.options.fallbackLng)[0]),n}getFallbackCodes(t,n){if(!t)return[];if(typeof t=="function"&&(t=t(n)),Pn(t)&&(t=[t]),Array.isArray(t))return t;if(!n)return t.default||[];let i=t[n];return i||(i=t[this.getScriptPartFromCode(n)]),i||(i=t[this.formatLanguageCode(n)]),i||(i=t[this.getLanguagePartFromCode(n)]),i||(i=t.default),i||[]}toResolveHierarchy(t,n){const i=this.options.fallbackLng,r=Array.isArray(i)?i.join("|"):i;r!==this._cachedFallbackLng&&(this.resolveHierarchyCache={},this._cachedFallbackLng=r);const s=n===void 0||n===!1||Pn(n),a=n===void 0&&typeof this.options.fallbackLng=="function",l=Pn(t)&&s&&!a;let c=null;if(l){let h;n===void 0?h="undefined":n===!1?h="boolean:false":h=`string:${n}`,c=`${t.length}:${t}|${h}`}if(c!==null){const h=this.resolveHierarchyCache[c];if(h!==void 0)return h.slice()}const u=this.getFallbackCodes((n===!1?[]:n)||this.options.fallbackLng||[],t),d=[],f=h=>{h&&(this.isSupportedCode(h)?d.push(h):this.logger.warn(`rejecting language code not found in supportedLngs: ${h}`))};return Pn(t)&&(t.includes("-")||t.includes("_"))?(this.options.load!=="languageOnly"&&f(this.formatLanguageCode(t)),this.options.load!=="languageOnly"&&this.options.load!=="currentOnly"&&f(this.getScriptPartFromCode(t)),this.options.load!=="currentOnly"&&f(this.getLanguagePartFromCode(t))):Pn(t)&&f(this.formatLanguageCode(t)),u.forEach(h=>{d.includes(h)||f(this.formatLanguageCode(h))}),c!==null?(this.resolveHierarchyCache[c]=d,d.slice()):d}}const gV={zero:0,one:1,two:2,few:3,many:4,other:5},bV={select:e=>e===1?"one":"other",resolvedOptions:()=>({pluralCategories:["one","other"]})};class XMe{constructor(t,n={}){this.languageUtils=t,this.options=n,this.logger=wd.create("pluralResolver"),this.pluralRulesCache={}}clearCache(){this.pluralRulesCache={}}getRule(t,n={}){const i=GO(t==="dev"?"en":t),r=n.ordinal?"ordinal":"cardinal",s=JSON.stringify({cleanedCode:i,type:r});if(s in this.pluralRulesCache)return this.pluralRulesCache[s];let a;try{a=new Intl.PluralRules(i,{type:r})}catch{if(typeof Intl>"u")return this.logger.error("No Intl support, please use an Intl polyfill!"),bV;if(!t.match(/-|_/))return bV;const c=this.languageUtils.getLanguagePartFromCode(t);a=this.getRule(c,n)}return this.pluralRulesCache[s]=a,a}needsPlural(t,n={}){let i=this.getRule(t,n);return i||(i=this.getRule("dev",n)),(i==null?void 0:i.resolvedOptions().pluralCategories.length)>1}getPluralFormsOfKey(t,n,i={}){return this.getSuffixes(t,i).map(r=>`${n}${r}`)}getSuffixes(t,n={}){let i=this.getRule(t,n);return i||(i=this.getRule("dev",n)),i?i.resolvedOptions().pluralCategories.sort((r,s)=>gV[r]-gV[s]).map(r=>`${this.options.prepend}${n.ordinal?`ordinal${this.options.prepend}`:""}${r}`):[]}getSuffix(t,n,i={}){const r=this.getRule(t,i);return r?`${this.options.prepend}${i.ordinal?`ordinal${this.options.prepend}`:""}${r.select(n)}`:(this.logger.warn(`no plural rule found for: ${t}`),this.getSuffix("dev",n,i))}}const yV=(e,t,n,i=".",r=!0)=>{let s=UMe(e,t,n);return!s&&r&&Pn(n)&&(s=KL(e,n,i),s===void 0&&(s=KL(t,n,i))),s},vV=e=>e.replace(/\$/g,"$$$$");class xV{constructor(t={}){var n;this.logger=wd.create("interpolator"),this.options=t,this.format=((n=t==null?void 0:t.interpolation)==null?void 0:n.format)||(i=>i),this.init(t)}init(t={}){t.interpolation||(t.interpolation={escapeValue:!0});const{escape:n,escapeValue:i,useRawValueToEscape:r,prefix:s,prefixEscaped:a,suffix:l,suffixEscaped:c,formatSeparator:u,unescapeSuffix:d,unescapePrefix:f,nestingPrefix:h,nestingPrefixEscaped:m,nestingSuffix:g,nestingSuffixEscaped:b,nestingOptionsSeparator:v,maxReplaces:y,alwaysFormat:x}=t.interpolation;this.escape=n!==void 0?n:zMe,this.escapeValue=i!==void 0?i:!0,this.useRawValueToEscape=r!==void 0?r:!1,this.prefix=s?pf(s):a||"{{",this.suffix=l?pf(l):c||"}}",this.formatSeparator=u||",",this.unescapePrefix=d?"":f?pf(f):"-",this.unescapeSuffix=this.unescapePrefix?"":d?pf(d):"",this.nestingPrefix=h?pf(h):m||pf("$t("),this.nestingSuffix=g?pf(g):b||pf(")"),this.nestingOptionsSeparator=v||",",this.maxReplaces=y||1e3,this.alwaysFormat=x!==void 0?x:!1,this.resetRegExp()}reset(){this.options&&this.init(this.options)}resetRegExp(){const t=(n,i)=>(n==null?void 0:n.source)===i?(n.lastIndex=0,n):new RegExp(i,"g");this.regexp=t(this.regexp,`${this.prefix}(.+?)${this.suffix}`),this.regexpUnescape=t(this.regexpUnescape,`${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`),this.nestingRegexp=t(this.nestingRegexp,`${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`)}interpolate(t,n,i,r){var m;let s,a,l;const c=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},u=g=>{if(!g.includes(this.formatSeparator)){const x=yV(n,c,g,this.options.keySeparator,this.options.ignoreJSONStructure);return this.alwaysFormat?this.format(x,void 0,i,{...r,...n,interpolationkey:g}):x}const b=g.split(this.formatSeparator),v=b.shift().trim(),y=b.join(this.formatSeparator).trim();return this.format(yV(n,c,v,this.options.keySeparator,this.options.ignoreJSONStructure),y,i,{...r,...n,interpolationkey:v})};this.resetRegExp(),!this.escapeValue&&typeof t=="string"&&/\$t\([^)]*\{[^}]*\{\{/.test(t)&&this.logger.warn("nesting options string contains interpolated variables with escapeValue: false — if any of those values are attacker-controlled they can inject additional nesting options (e.g. redirect lng/ns). Sanitise untrusted input before passing it to t(), or keep escapeValue: true.");const d=(r==null?void 0:r.missingInterpolationHandler)||this.options.missingInterpolationHandler,f=((m=r==null?void 0:r.interpolation)==null?void 0:m.skipOnVariables)!==void 0?r.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:g=>g},{regex:this.regexp,safeValue:g=>this.escapeValue?this.escape(g):g}].forEach(g=>{for(l=0;s=g.regex.exec(t);){const b=s[1].trim();if(a=u(b),a===void 0)if(typeof d=="function"){const y=d(t,s,r);a=Pn(y)?y:""}else if(r&&Object.prototype.hasOwnProperty.call(r,b))a="";else if(f){a=s[0];continue}else this.logger.warn(`missed to pass in variable ${b} for interpolating ${t}`),a="";else!Pn(a)&&!this.useRawValueToEscape&&(a=RP(a));const v=g.safeValue(a);if(t=t.replace(s[0],vV(v)),f?(g.regex.lastIndex+=v.length,g.regex.lastIndex-=s[0].length):g.regex.lastIndex=0,l++,l>=this.maxReplaces)break}}),t}nest(t,n,i={}){let r,s,a;const l=(c,u)=>{const d=this.nestingOptionsSeparator;if(!c.includes(d))return c;const f=c.split(new RegExp(`${pf(d)}[ ]*{`));let h=`{${f[1]}`;c=f[0],h=this.interpolate(h,a);const m=h.match(/'/g),g=h.match(/"/g);(((m==null?void 0:m.length)??0)%2===0&&!g||((g==null?void 0:g.length)??0)%2!==0)&&(h=h.replace(/'/g,'"'));try{a=JSON.parse(h),u&&(a={...u,...a})}catch(b){return this.logger.warn(`failed parsing options string in nesting for key ${c}`,b),`${c}${d}${h}`}return a.defaultValue&&a.defaultValue.includes(this.prefix)&&delete a.defaultValue,c};for(;r=this.nestingRegexp.exec(t);){let c=[];a={...i},a=a.replace&&!Pn(a.replace)?a.replace:a,a.applyPostProcessor=!1,delete a.defaultValue;const u=/{.*}/s.test(r[1])?r[1].lastIndexOf("}")+1:r[1].indexOf(this.formatSeparator);if(u!==-1&&(c=r[1].slice(u).split(this.formatSeparator).map(d=>d.trim()).filter(Boolean),r[1]=r[1].slice(0,u)),s=n(l.call(this,r[1].trim(),a),a),s&&r[0]===t&&!Pn(s))return s;Pn(s)||(s=RP(s)),s||(this.logger.warn(`missed to resolve ${r[1]} for nesting ${t}`),s=""),c.length&&(s=c.reduce((d,f)=>this.format(d,f,i.lng,{...i,interpolationkey:r[1].trim()}),s.trim())),t=t.replace(r[0],vV(RP(s))),this.regexp.lastIndex=0}return t}}const YMe=e=>{let t=e.toLowerCase().trim();const n={};if(e.includes("(")){const i=e.split("(");t=i[0].toLowerCase().trim();const r=i[1].slice(0,-1);t==="currency"&&!r.includes(":")?n.currency||(n.currency=r.trim()):t==="relativetime"&&!r.includes(":")?n.range||(n.range=r.trim()):r.split(";").forEach(a=>{if(a){const[l,...c]=a.split(":"),u=c.join(":").trim().replace(/^'+|'+$/g,""),d=l.trim();n[d]||(n[d]=u),u==="false"&&(n[d]=!1),u==="true"&&(n[d]=!0),isNaN(u)||(n[d]=parseInt(u,10))}})}return{formatName:t,formatOptions:n}},wV=e=>{const t={};return(n,i,r)=>{let s=r;r&&r.interpolationkey&&r.formatParams&&r.formatParams[r.interpolationkey]&&r[r.interpolationkey]&&(s={...s,[r.interpolationkey]:void 0});const a=i+JSON.stringify(s);let l=t[a];return l||(l=e(GO(i),r),t[a]=l),l(n)}},ZMe=e=>(t,n,i)=>e(GO(n),i)(t);class JMe{constructor(t={}){this.logger=wd.create("formatter"),this.options=t,this.init(t)}init(t,n={interpolation:{}}){this.formatSeparator=n.interpolation.formatSeparator||",";const i=n.cacheInBuiltFormats?wV:ZMe;this.formats={number:i((r,s)=>{const a=new Intl.NumberFormat(r,{...s});return l=>a.format(l)}),currency:i((r,s)=>{const a=new Intl.NumberFormat(r,{...s,style:"currency"});return l=>a.format(l)}),datetime:i((r,s)=>{const a=new Intl.DateTimeFormat(r,{...s});return l=>a.format(l)}),relativetime:i((r,s)=>{const a=new Intl.RelativeTimeFormat(r,{...s});return l=>a.format(l,s.range||"day")}),list:i((r,s)=>{const a=new Intl.ListFormat(r,{...s});return l=>a.format(l)})}}add(t,n){this.formats[t.toLowerCase().trim()]=n}addCached(t,n){this.formats[t.toLowerCase().trim()]=wV(n)}format(t,n,i,r={}){if(!n||t==null)return t;const s=n.split(this.formatSeparator),a=[];for(let c=0;c-1&&!u.includes(")")&&c+1{var h;const{formatName:d,formatOptions:f}=YMe(u);if(this.formats[d]){let m=c;try{const g=((h=r==null?void 0:r.formatParams)==null?void 0:h[r.interpolationkey])||{},b=g.locale||g.lng||r.locale||r.lng||i;m=this.formats[d](c,b,{...f,...r,...g})}catch(g){this.logger.warn(g)}return m}else this.logger.warn(`there was no format function for ${d}`);return c},t)}}const e5e=(e,t)=>{e.pending[t]!==void 0&&(delete e.pending[t],e.pendingCount--)};class t5e extends Oj{constructor(t,n,i,r={}){var s,a;super(),this.backend=t,this.store=n,this.services=i,this.languageUtils=i.languageUtils,this.options=r,this.logger=wd.create("backendConnector"),this.waitingReads=[],this.maxParallelReads=r.maxParallelReads||10,this.readingCalls=0,this.maxRetries=r.maxRetries>=0?r.maxRetries:5,this.retryTimeout=r.retryTimeout>=1?r.retryTimeout:350,this.state={},this.queue=[],(a=(s=this.backend)==null?void 0:s.init)==null||a.call(s,i,r.backend,r)}queueLoad(t,n,i,r){const s={},a={},l={},c={};return t.forEach(u=>{let d=!0;n.forEach(f=>{const h=`${u}|${f}`;!i.reload&&this.store.hasResourceBundle(u,f)?this.state[h]=2:this.state[h]<0||(this.state[h]===1?a[h]===void 0&&(a[h]=!0):(this.state[h]=1,d=!1,a[h]===void 0&&(a[h]=!0),s[h]===void 0&&(s[h]=!0),c[f]===void 0&&(c[f]=!0)))}),d||(l[u]=!0)}),(Object.keys(s).length||Object.keys(a).length)&&this.queue.push({pending:a,pendingCount:Object.keys(a).length,loaded:{},errors:[],callback:r}),{toLoad:Object.keys(s),pending:Object.keys(a),toLoadLanguages:Object.keys(l),toLoadNamespaces:Object.keys(c)}}loaded(t,n,i){const r=t.split("|"),s=r[0],a=r[1];n&&this.emit("failedLoading",s,a,n),!n&&i&&this.store.addResourceBundle(s,a,i,void 0,void 0,{skipCopy:!0}),this.state[t]=n?-1:2,n&&i&&(this.state[t]=0);const l={};this.queue.forEach(c=>{BMe(c.loaded,[s],a),e5e(c,t),n&&c.errors.push(n),c.pendingCount===0&&!c.done&&(Object.keys(c.loaded).forEach(u=>{l[u]||(l[u]={});const d=c.loaded[u];d.length&&d.forEach(f=>{l[u][f]===void 0&&(l[u][f]=!0)})}),c.done=!0,c.errors.length?c.callback(c.errors):c.callback())}),this.emit("loaded",l),this.queue=this.queue.filter(c=>!c.done)}read(t,n,i,r=0,s=this.retryTimeout,a){if(!t.length)return a(null,{});if(this.readingCalls>=this.maxParallelReads){this.waitingReads.push({lng:t,ns:n,fcName:i,tried:r,wait:s,callback:a});return}this.readingCalls++;const l=(u,d)=>{if(this.readingCalls--,this.waitingReads.length>0){const f=this.waitingReads.shift();this.read(f.lng,f.ns,f.fcName,f.tried,f.wait,f.callback)}if(u&&d&&r{this.read(t,n,i,r+1,s*2,a)},s);return}a(u,d)},c=this.backend[i].bind(this.backend);if(c.length===2){try{const u=c(t,n);u&&typeof u.then=="function"?u.then(d=>l(null,d)).catch(l):l(null,u)}catch(u){l(u)}return}return c(t,n,l)}prepareLoading(t,n,i={},r){if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),r&&r();Pn(t)&&(t=this.languageUtils.toResolveHierarchy(t)),Pn(n)&&(n=[n]);const s=this.queueLoad(t,n,i,r);if(!s.toLoad.length)return s.pending.length||r(),null;s.toLoad.forEach(a=>{this.loadOne(a)})}load(t,n,i){this.prepareLoading(t,n,{},i)}reload(t,n,i){this.prepareLoading(t,n,{reload:!0},i)}loadOne(t,n=""){const i=t.split("|"),r=i[0],s=i[1];this.read(r,s,"read",void 0,void 0,(a,l)=>{a&&this.logger.warn(`${n}loading namespace ${s} for language ${r} failed`,a),!a&&l&&this.logger.log(`${n}loaded namespace ${s} for language ${r}`,l),this.loaded(t,a,l)})}saveMissing(t,n,i,r,s,a={},l=()=>{}){var c,u,d,f,h;if((u=(c=this.services)==null?void 0:c.utils)!=null&&u.hasLoadedNamespace&&!((f=(d=this.services)==null?void 0:d.utils)!=null&&f.hasLoadedNamespace(n))){this.logger.warn(`did not save key "${i}" as the namespace "${n}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!");return}if(!(i==null||i==="")){if((h=this.backend)!=null&&h.create){const m={...a,isUpdate:s},g=this.backend.create.bind(this.backend);if(g.length<6)try{let b;g.length===5?b=g(t,n,i,r,m):b=g(t,n,i,r),b&&typeof b.then=="function"?b.then(v=>l(null,v)).catch(l):l(null,b)}catch(b){l(b)}else g(t,n,i,r,l,m)}!t||!t[0]||this.store.addResource(t[0],n,i,r)}}}const PP=()=>({debug:!1,initAsync:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:"all",preload:!1,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",enableSelector:!1,partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!1,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:e=>{let t={};if(typeof e[1]=="object"&&(t=e[1]),Pn(e[1])&&(t.defaultValue=e[1]),Pn(e[2])&&(t.tDescription=e[2]),typeof e[2]=="object"||typeof e[3]=="object"){const n=e[3]||e[2];Object.keys(n).forEach(i=>{t[i]=n[i]})}return t},interpolation:{escapeValue:!0,prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",nestingOptionsSeparator:",",maxReplaces:1e3,skipOnVariables:!0},cacheInBuiltFormats:!0}),OV=e=>(Pn(e.ns)&&(e.ns=[e.ns]),Pn(e.fallbackLng)&&(e.fallbackLng=[e.fallbackLng]),Pn(e.fallbackNS)&&(e.fallbackNS=[e.fallbackNS]),e.supportedLngs&&!e.supportedLngs.includes("cimode")&&(e.supportedLngs=e.supportedLngs.concat(["cimode"])),e),TC=()=>{},n5e=e=>{Object.getOwnPropertyNames(Object.getPrototypeOf(e)).forEach(n=>{typeof e[n]=="function"&&(e[n]=e[n].bind(e))})};class Zw extends Oj{constructor(t={},n){if(super(),this.options=OV(t),this.services={},this.logger=wd,this.modules={external:[]},n5e(this),n&&!this.isInitialized&&!t.isClone){if(!this.options.initAsync)return this.init(t,n),this;setTimeout(()=>{this.init(t,n)},0)}}init(t={},n){this.isInitializing=!0,typeof t=="function"&&(n=t,t={}),t.defaultNS==null&&t.ns&&(Pn(t.ns)?t.defaultNS=t.ns:t.ns.includes("translation")||(t.defaultNS=t.ns[0]));const i=PP();this.options={...i,...this.options,...OV(t)},this.options.interpolation={...i.interpolation,...this.options.interpolation},t.keySeparator!==void 0&&(this.options.userDefinedKeySeparator=t.keySeparator),t.nsSeparator!==void 0&&(this.options.userDefinedNsSeparator=t.nsSeparator),typeof this.options.overloadTranslationOptionHandler!="function"&&(this.options.overloadTranslationOptionHandler=i.overloadTranslationOptionHandler);const r=u=>u?typeof u=="function"?new u:u:null;if(!this.options.isClone){this.modules.logger?wd.init(r(this.modules.logger),this.options):wd.init(null,this.options);let u;this.modules.formatter?u=this.modules.formatter:u=JMe;const d=new mV(this.options);this.store=new pV(this.options.resources,this.options);const f=this.services;f.logger=wd,f.resourceStore=this.store,f.languageUtils=d,f.pluralResolver=new XMe(d,{prepend:this.options.pluralSeparator}),u&&(f.formatter=r(u),f.formatter.init&&f.formatter.init(f,this.options),this.options.interpolation.format=f.formatter.format.bind(f.formatter)),f.interpolator=new xV(this.options),f.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},f.backendConnector=new t5e(r(this.modules.backend),f.resourceStore,f,this.options),f.backendConnector.on("*",(h,...m)=>{this.emit(h,...m)}),this.modules.languageDetector&&(f.languageDetector=r(this.modules.languageDetector),f.languageDetector.init&&f.languageDetector.init(f,this.options.detection,this.options)),this.modules.i18nFormat&&(f.i18nFormat=r(this.modules.i18nFormat),f.i18nFormat.init&&f.i18nFormat.init(this)),this.translator=new GA(this.services,this.options),this.translator.on("*",(h,...m)=>{this.emit(h,...m)}),this.modules.external.forEach(h=>{h.init&&h.init(this)})}if(this.format=this.options.interpolation.format,n||(n=TC),this.options.fallbackLng&&!this.services.languageDetector&&!this.options.lng){const u=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);u.length>0&&u[0]!=="dev"&&(this.options.lng=u[0])}!this.services.languageDetector&&!this.options.lng&&this.logger.warn("init: no languageDetector is used and no lng is defined"),["getResource","hasResourceBundle","getResourceBundle","getDataByLanguage"].forEach(u=>{this[u]=(...d)=>this.store[u](...d)}),["addResource","addResources","addResourceBundle","removeResourceBundle"].forEach(u=>{this[u]=(...d)=>(this.store[u](...d),this)});const l=T1(),c=()=>{const u=(d,f)=>{this.isInitializing=!1,this.isInitialized&&!this.initializedStoreOnce&&this.logger.warn("init: i18next is already initialized. You should call init just once!"),this.isInitialized=!0,this.options.isClone||this.logger.log("initialized",this.options),this.emit("initialized",this.options),l.resolve(f),n(d,f)};if((this.languages||this.isLanguageChangingTo)&&!this.isInitialized)return u(null,this.t.bind(this));this.changeLanguage(this.options.lng,u)};return this.options.resources||!this.options.initAsync?c():setTimeout(c,0),l}loadResources(t,n=TC){var s,a;let i=n;const r=Pn(t)?t:this.language;if(typeof t=="function"&&(i=t),!this.options.resources||this.options.partialBundledLanguages){if((r==null?void 0:r.toLowerCase())==="cimode"&&(!this.options.preload||this.options.preload.length===0))return i();const l=[],c=u=>{if(!u||u==="cimode")return;this.services.languageUtils.toResolveHierarchy(u).forEach(f=>{f!=="cimode"&&(l.includes(f)||l.push(f))})};r?c(r):this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach(d=>c(d)),(a=(s=this.options.preload)==null?void 0:s.forEach)==null||a.call(s,u=>c(u)),this.services.backendConnector.load(l,this.options.ns,u=>{!u&&!this.resolvedLanguage&&this.language&&this.setResolvedLanguage(this.language),i(u)})}else i(null)}reloadResources(t,n,i){const r=T1();return typeof t=="function"&&(i=t,t=void 0),typeof n=="function"&&(i=n,n=void 0),t||(t=this.languages),n||(n=this.options.ns),i||(i=TC),this.services.backendConnector.reload(t,n,s=>{r.resolve(),i(s)}),r}use(t){if(!t)throw new Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");if(!t.type)throw new Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");return t.type==="backend"&&(this.modules.backend=t),(t.type==="logger"||t.log&&t.warn&&t.error)&&(this.modules.logger=t),t.type==="languageDetector"&&(this.modules.languageDetector=t),t.type==="i18nFormat"&&(this.modules.i18nFormat=t),t.type==="postProcessor"&&Efe.addPostProcessor(t),t.type==="formatter"&&(this.modules.formatter=t),t.type==="3rdParty"&&this.modules.external.push(t),this}setResolvedLanguage(t){if(!(!t||!this.languages)&&!["cimode","dev"].includes(t)){for(let n=0;n{this.language=l,this.languages=this.services.languageUtils.toResolveHierarchy(l),this.resolvedLanguage=void 0,this.setResolvedLanguage(l)},s=(l,c)=>{c?this.isLanguageChangingTo===t&&(r(c),this.translator.changeLanguage(c),this.isLanguageChangingTo=void 0,this.emit("languageChanged",c),this.logger.log("languageChanged",c)):this.isLanguageChangingTo=void 0,i.resolve((...u)=>this.t(...u)),n&&n(l,(...u)=>this.t(...u))},a=l=>{var d,f;!t&&!l&&this.services.languageDetector&&(l=[]);const c=Pn(l)?l:l&&l[0],u=this.store.hasLanguageSomeTranslations(c)?c:this.services.languageUtils.getBestMatchFromCodes(Pn(l)?[l]:l);u&&(this.language||r(u),this.translator.language||this.translator.changeLanguage(u),(f=(d=this.services.languageDetector)==null?void 0:d.cacheUserLanguage)==null||f.call(d,u)),this.loadResources(u,h=>{s(h,u)})};return!t&&this.services.languageDetector&&!this.services.languageDetector.async?a(this.services.languageDetector.detect()):!t&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect.length===0?this.services.languageDetector.detect().then(a):this.services.languageDetector.detect(a):a(t),i}getFixedT(t,n,i,r){const s=r==null?void 0:r.scopeNs,a=(l,c,...u)=>{let d;typeof c!="object"?d=this.options.overloadTranslationOptionHandler([l,c].concat(u)):d={...c},d.lng=d.lng||a.lng,d.lngs=d.lngs||a.lngs;const f=d.ns!==void 0&&d.ns!==null;d.ns=d.ns||a.ns,d.keyPrefix!==""&&(d.keyPrefix=d.keyPrefix||i||a.keyPrefix);const h={...this.options,...d};Array.isArray(s)&&!f&&(h.ns=s),typeof d.keyPrefix=="function"&&(d.keyPrefix=Kg(d.keyPrefix,h));const m=this.options.keySeparator||".";let g;return d.keyPrefix&&Array.isArray(l)?g=l.map(b=>(typeof b=="function"&&(b=Kg(b,h)),`${d.keyPrefix}${m}${b}`)):(typeof l=="function"&&(l=Kg(l,h)),g=d.keyPrefix?`${d.keyPrefix}${m}${l}`:l),this.t(g,d)};return Pn(t)?a.lng=t:a.lngs=t,a.ns=n,a.keyPrefix=i,a}t(...t){var n;return(n=this.translator)==null?void 0:n.translate(...t)}exists(...t){var n;return(n=this.translator)==null?void 0:n.exists(...t)}setDefaultNamespace(t){this.options.defaultNS=t}hasLoadedNamespace(t,n={}){if(!this.isInitialized)return this.logger.warn("hasLoadedNamespace: i18next was not initialized",this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty",this.languages),!1;const i=n.lng||this.resolvedLanguage||this.languages[0],r=this.options?this.options.fallbackLng:!1,s=this.languages[this.languages.length-1];if(i.toLowerCase()==="cimode")return!0;const a=(l,c)=>{const u=this.services.backendConnector.state[`${l}|${c}`];return u===-1||u===0||u===2};if(n.precheck){const l=n.precheck(this,a);if(l!==void 0)return l}return!!(this.hasResourceBundle(i,t)||!this.services.backendConnector.backend||this.options.resources&&!this.options.partialBundledLanguages||a(i,t)&&(!r||a(s,t)))}loadNamespaces(t,n){const i=T1();return this.options.ns?(Pn(t)&&(t=[t]),t.forEach(r=>{this.options.ns.includes(r)||this.options.ns.push(r)}),this.loadResources(r=>{i.resolve(),n&&n(r)}),i):(n&&n(),Promise.resolve())}loadLanguages(t,n){const i=T1();Pn(t)&&(t=[t]);const r=this.options.preload||[],s=t.filter(a=>!r.includes(a)&&this.services.languageUtils.isSupportedCode(a));return s.length?(this.options.preload=r.concat(s),this.loadResources(a=>{i.resolve(),n&&n(a)}),i):(n&&n(),Promise.resolve())}dir(t){var r,s;if(t||(t=this.resolvedLanguage||(((r=this.languages)==null?void 0:r.length)>0?this.languages[0]:this.language)),!t)return"rtl";try{const a=new Intl.Locale(t);if(a&&a.getTextInfo){const l=a.getTextInfo();if(l&&l.direction)return l.direction}}catch{}const n=["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ug","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam","ckb"],i=((s=this.services)==null?void 0:s.languageUtils)||new mV(PP());return t.toLowerCase().indexOf("-latn")>1?"ltr":n.includes(i.getLanguagePartFromCode(t))||t.toLowerCase().indexOf("-arab")>1?"rtl":"ltr"}static createInstance(t={},n){const i=new Zw(t,n);return i.createInstance=Zw.createInstance,i}cloneInstance(t={},n=TC){const i=t.forkResourceStore;i&&delete t.forkResourceStore;const r={...this.options,...t,isClone:!0},s=new Zw(r);if((t.debug!==void 0||t.prefix!==void 0)&&(s.logger=s.logger.clone(t)),["store","services","language"].forEach(l=>{s[l]=this[l]}),s.services={...this.services},s.services.utils={hasLoadedNamespace:s.hasLoadedNamespace.bind(s)},i){const l=Object.keys(this.store.data).reduce((c,u)=>(c[u]={...this.store.data[u]},c[u]=Object.keys(c[u]).reduce((d,f)=>(d[f]={...c[u][f]},d),c[u]),c),{});s.store=new pV(l,r),s.services.resourceStore=s.store}if(t.interpolation){const c={...PP().interpolation,...this.options.interpolation,...t.interpolation},u={...r,interpolation:c};s.services.interpolator=new xV(u)}return s.translator=new GA(s.services,r),s.translator.on("*",(l,...c)=>{s.emit(l,...c)}),s.init(r,n),s.translator.options=r,s.translator.backendConnector.services.utils={hasLoadedNamespace:s.hasLoadedNamespace.bind(s)},s}toJSON(){return{options:this.options,store:this.store,language:this.language,languages:this.languages,resolvedLanguage:this.resolvedLanguage}}}const Ho=Zw.createInstance();Ho.createInstance;Ho.dir;Ho.init;Ho.loadResources;Ho.reloadResources;Ho.use;Ho.changeLanguage;Ho.getFixedT;Ho.t;Ho.exists;Ho.setDefaultNamespace;Ho.hasLoadedNamespace;Ho.loadNamespaces;Ho.loadLanguages;var Tfe={exports:{}},Gn={};/** +安装命令:{{command}}`,title:"接力到云端继续执行",description:"按顺序复制两段提示词,Codex 会通过插件将您的本地任务接力到云端",closeAria:"关闭本地迁移引导",installTitle:"安装插件",installDescription:"首次使用时,请选择一种安装方式。",copied:"已复制",copyInstallPrompt:"复制安装提示词",copyInstallCommand:"复制安装命令",installMethodAria:"插件安装方式",conversationInstall:"与 Codex 对话安装",terminalInstall:"从终端安装",taskTitle:"任务接力",taskDescription:"插件安装完成后复制,Codex 会迁移当前项目并继续执行任务。",copyHandoffPrompt:"复制接力提示词",generatingPairing:"正在生成新的配对码",pairingExpired:"配对码已过期",pairingRemaining:"配对码有效期剩余 {{countdown}}",refreshing:"刷新中",refreshPairing:"刷新配对码",pairingLoading:"正在生成配对码",pairingUnavailable:"配对码尚未生成。",statusAria:"端云接力状态",statusTitle:"接力状态",requestReceivedNamed:"已收到“{{name}}”的端云接力请求",requestReceivedCurrent:"已收到当前项目的端云接力请求",requestHelp:"复制接力提示词后,Codex 的请求会显示在这里。",entering:"正在进入",enterCodex:"进入 Codex",clipboardUnsupported:"当前浏览器不支持写入剪贴板。",steps:{request:"等待端侧请求",session:"创建云端 Session",restore:"恢复项目",continue:"发送续跑任务"},status:{issued:"等待请求",creating:"正在创建 Session",sessionCreated:"正在迁移项目",continuing:"正在启动云端任务",running:"云端执行中",completed:"接力完成",failed:"接力失败"}},hde={model:{description:"显示或切换当前对话模型",keywords:"模型 switch"},models:{description:"列出 app-server 可用模型",keywords:"模型列表 list"},skill:{description:"浏览并调用当前工作区可用的 Skill",keywords:"技能 workflow"},skills:{description:"浏览并调用当前工作区可用的 Skills",keywords:"技能列表 workflow list"},new:{description:"开始一个新对话",keywords:"新建 对话"},resume:{description:"打开历史会话或恢复指定 Thread",keywords:"历史 恢复 session"},fork:{description:"从当前上下文分叉一个新对话",keywords:"分叉 branch"},compact:{description:"压缩当前对话上下文",keywords:"压缩 上下文"},archive:{description:"归档当前对话并新建对话",keywords:"归档 关闭"},status:{description:"显示当前连接、Thread、模型与 Token 状态",keywords:"状态 连接 token"},clear:{description:"清空当前视图并开始新对话",keywords:"清空 重置"},help:{description:"显示 Sandbox 支持的快捷命令",keywords:"帮助 命令"},currentModel:"当前模型",availableModel:"可用模型",workspace:"工作空间",notSet:"未设置",modelLabel:"模型",statusLabel:"状态",running:"运行中",idle:"空闲",totalTokens:"累计 Token",contextWindow:"上下文窗口",imageFallback:"图片",unknown:"未知快捷命令:{{command}}。输入 /help 查看可用命令。",automaticSkills:"智能开发模式会自动使用开发能力,无需手动选择 Skill。",activity:{new:"已新建 Codex 对话",resumed:"已恢复 Codex 对话",deleted:"已删除 Codex 历史会话",modelChanged:"已切换 Codex 模型",availableModels:"Codex 可用模型",noModels:"当前没有可用模型",forked:"已分叉 Codex 对话",compacting:"已开始压缩当前 Codex 对话",archived:"已归档 Codex 对话",status:"Codex 当前状态",help:"Sandbox 支持的 Codex 快捷命令"}},pde={common:tde,tool:nde,threads:ide,permissions:rde,workspace:sde,approval:ade,composer:ode,launch:lde,session:cde,agentDetails:ude,agentWorkspace:dde,handoff:fde,commands:hde},FMe=Object.freeze(Object.defineProperty({__proto__:null,agentDetails:ude,agentWorkspace:dde,approval:ade,commands:hde,common:tde,composer:ode,default:pde,handoff:fde,launch:lde,permissions:rde,session:cde,threads:ide,tool:nde,workspace:sde},Symbol.toStringTag,{value:"Module"})),mde={retry:"重试",signInToContinue:"登录以继续使用",signInWith:"使用 {{provider}} 登录",enterUsername:"输入一个用户名即可开始",usernamePlaceholder:"用户名(字母 + 数字,最多 16 位)",enter:"进入",usernameInvalid:"只能包含大小写字母和数字,最多 16 位。",identityProvider:{volcengine:"火山引擎 Identity",byteplus:"BytePlus Identity"},powered:{volcengine:"火山引擎 AgentKit 提供企业级 Agent 解决方案",byteplus:"BytePlus AgentKit 提供企业级 Agent 解决方案"},legalPrefix:"继续即表示你已阅读并同意 AgentKit",terms:"产品和服务条款",copyright:"© {{year}} VeADK。保留所有权利。"},gde={title:"登录状态已过期",description:"当前编辑内容会保留。重新登录后,刚才的操作将自动继续。",waiting:"等待登录完成…",signInAgain:"重新登录"},bde={breadcrumbs:"面包屑",selectAgent:"选择 Agent",switchAgent:"切换智能体"},yde={cancel:"取消",close:"关闭确认框"},BMe={login:mde,authExpired:gde,navbar:bde,confirm:yde},UMe=Object.freeze(Object.defineProperty({__proto__:null,authExpired:gde,confirm:yde,default:BMe,login:mde,navbar:bde},Symbol.toStringTag,{value:"Module"})),vde={defaultUser:"用户",shortcuts:"快捷入口",tryCli:"体验 AgentKit CLI",developerResources:"开发者资源",systemInfo:"系统信息",language:"语言",issueFeedback:"问题反馈",logout:"退出登录",roles:{admin:"管理员",developer:"开发者",user:"普通用户"}},xde={home:"返回首页",expand:"展开侧边栏",collapse:"收起侧边栏",label:"主导航",newChat:"新会话",agents:"智能体",workspaces:"工作区",library:"资源库",cronjobs:"定时任务",automations:"自动化"},wde={title:"历史会话",newConversation:"新会话",create:"新建会话",loading:"正在加载历史会话…",empty:"暂无会话",current:"当前",manage:"管理历史会话:{{title}}",more:"更多",delete:"删除",loadingMore:"加载中…",loadMore:"加载更多",evaluatingTitle:"正在自动评测",evaluating:"评测中",generating:"正在生成"},QMe={account:vde,navigation:xde,history:wde},zMe=Object.freeze(Object.defineProperty({__proto__:null,account:vde,default:QMe,history:wde,navigation:xde},Symbol.toStringTag,{value:"Module"})),Ode={placeholder:"请选择",collapseOptions:"收起模型选项",expandOptions:"展开模型选项",noOptions:"暂无可用选项",noMatches:"没有匹配项,可直接使用当前模型 ID"},Sde={unsupportedActivity:"不支持的 Skill 对话活动",ariaLabel:"Skill 生成对话"},kde={code:"错误码:{{code}}",type:"错误类型:{{type}}",representation:"异常表示:{{value}}",rawResponse:`服务端原始响应: +{{value}}`,original:"原始错误:{{message}}",details:"详细信息"},Ede={ariaLabel:"Skill 文件树",viewSource:"查看源码",viewPreview:"查看预览",download:"下载",binaryFile:"二进制文件",bytes:"{{value}} 字节",binaryDescription:"当前接口仅返回文件元数据,可单独下载原文件。",metadata:"Skill 元数据",noFiles:"暂无文件"},Cde={close:"关闭",name:"名称",region:"地域",optionalDescription:"描述(可选)",cancel:"取消",create:"创建",creating:"创建中…",save:"保存",saving:"保存中…",upload:"上传",uploading:"上传中…",createSpaceTitle:"新建 Skill 空间",editSpaceTitle:"编辑 Skill 空间",uploadTitle:"上传到 {{name}}",createSpaceFailed:"创建 Skill 空间失败",updateSpaceFailed:"更新 Skill 空间失败",archiveValidationFailed:"Skill ZIP 格式校验失败",uploadFailed:"上传 Skill 失败",dropzone:"拖拽 Skill ZIP 到这里",chooseLocalFile:"或点击选择本地文件",archiveHelp:"ZIP 根目录需要包含 SKILL.md,也可以只包含一层包装目录。选择后仅检查格式,不会自动上传。",validating:"正在检查文件格式…",validationPassed:"格式检查通过:{{name}},共 {{count}} 个文件"},Tde={styles:{concise:"简洁实用",strict:"严谨稳健",tutorial:"教程友好",automation:"自动化优先",custom:"自定义",customFallback:"自定义风格"},stages:{preparing:"正在准备 Dev Sandbox",ready:"Skill 已生成并通过格式校验",failed:"生成失败",cancelled:"已停止",validating:"正在校验 Skill 格式",packaging:"正在整理文件",generating:"正在生成 Skill",repairingAgain:"正在再次修复",autoRepairing:"正在自动修复({{attempt}}/{{max}})"},validation:{fallback:"Skill 格式校验未通过",repairInstruction:"只修复下面列出的 Skill 格式错误,不要改变原有用途和内容范围。",recheckInstruction:"修复后重新检查目录结构、SKILL.md frontmatter 和所有文本文件。",nameTooLong:"Skill 名称不能超过 64 个字符",invalidName:"Skill 名称只能包含小写字母、数字和连字符",modelTooLong:"模型 ID 不能超过 128 个字符",invalidModel:"模型 ID 只能包含字母、数字、点、下划线、连字符、斜杠和冒号"},errors:{loadCapability:"读取 Dev Sandbox 配置失败",autoRepair:"自动修复格式错误失败",pollCandidate:"读取候选方案状态失败,正在重试",createCandidate:"创建候选方案失败",refine:"继续调整失败",repairAgain:"再次修复格式错误失败",selectSpace:"请选择上传的 Skill Space",unsupportedRegion:"当前 Skill 地域不受支持",upload:"上传 Skill 失败",download:"下载失败"},sessionMax:"Session 最长保留 1 小时",remaining:"剩余 {{minutes}}:{{seconds}}",unnamedSpace:"未命名 Skill Space",leaveConfirmation:"离开后将停止并释放正在运行的 Dev Sandbox,确定离开吗?",createTitle:"创建技能",optimizeTitle:"优化 {{name}}",skillFallback:"技能",back:"返回技能空间",home:"主页技能生成",basicInfo:"基本信息",goal:"目标",createIntentPlaceholder:"描述希望这个 Skill 完成什么任务",optimizeIntentPlaceholder:"描述希望如何优化当前 Skill",skillName:"Skill 名称",autoNamePlaceholder:"留空时自动生成",nameHelp:"仅支持小写字母、数字和连字符;留空时自动生成。",createPlans:"生成方案",optimizePlans:"优化方案",createPlansDescription:"按不同方案并行生成多个技能,您可以选择最佳结果",optimizePlansDescription:"按不同方案并行优化当前技能,您可以选择最佳结果",plan:"方案 {{count}}",remove:"移除",model:"模型",modelPlaceholder:"选择或输入模型 ID",style:"风格",customStyle:"自定义风格",customStylePlaceholder:"描述表达方式、严谨程度或输出偏好",addConfiguration:"添加配置",notConfigured:"管理员未配置",generate:"生成",candidates:"候选方案",progress:"进度",retryCandidate:"重试此方案",formatValidationFailed:"格式校验未通过",repairAgain:"再次修复",files:"文件",downloadZip:"下载 ZIP",loadingFiles:"正在读取文件…",filesPending:"生成过程中会在这里显示完整文件树",uploadToSpace:"上传到 Skill Space",loadingSpaces:"正在加载 Skill Space",selectSpace:"选择 Skill Space",continuePlaceholder:"继续调整这个候选方案",continue:"继续调整",uploading:"上传中…",overwrite:"覆盖原 Skill",uploadToSelectedSpace:"上传到 Skill Space",uploadToCurrentSpace:"上传到当前空间",allCandidatesFailed:"所有方案均创建失败,可分别重试。"},Ade={invalidFormat:"{{label}}格式错误。",recoveryStatus:"Skill 恢复点状态",errorResponse:"错误响应",errorDetails:"错误详情",missingContentType:"Content-Type 缺失",gatewayError:"{{fallback}}(HTTP {{status}},Content-Type: {{contentType}})。请检查代理或网关配置。",nonJson:"{{fallback}}:服务端返回非 JSON 响应(HTTP {{status}},Content-Type: {{contentType}}),请检查代理或网关配置。",activity:"Skill 会话活动",invalidActivity:"Skill 会话活动格式错误。",invalidToolActivity:"Skill 工具活动格式错误。",invalidTextActivity:"Skill 文本活动格式错误。",publication:"Skill 发布结果",task:"Skill 会话",file:"Skill 文件",unknownTaskState:"Skill 会话状态无法识别。",capability:"Skill 工作台能力",loadCapability:"读取 Skill 工作台能力失败",prepareTask:"准备 Skill 会话失败",taskReference:"Skill 会话引用",startOptimization:"开始优化 Skill 失败",startTask:"开始 Skill 会话失败",taskSummary:"Skill 会话摘要",taskList:"Skill 会话列表",loadTaskList:"读取 Skill 会话列表失败",invalidTaskList:"Skill 会话列表格式错误。",loadTask:"读取 Skill 会话失败",artifact:"Skill 产物",artifactFile:"Skill 产物文件",loadArtifact:"读取 Skill 产物失败",refine:"继续调整 Skill 失败",stop:"停止当前 Skill 任务失败",publish:"发布 Skill 失败",nonNdjson:"发布 Skill 失败:服务端返回了非 NDJSON 响应。",missingStream:"发布 Skill 失败:服务端没有返回进度流。",publishProgress:"发布进度",invalidPublishProgress:"发布进度格式错误。",publishError:"发布错误",unknownPublishEvent:"未知的发布进度事件。",publishResult:"发布结果",streamEnded:"发布进度流提前结束,无法确认发布结果。请刷新技能中心确认状态。",deleteTask:"删除 Skill 会话失败",download:"下载 Skill 失败"},_de={configSelect:Ode,conversation:Sde,errorDetails:kde,fileTree:Ede,management:Cde,generation:Tde,api:Ade},VMe=Object.freeze(Object.defineProperty({__proto__:null,api:Ade,configSelect:Ode,conversation:Sde,default:_de,errorDetails:kde,fileTree:Ede,generation:Tde,management:Cde},Symbol.toStringTag,{value:"Module"})),Nde={back:"返回上一页",reload:"重新加载",notConfigured:"未配置",name:"名称",description:"描述",delete:"删除",save:"保存",saving:"保存中",add:"添加",manage:"管理",environment:"环境",noDescription:"暂无描述",refresh:"刷新",close:"关闭",retry:"重试",loading:"加载中…",previousPage:"上一页",nextPage:"下一页",edit:"编辑",all:"全部",search:"搜索",cancel:"取消",view:"查看",viewDetails:"查看详情",deleting:"删除中…",create:"创建",creating:"创建中",adding:"添加中",generating:"生成中",uploading:"上传中",preview:"预览",loadFailed:"加载失败",select:"选择",collapse:"收起",expand:"展开",none:"无"},jde={ariaLabel:"AgentKit 快速入口",closeAriaLabel:"关闭 AgentKit 欢迎卡片",title:"欢迎使用 AgentKit",description:"通过 AgentKit 平台快速构建与托管您的企业级智能体",docsAriaLabel:"打开 AgentKit 文档,在新窗口打开",docs:"文档",consoleAriaLabel:"打开 AgentKit 控制台,在新窗口打开",console:"控制台"},Rde={checkUpdates:"检查更新",checkingVersions:"正在检查版本…",versionCheckError:"查询沙箱版本失败,请检查凭据、区域及接口权限后重试",sandboxUpdateError:"Sandbox 更新失败,请刷新检查实际状态后重试",modelEnvRepairUnavailable:"无法补齐模型环境变量,请检查 CODEX_API_KEY 和 CODEX_BASE_URL",updateSandbox:"更新{{variant}}{{name}}",updatingSandbox:"更新中",title:"系统信息",description:"查看当前 Studio 版本及关联的基础资源",general:"通用",currentVersion:"当前版本",storage:"存储",loadingStorage:"正在加载存储信息",tosAddress:"TOS 地址",openTosConsole:"在云控制台中打开 TOS 存储桶",environmentBuild:"环境构建",loadingEnvironmentResources:"正在加载环境构建资源",environmentResourcesError:"环境构建资源加载失败,请检查云凭据后重试。",codePipelineWorkspace:"CodePipeline 工作空间",codePipelinePipeline:"CodePipeline 流水线",openCodePipelineWorkspace:"在云控制台中打开 CodePipeline Workspace",createdOnFirstBuild:"首次构建时自动创建",containerRegistryRepository:"Container Registry 仓库",openContainerRegistryRepository:"在云控制台中打开 Container Registry 仓库",sandboxInfo:"沙箱信息",loadingSandboxInfo:"正在加载沙箱信息",sandboxInfoError:"沙箱信息加载失败,请重试。",snapshot:"快照版",snapshotWithSpace:"快照版 ",openToolConsole:"在云控制台中打开{{name}}",updateModelEnv:"更新{{variant}}{{name}}模型环境变量",modelEnvUpdated:"已更新",modelEnvAlreadyCurrent:"无需更新",userPool:"用户池",loadingUserPool:"正在加载用户池",userPoolError:"用户池加载失败,请重试。",modelEnvUpdateError:"模型环境变量更新失败,请重试。",openUserPoolConsole:"在云控制台中打开用户池{{name}}",unnamedUserPool:"未命名用户池",id:"ID",domain:"域名",region:"区域",noLocalUserPool:"本地模式未配置用户池",noUserPool:"当前 Studio 未配置用户池"},Ide={workspace:"Agent 工作区",library:"Agent 库",evaluation:"评测",agentList:"Agent 列表",agentDetails:"Agent 详情",newAgent:"新建 Agent",loading:"加载中…",loadingCloudAgents:"正在加载云端 Agent…",noAgentSelected:"请选择一个 Agent",local:"本地",remote:"云端",localAgent:"本地 Agent",remoteAgent:"云端 Agent",agentCount:"{{count}} 个 Agent",agentCountLabel:"Agent 数量",details:"详情",chat:"对话",update:"更新",backToAgentList:"返回 Agent 列表",loadingAgent:"正在加载 Agent",loadingAgentDescription:"正在读取 Agent 配置和 Runtime 信息。",loadingAgentInfo:"正在加载 Agent 信息…",detailLoadFailed:"无法加载 Agent 详情",detailLoadFailedDescription:"请检查 Runtime 状态后重试。",partialInfoUnavailable:"部分信息暂时不可用",upgradeRuntimeForDetails:"请升级 Runtime 以查看完整 Agent 信息。",basicInfo:"基本信息",usageOverview:"使用概览",sections:{basic:"基本信息",usage:"使用概览",evaluations:"评测",optimizations:"优化建议",integrations:"集成",versions:"版本"},evaluationGroup:"评测组",optimizations:"优化建议",optimizationsDescription:"根据评测结果查看可执行的优化建议。",integrations:"集成",githubVersions:"GitHub 版本",githubVersionsDescription:"查看持续交付产生的版本并创建回退 PR。",currentVersionOnly:"当前未启用 GitHub 持续交付,仅展示当前生产版本。",loadingVersions:"正在加载版本…",noVersion:"暂无版本记录",prLink:"Pull Request",viewPr:"查看 PR",author:"提交人",publishStatus:"发布状态",viewRelease:"查看发布记录",rollbackToVersion:"回退到此版本",rollingBack:"正在创建回退…",rollbackEvent:"回退事件",sourceMergedRuntimeStill:"最新源码已合并,但 Runtime 仍处于",currentProductionVersionHint:";当前生产版本保持不变。",usageSummary:"使用统计",totalCalls:"总调用次数",userCount:"用户数",userDetails:"用户明细",usageUserList:"Agent 使用用户列表",user:"用户",callCount:"调用次数",lastUsed:"最近使用",unknownUser:"未知用户",loadingUsage:"正在加载使用数据…",refreshing:"刷新中…",noUsage:"暂无使用记录",usageUnavailable:"当前 Agent 暂无可用的使用统计。",usagePagination:"使用记录分页",pageOf:"第 {{page}} / {{total}} 页",notProvided:"暂未提供",integrationMethods:"集成方式",integrationDescription:"通过 Runtime API 或 A2A 协议集成当前 Agent。",integrationProtocol:"集成协议",runtimeStatus:"Runtime 状态",executionFlow:"执行流程",probingIntegration:"正在检测集成能力",probingIntegrationDescription:"正在读取可用端点和鉴权配置。",configurationStatus:"配置状态",discoveryEndpoint:"发现端点",invocationEndpoint:"调用端点",invocationUrl:"调用地址",authentication:"鉴权方式",networkAccess:"网络访问",notAvailable:"暂无",noAuthentication:"无需鉴权",noApiKeyRequired:"无需 API Key",usesOauthJwt:"使用 OAuth / JWT",showApiKey:"显示 API Key",hideApiKey:"隐藏 API Key",pythonExample:"Python 示例",deploymentConfig:"部署配置",deploymentConfigDescription:"确认实例和运行配置后更新 Runtime。",deploymentRegion:"部署区域",concurrency:"并发数",selectedOptimizations:"已选优化项",selectedOptimizationsDescription:"这些优化会应用到本次更新。",optimizationProfile:"优化方案",updatePending:"等待更新",updatingDeployment:"正在更新部署",restoringUpdateConfig:"正在恢复更新配置…",updateConfigUnavailable:"无法读取更新配置",legacyConfigMissing:"旧版本 Runtime 缺少可恢复的配置,请重新创建。",deploymentFailed:"部署失败",continueEditing:"继续编辑",loadingOptimizations:"正在加载优化建议…",noOptimizations:"暂无优化建议",fixPriority:"优先级",suggestedModule:"建议模块",suggestionAndReason:"建议与原因",priority:{high:"高",medium:"中",low:"低"},modules:{agentStructure:"Agent 结构",prompt:"提示词",tool:"工具",knowledge:"知识库",memory:"记忆",workflow:"工作流",other:"其他"},evaluationGroupList:"评测组列表",newEvaluationGroup:"新建评测组",newEvaluationGroupName:"新评测组 {{count}}",searchEvaluationGroups:"搜索评测组",noMatchingEvaluationGroups:"没有匹配的评测组",noEvaluationGroupSelected:"请选择一个评测组",groupStats:"{{agents}} 个 Agent · {{runs}} 次运行",evaluationGroupDetails:"评测组详情",evaluationGroupStats:"{{agents}} 个 Agent · {{caseSet}} · {{runs}} 次运行",startEvaluation:"开始评测",evaluationConfig:"评测配置",historyResults:"历史结果",participatingAgents:"参与 Agent",selectedCount:"已选择 {{count}} 个",evaluationResources:"评测资源",evaluationSet:"评测集",evaluator:"评估器",caseCount:"{{count}} 条案例",evaluationMetrics:"评测指标",selectedMetricCount:"已选择 {{count}} 项",historyDescription:"查看每次评测的分数和运行状态。",noHistory:"暂无评测历史",noHistoryDescription:"运行一次评测后,结果会显示在这里。",evaluationRun:"第 {{index}} 次评测",evaluationRunMeta:"{{time}} · {{agents}} 个 Agent",overallScore:"综合分",completed:"已完成",evaluationDefaults:{coreRegression:"核心能力回归",safetyCheck:"安全与幻觉检查",coreSet:"核心回归集",safetySet:"安全边界集",toolSet:"工具调用集",qualityEvaluator:"综合质量评估器",factualEvaluator:"事实一致性评估器",toolEvaluator:"工具调用评估器",responseQuality:"回答质量",factualAccuracy:"事实准确性",toolUse:"工具调用",responseEfficiency:"响应效率",todayTime:"今天 10:32",yesterdayTime:"昨天 16:08",julyTime:"7 月 25 日 14:20",justNow:"刚刚"},defaultCases:{agentName:"示例 Agent",goodSetName:"示例正向案例集",badSetName:"示例负向案例集",weeklyFeedback:{input:"总结本周客户反馈,并按优先级归类。",output:"覆盖主要问题,给出清晰的优先级与下一步动作。",tag:"总结",reason:"任务完整覆盖了用户目标,输出结构清晰,并给出了可执行的下一步动作。"},research:{input:"查询最新公开资料并附上来源。",output:"调用搜索工具,结论与引用一一对应。",tag:"工具调用"},uncertainConclusion:{input:"在信息不足时直接给出确定结论。",output:"应明确说明未知,并主动询问缺失信息。",tag:"幻觉",reason:"信息不足时仍给出了确定结论,缺少必要的澄清步骤与不确定性说明。"},repeatedTool:{input:"连续重复调用相同工具获取同一结果。",output:"复用已有结果,避免无意义的重复调用。",tag:"效率"}},goodCases:"正向案例",badCases:"负向案例",goodCase:"正向案例",badCase:"负向案例",reference:"参考答案",caseResultFilter:"案例结果筛选",feedbackSourceFilter:"反馈来源筛选",searchCases:"搜索案例",searchCasesPlaceholder:"搜索输入、输出或标签",selectCases:"选择案例",selectAll:"全选",selectAllVisible:"选择当前可见案例",selectedCaseCount:"已选择 {{count}} 条",deleteSelected:"删除所选",deleteSelectedTitle:"删除所选 Agent",deleteSelectionDescription:"确定删除所选的 {{count}} 个项目吗?此操作无法撤销。",deleteCasesConfirm:"删除所选案例",deleteOneCaseConfirm:"删除这个案例",deleteFeedbackCase:"删除反馈案例",noFeedbackCases:"暂无反馈案例",noMatchingCases:"没有匹配的案例",loadingEvaluationSet:"正在加载评测集…",userInput:"用户输入",agentOutput:"Agent 输出",score:"得分",scoreReason:"评分原因",noUserInput:"暂无用户输入",noVisibleResponse:"暂无可见回复",note:"备注:",manualFeedback:"人工反馈",automaticFeedback:"自动反馈",scoreValue:"{{score}} 分",unknownTime:"时间未知",deleteAgentTitle:"删除 Agent",deleteAgentDescription:"确定删除 Agent“{{name}}”吗?",deleteDraftDescription:"确定删除草稿“{{name}}”吗?",deleteAgent:"删除 Agent",closeDeleteConfirmation:"关闭删除确认",draftDeletionWarning:"草稿将从当前浏览器中删除。",runtimeDeletionWarning:"Runtime 和相关云端资源将被删除。",noneSelected:"尚未选择",none:"无",notPublished:"未发布",notRecorded:"未记录",noTime:"暂无时间",noPr:"暂无 PR",comingSoon:"评测能力即将开放",preparing:"准备中",cancelled:"已取消",failed:"失败",totalCount:"共 {{count}} 条",deploymentProgress:"部署进度",returnToEdit:"返回编辑",buildLog:"构建日志",githubMountLog:"GitHub 挂载日志",githubDeliveryMountLog:"GitHub 持续交付挂载日志",waitingBuildLog:"正在等待构建日志…",waitingGithubMountLog:"正在等待 GitHub 挂载日志…",copy:"复制",copied:"已复制",copyLabel:"复制{{label}}",copiedLabel:"已复制{{label}}",logLines:"{{count}} 行",logStatus:{synced:"已同步",failed:"读取失败",syncing:"同步中",earlyOmitted:"已省略早期日志",recentOnly:"仅显示最近的构建日志",partiallyOmitted:"已省略部分日志"},deployStatus:{running:"正在部署",unconfirmed:"部署状态待确认",success:"部署完成",error:"部署失败",cancelled:"部署已取消"},deploymentSteps:{prepare:{label:"准备部署",description:"校验配置并创建部署任务"},build:{label:"构建镜像",description:"生成运行环境与智能体代码"},deploy:{label:"部署服务",description:"创建并启动 AgentKit Runtime"},publish:{label:"发布服务",description:"等待服务就绪并生成访问地址"},complete:{label:"部署完成",description:"智能体已可以正常使用"},evaluation:{label:"创建评测集",description:"自动创建 Good Case 和 Bad Case 评测集"},github:{label:"挂载 GitHub 持续交付",description:"初始化目标分支与 GitHub Actions workflow"},update:{label:"更新实例配置",description:"将 Runtime 实例数调整为 {{min}}~{{max}}"}},githubStatus:{published:"已发布",publishing:"发布中",failed:"发布失败",pending:"等待发布",unknown:"未知"},errors:{agentInfoMissing:"Agent 信息不可用",checkUpdateCapability:"无法检查更新能力",checkingUpdateConfig:"正在检查更新配置",cloudOnlyUpdate:"仅云端 Agent 支持更新",deleteDeployedUnsupported:"当前不支持删除已部署 Agent",deleteDraftUnsupported:"当前不支持删除草稿",loadAgentInfo:"无法加载 Agent 信息",loadApiKey:"无法读取 API Key",loadGithubVersions:"无法加载 GitHub 版本",loadEvaluations:"无法加载评测案例",loadOptimizations:"无法加载优化建议",loadRuntimeDetails:"无法加载 Runtime 详情",loadUsage:"无法加载使用数据",noCreatePermission:"当前账号没有创建 Agent 的权限",noManagePermission:"当前账号没有管理此 Agent 的权限",originalConfigUnavailable:"原始配置不可用",probeIntegration:"无法检测集成能力",rollbackVersion:"无法创建版本回退",runtimeRegionMissing:"Runtime 区域信息缺失",updateCapabilityMismatch:"Runtime 更新能力与当前配置不匹配",updateCapabilityPending:"Runtime 更新能力仍在确认中",updateConfigRestoring:"正在恢复更新配置",updateUnsupported:"当前 Runtime 不支持更新",usageMismatch:"返回的使用数据与当前 Agent 不匹配"}},Pde={title:"环境",loadFailed:"环境加载失败,请检查存储配置后重试。",create:"新建环境",configure:"配置环境",details:"环境详情",editorDescription:"配置运行环境,或接入代码仓库和已有镜像",backToList:"返回环境列表",save:"保存环境",createAndBuild:"创建并构建",saveAndBuild:"保存并构建",name:"环境名称",namePlaceholder:"Python 数据处理",descriptionPlaceholder:"说明这个环境适合处理的任务",creationMethod:"创建方式",baseConfiguration:"基础配置",baseEnvironment:"基础环境",operatingSystem:"操作系统",pythonVersion:"Python 版本",fixedByBase:"由 {{base}} 固定为 {{value}}",selectUbuntuVersion:"选择基础镜像的 Ubuntu 版本",selectPythonVersion:"选择需要安装的 Python 版本",skills:"技能",addSkill:"添加环境技能",veadkDescription:"Agent 开发与运行框架",customDockerfile:"自定义 Dockerfile",presetEnvironment:"预制环境",presetHint:"选择“无”可自行填写 Dockerfile 第一行的基础镜像。",dockerfileSize:"{{size}} / {{max}} 字节",upload:"上传",reset:"重置",dockerfileBaseImage:"Dockerfile 基础镜像",dockerfileContent:"Dockerfile 内容",region:"区域",search:"搜索环境",manualImport:"手动导入",noMatches:"没有匹配的环境",tryAnotherName:"请尝试搜索其他名称",startBuild:"开始构建",build:"构建",unnamed:"未命名环境",listSeparator:"、",clipboardReadError:"未能读取剪贴板。请允许剪贴板权限,或点击“导入环境”后手动粘贴分享码。",clipboardUnsupported:"当前浏览器无法自动读取剪贴板;请点击“导入环境”后手动粘贴分享码。",creation:{custom:{label:"自定义配置",description:"通过表单选择基础环境、Python、工具和技能"},dockerfile:{label:"自定义 Dockerfile",description:"上传或直接编辑 Dockerfile"},git:{label:"从代码仓库构建",description:"探查公开仓库并通过 CodePipeline 构建"},image:{label:"使用已有镜像",description:"绑定由外部流水线交付的 CR 镜像"}},baseDescriptions:{"aio-sandbox":"内置 Sandbox Shell 能力 · Ubuntu 22.04","codex-sandbox":"内置 Codex CLI、浏览器与代码执行环境",ubuntu:"标准 Linux 基础镜像"},dockerfileValidation:{baseImageRequired:"请填写基础镜像。",duplicateFrom:"基础镜像已固定在第一行,请删除 Dockerfile 正文中的 FROM 指令。",tooLarge:"Dockerfile 不能超过 128 KiB。",empty:"Dockerfile 内容不能为空。",missingFrom:"Dockerfile 缺少 FROM 指令。"},presets:{none:"自行填写 Dockerfile 基础镜像",aio:"内置 Sandbox Shell 与常用运行时",codex:"内置 Codex CLI、浏览器与代码执行环境"},categories:{tools:"工具",productivity:"效率",browser:"浏览器自动化",system:"系统与媒体"},options:{"lark-cli":"飞书开放平台命令行工具",pandoc:"文档格式转换工具",opencli:"将网站与桌面应用转换为命令行工具",uv:"快速 Python 包与项目管理器",ripgrep:"高性能文本检索工具",jq:"JSON 查询与转换工具","github-cli":"在终端中管理 GitHub 工作流",playwright:"浏览器自动化与端到端测试",chromium:"无头浏览器运行时",git:"代码版本管理",curl:"网络请求与文件下载",ffmpeg:"音视频转码与处理",imagemagick:"图片转换与批处理"},duration:{seconds:"{{count}} 秒",minutesSeconds:"{{minutes}} 分 {{seconds}} 秒",hoursMinutes:"{{hours}} 小时 {{minutes}} 分"},buildStatus:{preparing:"准备中",queued:"排队中",building:"构建中",scanning:"扫描中",available:"可用",failed:"构建失败",notBuilt:"未构建"},manifest:{title:"环境 Manifest",closeLabel:"关闭环境 Manifest",loading:"正在加载 Manifest",editorLabel:"环境 Manifest YAML",copyFailed:"复制失败,请重试",copied:"已复制",copy:"复制 Manifest",view:"查看环境 Manifest",viewShort:"查看 Manifest",unavailable:"尚无可用 Manifest"},buildDetails:{title:"构建详情",closeLabel:"关闭构建详情",currentStep:"当前步骤",waiting:"等待构建信息",elapsed:"已用时",sourceCommit:"源码提交",openCodePipeline:"在 CodePipeline 中查看",starting:"正在启动",rebuild:"重新构建"},git:{sectionLabel:"公开代码仓库",address:"Git 地址",ref:"Branch、Tag 或 Commit",defaultBranch:"默认分支",inspecting:"正在拉取仓库并查找 Dockerfile",foundDockerfiles:"已在提交 {{commit}} 中找到 {{count}} 个 Dockerfile。",savedDockerfileLoaded:"已载入保存的 Dockerfile,可重新探查仓库更新。",noDockerfile:"仓库中未找到 Dockerfile,请检查分支或仓库内容。",inspectAgain:"重新探查",selectDockerfile:"选择 Dockerfile"},repository:{outputSection:"构建输出",type:"镜像仓库类型",managed:"Studio 默认镜像仓库",existing:"已有镜像仓库",managedHint:"构建时自动创建或复用当前区域的 Studio 镜像仓库。"},existingImage:{sectionLabel:"已有镜像",reference:"Tag 或 Digest",placeholder:"latest 或 sha256:...",hint:"填写镜像 Tag,或以 sha256: 开头的完整 Digest。"},share:{action:"分享",title:"分享环境",closeLabel:"关闭分享环境",generating:"正在生成并复制分享码",copied:"分享码已复制",failed:"分享失败",code:"分享码",fullCode:"完整环境分享码",copiedHint:"分享码已自动复制,也可在这里查看或手动复制。",copyFailedHint:"自动复制失败,可手动复制上方分享码,或重试。",safety:"分享码可能包含环境配置与本地 Skill 内容,请仅发送给可信对象。",copyAgain:"再次复制"},import:{title:"导入环境",closeLabel:"关闭导入环境",description:"先检测分享码中的环境,再确认添加到当前账号。",code:"环境分享码",tooMany:"最多可一次导入 {{max}} 个环境,当前检测到 {{count}} 个分享码。",multipleHint:"多个分享码可使用英文逗号、中文逗号或换行分隔,重复项会自动忽略。",safety:"分享码可能包含环境配置与本地 Skill 内容,请仅导入可信来源的分享码。",inspectingCodes:"正在检测环境分享码",found:"检测到 {{count}} 个环境:{{names}}。",itemError:"第 {{index}} 个分享码:{{error}}",invalidCode:"分享码无效。",noResult:"服务未返回该分享码的导入结果。",partial:"已导入 {{created}} 个环境,{{remaining}} 个未完成,可重试有效失败项。",inspecting:"正在检测",importing:"正在导入",retryImport:"重试导入",confirm:"确认导入",inspectCodes:"检测分享码"},status:{boundImage:"环境“{{name}}”已绑定已有镜像",queued:"环境“{{name}}”已进入构建队列",savedBuildFailed:"环境已保存,但构建未启动:{{error}}",importedFailed:"已导入 {{created}} 个环境,{{failed}} 个失败",importedDuplicate:"已导入 {{created}} 个环境,{{duplicate}} 个分享码已存在",imported:"已导入 {{count}} 个环境",deleted:"已删除环境“{{name}}”"},deleteTitle:"删除环境",deleteDescription:"确定删除环境“{{name}}”吗?删除后无法恢复。",errors:{repositoryRequired:"请输入公开代码仓库地址。",repositoryHttps:"请输入公开仓库的 HTTPS 地址。",repositoryInvalid:"请输入有效的公开仓库 HTTPS 地址。",imageReferenceWhitespace:"Tag 或 Digest 不能包含空格。",imageDigestInvalid:"Digest 必须是完整的 sha256 值。",imageTagOnly:"这里只填写 Tag,不要重复填写镜像仓库路径。"}},Dde={searchPlaceholder:"搜索资源名称",emptyMessage:"暂无可用选项",searchAriaLabel:"搜索{{label}}",loadingMore:"正在加载更多资源…"},Mde={retryDeployment:"重试部署",retrying:"正在重试…",collapse:"收起错误信息",expand:"展开完整错误信息",copy:"复制完整错误信息"},Lde={steps:"构建步骤",log:"构建日志",syncing:"同步中",loadFailed:"读取失败",synced:"已同步",recentOnly:" · 仅显示最近日志",copiedLog:"已复制构建日志",copyLog:"复制构建日志",copied:"已复制",copy:"复制",logContent:"构建日志内容",waiting:"正在等待 CodePipeline 输出日志…",empty:"暂无构建日志"},$de={defaultLabel:"Studio 默认环境",defaultDescription:"使用 Studio 预置的标准运行环境",status:{notBuilt:"未构建",preparing:"准备中",queued:"排队中",building:"构建中",scanning:"扫描中",available:"可用",failed:"失败"},label:"运行环境",placeholder:"请选择运行环境",search:"搜索运行环境",loading:"正在加载运行环境…",loadFailed:"加载运行环境失败",noMatches:"未找到匹配的运行环境",unavailable:"当前没有可用的运行环境",selectionUnavailable:"所选运行环境当前不可用,请重新选择。",selectionHint:"选择构建完成的运行环境后,部署将使用其镜像和工具配置。",versionChanged:"所选环境版本已更新,请确认后继续。",versionMissing:"所选环境版本已不存在,请重新选择。",operatingSystem:"操作系统",language:"语言",image:"镜像",imageVersion:"镜像版本",skills:"技能",tools:"工具",noSkills:"未配置 Skill",noExtraTools:"未配置额外工具",defaultGuidance:"默认环境由 Studio 管理,无需额外配置。",persistenceFallback:"持久化环境服务暂不可用,当前使用默认环境。",emptyFallback:"当前没有可选择的自定义环境。"},Fde={repository:"GitHub 仓库",githubUrl:"GitHub 地址",token:"访问令牌",sessionToken:"{{provider}} 临时令牌",runtime:"Runtime",commit:"提交",workflow:"工作流",syncFailed:"同步 GitHub 代码失败",status:{mounted:"已挂载",bound:"已绑定",synced:"已同步",created:"已创建"},volcengine:"火山引擎",mountDelivery:"挂载持续交付",selectedForDeployment:"已选择,部署时挂载",mountOnDeploy:"部署时挂载持续交付",syncCode:"同步代码",deliveryMode:"GitHub 交付模式",sourceSync:"GitHub 代码同步",delivery:"GitHub 交付",loading:"读取中",running:"执行中",runtimeDeliveryHint:"写入 AgentKit Runtime GitHub Actions workflow,后续 GitHub 提交会更新绑定 Runtime。",initialDeliveryHint:"首次部署成功后初始化目标分支,后续 GitHub 提交会更新绑定 Runtime。",sourceSyncHint:"Studio 会直接 push 到目标分支;该分支由 Studio 管理,远端冲突时同步会失败。Runtime 仍由部署按钮发布。",tokenPlaceholder:"repo 或 contents write 权限",getToken:"获取 Token",hideToken:"隐藏 Token",showToken:"显示 Token",tokenHelp:"Token 仅用于本次操作,成功后不会保留在表单中。",targetBranch:"目标分支",actionsSecretPlaceholder:"用于写入 GitHub Actions Secret",sessionTokenPlaceholder:"临时凭证可选",syncing:"同步中…",pendingHint:"已选择挂载持续交付。点击部署后,Studio 会等待 Runtime 创建完成并初始化 GitHub 目标分支,初始化成功后才完成部署流程。",result:{deliveryMounted:"已挂载持续交付",deliverySelected:"已选择挂载持续交付",githubBound:"已绑定 GitHub",codeSynced:"代码已同步",deliveryHint:"目标分支提交会触发 Runtime 持续交付。",boundHint:"更新并发布时会先同步当前源码到这个分支。"},branch:"分支",viewPr:"查看 PR",createFailed:"创建失败",phase:"阶段",log:"日志"},Bde={name:"飞书",enabling:"正在启用并更新配置…",description:"接收消息并通过飞书机器人回复",configuration:"飞书配置",configurationMode:"飞书配置方式",automatic:"自动配置",manual:"手动配置",cancelling:"取消中…",scanToCreate:"扫码创建",scanDescription:"授权后自动回填凭据",generateQrCode:"生成二维码",qrCodeAlt:"飞书机器人配置二维码",scanToConfirm:"飞书扫码确认",expiresIn:"{{time}} 后失效",created:"机器人已创建",credentialsFilled:"应用凭据已自动回填",qrCodeExpired:"二维码已失效",automaticFailed:"自动配置失败",regenerateQrCode:"请重新生成二维码。",configuredPlaceholder:"已配置,留空沿用",appSecretPlaceholder:"请输入 App Secret",hideSecret:"隐藏 App Secret",showSecret:"显示 App Secret"},Ude={mode:{auto:"自动创建",autoDescription:"部署时自动创建所需资源",recommended:"推荐",create:"指定名称",createDescription:"使用指定名称创建或复用资源",existing:"选择已有",existingDescription:"从当前账号的已有资源中选择"},selectExisting:"请选择已有资源",searchResource:"搜索资源名称",noMatch:"未找到匹配资源",noAvailable:"暂无可用资源",searching:"正在搜索云资源…",loading:"正在加载云资源…",noMatchSentence:"未找到匹配资源。",noAvailableSentence:"暂无可用资源。",loadedSummary:"实际服务区域:{{region}} · 已加载 {{loaded}}{{total}}",registryInstance:"Registry 实例",registryAriaLabel:"镜像仓库 Registry 实例",namespace:"命名空间",namespaceAriaLabel:"镜像仓库 Namespace",repository:"镜像仓库",existingRepository:"已有镜像仓库",selectRegistryFirst:"请先选择 Registry 实例。",selectNamespaceFirst:"请先选择 Namespace。",configurationMode:"配置方式",configurationModeAriaLabel:"{{resource}}配置方式",selectConfigurationMode:"请选择配置方式",automaticNames:"自动创建名称",validation:{tos:"请填写或选择 TOS 存储桶。",cr:"请完整填写或选择 CR 实例、命名空间和镜像仓库。",codePipeline:"请完整填写或选择 CodePipeline Workspace 和 Pipeline。",existingCodePipeline:"请选择已有的 CodePipeline Workspace 和兼容 Pipeline。"},autoBucketWithRegion:"agentkit-platform-{账号 ID}-{{region}}",autoBucket:"agentkit-platform-{账号 ID}",tosBucket:"TOS 存储桶",bucketName:"存储桶名称",bucketNamePlaceholder:"输入存储桶名称",existingBucket:"已有存储桶",existingTosBucket:"已有 TOS 存储桶",bucket:"存储桶",accountIdResolved:"账号 ID 在部署时按当前云账号解析。",containerRegistry:"容器镜像仓库(CR)",instanceName:"实例名称",crInstance:"CR 实例",existingCrInstance:"已有 CR 实例",existingCrNamespace:"已有 CR 命名空间",existingCrRepository:"已有 CR 镜像仓库",autoRegistry:"agentkit-platform-{账号 ID}",autoRepositoryName:"{{name}}-{4 位随机字符}",registryNameNote:"账号 ID 在部署时解析,镜像仓库的随机字符在部署时生成。",workspace:"工作空间",pipeline:"流水线",workspaceName:"Workspace 名称",pipelineName:"Pipeline 名称",existingWorkspace:"已有 CodePipeline Workspace",compatiblePipeline:"兼容 Pipeline",existingPipeline:"已有 AgentKit CodePipeline",pipelineNameNote:"Pipeline 与 Runtime 名称一致。"},Qde={commit:"提交",steps:{permissions:"预检 OTA 所需权限",resolving:"读取目标版本信息",downloading:"下载并校验完整更新包",preparing:"准备 VeFaaS Function 代码",provisioning:"检查并补齐 Studio 云资源",scheduler:"更新定时任务调度服务",submitting:"提交 Function 更新",publishing:"发布新 Revision 并重启服务"},stages:{permissions:"预检 OTA 权限",resolving:"读取版本信息",downloading:"下载更新包",preparing:"准备 Function 代码",provisioning:"补齐 Studio 云资源",scheduler:"更新定时任务调度服务",submitting:"提交 Function 更新",publishing:"发布 Revision",checking:"检查更新",unknown:"未知阶段"},duration:{seconds:"{{count}} 秒",minutesSeconds:"{{minutes}} 分 {{seconds}} 秒"},logPermissionPrefix:"无法读取 VeFaaS 发布日志。Function 角色缺少 ",logPermissionSuffix:" 权限,更新会继续。",openIamConsole:"前往 IAM 控制台配置权限",deploymentProgress:"部署进度",live:"实时",completed:"已完成",stopped:"已停止",copied:"已复制",copyFailed:"复制失败",copyLog:"复制日志",waitingForLogs:"等待 VeFaaS 返回更新日志…",noLogs:"本次更新未返回发布日志",messages:{updated:"Studio 已更新,新 Revision 已接管服务",failed:"Studio 更新失败",timeout:"等待 VeFaaS 发布超时,请稍后重新检查版本",submitted:"更新已提交,正在等待 VeFaaS 发布新版本",connectionSwitched:"连接已切换,正在确认新版本状态"},checkingPermissions:"正在检查 OTA 权限",authorizationRequired:"需要 IAM 授权",updating:"正在更新 Studio",updated:"Studio 已更新",updateToVersion:"更新 Studio 至 {{version}}",checkPermissions:"检查更新权限",authorizationNeeded:"需要授权",updatingShort:"正在更新",refreshForNewVersion:"刷新使用新版",updateFailed:"更新失败",updateNow:"立即更新",newVersionAvailable:"有新版更新",dialog:{failed:"Studio 更新失败",checkingPermissions:"正在检查更新权限",authorizationRequired:"需要 IAM 授权",updating:"正在更新 Studio",completed:"Studio 更新完成",newVersion:"发现新版本"},permissionCheck:"正在核对 OTA 与定时任务所需的全部 IAM 权限…",permissionCheckHint:"权限全部满足后才会开始下载、更新或发布云资源。",missingPermissionCount:"当前 Function 角色缺少 {{count}} 项 OTA 更新权限,尚未执行任何云资源变更。",functionRole:"Function 角色",currentRole:"当前运行角色",policyToUpdate:"将更新策略",authorizationSteps:{open:"打开授权页面,确认已预填的策略名称和完整策略内容。",debug:"点击页面中的“发起调试”,完成策略更新。",return:"返回此窗口,点击“我已授权,重新检查”。"},missingPermissions:"缺少的权限",openPrefilledAuthorization:"打开已预填的 IAM 授权页面",openIamManually:"前往 IAM 控制台手动配置",noSafePolicy:"当前角色没有唯一可安全更新的自定义策略,请由管理员将上述权限加入该角色。",failedStage:"失败阶段",errorId:"错误 ID",notGenerated:"未生成",openFunctionLogs:"前往 VeFaaS 控制台查看 Function 日志",targetVersion:"目标版本",updateStatus:"更新状态",elapsed:"已用时",progressAriaLabel:"Studio 更新进度",processingUpdate:"正在处理更新",processing:"正在处理",backgroundHint:"发布阶段会短暂中断连接;关闭此窗口不会停止更新,可随时点击右上角按钮重新查看。",confirmDescription:"更新会重启 Studio 服务,预计约 3–5 分钟完成更新与发布。期间正在进行的对话、流式响应或部署任务可能中断,登录态不会受到影响。",selectVersion:"选择版本",currentVersion:"当前版本",changelog:"更新内容",noChangelog:"暂无更新说明",runInBackground:"后台运行",authorizedRecheck:"我已授权,重新检查",tryAgain:"重新尝试"},zde={deploy:"部署",update:"更新",planHash:"方案哈希",backToConfiguration:"返回配置",releaseRegion:"发布区域",deployRegion:"部署区域",regionPreserved:"更新时沿用现有 Runtime 的部署区域,无法修改。",unnamedAgent:"未命名 Agent",deployTitle:"部署 {{name}}",additionalAgentCount:" 等 {{count}} 个智能体",releaseOverview:"发布概览",agentOverview:"Agent 概览",agentCount:"Agent 数量",model:"模型",systemPrompt:"系统提示词",optimizations:"优化选项",notEnabled:"未启用",effectiveCapabilities:"生效能力",automaticProtection:"自动保护",artifactActions:"发布产物操作",exportYaml:"导出 YAML",viewSource:"查看源代码",downloadSource:"下载源代码",expandFlow:"放大查看执行流程",expand:"放大查看",deploymentConfiguration:"部署配置",runtimeName:"Runtime 名称",runtimeNamePreserved:"更新时保持现有 Runtime 名称不变。",runtimeNameHint:"默认根据 Root Agent 名称生成,并添加随机后缀避免重名;支持 4-64 位字母、数字、连字符和下划线",accessAuthentication:"访问鉴权",authenticationPreserved:"更新时保持现有 Runtime 的鉴权方式不变。",authenticationMethod:"鉴权方式",authenticationAriaLabel:"部署鉴权方式",authenticationPlaceholder:"请选择鉴权方式",messageChannels:"消息渠道",instanceSettings:"实例设置",minInstances:"最小实例数",maxInstances:"最大实例数",sidecarSingleInstance:"Harness Sidecar 首期仅支持单实例,Runtime 固定为 1~1",inMemorySingleInstance:"为避免多实例间会话丢失,推荐将 Runtime 固定为 1~1",network:"网络",networkPreserved:"现有 Runtime 的区域与网络模式保持不变。",networkMode:"网络模式",networkModes:{public:"公网",both:"公网 + VPC"},subnetId:"子网 ID",subnetHint:"可选,多个用逗号分隔",sharedInternetAccess:"VPC 内共享公网出口",evaluationSets:"评测集",createEvaluationSets:"自动创建评测集",createEvaluationSetsHint:"部署成功后,自动创建 Good Case 和 Bad Case 评测集。",resourceConfiguration:"资源配置",environmentVariables:"环境变量",environmentVariablesHint:"组件配置会自动同步到这里,部署前可核对最终值。",itemCount:"{{count}} 项",addVariable:"添加变量",componentGenerated:"组件自动生成",injectedByApiKey:"由所选 API Key 注入",envNameAriaLabel:"{{key}} 环境变量名",envDescriptionAriaLabel:"{{key}}说明:{{description}}",openOpenViking:"打开 OpenViking {{label}}",openOpenVikingAriaLabel:"{{key}}:打开 OpenViking {{label}}",requiredEmpty:"必填,尚未填写",optionalEmpty:"可选,尚未填写",envValueAriaLabel:"{{key}} 环境变量值",automatic:"自动",synced:"同步",customModelCredentials:"自定义模型凭据",releaseOnlySecret:"必填,仅用于本次发布",thisRelease:"本次发布",customVariables:"自定义变量",value:"值",deleteVariable:"删除变量",deploymentProgress:"部署进度",retryUpdate:"重试更新",retryDeploy:"重试部署",updateSucceeded:"更新成功",deploySucceeded:"部署成功",region:"区域",agentName:"Agent 名称",apiEndpoint:"API 端点",connecting:"连接中…",chatNow:"立即对话",console:"控制台",actionInProgress:"{{action}}中…",checkingName:"正在检查名称…",retryAction:"重试{{action}}",flowPreview:"执行流程预览",executionFlow:"执行流程",flowPreviewHint:"只读预览,可缩放与拖动画布",closeFlowPreview:"关闭执行流程预览",agentAdded:'Agent "{{name}}" 已添加到左上角下拉列表!',files:{preview:"文件预览",new:"新建文件",empty:"暂无文件",noneSelected:"未选择文件",selectToView:"选择左侧文件以查看内容",loadingEditor:"加载编辑器…",rename:"重命名",renamePrompt:"重命名文件"},apiKey:{selectFirst:"请先选择 API Key",revealing:"正在显示 API Key",hide:"隐藏 API Key",retryReveal:"重试显示 API Key",reveal:"显示 API Key"},task:{preparing:"准备部署",waitingBuildLog:"正在等待构建日志…",waitingGithubLog:"正在等待 GitHub 挂载日志…",syncingGithub:"正在同步当前源码到 GitHub",syncGithubCode:"同步 GitHub 代码",githubSynced:"GitHub 代码已同步",githubSubmitted:"GitHub 代码已提交",githubUpdatingRuntime:"代码已提交到 GitHub,GitHub Actions 正在更新同一个 Runtime",initializingGithub:"开始初始化 GitHub main 分支与 Actions workflow",initializingGithubBranch:"正在初始化 GitHub 持续交付目标分支",mountGithubDelivery:"挂载 GitHub 持续交付",githubBranchInitialized:"GitHub 持续交付已初始化目标分支",githubDeliveryMounted:"GitHub 持续交付已挂载",githubMountFailed:"挂载 GitHub 持续交付失败",githubMountFailedDetail:"GitHub 持续交付挂载失败:{{message}}",githubMountFailedHint:"挂载 GitHub 持续交付失败,详见 GitHub 日志。",deploymentComplete:"部署完成",deployedNotConnected:"部署完成,暂未连接",cancelled:"已取消",cancelledHint:"部署已取消,相关 Runtime 资源已请求销毁。",deploymentStatusUnconfirmed:"部署状态待确认",deploymentFailed:"部署失败",buildFailedHint:"构建镜像失败,详见构建日志。"},confirm:{updateTitle:"确认更新",deployTitle:"确认部署",closeLabel:"关闭部署确认",updateDescription:"将更新并发布到当前云端 Runtime,过程可能需要几分钟。确定继续吗?",deployDescription:"将创建新的云端 Runtime,部署过程可能需要几分钟。确定继续吗?",update:"确定更新",deploy:"确定部署"},userPool:{label:"用户池",unnamed:"未命名用户池",current:"当前用户池",ariaLabel:"部署用户池",loading:"正在加载用户池…",placeholder:"请选择用户池",loadingIdentity:"正在加载 Identity 用户池…",empty:"当前账号下暂无 Identity 用户池。",currentHint:"当前 Studio 的登录 JWT 将透传访问此 Runtime。",mismatchHint:"所选用户池不是当前 Studio 使用的用户池,部署后无法从 Studio 调用此 Runtime。",markedHint:"当前 Studio 使用的用户池已在列表中标注。"},authentication:{apiKeyDescription:"默认方式,使用 Runtime API Key 访问",userPool:"用户池",userPoolDescription:"使用 Identity 用户池签发的 JWT"},steps:{buildImage:"构建镜像",deploy:"部署",publish:"发布",syncCode:"同步代码",uploadPackage:"上传代码包",packageImage:"镜像打包",createRuntime:"创建 Runtime",publishService:"发布服务",updateInstances:"更新实例配置",createEvaluationSets:"创建评测集"},errors:{instanceRangeInteger:"最小实例数必须为大于等于 0 的整数,最大实例数必须为大于 0 的整数。",instanceRangeOrder:"最小实例数不能大于最大实例数。",selectApiKey:"请先在模型配置中选择 API Key。",loadApiKey:"加载 API Key 失败,请重试。",invalidProject:"项目数据无效",updateFeishu:"更新飞书配置失败:{{message}}",userPoolRequired:"请选择用于 Runtime 鉴权的用户池。",vpcRequired:"使用 VPC 网络时,请填写 VPC ID。",modelSecretRequired:"请填写 {{label}},用于访问对应的自定义模型地址。",managedApiKeyRequired:"{{requirement}},请先返回模型配置选择 API Key。",feishuEnvRequired:"启用飞书后,请填写{{field}}。",runtimeNameExists:"Runtime 名称已存在,请修改后重试。",deployedButGithubMountFailed:"部署成功,但挂载 GitHub 持续交付失败:{{message}}",deployedButGithubBindFailed:"部署成功,但绑定 GitHub 失败:{{message}}",deploymentStatusUnconfirmed:"连接已中断,当前无法确认部署最终状态。任务可能仍在云端运行,请到 AgentKit 或 Code Pipeline 查看同一任务,避免重复部署。",failedAtStage:"{{action}}失败({{stage}}阶段):{{message}}",noAgentAtEndpoint:"连接成功,但该地址未发现任何 Agent(/list-apps 为空)。",addAgent:"添加 Agent 失败:{{message}}",modelApiKeyRequired:"请填写此模型地址对应的 API Key。"}},Vde={title:"工作区",detail:"工作区详情",create:"新建工作区",editorDescription:"将常用环境组合在一起;同一个环境可以加入多个工作区。",backToList:"返回工作区列表",environmentCount_one:"{{count}} 个环境",environmentCount_other:"{{count}} 个环境",createdAt:"创建时间",updatedAt:"最近更新",basicInfo:"基本信息",namePlaceholder:"例如:内容生产",descriptionPlaceholder:"说明这个工作区的用途",selectedEnvironmentCount:"已选择 {{count}} 个,可在其他工作区中继续复用",searchAvailableEnvironments:"搜索可用环境",searchEnvironments:"搜索环境",noAvailableEnvironments:"还没有可添加的环境",createEnvironmentFirst:"请先在“环境”页面创建并构建环境。",noMatchingEnvironments:"没有匹配的环境",tryAnotherName:"请尝试搜索其他名称。",environmentStatus:{available:"可用",building:"构建中",notBuilt:"未构建"},added:"已添加",saved:"已保存工作区“{{name}}”",resourceType:"工作区资源类型",searchWorkspaces:"搜索工作区",loadFailed:"无法加载工作区",noMatchingWorkspaces:"没有匹配的工作区",tryAnotherNameOrEnvironment:"请尝试搜索其他名称或环境",noEnvironmentAdded:"未添加环境",environmentMissing:"环境缺失",availableFraction:"{{available}}/{{total}} 可用",available:"可用",availableCount:"{{count}} 个可用",updated:"更新",addEnvironment:"添加环境",deleteTitle:"删除工作区",deleteDescription:"确定删除工作区“{{name}}”吗?环境本身不会被删除。",deleted:"已删除工作区“{{name}}”",clipboardPermissionError:"未能读取剪贴板。请允许剪贴板权限,或点击“导入环境”后手动粘贴分享码。",clipboardUnsupported:"当前浏览器无法自动读取剪贴板;请点击“导入环境”后手动粘贴分享码。"},Hde={back:"返回",detailNavigation:"详情导航",noData:"暂无数据",actions:"操作",moreActions:"更多操作 {{label}}",actionsFor:"{{label}} 操作",loading:"资源加载中,请稍候"},qde={addSkill:"添加 Skill",remove:"移除 {{name}}",confirmRemoveRuntime:"从新版本中移除运行中的 Skill「{{name}}」?",selectedCount:"已加入技能 · {{count}}",close:"关闭{{label}}",sources:{runtime:"运行中来源 · 原样保留,可移除或用同名 Skill 替换",local:"本地",skillspace:"AgentKit Skills 中心",skillhub:"火山 Find Skill 技能广场"},tabs:{local:"本地文件",localShort:"本地文件",skillspace:"AgentKit Skills 中心",skillspaceShort:"AgentKit",skillhub:"火山 Find Skill 技能广场",skillhubShort:"Find Skill"}},Wde={tasks:{ppt:"PPT",image:"图片生成",video:"视频生成"},prompts:{ppt:{quarterlyReview:"复盘【季度】经营表现,提炼指标差距、原因与行动建议",projectUpdate:"汇报【项目名称】进展:里程碑、风险、预算和资源诉求",solutionProposal:"为【客户行业】输出解决方案:痛点、架构、实施路径与收益",industryAnalysis:"分析【行业主题】趋势,给出竞争格局、机会与战略建议"},image:{launchVisual:"为【品牌或产品】设计【高级科技】风格的发布会主视觉",ecommercePoster:"生成【产品名称】电商海报,突出【核心卖点】与品牌色",conceptRendering:"呈现【产品或空间】在【使用场景】中的写实概念效果图",socialGraphic:"围绕【传播主题】制作简洁专业的企业社媒配图"},video:{brandFilm:"制作【品牌名称】30 秒宣传片,突出【品牌价值】",productLaunch:"为【产品名称】制作 45 秒发布视频:痛点、功能、场景与行动号召",trainingVideo:"制作【培训主题】企业培训视频,讲清【关键操作或规范】",eventTeaser:"生成【活动名称】20 秒预热视频,包含亮点、时间地点和报名信息"}},firstFrame:"首帧",videoToEdit:"待编辑视频",baseVideo:"基础视频",optimizeSkillPlaceholder:"描述你想优化的技能…",createSkillPlaceholder:"描述你想生成的技能…",createVideoPlaceholder:"描述你想创作的视频…",messageAgentPlaceholder:"向 {{name}} 发消息…",selectAgentFirst:"请先选择智能体",selectSkillFirst:"请先选择需要优化的 Skill",availableSkills:"可用技能",availableSubagents:"可用子 Agent",invokeSkill:"调用技能",useSubagent:"使用子 Agent",loadingCapabilities:"正在读取 Agent 能力…",noMatchingSkills:"当前 Agent 没有匹配技能",noMatchingSubagents:"当前 Agent 没有匹配子 Agent",skillFallbackDescription:"加载并执行该技能",agentFallbackDescription:"将本轮交给该 Agent",skill:"技能",uploadImage:"上传图片",uploadDocument:"上传文档或 PDF",uploadVideo:"上传视频",taskMode:"任务模式",selectTaskMode:"选择任务模式",loadingGenerationModel:"正在加载生成模型",modelUnavailable:"模型不可用",cancelTask:"取消{{task}}任务",stopGenerating:"停止生成",viewVideoProgress:"查看视频生成进度",send:"发送",selectTaskType:"选择任务类型",enterprisePrompts:"{{task}}企业提示词",sessionId:"会话 ID",sessionIdLabel:"会话 ID:",initializing:"初始化中",copied:"已复制",copySessionId:"复制会话 ID",sessionIdCopied:"已复制会话 ID",disclaimer:"回答仅供参考",viewLogs:"查看日志"},Kde={selectAgent:"选择 Agent",noLocalAgents:"暂无本地 Agent。",searchRuntime:"搜索 Runtime 名称",mineOnly:"只看我创建的",noRuntimes:"暂无 Runtime。",unsupported:"不支持",createdByMe:"我创建的",connecting:"连接中…",connected:"已连接",connect:"连接",viewInfoFor:"查看 {{name}} 信息",viewInfo:"查看信息",agentAndRuntimeInfo:"Agent 与 Runtime 信息",detailType:"详情类型",agentInfo:"Agent 信息",runtimeInfo:"Runtime 信息",loadingAgentInfo:"读取 Agent 信息…",cannotLoadAgentInfo:"暂时无法读取 Agent 信息",unnamedAgent:"未命名 Agent",subagents:"子 Agent",tools:"工具",skills:"技能",previewUnsupported:"暂不支持预览",mountedComponents:"挂载组件",noMoreAgentInfo:"暂无更多 Agent 配置信息。",local:"本地",model:"模型",status:"状态",memoryMb:"内存 {{value}}MB",instances:"实例 {{min}}~{{max}}",resources:"资源",version:"版本",loadingDetails:"读取详情…",environmentVariables:"环境变量",errors:{notFound:"该 Runtime 已不存在或列表信息已过期,请刷新列表后重试。",accessDenied:"当前账号无权访问该 Runtime,请检查所属 Project 和访问权限。",previewUnsupported:"该 Agent Server 版本暂不支持信息预览。",unavailable:"该 Runtime 暂时无法访问,请确认其状态为“就绪”后重试。",timeout:"加载超时,请重试"},componentKinds:{knowledgebase:"知识库",memory:"记忆",prompt_manager:"提示词管理",example_store:"样例库",run_processor:"运行处理器",tracer:"链路追踪",toolset:"工具集",plugin:"插件",other:"其他"},runtimeStatus:{ready:"就绪",unreleased:"未发布",running:"运行中",active:"运行中",creating:"创建中",pending:"等待中",deploying:"部署中",updating:"更新中",failed:"失败",error:"异常",stopping:"停止中",stopped:"已停止",deleting:"删除中",deleted:"已删除"}},Gde={agent:"智能体",agentTypes:{general:"通用智能体",codex:"Codex","deepseek-harness":"DeepSeek",openclaw:"OpenClaw",hermes:"Hermes"},creator:"创建人",namedAgent:"{{name}} 智能体",storageLocation:"存储位置",currentBrowser:"当前浏览器",region:"地域",viewDeploymentProgress:"查看 {{name}} 部署进度",viewRuntimeDetails:"查看 {{name}} Runtime 详情",viewDetails:"查看 {{name}} 详情",time:"时间",remainingTime:"剩余时间",expiringSoon:"即将清空",sandboxRemaining:"{{hours}} 小时 {{minutes}} 分钟",wakeable:"已休眠",neverExpires:"永不过期",editDraftNamed:"编辑草稿 {{name}}",viewProgress:"查看进度",deleteDraftNamed:"删除草稿 {{name}}",recheckCompatibility:"重新检测 {{name}} 的对话兼容性",connectedNamed:"{{name}} 已连接",wakeAndChat:"唤醒 {{name}} 并开始对话",chatWith:"与 {{name}} 对话",waking:"唤醒中",deploying:"部署中",draft:"草稿",checking:"检测中",chatUnsupported:"不支持对话",checkFailed:"检测失败",creatorFilter:"创建人筛选",agentType:"智能体类型",searchAgents:"搜索智能体",handoff:"接力",agentList:"{{type}}列表",noMatchingAgents:"没有匹配的智能体",adjustSearch:"请尝试调整搜索或筛选条件",noAgentType:"暂无 {{type}}",noGeneralAgents:"暂无通用智能体",createGeneralAgentDescription:"创建一个通用智能体,开始构建和对话",createAgentType:"创建{{type}}",createAgent:"创建智能体",loadingMore:"正在加载更多智能体",scrollForMore:"继续下滑加载更多",allLoaded:"已加载全部智能体",deleteDraftTitle:"删除草稿?",deleteDraftDescription:"删除后将无法恢复“{{name}}”。",deleteDraft:"删除草稿",loadGeneralAgents:"加载通用智能体",loadAgentType:"加载 {{type}}",compatibility:{checking:"正在请求 Runtime /list-apps,以确认该智能体是否支持 Studio 对话。",empty:"Runtime /list-apps 未返回可用的 Agent,暂时无法连接对话。",supported:"Runtime 支持 Studio 对话。",unknownError:"Runtime /list-apps 请求失败,未返回可识别的错误信息。"},sandboxStatus:{ready:"就绪",wakeable:"已休眠",creating:"创建中",starting:"启动中",initializing:"启动中",pending:"等待中",running:"运行中",failed:"异常",error:"异常",stopped:"已停止",expired:"已过期",deleting:"删除中",deleted:"已删除",unknown:"未知状态"},wakingHint:"正在唤醒智能体,可能需要一些时间。"},Xde={library:"技能库",skill:"技能",skills:"技能",skillSpace:"技能空间",sandboxNotConfigured:"管理员未配置 Dev Sandbox",adminNotConfigured:"管理员未配置",totalItems:"共 {{count}} 项",cannotLoadSpaces:"无法加载技能空间",someSpacesFailed:"部分技能空间加载失败",degradedRelationWarning:"部分关联异常,已恢复可读取技能",downloadZip:"下载 ZIP",optimize:"优化",closeSkillDetails:"关闭技能详情",skillId:"技能 ID",allFiles:"完整文件",loadingSkillContent:"正在读取技能内容…",noSkillContent:"该技能暂无 SKILL.md 内容",addSkill:"添加技能",localUpload:"本地上传",localUploadDescription:"选择 ZIP 文件,校验通过后上传到技能空间",autoCreate:"自动创建",autoCreateDescription:"选择模型和风格,通过对话生成技能",createSkill:"创建技能",optimizeNamed:"优化 {{name}}",deleteSkillConfirm:"确定删除整个 Skill“{{name}}”吗?此操作会影响所有引用它的空间。",deleteSpaceConfirm:"确定删除 Skill 空间“{{name}}”吗?请先确认空间中的技能已删除。",manageSpaceDescription:"管理空间中的技能并创建新的版本",backToSpaces:"返回技能空间列表",overview:"概览",skillCount:"技能数量",skillCountValue_one:"{{count}} 技能",skillCountValue_other:"{{count}} 技能",updatedAt:"更新时间",skillsInSpace:"{{name}}中的技能",searchSkills:"搜索技能",cannotLoadSkills:"无法加载技能",noMatchingSkills:"没有匹配的技能",noSkills:"暂无技能",tryAnotherName:"请尝试搜索其他名称",emptySkillsDescription:"本地上传 Skill,或自动创建",actions:"操作",spaceDetails:"技能空间详情",editSpace:"编辑空间",deleteSpace:"删除空间",searchSpaces:"搜索技能空间",spaceList:"技能空间列表",noMatchingSpaces:"没有匹配的技能空间",createSpace:"新建技能空间",newSpace:"新建空间",loadingMoreSpaces:"正在加载更多技能空间",scrollForMore:"继续下滑加载更多",allSpacesLoaded:"已加载全部技能空间",errors:{loadSpaces:"读取技能空间失败,请稍后重试",loadSkills:"读取技能失败,请稍后重试",loadSkillDetails:"读取技能详情失败,请稍后重试",deleteSkill:"删除 Skill 失败",deleteSpace:"删除 Skill 空间失败",downloadSkill:"下载 Skill 失败"},status:{active:"可用",available:"可用",creating:"创建中",disabled:"已停用",enabled:"已启用",failed:"异常",inactive:"未启用",pending:"等待中",published:"已发布",ready:"就绪",released:"已发布",running:"运行中",success:"正常",unavailable:"不可用",unreleased:"未发布",updating:"更新中",unknown:"未知"}},Yde={library:"知识库",createBase:"新建知识库",editBase:"编辑知识库",invalidName:"名称必须以字母开头,且只能包含字母、数字和下划线。",nameHelp:"以字母开头,仅支持字母、数字和下划线,最多 48 个字符。",optionalDescription:"描述(可选)",descriptionOnly:"AgentKit 当前仅支持更新知识库描述。",previewWeb:"预览网页内容",addData:"添加数据",openOriginalWeb:"打开原网页",backToEdit:"返回修改",confirmAdd:"确认添加",source:"知识来源",image:"图片",documentFile:"文档文件",webPage:"在线网页",webUrl:"网页 URL",generatingWebPreview:"正在抓取网页并生成 Markdown 预览",selectFile:"选择知识文件",selectOrDropFile:"选择文件或拖拽到这里",selectedFile:"{{size}} · 点击可重新选择",imageFileHelp:"支持 PNG、JPG 和 JPEG,单个文件不超过 200 MB",documentFileHelp:"支持 PDF、PPTX、DOCX、XLSX 和 TXT,单个文件不超过 200 MB",uploadingFile:"正在上传文件并添加到知识库",optionalName:"名称(可选)",optionalType:"类型(可选)",generatePreview:"生成预览",uploadFile:"上传文件",editMetadata:"编辑知识 Metadata",knowledge:"知识",field:"字段",value:"值",backToList:"返回知识库列表",metadataJson:"元数据(JSON)",provider:"服务提供方",knowledgeId:"知识库 ID",project:"项目",creator:"创建者",data:"数据",deleteInvalidAssociation:"删除失效关联",noData:"这个知识库还没有数据",addFirstData:"添加第一项数据",format:"格式",size:"大小",searchData:"搜索数据",searchLibraryData:"搜索知识库数据",associationInvalid:"关联已失效",providerMissing:"底层 Provider 知识库已不存在",noMatchingData:"没有匹配的数据",loadingMoreData:"正在加载更多数据",retryLoading:"重试加载",details:"知识库详情",searchBases:"搜索知识库",someBasesFailed:"部分知识库暂时无法加载,已展示其余可用内容。",noMatchingBases:"没有匹配的知识库",noManagePermission:"您没有管理此知识库的权限",loadingMoreBases:"正在加载更多知识库",deleteBaseTitle:"删除知识库?",deleteBaseDescription:"将删除 {{name}} 的 AgentKit 关联;如果它由 Studio 创建,也会同时删除 Provider 资源。此操作无法撤销。",deleteDocumentTitle:"删除知识?",deleteDocumentDescription:"将从 Provider 知识库中删除 {{name}},此操作无法撤销。",preview:{processingTitle:"数据正在处理中",processingDetail:"知识库完成解析后即可预览,请稍后重新加载。",failedTitle:"数据解析失败",failedDetail:"请检查源文件或网页地址后重新添加,也可以重新加载最新状态。",noParsedTitle:"暂时没有可预览的解析内容",noParsedDetail:"此类文件会在知识库完成解析后显示文本、表格或页面图片。",noMediaTitle:"暂时没有可预览的媒体内容",noMediaDetail:"知识库尚未返回可访问的媒体预览,请稍后重新加载。",noDataTitle:"暂无可预览的数据内容",noDataDetail:"知识库尚未返回解析结果,请稍后重新加载。",attachmentError:"附件无法预览,请稍后重试。",imageAlt:"知识数据图片",audioUnsupported:"当前浏览器不支持音频预览。",videoUnsupported:"当前浏览器不支持视频预览。",namedPdf:"{{name}} PDF 预览",pdf:"PDF 预览",openPdf:"无法显示时,在新窗口打开 PDF",fileUnsupported:"当前格式暂不支持直接在线预览,已优先显示解析后的内容。",openOriginalFile:"打开原文件",loading:"正在加载数据预览",openOriginalHint:"您可以打开原网页查看来源内容。",chunk:"片段 {{index}}",loadingMore:"正在加载更多",loadMore:"加载更多"},errors:{fileTooLarge:"单个文件不能超过 200 MB",invalidImageType:"请选择 PNG、JPG 或 JPEG 图片",invalidDocumentType:"请选择 PDF、PPTX、DOCX、XLSX 或 TXT 文件",createBase:"创建知识库失败",updateBase:"更新知识库失败",metadataObject:"Metadata 必须是 JSON 对象",metadataFormat:"Metadata 格式错误",noWebPreview:"网页没有可预览的 Markdown 内容",addWeb:"添加网页失败",previewWeb:"生成网页预览失败",uploadFile:"上传文件失败",updateDocument:"更新知识失败",loadPreview:"加载数据预览失败",loadMoreBases:"加载更多知识库失败",loadBases:"加载知识库失败",loadMoreData:"加载更多数据失败",loadData:"加载数据失败",deleteBase:"删除知识库失败",deleteDocument:"删除知识失败"}},HMe={common:Nde,agentKitPromo:jde,systemInfo:Rde,agentWorkspace:Ide,environmentCenter:Pde,deploymentSelect:Dde,deploymentError:Mde,studioBuildProgress:Lde,cloudEnvironment:$de,githubCicd:Fde,feishuDeployment:Bde,deploymentResources:Ude,studioUpdate:Qde,projectPreview:zde,workspace:Vde,resourceCollection:Hde,skillSourcePicker:qde,composer:Wde,agentSelector:Kde,myAgents:Gde,skillCenter:Xde,knowledge:Yde},qMe=Object.freeze(Object.defineProperty({__proto__:null,agentKitPromo:jde,agentSelector:Kde,agentWorkspace:Ide,cloudEnvironment:$de,common:Nde,composer:Wde,default:HMe,deploymentError:Mde,deploymentResources:Ude,deploymentSelect:Dde,environmentCenter:Pde,feishuDeployment:Bde,githubCicd:Fde,knowledge:Yde,myAgents:Gde,projectPreview:zde,resourceCollection:Hde,skillCenter:Xde,skillSourcePicker:qde,studioBuildProgress:Lde,studioUpdate:Qde,systemInfo:Rde,workspace:Vde},Symbol.toStringTag,{value:"Module"})),Zde="网站集成",Jde="将 AgentKit Runtime 以悬浮聊天窗口嵌入网站",efe="返回自动化列表",tfe="添加网站",nfe="正在加载 Runtime",ife="选择 Runtime",rfe="网站域名",sfe="例如 xxxx.com 或 localhost:5173",afe="正在生成",ofe="生成 Token",lfe="已添加网站",cfe="{{count}} 个",ufe="{{count}} 个",dfe="正在加载网站集成",ffe="还没有网站集成",hfe="选择 Runtime 并输入网站域名即可生成 Token",pfe="引入方法",mfe="将下面代码放到网页的 body 结束标签前",gfe="已复制",bfe="复制代码",yfe="添加网站后会在这里生成引入代码。",vfe="确定删除 {{domain}} 的网站集成吗?",xfe={load:"加载网站集成失败",create:"创建网站集成失败",delete:"删除网站集成失败",noConversationalAgent:"该 Runtime 暂未发现可对话的 Agent"},wfe={requestFailed:"请求失败 ({{status}})",greeting:"您好,有什么可以帮您?",sessionFailed:"无法建立对话会话",unauthorized:"当前网站未获得对话授权",conversationFailed:"对话请求失败,请稍后重试",open:"打开智能体对话",close:"关闭智能体对话",panelLabel:"智能体对话面板",assistant:"智能体助手",online:"在线对话"},WMe={title:Zde,description:Jde,backToAutomations:efe,addWebsite:tfe,loadingRuntime:nfe,selectRuntime:ife,websiteDomain:rfe,domainPlaceholder:sfe,generating:afe,generateToken:ofe,addedWebsites:lfe,websiteCount_one:cfe,websiteCount_other:ufe,loadingIntegrations:dfe,delete:"删除",emptyTitle:ffe,emptyDescription:hfe,embedMethod:pfe,embedInstructions:mfe,copied:gfe,copyCode:bfe,embedHint:yfe,confirmDelete:vfe,errors:xfe,widget:wfe},KMe=Object.freeze(Object.defineProperty({__proto__:null,addWebsite:tfe,addedWebsites:lfe,backToAutomations:efe,confirmDelete:vfe,copied:gfe,copyCode:bfe,default:WMe,description:Jde,domainPlaceholder:sfe,embedHint:yfe,embedInstructions:mfe,embedMethod:pfe,emptyDescription:hfe,emptyTitle:ffe,errors:xfe,generateToken:ofe,generating:afe,loadingIntegrations:dfe,loadingRuntime:nfe,selectRuntime:ife,title:Zde,websiteCount_one:cfe,websiteCount_other:ufe,websiteDomain:rfe,widget:wfe},Symbol.toStringTag,{value:"Module"})),Ofe={types:{all:"全部类型",document:"文档",image:"图片",video:"视频"},previewArtifact:"预览 {{name}}",moreActions:"更多操作 {{name}}",actionMenu:"{{name}} 操作",download:"下载",downloading:"下载中",edit:"编辑信息",delete:"删除产物",previewFailed:"无法预览“{{name}}”:{{message}}",downloadStarted:"已开始下载 {{name}}",downloadFailed:"无法下载“{{name}}”:{{message}}",updated:"已更新 {{name}}",deleted:"已删除 {{name}}",deleteFailed:"无法删除“{{name}}”:{{message}}",typeFilter:"产物类型",searchAria:"搜索产物",searchPlaceholder:"搜索产物或会话",retry:"重试",close:"关闭",listAria:"产物列表",loadFailed:"产物加载失败",loadDetailFallback:"请检查存储配置后重试。",reload:"重新加载",noMatch:"没有找到匹配的产物",noArtifacts:"您还没有任何产物",searchHint:"请尝试搜索其他名称或切换类型",emptyHint:"聊天中生成的产物会自动显示在这里",columns:{name:"名称",source:"来源",updatedAt:"修改时间",actions:"操作"},loadingMore:"正在加载更多产物",unknownTime:"时间未知",preview:{close:"关闭预览",meta:"{{type}} / 版本 {{version}}",loading:"正在加载预览",alt:"{{name}} 预览",loadFailed:"预览加载失败,请稍后重试或下载查看",unsupported:"当前格式暂不支持在线预览,请下载查看",sourceAria:"产物来源",agent:"智能体",session:"会话",tool:"生成工具",createdAt:"生成时间",fileSize:"文件大小",tags:"标签",viewSession:"查看会话"},deleteDialog:{title:"删除产物?",description:"“{{name}}”将从产物库永久删除,聊天记录不会受到影响。",deleting:"删除中",confirm:"删除",close:"关闭删除确认框"},api:{withStatus:"{{message}}({{status}})",listFailed:"读取产物库失败",syncFailed:"同步聊天产物失败",updateFailed:"更新产物失败",deleteFailed:"删除产物失败",downloadFailed:"下载产物失败"}},Sfe={unknownSource:"未知来源",unknownCreator:"未知创建者"},kfe={nameRequired:"请输入产物名称",tooManyTags:"标签最多 {{max}} 个",tagTooLong:"单个标签不能超过 {{max}} 个字符",title:"编辑产物信息",subtitle:"内容文件不会被修改",close:"关闭编辑框",name:"名称",description:"描述",descriptionPlaceholder:"补充用途、版本或使用说明",tags:"标签",tagsPlaceholder:"使用逗号分隔,最多 {{max}} 个",cancel:"取消",saving:"保存中",save:"保存"},Efe={change:{added:"新增",modified:"修改",deleted:"删除"},noChanges:"两个版本的源码没有差异",chooseFile:"从左侧选择文件以查看代码",compareTitle:"版本对比",workspaceTitle:"源码工作区",projectFallback:"Agent 项目",switchTheme:"切换源码主题",switchThemeTitle:"切换为{{theme}}主题",themes:{dark:"深色",light:"浅色"},closeWorkspace:"关闭源码工作区",close:"关闭",changedFiles:"变更文件",projectFiles:"项目文件",changes:"变更",files:"文件",openFiles:"打开的文件",noFileSelected:"未选择文件",comparisonDirection:"对比方向",before:"优化前",after:"优化后",loadingEditor:"正在加载编辑器…",changedFileCount_one:"{{count}} 个文件有变更",changedFileCount_other:"{{count}} 个文件有变更",fileCount_one:"{{count}} 个文件",fileCount_other:"{{count}} 个文件",lineCount_one:"{{count}} 行 · UTF-8",lineCount_other:"{{count}} 行 · UTF-8",viewSource:"查看源码",viewSourceAria:"查看和编辑项目源码"},Cfe={nav:"搜索",selectAgent:"请选择 Agent",checkingCapabilities:"正在检测 Agent 能力",notMounted:"当前 Agent 未挂载{{label}}",sources:{session:"会话",web:"网络",knowledge:"知识库",memory:"长期记忆"},webDescription:"通过 web_search 工具检索",backendLocal:"本地",failed:"搜索失败:{{message}}",placeholder:{selectAgent:"请先选择 Agent",web:"在网络中检索",knowledge:"在 {{name}} 中检索",knowledgeFallback:"当前 Agent 的知识库",memory:"在 {{name}} 中检索",memoryFallback:"当前用户的长期记忆",session:"在当前 Agent 的会话中检索"},sourceTypeAria:"搜索类型:{{label}}",notSelected:"未选择",sourceType:"搜索类型",selectSource:"选择搜索类型",noAgentHint:"选择一个 Agent 后,即可检索会话、网络及其挂载的数据源。",loadingCapabilities:"正在读取当前 Agent 的检索能力…",sourceUnavailable:"当前 Agent 未挂载该数据源",instructions:{web:"输入关键词后回车或点击按钮,通过 web_search 工具检索。",knowledge:"输入问题,检索当前 Agent 挂载的知识库。",memory:"输入线索,检索当前用户跨会话保存的长期记忆。",session:"输入关键词后回车或点击按钮,搜索当前 Agent 的会话。"},noResults:"未找到匹配“{{query}}”的结果。",knowledgeFragment:"知识片段 {{index}}",memoryFragment:"记忆片段 {{index}}"},Tfe={title:"开发者资源",sections:{documentation:{title:"相关链接",description:"查看开发文档与 AgentKit 常用入口"},bestPractices:{title:"最佳实践",description:"参考开发、调试与部署经验"},showcases:{title:"案例展示",description:"探索 AgentKit 应用案例"}},links:{veadkDocs:"VeADK 文档",cliDocs:"AgentKit CLI 文档",platformDocs:"AgentKit 平台文档",console:"AgentKit 控制台"},articles:{veadkDevelopment:{title:"使用 VeADK 开发并部署智能体",description:"使用 VeADK 构建 Agent,并部署至 AgentKit 智能体运行时。"},cliDevelopment:{title:"使用 AgentKit CLI 开发并部署智能体",description:"通过 AgentKit CLI 创建项目、调试 Agent,并完成部署。"},coverAlt:"{{title}}文章封面"},showcases:{researchAssistant:{title:"多智能体研究助手",description:"由多个专业 Agent 协同完成资料检索、分析和结论整理。"},multimodalAnalysis:{title:"多模态内容分析",description:"在统一会话中理解图片、文档和视频内容。"},customerService:{title:"智能客服工作台",description:"结合知识检索与工具调用处理复杂的客户服务任务。"},webSearch:{title:"联网搜索 Agent",description:"检索实时网页内容,并将信息整理为可追溯的回答。"},a2uiApp:{title:"A2UI 交互应用",description:"让 Agent 根据任务过程生成可交互的前端界面。"},previewAlt:"{{title}}界面预览"}},Afe={title:"资源库",untitledSession:"未命名会话",categoryAria:"资源库分类",regionAria:"区域",tabs:{skills:"技能库",knowledge:"知识库",artifacts:"产物"}},_fe={title:"管理 Agent",subtitle:"列出你有权管理的 AgentKit Runtime",mainAgentOnly:"仅显示主 Agent(控制面信息)。",deleteConfirm:'确定删除 Agent "{{name}}"?该 Runtime 将被永久删除。',regionFilterTitle:"按区域筛选",regionFilterAria:"区域筛选",regionAria:"区域",refresh:"刷新",loading:"加载中…",empty:"暂无你部署的 Agent。",connected:"已连接",connect:"连接到此 Agent",deleteRuntime:"删除该 Runtime",loadingDetail:"读取详情…",agentStructure:"Agent 结构",secretHidden:"敏感值已隐藏,点击显示",revealSecret:"显示 {{key}} 的值",fields:{model:"模型",description:"描述",status:"状态信息",project:"项目",version:"版本",resources:"资源",memory:"记忆",tool:"工具",knowledge:"知识",mcpToolset:"MCP 工具集",updatedAt:"更新时间"},resource:{memory:"内存 {{value}}MB",instances:"实例 {{min}}~{{max}}",concurrency:"并发 {{value}}"},environmentVariables:"环境变量",unnamed:"(未命名)"},Nfe={mainAgent:"主 Agent",subAgent:"子 Agent {{index}}",itemCount_one:"{{count}} 项",itemCount_other:"{{count}} 项",info:"Agent 信息",infoAndTopology:"Agent 信息与拓扑",loadingInfo:"正在读取 Agent 信息…",unnamedAgent:"未命名 Agent",tools:"工具",toolList:"工具列表",studioTool:"Studio Tool",removeTool:"移除工具 {{name}}",remove:"移除",notConfigured:"未配置",addStudioTool:"添加 Studio 工具",addStudioToolHere:"在此对话中添加 Studio 工具",skills:"技能",skillList:"技能列表",previewUnsupported:"暂不支持预览",sessionEnvironment:"会话环境",environment:"环境",agentCanvas:"Agent 画布",topology:"结构拓扑",viewCanvasFullscreen:"全屏查看 Agent 画布",viewFullscreen:"全屏查看",executionCanvas:"Agent 执行画布",fullscreenExecutionCanvas:"全屏 Agent 执行画布",closeFullscreenCanvas:"关闭全屏画布",close:"关闭",capabilitiesSubtitle:"能力与协作拓扑",closeInfo:"关闭 Agent 信息",infoUnavailable:"暂时无法读取 Agent 信息。"},jfe={mountFailed:"挂载环境失败",closeDialog:"关闭环境弹窗",addTitle:"添加环境",description:"选择当前会话允许 Agent 使用的 Sandbox 环境",closeAdd:"关闭添加环境",searchAria:"搜索环境",searchPlaceholder:"搜索环境名称或能力",availableAria:"可用环境与工作区",loading:"正在读取可用环境…",noMatch:"没有匹配的环境或工作区",workspaces:"工作区",reuseAll:"复用工作区中的全部可用环境",availableEnvironmentCount_one:"{{count}} 个可用环境",availableEnvironmentCount_other:"{{count}} 个可用环境",selectWorkspace:"选择工作区 {{name}}",environments:"环境",includedByWorkspaces:"已由工作区 {{names}} 包含",nameSeparator:"、",selectEnvironment:"选择环境 {{name}}",selectedWorkspaceCount_one:"{{count}} 个工作区",selectedWorkspaceCount_other:"{{count}} 个工作区",coveredEnvironmentCount_one:"{{count}} 个环境",coveredEnvironmentCount_other:"{{count}} 个环境",selectionSummary:"已选择 {{workspaces}},覆盖 {{environments}}",cancel:"取消",mounting:"正在挂载…",confirm:"确认添加",mountedAria:"已挂载环境",environmentCount_one:"{{count}} 个环境",environmentCount_other:"{{count}} 个环境",removeWorkspace:"移除工作区 {{name}}",remove:"移除",removeEnvironment:"移除环境 {{name}}",add:"添加环境",addMore:"添加更多环境",addForSession:"为当前 Session 添加环境",loadingAvailable:"正在加载可用环境…",empty:"暂无可用的 AIO Sandbox 环境。"},Rfe={loading:{searching:"正在查找已有环境",creating:"环境初始化中",connecting:"正在连接已有环境"},initializationFailed:"AgentKit CLI 环境初始化失败,当前状态:{{status}}。",sessionExpired:"AgentKit CLI Session 不存在或已过期,请重试。",initializationTimeout:"AgentKit CLI 环境初始化超时,请稍后重试。",nonPersistent:"非持久化环境",recyclingHoursMinutes:"{{hours}} 小时 {{minutes}} 分钟后环境回收",recyclingMinutes:"{{minutes}} 分钟后环境回收",connectionError:`无法连接 Studio 服务,未收到服务端响应。 +原始错误:{{message}}`,unavailable:"连接不可用",requestFailed:"AgentKit CLI 请求失败",retry:"重试",terminalTitle:"AgentKit CLI 终端"},Ife={labels:{coding:"智能编程",get_city_weather:"城市天气查询",get_location_weather:"位置天气查询",web_fetch:"网页内容获取"},closeDialog:"关闭弹窗",title:"添加 Studio 工具",description:"由 Studio BFF 为 {{agentName}} 的当前会话执行,Runtime 无需预装",close:"关闭添加 Studio 工具",searchAria:"搜索 Studio 工具",searchPlaceholder:"搜索名称或工具标识",availableAria:"可用 Studio 工具",loading:"正在读取 Studio 工具…",noMatch:"没有匹配的 Studio 工具",remove:"移除",add:"添加"},Pfe={artifactLibrary:Ofe,resourceMetadata:Sfe,artifactEdit:kfe,codeBrowser:Efe,search:Cfe,developerResources:Tfe,library:Afe,manageAgents:_fe,agentTopology:Nfe,sessionEnvironment:jfe,agentKitCli:Rfe,studioTools:Ife},GMe=Object.freeze(Object.defineProperty({__proto__:null,agentKitCli:Rfe,agentTopology:Nfe,artifactEdit:kfe,artifactLibrary:Ofe,codeBrowser:Efe,default:Pfe,developerResources:Tfe,library:Afe,manageAgents:_fe,resourceMetadata:Sfe,search:Cfe,sessionEnvironment:jfe,studioTools:Ife},Symbol.toStringTag,{value:"Module"})),eF=["zh-CN","en-US"],Cj="en-US",Dfe="agentkit.studio.locale",XMe={"zh-CN":{dir:"ltr",nativeName:"简体中文"},"en-US":{dir:"ltr",nativeName:"English"}};function Tj(e){if(!e)return null;const t=e.trim().replace(/_/g,"-").toLowerCase(),n=eF.find(i=>i.toLowerCase()===t);return n||(t==="zh"||t.startsWith("zh-")?"zh-CN":t==="en"||t.startsWith("en-")?"en-US":null)}function Id(e,t){const n=(e==null?void 0:e.trim())??"";if(!n)return"";const i=new RegExp("\\p{Script=Han}","u").test(n);return t.toLowerCase().startsWith("zh")===i?n:""}function YMe(){if(typeof window>"u")return null;try{return Tj(window.localStorage.getItem(Dfe))}catch{return null}}function ZMe(){if(typeof window>"u")return[];const e=window.navigator;return e?e.languages.length>0?e.languages:e.language?[e.language]:[]:[]}function JMe(){const e=YMe();if(e)return e;for(const t of ZMe()){const n=Tj(t);if(n)return n}return Cj}function e5e(e){if(!(typeof window>"u"))try{window.localStorage.setItem(Dfe,e)}catch{}}function Mfe(e){typeof document>"u"||(document.documentElement.lang=e,document.documentElement.dir=XMe[e].dir)}const Ln=e=>typeof e=="string",j1=()=>{let e,t;const n=new Promise((i,r)=>{e=i,t=r});return n.resolve=e,n.reject=t,n},LP=e=>e==null?"":String(e),t5e=(e,t,n)=>{e.forEach(i=>{t[i]&&(n[i]=t[i])})},n5e=/###/g,xV=e=>e&&e.includes("###")?e.replace(n5e,"."):e,wV=e=>!e||Ln(e),tO=(e,t,n)=>{const i=Ln(t)?t.split("."):t;let r=0;for(;r{const{obj:i,k:r}=tO(e,t,Object);if(i!==void 0||t.length===1){i[r]=n;return}let s=t[t.length-1],a=t.slice(0,t.length-1),l=tO(e,a,Object);for(;l.obj===void 0&&a.length;)s=`${a[a.length-1]}.${s}`,a=a.slice(0,a.length-1),l=tO(e,a,Object),l!=null&&l.obj&&typeof l.obj[`${l.k}.${s}`]<"u"&&(l.obj=void 0);l.obj[`${l.k}.${s}`]=n},i5e=(e,t,n,i)=>{const{obj:r,k:s}=tO(e,t,Object);r[s]=r[s]||[],r[s].push(n)},Y2=(e,t)=>{const{obj:n,k:i}=tO(e,t);if(n&&Object.prototype.hasOwnProperty.call(n,i))return n[i]},r5e=(e,t,n)=>{const i=Y2(e,n);return i!==void 0?i:Y2(t,n)},Lfe=(e,t,n)=>{for(const i in t)i!=="__proto__"&&i!=="constructor"&&(Object.prototype.hasOwnProperty.call(e,i)?Ln(e[i])||e[i]instanceof String||Ln(t[i])||t[i]instanceof String?n&&(e[i]=t[i]):Lfe(e[i],t[i],n):e[i]=t[i]);return e},hf=e=>e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),s5e={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"},a5e=e=>Ln(e)?e.replace(/[&<>"'\/]/g,t=>s5e[t]):e;class o5e{constructor(t){this.capacity=t,this.regExpMap=new Map,this.regExpQueue=[]}getRegExp(t){const n=this.regExpMap.get(t);if(n!==void 0)return n;const i=new RegExp(t);return this.regExpQueue.length===this.capacity&&this.regExpMap.delete(this.regExpQueue.shift()),this.regExpMap.set(t,i),this.regExpQueue.push(t),i}}const l5e=[" ",",","?","!",";"],c5e=new o5e(20),u5e=(e,t,n)=>{t=t||"",n=n||"";const i=l5e.filter(a=>!t.includes(a)&&!n.includes(a));if(i.length===0)return!0;const r=c5e.getRegExp(`(${i.map(a=>a==="?"?"\\?":a).join("|")})`);let s=!r.test(e);if(!s){const a=e.indexOf(n);a>0&&!r.test(e.substring(0,a))&&(s=!0)}return s},e3=(e,t,n=".")=>{if(!e)return;if(e[t])return Object.prototype.hasOwnProperty.call(e,t)?e[t]:void 0;const i=t.split(n);let r=e;for(let s=0;se==null?void 0:e.replace(/_/g,"-"),d5e={type:"logger",log(e){this.output("log",e)},warn(e){this.output("warn",e)},error(e){this.output("error",e)},output(e,t){var n,i;(i=(n=console==null?void 0:console[e])==null?void 0:n.apply)==null||i.call(n,console,t)}};class Z2{constructor(t,n={}){this.init(t,n)}init(t,n={}){this.prefix=n.prefix||"i18next:",this.logger=t||d5e,this.options=n,this.debug=n.debug}log(...t){return this.forward(t,"log","",!0)}warn(...t){return this.forward(t,"warn","",!0)}error(...t){return this.forward(t,"error","")}deprecate(...t){return this.forward(t,"warn","WARNING DEPRECATED: ",!0)}forward(t,n,i,r){return r&&!this.debug?null:(t=t.map(s=>Ln(s)?s.replace(/[\r\n\x00-\x1F\x7F]/g," "):s),Ln(t[0])&&(t[0]=`${i}${this.prefix} ${t[0]}`),this.logger[n](t))}create(t){return new Z2(this.logger,{prefix:`${this.prefix}:${t}:`,...this.options})}clone(t){return t=t||this.options,t.prefix=t.prefix||this.prefix,new Z2(this.logger,t)}}var Sd=new Z2;class Aj{constructor(){this.observers={}}on(t,n){return t.split(" ").forEach(i=>{this.observers[i]||(this.observers[i]=new Map);const r=this.observers[i].get(n)||0;this.observers[i].set(n,r+1)}),this}off(t,n){if(this.observers[t]){if(!n){delete this.observers[t];return}this.observers[t].delete(n)}}once(t,n){const i=(...r)=>{n(...r),this.off(t,i)};return this.on(t,i),this}emit(t,...n){this.observers[t]&&Array.from(this.observers[t].entries()).forEach(([r,s])=>{for(let a=0;a{for(let a=0;a-1&&this.options.ns.splice(n,1)}getResource(t,n,i,r={}){var u,d;const s=r.keySeparator!==void 0?r.keySeparator:this.options.keySeparator,a=r.ignoreJSONStructure!==void 0?r.ignoreJSONStructure:this.options.ignoreJSONStructure;let l;t.includes(".")?l=t.split("."):(l=[t,n],i&&(Array.isArray(i)?l.push(...i):Ln(i)&&s?l.push(...i.split(s)):l.push(i)));const c=Y2(this.data,l);return!c&&!n&&!i&&t.includes(".")&&(t=l[0],n=l[1],i=l.slice(2).join(".")),c||!a||!Ln(i)?c:e3((d=(u=this.data)==null?void 0:u[t])==null?void 0:d[n],i,s)}addResource(t,n,i,r,s={silent:!1}){const a=s.keySeparator!==void 0?s.keySeparator:this.options.keySeparator;let l=[t,n];i&&(l=l.concat(a?i.split(a):i)),t.includes(".")&&(l=t.split("."),r=n,n=l[1]),this.addNamespaces(n),OV(this.data,l,r),s.silent||this.emit("added",t,n,i,r)}addResources(t,n,i,r={silent:!1}){for(const s in i)(Ln(i[s])||Array.isArray(i[s]))&&this.addResource(t,n,s,i[s],{silent:!0});r.silent||this.emit("added",t,n,i)}addResourceBundle(t,n,i,r,s,a={silent:!1,skipCopy:!1}){let l=[t,n];t.includes(".")&&(l=t.split("."),r=i,i=n,n=l[1]),this.addNamespaces(n);let c=Y2(this.data,l)||{};a.skipCopy||(i=JSON.parse(JSON.stringify(i))),r?Lfe(c,i,s):c={...c,...i},OV(this.data,l,c),a.silent||this.emit("added",t,n,i)}removeResourceBundle(t,n){this.hasResourceBundle(t,n)&&delete this.data[t][n],this.removeNamespaces(n),this.emit("removed",t,n)}hasResourceBundle(t,n){return this.getResource(t,n)!==void 0}getResourceBundle(t,n){return n||(n=this.options.defaultNS),this.getResource(t,n)}getDataByLanguage(t){return this.data[t]}hasLanguageSomeTranslations(t){const n=this.getDataByLanguage(t);return!!(n&&Object.keys(n)||[]).find(r=>n[r]&&Object.keys(n[r]).length>0)}toJSON(){return this.data}}var $fe={processors:{},addPostProcessor(e){this.processors[e.name]=e},handle(e,t,n,i,r){return e.forEach(s=>{var a;t=((a=this.processors[s])==null?void 0:a.process(t,n,i,r))??t}),t}};const Ffe=Symbol("i18next/PATH_KEY");function f5e(){const e=[],t=Object.create(null);let n;return t.get=(i,r)=>{var s;return(s=n==null?void 0:n.revoke)==null||s.call(n),r===Ffe?e:(e.push(r),n=Proxy.revocable(i,t),n.proxy)},Proxy.revocable(Object.create(null),t).proxy}function eb(e,t){const{[Ffe]:n}=e(f5e()),i=(t==null?void 0:t.keySeparator)??".",r=(t==null?void 0:t.nsSeparator)??":",s=(t==null?void 0:t.enableSelector)==="strict";if(n.length>1&&r){const a=t==null?void 0:t.ns,l=s?Array.isArray(a)?a:a?[a]:null:Array.isArray(a)?a:null;if(l&&(s?l:l.length>1?l.slice(1):[]).includes(n[0]))return`${n[0]}${r}${n.slice(1).join(i)}`}return n.join(i)}const $P=e=>!Ln(e)&&typeof e!="boolean"&&typeof e!="number";class J2 extends Aj{constructor(t,n={}){super(),t5e(["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat","utils"],t,this),this.options=n,this.options.keySeparator===void 0&&(this.options.keySeparator="."),this.logger=Sd.create("translator"),this.checkedLoadedFor={}}changeLanguage(t){t&&(this.language=t)}exists(t,n={interpolation:{}}){const i={...n};if(t==null)return!1;const r=this.resolve(t,i);if((r==null?void 0:r.res)===void 0)return!1;const s=$P(r.res);return!(i.returnObjects===!1&&s)}extractFromKey(t,n){let i=n.nsSeparator!==void 0?n.nsSeparator:this.options.nsSeparator;i===void 0&&(i=":");const r=n.keySeparator!==void 0?n.keySeparator:this.options.keySeparator;let s=n.ns||this.options.defaultNS||[];const a=i&&t.includes(i),l=!this.options.userDefinedKeySeparator&&!n.keySeparator&&!this.options.userDefinedNsSeparator&&!n.nsSeparator&&!u5e(t,i,r);if(a&&!l){const c=t.match(this.interpolator.nestingRegexp);if(c&&c.length>0)return{key:t,namespaces:Ln(s)?[s]:s};const u=t.split(i);(i!==r||i===r&&this.options.ns.includes(u[0]))&&(s=u.shift()),t=u.join(r)}return{key:t,namespaces:Ln(s)?[s]:s}}translate(t,n,i){let r=typeof n=="object"?{...n}:n;if(typeof r!="object"&&this.options.overloadTranslationOptionHandler&&(r=this.options.overloadTranslationOptionHandler(arguments)),typeof r=="object"&&(r={...r}),r||(r={}),t==null)return"";typeof t=="function"&&(t=eb(t,{...this.options,...r})),Array.isArray(t)||(t=[String(t)]),t=t.map(L=>typeof L=="function"?eb(L,{...this.options,...r}):String(L));const s=r.returnDetails!==void 0?r.returnDetails:this.options.returnDetails,a=r.keySeparator!==void 0?r.keySeparator:this.options.keySeparator,{key:l,namespaces:c}=this.extractFromKey(t[t.length-1],r),u=c[c.length-1];let d=r.nsSeparator!==void 0?r.nsSeparator:this.options.nsSeparator;d===void 0&&(d=":");const f=r.lng||this.language,h=r.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if((f==null?void 0:f.toLowerCase())==="cimode")return h?s?{res:`${u}${d}${l}`,usedKey:l,exactUsedKey:l,usedLng:f,usedNS:u,usedParams:this.getUsedParamsDetails(r)}:`${u}${d}${l}`:s?{res:l,usedKey:l,exactUsedKey:l,usedLng:f,usedNS:u,usedParams:this.getUsedParamsDetails(r)}:l;const m=this.resolve(t,r);let g=m==null?void 0:m.res;const b=(m==null?void 0:m.usedKey)||l,v=(m==null?void 0:m.exactUsedKey)||l,y=["[object Number]","[object Function]","[object RegExp]"],x=r.joinArrays!==void 0?r.joinArrays:this.options.joinArrays,O=!this.i18nFormat||this.i18nFormat.handleAsObject,w=r.count!==void 0&&!Ln(r.count),k=J2.hasDefaultValue(r),S=w?this.pluralResolver.getSuffix(f,r.count,r):"",E=r.ordinal&&w?this.pluralResolver.getSuffix(f,r.count,{ordinal:!1}):"",C=w&&!r.ordinal&&r.count===0,N=C&&r[`defaultValue${this.options.pluralSeparator}zero`]||r[`defaultValue${S}`]||r[`defaultValue${E}`]||r.defaultValue;let T=g;O&&!g&&k&&(T=N);const j=$P(T),A=Object.prototype.toString.apply(T);if(O&&T&&j&&!y.includes(A)&&!(Ln(x)&&Array.isArray(T))){if(!r.returnObjects&&!this.options.returnObjects){this.options.returnedObjectHandler||this.logger.warn("accessing an object - but returnObjects options is not enabled!");const L=this.options.returnedObjectHandler?this.options.returnedObjectHandler(b,T,{...r,ns:c}):`key '${l} (${this.language})' returned an object instead of string.`;return s?(m.res=L,m.usedParams=this.getUsedParamsDetails(r),m):L}if(a){const L=Array.isArray(T),_=L?[]:{},P=L?v:b;for(const I in T)if(Object.prototype.hasOwnProperty.call(T,I)){const $=`${P}${a}${I}`;k&&!g?_[I]=this.translate($,{...r,defaultValue:$P(N)?N[I]:void 0,joinArrays:!1,ns:c}):_[I]=this.translate($,{...r,joinArrays:!1,ns:c}),_[I]===$&&(_[I]=T[I])}g=_}}else if(O&&Ln(x)&&Array.isArray(g))g=g.join(x),g&&(g=this.extendTranslation(g,t,r,i));else{let L=!1,_=!1;!this.isValidLookup(g)&&k&&(L=!0,g=N),this.isValidLookup(g)||(_=!0,g=l);const I=(r.missingKeyNoValueFallbackToKey||this.options.missingKeyNoValueFallbackToKey)&&_?void 0:g,$=k&&N!==g&&this.options.updateMissing;if(_||L||$){if(this.logger.log($?"updateKey":"missingKey",f,u,w&&!$?`${l}${this.pluralResolver.getSuffix(f,r.count,r)}`:l,$?N:g),a){const V=this.resolve(l,{...r,keySeparator:!1});V&&V.res&&this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.")}let M=[];const B=this.languageUtils.getFallbackCodes(this.options.fallbackLng,r.lng||this.language);if(this.options.saveMissingTo==="fallback"&&B&&B[0])for(let V=0;V{var U;const q=k&&Q!==g?Q:I;this.options.missingKeyHandler?this.options.missingKeyHandler(V,u,K,q,$,r):(U=this.backendConnector)!=null&&U.saveMissing&&this.backendConnector.saveMissing(V,u,K,q,$,r),this.emit("missingKey",V,u,K,g)};this.options.saveMissing&&(this.options.saveMissingPlurals&&w?M.forEach(V=>{const K=this.pluralResolver.getSuffixes(V,r);C&&r[`defaultValue${this.options.pluralSeparator}zero`]&&!K.includes(`${this.options.pluralSeparator}zero`)&&K.push(`${this.options.pluralSeparator}zero`),K.forEach(Q=>{R([V],l+Q,r[`defaultValue${Q}`]||N)})}):R(M,l,N))}g=this.extendTranslation(g,t,r,m,i),_&&g===l&&this.options.appendNamespaceToMissingKey&&(g=`${u}${d}${l}`),(_||L)&&this.options.parseMissingKeyHandler&&(g=this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey?`${u}${d}${l}`:l,L?g:void 0,r))}return s?(m.res=g,m.usedParams=this.getUsedParamsDetails(r),m):g}extendTranslation(t,n,i,r,s){var c,u;if((c=this.i18nFormat)!=null&&c.parse)t=this.i18nFormat.parse(t,{...this.options.interpolation.defaultVariables,...i},i.lng||this.language||r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!i.skipInterpolation){i.interpolation&&this.interpolator.init({...i,interpolation:{...this.options.interpolation,...i.interpolation}});const d=Ln(t)&&(((u=i==null?void 0:i.interpolation)==null?void 0:u.skipOnVariables)!==void 0?i.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables);let f;if(d){const m=t.match(this.interpolator.nestingRegexp);f=m&&m.length}let h=i.replace&&!Ln(i.replace)?i.replace:i;if(this.options.interpolation.defaultVariables&&(h={...this.options.interpolation.defaultVariables,...h}),t=this.interpolator.interpolate(t,h,i.lng||this.language||r.usedLng,i),d){const m=t.match(this.interpolator.nestingRegexp),g=m&&m.length;f(s==null?void 0:s[0])===m[0]&&!i.context?(this.logger.warn(`It seems you are nesting recursively key: ${m[0]} in key: ${n[0]}`),null):this.translate(...m,n),i)),i.interpolation&&this.interpolator.reset()}const a=i.postProcess||this.options.postProcess,l=Ln(a)?[a]:a;return t!=null&&(l!=null&&l.length)&&i.applyPostProcessor!==!1&&(t=$fe.handle(l,t,n,this.options&&this.options.postProcessPassResolved?{i18nResolved:{...r,usedParams:this.getUsedParamsDetails(i)},...i}:i,this)),t}resolve(t,n={}){let i,r,s,a,l;return Ln(t)&&(t=[t]),Array.isArray(t)&&(t=t.map(c=>typeof c=="function"?eb(c,{...this.options,...n}):c)),t.forEach(c=>{if(this.isValidLookup(i))return;const u=this.extractFromKey(c,n),d=u.key;r=d;let f=u.namespaces;this.options.fallbackNS&&(f=f.concat(this.options.fallbackNS));const h=n.count!==void 0&&!Ln(n.count),m=h&&!n.ordinal&&n.count===0,g=n.context!==void 0&&(Ln(n.context)||typeof n.context=="number")&&n.context!=="",b=n.lngs?n.lngs:this.languageUtils.toResolveHierarchy(n.lng||this.language,n.fallbackLng);f.forEach(v=>{var y,x;this.isValidLookup(i)||(l=v,!this.checkedLoadedFor[`${b[0]}-${v}`]&&((y=this.utils)!=null&&y.hasLoadedNamespace)&&!((x=this.utils)!=null&&x.hasLoadedNamespace(l))&&(this.checkedLoadedFor[`${b[0]}-${v}`]=!0,this.logger.warn(`key "${r}" for languages "${b.join(", ")}" won't get resolved as namespace "${l}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")),b.forEach(O=>{var S;if(this.isValidLookup(i))return;a=O;const w=[d];if((S=this.i18nFormat)!=null&&S.addLookupKeys)this.i18nFormat.addLookupKeys(w,d,O,v,n);else{let E;h&&(E=this.pluralResolver.getSuffix(O,n.count,n));const C=`${this.options.pluralSeparator}zero`,N=`${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;if(h&&(n.ordinal&&E.startsWith(N)&&w.push(d+E.replace(N,this.options.pluralSeparator)),w.push(d+E),m&&w.push(d+C)),g){const T=`${d}${this.options.contextSeparator||"_"}${n.context}`;w.push(T),h&&(n.ordinal&&E.startsWith(N)&&w.push(T+E.replace(N,this.options.pluralSeparator)),w.push(T+E),m&&w.push(T+C))}}let k;for(;k=w.pop();)this.isValidLookup(i)||(s=k,i=this.getResource(O,v,k,n))}))})}),{res:i,usedKey:r,exactUsedKey:s,usedLng:a,usedNS:l}}isValidLookup(t){return t!==void 0&&!(!this.options.returnNull&&t===null)&&!(!this.options.returnEmptyString&&t==="")}getResource(t,n,i,r={}){var s;return(s=this.i18nFormat)!=null&&s.getResource?this.i18nFormat.getResource(t,n,i,r):this.resourceStore.getResource(t,n,i,r)}getUsedParamsDetails(t={}){const n=["defaultValue","ordinal","context","replace","lng","lngs","fallbackLng","ns","keySeparator","nsSeparator","returnObjects","returnDetails","joinArrays","postProcess","interpolation"],i=t.replace&&!Ln(t.replace);let r=i?t.replace:t;if(i&&typeof t.count<"u"&&(r={...r,count:t.count}),this.options.interpolation.defaultVariables&&(r={...this.options.interpolation.defaultVariables,...r}),!i){r={...r};for(const s of n)delete r[s]}return r}static hasDefaultValue(t){const n="defaultValue";for(const i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&i.startsWith(n)&&t[i]!==void 0)return!0;return!1}}class kV{constructor(t){this.options=t,this.supportedLngs=this.options.supportedLngs||!1,this.logger=Sd.create("languageUtils"),this.resolveHierarchyCache={}}clearCache(){this.resolveHierarchyCache={}}getScriptPartFromCode(t){if(t=ZO(t),!t||!t.includes("-"))return null;const n=t.split("-");return n.length===2||(n.pop(),n[n.length-1].toLowerCase()==="x")?null:this.formatLanguageCode(n.join("-"))}getLanguagePartFromCode(t){if(t=ZO(t),!t||!t.includes("-"))return t;const n=t.split("-");return this.formatLanguageCode(n[0])}formatLanguageCode(t){if(Ln(t)&&t.includes("-")){let n;try{n=Intl.getCanonicalLocales(t)[0]}catch{}return n&&this.options.lowerCaseLng&&(n=n.toLowerCase()),n||(this.options.lowerCaseLng?t.toLowerCase():t)}return this.options.cleanCode||this.options.lowerCaseLng?t.toLowerCase():t}isSupportedCode(t){return(this.options.load==="languageOnly"||this.options.nonExplicitSupportedLngs)&&(t=this.getLanguagePartFromCode(t)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.includes(t)}getBestMatchFromCodes(t){if(!t)return null;let n;return t.forEach(i=>{if(n)return;const r=this.formatLanguageCode(i);(!this.options.supportedLngs||this.isSupportedCode(r))&&(n=r)}),!n&&this.options.supportedLngs&&t.forEach(i=>{if(n)return;const r=this.getScriptPartFromCode(i);if(this.isSupportedCode(r))return n=r;const s=this.getLanguagePartFromCode(i);if(this.isSupportedCode(s))return n=s;n=this.options.supportedLngs.find(a=>a===s?!0:!a.includes("-")&&!s.includes("-")?!1:!!(a.includes("-")&&!s.includes("-")&&a.slice(0,a.indexOf("-"))===s||a.startsWith(s)&&s.length>1))}),n||(n=this.getFallbackCodes(this.options.fallbackLng)[0]),n}getFallbackCodes(t,n){if(!t)return[];if(typeof t=="function"&&(t=t(n)),Ln(t)&&(t=[t]),Array.isArray(t))return t;if(!n)return t.default||[];let i=t[n];return i||(i=t[this.getScriptPartFromCode(n)]),i||(i=t[this.formatLanguageCode(n)]),i||(i=t[this.getLanguagePartFromCode(n)]),i||(i=t.default),i||[]}toResolveHierarchy(t,n){const i=this.options.fallbackLng,r=Array.isArray(i)?i.join("|"):i;r!==this._cachedFallbackLng&&(this.resolveHierarchyCache={},this._cachedFallbackLng=r);const s=n===void 0||n===!1||Ln(n),a=n===void 0&&typeof this.options.fallbackLng=="function",l=Ln(t)&&s&&!a;let c=null;if(l){let h;n===void 0?h="undefined":n===!1?h="boolean:false":h=`string:${n}`,c=`${t.length}:${t}|${h}`}if(c!==null){const h=this.resolveHierarchyCache[c];if(h!==void 0)return h.slice()}const u=this.getFallbackCodes((n===!1?[]:n)||this.options.fallbackLng||[],t),d=[],f=h=>{h&&(this.isSupportedCode(h)?d.push(h):this.logger.warn(`rejecting language code not found in supportedLngs: ${h}`))};return Ln(t)&&(t.includes("-")||t.includes("_"))?(this.options.load!=="languageOnly"&&f(this.formatLanguageCode(t)),this.options.load!=="languageOnly"&&this.options.load!=="currentOnly"&&f(this.getScriptPartFromCode(t)),this.options.load!=="currentOnly"&&f(this.getLanguagePartFromCode(t))):Ln(t)&&f(this.formatLanguageCode(t)),u.forEach(h=>{d.includes(h)||f(this.formatLanguageCode(h))}),c!==null?(this.resolveHierarchyCache[c]=d,d.slice()):d}}const EV={zero:0,one:1,two:2,few:3,many:4,other:5},CV={select:e=>e===1?"one":"other",resolvedOptions:()=>({pluralCategories:["one","other"]})};class h5e{constructor(t,n={}){this.languageUtils=t,this.options=n,this.logger=Sd.create("pluralResolver"),this.pluralRulesCache={}}clearCache(){this.pluralRulesCache={}}getRule(t,n={}){const i=ZO(t==="dev"?"en":t),r=n.ordinal?"ordinal":"cardinal",s=JSON.stringify({cleanedCode:i,type:r});if(s in this.pluralRulesCache)return this.pluralRulesCache[s];let a;try{a=new Intl.PluralRules(i,{type:r})}catch{if(typeof Intl>"u")return this.logger.error("No Intl support, please use an Intl polyfill!"),CV;if(!t.match(/-|_/))return CV;const c=this.languageUtils.getLanguagePartFromCode(t);a=this.getRule(c,n)}return this.pluralRulesCache[s]=a,a}needsPlural(t,n={}){let i=this.getRule(t,n);return i||(i=this.getRule("dev",n)),(i==null?void 0:i.resolvedOptions().pluralCategories.length)>1}getPluralFormsOfKey(t,n,i={}){return this.getSuffixes(t,i).map(r=>`${n}${r}`)}getSuffixes(t,n={}){let i=this.getRule(t,n);return i||(i=this.getRule("dev",n)),i?i.resolvedOptions().pluralCategories.sort((r,s)=>EV[r]-EV[s]).map(r=>`${this.options.prepend}${n.ordinal?`ordinal${this.options.prepend}`:""}${r}`):[]}getSuffix(t,n,i={}){const r=this.getRule(t,i);return r?`${this.options.prepend}${i.ordinal?`ordinal${this.options.prepend}`:""}${r.select(n)}`:(this.logger.warn(`no plural rule found for: ${t}`),this.getSuffix("dev",n,i))}}const TV=(e,t,n,i=".",r=!0)=>{let s=r5e(e,t,n);return!s&&r&&Ln(n)&&(s=e3(e,n,i),s===void 0&&(s=e3(t,n,i))),s},AV=e=>e.replace(/\$/g,"$$$$");class _V{constructor(t={}){var n;this.logger=Sd.create("interpolator"),this.options=t,this.format=((n=t==null?void 0:t.interpolation)==null?void 0:n.format)||(i=>i),this.init(t)}init(t={}){t.interpolation||(t.interpolation={escapeValue:!0});const{escape:n,escapeValue:i,useRawValueToEscape:r,prefix:s,prefixEscaped:a,suffix:l,suffixEscaped:c,formatSeparator:u,unescapeSuffix:d,unescapePrefix:f,nestingPrefix:h,nestingPrefixEscaped:m,nestingSuffix:g,nestingSuffixEscaped:b,nestingOptionsSeparator:v,maxReplaces:y,alwaysFormat:x}=t.interpolation;this.escape=n!==void 0?n:a5e,this.escapeValue=i!==void 0?i:!0,this.useRawValueToEscape=r!==void 0?r:!1,this.prefix=s?hf(s):a||"{{",this.suffix=l?hf(l):c||"}}",this.formatSeparator=u||",",this.unescapePrefix=d?"":f?hf(f):"-",this.unescapeSuffix=this.unescapePrefix?"":d?hf(d):"",this.nestingPrefix=h?hf(h):m||hf("$t("),this.nestingSuffix=g?hf(g):b||hf(")"),this.nestingOptionsSeparator=v||",",this.maxReplaces=y||1e3,this.alwaysFormat=x!==void 0?x:!1,this.resetRegExp()}reset(){this.options&&this.init(this.options)}resetRegExp(){const t=(n,i)=>(n==null?void 0:n.source)===i?(n.lastIndex=0,n):new RegExp(i,"g");this.regexp=t(this.regexp,`${this.prefix}(.+?)${this.suffix}`),this.regexpUnescape=t(this.regexpUnescape,`${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`),this.nestingRegexp=t(this.nestingRegexp,`${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`)}interpolate(t,n,i,r){var m;let s,a,l;const c=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},u=g=>{if(!g.includes(this.formatSeparator)){const x=TV(n,c,g,this.options.keySeparator,this.options.ignoreJSONStructure);return this.alwaysFormat?this.format(x,void 0,i,{...r,...n,interpolationkey:g}):x}const b=g.split(this.formatSeparator),v=b.shift().trim(),y=b.join(this.formatSeparator).trim();return this.format(TV(n,c,v,this.options.keySeparator,this.options.ignoreJSONStructure),y,i,{...r,...n,interpolationkey:v})};this.resetRegExp(),!this.escapeValue&&typeof t=="string"&&/\$t\([^)]*\{[^}]*\{\{/.test(t)&&this.logger.warn("nesting options string contains interpolated variables with escapeValue: false — if any of those values are attacker-controlled they can inject additional nesting options (e.g. redirect lng/ns). Sanitise untrusted input before passing it to t(), or keep escapeValue: true.");const d=(r==null?void 0:r.missingInterpolationHandler)||this.options.missingInterpolationHandler,f=((m=r==null?void 0:r.interpolation)==null?void 0:m.skipOnVariables)!==void 0?r.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:g=>g},{regex:this.regexp,safeValue:g=>this.escapeValue?this.escape(g):g}].forEach(g=>{for(l=0;s=g.regex.exec(t);){const b=s[1].trim();if(a=u(b),a===void 0)if(typeof d=="function"){const y=d(t,s,r);a=Ln(y)?y:""}else if(r&&Object.prototype.hasOwnProperty.call(r,b))a="";else if(f){a=s[0];continue}else this.logger.warn(`missed to pass in variable ${b} for interpolating ${t}`),a="";else!Ln(a)&&!this.useRawValueToEscape&&(a=LP(a));const v=g.safeValue(a);if(t=t.replace(s[0],AV(v)),f?(g.regex.lastIndex+=v.length,g.regex.lastIndex-=s[0].length):g.regex.lastIndex=0,l++,l>=this.maxReplaces)break}}),t}nest(t,n,i={}){let r,s,a;const l=(c,u)=>{const d=this.nestingOptionsSeparator;if(!c.includes(d))return c;const f=c.split(new RegExp(`${hf(d)}[ ]*{`));let h=`{${f[1]}`;c=f[0],h=this.interpolate(h,a);const m=h.match(/'/g),g=h.match(/"/g);(((m==null?void 0:m.length)??0)%2===0&&!g||((g==null?void 0:g.length)??0)%2!==0)&&(h=h.replace(/'/g,'"'));try{a=JSON.parse(h),u&&(a={...u,...a})}catch(b){return this.logger.warn(`failed parsing options string in nesting for key ${c}`,b),`${c}${d}${h}`}return a.defaultValue&&a.defaultValue.includes(this.prefix)&&delete a.defaultValue,c};for(;r=this.nestingRegexp.exec(t);){let c=[];a={...i},a=a.replace&&!Ln(a.replace)?a.replace:a,a.applyPostProcessor=!1,delete a.defaultValue;const u=/{.*}/s.test(r[1])?r[1].lastIndexOf("}")+1:r[1].indexOf(this.formatSeparator);if(u!==-1&&(c=r[1].slice(u).split(this.formatSeparator).map(d=>d.trim()).filter(Boolean),r[1]=r[1].slice(0,u)),s=n(l.call(this,r[1].trim(),a),a),s&&r[0]===t&&!Ln(s))return s;Ln(s)||(s=LP(s)),s||(this.logger.warn(`missed to resolve ${r[1]} for nesting ${t}`),s=""),c.length&&(s=c.reduce((d,f)=>this.format(d,f,i.lng,{...i,interpolationkey:r[1].trim()}),s.trim())),t=t.replace(r[0],AV(LP(s))),this.regexp.lastIndex=0}return t}}const p5e=e=>{let t=e.toLowerCase().trim();const n={};if(e.includes("(")){const i=e.split("(");t=i[0].toLowerCase().trim();const r=i[1].slice(0,-1);t==="currency"&&!r.includes(":")?n.currency||(n.currency=r.trim()):t==="relativetime"&&!r.includes(":")?n.range||(n.range=r.trim()):r.split(";").forEach(a=>{if(a){const[l,...c]=a.split(":"),u=c.join(":").trim().replace(/^'+|'+$/g,""),d=l.trim();n[d]||(n[d]=u),u==="false"&&(n[d]=!1),u==="true"&&(n[d]=!0),isNaN(u)||(n[d]=parseInt(u,10))}})}return{formatName:t,formatOptions:n}},NV=e=>{const t={};return(n,i,r)=>{let s=r;r&&r.interpolationkey&&r.formatParams&&r.formatParams[r.interpolationkey]&&r[r.interpolationkey]&&(s={...s,[r.interpolationkey]:void 0});const a=i+JSON.stringify(s);let l=t[a];return l||(l=e(ZO(i),r),t[a]=l),l(n)}},m5e=e=>(t,n,i)=>e(ZO(n),i)(t);class g5e{constructor(t={}){this.logger=Sd.create("formatter"),this.options=t,this.init(t)}init(t,n={interpolation:{}}){this.formatSeparator=n.interpolation.formatSeparator||",";const i=n.cacheInBuiltFormats?NV:m5e;this.formats={number:i((r,s)=>{const a=new Intl.NumberFormat(r,{...s});return l=>a.format(l)}),currency:i((r,s)=>{const a=new Intl.NumberFormat(r,{...s,style:"currency"});return l=>a.format(l)}),datetime:i((r,s)=>{const a=new Intl.DateTimeFormat(r,{...s});return l=>a.format(l)}),relativetime:i((r,s)=>{const a=new Intl.RelativeTimeFormat(r,{...s});return l=>a.format(l,s.range||"day")}),list:i((r,s)=>{const a=new Intl.ListFormat(r,{...s});return l=>a.format(l)})}}add(t,n){this.formats[t.toLowerCase().trim()]=n}addCached(t,n){this.formats[t.toLowerCase().trim()]=NV(n)}format(t,n,i,r={}){if(!n||t==null)return t;const s=n.split(this.formatSeparator),a=[];for(let c=0;c-1&&!u.includes(")")&&c+1{var h;const{formatName:d,formatOptions:f}=p5e(u);if(this.formats[d]){let m=c;try{const g=((h=r==null?void 0:r.formatParams)==null?void 0:h[r.interpolationkey])||{},b=g.locale||g.lng||r.locale||r.lng||i;m=this.formats[d](c,b,{...f,...r,...g})}catch(g){this.logger.warn(g)}return m}else this.logger.warn(`there was no format function for ${d}`);return c},t)}}const b5e=(e,t)=>{e.pending[t]!==void 0&&(delete e.pending[t],e.pendingCount--)};class y5e extends Aj{constructor(t,n,i,r={}){var s,a;super(),this.backend=t,this.store=n,this.services=i,this.languageUtils=i.languageUtils,this.options=r,this.logger=Sd.create("backendConnector"),this.waitingReads=[],this.maxParallelReads=r.maxParallelReads||10,this.readingCalls=0,this.maxRetries=r.maxRetries>=0?r.maxRetries:5,this.retryTimeout=r.retryTimeout>=1?r.retryTimeout:350,this.state={},this.queue=[],(a=(s=this.backend)==null?void 0:s.init)==null||a.call(s,i,r.backend,r)}queueLoad(t,n,i,r){const s={},a={},l={},c={};return t.forEach(u=>{let d=!0;n.forEach(f=>{const h=`${u}|${f}`;!i.reload&&this.store.hasResourceBundle(u,f)?this.state[h]=2:this.state[h]<0||(this.state[h]===1?a[h]===void 0&&(a[h]=!0):(this.state[h]=1,d=!1,a[h]===void 0&&(a[h]=!0),s[h]===void 0&&(s[h]=!0),c[f]===void 0&&(c[f]=!0)))}),d||(l[u]=!0)}),(Object.keys(s).length||Object.keys(a).length)&&this.queue.push({pending:a,pendingCount:Object.keys(a).length,loaded:{},errors:[],callback:r}),{toLoad:Object.keys(s),pending:Object.keys(a),toLoadLanguages:Object.keys(l),toLoadNamespaces:Object.keys(c)}}loaded(t,n,i){const r=t.split("|"),s=r[0],a=r[1];n&&this.emit("failedLoading",s,a,n),!n&&i&&this.store.addResourceBundle(s,a,i,void 0,void 0,{skipCopy:!0}),this.state[t]=n?-1:2,n&&i&&(this.state[t]=0);const l={};this.queue.forEach(c=>{i5e(c.loaded,[s],a),b5e(c,t),n&&c.errors.push(n),c.pendingCount===0&&!c.done&&(Object.keys(c.loaded).forEach(u=>{l[u]||(l[u]={});const d=c.loaded[u];d.length&&d.forEach(f=>{l[u][f]===void 0&&(l[u][f]=!0)})}),c.done=!0,c.errors.length?c.callback(c.errors):c.callback())}),this.emit("loaded",l),this.queue=this.queue.filter(c=>!c.done)}read(t,n,i,r=0,s=this.retryTimeout,a){if(!t.length)return a(null,{});if(this.readingCalls>=this.maxParallelReads){this.waitingReads.push({lng:t,ns:n,fcName:i,tried:r,wait:s,callback:a});return}this.readingCalls++;const l=(u,d)=>{if(this.readingCalls--,this.waitingReads.length>0){const f=this.waitingReads.shift();this.read(f.lng,f.ns,f.fcName,f.tried,f.wait,f.callback)}if(u&&d&&r{this.read(t,n,i,r+1,s*2,a)},s);return}a(u,d)},c=this.backend[i].bind(this.backend);if(c.length===2){try{const u=c(t,n);u&&typeof u.then=="function"?u.then(d=>l(null,d)).catch(l):l(null,u)}catch(u){l(u)}return}return c(t,n,l)}prepareLoading(t,n,i={},r){if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),r&&r();Ln(t)&&(t=this.languageUtils.toResolveHierarchy(t)),Ln(n)&&(n=[n]);const s=this.queueLoad(t,n,i,r);if(!s.toLoad.length)return s.pending.length||r(),null;s.toLoad.forEach(a=>{this.loadOne(a)})}load(t,n,i){this.prepareLoading(t,n,{},i)}reload(t,n,i){this.prepareLoading(t,n,{reload:!0},i)}loadOne(t,n=""){const i=t.split("|"),r=i[0],s=i[1];this.read(r,s,"read",void 0,void 0,(a,l)=>{a&&this.logger.warn(`${n}loading namespace ${s} for language ${r} failed`,a),!a&&l&&this.logger.log(`${n}loaded namespace ${s} for language ${r}`,l),this.loaded(t,a,l)})}saveMissing(t,n,i,r,s,a={},l=()=>{}){var c,u,d,f,h;if((u=(c=this.services)==null?void 0:c.utils)!=null&&u.hasLoadedNamespace&&!((f=(d=this.services)==null?void 0:d.utils)!=null&&f.hasLoadedNamespace(n))){this.logger.warn(`did not save key "${i}" as the namespace "${n}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!");return}if(!(i==null||i==="")){if((h=this.backend)!=null&&h.create){const m={...a,isUpdate:s},g=this.backend.create.bind(this.backend);if(g.length<6)try{let b;g.length===5?b=g(t,n,i,r,m):b=g(t,n,i,r),b&&typeof b.then=="function"?b.then(v=>l(null,v)).catch(l):l(null,b)}catch(b){l(b)}else g(t,n,i,r,l,m)}!t||!t[0]||this.store.addResource(t[0],n,i,r)}}}const FP=()=>({debug:!1,initAsync:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:"all",preload:!1,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",enableSelector:!1,partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!1,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:e=>{let t={};if(typeof e[1]=="object"&&(t=e[1]),Ln(e[1])&&(t.defaultValue=e[1]),Ln(e[2])&&(t.tDescription=e[2]),typeof e[2]=="object"||typeof e[3]=="object"){const n=e[3]||e[2];Object.keys(n).forEach(i=>{t[i]=n[i]})}return t},interpolation:{escapeValue:!0,prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",nestingOptionsSeparator:",",maxReplaces:1e3,skipOnVariables:!0},cacheInBuiltFormats:!0}),jV=e=>(Ln(e.ns)&&(e.ns=[e.ns]),Ln(e.fallbackLng)&&(e.fallbackLng=[e.fallbackLng]),Ln(e.fallbackNS)&&(e.fallbackNS=[e.fallbackNS]),e.supportedLngs&&!e.supportedLngs.includes("cimode")&&(e.supportedLngs=e.supportedLngs.concat(["cimode"])),e),NC=()=>{},v5e=e=>{Object.getOwnPropertyNames(Object.getPrototypeOf(e)).forEach(n=>{typeof e[n]=="function"&&(e[n]=e[n].bind(e))})};class nO extends Aj{constructor(t={},n){if(super(),this.options=jV(t),this.services={},this.logger=Sd,this.modules={external:[]},v5e(this),n&&!this.isInitialized&&!t.isClone){if(!this.options.initAsync)return this.init(t,n),this;setTimeout(()=>{this.init(t,n)},0)}}init(t={},n){this.isInitializing=!0,typeof t=="function"&&(n=t,t={}),t.defaultNS==null&&t.ns&&(Ln(t.ns)?t.defaultNS=t.ns:t.ns.includes("translation")||(t.defaultNS=t.ns[0]));const i=FP();this.options={...i,...this.options,...jV(t)},this.options.interpolation={...i.interpolation,...this.options.interpolation},t.keySeparator!==void 0&&(this.options.userDefinedKeySeparator=t.keySeparator),t.nsSeparator!==void 0&&(this.options.userDefinedNsSeparator=t.nsSeparator),typeof this.options.overloadTranslationOptionHandler!="function"&&(this.options.overloadTranslationOptionHandler=i.overloadTranslationOptionHandler);const r=u=>u?typeof u=="function"?new u:u:null;if(!this.options.isClone){this.modules.logger?Sd.init(r(this.modules.logger),this.options):Sd.init(null,this.options);let u;this.modules.formatter?u=this.modules.formatter:u=g5e;const d=new kV(this.options);this.store=new SV(this.options.resources,this.options);const f=this.services;f.logger=Sd,f.resourceStore=this.store,f.languageUtils=d,f.pluralResolver=new h5e(d,{prepend:this.options.pluralSeparator}),u&&(f.formatter=r(u),f.formatter.init&&f.formatter.init(f,this.options),this.options.interpolation.format=f.formatter.format.bind(f.formatter)),f.interpolator=new _V(this.options),f.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},f.backendConnector=new y5e(r(this.modules.backend),f.resourceStore,f,this.options),f.backendConnector.on("*",(h,...m)=>{this.emit(h,...m)}),this.modules.languageDetector&&(f.languageDetector=r(this.modules.languageDetector),f.languageDetector.init&&f.languageDetector.init(f,this.options.detection,this.options)),this.modules.i18nFormat&&(f.i18nFormat=r(this.modules.i18nFormat),f.i18nFormat.init&&f.i18nFormat.init(this)),this.translator=new J2(this.services,this.options),this.translator.on("*",(h,...m)=>{this.emit(h,...m)}),this.modules.external.forEach(h=>{h.init&&h.init(this)})}if(this.format=this.options.interpolation.format,n||(n=NC),this.options.fallbackLng&&!this.services.languageDetector&&!this.options.lng){const u=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);u.length>0&&u[0]!=="dev"&&(this.options.lng=u[0])}!this.services.languageDetector&&!this.options.lng&&this.logger.warn("init: no languageDetector is used and no lng is defined"),["getResource","hasResourceBundle","getResourceBundle","getDataByLanguage"].forEach(u=>{this[u]=(...d)=>this.store[u](...d)}),["addResource","addResources","addResourceBundle","removeResourceBundle"].forEach(u=>{this[u]=(...d)=>(this.store[u](...d),this)});const l=j1(),c=()=>{const u=(d,f)=>{this.isInitializing=!1,this.isInitialized&&!this.initializedStoreOnce&&this.logger.warn("init: i18next is already initialized. You should call init just once!"),this.isInitialized=!0,this.options.isClone||this.logger.log("initialized",this.options),this.emit("initialized",this.options),l.resolve(f),n(d,f)};if((this.languages||this.isLanguageChangingTo)&&!this.isInitialized)return u(null,this.t.bind(this));this.changeLanguage(this.options.lng,u)};return this.options.resources||!this.options.initAsync?c():setTimeout(c,0),l}loadResources(t,n=NC){var s,a;let i=n;const r=Ln(t)?t:this.language;if(typeof t=="function"&&(i=t),!this.options.resources||this.options.partialBundledLanguages){if((r==null?void 0:r.toLowerCase())==="cimode"&&(!this.options.preload||this.options.preload.length===0))return i();const l=[],c=u=>{if(!u||u==="cimode")return;this.services.languageUtils.toResolveHierarchy(u).forEach(f=>{f!=="cimode"&&(l.includes(f)||l.push(f))})};r?c(r):this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach(d=>c(d)),(a=(s=this.options.preload)==null?void 0:s.forEach)==null||a.call(s,u=>c(u)),this.services.backendConnector.load(l,this.options.ns,u=>{!u&&!this.resolvedLanguage&&this.language&&this.setResolvedLanguage(this.language),i(u)})}else i(null)}reloadResources(t,n,i){const r=j1();return typeof t=="function"&&(i=t,t=void 0),typeof n=="function"&&(i=n,n=void 0),t||(t=this.languages),n||(n=this.options.ns),i||(i=NC),this.services.backendConnector.reload(t,n,s=>{r.resolve(),i(s)}),r}use(t){if(!t)throw new Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");if(!t.type)throw new Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");return t.type==="backend"&&(this.modules.backend=t),(t.type==="logger"||t.log&&t.warn&&t.error)&&(this.modules.logger=t),t.type==="languageDetector"&&(this.modules.languageDetector=t),t.type==="i18nFormat"&&(this.modules.i18nFormat=t),t.type==="postProcessor"&&$fe.addPostProcessor(t),t.type==="formatter"&&(this.modules.formatter=t),t.type==="3rdParty"&&this.modules.external.push(t),this}setResolvedLanguage(t){if(!(!t||!this.languages)&&!["cimode","dev"].includes(t)){for(let n=0;n{this.language=l,this.languages=this.services.languageUtils.toResolveHierarchy(l),this.resolvedLanguage=void 0,this.setResolvedLanguage(l)},s=(l,c)=>{c?this.isLanguageChangingTo===t&&(r(c),this.translator.changeLanguage(c),this.isLanguageChangingTo=void 0,this.emit("languageChanged",c),this.logger.log("languageChanged",c)):this.isLanguageChangingTo=void 0,i.resolve((...u)=>this.t(...u)),n&&n(l,(...u)=>this.t(...u))},a=l=>{var d,f;!t&&!l&&this.services.languageDetector&&(l=[]);const c=Ln(l)?l:l&&l[0],u=this.store.hasLanguageSomeTranslations(c)?c:this.services.languageUtils.getBestMatchFromCodes(Ln(l)?[l]:l);u&&(this.language||r(u),this.translator.language||this.translator.changeLanguage(u),(f=(d=this.services.languageDetector)==null?void 0:d.cacheUserLanguage)==null||f.call(d,u)),this.loadResources(u,h=>{s(h,u)})};return!t&&this.services.languageDetector&&!this.services.languageDetector.async?a(this.services.languageDetector.detect()):!t&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect.length===0?this.services.languageDetector.detect().then(a):this.services.languageDetector.detect(a):a(t),i}getFixedT(t,n,i,r){const s=r==null?void 0:r.scopeNs,a=(l,c,...u)=>{let d;typeof c!="object"?d=this.options.overloadTranslationOptionHandler([l,c].concat(u)):d={...c},d.lng=d.lng||a.lng,d.lngs=d.lngs||a.lngs;const f=d.ns!==void 0&&d.ns!==null;d.ns=d.ns||a.ns,d.keyPrefix!==""&&(d.keyPrefix=d.keyPrefix||i||a.keyPrefix);const h={...this.options,...d};Array.isArray(s)&&!f&&(h.ns=s),typeof d.keyPrefix=="function"&&(d.keyPrefix=eb(d.keyPrefix,h));const m=this.options.keySeparator||".";let g;return d.keyPrefix&&Array.isArray(l)?g=l.map(b=>(typeof b=="function"&&(b=eb(b,h)),`${d.keyPrefix}${m}${b}`)):(typeof l=="function"&&(l=eb(l,h)),g=d.keyPrefix?`${d.keyPrefix}${m}${l}`:l),this.t(g,d)};return Ln(t)?a.lng=t:a.lngs=t,a.ns=n,a.keyPrefix=i,a}t(...t){var n;return(n=this.translator)==null?void 0:n.translate(...t)}exists(...t){var n;return(n=this.translator)==null?void 0:n.exists(...t)}setDefaultNamespace(t){this.options.defaultNS=t}hasLoadedNamespace(t,n={}){if(!this.isInitialized)return this.logger.warn("hasLoadedNamespace: i18next was not initialized",this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty",this.languages),!1;const i=n.lng||this.resolvedLanguage||this.languages[0],r=this.options?this.options.fallbackLng:!1,s=this.languages[this.languages.length-1];if(i.toLowerCase()==="cimode")return!0;const a=(l,c)=>{const u=this.services.backendConnector.state[`${l}|${c}`];return u===-1||u===0||u===2};if(n.precheck){const l=n.precheck(this,a);if(l!==void 0)return l}return!!(this.hasResourceBundle(i,t)||!this.services.backendConnector.backend||this.options.resources&&!this.options.partialBundledLanguages||a(i,t)&&(!r||a(s,t)))}loadNamespaces(t,n){const i=j1();return this.options.ns?(Ln(t)&&(t=[t]),t.forEach(r=>{this.options.ns.includes(r)||this.options.ns.push(r)}),this.loadResources(r=>{i.resolve(),n&&n(r)}),i):(n&&n(),Promise.resolve())}loadLanguages(t,n){const i=j1();Ln(t)&&(t=[t]);const r=this.options.preload||[],s=t.filter(a=>!r.includes(a)&&this.services.languageUtils.isSupportedCode(a));return s.length?(this.options.preload=r.concat(s),this.loadResources(a=>{i.resolve(),n&&n(a)}),i):(n&&n(),Promise.resolve())}dir(t){var r,s;if(t||(t=this.resolvedLanguage||(((r=this.languages)==null?void 0:r.length)>0?this.languages[0]:this.language)),!t)return"rtl";try{const a=new Intl.Locale(t);if(a&&a.getTextInfo){const l=a.getTextInfo();if(l&&l.direction)return l.direction}}catch{}const n=["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ug","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam","ckb"],i=((s=this.services)==null?void 0:s.languageUtils)||new kV(FP());return t.toLowerCase().indexOf("-latn")>1?"ltr":n.includes(i.getLanguagePartFromCode(t))||t.toLowerCase().indexOf("-arab")>1?"rtl":"ltr"}static createInstance(t={},n){const i=new nO(t,n);return i.createInstance=nO.createInstance,i}cloneInstance(t={},n=NC){const i=t.forkResourceStore;i&&delete t.forkResourceStore;const r={...this.options,...t,isClone:!0},s=new nO(r);if((t.debug!==void 0||t.prefix!==void 0)&&(s.logger=s.logger.clone(t)),["store","services","language"].forEach(l=>{s[l]=this[l]}),s.services={...this.services},s.services.utils={hasLoadedNamespace:s.hasLoadedNamespace.bind(s)},i){const l=Object.keys(this.store.data).reduce((c,u)=>(c[u]={...this.store.data[u]},c[u]=Object.keys(c[u]).reduce((d,f)=>(d[f]={...c[u][f]},d),c[u]),c),{});s.store=new SV(l,r),s.services.resourceStore=s.store}if(t.interpolation){const c={...FP().interpolation,...this.options.interpolation,...t.interpolation},u={...r,interpolation:c};s.services.interpolator=new _V(u)}return s.translator=new J2(s.services,r),s.translator.on("*",(l,...c)=>{s.emit(l,...c)}),s.init(r,n),s.translator.options=r,s.translator.backendConnector.services.utils={hasLoadedNamespace:s.hasLoadedNamespace.bind(s)},s}toJSON(){return{options:this.options,store:this.store,language:this.language,languages:this.languages,resolvedLanguage:this.resolvedLanguage}}}const Go=nO.createInstance();Go.createInstance;Go.dir;Go.init;Go.loadResources;Go.reloadResources;Go.use;Go.changeLanguage;Go.getFixedT;Go.t;Go.exists;Go.setDefaultNamespace;Go.hasLoadedNamespace;Go.loadNamespaces;Go.loadLanguages;var Bfe={exports:{}},Jn={};/** * @license React * react.production.js * @@ -51,7 +51,7 @@ Studio:{{studioUrl}} * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var X8=Symbol.for("react.transitional.element"),i5e=Symbol.for("react.portal"),r5e=Symbol.for("react.fragment"),s5e=Symbol.for("react.strict_mode"),a5e=Symbol.for("react.profiler"),o5e=Symbol.for("react.consumer"),l5e=Symbol.for("react.context"),c5e=Symbol.for("react.forward_ref"),u5e=Symbol.for("react.suspense"),d5e=Symbol.for("react.memo"),Afe=Symbol.for("react.lazy"),f5e=Symbol.for("react.activity"),SV=Symbol.iterator;function h5e(e){return e===null||typeof e!="object"?null:(e=SV&&e[SV]||e["@@iterator"],typeof e=="function"?e:null)}var _fe={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},Nfe=Object.assign,jfe={};function mx(e,t,n){this.props=e,this.context=t,this.refs=jfe,this.updater=n||_fe}mx.prototype.isReactComponent={};mx.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};mx.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function Rfe(){}Rfe.prototype=mx.prototype;function Y8(e,t,n){this.props=e,this.context=t,this.refs=jfe,this.updater=n||_fe}var Z8=Y8.prototype=new Rfe;Z8.constructor=Y8;Nfe(Z8,mx.prototype);Z8.isPureReactComponent=!0;var kV=Array.isArray;function XL(){}var Gr={H:null,A:null,T:null,S:null},Ife=Object.prototype.hasOwnProperty;function J8(e,t,n){var i=n.ref;return{$$typeof:X8,type:e,key:t,ref:i!==void 0?i:null,props:n}}function p5e(e,t){return J8(e.type,t,e.props)}function e9(e){return typeof e=="object"&&e!==null&&e.$$typeof===X8}function m5e(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(n){return t[n]})}var EV=/\/+/g;function DP(e,t){return typeof e=="object"&&e!==null&&e.key!=null?m5e(""+e.key):t.toString(36)}function g5e(e){switch(e.status){case"fulfilled":return e.value;case"rejected":throw e.reason;default:switch(typeof e.status=="string"?e.then(XL,XL):(e.status="pending",e.then(function(t){e.status==="pending"&&(e.status="fulfilled",e.value=t)},function(t){e.status==="pending"&&(e.status="rejected",e.reason=t)})),e.status){case"fulfilled":return e.value;case"rejected":throw e.reason}}throw e}function X0(e,t,n,i,r){var s=typeof e;(s==="undefined"||s==="boolean")&&(e=null);var a=!1;if(e===null)a=!0;else switch(s){case"bigint":case"string":case"number":a=!0;break;case"object":switch(e.$$typeof){case X8:case i5e:a=!0;break;case Afe:return a=e._init,X0(a(e._payload),t,n,i,r)}}if(a)return r=r(e),a=i===""?"."+DP(e,0):i,kV(r)?(n="",a!=null&&(n=a.replace(EV,"$&/")+"/"),X0(r,t,n,"",function(u){return u})):r!=null&&(e9(r)&&(r=p5e(r,n+(r.key==null||e&&e.key===r.key?"":(""+r.key).replace(EV,"$&/")+"/")+a)),t.push(r)),1;a=0;var l=i===""?".":i+":";if(kV(e))for(var c=0;c<]+?)[\s/>]|([^\s=]+)=\s?("[^"]*"|'[^']*')/g;function TV(e){const t={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},n=e.match(/<\/?([^\s]+?)[/\s>]/);if(n&&(t.name=n[1],(v5e[n[1]]||e.charAt(e.length-2)==="/")&&(t.voidElement=!0),t.name.startsWith("!--"))){const s=e.indexOf("-->");return{type:"comment",comment:s!==-1?e.slice(4,s):""}}const i=new RegExp(x5e);let r=null;for(;r=i.exec(e),r!==null;)if(r[0].trim())if(r[1]){const s=r[1].trim();let a=[s,null];const l=s.indexOf("=");l>-1&&(a=[s.slice(0,l),s.slice(l+1)]),t.attrs[a[0]]=a[1],i.lastIndex--}else r[2]&&(t.attrs[r[2]]=r[3].trim().substring(1,r[3].length-1));return t}const _C=/|<[a-zA-Z0-9\-!/](?:"[^"]*"|'[^']*'|[^'">])*>/g,w5e=/<\/?([^\s]+?)[/\s>]/,O5e=/^\s*$/,S5e=/^(script|style)$/i,xw="\0",k5e=Object.create(null);function Pfe(e){e.forEach(function(t){if(t.type==="text"){t.content=t.content.split(xw).join("<");return}if(t.type==="comment"){t.comment=t.comment.split(xw).join("<");return}for(const n in t.attrs){const i=t.attrs[n];typeof i=="string"&&i.indexOf(xw)>-1&&(t.attrs[n]=i.split(xw).join("<"))}t.children.length&&Pfe(t.children)})}function E5e(e,t){const n=t&&t.components||k5e,i=t&&t.allowedTags;let r=!1;if(i){const g=typeof i=="function"?i:function(x){return i.indexOf(x)>-1};let b="",v=0;_C.lastIndex=0;let y;for(;y=_C.exec(e);){const x=y[0];b+=e.slice(v,y.index);const O=x.match(w5e);x.startsWith("",e}}function T5e(e){return e.reduce(function(t,n){return t+Dfe("",n)},"")}var A5e={parse:E5e,stringify:T5e};const _2=(e,t,n,i)=>{var s,a,l,c;const r=[n,{code:t,...i||{}}];if((a=(s=e==null?void 0:e.services)==null?void 0:s.logger)!=null&&a.forward)return e.services.logger.forward(r,"warn","react-i18next::",!0);ml(r[0])&&(r[0]=`react-i18next:: ${r[0]}`),(c=(l=e==null?void 0:e.services)==null?void 0:l.logger)!=null&&c.warn?e.services.logger.warn(...r):console!=null&&console.warn&&console.warn(...r)},AV={},Uy=(e,t,n,i)=>{ml(n)&&AV[n]||(ml(n)&&(AV[n]=new Date),_2(e,t,n,i))},Mfe=(e,t)=>()=>{if(e.isInitialized)t();else{const n=()=>{setTimeout(()=>{e.off("initialized",n)},0),t()};e.on("initialized",n)}},YL=(e,t,n)=>{e.loadNamespaces(t,Mfe(e,n))},_V=(e,t,n,i)=>{if(ml(n)&&(n=[n]),e.options.preload&&e.options.preload.indexOf(t)>-1)return YL(e,n,i);n.forEach(r=>{e.options.ns.indexOf(r)<0&&e.options.ns.push(r)}),e.loadLanguages(t,Mfe(e,i))},_5e=(e,t,n={})=>!t.languages||!t.languages.length?(Uy(t,"NO_LANGUAGES","i18n.languages were undefined or empty",{languages:t.languages}),!0):t.hasLoadedNamespace(e,{lng:n.lng,precheck:(i,r)=>{if(n.bindI18n&&n.bindI18n.indexOf("languageChanging")>-1&&i.services.backendConnector.backend&&i.isLanguageChangingTo&&!r(i.isLanguageChangingTo,e))return!1}}),ml=e=>typeof e=="string",Hf=e=>typeof e=="object"&&e!==null,N5e=/&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g,j5e={"&":"&","&":"&","<":"<","<":"<",">":">",">":">","'":"'","'":"'",""":'"',""":'"'," ":" "," ":" ","©":"©","©":"©","®":"®","®":"®","…":"…","…":"…","/":"/","/":"/"},R5e=e=>j5e[e],Lfe=e=>e.replace(N5e,R5e);let ZL={bindI18n:"languageChanged",bindI18nStore:"",transEmptyNodeValue:"",transSupportBasicHtmlNodes:!0,transWrapTextNodes:"",transKeepBasicHtmlNodesFor:["br","strong","i","p"],useSuspense:!0,unescape:Lfe,transDefaultProps:void 0};const I5e=(e={})=>{ZL={...ZL,...e}},t9=()=>ZL;let $fe;const P5e=e=>{$fe=e},n9=()=>$fe,N2=(e,t)=>{var i;if(!e)return!1;const n=((i=e.props)==null?void 0:i.children)??e.children;return t?n.length>0:!!n},ww=e=>{var n,i;if(!e)return[];const t=((n=e.props)==null?void 0:n.children)??e.children;return(i=e.props)!=null&&i.i18nIsDynamicList?Ep(t):t},D5e=e=>Array.isArray(e)&&e.every(p.isValidElement),Ep=e=>Array.isArray(e)?e:[e],M5e=(e,t)=>{const n={...t};return n.props={...t.props,...e.props},n},L5e=e=>{const t={};if(!e)return t;const n=i=>{Ep(i).forEach(s=>{ml(s)||(N2(s)?n(ww(s)):Hf(s)&&!p.isValidElement(s)&&Object.assign(t,s))})};return n(e),t},JL=(e,t,n,i)=>{if(!e)return"";let r="";const s=Ep(e),a=t!=null&&t.transSupportBasicHtmlNodes?t.transKeepBasicHtmlNodesFor??[]:[];return s.forEach((l,c)=>{if(ml(l)){r+=`${l}`;return}if(p.isValidElement(l)){const{props:u,type:d}=l,f=Object.keys(u).length,h=a.indexOf(d)>-1,m=u.children;if(!m&&h&&!f){r+=`<${d}/>`;return}if(!m&&(!h||f)||u.i18nIsDynamicList){r+=`<${c}>`;return}if(h&&f<=1){const b=ml(m)?m:JL(m,t,n,i);r+=`<${d}>${b}`;return}const g=JL(m,t,n,i);r+=`<${c}>${g}`;return}if(l===null){_2(n,"TRANS_NULL_VALUE","Passed in a null value as child",{i18nKey:i});return}if(Hf(l)){const{format:u,...d}=l,f=Object.keys(d);if(f.length===1){const h=u?`${f[0]}, ${u}`:f[0];r+=`{{${h}}}`;return}_2(n,"TRANS_INVALID_OBJ","Invalid child - Object should only have keys {{ value, format }} (format is optional).",{i18nKey:i,child:l});return}_2(n,"TRANS_INVALID_VAR","Passed in a variable like {number} - pass variables for interpolation as full objects like {{number}}.",{i18nKey:i,child:l})}),r},$5e=(e,t,n,i,r,s,a)=>{if(n==="")return[];const l=r.transKeepBasicHtmlNodesFor||[],c=n&&new RegExp(l.map(O=>`<${O}`).join("|")).test(n);if(!e&&!t&&!c&&!a)return[n];const u=t??{},d=O=>{Ep(O).forEach(k=>{ml(k)||(N2(k)?d(ww(k)):Hf(k)&&!p.isValidElement(k)&&Object.assign(u,k))})};d(e);const f=Object.keys(u),h=O=>/^\d+$/.test(O)||l.indexOf(O)>-1||f.indexOf(O)>-1,m=A5e.parse(`<0>${n}`,{allowedTags:h}),g={...u,...s},b=(O,w,k)=>{var C;const S=ww(O),E=y(S,w.children,k);return D5e(S)&&E.length===0||(C=O.props)!=null&&C.i18nIsDynamicList?S:E},v=(O,w,k,S,E)=>{O.dummy?(O.children=w,k.push(p.cloneElement(O,{key:S},E?void 0:w))):k.push(...p.Children.map([O],C=>{var _;if(C.type===p.Fragment||((_=C.props)==null?void 0:_.i18nIsDynamicList)!==void 0){const j={key:S};return C&&C.props&&Object.keys(C.props).forEach(A=>{A==="children"||A==="i18nIsDynamicList"||(j[A]=C.props[A])}),p.createElement(C.type,j,E?null:w)}const N={key:S};return C&&C.props&&Object.keys(C.props).forEach(j=>{j==="ref"||j==="children"||(N[j]=C.props[j])}),p.cloneElement(C,N,E?null:w)}))},y=(O,w,k)=>{const S=Ep(O),E=Ep(w),C={};return E.reduce((N,_,j)=>{var F,T;const A=((T=(F=_.children)==null?void 0:F[0])==null?void 0:T.content)&&i.services.interpolator.interpolate(_.children[0].content,g,i.language);if(_.type==="tag"){let P=S[parseInt(_.name,10)];!P&&t&&(P=t[_.name]),k.length===1&&!P&&(P=k[0][_.name]),P||(P={});const R={..._.attrs};a&&Object.keys(R).forEach(K=>{const Q=R[K];ml(Q)&&(R[K]=Lfe(Q))});const L=Object.keys(R).length!==0?M5e({props:R},P):P,M=p.isValidElement(L),U=M&&N2(_,!0)&&!_.voidElement,I=c&&Hf(L)&&L.dummy&&!M,H=Hf(t)&&Object.hasOwnProperty.call(t,_.name);if(ml(L)){const K=i.services.interpolator.interpolate(L,g,i.language);N.push(K)}else if(N2(L)||U){const K=b(L,_,k);v(L,K,N,j)}else if(I){const K=y(S,_.children,k);v(L,K,N,j)}else if(Number.isNaN(parseFloat(_.name)))if(H){const K=b(L,_,k);v(L,K,N,j,_.voidElement)}else if(r.transSupportBasicHtmlNodes&&l.indexOf(_.name)>-1)if(_.voidElement)N.push(p.createElement(_.name,{key:`${_.name}-${j}`}));else{const K=C[_.name]||0;C[_.name]=K+1;let Q,q=0;for(let le=0;le`);else{const K=y(S,_.children,k);N.push(`<${_.name}>${K}`)}else if(Hf(L)&&!M){const K=_.children[0]?A:null;K&&N.push(K)}else v(L,A,N,j,_.children.length!==1||!A)}else if(_.type==="text"){const P=r.transWrapTextNodes,R=typeof r.unescape=="function"?r.unescape:t9().unescape,L=a?R(i.services.interpolator.interpolate(_.content,g,i.language)):i.services.interpolator.interpolate(_.content,g,i.language);P?N.push(p.createElement(P,{key:`${_.name}-${j}`},L)):N.push(L)}return N},[])},x=y([{dummy:!0,children:e||[]}],m,Ep(e||[]));return ww(x[0])},Ffe=(e,t,n)=>{const i=e.key||t,r=p.cloneElement(e,{key:i});if(!r.props||!r.props.children||n.indexOf(`${t}/>`)<0&&n.indexOf(`${t} />`)<0)return r;function s(){return p.createElement(p.Fragment,null,r)}return p.createElement(s,{key:i})},F5e=(e,t)=>e.map((n,i)=>Ffe(n,i,t)),B5e=(e,t)=>{const n={};return Object.keys(e).forEach(i=>{Object.assign(n,{[i]:Ffe(e[i],i,t)})}),n},U5e=(e,t,n,i)=>e?Array.isArray(e)?F5e(e,t):Hf(e)?B5e(e,t):(Uy(n,"TRANS_INVALID_COMPONENTS",' "components" prop expects an object or array',{i18nKey:i}),null):null,Q5e=e=>!Hf(e)||Array.isArray(e)?!1:Object.keys(e).reduce((t,n)=>t&&Number.isNaN(Number.parseFloat(n)),!0);function z5e({children:e,count:t,parent:n,i18nKey:i,context:r,tOptions:s={},values:a,defaults:l,components:c,ns:u,i18n:d,t:f,shouldUnescape:h,...m}){var I,H,K,Q,q,B;const g=d||n9();if(!g)return Uy(g,"NO_I18NEXT_INSTANCE","Trans: You need to pass in an i18next instance using initReactI18next or by passing it via props or context. In monorepo setups, make sure there is only one instance of react-i18next.",{i18nKey:i}),e;const b=f||g.t.bind(g)||(ee=>ee),v={...t9(),...(I=g.options)==null?void 0:I.react};let y=u||b.ns||((H=g.options)==null?void 0:H.defaultNS);y=ml(y)?[y]:y||["translation"];const{transDefaultProps:x}=v,O=x!=null&&x.tOptions?{...x.tOptions,...s}:s,w=h??(x==null?void 0:x.shouldUnescape),k=x!=null&&x.values?{...x.values,...a}:a,S=x!=null&&x.components?{...x.components,...c}:c,E=JL(e,v,g,i),C=l||(O==null?void 0:O.defaultValue)||E||v.transEmptyNodeValue||(typeof i=="function"?Kg(i):i),{hashTransKey:N}=v,_=i||(N?N(E||C):E||C);(Q=(K=g.options)==null?void 0:K.interpolation)!=null&&Q.defaultVariables?a=k&&Object.keys(k).length>0?{...k,...g.options.interpolation.defaultVariables}:{...g.options.interpolation.defaultVariables}:a=k;const j=L5e(e);j&&typeof j.count=="number"&&t===void 0&&(t=j.count);const A=a||t!==void 0&&!((B=(q=g.options)==null?void 0:q.interpolation)!=null&&B.alwaysFormat)||!e?O.interpolation:{interpolation:{...O.interpolation,prefix:"#$?",suffix:"?$#"}},F={...O,context:r||O.context,count:t,...a,...A,defaultValue:C,ns:y};let T=_?b(_,F):C;T===_&&C&&(T=C);const P=U5e(S,T,g,i);let R=P||e,L=null;Q5e(P)&&(L=P,R=e);const M=$5e(R,L,T,g,v,F,w),U=n??v.defaultTransParent;return U?p.createElement(U,m,M):M}const V5e={type:"3rdParty",init(e){I5e(e.options.react),P5e(e)}},Bfe=p.createContext();class H5e{constructor(){this.usedNamespaces={}}addUsedNamespaces(t){t.forEach(n=>{this.usedNamespaces[n]||(this.usedNamespaces[n]=!0)})}getUsedNamespaces(){return Object.keys(this.usedNamespaces)}}function KA({children:e,count:t,parent:n,i18nKey:i,context:r,tOptions:s={},values:a,defaults:l,components:c,ns:u,i18n:d,t:f,shouldUnescape:h,...m}){var x;const{i18n:g,defaultNS:b}=p.useContext(Bfe)||{},v=d||g||n9(),y=f||(v==null?void 0:v.t.bind(v));return z5e({children:e,count:t,parent:n,i18nKey:i,context:r,tOptions:s,values:a,defaults:l,components:c,ns:u||(y==null?void 0:y.ns)||b||((x=v==null?void 0:v.options)==null?void 0:x.defaultNS),i18n:v,t:f,shouldUnescape:h,...m})}var Ufe={exports:{}},Qfe={};/** + */var tF=Symbol.for("react.transitional.element"),x5e=Symbol.for("react.portal"),w5e=Symbol.for("react.fragment"),O5e=Symbol.for("react.strict_mode"),S5e=Symbol.for("react.profiler"),k5e=Symbol.for("react.consumer"),E5e=Symbol.for("react.context"),C5e=Symbol.for("react.forward_ref"),T5e=Symbol.for("react.suspense"),A5e=Symbol.for("react.memo"),Ufe=Symbol.for("react.lazy"),_5e=Symbol.for("react.activity"),RV=Symbol.iterator;function N5e(e){return e===null||typeof e!="object"?null:(e=RV&&e[RV]||e["@@iterator"],typeof e=="function"?e:null)}var Qfe={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},zfe=Object.assign,Vfe={};function xx(e,t,n){this.props=e,this.context=t,this.refs=Vfe,this.updater=n||Qfe}xx.prototype.isReactComponent={};xx.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};xx.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function Hfe(){}Hfe.prototype=xx.prototype;function nF(e,t,n){this.props=e,this.context=t,this.refs=Vfe,this.updater=n||Qfe}var iF=nF.prototype=new Hfe;iF.constructor=nF;zfe(iF,xx.prototype);iF.isPureReactComponent=!0;var IV=Array.isArray;function t3(){}var Xr={H:null,A:null,T:null,S:null},qfe=Object.prototype.hasOwnProperty;function rF(e,t,n){var i=n.ref;return{$$typeof:tF,type:e,key:t,ref:i!==void 0?i:null,props:n}}function j5e(e,t){return rF(e.type,t,e.props)}function sF(e){return typeof e=="object"&&e!==null&&e.$$typeof===tF}function R5e(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(n){return t[n]})}var PV=/\/+/g;function BP(e,t){return typeof e=="object"&&e!==null&&e.key!=null?R5e(""+e.key):t.toString(36)}function I5e(e){switch(e.status){case"fulfilled":return e.value;case"rejected":throw e.reason;default:switch(typeof e.status=="string"?e.then(t3,t3):(e.status="pending",e.then(function(t){e.status==="pending"&&(e.status="fulfilled",e.value=t)},function(t){e.status==="pending"&&(e.status="rejected",e.reason=t)})),e.status){case"fulfilled":return e.value;case"rejected":throw e.reason}}throw e}function ty(e,t,n,i,r){var s=typeof e;(s==="undefined"||s==="boolean")&&(e=null);var a=!1;if(e===null)a=!0;else switch(s){case"bigint":case"string":case"number":a=!0;break;case"object":switch(e.$$typeof){case tF:case x5e:a=!0;break;case Ufe:return a=e._init,ty(a(e._payload),t,n,i,r)}}if(a)return r=r(e),a=i===""?"."+BP(e,0):i,IV(r)?(n="",a!=null&&(n=a.replace(PV,"$&/")+"/"),ty(r,t,n,"",function(u){return u})):r!=null&&(sF(r)&&(r=j5e(r,n+(r.key==null||e&&e.key===r.key?"":(""+r.key).replace(PV,"$&/")+"/")+a)),t.push(r)),1;a=0;var l=i===""?".":i+":";if(IV(e))for(var c=0;c<]+?)[\s/>]|([^\s=]+)=\s?("[^"]*"|'[^']*')/g;function MV(e){const t={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},n=e.match(/<\/?([^\s]+?)[/\s>]/);if(n&&(t.name=n[1],(M5e[n[1]]||e.charAt(e.length-2)==="/")&&(t.voidElement=!0),t.name.startsWith("!--"))){const s=e.indexOf("-->");return{type:"comment",comment:s!==-1?e.slice(4,s):""}}const i=new RegExp(L5e);let r=null;for(;r=i.exec(e),r!==null;)if(r[0].trim())if(r[1]){const s=r[1].trim();let a=[s,null];const l=s.indexOf("=");l>-1&&(a=[s.slice(0,l),s.slice(l+1)]),t.attrs[a[0]]=a[1],i.lastIndex--}else r[2]&&(t.attrs[r[2]]=r[3].trim().substring(1,r[3].length-1));return t}const RC=/|<[a-zA-Z0-9\-!/](?:"[^"]*"|'[^']*'|[^'">])*>/g,$5e=/<\/?([^\s]+?)[/\s>]/,F5e=/^\s*$/,B5e=/^(script|style)$/i,kw="\0",U5e=Object.create(null);function Wfe(e){e.forEach(function(t){if(t.type==="text"){t.content=t.content.split(kw).join("<");return}if(t.type==="comment"){t.comment=t.comment.split(kw).join("<");return}for(const n in t.attrs){const i=t.attrs[n];typeof i=="string"&&i.indexOf(kw)>-1&&(t.attrs[n]=i.split(kw).join("<"))}t.children.length&&Wfe(t.children)})}function Q5e(e,t){const n=t&&t.components||U5e,i=t&&t.allowedTags;let r=!1;if(i){const g=typeof i=="function"?i:function(x){return i.indexOf(x)>-1};let b="",v=0;RC.lastIndex=0;let y;for(;y=RC.exec(e);){const x=y[0];b+=e.slice(v,y.index);const O=x.match($5e);x.startsWith("",e}}function V5e(e){return e.reduce(function(t,n){return t+Kfe("",n)},"")}var H5e={parse:Q5e,stringify:V5e};const PA=(e,t,n,i)=>{var s,a,l,c;const r=[n,{code:t,...i||{}}];if((a=(s=e==null?void 0:e.services)==null?void 0:s.logger)!=null&&a.forward)return e.services.logger.forward(r,"warn","react-i18next::",!0);bl(r[0])&&(r[0]=`react-i18next:: ${r[0]}`),(c=(l=e==null?void 0:e.services)==null?void 0:l.logger)!=null&&c.warn?e.services.logger.warn(...r):console!=null&&console.warn&&console.warn(...r)},LV={},qy=(e,t,n,i)=>{bl(n)&&LV[n]||(bl(n)&&(LV[n]=new Date),PA(e,t,n,i))},Gfe=(e,t)=>()=>{if(e.isInitialized)t();else{const n=()=>{setTimeout(()=>{e.off("initialized",n)},0),t()};e.on("initialized",n)}},n3=(e,t,n)=>{e.loadNamespaces(t,Gfe(e,n))},$V=(e,t,n,i)=>{if(bl(n)&&(n=[n]),e.options.preload&&e.options.preload.indexOf(t)>-1)return n3(e,n,i);n.forEach(r=>{e.options.ns.indexOf(r)<0&&e.options.ns.push(r)}),e.loadLanguages(t,Gfe(e,i))},q5e=(e,t,n={})=>!t.languages||!t.languages.length?(qy(t,"NO_LANGUAGES","i18n.languages were undefined or empty",{languages:t.languages}),!0):t.hasLoadedNamespace(e,{lng:n.lng,precheck:(i,r)=>{if(n.bindI18n&&n.bindI18n.indexOf("languageChanging")>-1&&i.services.backendConnector.backend&&i.isLanguageChangingTo&&!r(i.isLanguageChangingTo,e))return!1}}),bl=e=>typeof e=="string",Vf=e=>typeof e=="object"&&e!==null,W5e=/&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g,K5e={"&":"&","&":"&","<":"<","<":"<",">":">",">":">","'":"'","'":"'",""":'"',""":'"'," ":" "," ":" ","©":"©","©":"©","®":"®","®":"®","…":"…","…":"…","/":"/","/":"/"},G5e=e=>K5e[e],Xfe=e=>e.replace(W5e,G5e);let i3={bindI18n:"languageChanged",bindI18nStore:"",transEmptyNodeValue:"",transSupportBasicHtmlNodes:!0,transWrapTextNodes:"",transKeepBasicHtmlNodesFor:["br","strong","i","p"],useSuspense:!0,unescape:Xfe,transDefaultProps:void 0};const X5e=(e={})=>{i3={...i3,...e}},aF=()=>i3;let Yfe;const Y5e=e=>{Yfe=e},oF=()=>Yfe,DA=(e,t)=>{var i;if(!e)return!1;const n=((i=e.props)==null?void 0:i.children)??e.children;return t?n.length>0:!!n},Ew=e=>{var n,i;if(!e)return[];const t=((n=e.props)==null?void 0:n.children)??e.children;return(i=e.props)!=null&&i.i18nIsDynamicList?_p(t):t},Z5e=e=>Array.isArray(e)&&e.every(p.isValidElement),_p=e=>Array.isArray(e)?e:[e],J5e=(e,t)=>{const n={...t};return n.props={...t.props,...e.props},n},eLe=e=>{const t={};if(!e)return t;const n=i=>{_p(i).forEach(s=>{bl(s)||(DA(s)?n(Ew(s)):Vf(s)&&!p.isValidElement(s)&&Object.assign(t,s))})};return n(e),t},r3=(e,t,n,i)=>{if(!e)return"";let r="";const s=_p(e),a=t!=null&&t.transSupportBasicHtmlNodes?t.transKeepBasicHtmlNodesFor??[]:[];return s.forEach((l,c)=>{if(bl(l)){r+=`${l}`;return}if(p.isValidElement(l)){const{props:u,type:d}=l,f=Object.keys(u).length,h=a.indexOf(d)>-1,m=u.children;if(!m&&h&&!f){r+=`<${d}/>`;return}if(!m&&(!h||f)||u.i18nIsDynamicList){r+=`<${c}>`;return}if(h&&f<=1){const b=bl(m)?m:r3(m,t,n,i);r+=`<${d}>${b}`;return}const g=r3(m,t,n,i);r+=`<${c}>${g}`;return}if(l===null){PA(n,"TRANS_NULL_VALUE","Passed in a null value as child",{i18nKey:i});return}if(Vf(l)){const{format:u,...d}=l,f=Object.keys(d);if(f.length===1){const h=u?`${f[0]}, ${u}`:f[0];r+=`{{${h}}}`;return}PA(n,"TRANS_INVALID_OBJ","Invalid child - Object should only have keys {{ value, format }} (format is optional).",{i18nKey:i,child:l});return}PA(n,"TRANS_INVALID_VAR","Passed in a variable like {number} - pass variables for interpolation as full objects like {{number}}.",{i18nKey:i,child:l})}),r},tLe=(e,t,n,i,r,s,a)=>{if(n==="")return[];const l=r.transKeepBasicHtmlNodesFor||[],c=n&&new RegExp(l.map(O=>`<${O}`).join("|")).test(n);if(!e&&!t&&!c&&!a)return[n];const u=t??{},d=O=>{_p(O).forEach(k=>{bl(k)||(DA(k)?d(Ew(k)):Vf(k)&&!p.isValidElement(k)&&Object.assign(u,k))})};d(e);const f=Object.keys(u),h=O=>/^\d+$/.test(O)||l.indexOf(O)>-1||f.indexOf(O)>-1,m=H5e.parse(`<0>${n}`,{allowedTags:h}),g={...u,...s},b=(O,w,k)=>{var C;const S=Ew(O),E=y(S,w.children,k);return Z5e(S)&&E.length===0||(C=O.props)!=null&&C.i18nIsDynamicList?S:E},v=(O,w,k,S,E)=>{O.dummy?(O.children=w,k.push(p.cloneElement(O,{key:S},E?void 0:w))):k.push(...p.Children.map([O],C=>{var T;if(C.type===p.Fragment||((T=C.props)==null?void 0:T.i18nIsDynamicList)!==void 0){const j={key:S};return C&&C.props&&Object.keys(C.props).forEach(A=>{A==="children"||A==="i18nIsDynamicList"||(j[A]=C.props[A])}),p.createElement(C.type,j,E?null:w)}const N={key:S};return C&&C.props&&Object.keys(C.props).forEach(j=>{j==="ref"||j==="children"||(N[j]=C.props[j])}),p.cloneElement(C,N,E?null:w)}))},y=(O,w,k)=>{const S=_p(O),E=_p(w),C={};return E.reduce((N,T,j)=>{var L,_;const A=((_=(L=T.children)==null?void 0:L[0])==null?void 0:_.content)&&i.services.interpolator.interpolate(T.children[0].content,g,i.language);if(T.type==="tag"){let P=S[parseInt(T.name,10)];!P&&t&&(P=t[T.name]),k.length===1&&!P&&(P=k[0][T.name]),P||(P={});const I={...T.attrs};a&&Object.keys(I).forEach(K=>{const Q=I[K];bl(Q)&&(I[K]=Xfe(Q))});const $=Object.keys(I).length!==0?J5e({props:I},P):P,M=p.isValidElement($),B=M&&DA(T,!0)&&!T.voidElement,R=c&&Vf($)&&$.dummy&&!M,V=Vf(t)&&Object.hasOwnProperty.call(t,T.name);if(bl($)){const K=i.services.interpolator.interpolate($,g,i.language);N.push(K)}else if(DA($)||B){const K=b($,T,k);v($,K,N,j)}else if(R){const K=y(S,T.children,k);v($,K,N,j)}else if(Number.isNaN(parseFloat(T.name)))if(V){const K=b($,T,k);v($,K,N,j,T.voidElement)}else if(r.transSupportBasicHtmlNodes&&l.indexOf(T.name)>-1)if(T.voidElement)N.push(p.createElement(T.name,{key:`${T.name}-${j}`}));else{const K=C[T.name]||0;C[T.name]=K+1;let Q,q=0;for(let ae=0;ae`);else{const K=y(S,T.children,k);N.push(`<${T.name}>${K}`)}else if(Vf($)&&!M){const K=T.children[0]?A:null;K&&N.push(K)}else v($,A,N,j,T.children.length!==1||!A)}else if(T.type==="text"){const P=r.transWrapTextNodes,I=typeof r.unescape=="function"?r.unescape:aF().unescape,$=a?I(i.services.interpolator.interpolate(T.content,g,i.language)):i.services.interpolator.interpolate(T.content,g,i.language);P?N.push(p.createElement(P,{key:`${T.name}-${j}`},$)):N.push($)}return N},[])},x=y([{dummy:!0,children:e||[]}],m,_p(e||[]));return Ew(x[0])},Zfe=(e,t,n)=>{const i=e.key||t,r=p.cloneElement(e,{key:i});if(!r.props||!r.props.children||n.indexOf(`${t}/>`)<0&&n.indexOf(`${t} />`)<0)return r;function s(){return p.createElement(p.Fragment,null,r)}return p.createElement(s,{key:i})},nLe=(e,t)=>e.map((n,i)=>Zfe(n,i,t)),iLe=(e,t)=>{const n={};return Object.keys(e).forEach(i=>{Object.assign(n,{[i]:Zfe(e[i],i,t)})}),n},rLe=(e,t,n,i)=>e?Array.isArray(e)?nLe(e,t):Vf(e)?iLe(e,t):(qy(n,"TRANS_INVALID_COMPONENTS",' "components" prop expects an object or array',{i18nKey:i}),null):null,sLe=e=>!Vf(e)||Array.isArray(e)?!1:Object.keys(e).reduce((t,n)=>t&&Number.isNaN(Number.parseFloat(n)),!0);function aLe({children:e,count:t,parent:n,i18nKey:i,context:r,tOptions:s={},values:a,defaults:l,components:c,ns:u,i18n:d,t:f,shouldUnescape:h,...m}){var R,V,K,Q,q,U;const g=d||oF();if(!g)return qy(g,"NO_I18NEXT_INSTANCE","Trans: You need to pass in an i18next instance using initReactI18next or by passing it via props or context. In monorepo setups, make sure there is only one instance of react-i18next.",{i18nKey:i}),e;const b=f||g.t.bind(g)||(G=>G),v={...aF(),...(R=g.options)==null?void 0:R.react};let y=u||b.ns||((V=g.options)==null?void 0:V.defaultNS);y=bl(y)?[y]:y||["translation"];const{transDefaultProps:x}=v,O=x!=null&&x.tOptions?{...x.tOptions,...s}:s,w=h??(x==null?void 0:x.shouldUnescape),k=x!=null&&x.values?{...x.values,...a}:a,S=x!=null&&x.components?{...x.components,...c}:c,E=r3(e,v,g,i),C=l||(O==null?void 0:O.defaultValue)||E||v.transEmptyNodeValue||(typeof i=="function"?eb(i):i),{hashTransKey:N}=v,T=i||(N?N(E||C):E||C);(Q=(K=g.options)==null?void 0:K.interpolation)!=null&&Q.defaultVariables?a=k&&Object.keys(k).length>0?{...k,...g.options.interpolation.defaultVariables}:{...g.options.interpolation.defaultVariables}:a=k;const j=eLe(e);j&&typeof j.count=="number"&&t===void 0&&(t=j.count);const A=a||t!==void 0&&!((U=(q=g.options)==null?void 0:q.interpolation)!=null&&U.alwaysFormat)||!e?O.interpolation:{interpolation:{...O.interpolation,prefix:"#$?",suffix:"?$#"}},L={...O,context:r||O.context,count:t,...a,...A,defaultValue:C,ns:y};let _=T?b(T,L):C;_===T&&C&&(_=C);const P=rLe(S,_,g,i);let I=P||e,$=null;sLe(P)&&($=P,I=e);const M=tLe(I,$,_,g,v,L,w),B=n??v.defaultTransParent;return B?p.createElement(B,m,M):M}const oLe={type:"3rdParty",init(e){X5e(e.options.react),Y5e(e)}},Jfe=p.createContext();class lLe{constructor(){this.usedNamespaces={}}addUsedNamespaces(t){t.forEach(n=>{this.usedNamespaces[n]||(this.usedNamespaces[n]=!0)})}getUsedNamespaces(){return Object.keys(this.usedNamespaces)}}function e_({children:e,count:t,parent:n,i18nKey:i,context:r,tOptions:s={},values:a,defaults:l,components:c,ns:u,i18n:d,t:f,shouldUnescape:h,...m}){var x;const{i18n:g,defaultNS:b}=p.useContext(Jfe)||{},v=d||g||oF(),y=f||(v==null?void 0:v.t.bind(v));return aLe({children:e,count:t,parent:n,i18nKey:i,context:r,tOptions:s,values:a,defaults:l,components:c,ns:u||(y==null?void 0:y.ns)||b||((x=v==null?void 0:v.options)==null?void 0:x.defaultNS),i18n:v,t:f,shouldUnescape:h,...m})}var ehe={exports:{}},the={};/** * @license React * use-sync-external-store-shim.production.js * @@ -59,7 +59,7 @@ Studio:{{studioUrl}} * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var Ov=p;function q5e(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var W5e=typeof Object.is=="function"?Object.is:q5e,G5e=Ov.useState,K5e=Ov.useEffect,X5e=Ov.useLayoutEffect,Y5e=Ov.useDebugValue;function Z5e(e,t){var n=t(),i=G5e({inst:{value:n,getSnapshot:t}}),r=i[0].inst,s=i[1];return X5e(function(){r.value=n,r.getSnapshot=t,MP(r)&&s({inst:r})},[e,n,t]),K5e(function(){return MP(r)&&s({inst:r}),e(function(){MP(r)&&s({inst:r})})},[e]),Y5e(n),n}function MP(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!W5e(e,n)}catch{return!0}}function J5e(e,t){return t()}var eLe=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?J5e:Z5e;Qfe.useSyncExternalStore=Ov.useSyncExternalStore!==void 0?Ov.useSyncExternalStore:eLe;Ufe.exports=Qfe;var zfe=Ufe.exports;const tLe=(e,t)=>{if(ml(t))return t;if(Hf(t)&&ml(t.defaultValue))return t.defaultValue;if(typeof e=="function")return"";if(Array.isArray(e)){const n=e[e.length-1];return typeof n=="function"?"":n}return e},nLe={t:tLe,ready:!1},iLe=()=>()=>{},Te=(e,t={})=>{var N,_,j;const{i18n:n}=t,{i18n:i,defaultNS:r}=p.useContext(Bfe)||{},s=n||i||n9();s&&!s.reportNamespaces&&(s.reportNamespaces=new H5e),s||Uy(s,"NO_I18NEXT_INSTANCE","useTranslation: You will need to pass in an i18next instance by using initReactI18next or by passing it via props or context. In monorepo setups, make sure there is only one instance of react-i18next.");const a=p.useMemo(()=>{var A;return{...t9(),...(A=s==null?void 0:s.options)==null?void 0:A.react,...t}},[s,t]),{useSuspense:l,keyPrefix:c}=a,u=e||r||((N=s==null?void 0:s.options)==null?void 0:N.defaultNS),d=ml(u)?[u]:u||["translation"],f=p.useMemo(()=>d,d);(j=(_=s==null?void 0:s.reportNamespaces)==null?void 0:_.addUsedNamespaces)==null||j.call(_,f);const h=p.useRef(0),m=p.useCallback(A=>{if(!s)return iLe;const{bindI18n:F,bindI18nStore:T}=a,P=()=>{h.current+=1,A()};return F&&s.on(F,P),T&&s.store.on(T,P),()=>{F&&F.split(" ").forEach(R=>s.off(R,P)),T&&T.split(" ").forEach(R=>s.store.off(R,P))}},[s,a]),g=p.useRef(),b=p.useCallback(()=>{if(!s)return nLe;const A=!!(s.isInitialized||s.initializedStoreOnce)&&f.every(M=>_5e(M,s,a)),F=t.lng||s.language,T=h.current,P=g.current;if(P&&P.ready===A&&P.lng===F&&P.keyPrefix===c&&P.revision===T)return P;const L={t:s.getFixedT(F,a.nsMode==="fallback"?f:f[0],c,{scopeNs:f}),ready:A,lng:F,keyPrefix:c,revision:T};return g.current=L,L},[s,f,c,a,t.lng]),[v,y]=p.useState(0),{t:x,ready:O}=zfe.useSyncExternalStore(m,b,b);p.useEffect(()=>{if(s&&!O&&!l){const A=()=>y(F=>F+1);t.lng?_V(s,t.lng,f,A):YL(s,f,A)}},[s,t.lng,f,O,l,v]);const w=s||{},k=p.useRef(null),S=p.useRef(),E=A=>{const F=Object.getOwnPropertyDescriptors(A);F.__original&&delete F.__original;const T=Object.create(Object.getPrototypeOf(A),F);if(!Object.prototype.hasOwnProperty.call(T,"__original"))try{Object.defineProperty(T,"__original",{value:A,writable:!1,enumerable:!1,configurable:!1})}catch{}return T},C=p.useMemo(()=>{const A=w,F=A==null?void 0:A.language;let T=A;A&&(k.current&&k.current.__original===A?S.current!==F?(T=E(A),k.current=T,S.current=F):T=k.current:(T=E(A),k.current=T,S.current=F));const P=!O&&!l?(...L)=>(Uy(s,"USE_T_BEFORE_READY","useTranslation: t was called before ready. When using useSuspense: false, make sure to check the ready flag before using t."),x(...L)):x,R=[P,T,O];return R.t=P,R.i18n=T,R.ready=O,R},[x,w,O,w.resolvedLanguage,w.language,w.languages]);if(s&&l&&!O){let A=!1;try{A=!1}catch{}throw A&&Uy(s,"SUSPENDED_WHILE_LOADING","useTranslation: suspended while translations are loading (useSuspense is true by default). Add a boundary above this component, or set react.useSuspense: false in the i18next init options. https://react.i18next.com/latest/usetranslation-hook"),new Promise(F=>{const T=()=>F();t.lng?_V(s,t.lng,f,T):YL(s,f,T)})}return C},Vfe=MMe(),an=Ho.createInstance();an.use(V5e).init({resources:{"en-US":{adk:ure,app:Cre,conversation:nse},"zh-CN":{adk:Tle,app:zle,conversation:vce}},lng:Vfe,fallbackLng:xj,supportedLngs:[...K8],defaultNS:"common",interpolation:{escapeValue:!1},initAsync:!1});Sfe(Vfe);an.on("languageChanged",e=>{const t=wj(e)??xj;Sfe(t)});const rLe=Object.assign({"./resources/en-US/adk.json":LDe,"./resources/en-US/app.json":$De,"./resources/en-US/automations.json":FDe,"./resources/en-US/common.json":UDe,"./resources/en-US/conversation.json":QDe,"./resources/en-US/create.json":zDe,"./resources/en-US/cronjobs.json":HDe,"./resources/en-US/feedback.json":WDe,"./resources/en-US/migrations.json":KDe,"./resources/en-US/newChat.json":XDe,"./resources/en-US/sandbox.json":YDe,"./resources/en-US/shell.json":JDe,"./resources/en-US/sidebar.json":tMe,"./resources/en-US/skills.json":nMe,"./resources/en-US/ui.json":rMe,"./resources/en-US/websiteIntegration.json":aMe,"./resources/en-US/workspaceTools.json":oMe,"./resources/zh-CN/adk.json":lMe,"./resources/zh-CN/app.json":cMe,"./resources/zh-CN/automations.json":uMe,"./resources/zh-CN/common.json":fMe,"./resources/zh-CN/conversation.json":hMe,"./resources/zh-CN/create.json":pMe,"./resources/zh-CN/cronjobs.json":gMe,"./resources/zh-CN/feedback.json":yMe,"./resources/zh-CN/migrations.json":xMe,"./resources/zh-CN/newChat.json":wMe,"./resources/zh-CN/sandbox.json":OMe,"./resources/zh-CN/shell.json":kMe,"./resources/zh-CN/sidebar.json":CMe,"./resources/zh-CN/skills.json":TMe,"./resources/zh-CN/ui.json":_Me,"./resources/zh-CN/websiteIntegration.json":jMe,"./resources/zh-CN/workspaceTools.json":RMe});function sLe(){const e={};for(const[t,n]of Object.entries(rLe)){const i=t.match(/\/resources\/([^/]+)\/([^/]+)\.json$/);if(!i)continue;const[,r,s]=i;e[r]??(e[r]={}),e[r][s]=n.default}return e}for(const[e,t]of Object.entries(sLe()))for(const[n,i]of Object.entries(t??{}))an.addResourceBundle(e,n,i,!0,!0);async function aLe(e){LMe(e),await an.changeLanguage(e)}var Hfe={exports:{}},Sj={},qfe={exports:{}},Wfe={};/** + */var Tv=p;function cLe(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var uLe=typeof Object.is=="function"?Object.is:cLe,dLe=Tv.useState,fLe=Tv.useEffect,hLe=Tv.useLayoutEffect,pLe=Tv.useDebugValue;function mLe(e,t){var n=t(),i=dLe({inst:{value:n,getSnapshot:t}}),r=i[0].inst,s=i[1];return hLe(function(){r.value=n,r.getSnapshot=t,UP(r)&&s({inst:r})},[e,n,t]),fLe(function(){return UP(r)&&s({inst:r}),e(function(){UP(r)&&s({inst:r})})},[e]),pLe(n),n}function UP(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!uLe(e,n)}catch{return!0}}function gLe(e,t){return t()}var bLe=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?gLe:mLe;the.useSyncExternalStore=Tv.useSyncExternalStore!==void 0?Tv.useSyncExternalStore:bLe;ehe.exports=the;var nhe=ehe.exports;const yLe=(e,t)=>{if(bl(t))return t;if(Vf(t)&&bl(t.defaultValue))return t.defaultValue;if(typeof e=="function")return"";if(Array.isArray(e)){const n=e[e.length-1];return typeof n=="function"?"":n}return e},vLe={t:yLe,ready:!1},xLe=()=>()=>{},Ae=(e,t={})=>{var N,T,j;const{i18n:n}=t,{i18n:i,defaultNS:r}=p.useContext(Jfe)||{},s=n||i||oF();s&&!s.reportNamespaces&&(s.reportNamespaces=new lLe),s||qy(s,"NO_I18NEXT_INSTANCE","useTranslation: You will need to pass in an i18next instance by using initReactI18next or by passing it via props or context. In monorepo setups, make sure there is only one instance of react-i18next.");const a=p.useMemo(()=>{var A;return{...aF(),...(A=s==null?void 0:s.options)==null?void 0:A.react,...t}},[s,t]),{useSuspense:l,keyPrefix:c}=a,u=e||r||((N=s==null?void 0:s.options)==null?void 0:N.defaultNS),d=bl(u)?[u]:u||["translation"],f=p.useMemo(()=>d,d);(j=(T=s==null?void 0:s.reportNamespaces)==null?void 0:T.addUsedNamespaces)==null||j.call(T,f);const h=p.useRef(0),m=p.useCallback(A=>{if(!s)return xLe;const{bindI18n:L,bindI18nStore:_}=a,P=()=>{h.current+=1,A()};return L&&s.on(L,P),_&&s.store.on(_,P),()=>{L&&L.split(" ").forEach(I=>s.off(I,P)),_&&_.split(" ").forEach(I=>s.store.off(I,P))}},[s,a]),g=p.useRef(),b=p.useCallback(()=>{if(!s)return vLe;const A=!!(s.isInitialized||s.initializedStoreOnce)&&f.every(M=>q5e(M,s,a)),L=t.lng||s.language,_=h.current,P=g.current;if(P&&P.ready===A&&P.lng===L&&P.keyPrefix===c&&P.revision===_)return P;const $={t:s.getFixedT(L,a.nsMode==="fallback"?f:f[0],c,{scopeNs:f}),ready:A,lng:L,keyPrefix:c,revision:_};return g.current=$,$},[s,f,c,a,t.lng]),[v,y]=p.useState(0),{t:x,ready:O}=nhe.useSyncExternalStore(m,b,b);p.useEffect(()=>{if(s&&!O&&!l){const A=()=>y(L=>L+1);t.lng?$V(s,t.lng,f,A):n3(s,f,A)}},[s,t.lng,f,O,l,v]);const w=s||{},k=p.useRef(null),S=p.useRef(),E=A=>{const L=Object.getOwnPropertyDescriptors(A);L.__original&&delete L.__original;const _=Object.create(Object.getPrototypeOf(A),L);if(!Object.prototype.hasOwnProperty.call(_,"__original"))try{Object.defineProperty(_,"__original",{value:A,writable:!1,enumerable:!1,configurable:!1})}catch{}return _},C=p.useMemo(()=>{const A=w,L=A==null?void 0:A.language;let _=A;A&&(k.current&&k.current.__original===A?S.current!==L?(_=E(A),k.current=_,S.current=L):_=k.current:(_=E(A),k.current=_,S.current=L));const P=!O&&!l?(...$)=>(qy(s,"USE_T_BEFORE_READY","useTranslation: t was called before ready. When using useSuspense: false, make sure to check the ready flag before using t."),x(...$)):x,I=[P,_,O];return I.t=P,I.i18n=_,I.ready=O,I},[x,w,O,w.resolvedLanguage,w.language,w.languages]);if(s&&l&&!O){let A=!1;try{A=!1}catch{}throw A&&qy(s,"SUSPENDED_WHILE_LOADING","useTranslation: suspended while translations are loading (useSuspense is true by default). Add a boundary above this component, or set react.useSuspense: false in the i18next init options. https://react.i18next.com/latest/usetranslation-hook"),new Promise(L=>{const _=()=>L();t.lng?$V(s,t.lng,f,_):n3(s,f,_)})}return C},ihe=JMe(),on=Go.createInstance();on.use(oLe).init({resources:{"en-US":{adk:Sre,app:Fre,conversation:mse},"zh-CN":{adk:Ble,app:nce,conversation:Rce}},lng:ihe,fallbackLng:Cj,supportedLngs:[...eF],defaultNS:"common",interpolation:{escapeValue:!1},initAsync:!1});Mfe(ihe);on.on("languageChanged",e=>{const t=Tj(e)??Cj;Mfe(t)});const wLe=Object.assign({"./resources/en-US/adk.json":eMe,"./resources/en-US/app.json":tMe,"./resources/en-US/automations.json":nMe,"./resources/en-US/common.json":rMe,"./resources/en-US/conversation.json":sMe,"./resources/en-US/create.json":aMe,"./resources/en-US/cronjobs.json":lMe,"./resources/en-US/feedback.json":uMe,"./resources/en-US/migrations.json":fMe,"./resources/en-US/newChat.json":hMe,"./resources/en-US/sandbox.json":pMe,"./resources/en-US/shell.json":gMe,"./resources/en-US/sidebar.json":yMe,"./resources/en-US/skills.json":vMe,"./resources/en-US/ui.json":wMe,"./resources/en-US/websiteIntegration.json":SMe,"./resources/en-US/workspaceTools.json":kMe,"./resources/zh-CN/adk.json":EMe,"./resources/zh-CN/app.json":CMe,"./resources/zh-CN/automations.json":TMe,"./resources/zh-CN/common.json":_Me,"./resources/zh-CN/conversation.json":NMe,"./resources/zh-CN/create.json":jMe,"./resources/zh-CN/cronjobs.json":IMe,"./resources/zh-CN/feedback.json":DMe,"./resources/zh-CN/migrations.json":LMe,"./resources/zh-CN/newChat.json":$Me,"./resources/zh-CN/sandbox.json":FMe,"./resources/zh-CN/shell.json":UMe,"./resources/zh-CN/sidebar.json":zMe,"./resources/zh-CN/skills.json":VMe,"./resources/zh-CN/ui.json":qMe,"./resources/zh-CN/websiteIntegration.json":KMe,"./resources/zh-CN/workspaceTools.json":GMe});function OLe(){const e={};for(const[t,n]of Object.entries(wLe)){const i=t.match(/\/resources\/([^/]+)\/([^/]+)\.json$/);if(!i)continue;const[,r,s]=i;e[r]??(e[r]={}),e[r][s]=n.default}return e}for(const[e,t]of Object.entries(OLe()))for(const[n,i]of Object.entries(t??{}))on.addResourceBundle(e,n,i,!0,!0);async function SLe(e){e5e(e),await on.changeLanguage(e)}var rhe={exports:{}},_j={},she={exports:{}},ahe={};/** * @license React * scheduler.production.js * @@ -67,7 +67,7 @@ Studio:{{studioUrl}} * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */(function(e){function t(R,L){var M=R.length;R.push(L);e:for(;0>>1,I=R[U];if(0>>1;Ur(Q,M))qr(B,Q)?(R[U]=B,R[q]=M,U=q):(R[U]=Q,R[K]=M,U=K);else if(qr(B,M))R[U]=B,R[q]=M,U=q;else break e}}return L}function r(R,L){var M=R.sortIndex-L.sortIndex;return M!==0?M:R.id-L.id}if(e.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var s=performance;e.unstable_now=function(){return s.now()}}else{var a=Date,l=a.now();e.unstable_now=function(){return a.now()-l}}var c=[],u=[],d=1,f=null,h=3,m=!1,g=!1,b=!1,v=!1,y=typeof setTimeout=="function"?setTimeout:null,x=typeof clearTimeout=="function"?clearTimeout:null,O=typeof setImmediate<"u"?setImmediate:null;function w(R){for(var L=n(u);L!==null;){if(L.callback===null)i(u);else if(L.startTime<=R)i(u),L.sortIndex=L.expirationTime,t(c,L);else break;L=n(u)}}function k(R){if(b=!1,w(R),!g)if(n(c)!==null)g=!0,S||(S=!0,A());else{var L=n(u);L!==null&&P(k,L.startTime-R)}}var S=!1,E=-1,C=5,N=-1;function _(){return v?!0:!(e.unstable_now()-NR&&_());){var U=f.callback;if(typeof U=="function"){f.callback=null,h=f.priorityLevel;var I=U(f.expirationTime<=R);if(R=e.unstable_now(),typeof I=="function"){f.callback=I,w(R),L=!0;break t}f===n(c)&&i(c),w(R)}else i(c);f=n(c)}if(f!==null)L=!0;else{var H=n(u);H!==null&&P(k,H.startTime-R),L=!1}}break e}finally{f=null,h=M,m=!1}L=void 0}}finally{L?A():S=!1}}}var A;if(typeof O=="function")A=function(){O(j)};else if(typeof MessageChannel<"u"){var F=new MessageChannel,T=F.port2;F.port1.onmessage=j,A=function(){T.postMessage(null)}}else A=function(){y(j,0)};function P(R,L){E=y(function(){R(e.unstable_now())},L)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(R){R.callback=null},e.unstable_forceFrameRate=function(R){0>R||125U?(R.sortIndex=M,t(u,R),n(c)===null&&R===n(u)&&(b?(x(E),E=-1):b=!0,P(k,M-U))):(R.sortIndex=I,t(c,R),g||m||(g=!0,S||(S=!0,A()))),R},e.unstable_shouldYield=_,e.unstable_wrapCallback=function(R){var L=h;return function(){var M=h;h=L;try{return R.apply(this,arguments)}finally{h=M}}}})(Wfe);qfe.exports=Wfe;var oLe=qfe.exports,Gfe={exports:{}},qo={};/** + */(function(e){function t(I,$){var M=I.length;I.push($);e:for(;0>>1,R=I[B];if(0>>1;Br(Q,M))qr(U,Q)?(I[B]=U,I[q]=M,B=q):(I[B]=Q,I[K]=M,B=K);else if(qr(U,M))I[B]=U,I[q]=M,B=q;else break e}}return $}function r(I,$){var M=I.sortIndex-$.sortIndex;return M!==0?M:I.id-$.id}if(e.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var s=performance;e.unstable_now=function(){return s.now()}}else{var a=Date,l=a.now();e.unstable_now=function(){return a.now()-l}}var c=[],u=[],d=1,f=null,h=3,m=!1,g=!1,b=!1,v=!1,y=typeof setTimeout=="function"?setTimeout:null,x=typeof clearTimeout=="function"?clearTimeout:null,O=typeof setImmediate<"u"?setImmediate:null;function w(I){for(var $=n(u);$!==null;){if($.callback===null)i(u);else if($.startTime<=I)i(u),$.sortIndex=$.expirationTime,t(c,$);else break;$=n(u)}}function k(I){if(b=!1,w(I),!g)if(n(c)!==null)g=!0,S||(S=!0,A());else{var $=n(u);$!==null&&P(k,$.startTime-I)}}var S=!1,E=-1,C=5,N=-1;function T(){return v?!0:!(e.unstable_now()-NI&&T());){var B=f.callback;if(typeof B=="function"){f.callback=null,h=f.priorityLevel;var R=B(f.expirationTime<=I);if(I=e.unstable_now(),typeof R=="function"){f.callback=R,w(I),$=!0;break t}f===n(c)&&i(c),w(I)}else i(c);f=n(c)}if(f!==null)$=!0;else{var V=n(u);V!==null&&P(k,V.startTime-I),$=!1}}break e}finally{f=null,h=M,m=!1}$=void 0}}finally{$?A():S=!1}}}var A;if(typeof O=="function")A=function(){O(j)};else if(typeof MessageChannel<"u"){var L=new MessageChannel,_=L.port2;L.port1.onmessage=j,A=function(){_.postMessage(null)}}else A=function(){y(j,0)};function P(I,$){E=y(function(){I(e.unstable_now())},$)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(I){I.callback=null},e.unstable_forceFrameRate=function(I){0>I||125B?(I.sortIndex=M,t(u,I),n(c)===null&&I===n(u)&&(b?(x(E),E=-1):b=!0,P(k,M-B))):(I.sortIndex=R,t(c,I),g||m||(g=!0,S||(S=!0,A()))),I},e.unstable_shouldYield=T,e.unstable_wrapCallback=function(I){var $=h;return function(){var M=h;h=$;try{return I.apply(this,arguments)}finally{h=M}}}})(ahe);she.exports=ahe;var kLe=she.exports,ohe={exports:{}},Xo={};/** * @license React * react-dom.production.js * @@ -75,7 +75,7 @@ Studio:{{studioUrl}} * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var lLe=p;function Kfe(e){var t="https://react.dev/errors/"+e;if(1"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(Xfe)}catch(e){console.error(e)}}Xfe(),Gfe.exports=qo;var Li=Gfe.exports;/** + */var ELe=p;function lhe(e){var t="https://react.dev/errors/"+e;if(1"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(che)}catch(e){console.error(e)}}che(),ohe.exports=Xo;var Fi=ohe.exports;/** * @license React * react-dom-client.production.js * @@ -83,15 +83,15 @@ Studio:{{studioUrl}} * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var ya=oLe,Yfe=p,dLe=Li;function dt(e){var t="https://react.dev/errors/"+e;if(1fy||(e.current=s3[fy],s3[fy]=null,fy--)}function Dr(e,t){fy++,s3[fy]=e.current,e.current=t}var Rd=Hd(null),KO=Hd(null),Hp=Hd(null),XA=Hd(null);function YA(e,t){switch(Dr(Hp,t),Dr(KO,e),Dr(Rd,null),t.nodeType){case 9:case 11:e=(e=t.documentElement)&&(e=e.namespaceURI)?LH(e):0;break;default:if(e=t.tagName,t=t.namespaceURI)t=LH(t),e=Sme(t,e);else switch(e){case"svg":e=1;break;case"math":e=2;break;default:e=0}}Fa(Rd),Dr(Rd,e)}function Sv(){Fa(Rd),Fa(KO),Fa(Hp)}function a3(e){e.memoizedState!==null&&Dr(XA,e);var t=Rd.current,n=Sme(t,e.type);t!==n&&(Dr(KO,e),Dr(Rd,n))}function ZA(e){KO.current===e&&(Fa(Rd),Fa(KO)),XA.current===e&&(Fa(XA),aS._currentValue=Xg)}var LP,RV;function hg(e){if(LP===void 0)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);LP=t&&t[1]||"",RV=-1by||(e.current=u3[by],u3[by]=null,by--)}function Ur(e,t){by++,u3[by]=e.current,e.current=t}var Pd=Wd(null),JO=Wd(null),Gp=Wd(null),t_=Wd(null);function n_(e,t){switch(Ur(Gp,t),Ur(JO,e),Ur(Pd,null),t.nodeType){case 9:case 11:e=(e=t.documentElement)&&(e=e.namespaceURI)?qH(e):0;break;default:if(e=t.tagName,t=t.namespaceURI)t=qH(t),e=Mme(t,e);else switch(e){case"svg":e=1;break;case"math":e=2;break;default:e=0}}La(Pd),Ur(Pd,e)}function Av(){La(Pd),La(JO),La(Gp)}function d3(e){e.memoizedState!==null&&Ur(t_,e);var t=Pd.current,n=Mme(t,e.type);t!==n&&(Ur(JO,e),Ur(Pd,n))}function i_(e){JO.current===e&&(La(Pd),La(JO)),t_.current===e&&(La(t_),uS._currentValue=tb)}var QP,UV;function yg(e){if(QP===void 0)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);QP=t&&t[1]||"",UV=-1)":-1r||c[i]!==u[r]){var d=` -`+c[i].replace(" at new "," at ");return e.displayName&&d.includes("")&&(d=d.replace("",e.displayName)),d}while(1<=i&&0<=r);break}}}finally{$P=!1,Error.prepareStackTrace=n}return(n=e?e.displayName||e.name:"")?hg(n):""}function gLe(e,t){switch(e.tag){case 26:case 27:case 5:return hg(e.type);case 16:return hg("Lazy");case 13:return e.child!==t&&t!==null?hg("Suspense Fallback"):hg("Suspense");case 19:return hg("SuspenseList");case 0:case 15:return FP(e.type,!1);case 11:return FP(e.type.render,!1);case 1:return FP(e.type,!0);case 31:return hg("Activity");default:return""}}function IV(e){try{var t="",n=null;do t+=gLe(e,n),n=e,e=e.return;while(e);return t}catch(i){return` +`+c[i].replace(" at new "," at ");return e.displayName&&d.includes("")&&(d=d.replace("",e.displayName)),d}while(1<=i&&0<=r);break}}}finally{zP=!1,Error.prepareStackTrace=n}return(n=e?e.displayName||e.name:"")?yg(n):""}function ILe(e,t){switch(e.tag){case 26:case 27:case 5:return yg(e.type);case 16:return yg("Lazy");case 13:return e.child!==t&&t!==null?yg("Suspense Fallback"):yg("Suspense");case 19:return yg("SuspenseList");case 0:case 15:return VP(e.type,!1);case 11:return VP(e.type.render,!1);case 1:return VP(e.type,!0);case 31:return yg("Activity");default:return""}}function QV(e){try{var t="",n=null;do t+=ILe(e,n),n=e,e=e.return;while(e);return t}catch(i){return` Error generating stack: `+i.message+` -`+i.stack}}var o3=Object.prototype.hasOwnProperty,s9=ya.unstable_scheduleCallback,BP=ya.unstable_cancelCallback,bLe=ya.unstable_shouldYield,yLe=ya.unstable_requestPaint,nc=ya.unstable_now,vLe=ya.unstable_getCurrentPriorityLevel,rhe=ya.unstable_ImmediatePriority,she=ya.unstable_UserBlockingPriority,JA=ya.unstable_NormalPriority,xLe=ya.unstable_LowPriority,ahe=ya.unstable_IdlePriority,wLe=ya.log,OLe=ya.unstable_setDisableYieldValue,Ck=null,ic=null;function Pp(e){if(typeof wLe=="function"&&OLe(e),ic&&typeof ic.setStrictMode=="function")try{ic.setStrictMode(Ck,e)}catch{}}var rc=Math.clz32?Math.clz32:ELe,SLe=Math.log,kLe=Math.LN2;function ELe(e){return e>>>=0,e===0?32:31-(SLe(e)/kLe|0)|0}var jC=256,RC=262144,IC=4194304;function pg(e){var t=e&42;if(t!==0)return t;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function Ej(e,t,n){var i=e.pendingLanes;if(i===0)return 0;var r=0,s=e.suspendedLanes,a=e.pingedLanes;e=e.warmLanes;var l=i&134217727;return l!==0?(i=l&~s,i!==0?r=pg(i):(a&=l,a!==0?r=pg(a):n||(n=l&~e,n!==0&&(r=pg(n))))):(l=i&~s,l!==0?r=pg(l):a!==0?r=pg(a):n||(n=i&~e,n!==0&&(r=pg(n)))),r===0?0:t!==0&&t!==r&&!(t&s)&&(s=r&-r,n=t&-t,s>=n||s===32&&(n&4194048)!==0)?t:r}function Tk(e,t){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)===0}function CLe(e,t){switch(e){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function ohe(){var e=IC;return IC<<=1,!(IC&62914560)&&(IC=4194304),e}function UP(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Ak(e,t){e.pendingLanes|=t,t!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function TLe(e,t,n,i,r,s){var a=e.pendingLanes;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=n,e.entangledLanes&=n,e.errorRecoveryDisabledLanes&=n,e.shellSuspendCounter=0;var l=e.entanglements,c=e.expirationTimes,u=e.hiddenUpdates;for(n=a&~n;0"u")return null;try{return e.activeElement||e.body}catch{return e.body}}var ILe=/[\n"\\]/g;function Fc(e){return e.replace(ILe,function(t){return"\\"+t.charCodeAt(0).toString(16)+" "})}function u3(e,t,n,i,r,s,a,l){e.name="",a!=null&&typeof a!="function"&&typeof a!="symbol"&&typeof a!="boolean"?e.type=a:e.removeAttribute("type"),t!=null?a==="number"?(t===0&&e.value===""||e.value!=t)&&(e.value=""+Pc(t)):e.value!==""+Pc(t)&&(e.value=""+Pc(t)):a!=="submit"&&a!=="reset"||e.removeAttribute("value"),t!=null?d3(e,a,Pc(t)):n!=null?d3(e,a,Pc(n)):i!=null&&e.removeAttribute("value"),r==null&&s!=null&&(e.defaultChecked=!!s),r!=null&&(e.checked=r&&typeof r!="function"&&typeof r!="symbol"),l!=null&&typeof l!="function"&&typeof l!="symbol"&&typeof l!="boolean"?e.name=""+Pc(l):e.removeAttribute("name")}function ghe(e,t,n,i,r,s,a,l){if(s!=null&&typeof s!="function"&&typeof s!="symbol"&&typeof s!="boolean"&&(e.type=s),t!=null||n!=null){if(!(s!=="submit"&&s!=="reset"||t!=null)){c3(e);return}n=n!=null?""+Pc(n):"",t=t!=null?""+Pc(t):n,l||t===e.value||(e.value=t),e.defaultValue=t}i=i??r,i=typeof i!="function"&&typeof i!="symbol"&&!!i,e.checked=l?e.checked:!!i,e.defaultChecked=!!i,a!=null&&typeof a!="function"&&typeof a!="symbol"&&typeof a!="boolean"&&(e.name=a),c3(e)}function d3(e,t,n){t==="number"&&e_(e.ownerDocument)===e||e.defaultValue===""+n||(e.defaultValue=""+n)}function zy(e,t,n,i){if(e=e.options,t){t={};for(var r=0;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),h3=!1;if(ph)try{var _1={};Object.defineProperty(_1,"passive",{get:function(){h3=!0}}),window.addEventListener("test",_1,_1),window.removeEventListener("test",_1,_1)}catch{h3=!1}var Dp=null,d9=null,I2=null;function whe(){if(I2)return I2;var e,t=d9,n=t.length,i,r="value"in Dp?Dp.value:Dp.textContent,s=r.length;for(e=0;e=eO),VV=" ",HV=!1;function She(e,t){switch(e){case"keyup":return o3e.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function khe(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var my=!1;function c3e(e,t){switch(e){case"compositionend":return khe(t);case"keypress":return t.which!==32?null:(HV=!0,VV);case"textInput":return e=t.data,e===VV&&HV?null:e;default:return null}}function u3e(e,t){if(my)return e==="compositionend"||!h9&&She(e,t)?(e=whe(),I2=d9=Dp=null,my=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=i}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=XV(n)}}function Ahe(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Ahe(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function _he(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=e_(e.document);t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=e_(e.document)}return t}function p9(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}var y3e=ph&&"documentMode"in document&&11>=document.documentMode,gy=null,p3=null,nO=null,m3=!1;function ZV(e,t,n){var i=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;m3||gy==null||gy!==e_(i)||(i=gy,"selectionStart"in i&&p9(i)?i={start:i.selectionStart,end:i.selectionEnd}:(i=(i.ownerDocument&&i.ownerDocument.defaultView||window).getSelection(),i={anchorNode:i.anchorNode,anchorOffset:i.anchorOffset,focusNode:i.focusNode,focusOffset:i.focusOffset}),nO&&ZO(nO,i)||(nO=i,i=y_(p3,"onSelect"),0>=a,r-=a,Od=1<<32-rc(t)+r|n<C?(N=E,E=null):N=E.sibling;var _=h(y,E,O[C],w);if(_===null){E===null&&(E=N);break}e&&E&&_.alternate===null&&t(y,E),x=s(_,x,C),S===null?k=_:S.sibling=_,S=_,E=N}if(C===O.length)return n(y,E),Mi&&Pf(y,C),k;if(E===null){for(;CC?(N=E,E=null):N=E.sibling;var j=h(y,E,_.value,w);if(j===null){E===null&&(E=N);break}e&&E&&j.alternate===null&&t(y,E),x=s(j,x,C),S===null?k=j:S.sibling=j,S=j,E=N}if(_.done)return n(y,E),Mi&&Pf(y,C),k;if(E===null){for(;!_.done;C++,_=O.next())_=f(y,_.value,w),_!==null&&(x=s(_,x,C),S===null?k=_:S.sibling=_,S=_);return Mi&&Pf(y,C),k}for(E=i(E);!_.done;C++,_=O.next())_=m(E,y,C,_.value,w),_!==null&&(e&&_.alternate!==null&&E.delete(_.key===null?C:_.key),x=s(_,x,C),S===null?k=_:S.sibling=_,S=_);return e&&E.forEach(function(A){return t(y,A)}),Mi&&Pf(y,C),k}function v(y,x,O,w){if(typeof O=="object"&&O!==null&&O.type===dy&&O.key===null&&(O=O.props.children),typeof O=="object"&&O!==null){switch(O.$$typeof){case NC:e:{for(var k=O.key;x!==null;){if(x.key===k){if(k=O.type,k===dy){if(x.tag===7){n(y,x.sibling),w=r(x,O.props.children),w.return=y,y=w;break e}}else if(x.elementType===k||typeof k=="object"&&k!==null&&k.$$typeof===vp&&mg(k)===x.type){n(y,x.sibling),w=r(x,O.props),j1(w,O),w.return=y,y=w;break e}n(y,x);break}else t(y,x);x=x.sibling}O.type===dy?(w=Yg(O.props.children,y.mode,w,O.key),w.return=y,y=w):(w=D2(O.type,O.key,O.props,null,y.mode,w),j1(w,O),w.return=y,y=w)}return a(y);case Ow:e:{for(k=O.key;x!==null;){if(x.key===k)if(x.tag===4&&x.stateNode.containerInfo===O.containerInfo&&x.stateNode.implementation===O.implementation){n(y,x.sibling),w=r(x,O.children||[]),w.return=y,y=w;break e}else{n(y,x);break}else t(y,x);x=x.sibling}w=XP(O,y.mode,w),w.return=y,y=w}return a(y);case vp:return O=mg(O),v(y,x,O,w)}if(Sw(O))return g(y,x,O,w);if(A1(O)){if(k=A1(O),typeof k!="function")throw Error(dt(150));return O=k.call(O),b(y,x,O,w)}if(typeof O.then=="function")return v(y,x,LC(O),w);if(O.$$typeof===qf)return v(y,x,MC(y,O),w);$C(y,O)}return typeof O=="string"&&O!==""||typeof O=="number"||typeof O=="bigint"?(O=""+O,x!==null&&x.tag===6?(n(y,x.sibling),w=r(x,O),w.return=y,y=w):(n(y,x),w=KP(O,y.mode,w),w.return=y,y=w),a(y)):n(y,x)}return function(y,x,O,w){try{tS=0;var k=v(y,x,O,w);return qy=null,k}catch(E){if(E===vx||E===jj)throw E;var S=Xl(29,E,null,y.mode);return S.lanes=w,S.return=y,S}finally{}}}var hb=Vhe(!0),Hhe=Vhe(!1),xp=!1;function S9(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function O3(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function Wp(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function Gp(e,t,n){var i=e.updateQueue;if(i===null)return null;if(i=i.shared,tr&2){var r=i.pending;return r===null?t.next=t:(t.next=r.next,r.next=t),i.pending=t,t=n_(e),Mhe(e,null,n),t}return Nj(e,i,t,n),n_(e)}function rO(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194048)!==0)){var i=t.lanes;i&=e.pendingLanes,n|=i,t.lanes=n,che(e,n)}}function ZP(e,t){var n=e.updateQueue,i=e.alternate;if(i!==null&&(i=i.updateQueue,n===i)){var r=null,s=null;if(n=n.firstBaseUpdate,n!==null){do{var a={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};s===null?r=s=a:s=s.next=a,n=n.next}while(n!==null);s===null?r=s=t:s=s.next=t}else r=s=t;n={baseState:i.baseState,firstBaseUpdate:r,lastBaseUpdate:s,shared:i.shared,callbacks:i.callbacks},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}var S3=!1;function sO(){if(S3){var e=Hy;if(e!==null)throw e}}function aO(e,t,n,i){S3=!1;var r=e.updateQueue;xp=!1;var s=r.firstBaseUpdate,a=r.lastBaseUpdate,l=r.shared.pending;if(l!==null){r.shared.pending=null;var c=l,u=c.next;c.next=null,a===null?s=u:a.next=u,a=c;var d=e.alternate;d!==null&&(d=d.updateQueue,l=d.lastBaseUpdate,l!==a&&(l===null?d.firstBaseUpdate=u:l.next=u,d.lastBaseUpdate=c))}if(s!==null){var f=r.baseState;a=0,d=u=c=null,l=s;do{var h=l.lane&-536870913,m=h!==l.lane;if(m?(Ai&h)===h:(i&h)===h){h!==0&&h===Cv&&(S3=!0),d!==null&&(d=d.next={lane:0,tag:l.tag,payload:l.payload,callback:null,next:null});e:{var g=e,b=l;h=t;var v=n;switch(b.tag){case 1:if(g=b.payload,typeof g=="function"){f=g.call(v,f,h);break e}f=g;break e;case 3:g.flags=g.flags&-65537|128;case 0:if(g=b.payload,h=typeof g=="function"?g.call(v,f,h):g,h==null)break e;f=Xr({},f,h);break e;case 2:xp=!0}}h=l.callback,h!==null&&(e.flags|=64,m&&(e.flags|=8192),m=r.callbacks,m===null?r.callbacks=[h]:m.push(h))}else m={lane:h,tag:l.tag,payload:l.payload,callback:l.callback,next:null},d===null?(u=d=m,c=f):d=d.next=m,a|=h;if(l=l.next,l===null){if(l=r.shared.pending,l===null)break;m=l,l=m.next,m.next=null,r.lastBaseUpdate=m,r.shared.pending=null}}while(!0);d===null&&(c=f),r.baseState=c,r.firstBaseUpdate=u,r.lastBaseUpdate=d,s===null&&(r.shared.lanes=0),dm|=a,e.lanes=a,e.memoizedState=f}}function qhe(e,t){if(typeof e!="function")throw Error(dt(191,e));e.call(t)}function Whe(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;es?s:8;var a=Dn.T,l={};Dn.T=l,M9(e,!1,t,n);try{var c=r(),u=Dn.S;if(u!==null&&u(l,c),c!==null&&typeof c=="object"&&typeof c.then=="function"){var d=T3e(c,i);oO(e,t,d,sc(e))}else oO(e,t,i,sc(e))}catch(f){oO(e,t,{then:function(){},status:"rejected",reason:f},sc())}finally{nr.p=s,a!==null&&l.types!==null&&(a.types=l.types),Dn.T=a}}function I3e(){}function A3(e,t,n,i){if(e.tag!==5)throw Error(dt(476));var r=ype(e).queue;bpe(e,r,t,Xg,n===null?I3e:function(){return vpe(e),n(i)})}function ype(e){var t=e.memoizedState;if(t!==null)return t;t={memoizedState:Xg,baseState:Xg,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:gh,lastRenderedState:Xg},next:null};var n={};return t.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:gh,lastRenderedState:n},next:null},e.memoizedState=t,e=e.alternate,e!==null&&(e.memoizedState=t),t}function vpe(e){var t=ype(e);t.next===null&&(t=e.alternate.memoizedState),oO(e,t.next.queue,{},sc())}function D9(){return to(aS)}function xpe(){return Bs().memoizedState}function wpe(){return Bs().memoizedState}function P3e(e){for(var t=e.return;t!==null;){switch(t.tag){case 24:case 3:var n=sc();e=Wp(n);var i=Gp(t,e,n);i!==null&&(gl(i,t,n),rO(i,t,n)),t={cache:x9()},e.payload=t;return}t=t.return}}function D3e(e,t,n){var i=sc();n={lane:i,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},Dj(e)?Spe(t,n):(n=g9(e,t,n,i),n!==null&&(gl(n,e,i),kpe(n,t,i)))}function Ope(e,t,n){var i=sc();oO(e,t,n,i)}function oO(e,t,n,i){var r={lane:i,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(Dj(e))Spe(t,r);else{var s=e.alternate;if(e.lanes===0&&(s===null||s.lanes===0)&&(s=t.lastRenderedReducer,s!==null))try{var a=t.lastRenderedState,l=s(a,n);if(r.hasEagerState=!0,r.eagerState=l,uc(l,a))return Nj(e,t,r,0),Tr===null&&_j(),!1}catch{}finally{}if(n=g9(e,t,r,i),n!==null)return gl(n,e,i),kpe(n,t,i),!0}return!1}function M9(e,t,n,i){if(i={lane:2,revertLane:H9(),gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null},Dj(e)){if(t)throw Error(dt(479))}else t=g9(e,n,i,2),t!==null&&gl(t,e,2)}function Dj(e){var t=e.alternate;return e===Zn||t!==null&&t===Zn}function Spe(e,t){Wy=l_=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function kpe(e,t,n){if(n&4194048){var i=t.lanes;i&=e.pendingLanes,n|=i,t.lanes=n,che(e,n)}}var iS={readContext:to,use:Ij,useCallback:Os,useContext:Os,useEffect:Os,useImperativeHandle:Os,useLayoutEffect:Os,useInsertionEffect:Os,useMemo:Os,useReducer:Os,useRef:Os,useState:Os,useDebugValue:Os,useDeferredValue:Os,useTransition:Os,useSyncExternalStore:Os,useId:Os,useHostTransitionStatus:Os,useFormState:Os,useActionState:Os,useOptimistic:Os,useMemoCache:Os,useCacheRefresh:Os};iS.useEffectEvent=Os;var Epe={readContext:to,use:Ij,useCallback:function(e,t){return Ro().memoizedState=[e,t===void 0?null:t],e},useContext:to,useEffect:hH,useImperativeHandle:function(e,t,n){n=n!=null?n.concat([e]):null,$2(4194308,4,fpe.bind(null,t,e),n)},useLayoutEffect:function(e,t){return $2(4194308,4,e,t)},useInsertionEffect:function(e,t){$2(4,2,e,t)},useMemo:function(e,t){var n=Ro();t=t===void 0?null:t;var i=e();if(pb){Pp(!0);try{e()}finally{Pp(!1)}}return n.memoizedState=[i,t],i},useReducer:function(e,t,n){var i=Ro();if(n!==void 0){var r=n(t);if(pb){Pp(!0);try{n(t)}finally{Pp(!1)}}}else r=t;return i.memoizedState=i.baseState=r,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:r},i.queue=e,e=e.dispatch=D3e.bind(null,Zn,e),[i.memoizedState,e]},useRef:function(e){var t=Ro();return e={current:e},t.memoizedState=e},useState:function(e){e=C3(e);var t=e.queue,n=Ope.bind(null,Zn,t);return t.dispatch=n,[e.memoizedState,n]},useDebugValue:I9,useDeferredValue:function(e,t){var n=Ro();return P9(n,e,t)},useTransition:function(){var e=C3(!1);return e=bpe.bind(null,Zn,e.queue,!0,!1),Ro().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,t,n){var i=Zn,r=Ro();if(Mi){if(n===void 0)throw Error(dt(407));n=n()}else{if(n=t(),Tr===null)throw Error(dt(349));Ai&127||Zhe(i,t,n)}r.memoizedState=n;var s={value:n,getSnapshot:t};return r.queue=s,hH(epe.bind(null,i,s,e),[e]),i.flags|=2048,Av(9,{destroy:void 0},Jhe.bind(null,i,s,n,t),null),n},useId:function(){var e=Ro(),t=Tr.identifierPrefix;if(Mi){var n=Sd,i=Od;n=(i&~(1<<32-rc(i)-1)).toString(32)+n,t="_"+t+"R_"+n,n=c_++,0<\/script>",s=s.removeChild(s.firstChild);break;case"select":s=typeof i.is=="string"?a.createElement("select",{is:i.is}):a.createElement("select"),i.multiple?s.multiple=!0:i.size&&(s.size=i.size);break;default:s=typeof i.is=="string"?a.createElement(r,{is:i.is}):a.createElement(r)}}s[Za]=t,s[vl]=i;e:for(a=t.child;a!==null;){if(a.tag===5||a.tag===6)s.appendChild(a.stateNode);else if(a.tag!==4&&a.tag!==27&&a.child!==null){a.child.return=a,a=a.child;continue}if(a===t)break e;for(;a.sibling===null;){if(a.return===null||a.return===t)break e;a=a.return}a.sibling.return=a.return,a=a.sibling}t.stateNode=s;e:switch(no(s,r,i),r){case"button":case"input":case"select":case"textarea":i=!!i.autoFocus;break e;case"img":i=!0;break e;default:i=!1}i&&gf(t)}}return Qr(t),aD(t,t.type,e===null?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&t.stateNode!=null)e.memoizedProps!==i&&gf(t);else{if(typeof i!="string"&&t.stateNode===null)throw Error(dt(166));if(e=Hp.current,T0(t)){if(e=t.stateNode,n=t.memoizedProps,i=null,r=Ja,r!==null)switch(r.tag){case 27:case 5:i=r.memoizedProps}e[Za]=t,e=!!(e.nodeValue===n||i!==null&&i.suppressHydrationWarning===!0||Ome(e.nodeValue,n)),e||cm(t,!0)}else e=v_(e).createTextNode(i),e[Za]=t,t.stateNode=e}return Qr(t),null;case 31:if(n=t.memoizedState,e===null||e.memoizedState!==null){if(i=T0(t),n!==null){if(e===null){if(!i)throw Error(dt(318));if(e=t.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(dt(557));e[Za]=t}else db(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Qr(t),e=!1}else n=YP(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e)return t.flags&256?(Gl(t),t):(Gl(t),null);if(t.flags&128)throw Error(dt(558))}return Qr(t),null;case 13:if(i=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(r=T0(t),i!==null&&i.dehydrated!==null){if(e===null){if(!r)throw Error(dt(318));if(r=t.memoizedState,r=r!==null?r.dehydrated:null,!r)throw Error(dt(317));r[Za]=t}else db(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Qr(t),r=!1}else r=YP(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=r),r=!0;if(!r)return t.flags&256?(Gl(t),t):(Gl(t),null)}return Gl(t),t.flags&128?(t.lanes=n,t):(n=i!==null,e=e!==null&&e.memoizedState!==null,n&&(i=t.child,r=null,i.alternate!==null&&i.alternate.memoizedState!==null&&i.alternate.memoizedState.cachePool!==null&&(r=i.alternate.memoizedState.cachePool.pool),s=null,i.memoizedState!==null&&i.memoizedState.cachePool!==null&&(s=i.memoizedState.cachePool.pool),s!==r&&(i.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),FC(t,t.updateQueue),Qr(t),null);case 4:return Sv(),e===null&&q9(t.stateNode.containerInfo),Qr(t),null;case 10:return Jf(t.type),Qr(t),null;case 19:if(Fa(Ms),i=t.memoizedState,i===null)return Qr(t),null;if(r=(t.flags&128)!==0,s=i.rendering,s===null)if(r)R1(i,!1);else{if(Es!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(s=o_(e),s!==null){for(t.flags|=128,R1(i,!1),e=s.updateQueue,t.updateQueue=e,FC(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)Lhe(n,e),n=n.sibling;return Dr(Ms,Ms.current&1|2),Mi&&Pf(t,i.treeForkCount),t.child}e=e.sibling}i.tail!==null&&nc()>h_&&(t.flags|=128,r=!0,R1(i,!1),t.lanes=4194304)}else{if(!r)if(e=o_(s),e!==null){if(t.flags|=128,r=!0,e=e.updateQueue,t.updateQueue=e,FC(t,e),R1(i,!0),i.tail===null&&i.tailMode==="hidden"&&!s.alternate&&!Mi)return Qr(t),null}else 2*nc()-i.renderingStartTime>h_&&n!==536870912&&(t.flags|=128,r=!0,R1(i,!1),t.lanes=4194304);i.isBackwards?(s.sibling=t.child,t.child=s):(e=i.last,e!==null?e.sibling=s:t.child=s,i.last=s)}return i.tail!==null?(e=i.tail,i.rendering=e,i.tail=e.sibling,i.renderingStartTime=nc(),e.sibling=null,n=Ms.current,Dr(Ms,r?n&1|2:n&1),Mi&&Pf(t,i.treeForkCount),e):(Qr(t),null);case 22:case 23:return Gl(t),k9(),i=t.memoizedState!==null,e!==null?e.memoizedState!==null!==i&&(t.flags|=8192):i&&(t.flags|=8192),i?n&536870912&&!(t.flags&128)&&(Qr(t),t.subtreeFlags&6&&(t.flags|=8192)):Qr(t),n=t.updateQueue,n!==null&&FC(t,n.retryQueue),n=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),i=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(i=t.memoizedState.cachePool.pool),i!==n&&(t.flags|=2048),e!==null&&Fa(Zg),null;case 24:return n=null,e!==null&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),Jf(Ys),Qr(t),null;case 25:return null;case 30:return null}throw Error(dt(156,t.tag))}function B3e(e,t){switch(v9(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return Jf(Ys),Sv(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 26:case 27:case 5:return ZA(t),null;case 31:if(t.memoizedState!==null){if(Gl(t),t.alternate===null)throw Error(dt(340));db()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 13:if(Gl(t),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(dt(340));db()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Fa(Ms),null;case 4:return Sv(),null;case 10:return Jf(t.type),null;case 22:case 23:return Gl(t),k9(),e!==null&&Fa(Zg),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 24:return Jf(Ys),null;case 25:return null;default:return null}}function Lpe(e,t){switch(v9(t),t.tag){case 3:Jf(Ys),Sv();break;case 26:case 27:case 5:ZA(t);break;case 4:Sv();break;case 31:t.memoizedState!==null&&Gl(t);break;case 13:Gl(t);break;case 19:Fa(Ms);break;case 10:Jf(t.type);break;case 22:case 23:Gl(t),k9(),e!==null&&Fa(Zg);break;case 24:Jf(Ys)}}function Ik(e,t){try{var n=t.updateQueue,i=n!==null?n.lastEffect:null;if(i!==null){var r=i.next;n=r;do{if((n.tag&e)===e){i=void 0;var s=n.create,a=n.inst;i=s(),a.destroy=i}n=n.next}while(n!==r)}}catch(l){hr(t,t.return,l)}}function um(e,t,n){try{var i=t.updateQueue,r=i!==null?i.lastEffect:null;if(r!==null){var s=r.next;i=s;do{if((i.tag&e)===e){var a=i.inst,l=a.destroy;if(l!==void 0){a.destroy=void 0,r=t;var c=n,u=l;try{u()}catch(d){hr(r,c,d)}}}i=i.next}while(i!==s)}}catch(d){hr(t,t.return,d)}}function $pe(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;try{Whe(t,n)}catch(i){hr(e,e.return,i)}}}function Fpe(e,t,n){n.props=mb(e.type,e.memoizedProps),n.state=e.memoizedState;try{n.componentWillUnmount()}catch(i){hr(e,t,i)}}function lO(e,t){try{var n=e.ref;if(n!==null){switch(e.tag){case 26:case 27:case 5:var i=e.stateNode;break;case 30:i=e.stateNode;break;default:i=e.stateNode}typeof n=="function"?e.refCleanup=n(i):n.current=i}}catch(r){hr(e,t,r)}}function kd(e,t){var n=e.ref,i=e.refCleanup;if(n!==null)if(typeof i=="function")try{i()}catch(r){hr(e,t,r)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof n=="function")try{n(null)}catch(r){hr(e,t,r)}else n.current=null}function Bpe(e){var t=e.type,n=e.memoizedProps,i=e.stateNode;try{e:switch(t){case"button":case"input":case"select":case"textarea":n.autoFocus&&i.focus();break e;case"img":n.src?i.src=n.src:n.srcSet&&(i.srcset=n.srcSet)}}catch(r){hr(e,e.return,r)}}function oD(e,t,n){try{var i=e.stateNode;l4e(i,e.type,n,t),i[vl]=t}catch(r){hr(e,e.return,r)}}function Upe(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Dm(e.type)||e.tag===4}function lD(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||Upe(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&Dm(e.type)||e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function I3(e,t,n){var i=e.tag;if(i===5||i===6)e=e.stateNode,t?(n.nodeType===9?n.body:n.nodeName==="HTML"?n.ownerDocument.body:n).insertBefore(e,t):(t=n.nodeType===9?n.body:n.nodeName==="HTML"?n.ownerDocument.body:n,t.appendChild(e),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=Wf));else if(i!==4&&(i===27&&Dm(e.type)&&(n=e.stateNode,t=null),e=e.child,e!==null))for(I3(e,t,n),e=e.sibling;e!==null;)I3(e,t,n),e=e.sibling}function f_(e,t,n){var i=e.tag;if(i===5||i===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(i!==4&&(i===27&&Dm(e.type)&&(n=e.stateNode),e=e.child,e!==null))for(f_(e,t,n),e=e.sibling;e!==null;)f_(e,t,n),e=e.sibling}function Qpe(e){var t=e.stateNode,n=e.memoizedProps;try{for(var i=e.type,r=t.attributes;r.length;)t.removeAttributeNode(r[0]);no(t,i,n),t[Za]=e,t[vl]=n}catch(s){hr(e,e.return,s)}}var Bf=!1,Xs=!1,cD=!1,CH=typeof WeakSet=="function"?WeakSet:Set,Na=null;function U3e(e,t){if(e=e.containerInfo,B3=S_,e=_he(e),p9(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var i=n.getSelection&&n.getSelection();if(i&&i.rangeCount!==0){n=i.anchorNode;var r=i.anchorOffset,s=i.focusNode;i=i.focusOffset;try{n.nodeType,s.nodeType}catch{n=null;break e}var a=0,l=-1,c=-1,u=0,d=0,f=e,h=null;t:for(;;){for(var m;f!==n||r!==0&&f.nodeType!==3||(l=a+r),f!==s||i!==0&&f.nodeType!==3||(c=a+i),f.nodeType===3&&(a+=f.nodeValue.length),(m=f.firstChild)!==null;)h=f,f=m;for(;;){if(f===e)break t;if(h===n&&++u===r&&(l=a),h===s&&++d===i&&(c=a),(m=f.nextSibling)!==null)break;f=h,h=f.parentNode}f=m}n=l===-1||c===-1?null:{start:l,end:c}}else n=null}n=n||{start:0,end:0}}else n=null;for(U3={focusedElem:e,selectionRange:n},S_=!1,Na=t;Na!==null;)if(t=Na,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,Na=e;else for(;Na!==null;){switch(t=Na,s=t.alternate,e=t.flags,t.tag){case 0:if(e&4&&(e=t.updateQueue,e=e!==null?e.events:null,e!==null))for(n=0;n title"))),no(s,i,n),s[Za]=e,Ia(s),i=s;break e;case"link":var a=qH("link","href",r).get(i+(n.href||""));if(a){for(var l=0;lv&&(a=v,v=b,b=a);var y=YV(l,b),x=YV(l,v);if(y&&x&&(m.rangeCount!==1||m.anchorNode!==y.node||m.anchorOffset!==y.offset||m.focusNode!==x.node||m.focusOffset!==x.offset)){var O=f.createRange();O.setStart(y.node,y.offset),m.removeAllRanges(),b>v?(m.addRange(O),m.extend(x.node,x.offset)):(O.setEnd(x.node,x.offset),m.addRange(O))}}}}for(f=[],m=l;m=m.parentNode;)m.nodeType===1&&f.push({element:m,left:m.scrollLeft,top:m.scrollTop});for(typeof l.focus=="function"&&l.focus(),l=0;ln?32:n,Dn.T=null,n=M3,M3=null;var s=Xp,a=eh;if(ga=0,Nv=Xp=null,eh=0,tr&6)throw Error(dt(331));var l=tr;if(tr|=4,Jpe(s.current),Xpe(s,s.current,a,n),tr=l,Pk(0,!1),ic&&typeof ic.onPostCommitFiberRoot=="function")try{ic.onPostCommitFiberRoot(Ck,s)}catch{}return!0}finally{nr.p=r,Dn.T=i,pme(e,t)}}function NH(e,t,n){t=Bc(n,t),t=N3(e.stateNode,t,2),e=Gp(e,t,2),e!==null&&(Ak(e,2),qd(e))}function hr(e,t,n){if(e.tag===3)NH(e,e,n);else for(;t!==null;){if(t.tag===3){NH(t,e,n);break}else if(t.tag===1){var i=t.stateNode;if(typeof t.type.getDerivedStateFromError=="function"||typeof i.componentDidCatch=="function"&&(Kp===null||!Kp.has(i))){e=Bc(n,e),n=Npe(2),i=Gp(t,n,2),i!==null&&(jpe(n,i,t,e),Ak(i,2),qd(i));break}}t=t.return}}function dD(e,t,n){var i=e.pingCache;if(i===null){i=e.pingCache=new V3e;var r=new Set;i.set(t,r)}else r=i.get(t),r===void 0&&(r=new Set,i.set(t,r));r.has(n)||(Q9=!0,r.add(n),e=K3e.bind(null,e,t,n),t.then(e,e))}function K3e(e,t,n){var i=e.pingCache;i!==null&&i.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,Tr===e&&(Ai&n)===n&&(Es===4||Es===3&&(Ai&62914560)===Ai&&300>nc()-Mj?!(tr&2)&&jv(e,0):z9|=n,_v===Ai&&(_v=0)),qd(e)}function gme(e,t){t===0&&(t=ohe()),e=zb(e,t),e!==null&&(Ak(e,t),qd(e))}function X3e(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),gme(e,n)}function Y3e(e,t){var n=0;switch(e.tag){case 31:case 13:var i=e.stateNode,r=e.memoizedState;r!==null&&(n=r.retryLane);break;case 19:i=e.stateNode;break;case 22:i=e.stateNode._retryCache;break;default:throw Error(dt(314))}i!==null&&i.delete(t),gme(e,n)}function Z3e(e,t){return s9(e,t)}var g_=null,Z0=null,$3=!1,b_=!1,fD=!1,$p=0;function qd(e){e!==Z0&&e.next===null&&(Z0===null?g_=Z0=e:Z0=Z0.next=e),b_=!0,$3||($3=!0,e4e())}function Pk(e,t){if(!fD&&b_){fD=!0;do for(var n=!1,i=g_;i!==null;){if(e!==0){var r=i.pendingLanes;if(r===0)var s=0;else{var a=i.suspendedLanes,l=i.pingedLanes;s=(1<<31-rc(42|e)+1)-1,s&=r&~(a&~l),s=s&201326741?s&201326741|1:s?s|2:0}s!==0&&(n=!0,jH(i,s))}else s=Ai,s=Ej(i,i===Tr?s:0,i.cancelPendingCommit!==null||i.timeoutHandle!==-1),!(s&3)||Tk(i,s)||(n=!0,jH(i,s));i=i.next}while(n);fD=!1}}function J3e(){bme()}function bme(){b_=$3=!1;var e=0;$p!==0&&u4e()&&(e=$p);for(var t=nc(),n=null,i=g_;i!==null;){var r=i.next,s=yme(i,t);s===0?(i.next=null,n===null?g_=r:n.next=r,r===null&&(Z0=n)):(n=i,(e!==0||s&3)&&(b_=!0)),i=r}ga!==0&&ga!==5||Pk(e),$p!==0&&($p=0)}function yme(e,t){for(var n=e.suspendedLanes,i=e.pingedLanes,r=e.expirationTimes,s=e.pendingLanes&-62914561;0l)break;var d=c.transferSize,f=c.initiatorType;d&&MH(f)&&(c=c.responseEnd,a+=d*(c"u"?null:document;function Tme(e,t,n){var i=wx;if(i&&typeof t=="string"&&t){var r=Fc(t);r='link[rel="'+e+'"][href="'+r+'"]',typeof n=="string"&&(r+='[crossorigin="'+n+'"]'),zH.has(r)||(zH.add(r),e={rel:e,crossOrigin:n,href:t},i.querySelector(r)===null&&(t=i.createElement("link"),no(t,"link",e),Ia(t),i.head.appendChild(t)))}}function v4e(e){Ph.D(e),Tme("dns-prefetch",e,null)}function x4e(e,t){Ph.C(e,t),Tme("preconnect",e,t)}function w4e(e,t,n){Ph.L(e,t,n);var i=wx;if(i&&e&&t){var r='link[rel="preload"][as="'+Fc(t)+'"]';t==="image"&&n&&n.imageSrcSet?(r+='[imagesrcset="'+Fc(n.imageSrcSet)+'"]',typeof n.imageSizes=="string"&&(r+='[imagesizes="'+Fc(n.imageSizes)+'"]')):r+='[href="'+Fc(e)+'"]';var s=r;switch(t){case"style":s=Rv(e);break;case"script":s=Ox(e)}nu.has(s)||(e=Xr({rel:"preload",href:t==="image"&&n&&n.imageSrcSet?void 0:e,as:t},n),nu.set(s,e),i.querySelector(r)!==null||t==="style"&&i.querySelector(Dk(s))||t==="script"&&i.querySelector(Mk(s))||(t=i.createElement("link"),no(t,"link",e),Ia(t),i.head.appendChild(t)))}}function O4e(e,t){Ph.m(e,t);var n=wx;if(n&&e){var i=t&&typeof t.as=="string"?t.as:"script",r='link[rel="modulepreload"][as="'+Fc(i)+'"][href="'+Fc(e)+'"]',s=r;switch(i){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":s=Ox(e)}if(!nu.has(s)&&(e=Xr({rel:"modulepreload",href:e},t),nu.set(s,e),n.querySelector(r)===null)){switch(i){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(n.querySelector(Mk(s)))return}i=n.createElement("link"),no(i,"link",e),Ia(i),n.head.appendChild(i)}}}function S4e(e,t,n){Ph.S(e,t,n);var i=wx;if(i&&e){var r=Qy(i).hoistableStyles,s=Rv(e);t=t||"default";var a=r.get(s);if(!a){var l={loading:0,preload:null};if(a=i.querySelector(Dk(s)))l.loading=5;else{e=Xr({rel:"stylesheet",href:e,"data-precedence":t},n),(n=nu.get(s))&&W9(e,n);var c=a=i.createElement("link");Ia(c),no(c,"link",e),c._p=new Promise(function(u,d){c.onload=u,c.onerror=d}),c.addEventListener("load",function(){l.loading|=1}),c.addEventListener("error",function(){l.loading|=2}),l.loading|=4,Q2(a,t,i)}a={type:"stylesheet",instance:a,count:1,state:l},r.set(s,a)}}}function k4e(e,t){Ph.X(e,t);var n=wx;if(n&&e){var i=Qy(n).hoistableScripts,r=Ox(e),s=i.get(r);s||(s=n.querySelector(Mk(r)),s||(e=Xr({src:e,async:!0},t),(t=nu.get(r))&&G9(e,t),s=n.createElement("script"),Ia(s),no(s,"link",e),n.head.appendChild(s)),s={type:"script",instance:s,count:1,state:null},i.set(r,s))}}function E4e(e,t){Ph.M(e,t);var n=wx;if(n&&e){var i=Qy(n).hoistableScripts,r=Ox(e),s=i.get(r);s||(s=n.querySelector(Mk(r)),s||(e=Xr({src:e,async:!0,type:"module"},t),(t=nu.get(r))&&G9(e,t),s=n.createElement("script"),Ia(s),no(s,"link",e),n.head.appendChild(s)),s={type:"script",instance:s,count:1,state:null},i.set(r,s))}}function VH(e,t,n,i){var r=(r=Hp.current)?x_(r):null;if(!r)throw Error(dt(446));switch(e){case"meta":case"title":return null;case"style":return typeof n.precedence=="string"&&typeof n.href=="string"?(t=Rv(n.href),n=Qy(r).hoistableStyles,i=n.get(t),i||(i={type:"style",instance:null,count:0,state:null},n.set(t,i)),i):{type:"void",instance:null,count:0,state:null};case"link":if(n.rel==="stylesheet"&&typeof n.href=="string"&&typeof n.precedence=="string"){e=Rv(n.href);var s=Qy(r).hoistableStyles,a=s.get(e);if(a||(r=r.ownerDocument||r,a={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},s.set(e,a),(s=r.querySelector(Dk(e)))&&!s._p&&(a.instance=s,a.state.loading=5),nu.has(e)||(n={rel:"preload",as:"style",href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy},nu.set(e,n),s||C4e(r,e,n,a.state))),t&&i===null)throw Error(dt(528,""));return a}if(t&&i!==null)throw Error(dt(529,""));return null;case"script":return t=n.async,n=n.src,typeof n=="string"&&t&&typeof t!="function"&&typeof t!="symbol"?(t=Ox(n),n=Qy(r).hoistableScripts,i=n.get(t),i||(i={type:"script",instance:null,count:0,state:null},n.set(t,i)),i):{type:"void",instance:null,count:0,state:null};default:throw Error(dt(444,e))}}function Rv(e){return'href="'+Fc(e)+'"'}function Dk(e){return'link[rel="stylesheet"]['+e+"]"}function Ame(e){return Xr({},e,{"data-precedence":e.precedence,precedence:null})}function C4e(e,t,n,i){e.querySelector('link[rel="preload"][as="style"]['+t+"]")?i.loading=1:(t=e.createElement("link"),i.preload=t,t.addEventListener("load",function(){return i.loading|=1}),t.addEventListener("error",function(){return i.loading|=2}),no(t,"link",n),Ia(t),e.head.appendChild(t))}function Ox(e){return'[src="'+Fc(e)+'"]'}function Mk(e){return"script[async]"+e}function HH(e,t,n){if(t.count++,t.instance===null)switch(t.type){case"style":var i=e.querySelector('style[data-href~="'+Fc(n.href)+'"]');if(i)return t.instance=i,Ia(i),i;var r=Xr({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return i=(e.ownerDocument||e).createElement("style"),Ia(i),no(i,"style",r),Q2(i,n.precedence,e),t.instance=i;case"stylesheet":r=Rv(n.href);var s=e.querySelector(Dk(r));if(s)return t.state.loading|=4,t.instance=s,Ia(s),s;i=Ame(n),(r=nu.get(r))&&W9(i,r),s=(e.ownerDocument||e).createElement("link"),Ia(s);var a=s;return a._p=new Promise(function(l,c){a.onload=l,a.onerror=c}),no(s,"link",i),t.state.loading|=4,Q2(s,n.precedence,e),t.instance=s;case"script":return s=Ox(n.src),(r=e.querySelector(Mk(s)))?(t.instance=r,Ia(r),r):(i=n,(r=nu.get(s))&&(i=Xr({},n),G9(i,r)),e=e.ownerDocument||e,r=e.createElement("script"),Ia(r),no(r,"link",i),e.head.appendChild(r),t.instance=r);case"void":return null;default:throw Error(dt(443,t.type))}else t.type==="stylesheet"&&!(t.state.loading&4)&&(i=t.instance,t.state.loading|=4,Q2(i,n.precedence,e));return t.instance}function Q2(e,t,n){for(var i=n.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),r=i.length?i[i.length-1]:null,s=r,a=0;a title"):null)}function T4e(e,t,n){if(n===1||t.itemProp!=null)return!1;switch(e){case"meta":case"title":return!0;case"style":if(typeof t.precedence!="string"||typeof t.href!="string"||t.href==="")break;return!0;case"link":if(typeof t.rel!="string"||typeof t.href!="string"||t.href===""||t.onLoad||t.onError)break;switch(t.rel){case"stylesheet":return e=t.disabled,typeof t.precedence=="string"&&e==null;default:return!0}case"script":if(t.async&&typeof t.async!="function"&&typeof t.async!="symbol"&&!t.onLoad&&!t.onError&&t.src&&typeof t.src=="string")return!0}return!1}function _me(e){return!(e.type==="stylesheet"&&!(e.state.loading&3))}function A4e(e,t,n,i){if(n.type==="stylesheet"&&(typeof i.media!="string"||matchMedia(i.media).matches!==!1)&&!(n.state.loading&4)){if(n.instance===null){var r=Rv(i.href),s=t.querySelector(Dk(r));if(s){t=s._p,t!==null&&typeof t=="object"&&typeof t.then=="function"&&(e.count++,e=w_.bind(e),t.then(e,e)),n.state.loading|=4,n.instance=s,Ia(s);return}s=t.ownerDocument||t,i=Ame(i),(r=nu.get(r))&&W9(i,r),s=s.createElement("link"),Ia(s);var a=s;a._p=new Promise(function(l,c){a.onload=l,a.onerror=c}),no(s,"link",i),n.instance=s}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&!(n.state.loading&3)&&(e.count++,n=w_.bind(e),t.addEventListener("load",n),t.addEventListener("error",n))}}var yD=0;function _4e(e,t){return e.stylesheets&&e.count===0&&V2(e,e.stylesheets),0yD?50:800)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(i),clearTimeout(r)}}:null}function w_(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)V2(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var O_=null;function V2(e,t){e.stylesheets=null,e.unsuspend!==null&&(e.count++,O_=new Map,t.forEach(N4e,e),O_=null,w_.call(e))}function N4e(e,t){if(!(t.state.loading&4)){var n=O_.get(e);if(n)var i=n.get(null);else{n=new Map,O_.set(e,n);for(var r=e.querySelectorAll("link[data-precedence],style[data-precedence]"),s=0;s"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(Lme)}catch(e){console.error(e)}}Lme(),Hfe.exports=Sj;var $4e=Hfe.exports;const F4e=px($4e),J9=p.createContext({});function Uj(e){const t=p.useRef(null);return t.current===null&&(t.current=e()),t.current}const Qj=p.createContext(null),cS=p.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"});class B4e extends p.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const i=this.props.sizeRef.current;i.height=n.offsetHeight||0,i.width=n.offsetWidth||0,i.top=n.offsetTop,i.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function U4e({children:e,isPresent:t}){const n=p.useId(),i=p.useRef(null),r=p.useRef({width:0,height:0,top:0,left:0}),{nonce:s}=p.useContext(cS);return p.useInsertionEffect(()=>{const{width:a,height:l,top:c,left:u}=r.current;if(t||!i.current||!a||!l)return;i.current.dataset.motionPopId=n;const d=document.createElement("style");return s&&(d.nonce=s),document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` +`+i.stack}}var f3=Object.prototype.hasOwnProperty,uF=va.unstable_scheduleCallback,HP=va.unstable_cancelCallback,PLe=va.unstable_shouldYield,DLe=va.unstable_requestPaint,ic=va.unstable_now,MLe=va.unstable_getCurrentPriorityLevel,bhe=va.unstable_ImmediatePriority,yhe=va.unstable_UserBlockingPriority,r_=va.unstable_NormalPriority,LLe=va.unstable_LowPriority,vhe=va.unstable_IdlePriority,$Le=va.log,FLe=va.unstable_setDisableYieldValue,Nk=null,rc=null;function $p(e){if(typeof $Le=="function"&&FLe(e),rc&&typeof rc.setStrictMode=="function")try{rc.setStrictMode(Nk,e)}catch{}}var sc=Math.clz32?Math.clz32:QLe,BLe=Math.log,ULe=Math.LN2;function QLe(e){return e>>>=0,e===0?32:31-(BLe(e)/ULe|0)|0}var PC=256,DC=262144,MC=4194304;function vg(e){var t=e&42;if(t!==0)return t;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function jj(e,t,n){var i=e.pendingLanes;if(i===0)return 0;var r=0,s=e.suspendedLanes,a=e.pingedLanes;e=e.warmLanes;var l=i&134217727;return l!==0?(i=l&~s,i!==0?r=vg(i):(a&=l,a!==0?r=vg(a):n||(n=l&~e,n!==0&&(r=vg(n))))):(l=i&~s,l!==0?r=vg(l):a!==0?r=vg(a):n||(n=i&~e,n!==0&&(r=vg(n)))),r===0?0:t!==0&&t!==r&&!(t&s)&&(s=r&-r,n=t&-t,s>=n||s===32&&(n&4194048)!==0)?t:r}function jk(e,t){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)===0}function zLe(e,t){switch(e){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function xhe(){var e=MC;return MC<<=1,!(MC&62914560)&&(MC=4194304),e}function qP(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Rk(e,t){e.pendingLanes|=t,t!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function VLe(e,t,n,i,r,s){var a=e.pendingLanes;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=n,e.entangledLanes&=n,e.errorRecoveryDisabledLanes&=n,e.shellSuspendCounter=0;var l=e.entanglements,c=e.expirationTimes,u=e.hiddenUpdates;for(n=a&~n;0"u")return null;try{return e.activeElement||e.body}catch{return e.body}}var XLe=/[\n"\\]/g;function Bc(e){return e.replace(XLe,function(t){return"\\"+t.charCodeAt(0).toString(16)+" "})}function m3(e,t,n,i,r,s,a,l){e.name="",a!=null&&typeof a!="function"&&typeof a!="symbol"&&typeof a!="boolean"?e.type=a:e.removeAttribute("type"),t!=null?a==="number"?(t===0&&e.value===""||e.value!=t)&&(e.value=""+Dc(t)):e.value!==""+Dc(t)&&(e.value=""+Dc(t)):a!=="submit"&&a!=="reset"||e.removeAttribute("value"),t!=null?g3(e,a,Dc(t)):n!=null?g3(e,a,Dc(n)):i!=null&&e.removeAttribute("value"),r==null&&s!=null&&(e.defaultChecked=!!s),r!=null&&(e.checked=r&&typeof r!="function"&&typeof r!="symbol"),l!=null&&typeof l!="function"&&typeof l!="symbol"&&typeof l!="boolean"?e.name=""+Dc(l):e.removeAttribute("name")}function _he(e,t,n,i,r,s,a,l){if(s!=null&&typeof s!="function"&&typeof s!="symbol"&&typeof s!="boolean"&&(e.type=s),t!=null||n!=null){if(!(s!=="submit"&&s!=="reset"||t!=null)){p3(e);return}n=n!=null?""+Dc(n):"",t=t!=null?""+Dc(t):n,l||t===e.value||(e.value=t),e.defaultValue=t}i=i??r,i=typeof i!="function"&&typeof i!="symbol"&&!!i,e.checked=l?e.checked:!!i,e.defaultChecked=!!i,a!=null&&typeof a!="function"&&typeof a!="symbol"&&typeof a!="boolean"&&(e.name=a),p3(e)}function g3(e,t,n){t==="number"&&s_(e.ownerDocument)===e||e.defaultValue===""+n||(e.defaultValue=""+n)}function Ky(e,t,n,i){if(e=e.options,t){t={};for(var r=0;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),y3=!1;if(hh)try{var I1={};Object.defineProperty(I1,"passive",{get:function(){y3=!0}}),window.addEventListener("test",I1,I1),window.removeEventListener("test",I1,I1)}catch{y3=!1}var Fp=null,gF=null,$A=null;function Phe(){if($A)return $A;var e,t=gF,n=t.length,i,r="value"in Fp?Fp.value:Fp.textContent,s=r.length;for(e=0;e=rO),JV=" ",eH=!1;function Mhe(e,t){switch(e){case"keyup":return k3e.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Lhe(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var xy=!1;function C3e(e,t){switch(e){case"compositionend":return Lhe(t);case"keypress":return t.which!==32?null:(eH=!0,JV);case"textInput":return e=t.data,e===JV&&eH?null:e;default:return null}}function T3e(e,t){if(xy)return e==="compositionend"||!yF&&Mhe(e,t)?(e=Phe(),$A=gF=Fp=null,xy=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=i}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=sH(n)}}function Uhe(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Uhe(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function Qhe(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=s_(e.document);t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=s_(e.document)}return t}function vF(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}var D3e=hh&&"documentMode"in document&&11>=document.documentMode,wy=null,v3=null,aO=null,x3=!1;function oH(e,t,n){var i=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;x3||wy==null||wy!==s_(i)||(i=wy,"selectionStart"in i&&vF(i)?i={start:i.selectionStart,end:i.selectionEnd}:(i=(i.ownerDocument&&i.ownerDocument.defaultView||window).getSelection(),i={anchorNode:i.anchorNode,anchorOffset:i.anchorOffset,focusNode:i.focusNode,focusOffset:i.focusOffset}),aO&&nS(aO,i)||(aO=i,i=S_(v3,"onSelect"),0>=a,r-=a,kd=1<<32-sc(t)+r|n<C?(N=E,E=null):N=E.sibling;var T=h(y,E,O[C],w);if(T===null){E===null&&(E=N);break}e&&E&&T.alternate===null&&t(y,E),x=s(T,x,C),S===null?k=T:S.sibling=T,S=T,E=N}if(C===O.length)return n(y,E),$i&&If(y,C),k;if(E===null){for(;CC?(N=E,E=null):N=E.sibling;var j=h(y,E,T.value,w);if(j===null){E===null&&(E=N);break}e&&E&&j.alternate===null&&t(y,E),x=s(j,x,C),S===null?k=j:S.sibling=j,S=j,E=N}if(T.done)return n(y,E),$i&&If(y,C),k;if(E===null){for(;!T.done;C++,T=O.next())T=f(y,T.value,w),T!==null&&(x=s(T,x,C),S===null?k=T:S.sibling=T,S=T);return $i&&If(y,C),k}for(E=i(E);!T.done;C++,T=O.next())T=m(E,y,C,T.value,w),T!==null&&(e&&T.alternate!==null&&E.delete(T.key===null?C:T.key),x=s(T,x,C),S===null?k=T:S.sibling=T,S=T);return e&&E.forEach(function(A){return t(y,A)}),$i&&If(y,C),k}function v(y,x,O,w){if(typeof O=="object"&&O!==null&&O.type===gy&&O.key===null&&(O=O.props.children),typeof O=="object"&&O!==null){switch(O.$$typeof){case IC:e:{for(var k=O.key;x!==null;){if(x.key===k){if(k=O.type,k===gy){if(x.tag===7){n(y,x.sibling),w=r(x,O.props.children),w.return=y,y=w;break e}}else if(x.elementType===k||typeof k=="object"&&k!==null&&k.$$typeof===Sp&&xg(k)===x.type){n(y,x.sibling),w=r(x,O.props),D1(w,O),w.return=y,y=w;break e}n(y,x);break}else t(y,x);x=x.sibling}O.type===gy?(w=nb(O.props.children,y.mode,w,O.key),w.return=y,y=w):(w=BA(O.type,O.key,O.props,null,y.mode,w),D1(w,O),w.return=y,y=w)}return a(y);case Cw:e:{for(k=O.key;x!==null;){if(x.key===k)if(x.tag===4&&x.stateNode.containerInfo===O.containerInfo&&x.stateNode.implementation===O.implementation){n(y,x.sibling),w=r(x,O.children||[]),w.return=y,y=w;break e}else{n(y,x);break}else t(y,x);x=x.sibling}w=tD(O,y.mode,w),w.return=y,y=w}return a(y);case Sp:return O=xg(O),v(y,x,O,w)}if(Tw(O))return g(y,x,O,w);if(R1(O)){if(k=R1(O),typeof k!="function")throw Error(ft(150));return O=k.call(O),b(y,x,O,w)}if(typeof O.then=="function")return v(y,x,BC(O),w);if(O.$$typeof===Hf)return v(y,x,FC(y,O),w);UC(y,O)}return typeof O=="string"&&O!==""||typeof O=="number"||typeof O=="bigint"?(O=""+O,x!==null&&x.tag===6?(n(y,x.sibling),w=r(x,O),w.return=y,y=w):(n(y,x),w=eD(O,y.mode,w),w.return=y,y=w),a(y)):n(y,x)}return function(y,x,O,w){try{sS=0;var k=v(y,x,O,w);return Yy=null,k}catch(E){if(E===kx||E===Lj)throw E;var S=Yl(29,E,null,y.mode);return S.lanes=w,S.return=y,S}finally{}}}var yb=ipe(!0),rpe=ipe(!1),kp=!1;function AF(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function T3(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function Yp(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function Zp(e,t,n){var i=e.updateQueue;if(i===null)return null;if(i=i.shared,rr&2){var r=i.pending;return r===null?t.next=t:(t.next=r.next,r.next=t),i.pending=t,t=o_(e),Ghe(e,null,n),t}return Mj(e,i,t,n),o_(e)}function lO(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194048)!==0)){var i=t.lanes;i&=e.pendingLanes,n|=i,t.lanes=n,Ohe(e,n)}}function iD(e,t){var n=e.updateQueue,i=e.alternate;if(i!==null&&(i=i.updateQueue,n===i)){var r=null,s=null;if(n=n.firstBaseUpdate,n!==null){do{var a={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};s===null?r=s=a:s=s.next=a,n=n.next}while(n!==null);s===null?r=s=t:s=s.next=t}else r=s=t;n={baseState:i.baseState,firstBaseUpdate:r,lastBaseUpdate:s,shared:i.shared,callbacks:i.callbacks},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}var A3=!1;function cO(){if(A3){var e=Xy;if(e!==null)throw e}}function uO(e,t,n,i){A3=!1;var r=e.updateQueue;kp=!1;var s=r.firstBaseUpdate,a=r.lastBaseUpdate,l=r.shared.pending;if(l!==null){r.shared.pending=null;var c=l,u=c.next;c.next=null,a===null?s=u:a.next=u,a=c;var d=e.alternate;d!==null&&(d=d.updateQueue,l=d.lastBaseUpdate,l!==a&&(l===null?d.firstBaseUpdate=u:l.next=u,d.lastBaseUpdate=c))}if(s!==null){var f=r.baseState;a=0,d=u=c=null,l=s;do{var h=l.lane&-536870913,m=h!==l.lane;if(m?(Ri&h)===h:(i&h)===h){h!==0&&h===jv&&(A3=!0),d!==null&&(d=d.next={lane:0,tag:l.tag,payload:l.payload,callback:null,next:null});e:{var g=e,b=l;h=t;var v=n;switch(b.tag){case 1:if(g=b.payload,typeof g=="function"){f=g.call(v,f,h);break e}f=g;break e;case 3:g.flags=g.flags&-65537|128;case 0:if(g=b.payload,h=typeof g=="function"?g.call(v,f,h):g,h==null)break e;f=Zr({},f,h);break e;case 2:kp=!0}}h=l.callback,h!==null&&(e.flags|=64,m&&(e.flags|=8192),m=r.callbacks,m===null?r.callbacks=[h]:m.push(h))}else m={lane:h,tag:l.tag,payload:l.payload,callback:l.callback,next:null},d===null?(u=d=m,c=f):d=d.next=m,a|=h;if(l=l.next,l===null){if(l=r.shared.pending,l===null)break;m=l,l=m.next,m.next=null,r.lastBaseUpdate=m,r.shared.pending=null}}while(!0);d===null&&(c=f),r.baseState=c,r.firstBaseUpdate=u,r.lastBaseUpdate=d,s===null&&(r.shared.lanes=0),mm|=a,e.lanes=a,e.memoizedState=f}}function spe(e,t){if(typeof e!="function")throw Error(ft(191,e));e.call(t)}function ape(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;es?s:8;var a=$n.T,l={};$n.T=l,UF(e,!1,t,n);try{var c=r(),u=$n.S;if(u!==null&&u(l,c),c!==null&&typeof c=="object"&&typeof c.then=="function"){var d=V3e(c,i);dO(e,t,d,ac(e))}else dO(e,t,i,ac(e))}catch(f){dO(e,t,{then:function(){},status:"rejected",reason:f},ac())}finally{sr.p=s,a!==null&&l.types!==null&&(a.types=l.types),$n.T=a}}function X3e(){}function I3(e,t,n,i){if(e.tag!==5)throw Error(ft(476));var r=jpe(e).queue;Npe(e,r,t,tb,n===null?X3e:function(){return Rpe(e),n(i)})}function jpe(e){var t=e.memoizedState;if(t!==null)return t;t={memoizedState:tb,baseState:tb,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:mh,lastRenderedState:tb},next:null};var n={};return t.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:mh,lastRenderedState:n},next:null},e.memoizedState=t,e=e.alternate,e!==null&&(e.memoizedState=t),t}function Rpe(e){var t=jpe(e);t.next===null&&(t=e.alternate.memoizedState),dO(e,t.next.queue,{},ac())}function BF(){return no(uS)}function Ipe(){return Qs().memoizedState}function Ppe(){return Qs().memoizedState}function Y3e(e){for(var t=e.return;t!==null;){switch(t.tag){case 24:case 3:var n=ac();e=Yp(n);var i=Zp(t,e,n);i!==null&&(yl(i,t,n),lO(i,t,n)),t={cache:EF()},e.payload=t;return}t=t.return}}function Z3e(e,t,n){var i=ac();n={lane:i,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},Uj(e)?Mpe(t,n):(n=wF(e,t,n,i),n!==null&&(yl(n,e,i),Lpe(n,t,i)))}function Dpe(e,t,n){var i=ac();dO(e,t,n,i)}function dO(e,t,n,i){var r={lane:i,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(Uj(e))Mpe(t,r);else{var s=e.alternate;if(e.lanes===0&&(s===null||s.lanes===0)&&(s=t.lastRenderedReducer,s!==null))try{var a=t.lastRenderedState,l=s(a,n);if(r.hasEagerState=!0,r.eagerState=l,fc(l,a))return Mj(e,t,r,0),Dr===null&&Dj(),!1}catch{}finally{}if(n=wF(e,t,r,i),n!==null)return yl(n,e,i),Lpe(n,t,i),!0}return!1}function UF(e,t,n,i){if(i={lane:2,revertLane:XF(),gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null},Uj(e)){if(t)throw Error(ft(479))}else t=wF(e,n,i,2),t!==null&&yl(t,e,2)}function Uj(e){var t=e.alternate;return e===ri||t!==null&&t===ri}function Mpe(e,t){Zy=h_=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Lpe(e,t,n){if(n&4194048){var i=t.lanes;i&=e.pendingLanes,n|=i,t.lanes=n,Ohe(e,n)}}var oS={readContext:no,use:Fj,useCallback:ws,useContext:ws,useEffect:ws,useImperativeHandle:ws,useLayoutEffect:ws,useInsertionEffect:ws,useMemo:ws,useReducer:ws,useRef:ws,useState:ws,useDebugValue:ws,useDeferredValue:ws,useTransition:ws,useSyncExternalStore:ws,useId:ws,useHostTransitionStatus:ws,useFormState:ws,useActionState:ws,useOptimistic:ws,useMemoCache:ws,useCacheRefresh:ws};oS.useEffectEvent=ws;var $pe={readContext:no,use:Fj,useCallback:function(e,t){return Mo().memoizedState=[e,t===void 0?null:t],e},useContext:no,useEffect:OH,useImperativeHandle:function(e,t,n){n=n!=null?n.concat([e]):null,zA(4194308,4,Epe.bind(null,t,e),n)},useLayoutEffect:function(e,t){return zA(4194308,4,e,t)},useInsertionEffect:function(e,t){zA(4,2,e,t)},useMemo:function(e,t){var n=Mo();t=t===void 0?null:t;var i=e();if(vb){$p(!0);try{e()}finally{$p(!1)}}return n.memoizedState=[i,t],i},useReducer:function(e,t,n){var i=Mo();if(n!==void 0){var r=n(t);if(vb){$p(!0);try{n(t)}finally{$p(!1)}}}else r=t;return i.memoizedState=i.baseState=r,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:r},i.queue=e,e=e.dispatch=Z3e.bind(null,ri,e),[i.memoizedState,e]},useRef:function(e){var t=Mo();return e={current:e},t.memoizedState=e},useState:function(e){e=j3(e);var t=e.queue,n=Dpe.bind(null,ri,t);return t.dispatch=n,[e.memoizedState,n]},useDebugValue:$F,useDeferredValue:function(e,t){var n=Mo();return FF(n,e,t)},useTransition:function(){var e=j3(!1);return e=Npe.bind(null,ri,e.queue,!0,!1),Mo().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,t,n){var i=ri,r=Mo();if($i){if(n===void 0)throw Error(ft(407));n=n()}else{if(n=t(),Dr===null)throw Error(ft(349));Ri&127||dpe(i,t,n)}r.memoizedState=n;var s={value:n,getSnapshot:t};return r.queue=s,OH(hpe.bind(null,i,s,e),[e]),i.flags|=2048,Iv(9,{destroy:void 0},fpe.bind(null,i,s,n,t),null),n},useId:function(){var e=Mo(),t=Dr.identifierPrefix;if($i){var n=Ed,i=kd;n=(i&~(1<<32-sc(i)-1)).toString(32)+n,t="_"+t+"R_"+n,n=p_++,0<\/script>",s=s.removeChild(s.firstChild);break;case"select":s=typeof i.is=="string"?a.createElement("select",{is:i.is}):a.createElement("select"),i.multiple?s.multiple=!0:i.size&&(s.size=i.size);break;default:s=typeof i.is=="string"?a.createElement(r,{is:i.is}):a.createElement(r)}}s[Ja]=t,s[wl]=i;e:for(a=t.child;a!==null;){if(a.tag===5||a.tag===6)s.appendChild(a.stateNode);else if(a.tag!==4&&a.tag!==27&&a.child!==null){a.child.return=a,a=a.child;continue}if(a===t)break e;for(;a.sibling===null;){if(a.return===null||a.return===t)break e;a=a.return}a.sibling.return=a.return,a=a.sibling}t.stateNode=s;e:switch(io(s,r,i),r){case"button":case"input":case"select":case"textarea":i=!!i.autoFocus;break e;case"img":i=!0;break e;default:i=!1}i&&mf(t)}}return Vr(t),dD(t,t.type,e===null?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&t.stateNode!=null)e.memoizedProps!==i&&mf(t);else{if(typeof i!="string"&&t.stateNode===null)throw Error(ft(166));if(e=Gp.current,R0(t)){if(e=t.stateNode,n=t.memoizedProps,i=null,r=eo,r!==null)switch(r.tag){case 27:case 5:i=r.memoizedProps}e[Ja]=t,e=!!(e.nodeValue===n||i!==null&&i.suppressHydrationWarning===!0||Dme(e.nodeValue,n)),e||hm(t,!0)}else e=k_(e).createTextNode(i),e[Ja]=t,t.stateNode=e}return Vr(t),null;case 31:if(n=t.memoizedState,e===null||e.memoizedState!==null){if(i=R0(t),n!==null){if(e===null){if(!i)throw Error(ft(318));if(e=t.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(ft(557));e[Ja]=t}else gb(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Vr(t),e=!1}else n=nD(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e)return t.flags&256?(Gl(t),t):(Gl(t),null);if(t.flags&128)throw Error(ft(558))}return Vr(t),null;case 13:if(i=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(r=R0(t),i!==null&&i.dehydrated!==null){if(e===null){if(!r)throw Error(ft(318));if(r=t.memoizedState,r=r!==null?r.dehydrated:null,!r)throw Error(ft(317));r[Ja]=t}else gb(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Vr(t),r=!1}else r=nD(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=r),r=!0;if(!r)return t.flags&256?(Gl(t),t):(Gl(t),null)}return Gl(t),t.flags&128?(t.lanes=n,t):(n=i!==null,e=e!==null&&e.memoizedState!==null,n&&(i=t.child,r=null,i.alternate!==null&&i.alternate.memoizedState!==null&&i.alternate.memoizedState.cachePool!==null&&(r=i.alternate.memoizedState.cachePool.pool),s=null,i.memoizedState!==null&&i.memoizedState.cachePool!==null&&(s=i.memoizedState.cachePool.pool),s!==r&&(i.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),QC(t,t.updateQueue),Vr(t),null);case 4:return Av(),e===null&&YF(t.stateNode.containerInfo),Vr(t),null;case 10:return Zf(t.type),Vr(t),null;case 19:if(La(Fs),i=t.memoizedState,i===null)return Vr(t),null;if(r=(t.flags&128)!==0,s=i.rendering,s===null)if(r)M1(i,!1);else{if(ks!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(s=f_(e),s!==null){for(t.flags|=128,M1(i,!1),e=s.updateQueue,t.updateQueue=e,QC(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)Xhe(n,e),n=n.sibling;return Ur(Fs,Fs.current&1|2),$i&&If(t,i.treeForkCount),t.child}e=e.sibling}i.tail!==null&&ic()>y_&&(t.flags|=128,r=!0,M1(i,!1),t.lanes=4194304)}else{if(!r)if(e=f_(s),e!==null){if(t.flags|=128,r=!0,e=e.updateQueue,t.updateQueue=e,QC(t,e),M1(i,!0),i.tail===null&&i.tailMode==="hidden"&&!s.alternate&&!$i)return Vr(t),null}else 2*ic()-i.renderingStartTime>y_&&n!==536870912&&(t.flags|=128,r=!0,M1(i,!1),t.lanes=4194304);i.isBackwards?(s.sibling=t.child,t.child=s):(e=i.last,e!==null?e.sibling=s:t.child=s,i.last=s)}return i.tail!==null?(e=i.tail,i.rendering=e,i.tail=e.sibling,i.renderingStartTime=ic(),e.sibling=null,n=Fs.current,Ur(Fs,r?n&1|2:n&1),$i&&If(t,i.treeForkCount),e):(Vr(t),null);case 22:case 23:return Gl(t),_F(),i=t.memoizedState!==null,e!==null?e.memoizedState!==null!==i&&(t.flags|=8192):i&&(t.flags|=8192),i?n&536870912&&!(t.flags&128)&&(Vr(t),t.subtreeFlags&6&&(t.flags|=8192)):Vr(t),n=t.updateQueue,n!==null&&QC(t,n.retryQueue),n=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),i=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(i=t.memoizedState.cachePool.pool),i!==n&&(t.flags|=2048),e!==null&&La(ib),null;case 24:return n=null,e!==null&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),Zf(Zs),Vr(t),null;case 25:return null;case 30:return null}throw Error(ft(156,t.tag))}function i4e(e,t){switch(kF(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return Zf(Zs),Av(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 26:case 27:case 5:return i_(t),null;case 31:if(t.memoizedState!==null){if(Gl(t),t.alternate===null)throw Error(ft(340));gb()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 13:if(Gl(t),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(ft(340));gb()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return La(Fs),null;case 4:return Av(),null;case 10:return Zf(t.type),null;case 22:case 23:return Gl(t),_F(),e!==null&&La(ib),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 24:return Zf(Zs),null;case 25:return null;default:return null}}function Xpe(e,t){switch(kF(t),t.tag){case 3:Zf(Zs),Av();break;case 26:case 27:case 5:i_(t);break;case 4:Av();break;case 31:t.memoizedState!==null&&Gl(t);break;case 13:Gl(t);break;case 19:La(Fs);break;case 10:Zf(t.type);break;case 22:case 23:Gl(t),_F(),e!==null&&La(ib);break;case 24:Zf(Zs)}}function Lk(e,t){try{var n=t.updateQueue,i=n!==null?n.lastEffect:null;if(i!==null){var r=i.next;n=r;do{if((n.tag&e)===e){i=void 0;var s=n.create,a=n.inst;i=s(),a.destroy=i}n=n.next}while(n!==r)}}catch(l){xr(t,t.return,l)}}function pm(e,t,n){try{var i=t.updateQueue,r=i!==null?i.lastEffect:null;if(r!==null){var s=r.next;i=s;do{if((i.tag&e)===e){var a=i.inst,l=a.destroy;if(l!==void 0){a.destroy=void 0,r=t;var c=n,u=l;try{u()}catch(d){xr(r,c,d)}}}i=i.next}while(i!==s)}}catch(d){xr(t,t.return,d)}}function Ype(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;try{ape(t,n)}catch(i){xr(e,e.return,i)}}}function Zpe(e,t,n){n.props=xb(e.type,e.memoizedProps),n.state=e.memoizedState;try{n.componentWillUnmount()}catch(i){xr(e,t,i)}}function fO(e,t){try{var n=e.ref;if(n!==null){switch(e.tag){case 26:case 27:case 5:var i=e.stateNode;break;case 30:i=e.stateNode;break;default:i=e.stateNode}typeof n=="function"?e.refCleanup=n(i):n.current=i}}catch(r){xr(e,t,r)}}function Cd(e,t){var n=e.ref,i=e.refCleanup;if(n!==null)if(typeof i=="function")try{i()}catch(r){xr(e,t,r)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof n=="function")try{n(null)}catch(r){xr(e,t,r)}else n.current=null}function Jpe(e){var t=e.type,n=e.memoizedProps,i=e.stateNode;try{e:switch(t){case"button":case"input":case"select":case"textarea":n.autoFocus&&i.focus();break e;case"img":n.src?i.src=n.src:n.srcSet&&(i.srcset=n.srcSet)}}catch(r){xr(e,e.return,r)}}function fD(e,t,n){try{var i=e.stateNode;E4e(i,e.type,n,t),i[wl]=t}catch(r){xr(e,e.return,r)}}function eme(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Fm(e.type)||e.tag===4}function hD(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||eme(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&Fm(e.type)||e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function $3(e,t,n){var i=e.tag;if(i===5||i===6)e=e.stateNode,t?(n.nodeType===9?n.body:n.nodeName==="HTML"?n.ownerDocument.body:n).insertBefore(e,t):(t=n.nodeType===9?n.body:n.nodeName==="HTML"?n.ownerDocument.body:n,t.appendChild(e),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=qf));else if(i!==4&&(i===27&&Fm(e.type)&&(n=e.stateNode,t=null),e=e.child,e!==null))for($3(e,t,n),e=e.sibling;e!==null;)$3(e,t,n),e=e.sibling}function b_(e,t,n){var i=e.tag;if(i===5||i===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(i!==4&&(i===27&&Fm(e.type)&&(n=e.stateNode),e=e.child,e!==null))for(b_(e,t,n),e=e.sibling;e!==null;)b_(e,t,n),e=e.sibling}function tme(e){var t=e.stateNode,n=e.memoizedProps;try{for(var i=e.type,r=t.attributes;r.length;)t.removeAttributeNode(r[0]);io(t,i,n),t[Ja]=e,t[wl]=n}catch(s){xr(e,e.return,s)}}var Ff=!1,Ys=!1,pD=!1,DH=typeof WeakSet=="function"?WeakSet:Set,Aa=null;function r4e(e,t){if(e=e.containerInfo,H3=A_,e=Qhe(e),vF(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var i=n.getSelection&&n.getSelection();if(i&&i.rangeCount!==0){n=i.anchorNode;var r=i.anchorOffset,s=i.focusNode;i=i.focusOffset;try{n.nodeType,s.nodeType}catch{n=null;break e}var a=0,l=-1,c=-1,u=0,d=0,f=e,h=null;t:for(;;){for(var m;f!==n||r!==0&&f.nodeType!==3||(l=a+r),f!==s||i!==0&&f.nodeType!==3||(c=a+i),f.nodeType===3&&(a+=f.nodeValue.length),(m=f.firstChild)!==null;)h=f,f=m;for(;;){if(f===e)break t;if(h===n&&++u===r&&(l=a),h===s&&++d===i&&(c=a),(m=f.nextSibling)!==null)break;f=h,h=f.parentNode}f=m}n=l===-1||c===-1?null:{start:l,end:c}}else n=null}n=n||{start:0,end:0}}else n=null;for(q3={focusedElem:e,selectionRange:n},A_=!1,Aa=t;Aa!==null;)if(t=Aa,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,Aa=e;else for(;Aa!==null;){switch(t=Aa,s=t.alternate,e=t.flags,t.tag){case 0:if(e&4&&(e=t.updateQueue,e=e!==null?e.events:null,e!==null))for(n=0;n title"))),io(s,i,n),s[Ja]=e,ja(s),i=s;break e;case"link":var a=tq("link","href",r).get(i+(n.href||""));if(a){for(var l=0;lv&&(a=v,v=b,b=a);var y=aH(l,b),x=aH(l,v);if(y&&x&&(m.rangeCount!==1||m.anchorNode!==y.node||m.anchorOffset!==y.offset||m.focusNode!==x.node||m.focusOffset!==x.offset)){var O=f.createRange();O.setStart(y.node,y.offset),m.removeAllRanges(),b>v?(m.addRange(O),m.extend(x.node,x.offset)):(O.setEnd(x.node,x.offset),m.addRange(O))}}}}for(f=[],m=l;m=m.parentNode;)m.nodeType===1&&f.push({element:m,left:m.scrollLeft,top:m.scrollTop});for(typeof l.focus=="function"&&l.focus(),l=0;ln?32:n,$n.T=null,n=U3,U3=null;var s=em,a=Jf;if(ba=0,Dv=em=null,Jf=0,rr&6)throw Error(ft(331));var l=rr;if(rr|=4,fme(s.current),cme(s,s.current,a,n),rr=l,$k(0,!1),rc&&typeof rc.onPostCommitFiberRoot=="function")try{rc.onPostCommitFiberRoot(Nk,s)}catch{}return!0}finally{sr.p=r,$n.T=i,Tme(e,t)}}function FH(e,t,n){t=Uc(n,t),t=D3(e.stateNode,t,2),e=Zp(e,t,2),e!==null&&(Rk(e,2),Kd(e))}function xr(e,t,n){if(e.tag===3)FH(e,e,n);else for(;t!==null;){if(t.tag===3){FH(t,e,n);break}else if(t.tag===1){var i=t.stateNode;if(typeof t.type.getDerivedStateFromError=="function"||typeof i.componentDidCatch=="function"&&(Jp===null||!Jp.has(i))){e=Uc(n,e),n=zpe(2),i=Zp(t,n,2),i!==null&&(Vpe(n,i,t,e),Rk(i,2),Kd(i));break}}t=t.return}}function gD(e,t,n){var i=e.pingCache;if(i===null){i=e.pingCache=new o4e;var r=new Set;i.set(t,r)}else r=i.get(t),r===void 0&&(r=new Set,i.set(t,r));r.has(n)||(WF=!0,r.add(n),e=f4e.bind(null,e,t,n),t.then(e,e))}function f4e(e,t,n){var i=e.pingCache;i!==null&&i.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,Dr===e&&(Ri&n)===n&&(ks===4||ks===3&&(Ri&62914560)===Ri&&300>ic()-Qj?!(rr&2)&&Mv(e,0):KF|=n,Pv===Ri&&(Pv=0)),Kd(e)}function _me(e,t){t===0&&(t=xhe()),e=Kb(e,t),e!==null&&(Rk(e,t),Kd(e))}function h4e(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),_me(e,n)}function p4e(e,t){var n=0;switch(e.tag){case 31:case 13:var i=e.stateNode,r=e.memoizedState;r!==null&&(n=r.retryLane);break;case 19:i=e.stateNode;break;case 22:i=e.stateNode._retryCache;break;default:throw Error(ft(314))}i!==null&&i.delete(t),_me(e,n)}function m4e(e,t){return uF(e,t)}var w_=null,iy=null,z3=!1,O_=!1,bD=!1,Qp=0;function Kd(e){e!==iy&&e.next===null&&(iy===null?w_=iy=e:iy=iy.next=e),O_=!0,z3||(z3=!0,b4e())}function $k(e,t){if(!bD&&O_){bD=!0;do for(var n=!1,i=w_;i!==null;){if(e!==0){var r=i.pendingLanes;if(r===0)var s=0;else{var a=i.suspendedLanes,l=i.pingedLanes;s=(1<<31-sc(42|e)+1)-1,s&=r&~(a&~l),s=s&201326741?s&201326741|1:s?s|2:0}s!==0&&(n=!0,BH(i,s))}else s=Ri,s=jj(i,i===Dr?s:0,i.cancelPendingCommit!==null||i.timeoutHandle!==-1),!(s&3)||jk(i,s)||(n=!0,BH(i,s));i=i.next}while(n);bD=!1}}function g4e(){Nme()}function Nme(){O_=z3=!1;var e=0;Qp!==0&&T4e()&&(e=Qp);for(var t=ic(),n=null,i=w_;i!==null;){var r=i.next,s=jme(i,t);s===0?(i.next=null,n===null?w_=r:n.next=r,r===null&&(iy=n)):(n=i,(e!==0||s&3)&&(O_=!0)),i=r}ba!==0&&ba!==5||$k(e),Qp!==0&&(Qp=0)}function jme(e,t){for(var n=e.suspendedLanes,i=e.pingedLanes,r=e.expirationTimes,s=e.pendingLanes&-62914561;0l)break;var d=c.transferSize,f=c.initiatorType;d&&HH(f)&&(c=c.responseEnd,a+=d*(c"u"?null:document;function Bme(e,t,n){var i=Cx;if(i&&typeof t=="string"&&t){var r=Bc(t);r='link[rel="'+e+'"][href="'+r+'"]',typeof n=="string"&&(r+='[crossorigin="'+n+'"]'),ZH.has(r)||(ZH.add(r),e={rel:e,crossOrigin:n,href:t},i.querySelector(r)===null&&(t=i.createElement("link"),io(t,"link",e),ja(t),i.head.appendChild(t)))}}function M4e(e){Ih.D(e),Bme("dns-prefetch",e,null)}function L4e(e,t){Ih.C(e,t),Bme("preconnect",e,t)}function $4e(e,t,n){Ih.L(e,t,n);var i=Cx;if(i&&e&&t){var r='link[rel="preload"][as="'+Bc(t)+'"]';t==="image"&&n&&n.imageSrcSet?(r+='[imagesrcset="'+Bc(n.imageSrcSet)+'"]',typeof n.imageSizes=="string"&&(r+='[imagesizes="'+Bc(n.imageSizes)+'"]')):r+='[href="'+Bc(e)+'"]';var s=r;switch(t){case"style":s=Lv(e);break;case"script":s=Tx(e)}iu.has(s)||(e=Zr({rel:"preload",href:t==="image"&&n&&n.imageSrcSet?void 0:e,as:t},n),iu.set(s,e),i.querySelector(r)!==null||t==="style"&&i.querySelector(Fk(s))||t==="script"&&i.querySelector(Bk(s))||(t=i.createElement("link"),io(t,"link",e),ja(t),i.head.appendChild(t)))}}function F4e(e,t){Ih.m(e,t);var n=Cx;if(n&&e){var i=t&&typeof t.as=="string"?t.as:"script",r='link[rel="modulepreload"][as="'+Bc(i)+'"][href="'+Bc(e)+'"]',s=r;switch(i){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":s=Tx(e)}if(!iu.has(s)&&(e=Zr({rel:"modulepreload",href:e},t),iu.set(s,e),n.querySelector(r)===null)){switch(i){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(n.querySelector(Bk(s)))return}i=n.createElement("link"),io(i,"link",e),ja(i),n.head.appendChild(i)}}}function B4e(e,t,n){Ih.S(e,t,n);var i=Cx;if(i&&e){var r=Wy(i).hoistableStyles,s=Lv(e);t=t||"default";var a=r.get(s);if(!a){var l={loading:0,preload:null};if(a=i.querySelector(Fk(s)))l.loading=5;else{e=Zr({rel:"stylesheet",href:e,"data-precedence":t},n),(n=iu.get(s))&&ZF(e,n);var c=a=i.createElement("link");ja(c),io(c,"link",e),c._p=new Promise(function(u,d){c.onload=u,c.onerror=d}),c.addEventListener("load",function(){l.loading|=1}),c.addEventListener("error",function(){l.loading|=2}),l.loading|=4,WA(a,t,i)}a={type:"stylesheet",instance:a,count:1,state:l},r.set(s,a)}}}function U4e(e,t){Ih.X(e,t);var n=Cx;if(n&&e){var i=Wy(n).hoistableScripts,r=Tx(e),s=i.get(r);s||(s=n.querySelector(Bk(r)),s||(e=Zr({src:e,async:!0},t),(t=iu.get(r))&&JF(e,t),s=n.createElement("script"),ja(s),io(s,"link",e),n.head.appendChild(s)),s={type:"script",instance:s,count:1,state:null},i.set(r,s))}}function Q4e(e,t){Ih.M(e,t);var n=Cx;if(n&&e){var i=Wy(n).hoistableScripts,r=Tx(e),s=i.get(r);s||(s=n.querySelector(Bk(r)),s||(e=Zr({src:e,async:!0,type:"module"},t),(t=iu.get(r))&&JF(e,t),s=n.createElement("script"),ja(s),io(s,"link",e),n.head.appendChild(s)),s={type:"script",instance:s,count:1,state:null},i.set(r,s))}}function JH(e,t,n,i){var r=(r=Gp.current)?E_(r):null;if(!r)throw Error(ft(446));switch(e){case"meta":case"title":return null;case"style":return typeof n.precedence=="string"&&typeof n.href=="string"?(t=Lv(n.href),n=Wy(r).hoistableStyles,i=n.get(t),i||(i={type:"style",instance:null,count:0,state:null},n.set(t,i)),i):{type:"void",instance:null,count:0,state:null};case"link":if(n.rel==="stylesheet"&&typeof n.href=="string"&&typeof n.precedence=="string"){e=Lv(n.href);var s=Wy(r).hoistableStyles,a=s.get(e);if(a||(r=r.ownerDocument||r,a={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},s.set(e,a),(s=r.querySelector(Fk(e)))&&!s._p&&(a.instance=s,a.state.loading=5),iu.has(e)||(n={rel:"preload",as:"style",href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy},iu.set(e,n),s||z4e(r,e,n,a.state))),t&&i===null)throw Error(ft(528,""));return a}if(t&&i!==null)throw Error(ft(529,""));return null;case"script":return t=n.async,n=n.src,typeof n=="string"&&t&&typeof t!="function"&&typeof t!="symbol"?(t=Tx(n),n=Wy(r).hoistableScripts,i=n.get(t),i||(i={type:"script",instance:null,count:0,state:null},n.set(t,i)),i):{type:"void",instance:null,count:0,state:null};default:throw Error(ft(444,e))}}function Lv(e){return'href="'+Bc(e)+'"'}function Fk(e){return'link[rel="stylesheet"]['+e+"]"}function Ume(e){return Zr({},e,{"data-precedence":e.precedence,precedence:null})}function z4e(e,t,n,i){e.querySelector('link[rel="preload"][as="style"]['+t+"]")?i.loading=1:(t=e.createElement("link"),i.preload=t,t.addEventListener("load",function(){return i.loading|=1}),t.addEventListener("error",function(){return i.loading|=2}),io(t,"link",n),ja(t),e.head.appendChild(t))}function Tx(e){return'[src="'+Bc(e)+'"]'}function Bk(e){return"script[async]"+e}function eq(e,t,n){if(t.count++,t.instance===null)switch(t.type){case"style":var i=e.querySelector('style[data-href~="'+Bc(n.href)+'"]');if(i)return t.instance=i,ja(i),i;var r=Zr({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return i=(e.ownerDocument||e).createElement("style"),ja(i),io(i,"style",r),WA(i,n.precedence,e),t.instance=i;case"stylesheet":r=Lv(n.href);var s=e.querySelector(Fk(r));if(s)return t.state.loading|=4,t.instance=s,ja(s),s;i=Ume(n),(r=iu.get(r))&&ZF(i,r),s=(e.ownerDocument||e).createElement("link"),ja(s);var a=s;return a._p=new Promise(function(l,c){a.onload=l,a.onerror=c}),io(s,"link",i),t.state.loading|=4,WA(s,n.precedence,e),t.instance=s;case"script":return s=Tx(n.src),(r=e.querySelector(Bk(s)))?(t.instance=r,ja(r),r):(i=n,(r=iu.get(s))&&(i=Zr({},n),JF(i,r)),e=e.ownerDocument||e,r=e.createElement("script"),ja(r),io(r,"link",i),e.head.appendChild(r),t.instance=r);case"void":return null;default:throw Error(ft(443,t.type))}else t.type==="stylesheet"&&!(t.state.loading&4)&&(i=t.instance,t.state.loading|=4,WA(i,n.precedence,e));return t.instance}function WA(e,t,n){for(var i=n.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),r=i.length?i[i.length-1]:null,s=r,a=0;a title"):null)}function V4e(e,t,n){if(n===1||t.itemProp!=null)return!1;switch(e){case"meta":case"title":return!0;case"style":if(typeof t.precedence!="string"||typeof t.href!="string"||t.href==="")break;return!0;case"link":if(typeof t.rel!="string"||typeof t.href!="string"||t.href===""||t.onLoad||t.onError)break;switch(t.rel){case"stylesheet":return e=t.disabled,typeof t.precedence=="string"&&e==null;default:return!0}case"script":if(t.async&&typeof t.async!="function"&&typeof t.async!="symbol"&&!t.onLoad&&!t.onError&&t.src&&typeof t.src=="string")return!0}return!1}function Qme(e){return!(e.type==="stylesheet"&&!(e.state.loading&3))}function H4e(e,t,n,i){if(n.type==="stylesheet"&&(typeof i.media!="string"||matchMedia(i.media).matches!==!1)&&!(n.state.loading&4)){if(n.instance===null){var r=Lv(i.href),s=t.querySelector(Fk(r));if(s){t=s._p,t!==null&&typeof t=="object"&&typeof t.then=="function"&&(e.count++,e=C_.bind(e),t.then(e,e)),n.state.loading|=4,n.instance=s,ja(s);return}s=t.ownerDocument||t,i=Ume(i),(r=iu.get(r))&&ZF(i,r),s=s.createElement("link"),ja(s);var a=s;a._p=new Promise(function(l,c){a.onload=l,a.onerror=c}),io(s,"link",i),n.instance=s}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&!(n.state.loading&3)&&(e.count++,n=C_.bind(e),t.addEventListener("load",n),t.addEventListener("error",n))}}var SD=0;function q4e(e,t){return e.stylesheets&&e.count===0&&GA(e,e.stylesheets),0SD?50:800)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(i),clearTimeout(r)}}:null}function C_(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)GA(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var T_=null;function GA(e,t){e.stylesheets=null,e.unsuspend!==null&&(e.count++,T_=new Map,t.forEach(W4e,e),T_=null,C_.call(e))}function W4e(e,t){if(!(t.state.loading&4)){var n=T_.get(e);if(n)var i=n.get(null);else{n=new Map,T_.set(e,n);for(var r=e.querySelectorAll("link[data-precedence],style[data-precedence]"),s=0;s"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(Xme)}catch(e){console.error(e)}}Xme(),rhe.exports=_j;var t6e=rhe.exports;const n6e=vx(t6e),r9=p.createContext({});function Wj(e){const t=p.useRef(null);return t.current===null&&(t.current=e()),t.current}const Kj=p.createContext(null),hS=p.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"});class i6e extends p.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const i=this.props.sizeRef.current;i.height=n.offsetHeight||0,i.width=n.offsetWidth||0,i.top=n.offsetTop,i.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function r6e({children:e,isPresent:t}){const n=p.useId(),i=p.useRef(null),r=p.useRef({width:0,height:0,top:0,left:0}),{nonce:s}=p.useContext(hS);return p.useInsertionEffect(()=>{const{width:a,height:l,top:c,left:u}=r.current;if(t||!i.current||!a||!l)return;i.current.dataset.motionPopId=n;const d=document.createElement("style");return s&&(d.nonce=s),document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` [data-motion-pop-id="${n}"] { position: absolute !important; width: ${a}px !important; @@ -99,361 +99,361 @@ Error generating stack: `+i.message+` top: ${c}px !important; left: ${u}px !important; } - `),()=>{document.head.removeChild(d)}},[t]),o.jsx(B4e,{isPresent:t,childRef:i,sizeRef:r,children:p.cloneElement(e,{ref:i})})}const Q4e=({children:e,initial:t,isPresent:n,onExitComplete:i,custom:r,presenceAffectsLayout:s,mode:a})=>{const l=Uj(z4e),c=p.useId(),u=p.useCallback(f=>{l.set(f,!0);for(const h of l.values())if(!h)return;i&&i()},[l,i]),d=p.useMemo(()=>({id:c,initial:t,isPresent:n,custom:r,onExitComplete:u,register:f=>(l.set(f,!1),()=>l.delete(f))}),s?[Math.random(),u]:[n,u]);return p.useMemo(()=>{l.forEach((f,h)=>l.set(h,!1))},[n]),p.useEffect(()=>{!n&&!l.size&&i&&i()},[n]),a==="popLayout"&&(e=o.jsx(U4e,{isPresent:n,children:e})),o.jsx(Qj.Provider,{value:d,children:e})};function z4e(){return new Map}function $me(e=!0){const t=p.useContext(Qj);if(t===null)return[!0,null];const{isPresent:n,onExitComplete:i,register:r}=t,s=p.useId();p.useEffect(()=>{e&&r(s)},[e]);const a=p.useCallback(()=>e&&i&&i(s),[s,i,e]);return!n&&i?[!1,a]:[!0]}const HC=e=>e.key||"";function eq(e){const t=[];return p.Children.forEach(e,n=>{p.isValidElement(n)&&t.push(n)}),t}const eF=typeof window<"u",Fme=eF?p.useLayoutEffect:p.useEffect,Ru=({children:e,custom:t,initial:n=!0,onExitComplete:i,presenceAffectsLayout:r=!0,mode:s="sync",propagate:a=!1})=>{const[l,c]=$me(a),u=p.useMemo(()=>eq(e),[e]),d=a&&!l?[]:u.map(HC),f=p.useRef(!0),h=p.useRef(u),m=Uj(()=>new Map),[g,b]=p.useState(u),[v,y]=p.useState(u);Fme(()=>{f.current=!1,h.current=u;for(let w=0;w{const k=HC(w),S=a&&!l?!1:u===v||d.includes(k),E=()=>{if(m.has(k))m.set(k,!0);else return;let C=!0;m.forEach(N=>{N||(C=!1)}),C&&(O==null||O(),y(h.current),a&&(c==null||c()),i&&i())};return o.jsx(Q4e,{isPresent:S,initial:!f.current||n?void 0:!1,custom:S?void 0:t,presenceAffectsLayout:r,mode:s,onExitComplete:S?void 0:E,children:w},k)})})},ac=e=>e;let Bme=ac;const V4e={useManualTiming:!1};function H4e(e){let t=new Set,n=new Set,i=!1,r=!1;const s=new WeakSet;let a={delta:0,timestamp:0,isProcessing:!1};function l(u){s.has(u)&&(c.schedule(u),e()),u(a)}const c={schedule:(u,d=!1,f=!1)=>{const m=f&&i?t:n;return d&&s.add(u),m.has(u)||m.add(u),u},cancel:u=>{n.delete(u),s.delete(u)},process:u=>{if(a=u,i){r=!0;return}i=!0,[t,n]=[n,t],t.forEach(l),t.clear(),i=!1,r&&(r=!1,c.process(u))}};return c}const qC=["read","resolveKeyframes","update","preRender","render","postRender"],q4e=40;function Ume(e,t){let n=!1,i=!0;const r={delta:0,timestamp:0,isProcessing:!1},s=()=>n=!0,a=qC.reduce((y,x)=>(y[x]=H4e(s),y),{}),{read:l,resolveKeyframes:c,update:u,preRender:d,render:f,postRender:h}=a,m=()=>{const y=performance.now();n=!1,r.delta=i?1e3/60:Math.max(Math.min(y-r.timestamp,q4e),1),r.timestamp=y,r.isProcessing=!0,l.process(r),c.process(r),u.process(r),d.process(r),f.process(r),h.process(r),r.isProcessing=!1,n&&t&&(i=!1,e(m))},g=()=>{n=!0,i=!0,r.isProcessing||e(m)};return{schedule:qC.reduce((y,x)=>{const O=a[x];return y[x]=(w,k=!1,S=!1)=>(n||g(),O.schedule(w,k,S)),y},{}),cancel:y=>{for(let x=0;xtq[e].some(n=>!!t[n])};function W4e(e){for(const t in e)Pv[t]={...Pv[t],...e[t]}}const G4e=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function E_(e){return e.startsWith("while")||e.startsWith("drag")&&e!=="draggable"||e.startsWith("layout")||e.startsWith("onTap")||e.startsWith("onPan")||e.startsWith("onLayout")||G4e.has(e)}let zme=e=>!E_(e);function Vme(e){e&&(zme=t=>t.startsWith("on")?!E_(t):e(t))}try{Vme(require("@emotion/is-prop-valid").default)}catch{}function K4e(e,t,n){const i={};for(const r in e)r==="values"&&typeof e.values=="object"||(zme(r)||n===!0&&E_(r)||!t&&!E_(r)||e.draggable&&r.startsWith("onDrag"))&&(i[r]=e[r]);return i}function X4e({children:e,isValidProp:t,...n}){t&&Vme(t),n={...p.useContext(cS),...n},n.isStatic=Uj(()=>n.isStatic);const i=p.useMemo(()=>n,[JSON.stringify(n.transition),n.transformPagePoint,n.reducedMotion]);return o.jsx(cS.Provider,{value:i,children:e})}function Y4e(e){if(typeof Proxy>"u")return e;const t=new Map,n=(...i)=>e(...i);return new Proxy(n,{get:(i,r)=>r==="create"?e:(t.has(r)||t.set(r,e(r)),t.get(r))})}const zj=p.createContext({});function uS(e){return typeof e=="string"||Array.isArray(e)}function Vj(e){return e!==null&&typeof e=="object"&&typeof e.start=="function"}const tF=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],nF=["initial",...tF];function Hj(e){return Vj(e.animate)||nF.some(t=>uS(e[t]))}function Hme(e){return!!(Hj(e)||e.variants)}function Z4e(e,t){if(Hj(e)){const{initial:n,animate:i}=e;return{initial:n===!1||uS(n)?n:void 0,animate:uS(i)?i:void 0}}return e.inherit!==!1?t:{}}function J4e(e){const{initial:t,animate:n}=Z4e(e,p.useContext(zj));return p.useMemo(()=>({initial:t,animate:n}),[nq(t),nq(n)])}function nq(e){return Array.isArray(e)?e.join(" "):e}const e6e=Symbol.for("motionComponentSymbol");function Sy(e){return e&&typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function t6e(e,t,n){return p.useCallback(i=>{i&&e.onMount&&e.onMount(i),t&&(i?t.mount(i):t.unmount()),n&&(typeof n=="function"?n(i):Sy(n)&&(n.current=i))},[t])}const iF=e=>e.replace(/([a-z])([A-Z])/gu,"$1-$2").toLowerCase(),n6e="framerAppearId",qme="data-"+iF(n6e),{schedule:rF}=Ume(queueMicrotask,!1),Wme=p.createContext({});function i6e(e,t,n,i,r){var s,a;const{visualElement:l}=p.useContext(zj),c=p.useContext(Qme),u=p.useContext(Qj),d=p.useContext(cS).reducedMotion,f=p.useRef(null);i=i||c.renderer,!f.current&&i&&(f.current=i(e,{visualState:t,parent:l,props:n,presenceContext:u,blockInitialAnimation:u?u.initial===!1:!1,reducedMotionConfig:d}));const h=f.current,m=p.useContext(Wme);h&&!h.projection&&r&&(h.type==="html"||h.type==="svg")&&r6e(f.current,n,r,m);const g=p.useRef(!1);p.useInsertionEffect(()=>{h&&g.current&&h.update(n,u)});const b=n[qme],v=p.useRef(!!b&&!(!((s=window.MotionHandoffIsComplete)===null||s===void 0)&&s.call(window,b))&&((a=window.MotionHasOptimisedAnimation)===null||a===void 0?void 0:a.call(window,b)));return Fme(()=>{h&&(g.current=!0,window.MotionIsMounted=!0,h.updateFeatures(),rF.render(h.render),v.current&&h.animationState&&h.animationState.animateChanges())}),p.useEffect(()=>{h&&(!v.current&&h.animationState&&h.animationState.animateChanges(),v.current&&(queueMicrotask(()=>{var y;(y=window.MotionHandoffMarkAsComplete)===null||y===void 0||y.call(window,b)}),v.current=!1))}),h}function r6e(e,t,n,i){const{layoutId:r,layout:s,drag:a,dragConstraints:l,layoutScroll:c,layoutRoot:u}=t;e.projection=new n(e.latestValues,t["data-framer-portal-id"]?void 0:Gme(e.parent)),e.projection.setOptions({layoutId:r,layout:s,alwaysMeasureLayout:!!a||l&&Sy(l),visualElement:e,animationType:typeof s=="string"?s:"both",initialPromotionConfig:i,layoutScroll:c,layoutRoot:u})}function Gme(e){if(e)return e.options.allowProjection!==!1?e.projection:Gme(e.parent)}function s6e({preloadedFeatures:e,createVisualElement:t,useRender:n,useVisualState:i,Component:r}){var s,a;e&&W4e(e);function l(u,d){let f;const h={...p.useContext(cS),...u,layoutId:a6e(u)},{isStatic:m}=h,g=J4e(u),b=i(u,m);if(!m&&eF){o6e();const v=l6e(h);f=v.MeasureLayout,g.visualElement=i6e(r,b,h,t,v.ProjectionNode)}return o.jsxs(zj.Provider,{value:g,children:[f&&g.visualElement?o.jsx(f,{visualElement:g.visualElement,...h}):null,n(r,u,t6e(b,g.visualElement,d),b,m,g.visualElement)]})}l.displayName=`motion.${typeof r=="string"?r:`create(${(a=(s=r.displayName)!==null&&s!==void 0?s:r.name)!==null&&a!==void 0?a:""})`}`;const c=p.forwardRef(l);return c[e6e]=r,c}function a6e({layoutId:e}){const t=p.useContext(J9).id;return t&&e!==void 0?t+"-"+e:e}function o6e(e,t){p.useContext(Qme).strict}function l6e(e){const{drag:t,layout:n}=Pv;if(!t&&!n)return{};const i={...t,...n};return{MeasureLayout:t!=null&&t.isEnabled(e)||n!=null&&n.isEnabled(e)?i.MeasureLayout:void 0,ProjectionNode:i.ProjectionNode}}const c6e=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function sF(e){return typeof e!="string"||e.includes("-")?!1:!!(c6e.indexOf(e)>-1||/[A-Z]/u.test(e))}function iq(e){const t=[{},{}];return e==null||e.values.forEach((n,i)=>{t[0][i]=n.get(),t[1][i]=n.getVelocity()}),t}function aF(e,t,n,i){if(typeof t=="function"){const[r,s]=iq(i);t=t(n!==void 0?n:e.custom,r,s)}if(typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"){const[r,s]=iq(i);t=t(n!==void 0?n:e.custom,r,s)}return t}const K3=e=>Array.isArray(e),u6e=e=>!!(e&&typeof e=="object"&&e.mix&&e.toValue),d6e=e=>K3(e)?e[e.length-1]||0:e,mo=e=>!!(e&&e.getVelocity);function q2(e){const t=mo(e)?e.get():e;return u6e(t)?t.toValue():t}function f6e({scrapeMotionValuesFromProps:e,createRenderState:t,onUpdate:n},i,r,s){const a={latestValues:h6e(i,r,s,e),renderState:t()};return n&&(a.onMount=l=>n({props:i,current:l,...a}),a.onUpdate=l=>n(l)),a}const Kme=e=>(t,n)=>{const i=p.useContext(zj),r=p.useContext(Qj),s=()=>f6e(e,t,i,r);return n?s():Uj(s)};function h6e(e,t,n,i){const r={},s=i(e,{});for(const h in s)r[h]=q2(s[h]);let{initial:a,animate:l}=e;const c=Hj(e),u=Hme(e);t&&u&&!c&&e.inherit!==!1&&(a===void 0&&(a=t.initial),l===void 0&&(l=t.animate));let d=n?n.initial===!1:!1;d=d||a===!1;const f=d?l:a;if(f&&typeof f!="boolean"&&!Vj(f)){const h=Array.isArray(f)?f:[f];for(let m=0;mt=>typeof t=="string"&&t.startsWith(e),Yme=Xme("--"),p6e=Xme("var(--"),oF=e=>p6e(e)?m6e.test(e.split("/*")[0].trim()):!1,m6e=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu,Zme=(e,t)=>t&&typeof e=="number"?t.transform(e):e,vh=(e,t,n)=>n>t?t:ntypeof e=="number",parse:parseFloat,transform:e=>e},dS={...kx,transform:e=>vh(0,1,e)},WC={...kx,default:1},Lk=e=>({test:t=>typeof t=="string"&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),mp=Lk("deg"),Id=Lk("%"),Rn=Lk("px"),g6e=Lk("vh"),b6e=Lk("vw"),rq={...Id,parse:e=>Id.parse(e)/100,transform:e=>Id.transform(e*100)},y6e={borderWidth:Rn,borderTopWidth:Rn,borderRightWidth:Rn,borderBottomWidth:Rn,borderLeftWidth:Rn,borderRadius:Rn,radius:Rn,borderTopLeftRadius:Rn,borderTopRightRadius:Rn,borderBottomRightRadius:Rn,borderBottomLeftRadius:Rn,width:Rn,maxWidth:Rn,height:Rn,maxHeight:Rn,top:Rn,right:Rn,bottom:Rn,left:Rn,padding:Rn,paddingTop:Rn,paddingRight:Rn,paddingBottom:Rn,paddingLeft:Rn,margin:Rn,marginTop:Rn,marginRight:Rn,marginBottom:Rn,marginLeft:Rn,backgroundPositionX:Rn,backgroundPositionY:Rn},v6e={rotate:mp,rotateX:mp,rotateY:mp,rotateZ:mp,scale:WC,scaleX:WC,scaleY:WC,scaleZ:WC,skew:mp,skewX:mp,skewY:mp,distance:Rn,translateX:Rn,translateY:Rn,translateZ:Rn,x:Rn,y:Rn,z:Rn,perspective:Rn,transformPerspective:Rn,opacity:dS,originX:rq,originY:rq,originZ:Rn},sq={...kx,transform:Math.round},lF={...y6e,...v6e,zIndex:sq,size:Rn,fillOpacity:dS,strokeOpacity:dS,numOctaves:sq},x6e={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},w6e=Sx.length;function O6e(e,t,n){let i="",r=!0;for(let s=0;s({style:{},transform:{},transformOrigin:{},vars:{}}),Jme=()=>({...dF(),attrs:{}}),fF=e=>typeof e=="string"&&e.toLowerCase()==="svg";function ege(e,{style:t,vars:n},i,r){Object.assign(e.style,t,r&&r.getProjectionStyles(i));for(const s in n)e.style.setProperty(s,n[s])}const tge=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function nge(e,t,n,i){ege(e,t,void 0,i);for(const r in t.attrs)e.setAttribute(tge.has(r)?r:iF(r),t.attrs[r])}const C_={};function T6e(e){Object.assign(C_,e)}function ige(e,{layout:t,layoutId:n}){return Hb.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!C_[e]||e==="opacity")}function hF(e,t,n){var i;const{style:r}=e,s={};for(const a in r)(mo(r[a])||t.style&&mo(t.style[a])||ige(a,e)||((i=n==null?void 0:n.getValue(a))===null||i===void 0?void 0:i.liveStyle)!==void 0)&&(s[a]=r[a]);return s}function rge(e,t,n){const i=hF(e,t,n);for(const r in e)if(mo(e[r])||mo(t[r])){const s=Sx.indexOf(r)!==-1?"attr"+r.charAt(0).toUpperCase()+r.substring(1):r;i[s]=e[r]}return i}function A6e(e,t){try{t.dimensions=typeof e.getBBox=="function"?e.getBBox():e.getBoundingClientRect()}catch{t.dimensions={x:0,y:0,width:0,height:0}}}const oq=["x","y","width","height","cx","cy","r"],_6e={useVisualState:Kme({scrapeMotionValuesFromProps:rge,createRenderState:Jme,onUpdate:({props:e,prevProps:t,current:n,renderState:i,latestValues:r})=>{if(!n)return;let s=!!e.drag;if(!s){for(const l in r)if(Hb.has(l)){s=!0;break}}if(!s)return;let a=!t;if(t)for(let l=0;l{A6e(n,i),Kr.render(()=>{uF(i,r,fF(n.tagName),e.transformTemplate),nge(n,i)})})}})},N6e={useVisualState:Kme({scrapeMotionValuesFromProps:hF,createRenderState:dF})};function sge(e,t,n){for(const i in t)!mo(t[i])&&!ige(i,n)&&(e[i]=t[i])}function j6e({transformTemplate:e},t){return p.useMemo(()=>{const n=dF();return cF(n,t,e),Object.assign({},n.vars,n.style)},[t])}function R6e(e,t){const n=e.style||{},i={};return sge(i,n,e),Object.assign(i,j6e(e,t)),i}function I6e(e,t){const n={},i=R6e(e,t);return e.drag&&e.dragListener!==!1&&(n.draggable=!1,i.userSelect=i.WebkitUserSelect=i.WebkitTouchCallout="none",i.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),e.tabIndex===void 0&&(e.onTap||e.onTapStart||e.whileTap)&&(n.tabIndex=0),n.style=i,n}function P6e(e,t,n,i){const r=p.useMemo(()=>{const s=Jme();return uF(s,t,fF(i),e.transformTemplate),{...s.attrs,style:{...s.style}}},[t]);if(e.style){const s={};sge(s,e.style,e),r.style={...s,...r.style}}return r}function D6e(e=!1){return(n,i,r,{latestValues:s},a)=>{const c=(sF(n)?P6e:I6e)(i,s,a,n),u=K4e(i,typeof n=="string",e),d=n!==p.Fragment?{...u,...c,ref:r}:{},{children:f}=i,h=p.useMemo(()=>mo(f)?f.get():f,[f]);return p.createElement(n,{...d,children:h})}}function M6e(e,t){return function(i,{forwardMotionProps:r}={forwardMotionProps:!1}){const a={...sF(i)?_6e:N6e,preloadedFeatures:e,useRender:D6e(r),createVisualElement:t,Component:i};return s6e(a)}}function age(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let i=0;i(W2===void 0&&Pd.set(qa.isProcessing||V4e.useManualTiming?qa.timestamp:performance.now()),W2),set:e=>{W2=e,queueMicrotask(L6e)}};function mF(e,t){e.indexOf(t)===-1&&e.push(t)}function gF(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class bF{constructor(){this.subscriptions=[]}add(t){return mF(this.subscriptions,t),()=>gF(this.subscriptions,t)}notify(t,n,i){const r=this.subscriptions.length;if(r)if(r===1)this.subscriptions[0](t,n,i);else for(let s=0;s!isNaN(parseFloat(e));class F6e{constructor(t,n={}){this.version="11.18.2",this.canTrackVelocity=null,this.events={},this.updateAndNotify=(i,r=!0)=>{const s=Pd.now();this.updatedAt!==s&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(i),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),r&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(t),this.owner=n.owner}setCurrent(t){this.current=t,this.updatedAt=Pd.now(),this.canTrackVelocity===null&&t!==void 0&&(this.canTrackVelocity=$6e(this.current))}setPrevFrameValue(t=this.current){this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt}onChange(t){return this.on("change",t)}on(t,n){this.events[t]||(this.events[t]=new bF);const i=this.events[t].add(n);return t==="change"?()=>{i(),Kr.read(()=>{this.events.change.getSize()||this.stop()})}:i}clearListeners(){for(const t in this.events)this.events[t].clear()}attach(t,n){this.passiveEffect=t,this.stopPassiveEffect=n}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}setWithVelocity(t,n,i){this.set(n),this.prev=void 0,this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt-i}jump(t,n=!0){this.updateAndNotify(t),this.prev=t,this.prevUpdatedAt=this.prevFrameValue=void 0,n&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return this.current}getPrevious(){return this.prev}getVelocity(){const t=Pd.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||t-this.updatedAt>lq)return 0;const n=Math.min(this.updatedAt-this.prevUpdatedAt,lq);return lge(parseFloat(this.current)-parseFloat(this.prevFrameValue),n)}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.animation=t(n),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function fS(e,t){return new F6e(e,t)}function B6e(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,fS(n))}function U6e(e,t){const n=qj(e,t);let{transitionEnd:i={},transition:r={},...s}=n||{};s={...s,...i};for(const a in s){const l=d6e(s[a]);B6e(e,a,l)}}function Q6e(e){return!!(mo(e)&&e.add)}function X3(e,t){const n=e.getValue("willChange");if(Q6e(n))return n.add(t)}function cge(e){return e.props[qme]}function yF(e){let t;return()=>(t===void 0&&(t=e()),t)}const z6e=yF(()=>window.ScrollTimeline!==void 0);class V6e{constructor(t){this.stop=()=>this.runAll("stop"),this.animations=t.filter(Boolean)}get finished(){return Promise.all(this.animations.map(t=>"finished"in t?t.finished:t))}getAll(t){return this.animations[0][t]}setAll(t,n){for(let i=0;i{if(z6e()&&r.attachTimeline)return r.attachTimeline(t);if(typeof n=="function")return n(r)});return()=>{i.forEach((r,s)=>{r&&r(),this.animations[s].stop()})}}get time(){return this.getAll("time")}set time(t){this.setAll("time",t)}get speed(){return this.getAll("speed")}set speed(t){this.setAll("speed",t)}get startTime(){return this.getAll("startTime")}get duration(){let t=0;for(let n=0;nn[t]())}flatten(){this.runAll("flatten")}play(){this.runAll("play")}pause(){this.runAll("pause")}cancel(){this.runAll("cancel")}complete(){this.runAll("complete")}}class H6e extends V6e{then(t,n){return Promise.all(this.animations).then(t).catch(n)}}const th=e=>e*1e3,nh=e=>e/1e3;function vF(e){return typeof e=="function"}function cq(e,t){e.timeline=t,e.onfinish=null}const xF=e=>Array.isArray(e)&&typeof e[0]=="number",q6e={linearEasing:void 0};function W6e(e,t){const n=yF(e);return()=>{var i;return(i=q6e[t])!==null&&i!==void 0?i:n()}}const T_=W6e(()=>{try{document.createElement("div").animate({opacity:0},{easing:"linear(0, 1)"})}catch{return!1}return!0},"linearEasing"),Dv=(e,t,n)=>{const i=t-e;return i===0?1:(n-e)/i},uge=(e,t,n=10)=>{let i="";const r=Math.max(Math.round(t/n),2);for(let s=0;s`cubic-bezier(${e}, ${t}, ${n}, ${i})`,Y3={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:Tw([0,.65,.55,1]),circOut:Tw([.55,0,1,.45]),backIn:Tw([.31,.01,.66,-.59]),backOut:Tw([.33,1.53,.69,.99])};function fge(e,t){if(e)return typeof e=="function"&&T_()?uge(e,t):xF(e)?Tw(e):Array.isArray(e)?e.map(n=>fge(n,t)||Y3.easeOut):Y3[e]}const hge=(e,t,n)=>(((1-3*n+3*t)*e+(3*n-6*t))*e+3*t)*e,G6e=1e-7,K6e=12;function X6e(e,t,n,i,r){let s,a,l=0;do a=t+(n-t)/2,s=hge(a,i,r)-e,s>0?n=a:t=a;while(Math.abs(s)>G6e&&++lX6e(s,0,1,e,n);return s=>s===0||s===1?s:hge(r(s),t,i)}const pge=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,mge=e=>t=>1-e(1-t),gge=$k(.33,1.53,.69,.99),wF=mge(gge),bge=pge(wF),yge=e=>(e*=2)<1?.5*wF(e):.5*(2-Math.pow(2,-10*(e-1))),OF=e=>1-Math.sin(Math.acos(e)),vge=mge(OF),xge=pge(OF),wge=e=>/^0[^.\s]+$/u.test(e);function Y6e(e){return typeof e=="number"?e===0:e!==null?e==="none"||e==="0"||wge(e):!0}const hO=e=>Math.round(e*1e5)/1e5,SF=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu;function Z6e(e){return e==null}const J6e=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,kF=(e,t)=>n=>!!(typeof n=="string"&&J6e.test(n)&&n.startsWith(e)||t&&!Z6e(n)&&Object.prototype.hasOwnProperty.call(n,t)),Oge=(e,t,n)=>i=>{if(typeof i!="string")return i;const[r,s,a,l]=i.match(SF);return{[e]:parseFloat(r),[t]:parseFloat(s),[n]:parseFloat(a),alpha:l!==void 0?parseFloat(l):1}},e$e=e=>vh(0,255,e),xD={...kx,transform:e=>Math.round(e$e(e))},Pg={test:kF("rgb","red"),parse:Oge("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:i=1})=>"rgba("+xD.transform(e)+", "+xD.transform(t)+", "+xD.transform(n)+", "+hO(dS.transform(i))+")"};function t$e(e){let t="",n="",i="",r="";return e.length>5?(t=e.substring(1,3),n=e.substring(3,5),i=e.substring(5,7),r=e.substring(7,9)):(t=e.substring(1,2),n=e.substring(2,3),i=e.substring(3,4),r=e.substring(4,5),t+=t,n+=n,i+=i,r+=r),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(i,16),alpha:r?parseInt(r,16)/255:1}}const Z3={test:kF("#"),parse:t$e,transform:Pg.transform},ky={test:kF("hsl","hue"),parse:Oge("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:i=1})=>"hsla("+Math.round(e)+", "+Id.transform(hO(t))+", "+Id.transform(hO(n))+", "+hO(dS.transform(i))+")"},fo={test:e=>Pg.test(e)||Z3.test(e)||ky.test(e),parse:e=>Pg.test(e)?Pg.parse(e):ky.test(e)?ky.parse(e):Z3.parse(e),transform:e=>typeof e=="string"?e:e.hasOwnProperty("red")?Pg.transform(e):ky.transform(e)},n$e=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu;function i$e(e){var t,n;return isNaN(e)&&typeof e=="string"&&(((t=e.match(SF))===null||t===void 0?void 0:t.length)||0)+(((n=e.match(n$e))===null||n===void 0?void 0:n.length)||0)>0}const Sge="number",kge="color",r$e="var",s$e="var(",uq="${}",a$e=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function hS(e){const t=e.toString(),n=[],i={color:[],number:[],var:[]},r=[];let s=0;const l=t.replace(a$e,c=>(fo.test(c)?(i.color.push(s),r.push(kge),n.push(fo.parse(c))):c.startsWith(s$e)?(i.var.push(s),r.push(r$e),n.push(c)):(i.number.push(s),r.push(Sge),n.push(parseFloat(c))),++s,uq)).split(uq);return{values:n,split:l,indexes:i,types:r}}function Ege(e){return hS(e).values}function Cge(e){const{split:t,types:n}=hS(e),i=t.length;return r=>{let s="";for(let a=0;atypeof e=="number"?0:e;function l$e(e){const t=Ege(e);return Cge(e)(t.map(o$e))}const hm={test:i$e,parse:Ege,createTransformer:Cge,getAnimatableNone:l$e},c$e=new Set(["brightness","contrast","saturate","opacity"]);function u$e(e){const[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[i]=n.match(SF)||[];if(!i)return e;const r=n.replace(i,"");let s=c$e.has(t)?1:0;return i!==n&&(s*=100),t+"("+s+r+")"}const d$e=/\b([a-z-]*)\(.*?\)/gu,J3={...hm,getAnimatableNone:e=>{const t=e.match(d$e);return t?t.map(u$e).join(" "):e}},f$e={...lF,color:fo,backgroundColor:fo,outlineColor:fo,fill:fo,stroke:fo,borderColor:fo,borderTopColor:fo,borderRightColor:fo,borderBottomColor:fo,borderLeftColor:fo,filter:J3,WebkitFilter:J3},EF=e=>f$e[e];function Tge(e,t){let n=EF(e);return n!==J3&&(n=hm),n.getAnimatableNone?n.getAnimatableNone(t):void 0}const h$e=new Set(["auto","none","0"]);function p$e(e,t,n){let i=0,r;for(;ie===kx||e===Rn,fq=(e,t)=>parseFloat(e.split(", ")[t]),hq=(e,t)=>(n,{transform:i})=>{if(i==="none"||!i)return 0;const r=i.match(/^matrix3d\((.+)\)$/u);if(r)return fq(r[1],t);{const s=i.match(/^matrix\((.+)\)$/u);return s?fq(s[1],e):0}},m$e=new Set(["x","y","z"]),g$e=Sx.filter(e=>!m$e.has(e));function b$e(e){const t=[];return g$e.forEach(n=>{const i=e.getValue(n);i!==void 0&&(t.push([n,i.get()]),i.set(n.startsWith("scale")?1:0))}),t}const Mv={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:hq(4,13),y:hq(5,14)};Mv.translateX=Mv.x;Mv.translateY=Mv.y;const tb=new Set;let e4=!1,t4=!1;function Age(){if(t4){const e=Array.from(tb).filter(i=>i.needsMeasurement),t=new Set(e.map(i=>i.element)),n=new Map;t.forEach(i=>{const r=b$e(i);r.length&&(n.set(i,r),i.render())}),e.forEach(i=>i.measureInitialState()),t.forEach(i=>{i.render();const r=n.get(i);r&&r.forEach(([s,a])=>{var l;(l=i.getValue(s))===null||l===void 0||l.set(a)})}),e.forEach(i=>i.measureEndState()),e.forEach(i=>{i.suspendedScrollY!==void 0&&window.scrollTo(0,i.suspendedScrollY)})}t4=!1,e4=!1,tb.forEach(e=>e.complete()),tb.clear()}function _ge(){tb.forEach(e=>{e.readKeyframes(),e.needsMeasurement&&(t4=!0)})}function y$e(){_ge(),Age()}class CF{constructor(t,n,i,r,s,a=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...t],this.onComplete=n,this.name=i,this.motionValue=r,this.element=s,this.isAsync=a}scheduleResolve(){this.isScheduled=!0,this.isAsync?(tb.add(this),e4||(e4=!0,Kr.read(_ge),Kr.resolveKeyframes(Age))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:t,name:n,element:i,motionValue:r}=this;for(let s=0;s/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(e),v$e=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function x$e(e){const t=v$e.exec(e);if(!t)return[,];const[,n,i,r]=t;return[`--${n??i}`,r]}function jge(e,t,n=1){const[i,r]=x$e(e);if(!i)return;const s=window.getComputedStyle(t).getPropertyValue(i);if(s){const a=s.trim();return Nge(a)?parseFloat(a):a}return oF(r)?jge(r,t,n+1):r}const Rge=e=>t=>t.test(e),w$e={test:e=>e==="auto",parse:e=>e},Ige=[kx,Rn,Id,mp,b6e,g6e,w$e],pq=e=>Ige.find(Rge(e));class Pge extends CF{constructor(t,n,i,r,s){super(t,n,i,r,s,!0)}readKeyframes(){const{unresolvedKeyframes:t,element:n,name:i}=this;if(!n||!n.current)return;super.readKeyframes();for(let c=0;c{n.getValue(c).set(u)}),this.resolveNoneKeyframes()}}const mq=(e,t)=>t==="zIndex"?!1:!!(typeof e=="number"||Array.isArray(e)||typeof e=="string"&&(hm.test(e)||e==="0")&&!e.startsWith("url("));function O$e(e){const t=e[0];if(e.length===1)return!0;for(let n=0;ne!==null;function Wj(e,{repeat:t,repeatType:n="loop"},i){const r=e.filter(k$e),s=t&&n!=="loop"&&t%2===1?0:r.length-1;return!s||i===void 0?r[s]:i}const E$e=40;class Dge{constructor({autoplay:t=!0,delay:n=0,type:i="keyframes",repeat:r=0,repeatDelay:s=0,repeatType:a="loop",...l}){this.isStopped=!1,this.hasAttemptedResolve=!1,this.createdAt=Pd.now(),this.options={autoplay:t,delay:n,type:i,repeat:r,repeatDelay:s,repeatType:a,...l},this.updateFinishedPromise()}calcStartTime(){return this.resolvedAt?this.resolvedAt-this.createdAt>E$e?this.resolvedAt:this.createdAt:this.createdAt}get resolved(){return!this._resolved&&!this.hasAttemptedResolve&&y$e(),this._resolved}onKeyframesResolved(t,n){this.resolvedAt=Pd.now(),this.hasAttemptedResolve=!0;const{name:i,type:r,velocity:s,delay:a,onComplete:l,onUpdate:c,isGenerator:u}=this.options;if(!u&&!S$e(t,i,r,s))if(a)this.options.duration=0;else{c&&c(Wj(t,this.options,n)),l&&l(),this.resolveFinishedPromise();return}const d=this.initPlayback(t,n);d!==!1&&(this._resolved={keyframes:t,finalKeyframe:n,...d},this.onPostResolved())}onPostResolved(){}then(t,n){return this.currentFinishedPromise.then(t,n)}flatten(){this.options.type="keyframes",this.options.ease="linear"}updateFinishedPromise(){this.currentFinishedPromise=new Promise(t=>{this.resolveFinishedPromise=t})}}const n4=2e4;function Mge(e){let t=0;const n=50;let i=e.next(t);for(;!i.done&&t=n4?1/0:t}const vs=(e,t,n)=>e+(t-e)*n;function wD(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function C$e({hue:e,saturation:t,lightness:n,alpha:i}){e/=360,t/=100,n/=100;let r=0,s=0,a=0;if(!t)r=s=a=n;else{const l=n<.5?n*(1+t):n+t-n*t,c=2*n-l;r=wD(c,l,e+1/3),s=wD(c,l,e),a=wD(c,l,e-1/3)}return{red:Math.round(r*255),green:Math.round(s*255),blue:Math.round(a*255),alpha:i}}function A_(e,t){return n=>n>0?t:e}const OD=(e,t,n)=>{const i=e*e,r=n*(t*t-i)+i;return r<0?0:Math.sqrt(r)},T$e=[Z3,Pg,ky],A$e=e=>T$e.find(t=>t.test(e));function gq(e){const t=A$e(e);if(!t)return!1;let n=t.parse(e);return t===ky&&(n=C$e(n)),n}const bq=(e,t)=>{const n=gq(e),i=gq(t);if(!n||!i)return A_(e,t);const r={...n};return s=>(r.red=OD(n.red,i.red,s),r.green=OD(n.green,i.green,s),r.blue=OD(n.blue,i.blue,s),r.alpha=vs(n.alpha,i.alpha,s),Pg.transform(r))},_$e=(e,t)=>n=>t(e(n)),Fk=(...e)=>e.reduce(_$e),i4=new Set(["none","hidden"]);function N$e(e,t){return i4.has(e)?n=>n<=0?e:t:n=>n>=1?t:e}function j$e(e,t){return n=>vs(e,t,n)}function TF(e){return typeof e=="number"?j$e:typeof e=="string"?oF(e)?A_:fo.test(e)?bq:P$e:Array.isArray(e)?Lge:typeof e=="object"?fo.test(e)?bq:R$e:A_}function Lge(e,t){const n=[...e],i=n.length,r=e.map((s,a)=>TF(s)(s,t[a]));return s=>{for(let a=0;a{for(const s in i)n[s]=i[s](r);return n}}function I$e(e,t){var n;const i=[],r={color:0,var:0,number:0};for(let s=0;s{const n=hm.createTransformer(t),i=hS(e),r=hS(t);return i.indexes.var.length===r.indexes.var.length&&i.indexes.color.length===r.indexes.color.length&&i.indexes.number.length>=r.indexes.number.length?i4.has(e)&&!r.values.length||i4.has(t)&&!i.values.length?N$e(e,t):Fk(Lge(I$e(i,r),r.values),n):A_(e,t)};function $ge(e,t,n){return typeof e=="number"&&typeof t=="number"&&typeof n=="number"?vs(e,t,n):TF(e)(e,t)}const D$e=5;function Fge(e,t,n){const i=Math.max(t-D$e,0);return lge(n-e(i),t-i)}const Ss={stiffness:100,damping:10,mass:1,velocity:0,duration:800,bounce:.3,visualDuration:.3,restSpeed:{granular:.01,default:2},restDelta:{granular:.005,default:.5},minDuration:.01,maxDuration:10,minDamping:.05,maxDamping:1},SD=.001;function M$e({duration:e=Ss.duration,bounce:t=Ss.bounce,velocity:n=Ss.velocity,mass:i=Ss.mass}){let r,s,a=1-t;a=vh(Ss.minDamping,Ss.maxDamping,a),e=vh(Ss.minDuration,Ss.maxDuration,nh(e)),a<1?(r=u=>{const d=u*a,f=d*e,h=d-n,m=r4(u,a),g=Math.exp(-f);return SD-h/m*g},s=u=>{const f=u*a*e,h=f*n+n,m=Math.pow(a,2)*Math.pow(u,2)*e,g=Math.exp(-f),b=r4(Math.pow(u,2),a);return(-r(u)+SD>0?-1:1)*((h-m)*g)/b}):(r=u=>{const d=Math.exp(-u*e),f=(u-n)*e+1;return-SD+d*f},s=u=>{const d=Math.exp(-u*e),f=(n-u)*(e*e);return d*f});const l=5/e,c=$$e(r,s,l);if(e=th(e),isNaN(c))return{stiffness:Ss.stiffness,damping:Ss.damping,duration:e};{const u=Math.pow(c,2)*i;return{stiffness:u,damping:a*2*Math.sqrt(i*u),duration:e}}}const L$e=12;function $$e(e,t,n){let i=n;for(let r=1;re[n]!==void 0)}function U$e(e){let t={velocity:Ss.velocity,stiffness:Ss.stiffness,damping:Ss.damping,mass:Ss.mass,isResolvedFromDuration:!1,...e};if(!yq(e,B$e)&&yq(e,F$e))if(e.visualDuration){const n=e.visualDuration,i=2*Math.PI/(n*1.2),r=i*i,s=2*vh(.05,1,1-(e.bounce||0))*Math.sqrt(r);t={...t,mass:Ss.mass,stiffness:r,damping:s}}else{const n=M$e(e);t={...t,...n,mass:Ss.mass},t.isResolvedFromDuration=!0}return t}function Bge(e=Ss.visualDuration,t=Ss.bounce){const n=typeof e!="object"?{visualDuration:e,keyframes:[0,1],bounce:t}:e;let{restSpeed:i,restDelta:r}=n;const s=n.keyframes[0],a=n.keyframes[n.keyframes.length-1],l={done:!1,value:s},{stiffness:c,damping:u,mass:d,duration:f,velocity:h,isResolvedFromDuration:m}=U$e({...n,velocity:-nh(n.velocity||0)}),g=h||0,b=u/(2*Math.sqrt(c*d)),v=a-s,y=nh(Math.sqrt(c/d)),x=Math.abs(v)<5;i||(i=x?Ss.restSpeed.granular:Ss.restSpeed.default),r||(r=x?Ss.restDelta.granular:Ss.restDelta.default);let O;if(b<1){const k=r4(y,b);O=S=>{const E=Math.exp(-b*y*S);return a-E*((g+b*y*v)/k*Math.sin(k*S)+v*Math.cos(k*S))}}else if(b===1)O=k=>a-Math.exp(-y*k)*(v+(g+y*v)*k);else{const k=y*Math.sqrt(b*b-1);O=S=>{const E=Math.exp(-b*y*S),C=Math.min(k*S,300);return a-E*((g+b*y*v)*Math.sinh(C)+k*v*Math.cosh(C))/k}}const w={calculatedDuration:m&&f||null,next:k=>{const S=O(k);if(m)l.done=k>=f;else{let E=0;b<1&&(E=k===0?th(g):Fge(O,k,S));const C=Math.abs(E)<=i,N=Math.abs(a-S)<=r;l.done=C&&N}return l.value=l.done?a:S,l},toString:()=>{const k=Math.min(Mge(w),n4),S=uge(E=>w.next(k*E).value,k,30);return k+"ms "+S}};return w}function vq({keyframes:e,velocity:t=0,power:n=.8,timeConstant:i=325,bounceDamping:r=10,bounceStiffness:s=500,modifyTarget:a,min:l,max:c,restDelta:u=.5,restSpeed:d}){const f=e[0],h={done:!1,value:f},m=C=>l!==void 0&&Cc,g=C=>l===void 0?c:c===void 0||Math.abs(l-C)-b*Math.exp(-C/i),O=C=>y+x(C),w=C=>{const N=x(C),_=O(C);h.done=Math.abs(N)<=u,h.value=h.done?y:_};let k,S;const E=C=>{m(h.value)&&(k=C,S=Bge({keyframes:[h.value,g(h.value)],velocity:Fge(O,C,h.value),damping:r,stiffness:s,restDelta:u,restSpeed:d}))};return E(0),{calculatedDuration:null,next:C=>{let N=!1;return!S&&k===void 0&&(N=!0,w(C),E(C)),k!==void 0&&C>=k?S.next(C-k):(!N&&w(C),h)}}}const Q$e=$k(.42,0,1,1),z$e=$k(0,0,.58,1),Uge=$k(.42,0,.58,1),V$e=e=>Array.isArray(e)&&typeof e[0]!="number",H$e={linear:ac,easeIn:Q$e,easeInOut:Uge,easeOut:z$e,circIn:OF,circInOut:xge,circOut:vge,backIn:wF,backInOut:bge,backOut:gge,anticipate:yge},xq=e=>{if(xF(e)){Bme(e.length===4);const[t,n,i,r]=e;return $k(t,n,i,r)}else if(typeof e=="string")return H$e[e];return e};function q$e(e,t,n){const i=[],r=n||$ge,s=e.length-1;for(let a=0;at[0];if(s===2&&t[0]===t[1])return()=>t[1];const a=e[0]===e[1];e[0]>e[s-1]&&(e=[...e].reverse(),t=[...t].reverse());const l=q$e(t,i,r),c=l.length,u=d=>{if(a&&d1)for(;fu(vh(e[0],e[s-1],d)):u}function G$e(e,t){const n=e[e.length-1];for(let i=1;i<=t;i++){const r=Dv(0,t,i);e.push(vs(n,1,r))}}function K$e(e){const t=[0];return G$e(t,e.length-1),t}function X$e(e,t){return e.map(n=>n*t)}function Y$e(e,t){return e.map(()=>t||Uge).splice(0,e.length-1)}function __({duration:e=300,keyframes:t,times:n,ease:i="easeInOut"}){const r=V$e(i)?i.map(xq):xq(i),s={done:!1,value:t[0]},a=X$e(n&&n.length===t.length?n:K$e(t),e),l=W$e(a,t,{ease:Array.isArray(r)?r:Y$e(t,r)});return{calculatedDuration:e,next:c=>(s.value=l(c),s.done=c>=e,s)}}const Z$e=e=>{const t=({timestamp:n})=>e(n);return{start:()=>Kr.update(t,!0),stop:()=>fm(t),now:()=>qa.isProcessing?qa.timestamp:Pd.now()}},J$e={decay:vq,inertia:vq,tween:__,keyframes:__,spring:Bge},e8e=e=>e/100;class AF extends Dge{constructor(t){super(t),this.holdTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState="running",this.startTime=null,this.state="idle",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.teardown();const{onStop:c}=this.options;c&&c()};const{name:n,motionValue:i,element:r,keyframes:s}=this.options,a=(r==null?void 0:r.KeyframeResolver)||CF,l=(c,u)=>this.onKeyframesResolved(c,u);this.resolver=new a(s,l,n,i,r),this.resolver.scheduleResolve()}flatten(){super.flatten(),this._resolved&&Object.assign(this._resolved,this.initPlayback(this._resolved.keyframes))}initPlayback(t){const{type:n="keyframes",repeat:i=0,repeatDelay:r=0,repeatType:s,velocity:a=0}=this.options,l=vF(n)?n:J$e[n]||__;let c,u;l!==__&&typeof t[0]!="number"&&(c=Fk(e8e,$ge(t[0],t[1])),t=[0,100]);const d=l({...this.options,keyframes:t});s==="mirror"&&(u=l({...this.options,keyframes:[...t].reverse(),velocity:-a})),d.calculatedDuration===null&&(d.calculatedDuration=Mge(d));const{calculatedDuration:f}=d,h=f+r,m=h*(i+1)-r;return{generator:d,mirroredGenerator:u,mapPercentToKeyframes:c,calculatedDuration:f,resolvedDuration:h,totalDuration:m}}onPostResolved(){const{autoplay:t=!0}=this.options;this.play(),this.pendingPlayState==="paused"||!t?this.pause():this.state=this.pendingPlayState}tick(t,n=!1){const{resolved:i}=this;if(!i){const{keyframes:C}=this.options;return{done:!0,value:C[C.length-1]}}const{finalKeyframe:r,generator:s,mirroredGenerator:a,mapPercentToKeyframes:l,keyframes:c,calculatedDuration:u,totalDuration:d,resolvedDuration:f}=i;if(this.startTime===null)return s.next(0);const{delay:h,repeat:m,repeatType:g,repeatDelay:b,onUpdate:v}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,t):this.speed<0&&(this.startTime=Math.min(t-d/this.speed,this.startTime)),n?this.currentTime=t:this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=Math.round(t-this.startTime)*this.speed;const y=this.currentTime-h*(this.speed>=0?1:-1),x=this.speed>=0?y<0:y>d;this.currentTime=Math.max(y,0),this.state==="finished"&&this.holdTime===null&&(this.currentTime=d);let O=this.currentTime,w=s;if(m){const C=Math.min(this.currentTime,d)/f;let N=Math.floor(C),_=C%1;!_&&C>=1&&(_=1),_===1&&N--,N=Math.min(N,m+1),!!(N%2)&&(g==="reverse"?(_=1-_,b&&(_-=b/f)):g==="mirror"&&(w=a)),O=vh(0,1,_)*f}const k=x?{done:!1,value:c[0]}:w.next(O);l&&(k.value=l(k.value));let{done:S}=k;!x&&u!==null&&(S=this.speed>=0?this.currentTime>=d:this.currentTime<=0);const E=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&S);return E&&r!==void 0&&(k.value=Wj(c,this.options,r)),v&&v(k.value),E&&this.finish(),k}get duration(){const{resolved:t}=this;return t?nh(t.calculatedDuration):0}get time(){return nh(this.currentTime)}set time(t){t=th(t),this.currentTime=t,this.holdTime!==null||this.speed===0?this.holdTime=t:this.driver&&(this.startTime=this.driver.now()-t/this.speed)}get speed(){return this.playbackSpeed}set speed(t){const n=this.playbackSpeed!==t;this.playbackSpeed=t,n&&(this.time=nh(this.currentTime))}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved){this.pendingPlayState="running";return}if(this.isStopped)return;const{driver:t=Z$e,onPlay:n,startTime:i}=this.options;this.driver||(this.driver=t(s=>this.tick(s))),n&&n();const r=this.driver.now();this.holdTime!==null?this.startTime=r-this.holdTime:this.startTime?this.state==="finished"&&(this.startTime=r):this.startTime=i??this.calcStartTime(),this.state==="finished"&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state="running",this.driver.start()}pause(){var t;if(!this._resolved){this.pendingPlayState="paused";return}this.state="paused",this.holdTime=(t=this.currentTime)!==null&&t!==void 0?t:0}complete(){this.state!=="running"&&this.play(),this.pendingPlayState=this.state="finished",this.holdTime=null}finish(){this.teardown(),this.state="finished";const{onComplete:t}=this.options;t&&t()}cancel(){this.cancelTime!==null&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state="idle",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(t){return this.startTime=0,this.tick(t,!0)}}const t8e=new Set(["opacity","clipPath","filter","transform"]);function n8e(e,t,n,{delay:i=0,duration:r=300,repeat:s=0,repeatType:a="loop",ease:l="easeInOut",times:c}={}){const u={[t]:n};c&&(u.offset=c);const d=fge(l,r);return Array.isArray(d)&&(u.easing=d),e.animate(u,{delay:i,duration:r,easing:Array.isArray(d)?"linear":d,fill:"both",iterations:s+1,direction:a==="reverse"?"alternate":"normal"})}const i8e=yF(()=>Object.hasOwnProperty.call(Element.prototype,"animate")),N_=10,r8e=2e4;function s8e(e){return vF(e.type)||e.type==="spring"||!dge(e.ease)}function a8e(e,t){const n=new AF({...t,keyframes:e,repeat:0,delay:0,isGenerator:!0});let i={done:!1,value:e[0]};const r=[];let s=0;for(;!i.done&&sthis.onKeyframesResolved(a,l),n,i,r),this.resolver.scheduleResolve()}initPlayback(t,n){let{duration:i=300,times:r,ease:s,type:a,motionValue:l,name:c,startTime:u}=this.options;if(!l.owner||!l.owner.current)return!1;if(typeof s=="string"&&T_()&&o8e(s)&&(s=Qge[s]),s8e(this.options)){const{onComplete:f,onUpdate:h,motionValue:m,element:g,...b}=this.options,v=a8e(t,b);t=v.keyframes,t.length===1&&(t[1]=t[0]),i=v.duration,r=v.times,s=v.ease,a="keyframes"}const d=n8e(l.owner.current,c,t,{...this.options,duration:i,times:r,ease:s});return d.startTime=u??this.calcStartTime(),this.pendingTimeline?(cq(d,this.pendingTimeline),this.pendingTimeline=void 0):d.onfinish=()=>{const{onComplete:f}=this.options;l.set(Wj(t,this.options,n)),f&&f(),this.cancel(),this.resolveFinishedPromise()},{animation:d,duration:i,times:r,type:a,ease:s,keyframes:t}}get duration(){const{resolved:t}=this;if(!t)return 0;const{duration:n}=t;return nh(n)}get time(){const{resolved:t}=this;if(!t)return 0;const{animation:n}=t;return nh(n.currentTime||0)}set time(t){const{resolved:n}=this;if(!n)return;const{animation:i}=n;i.currentTime=th(t)}get speed(){const{resolved:t}=this;if(!t)return 1;const{animation:n}=t;return n.playbackRate}set speed(t){const{resolved:n}=this;if(!n)return;const{animation:i}=n;i.playbackRate=t}get state(){const{resolved:t}=this;if(!t)return"idle";const{animation:n}=t;return n.playState}get startTime(){const{resolved:t}=this;if(!t)return null;const{animation:n}=t;return n.startTime}attachTimeline(t){if(!this._resolved)this.pendingTimeline=t;else{const{resolved:n}=this;if(!n)return ac;const{animation:i}=n;cq(i,t)}return ac}play(){if(this.isStopped)return;const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.playState==="finished"&&this.updateFinishedPromise(),n.play()}pause(){const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.resolveFinishedPromise(),this.updateFinishedPromise();const{resolved:t}=this;if(!t)return;const{animation:n,keyframes:i,duration:r,type:s,ease:a,times:l}=t;if(n.playState==="idle"||n.playState==="finished")return;if(this.time){const{motionValue:u,onUpdate:d,onComplete:f,element:h,...m}=this.options,g=new AF({...m,keyframes:i,duration:r,type:s,ease:a,times:l,isGenerator:!0}),b=th(this.time);u.setWithVelocity(g.sample(b-N_).value,g.sample(b).value,N_)}const{onStop:c}=this.options;c&&c(),this.cancel()}complete(){const{resolved:t}=this;t&&t.animation.finish()}cancel(){const{resolved:t}=this;t&&t.animation.cancel()}static supports(t){const{motionValue:n,name:i,repeatDelay:r,repeatType:s,damping:a,type:l}=t;if(!n||!n.owner||!(n.owner.current instanceof HTMLElement))return!1;const{onUpdate:c,transformTemplate:u}=n.owner.getProps();return i8e()&&i&&t8e.has(i)&&!c&&!u&&!r&&s!=="mirror"&&a!==0&&l!=="inertia"}}const l8e={type:"spring",stiffness:500,damping:25,restSpeed:10},c8e=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),u8e={type:"keyframes",duration:.8},d8e={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},f8e=(e,{keyframes:t})=>t.length>2?u8e:Hb.has(e)?e.startsWith("scale")?c8e(t[1]):l8e:d8e;function h8e({when:e,delay:t,delayChildren:n,staggerChildren:i,staggerDirection:r,repeat:s,repeatType:a,repeatDelay:l,from:c,elapsed:u,...d}){return!!Object.keys(d).length}const _F=(e,t,n,i={},r,s)=>a=>{const l=pF(i,e)||{},c=l.delay||i.delay||0;let{elapsed:u=0}=i;u=u-th(c);let d={keyframes:Array.isArray(n)?n:[null,n],ease:"easeOut",velocity:t.getVelocity(),...l,delay:-u,onUpdate:h=>{t.set(h),l.onUpdate&&l.onUpdate(h)},onComplete:()=>{a(),l.onComplete&&l.onComplete()},name:e,motionValue:t,element:s?void 0:r};h8e(l)||(d={...d,...f8e(e,d)}),d.duration&&(d.duration=th(d.duration)),d.repeatDelay&&(d.repeatDelay=th(d.repeatDelay)),d.from!==void 0&&(d.keyframes[0]=d.from);let f=!1;if((d.type===!1||d.duration===0&&!d.repeatDelay)&&(d.duration=0,d.delay===0&&(f=!0)),f&&!s&&t.get()!==void 0){const h=Wj(d.keyframes,l);if(h!==void 0)return Kr.update(()=>{d.onUpdate(h),d.onComplete()}),new H6e([])}return!s&&wq.supports(d)?new wq(d):new AF(d)};function p8e({protectedKeys:e,needsAnimating:t},n){const i=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,i}function zge(e,t,{delay:n=0,transitionOverride:i,type:r}={}){var s;let{transition:a=e.getDefaultTransition(),transitionEnd:l,...c}=t;i&&(a=i);const u=[],d=r&&e.animationState&&e.animationState.getState()[r];for(const f in c){const h=e.getValue(f,(s=e.latestValues[f])!==null&&s!==void 0?s:null),m=c[f];if(m===void 0||d&&p8e(d,f))continue;const g={delay:n,...pF(a||{},f)};let b=!1;if(window.MotionHandoffAnimation){const y=cge(e);if(y){const x=window.MotionHandoffAnimation(y,f,Kr);x!==null&&(g.startTime=x,b=!0)}}X3(e,f),h.start(_F(f,h,m,e.shouldReduceMotion&&oge.has(f)?{type:!1}:g,e,b));const v=h.animation;v&&u.push(v)}return l&&Promise.all(u).then(()=>{Kr.update(()=>{l&&U6e(e,l)})}),u}function s4(e,t,n={}){var i;const r=qj(e,t,n.type==="exit"?(i=e.presenceContext)===null||i===void 0?void 0:i.custom:void 0);let{transition:s=e.getDefaultTransition()||{}}=r||{};n.transitionOverride&&(s=n.transitionOverride);const a=r?()=>Promise.all(zge(e,r,n)):()=>Promise.resolve(),l=e.variantChildren&&e.variantChildren.size?(u=0)=>{const{delayChildren:d=0,staggerChildren:f,staggerDirection:h}=s;return m8e(e,t,d+u,f,h,n)}:()=>Promise.resolve(),{when:c}=s;if(c){const[u,d]=c==="beforeChildren"?[a,l]:[l,a];return u().then(()=>d())}else return Promise.all([a(),l(n.delay)])}function m8e(e,t,n=0,i=0,r=1,s){const a=[],l=(e.variantChildren.size-1)*i,c=r===1?(u=0)=>u*i:(u=0)=>l-u*i;return Array.from(e.variantChildren).sort(g8e).forEach((u,d)=>{u.notify("AnimationStart",t),a.push(s4(u,t,{...s,delay:n+c(d)}).then(()=>u.notify("AnimationComplete",t)))}),Promise.all(a)}function g8e(e,t){return e.sortNodePosition(t)}function b8e(e,t,n={}){e.notify("AnimationStart",t);let i;if(Array.isArray(t)){const r=t.map(s=>s4(e,s,n));i=Promise.all(r)}else if(typeof t=="string")i=s4(e,t,n);else{const r=typeof t=="function"?qj(e,t,n.custom):t;i=Promise.all(zge(e,r,n))}return i.then(()=>{e.notify("AnimationComplete",t)})}const y8e=nF.length;function Vge(e){if(!e)return;if(!e.isControllingVariants){const n=e.parent?Vge(e.parent)||{}:{};return e.props.initial!==void 0&&(n.initial=e.props.initial),n}const t={};for(let n=0;nPromise.all(t.map(({animation:n,options:i})=>b8e(e,n,i)))}function O8e(e){let t=w8e(e),n=Oq(),i=!0;const r=c=>(u,d)=>{var f;const h=qj(e,d,c==="exit"?(f=e.presenceContext)===null||f===void 0?void 0:f.custom:void 0);if(h){const{transition:m,transitionEnd:g,...b}=h;u={...u,...b,...g}}return u};function s(c){t=c(e)}function a(c){const{props:u}=e,d=Vge(e.parent)||{},f=[],h=new Set;let m={},g=1/0;for(let v=0;vg&&w,N=!1;const _=Array.isArray(O)?O:[O];let j=_.reduce(r(y),{});k===!1&&(j={});const{prevResolvedValues:A={}}=x,F={...A,...j},T=L=>{C=!0,h.has(L)&&(N=!0,h.delete(L)),x.needsAnimating[L]=!0;const M=e.getValue(L);M&&(M.liveStyle=!1)};for(const L in F){const M=j[L],U=A[L];if(m.hasOwnProperty(L))continue;let I=!1;K3(M)&&K3(U)?I=!age(M,U):I=M!==U,I?M!=null?T(L):h.add(L):M!==void 0&&h.has(L)?T(L):x.protectedKeys[L]=!0}x.prevProp=O,x.prevResolvedValues=j,x.isActive&&(m={...m,...j}),i&&e.blockInitialAnimation&&(C=!1),C&&(!(S&&E)||N)&&f.push(..._.map(L=>({animation:L,options:{type:y}})))}if(h.size){const v={};h.forEach(y=>{const x=e.getBaseTarget(y),O=e.getValue(y);O&&(O.liveStyle=!0),v[y]=x??null}),f.push({animation:v})}let b=!!f.length;return i&&(u.initial===!1||u.initial===u.animate)&&!e.manuallyAnimateOnMount&&(b=!1),i=!1,b?t(f):Promise.resolve()}function l(c,u){var d;if(n[c].isActive===u)return Promise.resolve();(d=e.variantChildren)===null||d===void 0||d.forEach(h=>{var m;return(m=h.animationState)===null||m===void 0?void 0:m.setActive(c,u)}),n[c].isActive=u;const f=a(c);for(const h in n)n[h].protectedKeys={};return f}return{animateChanges:a,setActive:l,setAnimateFunction:s,getState:()=>n,reset:()=>{n=Oq(),i=!0}}}function S8e(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!age(t,e):!1}function eg(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function Oq(){return{animate:eg(!0),whileInView:eg(),whileHover:eg(),whileTap:eg(),whileDrag:eg(),whileFocus:eg(),exit:eg()}}class Mm{constructor(t){this.isMounted=!1,this.node=t}update(){}}class k8e extends Mm{constructor(t){super(t),t.animationState||(t.animationState=O8e(t))}updateAnimationControlsSubscription(){const{animate:t}=this.node.getProps();Vj(t)&&(this.unmountControls=t.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:t}=this.node.getProps(),{animate:n}=this.node.prevProps||{};t!==n&&this.updateAnimationControlsSubscription()}unmount(){var t;this.node.animationState.reset(),(t=this.unmountControls)===null||t===void 0||t.call(this)}}let E8e=0;class C8e extends Mm{constructor(){super(...arguments),this.id=E8e++}update(){if(!this.node.presenceContext)return;const{isPresent:t,onExitComplete:n}=this.node.presenceContext,{isPresent:i}=this.node.prevPresenceContext||{};if(!this.node.animationState||t===i)return;const r=this.node.animationState.setActive("exit",!t);n&&!t&&r.then(()=>n(this.id))}mount(){const{register:t}=this.node.presenceContext||{};t&&(this.unmount=t(this.id))}unmount(){}}const T8e={animation:{Feature:k8e},exit:{Feature:C8e}},vu={x:!1,y:!1};function Hge(){return vu.x||vu.y}function A8e(e){return e==="x"||e==="y"?vu[e]?null:(vu[e]=!0,()=>{vu[e]=!1}):vu.x||vu.y?null:(vu.x=vu.y=!0,()=>{vu.x=vu.y=!1})}const NF=e=>e.pointerType==="mouse"?typeof e.button!="number"||e.button<=0:e.isPrimary!==!1;function pS(e,t,n,i={passive:!0}){return e.addEventListener(t,n,i),()=>e.removeEventListener(t,n)}function Bk(e){return{point:{x:e.pageX,y:e.pageY}}}const _8e=e=>t=>NF(t)&&e(t,Bk(t));function pO(e,t,n,i){return pS(e,t,_8e(n),i)}const Sq=(e,t)=>Math.abs(e-t);function N8e(e,t){const n=Sq(e.x,t.x),i=Sq(e.y,t.y);return Math.sqrt(n**2+i**2)}class qge{constructor(t,n,{transformPagePoint:i,contextWindow:r,dragSnapToOrigin:s=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const f=ED(this.lastMoveEventInfo,this.history),h=this.startEvent!==null,m=N8e(f.offset,{x:0,y:0})>=3;if(!h&&!m)return;const{point:g}=f,{timestamp:b}=qa;this.history.push({...g,timestamp:b});const{onStart:v,onMove:y}=this.handlers;h||(v&&v(this.lastMoveEvent,f),this.startEvent=this.lastMoveEvent),y&&y(this.lastMoveEvent,f)},this.handlePointerMove=(f,h)=>{this.lastMoveEvent=f,this.lastMoveEventInfo=kD(h,this.transformPagePoint),Kr.update(this.updatePoint,!0)},this.handlePointerUp=(f,h)=>{this.end();const{onEnd:m,onSessionEnd:g,resumeAnimation:b}=this.handlers;if(this.dragSnapToOrigin&&b&&b(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const v=ED(f.type==="pointercancel"?this.lastMoveEventInfo:kD(h,this.transformPagePoint),this.history);this.startEvent&&m&&m(f,v),g&&g(f,v)},!NF(t))return;this.dragSnapToOrigin=s,this.handlers=n,this.transformPagePoint=i,this.contextWindow=r||window;const a=Bk(t),l=kD(a,this.transformPagePoint),{point:c}=l,{timestamp:u}=qa;this.history=[{...c,timestamp:u}];const{onSessionStart:d}=n;d&&d(t,ED(l,this.history)),this.removeListeners=Fk(pO(this.contextWindow,"pointermove",this.handlePointerMove),pO(this.contextWindow,"pointerup",this.handlePointerUp),pO(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),fm(this.updatePoint)}}function kD(e,t){return t?{point:t(e.point)}:e}function kq(e,t){return{x:e.x-t.x,y:e.y-t.y}}function ED({point:e},t){return{point:e,delta:kq(e,Wge(t)),offset:kq(e,j8e(t)),velocity:R8e(t,.1)}}function j8e(e){return e[0]}function Wge(e){return e[e.length-1]}function R8e(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,i=null;const r=Wge(e);for(;n>=0&&(i=e[n],!(r.timestamp-i.timestamp>th(t)));)n--;if(!i)return{x:0,y:0};const s=nh(r.timestamp-i.timestamp);if(s===0)return{x:0,y:0};const a={x:(r.x-i.x)/s,y:(r.y-i.y)/s};return a.x===1/0&&(a.x=0),a.y===1/0&&(a.y=0),a}const Gge=1e-4,I8e=1-Gge,P8e=1+Gge,Kge=.01,D8e=0-Kge,M8e=0+Kge;function fc(e){return e.max-e.min}function L8e(e,t,n){return Math.abs(e-t)<=n}function Eq(e,t,n,i=.5){e.origin=i,e.originPoint=vs(t.min,t.max,e.origin),e.scale=fc(n)/fc(t),e.translate=vs(n.min,n.max,e.origin)-e.originPoint,(e.scale>=I8e&&e.scale<=P8e||isNaN(e.scale))&&(e.scale=1),(e.translate>=D8e&&e.translate<=M8e||isNaN(e.translate))&&(e.translate=0)}function mO(e,t,n,i){Eq(e.x,t.x,n.x,i?i.originX:void 0),Eq(e.y,t.y,n.y,i?i.originY:void 0)}function Cq(e,t,n){e.min=n.min+t.min,e.max=e.min+fc(t)}function $8e(e,t,n){Cq(e.x,t.x,n.x),Cq(e.y,t.y,n.y)}function Tq(e,t,n){e.min=t.min-n.min,e.max=e.min+fc(t)}function gO(e,t,n){Tq(e.x,t.x,n.x),Tq(e.y,t.y,n.y)}function F8e(e,{min:t,max:n},i){return t!==void 0&&en&&(e=i?vs(n,e,i.max):Math.min(e,n)),e}function Aq(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function B8e(e,{top:t,left:n,bottom:i,right:r}){return{x:Aq(e.x,n,r),y:Aq(e.y,t,i)}}function _q(e,t){let n=t.min-e.min,i=t.max-e.max;return t.max-t.mini?n=Dv(t.min,t.max-i,e.min):i>r&&(n=Dv(e.min,e.max-r,t.min)),vh(0,1,n)}function z8e(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const a4=.35;function V8e(e=a4){return e===!1?e=0:e===!0&&(e=a4),{x:Nq(e,"left","right"),y:Nq(e,"top","bottom")}}function Nq(e,t,n){return{min:jq(e,t),max:jq(e,n)}}function jq(e,t){return typeof e=="number"?e:e[t]||0}const Rq=()=>({translate:0,scale:1,origin:0,originPoint:0}),Ey=()=>({x:Rq(),y:Rq()}),Iq=()=>({min:0,max:0}),Rs=()=>({x:Iq(),y:Iq()});function Rc(e){return[e("x"),e("y")]}function Xge({top:e,left:t,right:n,bottom:i}){return{x:{min:t,max:n},y:{min:e,max:i}}}function H8e({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function q8e(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),i=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:i.y,right:i.x}}function CD(e){return e===void 0||e===1}function o4({scale:e,scaleX:t,scaleY:n}){return!CD(e)||!CD(t)||!CD(n)}function bg(e){return o4(e)||Yge(e)||e.z||e.rotate||e.rotateX||e.rotateY||e.skewX||e.skewY}function Yge(e){return Pq(e.x)||Pq(e.y)}function Pq(e){return e&&e!=="0%"}function j_(e,t,n){const i=e-n,r=t*i;return n+r}function Dq(e,t,n,i,r){return r!==void 0&&(e=j_(e,r,i)),j_(e,n,i)+t}function l4(e,t=0,n=1,i,r){e.min=Dq(e.min,t,n,i,r),e.max=Dq(e.max,t,n,i,r)}function Zge(e,{x:t,y:n}){l4(e.x,t.translate,t.scale,t.originPoint),l4(e.y,n.translate,n.scale,n.originPoint)}const Mq=.999999999999,Lq=1.0000000000001;function W8e(e,t,n,i=!1){const r=n.length;if(!r)return;t.x=t.y=1;let s,a;for(let l=0;lMq&&(t.x=1),t.yMq&&(t.y=1)}function Cy(e,t){e.min=e.min+t,e.max=e.max+t}function $q(e,t,n,i,r=.5){const s=vs(e.min,e.max,r);l4(e,t,n,s,i)}function Ty(e,t){$q(e.x,t.x,t.scaleX,t.scale,t.originX),$q(e.y,t.y,t.scaleY,t.scale,t.originY)}function Jge(e,t){return Xge(q8e(e.getBoundingClientRect(),t))}function G8e(e,t,n){const i=Jge(e,n),{scroll:r}=t;return r&&(Cy(i.x,r.offset.x),Cy(i.y,r.offset.y)),i}const ebe=({current:e})=>e?e.ownerDocument.defaultView:null,K8e=new WeakMap;class X8e{constructor(t){this.openDragLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=Rs(),this.visualElement=t}start(t,{snapToCursor:n=!1}={}){const{presenceContext:i}=this.visualElement;if(i&&i.isPresent===!1)return;const r=d=>{const{dragSnapToOrigin:f}=this.getProps();f?this.pauseAnimation():this.stopAnimation(),n&&this.snapToCursor(Bk(d).point)},s=(d,f)=>{const{drag:h,dragPropagation:m,onDragStart:g}=this.getProps();if(h&&!m&&(this.openDragLock&&this.openDragLock(),this.openDragLock=A8e(h),!this.openDragLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),Rc(v=>{let y=this.getAxisMotionValue(v).get()||0;if(Id.test(y)){const{projection:x}=this.visualElement;if(x&&x.layout){const O=x.layout.layoutBox[v];O&&(y=fc(O)*(parseFloat(y)/100))}}this.originPoint[v]=y}),g&&Kr.postRender(()=>g(d,f)),X3(this.visualElement,"transform");const{animationState:b}=this.visualElement;b&&b.setActive("whileDrag",!0)},a=(d,f)=>{const{dragPropagation:h,dragDirectionLock:m,onDirectionLock:g,onDrag:b}=this.getProps();if(!h&&!this.openDragLock)return;const{offset:v}=f;if(m&&this.currentDirection===null){this.currentDirection=Y8e(v),this.currentDirection!==null&&g&&g(this.currentDirection);return}this.updateAxis("x",f.point,v),this.updateAxis("y",f.point,v),this.visualElement.render(),b&&b(d,f)},l=(d,f)=>this.stop(d,f),c=()=>Rc(d=>{var f;return this.getAnimationState(d)==="paused"&&((f=this.getAxisMotionValue(d).animation)===null||f===void 0?void 0:f.play())}),{dragSnapToOrigin:u}=this.getProps();this.panSession=new qge(t,{onSessionStart:r,onStart:s,onMove:a,onSessionEnd:l,resumeAnimation:c},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:u,contextWindow:ebe(this.visualElement)})}stop(t,n){const i=this.isDragging;if(this.cancel(),!i)return;const{velocity:r}=n;this.startAnimation(r);const{onDragEnd:s}=this.getProps();s&&Kr.postRender(()=>s(t,n))}cancel(){this.isDragging=!1;const{projection:t,animationState:n}=this.visualElement;t&&(t.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:i}=this.getProps();!i&&this.openDragLock&&(this.openDragLock(),this.openDragLock=null),n&&n.setActive("whileDrag",!1)}updateAxis(t,n,i){const{drag:r}=this.getProps();if(!i||!GC(t,r,this.currentDirection))return;const s=this.getAxisMotionValue(t);let a=this.originPoint[t]+i[t];this.constraints&&this.constraints[t]&&(a=F8e(a,this.constraints[t],this.elastic[t])),s.set(a)}resolveConstraints(){var t;const{dragConstraints:n,dragElastic:i}=this.getProps(),r=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):(t=this.visualElement.projection)===null||t===void 0?void 0:t.layout,s=this.constraints;n&&Sy(n)?this.constraints||(this.constraints=this.resolveRefConstraints()):n&&r?this.constraints=B8e(r.layoutBox,n):this.constraints=!1,this.elastic=V8e(i),s!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&Rc(a=>{this.constraints!==!1&&this.getAxisMotionValue(a)&&(this.constraints[a]=z8e(r.layoutBox[a],this.constraints[a]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!Sy(t))return!1;const i=t.current,{projection:r}=this.visualElement;if(!r||!r.layout)return!1;const s=G8e(i,r.root,this.visualElement.getTransformPagePoint());let a=U8e(r.layout.layoutBox,s);if(n){const l=n(H8e(a));this.hasMutatedConstraints=!!l,l&&(a=Xge(l))}return a}startAnimation(t){const{drag:n,dragMomentum:i,dragElastic:r,dragTransition:s,dragSnapToOrigin:a,onDragTransitionEnd:l}=this.getProps(),c=this.constraints||{},u=Rc(d=>{if(!GC(d,n,this.currentDirection))return;let f=c&&c[d]||{};a&&(f={min:0,max:0});const h=r?200:1e6,m=r?40:1e7,g={type:"inertia",velocity:i?t[d]:0,bounceStiffness:h,bounceDamping:m,timeConstant:750,restDelta:1,restSpeed:10,...s,...f};return this.startAxisValueAnimation(d,g)});return Promise.all(u).then(l)}startAxisValueAnimation(t,n){const i=this.getAxisMotionValue(t);return X3(this.visualElement,t),i.start(_F(t,i,0,n,this.visualElement,!1))}stopAnimation(){Rc(t=>this.getAxisMotionValue(t).stop())}pauseAnimation(){Rc(t=>{var n;return(n=this.getAxisMotionValue(t).animation)===null||n===void 0?void 0:n.pause()})}getAnimationState(t){var n;return(n=this.getAxisMotionValue(t).animation)===null||n===void 0?void 0:n.state}getAxisMotionValue(t){const n=`_drag${t.toUpperCase()}`,i=this.visualElement.getProps(),r=i[n];return r||this.visualElement.getValue(t,(i.initial?i.initial[t]:void 0)||0)}snapToCursor(t){Rc(n=>{const{drag:i}=this.getProps();if(!GC(n,i,this.currentDirection))return;const{projection:r}=this.visualElement,s=this.getAxisMotionValue(n);if(r&&r.layout){const{min:a,max:l}=r.layout.layoutBox[n];s.set(t[n]-vs(a,l,.5))}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:t,dragConstraints:n}=this.getProps(),{projection:i}=this.visualElement;if(!Sy(n)||!i||!this.constraints)return;this.stopAnimation();const r={x:0,y:0};Rc(a=>{const l=this.getAxisMotionValue(a);if(l&&this.constraints!==!1){const c=l.get();r[a]=Q8e({min:c,max:c},this.constraints[a])}});const{transformTemplate:s}=this.visualElement.getProps();this.visualElement.current.style.transform=s?s({},""):"none",i.root&&i.root.updateScroll(),i.updateLayout(),this.resolveConstraints(),Rc(a=>{if(!GC(a,t,null))return;const l=this.getAxisMotionValue(a),{min:c,max:u}=this.constraints[a];l.set(vs(c,u,r[a]))})}addListeners(){if(!this.visualElement.current)return;K8e.set(this.visualElement,this);const t=this.visualElement.current,n=pO(t,"pointerdown",c=>{const{drag:u,dragListener:d=!0}=this.getProps();u&&d&&this.start(c)}),i=()=>{const{dragConstraints:c}=this.getProps();Sy(c)&&c.current&&(this.constraints=this.resolveRefConstraints())},{projection:r}=this.visualElement,s=r.addEventListener("measure",i);r&&!r.layout&&(r.root&&r.root.updateScroll(),r.updateLayout()),Kr.read(i);const a=pS(window,"resize",()=>this.scalePositionWithinConstraints()),l=r.addEventListener("didUpdate",({delta:c,hasLayoutChanged:u})=>{this.isDragging&&u&&(Rc(d=>{const f=this.getAxisMotionValue(d);f&&(this.originPoint[d]+=c[d].translate,f.set(f.get()+c[d].translate))}),this.visualElement.render())});return()=>{a(),n(),s(),l&&l()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:i=!1,dragPropagation:r=!1,dragConstraints:s=!1,dragElastic:a=a4,dragMomentum:l=!0}=t;return{...t,drag:n,dragDirectionLock:i,dragPropagation:r,dragConstraints:s,dragElastic:a,dragMomentum:l}}}function GC(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function Y8e(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}class Z8e extends Mm{constructor(t){super(t),this.removeGroupControls=ac,this.removeListeners=ac,this.controls=new X8e(t)}mount(){const{dragControls:t}=this.node.getProps();t&&(this.removeGroupControls=t.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||ac}unmount(){this.removeGroupControls(),this.removeListeners()}}const Fq=e=>(t,n)=>{e&&Kr.postRender(()=>e(t,n))};class J8e extends Mm{constructor(){super(...arguments),this.removePointerDownListener=ac}onPointerDown(t){this.session=new qge(t,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:ebe(this.node)})}createPanHandlers(){const{onPanSessionStart:t,onPanStart:n,onPan:i,onPanEnd:r}=this.node.getProps();return{onSessionStart:Fq(t),onStart:Fq(n),onMove:i,onEnd:(s,a)=>{delete this.session,r&&Kr.postRender(()=>r(s,a))}}}mount(){this.removePointerDownListener=pO(this.node.current,"pointerdown",t=>this.onPointerDown(t))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}const G2={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function Bq(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const D1={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(Rn.test(e))e=parseFloat(e);else return e;const n=Bq(e,t.target.x),i=Bq(e,t.target.y);return`${n}% ${i}%`}},e9e={correct:(e,{treeScale:t,projectionDelta:n})=>{const i=e,r=hm.parse(e);if(r.length>5)return i;const s=hm.createTransformer(e),a=typeof r[0]!="number"?1:0,l=n.x.scale*t.x,c=n.y.scale*t.y;r[0+a]/=l,r[1+a]/=c;const u=vs(l,c,.5);return typeof r[2+a]=="number"&&(r[2+a]/=u),typeof r[3+a]=="number"&&(r[3+a]/=u),s(r)}};class t9e extends p.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:i,layoutId:r}=this.props,{projection:s}=t;T6e(n9e),s&&(n.group&&n.group.add(s),i&&i.register&&r&&i.register(s),s.root.didUpdate(),s.addEventListener("animationComplete",()=>{this.safeToRemove()}),s.setOptions({...s.options,onExitComplete:()=>this.safeToRemove()})),G2.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:i,drag:r,isPresent:s}=this.props,a=i.projection;return a&&(a.isPresent=s,r||t.layoutDependency!==n||n===void 0?a.willUpdate():this.safeToRemove(),t.isPresent!==s&&(s?a.promote():a.relegate()||Kr.postRender(()=>{const l=a.getStack();(!l||!l.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),rF.postRender(()=>{!t.currentAnimation&&t.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:i}=this.props,{projection:r}=t;r&&(r.scheduleCheckAfterUnmount(),n&&n.group&&n.group.remove(r),i&&i.deregister&&i.deregister(r))}safeToRemove(){const{safeToRemove:t}=this.props;t&&t()}render(){return null}}function tbe(e){const[t,n]=$me(),i=p.useContext(J9);return o.jsx(t9e,{...e,layoutGroup:i,switchLayoutGroup:p.useContext(Wme),isPresent:t,safeToRemove:n})}const n9e={borderRadius:{...D1,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:D1,borderTopRightRadius:D1,borderBottomLeftRadius:D1,borderBottomRightRadius:D1,boxShadow:e9e};function i9e(e,t,n){const i=mo(e)?e:fS(e);return i.start(_F("",i,t,n)),i.animation}function r9e(e){return e instanceof SVGElement&&e.tagName!=="svg"}const s9e=(e,t)=>e.depth-t.depth;class a9e{constructor(){this.children=[],this.isDirty=!1}add(t){mF(this.children,t),this.isDirty=!0}remove(t){gF(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(s9e),this.isDirty=!1,this.children.forEach(t)}}function o9e(e,t){const n=Pd.now(),i=({timestamp:r})=>{const s=r-n;s>=t&&(fm(i),e(s-t))};return Kr.read(i,!0),()=>fm(i)}const nbe=["TopLeft","TopRight","BottomLeft","BottomRight"],l9e=nbe.length,Uq=e=>typeof e=="string"?parseFloat(e):e,Qq=e=>typeof e=="number"||Rn.test(e);function c9e(e,t,n,i,r,s){r?(e.opacity=vs(0,n.opacity!==void 0?n.opacity:1,u9e(i)),e.opacityExit=vs(t.opacity!==void 0?t.opacity:1,0,d9e(i))):s&&(e.opacity=vs(t.opacity!==void 0?t.opacity:1,n.opacity!==void 0?n.opacity:1,i));for(let a=0;ait?1:n(Dv(e,t,i))}function Vq(e,t){e.min=t.min,e.max=t.max}function jc(e,t){Vq(e.x,t.x),Vq(e.y,t.y)}function Hq(e,t){e.translate=t.translate,e.scale=t.scale,e.originPoint=t.originPoint,e.origin=t.origin}function qq(e,t,n,i,r){return e-=t,e=j_(e,1/n,i),r!==void 0&&(e=j_(e,1/r,i)),e}function f9e(e,t=0,n=1,i=.5,r,s=e,a=e){if(Id.test(t)&&(t=parseFloat(t),t=vs(a.min,a.max,t/100)-a.min),typeof t!="number")return;let l=vs(s.min,s.max,i);e===s&&(l-=t),e.min=qq(e.min,t,n,l,r),e.max=qq(e.max,t,n,l,r)}function Wq(e,t,[n,i,r],s,a){f9e(e,t[n],t[i],t[r],t.scale,s,a)}const h9e=["x","scaleX","originX"],p9e=["y","scaleY","originY"];function Gq(e,t,n,i){Wq(e.x,t,h9e,n?n.x:void 0,i?i.x:void 0),Wq(e.y,t,p9e,n?n.y:void 0,i?i.y:void 0)}function Kq(e){return e.translate===0&&e.scale===1}function rbe(e){return Kq(e.x)&&Kq(e.y)}function Xq(e,t){return e.min===t.min&&e.max===t.max}function m9e(e,t){return Xq(e.x,t.x)&&Xq(e.y,t.y)}function Yq(e,t){return Math.round(e.min)===Math.round(t.min)&&Math.round(e.max)===Math.round(t.max)}function sbe(e,t){return Yq(e.x,t.x)&&Yq(e.y,t.y)}function Zq(e){return fc(e.x)/fc(e.y)}function Jq(e,t){return e.translate===t.translate&&e.scale===t.scale&&e.originPoint===t.originPoint}class g9e{constructor(){this.members=[]}add(t){mF(this.members,t),t.scheduleRender()}remove(t){if(gF(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(r=>t===r);if(n===0)return!1;let i;for(let r=n;r>=0;r--){const s=this.members[r];if(s.isPresent!==!1){i=s;break}}return i?(this.promote(i),!0):!1}promote(t,n){const i=this.lead;if(t!==i&&(this.prevLead=i,this.lead=t,t.show(),i)){i.instance&&i.scheduleRender(),t.scheduleRender(),t.resumeFrom=i,n&&(t.resumeFrom.preserveOpacity=!0),i.snapshot&&(t.snapshot=i.snapshot,t.snapshot.latestValues=i.animationValues||i.latestValues),t.root&&t.root.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:r}=t.options;r===!1&&i.hide()}}exitAnimationComplete(){this.members.forEach(t=>{const{options:n,resumingFrom:i}=t;n.onExitComplete&&n.onExitComplete(),i&&i.options.onExitComplete&&i.options.onExitComplete()})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function b9e(e,t,n){let i="";const r=e.x.translate/t.x,s=e.y.translate/t.y,a=(n==null?void 0:n.z)||0;if((r||s||a)&&(i=`translate3d(${r}px, ${s}px, ${a}px) `),(t.x!==1||t.y!==1)&&(i+=`scale(${1/t.x}, ${1/t.y}) `),n){const{transformPerspective:u,rotate:d,rotateX:f,rotateY:h,skewX:m,skewY:g}=n;u&&(i=`perspective(${u}px) ${i}`),d&&(i+=`rotate(${d}deg) `),f&&(i+=`rotateX(${f}deg) `),h&&(i+=`rotateY(${h}deg) `),m&&(i+=`skewX(${m}deg) `),g&&(i+=`skewY(${g}deg) `)}const l=e.x.scale*t.x,c=e.y.scale*t.y;return(l!==1||c!==1)&&(i+=`scale(${l}, ${c})`),i||"none"}const yg={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0},Aw=typeof window<"u"&&window.MotionDebug!==void 0,TD=["","X","Y","Z"],y9e={visibility:"hidden"},eW=1e3;let v9e=0;function AD(e,t,n,i){const{latestValues:r}=t;r[e]&&(n[e]=r[e],t.setStaticValue(e,0),i&&(i[e]=0))}function abe(e){if(e.hasCheckedOptimisedAppear=!0,e.root===e)return;const{visualElement:t}=e.options;if(!t)return;const n=cge(t);if(window.MotionHasOptimisedAnimation(n,"transform")){const{layout:r,layoutId:s}=e.options;window.MotionCancelOptimisedAnimation(n,"transform",Kr,!(r||s))}const{parent:i}=e;i&&!i.hasCheckedOptimisedAppear&&abe(i)}function obe({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:i,resetTransform:r}){return class{constructor(a={},l=t==null?void 0:t()){this.id=v9e++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,Aw&&(yg.totalNodes=yg.resolvedTargetDeltas=yg.recalculatedProjection=0),this.nodes.forEach(O9e),this.nodes.forEach(T9e),this.nodes.forEach(A9e),this.nodes.forEach(S9e),Aw&&window.MotionDebug.record(yg)},this.resolvedRelativeTargetAt=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=a,this.root=l?l.root||l:this,this.path=l?[...l.path,l]:[],this.parent=l,this.depth=l?l.depth+1:0;for(let c=0;cthis.root.updateBlockedByResize=!1;e(a,()=>{this.root.updateBlockedByResize=!0,f&&f(),f=o9e(h,250),G2.hasAnimatedSinceResize&&(G2.hasAnimatedSinceResize=!1,this.nodes.forEach(nW))})}c&&this.root.registerSharedNode(c,this),this.options.animate!==!1&&d&&(c||u)&&this.addEventListener("didUpdate",({delta:f,hasLayoutChanged:h,hasRelativeTargetChanged:m,layout:g})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const b=this.options.transition||d.getDefaultTransition()||I9e,{onLayoutAnimationStart:v,onLayoutAnimationComplete:y}=d.getProps(),x=!this.targetLayout||!sbe(this.targetLayout,g)||m,O=!h&&m;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||O||h&&(x||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(f,O);const w={...pF(b,"layout"),onPlay:v,onComplete:y};(d.shouldReduceMotion||this.options.layoutRoot)&&(w.delay=0,w.type=!1),this.startAnimation(w)}else h||nW(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=g})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const a=this.getStack();a&&a.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,fm(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(_9e),this.animationId++)}getTransformTemplate(){const{visualElement:a}=this.options;return a&&a.getProps().transformTemplate}willUpdate(a=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&abe(this),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let d=0;d{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure())}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let c=0;c{const k=w/1e3;iW(f.x,a.x,k),iW(f.y,a.y,k),this.setTargetDelta(f),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(gO(h,this.layout.layoutBox,this.relativeParent.layout.layoutBox),j9e(this.relativeTarget,this.relativeTargetOrigin,h,k),O&&m9e(this.relativeTarget,O)&&(this.isProjectionDirty=!1),O||(O=Rs()),jc(O,this.relativeTarget)),b&&(this.animationValues=d,c9e(d,u,this.latestValues,k,x,y)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=k},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(a){this.notifyListeners("animationStart"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&(fm(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Kr.update(()=>{G2.hasAnimatedSinceResize=!0,this.currentAnimation=i9e(0,eW,{...a,onUpdate:l=>{this.mixTargetDelta(l),a.onUpdate&&a.onUpdate(l)},onComplete:()=>{a.onComplete&&a.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const a=this.getStack();a&&a.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(eW),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const a=this.getLead();let{targetWithTransforms:l,target:c,layout:u,latestValues:d}=a;if(!(!l||!c||!u)){if(this!==a&&this.layout&&u&&lbe(this.options.animationType,this.layout.layoutBox,u.layoutBox)){c=this.target||Rs();const f=fc(this.layout.layoutBox.x);c.x.min=a.target.x.min,c.x.max=c.x.min+f;const h=fc(this.layout.layoutBox.y);c.y.min=a.target.y.min,c.y.max=c.y.min+h}jc(l,c),Ty(l,d),mO(this.projectionDeltaWithTransform,this.layoutCorrected,l,d)}}registerSharedNode(a,l){this.sharedNodes.has(a)||this.sharedNodes.set(a,new g9e),this.sharedNodes.get(a).add(l);const u=l.options.initialPromotionConfig;l.promote({transition:u?u.transition:void 0,preserveFollowOpacity:u&&u.shouldPreserveFollowOpacity?u.shouldPreserveFollowOpacity(l):void 0})}isLead(){const a=this.getStack();return a?a.lead===this:!0}getLead(){var a;const{layoutId:l}=this.options;return l?((a=this.getStack())===null||a===void 0?void 0:a.lead)||this:this}getPrevLead(){var a;const{layoutId:l}=this.options;return l?(a=this.getStack())===null||a===void 0?void 0:a.prevLead:void 0}getStack(){const{layoutId:a}=this.options;if(a)return this.root.sharedNodes.get(a)}promote({needsReset:a,transition:l,preserveFollowOpacity:c}={}){const u=this.getStack();u&&u.promote(this,c),a&&(this.projectionDelta=void 0,this.needsReset=!0),l&&this.setOptions({transition:l})}relegate(){const a=this.getStack();return a?a.relegate(this):!1}resetSkewAndRotation(){const{visualElement:a}=this.options;if(!a)return;let l=!1;const{latestValues:c}=a;if((c.z||c.rotate||c.rotateX||c.rotateY||c.rotateZ||c.skewX||c.skewY)&&(l=!0),!l)return;const u={};c.z&&AD("z",a,u,this.animationValues);for(let d=0;d{var l;return(l=a.currentAnimation)===null||l===void 0?void 0:l.stop()}),this.root.nodes.forEach(tW),this.root.sharedNodes.clear()}}}function x9e(e){e.updateLayout()}function w9e(e){var t;const n=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&n&&e.hasListeners("didUpdate")){const{layoutBox:i,measuredBox:r}=e.layout,{animationType:s}=e.options,a=n.source!==e.layout.source;s==="size"?Rc(f=>{const h=a?n.measuredBox[f]:n.layoutBox[f],m=fc(h);h.min=i[f].min,h.max=h.min+m}):lbe(s,n.layoutBox,i)&&Rc(f=>{const h=a?n.measuredBox[f]:n.layoutBox[f],m=fc(i[f]);h.max=h.min+m,e.relativeTarget&&!e.currentAnimation&&(e.isProjectionDirty=!0,e.relativeTarget[f].max=e.relativeTarget[f].min+m)});const l=Ey();mO(l,i,n.layoutBox);const c=Ey();a?mO(c,e.applyTransform(r,!0),n.measuredBox):mO(c,i,n.layoutBox);const u=!rbe(l);let d=!1;if(!e.resumeFrom){const f=e.getClosestProjectingParent();if(f&&!f.resumeFrom){const{snapshot:h,layout:m}=f;if(h&&m){const g=Rs();gO(g,n.layoutBox,h.layoutBox);const b=Rs();gO(b,i,m.layoutBox),sbe(g,b)||(d=!0),f.options.layoutRoot&&(e.relativeTarget=b,e.relativeTargetOrigin=g,e.relativeParent=f)}}}e.notifyListeners("didUpdate",{layout:i,snapshot:n,delta:c,layoutDelta:l,hasLayoutChanged:u,hasRelativeTargetChanged:d})}else if(e.isLead()){const{onExitComplete:i}=e.options;i&&i()}e.options.transition=void 0}function O9e(e){Aw&&yg.totalNodes++,e.parent&&(e.isProjecting()||(e.isProjectionDirty=e.parent.isProjectionDirty),e.isSharedProjectionDirty||(e.isSharedProjectionDirty=!!(e.isProjectionDirty||e.parent.isProjectionDirty||e.parent.isSharedProjectionDirty)),e.isTransformDirty||(e.isTransformDirty=e.parent.isTransformDirty))}function S9e(e){e.isProjectionDirty=e.isSharedProjectionDirty=e.isTransformDirty=!1}function k9e(e){e.clearSnapshot()}function tW(e){e.clearMeasurements()}function E9e(e){e.isLayoutDirty=!1}function C9e(e){const{visualElement:t}=e.options;t&&t.getProps().onBeforeLayoutMeasure&&t.notify("BeforeLayoutMeasure"),e.resetTransform()}function nW(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0,e.isProjectionDirty=!0}function T9e(e){e.resolveTargetDelta()}function A9e(e){e.calcProjection()}function _9e(e){e.resetSkewAndRotation()}function N9e(e){e.removeLeadSnapshot()}function iW(e,t,n){e.translate=vs(t.translate,0,n),e.scale=vs(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function rW(e,t,n,i){e.min=vs(t.min,n.min,i),e.max=vs(t.max,n.max,i)}function j9e(e,t,n,i){rW(e.x,t.x,n.x,i),rW(e.y,t.y,n.y,i)}function R9e(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const I9e={duration:.45,ease:[.4,0,.1,1]},sW=e=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(e),aW=sW("applewebkit/")&&!sW("chrome/")?Math.round:ac;function oW(e){e.min=aW(e.min),e.max=aW(e.max)}function P9e(e){oW(e.x),oW(e.y)}function lbe(e,t,n){return e==="position"||e==="preserve-aspect"&&!L8e(Zq(t),Zq(n),.2)}function D9e(e){var t;return e!==e.root&&((t=e.scroll)===null||t===void 0?void 0:t.wasRoot)}const M9e=obe({attachResizeListener:(e,t)=>pS(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),_D={current:void 0},cbe=obe({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!_D.current){const e=new M9e({});e.mount(window),e.setOptions({layoutScroll:!0}),_D.current=e}return _D.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>window.getComputedStyle(e).position==="fixed"}),L9e={pan:{Feature:J8e},drag:{Feature:Z8e,ProjectionNode:cbe,MeasureLayout:tbe}};function $9e(e,t,n){var i;if(e instanceof Element)return[e];if(typeof e=="string"){let r=document;const s=(i=void 0)!==null&&i!==void 0?i:r.querySelectorAll(e);return s?Array.from(s):[]}return Array.from(e)}function ube(e,t){const n=$9e(e),i=new AbortController,r={passive:!0,...t,signal:i.signal};return[n,r,()=>i.abort()]}function lW(e){return t=>{t.pointerType==="touch"||Hge()||e(t)}}function F9e(e,t,n={}){const[i,r,s]=ube(e,n),a=lW(l=>{const{target:c}=l,u=t(l);if(typeof u!="function"||!c)return;const d=lW(f=>{u(f),c.removeEventListener("pointerleave",d)});c.addEventListener("pointerleave",d,r)});return i.forEach(l=>{l.addEventListener("pointerenter",a,r)}),s}function cW(e,t,n){const{props:i}=e;e.animationState&&i.whileHover&&e.animationState.setActive("whileHover",n==="Start");const r="onHover"+n,s=i[r];s&&Kr.postRender(()=>s(t,Bk(t)))}class B9e extends Mm{mount(){const{current:t}=this.node;t&&(this.unmount=F9e(t,n=>(cW(this.node,n,"Start"),i=>cW(this.node,i,"End"))))}unmount(){}}class U9e extends Mm{constructor(){super(...arguments),this.isActive=!1}onFocus(){let t=!1;try{t=this.node.current.matches(":focus-visible")}catch{t=!0}!t||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=Fk(pS(this.node.current,"focus",()=>this.onFocus()),pS(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}const dbe=(e,t)=>t?e===t?!0:dbe(e,t.parentElement):!1,Q9e=new Set(["BUTTON","INPUT","SELECT","TEXTAREA","A"]);function z9e(e){return Q9e.has(e.tagName)||e.tabIndex!==-1}const _w=new WeakSet;function uW(e){return t=>{t.key==="Enter"&&e(t)}}function ND(e,t){e.dispatchEvent(new PointerEvent("pointer"+t,{isPrimary:!0,bubbles:!0}))}const V9e=(e,t)=>{const n=e.currentTarget;if(!n)return;const i=uW(()=>{if(_w.has(n))return;ND(n,"down");const r=uW(()=>{ND(n,"up")}),s=()=>ND(n,"cancel");n.addEventListener("keyup",r,t),n.addEventListener("blur",s,t)});n.addEventListener("keydown",i,t),n.addEventListener("blur",()=>n.removeEventListener("keydown",i),t)};function dW(e){return NF(e)&&!Hge()}function H9e(e,t,n={}){const[i,r,s]=ube(e,n),a=l=>{const c=l.currentTarget;if(!dW(l)||_w.has(c))return;_w.add(c);const u=t(l),d=(m,g)=>{window.removeEventListener("pointerup",f),window.removeEventListener("pointercancel",h),!(!dW(m)||!_w.has(c))&&(_w.delete(c),typeof u=="function"&&u(m,{success:g}))},f=m=>{d(m,n.useGlobalTarget||dbe(c,m.target))},h=m=>{d(m,!1)};window.addEventListener("pointerup",f,r),window.addEventListener("pointercancel",h,r)};return i.forEach(l=>{!z9e(l)&&l.getAttribute("tabindex")===null&&(l.tabIndex=0),(n.useGlobalTarget?window:l).addEventListener("pointerdown",a,r),l.addEventListener("focus",u=>V9e(u,r),r)}),s}function fW(e,t,n){const{props:i}=e;e.animationState&&i.whileTap&&e.animationState.setActive("whileTap",n==="Start");const r="onTap"+(n==="End"?"":n),s=i[r];s&&Kr.postRender(()=>s(t,Bk(t)))}class q9e extends Mm{mount(){const{current:t}=this.node;t&&(this.unmount=H9e(t,n=>(fW(this.node,n,"Start"),(i,{success:r})=>fW(this.node,i,r?"End":"Cancel")),{useGlobalTarget:this.node.props.globalTapTarget}))}unmount(){}}const c4=new WeakMap,jD=new WeakMap,W9e=e=>{const t=c4.get(e.target);t&&t(e)},G9e=e=>{e.forEach(W9e)};function K9e({root:e,...t}){const n=e||document;jD.has(n)||jD.set(n,{});const i=jD.get(n),r=JSON.stringify(t);return i[r]||(i[r]=new IntersectionObserver(G9e,{root:e,...t})),i[r]}function X9e(e,t,n){const i=K9e(t);return c4.set(e,n),i.observe(e),()=>{c4.delete(e),i.unobserve(e)}}const Y9e={some:0,all:1};class Z9e extends Mm{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:t={}}=this.node.getProps(),{root:n,margin:i,amount:r="some",once:s}=t,a={root:n?n.current:void 0,rootMargin:i,threshold:typeof r=="number"?r:Y9e[r]},l=c=>{const{isIntersecting:u}=c;if(this.isInView===u||(this.isInView=u,s&&!u&&this.hasEnteredView))return;u&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",u);const{onViewportEnter:d,onViewportLeave:f}=this.node.getProps(),h=u?d:f;h&&h(c)};return X9e(this.node.current,a,l)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:t,prevProps:n}=this.node;["amount","margin","root"].some(J9e(t,n))&&this.startObserver()}unmount(){}}function J9e({viewport:e={}},{viewport:t={}}={}){return n=>e[n]!==t[n]}const eFe={inView:{Feature:Z9e},tap:{Feature:q9e},focus:{Feature:U9e},hover:{Feature:B9e}},tFe={layout:{ProjectionNode:cbe,MeasureLayout:tbe}},R_={current:null},jF={current:!1};function fbe(){if(jF.current=!0,!!eF)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>R_.current=e.matches;e.addListener(t),t()}else R_.current=!1}const nFe=[...Ige,fo,hm],iFe=e=>nFe.find(Rge(e)),hW=new WeakMap;function rFe(e,t,n){for(const i in t){const r=t[i],s=n[i];if(mo(r))e.addValue(i,r);else if(mo(s))e.addValue(i,fS(r,{owner:e}));else if(s!==r)if(e.hasValue(i)){const a=e.getValue(i);a.liveStyle===!0?a.jump(r):a.hasAnimated||a.set(r)}else{const a=e.getStaticValue(i);e.addValue(i,fS(a!==void 0?a:r,{owner:e}))}}for(const i in n)t[i]===void 0&&e.removeValue(i);return t}const pW=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];class sFe{scrapeMotionValuesFromProps(t,n,i){return{}}constructor({parent:t,props:n,presenceContext:i,reducedMotionConfig:r,blockInitialAnimation:s,visualState:a},l={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=CF,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{const m=Pd.now();this.renderScheduledAtthis.bindToMotionValue(i,n)),jF.current||fbe(),this.shouldReduceMotion=this.reducedMotionConfig==="never"?!1:this.reducedMotionConfig==="always"?!0:R_.current,this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){hW.delete(this.current),this.projection&&this.projection.unmount(),fm(this.notifyUpdate),fm(this.render),this.valueSubscriptions.forEach(t=>t()),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const t in this.events)this.events[t].clear();for(const t in this.features){const n=this.features[t];n&&(n.unmount(),n.isMounted=!1)}this.current=null}bindToMotionValue(t,n){this.valueSubscriptions.has(t)&&this.valueSubscriptions.get(t)();const i=Hb.has(t),r=n.on("change",l=>{this.latestValues[t]=l,this.props.onUpdate&&Kr.preRender(this.notifyUpdate),i&&this.projection&&(this.projection.isTransformDirty=!0)}),s=n.on("renderRequest",this.scheduleRender);let a;window.MotionCheckAppearSync&&(a=window.MotionCheckAppearSync(this,t,n)),this.valueSubscriptions.set(t,()=>{r(),s(),a&&a(),n.owner&&n.stop()})}sortNodePosition(t){return!this.current||!this.sortInstanceNodePosition||this.type!==t.type?0:this.sortInstanceNodePosition(this.current,t.current)}updateFeatures(){let t="animation";for(t in Pv){const n=Pv[t];if(!n)continue;const{isEnabled:i,Feature:r}=n;if(!this.features[t]&&r&&i(this.props)&&(this.features[t]=new r(this)),this.features[t]){const s=this.features[t];s.isMounted?s.update():(s.mount(),s.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):Rs()}getStaticValue(t){return this.latestValues[t]}setStaticValue(t,n){this.latestValues[t]=n}update(t,n){(t.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=t,this.prevPresenceContext=this.presenceContext,this.presenceContext=n;for(let i=0;in.variantChildren.delete(t)}addValue(t,n){const i=this.values.get(t);n!==i&&(i&&this.removeValue(t),this.bindToMotionValue(t,n),this.values.set(t,n),this.latestValues[t]=n.get())}removeValue(t){this.values.delete(t);const n=this.valueSubscriptions.get(t);n&&(n(),this.valueSubscriptions.delete(t)),delete this.latestValues[t],this.removeValueFromRenderState(t,this.renderState)}hasValue(t){return this.values.has(t)}getValue(t,n){if(this.props.values&&this.props.values[t])return this.props.values[t];let i=this.values.get(t);return i===void 0&&n!==void 0&&(i=fS(n===null?void 0:n,{owner:this}),this.addValue(t,i)),i}readValue(t,n){var i;let r=this.latestValues[t]!==void 0||!this.current?this.latestValues[t]:(i=this.getBaseTargetFromProps(this.props,t))!==null&&i!==void 0?i:this.readValueFromInstance(this.current,t,this.options);return r!=null&&(typeof r=="string"&&(Nge(r)||wge(r))?r=parseFloat(r):!iFe(r)&&hm.test(n)&&(r=Tge(t,n)),this.setBaseTarget(t,mo(r)?r.get():r)),mo(r)?r.get():r}setBaseTarget(t,n){this.baseTarget[t]=n}getBaseTarget(t){var n;const{initial:i}=this.props;let r;if(typeof i=="string"||typeof i=="object"){const a=aF(this.props,i,(n=this.presenceContext)===null||n===void 0?void 0:n.custom);a&&(r=a[t])}if(i&&r!==void 0)return r;const s=this.getBaseTargetFromProps(this.props,t);return s!==void 0&&!mo(s)?s:this.initialValues[t]!==void 0&&r===void 0?void 0:this.baseTarget[t]}on(t,n){return this.events[t]||(this.events[t]=new bF),this.events[t].add(n)}notify(t,...n){this.events[t]&&this.events[t].notify(...n)}}class hbe extends sFe{constructor(){super(...arguments),this.KeyframeResolver=Pge}sortInstanceNodePosition(t,n){return t.compareDocumentPosition(n)&2?1:-1}getBaseTargetFromProps(t,n){return t.style?t.style[n]:void 0}removeValueFromRenderState(t,{vars:n,style:i}){delete n[t],delete i[t]}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:t}=this.props;mo(t)&&(this.childSubscription=t.on("change",n=>{this.current&&(this.current.textContent=`${n}`)}))}}function aFe(e){return window.getComputedStyle(e)}class oFe extends hbe{constructor(){super(...arguments),this.type="html",this.renderInstance=ege}readValueFromInstance(t,n){if(Hb.has(n)){const i=EF(n);return i&&i.default||0}else{const i=aFe(t),r=(Yme(n)?i.getPropertyValue(n):i[n])||0;return typeof r=="string"?r.trim():r}}measureInstanceViewportBox(t,{transformPagePoint:n}){return Jge(t,n)}build(t,n,i){cF(t,n,i.transformTemplate)}scrapeMotionValuesFromProps(t,n,i){return hF(t,n,i)}}class lFe extends hbe{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=Rs}getBaseTargetFromProps(t,n){return t[n]}readValueFromInstance(t,n){if(Hb.has(n)){const i=EF(n);return i&&i.default||0}return n=tge.has(n)?n:iF(n),t.getAttribute(n)}scrapeMotionValuesFromProps(t,n,i){return rge(t,n,i)}build(t,n,i){uF(t,n,this.isSVGTag,i.transformTemplate)}renderInstance(t,n,i,r){nge(t,n,i,r)}mount(t){this.isSVGTag=fF(t.tagName),super.mount(t)}}const cFe=(e,t)=>sF(e)?new lFe(t):new oFe(t,{allowProjection:e!==p.Fragment}),uFe=M6e({...T8e,...eFe,...L9e,...tFe},cFe),pr=Y4e(uFe);function RF(){!jF.current&&fbe();const[e]=p.useState(R_.current);return e}function pa(){return pa=Object.assign?Object.assign.bind():function(e){for(var t=1;t"u"||/ServerSideRendering/.test(navigator&&navigator.userAgent)?p.useEffect:p.useLayoutEffect;function J0(e,t,n){var i=p.useRef(t);i.current=t,p.useEffect(function(){function r(s){i.current(s)}return e&&window.addEventListener(e,r,n),function(){e&&window.removeEventListener(e,r)}},[e])}var dFe=["container"];function fFe(e){var t=e.container,n=t===void 0?document.body:t,i=Gj(e,dFe);return Li.createPortal(ii.createElement("div",pa({},i)),n)}function hFe(e){return ii.createElement("svg",pa({width:"44",height:"44",viewBox:"0 0 768 768"},e),ii.createElement("path",{d:"M607.5 205.5l-178.5 178.5 178.5 178.5-45 45-178.5-178.5-178.5 178.5-45-45 178.5-178.5-178.5-178.5 45-45 178.5 178.5 178.5-178.5z"}))}function pFe(e){return ii.createElement("svg",pa({width:"44",height:"44",viewBox:"0 0 768 768"},e),ii.createElement("path",{d:"M640.5 352.5v63h-390l178.5 180-45 45-256.5-256.5 256.5-256.5 45 45-178.5 180h390z"}))}function mFe(e){return ii.createElement("svg",pa({width:"44",height:"44",viewBox:"0 0 768 768"},e),ii.createElement("path",{d:"M384 127.5l256.5 256.5-256.5 256.5-45-45 178.5-180h-390v-63h390l-178.5-180z"}))}function gFe(){return p.useEffect(function(){var e=document.body.style,t=e.overflow;return e.overflow="hidden",function(){e.overflow=t}},[]),null}function gW(e){var t=e.touches[0],n=t.clientX,i=t.clientY;if(e.touches.length>=2){var r=e.touches[1],s=r.clientX,a=r.clientY;return[(n+s)/2,(i+a)/2,Math.sqrt(Math.pow(s-n,2)+Math.pow(a-i,2))]}return[n,i,0]}var wp=function(e,t,n,i){var r,s=n*t,a=(s-i)/2,l=e;return s<=i?(r=1,l=0):e>0&&a-e<=0?(r=2,l=a):e<0&&a+e<=0&&(r=3,l=-a),[r,l]};function RD(e,t,n,i,r,s,a,l,c,u){a===void 0&&(a=innerWidth/2),l===void 0&&(l=innerHeight/2),c===void 0&&(c=0),u===void 0&&(u=0);var d=wp(e,s,n,innerWidth)[0],f=wp(t,s,i,innerHeight),h=innerWidth/2,m=innerHeight/2;return{x:a-s/r*(a-(h+e))-h+(i/n>=3&&n*s===innerWidth?0:d?c/2:c),y:l-s/r*(l-(m+t))-m+(f[0]?u/2:u),lastCX:a,lastCY:l}}function f4(e,t,n){var i=e%180!=0;return i?[n,t,i]:[t,n,i]}function ID(e,t,n){var i=f4(n,innerWidth,innerHeight),r=i[0],s=i[1],a=0,l=r,c=s,u=e/t*s,d=t/e*r;return e=s?l=u:e>=r&&tr/s?c=d:t/e>=3&&!i[2]?a=((c=d)-s)/2:l=u,{width:l,height:c,x:0,y:a,pause:!0}}function XC(e,t){var n=t.leading,i=n!==void 0&&n,r=t.maxWait,s=t.wait,a=s===void 0?r||0:s,l=p.useRef(e);l.current=e;var c=p.useRef(0),u=p.useRef(),d=function(){return u.current&&clearTimeout(u.current)},f=p.useCallback(function(){var h=[].slice.call(arguments),m=Date.now();function g(){c.current=m,d(),l.current.apply(null,h)}var b=c.current,v=m-b;if(b===0&&(i&&g(),c.current=m),r!==void 0){if(v>r)return void g()}else v=1&&s&&s())};d()}function d(){c=requestAnimationFrame(u)}}var yFe={T:0,L:0,W:0,H:0,FIT:void 0},mbe=function(){var e=p.useRef(!1);return p.useEffect(function(){return e.current=!0,function(){e.current=!1}},[]),e},vFe=["className"];function xFe(e){var t=e.className,n=t===void 0?"":t,i=Gj(e,vFe);return ii.createElement("div",pa({className:"PhotoView__Spinner "+n},i),ii.createElement("svg",{viewBox:"0 0 32 32",width:"36",height:"36",fill:"white"},ii.createElement("path",{opacity:".25",d:"M16 0 A16 16 0 0 0 16 32 A16 16 0 0 0 16 0 M16 4 A12 12 0 0 1 16 28 A12 12 0 0 1 16 4"}),ii.createElement("path",{d:"M16 0 A16 16 0 0 1 32 16 L28 16 A12 12 0 0 0 16 4z"})))}var wFe=["src","loaded","broken","className","onPhotoLoad","loadingElement","brokenElement"];function OFe(e){var t=e.src,n=e.loaded,i=e.broken,r=e.className,s=e.onPhotoLoad,a=e.loadingElement,l=e.brokenElement,c=Gj(e,wFe),u=mbe();return t&&!i?ii.createElement(ii.Fragment,null,ii.createElement("img",pa({className:"PhotoView__Photo"+(r?" "+r:""),src:t,onLoad:function(d){var f=d.target;u.current&&s({loaded:!0,naturalWidth:f.naturalWidth,naturalHeight:f.naturalHeight})},onError:function(){u.current&&s({broken:!0})},draggable:!1,alt:""},c)),!n&&(a?ii.createElement("span",{className:"PhotoView__icon"},a):ii.createElement(xFe,{className:"PhotoView__icon"}))):l?ii.createElement("span",{className:"PhotoView__icon"},typeof l=="function"?l({src:t}):l):null}var SFe={naturalWidth:void 0,naturalHeight:void 0,width:void 0,height:void 0,loaded:void 0,broken:!1,x:0,y:0,touched:!1,maskTouched:!1,rotate:0,scale:1,CX:0,CY:0,lastX:0,lastY:0,lastCX:0,lastCY:0,lastScale:1,touchTime:0,touchLength:0,pause:!0,stopRaf:!0,reach:void 0};function kFe(e){var t=e.item,n=t.src,i=t.render,r=t.width,s=r===void 0?0:r,a=t.height,l=a===void 0?0:a,c=t.originRef,u=e.visible,d=e.speed,f=e.easing,h=e.wrapClassName,m=e.className,g=e.style,b=e.loadingElement,v=e.brokenElement,y=e.onPhotoTap,x=e.onMaskTap,O=e.onReachMove,w=e.onReachUp,k=e.onPhotoResize,S=e.isActive,E=e.expose,C=I_(SFe),N=C[0],_=C[1],j=p.useRef(0),A=mbe(),F=N.naturalWidth,T=F===void 0?s:F,P=N.naturalHeight,R=P===void 0?l:P,L=N.width,M=L===void 0?s:L,U=N.height,I=U===void 0?l:U,H=N.loaded,K=H===void 0?!n:H,Q=N.broken,q=N.x,B=N.y,ee=N.touched,le=N.stopRaf,se=N.maskTouched,re=N.rotate,ge=N.scale,W=N.CX,X=N.CY,ae=N.lastX,ue=N.lastY,Oe=N.lastCX,ke=N.lastCY,st=N.lastScale,Le=N.touchTime,Me=N.touchLength,Ie=N.pause,qe=N.reach,Ae=nb({onScale:function(Pe){return ze(KC(Pe))},onRotate:function(Pe){re!==Pe&&(E({rotate:Pe}),_(pa({rotate:Pe},ID(T,R,Pe))))}});function ze(Pe,Et,bt){ge!==Pe&&(E({scale:Pe}),_(pa({scale:Pe},RD(q,B,M,I,ge,Pe,Et,bt),Pe<=1&&{x:0,y:0})))}var Ee=XC(function(Pe,Et,bt){if(bt===void 0&&(bt=0),(ee||se)&&S){var Mt=f4(re,M,I),$e=Mt[0],ye=Mt[1];if(bt===0&&j.current===0){var Ue=Math.abs(Pe-W)<=20,Ke=Math.abs(Et-X)<=20;if(Ue&&Ke)return void _({lastCX:Pe,lastCY:Et});j.current=Ue?Et>X?3:2:1}var ft,ut=Pe-Oe,Gt=Et-ke;if(bt===0){var Rt=wp(ut+ae,ge,$e,innerWidth)[0],zt=wp(Gt+ue,ge,ye,innerHeight);ft=function(Bt,Qe,tt,ht){return Qe&&Bt===1||ht==="x"?"x":tt&&Bt>1||ht==="y"?"y":void 0}(j.current,Rt,zt[0],qe),ft!==void 0&&O(ft,Pe,Et,ge)}if(ft==="x"||se)return void _({reach:"x"});var Z=KC(ge+(bt-Me)/100/2*ge,T/M,.2);E({scale:Z}),_(pa({touchLength:bt,reach:ft,scale:Z},RD(q,B,M,I,ge,Z,Pe,Et,ut,Gt)))}},{maxWait:8});function De(Pe){return!le&&!ee&&(A.current&&_(pa({},Pe,{pause:u})),A.current)}var J,he,_e,Ze,at,wt,Se,ve,He=(at=function(Pe){return De({x:Pe})},wt=function(Pe){return De({y:Pe})},Se=function(Pe){return A.current&&(E({scale:Pe}),_({scale:Pe})),!ee&&A.current},ve=nb({X:function(Pe){return at(Pe)},Y:function(Pe){return wt(Pe)},S:function(Pe){return Se(Pe)}}),function(Pe,Et,bt,Mt,$e,ye,Ue,Ke,ft,ut,Gt){var Rt=f4(ut,$e,ye),zt=Rt[0],Z=Rt[1],Bt=wp(Pe,Ke,zt,innerWidth),Qe=Bt[0],tt=Bt[1],ht=wp(Et,Ke,Z,innerHeight),pe=ht[0],We=ht[1],vt=Date.now()-Gt;if(vt>=200||Ke!==Ue||Math.abs(ft-Ue)>1){var vn=RD(Pe,Et,$e,ye,Ue,Ke),Ki=vn.x,Fe=vn.y,Pt=Qe?tt:Ki!==Pe?Ki:null,pn=pe?We:Fe!==Et?Fe:null;return Pt!==null&&Cg(Pe,Pt,ve.X),pn!==null&&Cg(Et,pn,ve.Y),void(Ke!==Ue&&Cg(Ue,Ke,ve.S))}var Jt=(Pe-bt)/vt,en=(Et-Mt)/vt,Un=Math.sqrt(Math.pow(Jt,2)+Math.pow(en,2)),wn=!1,oi=!1;(function(Oi,mi){var bn,qi=Oi,ri=0,zi=0,as=function(xs){bn||(bn=xs);var os=xs-bn,ia=Math.sign(Oi),Nr=-.001*ia,As=Math.sign(-qi)*Math.pow(qi,2)*2e-4,Vs=qi*os+(Nr+As)*Math.pow(os,2)/2;ri+=Vs,bn=xs,ia*(qi+=(Nr+As)*os)<=0?_r():mi(ri)?Lr():_r()};function Lr(){zi=requestAnimationFrame(as)}function _r(){cancelAnimationFrame(zi)}Lr()})(Un,function(Oi){var mi=Pe+Oi*(Jt/Un),bn=Et+Oi*(en/Un),qi=wp(mi,Ue,zt,innerWidth),ri=qi[0],zi=qi[1],as=wp(bn,Ue,Z,innerHeight),Lr=as[0],_r=as[1];if(ri&&!wn&&(wn=!0,Qe?Cg(mi,zi,ve.X):bW(zi,mi+(mi-zi),ve.X)),Lr&&!oi&&(oi=!0,pe?Cg(bn,_r,ve.Y):bW(_r,bn+(bn-_r),ve.Y)),wn&&oi)return!1;var xs=wn||ve.X(zi),os=oi||ve.Y(_r);return xs&&os})}),Je=(J=y,he=function(Pe,Et){qe||ze(ge!==1?1:Math.max(2,T/M),Pe,Et)},_e=p.useRef(0),Ze=XC(function(){_e.current=0,J.apply(void 0,[].slice.call(arguments))},{wait:300}),function(){var Pe=[].slice.call(arguments);_e.current+=1,Ze.apply(void 0,Pe),_e.current>=2&&(Ze.cancel(),_e.current=0,he.apply(void 0,Pe))});function Ce(Pe,Et){if(j.current=0,(ee||se)&&S){_({touched:!1,maskTouched:!1,pause:!1,stopRaf:!1,reach:void 0});var bt=KC(ge,T/M);if(He(q,B,ae,ue,M,I,ge,bt,st,re,Le),w(Pe,Et),W===Pe&&X===Et){if(ee)return void Je(Pe,Et);se&&x(Pe,Et)}}}function Wt(Pe,Et,bt){bt===void 0&&(bt=0),_({touched:!0,CX:Pe,CY:Et,lastCX:Pe,lastCY:Et,lastX:q,lastY:B,lastScale:ge,touchLength:bt,touchTime:Date.now()})}function ln(Pe){_({maskTouched:!0,CX:Pe.clientX,CY:Pe.clientY,lastX:q,lastY:B})}J0(Ef?void 0:"mousemove",function(Pe){Pe.preventDefault(),Ee(Pe.clientX,Pe.clientY)}),J0(Ef?void 0:"mouseup",function(Pe){Ce(Pe.clientX,Pe.clientY)}),J0(Ef?"touchmove":void 0,function(Pe){Pe.preventDefault();var Et=gW(Pe);Ee.apply(void 0,Et)},{passive:!1}),J0(Ef?"touchend":void 0,function(Pe){var Et=Pe.changedTouches[0];Ce(Et.clientX,Et.clientY)},{passive:!1}),J0("resize",XC(function(){K&&!ee&&(_(ID(T,R,re)),k())},{maxWait:8})),d4(function(){S&&E(pa({scale:ge,rotate:re},Ae))},[S]);var cn=function(Pe,Et,bt,Mt,$e,ye,Ue,Ke,ft,ut){var Gt=function(Ki,Fe,Pt,pn,Jt){var en=p.useRef(!1),Un=I_({lead:!0,scale:Pt}),wn=Un[0],oi=wn.lead,Oi=wn.scale,mi=Un[1],bn=XC(function(qi){try{return Jt(!0),mi({lead:!1,scale:qi}),Promise.resolve()}catch(ri){return Promise.reject(ri)}},{wait:pn});return d4(function(){en.current?(Jt(!1),mi({lead:!0}),bn(Pt)):en.current=!0},[Pt]),oi?[Ki*Oi,Fe*Oi,Pt/Oi]:[Ki*Pt,Fe*Pt,1]}(ye,Ue,Ke,ft,ut),Rt=Gt[0],zt=Gt[1],Z=Gt[2],Bt=function(Ki,Fe,Pt,pn,Jt){var en=p.useState(yFe),Un=en[0],wn=en[1],oi=p.useState(0),Oi=oi[0],mi=oi[1],bn=p.useRef(),qi=nb({OK:function(){return Ki&&mi(4)}});function ri(zi){Jt(!1),mi(zi)}return p.useEffect(function(){if(bn.current||(bn.current=Date.now()),Pt){if(function(zi,as){var Lr=zi&&zi.current;if(Lr&&Lr.nodeType===1){var _r=Lr.getBoundingClientRect();as({T:_r.top,L:_r.left,W:_r.width,H:_r.height,FIT:Lr.tagName==="IMG"?getComputedStyle(Lr).objectFit:void 0})}}(Fe,wn),Ki)return Date.now()-bn.current<250?(mi(1),requestAnimationFrame(function(){mi(2),requestAnimationFrame(function(){return ri(3)})}),void setTimeout(qi.OK,pn)):void mi(4);ri(5)}},[Ki,Pt]),[Oi,Un]}(Pe,Et,bt,ft,ut),Qe=Bt[0],tt=Bt[1],ht=tt.W,pe=tt.FIT,We=innerWidth/2,vt=innerHeight/2,vn=Qe<3||Qe>4;return[vn?ht?tt.L:We:Mt+(We-ye*Ke/2),vn?ht?tt.T:vt:$e+(vt-Ue*Ke/2),Rt,vn&&pe?Rt*(tt.H/ht):zt,Qe===0?Z:vn?ht/(ye*Ke)||.01:Z,vn?pe?1:0:1,Qe,pe]}(u,c,K,q,B,M,I,ge,d,function(Pe){return _({pause:Pe})}),Ot=cn[4],jt=cn[6],ot="transform "+d+"ms "+f,gt={className:m,onMouseDown:Ef?void 0:function(Pe){Pe.stopPropagation(),Pe.button===0&&Wt(Pe.clientX,Pe.clientY,0)},onTouchStart:Ef?function(Pe){Pe.stopPropagation(),Wt.apply(void 0,gW(Pe))}:void 0,onWheel:function(Pe){if(!qe){var Et=KC(ge-Pe.deltaY/100/2,T/M);_({stopRaf:!0}),ze(Et,Pe.clientX,Pe.clientY)}},style:{width:cn[2]+"px",height:cn[3]+"px",opacity:cn[5],objectFit:jt===4?void 0:cn[7],transform:re?"rotate("+re+"deg)":void 0,transition:jt>2?ot+", opacity "+d+"ms ease, height "+(jt<4?d/2:jt>4?d:0)+"ms "+f:void 0}};return ii.createElement("div",{className:"PhotoView__PhotoWrap"+(h?" "+h:""),style:g,onMouseDown:!Ef&&S?ln:void 0,onTouchStart:Ef&&S?function(Pe){return ln(Pe.touches[0])}:void 0},ii.createElement("div",{className:"PhotoView__PhotoBox",style:{transform:"matrix("+Ot+", 0, 0, "+Ot+", "+cn[0]+", "+cn[1]+")",transition:ee||Ie?void 0:ot,willChange:S?"transform":void 0}},n?ii.createElement(OFe,pa({src:n,loaded:K,broken:Q},gt,{onPhotoLoad:function(Pe){_(pa({},Pe,Pe.loaded&&ID(Pe.naturalWidth||0,Pe.naturalHeight||0,re)))},loadingElement:b,brokenElement:v})):i&&i({attrs:gt,scale:Ot,rotate:re})))}var yW={x:0,touched:!1,pause:!1,lastCX:void 0,lastCY:void 0,bg:void 0,lastBg:void 0,overlay:!0,minimal:!0,scale:1,rotate:0};function EFe(e){var t=e.loop,n=t===void 0?3:t,i=e.speed,r=e.easing,s=e.photoClosable,a=e.maskClosable,l=a===void 0||a,c=e.maskOpacity,u=c===void 0?1:c,d=e.pullClosable,f=d===void 0||d,h=e.bannerVisible,m=h===void 0||h,g=e.overlayRender,b=e.toolbarRender,v=e.className,y=e.maskClassName,x=e.photoClassName,O=e.photoWrapClassName,w=e.loadingElement,k=e.brokenElement,S=e.images,E=e.index,C=E===void 0?0:E,N=e.onIndexChange,_=e.visible,j=e.onClose,A=e.afterClose,F=e.portalContainer,T=I_(yW),P=T[0],R=T[1],L=p.useState(0),M=L[0],U=L[1],I=P.x,H=P.touched,K=P.pause,Q=P.lastCX,q=P.lastCY,B=P.bg,ee=B===void 0?u:B,le=P.lastBg,se=P.overlay,re=P.minimal,ge=P.scale,W=P.rotate,X=P.onScale,ae=P.onRotate,ue=e.hasOwnProperty("index"),Oe=ue?C:M,ke=ue?N:U,st=p.useRef(Oe),Le=S.length,Me=S[Oe],Ie=typeof n=="boolean"?n:Le>n,qe=function(Ot,jt){var ot=p.useReducer(function(bt){return!bt},!1)[1],gt=p.useRef(0),Pe=function(bt){var Mt=p.useRef(bt);function $e(ye){Mt.current=ye}return p.useMemo(function(){(function(ye){Ot?(ye(Ot),gt.current=1):gt.current=2})($e)},[bt]),[Mt.current,$e]}(Ot),Et=Pe[1];return[Pe[0],gt.current,function(){ot(),gt.current===2&&(Et(!1),jt&&jt()),gt.current=0}]}(_,A),Ae=qe[0],ze=qe[1],Ee=qe[2];d4(function(){if(Ae)return R({pause:!0,x:Oe*-(innerWidth+_0)}),void(st.current=Oe);R(yW)},[Ae]);var De=nb({close:function(Ot){ae&&ae(0),R({overlay:!0,lastBg:ee}),j(Ot)},changeIndex:function(Ot,jt){jt===void 0&&(jt=!1);var ot=Ie?st.current+(Ot-Oe):Ot,gt=Le-1,Pe=u4(ot,0,gt),Et=Ie?ot:Pe,bt=innerWidth+_0;R({touched:!1,lastCX:void 0,lastCY:void 0,x:-bt*Et,pause:jt}),st.current=Et,ke&&ke(Ie?Ot<0?gt:Ot>gt?0:Ot:Pe)}}),J=De.close,he=De.changeIndex;function _e(Ot){return Ot?J():R({overlay:!se})}function Ze(){R({x:-(innerWidth+_0)*Oe,lastCX:void 0,lastCY:void 0,pause:!0}),st.current=Oe}function at(Ot,jt,ot,gt){Ot==="x"?function(Pe){if(Q!==void 0){var Et=Pe-Q,bt=Et;!Ie&&(Oe===0&&Et>0||Oe===Le-1&&Et<0)&&(bt=Et/2),R({touched:!0,lastCX:Q,x:-(innerWidth+_0)*st.current+bt,pause:!1})}else R({touched:!0,lastCX:Pe,x:I,pause:!1})}(jt):Ot==="y"&&function(Pe,Et){if(q!==void 0){var bt=u===null?null:u4(u,.01,u-Math.abs(Pe-q)/100/4);R({touched:!0,lastCY:q,bg:Et===1?bt:u,minimal:Et===1})}else R({touched:!0,lastCY:Pe,bg:ee,minimal:!0})}(ot,gt)}function wt(Ot,jt){var ot=Ot-(Q??Ot),gt=jt-(q??jt),Pe=!1;if(ot<-40)he(Oe+1);else if(ot>40)he(Oe-1);else{var Et=-(innerWidth+_0)*st.current;Math.abs(gt)>100&&re&&f&&(Pe=!0,J()),R({touched:!1,x:Et,lastCX:void 0,lastCY:void 0,bg:u,overlay:!!Pe||se})}}J0("keydown",function(Ot){if(_)switch(Ot.key){case"ArrowLeft":he(Oe-1,!0);break;case"ArrowRight":he(Oe+1,!0);break;case"Escape":J()}});var Se=function(Ot,jt,ot){return p.useMemo(function(){var gt=Ot.length;return ot?Ot.concat(Ot).concat(Ot).slice(gt+jt-1,gt+jt+2):Ot.slice(Math.max(jt-1,0),Math.min(jt+2,gt+1))},[Ot,jt,ot])}(S,Oe,Ie);if(!Ae)return null;var ve=se&&!ze,He=_?ee:le,Je=X&&ae&&{images:S,index:Oe,visible:_,onClose:J,onIndexChange:he,overlayVisible:ve,overlay:Me&&Me.overlay,scale:ge,rotate:W,onScale:X,onRotate:ae},Ce=i?i(ze):400,Wt=r?r(ze):mW,ln=i?i(3):600,cn=r?r(3):mW;return ii.createElement(fFe,{className:"PhotoView-Portal"+(ve?"":" PhotoView-Slider__clean")+(_?"":" PhotoView-Slider__willClose")+(v?" "+v:""),role:"dialog",onClick:function(Ot){return Ot.stopPropagation()},container:F},_&&ii.createElement(gFe,null),ii.createElement("div",{className:"PhotoView-Slider__Backdrop"+(y?" "+y:"")+(ze===1?" PhotoView-Slider__fadeIn":ze===2?" PhotoView-Slider__fadeOut":""),style:{background:He?"rgba(0, 0, 0, "+He+")":void 0,transitionTimingFunction:Wt,transitionDuration:(H?0:Ce)+"ms",animationDuration:Ce+"ms"},onAnimationEnd:Ee}),m&&ii.createElement("div",{className:"PhotoView-Slider__BannerWrap"},ii.createElement("div",{className:"PhotoView-Slider__Counter"},Oe+1," / ",Le),ii.createElement("div",{className:"PhotoView-Slider__BannerRight"},b&&Je&&b(Je),ii.createElement(hFe,{className:"PhotoView-Slider__toolbarIcon",onClick:J}))),Se.map(function(Ot,jt){var ot=Ie||Oe!==0?st.current-1+jt:Oe+jt;return ii.createElement(kFe,{key:Ie?Ot.key+"/"+Ot.src+"/"+ot:Ot.key,item:Ot,speed:Ce,easing:Wt,visible:_,onReachMove:at,onReachUp:wt,onPhotoTap:function(){return _e(s)},onMaskTap:function(){return _e(l)},wrapClassName:O,className:x,style:{left:(innerWidth+_0)*ot+"px",transform:"translate3d("+I+"px, 0px, 0)",transition:H||K?void 0:"transform "+ln+"ms "+cn},loadingElement:w,brokenElement:k,onPhotoResize:Ze,isActive:st.current===ot,expose:R})}),!Ef&&m&&ii.createElement(ii.Fragment,null,(Ie||Oe!==0)&&ii.createElement("div",{className:"PhotoView-Slider__ArrowLeft",onClick:function(){return he(Oe-1,!0)}},ii.createElement(pFe,null)),(Ie||Oe+1-1){var y=u.slice();return y.splice(v,1,b),void l({images:y})}l(function(x){return{images:x.images.concat(b)}})},remove:function(b){l(function(v){var y=v.images.filter(function(x){return x.key!==b});return{images:y,index:Math.min(y.length-1,f)}})},show:function(b){var v=u.findIndex(function(y){return y.key===b});l({visible:!0,index:v}),i&&i(!0,v,a)}}),m=nb({close:function(){l({visible:!1}),i&&i(!1,f,a)},changeIndex:function(b){l({index:b}),n&&n(b,a)}}),g=p.useMemo(function(){return pa({},a,h)},[a,h]);return ii.createElement(pbe.Provider,{value:g},t,ii.createElement(EFe,pa({images:u,visible:d,index:f,onIndexChange:m.changeIndex,onClose:m.close},r)))}var gbe=function(e){var t,n,i=e.src,r=e.render,s=e.overlay,a=e.width,l=e.height,c=e.triggers,u=c===void 0?["onClick"]:c,d=e.children,f=p.useContext(pbe),h=(t=function(){return f.nextId()},(n=p.useRef({sign:!1,fn:void 0}).current).sign||(n.sign=!0,n.fn=t()),n.fn),m=p.useRef(null);p.useImperativeHandle(d==null?void 0:d.ref,function(){return m.current}),p.useEffect(function(){return function(){f.remove(h)}},[]);var g=nb({render:function(v){return r&&r(v)},show:function(v,y){f.show(h),function(x,O){if(d){var w=d.props[x];w&&w(O)}}(v,y)}}),b=p.useMemo(function(){var v={};return u.forEach(function(y){v[y]=g.show.bind(null,y)}),v},[]);return p.useEffect(function(){f.update({key:h,src:i,originRef:m,render:g.render,overlay:s,width:a,height:l})},[i]),d?p.Children.only(p.cloneElement(d,pa({},b,{ref:m}))):null};const _Fe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M5.293 12.707a1 1 0 0 1 0-1.414l5-5a1 1 0 1 1 1.414 1.414L8.414 11H18a1 1 0 1 1 0 2H8.414l3.293 3.293a1 1 0 0 1-1.414 1.414l-5-5Z",clipRule:"evenodd"})}),NFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M18.707 12.707a1 1 0 0 0 0-1.414l-5-5a1 1 0 1 0-1.414 1.414L15.586 11H6a1 1 0 1 0 0 2h9.586l-3.293 3.293a1 1 0 0 0 1.414 1.414l5-5Z",clipRule:"evenodd"})}),jFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M4.47192 2.5C5.02421 2.5 5.47192 2.94772 5.47192 3.5V5.07196C7.17065 3.47759 9.45675 2.5 11.9719 2.5C17.2186 2.5 21.4719 6.75329 21.4719 12C21.4719 17.2467 17.2186 21.5 11.9719 21.5C7.10262 21.5 3.0902 17.8375 2.53692 13.1164C2.47264 12.5679 2.8652 12.0711 3.41373 12.0068C3.96226 11.9425 4.45904 12.3351 4.52333 12.8836C4.95991 16.6089 8.12901 19.5 11.9719 19.5C16.1141 19.5 19.4719 16.1421 19.4719 12C19.4719 7.85786 16.1141 4.5 11.9719 4.5C9.75153 4.5 7.75552 5.46469 6.38146 7H9.00003C9.55232 7 10 7.44772 10 8C10 8.55228 9.55232 9 9.00003 9H4.47192C3.93256 9 3.49293 8.57299 3.47265 8.03859C3.47175 8.01771 3.47151 7.99677 3.47192 7.9758V3.5C3.47192 2.94772 3.91964 2.5 4.47192 2.5Z",fill:"currentColor"})}),Kj=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M2.55823 12C2.55823 6.75329 6.81152 2.5 12.0582 2.5C14.5734 2.5 16.8595 3.47759 18.5582 5.07197V3.5C18.5582 2.94772 19.0059 2.5 19.5582 2.5C20.1105 2.5 20.5582 2.94772 20.5582 3.5V7.97591C20.5586 7.99622 20.5584 8.01651 20.5576 8.03674C20.5382 8.572 20.0982 9 19.5582 9H15.0582C14.5059 9 14.0582 8.55228 14.0582 8C14.0582 7.44772 14.5059 7 15.0582 7H17.6487C16.2746 5.46469 14.2786 4.5 12.0582 4.5C7.91609 4.5 4.55823 7.85786 4.55823 12C4.55823 16.1421 7.91609 19.5 12.0582 19.5C15.9011 19.5 19.0702 16.6089 19.5068 12.8836C19.5711 12.3351 20.0679 11.9425 20.6164 12.0068C21.165 12.0711 21.5575 12.5679 21.4932 13.1164C20.94 17.8375 16.9275 21.5 12.0582 21.5C6.81152 21.5 2.55823 17.2467 2.55823 12Z",fill:"currentColor"})}),YC=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M16.243 6.757a1 1 0 0 1 1 1v7.072a1 1 0 0 1-2 0v-4.657L8.464 16.95a1 1 0 0 1-1.414-1.414l6.778-6.779H9.172a1 1 0 0 1 0-2h7.07Z",clipRule:"evenodd"})}),RFe=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M10.663 6.3872C10.8152 6.29068 11 6.40984 11 6.59007V8C11 8.55229 11.4477 9 12 9C12.5523 9 13 8.55229 13 8V6.59007C13 6.40984 13.1848 6.29068 13.337 6.3872C14.036 6.83047 14.5 7.61105 14.5 8.5C14.5 9.53284 13.8737 10.4194 12.9801 10.8006C12.9932 10.865 13 10.9317 13 11V13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13V11C11 10.9317 11.0068 10.865 11.0199 10.8006C10.1263 10.4194 9.5 9.53284 9.5 8.5C9.5 7.61105 9.96397 6.83047 10.663 6.3872Z",fill:"currentColor"}),o.jsx("path",{d:"M17.9754 4.01031C17.8588 4.00078 17.6965 4.00001 17.4 4.00001H9.8C8.94342 4.00001 8.36113 4.00078 7.91104 4.03756C7.47262 4.07338 7.24842 4.1383 7.09202 4.21799C6.7157 4.40974 6.40973 4.7157 6.21799 5.09202C6.1383 5.24842 6.07337 5.47263 6.03755 5.91104C6.00078 6.36113 6 6.94343 6 7.80001V16.1707C6.31278 16.0602 6.64937 16 7 16H18L18 4.60001C18 4.30348 17.9992 4.14122 17.9897 4.02464C17.9893 4.02 17.9889 4.0156 17.9886 4.01145C17.9844 4.01107 17.98 4.01069 17.9754 4.01031ZM17.657 18H7C6.44772 18 6 18.4477 6 19C6 19.5523 6.44772 20 7 20H17.657C17.5343 19.3301 17.5343 18.6699 17.657 18ZM4 19L4 7.75871C3.99999 6.95374 3.99998 6.28937 4.04419 5.74818C4.09012 5.18608 4.18868 4.66938 4.43597 4.18404C4.81947 3.43139 5.43139 2.81947 6.18404 2.43598C6.66937 2.18869 7.18608 2.09012 7.74818 2.0442C8.28937 1.99998 8.95373 1.99999 9.7587 2L17.4319 2C17.6843 1.99997 17.9301 1.99994 18.1382 2.01695C18.3668 2.03563 18.6366 2.07969 18.908 2.21799C19.2843 2.40974 19.5903 2.7157 19.782 3.09203C19.9203 3.36345 19.9644 3.63318 19.9831 3.86178C20.0001 4.06994 20 4.31574 20 4.56812L20 17C20 17.1325 19.9736 17.2638 19.9225 17.386C19.4458 18.5253 19.4458 19.4747 19.9225 20.614C20.0517 20.9227 20.0179 21.2755 19.8325 21.5541C19.6471 21.8326 19.3346 22 19 22H7C5.34315 22 4 20.6569 4 19Z",fill:"currentColor"})]}),Lv=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M18.063 5.674a1 1 0 0 1 .263 1.39l-7.5 11a1 1 0 0 1-1.533.143l-4.5-4.5a1 1 0 1 1 1.414-1.414l3.647 3.647 6.82-10.003a1 1 0 0 1 1.39-.263Z",clipRule:"evenodd"})}),bbe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM16.0755 7.93219C16.5272 8.25003 16.6356 8.87383 16.3178 9.32549L11.5678 16.0755C11.3931 16.3237 11.1152 16.4792 10.8123 16.4981C10.5093 16.517 10.2142 16.3973 10.0101 16.1727L7.51006 13.4227C7.13855 13.014 7.16867 12.3816 7.57733 12.0101C7.98598 11.6386 8.61843 11.6687 8.98994 12.0773L10.6504 13.9039L14.6822 8.17451C15 7.72284 15.6238 7.61436 16.0755 7.93219Z",fill:"currentColor"})}),IFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 16 9",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0.292893 0.292893C0.683418 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L8 6.58579L14.2929 0.292894C14.6834 -0.0976305 15.3166 -0.0976304 15.7071 0.292894C16.0976 0.683418 16.0976 1.31658 15.7071 1.70711L8.70711 8.70711C8.31658 9.09763 7.68342 9.09763 7.29289 8.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893Z"})}),PFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M15.707 4.293a1 1 0 0 1 0 1.414L9.414 12l6.293 6.293a1 1 0 0 1-1.414 1.414l-7-7a1 1 0 0 1 0-1.414l7-7a1 1 0 0 1 1.414 0Z",clipRule:"evenodd"})}),DFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M8.293 4.293a1 1 0 0 1 1.414 0l7 7a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414-1.414L14.586 12 8.293 5.707a1 1 0 0 1 0-1.414Z",clipRule:"evenodd"})}),IF=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12 6C12.5523 6 13 6.44772 13 7V12C13 12.2652 12.8946 12.5196 12.7071 12.7071L10.2071 15.2071C9.81658 15.5976 9.18342 15.5976 8.79289 15.2071C8.40237 14.8166 8.40237 14.1834 8.79289 13.7929L11 11.5858V7C11 6.44772 11.4477 6 12 6Z",fill:"currentColor"})}),MFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12.659 9.753a1 1 0 0 1-1.318 0l-4-3.5A1 1 0 1 1 8.66 4.747L12 7.671l3.341-2.924a1 1 0 1 1 1.318 1.506l-4 3.5Zm-4.002 9.501a1 1 0 1 1-1.314-1.508l4-3.485a1 1 0 0 1 1.314 0l4 3.485a1 1 0 1 1-1.314 1.508L12 16.34l-3.343 2.913Z"})}),PF=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12.7587 2H16.2413C17.0463 1.99999 17.7106 1.99998 18.2518 2.04419C18.8139 2.09012 19.3306 2.18868 19.816 2.43597C20.5686 2.81947 21.1805 3.43139 21.564 4.18404C21.8113 4.66937 21.9099 5.18608 21.9558 5.74817C22 6.28936 22 6.95372 22 7.75868V11.2413C22 12.0463 22 12.7106 21.9558 13.2518C21.9099 13.8139 21.8113 14.3306 21.564 14.816C21.1805 15.5686 20.5686 16.1805 19.816 16.564C19.3306 16.8113 18.8139 16.9099 18.2518 16.9558C17.8906 16.9853 17.4745 16.9951 16.9984 16.9984C16.9951 17.4745 16.9853 17.8906 16.9558 18.2518C16.9099 18.8139 16.8113 19.3306 16.564 19.816C16.1805 20.5686 15.5686 21.1805 14.816 21.564C14.3306 21.8113 13.8139 21.9099 13.2518 21.9558C12.7106 22 12.0463 22 11.2413 22H7.75868C6.95372 22 6.28936 22 5.74818 21.9558C5.18608 21.9099 4.66937 21.8113 4.18404 21.564C3.43139 21.1805 2.81947 20.5686 2.43597 19.816C2.18868 19.3306 2.09012 18.8139 2.04419 18.2518C1.99998 17.7106 1.99999 17.0463 2 16.2413V12.7587C1.99999 11.9537 1.99998 11.2894 2.04419 10.7482C2.09012 10.1861 2.18868 9.66937 2.43597 9.18404C2.81947 8.43139 3.43139 7.81947 4.18404 7.43598C4.66937 7.18868 5.18608 7.09012 5.74817 7.04419C6.10939 7.01468 6.52548 7.00487 7.00162 7.00162C7.00487 6.52548 7.01468 6.10939 7.04419 5.74817C7.09012 5.18608 7.18868 4.66937 7.43598 4.18404C7.81947 3.43139 8.43139 2.81947 9.18404 2.43597C9.66937 2.18868 10.1861 2.09012 10.7482 2.04419C11.2894 1.99998 11.9537 1.99999 12.7587 2ZM9.00176 7L11.2413 7C12.0463 6.99999 12.7106 6.99998 13.2518 7.04419C13.8139 7.09012 14.3306 7.18868 14.816 7.43598C15.5686 7.81947 16.1805 8.43139 16.564 9.18404C16.8113 9.66937 16.9099 10.1861 16.9558 10.7482C17 11.2894 17 11.9537 17 12.7587V14.9982C17.4455 14.9951 17.7954 14.9864 18.089 14.9624C18.5274 14.9266 18.7516 14.8617 18.908 14.782C19.2843 14.5903 19.5903 14.2843 19.782 13.908C19.8617 13.7516 19.9266 13.5274 19.9624 13.089C19.9992 12.6389 20 12.0566 20 11.2V7.8C20 6.94342 19.9992 6.36113 19.9624 5.91104C19.9266 5.47262 19.8617 5.24842 19.782 5.09202C19.5903 4.7157 19.2843 4.40973 18.908 4.21799C18.7516 4.1383 18.5274 4.07337 18.089 4.03755C17.6389 4.00078 17.0566 4 16.2 4H12.8C11.9434 4 11.3611 4.00078 10.911 4.03755C10.4726 4.07337 10.2484 4.1383 10.092 4.21799C9.7157 4.40973 9.40973 4.7157 9.21799 5.09202C9.1383 5.24842 9.07337 5.47262 9.03755 5.91104C9.01357 6.20463 9.00489 6.55447 9.00176 7ZM5.91104 9.03755C5.47262 9.07337 5.24842 9.1383 5.09202 9.21799C4.7157 9.40973 4.40973 9.7157 4.21799 10.092C4.1383 10.2484 4.07337 10.4726 4.03755 10.911C4.00078 11.3611 4 11.9434 4 12.8V16.2C4 17.0566 4.00078 17.6389 4.03755 18.089C4.07337 18.5274 4.1383 18.7516 4.21799 18.908C4.40973 19.2843 4.7157 19.5903 5.09202 19.782C5.24842 19.8617 5.47262 19.9266 5.91104 19.9624C6.36113 19.9992 6.94342 20 7.8 20H11.2C12.0566 20 12.6389 19.9992 13.089 19.9624C13.5274 19.9266 13.7516 19.8617 13.908 19.782C14.2843 19.5903 14.5903 19.2843 14.782 18.908C14.8617 18.7516 14.9266 18.5274 14.9624 18.089C14.9992 17.6389 15 17.0566 15 16.2V12.8C15 11.9434 14.9992 11.3611 14.9624 10.911C14.9266 10.4726 14.8617 10.2484 14.782 10.092C14.5903 9.7157 14.2843 9.40973 13.908 9.21799C13.7516 9.1383 13.5274 9.07337 13.089 9.03755C12.6389 9.00078 12.0566 9 11.2 9H7.8C6.94342 9 6.36113 9.00078 5.91104 9.03755Z",fill:"currentColor"})}),LFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M10.556 4a1 1 0 0 0-.97.751l-.292 1.14h5.421l-.293-1.14A1 1 0 0 0 13.453 4h-2.897Zm6.224 1.892-.421-1.639A3 3 0 0 0 13.453 2h-2.897A3 3 0 0 0 7.65 4.253l-.421 1.639H4a1 1 0 1 0 0 2h.1l1.215 11.425A3 3 0 0 0 8.3 22h7.4a3 3 0 0 0 2.984-2.683l1.214-11.425H20a1 1 0 1 0 0-2h-3.22Zm1.108 2H6.112l1.192 11.214A1 1 0 0 0 8.3 20h7.4a1 1 0 0 0 .995-.894l1.192-11.214ZM10 10a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1Zm4 0a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1Z",clipRule:"evenodd"})}),$Fe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M3 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm7 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm7 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"})}),FFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 10 16",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.34151 0.747423C4.71854 0.417526 5.28149 0.417526 5.65852 0.747423L9.65852 4.24742C10.0742 4.61111 10.1163 5.24287 9.75259 5.6585C9.38891 6.07414 8.75715 6.11626 8.34151 5.75258L5.00001 2.82877L1.65852 5.75258C1.24288 6.11626 0.61112 6.07414 0.247438 5.6585C-0.116244 5.24287 -0.0741267 4.61111 0.34151 4.24742L4.34151 0.747423ZM0.246065 10.3578C0.608879 9.94139 1.24055 9.89795 1.65695 10.2608L5.00001 13.1737L8.34308 10.2608C8.75948 9.89795 9.39115 9.94139 9.75396 10.3578C10.1168 10.7742 10.0733 11.4058 9.65695 11.7687L5.65695 15.2539C5.28043 15.582 4.7196 15.582 4.34308 15.2539L0.343082 11.7687C-0.0733128 11.4058 -0.116749 10.7742 0.246065 10.3578Z"})}),BFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M16.793 2.793a3.121 3.121 0 1 1 4.414 4.414l-8.5 8.5A1 1 0 0 1 12 16H9a1 1 0 0 1-1-1v-3a1 1 0 0 1 .293-.707l8.5-8.5Zm3 1.414a1.121 1.121 0 0 0-1.586 0L10 12.414V14h1.586l8.207-8.207a1.121 1.121 0 0 0 0-1.586ZM6 5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h4a1 1 0 1 1 0 2H6Z",clipRule:"evenodd"})}),UFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M12 7a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V8h-3a1 1 0 0 1-1-1Zm-5 5a1 1 0 0 1 1 1v3h3a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1Z",clipRule:"evenodd"})}),QFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm4.465 6.763a1 1 0 0 0-1.228-1.228l-5.5 1.5a1 1 0 0 0-.702.702l-1.5 5.5a1 1 0 0 0 1.228 1.228l5.5-1.5a1 1 0 0 0 .702-.702l1.5-5.5Zm-6.54 5.312.89-3.26 3.26-.89-.89 3.26-3.26.89Z",clipRule:"evenodd"})}),zFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M14.4472 7.10558C14.9412 7.35257 15.1414 7.95324 14.8944 8.44722L10.8944 16.4472C10.6474 16.9412 10.0468 17.1414 9.55279 16.8944C9.05881 16.6474 8.85858 16.0468 9.10557 15.5528L13.1056 7.55279C13.3526 7.05881 13.9532 6.85859 14.4472 7.10558ZM6.6 7.20001C7.04183 7.53138 7.13137 8.15818 6.8 8.60001L4.25 12L6.8 15.4C7.13137 15.8418 7.04183 16.4686 6.6 16.8C6.15817 17.1314 5.53137 17.0418 5.2 16.6L2.2 12.6C1.93333 12.2444 1.93333 11.7556 2.2 11.4L5.2 7.40001C5.53137 6.95818 6.15817 6.86863 6.6 7.20001ZM17.4 7.20001C17.8418 6.86863 18.4686 6.95818 18.8 7.40001L21.8 11.4C22.0667 11.7556 22.0667 12.2444 21.8 12.6L18.8 16.6C18.4686 17.0418 17.8418 17.1314 17.4 16.8C16.9582 16.4686 16.8686 15.8418 17.2 15.4L19.75 12L17.2 8.60001C16.8686 8.15818 16.9582 7.53138 17.4 7.20001Z",fill:"currentColor"})}),ybe=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M13 12a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4Zm-1-2.5A1.25 1.25 0 1 0 12 7a1.25 1.25 0 0 0 0 2.5Z"}),o.jsx("path",{fillRule:"evenodd",d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z",clipRule:"evenodd"})]}),VFe=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M7.79289 9.04289C8.18342 8.65237 8.81658 8.65237 9.20711 9.04289L11.4571 11.2929C11.8476 11.6834 11.8476 12.3166 11.4571 12.7071L9.20711 14.9571C8.81658 15.3476 8.18342 15.3476 7.79289 14.9571C7.40237 14.5666 7.40237 13.9334 7.79289 13.5429L9.33579 12L7.79289 10.4571C7.40237 10.0666 7.40237 9.43342 7.79289 9.04289ZM12.25 14.25C12.25 13.6977 12.6977 13.25 13.25 13.25H15.5C16.0523 13.25 16.5 13.6977 16.5 14.25C16.5 14.8023 16.0523 15.25 15.5 15.25H13.25C12.6977 15.25 12.25 14.8023 12.25 14.25Z",fill:"currentColor"}),o.jsx("path",{d:"M2 8C2 5.79086 3.79086 4 6 4C6.55228 4 7 4.44772 7 5C7 5.55228 6.55228 6 6 6C4.89543 6 4 6.89543 4 8V16C4 17.1046 4.89543 18 6 18C6.55228 18 7 18.4477 7 19C7 19.5523 6.55228 20 6 20C3.79086 20 2 18.2091 2 16V8ZM17 5C17 4.44772 17.4477 4 18 4C20.2091 4 22 5.79086 22 8V16C22 18.2091 20.2091 20 18 20C17.4477 20 17 19.5523 17 19C17 18.4477 17.4477 18 18 18C19.1046 18 20 17.1046 20 16V8C20 6.89543 19.1046 6 18 6C17.4477 6 17 5.55228 17 5Z",fill:"currentColor"})]}),HFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M6 12C6 11.4477 6.44772 11 7 11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H7C6.44772 13 6 12.5523 6 12Z",fill:"currentColor"})}),qFe=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M12.75 9.50001C12.75 9.08579 13.0858 8.75001 13.5 8.75001H14.5C14.9142 8.75001 15.25 9.08579 15.25 9.50001V14.5C15.25 14.9142 14.9142 15.25 14.5 15.25H13.5C13.0858 15.25 12.75 14.9142 12.75 14.5V9.50001Z",fill:"currentColor"}),o.jsx("path",{d:"M9.50001 8.75001C9.08579 8.75001 8.75001 9.08579 8.75001 9.50001V14.5C8.75001 14.9142 9.08579 15.25 9.50001 15.25H10.5C10.9142 15.25 11.25 14.9142 11.25 14.5V9.50001C11.25 9.08579 10.9142 8.75001 10.5 8.75001H9.50001Z",fill:"currentColor"}),o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.97144 12C1.97144 6.46138 6.46138 1.97144 12 1.97144C17.5386 1.97144 22.0286 6.46138 22.0286 12C22.0286 17.5386 17.5386 22.0286 12 22.0286C6.46138 22.0286 1.97144 17.5386 1.97144 12ZM12 4.02858C7.59751 4.02858 4.02858 7.59751 4.02858 12C4.02858 16.4025 7.59751 19.9714 12 19.9714C16.4025 19.9714 19.9714 16.4025 19.9714 12C19.9714 7.59751 16.4025 4.02858 12 4.02858Z",fill:"currentColor"})]}),vW=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M9.5 9.33165V14.6683C9.5 15.4595 10.3752 15.9373 11.0408 15.5095L15.1915 12.8412C15.8038 12.4475 15.8038 11.5524 15.1915 11.1588L11.0408 8.49047C10.3752 8.06265 9.5 8.54049 9.5 9.33165Z",fill:"currentColor"}),o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12Z",fill:"currentColor"})]}),WFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M8 16.7229V7.27711C8 6.29075 9.08894 5.69298 9.9211 6.22254L17.3428 10.9454C18.1147 11.4366 18.1147 12.5634 17.3428 13.0546L9.92109 17.7775C9.08894 18.3071 8 17.7093 8 16.7229Z",fill:"currentColor"})}),vbe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M12 5a1 1 0 0 1 1 1v5h5a1 1 0 1 1 0 2h-5v5a1 1 0 1 1-2 0v-5H6a1 1 0 1 1 0-2h5V6a1 1 0 0 1 1-1Z",clipRule:"evenodd"})}),xbe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12 3C12.5523 3 13 3.44772 13 4L13 11H20C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13L13 13L13 20C13 20.5523 12.5523 21 12 21C11.4477 21 11 20.5523 11 20L11 13L4 13C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11L11 11L11 4C11 3.44772 11.4477 3 12 3Z",fill:"currentColor"})}),GFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12 6C12.5523 6 13 6.44772 13 7V11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H13V17C13 17.5523 12.5523 18 12 18C11.4477 18 11 17.5523 11 17V13H7C6.44772 13 6 12.5523 6 12C6 11.4477 6.44772 11 7 11H11V7C11 6.44772 11.4477 6 12 6Z",fill:"currentColor"})}),KFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.875 4.5C7.35418 4.5 4.5 7.35418 4.5 10.875C4.5 14.3958 7.35418 17.25 10.875 17.25C14.3958 17.25 17.25 14.3958 17.25 10.875C17.25 7.35418 14.3958 4.5 10.875 4.5ZM2.5 10.875C2.5 6.24962 6.24962 2.5 10.875 2.5C15.5004 2.5 19.25 6.24962 19.25 10.875C19.25 12.8273 18.582 14.6236 17.462 16.0478L21.2071 19.7929C21.5976 20.1834 21.5976 20.8166 21.2071 21.2071C20.8166 21.5976 20.1834 21.5976 19.7929 21.2071L16.0478 17.462C14.6236 18.582 12.8273 19.25 10.875 19.25C6.24962 19.25 2.5 15.5004 2.5 10.875Z",fill:"currentColor"})}),XFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M11.2929 3.29289C11.6834 2.90237 12.3166 2.90237 12.7071 3.29289L16.7071 7.29289C17.0976 7.68342 17.0976 8.31658 16.7071 8.70711C16.3166 9.09763 15.6834 9.09763 15.2929 8.70711L13 6.41421V15C13 15.5523 12.5523 16 12 16C11.4477 16 11 15.5523 11 15V6.41421L8.70711 8.70711C8.31658 9.09763 7.68342 9.09763 7.29289 8.70711C6.90237 8.31658 6.90237 7.68342 7.29289 7.29289L11.2929 3.29289ZM4 14C4.55229 14 5 14.4477 5 15V15.2C5 16.0566 5.00078 16.6389 5.03755 17.089C5.07337 17.5274 5.1383 17.7516 5.21799 17.908C5.40973 18.2843 5.7157 18.5903 6.09202 18.782C6.24842 18.8617 6.47262 18.9266 6.91104 18.9624C7.36113 18.9992 7.94342 19 8.8 19H15.2C16.0566 19 16.6389 18.9992 17.089 18.9624C17.5274 18.9266 17.7516 18.8617 17.908 18.782C18.2843 18.5903 18.5903 18.2843 18.782 17.908C18.8617 17.7516 18.9266 17.5274 18.9624 17.089C18.9992 16.6389 19 16.0566 19 15.2V15C19 14.4477 19.4477 14 20 14C20.5523 14 21 14.4477 21 15V15.2413C21 16.0463 21 16.7106 20.9558 17.2518C20.9099 17.8139 20.8113 18.3306 20.564 18.816C20.1805 19.5686 19.5686 20.1805 18.816 20.564C18.3306 20.8113 17.8139 20.9099 17.2518 20.9558C16.7106 21 16.0463 21 15.2413 21H8.75868C7.95372 21 7.28936 21 6.74817 20.9558C6.18608 20.9099 5.66937 20.8113 5.18404 20.564C4.43139 20.1805 3.81947 19.5686 3.43597 18.816C3.18868 18.3306 3.09012 17.8139 3.04419 17.2518C2.99998 16.7106 2.99999 16.0463 3 15.2413L3 15C3 14.4477 3.44772 14 4 14Z",fill:"currentColor"})}),YFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M6 8C6 6.89543 6.89543 6 8 6H16C17.1046 6 18 6.89543 18 8V16C18 17.1046 17.1046 18 16 18H8C6.89543 18 6 17.1046 6 16V8Z",fill:"currentColor"})}),ZFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M14.5 4a5.5 5.5 0 0 0-5.078 7.616 1 1 0 0 1-.216 1.092l-4.749 4.75a1.475 1.475 0 0 0 2.086 2.085l4.749-4.749a1 1 0 0 1 1.092-.216A5.5 5.5 0 0 0 20 9.414l-1.293 1.293a3.828 3.828 0 1 1-5.414-5.414L14.585 4H14.5ZM7 9.5a7.5 7.5 0 0 1 9.969-7.084 1 1 0 0 1 .378 1.651l-2.64 2.64a1.829 1.829 0 0 0 2.586 2.586l2.64-2.64a1 1 0 0 1 1.651.378 7.5 7.5 0 0 1-9.328 9.627l-4.299 4.3a3.475 3.475 0 0 1-4.914-4.915l4.299-4.299A7.497 7.497 0 0 1 7 9.5Z"})}),K2=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M8.99805 16.796C8.99805 15.4164 7.87961 14.2979 6.5 14.2979C5.12039 14.2979 4.00195 15.4164 4.00195 16.796C4.00196 18.1756 5.1204 19.294 6.5 19.294C7.8796 19.294 8.99804 18.1756 8.99805 16.796ZM19.748 15.0479C19.748 14.7729 19.525 14.5499 19.25 14.5499H15.75C15.475 14.5499 15.252 14.7729 15.252 15.0479V18.5479C15.252 18.823 15.475 19.046 15.75 19.046H19.25C19.525 19.046 19.748 18.823 19.748 18.5479V15.0479ZM10.0469 3.45125C11.077 2.15921 13.0849 2.20276 14.0498 3.58113L16.4189 6.96492L16.5205 7.12215C17.5046 8.76341 16.3301 10.9023 14.3691 10.9024H9.63086C7.60676 10.9023 6.42029 8.62316 7.58105 6.96492L9.9502 3.58113L10.0469 3.45125ZM12.4082 4.73055C12.2223 4.46497 11.842 4.44826 11.6318 4.68074L11.5918 4.73055L9.22266 8.11433C8.99176 8.44435 9.22808 8.89744 9.63086 8.89754H14.3691C14.7468 8.89745 14.9774 8.49957 14.8145 8.17781L14.7773 8.11433L12.4082 4.73055ZM11.002 16.796C11.0019 19.2824 8.98638 21.2979 6.5 21.2979C4.01362 21.2979 1.99806 19.2824 1.99805 16.796C1.99805 14.3096 4.01361 12.294 6.5 12.294C8.98639 12.294 11.002 14.3096 11.002 16.796ZM21.752 18.5479C21.752 19.9297 20.6318 21.0499 19.25 21.0499H15.75C14.3682 21.0499 13.248 19.9297 13.248 18.5479V15.0479C13.2481 13.6662 14.3682 12.546 15.75 12.546H19.25C20.6318 12.546 21.7519 13.6662 21.752 15.0479V18.5479Z",fill:"currentColor"})}),JFe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.5555 4C10.099 4 9.70052 4.30906 9.58693 4.75114L9.29382 5.8919H14.715L14.4219 4.75114C14.3083 4.30906 13.9098 4 13.4533 4H10.5555ZM16.7799 5.8919L16.3589 4.25342C16.0182 2.92719 14.8226 2 13.4533 2H10.5555C9.18616 2 7.99062 2.92719 7.64985 4.25342L7.22886 5.8919H4C3.44772 5.8919 3 6.33961 3 6.8919C3 7.44418 3.44772 7.8919 4 7.8919H4.10069L5.31544 19.3172C5.47763 20.8427 6.76455 22 8.29863 22H15.7014C17.2354 22 18.5224 20.8427 18.6846 19.3172L19.8993 7.8919H20C20.5523 7.8919 21 7.44418 21 6.8919C21 6.33961 20.5523 5.8919 20 5.8919H16.7799ZM17.888 7.8919H6.11196L7.30423 19.1057C7.3583 19.6142 7.78727 20 8.29863 20H15.7014C16.2127 20 16.6417 19.6142 16.6958 19.1057L17.888 7.8919ZM10 10C10.5523 10 11 10.4477 11 11V16C11 16.5523 10.5523 17 10 17C9.44772 17 9 16.5523 9 16V11C9 10.4477 9.44772 10 10 10ZM14 10C14.5523 10 15 10.4477 15 11V16C15 16.5523 14.5523 17 14 17C13.4477 17 13 16.5523 13 16V11C13 10.4477 13.4477 10 14 10Z"})}),e7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M7.5 5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM3 7.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0ZM17 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm-8.96 8.247C3.137 17.048 2.5 18.271 2.5 20a1 1 0 1 1-2 0c0-2.271.862-4.049 2.21-5.248C4.042 13.57 5.788 13 7.5 13s3.459.57 4.79 1.752c1.348 1.2 2.21 2.977 2.21 5.248a1 1 0 1 1-2 0c0-1.729-.638-2.952-1.54-3.753C10.042 15.43 8.788 15 7.5 15s-2.541.43-3.46 1.247Zm15.757-.607c-1.009-.638-2.338-.807-3.526-.472a1 1 0 0 1-.542-1.925c1.695-.478 3.616-.255 5.136.706 1.558.984 2.635 2.707 2.635 5.051a1 1 0 1 1-2 0c0-1.665-.732-2.746-1.703-3.36Z",clipRule:"evenodd"})}),wbe=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M10.42 2.006a4 4 0 0 1 3.159 0c.674.29 1.188.822 1.667 1.456.474.627 1 1.473 1.653 2.523l3.542 5.696c.72 1.16 1.3 2.09 1.682 2.854.384.766.654 1.517.59 2.292a4 4 0 0 1-1.604 2.886c-.625.463-1.405.63-2.258.709-.85.078-1.945.078-3.311.078H8.46c-1.366 0-2.46 0-3.31-.078-.854-.078-1.634-.246-2.26-.71a4 4 0 0 1-1.603-2.885c-.064-.775.206-1.526.59-2.292.383-.764.961-1.694 1.682-2.854l3.542-5.696c.653-1.05 1.18-1.896 1.653-2.523.48-.634.993-1.166 1.667-1.456Zm2.37 1.838a2 2 0 0 0-1.58 0c-.192.083-.448.28-.86.825-.413.544-.891 1.312-1.577 2.415l-3.488 5.61c-.755 1.214-1.283 2.066-1.62 2.737-.34.678-.402 1.02-.385 1.232a2 2 0 0 0 .802 1.443c.171.127.494.255 1.25.324.748.069 1.75.07 3.18.07h6.976c1.43 0 2.432-.001 3.18-.07.756-.069 1.079-.197 1.25-.324a2 2 0 0 0 .802-1.443c.017-.212-.045-.554-.385-1.232-.337-.671-.865-1.523-1.62-2.737l-3.488-5.61c-.686-1.103-1.164-1.87-1.576-2.415-.413-.546-.67-.742-.861-.825"}),o.jsx("path",{d:"M12 7.5a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0v-3a1 1 0 0 1 1-1M10.851 15a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0"})]}),DF=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M5.636 5.636a1 1 0 0 1 1.414 0l4.95 4.95 4.95-4.95a1 1 0 0 1 1.414 1.414L13.414 12l4.95 4.95a1 1 0 0 1-1.414 1.414L12 13.414l-4.95 4.95a1 1 0 0 1-1.414-1.414l4.95-4.95-4.95-4.95a1 1 0 0 1 0-1.414Z",clipRule:"evenodd"})});/** + `),()=>{document.head.removeChild(d)}},[t]),o.jsx(i6e,{isPresent:t,childRef:i,sizeRef:r,children:p.cloneElement(e,{ref:i})})}const s6e=({children:e,initial:t,isPresent:n,onExitComplete:i,custom:r,presenceAffectsLayout:s,mode:a})=>{const l=Wj(a6e),c=p.useId(),u=p.useCallback(f=>{l.set(f,!0);for(const h of l.values())if(!h)return;i&&i()},[l,i]),d=p.useMemo(()=>({id:c,initial:t,isPresent:n,custom:r,onExitComplete:u,register:f=>(l.set(f,!1),()=>l.delete(f))}),s?[Math.random(),u]:[n,u]);return p.useMemo(()=>{l.forEach((f,h)=>l.set(h,!1))},[n]),p.useEffect(()=>{!n&&!l.size&&i&&i()},[n]),a==="popLayout"&&(e=o.jsx(r6e,{isPresent:n,children:e})),o.jsx(Kj.Provider,{value:d,children:e})};function a6e(){return new Map}function Yme(e=!0){const t=p.useContext(Kj);if(t===null)return[!0,null];const{isPresent:n,onExitComplete:i,register:r}=t,s=p.useId();p.useEffect(()=>{e&&r(s)},[e]);const a=p.useCallback(()=>e&&i&&i(s),[s,i,e]);return!n&&i?[!1,a]:[!0]}const KC=e=>e.key||"";function cq(e){const t=[];return p.Children.forEach(e,n=>{p.isValidElement(n)&&t.push(n)}),t}const s9=typeof window<"u",Zme=s9?p.useLayoutEffect:p.useEffect,Iu=({children:e,custom:t,initial:n=!0,onExitComplete:i,presenceAffectsLayout:r=!0,mode:s="sync",propagate:a=!1})=>{const[l,c]=Yme(a),u=p.useMemo(()=>cq(e),[e]),d=a&&!l?[]:u.map(KC),f=p.useRef(!0),h=p.useRef(u),m=Wj(()=>new Map),[g,b]=p.useState(u),[v,y]=p.useState(u);Zme(()=>{f.current=!1,h.current=u;for(let w=0;w{const k=KC(w),S=a&&!l?!1:u===v||d.includes(k),E=()=>{if(m.has(k))m.set(k,!0);else return;let C=!0;m.forEach(N=>{N||(C=!1)}),C&&(O==null||O(),y(h.current),a&&(c==null||c()),i&&i())};return o.jsx(s6e,{isPresent:S,initial:!f.current||n?void 0:!1,custom:S?void 0:t,presenceAffectsLayout:r,mode:s,onExitComplete:S?void 0:E,children:w},k)})})},oc=e=>e;let Jme=oc;const o6e={useManualTiming:!1};function l6e(e){let t=new Set,n=new Set,i=!1,r=!1;const s=new WeakSet;let a={delta:0,timestamp:0,isProcessing:!1};function l(u){s.has(u)&&(c.schedule(u),e()),u(a)}const c={schedule:(u,d=!1,f=!1)=>{const m=f&&i?t:n;return d&&s.add(u),m.has(u)||m.add(u),u},cancel:u=>{n.delete(u),s.delete(u)},process:u=>{if(a=u,i){r=!0;return}i=!0,[t,n]=[n,t],t.forEach(l),t.clear(),i=!1,r&&(r=!1,c.process(u))}};return c}const GC=["read","resolveKeyframes","update","preRender","render","postRender"],c6e=40;function ege(e,t){let n=!1,i=!0;const r={delta:0,timestamp:0,isProcessing:!1},s=()=>n=!0,a=GC.reduce((y,x)=>(y[x]=l6e(s),y),{}),{read:l,resolveKeyframes:c,update:u,preRender:d,render:f,postRender:h}=a,m=()=>{const y=performance.now();n=!1,r.delta=i?1e3/60:Math.max(Math.min(y-r.timestamp,c6e),1),r.timestamp=y,r.isProcessing=!0,l.process(r),c.process(r),u.process(r),d.process(r),f.process(r),h.process(r),r.isProcessing=!1,n&&t&&(i=!1,e(m))},g=()=>{n=!0,i=!0,r.isProcessing||e(m)};return{schedule:GC.reduce((y,x)=>{const O=a[x];return y[x]=(w,k=!1,S=!1)=>(n||g(),O.schedule(w,k,S)),y},{}),cancel:y=>{for(let x=0;xuq[e].some(n=>!!t[n])};function u6e(e){for(const t in e)Fv[t]={...Fv[t],...e[t]}}const d6e=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function N_(e){return e.startsWith("while")||e.startsWith("drag")&&e!=="draggable"||e.startsWith("layout")||e.startsWith("onTap")||e.startsWith("onPan")||e.startsWith("onLayout")||d6e.has(e)}let nge=e=>!N_(e);function ige(e){e&&(nge=t=>t.startsWith("on")?!N_(t):e(t))}try{ige(require("@emotion/is-prop-valid").default)}catch{}function f6e(e,t,n){const i={};for(const r in e)r==="values"&&typeof e.values=="object"||(nge(r)||n===!0&&N_(r)||!t&&!N_(r)||e.draggable&&r.startsWith("onDrag"))&&(i[r]=e[r]);return i}function h6e({children:e,isValidProp:t,...n}){t&&ige(t),n={...p.useContext(hS),...n},n.isStatic=Wj(()=>n.isStatic);const i=p.useMemo(()=>n,[JSON.stringify(n.transition),n.transformPagePoint,n.reducedMotion]);return o.jsx(hS.Provider,{value:i,children:e})}function p6e(e){if(typeof Proxy>"u")return e;const t=new Map,n=(...i)=>e(...i);return new Proxy(n,{get:(i,r)=>r==="create"?e:(t.has(r)||t.set(r,e(r)),t.get(r))})}const Gj=p.createContext({});function pS(e){return typeof e=="string"||Array.isArray(e)}function Xj(e){return e!==null&&typeof e=="object"&&typeof e.start=="function"}const a9=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],o9=["initial",...a9];function Yj(e){return Xj(e.animate)||o9.some(t=>pS(e[t]))}function rge(e){return!!(Yj(e)||e.variants)}function m6e(e,t){if(Yj(e)){const{initial:n,animate:i}=e;return{initial:n===!1||pS(n)?n:void 0,animate:pS(i)?i:void 0}}return e.inherit!==!1?t:{}}function g6e(e){const{initial:t,animate:n}=m6e(e,p.useContext(Gj));return p.useMemo(()=>({initial:t,animate:n}),[dq(t),dq(n)])}function dq(e){return Array.isArray(e)?e.join(" "):e}const b6e=Symbol.for("motionComponentSymbol");function Ay(e){return e&&typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function y6e(e,t,n){return p.useCallback(i=>{i&&e.onMount&&e.onMount(i),t&&(i?t.mount(i):t.unmount()),n&&(typeof n=="function"?n(i):Ay(n)&&(n.current=i))},[t])}const l9=e=>e.replace(/([a-z])([A-Z])/gu,"$1-$2").toLowerCase(),v6e="framerAppearId",sge="data-"+l9(v6e),{schedule:c9}=ege(queueMicrotask,!1),age=p.createContext({});function x6e(e,t,n,i,r){var s,a;const{visualElement:l}=p.useContext(Gj),c=p.useContext(tge),u=p.useContext(Kj),d=p.useContext(hS).reducedMotion,f=p.useRef(null);i=i||c.renderer,!f.current&&i&&(f.current=i(e,{visualState:t,parent:l,props:n,presenceContext:u,blockInitialAnimation:u?u.initial===!1:!1,reducedMotionConfig:d}));const h=f.current,m=p.useContext(age);h&&!h.projection&&r&&(h.type==="html"||h.type==="svg")&&w6e(f.current,n,r,m);const g=p.useRef(!1);p.useInsertionEffect(()=>{h&&g.current&&h.update(n,u)});const b=n[sge],v=p.useRef(!!b&&!(!((s=window.MotionHandoffIsComplete)===null||s===void 0)&&s.call(window,b))&&((a=window.MotionHasOptimisedAnimation)===null||a===void 0?void 0:a.call(window,b)));return Zme(()=>{h&&(g.current=!0,window.MotionIsMounted=!0,h.updateFeatures(),c9.render(h.render),v.current&&h.animationState&&h.animationState.animateChanges())}),p.useEffect(()=>{h&&(!v.current&&h.animationState&&h.animationState.animateChanges(),v.current&&(queueMicrotask(()=>{var y;(y=window.MotionHandoffMarkAsComplete)===null||y===void 0||y.call(window,b)}),v.current=!1))}),h}function w6e(e,t,n,i){const{layoutId:r,layout:s,drag:a,dragConstraints:l,layoutScroll:c,layoutRoot:u}=t;e.projection=new n(e.latestValues,t["data-framer-portal-id"]?void 0:oge(e.parent)),e.projection.setOptions({layoutId:r,layout:s,alwaysMeasureLayout:!!a||l&&Ay(l),visualElement:e,animationType:typeof s=="string"?s:"both",initialPromotionConfig:i,layoutScroll:c,layoutRoot:u})}function oge(e){if(e)return e.options.allowProjection!==!1?e.projection:oge(e.parent)}function O6e({preloadedFeatures:e,createVisualElement:t,useRender:n,useVisualState:i,Component:r}){var s,a;e&&u6e(e);function l(u,d){let f;const h={...p.useContext(hS),...u,layoutId:S6e(u)},{isStatic:m}=h,g=g6e(u),b=i(u,m);if(!m&&s9){k6e();const v=E6e(h);f=v.MeasureLayout,g.visualElement=x6e(r,b,h,t,v.ProjectionNode)}return o.jsxs(Gj.Provider,{value:g,children:[f&&g.visualElement?o.jsx(f,{visualElement:g.visualElement,...h}):null,n(r,u,y6e(b,g.visualElement,d),b,m,g.visualElement)]})}l.displayName=`motion.${typeof r=="string"?r:`create(${(a=(s=r.displayName)!==null&&s!==void 0?s:r.name)!==null&&a!==void 0?a:""})`}`;const c=p.forwardRef(l);return c[b6e]=r,c}function S6e({layoutId:e}){const t=p.useContext(r9).id;return t&&e!==void 0?t+"-"+e:e}function k6e(e,t){p.useContext(tge).strict}function E6e(e){const{drag:t,layout:n}=Fv;if(!t&&!n)return{};const i={...t,...n};return{MeasureLayout:t!=null&&t.isEnabled(e)||n!=null&&n.isEnabled(e)?i.MeasureLayout:void 0,ProjectionNode:i.ProjectionNode}}const C6e=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function u9(e){return typeof e!="string"||e.includes("-")?!1:!!(C6e.indexOf(e)>-1||/[A-Z]/u.test(e))}function fq(e){const t=[{},{}];return e==null||e.values.forEach((n,i)=>{t[0][i]=n.get(),t[1][i]=n.getVelocity()}),t}function d9(e,t,n,i){if(typeof t=="function"){const[r,s]=fq(i);t=t(n!==void 0?n:e.custom,r,s)}if(typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"){const[r,s]=fq(i);t=t(n!==void 0?n:e.custom,r,s)}return t}const e4=e=>Array.isArray(e),T6e=e=>!!(e&&typeof e=="object"&&e.mix&&e.toValue),A6e=e=>e4(e)?e[e.length-1]||0:e,yo=e=>!!(e&&e.getVelocity);function YA(e){const t=yo(e)?e.get():e;return T6e(t)?t.toValue():t}function _6e({scrapeMotionValuesFromProps:e,createRenderState:t,onUpdate:n},i,r,s){const a={latestValues:N6e(i,r,s,e),renderState:t()};return n&&(a.onMount=l=>n({props:i,current:l,...a}),a.onUpdate=l=>n(l)),a}const lge=e=>(t,n)=>{const i=p.useContext(Gj),r=p.useContext(Kj),s=()=>_6e(e,t,i,r);return n?s():Wj(s)};function N6e(e,t,n,i){const r={},s=i(e,{});for(const h in s)r[h]=YA(s[h]);let{initial:a,animate:l}=e;const c=Yj(e),u=rge(e);t&&u&&!c&&e.inherit!==!1&&(a===void 0&&(a=t.initial),l===void 0&&(l=t.animate));let d=n?n.initial===!1:!1;d=d||a===!1;const f=d?l:a;if(f&&typeof f!="boolean"&&!Xj(f)){const h=Array.isArray(f)?f:[f];for(let m=0;mt=>typeof t=="string"&&t.startsWith(e),uge=cge("--"),j6e=cge("var(--"),f9=e=>j6e(e)?R6e.test(e.split("/*")[0].trim()):!1,R6e=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu,dge=(e,t)=>t&&typeof e=="number"?t.transform(e):e,yh=(e,t,n)=>n>t?t:ntypeof e=="number",parse:parseFloat,transform:e=>e},mS={..._x,transform:e=>yh(0,1,e)},XC={..._x,default:1},Uk=e=>({test:t=>typeof t=="string"&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),vp=Uk("deg"),Dd=Uk("%"),Pn=Uk("px"),I6e=Uk("vh"),P6e=Uk("vw"),hq={...Dd,parse:e=>Dd.parse(e)/100,transform:e=>Dd.transform(e*100)},D6e={borderWidth:Pn,borderTopWidth:Pn,borderRightWidth:Pn,borderBottomWidth:Pn,borderLeftWidth:Pn,borderRadius:Pn,radius:Pn,borderTopLeftRadius:Pn,borderTopRightRadius:Pn,borderBottomRightRadius:Pn,borderBottomLeftRadius:Pn,width:Pn,maxWidth:Pn,height:Pn,maxHeight:Pn,top:Pn,right:Pn,bottom:Pn,left:Pn,padding:Pn,paddingTop:Pn,paddingRight:Pn,paddingBottom:Pn,paddingLeft:Pn,margin:Pn,marginTop:Pn,marginRight:Pn,marginBottom:Pn,marginLeft:Pn,backgroundPositionX:Pn,backgroundPositionY:Pn},M6e={rotate:vp,rotateX:vp,rotateY:vp,rotateZ:vp,scale:XC,scaleX:XC,scaleY:XC,scaleZ:XC,skew:vp,skewX:vp,skewY:vp,distance:Pn,translateX:Pn,translateY:Pn,translateZ:Pn,x:Pn,y:Pn,z:Pn,perspective:Pn,transformPerspective:Pn,opacity:mS,originX:hq,originY:hq,originZ:Pn},pq={..._x,transform:Math.round},h9={...D6e,...M6e,zIndex:pq,size:Pn,fillOpacity:mS,strokeOpacity:mS,numOctaves:pq},L6e={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},$6e=Ax.length;function F6e(e,t,n){let i="",r=!0;for(let s=0;s<$6e;s++){const a=Ax[s],l=e[a];if(l===void 0)continue;let c=!0;if(typeof l=="number"?c=l===(a.startsWith("scale")?1:0):c=parseFloat(l)===0,!c||n){const u=dge(l,h9[a]);if(!c){r=!1;const d=L6e[a]||a;i+=`${d}(${u}) `}n&&(t[a]=u)}}return i=i.trim(),n?i=n(t,r?"":i):r&&(i="none"),i}function p9(e,t,n){const{style:i,vars:r,transformOrigin:s}=e;let a=!1,l=!1;for(const c in t){const u=t[c];if(Xb.has(c)){a=!0;continue}else if(uge(c)){r[c]=u;continue}else{const d=dge(u,h9[c]);c.startsWith("origin")?(l=!0,s[c]=d):i[c]=d}}if(t.transform||(a||n?i.transform=F6e(t,e.transform,n):i.transform&&(i.transform="none")),l){const{originX:c="50%",originY:u="50%",originZ:d=0}=s;i.transformOrigin=`${c} ${u} ${d}`}}const B6e={offset:"stroke-dashoffset",array:"stroke-dasharray"},U6e={offset:"strokeDashoffset",array:"strokeDasharray"};function Q6e(e,t,n=1,i=0,r=!0){e.pathLength=1;const s=r?B6e:U6e;e[s.offset]=Pn.transform(-i);const a=Pn.transform(t),l=Pn.transform(n);e[s.array]=`${a} ${l}`}function mq(e,t,n){return typeof e=="string"?e:Pn.transform(t+n*e)}function z6e(e,t,n){const i=mq(t,e.x,e.width),r=mq(n,e.y,e.height);return`${i} ${r}`}function m9(e,{attrX:t,attrY:n,attrScale:i,originX:r,originY:s,pathLength:a,pathSpacing:l=1,pathOffset:c=0,...u},d,f){if(p9(e,u,f),d){e.style.viewBox&&(e.attrs.viewBox=e.style.viewBox);return}e.attrs=e.style,e.style={};const{attrs:h,style:m,dimensions:g}=e;h.transform&&(g&&(m.transform=h.transform),delete h.transform),g&&(r!==void 0||s!==void 0||m.transform)&&(m.transformOrigin=z6e(g,r!==void 0?r:.5,s!==void 0?s:.5)),t!==void 0&&(h.x=t),n!==void 0&&(h.y=n),i!==void 0&&(h.scale=i),a!==void 0&&Q6e(h,a,l,c,!1)}const g9=()=>({style:{},transform:{},transformOrigin:{},vars:{}}),fge=()=>({...g9(),attrs:{}}),b9=e=>typeof e=="string"&&e.toLowerCase()==="svg";function hge(e,{style:t,vars:n},i,r){Object.assign(e.style,t,r&&r.getProjectionStyles(i));for(const s in n)e.style.setProperty(s,n[s])}const pge=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function mge(e,t,n,i){hge(e,t,void 0,i);for(const r in t.attrs)e.setAttribute(pge.has(r)?r:l9(r),t.attrs[r])}const j_={};function V6e(e){Object.assign(j_,e)}function gge(e,{layout:t,layoutId:n}){return Xb.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!j_[e]||e==="opacity")}function y9(e,t,n){var i;const{style:r}=e,s={};for(const a in r)(yo(r[a])||t.style&&yo(t.style[a])||gge(a,e)||((i=n==null?void 0:n.getValue(a))===null||i===void 0?void 0:i.liveStyle)!==void 0)&&(s[a]=r[a]);return s}function bge(e,t,n){const i=y9(e,t,n);for(const r in e)if(yo(e[r])||yo(t[r])){const s=Ax.indexOf(r)!==-1?"attr"+r.charAt(0).toUpperCase()+r.substring(1):r;i[s]=e[r]}return i}function H6e(e,t){try{t.dimensions=typeof e.getBBox=="function"?e.getBBox():e.getBoundingClientRect()}catch{t.dimensions={x:0,y:0,width:0,height:0}}}const gq=["x","y","width","height","cx","cy","r"],q6e={useVisualState:lge({scrapeMotionValuesFromProps:bge,createRenderState:fge,onUpdate:({props:e,prevProps:t,current:n,renderState:i,latestValues:r})=>{if(!n)return;let s=!!e.drag;if(!s){for(const l in r)if(Xb.has(l)){s=!0;break}}if(!s)return;let a=!t;if(t)for(let l=0;l{H6e(n,i),Yr.render(()=>{m9(i,r,b9(n.tagName),e.transformTemplate),mge(n,i)})})}})},W6e={useVisualState:lge({scrapeMotionValuesFromProps:y9,createRenderState:g9})};function yge(e,t,n){for(const i in t)!yo(t[i])&&!gge(i,n)&&(e[i]=t[i])}function K6e({transformTemplate:e},t){return p.useMemo(()=>{const n=g9();return p9(n,t,e),Object.assign({},n.vars,n.style)},[t])}function G6e(e,t){const n=e.style||{},i={};return yge(i,n,e),Object.assign(i,K6e(e,t)),i}function X6e(e,t){const n={},i=G6e(e,t);return e.drag&&e.dragListener!==!1&&(n.draggable=!1,i.userSelect=i.WebkitUserSelect=i.WebkitTouchCallout="none",i.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),e.tabIndex===void 0&&(e.onTap||e.onTapStart||e.whileTap)&&(n.tabIndex=0),n.style=i,n}function Y6e(e,t,n,i){const r=p.useMemo(()=>{const s=fge();return m9(s,t,b9(i),e.transformTemplate),{...s.attrs,style:{...s.style}}},[t]);if(e.style){const s={};yge(s,e.style,e),r.style={...s,...r.style}}return r}function Z6e(e=!1){return(n,i,r,{latestValues:s},a)=>{const c=(u9(n)?Y6e:X6e)(i,s,a,n),u=f6e(i,typeof n=="string",e),d=n!==p.Fragment?{...u,...c,ref:r}:{},{children:f}=i,h=p.useMemo(()=>yo(f)?f.get():f,[f]);return p.createElement(n,{...d,children:h})}}function J6e(e,t){return function(i,{forwardMotionProps:r}={forwardMotionProps:!1}){const a={...u9(i)?q6e:W6e,preloadedFeatures:e,useRender:Z6e(r),createVisualElement:t,Component:i};return O6e(a)}}function vge(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let i=0;i(ZA===void 0&&Md.set(Wa.isProcessing||o6e.useManualTiming?Wa.timestamp:performance.now()),ZA),set:e=>{ZA=e,queueMicrotask(e$e)}};function x9(e,t){e.indexOf(t)===-1&&e.push(t)}function w9(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class O9{constructor(){this.subscriptions=[]}add(t){return x9(this.subscriptions,t),()=>w9(this.subscriptions,t)}notify(t,n,i){const r=this.subscriptions.length;if(r)if(r===1)this.subscriptions[0](t,n,i);else for(let s=0;s!isNaN(parseFloat(e));class n$e{constructor(t,n={}){this.version="11.18.2",this.canTrackVelocity=null,this.events={},this.updateAndNotify=(i,r=!0)=>{const s=Md.now();this.updatedAt!==s&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(i),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),r&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(t),this.owner=n.owner}setCurrent(t){this.current=t,this.updatedAt=Md.now(),this.canTrackVelocity===null&&t!==void 0&&(this.canTrackVelocity=t$e(this.current))}setPrevFrameValue(t=this.current){this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt}onChange(t){return this.on("change",t)}on(t,n){this.events[t]||(this.events[t]=new O9);const i=this.events[t].add(n);return t==="change"?()=>{i(),Yr.read(()=>{this.events.change.getSize()||this.stop()})}:i}clearListeners(){for(const t in this.events)this.events[t].clear()}attach(t,n){this.passiveEffect=t,this.stopPassiveEffect=n}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}setWithVelocity(t,n,i){this.set(n),this.prev=void 0,this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt-i}jump(t,n=!0){this.updateAndNotify(t),this.prev=t,this.prevUpdatedAt=this.prevFrameValue=void 0,n&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return this.current}getPrevious(){return this.prev}getVelocity(){const t=Md.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||t-this.updatedAt>bq)return 0;const n=Math.min(this.updatedAt-this.prevUpdatedAt,bq);return wge(parseFloat(this.current)-parseFloat(this.prevFrameValue),n)}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.animation=t(n),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function gS(e,t){return new n$e(e,t)}function i$e(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,gS(n))}function r$e(e,t){const n=Zj(e,t);let{transitionEnd:i={},transition:r={},...s}=n||{};s={...s,...i};for(const a in s){const l=A6e(s[a]);i$e(e,a,l)}}function s$e(e){return!!(yo(e)&&e.add)}function t4(e,t){const n=e.getValue("willChange");if(s$e(n))return n.add(t)}function Oge(e){return e.props[sge]}function S9(e){let t;return()=>(t===void 0&&(t=e()),t)}const a$e=S9(()=>window.ScrollTimeline!==void 0);class o$e{constructor(t){this.stop=()=>this.runAll("stop"),this.animations=t.filter(Boolean)}get finished(){return Promise.all(this.animations.map(t=>"finished"in t?t.finished:t))}getAll(t){return this.animations[0][t]}setAll(t,n){for(let i=0;i{if(a$e()&&r.attachTimeline)return r.attachTimeline(t);if(typeof n=="function")return n(r)});return()=>{i.forEach((r,s)=>{r&&r(),this.animations[s].stop()})}}get time(){return this.getAll("time")}set time(t){this.setAll("time",t)}get speed(){return this.getAll("speed")}set speed(t){this.setAll("speed",t)}get startTime(){return this.getAll("startTime")}get duration(){let t=0;for(let n=0;nn[t]())}flatten(){this.runAll("flatten")}play(){this.runAll("play")}pause(){this.runAll("pause")}cancel(){this.runAll("cancel")}complete(){this.runAll("complete")}}class l$e extends o$e{then(t,n){return Promise.all(this.animations).then(t).catch(n)}}const eh=e=>e*1e3,th=e=>e/1e3;function k9(e){return typeof e=="function"}function yq(e,t){e.timeline=t,e.onfinish=null}const E9=e=>Array.isArray(e)&&typeof e[0]=="number",c$e={linearEasing:void 0};function u$e(e,t){const n=S9(e);return()=>{var i;return(i=c$e[t])!==null&&i!==void 0?i:n()}}const R_=u$e(()=>{try{document.createElement("div").animate({opacity:0},{easing:"linear(0, 1)"})}catch{return!1}return!0},"linearEasing"),Bv=(e,t,n)=>{const i=t-e;return i===0?1:(n-e)/i},Sge=(e,t,n=10)=>{let i="";const r=Math.max(Math.round(t/n),2);for(let s=0;s`cubic-bezier(${e}, ${t}, ${n}, ${i})`,n4={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:jw([0,.65,.55,1]),circOut:jw([.55,0,1,.45]),backIn:jw([.31,.01,.66,-.59]),backOut:jw([.33,1.53,.69,.99])};function Ege(e,t){if(e)return typeof e=="function"&&R_()?Sge(e,t):E9(e)?jw(e):Array.isArray(e)?e.map(n=>Ege(n,t)||n4.easeOut):n4[e]}const Cge=(e,t,n)=>(((1-3*n+3*t)*e+(3*n-6*t))*e+3*t)*e,d$e=1e-7,f$e=12;function h$e(e,t,n,i,r){let s,a,l=0;do a=t+(n-t)/2,s=Cge(a,i,r)-e,s>0?n=a:t=a;while(Math.abs(s)>d$e&&++lh$e(s,0,1,e,n);return s=>s===0||s===1?s:Cge(r(s),t,i)}const Tge=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,Age=e=>t=>1-e(1-t),_ge=Qk(.33,1.53,.69,.99),C9=Age(_ge),Nge=Tge(C9),jge=e=>(e*=2)<1?.5*C9(e):.5*(2-Math.pow(2,-10*(e-1))),T9=e=>1-Math.sin(Math.acos(e)),Rge=Age(T9),Ige=Tge(T9),Pge=e=>/^0[^.\s]+$/u.test(e);function p$e(e){return typeof e=="number"?e===0:e!==null?e==="none"||e==="0"||Pge(e):!0}const bO=e=>Math.round(e*1e5)/1e5,A9=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu;function m$e(e){return e==null}const g$e=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,_9=(e,t)=>n=>!!(typeof n=="string"&&g$e.test(n)&&n.startsWith(e)||t&&!m$e(n)&&Object.prototype.hasOwnProperty.call(n,t)),Dge=(e,t,n)=>i=>{if(typeof i!="string")return i;const[r,s,a,l]=i.match(A9);return{[e]:parseFloat(r),[t]:parseFloat(s),[n]:parseFloat(a),alpha:l!==void 0?parseFloat(l):1}},b$e=e=>yh(0,255,e),ED={..._x,transform:e=>Math.round(b$e(e))},Fg={test:_9("rgb","red"),parse:Dge("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:i=1})=>"rgba("+ED.transform(e)+", "+ED.transform(t)+", "+ED.transform(n)+", "+bO(mS.transform(i))+")"};function y$e(e){let t="",n="",i="",r="";return e.length>5?(t=e.substring(1,3),n=e.substring(3,5),i=e.substring(5,7),r=e.substring(7,9)):(t=e.substring(1,2),n=e.substring(2,3),i=e.substring(3,4),r=e.substring(4,5),t+=t,n+=n,i+=i,r+=r),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(i,16),alpha:r?parseInt(r,16)/255:1}}const i4={test:_9("#"),parse:y$e,transform:Fg.transform},_y={test:_9("hsl","hue"),parse:Dge("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:i=1})=>"hsla("+Math.round(e)+", "+Dd.transform(bO(t))+", "+Dd.transform(bO(n))+", "+bO(mS.transform(i))+")"},mo={test:e=>Fg.test(e)||i4.test(e)||_y.test(e),parse:e=>Fg.test(e)?Fg.parse(e):_y.test(e)?_y.parse(e):i4.parse(e),transform:e=>typeof e=="string"?e:e.hasOwnProperty("red")?Fg.transform(e):_y.transform(e)},v$e=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu;function x$e(e){var t,n;return isNaN(e)&&typeof e=="string"&&(((t=e.match(A9))===null||t===void 0?void 0:t.length)||0)+(((n=e.match(v$e))===null||n===void 0?void 0:n.length)||0)>0}const Mge="number",Lge="color",w$e="var",O$e="var(",vq="${}",S$e=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function bS(e){const t=e.toString(),n=[],i={color:[],number:[],var:[]},r=[];let s=0;const l=t.replace(S$e,c=>(mo.test(c)?(i.color.push(s),r.push(Lge),n.push(mo.parse(c))):c.startsWith(O$e)?(i.var.push(s),r.push(w$e),n.push(c)):(i.number.push(s),r.push(Mge),n.push(parseFloat(c))),++s,vq)).split(vq);return{values:n,split:l,indexes:i,types:r}}function $ge(e){return bS(e).values}function Fge(e){const{split:t,types:n}=bS(e),i=t.length;return r=>{let s="";for(let a=0;atypeof e=="number"?0:e;function E$e(e){const t=$ge(e);return Fge(e)(t.map(k$e))}const bm={test:x$e,parse:$ge,createTransformer:Fge,getAnimatableNone:E$e},C$e=new Set(["brightness","contrast","saturate","opacity"]);function T$e(e){const[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[i]=n.match(A9)||[];if(!i)return e;const r=n.replace(i,"");let s=C$e.has(t)?1:0;return i!==n&&(s*=100),t+"("+s+r+")"}const A$e=/\b([a-z-]*)\(.*?\)/gu,r4={...bm,getAnimatableNone:e=>{const t=e.match(A$e);return t?t.map(T$e).join(" "):e}},_$e={...h9,color:mo,backgroundColor:mo,outlineColor:mo,fill:mo,stroke:mo,borderColor:mo,borderTopColor:mo,borderRightColor:mo,borderBottomColor:mo,borderLeftColor:mo,filter:r4,WebkitFilter:r4},N9=e=>_$e[e];function Bge(e,t){let n=N9(e);return n!==r4&&(n=bm),n.getAnimatableNone?n.getAnimatableNone(t):void 0}const N$e=new Set(["auto","none","0"]);function j$e(e,t,n){let i=0,r;for(;ie===_x||e===Pn,wq=(e,t)=>parseFloat(e.split(", ")[t]),Oq=(e,t)=>(n,{transform:i})=>{if(i==="none"||!i)return 0;const r=i.match(/^matrix3d\((.+)\)$/u);if(r)return wq(r[1],t);{const s=i.match(/^matrix\((.+)\)$/u);return s?wq(s[1],e):0}},R$e=new Set(["x","y","z"]),I$e=Ax.filter(e=>!R$e.has(e));function P$e(e){const t=[];return I$e.forEach(n=>{const i=e.getValue(n);i!==void 0&&(t.push([n,i.get()]),i.set(n.startsWith("scale")?1:0))}),t}const Uv={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:Oq(4,13),y:Oq(5,14)};Uv.translateX=Uv.x;Uv.translateY=Uv.y;const ab=new Set;let s4=!1,a4=!1;function Uge(){if(a4){const e=Array.from(ab).filter(i=>i.needsMeasurement),t=new Set(e.map(i=>i.element)),n=new Map;t.forEach(i=>{const r=P$e(i);r.length&&(n.set(i,r),i.render())}),e.forEach(i=>i.measureInitialState()),t.forEach(i=>{i.render();const r=n.get(i);r&&r.forEach(([s,a])=>{var l;(l=i.getValue(s))===null||l===void 0||l.set(a)})}),e.forEach(i=>i.measureEndState()),e.forEach(i=>{i.suspendedScrollY!==void 0&&window.scrollTo(0,i.suspendedScrollY)})}a4=!1,s4=!1,ab.forEach(e=>e.complete()),ab.clear()}function Qge(){ab.forEach(e=>{e.readKeyframes(),e.needsMeasurement&&(a4=!0)})}function D$e(){Qge(),Uge()}class j9{constructor(t,n,i,r,s,a=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...t],this.onComplete=n,this.name=i,this.motionValue=r,this.element=s,this.isAsync=a}scheduleResolve(){this.isScheduled=!0,this.isAsync?(ab.add(this),s4||(s4=!0,Yr.read(Qge),Yr.resolveKeyframes(Uge))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:t,name:n,element:i,motionValue:r}=this;for(let s=0;s/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(e),M$e=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function L$e(e){const t=M$e.exec(e);if(!t)return[,];const[,n,i,r]=t;return[`--${n??i}`,r]}function Vge(e,t,n=1){const[i,r]=L$e(e);if(!i)return;const s=window.getComputedStyle(t).getPropertyValue(i);if(s){const a=s.trim();return zge(a)?parseFloat(a):a}return f9(r)?Vge(r,t,n+1):r}const Hge=e=>t=>t.test(e),$$e={test:e=>e==="auto",parse:e=>e},qge=[_x,Pn,Dd,vp,P6e,I6e,$$e],Sq=e=>qge.find(Hge(e));class Wge extends j9{constructor(t,n,i,r,s){super(t,n,i,r,s,!0)}readKeyframes(){const{unresolvedKeyframes:t,element:n,name:i}=this;if(!n||!n.current)return;super.readKeyframes();for(let c=0;c{n.getValue(c).set(u)}),this.resolveNoneKeyframes()}}const kq=(e,t)=>t==="zIndex"?!1:!!(typeof e=="number"||Array.isArray(e)||typeof e=="string"&&(bm.test(e)||e==="0")&&!e.startsWith("url("));function F$e(e){const t=e[0];if(e.length===1)return!0;for(let n=0;ne!==null;function Jj(e,{repeat:t,repeatType:n="loop"},i){const r=e.filter(U$e),s=t&&n!=="loop"&&t%2===1?0:r.length-1;return!s||i===void 0?r[s]:i}const Q$e=40;class Kge{constructor({autoplay:t=!0,delay:n=0,type:i="keyframes",repeat:r=0,repeatDelay:s=0,repeatType:a="loop",...l}){this.isStopped=!1,this.hasAttemptedResolve=!1,this.createdAt=Md.now(),this.options={autoplay:t,delay:n,type:i,repeat:r,repeatDelay:s,repeatType:a,...l},this.updateFinishedPromise()}calcStartTime(){return this.resolvedAt?this.resolvedAt-this.createdAt>Q$e?this.resolvedAt:this.createdAt:this.createdAt}get resolved(){return!this._resolved&&!this.hasAttemptedResolve&&D$e(),this._resolved}onKeyframesResolved(t,n){this.resolvedAt=Md.now(),this.hasAttemptedResolve=!0;const{name:i,type:r,velocity:s,delay:a,onComplete:l,onUpdate:c,isGenerator:u}=this.options;if(!u&&!B$e(t,i,r,s))if(a)this.options.duration=0;else{c&&c(Jj(t,this.options,n)),l&&l(),this.resolveFinishedPromise();return}const d=this.initPlayback(t,n);d!==!1&&(this._resolved={keyframes:t,finalKeyframe:n,...d},this.onPostResolved())}onPostResolved(){}then(t,n){return this.currentFinishedPromise.then(t,n)}flatten(){this.options.type="keyframes",this.options.ease="linear"}updateFinishedPromise(){this.currentFinishedPromise=new Promise(t=>{this.resolveFinishedPromise=t})}}const o4=2e4;function Gge(e){let t=0;const n=50;let i=e.next(t);for(;!i.done&&t=o4?1/0:t}const ps=(e,t,n)=>e+(t-e)*n;function CD(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function z$e({hue:e,saturation:t,lightness:n,alpha:i}){e/=360,t/=100,n/=100;let r=0,s=0,a=0;if(!t)r=s=a=n;else{const l=n<.5?n*(1+t):n+t-n*t,c=2*n-l;r=CD(c,l,e+1/3),s=CD(c,l,e),a=CD(c,l,e-1/3)}return{red:Math.round(r*255),green:Math.round(s*255),blue:Math.round(a*255),alpha:i}}function I_(e,t){return n=>n>0?t:e}const TD=(e,t,n)=>{const i=e*e,r=n*(t*t-i)+i;return r<0?0:Math.sqrt(r)},V$e=[i4,Fg,_y],H$e=e=>V$e.find(t=>t.test(e));function Eq(e){const t=H$e(e);if(!t)return!1;let n=t.parse(e);return t===_y&&(n=z$e(n)),n}const Cq=(e,t)=>{const n=Eq(e),i=Eq(t);if(!n||!i)return I_(e,t);const r={...n};return s=>(r.red=TD(n.red,i.red,s),r.green=TD(n.green,i.green,s),r.blue=TD(n.blue,i.blue,s),r.alpha=ps(n.alpha,i.alpha,s),Fg.transform(r))},q$e=(e,t)=>n=>t(e(n)),zk=(...e)=>e.reduce(q$e),l4=new Set(["none","hidden"]);function W$e(e,t){return l4.has(e)?n=>n<=0?e:t:n=>n>=1?t:e}function K$e(e,t){return n=>ps(e,t,n)}function R9(e){return typeof e=="number"?K$e:typeof e=="string"?f9(e)?I_:mo.test(e)?Cq:Y$e:Array.isArray(e)?Xge:typeof e=="object"?mo.test(e)?Cq:G$e:I_}function Xge(e,t){const n=[...e],i=n.length,r=e.map((s,a)=>R9(s)(s,t[a]));return s=>{for(let a=0;a{for(const s in i)n[s]=i[s](r);return n}}function X$e(e,t){var n;const i=[],r={color:0,var:0,number:0};for(let s=0;s{const n=bm.createTransformer(t),i=bS(e),r=bS(t);return i.indexes.var.length===r.indexes.var.length&&i.indexes.color.length===r.indexes.color.length&&i.indexes.number.length>=r.indexes.number.length?l4.has(e)&&!r.values.length||l4.has(t)&&!i.values.length?W$e(e,t):zk(Xge(X$e(i,r),r.values),n):I_(e,t)};function Yge(e,t,n){return typeof e=="number"&&typeof t=="number"&&typeof n=="number"?ps(e,t,n):R9(e)(e,t)}const Z$e=5;function Zge(e,t,n){const i=Math.max(t-Z$e,0);return wge(n-e(i),t-i)}const Os={stiffness:100,damping:10,mass:1,velocity:0,duration:800,bounce:.3,visualDuration:.3,restSpeed:{granular:.01,default:2},restDelta:{granular:.005,default:.5},minDuration:.01,maxDuration:10,minDamping:.05,maxDamping:1},AD=.001;function J$e({duration:e=Os.duration,bounce:t=Os.bounce,velocity:n=Os.velocity,mass:i=Os.mass}){let r,s,a=1-t;a=yh(Os.minDamping,Os.maxDamping,a),e=yh(Os.minDuration,Os.maxDuration,th(e)),a<1?(r=u=>{const d=u*a,f=d*e,h=d-n,m=c4(u,a),g=Math.exp(-f);return AD-h/m*g},s=u=>{const f=u*a*e,h=f*n+n,m=Math.pow(a,2)*Math.pow(u,2)*e,g=Math.exp(-f),b=c4(Math.pow(u,2),a);return(-r(u)+AD>0?-1:1)*((h-m)*g)/b}):(r=u=>{const d=Math.exp(-u*e),f=(u-n)*e+1;return-AD+d*f},s=u=>{const d=Math.exp(-u*e),f=(n-u)*(e*e);return d*f});const l=5/e,c=t8e(r,s,l);if(e=eh(e),isNaN(c))return{stiffness:Os.stiffness,damping:Os.damping,duration:e};{const u=Math.pow(c,2)*i;return{stiffness:u,damping:a*2*Math.sqrt(i*u),duration:e}}}const e8e=12;function t8e(e,t,n){let i=n;for(let r=1;re[n]!==void 0)}function r8e(e){let t={velocity:Os.velocity,stiffness:Os.stiffness,damping:Os.damping,mass:Os.mass,isResolvedFromDuration:!1,...e};if(!Tq(e,i8e)&&Tq(e,n8e))if(e.visualDuration){const n=e.visualDuration,i=2*Math.PI/(n*1.2),r=i*i,s=2*yh(.05,1,1-(e.bounce||0))*Math.sqrt(r);t={...t,mass:Os.mass,stiffness:r,damping:s}}else{const n=J$e(e);t={...t,...n,mass:Os.mass},t.isResolvedFromDuration=!0}return t}function Jge(e=Os.visualDuration,t=Os.bounce){const n=typeof e!="object"?{visualDuration:e,keyframes:[0,1],bounce:t}:e;let{restSpeed:i,restDelta:r}=n;const s=n.keyframes[0],a=n.keyframes[n.keyframes.length-1],l={done:!1,value:s},{stiffness:c,damping:u,mass:d,duration:f,velocity:h,isResolvedFromDuration:m}=r8e({...n,velocity:-th(n.velocity||0)}),g=h||0,b=u/(2*Math.sqrt(c*d)),v=a-s,y=th(Math.sqrt(c/d)),x=Math.abs(v)<5;i||(i=x?Os.restSpeed.granular:Os.restSpeed.default),r||(r=x?Os.restDelta.granular:Os.restDelta.default);let O;if(b<1){const k=c4(y,b);O=S=>{const E=Math.exp(-b*y*S);return a-E*((g+b*y*v)/k*Math.sin(k*S)+v*Math.cos(k*S))}}else if(b===1)O=k=>a-Math.exp(-y*k)*(v+(g+y*v)*k);else{const k=y*Math.sqrt(b*b-1);O=S=>{const E=Math.exp(-b*y*S),C=Math.min(k*S,300);return a-E*((g+b*y*v)*Math.sinh(C)+k*v*Math.cosh(C))/k}}const w={calculatedDuration:m&&f||null,next:k=>{const S=O(k);if(m)l.done=k>=f;else{let E=0;b<1&&(E=k===0?eh(g):Zge(O,k,S));const C=Math.abs(E)<=i,N=Math.abs(a-S)<=r;l.done=C&&N}return l.value=l.done?a:S,l},toString:()=>{const k=Math.min(Gge(w),o4),S=Sge(E=>w.next(k*E).value,k,30);return k+"ms "+S}};return w}function Aq({keyframes:e,velocity:t=0,power:n=.8,timeConstant:i=325,bounceDamping:r=10,bounceStiffness:s=500,modifyTarget:a,min:l,max:c,restDelta:u=.5,restSpeed:d}){const f=e[0],h={done:!1,value:f},m=C=>l!==void 0&&Cc,g=C=>l===void 0?c:c===void 0||Math.abs(l-C)-b*Math.exp(-C/i),O=C=>y+x(C),w=C=>{const N=x(C),T=O(C);h.done=Math.abs(N)<=u,h.value=h.done?y:T};let k,S;const E=C=>{m(h.value)&&(k=C,S=Jge({keyframes:[h.value,g(h.value)],velocity:Zge(O,C,h.value),damping:r,stiffness:s,restDelta:u,restSpeed:d}))};return E(0),{calculatedDuration:null,next:C=>{let N=!1;return!S&&k===void 0&&(N=!0,w(C),E(C)),k!==void 0&&C>=k?S.next(C-k):(!N&&w(C),h)}}}const s8e=Qk(.42,0,1,1),a8e=Qk(0,0,.58,1),ebe=Qk(.42,0,.58,1),o8e=e=>Array.isArray(e)&&typeof e[0]!="number",l8e={linear:oc,easeIn:s8e,easeInOut:ebe,easeOut:a8e,circIn:T9,circInOut:Ige,circOut:Rge,backIn:C9,backInOut:Nge,backOut:_ge,anticipate:jge},_q=e=>{if(E9(e)){Jme(e.length===4);const[t,n,i,r]=e;return Qk(t,n,i,r)}else if(typeof e=="string")return l8e[e];return e};function c8e(e,t,n){const i=[],r=n||Yge,s=e.length-1;for(let a=0;at[0];if(s===2&&t[0]===t[1])return()=>t[1];const a=e[0]===e[1];e[0]>e[s-1]&&(e=[...e].reverse(),t=[...t].reverse());const l=c8e(t,i,r),c=l.length,u=d=>{if(a&&d1)for(;fu(yh(e[0],e[s-1],d)):u}function d8e(e,t){const n=e[e.length-1];for(let i=1;i<=t;i++){const r=Bv(0,t,i);e.push(ps(n,1,r))}}function f8e(e){const t=[0];return d8e(t,e.length-1),t}function h8e(e,t){return e.map(n=>n*t)}function p8e(e,t){return e.map(()=>t||ebe).splice(0,e.length-1)}function P_({duration:e=300,keyframes:t,times:n,ease:i="easeInOut"}){const r=o8e(i)?i.map(_q):_q(i),s={done:!1,value:t[0]},a=h8e(n&&n.length===t.length?n:f8e(t),e),l=u8e(a,t,{ease:Array.isArray(r)?r:p8e(t,r)});return{calculatedDuration:e,next:c=>(s.value=l(c),s.done=c>=e,s)}}const m8e=e=>{const t=({timestamp:n})=>e(n);return{start:()=>Yr.update(t,!0),stop:()=>gm(t),now:()=>Wa.isProcessing?Wa.timestamp:Md.now()}},g8e={decay:Aq,inertia:Aq,tween:P_,keyframes:P_,spring:Jge},b8e=e=>e/100;class I9 extends Kge{constructor(t){super(t),this.holdTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState="running",this.startTime=null,this.state="idle",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.teardown();const{onStop:c}=this.options;c&&c()};const{name:n,motionValue:i,element:r,keyframes:s}=this.options,a=(r==null?void 0:r.KeyframeResolver)||j9,l=(c,u)=>this.onKeyframesResolved(c,u);this.resolver=new a(s,l,n,i,r),this.resolver.scheduleResolve()}flatten(){super.flatten(),this._resolved&&Object.assign(this._resolved,this.initPlayback(this._resolved.keyframes))}initPlayback(t){const{type:n="keyframes",repeat:i=0,repeatDelay:r=0,repeatType:s,velocity:a=0}=this.options,l=k9(n)?n:g8e[n]||P_;let c,u;l!==P_&&typeof t[0]!="number"&&(c=zk(b8e,Yge(t[0],t[1])),t=[0,100]);const d=l({...this.options,keyframes:t});s==="mirror"&&(u=l({...this.options,keyframes:[...t].reverse(),velocity:-a})),d.calculatedDuration===null&&(d.calculatedDuration=Gge(d));const{calculatedDuration:f}=d,h=f+r,m=h*(i+1)-r;return{generator:d,mirroredGenerator:u,mapPercentToKeyframes:c,calculatedDuration:f,resolvedDuration:h,totalDuration:m}}onPostResolved(){const{autoplay:t=!0}=this.options;this.play(),this.pendingPlayState==="paused"||!t?this.pause():this.state=this.pendingPlayState}tick(t,n=!1){const{resolved:i}=this;if(!i){const{keyframes:C}=this.options;return{done:!0,value:C[C.length-1]}}const{finalKeyframe:r,generator:s,mirroredGenerator:a,mapPercentToKeyframes:l,keyframes:c,calculatedDuration:u,totalDuration:d,resolvedDuration:f}=i;if(this.startTime===null)return s.next(0);const{delay:h,repeat:m,repeatType:g,repeatDelay:b,onUpdate:v}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,t):this.speed<0&&(this.startTime=Math.min(t-d/this.speed,this.startTime)),n?this.currentTime=t:this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=Math.round(t-this.startTime)*this.speed;const y=this.currentTime-h*(this.speed>=0?1:-1),x=this.speed>=0?y<0:y>d;this.currentTime=Math.max(y,0),this.state==="finished"&&this.holdTime===null&&(this.currentTime=d);let O=this.currentTime,w=s;if(m){const C=Math.min(this.currentTime,d)/f;let N=Math.floor(C),T=C%1;!T&&C>=1&&(T=1),T===1&&N--,N=Math.min(N,m+1),!!(N%2)&&(g==="reverse"?(T=1-T,b&&(T-=b/f)):g==="mirror"&&(w=a)),O=yh(0,1,T)*f}const k=x?{done:!1,value:c[0]}:w.next(O);l&&(k.value=l(k.value));let{done:S}=k;!x&&u!==null&&(S=this.speed>=0?this.currentTime>=d:this.currentTime<=0);const E=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&S);return E&&r!==void 0&&(k.value=Jj(c,this.options,r)),v&&v(k.value),E&&this.finish(),k}get duration(){const{resolved:t}=this;return t?th(t.calculatedDuration):0}get time(){return th(this.currentTime)}set time(t){t=eh(t),this.currentTime=t,this.holdTime!==null||this.speed===0?this.holdTime=t:this.driver&&(this.startTime=this.driver.now()-t/this.speed)}get speed(){return this.playbackSpeed}set speed(t){const n=this.playbackSpeed!==t;this.playbackSpeed=t,n&&(this.time=th(this.currentTime))}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved){this.pendingPlayState="running";return}if(this.isStopped)return;const{driver:t=m8e,onPlay:n,startTime:i}=this.options;this.driver||(this.driver=t(s=>this.tick(s))),n&&n();const r=this.driver.now();this.holdTime!==null?this.startTime=r-this.holdTime:this.startTime?this.state==="finished"&&(this.startTime=r):this.startTime=i??this.calcStartTime(),this.state==="finished"&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state="running",this.driver.start()}pause(){var t;if(!this._resolved){this.pendingPlayState="paused";return}this.state="paused",this.holdTime=(t=this.currentTime)!==null&&t!==void 0?t:0}complete(){this.state!=="running"&&this.play(),this.pendingPlayState=this.state="finished",this.holdTime=null}finish(){this.teardown(),this.state="finished";const{onComplete:t}=this.options;t&&t()}cancel(){this.cancelTime!==null&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state="idle",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(t){return this.startTime=0,this.tick(t,!0)}}const y8e=new Set(["opacity","clipPath","filter","transform"]);function v8e(e,t,n,{delay:i=0,duration:r=300,repeat:s=0,repeatType:a="loop",ease:l="easeInOut",times:c}={}){const u={[t]:n};c&&(u.offset=c);const d=Ege(l,r);return Array.isArray(d)&&(u.easing=d),e.animate(u,{delay:i,duration:r,easing:Array.isArray(d)?"linear":d,fill:"both",iterations:s+1,direction:a==="reverse"?"alternate":"normal"})}const x8e=S9(()=>Object.hasOwnProperty.call(Element.prototype,"animate")),D_=10,w8e=2e4;function O8e(e){return k9(e.type)||e.type==="spring"||!kge(e.ease)}function S8e(e,t){const n=new I9({...t,keyframes:e,repeat:0,delay:0,isGenerator:!0});let i={done:!1,value:e[0]};const r=[];let s=0;for(;!i.done&&sthis.onKeyframesResolved(a,l),n,i,r),this.resolver.scheduleResolve()}initPlayback(t,n){let{duration:i=300,times:r,ease:s,type:a,motionValue:l,name:c,startTime:u}=this.options;if(!l.owner||!l.owner.current)return!1;if(typeof s=="string"&&R_()&&k8e(s)&&(s=tbe[s]),O8e(this.options)){const{onComplete:f,onUpdate:h,motionValue:m,element:g,...b}=this.options,v=S8e(t,b);t=v.keyframes,t.length===1&&(t[1]=t[0]),i=v.duration,r=v.times,s=v.ease,a="keyframes"}const d=v8e(l.owner.current,c,t,{...this.options,duration:i,times:r,ease:s});return d.startTime=u??this.calcStartTime(),this.pendingTimeline?(yq(d,this.pendingTimeline),this.pendingTimeline=void 0):d.onfinish=()=>{const{onComplete:f}=this.options;l.set(Jj(t,this.options,n)),f&&f(),this.cancel(),this.resolveFinishedPromise()},{animation:d,duration:i,times:r,type:a,ease:s,keyframes:t}}get duration(){const{resolved:t}=this;if(!t)return 0;const{duration:n}=t;return th(n)}get time(){const{resolved:t}=this;if(!t)return 0;const{animation:n}=t;return th(n.currentTime||0)}set time(t){const{resolved:n}=this;if(!n)return;const{animation:i}=n;i.currentTime=eh(t)}get speed(){const{resolved:t}=this;if(!t)return 1;const{animation:n}=t;return n.playbackRate}set speed(t){const{resolved:n}=this;if(!n)return;const{animation:i}=n;i.playbackRate=t}get state(){const{resolved:t}=this;if(!t)return"idle";const{animation:n}=t;return n.playState}get startTime(){const{resolved:t}=this;if(!t)return null;const{animation:n}=t;return n.startTime}attachTimeline(t){if(!this._resolved)this.pendingTimeline=t;else{const{resolved:n}=this;if(!n)return oc;const{animation:i}=n;yq(i,t)}return oc}play(){if(this.isStopped)return;const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.playState==="finished"&&this.updateFinishedPromise(),n.play()}pause(){const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.resolveFinishedPromise(),this.updateFinishedPromise();const{resolved:t}=this;if(!t)return;const{animation:n,keyframes:i,duration:r,type:s,ease:a,times:l}=t;if(n.playState==="idle"||n.playState==="finished")return;if(this.time){const{motionValue:u,onUpdate:d,onComplete:f,element:h,...m}=this.options,g=new I9({...m,keyframes:i,duration:r,type:s,ease:a,times:l,isGenerator:!0}),b=eh(this.time);u.setWithVelocity(g.sample(b-D_).value,g.sample(b).value,D_)}const{onStop:c}=this.options;c&&c(),this.cancel()}complete(){const{resolved:t}=this;t&&t.animation.finish()}cancel(){const{resolved:t}=this;t&&t.animation.cancel()}static supports(t){const{motionValue:n,name:i,repeatDelay:r,repeatType:s,damping:a,type:l}=t;if(!n||!n.owner||!(n.owner.current instanceof HTMLElement))return!1;const{onUpdate:c,transformTemplate:u}=n.owner.getProps();return x8e()&&i&&y8e.has(i)&&!c&&!u&&!r&&s!=="mirror"&&a!==0&&l!=="inertia"}}const E8e={type:"spring",stiffness:500,damping:25,restSpeed:10},C8e=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),T8e={type:"keyframes",duration:.8},A8e={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},_8e=(e,{keyframes:t})=>t.length>2?T8e:Xb.has(e)?e.startsWith("scale")?C8e(t[1]):E8e:A8e;function N8e({when:e,delay:t,delayChildren:n,staggerChildren:i,staggerDirection:r,repeat:s,repeatType:a,repeatDelay:l,from:c,elapsed:u,...d}){return!!Object.keys(d).length}const P9=(e,t,n,i={},r,s)=>a=>{const l=v9(i,e)||{},c=l.delay||i.delay||0;let{elapsed:u=0}=i;u=u-eh(c);let d={keyframes:Array.isArray(n)?n:[null,n],ease:"easeOut",velocity:t.getVelocity(),...l,delay:-u,onUpdate:h=>{t.set(h),l.onUpdate&&l.onUpdate(h)},onComplete:()=>{a(),l.onComplete&&l.onComplete()},name:e,motionValue:t,element:s?void 0:r};N8e(l)||(d={...d,..._8e(e,d)}),d.duration&&(d.duration=eh(d.duration)),d.repeatDelay&&(d.repeatDelay=eh(d.repeatDelay)),d.from!==void 0&&(d.keyframes[0]=d.from);let f=!1;if((d.type===!1||d.duration===0&&!d.repeatDelay)&&(d.duration=0,d.delay===0&&(f=!0)),f&&!s&&t.get()!==void 0){const h=Jj(d.keyframes,l);if(h!==void 0)return Yr.update(()=>{d.onUpdate(h),d.onComplete()}),new l$e([])}return!s&&Nq.supports(d)?new Nq(d):new I9(d)};function j8e({protectedKeys:e,needsAnimating:t},n){const i=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,i}function nbe(e,t,{delay:n=0,transitionOverride:i,type:r}={}){var s;let{transition:a=e.getDefaultTransition(),transitionEnd:l,...c}=t;i&&(a=i);const u=[],d=r&&e.animationState&&e.animationState.getState()[r];for(const f in c){const h=e.getValue(f,(s=e.latestValues[f])!==null&&s!==void 0?s:null),m=c[f];if(m===void 0||d&&j8e(d,f))continue;const g={delay:n,...v9(a||{},f)};let b=!1;if(window.MotionHandoffAnimation){const y=Oge(e);if(y){const x=window.MotionHandoffAnimation(y,f,Yr);x!==null&&(g.startTime=x,b=!0)}}t4(e,f),h.start(P9(f,h,m,e.shouldReduceMotion&&xge.has(f)?{type:!1}:g,e,b));const v=h.animation;v&&u.push(v)}return l&&Promise.all(u).then(()=>{Yr.update(()=>{l&&r$e(e,l)})}),u}function u4(e,t,n={}){var i;const r=Zj(e,t,n.type==="exit"?(i=e.presenceContext)===null||i===void 0?void 0:i.custom:void 0);let{transition:s=e.getDefaultTransition()||{}}=r||{};n.transitionOverride&&(s=n.transitionOverride);const a=r?()=>Promise.all(nbe(e,r,n)):()=>Promise.resolve(),l=e.variantChildren&&e.variantChildren.size?(u=0)=>{const{delayChildren:d=0,staggerChildren:f,staggerDirection:h}=s;return R8e(e,t,d+u,f,h,n)}:()=>Promise.resolve(),{when:c}=s;if(c){const[u,d]=c==="beforeChildren"?[a,l]:[l,a];return u().then(()=>d())}else return Promise.all([a(),l(n.delay)])}function R8e(e,t,n=0,i=0,r=1,s){const a=[],l=(e.variantChildren.size-1)*i,c=r===1?(u=0)=>u*i:(u=0)=>l-u*i;return Array.from(e.variantChildren).sort(I8e).forEach((u,d)=>{u.notify("AnimationStart",t),a.push(u4(u,t,{...s,delay:n+c(d)}).then(()=>u.notify("AnimationComplete",t)))}),Promise.all(a)}function I8e(e,t){return e.sortNodePosition(t)}function P8e(e,t,n={}){e.notify("AnimationStart",t);let i;if(Array.isArray(t)){const r=t.map(s=>u4(e,s,n));i=Promise.all(r)}else if(typeof t=="string")i=u4(e,t,n);else{const r=typeof t=="function"?Zj(e,t,n.custom):t;i=Promise.all(nbe(e,r,n))}return i.then(()=>{e.notify("AnimationComplete",t)})}const D8e=o9.length;function ibe(e){if(!e)return;if(!e.isControllingVariants){const n=e.parent?ibe(e.parent)||{}:{};return e.props.initial!==void 0&&(n.initial=e.props.initial),n}const t={};for(let n=0;nPromise.all(t.map(({animation:n,options:i})=>P8e(e,n,i)))}function F8e(e){let t=$8e(e),n=jq(),i=!0;const r=c=>(u,d)=>{var f;const h=Zj(e,d,c==="exit"?(f=e.presenceContext)===null||f===void 0?void 0:f.custom:void 0);if(h){const{transition:m,transitionEnd:g,...b}=h;u={...u,...b,...g}}return u};function s(c){t=c(e)}function a(c){const{props:u}=e,d=ibe(e.parent)||{},f=[],h=new Set;let m={},g=1/0;for(let v=0;vg&&w,N=!1;const T=Array.isArray(O)?O:[O];let j=T.reduce(r(y),{});k===!1&&(j={});const{prevResolvedValues:A={}}=x,L={...A,...j},_=$=>{C=!0,h.has($)&&(N=!0,h.delete($)),x.needsAnimating[$]=!0;const M=e.getValue($);M&&(M.liveStyle=!1)};for(const $ in L){const M=j[$],B=A[$];if(m.hasOwnProperty($))continue;let R=!1;e4(M)&&e4(B)?R=!vge(M,B):R=M!==B,R?M!=null?_($):h.add($):M!==void 0&&h.has($)?_($):x.protectedKeys[$]=!0}x.prevProp=O,x.prevResolvedValues=j,x.isActive&&(m={...m,...j}),i&&e.blockInitialAnimation&&(C=!1),C&&(!(S&&E)||N)&&f.push(...T.map($=>({animation:$,options:{type:y}})))}if(h.size){const v={};h.forEach(y=>{const x=e.getBaseTarget(y),O=e.getValue(y);O&&(O.liveStyle=!0),v[y]=x??null}),f.push({animation:v})}let b=!!f.length;return i&&(u.initial===!1||u.initial===u.animate)&&!e.manuallyAnimateOnMount&&(b=!1),i=!1,b?t(f):Promise.resolve()}function l(c,u){var d;if(n[c].isActive===u)return Promise.resolve();(d=e.variantChildren)===null||d===void 0||d.forEach(h=>{var m;return(m=h.animationState)===null||m===void 0?void 0:m.setActive(c,u)}),n[c].isActive=u;const f=a(c);for(const h in n)n[h].protectedKeys={};return f}return{animateChanges:a,setActive:l,setAnimateFunction:s,getState:()=>n,reset:()=>{n=jq(),i=!0}}}function B8e(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!vge(t,e):!1}function sg(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function jq(){return{animate:sg(!0),whileInView:sg(),whileHover:sg(),whileTap:sg(),whileDrag:sg(),whileFocus:sg(),exit:sg()}}class Bm{constructor(t){this.isMounted=!1,this.node=t}update(){}}class U8e extends Bm{constructor(t){super(t),t.animationState||(t.animationState=F8e(t))}updateAnimationControlsSubscription(){const{animate:t}=this.node.getProps();Xj(t)&&(this.unmountControls=t.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:t}=this.node.getProps(),{animate:n}=this.node.prevProps||{};t!==n&&this.updateAnimationControlsSubscription()}unmount(){var t;this.node.animationState.reset(),(t=this.unmountControls)===null||t===void 0||t.call(this)}}let Q8e=0;class z8e extends Bm{constructor(){super(...arguments),this.id=Q8e++}update(){if(!this.node.presenceContext)return;const{isPresent:t,onExitComplete:n}=this.node.presenceContext,{isPresent:i}=this.node.prevPresenceContext||{};if(!this.node.animationState||t===i)return;const r=this.node.animationState.setActive("exit",!t);n&&!t&&r.then(()=>n(this.id))}mount(){const{register:t}=this.node.presenceContext||{};t&&(this.unmount=t(this.id))}unmount(){}}const V8e={animation:{Feature:U8e},exit:{Feature:z8e}},xu={x:!1,y:!1};function rbe(){return xu.x||xu.y}function H8e(e){return e==="x"||e==="y"?xu[e]?null:(xu[e]=!0,()=>{xu[e]=!1}):xu.x||xu.y?null:(xu.x=xu.y=!0,()=>{xu.x=xu.y=!1})}const D9=e=>e.pointerType==="mouse"?typeof e.button!="number"||e.button<=0:e.isPrimary!==!1;function yS(e,t,n,i={passive:!0}){return e.addEventListener(t,n,i),()=>e.removeEventListener(t,n)}function Vk(e){return{point:{x:e.pageX,y:e.pageY}}}const q8e=e=>t=>D9(t)&&e(t,Vk(t));function yO(e,t,n,i){return yS(e,t,q8e(n),i)}const Rq=(e,t)=>Math.abs(e-t);function W8e(e,t){const n=Rq(e.x,t.x),i=Rq(e.y,t.y);return Math.sqrt(n**2+i**2)}class sbe{constructor(t,n,{transformPagePoint:i,contextWindow:r,dragSnapToOrigin:s=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const f=ND(this.lastMoveEventInfo,this.history),h=this.startEvent!==null,m=W8e(f.offset,{x:0,y:0})>=3;if(!h&&!m)return;const{point:g}=f,{timestamp:b}=Wa;this.history.push({...g,timestamp:b});const{onStart:v,onMove:y}=this.handlers;h||(v&&v(this.lastMoveEvent,f),this.startEvent=this.lastMoveEvent),y&&y(this.lastMoveEvent,f)},this.handlePointerMove=(f,h)=>{this.lastMoveEvent=f,this.lastMoveEventInfo=_D(h,this.transformPagePoint),Yr.update(this.updatePoint,!0)},this.handlePointerUp=(f,h)=>{this.end();const{onEnd:m,onSessionEnd:g,resumeAnimation:b}=this.handlers;if(this.dragSnapToOrigin&&b&&b(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const v=ND(f.type==="pointercancel"?this.lastMoveEventInfo:_D(h,this.transformPagePoint),this.history);this.startEvent&&m&&m(f,v),g&&g(f,v)},!D9(t))return;this.dragSnapToOrigin=s,this.handlers=n,this.transformPagePoint=i,this.contextWindow=r||window;const a=Vk(t),l=_D(a,this.transformPagePoint),{point:c}=l,{timestamp:u}=Wa;this.history=[{...c,timestamp:u}];const{onSessionStart:d}=n;d&&d(t,ND(l,this.history)),this.removeListeners=zk(yO(this.contextWindow,"pointermove",this.handlePointerMove),yO(this.contextWindow,"pointerup",this.handlePointerUp),yO(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),gm(this.updatePoint)}}function _D(e,t){return t?{point:t(e.point)}:e}function Iq(e,t){return{x:e.x-t.x,y:e.y-t.y}}function ND({point:e},t){return{point:e,delta:Iq(e,abe(t)),offset:Iq(e,K8e(t)),velocity:G8e(t,.1)}}function K8e(e){return e[0]}function abe(e){return e[e.length-1]}function G8e(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,i=null;const r=abe(e);for(;n>=0&&(i=e[n],!(r.timestamp-i.timestamp>eh(t)));)n--;if(!i)return{x:0,y:0};const s=th(r.timestamp-i.timestamp);if(s===0)return{x:0,y:0};const a={x:(r.x-i.x)/s,y:(r.y-i.y)/s};return a.x===1/0&&(a.x=0),a.y===1/0&&(a.y=0),a}const obe=1e-4,X8e=1-obe,Y8e=1+obe,lbe=.01,Z8e=0-lbe,J8e=0+lbe;function pc(e){return e.max-e.min}function eFe(e,t,n){return Math.abs(e-t)<=n}function Pq(e,t,n,i=.5){e.origin=i,e.originPoint=ps(t.min,t.max,e.origin),e.scale=pc(n)/pc(t),e.translate=ps(n.min,n.max,e.origin)-e.originPoint,(e.scale>=X8e&&e.scale<=Y8e||isNaN(e.scale))&&(e.scale=1),(e.translate>=Z8e&&e.translate<=J8e||isNaN(e.translate))&&(e.translate=0)}function vO(e,t,n,i){Pq(e.x,t.x,n.x,i?i.originX:void 0),Pq(e.y,t.y,n.y,i?i.originY:void 0)}function Dq(e,t,n){e.min=n.min+t.min,e.max=e.min+pc(t)}function tFe(e,t,n){Dq(e.x,t.x,n.x),Dq(e.y,t.y,n.y)}function Mq(e,t,n){e.min=t.min-n.min,e.max=e.min+pc(t)}function xO(e,t,n){Mq(e.x,t.x,n.x),Mq(e.y,t.y,n.y)}function nFe(e,{min:t,max:n},i){return t!==void 0&&en&&(e=i?ps(n,e,i.max):Math.min(e,n)),e}function Lq(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function iFe(e,{top:t,left:n,bottom:i,right:r}){return{x:Lq(e.x,n,r),y:Lq(e.y,t,i)}}function $q(e,t){let n=t.min-e.min,i=t.max-e.max;return t.max-t.mini?n=Bv(t.min,t.max-i,e.min):i>r&&(n=Bv(e.min,e.max-r,t.min)),yh(0,1,n)}function aFe(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const d4=.35;function oFe(e=d4){return e===!1?e=0:e===!0&&(e=d4),{x:Fq(e,"left","right"),y:Fq(e,"top","bottom")}}function Fq(e,t,n){return{min:Bq(e,t),max:Bq(e,n)}}function Bq(e,t){return typeof e=="number"?e:e[t]||0}const Uq=()=>({translate:0,scale:1,origin:0,originPoint:0}),Ny=()=>({x:Uq(),y:Uq()}),Qq=()=>({min:0,max:0}),Ds=()=>({x:Qq(),y:Qq()});function Ic(e){return[e("x"),e("y")]}function cbe({top:e,left:t,right:n,bottom:i}){return{x:{min:t,max:n},y:{min:e,max:i}}}function lFe({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function cFe(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),i=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:i.y,right:i.x}}function jD(e){return e===void 0||e===1}function f4({scale:e,scaleX:t,scaleY:n}){return!jD(e)||!jD(t)||!jD(n)}function Og(e){return f4(e)||ube(e)||e.z||e.rotate||e.rotateX||e.rotateY||e.skewX||e.skewY}function ube(e){return zq(e.x)||zq(e.y)}function zq(e){return e&&e!=="0%"}function M_(e,t,n){const i=e-n,r=t*i;return n+r}function Vq(e,t,n,i,r){return r!==void 0&&(e=M_(e,r,i)),M_(e,n,i)+t}function h4(e,t=0,n=1,i,r){e.min=Vq(e.min,t,n,i,r),e.max=Vq(e.max,t,n,i,r)}function dbe(e,{x:t,y:n}){h4(e.x,t.translate,t.scale,t.originPoint),h4(e.y,n.translate,n.scale,n.originPoint)}const Hq=.999999999999,qq=1.0000000000001;function uFe(e,t,n,i=!1){const r=n.length;if(!r)return;t.x=t.y=1;let s,a;for(let l=0;lHq&&(t.x=1),t.yHq&&(t.y=1)}function jy(e,t){e.min=e.min+t,e.max=e.max+t}function Wq(e,t,n,i,r=.5){const s=ps(e.min,e.max,r);h4(e,t,n,s,i)}function Ry(e,t){Wq(e.x,t.x,t.scaleX,t.scale,t.originX),Wq(e.y,t.y,t.scaleY,t.scale,t.originY)}function fbe(e,t){return cbe(cFe(e.getBoundingClientRect(),t))}function dFe(e,t,n){const i=fbe(e,n),{scroll:r}=t;return r&&(jy(i.x,r.offset.x),jy(i.y,r.offset.y)),i}const hbe=({current:e})=>e?e.ownerDocument.defaultView:null,fFe=new WeakMap;class hFe{constructor(t){this.openDragLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=Ds(),this.visualElement=t}start(t,{snapToCursor:n=!1}={}){const{presenceContext:i}=this.visualElement;if(i&&i.isPresent===!1)return;const r=d=>{const{dragSnapToOrigin:f}=this.getProps();f?this.pauseAnimation():this.stopAnimation(),n&&this.snapToCursor(Vk(d).point)},s=(d,f)=>{const{drag:h,dragPropagation:m,onDragStart:g}=this.getProps();if(h&&!m&&(this.openDragLock&&this.openDragLock(),this.openDragLock=H8e(h),!this.openDragLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),Ic(v=>{let y=this.getAxisMotionValue(v).get()||0;if(Dd.test(y)){const{projection:x}=this.visualElement;if(x&&x.layout){const O=x.layout.layoutBox[v];O&&(y=pc(O)*(parseFloat(y)/100))}}this.originPoint[v]=y}),g&&Yr.postRender(()=>g(d,f)),t4(this.visualElement,"transform");const{animationState:b}=this.visualElement;b&&b.setActive("whileDrag",!0)},a=(d,f)=>{const{dragPropagation:h,dragDirectionLock:m,onDirectionLock:g,onDrag:b}=this.getProps();if(!h&&!this.openDragLock)return;const{offset:v}=f;if(m&&this.currentDirection===null){this.currentDirection=pFe(v),this.currentDirection!==null&&g&&g(this.currentDirection);return}this.updateAxis("x",f.point,v),this.updateAxis("y",f.point,v),this.visualElement.render(),b&&b(d,f)},l=(d,f)=>this.stop(d,f),c=()=>Ic(d=>{var f;return this.getAnimationState(d)==="paused"&&((f=this.getAxisMotionValue(d).animation)===null||f===void 0?void 0:f.play())}),{dragSnapToOrigin:u}=this.getProps();this.panSession=new sbe(t,{onSessionStart:r,onStart:s,onMove:a,onSessionEnd:l,resumeAnimation:c},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:u,contextWindow:hbe(this.visualElement)})}stop(t,n){const i=this.isDragging;if(this.cancel(),!i)return;const{velocity:r}=n;this.startAnimation(r);const{onDragEnd:s}=this.getProps();s&&Yr.postRender(()=>s(t,n))}cancel(){this.isDragging=!1;const{projection:t,animationState:n}=this.visualElement;t&&(t.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:i}=this.getProps();!i&&this.openDragLock&&(this.openDragLock(),this.openDragLock=null),n&&n.setActive("whileDrag",!1)}updateAxis(t,n,i){const{drag:r}=this.getProps();if(!i||!YC(t,r,this.currentDirection))return;const s=this.getAxisMotionValue(t);let a=this.originPoint[t]+i[t];this.constraints&&this.constraints[t]&&(a=nFe(a,this.constraints[t],this.elastic[t])),s.set(a)}resolveConstraints(){var t;const{dragConstraints:n,dragElastic:i}=this.getProps(),r=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):(t=this.visualElement.projection)===null||t===void 0?void 0:t.layout,s=this.constraints;n&&Ay(n)?this.constraints||(this.constraints=this.resolveRefConstraints()):n&&r?this.constraints=iFe(r.layoutBox,n):this.constraints=!1,this.elastic=oFe(i),s!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&Ic(a=>{this.constraints!==!1&&this.getAxisMotionValue(a)&&(this.constraints[a]=aFe(r.layoutBox[a],this.constraints[a]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!Ay(t))return!1;const i=t.current,{projection:r}=this.visualElement;if(!r||!r.layout)return!1;const s=dFe(i,r.root,this.visualElement.getTransformPagePoint());let a=rFe(r.layout.layoutBox,s);if(n){const l=n(lFe(a));this.hasMutatedConstraints=!!l,l&&(a=cbe(l))}return a}startAnimation(t){const{drag:n,dragMomentum:i,dragElastic:r,dragTransition:s,dragSnapToOrigin:a,onDragTransitionEnd:l}=this.getProps(),c=this.constraints||{},u=Ic(d=>{if(!YC(d,n,this.currentDirection))return;let f=c&&c[d]||{};a&&(f={min:0,max:0});const h=r?200:1e6,m=r?40:1e7,g={type:"inertia",velocity:i?t[d]:0,bounceStiffness:h,bounceDamping:m,timeConstant:750,restDelta:1,restSpeed:10,...s,...f};return this.startAxisValueAnimation(d,g)});return Promise.all(u).then(l)}startAxisValueAnimation(t,n){const i=this.getAxisMotionValue(t);return t4(this.visualElement,t),i.start(P9(t,i,0,n,this.visualElement,!1))}stopAnimation(){Ic(t=>this.getAxisMotionValue(t).stop())}pauseAnimation(){Ic(t=>{var n;return(n=this.getAxisMotionValue(t).animation)===null||n===void 0?void 0:n.pause()})}getAnimationState(t){var n;return(n=this.getAxisMotionValue(t).animation)===null||n===void 0?void 0:n.state}getAxisMotionValue(t){const n=`_drag${t.toUpperCase()}`,i=this.visualElement.getProps(),r=i[n];return r||this.visualElement.getValue(t,(i.initial?i.initial[t]:void 0)||0)}snapToCursor(t){Ic(n=>{const{drag:i}=this.getProps();if(!YC(n,i,this.currentDirection))return;const{projection:r}=this.visualElement,s=this.getAxisMotionValue(n);if(r&&r.layout){const{min:a,max:l}=r.layout.layoutBox[n];s.set(t[n]-ps(a,l,.5))}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:t,dragConstraints:n}=this.getProps(),{projection:i}=this.visualElement;if(!Ay(n)||!i||!this.constraints)return;this.stopAnimation();const r={x:0,y:0};Ic(a=>{const l=this.getAxisMotionValue(a);if(l&&this.constraints!==!1){const c=l.get();r[a]=sFe({min:c,max:c},this.constraints[a])}});const{transformTemplate:s}=this.visualElement.getProps();this.visualElement.current.style.transform=s?s({},""):"none",i.root&&i.root.updateScroll(),i.updateLayout(),this.resolveConstraints(),Ic(a=>{if(!YC(a,t,null))return;const l=this.getAxisMotionValue(a),{min:c,max:u}=this.constraints[a];l.set(ps(c,u,r[a]))})}addListeners(){if(!this.visualElement.current)return;fFe.set(this.visualElement,this);const t=this.visualElement.current,n=yO(t,"pointerdown",c=>{const{drag:u,dragListener:d=!0}=this.getProps();u&&d&&this.start(c)}),i=()=>{const{dragConstraints:c}=this.getProps();Ay(c)&&c.current&&(this.constraints=this.resolveRefConstraints())},{projection:r}=this.visualElement,s=r.addEventListener("measure",i);r&&!r.layout&&(r.root&&r.root.updateScroll(),r.updateLayout()),Yr.read(i);const a=yS(window,"resize",()=>this.scalePositionWithinConstraints()),l=r.addEventListener("didUpdate",({delta:c,hasLayoutChanged:u})=>{this.isDragging&&u&&(Ic(d=>{const f=this.getAxisMotionValue(d);f&&(this.originPoint[d]+=c[d].translate,f.set(f.get()+c[d].translate))}),this.visualElement.render())});return()=>{a(),n(),s(),l&&l()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:i=!1,dragPropagation:r=!1,dragConstraints:s=!1,dragElastic:a=d4,dragMomentum:l=!0}=t;return{...t,drag:n,dragDirectionLock:i,dragPropagation:r,dragConstraints:s,dragElastic:a,dragMomentum:l}}}function YC(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function pFe(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}class mFe extends Bm{constructor(t){super(t),this.removeGroupControls=oc,this.removeListeners=oc,this.controls=new hFe(t)}mount(){const{dragControls:t}=this.node.getProps();t&&(this.removeGroupControls=t.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||oc}unmount(){this.removeGroupControls(),this.removeListeners()}}const Kq=e=>(t,n)=>{e&&Yr.postRender(()=>e(t,n))};class gFe extends Bm{constructor(){super(...arguments),this.removePointerDownListener=oc}onPointerDown(t){this.session=new sbe(t,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:hbe(this.node)})}createPanHandlers(){const{onPanSessionStart:t,onPanStart:n,onPan:i,onPanEnd:r}=this.node.getProps();return{onSessionStart:Kq(t),onStart:Kq(n),onMove:i,onEnd:(s,a)=>{delete this.session,r&&Yr.postRender(()=>r(s,a))}}}mount(){this.removePointerDownListener=yO(this.node.current,"pointerdown",t=>this.onPointerDown(t))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}const JA={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function Gq(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const F1={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(Pn.test(e))e=parseFloat(e);else return e;const n=Gq(e,t.target.x),i=Gq(e,t.target.y);return`${n}% ${i}%`}},bFe={correct:(e,{treeScale:t,projectionDelta:n})=>{const i=e,r=bm.parse(e);if(r.length>5)return i;const s=bm.createTransformer(e),a=typeof r[0]!="number"?1:0,l=n.x.scale*t.x,c=n.y.scale*t.y;r[0+a]/=l,r[1+a]/=c;const u=ps(l,c,.5);return typeof r[2+a]=="number"&&(r[2+a]/=u),typeof r[3+a]=="number"&&(r[3+a]/=u),s(r)}};class yFe extends p.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:i,layoutId:r}=this.props,{projection:s}=t;V6e(vFe),s&&(n.group&&n.group.add(s),i&&i.register&&r&&i.register(s),s.root.didUpdate(),s.addEventListener("animationComplete",()=>{this.safeToRemove()}),s.setOptions({...s.options,onExitComplete:()=>this.safeToRemove()})),JA.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:i,drag:r,isPresent:s}=this.props,a=i.projection;return a&&(a.isPresent=s,r||t.layoutDependency!==n||n===void 0?a.willUpdate():this.safeToRemove(),t.isPresent!==s&&(s?a.promote():a.relegate()||Yr.postRender(()=>{const l=a.getStack();(!l||!l.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),c9.postRender(()=>{!t.currentAnimation&&t.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:i}=this.props,{projection:r}=t;r&&(r.scheduleCheckAfterUnmount(),n&&n.group&&n.group.remove(r),i&&i.deregister&&i.deregister(r))}safeToRemove(){const{safeToRemove:t}=this.props;t&&t()}render(){return null}}function pbe(e){const[t,n]=Yme(),i=p.useContext(r9);return o.jsx(yFe,{...e,layoutGroup:i,switchLayoutGroup:p.useContext(age),isPresent:t,safeToRemove:n})}const vFe={borderRadius:{...F1,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:F1,borderTopRightRadius:F1,borderBottomLeftRadius:F1,borderBottomRightRadius:F1,boxShadow:bFe};function xFe(e,t,n){const i=yo(e)?e:gS(e);return i.start(P9("",i,t,n)),i.animation}function wFe(e){return e instanceof SVGElement&&e.tagName!=="svg"}const OFe=(e,t)=>e.depth-t.depth;class SFe{constructor(){this.children=[],this.isDirty=!1}add(t){x9(this.children,t),this.isDirty=!0}remove(t){w9(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(OFe),this.isDirty=!1,this.children.forEach(t)}}function kFe(e,t){const n=Md.now(),i=({timestamp:r})=>{const s=r-n;s>=t&&(gm(i),e(s-t))};return Yr.read(i,!0),()=>gm(i)}const mbe=["TopLeft","TopRight","BottomLeft","BottomRight"],EFe=mbe.length,Xq=e=>typeof e=="string"?parseFloat(e):e,Yq=e=>typeof e=="number"||Pn.test(e);function CFe(e,t,n,i,r,s){r?(e.opacity=ps(0,n.opacity!==void 0?n.opacity:1,TFe(i)),e.opacityExit=ps(t.opacity!==void 0?t.opacity:1,0,AFe(i))):s&&(e.opacity=ps(t.opacity!==void 0?t.opacity:1,n.opacity!==void 0?n.opacity:1,i));for(let a=0;ait?1:n(Bv(e,t,i))}function Jq(e,t){e.min=t.min,e.max=t.max}function Rc(e,t){Jq(e.x,t.x),Jq(e.y,t.y)}function eW(e,t){e.translate=t.translate,e.scale=t.scale,e.originPoint=t.originPoint,e.origin=t.origin}function tW(e,t,n,i,r){return e-=t,e=M_(e,1/n,i),r!==void 0&&(e=M_(e,1/r,i)),e}function _Fe(e,t=0,n=1,i=.5,r,s=e,a=e){if(Dd.test(t)&&(t=parseFloat(t),t=ps(a.min,a.max,t/100)-a.min),typeof t!="number")return;let l=ps(s.min,s.max,i);e===s&&(l-=t),e.min=tW(e.min,t,n,l,r),e.max=tW(e.max,t,n,l,r)}function nW(e,t,[n,i,r],s,a){_Fe(e,t[n],t[i],t[r],t.scale,s,a)}const NFe=["x","scaleX","originX"],jFe=["y","scaleY","originY"];function iW(e,t,n,i){nW(e.x,t,NFe,n?n.x:void 0,i?i.x:void 0),nW(e.y,t,jFe,n?n.y:void 0,i?i.y:void 0)}function rW(e){return e.translate===0&&e.scale===1}function bbe(e){return rW(e.x)&&rW(e.y)}function sW(e,t){return e.min===t.min&&e.max===t.max}function RFe(e,t){return sW(e.x,t.x)&&sW(e.y,t.y)}function aW(e,t){return Math.round(e.min)===Math.round(t.min)&&Math.round(e.max)===Math.round(t.max)}function ybe(e,t){return aW(e.x,t.x)&&aW(e.y,t.y)}function oW(e){return pc(e.x)/pc(e.y)}function lW(e,t){return e.translate===t.translate&&e.scale===t.scale&&e.originPoint===t.originPoint}class IFe{constructor(){this.members=[]}add(t){x9(this.members,t),t.scheduleRender()}remove(t){if(w9(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(r=>t===r);if(n===0)return!1;let i;for(let r=n;r>=0;r--){const s=this.members[r];if(s.isPresent!==!1){i=s;break}}return i?(this.promote(i),!0):!1}promote(t,n){const i=this.lead;if(t!==i&&(this.prevLead=i,this.lead=t,t.show(),i)){i.instance&&i.scheduleRender(),t.scheduleRender(),t.resumeFrom=i,n&&(t.resumeFrom.preserveOpacity=!0),i.snapshot&&(t.snapshot=i.snapshot,t.snapshot.latestValues=i.animationValues||i.latestValues),t.root&&t.root.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:r}=t.options;r===!1&&i.hide()}}exitAnimationComplete(){this.members.forEach(t=>{const{options:n,resumingFrom:i}=t;n.onExitComplete&&n.onExitComplete(),i&&i.options.onExitComplete&&i.options.onExitComplete()})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function PFe(e,t,n){let i="";const r=e.x.translate/t.x,s=e.y.translate/t.y,a=(n==null?void 0:n.z)||0;if((r||s||a)&&(i=`translate3d(${r}px, ${s}px, ${a}px) `),(t.x!==1||t.y!==1)&&(i+=`scale(${1/t.x}, ${1/t.y}) `),n){const{transformPerspective:u,rotate:d,rotateX:f,rotateY:h,skewX:m,skewY:g}=n;u&&(i=`perspective(${u}px) ${i}`),d&&(i+=`rotate(${d}deg) `),f&&(i+=`rotateX(${f}deg) `),h&&(i+=`rotateY(${h}deg) `),m&&(i+=`skewX(${m}deg) `),g&&(i+=`skewY(${g}deg) `)}const l=e.x.scale*t.x,c=e.y.scale*t.y;return(l!==1||c!==1)&&(i+=`scale(${l}, ${c})`),i||"none"}const Sg={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0},Rw=typeof window<"u"&&window.MotionDebug!==void 0,RD=["","X","Y","Z"],DFe={visibility:"hidden"},cW=1e3;let MFe=0;function ID(e,t,n,i){const{latestValues:r}=t;r[e]&&(n[e]=r[e],t.setStaticValue(e,0),i&&(i[e]=0))}function vbe(e){if(e.hasCheckedOptimisedAppear=!0,e.root===e)return;const{visualElement:t}=e.options;if(!t)return;const n=Oge(t);if(window.MotionHasOptimisedAnimation(n,"transform")){const{layout:r,layoutId:s}=e.options;window.MotionCancelOptimisedAnimation(n,"transform",Yr,!(r||s))}const{parent:i}=e;i&&!i.hasCheckedOptimisedAppear&&vbe(i)}function xbe({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:i,resetTransform:r}){return class{constructor(a={},l=t==null?void 0:t()){this.id=MFe++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,Rw&&(Sg.totalNodes=Sg.resolvedTargetDeltas=Sg.recalculatedProjection=0),this.nodes.forEach(FFe),this.nodes.forEach(VFe),this.nodes.forEach(HFe),this.nodes.forEach(BFe),Rw&&window.MotionDebug.record(Sg)},this.resolvedRelativeTargetAt=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=a,this.root=l?l.root||l:this,this.path=l?[...l.path,l]:[],this.parent=l,this.depth=l?l.depth+1:0;for(let c=0;cthis.root.updateBlockedByResize=!1;e(a,()=>{this.root.updateBlockedByResize=!0,f&&f(),f=kFe(h,250),JA.hasAnimatedSinceResize&&(JA.hasAnimatedSinceResize=!1,this.nodes.forEach(dW))})}c&&this.root.registerSharedNode(c,this),this.options.animate!==!1&&d&&(c||u)&&this.addEventListener("didUpdate",({delta:f,hasLayoutChanged:h,hasRelativeTargetChanged:m,layout:g})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const b=this.options.transition||d.getDefaultTransition()||XFe,{onLayoutAnimationStart:v,onLayoutAnimationComplete:y}=d.getProps(),x=!this.targetLayout||!ybe(this.targetLayout,g)||m,O=!h&&m;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||O||h&&(x||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(f,O);const w={...v9(b,"layout"),onPlay:v,onComplete:y};(d.shouldReduceMotion||this.options.layoutRoot)&&(w.delay=0,w.type=!1),this.startAnimation(w)}else h||dW(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=g})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const a=this.getStack();a&&a.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,gm(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(qFe),this.animationId++)}getTransformTemplate(){const{visualElement:a}=this.options;return a&&a.getProps().transformTemplate}willUpdate(a=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&vbe(this),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let d=0;d{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure())}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let c=0;c{const k=w/1e3;fW(f.x,a.x,k),fW(f.y,a.y,k),this.setTargetDelta(f),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(xO(h,this.layout.layoutBox,this.relativeParent.layout.layoutBox),KFe(this.relativeTarget,this.relativeTargetOrigin,h,k),O&&RFe(this.relativeTarget,O)&&(this.isProjectionDirty=!1),O||(O=Ds()),Rc(O,this.relativeTarget)),b&&(this.animationValues=d,CFe(d,u,this.latestValues,k,x,y)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=k},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(a){this.notifyListeners("animationStart"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&(gm(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Yr.update(()=>{JA.hasAnimatedSinceResize=!0,this.currentAnimation=xFe(0,cW,{...a,onUpdate:l=>{this.mixTargetDelta(l),a.onUpdate&&a.onUpdate(l)},onComplete:()=>{a.onComplete&&a.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const a=this.getStack();a&&a.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(cW),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const a=this.getLead();let{targetWithTransforms:l,target:c,layout:u,latestValues:d}=a;if(!(!l||!c||!u)){if(this!==a&&this.layout&&u&&wbe(this.options.animationType,this.layout.layoutBox,u.layoutBox)){c=this.target||Ds();const f=pc(this.layout.layoutBox.x);c.x.min=a.target.x.min,c.x.max=c.x.min+f;const h=pc(this.layout.layoutBox.y);c.y.min=a.target.y.min,c.y.max=c.y.min+h}Rc(l,c),Ry(l,d),vO(this.projectionDeltaWithTransform,this.layoutCorrected,l,d)}}registerSharedNode(a,l){this.sharedNodes.has(a)||this.sharedNodes.set(a,new IFe),this.sharedNodes.get(a).add(l);const u=l.options.initialPromotionConfig;l.promote({transition:u?u.transition:void 0,preserveFollowOpacity:u&&u.shouldPreserveFollowOpacity?u.shouldPreserveFollowOpacity(l):void 0})}isLead(){const a=this.getStack();return a?a.lead===this:!0}getLead(){var a;const{layoutId:l}=this.options;return l?((a=this.getStack())===null||a===void 0?void 0:a.lead)||this:this}getPrevLead(){var a;const{layoutId:l}=this.options;return l?(a=this.getStack())===null||a===void 0?void 0:a.prevLead:void 0}getStack(){const{layoutId:a}=this.options;if(a)return this.root.sharedNodes.get(a)}promote({needsReset:a,transition:l,preserveFollowOpacity:c}={}){const u=this.getStack();u&&u.promote(this,c),a&&(this.projectionDelta=void 0,this.needsReset=!0),l&&this.setOptions({transition:l})}relegate(){const a=this.getStack();return a?a.relegate(this):!1}resetSkewAndRotation(){const{visualElement:a}=this.options;if(!a)return;let l=!1;const{latestValues:c}=a;if((c.z||c.rotate||c.rotateX||c.rotateY||c.rotateZ||c.skewX||c.skewY)&&(l=!0),!l)return;const u={};c.z&&ID("z",a,u,this.animationValues);for(let d=0;d{var l;return(l=a.currentAnimation)===null||l===void 0?void 0:l.stop()}),this.root.nodes.forEach(uW),this.root.sharedNodes.clear()}}}function LFe(e){e.updateLayout()}function $Fe(e){var t;const n=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&n&&e.hasListeners("didUpdate")){const{layoutBox:i,measuredBox:r}=e.layout,{animationType:s}=e.options,a=n.source!==e.layout.source;s==="size"?Ic(f=>{const h=a?n.measuredBox[f]:n.layoutBox[f],m=pc(h);h.min=i[f].min,h.max=h.min+m}):wbe(s,n.layoutBox,i)&&Ic(f=>{const h=a?n.measuredBox[f]:n.layoutBox[f],m=pc(i[f]);h.max=h.min+m,e.relativeTarget&&!e.currentAnimation&&(e.isProjectionDirty=!0,e.relativeTarget[f].max=e.relativeTarget[f].min+m)});const l=Ny();vO(l,i,n.layoutBox);const c=Ny();a?vO(c,e.applyTransform(r,!0),n.measuredBox):vO(c,i,n.layoutBox);const u=!bbe(l);let d=!1;if(!e.resumeFrom){const f=e.getClosestProjectingParent();if(f&&!f.resumeFrom){const{snapshot:h,layout:m}=f;if(h&&m){const g=Ds();xO(g,n.layoutBox,h.layoutBox);const b=Ds();xO(b,i,m.layoutBox),ybe(g,b)||(d=!0),f.options.layoutRoot&&(e.relativeTarget=b,e.relativeTargetOrigin=g,e.relativeParent=f)}}}e.notifyListeners("didUpdate",{layout:i,snapshot:n,delta:c,layoutDelta:l,hasLayoutChanged:u,hasRelativeTargetChanged:d})}else if(e.isLead()){const{onExitComplete:i}=e.options;i&&i()}e.options.transition=void 0}function FFe(e){Rw&&Sg.totalNodes++,e.parent&&(e.isProjecting()||(e.isProjectionDirty=e.parent.isProjectionDirty),e.isSharedProjectionDirty||(e.isSharedProjectionDirty=!!(e.isProjectionDirty||e.parent.isProjectionDirty||e.parent.isSharedProjectionDirty)),e.isTransformDirty||(e.isTransformDirty=e.parent.isTransformDirty))}function BFe(e){e.isProjectionDirty=e.isSharedProjectionDirty=e.isTransformDirty=!1}function UFe(e){e.clearSnapshot()}function uW(e){e.clearMeasurements()}function QFe(e){e.isLayoutDirty=!1}function zFe(e){const{visualElement:t}=e.options;t&&t.getProps().onBeforeLayoutMeasure&&t.notify("BeforeLayoutMeasure"),e.resetTransform()}function dW(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0,e.isProjectionDirty=!0}function VFe(e){e.resolveTargetDelta()}function HFe(e){e.calcProjection()}function qFe(e){e.resetSkewAndRotation()}function WFe(e){e.removeLeadSnapshot()}function fW(e,t,n){e.translate=ps(t.translate,0,n),e.scale=ps(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function hW(e,t,n,i){e.min=ps(t.min,n.min,i),e.max=ps(t.max,n.max,i)}function KFe(e,t,n,i){hW(e.x,t.x,n.x,i),hW(e.y,t.y,n.y,i)}function GFe(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const XFe={duration:.45,ease:[.4,0,.1,1]},pW=e=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(e),mW=pW("applewebkit/")&&!pW("chrome/")?Math.round:oc;function gW(e){e.min=mW(e.min),e.max=mW(e.max)}function YFe(e){gW(e.x),gW(e.y)}function wbe(e,t,n){return e==="position"||e==="preserve-aspect"&&!eFe(oW(t),oW(n),.2)}function ZFe(e){var t;return e!==e.root&&((t=e.scroll)===null||t===void 0?void 0:t.wasRoot)}const JFe=xbe({attachResizeListener:(e,t)=>yS(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),PD={current:void 0},Obe=xbe({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!PD.current){const e=new JFe({});e.mount(window),e.setOptions({layoutScroll:!0}),PD.current=e}return PD.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>window.getComputedStyle(e).position==="fixed"}),e9e={pan:{Feature:gFe},drag:{Feature:mFe,ProjectionNode:Obe,MeasureLayout:pbe}};function t9e(e,t,n){var i;if(e instanceof Element)return[e];if(typeof e=="string"){let r=document;const s=(i=void 0)!==null&&i!==void 0?i:r.querySelectorAll(e);return s?Array.from(s):[]}return Array.from(e)}function Sbe(e,t){const n=t9e(e),i=new AbortController,r={passive:!0,...t,signal:i.signal};return[n,r,()=>i.abort()]}function bW(e){return t=>{t.pointerType==="touch"||rbe()||e(t)}}function n9e(e,t,n={}){const[i,r,s]=Sbe(e,n),a=bW(l=>{const{target:c}=l,u=t(l);if(typeof u!="function"||!c)return;const d=bW(f=>{u(f),c.removeEventListener("pointerleave",d)});c.addEventListener("pointerleave",d,r)});return i.forEach(l=>{l.addEventListener("pointerenter",a,r)}),s}function yW(e,t,n){const{props:i}=e;e.animationState&&i.whileHover&&e.animationState.setActive("whileHover",n==="Start");const r="onHover"+n,s=i[r];s&&Yr.postRender(()=>s(t,Vk(t)))}class i9e extends Bm{mount(){const{current:t}=this.node;t&&(this.unmount=n9e(t,n=>(yW(this.node,n,"Start"),i=>yW(this.node,i,"End"))))}unmount(){}}class r9e extends Bm{constructor(){super(...arguments),this.isActive=!1}onFocus(){let t=!1;try{t=this.node.current.matches(":focus-visible")}catch{t=!0}!t||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=zk(yS(this.node.current,"focus",()=>this.onFocus()),yS(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}const kbe=(e,t)=>t?e===t?!0:kbe(e,t.parentElement):!1,s9e=new Set(["BUTTON","INPUT","SELECT","TEXTAREA","A"]);function a9e(e){return s9e.has(e.tagName)||e.tabIndex!==-1}const Iw=new WeakSet;function vW(e){return t=>{t.key==="Enter"&&e(t)}}function DD(e,t){e.dispatchEvent(new PointerEvent("pointer"+t,{isPrimary:!0,bubbles:!0}))}const o9e=(e,t)=>{const n=e.currentTarget;if(!n)return;const i=vW(()=>{if(Iw.has(n))return;DD(n,"down");const r=vW(()=>{DD(n,"up")}),s=()=>DD(n,"cancel");n.addEventListener("keyup",r,t),n.addEventListener("blur",s,t)});n.addEventListener("keydown",i,t),n.addEventListener("blur",()=>n.removeEventListener("keydown",i),t)};function xW(e){return D9(e)&&!rbe()}function l9e(e,t,n={}){const[i,r,s]=Sbe(e,n),a=l=>{const c=l.currentTarget;if(!xW(l)||Iw.has(c))return;Iw.add(c);const u=t(l),d=(m,g)=>{window.removeEventListener("pointerup",f),window.removeEventListener("pointercancel",h),!(!xW(m)||!Iw.has(c))&&(Iw.delete(c),typeof u=="function"&&u(m,{success:g}))},f=m=>{d(m,n.useGlobalTarget||kbe(c,m.target))},h=m=>{d(m,!1)};window.addEventListener("pointerup",f,r),window.addEventListener("pointercancel",h,r)};return i.forEach(l=>{!a9e(l)&&l.getAttribute("tabindex")===null&&(l.tabIndex=0),(n.useGlobalTarget?window:l).addEventListener("pointerdown",a,r),l.addEventListener("focus",u=>o9e(u,r),r)}),s}function wW(e,t,n){const{props:i}=e;e.animationState&&i.whileTap&&e.animationState.setActive("whileTap",n==="Start");const r="onTap"+(n==="End"?"":n),s=i[r];s&&Yr.postRender(()=>s(t,Vk(t)))}class c9e extends Bm{mount(){const{current:t}=this.node;t&&(this.unmount=l9e(t,n=>(wW(this.node,n,"Start"),(i,{success:r})=>wW(this.node,i,r?"End":"Cancel")),{useGlobalTarget:this.node.props.globalTapTarget}))}unmount(){}}const p4=new WeakMap,MD=new WeakMap,u9e=e=>{const t=p4.get(e.target);t&&t(e)},d9e=e=>{e.forEach(u9e)};function f9e({root:e,...t}){const n=e||document;MD.has(n)||MD.set(n,{});const i=MD.get(n),r=JSON.stringify(t);return i[r]||(i[r]=new IntersectionObserver(d9e,{root:e,...t})),i[r]}function h9e(e,t,n){const i=f9e(t);return p4.set(e,n),i.observe(e),()=>{p4.delete(e),i.unobserve(e)}}const p9e={some:0,all:1};class m9e extends Bm{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:t={}}=this.node.getProps(),{root:n,margin:i,amount:r="some",once:s}=t,a={root:n?n.current:void 0,rootMargin:i,threshold:typeof r=="number"?r:p9e[r]},l=c=>{const{isIntersecting:u}=c;if(this.isInView===u||(this.isInView=u,s&&!u&&this.hasEnteredView))return;u&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",u);const{onViewportEnter:d,onViewportLeave:f}=this.node.getProps(),h=u?d:f;h&&h(c)};return h9e(this.node.current,a,l)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:t,prevProps:n}=this.node;["amount","margin","root"].some(g9e(t,n))&&this.startObserver()}unmount(){}}function g9e({viewport:e={}},{viewport:t={}}={}){return n=>e[n]!==t[n]}const b9e={inView:{Feature:m9e},tap:{Feature:c9e},focus:{Feature:r9e},hover:{Feature:i9e}},y9e={layout:{ProjectionNode:Obe,MeasureLayout:pbe}},L_={current:null},M9={current:!1};function Ebe(){if(M9.current=!0,!!s9)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>L_.current=e.matches;e.addListener(t),t()}else L_.current=!1}const v9e=[...qge,mo,bm],x9e=e=>v9e.find(Hge(e)),OW=new WeakMap;function w9e(e,t,n){for(const i in t){const r=t[i],s=n[i];if(yo(r))e.addValue(i,r);else if(yo(s))e.addValue(i,gS(r,{owner:e}));else if(s!==r)if(e.hasValue(i)){const a=e.getValue(i);a.liveStyle===!0?a.jump(r):a.hasAnimated||a.set(r)}else{const a=e.getStaticValue(i);e.addValue(i,gS(a!==void 0?a:r,{owner:e}))}}for(const i in n)t[i]===void 0&&e.removeValue(i);return t}const SW=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];class O9e{scrapeMotionValuesFromProps(t,n,i){return{}}constructor({parent:t,props:n,presenceContext:i,reducedMotionConfig:r,blockInitialAnimation:s,visualState:a},l={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=j9,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{const m=Md.now();this.renderScheduledAtthis.bindToMotionValue(i,n)),M9.current||Ebe(),this.shouldReduceMotion=this.reducedMotionConfig==="never"?!1:this.reducedMotionConfig==="always"?!0:L_.current,this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){OW.delete(this.current),this.projection&&this.projection.unmount(),gm(this.notifyUpdate),gm(this.render),this.valueSubscriptions.forEach(t=>t()),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const t in this.events)this.events[t].clear();for(const t in this.features){const n=this.features[t];n&&(n.unmount(),n.isMounted=!1)}this.current=null}bindToMotionValue(t,n){this.valueSubscriptions.has(t)&&this.valueSubscriptions.get(t)();const i=Xb.has(t),r=n.on("change",l=>{this.latestValues[t]=l,this.props.onUpdate&&Yr.preRender(this.notifyUpdate),i&&this.projection&&(this.projection.isTransformDirty=!0)}),s=n.on("renderRequest",this.scheduleRender);let a;window.MotionCheckAppearSync&&(a=window.MotionCheckAppearSync(this,t,n)),this.valueSubscriptions.set(t,()=>{r(),s(),a&&a(),n.owner&&n.stop()})}sortNodePosition(t){return!this.current||!this.sortInstanceNodePosition||this.type!==t.type?0:this.sortInstanceNodePosition(this.current,t.current)}updateFeatures(){let t="animation";for(t in Fv){const n=Fv[t];if(!n)continue;const{isEnabled:i,Feature:r}=n;if(!this.features[t]&&r&&i(this.props)&&(this.features[t]=new r(this)),this.features[t]){const s=this.features[t];s.isMounted?s.update():(s.mount(),s.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):Ds()}getStaticValue(t){return this.latestValues[t]}setStaticValue(t,n){this.latestValues[t]=n}update(t,n){(t.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=t,this.prevPresenceContext=this.presenceContext,this.presenceContext=n;for(let i=0;in.variantChildren.delete(t)}addValue(t,n){const i=this.values.get(t);n!==i&&(i&&this.removeValue(t),this.bindToMotionValue(t,n),this.values.set(t,n),this.latestValues[t]=n.get())}removeValue(t){this.values.delete(t);const n=this.valueSubscriptions.get(t);n&&(n(),this.valueSubscriptions.delete(t)),delete this.latestValues[t],this.removeValueFromRenderState(t,this.renderState)}hasValue(t){return this.values.has(t)}getValue(t,n){if(this.props.values&&this.props.values[t])return this.props.values[t];let i=this.values.get(t);return i===void 0&&n!==void 0&&(i=gS(n===null?void 0:n,{owner:this}),this.addValue(t,i)),i}readValue(t,n){var i;let r=this.latestValues[t]!==void 0||!this.current?this.latestValues[t]:(i=this.getBaseTargetFromProps(this.props,t))!==null&&i!==void 0?i:this.readValueFromInstance(this.current,t,this.options);return r!=null&&(typeof r=="string"&&(zge(r)||Pge(r))?r=parseFloat(r):!x9e(r)&&bm.test(n)&&(r=Bge(t,n)),this.setBaseTarget(t,yo(r)?r.get():r)),yo(r)?r.get():r}setBaseTarget(t,n){this.baseTarget[t]=n}getBaseTarget(t){var n;const{initial:i}=this.props;let r;if(typeof i=="string"||typeof i=="object"){const a=d9(this.props,i,(n=this.presenceContext)===null||n===void 0?void 0:n.custom);a&&(r=a[t])}if(i&&r!==void 0)return r;const s=this.getBaseTargetFromProps(this.props,t);return s!==void 0&&!yo(s)?s:this.initialValues[t]!==void 0&&r===void 0?void 0:this.baseTarget[t]}on(t,n){return this.events[t]||(this.events[t]=new O9),this.events[t].add(n)}notify(t,...n){this.events[t]&&this.events[t].notify(...n)}}class Cbe extends O9e{constructor(){super(...arguments),this.KeyframeResolver=Wge}sortInstanceNodePosition(t,n){return t.compareDocumentPosition(n)&2?1:-1}getBaseTargetFromProps(t,n){return t.style?t.style[n]:void 0}removeValueFromRenderState(t,{vars:n,style:i}){delete n[t],delete i[t]}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:t}=this.props;yo(t)&&(this.childSubscription=t.on("change",n=>{this.current&&(this.current.textContent=`${n}`)}))}}function S9e(e){return window.getComputedStyle(e)}class k9e extends Cbe{constructor(){super(...arguments),this.type="html",this.renderInstance=hge}readValueFromInstance(t,n){if(Xb.has(n)){const i=N9(n);return i&&i.default||0}else{const i=S9e(t),r=(uge(n)?i.getPropertyValue(n):i[n])||0;return typeof r=="string"?r.trim():r}}measureInstanceViewportBox(t,{transformPagePoint:n}){return fbe(t,n)}build(t,n,i){p9(t,n,i.transformTemplate)}scrapeMotionValuesFromProps(t,n,i){return y9(t,n,i)}}class E9e extends Cbe{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=Ds}getBaseTargetFromProps(t,n){return t[n]}readValueFromInstance(t,n){if(Xb.has(n)){const i=N9(n);return i&&i.default||0}return n=pge.has(n)?n:l9(n),t.getAttribute(n)}scrapeMotionValuesFromProps(t,n,i){return bge(t,n,i)}build(t,n,i){m9(t,n,this.isSVGTag,i.transformTemplate)}renderInstance(t,n,i,r){mge(t,n,i,r)}mount(t){this.isSVGTag=b9(t.tagName),super.mount(t)}}const C9e=(e,t)=>u9(e)?new E9e(t):new k9e(t,{allowProjection:e!==p.Fragment}),T9e=J6e({...V8e,...b9e,...e9e,...y9e},C9e),wr=p6e(T9e);function L9(){!M9.current&&Ebe();const[e]=p.useState(L_.current);return e}function ma(){return ma=Object.assign?Object.assign.bind():function(e){for(var t=1;t"u"||/ServerSideRendering/.test(navigator&&navigator.userAgent)?p.useEffect:p.useLayoutEffect;function ry(e,t,n){var i=p.useRef(t);i.current=t,p.useEffect(function(){function r(s){i.current(s)}return e&&window.addEventListener(e,r,n),function(){e&&window.removeEventListener(e,r)}},[e])}var A9e=["container"];function _9e(e){var t=e.container,n=t===void 0?document.body:t,i=eR(e,A9e);return Fi.createPortal(li.createElement("div",ma({},i)),n)}function N9e(e){return li.createElement("svg",ma({width:"44",height:"44",viewBox:"0 0 768 768"},e),li.createElement("path",{d:"M607.5 205.5l-178.5 178.5 178.5 178.5-45 45-178.5-178.5-178.5 178.5-45-45 178.5-178.5-178.5-178.5 45-45 178.5 178.5 178.5-178.5z"}))}function j9e(e){return li.createElement("svg",ma({width:"44",height:"44",viewBox:"0 0 768 768"},e),li.createElement("path",{d:"M640.5 352.5v63h-390l178.5 180-45 45-256.5-256.5 256.5-256.5 45 45-178.5 180h390z"}))}function R9e(e){return li.createElement("svg",ma({width:"44",height:"44",viewBox:"0 0 768 768"},e),li.createElement("path",{d:"M384 127.5l256.5 256.5-256.5 256.5-45-45 178.5-180h-390v-63h390l-178.5-180z"}))}function I9e(){return p.useEffect(function(){var e=document.body.style,t=e.overflow;return e.overflow="hidden",function(){e.overflow=t}},[]),null}function EW(e){var t=e.touches[0],n=t.clientX,i=t.clientY;if(e.touches.length>=2){var r=e.touches[1],s=r.clientX,a=r.clientY;return[(n+s)/2,(i+a)/2,Math.sqrt(Math.pow(s-n,2)+Math.pow(a-i,2))]}return[n,i,0]}var Ep=function(e,t,n,i){var r,s=n*t,a=(s-i)/2,l=e;return s<=i?(r=1,l=0):e>0&&a-e<=0?(r=2,l=a):e<0&&a+e<=0&&(r=3,l=-a),[r,l]};function LD(e,t,n,i,r,s,a,l,c,u){a===void 0&&(a=innerWidth/2),l===void 0&&(l=innerHeight/2),c===void 0&&(c=0),u===void 0&&(u=0);var d=Ep(e,s,n,innerWidth)[0],f=Ep(t,s,i,innerHeight),h=innerWidth/2,m=innerHeight/2;return{x:a-s/r*(a-(h+e))-h+(i/n>=3&&n*s===innerWidth?0:d?c/2:c),y:l-s/r*(l-(m+t))-m+(f[0]?u/2:u),lastCX:a,lastCY:l}}function b4(e,t,n){var i=e%180!=0;return i?[n,t,i]:[t,n,i]}function $D(e,t,n){var i=b4(n,innerWidth,innerHeight),r=i[0],s=i[1],a=0,l=r,c=s,u=e/t*s,d=t/e*r;return e=s?l=u:e>=r&&tr/s?c=d:t/e>=3&&!i[2]?a=((c=d)-s)/2:l=u,{width:l,height:c,x:0,y:a,pause:!0}}function JC(e,t){var n=t.leading,i=n!==void 0&&n,r=t.maxWait,s=t.wait,a=s===void 0?r||0:s,l=p.useRef(e);l.current=e;var c=p.useRef(0),u=p.useRef(),d=function(){return u.current&&clearTimeout(u.current)},f=p.useCallback(function(){var h=[].slice.call(arguments),m=Date.now();function g(){c.current=m,d(),l.current.apply(null,h)}var b=c.current,v=m-b;if(b===0&&(i&&g(),c.current=m),r!==void 0){if(v>r)return void g()}else v=1&&s&&s())};d()}function d(){c=requestAnimationFrame(u)}}var D9e={T:0,L:0,W:0,H:0,FIT:void 0},Abe=function(){var e=p.useRef(!1);return p.useEffect(function(){return e.current=!0,function(){e.current=!1}},[]),e},M9e=["className"];function L9e(e){var t=e.className,n=t===void 0?"":t,i=eR(e,M9e);return li.createElement("div",ma({className:"PhotoView__Spinner "+n},i),li.createElement("svg",{viewBox:"0 0 32 32",width:"36",height:"36",fill:"white"},li.createElement("path",{opacity:".25",d:"M16 0 A16 16 0 0 0 16 32 A16 16 0 0 0 16 0 M16 4 A12 12 0 0 1 16 28 A12 12 0 0 1 16 4"}),li.createElement("path",{d:"M16 0 A16 16 0 0 1 32 16 L28 16 A12 12 0 0 0 16 4z"})))}var $9e=["src","loaded","broken","className","onPhotoLoad","loadingElement","brokenElement"];function F9e(e){var t=e.src,n=e.loaded,i=e.broken,r=e.className,s=e.onPhotoLoad,a=e.loadingElement,l=e.brokenElement,c=eR(e,$9e),u=Abe();return t&&!i?li.createElement(li.Fragment,null,li.createElement("img",ma({className:"PhotoView__Photo"+(r?" "+r:""),src:t,onLoad:function(d){var f=d.target;u.current&&s({loaded:!0,naturalWidth:f.naturalWidth,naturalHeight:f.naturalHeight})},onError:function(){u.current&&s({broken:!0})},draggable:!1,alt:""},c)),!n&&(a?li.createElement("span",{className:"PhotoView__icon"},a):li.createElement(L9e,{className:"PhotoView__icon"}))):l?li.createElement("span",{className:"PhotoView__icon"},typeof l=="function"?l({src:t}):l):null}var B9e={naturalWidth:void 0,naturalHeight:void 0,width:void 0,height:void 0,loaded:void 0,broken:!1,x:0,y:0,touched:!1,maskTouched:!1,rotate:0,scale:1,CX:0,CY:0,lastX:0,lastY:0,lastCX:0,lastCY:0,lastScale:1,touchTime:0,touchLength:0,pause:!0,stopRaf:!0,reach:void 0};function U9e(e){var t=e.item,n=t.src,i=t.render,r=t.width,s=r===void 0?0:r,a=t.height,l=a===void 0?0:a,c=t.originRef,u=e.visible,d=e.speed,f=e.easing,h=e.wrapClassName,m=e.className,g=e.style,b=e.loadingElement,v=e.brokenElement,y=e.onPhotoTap,x=e.onMaskTap,O=e.onReachMove,w=e.onReachUp,k=e.onPhotoResize,S=e.isActive,E=e.expose,C=$_(B9e),N=C[0],T=C[1],j=p.useRef(0),A=Abe(),L=N.naturalWidth,_=L===void 0?s:L,P=N.naturalHeight,I=P===void 0?l:P,$=N.width,M=$===void 0?s:$,B=N.height,R=B===void 0?l:B,V=N.loaded,K=V===void 0?!n:V,Q=N.broken,q=N.x,U=N.y,G=N.touched,ae=N.stopRaf,re=N.maskTouched,se=N.rotate,me=N.scale,Z=N.CX,X=N.CY,J=N.lastX,oe=N.lastY,Ee=N.lastCX,he=N.lastCY,Me=N.lastScale,De=N.touchTime,_e=N.touchLength,Re=N.pause,Xe=N.reach,Ce=ob({onScale:function(Le){return Fe(ZC(Le))},onRotate:function(Le){se!==Le&&(E({rotate:Le}),T(ma({rotate:Le},$D(_,I,Le))))}});function Fe(Le,xt,wt){me!==Le&&(E({scale:Le}),T(ma({scale:Le},LD(q,U,M,R,me,Le,xt,wt),Le<=1&&{x:0,y:0})))}var Oe=JC(function(Le,xt,wt){if(wt===void 0&&(wt=0),(G||re)&&S){var Et=b4(se,M,R),Qe=Et[0],ye=Et[1];if(wt===0&&j.current===0){var Ve=Math.abs(Le-Z)<=20,Ye=Math.abs(xt-X)<=20;if(Ve&&Ye)return void T({lastCX:Le,lastCY:xt});j.current=Ve?xt>X?3:2:1}var ht,ct=Le-Ee,Gt=xt-he;if(wt===0){var Rt=Ep(ct+J,me,Qe,innerWidth)[0],qt=Ep(Gt+oe,me,ye,innerHeight);ht=function(_n,He,at,we){return He&&_n===1||we==="x"?"x":at&&_n>1||we==="y"?"y":void 0}(j.current,Rt,qt[0],Xe),ht!==void 0&&O(ht,Le,xt,me)}if(ht==="x"||re)return void T({reach:"x"});var ue=ZC(me+(wt-_e)/100/2*me,_/M,.2);E({scale:ue}),T(ma({touchLength:wt,reach:ht,scale:ue},LD(q,U,M,R,me,ue,Le,xt,ct,Gt)))}},{maxWait:8});function $e(Le){return!ae&&!G&&(A.current&&T(ma({},Le,{pause:u})),A.current)}var Y,pe,Te,We,nt,$t,je,ve,ze=(nt=function(Le){return $e({x:Le})},$t=function(Le){return $e({y:Le})},je=function(Le){return A.current&&(E({scale:Le}),T({scale:Le})),!G&&A.current},ve=ob({X:function(Le){return nt(Le)},Y:function(Le){return $t(Le)},S:function(Le){return je(Le)}}),function(Le,xt,wt,Et,Qe,ye,Ve,Ye,ht,ct,Gt){var Rt=b4(ct,Qe,ye),qt=Rt[0],ue=Rt[1],_n=Ep(Le,Ye,qt,innerWidth),He=_n[0],at=_n[1],we=Ep(xt,Ye,ue,innerHeight),ke=we[0],Ge=we[1],yt=Date.now()-Gt;if(yt>=200||Ye!==Ve||Math.abs(ht-Ve)>1){var lt=LD(Le,xt,Qe,ye,Ve,Ye),ci=lt.x,Ke=lt.y,Dt=He?at:ci!==Le?ci:null,Mn=ke?Ge:Ke!==xt?Ke:null;return Dt!==null&&jg(Le,Dt,ve.X),Mn!==null&&jg(xt,Mn,ve.Y),void(Ye!==Ve&&jg(Ve,Ye,ve.S))}var Ot=(Le-wt)/yt,nn=(xt-Et)/yt,wn=Math.sqrt(Math.pow(Ot,2)+Math.pow(nn,2)),Nn=!1,di=!1;(function(Ei,fi){var On,Ki=Ei,Ci=0,er=0,os=function(ms){On||(On=ms);var ls=ms-On,Fa=Math.sign(Ei),As=-.001*Fa,_s=Math.sign(-Ki)*Math.pow(Ki,2)*2e-4,ra=Ki*ls+(As+_s)*Math.pow(ls,2)/2;Ci+=ra,On=ms,Fa*(Ki+=(As+_s)*ls)<=0?Or():fi(Ci)?fr():Or()};function fr(){er=requestAnimationFrame(os)}function Or(){cancelAnimationFrame(er)}fr()})(wn,function(Ei){var fi=Le+Ei*(Ot/wn),On=xt+Ei*(nn/wn),Ki=Ep(fi,Ve,qt,innerWidth),Ci=Ki[0],er=Ki[1],os=Ep(On,Ve,ue,innerHeight),fr=os[0],Or=os[1];if(Ci&&!Nn&&(Nn=!0,He?jg(fi,er,ve.X):CW(er,fi+(fi-er),ve.X)),fr&&!di&&(di=!0,ke?jg(On,Or,ve.Y):CW(Or,On+(On-Or),ve.Y)),Nn&&di)return!1;var ms=Nn||ve.X(er),ls=di||ve.Y(Or);return ms&&ls})}),et=(Y=y,pe=function(Le,xt){Xe||Fe(me!==1?1:Math.max(2,_/M),Le,xt)},Te=p.useRef(0),We=JC(function(){Te.current=0,Y.apply(void 0,[].slice.call(arguments))},{wait:300}),function(){var Le=[].slice.call(arguments);Te.current+=1,We.apply(void 0,Le),Te.current>=2&&(We.cancel(),Te.current=0,pe.apply(void 0,Le))});function Se(Le,xt){if(j.current=0,(G||re)&&S){T({touched:!1,maskTouched:!1,pause:!1,stopRaf:!1,reach:void 0});var wt=ZC(me,_/M);if(ze(q,U,J,oe,M,R,me,wt,Me,se,De),w(Le,xt),Z===Le&&X===xt){if(G)return void et(Le,xt);re&&x(Le,xt)}}}function Kt(Le,xt,wt){wt===void 0&&(wt=0),T({touched:!0,CX:Le,CY:xt,lastCX:Le,lastCY:xt,lastX:q,lastY:U,lastScale:me,touchLength:wt,touchTime:Date.now()})}function en(Le){T({maskTouched:!0,CX:Le.clientX,CY:Le.clientY,lastX:q,lastY:U})}ry(kf?void 0:"mousemove",function(Le){Le.preventDefault(),Oe(Le.clientX,Le.clientY)}),ry(kf?void 0:"mouseup",function(Le){Se(Le.clientX,Le.clientY)}),ry(kf?"touchmove":void 0,function(Le){Le.preventDefault();var xt=EW(Le);Oe.apply(void 0,xt)},{passive:!1}),ry(kf?"touchend":void 0,function(Le){var xt=Le.changedTouches[0];Se(xt.clientX,xt.clientY)},{passive:!1}),ry("resize",JC(function(){K&&!G&&(T($D(_,I,se)),k())},{maxWait:8})),g4(function(){S&&E(ma({scale:me,rotate:se},Ce))},[S]);var cn=function(Le,xt,wt,Et,Qe,ye,Ve,Ye,ht,ct){var Gt=function(ci,Ke,Dt,Mn,Ot){var nn=p.useRef(!1),wn=$_({lead:!0,scale:Dt}),Nn=wn[0],di=Nn.lead,Ei=Nn.scale,fi=wn[1],On=JC(function(Ki){try{return Ot(!0),fi({lead:!1,scale:Ki}),Promise.resolve()}catch(Ci){return Promise.reject(Ci)}},{wait:Mn});return g4(function(){nn.current?(Ot(!1),fi({lead:!0}),On(Dt)):nn.current=!0},[Dt]),di?[ci*Ei,Ke*Ei,Dt/Ei]:[ci*Dt,Ke*Dt,1]}(ye,Ve,Ye,ht,ct),Rt=Gt[0],qt=Gt[1],ue=Gt[2],_n=function(ci,Ke,Dt,Mn,Ot){var nn=p.useState(D9e),wn=nn[0],Nn=nn[1],di=p.useState(0),Ei=di[0],fi=di[1],On=p.useRef(),Ki=ob({OK:function(){return ci&&fi(4)}});function Ci(er){Ot(!1),fi(er)}return p.useEffect(function(){if(On.current||(On.current=Date.now()),Dt){if(function(er,os){var fr=er&&er.current;if(fr&&fr.nodeType===1){var Or=fr.getBoundingClientRect();os({T:Or.top,L:Or.left,W:Or.width,H:Or.height,FIT:fr.tagName==="IMG"?getComputedStyle(fr).objectFit:void 0})}}(Ke,Nn),ci)return Date.now()-On.current<250?(fi(1),requestAnimationFrame(function(){fi(2),requestAnimationFrame(function(){return Ci(3)})}),void setTimeout(Ki.OK,Mn)):void fi(4);Ci(5)}},[ci,Dt]),[Ei,wn]}(Le,xt,wt,ht,ct),He=_n[0],at=_n[1],we=at.W,ke=at.FIT,Ge=innerWidth/2,yt=innerHeight/2,lt=He<3||He>4;return[lt?we?at.L:Ge:Et+(Ge-ye*Ye/2),lt?we?at.T:yt:Qe+(yt-Ve*Ye/2),Rt,lt&&ke?Rt*(at.H/we):qt,He===0?ue:lt?we/(ye*Ye)||.01:ue,lt?ke?1:0:1,He,ke]}(u,c,K,q,U,M,R,me,d,function(Le){return T({pause:Le})}),kt=cn[4],Pt=cn[6],ut="transform "+d+"ms "+f,gt={className:m,onMouseDown:kf?void 0:function(Le){Le.stopPropagation(),Le.button===0&&Kt(Le.clientX,Le.clientY,0)},onTouchStart:kf?function(Le){Le.stopPropagation(),Kt.apply(void 0,EW(Le))}:void 0,onWheel:function(Le){if(!Xe){var xt=ZC(me-Le.deltaY/100/2,_/M);T({stopRaf:!0}),Fe(xt,Le.clientX,Le.clientY)}},style:{width:cn[2]+"px",height:cn[3]+"px",opacity:cn[5],objectFit:Pt===4?void 0:cn[7],transform:se?"rotate("+se+"deg)":void 0,transition:Pt>2?ut+", opacity "+d+"ms ease, height "+(Pt<4?d/2:Pt>4?d:0)+"ms "+f:void 0}};return li.createElement("div",{className:"PhotoView__PhotoWrap"+(h?" "+h:""),style:g,onMouseDown:!kf&&S?en:void 0,onTouchStart:kf&&S?function(Le){return en(Le.touches[0])}:void 0},li.createElement("div",{className:"PhotoView__PhotoBox",style:{transform:"matrix("+kt+", 0, 0, "+kt+", "+cn[0]+", "+cn[1]+")",transition:G||Re?void 0:ut,willChange:S?"transform":void 0}},n?li.createElement(F9e,ma({src:n,loaded:K,broken:Q},gt,{onPhotoLoad:function(Le){T(ma({},Le,Le.loaded&&$D(Le.naturalWidth||0,Le.naturalHeight||0,se)))},loadingElement:b,brokenElement:v})):i&&i({attrs:gt,scale:kt,rotate:se})))}var TW={x:0,touched:!1,pause:!1,lastCX:void 0,lastCY:void 0,bg:void 0,lastBg:void 0,overlay:!0,minimal:!0,scale:1,rotate:0};function Q9e(e){var t=e.loop,n=t===void 0?3:t,i=e.speed,r=e.easing,s=e.photoClosable,a=e.maskClosable,l=a===void 0||a,c=e.maskOpacity,u=c===void 0?1:c,d=e.pullClosable,f=d===void 0||d,h=e.bannerVisible,m=h===void 0||h,g=e.overlayRender,b=e.toolbarRender,v=e.className,y=e.maskClassName,x=e.photoClassName,O=e.photoWrapClassName,w=e.loadingElement,k=e.brokenElement,S=e.images,E=e.index,C=E===void 0?0:E,N=e.onIndexChange,T=e.visible,j=e.onClose,A=e.afterClose,L=e.portalContainer,_=$_(TW),P=_[0],I=_[1],$=p.useState(0),M=$[0],B=$[1],R=P.x,V=P.touched,K=P.pause,Q=P.lastCX,q=P.lastCY,U=P.bg,G=U===void 0?u:U,ae=P.lastBg,re=P.overlay,se=P.minimal,me=P.scale,Z=P.rotate,X=P.onScale,J=P.onRotate,oe=e.hasOwnProperty("index"),Ee=oe?C:M,he=oe?N:B,Me=p.useRef(Ee),De=S.length,_e=S[Ee],Re=typeof n=="boolean"?n:De>n,Xe=function(kt,Pt){var ut=p.useReducer(function(wt){return!wt},!1)[1],gt=p.useRef(0),Le=function(wt){var Et=p.useRef(wt);function Qe(ye){Et.current=ye}return p.useMemo(function(){(function(ye){kt?(ye(kt),gt.current=1):gt.current=2})(Qe)},[wt]),[Et.current,Qe]}(kt),xt=Le[1];return[Le[0],gt.current,function(){ut(),gt.current===2&&(xt(!1),Pt&&Pt()),gt.current=0}]}(T,A),Ce=Xe[0],Fe=Xe[1],Oe=Xe[2];g4(function(){if(Ce)return I({pause:!0,x:Ee*-(innerWidth+P0)}),void(Me.current=Ee);I(TW)},[Ce]);var $e=ob({close:function(kt){J&&J(0),I({overlay:!0,lastBg:G}),j(kt)},changeIndex:function(kt,Pt){Pt===void 0&&(Pt=!1);var ut=Re?Me.current+(kt-Ee):kt,gt=De-1,Le=m4(ut,0,gt),xt=Re?ut:Le,wt=innerWidth+P0;I({touched:!1,lastCX:void 0,lastCY:void 0,x:-wt*xt,pause:Pt}),Me.current=xt,he&&he(Re?kt<0?gt:kt>gt?0:kt:Le)}}),Y=$e.close,pe=$e.changeIndex;function Te(kt){return kt?Y():I({overlay:!re})}function We(){I({x:-(innerWidth+P0)*Ee,lastCX:void 0,lastCY:void 0,pause:!0}),Me.current=Ee}function nt(kt,Pt,ut,gt){kt==="x"?function(Le){if(Q!==void 0){var xt=Le-Q,wt=xt;!Re&&(Ee===0&&xt>0||Ee===De-1&&xt<0)&&(wt=xt/2),I({touched:!0,lastCX:Q,x:-(innerWidth+P0)*Me.current+wt,pause:!1})}else I({touched:!0,lastCX:Le,x:R,pause:!1})}(Pt):kt==="y"&&function(Le,xt){if(q!==void 0){var wt=u===null?null:m4(u,.01,u-Math.abs(Le-q)/100/4);I({touched:!0,lastCY:q,bg:xt===1?wt:u,minimal:xt===1})}else I({touched:!0,lastCY:Le,bg:G,minimal:!0})}(ut,gt)}function $t(kt,Pt){var ut=kt-(Q??kt),gt=Pt-(q??Pt),Le=!1;if(ut<-40)pe(Ee+1);else if(ut>40)pe(Ee-1);else{var xt=-(innerWidth+P0)*Me.current;Math.abs(gt)>100&&se&&f&&(Le=!0,Y()),I({touched:!1,x:xt,lastCX:void 0,lastCY:void 0,bg:u,overlay:!!Le||re})}}ry("keydown",function(kt){if(T)switch(kt.key){case"ArrowLeft":pe(Ee-1,!0);break;case"ArrowRight":pe(Ee+1,!0);break;case"Escape":Y()}});var je=function(kt,Pt,ut){return p.useMemo(function(){var gt=kt.length;return ut?kt.concat(kt).concat(kt).slice(gt+Pt-1,gt+Pt+2):kt.slice(Math.max(Pt-1,0),Math.min(Pt+2,gt+1))},[kt,Pt,ut])}(S,Ee,Re);if(!Ce)return null;var ve=re&&!Fe,ze=T?G:ae,et=X&&J&&{images:S,index:Ee,visible:T,onClose:Y,onIndexChange:pe,overlayVisible:ve,overlay:_e&&_e.overlay,scale:me,rotate:Z,onScale:X,onRotate:J},Se=i?i(Fe):400,Kt=r?r(Fe):kW,en=i?i(3):600,cn=r?r(3):kW;return li.createElement(_9e,{className:"PhotoView-Portal"+(ve?"":" PhotoView-Slider__clean")+(T?"":" PhotoView-Slider__willClose")+(v?" "+v:""),role:"dialog",onClick:function(kt){return kt.stopPropagation()},container:L},T&&li.createElement(I9e,null),li.createElement("div",{className:"PhotoView-Slider__Backdrop"+(y?" "+y:"")+(Fe===1?" PhotoView-Slider__fadeIn":Fe===2?" PhotoView-Slider__fadeOut":""),style:{background:ze?"rgba(0, 0, 0, "+ze+")":void 0,transitionTimingFunction:Kt,transitionDuration:(V?0:Se)+"ms",animationDuration:Se+"ms"},onAnimationEnd:Oe}),m&&li.createElement("div",{className:"PhotoView-Slider__BannerWrap"},li.createElement("div",{className:"PhotoView-Slider__Counter"},Ee+1," / ",De),li.createElement("div",{className:"PhotoView-Slider__BannerRight"},b&&et&&b(et),li.createElement(N9e,{className:"PhotoView-Slider__toolbarIcon",onClick:Y}))),je.map(function(kt,Pt){var ut=Re||Ee!==0?Me.current-1+Pt:Ee+Pt;return li.createElement(U9e,{key:Re?kt.key+"/"+kt.src+"/"+ut:kt.key,item:kt,speed:Se,easing:Kt,visible:T,onReachMove:nt,onReachUp:$t,onPhotoTap:function(){return Te(s)},onMaskTap:function(){return Te(l)},wrapClassName:O,className:x,style:{left:(innerWidth+P0)*ut+"px",transform:"translate3d("+R+"px, 0px, 0)",transition:V||K?void 0:"transform "+en+"ms "+cn},loadingElement:w,brokenElement:k,onPhotoResize:We,isActive:Me.current===ut,expose:I})}),!kf&&m&&li.createElement(li.Fragment,null,(Re||Ee!==0)&&li.createElement("div",{className:"PhotoView-Slider__ArrowLeft",onClick:function(){return pe(Ee-1,!0)}},li.createElement(j9e,null)),(Re||Ee+1-1){var y=u.slice();return y.splice(v,1,b),void l({images:y})}l(function(x){return{images:x.images.concat(b)}})},remove:function(b){l(function(v){var y=v.images.filter(function(x){return x.key!==b});return{images:y,index:Math.min(y.length-1,f)}})},show:function(b){var v=u.findIndex(function(y){return y.key===b});l({visible:!0,index:v}),i&&i(!0,v,a)}}),m=ob({close:function(){l({visible:!1}),i&&i(!1,f,a)},changeIndex:function(b){l({index:b}),n&&n(b,a)}}),g=p.useMemo(function(){return ma({},a,h)},[a,h]);return li.createElement(Tbe.Provider,{value:g},t,li.createElement(Q9e,ma({images:u,visible:d,index:f,onIndexChange:m.changeIndex,onClose:m.close},r)))}var _be=function(e){var t,n,i=e.src,r=e.render,s=e.overlay,a=e.width,l=e.height,c=e.triggers,u=c===void 0?["onClick"]:c,d=e.children,f=p.useContext(Tbe),h=(t=function(){return f.nextId()},(n=p.useRef({sign:!1,fn:void 0}).current).sign||(n.sign=!0,n.fn=t()),n.fn),m=p.useRef(null);p.useImperativeHandle(d==null?void 0:d.ref,function(){return m.current}),p.useEffect(function(){return function(){f.remove(h)}},[]);var g=ob({render:function(v){return r&&r(v)},show:function(v,y){f.show(h),function(x,O){if(d){var w=d.props[x];w&&w(O)}}(v,y)}}),b=p.useMemo(function(){var v={};return u.forEach(function(y){v[y]=g.show.bind(null,y)}),v},[]);return p.useEffect(function(){f.update({key:h,src:i,originRef:m,render:g.render,overlay:s,width:a,height:l})},[i]),d?p.Children.only(p.cloneElement(d,ma({},b,{ref:m}))):null};const q9e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M5.293 12.707a1 1 0 0 1 0-1.414l5-5a1 1 0 1 1 1.414 1.414L8.414 11H18a1 1 0 1 1 0 2H8.414l3.293 3.293a1 1 0 0 1-1.414 1.414l-5-5Z",clipRule:"evenodd"})}),W9e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M18.707 12.707a1 1 0 0 0 0-1.414l-5-5a1 1 0 1 0-1.414 1.414L15.586 11H6a1 1 0 1 0 0 2h9.586l-3.293 3.293a1 1 0 0 0 1.414 1.414l5-5Z",clipRule:"evenodd"})}),K9e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M4.47192 2.5C5.02421 2.5 5.47192 2.94772 5.47192 3.5V5.07196C7.17065 3.47759 9.45675 2.5 11.9719 2.5C17.2186 2.5 21.4719 6.75329 21.4719 12C21.4719 17.2467 17.2186 21.5 11.9719 21.5C7.10262 21.5 3.0902 17.8375 2.53692 13.1164C2.47264 12.5679 2.8652 12.0711 3.41373 12.0068C3.96226 11.9425 4.45904 12.3351 4.52333 12.8836C4.95991 16.6089 8.12901 19.5 11.9719 19.5C16.1141 19.5 19.4719 16.1421 19.4719 12C19.4719 7.85786 16.1141 4.5 11.9719 4.5C9.75153 4.5 7.75552 5.46469 6.38146 7H9.00003C9.55232 7 10 7.44772 10 8C10 8.55228 9.55232 9 9.00003 9H4.47192C3.93256 9 3.49293 8.57299 3.47265 8.03859C3.47175 8.01771 3.47151 7.99677 3.47192 7.9758V3.5C3.47192 2.94772 3.91964 2.5 4.47192 2.5Z",fill:"currentColor"})}),tR=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M2.55823 12C2.55823 6.75329 6.81152 2.5 12.0582 2.5C14.5734 2.5 16.8595 3.47759 18.5582 5.07197V3.5C18.5582 2.94772 19.0059 2.5 19.5582 2.5C20.1105 2.5 20.5582 2.94772 20.5582 3.5V7.97591C20.5586 7.99622 20.5584 8.01651 20.5576 8.03674C20.5382 8.572 20.0982 9 19.5582 9H15.0582C14.5059 9 14.0582 8.55228 14.0582 8C14.0582 7.44772 14.5059 7 15.0582 7H17.6487C16.2746 5.46469 14.2786 4.5 12.0582 4.5C7.91609 4.5 4.55823 7.85786 4.55823 12C4.55823 16.1421 7.91609 19.5 12.0582 19.5C15.9011 19.5 19.0702 16.6089 19.5068 12.8836C19.5711 12.3351 20.0679 11.9425 20.6164 12.0068C21.165 12.0711 21.5575 12.5679 21.4932 13.1164C20.94 17.8375 16.9275 21.5 12.0582 21.5C6.81152 21.5 2.55823 17.2467 2.55823 12Z",fill:"currentColor"})}),eT=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M16.243 6.757a1 1 0 0 1 1 1v7.072a1 1 0 0 1-2 0v-4.657L8.464 16.95a1 1 0 0 1-1.414-1.414l6.778-6.779H9.172a1 1 0 0 1 0-2h7.07Z",clipRule:"evenodd"})}),G9e=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M10.663 6.3872C10.8152 6.29068 11 6.40984 11 6.59007V8C11 8.55229 11.4477 9 12 9C12.5523 9 13 8.55229 13 8V6.59007C13 6.40984 13.1848 6.29068 13.337 6.3872C14.036 6.83047 14.5 7.61105 14.5 8.5C14.5 9.53284 13.8737 10.4194 12.9801 10.8006C12.9932 10.865 13 10.9317 13 11V13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13V11C11 10.9317 11.0068 10.865 11.0199 10.8006C10.1263 10.4194 9.5 9.53284 9.5 8.5C9.5 7.61105 9.96397 6.83047 10.663 6.3872Z",fill:"currentColor"}),o.jsx("path",{d:"M17.9754 4.01031C17.8588 4.00078 17.6965 4.00001 17.4 4.00001H9.8C8.94342 4.00001 8.36113 4.00078 7.91104 4.03756C7.47262 4.07338 7.24842 4.1383 7.09202 4.21799C6.7157 4.40974 6.40973 4.7157 6.21799 5.09202C6.1383 5.24842 6.07337 5.47263 6.03755 5.91104C6.00078 6.36113 6 6.94343 6 7.80001V16.1707C6.31278 16.0602 6.64937 16 7 16H18L18 4.60001C18 4.30348 17.9992 4.14122 17.9897 4.02464C17.9893 4.02 17.9889 4.0156 17.9886 4.01145C17.9844 4.01107 17.98 4.01069 17.9754 4.01031ZM17.657 18H7C6.44772 18 6 18.4477 6 19C6 19.5523 6.44772 20 7 20H17.657C17.5343 19.3301 17.5343 18.6699 17.657 18ZM4 19L4 7.75871C3.99999 6.95374 3.99998 6.28937 4.04419 5.74818C4.09012 5.18608 4.18868 4.66938 4.43597 4.18404C4.81947 3.43139 5.43139 2.81947 6.18404 2.43598C6.66937 2.18869 7.18608 2.09012 7.74818 2.0442C8.28937 1.99998 8.95373 1.99999 9.7587 2L17.4319 2C17.6843 1.99997 17.9301 1.99994 18.1382 2.01695C18.3668 2.03563 18.6366 2.07969 18.908 2.21799C19.2843 2.40974 19.5903 2.7157 19.782 3.09203C19.9203 3.36345 19.9644 3.63318 19.9831 3.86178C20.0001 4.06994 20 4.31574 20 4.56812L20 17C20 17.1325 19.9736 17.2638 19.9225 17.386C19.4458 18.5253 19.4458 19.4747 19.9225 20.614C20.0517 20.9227 20.0179 21.2755 19.8325 21.5541C19.6471 21.8326 19.3346 22 19 22H7C5.34315 22 4 20.6569 4 19Z",fill:"currentColor"})]}),Qv=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M18.063 5.674a1 1 0 0 1 .263 1.39l-7.5 11a1 1 0 0 1-1.533.143l-4.5-4.5a1 1 0 1 1 1.414-1.414l3.647 3.647 6.82-10.003a1 1 0 0 1 1.39-.263Z",clipRule:"evenodd"})}),Nbe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM16.0755 7.93219C16.5272 8.25003 16.6356 8.87383 16.3178 9.32549L11.5678 16.0755C11.3931 16.3237 11.1152 16.4792 10.8123 16.4981C10.5093 16.517 10.2142 16.3973 10.0101 16.1727L7.51006 13.4227C7.13855 13.014 7.16867 12.3816 7.57733 12.0101C7.98598 11.6386 8.61843 11.6687 8.98994 12.0773L10.6504 13.9039L14.6822 8.17451C15 7.72284 15.6238 7.61436 16.0755 7.93219Z",fill:"currentColor"})}),X9e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 16 9",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0.292893 0.292893C0.683418 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L8 6.58579L14.2929 0.292894C14.6834 -0.0976305 15.3166 -0.0976304 15.7071 0.292894C16.0976 0.683418 16.0976 1.31658 15.7071 1.70711L8.70711 8.70711C8.31658 9.09763 7.68342 9.09763 7.29289 8.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893Z"})}),Y9e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M15.707 4.293a1 1 0 0 1 0 1.414L9.414 12l6.293 6.293a1 1 0 0 1-1.414 1.414l-7-7a1 1 0 0 1 0-1.414l7-7a1 1 0 0 1 1.414 0Z",clipRule:"evenodd"})}),Z9e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M8.293 4.293a1 1 0 0 1 1.414 0l7 7a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414-1.414L14.586 12 8.293 5.707a1 1 0 0 1 0-1.414Z",clipRule:"evenodd"})}),$9=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12 6C12.5523 6 13 6.44772 13 7V12C13 12.2652 12.8946 12.5196 12.7071 12.7071L10.2071 15.2071C9.81658 15.5976 9.18342 15.5976 8.79289 15.2071C8.40237 14.8166 8.40237 14.1834 8.79289 13.7929L11 11.5858V7C11 6.44772 11.4477 6 12 6Z",fill:"currentColor"})}),J9e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12.659 9.753a1 1 0 0 1-1.318 0l-4-3.5A1 1 0 1 1 8.66 4.747L12 7.671l3.341-2.924a1 1 0 1 1 1.318 1.506l-4 3.5Zm-4.002 9.501a1 1 0 1 1-1.314-1.508l4-3.485a1 1 0 0 1 1.314 0l4 3.485a1 1 0 1 1-1.314 1.508L12 16.34l-3.343 2.913Z"})}),F9=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12.7587 2H16.2413C17.0463 1.99999 17.7106 1.99998 18.2518 2.04419C18.8139 2.09012 19.3306 2.18868 19.816 2.43597C20.5686 2.81947 21.1805 3.43139 21.564 4.18404C21.8113 4.66937 21.9099 5.18608 21.9558 5.74817C22 6.28936 22 6.95372 22 7.75868V11.2413C22 12.0463 22 12.7106 21.9558 13.2518C21.9099 13.8139 21.8113 14.3306 21.564 14.816C21.1805 15.5686 20.5686 16.1805 19.816 16.564C19.3306 16.8113 18.8139 16.9099 18.2518 16.9558C17.8906 16.9853 17.4745 16.9951 16.9984 16.9984C16.9951 17.4745 16.9853 17.8906 16.9558 18.2518C16.9099 18.8139 16.8113 19.3306 16.564 19.816C16.1805 20.5686 15.5686 21.1805 14.816 21.564C14.3306 21.8113 13.8139 21.9099 13.2518 21.9558C12.7106 22 12.0463 22 11.2413 22H7.75868C6.95372 22 6.28936 22 5.74818 21.9558C5.18608 21.9099 4.66937 21.8113 4.18404 21.564C3.43139 21.1805 2.81947 20.5686 2.43597 19.816C2.18868 19.3306 2.09012 18.8139 2.04419 18.2518C1.99998 17.7106 1.99999 17.0463 2 16.2413V12.7587C1.99999 11.9537 1.99998 11.2894 2.04419 10.7482C2.09012 10.1861 2.18868 9.66937 2.43597 9.18404C2.81947 8.43139 3.43139 7.81947 4.18404 7.43598C4.66937 7.18868 5.18608 7.09012 5.74817 7.04419C6.10939 7.01468 6.52548 7.00487 7.00162 7.00162C7.00487 6.52548 7.01468 6.10939 7.04419 5.74817C7.09012 5.18608 7.18868 4.66937 7.43598 4.18404C7.81947 3.43139 8.43139 2.81947 9.18404 2.43597C9.66937 2.18868 10.1861 2.09012 10.7482 2.04419C11.2894 1.99998 11.9537 1.99999 12.7587 2ZM9.00176 7L11.2413 7C12.0463 6.99999 12.7106 6.99998 13.2518 7.04419C13.8139 7.09012 14.3306 7.18868 14.816 7.43598C15.5686 7.81947 16.1805 8.43139 16.564 9.18404C16.8113 9.66937 16.9099 10.1861 16.9558 10.7482C17 11.2894 17 11.9537 17 12.7587V14.9982C17.4455 14.9951 17.7954 14.9864 18.089 14.9624C18.5274 14.9266 18.7516 14.8617 18.908 14.782C19.2843 14.5903 19.5903 14.2843 19.782 13.908C19.8617 13.7516 19.9266 13.5274 19.9624 13.089C19.9992 12.6389 20 12.0566 20 11.2V7.8C20 6.94342 19.9992 6.36113 19.9624 5.91104C19.9266 5.47262 19.8617 5.24842 19.782 5.09202C19.5903 4.7157 19.2843 4.40973 18.908 4.21799C18.7516 4.1383 18.5274 4.07337 18.089 4.03755C17.6389 4.00078 17.0566 4 16.2 4H12.8C11.9434 4 11.3611 4.00078 10.911 4.03755C10.4726 4.07337 10.2484 4.1383 10.092 4.21799C9.7157 4.40973 9.40973 4.7157 9.21799 5.09202C9.1383 5.24842 9.07337 5.47262 9.03755 5.91104C9.01357 6.20463 9.00489 6.55447 9.00176 7ZM5.91104 9.03755C5.47262 9.07337 5.24842 9.1383 5.09202 9.21799C4.7157 9.40973 4.40973 9.7157 4.21799 10.092C4.1383 10.2484 4.07337 10.4726 4.03755 10.911C4.00078 11.3611 4 11.9434 4 12.8V16.2C4 17.0566 4.00078 17.6389 4.03755 18.089C4.07337 18.5274 4.1383 18.7516 4.21799 18.908C4.40973 19.2843 4.7157 19.5903 5.09202 19.782C5.24842 19.8617 5.47262 19.9266 5.91104 19.9624C6.36113 19.9992 6.94342 20 7.8 20H11.2C12.0566 20 12.6389 19.9992 13.089 19.9624C13.5274 19.9266 13.7516 19.8617 13.908 19.782C14.2843 19.5903 14.5903 19.2843 14.782 18.908C14.8617 18.7516 14.9266 18.5274 14.9624 18.089C14.9992 17.6389 15 17.0566 15 16.2V12.8C15 11.9434 14.9992 11.3611 14.9624 10.911C14.9266 10.4726 14.8617 10.2484 14.782 10.092C14.5903 9.7157 14.2843 9.40973 13.908 9.21799C13.7516 9.1383 13.5274 9.07337 13.089 9.03755C12.6389 9.00078 12.0566 9 11.2 9H7.8C6.94342 9 6.36113 9.00078 5.91104 9.03755Z",fill:"currentColor"})}),e7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M10.556 4a1 1 0 0 0-.97.751l-.292 1.14h5.421l-.293-1.14A1 1 0 0 0 13.453 4h-2.897Zm6.224 1.892-.421-1.639A3 3 0 0 0 13.453 2h-2.897A3 3 0 0 0 7.65 4.253l-.421 1.639H4a1 1 0 1 0 0 2h.1l1.215 11.425A3 3 0 0 0 8.3 22h7.4a3 3 0 0 0 2.984-2.683l1.214-11.425H20a1 1 0 1 0 0-2h-3.22Zm1.108 2H6.112l1.192 11.214A1 1 0 0 0 8.3 20h7.4a1 1 0 0 0 .995-.894l1.192-11.214ZM10 10a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1Zm4 0a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1Z",clipRule:"evenodd"})}),t7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M3 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm7 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm7 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"})}),n7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 10 16",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.34151 0.747423C4.71854 0.417526 5.28149 0.417526 5.65852 0.747423L9.65852 4.24742C10.0742 4.61111 10.1163 5.24287 9.75259 5.6585C9.38891 6.07414 8.75715 6.11626 8.34151 5.75258L5.00001 2.82877L1.65852 5.75258C1.24288 6.11626 0.61112 6.07414 0.247438 5.6585C-0.116244 5.24287 -0.0741267 4.61111 0.34151 4.24742L4.34151 0.747423ZM0.246065 10.3578C0.608879 9.94139 1.24055 9.89795 1.65695 10.2608L5.00001 13.1737L8.34308 10.2608C8.75948 9.89795 9.39115 9.94139 9.75396 10.3578C10.1168 10.7742 10.0733 11.4058 9.65695 11.7687L5.65695 15.2539C5.28043 15.582 4.7196 15.582 4.34308 15.2539L0.343082 11.7687C-0.0733128 11.4058 -0.116749 10.7742 0.246065 10.3578Z"})}),i7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M16.793 2.793a3.121 3.121 0 1 1 4.414 4.414l-8.5 8.5A1 1 0 0 1 12 16H9a1 1 0 0 1-1-1v-3a1 1 0 0 1 .293-.707l8.5-8.5Zm3 1.414a1.121 1.121 0 0 0-1.586 0L10 12.414V14h1.586l8.207-8.207a1.121 1.121 0 0 0 0-1.586ZM6 5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h4a1 1 0 1 1 0 2H6Z",clipRule:"evenodd"})}),r7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M12 7a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V8h-3a1 1 0 0 1-1-1Zm-5 5a1 1 0 0 1 1 1v3h3a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1Z",clipRule:"evenodd"})}),s7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm4.465 6.763a1 1 0 0 0-1.228-1.228l-5.5 1.5a1 1 0 0 0-.702.702l-1.5 5.5a1 1 0 0 0 1.228 1.228l5.5-1.5a1 1 0 0 0 .702-.702l1.5-5.5Zm-6.54 5.312.89-3.26 3.26-.89-.89 3.26-3.26.89Z",clipRule:"evenodd"})}),a7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M14.4472 7.10558C14.9412 7.35257 15.1414 7.95324 14.8944 8.44722L10.8944 16.4472C10.6474 16.9412 10.0468 17.1414 9.55279 16.8944C9.05881 16.6474 8.85858 16.0468 9.10557 15.5528L13.1056 7.55279C13.3526 7.05881 13.9532 6.85859 14.4472 7.10558ZM6.6 7.20001C7.04183 7.53138 7.13137 8.15818 6.8 8.60001L4.25 12L6.8 15.4C7.13137 15.8418 7.04183 16.4686 6.6 16.8C6.15817 17.1314 5.53137 17.0418 5.2 16.6L2.2 12.6C1.93333 12.2444 1.93333 11.7556 2.2 11.4L5.2 7.40001C5.53137 6.95818 6.15817 6.86863 6.6 7.20001ZM17.4 7.20001C17.8418 6.86863 18.4686 6.95818 18.8 7.40001L21.8 11.4C22.0667 11.7556 22.0667 12.2444 21.8 12.6L18.8 16.6C18.4686 17.0418 17.8418 17.1314 17.4 16.8C16.9582 16.4686 16.8686 15.8418 17.2 15.4L19.75 12L17.2 8.60001C16.8686 8.15818 16.9582 7.53138 17.4 7.20001Z",fill:"currentColor"})}),jbe=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M13 12a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4Zm-1-2.5A1.25 1.25 0 1 0 12 7a1.25 1.25 0 0 0 0 2.5Z"}),o.jsx("path",{fillRule:"evenodd",d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z",clipRule:"evenodd"})]}),o7e=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M7.79289 9.04289C8.18342 8.65237 8.81658 8.65237 9.20711 9.04289L11.4571 11.2929C11.8476 11.6834 11.8476 12.3166 11.4571 12.7071L9.20711 14.9571C8.81658 15.3476 8.18342 15.3476 7.79289 14.9571C7.40237 14.5666 7.40237 13.9334 7.79289 13.5429L9.33579 12L7.79289 10.4571C7.40237 10.0666 7.40237 9.43342 7.79289 9.04289ZM12.25 14.25C12.25 13.6977 12.6977 13.25 13.25 13.25H15.5C16.0523 13.25 16.5 13.6977 16.5 14.25C16.5 14.8023 16.0523 15.25 15.5 15.25H13.25C12.6977 15.25 12.25 14.8023 12.25 14.25Z",fill:"currentColor"}),o.jsx("path",{d:"M2 8C2 5.79086 3.79086 4 6 4C6.55228 4 7 4.44772 7 5C7 5.55228 6.55228 6 6 6C4.89543 6 4 6.89543 4 8V16C4 17.1046 4.89543 18 6 18C6.55228 18 7 18.4477 7 19C7 19.5523 6.55228 20 6 20C3.79086 20 2 18.2091 2 16V8ZM17 5C17 4.44772 17.4477 4 18 4C20.2091 4 22 5.79086 22 8V16C22 18.2091 20.2091 20 18 20C17.4477 20 17 19.5523 17 19C17 18.4477 17.4477 18 18 18C19.1046 18 20 17.1046 20 16V8C20 6.89543 19.1046 6 18 6C17.4477 6 17 5.55228 17 5Z",fill:"currentColor"})]}),l7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M6 12C6 11.4477 6.44772 11 7 11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H7C6.44772 13 6 12.5523 6 12Z",fill:"currentColor"})}),c7e=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M12.75 9.50001C12.75 9.08579 13.0858 8.75001 13.5 8.75001H14.5C14.9142 8.75001 15.25 9.08579 15.25 9.50001V14.5C15.25 14.9142 14.9142 15.25 14.5 15.25H13.5C13.0858 15.25 12.75 14.9142 12.75 14.5V9.50001Z",fill:"currentColor"}),o.jsx("path",{d:"M9.50001 8.75001C9.08579 8.75001 8.75001 9.08579 8.75001 9.50001V14.5C8.75001 14.9142 9.08579 15.25 9.50001 15.25H10.5C10.9142 15.25 11.25 14.9142 11.25 14.5V9.50001C11.25 9.08579 10.9142 8.75001 10.5 8.75001H9.50001Z",fill:"currentColor"}),o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.97144 12C1.97144 6.46138 6.46138 1.97144 12 1.97144C17.5386 1.97144 22.0286 6.46138 22.0286 12C22.0286 17.5386 17.5386 22.0286 12 22.0286C6.46138 22.0286 1.97144 17.5386 1.97144 12ZM12 4.02858C7.59751 4.02858 4.02858 7.59751 4.02858 12C4.02858 16.4025 7.59751 19.9714 12 19.9714C16.4025 19.9714 19.9714 16.4025 19.9714 12C19.9714 7.59751 16.4025 4.02858 12 4.02858Z",fill:"currentColor"})]}),AW=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M9.5 9.33165V14.6683C9.5 15.4595 10.3752 15.9373 11.0408 15.5095L15.1915 12.8412C15.8038 12.4475 15.8038 11.5524 15.1915 11.1588L11.0408 8.49047C10.3752 8.06265 9.5 8.54049 9.5 9.33165Z",fill:"currentColor"}),o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12Z",fill:"currentColor"})]}),u7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M8 16.7229V7.27711C8 6.29075 9.08894 5.69298 9.9211 6.22254L17.3428 10.9454C18.1147 11.4366 18.1147 12.5634 17.3428 13.0546L9.92109 17.7775C9.08894 18.3071 8 17.7093 8 16.7229Z",fill:"currentColor"})}),Rbe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M12 5a1 1 0 0 1 1 1v5h5a1 1 0 1 1 0 2h-5v5a1 1 0 1 1-2 0v-5H6a1 1 0 1 1 0-2h5V6a1 1 0 0 1 1-1Z",clipRule:"evenodd"})}),Ibe=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12 3C12.5523 3 13 3.44772 13 4L13 11H20C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13L13 13L13 20C13 20.5523 12.5523 21 12 21C11.4477 21 11 20.5523 11 20L11 13L4 13C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11L11 11L11 4C11 3.44772 11.4477 3 12 3Z",fill:"currentColor"})}),d7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M12 6C12.5523 6 13 6.44772 13 7V11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H13V17C13 17.5523 12.5523 18 12 18C11.4477 18 11 17.5523 11 17V13H7C6.44772 13 6 12.5523 6 12C6 11.4477 6.44772 11 7 11H11V7C11 6.44772 11.4477 6 12 6Z",fill:"currentColor"})}),f7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.875 4.5C7.35418 4.5 4.5 7.35418 4.5 10.875C4.5 14.3958 7.35418 17.25 10.875 17.25C14.3958 17.25 17.25 14.3958 17.25 10.875C17.25 7.35418 14.3958 4.5 10.875 4.5ZM2.5 10.875C2.5 6.24962 6.24962 2.5 10.875 2.5C15.5004 2.5 19.25 6.24962 19.25 10.875C19.25 12.8273 18.582 14.6236 17.462 16.0478L21.2071 19.7929C21.5976 20.1834 21.5976 20.8166 21.2071 21.2071C20.8166 21.5976 20.1834 21.5976 19.7929 21.2071L16.0478 17.462C14.6236 18.582 12.8273 19.25 10.875 19.25C6.24962 19.25 2.5 15.5004 2.5 10.875Z",fill:"currentColor"})}),h7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M11.2929 3.29289C11.6834 2.90237 12.3166 2.90237 12.7071 3.29289L16.7071 7.29289C17.0976 7.68342 17.0976 8.31658 16.7071 8.70711C16.3166 9.09763 15.6834 9.09763 15.2929 8.70711L13 6.41421V15C13 15.5523 12.5523 16 12 16C11.4477 16 11 15.5523 11 15V6.41421L8.70711 8.70711C8.31658 9.09763 7.68342 9.09763 7.29289 8.70711C6.90237 8.31658 6.90237 7.68342 7.29289 7.29289L11.2929 3.29289ZM4 14C4.55229 14 5 14.4477 5 15V15.2C5 16.0566 5.00078 16.6389 5.03755 17.089C5.07337 17.5274 5.1383 17.7516 5.21799 17.908C5.40973 18.2843 5.7157 18.5903 6.09202 18.782C6.24842 18.8617 6.47262 18.9266 6.91104 18.9624C7.36113 18.9992 7.94342 19 8.8 19H15.2C16.0566 19 16.6389 18.9992 17.089 18.9624C17.5274 18.9266 17.7516 18.8617 17.908 18.782C18.2843 18.5903 18.5903 18.2843 18.782 17.908C18.8617 17.7516 18.9266 17.5274 18.9624 17.089C18.9992 16.6389 19 16.0566 19 15.2V15C19 14.4477 19.4477 14 20 14C20.5523 14 21 14.4477 21 15V15.2413C21 16.0463 21 16.7106 20.9558 17.2518C20.9099 17.8139 20.8113 18.3306 20.564 18.816C20.1805 19.5686 19.5686 20.1805 18.816 20.564C18.3306 20.8113 17.8139 20.9099 17.2518 20.9558C16.7106 21 16.0463 21 15.2413 21H8.75868C7.95372 21 7.28936 21 6.74817 20.9558C6.18608 20.9099 5.66937 20.8113 5.18404 20.564C4.43139 20.1805 3.81947 19.5686 3.43597 18.816C3.18868 18.3306 3.09012 17.8139 3.04419 17.2518C2.99998 16.7106 2.99999 16.0463 3 15.2413L3 15C3 14.4477 3.44772 14 4 14Z",fill:"currentColor"})}),p7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M6 8C6 6.89543 6.89543 6 8 6H16C17.1046 6 18 6.89543 18 8V16C18 17.1046 17.1046 18 16 18H8C6.89543 18 6 17.1046 6 16V8Z",fill:"currentColor"})}),m7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M14.5 4a5.5 5.5 0 0 0-5.078 7.616 1 1 0 0 1-.216 1.092l-4.749 4.75a1.475 1.475 0 0 0 2.086 2.085l4.749-4.749a1 1 0 0 1 1.092-.216A5.5 5.5 0 0 0 20 9.414l-1.293 1.293a3.828 3.828 0 1 1-5.414-5.414L14.585 4H14.5ZM7 9.5a7.5 7.5 0 0 1 9.969-7.084 1 1 0 0 1 .378 1.651l-2.64 2.64a1.829 1.829 0 0 0 2.586 2.586l2.64-2.64a1 1 0 0 1 1.651.378 7.5 7.5 0 0 1-9.328 9.627l-4.299 4.3a3.475 3.475 0 0 1-4.914-4.915l4.299-4.299A7.497 7.497 0 0 1 7 9.5Z"})}),e2=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{d:"M8.99805 16.796C8.99805 15.4164 7.87961 14.2979 6.5 14.2979C5.12039 14.2979 4.00195 15.4164 4.00195 16.796C4.00196 18.1756 5.1204 19.294 6.5 19.294C7.8796 19.294 8.99804 18.1756 8.99805 16.796ZM19.748 15.0479C19.748 14.7729 19.525 14.5499 19.25 14.5499H15.75C15.475 14.5499 15.252 14.7729 15.252 15.0479V18.5479C15.252 18.823 15.475 19.046 15.75 19.046H19.25C19.525 19.046 19.748 18.823 19.748 18.5479V15.0479ZM10.0469 3.45125C11.077 2.15921 13.0849 2.20276 14.0498 3.58113L16.4189 6.96492L16.5205 7.12215C17.5046 8.76341 16.3301 10.9023 14.3691 10.9024H9.63086C7.60676 10.9023 6.42029 8.62316 7.58105 6.96492L9.9502 3.58113L10.0469 3.45125ZM12.4082 4.73055C12.2223 4.46497 11.842 4.44826 11.6318 4.68074L11.5918 4.73055L9.22266 8.11433C8.99176 8.44435 9.22808 8.89744 9.63086 8.89754H14.3691C14.7468 8.89745 14.9774 8.49957 14.8145 8.17781L14.7773 8.11433L12.4082 4.73055ZM11.002 16.796C11.0019 19.2824 8.98638 21.2979 6.5 21.2979C4.01362 21.2979 1.99806 19.2824 1.99805 16.796C1.99805 14.3096 4.01361 12.294 6.5 12.294C8.98639 12.294 11.002 14.3096 11.002 16.796ZM21.752 18.5479C21.752 19.9297 20.6318 21.0499 19.25 21.0499H15.75C14.3682 21.0499 13.248 19.9297 13.248 18.5479V15.0479C13.2481 13.6662 14.3682 12.546 15.75 12.546H19.25C20.6318 12.546 21.7519 13.6662 21.752 15.0479V18.5479Z",fill:"currentColor"})}),g7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.5555 4C10.099 4 9.70052 4.30906 9.58693 4.75114L9.29382 5.8919H14.715L14.4219 4.75114C14.3083 4.30906 13.9098 4 13.4533 4H10.5555ZM16.7799 5.8919L16.3589 4.25342C16.0182 2.92719 14.8226 2 13.4533 2H10.5555C9.18616 2 7.99062 2.92719 7.64985 4.25342L7.22886 5.8919H4C3.44772 5.8919 3 6.33961 3 6.8919C3 7.44418 3.44772 7.8919 4 7.8919H4.10069L5.31544 19.3172C5.47763 20.8427 6.76455 22 8.29863 22H15.7014C17.2354 22 18.5224 20.8427 18.6846 19.3172L19.8993 7.8919H20C20.5523 7.8919 21 7.44418 21 6.8919C21 6.33961 20.5523 5.8919 20 5.8919H16.7799ZM17.888 7.8919H6.11196L7.30423 19.1057C7.3583 19.6142 7.78727 20 8.29863 20H15.7014C16.2127 20 16.6417 19.6142 16.6958 19.1057L17.888 7.8919ZM10 10C10.5523 10 11 10.4477 11 11V16C11 16.5523 10.5523 17 10 17C9.44772 17 9 16.5523 9 16V11C9 10.4477 9.44772 10 10 10ZM14 10C14.5523 10 15 10.4477 15 11V16C15 16.5523 14.5523 17 14 17C13.4477 17 13 16.5523 13 16V11C13 10.4477 13.4477 10 14 10Z"})}),b7e=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M7.5 5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM3 7.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0ZM17 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm-8.96 8.247C3.137 17.048 2.5 18.271 2.5 20a1 1 0 1 1-2 0c0-2.271.862-4.049 2.21-5.248C4.042 13.57 5.788 13 7.5 13s3.459.57 4.79 1.752c1.348 1.2 2.21 2.977 2.21 5.248a1 1 0 1 1-2 0c0-1.729-.638-2.952-1.54-3.753C10.042 15.43 8.788 15 7.5 15s-2.541.43-3.46 1.247Zm15.757-.607c-1.009-.638-2.338-.807-3.526-.472a1 1 0 0 1-.542-1.925c1.695-.478 3.616-.255 5.136.706 1.558.984 2.635 2.707 2.635 5.051a1 1 0 1 1-2 0c0-1.665-.732-2.746-1.703-3.36Z",clipRule:"evenodd"})}),Pbe=e=>o.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:[o.jsx("path",{d:"M10.42 2.006a4 4 0 0 1 3.159 0c.674.29 1.188.822 1.667 1.456.474.627 1 1.473 1.653 2.523l3.542 5.696c.72 1.16 1.3 2.09 1.682 2.854.384.766.654 1.517.59 2.292a4 4 0 0 1-1.604 2.886c-.625.463-1.405.63-2.258.709-.85.078-1.945.078-3.311.078H8.46c-1.366 0-2.46 0-3.31-.078-.854-.078-1.634-.246-2.26-.71a4 4 0 0 1-1.603-2.885c-.064-.775.206-1.526.59-2.292.383-.764.961-1.694 1.682-2.854l3.542-5.696c.653-1.05 1.18-1.896 1.653-2.523.48-.634.993-1.166 1.667-1.456Zm2.37 1.838a2 2 0 0 0-1.58 0c-.192.083-.448.28-.86.825-.413.544-.891 1.312-1.577 2.415l-3.488 5.61c-.755 1.214-1.283 2.066-1.62 2.737-.34.678-.402 1.02-.385 1.232a2 2 0 0 0 .802 1.443c.171.127.494.255 1.25.324.748.069 1.75.07 3.18.07h6.976c1.43 0 2.432-.001 3.18-.07.756-.069 1.079-.197 1.25-.324a2 2 0 0 0 .802-1.443c.017-.212-.045-.554-.385-1.232-.337-.671-.865-1.523-1.62-2.737l-3.488-5.61c-.686-1.103-1.164-1.87-1.576-2.415-.413-.546-.67-.742-.861-.825"}),o.jsx("path",{d:"M12 7.5a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0v-3a1 1 0 0 1 1-1M10.851 15a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0"})]}),B9=e=>o.jsx("svg",{width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",...e,children:o.jsx("path",{fillRule:"evenodd",d:"M5.636 5.636a1 1 0 0 1 1.414 0l4.95 4.95 4.95-4.95a1 1 0 0 1 1.414 1.414L13.414 12l4.95 4.95a1 1 0 0 1-1.414 1.414L12 13.414l-4.95 4.95a1 1 0 0 1-1.414-1.414l4.95-4.95-4.95-4.95a1 1 0 0 1 0-1.414Z",clipRule:"evenodd"})});/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const t7e=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),Obe=(...e)=>e.filter((t,n,i)=>!!t&&t.trim()!==""&&i.indexOf(t)===n).join(" ").trim();/** + */const y7e=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),Dbe=(...e)=>e.filter((t,n,i)=>!!t&&t.trim()!==""&&i.indexOf(t)===n).join(" ").trim();/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */var n7e={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/** + */var v7e={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const i7e=p.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:i,className:r="",children:s,iconNode:a,...l},c)=>p.createElement("svg",{ref:c,...n7e,width:t,height:t,stroke:e,strokeWidth:i?Number(n)*24/Number(t):n,className:Obe("lucide",r),...l},[...a.map(([u,d])=>p.createElement(u,d)),...Array.isArray(s)?s:[s]]));/** + */const x7e=p.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:i,className:r="",children:s,iconNode:a,...l},c)=>p.createElement("svg",{ref:c,...v7e,width:t,height:t,stroke:e,strokeWidth:i?Number(n)*24/Number(t):n,className:Dbe("lucide",r),...l},[...a.map(([u,d])=>p.createElement(u,d)),...Array.isArray(s)?s:[s]]));/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hn=(e,t)=>{const n=p.forwardRef(({className:i,...r},s)=>p.createElement(i7e,{ref:s,iconNode:t,className:Obe(`lucide-${t7e(e)}`,i),...r}));return n.displayName=`${e}`,n};/** + */const mn=(e,t)=>{const n=p.forwardRef(({className:i,...r},s)=>p.createElement(x7e,{ref:s,iconNode:t,className:Dbe(`lucide-${y7e(e)}`,i),...r}));return n.displayName=`${e}`,n};/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sbe=hn("ArrowLeft",[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]]);/** + */const Mbe=mn("ArrowLeft",[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const r7e=hn("ArrowRightLeft",[["path",{d:"m16 3 4 4-4 4",key:"1x1c3m"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"m8 21-4-4 4-4",key:"h9nckh"}],["path",{d:"M4 17h16",key:"g4d7ey"}]]);/** + */const w7e=mn("ArrowRightLeft",[["path",{d:"m16 3 4 4-4 4",key:"1x1c3m"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"m8 21-4-4 4-4",key:"h9nckh"}],["path",{d:"M4 17h16",key:"g4d7ey"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bO=hn("ArrowRight",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]]);/** + */const wO=mn("ArrowRight",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const s7e=hn("ArrowUp",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);/** + */const O7e=mn("ArrowUp",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kbe=hn("AtSign",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8",key:"7n84p3"}]]);/** + */const Lbe=mn("AtSign",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8",key:"7n84p3"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ebe=hn("Bot",[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]]);/** + */const $be=mn("Bot",[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const a7e=hn("Box",[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",key:"hh9hay"}],["path",{d:"m3.3 7 8.7 5 8.7-5",key:"g66t2b"}],["path",{d:"M12 22V12",key:"d0xqtd"}]]);/** + */const S7e=mn("Box",[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",key:"hh9hay"}],["path",{d:"m3.3 7 8.7 5 8.7-5",key:"g66t2b"}],["path",{d:"M12 22V12",key:"d0xqtd"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const o7e=hn("Boxes",[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",key:"lc1i9w"}],["path",{d:"m7 16.5-4.74-2.85",key:"1o9zyk"}],["path",{d:"m7 16.5 5-3",key:"va8pkn"}],["path",{d:"M7 16.5v5.17",key:"jnp8gn"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",key:"8zsnat"}],["path",{d:"m17 16.5-5-3",key:"8arw3v"}],["path",{d:"m17 16.5 4.74-2.85",key:"8rfmw"}],["path",{d:"M17 16.5v5.17",key:"k6z78m"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",key:"1xygjf"}],["path",{d:"M12 8 7.26 5.15",key:"1vbdud"}],["path",{d:"m12 8 4.74-2.85",key:"3rx089"}],["path",{d:"M12 13.5V8",key:"1io7kd"}]]);/** + */const k7e=mn("Boxes",[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",key:"lc1i9w"}],["path",{d:"m7 16.5-4.74-2.85",key:"1o9zyk"}],["path",{d:"m7 16.5 5-3",key:"va8pkn"}],["path",{d:"M7 16.5v5.17",key:"jnp8gn"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",key:"8zsnat"}],["path",{d:"m17 16.5-5-3",key:"8arw3v"}],["path",{d:"m17 16.5 4.74-2.85",key:"8rfmw"}],["path",{d:"M17 16.5v5.17",key:"k6z78m"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",key:"1xygjf"}],["path",{d:"M12 8 7.26 5.15",key:"1vbdud"}],["path",{d:"m12 8 4.74-2.85",key:"3rx089"}],["path",{d:"M12 13.5V8",key:"1io7kd"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vu=hn("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);/** + */const Hu=mn("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const l7e=hn("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);/** + */const E7e=mn("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const c7e=hn("ChevronLeft",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);/** + */const C7e=mn("ChevronLeft",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Uk=hn("ChevronRight",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]);/** + */const Hk=mn("ChevronRight",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const X2=hn("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);/** + */const t2=mn("CircleAlert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const u7e=hn("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);/** + */const T7e=mn("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const h4=hn("CircleX",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);/** + */const y4=mn("CircleX",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const d7e=hn("Circle",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);/** + */const A7e=mn("Circle",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const f7e=hn("Cloud",[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]]);/** + */const _7e=mn("Cloud",[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xj=hn("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);/** + */const nR=mn("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const h7e=hn("CornerDownRight",[["polyline",{points:"15 10 20 15 15 20",key:"1q7qjw"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12",key:"z08zvw"}]]);/** + */const N7e=mn("CornerDownRight",[["polyline",{points:"15 10 20 15 15 20",key:"1q7qjw"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12",key:"z08zvw"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const p7e=hn("Cpu",[["rect",{width:"16",height:"16",x:"4",y:"4",rx:"2",key:"14l7u7"}],["rect",{width:"6",height:"6",x:"9",y:"9",rx:"1",key:"5aljv4"}],["path",{d:"M15 2v2",key:"13l42r"}],["path",{d:"M15 20v2",key:"15mkzm"}],["path",{d:"M2 15h2",key:"1gxd5l"}],["path",{d:"M2 9h2",key:"1bbxkp"}],["path",{d:"M20 15h2",key:"19e6y8"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M9 2v2",key:"165o2o"}],["path",{d:"M9 20v2",key:"i2bqo8"}]]);/** + */const j7e=mn("Cpu",[["rect",{width:"16",height:"16",x:"4",y:"4",rx:"2",key:"14l7u7"}],["rect",{width:"6",height:"6",x:"9",y:"9",rx:"1",key:"5aljv4"}],["path",{d:"M15 2v2",key:"13l42r"}],["path",{d:"M15 20v2",key:"15mkzm"}],["path",{d:"M2 15h2",key:"1gxd5l"}],["path",{d:"M2 9h2",key:"1bbxkp"}],["path",{d:"M20 15h2",key:"19e6y8"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M9 2v2",key:"165o2o"}],["path",{d:"M9 20v2",key:"i2bqo8"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Y2=hn("Database",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]]);/** + */const n2=mn("Database",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yj=hn("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);/** + */const iR=mn("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xW=hn("Ellipsis",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]]);/** + */const _W=mn("Ellipsis",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gb=hn("ExternalLink",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]]);/** + */const wb=mn("ExternalLink",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const m7e=hn("Eye",[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);/** + */const R7e=mn("Eye",[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const g7e=hn("FileDown",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M12 18v-6",key:"17g6i2"}],["path",{d:"m9 15 3 3 3-3",key:"1npd3o"}]]);/** + */const I7e=mn("FileDown",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M12 18v-6",key:"17g6i2"}],["path",{d:"m9 15 3 3 3-3",key:"1npd3o"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const b7e=hn("FilePlus",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 15h6",key:"cctwl0"}],["path",{d:"M12 18v-6",key:"17g6i2"}]]);/** + */const P7e=mn("FilePlus",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 15h6",key:"cctwl0"}],["path",{d:"M12 18v-6",key:"17g6i2"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MF=hn("FileText",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);/** + */const U9=mn("FileText",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const y7e=hn("FileType2",[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 13v-1h6v1",key:"1dh9dg"}],["path",{d:"M5 12v6",key:"150t9c"}],["path",{d:"M4 18h2",key:"1xrofg"}]]);/** + */const D7e=mn("FileType2",[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 13v-1h6v1",key:"1dh9dg"}],["path",{d:"M5 12v6",key:"150t9c"}],["path",{d:"M4 18h2",key:"1xrofg"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Cbe=hn("FileVideo2",[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["rect",{width:"8",height:"6",x:"2",y:"12",rx:"1",key:"1a6c1e"}],["path",{d:"m10 15.5 4 2.5v-6l-4 2.5",key:"t7cp39"}]]);/** + */const Fbe=mn("FileVideo2",[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["rect",{width:"8",height:"6",x:"2",y:"12",rx:"1",key:"1a6c1e"}],["path",{d:"m10 15.5 4 2.5v-6l-4 2.5",key:"t7cp39"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const v7e=hn("File",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}]]);/** + */const M7e=mn("File",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const x7e=hn("FlaskConical",[["path",{d:"M10 2v7.527a2 2 0 0 1-.211.896L4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-5.069-10.127A2 2 0 0 1 14 9.527V2",key:"pzvekw"}],["path",{d:"M8.5 2h7",key:"csnxdl"}],["path",{d:"M7 16h10",key:"wp8him"}]]);/** + */const L7e=mn("FlaskConical",[["path",{d:"M10 2v7.527a2 2 0 0 1-.211.896L4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-5.069-10.127A2 2 0 0 1 14 9.527V2",key:"pzvekw"}],["path",{d:"M8.5 2h7",key:"csnxdl"}],["path",{d:"M7 16h10",key:"wp8him"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LF=hn("FolderUp",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m9 13 3-3 3 3",key:"1pxg3c"}]]);/** + */const Q9=mn("FolderUp",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m9 13 3-3 3 3",key:"1pxg3c"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const w7e=hn("Folder",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);/** + */const $7e=mn("Folder",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const O7e=hn("GitBranch",[["line",{x1:"6",x2:"6",y1:"3",y2:"15",key:"17qcm7"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M18 9a9 9 0 0 1-9 9",key:"n2h4wq"}]]);/** + */const F7e=mn("GitBranch",[["line",{x1:"6",x2:"6",y1:"3",y2:"15",key:"17qcm7"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M18 9a9 9 0 0 1-9 9",key:"n2h4wq"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const S7e=hn("Github",[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4",key:"tonef"}],["path",{d:"M9 18c-4.51 2-5-2-7-2",key:"9comsn"}]]);/** + */const B7e=mn("Github",[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4",key:"tonef"}],["path",{d:"M9 18c-4.51 2-5-2-7-2",key:"9comsn"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zj=hn("Globe",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);/** + */const rR=mn("Globe",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $F=hn("Image",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]]);/** + */const z9=mn("Image",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wd=hn("Info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);/** + */const Gd=mn("Info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tbe=hn("Layers",[["path",{d:"m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z",key:"8b97xw"}],["path",{d:"m22 17.65-9.17 4.16a2 2 0 0 1-1.66 0L2 17.65",key:"dd6zsq"}],["path",{d:"m22 12.65-9.17 4.16a2 2 0 0 1-1.66 0L2 12.65",key:"ep9fru"}]]);/** + */const Bbe=mn("Layers",[["path",{d:"m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z",key:"8b97xw"}],["path",{d:"m22 17.65-9.17 4.16a2 2 0 0 1-1.66 0L2 17.65",key:"dd6zsq"}],["path",{d:"m22 12.65-9.17 4.16a2 2 0 0 1-1.66 0L2 12.65",key:"ep9fru"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const k7e=hn("ListOrdered",[["path",{d:"M10 12h11",key:"6m4ad9"}],["path",{d:"M10 18h11",key:"11hvi2"}],["path",{d:"M10 6h11",key:"c7qv1k"}],["path",{d:"M4 10h2",key:"16xx2s"}],["path",{d:"M4 6h1v4",key:"cnovpq"}],["path",{d:"M6 18H4c0-1 2-2 2-3s-1-1.5-2-1",key:"m9a95d"}]]);/** + */const U7e=mn("ListOrdered",[["path",{d:"M10 12h11",key:"6m4ad9"}],["path",{d:"M10 18h11",key:"11hvi2"}],["path",{d:"M10 6h11",key:"c7qv1k"}],["path",{d:"M4 10h2",key:"16xx2s"}],["path",{d:"M4 6h1v4",key:"cnovpq"}],["path",{d:"M6 18H4c0-1 2-2 2-3s-1-1.5-2-1",key:"m9a95d"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fi=hn("LoaderCircle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);/** + */const gi=mn("LoaderCircle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const E7e=hn("LogIn",[["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4",key:"u53s6r"}],["polyline",{points:"10 17 15 12 10 7",key:"1ail0h"}],["line",{x1:"15",x2:"3",y1:"12",y2:"12",key:"v6grx8"}]]);/** + */const Q7e=mn("LogIn",[["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4",key:"u53s6r"}],["polyline",{points:"10 17 15 12 10 7",key:"1ail0h"}],["line",{x1:"15",x2:"3",y1:"12",y2:"12",key:"v6grx8"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const C7e=hn("LogOut",[["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}],["polyline",{points:"16 17 21 12 16 7",key:"1gabdz"}],["line",{x1:"21",x2:"9",y1:"12",y2:"12",key:"1uyos4"}]]);/** + */const z7e=mn("LogOut",[["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}],["polyline",{points:"16 17 21 12 16 7",key:"1gabdz"}],["line",{x1:"21",x2:"9",y1:"12",y2:"12",key:"1uyos4"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ky=hn("Maximize2",[["polyline",{points:"15 3 21 3 21 9",key:"mznyad"}],["polyline",{points:"9 21 3 21 3 15",key:"1avn1i"}],["line",{x1:"21",x2:"14",y1:"3",y2:"10",key:"ota7mn"}],["line",{x1:"3",x2:"10",y1:"21",y2:"14",key:"1atl0r"}]]);/** + */const ev=mn("Maximize2",[["polyline",{points:"15 3 21 3 21 9",key:"mznyad"}],["polyline",{points:"9 21 3 21 3 15",key:"1avn1i"}],["line",{x1:"21",x2:"14",y1:"3",y2:"10",key:"ota7mn"}],["line",{x1:"3",x2:"10",y1:"21",y2:"14",key:"1atl0r"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const T7e=hn("MessageCircle",[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}]]);/** + */const V7e=mn("MessageCircle",[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Abe=hn("MessageSquare",[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]]);/** + */const Ube=mn("MessageSquare",[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const A7e=hn("MonitorPlay",[["path",{d:"M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z",key:"1pctta"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]]);/** + */const H7e=mn("MonitorPlay",[["path",{d:"M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z",key:"1pctta"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _7e=hn("Pencil",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);/** + */const q7e=mn("Pencil",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const N7e=hn("Play",[["polygon",{points:"6 3 20 12 6 21 6 3",key:"1oa8hb"}]]);/** + */const W7e=mn("Play",[["polygon",{points:"6 3 20 12 6 21 6 3",key:"1oa8hb"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fo=hn("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);/** + */const zo=mn("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const j7e=hn("RefreshCw",[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]]);/** + */const K7e=mn("RefreshCw",[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _be=hn("Repeat",[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}]]);/** + */const Qbe=mn("Repeat",[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const R7e=hn("Rocket",[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",key:"m3kijz"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",key:"1fmvmk"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0",key:"1f8sc4"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}]]);/** + */const G7e=mn("Rocket",[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",key:"m3kijz"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",key:"1fmvmk"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0",key:"1f8sc4"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const P_=hn("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);/** + */const F_=mn("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const I7e=hn("Shapes",[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",key:"1bo67w"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5",key:"w3z12y"}]]);/** + */const X7e=mn("Shapes",[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",key:"1bo67w"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5",key:"w3z12y"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wW=hn("ShieldCheck",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);/** + */const NW=mn("ShieldCheck",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mS=hn("Sparkles",[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]]);/** + */const vS=mn("Sparkles",[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const P7e=hn("Split",[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M8 3H3v5",key:"15dfkv"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3",key:"1qrqzj"}],["path",{d:"m15 9 6-6",key:"ko1vev"}]]);/** + */const Y7e=mn("Split",[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M8 3H3v5",key:"15dfkv"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3",key:"1qrqzj"}],["path",{d:"m15 9 6-6",key:"ko1vev"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pm=hn("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);/** + */const ym=mn("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const D7e=hn("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);/** + */const Z7e=mn("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const M7e=hn("Wrench",[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z",key:"cbrjhi"}]]);/** + */const J7e=mn("Wrench",[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z",key:"cbrjhi"}]]);/** * @license lucide-react v0.460.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ba=hn("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]),OW="veadk_auth_qs",L7e=new Set(["view","source","sessionId","artifactSha256","validationReportSha256","projectId","versionId"]);let M1=null;function $7e(){if(M1!==null)return M1;const e=new URLSearchParams(window.location.search),t=new URLSearchParams,n=new URLSearchParams,i=e.get("view")==="runtime-deploy"&&e.get("source")==="intelligent-development";e.forEach((s,a)=>{(i&&L7e.has(a)?n:t).append(a,s)});const r=t.toString();if(r?(sessionStorage.setItem(OW,r),M1=r):M1=sessionStorage.getItem(OW)??"",r){const s=n.toString();window.history.replaceState(null,"",window.location.pathname+(s?`?${s}`:"")+window.location.hash)}return M1}function Uo(e){const t=$7e();if(!t)return e;const n=new URL(e,window.location.origin);return new URLSearchParams(t).forEach((i,r)=>{n.searchParams.has(r)||n.searchParams.set(r,i)}),/^https?:\/\//i.test(e)?n.toString():n.pathname+n.search+n.hash}function V(e,t={}){return an.t(e,{...t,ns:"adk"})}function Hu(e){const t=new Headers(e);return t.has("Accept-Language")||t.set("Accept-Language",an.resolvedLanguage||an.language),t}function F7e(){return an.resolvedLanguage||an.language}const Wo=3e4,is=12e4,FF=1e4;function Ol(e,t=Wo){if(t<=0)return e??void 0;const n=AbortSignal.timeout(t);return e?AbortSignal.any([e,n]):n}const D_="veadk_local_user",M_="veadk_local_user_tab",B7e="X-VeADK-OAuth-Refresh-Retry",U7e=[50,250],Q7e=/^[A-Za-z0-9]{1,16}$/;function Nbe(){try{const e=sessionStorage.getItem(M_);if(e)return e;const t=localStorage.getItem(D_);return t&&sessionStorage.setItem(M_,t),t}catch{try{return localStorage.getItem(D_)}catch{return null}}}function SW(e){try{sessionStorage.setItem(M_,e)}catch{}try{localStorage.setItem(D_,e)}catch{}}function z7e(){try{sessionStorage.removeItem(M_)}catch{}try{localStorage.removeItem(D_)}catch{}}function Dh(e){const t=new Headers(e),n=Nbe();return n&&t.set("X-VeADK-Local-User",n),t}async function jbe(){let e;try{e=await fetch("/web/auth-config",{headers:Hu({Accept:"application/json"}),signal:Ol(void 0,FF)})}catch(t){throw console.warn("[identity] /web/auth-config is unreachable:",t),new Error(V("identity.loadConfigNetworkFailed"))}if(!e.ok)throw new Error(V("identity.configServiceFailed",{status:e.status}));try{const t=await e.json();if(!Array.isArray(t.providers))throw new TypeError("providers is not an array");return t.providers}catch(t){throw console.warn("[identity] /web/auth-config returned an invalid response:",t),new Error(V("identity.invalidConfigResponse"))}}function V7e(e){const t=window.location.pathname+window.location.search+window.location.hash,n=e.includes("?")?"&":"?";window.location.assign(`${e}${n}redirect=${encodeURIComponent(t)}`)}function H7e(){const e=window.location.pathname+window.location.search+window.location.hash,t=window.open("about:blank","_blank","popup,width=520,height=720");if(!t)return null;try{t.opener=null,t.location.replace(`/oauth2/login?redirect=${encodeURIComponent(e)}`)}catch{return t.close(),null}return t}async function q7e(){const[e,t]=await Promise.all([p4(),jbe()]);return e.status==="unauthenticated"&&t.length>0}function W7e(){window.location.assign("/oauth2/logout")}async function G7e(){for(let e=0;;e+=1){let t;try{t=await fetch("/oauth2/userinfo",{headers:Hu({Accept:"application/json"}),signal:Ol(void 0,FF)})}catch(i){throw console.warn("[identity] /oauth2/userinfo is unreachable:",i),new Error(V("identity.serviceNetworkFailed"))}const n=U7e[e];if(t.status!==401||t.headers.get(B7e)!=="1"||n===void 0)return t;await new Promise(i=>window.setTimeout(i,n))}}async function p4(){const e=await G7e();if(e.ok){let n;try{n=await e.json()}catch(r){throw console.warn("[identity] /oauth2/userinfo returned a non-JSON response:",r),new Error(V("identity.invalidServiceResponse"))}return{status:"authenticated",userId:String(n.sub??n.user_id??n.email??""),info:n}}if(e.status===401)return{status:"unauthenticated",userId:"",local:!1};if(e.status!==404)throw new Error(V("identity.serviceFailed",{status:e.status}));const t=Nbe();return t?{status:"authenticated",userId:t,info:{name:t},local:!0}:{status:"unauthenticated",userId:"",local:!0}}function K7e(e){if(!e)return"";for(const t of[e.name,e.preferred_username,e.username,e.email])if(typeof t=="string"&&t.trim())return t.trim();return""}function X7e(e){const t=e==null?void 0:e.picture;return typeof t=="string"?t.trim():""}const m4="veadk:authentication-required";let yO=null,Nw=null;function Y7e(e){if(!e.redirected||!e.url)return!1;try{const t=new URL(e.url);return t.pathname.includes("/authorize")||t.pathname.includes("/oauth2/login")||t.hostname.includes(".userpool.auth.")}catch{return!1}}function Z7e(e){yO||(yO=new Promise(n=>{Nw=n}),window.dispatchEvent(new Event(m4)));const t=yO;return e?e.aborted?Promise.reject(e.reason??new Error("Request aborted")):new Promise((n,i)=>{const r=()=>i(e.reason??new Error("Request aborted"));e.addEventListener("abort",r,{once:!0}),t.then(()=>{e.removeEventListener("abort",r),n()},s=>{e.removeEventListener("abort",r),i(s)})}):t}function J7e(){return yO!==null}function eBe(){Nw==null||Nw(),Nw=null,yO=null}async function Jj(e,t){var i;const n=await e.text().catch(()=>"");try{return JSON.parse(n)}catch{const r=((i=e.headers.get("content-type"))==null?void 0:i.split(";",1)[0])||V("common.contentTypeMissing"),s=n.trim().slice(0,2e3),a=s?` -${V("common.response",{response:s})}`:"";throw new Error(V("jsonResponse.nonJson",{fallback:t,status:e.status,contentType:r,detail:a}))}}const tBe=/\brun_sse\s*failed\s*:\s*404\b/i,nBe=/session not found/i,iBe=/(?:^|[::\s])not found\s*$/i,rBe=/Expecting (?:'[^']+'|\w+)(?: delimiter)?: line \d+ column \d+ \(char \d+\)/i,sBe=/Unknown or expired collection_id\s+'[^']+'\.\s*Call collect_resources first\./i,aBe=/(?:RateLimitError|\bTPM\b|\bRPM\b|tokens? per minute|requests? per minute)[\s\S]*(?:\b429\b|limit|quota)|\b429\b[\s\S]*(?:model|RateLimitError|\bTPM\b|\bRPM\b)/i;function N0(e,t){return e.includes(t)?e:`${e} + */const $a=mn("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]),jW="veadk_auth_qs",eBe=new Set(["view","source","sessionId","artifactSha256","validationReportSha256","projectId","versionId"]);let B1=null;function tBe(){if(B1!==null)return B1;const e=new URLSearchParams(window.location.search),t=new URLSearchParams,n=new URLSearchParams,i=e.get("view")==="runtime-deploy"&&e.get("source")==="intelligent-development";e.forEach((s,a)=>{(i&&eBe.has(a)?n:t).append(a,s)});const r=t.toString();if(r?(sessionStorage.setItem(jW,r),B1=r):B1=sessionStorage.getItem(jW)??"",r){const s=n.toString();window.history.replaceState(null,"",window.location.pathname+(s?`?${s}`:"")+window.location.hash)}return B1}function Ho(e){const t=tBe();if(!t)return e;const n=new URL(e,window.location.origin);return new URLSearchParams(t).forEach((i,r)=>{n.searchParams.has(r)||n.searchParams.set(r,i)}),/^https?:\/\//i.test(e)?n.toString():n.pathname+n.search+n.hash}function H(e,t={}){return on.t(e,{...t,ns:"adk"})}function qu(e){const t=new Headers(e);return t.has("Accept-Language")||t.set("Accept-Language",on.resolvedLanguage||on.language),t}function nBe(){return on.resolvedLanguage||on.language}const Yo=3e4,rs=12e4,V9=1e4;function Sl(e,t=Yo){if(t<=0)return e??void 0;const n=AbortSignal.timeout(t);return e?AbortSignal.any([e,n]):n}const B_="veadk_local_user",U_="veadk_local_user_tab",iBe="X-VeADK-OAuth-Refresh-Retry",rBe=[50,250],sBe=/^[A-Za-z0-9]{1,16}$/;function zbe(){try{const e=sessionStorage.getItem(U_);if(e)return e;const t=localStorage.getItem(B_);return t&&sessionStorage.setItem(U_,t),t}catch{try{return localStorage.getItem(B_)}catch{return null}}}function RW(e){try{sessionStorage.setItem(U_,e)}catch{}try{localStorage.setItem(B_,e)}catch{}}function aBe(){try{sessionStorage.removeItem(U_)}catch{}try{localStorage.removeItem(B_)}catch{}}function Ph(e){const t=new Headers(e),n=zbe();return n&&t.set("X-VeADK-Local-User",n),t}async function Vbe(){let e;try{e=await fetch("/web/auth-config",{headers:qu({Accept:"application/json"}),signal:Sl(void 0,V9)})}catch(t){throw console.warn("[identity] /web/auth-config is unreachable:",t),new Error(H("identity.loadConfigNetworkFailed"))}if(!e.ok)throw new Error(H("identity.configServiceFailed",{status:e.status}));try{const t=await e.json();if(!Array.isArray(t.providers))throw new TypeError("providers is not an array");return t.providers}catch(t){throw console.warn("[identity] /web/auth-config returned an invalid response:",t),new Error(H("identity.invalidConfigResponse"))}}function oBe(e){const t=window.location.pathname+window.location.search+window.location.hash,n=e.includes("?")?"&":"?";window.location.assign(`${e}${n}redirect=${encodeURIComponent(t)}`)}function lBe(){const e=window.location.pathname+window.location.search+window.location.hash,t=window.open("about:blank","_blank","popup,width=520,height=720");if(!t)return null;try{t.opener=null,t.location.replace(`/oauth2/login?redirect=${encodeURIComponent(e)}`)}catch{return t.close(),null}return t}async function cBe(){const[e,t]=await Promise.all([v4(),Vbe()]);return e.status==="unauthenticated"&&t.length>0}function uBe(){window.location.assign("/oauth2/logout")}async function dBe(){for(let e=0;;e+=1){let t;try{t=await fetch("/oauth2/userinfo",{headers:qu({Accept:"application/json"}),signal:Sl(void 0,V9)})}catch(i){throw console.warn("[identity] /oauth2/userinfo is unreachable:",i),new Error(H("identity.serviceNetworkFailed"))}const n=rBe[e];if(t.status!==401||t.headers.get(iBe)!=="1"||n===void 0)return t;await new Promise(i=>window.setTimeout(i,n))}}async function v4(){const e=await dBe();if(e.ok){let n;try{n=await e.json()}catch(r){throw console.warn("[identity] /oauth2/userinfo returned a non-JSON response:",r),new Error(H("identity.invalidServiceResponse"))}return{status:"authenticated",userId:String(n.sub??n.user_id??n.email??""),info:n}}if(e.status===401)return{status:"unauthenticated",userId:"",local:!1};if(e.status!==404)throw new Error(H("identity.serviceFailed",{status:e.status}));const t=zbe();return t?{status:"authenticated",userId:t,info:{name:t},local:!0}:{status:"unauthenticated",userId:"",local:!0}}function fBe(e){if(!e)return"";for(const t of[e.name,e.preferred_username,e.username,e.email])if(typeof t=="string"&&t.trim())return t.trim();return""}function hBe(e){const t=e==null?void 0:e.picture;return typeof t=="string"?t.trim():""}const x4="veadk:authentication-required";let OO=null,Pw=null;function pBe(e){if(!e.redirected||!e.url)return!1;try{const t=new URL(e.url);return t.pathname.includes("/authorize")||t.pathname.includes("/oauth2/login")||t.hostname.includes(".userpool.auth.")}catch{return!1}}function mBe(e){OO||(OO=new Promise(n=>{Pw=n}),window.dispatchEvent(new Event(x4)));const t=OO;return e?e.aborted?Promise.reject(e.reason??new Error("Request aborted")):new Promise((n,i)=>{const r=()=>i(e.reason??new Error("Request aborted"));e.addEventListener("abort",r,{once:!0}),t.then(()=>{e.removeEventListener("abort",r),n()},s=>{e.removeEventListener("abort",r),i(s)})}):t}function gBe(){return OO!==null}function bBe(){Pw==null||Pw(),Pw=null,OO=null}async function sR(e,t){var i;const n=await e.text().catch(()=>"");try{return JSON.parse(n)}catch{const r=((i=e.headers.get("content-type"))==null?void 0:i.split(";",1)[0])||H("common.contentTypeMissing"),s=n.trim().slice(0,2e3),a=s?` +${H("common.response",{response:s})}`:"";throw new Error(H("jsonResponse.nonJson",{fallback:t,status:e.status,contentType:r,detail:a}))}}const yBe=/\brun_sse\s*failed\s*:\s*404\b/i,vBe=/session not found/i,xBe=/(?:^|[::\s])not found\s*$/i,wBe=/Expecting (?:'[^']+'|\w+)(?: delimiter)?: line \d+ column \d+ \(char \d+\)/i,OBe=/Unknown or expired collection_id\s+'[^']+'\.\s*Call collect_resources first\./i,SBe=/(?:RateLimitError|\bTPM\b|\bRPM\b|tokens? per minute|requests? per minute)[\s\S]*(?:\b429\b|limit|quota)|\b429\b[\s\S]*(?:model|RateLimitError|\bTPM\b|\bRPM\b)/i;function D0(e,t){return e.includes(t)?e:`${e} -${t}`}function Df(e){const t=String(e),n=V("runSse.rawResponseLabel");let i=t.includes(n)?t:`${n}${t}`;if(rBe.test(t))i=N0(i,V("runSse.toolArgumentHint"));else{if(sBe.test(t))return N0(i,V("runSse.resourceCollectionExpiredHint"));if(aBe.test(t))return N0(i,V("runSse.modelQuotaHint"));tBe.test(t)&&(nBe.test(t)?i=N0(i,V("runSse.persistentMemoryHint")):iBe.test(t)&&(i=N0(i,V("runSse.unsupportedRouteHint"))))}return N0(i,V("runSse.networkConfigurationHint"))}async function*eR(e){if(!e.body)throw new Error("Response has no body");const t=e.body.getReader(),n=new TextDecoder;let i="";const r=a=>a.length>500?V("sse.truncatedData",{data:a.slice(0,500),count:a.length}):a,s=(a,l=!1)=>{const c=a.split(/\r?\n/).filter(u=>u.startsWith("data:")).map(u=>u.slice(5).trimStart()).join(` -`);if(!(!c||c==="[DONE]"||c==="ping"))try{return JSON.parse(c)}catch{const u=r(c);throw l?new Error(V("sse.incompleteEvent",{data:u})):new Error(V("sse.invalidEventJson",{data:u}))}};try{for(;;){const{done:a,value:l}=await t.read();if(a)break;i+=n.decode(l,{stream:!0});let c=i.match(/\r?\n\r?\n/);for(;(c==null?void 0:c.index)!==void 0;){const u=i.slice(0,c.index);i=i.slice(c.index+c[0].length);const d=s(u);d!==void 0&&(yield d),c=i.match(/\r?\n\r?\n/)}}if(i+=n.decode(),i.trim()){const a=s(i,!0);a!==void 0&&(yield a)}}finally{try{await t.cancel()}catch{}finally{t.releaseLock()}}}const oBe="X-Studio-FaaS-Instance",lBe="X-Studio-FaaS-Request-Id";function cBe(e,t,n){var s,a;const i=((s=e.headers.get(oBe))==null?void 0:s.trim())??"";if(!t||!n||!i)return null;const r=((a=e.headers.get(lBe))==null?void 0:a.trim())??"";return{runtimeId:t,region:n,instanceName:i,...r?{requestId:r}:{}}}function kW(e,t,n,i){const r=e==="byteplus"?"https://console.byteplus.com":"https://console.volcengine.com",s=new URLSearchParams({projectName:"default",runtimeId:n,instanceName:i});return`${r}/agentkit/region:agentkit+${encodeURIComponent(t)}/runtime?${s}`}function uBe(e){return/\b(?:ERROR|FATAL|CRITICAL)\b/i.test(e)?"error":/\bWARN(?:ING)?\b/i.test(e)?"warning":/\bDEBUG\b/i.test(e)?"debug":/\bINFO\b/i.test(e)?"info":"default"}function dBe(e){if(!e||typeof e!="object")return!1;const t=e;return t.type==="done"?!0:t.type==="context"?typeof t.instanceName=="string"&&typeof t.consoleUrl=="string":t.type==="logs"?typeof t.text=="string"&&typeof t.updatedAt=="number":t.type==="error"?typeof t.message=="string"&&(t.detail===void 0||typeof t.detail=="string")&&(t.statusCode===void 0||typeof t.statusCode=="string")&&(t.errorCode===void 0||typeof t.errorCode=="string")&&(t.requestId===void 0||typeof t.requestId=="string")&&(t.responseBody===void 0||typeof t.responseBody=="string"):!1}function Rbe(e){var i;const t=[e.message],n=[e.statusCode?V("runtimeLogs.httpStatus",{status:e.statusCode}):"",e.errorCode?V("runtimeLogs.errorCode",{code:e.errorCode}):"",e.requestId?`Request ID:${e.requestId}`:""].filter(Boolean);return n.length>0&&t.push(n.join(` -`)),e.detail&&e.detail!==e.message&&t.push(e.detail),e.responseBody&&!((i=e.detail)!=null&&i.includes(e.responseBody))&&t.push(V("runtimeLogs.cloudResponseBody",{body:e.responseBody})),t.join(` +${t}`}function Pf(e){const t=String(e),n=H("runSse.rawResponseLabel");let i=t.includes(n)?t:`${n}${t}`;if(wBe.test(t))i=D0(i,H("runSse.toolArgumentHint"));else{if(OBe.test(t))return D0(i,H("runSse.resourceCollectionExpiredHint"));if(SBe.test(t))return D0(i,H("runSse.modelQuotaHint"));yBe.test(t)&&(vBe.test(t)?i=D0(i,H("runSse.persistentMemoryHint")):xBe.test(t)&&(i=D0(i,H("runSse.unsupportedRouteHint"))))}return D0(i,H("runSse.networkConfigurationHint"))}async function*aR(e){if(!e.body)throw new Error("Response has no body");const t=e.body.getReader(),n=new TextDecoder;let i="";const r=a=>a.length>500?H("sse.truncatedData",{data:a.slice(0,500),count:a.length}):a,s=(a,l=!1)=>{const c=a.split(/\r?\n/).filter(u=>u.startsWith("data:")).map(u=>u.slice(5).trimStart()).join(` +`);if(!(!c||c==="[DONE]"||c==="ping"))try{return JSON.parse(c)}catch{const u=r(c);throw l?new Error(H("sse.incompleteEvent",{data:u})):new Error(H("sse.invalidEventJson",{data:u}))}};try{for(;;){const{done:a,value:l}=await t.read();if(a)break;i+=n.decode(l,{stream:!0});let c=i.match(/\r?\n\r?\n/);for(;(c==null?void 0:c.index)!==void 0;){const u=i.slice(0,c.index);i=i.slice(c.index+c[0].length);const d=s(u);d!==void 0&&(yield d),c=i.match(/\r?\n\r?\n/)}}if(i+=n.decode(),i.trim()){const a=s(i,!0);a!==void 0&&(yield a)}}finally{try{await t.cancel()}catch{}finally{t.releaseLock()}}}const kBe="X-Studio-FaaS-Instance",EBe="X-Studio-FaaS-Request-Id";function CBe(e,t,n){var s,a;const i=((s=e.headers.get(kBe))==null?void 0:s.trim())??"";if(!t||!n||!i)return null;const r=((a=e.headers.get(EBe))==null?void 0:a.trim())??"";return{runtimeId:t,region:n,instanceName:i,...r?{requestId:r}:{}}}function IW(e,t,n,i){const r=e==="byteplus"?"https://console.byteplus.com":"https://console.volcengine.com",s=new URLSearchParams({projectName:"default",runtimeId:n,instanceName:i});return`${r}/agentkit/region:agentkit+${encodeURIComponent(t)}/runtime?${s}`}function TBe(e){return/\b(?:ERROR|FATAL|CRITICAL)\b/i.test(e)?"error":/\bWARN(?:ING)?\b/i.test(e)?"warning":/\bDEBUG\b/i.test(e)?"debug":/\bINFO\b/i.test(e)?"info":"default"}function ABe(e){if(!e||typeof e!="object")return!1;const t=e;return t.type==="done"?!0:t.type==="context"?typeof t.instanceName=="string"&&typeof t.consoleUrl=="string":t.type==="logs"?typeof t.text=="string"&&typeof t.updatedAt=="number":t.type==="error"?typeof t.message=="string"&&(t.detail===void 0||typeof t.detail=="string")&&(t.statusCode===void 0||typeof t.statusCode=="string")&&(t.errorCode===void 0||typeof t.errorCode=="string")&&(t.requestId===void 0||typeof t.requestId=="string")&&(t.responseBody===void 0||typeof t.responseBody=="string"):!1}function Hbe(e){var i;const t=[e.message],n=[e.statusCode?H("runtimeLogs.httpStatus",{status:e.statusCode}):"",e.errorCode?H("runtimeLogs.errorCode",{code:e.errorCode}):"",e.requestId?`Request ID:${e.requestId}`:""].filter(Boolean);return n.length>0&&t.push(n.join(` +`)),e.detail&&e.detail!==e.message&&t.push(e.detail),e.responseBody&&!((i=e.detail)!=null&&i.includes(e.responseBody))&&t.push(H("runtimeLogs.cloudResponseBody",{body:e.responseBody})),t.join(` -`)}async function fBe(e){const t=`HTTP ${e.status}${e.statusText?` ${e.statusText}`:""}`,n=await e.text();if(!n)return t;try{const i=JSON.parse(n);if(typeof i.detail=="string"&&i.detail)return`${t} +`)}async function _Be(e){const t=`HTTP ${e.status}${e.statusText?` ${e.statusText}`:""}`,n=await e.text();if(!n)return t;try{const i=JSON.parse(n);if(typeof i.detail=="string"&&i.detail)return`${t} -${i.detail}`;if(i.detail&&typeof i.detail=="object"){const r=i.detail;if(typeof r.message=="string")return Rbe({message:r.message,...typeof r.detail=="string"?{detail:r.detail}:{},...typeof r.statusCode=="string"?{statusCode:r.statusCode}:{},...typeof r.errorCode=="string"?{errorCode:r.errorCode}:{},...typeof r.requestId=="string"?{requestId:r.requestId}:{},...typeof r.responseBody=="string"?{responseBody:r.responseBody}:{}})}return`${t} +${i.detail}`;if(i.detail&&typeof i.detail=="object"){const r=i.detail;if(typeof r.message=="string")return Hbe({message:r.message,...typeof r.detail=="string"?{detail:r.detail}:{},...typeof r.statusCode=="string"?{statusCode:r.statusCode}:{},...typeof r.errorCode=="string"?{errorCode:r.errorCode}:{},...typeof r.requestId=="string"?{requestId:r.requestId}:{},...typeof r.responseBody=="string"?{responseBody:r.responseBody}:{}})}return`${t} ${JSON.stringify(i,null,2)}`}catch{return`${t} -${n}`}}async function*hBe({runtimeId:e,region:t,instanceName:n,sessionId:i,follow:r=!0,signal:s}){const a=new URLSearchParams({region:t,follow:String(r)});n&&a.set("instance_name",n),i&&a.set("session_id",i);const l=await fetch(Uo(`/web/runtime-logs/${encodeURIComponent(e)}/stream?${a.toString()}`),{headers:Hu(Dh({Accept:"text/event-stream"})),cache:"no-store",signal:s});if(!l.ok)throw new Error(V("runtimeLogs.loadFailedWithDetail",{detail:await fBe(l)}));for await(const c of eR(l)){if(!dBe(c))throw new Error(V("runtimeLogs.invalidFormat"));yield c}}const pBe=255,mBe=/[\p{L}\p{M}\p{N}\p{P}\p{Zs}]/u;function gBe(e){const t=e.normalize("NFKC").replace(/\s+/gu," ").trim(),n=new TextEncoder;let i=0,r="";for(const s of t){if(!mBe.test(s))continue;const a=n.encode(s).byteLength;if(i+a>pBe)break;r+=s,i+=a}return r.replace(/ +/g," ").trimEnd()}const bBe=/RunPipeline result could not be reconciled|Polling build status failed/i;class jw extends Error{constructor({taskId:n,cause:i}={}){super("The deployment request may still be running, but its status could not be confirmed.");ki(this,"taskId");this.name="DeploymentStatusUnconfirmedError",this.taskId=n}}function Ibe(e){if(e instanceof jw)return!0;const t=e instanceof Error?e.message:String(e??"");return bBe.test(t)}function EW(e){return!!(e&&typeof e=="object"&&"name"in e&&e.name==="AbortError")}const g4="ap-southeast-1",BF="cn-beijing",yBe="https://ark.ap-southeast.bytepluses.com/api/v3",vBe="https://ark.cn-beijing.volces.com/api/v3/",xBe="https://console.byteplus.com/ark/region:ark+ap-southeast-1/openManagement",wBe="https://console.volcengine.com/ark/region:ark+cn-beijing/openManagement",OBe="dola-seed-2-1-turbo-260628",SBe="doubao-seed-2-1-pro-260628",kBe="skylark-embedding-vision-250615",EBe="doubao-embedding-vision-250615",CBe="seed-2-0-lite-260228",TBe="doubao-seed-2-0-lite-260428",ABe="dola-seedream-5-0-pro-260628",_Be="doubao-seedream-5-0-260128",NBe="seededit-3-0-i2i-250628",jBe="doubao-seededit-3-0-i2i-250628",RBe="dreamina-seedance-2-0-260128",IBe="doubao-seedance-2-0-260128";function Iu(e){return e==="byteplus"?[{value:g4,label:g4}]:[{value:"cn-beijing",label:V("cloudRegion.cnBeijing")},{value:"cn-shanghai",label:V("cloudRegion.cnShanghai")}]}function Ji(e){var t;return((t=Iu(e)[0])==null?void 0:t.value)||BF}const PBe=new Set(["cn-beijing","cn-shanghai","ap-southeast-1"]);function tR(e){return typeof e=="string"&&PBe.has(e)}function xh(e,t){var i;return((i=(t?Iu(t):[...Iu("volcengine"),...Iu("byteplus")]).find(r=>r.value===e))==null?void 0:i.label)||e||"-"}function wh(e){return e==="byteplus"?OBe:SBe}function xl(e){return e==="byteplus"?yBe:vBe}function DBe(e){return e==="byteplus"?xBe:wBe}function MBe(e){return e==="byteplus"?kBe:EBe}function LBe(e){return e==="byteplus"?CBe:TBe}function $Be(e){return e==="byteplus"?ABe:_Be}function FBe(e){return e==="byteplus"?NBe:jBe}function BBe(e){return e==="byteplus"?RBe:IBe}const UF="veadk.messageFeedback.v1";function QF(e,t,n,i){return[e,t,n,i].join(":")}function zF(){if(typeof window>"u")return{};try{const e=JSON.parse(localStorage.getItem(UF)??"{}");return e&&typeof e=="object"?e:{}}catch{return{}}}function UBe(e,t,n){if(typeof window>"u")return;const i=zF();i[e]={...i[e]??{},[`veadk_feedback:${t}`]:n},localStorage.setItem(UF,JSON.stringify(i))}function Pbe(e){if(typeof window>"u")return;const t=QF(e.runtimeId,e.appName,e.userId,e.sessionId),n=zF(),i=n[t];if(i){for(const r of e.eventIds)delete i[`veadk_feedback:${r}`];Object.keys(i).length===0?delete n[t]:n[t]=i,localStorage.setItem(UF,JSON.stringify(n))}}const Z2="",VF=new Map;function Dbe(e,t){VF.set(e,t)}function Mbe(){VF.clear()}function Sl(e){const t=VF.get(e);return t?{app:t.app,ep:{base:t.base,apiKey:t.apiKey,runtimeId:t.runtimeId,region:t.region}}:{app:e,ep:{}}}async function kt(e,t={},n={},i=Wo){const r=Ol(t.signal,i),s=!!n.runtimeId&&String(t.method??"GET").toUpperCase()==="DELETE",a={...t,...s?{method:"POST"}:{},headers:Hu(Dh(t.headers))},l=()=>{const d={...a,signal:r};if(n.runtimeId){const f=new URLSearchParams;n.region&&f.set("_runtime_region",n.region),n.retryProbe&&f.set("probe_retry","connect"),s&&f.set("_method","DELETE");const h=f.toString()?`${e.includes("?")?"&":"?"}${f.toString()}`:"";return fetch(Uo(`${Z2}/web/runtime-proxy/${n.runtimeId}${e}${h}`),d)}if(n.base){const f=new Headers(d.headers);return f.set("X-AgentKit-Base",n.base),n.apiKey&&f.set("X-AgentKit-Key",n.apiKey),fetch(Uo(`${Z2}/agentkit-proxy${e}`),{...d,headers:f})}return fetch(Uo(`${Z2}${e}`),d)},c=async d=>{if(Y7e(d))return!0;if(d.status!==401)return!1;try{return await q7e()}catch{return!1}};let u=await l();for(;await c(u);)await Z7e(r),u=await l();return u}function An(e,t={},n=Wo){return kt(e,t,{},n)}function QBe(e){return typeof e=="string"?e:Array.isArray(e)?e.map(t=>{var n;if(t&&typeof t=="object"&&"msg"in t){const i=Array.isArray(t.loc)?(n=t.loc)==null?void 0:n.join("."):"",r=String(t.msg??"");return i?`${i}: ${r}`:r}return String(t)}).filter(Boolean).join(` -`):e&&typeof e=="object"?JSON.stringify(e):""}async function on(e,t){const n=V("common.fallbackWithHttpStatus",{fallback:t,status:e.status}),i=await e.text().catch(()=>"");if(!i)return n;try{const r=JSON.parse(i),s=QBe(r.detail??r.error);return s?V("client.errorWithDetailAndRawResponse",{context:n,detail:s,response:i}):V("client.errorWithRawResponse",{context:n,response:i})}catch{return V("client.errorWithRawResponse",{context:n,response:i})}}async function HF(e,t=!1){const n=await kt(`/web/model-api-keys${t?"?refresh=true":""}`,{signal:e,cache:"no-store"});if(!n.ok)throw new Error(await on(n,V("client.loadArkApiKeysFailed")));return await n.json()}async function Lbe(e,t){const n=await kt(`/web/model-api-keys/${encodeURIComponent(e)}/value`,{method:"POST",signal:t,cache:"no-store"});if(!n.ok)throw new Error(await on(n,V("client.loadArkApiKeysFailed")));return await n.json()}async function Ex(e){const t=new URLSearchParams;e!=null&&e.apiKeyId&&t.set("apiKeyId",e.apiKeyId),e!=null&&e.refresh&&t.set("refresh","true");const n=t.toString(),i=await kt(`/web/model-options${n?`?${n}`:""}`,{signal:e==null?void 0:e.signal,cache:"no-store"});if(!i.ok)throw new Error(await on(i,V("client.loadModelsFailed")));return await i.json()}async function $be(){const e=await kt("/list-apps");if(!e.ok)throw new Error(`list-apps failed: ${e.status}`);return e.json()}class Cx extends Error{constructor(){super(V("client.runtimeAccessDenied")),this.name="RuntimeAccessDeniedError"}}class Ds extends Error{constructor(t,n=!1,i=!1){super(t),this.unsupported=n,this.retryable=i,this.name="RuntimeProbeError"}}const Fbe=()=>V("client.privateRuntimeUnavailable"),Bbe=()=>V("client.runtimeTemporarilyUnavailable"),CW=["cn-beijing","cn-shanghai"],zBe=3e4,Tx=5*60*1e3,Ube=60*1e3;let gS="volcengine";const Xy=new Map,vg=new Map,xg=new Map,Su=new Map,kr=new Map;function qF(e,t,n){return`${t}:${e}:${n??""}`}function Qbe(e){e!==gS&&kr.clear(),gS=e}function Qk(e){const t=(e||"").trim();if(gS==="byteplus")return[t&&!t.startsWith("cn-")?t:g4];const n=t&&!t.startsWith("ap-")?t:BF;return CW.includes(n)?[n,...CW.filter(i=>i!==n)]:[n]}function nR(e){const t=(e||"").trim();return t?[t]:Qk()}function qb(...e){return e.map(t=>String(t??"")).join("")}function Lm(e,t,n){const i=e.get(t);return i!=null&&i.value&&Date.now()-i.updatedAt<=n?i.value:null}function WF(e,t,n){return e.set(t,{value:n,updatedAt:Date.now()}),n}function ZC(e,t){return t?t.aborted?Promise.reject(new DOMException("The operation was aborted.","AbortError")):new Promise((n,i)=>{const r=()=>{i(new DOMException("The operation was aborted.","AbortError"))};t.addEventListener("abort",r,{once:!0}),e.then(s=>{t.removeEventListener("abort",r),n(s)},s=>{t.removeEventListener("abort",r),i(s)})}):e}async function zbe(e){try{const t=await e.clone().json();return typeof t.detail=="string"?t.detail:""}catch{return""}}async function zk(e,t,n,i,r=Wo){const s=await kt("/list-apps",{signal:i},n??{base:e,apiKey:t},r),a=n!=null&&n.runtimeId?await zbe(s):"";if(n!=null&&n.runtimeId&&a==="runtime_access_denied")throw new Cx;if(n!=null&&n.runtimeId&&a==="runtime_private_endpoint_unreachable")throw new Ds(Fbe());if(n!=null&&n.runtimeId&&["runtime_proxy_connect_error","runtime_proxy_timeout","runtime_json_connect_error","runtime_json_timeout"].includes(a))throw new Ds(Bbe(),!1,!0);if(n!=null&&n.runtimeId&&s.status===404)throw new Ds(V("client.runtimeConnectionUnsupported"),!0,!0);if(n!=null&&n.runtimeId&&(s.status===401||s.status===403))throw new Ds(V("client.runtimeConnectionDenied"));if(!s.ok)throw new Error(await on(s,V("client.listAgentsFailed")));let l;try{l=await s.json()}catch{throw new Ds(V("client.invalidListAppsJson"))}if(!Array.isArray(l)||l.some(u=>typeof u!="string"||!u.trim()))throw new Ds(V("client.invalidListAppsFormat"));const c=l.map(u=>u.trim());return n!=null&&n.runtimeId&&Xy.set(qF(n.runtimeId,n.region??"",n.runtimeVersion),{apps:c,expiresAt:Date.now()+zBe}),c}async function Vbe(e,t){const{app:n,ep:i}=Sl(e),r=await kt(`/apps/${n}/users/${encodeURIComponent(t)}/sessions`,{method:"POST",headers:{"Content-Type":"application/json"},body:"{}"},i);if(!r.ok){const a=V("client.createSessionFailedWithStatus",{status:r.status}),l=await on(r,V("client.createSessionFailed"));throw new Error(l===a?a:V("common.fallbackWithDetail",{fallback:a,detail:l}))}return(await r.json()).id}async function GF(e,t){const{app:n,ep:i}=Sl(e),r=await kt(`/apps/${n}/users/${encodeURIComponent(t)}/sessions`,{},i);if(!r.ok)throw new Error(`list sessions failed: ${r.status}`);return r.json()}async function iR(e,t,n){const{app:i,ep:r}=Sl(e),s=await kt(`/apps/${i}/users/${encodeURIComponent(t)}/sessions/${encodeURIComponent(n)}`,{},r);if(!s.ok){const l=await on(s,V("client.getSessionFailed"));throw new Error(V("client.getSessionFailedWithDetail",{status:s.status,detail:l}))}const a=await s.json();if(r.runtimeId){const l=QF(r.runtimeId,i,t,n);a.state={...zF()[l]??{},...a.state??{}}}return a}async function Hbe(e){const{app:t,ep:n}=Sl(e.appName);if(!n.runtimeId)throw new Error(V("client.feedbackRuntimeOnly"));if(!n.region)throw new Error(V("client.feedbackRegionMissing"));const i=await kt("/web/evaluation/feedback",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtimeId:n.runtimeId,region:n.region,appName:t,userId:e.userId,sessionId:e.sessionId,eventId:e.eventId,rating:e.rating,comment:e.comment??""})},{},is);if(!i.ok)throw new Error(await on(i,V("client.submitFeedbackFailed")));const r=await i.json(),s=QF(n.runtimeId,t,e.userId,e.sessionId);return UBe(s,e.eventId,r),r}async function rR(e,t={}){const n=qb(e.runtimeId,e.region||"cn-beijing",e.appName,e.pageSize??100),i=Lm(Su,n,Ube);if(!t.force&&i)return i;const r=Su.get(n);if(!t.force&&(r!=null&&r.promise))return r.promise;let s=null;const a=(async()=>{for(const l of nR(e.region)){const c=new URLSearchParams({runtimeId:e.runtimeId,region:l,appName:e.appName,page_size:String(e.pageSize??100)}),u=await kt(`/web/evaluation/feedback-cases?${c.toString()}`);if(u.ok)return WF(Su,n,await u.json());s=new Error(await on(u,V("client.loadEvaluationSetsFailed")))}throw s??new Error(V("client.loadEvaluationSetsFailed"))})();Su.set(n,{...r,promise:a,updatedAt:(r==null?void 0:r.updatedAt)??0});try{return await a}finally{const l=Su.get(n);(l==null?void 0:l.promise)===a&&Su.set(n,{value:l.value,updatedAt:l.updatedAt})}}async function b4(e){let t=null;for(const n of nR(e.region)){const i=new URLSearchParams({runtimeId:e.runtimeId,region:n,appName:e.appName,userId:e.userId}),r=await kt(`/web/evaluation/statuses?${i.toString()}`);if(r.ok)return r.json();t=new Error(await on(r,V("client.loadAutoEvaluationStatusFailed")))}throw t??new Error(V("client.loadAutoEvaluationStatusFailed"))}async function qbe(e){let t=null;for(const n of nR(e.region)){const i=new URLSearchParams({runtimeId:e.runtimeId,region:n,appName:e.appName}),r=await kt(`/web/evaluation/optimizations?${i.toString()}`);if(r.ok)return r.json();t=new Error(await on(r,V("client.loadOptimizationsFailed")))}throw t??new Error(V("client.loadOptimizationsFailed"))}function Wbe(e){return Lm(Su,qb(e.runtimeId,e.region||"cn-beijing",e.appName,e.pageSize??100),Ube)}function VBe(e){rR(e).catch(()=>{})}function Gbe(e){rR(e,{force:!0}).catch(()=>{})}function Kbe(e,t){return["good","bad"].map(n=>{const i=e.find(r=>r.kind===n);return{kind:n,evaluationSetId:(i==null?void 0:i.evaluationSetId)??null,evaluationSetName:(i==null?void 0:i.evaluationSetName)??null,workspaceId:(i==null?void 0:i.workspaceId)??null,itemCount:t.filter(r=>r.kind===n).length}})}function J2(e){const t=e.comment??"",n=e.rating==="bad"&&!!t.trim();for(const[i,r]of Su.entries()){const s=r.value;if(!s||s.runtimeId!==e.runtimeId||s.agentName!==e.appName)continue;const a=s.items.filter(c=>c.sessionId!==e.sessionId||c.messageId!==e.messageId),l=e.rating?[{id:`local:${e.runtimeId}:${e.sessionId}:${e.messageId}`,itemKey:`local:${e.messageId}`,kind:e.rating,input:e.input,output:e.output,referenceOutput:e.referenceOutput??e.output,comment:t,agentName:e.appName,sessionId:e.sessionId,messageId:e.messageId,runtimeId:e.runtimeId,invocationId:e.invocationId??"",userId:e.userId,createdAt:e.createdAt??new Date().toISOString(),evaluationSetId:"",evaluationSetName:"",workspaceId:"",source:"user",score:n?0:null,reason:n?t:""},...a]:a;Su.set(i,{value:{...s,sets:Kbe(s.sets,l),items:l},updatedAt:Date.now(),promise:r.promise})}}async function Xbe(e){let t=null;for(const n of nR(e.region)){const i=await kt("/web/evaluation/feedback-cases/delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtimeId:e.runtimeId,region:n,appName:e.appName,itemIds:e.itemIds})},{},is);if(i.ok){const r=await i.json(),s=new Set(e.itemIds);for(const[a,l]of Su.entries()){const c=l.value;if(!c||c.runtimeId!==e.runtimeId||c.agentName!==e.appName)continue;const u=c.items.filter(d=>!s.has(d.id));Su.set(a,{value:{...c,sets:Kbe(c.sets,u),items:u},updatedAt:Date.now()})}return r}t=new Error(await on(i,V("client.deleteEvaluationCaseFailed")))}throw t??new Error(V("client.deleteEvaluationCaseFailed"))}async function y4(e,t,n){const{app:i,ep:r}=Sl(e),s=await kt(`/apps/${i}/users/${encodeURIComponent(t)}/sessions/${n}`,{method:"DELETE"},r);if(!s.ok&&s.status!==404)throw new Error(`delete session failed: ${s.status}`)}function HBe(e){const t=e.replace(/-/g,"+").replace(/_/g,"/"),n=t.padEnd(Math.ceil(t.length/4)*4,"="),i=window.atob(n),r=new Uint8Array(i.length);for(let s=0;sURL.revokeObjectURL(l),0)}async function Ybe(e,t,n,i,r){const{app:s,ep:a}=Sl(e),l=r==null?"":`?version=${encodeURIComponent(r)}`,c=`/apps/${encodeURIComponent(s)}/users/${encodeURIComponent(t)}/sessions/${encodeURIComponent(n)}/artifacts/${encodeURIComponent(i)}${l}`,u=await kt(c,{},a,is);if(!u.ok)throw new Error(await on(u,V("client.downloadFileFailed")));const d=await u.json(),f=d.inlineData??d.inline_data;if(!(f!=null&&f.data))throw new Error(V("client.fileUnavailable"));const h=HBe(f.data),m=h.buffer.slice(h.byteOffset,h.byteOffset+h.byteLength);return{blob:new Blob([m],{type:f.mimeType??f.mime_type??"application/octet-stream"}),downloadName:f.displayName??f.display_name??i}}async function XF(e,t,n,i,r){const{blob:s}=await Ybe(e,t,n,i,r);return URL.createObjectURL(s)}async function qBe(e){const t=await kt("/web/media/capabilities");if(!t.ok)throw new Error(await on(t,"media capabilities failed"));return t.json()}async function Zbe(e,t,n,i){const{app:r}=Sl(e),s=new FormData;s.set("app_name",r),s.set("user_id",t),s.set("session_id",n),s.set("file",i);const a=await kt("/web/media",{method:"POST",body:s},{},is);if(!a.ok)throw new Error(await on(a,V("client.uploadFileFailed")));return{...await a.json(),status:"ready"}}async function v4(e,t,n){const{app:i}=Sl(e),r=`/web/media/${encodeURIComponent(i)}/${encodeURIComponent(t)}/${encodeURIComponent(n)}/delete`,s=await kt(r,{method:"POST"});if(!s.ok&&s.status!==404)throw new Error(await on(s,"media cleanup failed"))}function Jbe(e){try{const t=new URL(e);if(t.protocol!=="veadk-media:"||t.hostname!=="apps")return;const n=t.pathname.split("/").filter(Boolean).map(decodeURIComponent);return n.length!==7||n[1]!=="users"||n[3]!=="sessions"||n[5]!=="media"?void 0:`/web/media/${n.map(encodeURIComponent).filter((i,r)=>![1,3,5].includes(r)).join("/")}`}catch{return}}async function eA(e,t){const n=Jbe(t);if(!n)throw new Error("Invalid VeADK media URI");const i=await kt(`${n}/delete`,{method:"POST"});if(!i.ok&&i.status!==404)throw new Error(await on(i,"media cleanup failed"))}function e0e(e,t){if(t.startsWith("data:")||t.startsWith("blob:")||/^https?:/.test(t))return t;const n=Jbe(t);if(!n)return t;const i=`${n}/content`;return Uo(`${Z2}${i}`)}async function L_(e,t,n){const{app:i,ep:r}=Sl(e);let s;if(r.runtimeId){const c=new URLSearchParams({runtimeId:r.runtimeId,sessionId:t,region:r.region??"cn-beijing"});if(n&&c.set("endTimeMs",String(Math.round(n))),s=await kt(`/web/runtime-trace?${c.toString()}`),s.status===404)throw new Error(V("client.traceDisabled"))}else s=await kt(`/dev/apps/${encodeURIComponent(i)}/debug/trace/session/${encodeURIComponent(t)}`,{},r);if(!s.ok)throw new Error(await on(s,V("client.loadTraceFailed")));const a=s.headers.get("content-type")??"";if(!a.includes("application/json")){const c=a.split(";",1)[0]||V("client.contentTypeMissing");throw new Error(V("client.traceNonJson",{contentType:c}))}const l=await s.json();if(!Array.isArray(l))throw new Error(V("client.invalidTraceFormat"));return l}async function x4(e){const t=await kt("/web/issue-feedback",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw new Error(await on(t,V("client.submitIssueFeedbackFailed")));if((await t.json()).submitted!==!0)throw new Error(V("client.issueFeedbackNotConfirmed"));return{submitted:!0}}async function t0e(e,t,n=!0){const i=await kt(`/web/agent-info/${e}`,{},t);if(!i.ok)throw new Error(`agent-info failed: ${i.status}`);const r=await i.json();if(n&&!r.draft)try{const s=await kt(`/web/agent-draft/${e}`,{},t);if(s.ok){const a=await s.json();r.draft=a.draft}}catch{}return{appName:e,name:r.name??e,description:r.description??"",type:r.type,model:r.model??"",tools:r.tools??[],skillsPreviewSupported:Array.isArray(r.skills),skills:r.skills??[],subAgents:r.subAgents??[],components:r.components??[],searchSources:r.searchSources??[],graph:r.graph,draft:r.draft}}async function w4(e){const{app:t,ep:n}=Sl(e);return t0e(t,n,!1)}async function WBe(e,t,n){let i=null;for(const r of Qk(t)){const s={runtimeId:e,region:r};try{const a=qF(e,r),l=Xy.get(a);l&&l.expiresAt<=Date.now()&&Xy.delete(a);const c=Xy.get(a),u=n||(c==null?void 0:c.apps[0])||(await zk("","",s))[0];if(!u)throw new Error(V("client.noPreviewableAgent"));return t0e(u,s)}catch(a){if(a instanceof Cx||a instanceof Ds&&!a.unsupported)throw a;i=a instanceof Error?a:new Error(String(a))}}throw i??new Error(V("client.noPreviewableAgent"))}async function YF(e,t,n={},i={}){const r=typeof n=="string"?n:void 0,s=typeof n=="string"?i:n,a=qb(e,t||"cn-beijing",r??""),l=Lm(vg,a,Tx);if(!s.force&&l)return l;const c=vg.get(a);if(!s.force&&(c!=null&&c.promise))return c.promise;const u=WBe(e,t,r).then(d=>WF(vg,a,d));vg.set(a,{...c,promise:u,updatedAt:(c==null?void 0:c.updatedAt)??0});try{return await u}finally{const d=vg.get(a);(d==null?void 0:d.promise)===u&&vg.set(a,{value:d.value,updatedAt:d.updatedAt})}}function n0e(e,t,n=""){return Lm(vg,qb(e,t||"cn-beijing",n),Tx)}function i0e(e,t,n=""){YF(e,t,n).catch(()=>{})}async function r0e(e,t,n,i){const{app:r,ep:s}=Sl(e),a=new URLSearchParams({source:t,app_name:r,q:n,user_id:i}),l=await kt(`/web/search?${a.toString()}`,{},s);if(!l.ok)throw new Error(await on(l,V("client.agentSearchFailed")));return l.json()}async function s0e(e,t){const{app:n}=Sl(e),i=await kt(`/web/search?source=web&app_name=${encodeURIComponent(n)}&q=${encodeURIComponent(t)}`);if(!i.ok)throw new Error(`web search failed: ${i.status}`);return i.json()}function a0e(){return Df(V("client.emptySseBody"))}function tA(){return Df(V("client.noDisplayableSseReply"))}const GBe=3e4;function $v(){return Df(V("client.firstSseEventTimeout"))}function o0e(e){if(e!=null&&e.aborted)return{signal:e,clearDeadline:()=>{},cleanup:()=>{},timedOut:()=>!1};const t=new AbortController;let n=!1,i=!1;const r=()=>{i||(i=!0,clearTimeout(a))},s=()=>{t.signal.aborted||t.abort((e==null?void 0:e.reason)??new DOMException("Aborted","AbortError"))},a=setTimeout(()=>{i||t.signal.aborted||(n=!0,i=!0,t.abort(new Error($v())))},GBe);return e==null||e.addEventListener("abort",s,{once:!0}),{signal:t.signal,clearDeadline:r,cleanup:()=>{r(),e==null||e.removeEventListener("abort",s)},timedOut:()=>n}}async function*O4({appName:e,userId:t,sessionId:n,text:i,attachments:r=[],invocation:s,platformTools:a,environmentMounts:l,environmentMount:c,functionResponses:u=[],signal:d,onRuntimeContext:f}){const{app:h,ep:m}=Sl(e),g=r.flatMap(k=>k.status&&k.status!=="ready"?[]:k.uri?[{fileData:{mimeType:k.mimeType,fileUri:k.uri,displayName:k.name},partMetadata:{veadkMedia:{id:k.id,uri:k.uri,name:k.name,mimeType:k.mimeType,sizeBytes:k.sizeBytes}}}]:k.data?[{inlineData:{mimeType:k.mimeType,data:k.data,displayName:k.name}}]:[]),b=s&&(s.skills.length>0||s.targetAgent)?s:void 0,v=[...g,...u.map(k=>({functionResponse:{id:k.id,name:k.name,response:k.response}})),...i.trim()?[{text:i}]:[]];if(b&&v.length>0){const k=v[0],S=k.partMetadata;v[0]={...k,partMetadata:{...S,veadkInvocation:b}}}let y;const x=o0e(d);try{y=await kt("/run_sse",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({app_name:h,user_id:t,session_id:n,new_message:{role:"user",parts:v},streaming:!0,...a!==void 0?{platform_tools:[...a]}:{},...l!==void 0?{environment_mounts:[...l]}:c?{environment_mount:c}:{},custom_metadata:b?{veadkInvocation:b}:void 0}),signal:x.signal},m,0)}catch(k){throw x.cleanup(),x.timedOut()?new Error($v()):d!=null&&d.aborted||(k==null?void 0:k.name)==="AbortError"?k:new Error(Df(k))}const O=cBe(y,m.runtimeId??"",m.region??"");if(O&&(f==null||f(O)),!y.ok){x.cleanup();const k=await on(y,V("client.runSessionFailed"));throw new Error(Df(V("client.runSseFailedWithDetail",{status:y.status,detail:k})))}let w=!1;try{for await(const k of eR(y)){w=!0,x.clearDeadline();const S=k;typeof S.error=="string"&&(S.error=Df(S.error)),typeof S.errorMessage=="string"&&(S.errorMessage=Df(S.errorMessage)),typeof S.error_message=="string"&&(S.error_message=Df(S.error_message)),yield S}}catch(k){throw x.timedOut()?new Error($v()):d!=null&&d.aborted||(k==null?void 0:k.name)==="AbortError"?k:new Error(Df(k))}finally{x.cleanup()}if(!w)throw new Error(a0e())}async function sR(e,t){const n=new URLSearchParams({name:e,region:t}),i=await kt(`/web/runtime-name-availability?${n.toString()}`,{cache:"no-store"});if(!i.ok)throw new Error(await on(i,V("client.checkRuntimeNameFailed")));const r=await i.json();if(typeof r.available!="boolean")throw new Error(V("client.invalidRuntimeNameCheck"));return{available:r.available}}async function l0e(e,t){const n=new URLSearchParams({kind:e.kind,region:e.region});e.registry&&n.set("registry",e.registry),e.namespace&&n.set("namespace",e.namespace),e.workspaceId&&n.set("workspaceId",e.workspaceId),e.search&&n.set("search",e.search),e.pageNumber&&n.set("pageNumber",String(e.pageNumber)),e.pageSize&&n.set("pageSize",String(e.pageSize));const i=await kt(`/web/deployment-resources?${n.toString()}`,{signal:t});if(!i.ok)throw new Error(await on(i,V("client.loadCloudResourcesFailed")));const r=await i.json();if(typeof r.serviceRegion!="string"||!Array.isArray(r.items)||typeof r.pageNumber!="number"||typeof r.pageSize!="number"||typeof r.totalCount!="number"||typeof r.hasMore!="boolean")throw new Error(V("client.invalidCloudResources"));const s=r.items.map(a=>{if(!a||typeof a!="object"||typeof a.id!="string"||typeof a.name!="string"||typeof a.region!="string"||typeof a.status!="string")throw new Error(V("client.invalidCloudResources"));return a});return{serviceRegion:r.serviceRegion,items:s,pageNumber:r.pageNumber,pageSize:r.pageSize,totalCount:r.totalCount,hasMore:r.hasMore}}function c0e(e,t){const n=e;if(!n||typeof n!="object"||!Array.isArray(n.mounts))throw new Error(V("client.invalidEnvironmentMount"));if(n.mounts.length!==t.length)throw new Error(V("client.environmentMountMismatch"));return n.mounts.map((i,r)=>{const s=t[r];if(!i||typeof i!="object"||typeof i.environment_id!="string"||typeof i.environment_version_id!="string"||typeof i.mount_instance_id!="string"||typeof i.sandbox_session_id!="string"||!i.environment_id||!i.environment_version_id||!i.mount_instance_id||!i.sandbox_session_id)throw new Error(V("client.invalidEnvironmentMount"));if(i.environment_id!==s.environment_id||i.environment_version_id!==s.environment_version_id||s.mount_instance_id!==void 0&&i.mount_instance_id!==s.mount_instance_id)throw new Error(V("client.environmentMountMismatch"));return i})}async function u0e({runtimeId:e,appName:t,userId:n,sessionId:i,environmentMounts:r}){const{app:s}=Sl(t);let a;try{a=await kt("/web/v3/session-environment-mounts/prepare",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtime_id:e,app_name:s,user_id:n,session_id:i,environment_mounts:[...r]})})}catch(l){throw l instanceof TypeError?new Error(V("client.environmentMountNetworkFailed")):l}if(!a.ok)throw new Error(await on(a,V("client.environmentMountFailed")));return c0e(await a.json(),r)}function ZF(e){const t=new Set,n=[];for(const i of e.split(/[,,\n\r]+/)){const r=i.trim();!r||t.has(r)||(t.add(r),n.push(r))}return n}async function d0e(e,t=typeof navigator>"u"?void 0:navigator.clipboard){if(!(t!=null&&t.writeText))throw new Error(V("client.clipboardUnsupported"));try{await t.writeText(e)}catch{throw new Error(V("client.clipboardWriteFailed"))}}const TW={codex:0,codex_snapshot:1,deepseek_harness:2,deepseek_harness_snapshot:3,openclaw:4,openclaw_snapshot:5,hermes:6,hermes_snapshot:7,dev:8};async function f0e(e){var r;const t=await kt("/web/system-info",{signal:e});if(!t.ok)throw new Error(await on(t,V("client.loadSystemInfoFailed")));const n=await t.json();if(typeof((r=n.storage)==null?void 0:r.tosAddress)!="string"||!Array.isArray(n.sandboxTools))throw new Error(V("client.invalidSystemInfo"));const i=n.sandboxTools.map(s=>{if(!s||typeof s!="object"||typeof s.kind!="string"||typeof s.label!="string"||typeof s.toolId!="string"||typeof s.snapshot!="boolean"||typeof s.needsModelEnvUpdate!="boolean"||typeof s.canUpdateModelEnv!="boolean"||typeof s.modelEnvError!="string"||typeof s.modelEnvErrorCode!="string")throw new Error(V("client.invalidSystemInfo"));return s}).sort((s,a)=>(TW[s.kind]??Number.MAX_SAFE_INTEGER)-(TW[a.kind]??Number.MAX_SAFE_INTEGER));return{storage:{tosAddress:n.storage.tosAddress},sandboxTools:i}}const h0e=new Set(["preparing","queued","building","scanning","available","failed"]);function JF(e){if(e===null)return null;if(!e||typeof e!="object")throw new Error(V("client.invalidEnvironmentBuild"));const t=e;if(typeof t.versionId!="string"||!h0e.has(t.status)||typeof t.image!="string"||typeof t.error!="string"||typeof t.createdAt!="string"||typeof t.updatedAt!="string"||t.resources!==null&&typeof t.resources!="object")throw new Error(V("client.invalidEnvironmentBuild"));const n=Array.isArray(t.steps)?t.steps.map(i=>{if(!i||typeof i!="object"||typeof i.key!="string"||typeof i.label!="string"||!["pending","running","succeeded","failed"].includes(i.status)||i.startedAt!==null&&typeof i.startedAt!="string"||i.finishedAt!==null&&typeof i.finishedAt!="string")throw new Error(V("client.invalidEnvironmentBuildStep"));return i}):[];return{...t,toolId:typeof t.toolId=="string"?t.toolId:"",toolStatus:["creating","ready","failed"].includes(t.toolStatus)?t.toolStatus:"",runId:typeof t.runId=="string"?t.runId:"",currentStep:typeof t.currentStep=="string"?t.currentStep:"",sourceCommitSha:typeof t.sourceCommitSha=="string"?t.sourceCommitSha:"",steps:n,progressError:typeof t.progressError=="string"?t.progressError:"",logTail:typeof t.logTail=="string"?t.logTail:"",logTruncated:t.logTruncated===!0,logUpdatedAt:typeof t.logUpdatedAt=="string"?t.logUpdatedAt:null,logError:typeof t.logError=="string"?t.logError:""}}function p0e(e){if(!e||typeof e!="object")throw new Error(V("client.invalidEnvironmentManifest"));const t=e;if(!["agentkit.studio/v3","agentkit.studio/v1alpha1"].includes(t.apiVersion)||t.kind!=="Environment"||!t.metadata||typeof t.metadata.id!="string"||typeof t.metadata.name!="string"||typeof t.metadata.version!="string"||typeof t.metadata.description!="string"||!t.spec||typeof t.spec.image!="string"||!["ubuntu","aio-sandbox","codex-sandbox"].includes(t.spec.baseEnvironment)||typeof t.spec.baseImage!="string"||!["ubuntu-22.04","ubuntu-24.04"].includes(t.spec.operatingSystem)||!["python-3.10","python-3.12"].includes(t.spec.language)||t.spec.executionRuntime!=="veadk"||!Array.isArray(t.spec.packages)||!t.spec.packages.every(n=>typeof n=="string")||!Array.isArray(t.spec.capabilities)||!t.spec.capabilities.every(n=>typeof n=="string")||!Array.isArray(t.spec.skills)||!t.status||!h0e.has(t.status.phase)||typeof t.status.createdAt!="string"||typeof t.status.updatedAt!="string")throw new Error(V("client.invalidEnvironmentManifest"));return t}function m0e(e){if(e==null)return;if(!e||typeof e!="object")throw new Error(V("client.invalidImageRepository"));const t=e;if(typeof t.region!="string"||typeof t.registry!="string"||typeof t.namespace!="string"||typeof t.repository!="string")throw new Error(V("client.invalidImageRepository"));return t}function KBe(e){if(e==null)return;if(!e||typeof e!="object")throw new Error(V("client.invalidCodeRepository"));const t=e;if(typeof t.repositoryUrl!="string"||t.ref!==void 0&&typeof t.ref!="string"||typeof t.dockerfilePath!="string")throw new Error(V("client.invalidCodeRepository"));return t}function XBe(e){const t=m0e(e);if(!t)return;const n=e;if(typeof n.reference!="string")throw new Error(V("client.invalidImageSource"));return{...t,reference:n.reference}}function e7(e){if(!e||typeof e!="object")throw new Error(V("client.invalidEnvironment"));const t=e;if(typeof t.id!="string"||typeof t.name!="string"||typeof t.description!="string"||t.baseEnvironment!==void 0&&t.baseEnvironment!=="ubuntu"&&t.baseEnvironment!=="aio-sandbox"&&t.baseEnvironment!=="codex-sandbox"||t.operatingSystem!=="ubuntu-22.04"&&t.operatingSystem!=="ubuntu-24.04"||t.language!=="python-3.10"&&t.language!=="python-3.12"||!Array.isArray(t.optionIds)||!t.optionIds.every(n=>typeof n=="string")||t.selectedSkills!==void 0&&!Array.isArray(t.selectedSkills)||typeof t.dockerfile!="string"||typeof t.createdAt!="string"||typeof t.updatedAt!="string")throw new Error(V("client.invalidEnvironment"));return{...t,baseEnvironment:t.baseEnvironment==="aio-sandbox"?"aio-sandbox":t.baseEnvironment==="codex-sandbox"?"codex-sandbox":"ubuntu",selectedSkills:t.selectedSkills??[],gitSource:KBe(t.gitSource),containerRepository:m0e(t.containerRepository),imageSource:XBe(t.imageSource),latestVersion:JF(t.latestVersion)}}function g0e(e){if(!e||typeof e!="object")throw new Error(V("client.invalidWorkspace"));const t=e;if(typeof t.id!="string"||typeof t.name!="string"||typeof t.description!="string"||!Array.isArray(t.environmentIds)||!t.environmentIds.every(n=>typeof n=="string")||typeof t.createdAt!="string"||typeof t.updatedAt!="string")throw new Error(V("client.invalidWorkspace"));return t}async function t7(e){const t=await kt("/web/workspaces",{signal:e});if(!t.ok)throw new Error(await on(t,V("client.loadWorkspacesFailed")));const n=await t.json();if(!Array.isArray(n.items))throw new Error(V("client.invalidWorkspaceList"));return n.items.map(g0e)}async function b0e(e,t,n,i){const r=await kt(e,{method:t,headers:{"Content-Type":"application/json"},body:JSON.stringify(n),signal:i});if(!r.ok)throw new Error(await on(r,V("client.saveWorkspaceFailed")));return g0e(await r.json())}function y0e(e,t){return b0e("/web/workspaces","POST",e,t)}function v0e(e,t,n){return b0e(`/web/workspaces/${encodeURIComponent(e)}`,"PATCH",t,n)}async function x0e(e,t){const n=await kt(`/web/workspaces/${encodeURIComponent(e)}`,{method:"DELETE",signal:t});if(!n.ok)throw new Error(await on(n,V("client.deleteWorkspaceFailed")))}async function Vk(e){const t=await kt("/web/v3/environments",{signal:e});if(!t.ok)throw new Error(await on(t,V("client.loadEnvironmentsFailed")));const n=await t.json();if(!Array.isArray(n.items))throw new Error(V("client.invalidEnvironmentList"));return n.items.map(e7)}async function w0e(e,t){const n=await kt("/web/v3/environment-repositories/inspect",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),signal:t});if(!n.ok)throw new Error(await on(n,V("client.probeRepositoryFailed")));const i=await n.json();if(typeof i.repositoryUrl!="string"||typeof i.ref!="string"||typeof i.commitSha!="string"||!Array.isArray(i.dockerfiles)||!i.dockerfiles.every(r=>typeof r=="string"))throw new Error(V("client.invalidRepositoryProbe"));return i}async function O0e(e,t){const n=await kt(`/web/v3/environments/${encodeURIComponent(e)}/share-code`,{method:"POST",signal:t});if(!n.ok)throw new Error(await on(n,V("client.exportEnvironmentCodeFailed")));const i=await n.json();if(typeof i.shareCode!="string"||typeof i.name!="string")throw new Error(V("client.invalidEnvironmentCode"));return i}async function S0e(e,t){const n=await kt("/web/v3/environment-share-codes/inspect",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({shareCodes:e}),signal:t});if(!n.ok)throw new Error(await on(n,V("client.inspectEnvironmentCodeFailed")));const i=await n.json();if(!Array.isArray(i.items))throw new Error(V("client.invalidEnvironmentCodeInspection"));return i.items.map(r=>{if(!r||typeof r!="object")throw new Error(V("client.invalidEnvironmentCodeInspection"));const s=r,a=s.status==="valid"||s.valid===!0?"valid":s.status==="invalid"||s.valid===!1?"invalid":null;if(!Number.isInteger(s.index)||a===null||s.name!==void 0&&typeof s.name!="string"||s.error!==void 0&&typeof s.error!="string")throw new Error(V("client.invalidEnvironmentCodeInspection"));return{index:s.index,status:a,name:s.name??"",error:s.error??""}})}async function k0e(e,t){const n=await kt("/web/v3/environment-share-codes/import",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({shareCodes:e}),signal:t});if(!n.ok)throw new Error(await on(n,V("client.importEnvironmentCodeFailed")));const i=await n.json();if(!Array.isArray(i.items))throw new Error(V("client.invalidEnvironmentCodeImport"));return i.items.map(r=>{if(!r||typeof r!="object")throw new Error(V("client.invalidEnvironmentCodeImport"));const s=r;if(!Number.isInteger(s.index)||!(s.status==="created"||s.status==="duplicate"||s.status==="failed")||s.name!==void 0&&typeof s.name!="string"||s.error!==void 0&&typeof s.error!="string")throw new Error(V("client.invalidEnvironmentCodeImport"));return{index:s.index,status:s.status,name:s.name??"",environment:s.environment===void 0||s.environment===null?void 0:e7(s.environment),error:s.error??""}})}async function E0e(e,t,n,i){let r;try{r=await kt(e,{method:t,headers:{"Content-Type":"application/json"},body:JSON.stringify(n),signal:i})}catch(s){throw s instanceof DOMException&&s.name==="AbortError"?s:s instanceof TypeError?new Error(V("client.studioUnavailable")):s}if(!r.ok)throw new Error(await on(r,V("client.saveEnvironmentFailed")));return e7(await r.json())}function C0e(e,t){return E0e("/web/v3/environments","POST",e,t)}function T0e(e,t,n){return E0e(`/web/v3/environments/${encodeURIComponent(e)}`,"PATCH",t,n)}async function A0e(e,t){const n=await kt(`/web/v3/environments/${encodeURIComponent(e)}`,{method:"DELETE",signal:t});if(!n.ok)throw new Error(await on(n,V("client.deleteEnvironmentFailed")))}async function S4(e,t){const n=await kt(`/web/v3/environments/${encodeURIComponent(e)}/build`,{method:"POST",signal:t});if(!n.ok)throw new Error(await on(n,V("client.startEnvironmentBuildFailed")));const i=JF(await n.json());if(!i)throw new Error(V("client.invalidEnvironmentBuild"));return i}async function _0e(e,t,n={}){const i=n.includeLogs?"?includeLogs=true":"",r=await kt(`/web/v3/environments/${encodeURIComponent(e)}/builds/${encodeURIComponent(t)}${i}`,{signal:n.signal});if(!r.ok)throw new Error(await on(r,V("client.loadEnvironmentBuildFailed")));const s=JF(await r.json());if(!s)throw new Error(V("client.invalidEnvironmentBuild"));return s}async function N0e(e,t,n){const i=await kt(`/web/v3/environments/${encodeURIComponent(e)}/builds/${encodeURIComponent(t)}/manifest`,{signal:n});if(!i.ok)throw new Error(await on(i,V("client.loadEnvironmentManifestFailed")));return p0e(await i.json())}function AW(e){if(!e||typeof e!="object")throw new Error(V("client.invalidEnvironmentResource"));const t=e;if(t.source!=="provided"&&t.source!=="managed"||typeof t.consoleUrl!="string")throw new Error(V("client.invalidEnvironmentResource"));return t}async function j0e(e){const t=await kt("/web/v3/environment-resources",{signal:e});if(!t.ok)throw new Error(await on(t,V("client.loadEnvironmentResourcesFailed")));const n=await t.json();if(n.provider!=="volcengine"&&n.provider!=="byteplus"||typeof n.region!="string")throw new Error(V("client.invalidEnvironmentResource"));return{provider:n.provider,region:n.region,codePipeline:AW(n.codePipeline),containerRegistry:AW(n.containerRegistry)}}async function YBe(e,t){const n=await kt(`/web/system-info/sandbox-tools/${encodeURIComponent(e)}/model-env`,{method:"POST",signal:t});if(!n.ok)throw new Error(await on(n,V("client.updateCodexSandboxFailed")));const i=await n.json();if(i.kind!=="codex"&&i.kind!=="codex_snapshot"||typeof i.toolId!="string"||typeof i.updated!="boolean")throw new Error(V("client.invalidCodexSandboxUpdate"));return i}async function aR(e){const t=await kt("/web/identity/user-pools",{signal:e});if(!t.ok)throw new Error(await on(t,V("client.loadUserPoolsFailed")));const n=await t.json();if(!Array.isArray(n.items))throw new Error(V("client.invalidUserPoolList"));return n.items.map(i=>{if(!i||typeof i!="object"||typeof i.uid!="string"||typeof i.name!="string"||typeof i.domain!="string"||typeof i.region!="string"||typeof i.isCurrent!="boolean")throw new Error(V("client.invalidUserPoolList"));return i})}const vO=new Map;function ZBe(e){if(typeof e=="string")return e?{message:e}:null;if(!e||typeof e!="object"||Array.isArray(e))return null;const t=e,n=typeof t.message=="string"?t.message:typeof t.error=="string"?t.error:"";return n?{message:n,phase:typeof t.phase=="string"?t.phase:void 0,runtimeId:typeof t.runtimeId=="string"?t.runtimeId:void 0,logPath:typeof t.logPath=="string"?t.logPath:void 0}:null}class xO extends Error{constructor(t){super(t.message),this.detail=t,this.name="GithubCicdPipelineError"}}async function Mh(e){const t=await e.text().catch(()=>"");if(t)try{const n=JSON.parse(t),i=ZBe(n.detail??n.error);if(i)return new xO(i)}catch{return new xO({message:t})}return new xO({message:V("client.syncGithubFailed",{status:e.status})})}async function R0e(e){const t=await kt("/web/github-delivery/source-sync",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({project:e.project,githubUrl:e.githubUrl,githubToken:e.githubToken,baseBranch:e.baseBranch,region:e.region,cloudProvider:e.cloudProvider})},{},0);if(!t.ok)throw await Mh(t);return t.json()}async function I0e(e){const t=await kt("/web/github-delivery/cicd-pipeline",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({githubUrl:e.githubUrl,githubToken:e.githubToken,baseBranch:e.baseBranch,runtimeName:e.runtimeName,runtimeId:e.runtimeId,region:e.region,cloudProvider:e.cloudProvider,projectPath:e.projectPath??".",volcengineAccessKey:e.volcengineAccessKey,volcengineSecretKey:e.volcengineSecretKey,volcengineSessionToken:e.volcengineSessionToken??""})},{},0);if(!t.ok)throw await Mh(t);return t.json()}async function P0e(e){const t=await kt("/web/github-delivery/init-main",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({project:e.project,githubUrl:e.githubUrl,githubToken:e.githubToken,baseBranch:e.baseBranch,runtimeName:e.runtimeName,runtimeId:e.runtimeId,region:e.region,cloudProvider:e.cloudProvider,projectPath:e.projectPath??".",volcengineAccessKey:e.volcengineAccessKey,volcengineSecretKey:e.volcengineSecretKey,volcengineSessionToken:e.volcengineSessionToken??""})},{},0);if(!t.ok)throw await Mh(t);return t.json()}async function JBe(e){const t=await kt("/web/github-delivery/source-sync/cicd",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({pipelineId:e.pipelineId,runtimeName:e.runtimeName,runtimeId:e.runtimeId,region:e.region,cloudProvider:e.cloudProvider,projectPath:e.projectPath??".",volcengineAccessKey:e.volcengineAccessKey,volcengineSecretKey:e.volcengineSecretKey,volcengineSessionToken:e.volcengineSessionToken??""})},{},0);if(!t.ok)throw await Mh(t);return t.json()}async function D0e(e){const t=await kt(`/web/github-cicd/runtime-binding?runtimeId=${encodeURIComponent(e)}`);if(!t.ok)throw await Mh(t);const n=await t.json();return n.pipelineId?n:null}async function nA(e){const t=await kt(`/web/github-delivery/versions?runtimeId=${encodeURIComponent(e)}`);if(!t.ok)throw await Mh(t);return t.json()}async function M0e(e){const t=await kt("/web/github-delivery/rollback-pr",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw await Mh(t);return t.json()}async function n7(e){const t=await kt("/web/github-cicd/runtime-binding",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw await Mh(t);return t.json()}async function L0e(e){const t=await kt("/web/github-cicd/runtime-sync",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtimeId:e.runtimeId,project:e.project})},{},0);if(!t.ok)throw await Mh(t);return t.json()}async function Ax(e,t,n,i){var f,h,m,g,b;const r=i==null?void 0:i.taskId,s=r?new AbortController:void 0;r&&s&&vO.set(r,s);const a=()=>{r&&vO.get(r)===s&&vO.delete(r)};let l;try{const v=!!(i!=null&&i.migrationTaskId);(f=i==null?void 0:i.onStage)==null||f.call(i,{level:"info",phase:"upload",message:V(v?"client.validatingMigrationArtifact":"client.uploadingCodePackage"),pct:0}),l=await kt("/web/deploy-agentkit",{method:"POST",headers:{"Content-Type":"application/json"},signal:s==null?void 0:s.signal,body:JSON.stringify({name:e,files:v?[]:t,config:n,taskId:r,migrationTaskId:i==null?void 0:i.migrationTaskId,runtimeId:i==null?void 0:i.runtimeId,runtimeName:i==null?void 0:i.runtimeName,appName:i==null?void 0:i.appName,editMode:i==null?void 0:i.editMode,draft:i==null?void 0:i.draft,updateEtag:i==null?void 0:i.updateEtag,baseRuntimeVersion:i==null?void 0:i.baseRuntimeVersion,removeRuntimeEnvKeys:i==null?void 0:i.removeRuntimeEnvKeys,mcpSecretValues:i==null?void 0:i.mcpSecretValues,mcpCredentialReuses:i==null?void 0:i.mcpCredentialReuses,sessionStorage:i==null?void 0:i.sessionStorage,minInstance:i==null?void 0:i.minInstance,maxInstance:i==null?void 0:i.maxInstance,createEvaluationSets:i==null?void 0:i.createEvaluationSets,description:gBe((i==null?void 0:i.description)??""),authentication:i==null?void 0:i.authentication,im:i==null?void 0:i.im,envs:i==null?void 0:i.envs,resources:i==null?void 0:i.resources,source:(i==null?void 0:i.source)??(i!=null&&i.migrationTaskId?{kind:"migration",migrationId:i.migrationTaskId}:{kind:"inlineFiles"}),harnessSidecar:i==null?void 0:i.harnessSidecar,environment:i==null?void 0:i.environment})},{},0),(h=i==null?void 0:i.onStage)==null||h.call(i,{level:"success",phase:"upload",message:V(v?"client.migrationArtifactValidated":"client.codePackageUploaded"),pct:100})}catch(v){throw a(),EW(v)?v:new jw({taskId:r,cause:v})}if(!l.ok){const v=await on(l,V("client.deploymentFailed"));throw a(),new Error(v)}let c=null;try{for await(const v of eR(l)){const y=v;if(y&&y.done){c=y;break}y&&y.message&&((m=i==null?void 0:i.onStage)==null||m.call(i,y))}}catch(v){throw a(),EW(v)?v:new jw({taskId:r,cause:v})}if(a(),!c)throw new jw({taskId:r});if(!c.success){const v=new Error(c.error||V("client.deploymentFailed"));throw Ibe(v)?new jw({taskId:r,cause:v}):v}if(!c.agentName)throw new Error(V("client.deploymentMissingAgentName"));if(!c.runtimeId&&!c.url)throw new Error(V("client.deploymentMissingConnection"));const u=(g=c.runtimeName)!=null&&g.trim()?c.agentName:e,d=((b=c.runtimeName)==null?void 0:b.trim())||c.agentName;return{apikey:c.apikey??"",url:c.url??"",agentName:u,runtimeName:d,runtimeId:c.runtimeId,consoleUrl:c.consoleUrl,region:c.region,version:c.version,warnings:c.warnings,feishuChannel:c.feishuChannel}}async function $0e(e){var n;const t=await kt("/web/cancel-deploy-agentkit",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({taskId:e})});if(!t.ok){const i=await t.text().catch(()=>"");throw new Error(i||V("client.cancelDeploymentFailed",{status:t.status}))}(n=vO.get(e))==null||n.abort(),vO.delete(e)}async function eUe(e=BF){const t=await kt(`/web/my-runtimes?region=${encodeURIComponent(e)}`);if(!t.ok)throw new Error(V("client.loadFailed",{status:t.status}));return(await t.json()).runtimes??[]}const bS={title:"AgentKit Studio",logoUrl:""},k4={enabled:!1},PD={studio:!1,version:"",provider:"volcengine",branding:bS,features:{newChat:!0,search:!0,skillCenter:!0,history:!0,addAgent:!0,manageAgents:!0,agentUsage:!1,addAgentkit:!0,generatedAgentTestRun:!0},defaultView:"chat",agentsSource:"local",telemetry:k4};function tUe(e){if(!e||typeof e!="object")return k4;const t=e;if(t.enabled!==!0||!t.studio||typeof t.studio!="object")return k4;const n=t.studio;return{enabled:!0,studio:{deployId:typeof n.deployId=="string"?n.deployId:"",userPoolId:typeof n.userPoolId=="string"?n.userPoolId:"",applicationId:typeof n.applicationId=="string"?n.applicationId:"",functionId:typeof n.functionId=="string"?n.functionId:"",region:typeof n.region=="string"?n.region:"",project:typeof n.project=="string"?n.project:"",version:typeof n.version=="string"?n.version:"",accountId:typeof n.accountId=="string"?n.accountId:"",accountIdResolutionError:typeof n.accountIdResolutionError=="string"?n.accountIdResolutionError:""}}}async function F0e(){var e,t;try{const n=await kt("/web/ui-config");if(!n.ok)return PD;const i=await n.json(),r=typeof((e=i.branding)==null?void 0:e.logoUrl)=="string"?i.branding.logoUrl:bS.logoUrl,s=i.provider==="byteplus"?"byteplus":"volcengine";return Qbe(s),{studio:i.studio??!1,version:typeof i.version=="string"?i.version:"",provider:s,branding:{title:typeof((t=i.branding)==null?void 0:t.title)=="string"?i.branding.title:bS.title,logoUrl:r?Uo(r):""},features:{...PD.features,...i.features??{}},defaultView:i.defaultView??"chat",agentsSource:i.agentsSource==="cloud"?"cloud":"local",telemetry:tUe(i.telemetry)}}catch{return PD}}const B0e={role:"user",telemetry:{userId:"",accountId:""},capabilities:{createAgents:!1,createPersonalAgents:!1,manageAgents:!1,runtimeScope:"mine"}};async function U0e(){var n,i,r,s,a;const e=await kt("/web/access");if(!e.ok)throw new Error(V("client.loadPermissionsFailed",{status:e.status}));const t=await e.json();if(!["admin","developer","user"].includes(t.role)||typeof((n=t.telemetry)==null?void 0:n.userId)!="string"||t.telemetry.accountId!==void 0&&typeof t.telemetry.accountId!="string"||typeof((i=t.capabilities)==null?void 0:i.createAgents)!="boolean"||typeof((r=t.capabilities)==null?void 0:r.createPersonalAgents)!="boolean"||typeof((s=t.capabilities)==null?void 0:s.manageAgents)!="boolean"||!["all","mine"].includes((a=t.capabilities)==null?void 0:a.runtimeScope))throw new Error(V("client.invalidPermissionResponse"));return t}async function Q0e(e,t){const n=new URLSearchParams;e&&n.set("targetVersion",e),t&&n.set("startedAt",String(t));const i=n.size?`?${n.toString()}`:"",r=await kt(`/web/studio-update${i}`);if(!r.ok)throw new Error(V("client.checkStudioUpdateFailed",{status:r.status}));return await r.json()}async function z0e(){const e=await kt("/web/studio-update/permissions");if(!e.ok){let t="";try{const n=await e.json();t=typeof n.detail=="string"?n.detail:""}catch{t=""}throw new Error(t||V("client.studioUpdatePreflightFailed",{status:e.status}))}return await e.json()}async function V0e(e){const t=await kt("/web/studio-update",{method:"POST",headers:{"Content-Type":"application/json","X-VeADK-Studio-Update":"1"},body:JSON.stringify({version:e})},{},is);if(!t.ok){let n="";try{const i=await t.json();n=typeof i.detail=="string"?i.detail:""}catch{n=""}throw new Error(n||V("client.submitStudioUpdateFailed",{status:t.status}))}return await t.json()}async function H0e({runtimeId:e,region:t,appName:n,page:i=1,pageSize:r=20,signal:s}){const a=new URLSearchParams({runtimeId:e,region:t,appName:n,page:String(i),pageSize:String(r)}),l=await kt(`/web/agent-usage?${a.toString()}`,{signal:s});if(!l.ok)throw new Error(await on(l,V("client.loadAgentUsageFailed")));const c=l.headers.get("content-type")||V("client.notProvided"),u=c.toLowerCase();if(!u.includes("application/json")&&!u.includes("+json"))throw new Error(V("client.agentUsageNonJson",{status:l.status,contentType:c})+V("client.checkStudioGateway"));try{return await l.json()}catch{throw new Error(V("client.agentUsageInvalidJson",{status:l.status,contentType:c})+V("client.retryCheckGateway"))}}function Lh(e=""){return`/web/cronjobs${e?`/${encodeURIComponent(e)}`:""}`}async function E4(e){const t=await kt(Lh(),{signal:e});if(!t.ok)throw new Error(await on(t,V("client.loadCronJobsFailed")));const n=await t.json();return Array.isArray(n)?n:n.items??[]}async function nUe(e,t){const n=await kt(Lh(e),{signal:t});if(!n.ok)throw new Error(await on(n,V("client.loadCronJobFailed")));return await n.json()}async function q0e(e){const t=await kt(Lh(),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw new Error(await on(t,V("client.createCronJobFailed")));return await t.json()}async function W0e(e,t){const n=await kt(`${Lh(e)}/update`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});if(!n.ok)throw new Error(await on(n,V("client.updateCronJobFailed")));return await n.json()}async function G0e(e,t){const n=t?"enable":"disable",i=await kt(`${Lh(e)}/${n}`,{method:"POST"});if(!i.ok)throw new Error(await on(i,V(t?"client.enableCronJobFailed":"client.pauseCronJobFailed")));return await i.json()}async function K0e(e){const t=await kt(`${Lh(e)}/run`,{method:"POST"});if(!t.ok)throw new Error(await on(t,V("client.runCronJobFailed")));return await t.json()}async function C4(e,t){const n=await kt(`${Lh(e)}/runs`,{signal:t});if(!n.ok)throw new Error(await on(n,V("client.loadCronHistoryFailed")));const i=await n.json();return Array.isArray(i)?i:i.items??[]}async function X0e(e,t){const n=await kt(`${Lh(e)}/runs/${encodeURIComponent(t)}/cancel`,{method:"POST"});if(!n.ok)throw new Error(await on(n,V("client.stopCronRunFailed")));return await n.json()}async function Y0e(e){const t=await kt(Lh(e),{method:"DELETE"});if(!t.ok)throw new Error(await on(t,V("client.deleteCronJobFailed")))}class i7 extends Error{constructor(t,n){super(t),this.status=n,this.name="RuntimeListError"}}async function _x(e={}){const t=new URLSearchParams({scope:e.scope??"all",page_size:String(e.pageSize??30),region:e.region??"all"});e.nextToken&&t.set("next_token",e.nextToken);const n=await kt(`/web/runtimes?${t.toString()}`,{signal:e.signal});if(!n.ok){const r=await on(n,V("client.loadRuntimeFailed"));throw new i7(r,n.status)}const i=await n.json();return{runtimes:i.runtimes??[],nextToken:i.nextToken??""}}async function Fv(e,t,n={}){if(n.preferCached){const i=qF(e,t,n.currentVersion),r=Xy.get(i);if(r&&r.expiresAt>Date.now())return[...r.apps];r&&Xy.delete(i)}try{const i={runtimeId:e,region:t,runtimeVersion:n.currentVersion};return n.retryProbe&&(i.retryProbe=!0),await zk("","",i,n.signal,n.timeoutMs)}catch(i){if(i instanceof Cx||i instanceof Ds||i instanceof Error)throw i;return null}}async function Z0e(e,t){const n=new URLSearchParams({region:t}),i=await kt(`/web/runtime-tool-channel/${encodeURIComponent(e)}/capabilities?${n.toString()}`);if(!i.ok)throw new Ds(await on(i,V("client.loadLocalToolsFailed")),!1,!0);return await i.json()}async function J0e(e,t){const n=new URLSearchParams({region:t}),i=await kt(`/web/runtime-route-channel/${encodeURIComponent(e)}/connect?${n.toString()}`,{method:"POST"});if(!i.ok)throw new Ds(await on(i,V("client.connectDynamicRouteFailed")),!1,!0);return await i.json()}async function eye(e,t,n={}){const i={runtimeId:e,region:t};n.retryProbe&&(i.retryProbe=!0);const r=await kt("/.well-known/agent-card.json",{},i),s=await zbe(r);if(s==="runtime_access_denied")throw new Cx;if(s==="runtime_private_endpoint_unreachable")throw new Ds(Fbe());if(["runtime_proxy_connect_error","runtime_proxy_timeout"].includes(s))throw new Ds(Bbe());if(r.status===404)return null;if(r.status===401||r.status===403)throw new Ds(V("client.a2aProbeDenied"));if(!r.ok)throw new Error(await on(r,V("client.loadA2aCardFailed")));const a=await r.json().catch(()=>null),l=typeof(a==null?void 0:a.url)=="string"?a.url.trim():"";return l?{name:typeof(a==null?void 0:a.name)=="string"?a.name:"",description:typeof(a==null?void 0:a.description)=="string"?a.description:"",endpoint:l}:null}async function tye(e,t){const n=new URLSearchParams({runtimeId:e,region:t}),i=await kt(`/web/runtime-api-key/reveal?${n.toString()}`,{method:"POST",cache:"no-store"});if(!i.ok)throw new Error(await on(i,V("client.loadRuntimeApiKeyFailed")));const r=await i.json();if(typeof r.apiKey!="string"||!r.apiKey)throw new Error(V("client.runtimeApiKeyMissing"));return r.apiKey}async function nye(e,t){const n=await kt("/web/delete-runtime",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtimeId:e,region:t})});if(!n.ok){const i=await n.text().catch(()=>"");throw new Error(i||V("client.deleteFailed",{status:n.status}))}}function iA({runtimeId:e,region:t,appName:n,currentVersion:i}){return qb(gS,t,e,i??"",(n==null?void 0:n.trim())??"")}async function iUe({runtimeId:e,region:t,appName:n,currentVersion:i,force:r=!1}){const s=new URLSearchParams({runtimeId:e,region:t});n&&s.set("appName",n),i!=null&&s.set("currentVersion",String(i)),r&&s.set("refresh","true");const a=await kt(`/web/runtime-update-capability?${s.toString()}`);if(!a.ok)throw new Error(await rUe(a));return await a.json()}function oR({runtimeId:e,region:t,appName:n,currentVersion:i,signal:r,force:s=!1}){var u,d;const a={runtimeId:e,region:t,appName:n,currentVersion:i},l=iA(a);if(s&&kr.delete(l),!s){const f=Lm(kr,l,Tx);if(f)return ZC(Promise.resolve(f),r);const h=(u=kr.get(l))==null?void 0:u.promise;if(h)return ZC(h,r);if(n){const m=iA({...a,appName:""}),g=(d=kr.get(m))==null?void 0:d.promise;if(g){let b;return b=g.then(v=>{var x,O,w,k,S;if(v.recoveryStatus==="preparing")return((x=kr.get(l))==null?void 0:x.promise)===b&&kr.delete(l),v;const y=((w=(O=v.agent)==null?void 0:O.appName)==null?void 0:w.trim())??"";return y&&y!==n.trim()?(((k=kr.get(l))==null?void 0:k.promise)===b&&kr.delete(l),oR(a)):(((S=kr.get(l))==null?void 0:S.promise)===b&&kr.set(l,{value:v,updatedAt:Date.now()}),v)},v=>{var y;throw((y=kr.get(l))==null?void 0:y.promise)===b&&kr.delete(l),v}),kr.set(l,{promise:b,updatedAt:0}),ZC(b,r)}}}let c;return c=iUe({...a,force:s}).then(f=>{var h,m,g,b,v;if(f.recoveryStatus==="preparing")return((h=kr.get(l))==null?void 0:h.promise)===c&&kr.delete(l),f;if(((m=kr.get(l))==null?void 0:m.promise)===c){kr.set(l,{value:f,updatedAt:Date.now()});const y=new Set(["",((b=(g=f.agent)==null?void 0:g.appName)==null?void 0:b.trim())??""]);for(const x of y){const O=iA({...a,appName:x});O!==l&&!((v=kr.get(O))!=null&&v.promise)&&kr.set(O,{value:f,updatedAt:Date.now()})}}return f},f=>{var h;throw((h=kr.get(l))==null?void 0:h.promise)===c&&kr.delete(l),f}),kr.set(l,{promise:c,updatedAt:0}),ZC(c,r)}function T4({runtimeId:e,region:t,appName:n,currentVersion:i}){return Lm(kr,iA({runtimeId:e,region:t,appName:n,currentVersion:i}),Tx)}function A4(e){return oR(e).then(()=>{},()=>{})}function _4(e,t){if(!e){kr.clear();return}for(const n of kr.keys()){const[i,r,s]=n.split("");i===gS&&s===e&&(!t||r===t)&&kr.delete(n)}}async function rUe(e){const t=await e.json().catch(()=>null),n=typeof(t==null?void 0:t.detail)=="string"?t.detail:"";return e.status===403?V("client.runtimeManageForbidden"):e.status===404?V(n==="runtime_not_found"?"client.runtimeNotFound":"client.runtimeUnavailable"):V("client.checkRuntimeUpdateFailed",{status:e.status})}async function sUe(e,t){let n=null;for(const i of Qk(t)){const r=await kt(`/web/runtime-detail?runtimeId=${encodeURIComponent(e)}®ion=${encodeURIComponent(i)}`);if(r.ok)return r.json();n=new Error(await on(r,V("client.loadRuntimeDetailFailed")))}throw n??new Error(V("client.loadRuntimeDetailFailed"))}async function r7(e,t="cn-beijing",n={}){const i=qb(e,t||"cn-beijing"),r=Lm(xg,i,Tx);if(!n.force&&r)return r;const s=xg.get(i);if(!n.force&&(s!=null&&s.promise))return s.promise;const a=sUe(e,t).then(l=>WF(xg,i,l));xg.set(i,{...s,promise:a,updatedAt:(s==null?void 0:s.updatedAt)??0});try{return await a}finally{const l=xg.get(i);(l==null?void 0:l.promise)===a&&xg.set(i,{value:l.value,updatedAt:l.updatedAt})}}function iye(e,t="cn-beijing"){return Lm(xg,qb(e,t||"cn-beijing"),Tx)}function rye(e,t="cn-beijing"){r7(e,t).catch(()=>{})}async function wO(e){const t=await kt("/web/generated-agent-projects",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({draft:e})});if(!t.ok)throw new Error(await on(t,V("client.generateProjectFailed")));return t.json()}const aUe=19e4;async function sye(e){const t=await kt("/web/generated-agent-drafts",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({requirement:e})},{},aUe);if(!t.ok)throw new Error(await on(t,V("client.generateAgentConfigFailed")));return Jj(t,V("client.generateAgentConfigFailed"))}async function aye(e,t){const n=await kt("/web/generated-agent-test-runs",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({draft:e,runtimeId:t==null?void 0:t.runtimeId,runtimeRegion:t==null?void 0:t.region})});if(!n.ok)throw new Error(await on(n,V("client.createDebugRunFailed")));return Jj(n,V("client.createDebugRunFailed"))}async function oye(e,t){const n=await kt(`/web/generated-agent-test-runs/${e}/sessions`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({userId:t})});if(!n.ok)throw new Error(await on(n,V("client.createDebugSessionFailed")));return(await Jj(n,V("client.createDebugSessionFailed"))).id}async function lye(e,t){const n=await kt(`/web/generated-agent-test-runs/${encodeURIComponent(e)}/trace/session/${encodeURIComponent(t)}`);if(!n.ok)throw new Error(await on(n,V("client.loadDebugTraceFailed")));const i=await Jj(n,V("client.loadDebugTraceFailed"));if(!Array.isArray(i))throw new Error(V("client.invalidDebugTrace"));return i}async function*cye({runId:e,userId:t,sessionId:n,text:i,signal:r}){const s=i.trim()?[{text:i}]:[],a=o0e(r);let l;try{l=await kt(`/web/generated-agent-test-runs/${e}/run_sse`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({user_id:t,session_id:n,new_message:{role:"user",parts:s},streaming:!0}),signal:a.signal},{},0)}catch(c){throw a.cleanup(),a.timedOut()?new Error($v()):c}if(!l.ok)throw a.cleanup(),new Error(await on(l,V("client.debugRunFailed")));try{for await(const c of eR(l))a.clearDeadline(),yield c}catch(c){throw a.timedOut()?new Error($v()):c}finally{a.cleanup()}}async function ey(e){const t=await kt(`/web/generated-agent-test-runs/${e}`,{method:"DELETE"});if(!t.ok&&t.status!==404)throw new Error(await on(t,V("client.cleanupDebugRunFailed")))}function uye(e){if(!e||typeof e!="object")throw new Error(V("client.invalidSandboxVersion"));const t=e;if(typeof t.toolId!="string"||typeof t.error!="string")throw new Error(V("client.invalidSandboxVersion"));if(!t.error&&(t.provider!=="volcengine"&&t.provider!=="byteplus"||typeof t.region!="string"||typeof t.status!="string"||typeof t.currentImage!="string"||typeof t.latestImage!="string"||typeof t.needsImageUpdate!="boolean"||typeof t.canUpdate!="boolean"||typeof t.needsModelEnvUpdate!="boolean"||typeof t.canUpdateModelEnv!="boolean"||typeof t.modelEnvError!="string"))throw new Error(V("client.invalidSandboxVersion"));return t}async function dye(e){const t=await kt("/web/system-info/sandbox-tools/updates",{signal:e});if(!t.ok)throw new Error(await on(t,V("client.loadSandboxVersionsFailed")));const n=await t.json();if(!Array.isArray(n.tools))throw new Error(V("client.invalidSandboxVersion"));return n.tools.map(uye)}async function fye(e){const t=await kt(`/web/system-info/sandbox-tools/${encodeURIComponent(e)}/update`,{method:"POST"},{},33e4);if(!t.ok)throw new Error(await on(t,V("client.updateSandboxFailed")));const n=await t.json();if(typeof n.updated!="boolean")throw new Error(V("client.invalidSandboxUpdate"));return{updated:n.updated,state:uye(n.state)}}const oUe=Object.freeze(Object.defineProperty({__proto__:null,DEFAULT_SITE_BRANDING:bS,DEFAULT_STUDIO_ACCESS:B0e,GithubCicdPipelineError:xO,RuntimeAccessDeniedError:Cx,RuntimeListError:i7,RuntimeProbeError:Ds,attachGithubDeliveryCicdToSourceSync:JBe,bindGithubCicdRuntime:n7,buildEnvironment:S4,cancelAgentkitDeployment:$0e,cancelCronJobRun:X0e,checkRuntimeNameAvailability:sR,clearMessageFeedbackCache:Pbe,clearRemoteApps:Mbe,componentSearch:r0e,createCronJob:q0e,createEnvironment:C0e,createGeneratedAgentTestRun:aye,createGeneratedAgentTestSession:oye,createGithubCicdPipeline:R0e,createGithubDeliveryCicdPipeline:I0e,createGithubDeliveryRollbackPr:M0e,createSession:Vbe,createWorkspace:y0e,deleteAgentFeedbackCases:Xbe,deleteCronJob:Y0e,deleteEnvironment:A0e,deleteGeneratedAgentTestRun:ey,deleteMedia:eA,deleteRuntime:nye,deleteSession:y4,deleteSessionMedia:v4,deleteWorkspace:x0e,deployAgentkitProject:Ax,downloadArtifact:KF,ensureRuntimeRouteChannel:J0e,exportEnvironmentShareCode:O0e,fetchRemoteApps:zk,generateAgentDraftFromRequirement:sye,generateAgentProject:wO,getAgentFeedbackCases:rR,getAgentInfo:w4,getAgentOptimizations:qbe,getAgentUsage:H0e,getAutomaticEvaluationStatuses:b4,getCachedAgentFeedbackCases:Wbe,getCachedRuntimeAgentInfo:n0e,getCachedRuntimeDetail:iye,getCachedRuntimeUpdateCapability:T4,getCronJob:nUe,getEnvironmentBuild:_0e,getEnvironmentManifest:N0e,getEnvironmentResources:j0e,getGeneratedAgentTestTrace:lye,getGithubCicdRuntimeBinding:D0e,getGithubDeliveryVersions:nA,getMediaCapabilities:qBe,getMyRuntimes:eUe,getRuntimeAgentInfo:YF,getRuntimeDetail:r7,getRuntimeStudioToolCapabilities:Z0e,getRuntimeUpdateCapability:oR,getRuntimes:_x,getSandboxImageUpdates:dye,getSession:iR,getSessionTrace:L_,getStudioAccess:U0e,getStudioUpdatePermissions:z0e,getStudioUpdateStatus:Q0e,getSystemInfo:f0e,getUiConfig:F0e,httpErrorMessage:on,importEnvironmentShareCodes:k0e,initializeGithubDeliveryMain:P0e,inspectEnvironmentRepository:w0e,inspectEnvironmentShareCodes:S0e,invalidateRuntimeUpdateCapabilityCache:_4,listApps:$be,listCronJobRuns:C4,listCronJobs:E4,listDeploymentResources:l0e,listEnvironments:Vk,listIdentityUserPools:aR,listModelApiKeys:HF,listModelOptions:Ex,listSessions:GF,listWorkspaces:t7,mediaContentUrl:e0e,parseEnvironmentManifest:p0e,parseEnvironmentShareCodes:ZF,parsePreparedSessionEnvironmentMounts:c0e,prefetchAgentFeedbackCases:VBe,prefetchRuntimeAgentInfo:i0e,prefetchRuntimeDetail:rye,prefetchRuntimeUpdateCapability:A4,prepareSessionEnvironmentMounts:u0e,previewArtifact:XF,probeRuntimeA2a:eye,probeRuntimeApps:Fv,refreshAgentFeedbackCases:Gbe,registerRemoteApp:Dbe,revealModelApiKey:Lbe,revealRuntimeApiKey:tye,runCronJobNow:K0e,runGeneratedAgentTestSSE:cye,runSSE:O4,runSseEmptyResponseError:a0e,runSseFirstEventTimeoutError:$v,runSseIncompleteResponseError:tA,runtimeRegionCandidates:Qk,setClientCloudProvider:Qbe,setCronJobEnabled:G0e,startStudioUpdate:V0e,studioFetch:An,submitIssueFeedback:x4,submitMessageFeedback:Hbe,syncGithubCicdRuntime:L0e,updateCodexSandboxToolModelEnv:YBe,updateCronJob:W0e,updateEnvironment:T0e,updateSandboxTool:fye,updateWorkspace:v0e,uploadMedia:Zbe,upsertCachedAgentFeedbackCase:J2,webSearch:s0e,writeEnvironmentShareCode:d0e},Symbol.toStringTag,{value:"Module"})),_W=Object.freeze({totalTokenCount:0,promptTokenCount:0,candidatesTokenCount:0,thoughtsTokenCount:0,cachedContentTokenCount:0}),rA=Object.freeze({modelName:"",current:_W,cumulative:_W}),lUe={totalTokenCount:"total_token_count",promptTokenCount:"prompt_token_count",candidatesTokenCount:"candidates_token_count",thoughtsTokenCount:"thoughts_token_count",cachedContentTokenCount:"cached_content_token_count"},cUe=24,uUe=64,dUe=16;function JC(e){var l,c;const t=e.trim();if(!t)return 0;const n=/[\p{Script=Han}\p{Script=Hiragana}\p{Script=Katakana}\p{Script=Hangul}]/gu,i=((l=t.match(n))==null?void 0:l.length)??0,r=t.replace(n," "),s=(r.match(/[A-Za-z0-9_]+/g)??[]).reduce((u,d)=>u+Math.max(1,Math.ceil(d.length/4)),0),a=((c=r.match(/[^\sA-Za-z0-9_]/g))==null?void 0:c.length)??0;return i+s+a}function fUe(e){var l,c,u;const t=((l=e.instruction)==null?void 0:l.trim())??"",n=((c=e.tools)==null?void 0:c.filter(d=>d.trim()))??[],i=((u=e.skills)==null?void 0:u.filter(d=>d.name.trim()))??[],r=JC(t),s=n.reduce((d,f)=>d+uUe+JC(f),0),a=i.reduce((d,f)=>d+dUe+JC(f.name)+JC(f.description??""),0);return cUe+r+s+a}function hUe({usage:e,contextWindow:t,estimatedSystemTokens:n}){const i=Math.max(1,Math.round(t)),r=Math.max(0,e.current.promptTokenCount),s=Math.max(r,e.current.totalTokenCount),a=Math.min(i,r>0?Math.min(r,Math.max(0,n??0)):Math.max(0,n??0)),l=Math.max(0,r-a),c=r>0?Math.max(0,s-r):Math.max(0,s),u=r>0?s:a+c;return{systemTokens:a,inputTokens:l,outputTokens:c,remainingTokens:Math.max(0,i-u),usedTokens:u,contextWindow:i}}function pUe(e){const t=[{kind:"system",tokens:e.systemTokens},{kind:"input",tokens:e.inputTokens},{kind:"output",tokens:e.outputTokens},{kind:"remaining",tokens:e.remainingTokens}],n=e.contextWindow/100;let i=0;const r=t.map(s=>{const a=i;return i+=s.tokens,{...s,start:a,end:i}});return Array.from({length:100},(s,a)=>{const l=a*n,c=l+n,u=r.flatMap(d=>{const f=Math.max(0,Math.min(c,d.end)-Math.max(l,d.start));return f>0?[{kind:d.kind,share:f/n}]:[]});return{index:a,slices:u}})}function L1(e,t){const n=e,i=n[t]??n[lUe[t]];return typeof i=="number"&&Number.isFinite(i)&&i>0?Math.round(i):0}function mUe(e){const t=L1(e,"promptTokenCount"),n=L1(e,"candidatesTokenCount"),i=L1(e,"thoughtsTokenCount");return{totalTokenCount:L1(e,"totalTokenCount")||t+n+i,promptTokenCount:t,candidatesTokenCount:n,thoughtsTokenCount:i,cachedContentTokenCount:L1(e,"cachedContentTokenCount")}}function gUe(e,t){return{totalTokenCount:e.totalTokenCount+t.totalTokenCount,promptTokenCount:e.promptTokenCount+t.promptTokenCount,candidatesTokenCount:e.candidatesTokenCount+t.candidatesTokenCount,thoughtsTokenCount:e.thoughtsTokenCount+t.thoughtsTokenCount,cachedContentTokenCount:e.cachedContentTokenCount+t.cachedContentTokenCount}}function hye(e,t){if(!t)return e;const n=typeof t.modelVersion=="string"?t.modelVersion.trim():"",i=typeof t.model_version=="string"?t.model_version.trim():"",r=n||i||e.modelName,s=t.usageMetadata??t.usage_metadata;if(!s)return r===e.modelName?e:{...e,modelName:r};const a=mUe(s);return a.totalTokenCount===0?r===e.modelName?e:{...e,modelName:r}:{modelName:r,current:a,cumulative:gUe(e.cumulative,a)}}function NW(e){return e.reduce((t,n)=>hye(t,n),rA)}function jW(e){return e.blocks.flatMap(t=>t.kind==="tool"?[{name:t.name,args:t.args,response:t.response,done:t.done}]:[])}function bUe(e){const t=e.attributes;return String(t["invocation.id"]??t["gen_ai.invocation.id"]??t["gcp.vertex.agent.invocation_id"]??"")}function yUe(e,t){if(!t)return e;const n=new Set(e.filter(r=>bUe(r)===t).map(r=>r.trace_id)),i=e.filter(r=>n.has(r.trace_id));return i.length>0?i:e}function bb(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:void 0}function Fp(e){return typeof e=="string"?e:""}function pye(e,t){return e==="pending"||e==="running"||e==="completed"||e==="failed"?e:t}function vUe(e){let t=e;if(typeof t=="string")try{t=JSON.parse(t)}catch{return{}}const n=bb(t)??{};return bb(n.result)??n}function xUe(e){var n;const t=(n=bb(e))==null?void 0:n.branches;return Array.isArray(t)?t.map(i=>{var r;return Fp((r=bb(i))==null?void 0:r.label)}):[]}function mye(e,t,n){const i=xUe(e),r=vUe(t),s=Array.isArray(r.branches)?r.branches:[],a=n==="running"?"running":"pending";return{branches:[0,1].map(c=>{const u=bb(s[c])??{};return{label:Fp(u.label)||i[c]||`方向 ${c+1}`,content:Fp(u.content),status:pye(u.status,a),error:Fp(u.error)}})}}function wUe(e){const t=bb(e),n=bb(t==null?void 0:t.veadkStudioToolProgress);return!n||n.toolName!=="branch_compare"||typeof n.branchIndex!="number"||n.branchIndex<0||n.branchIndex>1?null:{toolName:"branch_compare",requestId:Fp(n.requestId),branchIndex:n.branchIndex,label:Fp(n.label),delta:Fp(n.delta),status:pye(n.status,"running"),error:Fp(n.error)||void 0}}function OUe(e,t,n){return{branches:mye(e,t,"running").branches.map((s,a)=>a===n.branchIndex?{...s,label:n.label||s.label,content:s.content+n.delta,status:n.status,error:n.error??s.error}:s)}}function Ha(e,t){return an.t(`blocks.codexProgress.${e}`,{ns:"conversation",...t})}const gye=28e4;function RW(e){try{return JSON.stringify(e).length}catch{return gye}}function SUe(e){const t=e.slice(-200);let n=t.reduce((i,r)=>i+RW(r),0);for(;t.length>1&&n>gye;)n-=RW(t.shift());return t}function Jl(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:void 0}function Ci(e){return typeof e=="string"?e:""}function s7(e,t=""){const n=Ci(e).toLowerCase();return t.endsWith(".failed")||["failed","error","declined","cancelled"].includes(n)?"failed":t.endsWith(".completed")||["completed","done","success"].includes(n)?"completed":"running"}function bye(e){if(e.response!==void 0)return e.response;if(e.result!==void 0)return e.result;const t=e.aggregatedOutput??e.aggregated_output??e.output,n=e.exitCode??e.exit_code;if(!(t===void 0&&n===void 0))return{...t!==void 0?{output:t}:{},...n!==void 0?{exitCode:n}:{}}}function yye(e){if(e.args!==void 0)return e.args;if(e.arguments!==void 0)return e.arguments;if(e.input!==void 0)return e.input;const t=Ci(e.command),n=Ci(e.cwd);if(t||n)return{...t?{command:t}:{},...n?{cwd:n}:{}};if(e.changes!==void 0)return{changes:e.changes};if(e.approval!==void 0)return e.approval}function wg(e,t,n,i,r){return{kind:"tool",name:e,callId:t,args:i,response:r,done:n!=="running",status:n,...n==="failed"?{defaultOpen:!0}:{}}}function vye(e){const t=Ci(e.id||e.itemId||e.item_id),n=Ci(e.kind);if(!t||!n)return null;const i=s7(e.status),r=Ci(e.text||e.detail||e.delta),s=!Ci(e.text||e.detail)&&typeof e.delta=="string";if(n==="thinking"||n==="reasoning")return r?{id:t,block:{kind:"thinking",text:r,done:i!=="running"},appendText:s}:null;if(n==="commentary")return r?{id:t,block:{kind:"text",text:r},appendText:s}:null;if(["message","text","assistant_final","final"].includes(n))return r?{id:t,block:{kind:"text",text:r},appendText:s,finalAnswer:!0}:null;if(n==="plan"){const a=Array.isArray(e.plan)?e.plan:[];return{id:t,block:{kind:"plan",title:Ci(e.title)||Ha("planTitle"),summary:r||void 0,items:a.flatMap(l=>{const c=Jl(l),u=Ci(c==null?void 0:c.text);if(!u)return[];const d=Ci(c==null?void 0:c.status);return[{text:u,status:["pending","in_progress","completed","failed"].includes(d)?d:"pending"}]}),done:i!=="running"}}}if(["tool","command","command_execution","commandExecution","file_change","fileChange","mcp_tool_call","mcpToolCall","collab_tool_call","web_search","approval","status"].includes(n)){const a=Ha(n==="file_change"||n==="fileChange"?"fallback.fileChange":n==="approval"?"fallback.approval":n==="status"?"fallback.status":"fallback.command"),l=yye(e),c=bye(e)??(n==="status"&&r||void 0);return{id:t,block:wg(Ci(e.name||e.title)||a,t,i,l,c)}}return null}function xye(e){const t=Ci(e.type),n=Jl(e.item),i=Ci(n==null?void 0:n.type),r=Ci((n==null?void 0:n.id)||e.id)||(t==="turn.failed"?"turn":"");if(!r)return null;const s=s7(n==null?void 0:n.status,t);if(i==="reasoning"||i==="agent_message"){const a=Ci(n==null?void 0:n.text);return a?{id:r,block:i==="reasoning"?{kind:"thinking",text:a,done:s!=="running"}:{kind:"text",text:a},...i==="agent_message"&&(n==null?void 0:n.phase)!=="commentary"?{finalAnswer:!0}:{}}:null}if(i==="todo_list"){const l=(Array.isArray(n==null?void 0:n.items)?n.items:[]).flatMap(c=>{const u=Jl(c),d=Ci(u==null?void 0:u.text);if(!d)return[];const f=Ci(u==null?void 0:u.status).toLowerCase(),h=(u==null?void 0:u.completed)===!0||["completed","done"].includes(f)?"completed":["failed","error"].includes(f)?"failed":["in_progress","running"].includes(f)?"in_progress":"pending";return[{text:d,status:h}]});return l.length?{id:r,block:{kind:"plan",title:Ha("planTitle"),summary:Ha("planSummary",{completed:l.filter(c=>c.status==="completed").length,total:l.length}),items:l,done:s!=="running"}}:null}if(i==="command_execution"){const a=Ha(`command.${s}`);return{id:r,block:wg(a,r,s,yye(n??{}),bye(n??{}))}}if(i==="file_change"){const a=Array.isArray(n==null?void 0:n.changes)?n.changes:[],l=a.length?Ha("projectFiles",{count:a.length}):Ha("projectFile"),c=Ha(`fileChange.${s}`,{subject:l});return{id:r,block:wg(c,r,s,a.length?{changes:a}:void 0)}}if(i==="mcp_tool_call"){const a=[Ci(n==null?void 0:n.server),Ci(n==null?void 0:n.tool)].filter(Boolean).join("/")||Ha("externalTool"),l=Ha(`mcp.${s}`,{tool:a}),c=Jl(n==null?void 0:n.error),u=(n==null?void 0:n.result)!==void 0?n.result:Ci(c==null?void 0:c.message)||void 0;return{id:r,block:wg(l,r,s,n==null?void 0:n.arguments,u)}}if(i==="collab_tool_call"){const a=Ci(n==null?void 0:n.tool),l=["spawn_agent","send_input","wait","close_agent"].includes(a)?a:"default",c=Ha(`collaboration.${l}.${s}`),u=Object.fromEntries(["tool","receiver_thread_ids","prompt"].filter(d=>(n==null?void 0:n[d])!==void 0).map(d=>[d,n==null?void 0:n[d]]));return{id:r,block:wg(c,r,s,Object.keys(u).length?u:void 0,n==null?void 0:n.agents_states)}}if(i==="web_search"){const a=Ha(`webSearch.${s}`),l=Object.fromEntries(["query","action"].filter(c=>(n==null?void 0:n[c])!==void 0).map(c=>[c,n==null?void 0:n[c]]));return{id:r,block:wg(a,r,s,Object.keys(l).length?l:void 0)}}if(i==="error"||t==="error"||t==="turn.failed"){const a=Jl(e.error),l=Ci((n==null?void 0:n.message)||e.message||(a==null?void 0:a.message))||Ha("errorDetail");return{id:r,block:wg(Ha("errorTitle"),r,"failed",void 0,l)}}return null}function kUe(e){const t=Jl(e),n=Jl(t==null?void 0:t.veadkStudioToolProgress);if(!n||n.kind!=="codex")return null;const i=Ci(n.toolName),r=Ci(n.requestId);if(!i||!r)return null;const s=Jl(n.event??n.activity);if(!s)return null;const a=Jl(s.item)||Ci(s.type)?xye(s):vye(s);if(!a)return null;const l=Ci(n.title||n.label),c=Ci(s.agentSessionId??s.agent_session_id),u=Ci(s.sandboxSessionId??s.sandbox_session_id),d=Ci(s.threadId??s.thread_id),f=s7(s.status,Ci(s.type)),m=Ci(s.kind)==="status"&&f!=="running"?f:void 0;return{toolName:i,requestId:r,...l?{title:l}:{},...c?{agentSessionId:c}:{},...u?{sandboxSessionId:u}:{},...d?{threadId:d}:{},...m?{terminalStatus:m}:{},event:a}}function EUe(e,t){const n=Jl(t),i=Jl((n==null?void 0:n.codexActivity)??(n==null?void 0:n.codex_activity));if(!i)return e;const r=Ci(i.title)||(e==null?void 0:e.title)||"Codex Sandbox",s=Ci(i.agentSessionId??i.agent_session_id)||(e==null?void 0:e.agentSessionId),a=Ci(i.sandboxSessionId??i.sandbox_session_id)||(e==null?void 0:e.sandboxSessionId),l=Ci(i.threadId??i.thread_id)||(e==null?void 0:e.threadId);let c={title:r,...s?{agentSessionId:s}:{},...a?{sandboxSessionId:a}:{},...l?{threadId:l}:{},items:(e==null?void 0:e.items.slice())??[]};const u=Array.isArray(i.events)?i.events:[];for(const d of u){const f=Jl(d);if(!f)continue;const h=Jl(f.item)||Ci(f.type)?xye(f):vye(f);h&&(h.finalAnswer||(c=N4(c,{title:r,...s?{agentSessionId:s}:{},...a?{sandboxSessionId:a}:{},...l?{threadId:l}:{},event:h})))}return c}function N4(e,t){const n=(e==null?void 0:e.items.slice())??[],i=n.findIndex(r=>r.id===t.event.id);if(i>=0){const r=n[i].block,s=t.event.block;t.event.appendText&&r.kind==="text"&&s.kind==="text"?n[i]={id:t.event.id,block:{...s,text:r.text+s.text}}:t.event.appendText&&r.kind==="thinking"&&s.kind==="thinking"?n[i]={id:t.event.id,block:{...s,text:r.text+s.text}}:n[i]={id:t.event.id,block:s}}else n.push({id:t.event.id,block:t.event.block});return{title:t.title||(e==null?void 0:e.title)||"Codex Sandbox",...t.agentSessionId||e!=null&&e.agentSessionId?{agentSessionId:t.agentSessionId||(e==null?void 0:e.agentSessionId)}:{},...t.sandboxSessionId||e!=null&&e.sandboxSessionId?{sandboxSessionId:t.sandboxSessionId||(e==null?void 0:e.sandboxSessionId)}:{},...t.threadId||e!=null&&e.threadId?{threadId:t.threadId||(e==null?void 0:e.threadId)}:{},items:SUe(n)}}const wye="send_a2ui_json_to_client",j4="validated_a2ui_json",R4="adk_request_credential",IW="transfer_to_agent";function CUe(e){var i,r,s,a;const t=e,n=((i=t==null?void 0:t.exchangedAuthCredential)==null?void 0:i.oauth2)??((r=t==null?void 0:t.exchanged_auth_credential)==null?void 0:r.oauth2)??((s=t==null?void 0:t.rawAuthCredential)==null?void 0:s.oauth2)??((a=t==null?void 0:t.raw_auth_credential)==null?void 0:a.oauth2);return(n==null?void 0:n.authUri)??(n==null?void 0:n.auth_uri)}function I4(){return{blocks:[],liveStart:0,pendingCodexProgress:[]}}function PW(e,t){if(t.event.finalAnswer)return"applied";let n=-1;for(let i=e.length-1;i>=0;i-=1){const r=e[i];if(!(r.kind!=="tool"||r.name!==t.toolName)){if(r.callId===t.requestId)return r.done?"completed":(r.codexActivity=N4(r.codexActivity,t),r.status=t.terminalStatus??"running",t.terminalStatus&&(r.done=!0),"applied");if(!r.done){if(n>=0)return"unmatched";n=i}}}if(n>=0){const i=e[n];return i.kind!=="tool"?"unmatched":(i.codexActivity=N4(i.codexActivity,t),i.status=t.terminalStatus??"running",t.terminalStatus&&(i.done=!0),"applied")}return"unmatched"}function TUe(e){if(!e||typeof e!="object"||Array.isArray(e))return"completed";const t=e,n=typeof t.status=="string"?t.status.toLowerCase():"";return t.ok===!1||["error","failed","denied","declined","cancelled","timeout"].includes(n)?"failed":"completed"}function DW(e){if(!e||typeof e!="object"||Array.isArray(e))return"";const t=e;return t.ok!==!0||typeof t.message!="string"?"":t.message.trim()}const P4=e=>e.functionCall??e.function_call,yS=e=>e.functionResponse??e.function_response;function AUe(e){if(!e||typeof e!="object")return"";const t=e,n=t.agentName??t.agent_name;return typeof n=="string"?n:""}function _Ue(e){return e.replace(/-/g,"+").replace(/_/g,"/")}function lR(e){const t=[];for(const[n,i]of e.entries()){const r=i.partMetadata??i.part_metadata,s=r==null?void 0:r.veadkTransport;if((s==null?void 0:s.hidden)===!0)continue;const a=r==null?void 0:r.veadkMedia;if(typeof(a==null?void 0:a.uri)=="string"){t.push({id:String(a.id??a.uri),mimeType:typeof a.mimeType=="string"?a.mimeType:void 0,uri:a.uri,name:typeof a.name=="string"?a.name:void 0,sizeBytes:typeof a.sizeBytes=="number"?a.sizeBytes:void 0});continue}const l=i.inlineData??i.inline_data;if(l&&l.data){t.push({id:`inline-${n}-${l.displayName??l.display_name??"media"}`,mimeType:l.mimeType??l.mime_type,data:_Ue(l.data),name:l.displayName??l.display_name});continue}const c=i.fileData??i.file_data,u=(c==null?void 0:c.fileUri)??(c==null?void 0:c.file_uri);c&&u&&t.push({id:u,mimeType:c.mimeType??c.mime_type,uri:u,name:c.displayName??c.display_name})}return t}function vS(e){const t=e.partMetadata??e.part_metadata,n=t==null?void 0:t.veadkTransport;return(n==null?void 0:n.hideText)===!0?void 0:e.text}const NUe=new Set(["llm","sequential","parallel","loop","a2a"]);function jUe(e){var t;for(const n of e){const i=(t=n.partMetadata??n.part_metadata)==null?void 0:t.veadkInvocation;if(!i||typeof i!="object")continue;const r=i,s=Array.isArray(r.skills)?r.skills.flatMap(c=>{if(!c||typeof c!="object")return[];const u=c;return typeof u.name=="string"?[{name:u.name,description:typeof u.description=="string"?u.description:""}]:[]}):[];let a;const l=r.targetAgent;if(l&&typeof l=="object"){const c=l,u=c.type;typeof c.name=="string"&&typeof u=="string"&&NUe.has(u)&&Array.isArray(c.path)&&(a={name:c.name,description:typeof c.description=="string"?c.description:"",type:u,path:c.path.filter(d=>typeof d=="string")})}if(s.length>0||a)return{skills:s,targetAgent:a}}}function RUe(e,t){if(!t.length)return;const n=e[e.length-1];(n==null?void 0:n.kind)==="attachment"?n.files.push(...t):e.push({kind:"attachment",files:t})}function IUe(e,t){if(!t.length)return;const n=e[e.length-1];if((n==null?void 0:n.kind)==="artifact"){for(const i of t)n.files.some(r=>r.filename===i.filename&&r.version===i.version)||n.files.push(i);return}e.push({kind:"artifact",files:t})}function DD(e,t,n){const i=e[e.length-1];i&&i.kind===t?i.text+=n:e.push(t==="thinking"?{kind:t,text:n,done:!1}:{kind:t,text:n})}function eT(e){for(const t of e)t.kind==="thinking"&&(t.done=!0)}function Oye(e,t){var d,f,h,m,g,b;const n=e.blocks.map(v=>({...v}));let i=e.liveStart,r=e.pendingCodexProgress.slice();const s=((d=t.content)==null?void 0:d.parts)??[],a=s.flatMap(v=>{const y=wUe(v.partMetadata??v.part_metadata);return y?[y]:[]}),l=s.flatMap(v=>{const y=kUe(v.partMetadata??v.part_metadata);return y?[y]:[]});if(a.length>0||l.length>0){for(const v of a)for(let y=n.length-1;y>=0;y-=1){const x=n[y];if(!(x.kind!=="tool"||x.done||x.name!==v.toolName||v.requestId&&x.callId&&x.callId!==v.requestId)){x.response=OUe(x.args,x.response,v),x.status="running";break}}for(const v of l)PW(n,v)==="unmatched"&&(r=[...r,v].slice(-64));return{blocks:n,liveStart:i,pendingCodexProgress:r}}const c=s.some(v=>P4(v)||yS(v));if(t.partial&&!c){for(const v of s){const y=vS(v);typeof y=="string"&&y&&DD(n,v.thought?"thinking":"text",y)}return{blocks:n,liveStart:i,pendingCodexProgress:r}}n.length=i;for(const v of s){const y=P4(v),x=yS(v),O=lR([v]),w=vS(v);if(typeof w=="string"&&w)DD(n,v.thought?"thinking":"text",w);else if(O.length)eT(n),RUe(n,O);else if(y)if(eT(n),y.name===IW){const k=AUe(y.args)||((f=t.actions)==null?void 0:f.transferToAgent)||((h=t.actions)==null?void 0:h.transfer_to_agent)||an.t("app:common.unknownAgent");n.push({kind:"agent-transfer",agentName:k,done:!1})}else if(y.name===R4){const k=y.args??{},S=k.authConfig??k.auth_config??k,C=String(k.functionCallId??k.function_call_id??"").replace(/^_adk_toolset_auth_/,"")||void 0;n.push({kind:"auth",callId:y.id??"",label:C,authUri:CUe(S),authConfig:S,done:!1})}else{const k={kind:"tool",name:y.name??"",callId:y.id,args:y.args,done:!1};if(n.push(k),k.callId){const S=[];for(const E of r)E.toolName===k.name&&E.requestId===k.callId?PW(n,E):S.push(E);r=S}}else if(x){if(eT(n),x.name===IW)for(let k=n.length-1;k>=0;k--){const S=n[k];if(S.kind==="agent-transfer"&&!S.done){S.done=!0;break}}if(x.name===R4)for(let k=n.length-1;k>=0;k--){const S=n[k];if(S.kind==="auth"&&!S.done){S.done=!0;break}}for(let k=n.length-1;k>=0;k--){const S=n[k],E=S.kind==="tool"&&S.name==="delegate_to_codex_sandbox";if(S.kind==="tool"&&(!S.done||E)&&S.name===x.name&&(!x.id||!S.callId||S.callId===x.id)){const C=E?DW(S.response):"";if(S.done=!0,S.response=x.response,E){S.codexActivity=EUe(S.codexActivity,x.response),S.status=TUe(x.response);const N=DW(x.response);N&&N!==C&&DD(n,"text",N)}break}}if(x.name===wye){const k=((m=x.response)==null?void 0:m[j4])??[];if(k.length){const S=n[n.length-1];S&&S.kind==="a2ui"?S.messages.push(...k):n.push({kind:"a2ui",messages:k})}}}}const u=((g=t.actions)==null?void 0:g.artifactDelta)??((b=t.actions)==null?void 0:b.artifact_delta);return u&&IUe(n,Object.entries(u).map(([v,y])=>({filename:v,version:y}))),eT(n),i=n.length,{blocks:n,liveStart:i,pendingCodexProgress:r}}function PUe(e,t){var u,d,f,h,m,g;if(e.partial===!0)return!1;const n=((u=e.content)==null?void 0:u.parts)??[],i=n.some(b=>{const v=vS(b);return!b.thought&&typeof v=="string"&&v.trim().length>0||lR([b]).length>0}),r=n.some(b=>{var y;const v=yS(b);return(v==null?void 0:v.name)===wye&&Array.isArray((y=v.response)==null?void 0:y[j4])&&v.response[j4].length>0}),s=((d=e.actions)==null?void 0:d.artifactDelta)??((f=e.actions)==null?void 0:f.artifact_delta),a=!!(s&&Object.keys(s).length>0),l=!!(((h=e.actions)==null?void 0:h.endOfAgent)??((m=e.actions)==null?void 0:m.end_of_agent)??((g=e.actions)==null?void 0:g.escalate)),c=t.some(b=>b.kind==="text"||b.kind==="attachment"||b.kind==="artifact"||b.kind==="a2ui"||b.kind==="delivery");return i||r||a||l&&c}function DUe(e){var n,i,r;const t=((n=e.actions)==null?void 0:n.artifactDelta)??((i=e.actions)==null?void 0:i.artifact_delta);return t&&Object.keys(t).length>0?!0:(((r=e.content)==null?void 0:r.parts)??[]).some(s=>!!(vS(s)||lR([s]).length>0||P4(s)||yS(s)))}function $_(e="adk-stream",t){var a,l,c;let n=0;const i=new Map;let r;const s=(u,d)=>`${d}\0${u}`;if((t==null?void 0:t.role)==="assistant"){const u=((a=t.meta)==null?void 0:a.author)??"",d=((l=t.meta)==null?void 0:l.invocationId)??"",f=((c=t.meta)==null?void 0:c.localId)??`${e}-${n++}`,h=I4();h.blocks=t.blocks,h.liveStart=t.blocks.length,r=s(u,d),i.set(r,{acc:h,localId:f,meta:{...t.meta,localId:f,streaming:!0,eventId:void 0}})}return{project(u){const d=u.author&&u.author!=="user"?u.author:"",f=u.invocationId??u.invocation_id??"",h=s(d,f);let m=i.get(h);if(!m&&r){const y=i.get(r);y&&(!y.meta.author||y.meta.author===d)&&(i.delete(r),r=void 0,m=y)}if(!m&&!DUe(u))return{turn:{role:"assistant",blocks:[]},completed:!1,ignored:!0};if(!m){const y=`${e}-${n++}`;m={acc:I4(),localId:y,meta:{author:d||void 0,invocationId:f||void 0}}}m.acc=Oye(m.acc,u);const g=u.usageMetadata??u.usage_metadata,b=PUe(u,m.acc.blocks);m.meta={...m.meta,author:d||m.meta.author,localId:m.localId,streaming:!b,tokens:(g==null?void 0:g.totalTokenCount)||m.meta.tokens,ts:u.timestamp||m.meta.ts,invocationId:f||m.meta.invocationId,eventId:b&&u.id?u.id:m.meta.eventId};const v={role:"assistant",blocks:m.acc.blocks,meta:m.meta};return b?(i.delete(h),r=void 0):i.set(h,m),{turn:v,completed:b}},finish(){const u=[...i.values()].map(d=>({role:"assistant",blocks:d.acc.blocks,meta:{...d.meta,streaming:!1}}));return i.clear(),u}}}function Dg(e,t){var s;const n=(s=t.meta)==null?void 0:s.localId;if(!n)return[...e,t];const i=e.findIndex(a=>{var l;return((l=a.meta)==null?void 0:l.localId)===n});if(i<0)return[...e,t];const r=e.slice();return r[i]=t,r}function MUe(e,t={}){var r;let n=[],i=$_("adk-history");for(const s of e)if(s.author==="user"){const l=((r=s.content)==null?void 0:r.parts)??[];if(l.some(h=>{var m;return((m=yS(h))==null?void 0:m.name)===R4})){for(let h=n.length-1;h>=0;h--)if(n[h].role==="assistant"){for(let m=n[h].blocks.length-1;m>=0;m--){const g=n[h].blocks[m];if(g.kind==="auth"){g.done=!0;break}}break}}const c=l.map(vS).filter(h=>!!h).join(""),u=lR(l),d=jUe(l);if(!c&&!u.length&&!d)continue;for(const h of i.finish())n=Dg(n,h);const f=[];d&&f.push({kind:"invocation",value:d}),u.length&&f.push({kind:"attachment",files:u}),c&&f.push({kind:"text",text:c}),n.push({role:"user",blocks:f,meta:{ts:s.timestamp}}),i=$_("adk-history")}else{const l=i.project(s);l.ignored||(n=Dg(n,l.turn))}for(const s of i.finish())n=Dg(n,s);for(const s of n){const a=s.meta,l=a==null?void 0:a.eventId;if(!l)continue;const c=t[`veadk_feedback:${l}`];if(!c||typeof c!="object")continue;const u=c;u.rating!=="good"&&u.rating!=="bad"||(a.feedback=c)}return n}function cR(e,t=an.t("app:titles.newConversation")){var n,i;for(const r of e??[])if(r.author==="user"||((n=r.content)==null?void 0:n.role)==="user"){const s=(((i=r.content)==null?void 0:i.parts)??[]).map(a=>a.text).find(Boolean);if(s)return s}return t}function Sye(e,t,n){if(e.name===t||e.id===t)return(n==null?void 0:n.type)==="parallel"?n:void 0;for(const i of e.children){const r=Sye(i,t,e);if(r)return r}}function LUe(e,t){var a,l;if(e.role!=="assistant"||!t)return;const n=(a=e.meta)==null?void 0:a.author;if(!n)return;const i=Sye(t,n);if(!i)return;const r=i.id||i.path.join("/")||i.name;return{key:`${((l=e.meta)==null?void 0:l.invocationId)??""}::${r}`,parent:i.name}}function $Ue(e,t){const n=[];return e.forEach((i,r)=>{const s=LUe(i,t),a=n[n.length-1];if(s&&(a==null?void 0:a.groupKey)===s.key){a.turnIndexes.push(r);return}n.push({key:s?`parallel-${s.key}-${r}`:`turn-${r}`,turnIndexes:[r],parallelParent:s==null?void 0:s.parent,groupKey:s==null?void 0:s.key})}),n.map(({groupKey:i,...r})=>r)}function kye(e){var t,n,i="";if(typeof e=="string"||typeof e=="number")i+=e;else if(typeof e=="object")if(Array.isArray(e)){var r=e.length;for(t=0;t{const t=p.Children.toArray(e),n=[];let i="";const r=()=>{i!==""&&(n.push(i),i="")};for(const s of t)if(!(s==null||typeof s=="boolean")){if(typeof s=="string"||typeof s=="number"){i+=String(s);continue}r(),n.push(s)}return r(),n},a7=e=>{const t=FUe(e),n=p.Children.count(t);return p.Children.map(t,i=>{if(typeof i=="string"&&i.trim())return n<=1?i:o.jsx("span",{children:i});if(p.isValidElement(i)){const r=i,{children:s,...a}=r.props;return s!=null?p.cloneElement(r,a,a7(s)):r}return i})},BUe="_Badge_1viyg_1",UUe={Badge:BUe},ba=({children:e,className:t,variant:n="soft",color:i="secondary",size:r="sm",pill:s,...a})=>o.jsx("div",{className:pi(UUe.Badge,t),"data-color":i,"data-size":r,"data-pill":s?"":void 0,"data-variant":n,...a,children:a7(e)});var QUe=typeof Ip=="object"&&Ip&&Ip.Object===Object&&Ip,zUe=typeof self=="object"&&self&&self.Object===Object&&self;QUe||zUe||Function("return this")();var VUe=typeof window<"u"?p.useLayoutEffect:p.useEffect;function HUe(){const e=p.useRef(!1);return p.useEffect(()=>(e.current=!0,()=>{e.current=!1}),[]),p.useCallback(()=>e.current,[])}var MW={width:void 0,height:void 0};function Eye(e){const{ref:t,box:n="content-box"}=e,[{width:i,height:r},s]=p.useState(MW),a=HUe(),l=p.useRef({...MW}),c=p.useRef(void 0);return c.current=e.onResize,p.useEffect(()=>{if(!t.current||typeof window>"u"||!("ResizeObserver"in window))return;const u=new ResizeObserver(([d])=>{const f=n==="border-box"?"borderBoxSize":n==="device-pixel-content-box"?"devicePixelContentBoxSize":"contentBoxSize",h=LW(d,f,"inlineSize"),m=LW(d,f,"blockSize");if(l.current.width!==h||l.current.height!==m){const b={width:h,height:m};l.current.width=h,l.current.height=m,c.current?c.current(b):a()&&s(b)}});return u.observe(t.current,{box:n}),()=>{u.disconnect()}},[n,t,a]),{width:i,height:r}}function LW(e,t,n){return e[t]?Array.isArray(e[t])?e[t][0][n]:e[t][n]:t==="contentBoxSize"?e.contentRect[n==="inlineSize"?"width":"height"]:void 0}function o7(e,t){const n=p.useRef(e);VUe(()=>{n.current=e},[e]),p.useEffect(()=>{if(!t&&t!==0)return;const i=setTimeout(()=>{n.current()},t);return()=>{clearTimeout(i)}},[t])}const qUe={DEV:!1,MODE:"production"},Yy=typeof import.meta<"u"?qUe:void 0,WUe=!!(Yy!=null&&Yy.DEV),GUe=typeof navigator<"u"&&/(jsdom|happy-dom)/i.test(navigator.userAgent)||typeof globalThis.happyDOM=="object",Cye=(Yy==null?void 0:Yy.MODE)==="test"||GUe,KUe=typeof window<"u",Tye=typeof document<"u",XUe=KUe&&Tye,l7=e=>{const t=e.currentTarget;if(!(t instanceof HTMLElement))return;const n=t.offsetWidth;let i=.985;n<=80?i=.96:n<=150?i=.97:n<=220?i=.98:n>600&&(i=.995),t.style.setProperty("--scale",i.toString())},F_=(e,t)=>{const n=()=>{const a=setTimeout(e);return()=>{clearTimeout(a)}};if(!XUe||typeof window.requestAnimationFrame!="function"||Tye&&document.visibilityState==="hidden")return n();let r=2,s=window.requestAnimationFrame(function a(){r-=1,r===0?e():s=window.requestAnimationFrame(a)});return()=>{typeof window.cancelAnimationFrame=="function"&&window.cancelAnimationFrame(s)}},Wb=e=>Object.keys(e).reduce((n,i)=>{const r=e[i];if(r||r===0){const s=i.startsWith("--")?"":"--",a=typeof r=="number"?`${r}px`:r;n[`${s}${i}`]=a}return n},{}),MD=e=>typeof e=="number"?`${e}deg`:e,LD=e=>String(e),tT=e=>`${e}ms`,$D=({x:e,y:t,scale:n,rotate:i,skewX:r,skewY:s}={})=>{const a=[e==null?null:`translateX(${e}px)`,t==null?null:`translateY(${t}px)`,n==null?null:`scale(${n})`,i==null?null:`rotate(${MD(i)})`,r==null?null:`skewX(${MD(r)})`,s==null?null:`skewY(${MD(s)})`].filter(Boolean);return a.length?a.join(" "):"none"},FD=({blur:e}={})=>{const t=[e==null?null:`blur(${e}px)`].filter(Boolean);return t.length?t.join(" "):"none"},ih=e=>{e.preventDefault()},Aye=e=>e.querySelectorAll('a[href], input:not([disabled]):not([type="hidden"]), textarea:not([disabled]), button:not([disabled]), [tabindex]:not([tabindex^="-"]), [contenteditable]'),YUe="_LoadingIndicator_7yl6f_1",ZUe={LoadingIndicator:YUe},Hk=({className:e,size:t,strokeWidth:n,style:i,...r})=>o.jsx("div",{...r,className:pi(ZUe.LoadingIndicator,e),style:i||Wb({"indicator-size":t,"indicator-stroke":n})});var JUe=Object.defineProperty,c7=(e,t)=>JUe(e,"name",{value:t,configurable:!0});function D4(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}c7(D4,"setRef");function _ye(...e){return t=>{let n=!1;const i=e.map(r=>{const s=D4(r,t);return!n&&typeof s=="function"&&(n=!0),s});if(n)return()=>{for(let r=0;reQe(e,"name",{value:t,configurable:!0});function Oh(e){const t=p.forwardRef((n,i)=>{let{children:r,...s}=n,a=null,l=!1;const c=[];M4(r)&&typeof nT=="function"&&(r=nT(r._payload)),p.Children.forEach(r,h=>{var m;if(Dye(h)){l=!0;const g=h;let b="child"in g.props?g.props.child:g.props.children;M4(b)&&typeof nT=="function"&&(b=nT(b._payload)),a=tQe(g,b),c.push((m=a==null?void 0:a.props)==null?void 0:m.children)}else c.push(h)}),a?a=p.cloneElement(a,void 0,c):!l&&p.Children.count(r)===1&&p.isValidElement(r)&&(a=r);const u=a?Pye(a):void 0,d=ir(i,u);if(!a){if(r||r===0)throw new Error(l?rQe(e):iQe(e));return r}const f=Iye(s,a.props??{});return a.type!==p.Fragment&&(f.ref=i?d:u),p.cloneElement(a,f)});return t.displayName=`${e}.Slot`,t}qu(Oh,"createSlot");var Nye=Oh("Slot"),jye=Symbol.for("radix.slottable");function Rye(e){const t=qu(n=>"child"in n?n.children(n.child):n.children,"Slottable");return t.displayName=`${e}.Slottable`,t.__radixId=jye,t}qu(Rye,"createSlottable");var tQe=qu((e,t)=>{if("child"in e.props){const n=e.props.child;return p.isValidElement(n)?p.cloneElement(n,void 0,e.props.children(n.props.children)):null}return p.isValidElement(t)?t:null},"getSlottableElementFromSlottable");function Iye(e,t){const n={...t};for(const i in t){const r=e[i],s=t[i];/^on[A-Z]/.test(i)?r&&s?n[i]=(...l)=>{const c=s(...l);return r(...l),c}:r&&(n[i]=r):i==="style"?n[i]={...r,...s}:i==="className"&&(n[i]=[r,s].filter(Boolean).join(" "))}return{...e,...n}}qu(Iye,"mergeProps");function Pye(e){var i,r;let t=(i=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:i.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=(r=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:r.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}qu(Pye,"getElementRef");function Dye(e){return p.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===jye}qu(Dye,"isSlottable");var nQe=Symbol.for("react.lazy");function M4(e){return e!=null&&typeof e=="object"&&"$$typeof"in e&&e.$$typeof===nQe&&"_payload"in e&&Mye(e._payload)}qu(M4,"isLazyComponent");function Mye(e){return typeof e=="object"&&e!==null&&"then"in e}qu(Mye,"isPromiseLike");var iQe=qu(e=>`${e} failed to slot onto its children. Expected a single React element child or \`Slottable\`.`,"createSlotError"),rQe=qu(e=>`${e} failed to slot onto its \`Slottable\`. Expected \`Slottable\` to receive a single React element child.`,"createSlottableError"),nT=Fb[" use ".trim().toString()],sQe=Object.defineProperty,aQe=(e,t)=>sQe(e,"name",{value:t,configurable:!0}),oQe=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],wr=oQe.reduce((e,t)=>{const n=Oh(`Primitive.${t}`),i=p.forwardRef((r,s)=>{const{asChild:a,...l}=r,c=a?n:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),o.jsx(c,{...l,ref:s})});return i.displayName=`Primitive.${t}`,{...e,[t]:i}},{});function u7(e,t){e&&Li.flushSync(()=>e.dispatchEvent(t))}aQe(u7,"dispatchDiscreteCustomEvent");var lQe=Object.defineProperty,cQe=(e,t)=>lQe(e,"name",{value:t,configurable:!0}),uQe=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),dQe=p.forwardRef(cQe(function(t,n){return o.jsx(wr.span,{...t,ref:n,style:{...uQe,...t.style}})},"VisuallyHidden")),fQe=dQe,hQe=Object.defineProperty,Qc=(e,t)=>hQe(e,"name",{value:t,configurable:!0});function pQe(e,t){const n=p.createContext(t);n.displayName=e+"Context";const i=Qc(s=>{const{children:a,...l}=s,c=p.useMemo(()=>l,Object.values(l));return o.jsx(n.Provider,{value:c,children:a})},"Provider");i.displayName=e+"Provider";function r(s,a={}){const{optional:l=!1}=a,c=p.useContext(n);if(c)return c;if(t!==void 0)return t;if(!l)throw new Error(`\`${s}\` must be used within \`${e}\``)}return Qc(r,"useContext"),[i,r]}Qc(pQe,"createContext");function kl(e,t=[]){let n=[];function i(s,a){const l=p.createContext(a);l.displayName=s+"Context";const c=n.length;n=[...n,a];const u=Qc(f=>{var y;const{scope:h,children:m,...g}=f,b=((y=h==null?void 0:h[e])==null?void 0:y[c])||l,v=p.useMemo(()=>g,Object.values(g));return o.jsx(b.Provider,{value:v,children:m})},"Provider");u.displayName=s+"Provider";function d(f,h,m={}){var y;const{optional:g=!1}=m,b=((y=h==null?void 0:h[e])==null?void 0:y[c])||l,v=p.useContext(b);if(v)return v;if(a!==void 0)return a;if(!g)throw new Error(`\`${f}\` must be used within \`${s}\``)}return Qc(d,"useContext"),[u,d]}Qc(i,"createContext");const r=Qc(()=>{const s=n.map(a=>p.createContext(a));return Qc(function(l){const c=(l==null?void 0:l[e])||s;return p.useMemo(()=>({[`__scope${e}`]:{...l,[e]:c}}),[l,c])},"useScope")},"createScope");return r.scopeName=e,[i,Lye(r,...t)]}Qc(kl,"createContextScope");function Lye(...e){const t=e[0];if(e.length===1)return t;const n=Qc(()=>{const i=e.map(r=>({useScope:r(),scopeName:r.scopeName}));return Qc(function(s){const a=i.reduce((l,{useScope:c,scopeName:u})=>{const f=c(s)[`__scope${u}`];return{...l,...f}},{});return p.useMemo(()=>({[`__scope${t.scopeName}`]:a}),[a])},"useComposedScopes")},"createScope");return n.scopeName=t.scopeName,n}Qc(Lye,"composeContextScopes");var mQe=Object.defineProperty,Pa=(e,t)=>mQe(e,"name",{value:t,configurable:!0});function d7(e){const t=e+"CollectionProvider",[n,i]=kl(t),[r,s]=n(t,{collectionRef:{current:null},itemMap:new Map}),a=Pa(b=>{const{scope:v,children:y}=b,x=p.useRef(null),O=p.useRef(new Map).current;return o.jsx(r,{scope:v,itemMap:O,collectionRef:x,children:y})},"CollectionProvider");a.displayName=t;const l=e+"CollectionSlot",c=Oh(l),u=p.forwardRef((b,v)=>{const{scope:y,children:x}=b,O=s(l,y),w=ir(v,O.collectionRef);return o.jsx(c,{ref:w,children:x})});u.displayName=l;const d=e+"CollectionItemSlot",f="data-radix-collection-item",h=Oh(d),m=p.forwardRef((b,v)=>{const{scope:y,children:x,...O}=b,w=p.useRef(null),k=ir(v,w),S=s(d,y);return p.useEffect(()=>(S.itemMap.set(w,{ref:w,...O}),()=>void S.itemMap.delete(w))),o.jsx(h,{[f]:"",ref:k,children:x})});m.displayName=d;function g(b){const v=s(e+"CollectionConsumer",b);return p.useCallback(()=>{const x=v.collectionRef.current;if(!x)return[];const O=Array.from(x.querySelectorAll(`[${f}]`));return Array.from(v.itemMap.values()).sort((S,E)=>O.indexOf(S.ref.current)-O.indexOf(E.ref.current))},[v.collectionRef,v.itemMap])}return Pa(g,"useCollection"),[{Provider:a,Slot:u,ItemSlot:m},g,i]}Pa(d7,"createCollection");var $W=new WeakMap,Ws,Wl,BD=(Wl=class extends Map{constructor(n){super(n);uV(this,Ws);jP(this,Ws,[...super.keys()]),$W.set(this,!0)}set(n,i){return $W.get(this)&&(this.has(n)?uo(this,Ws)[uo(this,Ws).indexOf(n)]=n:uo(this,Ws).push(n)),super.set(n,i),this}insert(n,i,r){const s=this.has(i),a=uo(this,Ws).length,l=f7(n);let c=l>=0?l:a+l;const u=c<0||c>=a?-1:c;if(u===this.size||s&&u===this.size-1||u===-1)return this.set(i,r),this;const d=this.size+(s?0:1);l<0&&c++;const f=[...uo(this,Ws)];let h,m=!1;for(let g=c;g=this.size&&(s=this.size-1),this.at(s)}keyFrom(n,i){const r=this.indexOf(n);if(r===-1)return;let s=r+i;return s<0&&(s=0),s>=this.size&&(s=this.size-1),this.keyAt(s)}find(n,i){let r=0;for(const s of this){if(Reflect.apply(n,i,[s,r,this]))return s;r++}}findIndex(n,i){let r=0;for(const s of this){if(Reflect.apply(n,i,[s,r,this]))return r;r++}return-1}filter(n,i){const r=[];let s=0;for(const a of this)Reflect.apply(n,i,[a,s,this])&&r.push(a),s++;return new Wl(r)}map(n,i){const r=[];let s=0;for(const a of this)r.push([a[0],Reflect.apply(n,i,[a,s,this])]),s++;return new Wl(r)}reduce(...n){const[i,r]=n;let s=0,a=r??this.at(0);for(const l of this)s===0&&n.length===1?a=l:a=Reflect.apply(i,this,[a,l,s,this]),s++;return a}reduceRight(...n){const[i,r]=n;let s=r??this.at(-1);for(let a=this.size-1;a>=0;a--){const l=this.at(a);a===this.size-1&&n.length===1?s=l:s=Reflect.apply(i,this,[s,l,a,this])}return s}toSorted(n){const i=[...this.entries()].sort(n);return new Wl(i)}toReversed(){const n=new Wl;for(let i=this.size-1;i>=0;i--){const r=this.keyAt(i),s=this.get(r);n.set(r,s)}return n}toSpliced(...n){const i=[...this.entries()];return i.splice(...n),new Wl(i)}slice(n,i){const r=new Wl;let s=this.size-1;if(n===void 0)return r;n<0&&(n=n+this.size),i!==void 0&&i>0&&(s=i-1);for(let a=n;a<=s;a++){const l=this.keyAt(a),c=this.get(l);r.set(l,c)}return r}every(n,i){let r=0;for(const s of this){if(!Reflect.apply(n,i,[s,r,this]))return!1;r++}return!0}some(n,i){let r=0;for(const s of this){if(Reflect.apply(n,i,[s,r,this]))return!0;r++}return!1}},Ws=new WeakMap,Pa(Wl,"OrderedDict"),Wl);function sA(e,t){if("at"in Array.prototype)return Array.prototype.at.call(e,t);const n=$ye(e,t);return n===-1?void 0:e[n]}Pa(sA,"at");function $ye(e,t){const n=e.length,i=f7(t),r=i>=0?i:n+i;return r<0||r>=n?-1:r}Pa($ye,"toSafeIndex");function f7(e){return e!==e||e===0?0:Math.trunc(e)}Pa(f7,"toSafeInteger");function gQe(e){const t=e+"CollectionProvider",[n,i]=kl(t),[r,s]=n(t,{collectionElement:null,collectionRef:{current:null},collectionRefObject:{current:null},itemMap:new BD,setItemMap:Pa(()=>{},"setItemMap")}),a=Pa(({state:O,...w})=>O?o.jsx(c,{...w,state:O}):o.jsx(l,{...w}),"CollectionProvider");a.displayName=t;const l=Pa(O=>{const w=v();return o.jsx(c,{...O,state:w})},"CollectionInit");l.displayName=t+"Init";const c=Pa(O=>{const{scope:w,children:k,state:S}=O,E=p.useRef(null),[C,N]=p.useState(null),_=ir(E,N),[j,A]=S;return p.useEffect(()=>{if(!C)return;const F=Uye(()=>{});return F.observe(C,{childList:!0,subtree:!0}),()=>{F.disconnect()}},[C]),o.jsx(r,{scope:w,itemMap:j,setItemMap:A,collectionRef:_,collectionRefObject:E,collectionElement:C,children:k})},"CollectionProviderImpl");c.displayName=t+"Impl";const u=e+"CollectionSlot",d=Oh(u),f=p.forwardRef((O,w)=>{const{scope:k,children:S}=O,E=s(u,k),C=ir(w,E.collectionRef);return o.jsx(d,{ref:C,children:S})});f.displayName=u;const h=e+"CollectionItemSlot",m="data-radix-collection-item",g=Oh(h),b=p.forwardRef((O,w)=>{const{scope:k,children:S,...E}=O,C=p.useRef(null),[N,_]=p.useState(null),j=ir(w,C,_),A=s(h,k),{setItemMap:F}=A,T=p.useRef(E);Fye(T.current,E)||(T.current=E);const P=T.current;return p.useEffect(()=>{const R=P;return F(L=>N?L.has(N)?L.set(N,{...R,element:N}).toSorted(L4):(L.set(N,{...R,element:N}),L.toSorted(L4)):L),()=>{F(L=>!N||!L.has(N)?L:(L.delete(N),new BD(L)))}},[N,P,F]),o.jsx(g,{[m]:"",ref:j,children:S})});b.displayName=h;function v(){return p.useState(new BD)}Pa(v,"useInitCollection");function y(O){const{itemMap:w}=s(e+"CollectionConsumer",O);return w}return Pa(y,"useCollection"),[{Provider:a,Slot:f,ItemSlot:b},{createCollectionScope:i,useCollection:y,useInitCollection:v}]}Pa(gQe,"createCollection");function Fye(e,t){if(e===t)return!0;if(typeof e!="object"||typeof t!="object"||e==null||t==null)return!1;const n=Object.keys(e),i=Object.keys(t);if(n.length!==i.length)return!1;for(const r of n)if(!Object.prototype.hasOwnProperty.call(t,r)||e[r]!==t[r])return!1;return!0}Pa(Fye,"shallowEqual");function Bye(e,t){return!!(t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_PRECEDING)}Pa(Bye,"isElementPreceding");function L4(e,t){return!e[1].element||!t[1].element?0:Bye(e[1].element,t[1].element)?-1:1}Pa(L4,"sortByDocumentPosition");function Uye(e){return new MutationObserver(n=>{for(const i of n)if(i.type==="childList"){e();return}})}Pa(Uye,"getChildListObserver");var bQe=Object.defineProperty,Nx=(e,t)=>bQe(e,"name",{value:t,configurable:!0}),Qye=!!(typeof window<"u"&&window.document&&window.document.createElement);function yn(e,t,{checkForDefaultPrevented:n=!0}={}){return Nx(function(r){if(e==null||e(r),n===!1||!r||!r.defaultPrevented)return t==null?void 0:t(r)},"handleEvent")}Nx(yn,"composeEventHandlers");function yQe(e){var t;if(!Qye)throw new Error("Cannot access window outside of the DOM");return((t=e==null?void 0:e.ownerDocument)==null?void 0:t.defaultView)??window}Nx(yQe,"getOwnerWindow");function $4(e){if(!Qye)throw new Error("Cannot access document outside of the DOM");return(e==null?void 0:e.ownerDocument)??document}Nx($4,"getOwnerDocument");function zye(e,t=!1){const{activeElement:n}=$4(e);if(!(n!=null&&n.nodeName))return null;if(Vye(n)&&n.contentDocument)return zye(n.contentDocument.body,t);if(t){const i=n.getAttribute("aria-activedescendant");if(i){const r=$4(n).getElementById(i);if(r)return r}}return n}Nx(zye,"getActiveElement");function Vye(e){return e.tagName==="IFRAME"}Nx(Vye,"isFrame");var Jc=globalThis!=null&&globalThis.document?p.useLayoutEffect:()=>{},vQe=Object.defineProperty,xQe=(e,t)=>vQe(e,"name",{value:t,configurable:!0}),FW=Fb[" useEffectEvent ".trim().toString()],BW=Fb[" useInsertionEffect ".trim().toString()];function Hye(e){if(typeof FW=="function")return FW(e);const t=p.useRef(()=>{throw new Error("Cannot call an event handler while rendering.")});return typeof BW=="function"?BW(()=>{t.current=e}):Jc(()=>{t.current=e}),p.useMemo(()=>(...n)=>{var i;return(i=t.current)==null?void 0:i.call(t,...n)},[])}xQe(Hye,"useEffectEvent");var wQe=Object.defineProperty,qk=(e,t)=>wQe(e,"name",{value:t,configurable:!0}),OQe=Fb[" useInsertionEffect ".trim().toString()]||Jc;function su({prop:e,defaultProp:t,onChange:n=qk(()=>{},"onChange"),caller:i}){const[r,s,a]=qye({defaultProp:t,onChange:n}),l=e!==void 0,c=l?e:r,u=p.useCallback(d=>{var f;if(l){const h=Wye(d)?d(e):d;h!==e&&((f=a.current)==null||f.call(a,h))}else s(d)},[l,e,s,a]);return[c,u]}qk(su,"useControllableState");function qye({defaultProp:e,onChange:t}){const[n,i]=p.useState(e),r=p.useRef(n),s=p.useRef(t);return OQe(()=>{s.current=t},[t]),p.useEffect(()=>{var a;r.current!==n&&((a=s.current)==null||a.call(s,n),r.current=n)},[n,r]),[n,i,s]}qk(qye,"useUncontrolledState");function Wye(e){return typeof e=="function"}qk(Wye,"isFunction");var UW=Symbol("RADIX:SYNC_STATE");function SQe(e,t,n,i){const{prop:r,defaultProp:s,onChange:a,caller:l}=t,c=r!==void 0,u=Hye(a),d=[{...n,state:s}];i&&d.push(i);const[f,h]=p.useReducer((v,y)=>{if(y.type===UW)return{...v,state:y.state};const x=e(v,y);return c&&!Object.is(x.state,v.state)&&u(x.state),x},...d),m=f.state,g=p.useRef(m);p.useEffect(()=>{g.current!==m&&(g.current=m,c||u(m))},[m,g,c]);const b=p.useMemo(()=>r!==void 0?{...f,state:r}:f,[f,r]);return p.useEffect(()=>{c&&!Object.is(r,f.state)&&h({type:UW,state:r})},[r,f.state,c]),[b,h]}qk(SQe,"useControllableStateReducer");var kQe=Object.defineProperty,Sh=(e,t)=>kQe(e,"name",{value:t,configurable:!0});function Gye(e,t){return p.useReducer((n,i)=>t[n][i]??n,e)}Sh(Gye,"useStateMachine");var Gd=Sh(e=>{const{present:t,children:n}=e,i=Kye(t),r=typeof n=="function"?n({present:i.isPresent}):p.Children.only(n),s=Xye(i.ref,Yye(r));return typeof n=="function"||i.isPresent?p.cloneElement(r,{ref:s}):null},"Presence");function Kye(e){const[t,n]=p.useState(),i=p.useRef(null),r=p.useRef(e),s=p.useRef("none"),a=p.useRef(void 0),l=e?"mounted":"unmounted",[c,u]=Gye(l,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return p.useEffect(()=>{c==="mounted"?(s.current=a.current??ty(i.current),a.current=void 0):s.current="none"},[c]),Jc(()=>{const d=i.current,f=r.current;if(f!==e){const m=s.current,g=ty(d);e?(a.current=g,u("MOUNT")):g==="none"||(d==null?void 0:d.display)==="none"?u("UNMOUNT"):u(f&&m!==g?"ANIMATION_OUT":"UNMOUNT"),r.current=e}},[e,u]),Jc(()=>{if(t){let d;const f=t.ownerDocument.defaultView??window,h=Sh(g=>{const v=ty(i.current).includes(CSS.escape(g.animationName));if(g.target===t&&v&&(u("ANIMATION_END"),!r.current)){const y=t.style.animationFillMode;t.style.animationFillMode="forwards",d=f.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=y)})}},"handleAnimationEnd"),m=Sh(g=>{g.target===t&&(s.current=ty(i.current))},"handleAnimationStart");return t.addEventListener("animationstart",m),t.addEventListener("animationcancel",h),t.addEventListener("animationend",h),()=>{f.clearTimeout(d),t.removeEventListener("animationstart",m),t.removeEventListener("animationcancel",h),t.removeEventListener("animationend",h)}}else u("ANIMATION_END")},[t,u]),{isPresent:["mounted","unmountSuspended"].includes(c),ref:p.useCallback(d=>{if(d){const f=getComputedStyle(d);i.current=f,a.current=ty(f)}else i.current=null;n(d)},[])}}Sh(Kye,"usePresence");function F4(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}Sh(F4,"setRef");function Xye(...e){const t=p.useRef(e);return t.current=e,p.useCallback(n=>{const i=t.current;let r=!1;const s=i.map(a=>{const l=F4(a,n);return!r&&typeof l=="function"&&(r=!0),l});if(r)return()=>{for(let a=0;aEQe(e,"name",{value:t,configurable:!0}),TQe=Fb[" useId ".trim().toString()]||(()=>{}),AQe=0;function mm(e){const[t,n]=p.useState(TQe());return Jc(()=>{e||n(i=>i??String(AQe++))},[e]),e||(t?`radix-${t}`:"")}CQe(mm,"useId");var _Qe=Object.defineProperty,NQe=(e,t)=>_Qe(e,"name",{value:t,configurable:!0}),jQe=p.createContext(void 0);function Wk(e){const t=p.useContext(jQe);return e||t||"ltr"}NQe(Wk,"useDirection");var RQe=Object.defineProperty,IQe=(e,t)=>RQe(e,"name",{value:t,configurable:!0});function $u(e){const t=p.useRef(e);return p.useEffect(()=>{t.current=e}),p.useMemo(()=>(...n)=>{var i;return(i=t.current)==null?void 0:i.call(t,...n)},[])}IQe($u,"useCallbackRef");var PQe=Object.defineProperty,Ra=(e,t)=>PQe(e,"name",{value:t,configurable:!0}),B4="dismissableLayer.update",DQe="dismissableLayer.pointerDownOutside",MQe="dismissableLayer.focusOutside",QW,Zye=p.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set,dismissableSurfaces:new Set}),h7=p.forwardRef(Ra(function(t,n){const{disableOutsidePointerEvents:i=!1,deferPointerDownOutside:r=!1,onEscapeKeyDown:s,onPointerDownOutside:a,onFocusOutside:l,onInteractOutside:c,onDismiss:u,...d}=t,f=p.useContext(Zye),[h,m]=p.useState(null),g=(h==null?void 0:h.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,b]=p.useState({}),v=ir(n,m),y=Array.from(f.layers),[x]=[...f.layersWithOutsidePointerEventsDisabled].slice(-1),O=x?y.indexOf(x):-1,w=h?y.indexOf(h):-1,k=f.layersWithOutsidePointerEventsDisabled.size>0,S=w>=O,E=p.useRef(!1),C=Jye(A=>{a==null||a(A),c==null||c(A),A.defaultPrevented||u==null||u()},{ownerDocument:g,deferPointerDownOutside:r,isDeferredPointerDownOutsideRef:E,dismissableSurfaces:f.dismissableSurfaces,shouldHandlePointerDownOutside:p.useCallback(A=>{if(!(A instanceof Node))return!1;const F=[...f.branches].some(T=>T.contains(A));return S&&!F},[f.branches,S])}),N=eve(A=>{if(r&&E.current)return;const F=A.target;[...f.branches].some(P=>P.contains(F))||(l==null||l(A),c==null||c(A),A.defaultPrevented||u==null||u())},g),_=h?w===y.length-1:!1,j=$u(A=>{A.key==="Escape"&&(s==null||s(A),!A.defaultPrevented&&u&&(A.preventDefault(),u()))});return p.useEffect(()=>{if(_)return g.addEventListener("keydown",j,{capture:!0}),()=>g.removeEventListener("keydown",j,{capture:!0})},[g,_,j]),p.useEffect(()=>{if(h)return i&&(f.layersWithOutsidePointerEventsDisabled.size===0&&(QW=g.body.style.pointerEvents,g.body.style.pointerEvents="none"),f.layersWithOutsidePointerEventsDisabled.add(h)),f.layers.add(h),U4(),()=>{i&&(f.layersWithOutsidePointerEventsDisabled.delete(h),f.layersWithOutsidePointerEventsDisabled.size===0&&(g.body.style.pointerEvents=QW))}},[h,g,i,f]),p.useEffect(()=>()=>{h&&(f.layers.delete(h),f.layersWithOutsidePointerEventsDisabled.delete(h),U4())},[h,f]),p.useEffect(()=>{const A=Ra(()=>b({}),"handleUpdate");return document.addEventListener(B4,A),()=>document.removeEventListener(B4,A)},[]),o.jsx(wr.div,{...d,ref:v,style:{pointerEvents:k?S?"auto":"none":void 0,...t.style},onFocusCapture:yn(t.onFocusCapture,N.onFocusCapture),onBlurCapture:yn(t.onBlurCapture,N.onBlurCapture),onPointerDownCapture:yn(t.onPointerDownCapture,C.onPointerDownCapture)})},"DismissableLayer"));function LQe(){const e=p.useContext(Zye),[t,n]=p.useState(null);return p.useEffect(()=>{if(t)return e.dismissableSurfaces.add(t),()=>{e.dismissableSurfaces.delete(t)}},[t,e.dismissableSurfaces]),n}Ra(LQe,"useDismissableLayerSurface");var $Qe=Ra(()=>!0,"IS_TRUE");function Jye(e,t){const{ownerDocument:n=globalThis==null?void 0:globalThis.document,deferPointerDownOutside:i=!1,isDeferredPointerDownOutsideRef:r,dismissableSurfaces:s,shouldHandlePointerDownOutside:a=$Qe}=t,l=$u(e),c=p.useRef(!1),u=p.useRef(!1),d=p.useRef(new Map),f=p.useRef(()=>{});return p.useEffect(()=>{function h(){u.current=!1,r.current=!1,d.current.clear()}Ra(h,"resetOutsideInteraction");function m(){return Array.from(d.current.values()).some(Boolean)}Ra(m,"isOutsideInteractionIntercepted");function g(O){if(!u.current)return;const w=O.target;w instanceof Node&&[...s].some(S=>S.contains(w))||d.current.set(O.type,!0),O.type==="click"&&window.setTimeout(()=>{u.current&&f.current()},0)}Ra(g,"handleInteractionCapture");function b(O){u.current&&d.current.set(O.type,!1)}Ra(b,"handleInteractionBubble");const v=Ra(O=>{if(O.target&&!c.current){let w=function(){n.removeEventListener("click",f.current);const S=m();h(),S||p7(DQe,l,k,{discrete:!0})};if(Ra(w,"handleAndDispatchPointerDownOutsideEvent"),!a(O.target)){n.removeEventListener("click",f.current),h(),c.current=!1;return}const k={originalEvent:O};u.current=!0,r.current=i&&O.button===0,d.current.clear(),!i||O.button!==0?w():(n.removeEventListener("click",f.current),f.current=w,n.addEventListener("click",f.current,{once:!0}))}else n.removeEventListener("click",f.current),h();c.current=!1},"handlePointerDown"),y=["pointerup","mousedown","mouseup","touchstart","touchend","click"];for(const O of y)n.addEventListener(O,g,!0),n.addEventListener(O,b);const x=window.setTimeout(()=>{n.addEventListener("pointerdown",v)},0);return()=>{window.clearTimeout(x),n.removeEventListener("pointerdown",v),n.removeEventListener("click",f.current);for(const O of y)n.removeEventListener(O,g,!0),n.removeEventListener(O,b)}},[n,l,i,r,s,a]),{onPointerDownCapture:Ra(()=>c.current=!0,"onPointerDownCapture")}}Ra(Jye,"usePointerDownOutside");function eve(e,t=globalThis==null?void 0:globalThis.document){const n=$u(e),i=p.useRef(!1);return p.useEffect(()=>{const r=Ra(s=>{s.target&&!i.current&&p7(MQe,n,{originalEvent:s},{discrete:!1})},"handleFocus");return t.addEventListener("focusin",r),()=>t.removeEventListener("focusin",r)},[t,n]),{onFocusCapture:Ra(()=>i.current=!0,"onFocusCapture"),onBlurCapture:Ra(()=>i.current=!1,"onBlurCapture")}}Ra(eve,"useFocusOutside");function U4(){const e=new CustomEvent(B4);document.dispatchEvent(e)}Ra(U4,"dispatchUpdate");function p7(e,t,n,{discrete:i}){const r=n.originalEvent.target,s=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&r.addEventListener(e,t,{once:!0}),i?u7(r,s):r.dispatchEvent(s)}Ra(p7,"handleAndDispatchCustomEvent");var FQe=Object.defineProperty,Bo=(e,t)=>FQe(e,"name",{value:t,configurable:!0}),UD="focusScope.autoFocusOnMount",QD="focusScope.autoFocusOnUnmount",zW={bubbles:!1,cancelable:!0},tve=p.forwardRef(Bo(function(t,n){const{loop:i=!1,trapped:r=!1,onMountAutoFocus:s,onUnmountAutoFocus:a,...l}=t,[c,u]=p.useState(null),d=$u(s),f=$u(a),h=p.useRef(null),m=ir(n,u),g=p.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;p.useEffect(()=>{if(r){let v=function(w){if(g.paused||!c)return;const k=w.target;c.contains(k)?h.current=k:jf(h.current,{select:!0})},y=function(w){if(g.paused||!c)return;const k=w.relatedTarget;k!==null&&(c.contains(k)||jf(h.current,{select:!0}))},x=function(w){if(document.activeElement===document.body)for(const S of w)S.removedNodes.length>0&&jf(c)};Bo(v,"handleFocusIn"),Bo(y,"handleFocusOut"),Bo(x,"handleMutations"),document.addEventListener("focusin",v),document.addEventListener("focusout",y);const O=new MutationObserver(x);return c&&O.observe(c,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",v),document.removeEventListener("focusout",y),O.disconnect()}}},[r,c,g.paused]),p.useEffect(()=>{if(c){VW.add(g);const v=document.activeElement;if(!c.contains(v)){const x=new CustomEvent(UD,zW);c.addEventListener(UD,d),c.dispatchEvent(x),x.defaultPrevented||(nve(ove(m7(c)),{select:!0}),document.activeElement===v&&jf(c))}return()=>{c.removeEventListener(UD,d),setTimeout(()=>{const x=new CustomEvent(QD,zW);c.addEventListener(QD,f),c.dispatchEvent(x),x.defaultPrevented||jf(v??document.body,{select:!0}),c.removeEventListener(QD,f),VW.remove(g)},0)}}},[c,d,f,g]);const b=p.useCallback(v=>{if(!i&&!r||g.paused)return;const y=v.key==="Tab"&&!v.altKey&&!v.ctrlKey&&!v.metaKey,x=document.activeElement;if(y&&x){const O=v.currentTarget,[w,k]=ive(O);w&&k?!v.shiftKey&&x===k?(v.preventDefault(),i&&jf(w,{select:!0})):v.shiftKey&&x===w&&(v.preventDefault(),i&&jf(k,{select:!0})):x===O&&v.preventDefault()}},[i,r,g.paused]);return o.jsx(wr.div,{tabIndex:-1,...l,ref:m,onKeyDown:b})},"FocusScope"));function nve(e,{select:t=!1}={}){const n=document.activeElement;for(const i of e)if(jf(i,{select:t}),document.activeElement!==n)return}Bo(nve,"focusFirst");function ive(e){const t=m7(e),n=Q4(t,e),i=Q4(t.reverse(),e);return[n,i]}Bo(ive,"getTabbableEdges");function m7(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:Bo(i=>{const r=i.tagName==="INPUT"&&i.type==="hidden";return i.disabled||i.hidden||r?NodeFilter.FILTER_SKIP:i.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP},"acceptNode")});for(;n.nextNode();)t.push(n.currentNode);return t}Bo(m7,"getTabbableCandidates");function Q4(e,t){const n=typeof t.checkVisibility=="function"&&t.checkVisibility({checkVisibilityCSS:!0});for(const i of e)if(!(n?!i.checkVisibility({checkVisibilityCSS:!0}):rve(i,{upTo:t})))return i}Bo(Q4,"findVisible");function rve(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}Bo(rve,"isHidden");function sve(e){return e instanceof HTMLInputElement&&"select"in e}Bo(sve,"isSelectableInput");function jf(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&sve(e)&&t&&e.select()}}Bo(jf,"focus");var VW=ave();function ave(){let e=[];return{add(t){const n=e[0];t!==n&&(n==null||n.pause()),e=z4(e,t),e.unshift(t)},remove(t){var n;e=z4(e,t),(n=e[0])==null||n.resume()}}}Bo(ave,"createFocusScopesStack");function z4(e,t){const n=[...e],i=n.indexOf(t);return i!==-1&&n.splice(i,1),n}Bo(z4,"arrayRemove");function ove(e){return e.filter(t=>t.tagName!=="A")}Bo(ove,"removeLinks");var BQe=Object.defineProperty,UQe=(e,t)=>BQe(e,"name",{value:t,configurable:!0}),g7=p.forwardRef(UQe(function(t,n){var c;const{container:i,...r}=t,[s,a]=p.useState(!1);Jc(()=>a(!0),[]);const l=i||s&&((c=globalThis==null?void 0:globalThis.document)==null?void 0:c.body);return l?Li.createPortal(o.jsx(wr.div,{...r,ref:n}),l):null},"Portal")),QQe=Object.defineProperty,b7=(e,t)=>QQe(e,"name",{value:t,configurable:!0}),iT=0,ad=null;function zQe(e){return uR(),e.children}b7(zQe,"FocusGuards");function uR(){p.useEffect(()=>{ad||(ad={start:V4(),end:V4()});const{start:e,end:t}=ad;return document.body.firstElementChild!==e&&document.body.insertAdjacentElement("afterbegin",e),document.body.lastElementChild!==t&&document.body.insertAdjacentElement("beforeend",t),iT++,()=>{iT===1&&(ad==null||ad.start.remove(),ad==null||ad.end.remove(),ad=null),iT=Math.max(0,iT-1)}},[])}b7(uR,"useFocusGuards");function V4(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}b7(V4,"createFocusGuard");var bd=function(){return bd=Object.assign||function(t){for(var n,i=1,r=arguments.length;i"u")return aze;var t=oze(e),n=document.documentElement.clientWidth,i=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,i-n+t[2]-t[0])}},cze=dve(),Zy="data-scroll-locked",uze=function(e,t,n,i){var r=e.left,s=e.top,a=e.right,l=e.gap;return n===void 0&&(n="margin"),` - .`.concat(HQe,` { +${n}`}}async function*NBe({runtimeId:e,region:t,instanceName:n,sessionId:i,follow:r=!0,signal:s}){const a=new URLSearchParams({region:t,follow:String(r)});n&&a.set("instance_name",n),i&&a.set("session_id",i);const l=await fetch(Ho(`/web/runtime-logs/${encodeURIComponent(e)}/stream?${a.toString()}`),{headers:qu(Ph({Accept:"text/event-stream"})),cache:"no-store",signal:s});if(!l.ok)throw new Error(H("runtimeLogs.loadFailedWithDetail",{detail:await _Be(l)}));for await(const c of aR(l)){if(!ABe(c))throw new Error(H("runtimeLogs.invalidFormat"));yield c}}const jBe=255,RBe=/[\p{L}\p{M}\p{N}\p{P}\p{Zs}]/u;function IBe(e){const t=e.normalize("NFKC").replace(/\s+/gu," ").trim(),n=new TextEncoder;let i=0,r="";for(const s of t){if(!RBe.test(s))continue;const a=n.encode(s).byteLength;if(i+a>jBe)break;r+=s,i+=a}return r.replace(/ +/g," ").trimEnd()}const PBe=/RunPipeline result could not be reconciled|Polling build status failed/i;class Dw extends Error{constructor({taskId:n,cause:i}={}){super("The deployment request may still be running, but its status could not be confirmed.");Ai(this,"taskId");this.name="DeploymentStatusUnconfirmedError",this.taskId=n}}function qbe(e){if(e instanceof Dw)return!0;const t=e instanceof Error?e.message:String(e??"");return PBe.test(t)}function PW(e){return!!(e&&typeof e=="object"&&"name"in e&&e.name==="AbortError")}const w4="ap-southeast-1",H9="cn-beijing",DBe="https://ark.ap-southeast.bytepluses.com/api/v3",MBe="https://ark.cn-beijing.volces.com/api/v3/",LBe="https://console.byteplus.com/ark/region:ark+ap-southeast-1/openManagement",$Be="https://console.volcengine.com/ark/region:ark+cn-beijing/openManagement",FBe="dola-seed-2-1-turbo-260628",BBe="doubao-seed-2-1-pro-260628",UBe="skylark-embedding-vision-250615",QBe="doubao-embedding-vision-250615",zBe="seed-2-0-lite-260228",VBe="doubao-seed-2-0-lite-260428",HBe="dola-seedream-5-0-pro-260628",qBe="doubao-seedream-5-0-260128",WBe="seededit-3-0-i2i-250628",KBe="doubao-seededit-3-0-i2i-250628",GBe="dreamina-seedance-2-0-260128",XBe="doubao-seedance-2-0-260128";function Pu(e){return e==="byteplus"?[{value:w4,label:w4}]:[{value:"cn-beijing",label:H("cloudRegion.cnBeijing")},{value:"cn-shanghai",label:H("cloudRegion.cnShanghai")}]}function nr(e){var t;return((t=Pu(e)[0])==null?void 0:t.value)||H9}const YBe=new Set(["cn-beijing","cn-shanghai","ap-southeast-1"]);function oR(e){return typeof e=="string"&&YBe.has(e)}function vh(e,t){var i;return((i=(t?Pu(t):[...Pu("volcengine"),...Pu("byteplus")]).find(r=>r.value===e))==null?void 0:i.label)||e||"-"}function xh(e){return e==="byteplus"?FBe:BBe}function Eo(e){return e==="byteplus"?DBe:MBe}function ZBe(e){return e==="byteplus"?LBe:$Be}function JBe(e){return e==="byteplus"?UBe:QBe}function eUe(e){return e==="byteplus"?zBe:VBe}function tUe(e){return e==="byteplus"?HBe:qBe}function nUe(e){return e==="byteplus"?WBe:KBe}function iUe(e){return e==="byteplus"?GBe:XBe}const q9="veadk.messageFeedback.v1";function W9(e,t,n,i){return[e,t,n,i].join(":")}function K9(){if(typeof window>"u")return{};try{const e=JSON.parse(localStorage.getItem(q9)??"{}");return e&&typeof e=="object"?e:{}}catch{return{}}}function rUe(e,t,n){if(typeof window>"u")return;const i=K9();i[e]={...i[e]??{},[`veadk_feedback:${t}`]:n},localStorage.setItem(q9,JSON.stringify(i))}function Wbe(e){if(typeof window>"u")return;const t=W9(e.runtimeId,e.appName,e.userId,e.sessionId),n=K9(),i=n[t];if(i){for(const r of e.eventIds)delete i[`veadk_feedback:${r}`];Object.keys(i).length===0?delete n[t]:n[t]=i,localStorage.setItem(q9,JSON.stringify(n))}}const i2="",G9=new Map;function Kbe(e,t){G9.set(e,t)}function Gbe(){G9.clear()}function kl(e){const t=G9.get(e);return t?{app:t.app,ep:{base:t.base,apiKey:t.apiKey,runtimeId:t.runtimeId,region:t.region}}:{app:e,ep:{}}}async function Tt(e,t={},n={},i=Yo){const r=Sl(t.signal,i),s=!!n.runtimeId&&String(t.method??"GET").toUpperCase()==="DELETE",a={...t,...s?{method:"POST"}:{},headers:qu(Ph(t.headers))},l=()=>{const d={...a,signal:r};if(n.runtimeId){const f=new URLSearchParams;n.region&&f.set("_runtime_region",n.region),n.retryProbe&&f.set("probe_retry","connect"),s&&f.set("_method","DELETE");const h=f.toString()?`${e.includes("?")?"&":"?"}${f.toString()}`:"";return fetch(Ho(`${i2}/web/runtime-proxy/${n.runtimeId}${e}${h}`),d)}if(n.base){const f=new Headers(d.headers);return f.set("X-AgentKit-Base",n.base),n.apiKey&&f.set("X-AgentKit-Key",n.apiKey),fetch(Ho(`${i2}/agentkit-proxy${e}`),{...d,headers:f})}return fetch(Ho(`${i2}${e}`),d)},c=async d=>{if(pBe(d))return!0;if(d.status!==401)return!1;try{return await cBe()}catch{return!1}};let u=await l();for(;await c(u);)await mBe(r),u=await l();return u}function Rn(e,t={},n=Yo){return Tt(e,t,{},n)}function sUe(e){return typeof e=="string"?e:Array.isArray(e)?e.map(t=>{var n;if(t&&typeof t=="object"&&"msg"in t){const i=Array.isArray(t.loc)?(n=t.loc)==null?void 0:n.join("."):"",r=String(t.msg??"");return i?`${i}: ${r}`:r}return String(t)}).filter(Boolean).join(` +`):e&&typeof e=="object"?JSON.stringify(e):""}async function ln(e,t){const n=H("common.fallbackWithHttpStatus",{fallback:t,status:e.status}),i=await e.text().catch(()=>"");if(!i)return n;try{const r=JSON.parse(i),s=sUe(r.detail??r.error);return s?H("client.errorWithDetailAndRawResponse",{context:n,detail:s,response:i}):H("client.errorWithRawResponse",{context:n,response:i})}catch{return H("client.errorWithRawResponse",{context:n,response:i})}}async function X9(e,t=!1){const n=await Tt(`/web/model-api-keys${t?"?refresh=true":""}`,{signal:e,cache:"no-store"});if(!n.ok)throw new Error(await ln(n,H("client.loadArkApiKeysFailed")));return await n.json()}async function Xbe(e,t){const n=await Tt(`/web/model-api-keys/${encodeURIComponent(e)}/value`,{method:"POST",signal:t,cache:"no-store"});if(!n.ok)throw new Error(await ln(n,H("client.loadArkApiKeysFailed")));return await n.json()}async function Nx(e){const t=new URLSearchParams;e!=null&&e.apiKeyId&&t.set("apiKeyId",e.apiKeyId),e!=null&&e.refresh&&t.set("refresh","true");const n=t.toString(),i=await Tt(`/web/model-options${n?`?${n}`:""}`,{signal:e==null?void 0:e.signal,cache:"no-store"});if(!i.ok)throw new Error(await ln(i,H("client.loadModelsFailed")));return await i.json()}async function Ybe(){const e=await Tt("/list-apps");if(!e.ok)throw new Error(`list-apps failed: ${e.status}`);return e.json()}class jx extends Error{constructor(){super(H("client.runtimeAccessDenied")),this.name="RuntimeAccessDeniedError"}}class $s extends Error{constructor(t,n=!1,i=!1){super(t),this.unsupported=n,this.retryable=i,this.name="RuntimeProbeError"}}const Zbe=()=>H("client.privateRuntimeUnavailable"),Jbe=()=>H("client.runtimeTemporarilyUnavailable"),DW=["cn-beijing","cn-shanghai"],aUe=3e4,Rx=5*60*1e3,e0e=60*1e3;let xS="volcengine";const tv=new Map,kg=new Map,Eg=new Map,ku=new Map,Rr=new Map;function Y9(e,t,n){return`${t}:${e}:${n??""}`}function t0e(e){e!==xS&&Rr.clear(),xS=e}function qk(e){const t=(e||"").trim();if(xS==="byteplus")return[t&&!t.startsWith("cn-")?t:w4];const n=t&&!t.startsWith("ap-")?t:H9;return DW.includes(n)?[n,...DW.filter(i=>i!==n)]:[n]}function lR(e){const t=(e||"").trim();return t?[t]:qk()}function Yb(...e){return e.map(t=>String(t??"")).join("")}function Um(e,t,n){const i=e.get(t);return i!=null&&i.value&&Date.now()-i.updatedAt<=n?i.value:null}function Z9(e,t,n){return e.set(t,{value:n,updatedAt:Date.now()}),n}function tT(e,t){return t?t.aborted?Promise.reject(new DOMException("The operation was aborted.","AbortError")):new Promise((n,i)=>{const r=()=>{i(new DOMException("The operation was aborted.","AbortError"))};t.addEventListener("abort",r,{once:!0}),e.then(s=>{t.removeEventListener("abort",r),n(s)},s=>{t.removeEventListener("abort",r),i(s)})}):e}async function n0e(e){try{const t=await e.clone().json();return typeof t.detail=="string"?t.detail:""}catch{return""}}async function Wk(e,t,n,i,r=Yo){const s=await Tt("/list-apps",{signal:i},n??{base:e,apiKey:t},r),a=n!=null&&n.runtimeId?await n0e(s):"";if(n!=null&&n.runtimeId&&a==="runtime_access_denied")throw new jx;if(n!=null&&n.runtimeId&&a==="runtime_private_endpoint_unreachable")throw new $s(Zbe());if(n!=null&&n.runtimeId&&["runtime_proxy_connect_error","runtime_proxy_timeout","runtime_json_connect_error","runtime_json_timeout"].includes(a))throw new $s(Jbe(),!1,!0);if(n!=null&&n.runtimeId&&s.status===404)throw new $s(H("client.runtimeConnectionUnsupported"),!0,!0);if(n!=null&&n.runtimeId&&(s.status===401||s.status===403))throw new $s(H("client.runtimeConnectionDenied"));if(!s.ok)throw new Error(await ln(s,H("client.listAgentsFailed")));let l;try{l=await s.json()}catch{throw new $s(H("client.invalidListAppsJson"))}if(!Array.isArray(l)||l.some(u=>typeof u!="string"||!u.trim()))throw new $s(H("client.invalidListAppsFormat"));const c=l.map(u=>u.trim());return n!=null&&n.runtimeId&&tv.set(Y9(n.runtimeId,n.region??"",n.runtimeVersion),{apps:c,expiresAt:Date.now()+aUe}),c}async function i0e(e,t){const{app:n,ep:i}=kl(e),r=await Tt(`/apps/${n}/users/${encodeURIComponent(t)}/sessions`,{method:"POST",headers:{"Content-Type":"application/json"},body:"{}"},i);if(!r.ok){const a=H("client.createSessionFailedWithStatus",{status:r.status}),l=await ln(r,H("client.createSessionFailed"));throw new Error(l===a?a:H("common.fallbackWithDetail",{fallback:a,detail:l}))}return(await r.json()).id}async function J9(e,t){const{app:n,ep:i}=kl(e),r=await Tt(`/apps/${n}/users/${encodeURIComponent(t)}/sessions`,{},i);if(!r.ok)throw new Error(`list sessions failed: ${r.status}`);return r.json()}async function cR(e,t,n){const{app:i,ep:r}=kl(e),s=await Tt(`/apps/${i}/users/${encodeURIComponent(t)}/sessions/${encodeURIComponent(n)}`,{},r);if(!s.ok){const l=await ln(s,H("client.getSessionFailed"));throw new Error(H("client.getSessionFailedWithDetail",{status:s.status,detail:l}))}const a=await s.json();if(r.runtimeId){const l=W9(r.runtimeId,i,t,n);a.state={...K9()[l]??{},...a.state??{}}}return a}async function r0e(e){const{app:t,ep:n}=kl(e.appName);if(!n.runtimeId)throw new Error(H("client.feedbackRuntimeOnly"));if(!n.region)throw new Error(H("client.feedbackRegionMissing"));const i=await Tt("/web/evaluation/feedback",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtimeId:n.runtimeId,region:n.region,appName:t,userId:e.userId,sessionId:e.sessionId,eventId:e.eventId,rating:e.rating,comment:e.comment??""})},{},rs);if(!i.ok)throw new Error(await ln(i,H("client.submitFeedbackFailed")));const r=await i.json(),s=W9(n.runtimeId,t,e.userId,e.sessionId);return rUe(s,e.eventId,r),r}async function uR(e,t={}){const n=Yb(e.runtimeId,e.region||"cn-beijing",e.appName,e.pageSize??100),i=Um(ku,n,e0e);if(!t.force&&i)return i;const r=ku.get(n);if(!t.force&&(r!=null&&r.promise))return r.promise;let s=null;const a=(async()=>{for(const l of lR(e.region)){const c=new URLSearchParams({runtimeId:e.runtimeId,region:l,appName:e.appName,page_size:String(e.pageSize??100)}),u=await Tt(`/web/evaluation/feedback-cases?${c.toString()}`);if(u.ok)return Z9(ku,n,await u.json());s=new Error(await ln(u,H("client.loadEvaluationSetsFailed")))}throw s??new Error(H("client.loadEvaluationSetsFailed"))})();ku.set(n,{...r,promise:a,updatedAt:(r==null?void 0:r.updatedAt)??0});try{return await a}finally{const l=ku.get(n);(l==null?void 0:l.promise)===a&&ku.set(n,{value:l.value,updatedAt:l.updatedAt})}}async function O4(e){let t=null;for(const n of lR(e.region)){const i=new URLSearchParams({runtimeId:e.runtimeId,region:n,appName:e.appName,userId:e.userId}),r=await Tt(`/web/evaluation/statuses?${i.toString()}`);if(r.ok)return r.json();t=new Error(await ln(r,H("client.loadAutoEvaluationStatusFailed")))}throw t??new Error(H("client.loadAutoEvaluationStatusFailed"))}async function s0e(e){let t=null;for(const n of lR(e.region)){const i=new URLSearchParams({runtimeId:e.runtimeId,region:n,appName:e.appName}),r=await Tt(`/web/evaluation/optimizations?${i.toString()}`);if(r.ok)return r.json();t=new Error(await ln(r,H("client.loadOptimizationsFailed")))}throw t??new Error(H("client.loadOptimizationsFailed"))}function a0e(e){return Um(ku,Yb(e.runtimeId,e.region||"cn-beijing",e.appName,e.pageSize??100),e0e)}function oUe(e){uR(e).catch(()=>{})}function o0e(e){uR(e,{force:!0}).catch(()=>{})}function l0e(e,t){return["good","bad"].map(n=>{const i=e.find(r=>r.kind===n);return{kind:n,evaluationSetId:(i==null?void 0:i.evaluationSetId)??null,evaluationSetName:(i==null?void 0:i.evaluationSetName)??null,workspaceId:(i==null?void 0:i.workspaceId)??null,itemCount:t.filter(r=>r.kind===n).length}})}function r2(e){const t=e.comment??"",n=e.rating==="bad"&&!!t.trim();for(const[i,r]of ku.entries()){const s=r.value;if(!s||s.runtimeId!==e.runtimeId||s.agentName!==e.appName)continue;const a=s.items.filter(c=>c.sessionId!==e.sessionId||c.messageId!==e.messageId),l=e.rating?[{id:`local:${e.runtimeId}:${e.sessionId}:${e.messageId}`,itemKey:`local:${e.messageId}`,kind:e.rating,input:e.input,output:e.output,referenceOutput:e.referenceOutput??e.output,comment:t,agentName:e.appName,sessionId:e.sessionId,messageId:e.messageId,runtimeId:e.runtimeId,invocationId:e.invocationId??"",userId:e.userId,createdAt:e.createdAt??new Date().toISOString(),evaluationSetId:"",evaluationSetName:"",workspaceId:"",source:"user",score:n?0:null,reason:n?t:""},...a]:a;ku.set(i,{value:{...s,sets:l0e(s.sets,l),items:l},updatedAt:Date.now(),promise:r.promise})}}async function c0e(e){let t=null;for(const n of lR(e.region)){const i=await Tt("/web/evaluation/feedback-cases/delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtimeId:e.runtimeId,region:n,appName:e.appName,itemIds:e.itemIds})},{},rs);if(i.ok){const r=await i.json(),s=new Set(e.itemIds);for(const[a,l]of ku.entries()){const c=l.value;if(!c||c.runtimeId!==e.runtimeId||c.agentName!==e.appName)continue;const u=c.items.filter(d=>!s.has(d.id));ku.set(a,{value:{...c,sets:l0e(c.sets,u),items:u},updatedAt:Date.now()})}return r}t=new Error(await ln(i,H("client.deleteEvaluationCaseFailed")))}throw t??new Error(H("client.deleteEvaluationCaseFailed"))}async function S4(e,t,n){const{app:i,ep:r}=kl(e),s=await Tt(`/apps/${i}/users/${encodeURIComponent(t)}/sessions/${n}`,{method:"DELETE"},r);if(!s.ok&&s.status!==404)throw new Error(`delete session failed: ${s.status}`)}function lUe(e){const t=e.replace(/-/g,"+").replace(/_/g,"/"),n=t.padEnd(Math.ceil(t.length/4)*4,"="),i=window.atob(n),r=new Uint8Array(i.length);for(let s=0;sURL.revokeObjectURL(l),0)}async function u0e(e,t,n,i,r){const{app:s,ep:a}=kl(e),l=r==null?"":`?version=${encodeURIComponent(r)}`,c=`/apps/${encodeURIComponent(s)}/users/${encodeURIComponent(t)}/sessions/${encodeURIComponent(n)}/artifacts/${encodeURIComponent(i)}${l}`,u=await Tt(c,{},a,rs);if(!u.ok)throw new Error(await ln(u,H("client.downloadFileFailed")));const d=await u.json(),f=d.inlineData??d.inline_data;if(!(f!=null&&f.data))throw new Error(H("client.fileUnavailable"));const h=lUe(f.data),m=h.buffer.slice(h.byteOffset,h.byteOffset+h.byteLength);return{blob:new Blob([m],{type:f.mimeType??f.mime_type??"application/octet-stream"}),downloadName:f.displayName??f.display_name??i}}async function t7(e,t,n,i,r){const{blob:s}=await u0e(e,t,n,i,r);return URL.createObjectURL(s)}async function cUe(e){const t=await Tt("/web/media/capabilities");if(!t.ok)throw new Error(await ln(t,"media capabilities failed"));return t.json()}async function d0e(e,t,n,i){const{app:r}=kl(e),s=new FormData;s.set("app_name",r),s.set("user_id",t),s.set("session_id",n),s.set("file",i);const a=await Tt("/web/media",{method:"POST",body:s},{},rs);if(!a.ok)throw new Error(await ln(a,H("client.uploadFileFailed")));return{...await a.json(),status:"ready"}}async function k4(e,t,n){const{app:i}=kl(e),r=`/web/media/${encodeURIComponent(i)}/${encodeURIComponent(t)}/${encodeURIComponent(n)}/delete`,s=await Tt(r,{method:"POST"});if(!s.ok&&s.status!==404)throw new Error(await ln(s,"media cleanup failed"))}function f0e(e){try{const t=new URL(e);if(t.protocol!=="veadk-media:"||t.hostname!=="apps")return;const n=t.pathname.split("/").filter(Boolean).map(decodeURIComponent);return n.length!==7||n[1]!=="users"||n[3]!=="sessions"||n[5]!=="media"?void 0:`/web/media/${n.map(encodeURIComponent).filter((i,r)=>![1,3,5].includes(r)).join("/")}`}catch{return}}async function s2(e,t){const n=f0e(t);if(!n)throw new Error("Invalid VeADK media URI");const i=await Tt(`${n}/delete`,{method:"POST"});if(!i.ok&&i.status!==404)throw new Error(await ln(i,"media cleanup failed"))}function h0e(e,t){if(t.startsWith("data:")||t.startsWith("blob:")||/^https?:/.test(t))return t;const n=f0e(t);if(!n)return t;const i=`${n}/content`;return Ho(`${i2}${i}`)}async function Q_(e,t,n){const{app:i,ep:r}=kl(e);let s;if(r.runtimeId){const c=new URLSearchParams({runtimeId:r.runtimeId,sessionId:t,region:r.region??"cn-beijing"});if(n&&c.set("endTimeMs",String(Math.round(n))),s=await Tt(`/web/runtime-trace?${c.toString()}`),s.status===404)throw new Error(H("client.traceDisabled"))}else s=await Tt(`/dev/apps/${encodeURIComponent(i)}/debug/trace/session/${encodeURIComponent(t)}`,{},r);if(!s.ok)throw new Error(await ln(s,H("client.loadTraceFailed")));const a=s.headers.get("content-type")??"";if(!a.includes("application/json")){const c=a.split(";",1)[0]||H("client.contentTypeMissing");throw new Error(H("client.traceNonJson",{contentType:c}))}const l=await s.json();if(!Array.isArray(l))throw new Error(H("client.invalidTraceFormat"));return l}async function E4(e){const t=await Tt("/web/issue-feedback",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw new Error(await ln(t,H("client.submitIssueFeedbackFailed")));if((await t.json()).submitted!==!0)throw new Error(H("client.issueFeedbackNotConfirmed"));return{submitted:!0}}async function p0e(e,t,n=!0){const i=await Tt(`/web/agent-info/${e}`,{},t);if(!i.ok)throw new Error(`agent-info failed: ${i.status}`);const r=await i.json();if(n&&!r.draft)try{const s=await Tt(`/web/agent-draft/${e}`,{},t);if(s.ok){const a=await s.json();r.draft=a.draft}}catch{}return{appName:e,name:r.name??e,description:r.description??"",type:r.type,model:r.model??"",tools:r.tools??[],skillsPreviewSupported:Array.isArray(r.skills),skills:r.skills??[],subAgents:r.subAgents??[],components:r.components??[],searchSources:r.searchSources??[],graph:r.graph,draft:r.draft}}async function C4(e){const{app:t,ep:n}=kl(e);return p0e(t,n,!1)}async function uUe(e,t,n){let i=null;for(const r of qk(t)){const s={runtimeId:e,region:r};try{const a=Y9(e,r),l=tv.get(a);l&&l.expiresAt<=Date.now()&&tv.delete(a);const c=tv.get(a),u=n||(c==null?void 0:c.apps[0])||(await Wk("","",s))[0];if(!u)throw new Error(H("client.noPreviewableAgent"));return p0e(u,s)}catch(a){if(a instanceof jx||a instanceof $s&&!a.unsupported)throw a;i=a instanceof Error?a:new Error(String(a))}}throw i??new Error(H("client.noPreviewableAgent"))}async function n7(e,t,n={},i={}){const r=typeof n=="string"?n:void 0,s=typeof n=="string"?i:n,a=Yb(e,t||"cn-beijing",r??""),l=Um(kg,a,Rx);if(!s.force&&l)return l;const c=kg.get(a);if(!s.force&&(c!=null&&c.promise))return c.promise;const u=uUe(e,t,r).then(d=>Z9(kg,a,d));kg.set(a,{...c,promise:u,updatedAt:(c==null?void 0:c.updatedAt)??0});try{return await u}finally{const d=kg.get(a);(d==null?void 0:d.promise)===u&&kg.set(a,{value:d.value,updatedAt:d.updatedAt})}}function m0e(e,t,n=""){return Um(kg,Yb(e,t||"cn-beijing",n),Rx)}function g0e(e,t,n=""){n7(e,t,n).catch(()=>{})}async function b0e(e,t,n,i){const{app:r,ep:s}=kl(e),a=new URLSearchParams({source:t,app_name:r,q:n,user_id:i}),l=await Tt(`/web/search?${a.toString()}`,{},s);if(!l.ok)throw new Error(await ln(l,H("client.agentSearchFailed")));return l.json()}async function y0e(e,t){const{app:n}=kl(e),i=await Tt(`/web/search?source=web&app_name=${encodeURIComponent(n)}&q=${encodeURIComponent(t)}`);if(!i.ok)throw new Error(`web search failed: ${i.status}`);return i.json()}function v0e(){return Pf(H("client.emptySseBody"))}function a2(){return Pf(H("client.noDisplayableSseReply"))}const dUe=3e4;function zv(){return Pf(H("client.firstSseEventTimeout"))}function x0e(e){if(e!=null&&e.aborted)return{signal:e,clearDeadline:()=>{},cleanup:()=>{},timedOut:()=>!1};const t=new AbortController;let n=!1,i=!1;const r=()=>{i||(i=!0,clearTimeout(a))},s=()=>{t.signal.aborted||t.abort((e==null?void 0:e.reason)??new DOMException("Aborted","AbortError"))},a=setTimeout(()=>{i||t.signal.aborted||(n=!0,i=!0,t.abort(new Error(zv())))},dUe);return e==null||e.addEventListener("abort",s,{once:!0}),{signal:t.signal,clearDeadline:r,cleanup:()=>{r(),e==null||e.removeEventListener("abort",s)},timedOut:()=>n}}async function*T4({appName:e,userId:t,sessionId:n,text:i,attachments:r=[],invocation:s,platformTools:a,environmentMounts:l,environmentMount:c,functionResponses:u=[],signal:d,onRuntimeContext:f}){const{app:h,ep:m}=kl(e),g=r.flatMap(k=>k.status&&k.status!=="ready"?[]:k.uri?[{fileData:{mimeType:k.mimeType,fileUri:k.uri,displayName:k.name},partMetadata:{veadkMedia:{id:k.id,uri:k.uri,name:k.name,mimeType:k.mimeType,sizeBytes:k.sizeBytes}}}]:k.data?[{inlineData:{mimeType:k.mimeType,data:k.data,displayName:k.name}}]:[]),b=s&&(s.skills.length>0||s.targetAgent)?s:void 0,v=[...g,...u.map(k=>({functionResponse:{id:k.id,name:k.name,response:k.response}})),...i.trim()?[{text:i}]:[]];if(b&&v.length>0){const k=v[0],S=k.partMetadata;v[0]={...k,partMetadata:{...S,veadkInvocation:b}}}let y;const x=x0e(d);try{y=await Tt("/run_sse",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({app_name:h,user_id:t,session_id:n,new_message:{role:"user",parts:v},streaming:!0,...a!==void 0?{platform_tools:[...a]}:{},...l!==void 0?{environment_mounts:[...l]}:c?{environment_mount:c}:{},custom_metadata:b?{veadkInvocation:b}:void 0}),signal:x.signal},m,0)}catch(k){throw x.cleanup(),x.timedOut()?new Error(zv()):d!=null&&d.aborted||(k==null?void 0:k.name)==="AbortError"?k:new Error(Pf(k))}const O=CBe(y,m.runtimeId??"",m.region??"");if(O&&(f==null||f(O)),!y.ok){x.cleanup();const k=await ln(y,H("client.runSessionFailed"));throw new Error(Pf(H("client.runSseFailedWithDetail",{status:y.status,detail:k})))}let w=!1;try{for await(const k of aR(y)){w=!0,x.clearDeadline();const S=k;typeof S.error=="string"&&(S.error=Pf(S.error)),typeof S.errorMessage=="string"&&(S.errorMessage=Pf(S.errorMessage)),typeof S.error_message=="string"&&(S.error_message=Pf(S.error_message)),yield S}}catch(k){throw x.timedOut()?new Error(zv()):d!=null&&d.aborted||(k==null?void 0:k.name)==="AbortError"?k:new Error(Pf(k))}finally{x.cleanup()}if(!w)throw new Error(v0e())}async function dR(e,t){const n=new URLSearchParams({name:e,region:t}),i=await Tt(`/web/runtime-name-availability?${n.toString()}`,{cache:"no-store"});if(!i.ok)throw new Error(await ln(i,H("client.checkRuntimeNameFailed")));const r=await i.json();if(typeof r.available!="boolean")throw new Error(H("client.invalidRuntimeNameCheck"));return{available:r.available}}async function w0e(e,t){const n=new URLSearchParams({kind:e.kind,region:e.region});e.registry&&n.set("registry",e.registry),e.namespace&&n.set("namespace",e.namespace),e.workspaceId&&n.set("workspaceId",e.workspaceId),e.search&&n.set("search",e.search),e.pageNumber&&n.set("pageNumber",String(e.pageNumber)),e.pageSize&&n.set("pageSize",String(e.pageSize));const i=await Tt(`/web/deployment-resources?${n.toString()}`,{signal:t});if(!i.ok)throw new Error(await ln(i,H("client.loadCloudResourcesFailed")));const r=await i.json();if(typeof r.serviceRegion!="string"||!Array.isArray(r.items)||typeof r.pageNumber!="number"||typeof r.pageSize!="number"||typeof r.totalCount!="number"||typeof r.hasMore!="boolean")throw new Error(H("client.invalidCloudResources"));const s=r.items.map(a=>{if(!a||typeof a!="object"||typeof a.id!="string"||typeof a.name!="string"||typeof a.region!="string"||typeof a.status!="string")throw new Error(H("client.invalidCloudResources"));return a});return{serviceRegion:r.serviceRegion,items:s,pageNumber:r.pageNumber,pageSize:r.pageSize,totalCount:r.totalCount,hasMore:r.hasMore}}function O0e(e,t){const n=e;if(!n||typeof n!="object"||!Array.isArray(n.mounts))throw new Error(H("client.invalidEnvironmentMount"));if(n.mounts.length!==t.length)throw new Error(H("client.environmentMountMismatch"));return n.mounts.map((i,r)=>{const s=t[r];if(!i||typeof i!="object"||typeof i.environment_id!="string"||typeof i.environment_version_id!="string"||typeof i.mount_instance_id!="string"||typeof i.sandbox_session_id!="string"||!i.environment_id||!i.environment_version_id||!i.mount_instance_id||!i.sandbox_session_id)throw new Error(H("client.invalidEnvironmentMount"));if(i.environment_id!==s.environment_id||i.environment_version_id!==s.environment_version_id||s.mount_instance_id!==void 0&&i.mount_instance_id!==s.mount_instance_id)throw new Error(H("client.environmentMountMismatch"));return i})}async function S0e({runtimeId:e,appName:t,userId:n,sessionId:i,environmentMounts:r}){const{app:s}=kl(t);let a;try{a=await Tt("/web/v3/session-environment-mounts/prepare",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtime_id:e,app_name:s,user_id:n,session_id:i,environment_mounts:[...r]})})}catch(l){throw l instanceof TypeError?new Error(H("client.environmentMountNetworkFailed")):l}if(!a.ok)throw new Error(await ln(a,H("client.environmentMountFailed")));return O0e(await a.json(),r)}function i7(e){const t=new Set,n=[];for(const i of e.split(/[,,\n\r]+/)){const r=i.trim();!r||t.has(r)||(t.add(r),n.push(r))}return n}async function k0e(e,t=typeof navigator>"u"?void 0:navigator.clipboard){if(!(t!=null&&t.writeText))throw new Error(H("client.clipboardUnsupported"));try{await t.writeText(e)}catch{throw new Error(H("client.clipboardWriteFailed"))}}const MW={codex:0,codex_snapshot:1,deepseek_harness:2,deepseek_harness_snapshot:3,openclaw:4,openclaw_snapshot:5,hermes:6,hermes_snapshot:7,dev:8};async function E0e(e){var r;const t=await Tt("/web/system-info",{signal:e});if(!t.ok)throw new Error(await ln(t,H("client.loadSystemInfoFailed")));const n=await t.json();if(typeof((r=n.storage)==null?void 0:r.tosAddress)!="string"||!Array.isArray(n.sandboxTools))throw new Error(H("client.invalidSystemInfo"));const i=n.sandboxTools.map(s=>{if(!s||typeof s!="object"||typeof s.kind!="string"||typeof s.label!="string"||typeof s.toolId!="string"||typeof s.snapshot!="boolean"||typeof s.needsModelEnvUpdate!="boolean"||typeof s.canUpdateModelEnv!="boolean"||typeof s.modelEnvError!="string"||typeof s.modelEnvErrorCode!="string")throw new Error(H("client.invalidSystemInfo"));return s}).sort((s,a)=>(MW[s.kind]??Number.MAX_SAFE_INTEGER)-(MW[a.kind]??Number.MAX_SAFE_INTEGER));return{storage:{tosAddress:n.storage.tosAddress},sandboxTools:i}}const C0e=new Set(["preparing","queued","building","scanning","available","failed"]);function r7(e){if(e===null)return null;if(!e||typeof e!="object")throw new Error(H("client.invalidEnvironmentBuild"));const t=e;if(typeof t.versionId!="string"||!C0e.has(t.status)||typeof t.image!="string"||typeof t.error!="string"||typeof t.createdAt!="string"||typeof t.updatedAt!="string"||t.resources!==null&&typeof t.resources!="object")throw new Error(H("client.invalidEnvironmentBuild"));const n=Array.isArray(t.steps)?t.steps.map(i=>{if(!i||typeof i!="object"||typeof i.key!="string"||typeof i.label!="string"||!["pending","running","succeeded","failed"].includes(i.status)||i.startedAt!==null&&typeof i.startedAt!="string"||i.finishedAt!==null&&typeof i.finishedAt!="string")throw new Error(H("client.invalidEnvironmentBuildStep"));return i}):[];return{...t,toolId:typeof t.toolId=="string"?t.toolId:"",toolStatus:["creating","ready","failed"].includes(t.toolStatus)?t.toolStatus:"",runId:typeof t.runId=="string"?t.runId:"",currentStep:typeof t.currentStep=="string"?t.currentStep:"",sourceCommitSha:typeof t.sourceCommitSha=="string"?t.sourceCommitSha:"",steps:n,progressError:typeof t.progressError=="string"?t.progressError:"",logTail:typeof t.logTail=="string"?t.logTail:"",logTruncated:t.logTruncated===!0,logUpdatedAt:typeof t.logUpdatedAt=="string"?t.logUpdatedAt:null,logError:typeof t.logError=="string"?t.logError:""}}function T0e(e){if(!e||typeof e!="object")throw new Error(H("client.invalidEnvironmentManifest"));const t=e;if(!["agentkit.studio/v3","agentkit.studio/v1alpha1"].includes(t.apiVersion)||t.kind!=="Environment"||!t.metadata||typeof t.metadata.id!="string"||typeof t.metadata.name!="string"||typeof t.metadata.version!="string"||typeof t.metadata.description!="string"||!t.spec||typeof t.spec.image!="string"||!["ubuntu","aio-sandbox","codex-sandbox"].includes(t.spec.baseEnvironment)||typeof t.spec.baseImage!="string"||!["ubuntu-22.04","ubuntu-24.04"].includes(t.spec.operatingSystem)||!["python-3.10","python-3.12"].includes(t.spec.language)||t.spec.executionRuntime!=="veadk"||!Array.isArray(t.spec.packages)||!t.spec.packages.every(n=>typeof n=="string")||!Array.isArray(t.spec.capabilities)||!t.spec.capabilities.every(n=>typeof n=="string")||!Array.isArray(t.spec.skills)||!t.status||!C0e.has(t.status.phase)||typeof t.status.createdAt!="string"||typeof t.status.updatedAt!="string")throw new Error(H("client.invalidEnvironmentManifest"));return t}function A0e(e){if(e==null)return;if(!e||typeof e!="object")throw new Error(H("client.invalidImageRepository"));const t=e;if(typeof t.region!="string"||typeof t.registry!="string"||typeof t.namespace!="string"||typeof t.repository!="string")throw new Error(H("client.invalidImageRepository"));return t}function fUe(e){if(e==null)return;if(!e||typeof e!="object")throw new Error(H("client.invalidCodeRepository"));const t=e;if(typeof t.repositoryUrl!="string"||t.ref!==void 0&&typeof t.ref!="string"||typeof t.dockerfilePath!="string")throw new Error(H("client.invalidCodeRepository"));return t}function hUe(e){const t=A0e(e);if(!t)return;const n=e;if(typeof n.reference!="string")throw new Error(H("client.invalidImageSource"));return{...t,reference:n.reference}}function s7(e){if(!e||typeof e!="object")throw new Error(H("client.invalidEnvironment"));const t=e;if(typeof t.id!="string"||typeof t.name!="string"||typeof t.description!="string"||t.baseEnvironment!==void 0&&t.baseEnvironment!=="ubuntu"&&t.baseEnvironment!=="aio-sandbox"&&t.baseEnvironment!=="codex-sandbox"||t.operatingSystem!=="ubuntu-22.04"&&t.operatingSystem!=="ubuntu-24.04"||t.language!=="python-3.10"&&t.language!=="python-3.12"||!Array.isArray(t.optionIds)||!t.optionIds.every(n=>typeof n=="string")||t.selectedSkills!==void 0&&!Array.isArray(t.selectedSkills)||typeof t.dockerfile!="string"||typeof t.createdAt!="string"||typeof t.updatedAt!="string")throw new Error(H("client.invalidEnvironment"));return{...t,baseEnvironment:t.baseEnvironment==="aio-sandbox"?"aio-sandbox":t.baseEnvironment==="codex-sandbox"?"codex-sandbox":"ubuntu",selectedSkills:t.selectedSkills??[],gitSource:fUe(t.gitSource),containerRepository:A0e(t.containerRepository),imageSource:hUe(t.imageSource),latestVersion:r7(t.latestVersion)}}function _0e(e){if(!e||typeof e!="object")throw new Error(H("client.invalidWorkspace"));const t=e;if(typeof t.id!="string"||typeof t.name!="string"||typeof t.description!="string"||!Array.isArray(t.environmentIds)||!t.environmentIds.every(n=>typeof n=="string")||typeof t.createdAt!="string"||typeof t.updatedAt!="string")throw new Error(H("client.invalidWorkspace"));return t}async function a7(e){const t=await Tt("/web/workspaces",{signal:e});if(!t.ok)throw new Error(await ln(t,H("client.loadWorkspacesFailed")));const n=await t.json();if(!Array.isArray(n.items))throw new Error(H("client.invalidWorkspaceList"));return n.items.map(_0e)}async function N0e(e,t,n,i){const r=await Tt(e,{method:t,headers:{"Content-Type":"application/json"},body:JSON.stringify(n),signal:i});if(!r.ok)throw new Error(await ln(r,H("client.saveWorkspaceFailed")));return _0e(await r.json())}function j0e(e,t){return N0e("/web/workspaces","POST",e,t)}function R0e(e,t,n){return N0e(`/web/workspaces/${encodeURIComponent(e)}`,"PATCH",t,n)}async function I0e(e,t){const n=await Tt(`/web/workspaces/${encodeURIComponent(e)}`,{method:"DELETE",signal:t});if(!n.ok)throw new Error(await ln(n,H("client.deleteWorkspaceFailed")))}async function Kk(e){const t=await Tt("/web/v3/environments",{signal:e});if(!t.ok)throw new Error(await ln(t,H("client.loadEnvironmentsFailed")));const n=await t.json();if(!Array.isArray(n.items))throw new Error(H("client.invalidEnvironmentList"));return n.items.map(s7)}async function P0e(e,t){const n=await Tt("/web/v3/environment-repositories/inspect",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e),signal:t});if(!n.ok)throw new Error(await ln(n,H("client.probeRepositoryFailed")));const i=await n.json();if(typeof i.repositoryUrl!="string"||typeof i.ref!="string"||typeof i.commitSha!="string"||!Array.isArray(i.dockerfiles)||!i.dockerfiles.every(r=>typeof r=="string"))throw new Error(H("client.invalidRepositoryProbe"));return i}async function D0e(e,t){const n=await Tt(`/web/v3/environments/${encodeURIComponent(e)}/share-code`,{method:"POST",signal:t});if(!n.ok)throw new Error(await ln(n,H("client.exportEnvironmentCodeFailed")));const i=await n.json();if(typeof i.shareCode!="string"||typeof i.name!="string")throw new Error(H("client.invalidEnvironmentCode"));return i}async function M0e(e,t){const n=await Tt("/web/v3/environment-share-codes/inspect",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({shareCodes:e}),signal:t});if(!n.ok)throw new Error(await ln(n,H("client.inspectEnvironmentCodeFailed")));const i=await n.json();if(!Array.isArray(i.items))throw new Error(H("client.invalidEnvironmentCodeInspection"));return i.items.map(r=>{if(!r||typeof r!="object")throw new Error(H("client.invalidEnvironmentCodeInspection"));const s=r,a=s.status==="valid"||s.valid===!0?"valid":s.status==="invalid"||s.valid===!1?"invalid":null;if(!Number.isInteger(s.index)||a===null||s.name!==void 0&&typeof s.name!="string"||s.error!==void 0&&typeof s.error!="string")throw new Error(H("client.invalidEnvironmentCodeInspection"));return{index:s.index,status:a,name:s.name??"",error:s.error??""}})}async function L0e(e,t){const n=await Tt("/web/v3/environment-share-codes/import",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({shareCodes:e}),signal:t});if(!n.ok)throw new Error(await ln(n,H("client.importEnvironmentCodeFailed")));const i=await n.json();if(!Array.isArray(i.items))throw new Error(H("client.invalidEnvironmentCodeImport"));return i.items.map(r=>{if(!r||typeof r!="object")throw new Error(H("client.invalidEnvironmentCodeImport"));const s=r;if(!Number.isInteger(s.index)||!(s.status==="created"||s.status==="duplicate"||s.status==="failed")||s.name!==void 0&&typeof s.name!="string"||s.error!==void 0&&typeof s.error!="string")throw new Error(H("client.invalidEnvironmentCodeImport"));return{index:s.index,status:s.status,name:s.name??"",environment:s.environment===void 0||s.environment===null?void 0:s7(s.environment),error:s.error??""}})}async function $0e(e,t,n,i){let r;try{r=await Tt(e,{method:t,headers:{"Content-Type":"application/json"},body:JSON.stringify(n),signal:i})}catch(s){throw s instanceof DOMException&&s.name==="AbortError"?s:s instanceof TypeError?new Error(H("client.studioUnavailable")):s}if(!r.ok)throw new Error(await ln(r,H("client.saveEnvironmentFailed")));return s7(await r.json())}function F0e(e,t){return $0e("/web/v3/environments","POST",e,t)}function B0e(e,t,n){return $0e(`/web/v3/environments/${encodeURIComponent(e)}`,"PATCH",t,n)}async function U0e(e,t){const n=await Tt(`/web/v3/environments/${encodeURIComponent(e)}`,{method:"DELETE",signal:t});if(!n.ok)throw new Error(await ln(n,H("client.deleteEnvironmentFailed")))}async function A4(e,t){const n=await Tt(`/web/v3/environments/${encodeURIComponent(e)}/build`,{method:"POST",signal:t});if(!n.ok)throw new Error(await ln(n,H("client.startEnvironmentBuildFailed")));const i=r7(await n.json());if(!i)throw new Error(H("client.invalidEnvironmentBuild"));return i}async function Q0e(e,t,n={}){const i=n.includeLogs?"?includeLogs=true":"",r=await Tt(`/web/v3/environments/${encodeURIComponent(e)}/builds/${encodeURIComponent(t)}${i}`,{signal:n.signal});if(!r.ok)throw new Error(await ln(r,H("client.loadEnvironmentBuildFailed")));const s=r7(await r.json());if(!s)throw new Error(H("client.invalidEnvironmentBuild"));return s}async function z0e(e,t,n){const i=await Tt(`/web/v3/environments/${encodeURIComponent(e)}/builds/${encodeURIComponent(t)}/manifest`,{signal:n});if(!i.ok)throw new Error(await ln(i,H("client.loadEnvironmentManifestFailed")));return T0e(await i.json())}function LW(e){if(!e||typeof e!="object")throw new Error(H("client.invalidEnvironmentResource"));const t=e;if(t.source!=="provided"&&t.source!=="managed"||typeof t.consoleUrl!="string")throw new Error(H("client.invalidEnvironmentResource"));return t}async function V0e(e){const t=await Tt("/web/v3/environment-resources",{signal:e});if(!t.ok)throw new Error(await ln(t,H("client.loadEnvironmentResourcesFailed")));const n=await t.json();if(n.provider!=="volcengine"&&n.provider!=="byteplus"||typeof n.region!="string")throw new Error(H("client.invalidEnvironmentResource"));return{provider:n.provider,region:n.region,codePipeline:LW(n.codePipeline),containerRegistry:LW(n.containerRegistry)}}async function pUe(e,t){const n=await Tt(`/web/system-info/sandbox-tools/${encodeURIComponent(e)}/model-env`,{method:"POST",signal:t});if(!n.ok)throw new Error(await ln(n,H("client.updateCodexSandboxFailed")));const i=await n.json();if(i.kind!=="codex"&&i.kind!=="codex_snapshot"||typeof i.toolId!="string"||typeof i.updated!="boolean")throw new Error(H("client.invalidCodexSandboxUpdate"));return i}async function fR(e){const t=await Tt("/web/identity/user-pools",{signal:e});if(!t.ok)throw new Error(await ln(t,H("client.loadUserPoolsFailed")));const n=await t.json();if(!Array.isArray(n.items))throw new Error(H("client.invalidUserPoolList"));return n.items.map(i=>{if(!i||typeof i!="object"||typeof i.uid!="string"||typeof i.name!="string"||typeof i.domain!="string"||typeof i.region!="string"||typeof i.isCurrent!="boolean")throw new Error(H("client.invalidUserPoolList"));return i})}const SO=new Map;function mUe(e){if(typeof e=="string")return e?{message:e}:null;if(!e||typeof e!="object"||Array.isArray(e))return null;const t=e,n=typeof t.message=="string"?t.message:typeof t.error=="string"?t.error:"";return n?{message:n,phase:typeof t.phase=="string"?t.phase:void 0,runtimeId:typeof t.runtimeId=="string"?t.runtimeId:void 0,logPath:typeof t.logPath=="string"?t.logPath:void 0}:null}class kO extends Error{constructor(t){super(t.message),this.detail=t,this.name="GithubCicdPipelineError"}}async function Dh(e){const t=await e.text().catch(()=>"");if(t)try{const n=JSON.parse(t),i=mUe(n.detail??n.error);if(i)return new kO(i)}catch{return new kO({message:t})}return new kO({message:H("client.syncGithubFailed",{status:e.status})})}async function H0e(e){const t=await Tt("/web/github-delivery/source-sync",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({project:e.project,githubUrl:e.githubUrl,githubToken:e.githubToken,baseBranch:e.baseBranch,region:e.region,cloudProvider:e.cloudProvider})},{},0);if(!t.ok)throw await Dh(t);return t.json()}async function q0e(e){const t=await Tt("/web/github-delivery/cicd-pipeline",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({githubUrl:e.githubUrl,githubToken:e.githubToken,baseBranch:e.baseBranch,runtimeName:e.runtimeName,runtimeId:e.runtimeId,region:e.region,cloudProvider:e.cloudProvider,projectPath:e.projectPath??".",volcengineAccessKey:e.volcengineAccessKey,volcengineSecretKey:e.volcengineSecretKey,volcengineSessionToken:e.volcengineSessionToken??""})},{},0);if(!t.ok)throw await Dh(t);return t.json()}async function W0e(e){const t=await Tt("/web/github-delivery/init-main",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({project:e.project,githubUrl:e.githubUrl,githubToken:e.githubToken,baseBranch:e.baseBranch,runtimeName:e.runtimeName,runtimeId:e.runtimeId,region:e.region,cloudProvider:e.cloudProvider,projectPath:e.projectPath??".",volcengineAccessKey:e.volcengineAccessKey,volcengineSecretKey:e.volcengineSecretKey,volcengineSessionToken:e.volcengineSessionToken??""})},{},0);if(!t.ok)throw await Dh(t);return t.json()}async function gUe(e){const t=await Tt("/web/github-delivery/source-sync/cicd",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({pipelineId:e.pipelineId,runtimeName:e.runtimeName,runtimeId:e.runtimeId,region:e.region,cloudProvider:e.cloudProvider,projectPath:e.projectPath??".",volcengineAccessKey:e.volcengineAccessKey,volcengineSecretKey:e.volcengineSecretKey,volcengineSessionToken:e.volcengineSessionToken??""})},{},0);if(!t.ok)throw await Dh(t);return t.json()}async function K0e(e){const t=await Tt(`/web/github-cicd/runtime-binding?runtimeId=${encodeURIComponent(e)}`);if(!t.ok)throw await Dh(t);const n=await t.json();return n.pipelineId?n:null}async function o2(e){const t=await Tt(`/web/github-delivery/versions?runtimeId=${encodeURIComponent(e)}`);if(!t.ok)throw await Dh(t);return t.json()}async function G0e(e){const t=await Tt("/web/github-delivery/rollback-pr",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw await Dh(t);return t.json()}async function o7(e){const t=await Tt("/web/github-cicd/runtime-binding",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw await Dh(t);return t.json()}async function X0e(e){const t=await Tt("/web/github-cicd/runtime-sync",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtimeId:e.runtimeId,project:e.project})},{},0);if(!t.ok)throw await Dh(t);return t.json()}async function Ix(e,t,n,i){var f,h,m,g,b;const r=i==null?void 0:i.taskId,s=r?new AbortController:void 0;r&&s&&SO.set(r,s);const a=()=>{r&&SO.get(r)===s&&SO.delete(r)};let l;try{const v=!!(i!=null&&i.migrationTaskId);(f=i==null?void 0:i.onStage)==null||f.call(i,{level:"info",phase:"upload",message:H(v?"client.validatingMigrationArtifact":"client.uploadingCodePackage"),pct:0}),l=await Tt("/web/deploy-agentkit",{method:"POST",headers:{"Content-Type":"application/json"},signal:s==null?void 0:s.signal,body:JSON.stringify({name:e,files:v?[]:t,config:n,taskId:r,migrationTaskId:i==null?void 0:i.migrationTaskId,runtimeId:i==null?void 0:i.runtimeId,runtimeName:i==null?void 0:i.runtimeName,appName:i==null?void 0:i.appName,editMode:i==null?void 0:i.editMode,draft:i==null?void 0:i.draft,updateEtag:i==null?void 0:i.updateEtag,baseRuntimeVersion:i==null?void 0:i.baseRuntimeVersion,removeRuntimeEnvKeys:i==null?void 0:i.removeRuntimeEnvKeys,mcpSecretValues:i==null?void 0:i.mcpSecretValues,mcpCredentialReuses:i==null?void 0:i.mcpCredentialReuses,sessionStorage:i==null?void 0:i.sessionStorage,minInstance:i==null?void 0:i.minInstance,maxInstance:i==null?void 0:i.maxInstance,createEvaluationSets:i==null?void 0:i.createEvaluationSets,description:IBe((i==null?void 0:i.description)??""),authentication:i==null?void 0:i.authentication,im:i==null?void 0:i.im,envs:i==null?void 0:i.envs,resources:i==null?void 0:i.resources,source:(i==null?void 0:i.source)??(i!=null&&i.migrationTaskId?{kind:"migration",migrationId:i.migrationTaskId}:{kind:"inlineFiles"}),harnessSidecar:i==null?void 0:i.harnessSidecar,environment:i==null?void 0:i.environment})},{},0),(h=i==null?void 0:i.onStage)==null||h.call(i,{level:"success",phase:"upload",message:H(v?"client.migrationArtifactValidated":"client.codePackageUploaded"),pct:100})}catch(v){throw a(),PW(v)?v:new Dw({taskId:r,cause:v})}if(!l.ok){const v=await ln(l,H("client.deploymentFailed"));throw a(),new Error(v)}let c=null;try{for await(const v of aR(l)){const y=v;if(y&&y.done){c=y;break}y&&y.message&&((m=i==null?void 0:i.onStage)==null||m.call(i,y))}}catch(v){throw a(),PW(v)?v:new Dw({taskId:r,cause:v})}if(a(),!c)throw new Dw({taskId:r});if(!c.success){const v=new Error(c.error||H("client.deploymentFailed"));throw qbe(v)?new Dw({taskId:r,cause:v}):v}if(!c.agentName)throw new Error(H("client.deploymentMissingAgentName"));if(!c.runtimeId&&!c.url)throw new Error(H("client.deploymentMissingConnection"));const u=(g=c.runtimeName)!=null&&g.trim()?c.agentName:e,d=((b=c.runtimeName)==null?void 0:b.trim())||c.agentName;return{apikey:c.apikey??"",url:c.url??"",agentName:u,runtimeName:d,runtimeId:c.runtimeId,consoleUrl:c.consoleUrl,region:c.region,version:c.version,warnings:c.warnings,feishuChannel:c.feishuChannel}}async function Y0e(e){var n;const t=await Tt("/web/cancel-deploy-agentkit",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({taskId:e})});if(!t.ok){const i=await t.text().catch(()=>"");throw new Error(i||H("client.cancelDeploymentFailed",{status:t.status}))}(n=SO.get(e))==null||n.abort(),SO.delete(e)}async function bUe(e=H9){const t=await Tt(`/web/my-runtimes?region=${encodeURIComponent(e)}`);if(!t.ok)throw new Error(H("client.loadFailed",{status:t.status}));return(await t.json()).runtimes??[]}const wS={title:"AgentKit Studio",logoUrl:""},_4={enabled:!1},FD={studio:!1,version:"",provider:"volcengine",branding:wS,features:{newChat:!0,search:!0,skillCenter:!0,history:!0,addAgent:!0,manageAgents:!0,agentUsage:!1,addAgentkit:!0,generatedAgentTestRun:!0},defaultView:"chat",agentsSource:"local",telemetry:_4};function yUe(e){if(!e||typeof e!="object")return _4;const t=e;if(t.enabled!==!0||!t.studio||typeof t.studio!="object")return _4;const n=t.studio;return{enabled:!0,studio:{deployId:typeof n.deployId=="string"?n.deployId:"",userPoolId:typeof n.userPoolId=="string"?n.userPoolId:"",applicationId:typeof n.applicationId=="string"?n.applicationId:"",functionId:typeof n.functionId=="string"?n.functionId:"",region:typeof n.region=="string"?n.region:"",project:typeof n.project=="string"?n.project:"",version:typeof n.version=="string"?n.version:"",accountId:typeof n.accountId=="string"?n.accountId:"",accountIdResolutionError:typeof n.accountIdResolutionError=="string"?n.accountIdResolutionError:""}}}async function Z0e(){var e,t;try{const n=await Tt("/web/ui-config");if(!n.ok)return FD;const i=await n.json(),r=typeof((e=i.branding)==null?void 0:e.logoUrl)=="string"?i.branding.logoUrl:wS.logoUrl,s=i.provider==="byteplus"?"byteplus":"volcengine";return t0e(s),{studio:i.studio??!1,version:typeof i.version=="string"?i.version:"",provider:s,branding:{title:typeof((t=i.branding)==null?void 0:t.title)=="string"?i.branding.title:wS.title,logoUrl:r?Ho(r):""},features:{...FD.features,...i.features??{}},defaultView:i.defaultView??"chat",agentsSource:i.agentsSource==="cloud"?"cloud":"local",telemetry:yUe(i.telemetry)}}catch{return FD}}const J0e={role:"user",telemetry:{userId:"",accountId:""},capabilities:{createAgents:!1,createPersonalAgents:!1,manageAgents:!1,runtimeScope:"mine"}};async function eye(){var n,i,r,s,a;const e=await Tt("/web/access");if(!e.ok)throw new Error(H("client.loadPermissionsFailed",{status:e.status}));const t=await e.json();if(!["admin","developer","user"].includes(t.role)||typeof((n=t.telemetry)==null?void 0:n.userId)!="string"||t.telemetry.accountId!==void 0&&typeof t.telemetry.accountId!="string"||typeof((i=t.capabilities)==null?void 0:i.createAgents)!="boolean"||typeof((r=t.capabilities)==null?void 0:r.createPersonalAgents)!="boolean"||typeof((s=t.capabilities)==null?void 0:s.manageAgents)!="boolean"||!["all","mine"].includes((a=t.capabilities)==null?void 0:a.runtimeScope))throw new Error(H("client.invalidPermissionResponse"));return t}async function tye(e,t){const n=new URLSearchParams;e&&n.set("targetVersion",e),t&&n.set("startedAt",String(t));const i=n.size?`?${n.toString()}`:"",r=await Tt(`/web/studio-update${i}`);if(!r.ok)throw new Error(H("client.checkStudioUpdateFailed",{status:r.status}));return await r.json()}async function nye(){const e=await Tt("/web/studio-update/permissions");if(!e.ok){let t="";try{const n=await e.json();t=typeof n.detail=="string"?n.detail:""}catch{t=""}throw new Error(t||H("client.studioUpdatePreflightFailed",{status:e.status}))}return await e.json()}async function iye(e){const t=await Tt("/web/studio-update",{method:"POST",headers:{"Content-Type":"application/json","X-VeADK-Studio-Update":"1"},body:JSON.stringify({version:e})},{},rs);if(!t.ok){let n="";try{const i=await t.json();n=typeof i.detail=="string"?i.detail:""}catch{n=""}throw new Error(n||H("client.submitStudioUpdateFailed",{status:t.status}))}return await t.json()}async function rye({runtimeId:e,region:t,appName:n,page:i=1,pageSize:r=20,signal:s}){const a=new URLSearchParams({runtimeId:e,region:t,appName:n,page:String(i),pageSize:String(r)}),l=await Tt(`/web/agent-usage?${a.toString()}`,{signal:s});if(!l.ok)throw new Error(await ln(l,H("client.loadAgentUsageFailed")));const c=l.headers.get("content-type")||H("client.notProvided"),u=c.toLowerCase();if(!u.includes("application/json")&&!u.includes("+json"))throw new Error(H("client.agentUsageNonJson",{status:l.status,contentType:c})+H("client.checkStudioGateway"));try{return await l.json()}catch{throw new Error(H("client.agentUsageInvalidJson",{status:l.status,contentType:c})+H("client.retryCheckGateway"))}}function Mh(e=""){return`/web/cronjobs${e?`/${encodeURIComponent(e)}`:""}`}async function N4(e){const t=await Tt(Mh(),{signal:e});if(!t.ok)throw new Error(await ln(t,H("client.loadCronJobsFailed")));const n=await t.json();return Array.isArray(n)?n:n.items??[]}async function vUe(e,t){const n=await Tt(Mh(e),{signal:t});if(!n.ok)throw new Error(await ln(n,H("client.loadCronJobFailed")));return await n.json()}async function sye(e){const t=await Tt(Mh(),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw new Error(await ln(t,H("client.createCronJobFailed")));return await t.json()}async function aye(e,t){const n=await Tt(`${Mh(e)}/update`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});if(!n.ok)throw new Error(await ln(n,H("client.updateCronJobFailed")));return await n.json()}async function oye(e,t){const n=t?"enable":"disable",i=await Tt(`${Mh(e)}/${n}`,{method:"POST"});if(!i.ok)throw new Error(await ln(i,H(t?"client.enableCronJobFailed":"client.pauseCronJobFailed")));return await i.json()}async function lye(e){const t=await Tt(`${Mh(e)}/run`,{method:"POST"});if(!t.ok)throw new Error(await ln(t,H("client.runCronJobFailed")));return await t.json()}async function j4(e,t){const n=await Tt(`${Mh(e)}/runs`,{signal:t});if(!n.ok)throw new Error(await ln(n,H("client.loadCronHistoryFailed")));const i=await n.json();return Array.isArray(i)?i:i.items??[]}async function cye(e,t){const n=await Tt(`${Mh(e)}/runs/${encodeURIComponent(t)}/cancel`,{method:"POST"});if(!n.ok)throw new Error(await ln(n,H("client.stopCronRunFailed")));return await n.json()}async function uye(e){const t=await Tt(Mh(e),{method:"DELETE"});if(!t.ok)throw new Error(await ln(t,H("client.deleteCronJobFailed")))}class l7 extends Error{constructor(t,n){super(t),this.status=n,this.name="RuntimeListError"}}async function Px(e={}){const t=new URLSearchParams({scope:e.scope??"all",page_size:String(e.pageSize??30),region:e.region??"all"});e.nextToken&&t.set("next_token",e.nextToken);const n=await Tt(`/web/runtimes?${t.toString()}`,{signal:e.signal});if(!n.ok){const r=await ln(n,H("client.loadRuntimeFailed"));throw new l7(r,n.status)}const i=await n.json();return{runtimes:i.runtimes??[],nextToken:i.nextToken??""}}async function Vv(e,t,n={}){if(n.preferCached){const i=Y9(e,t,n.currentVersion),r=tv.get(i);if(r&&r.expiresAt>Date.now())return[...r.apps];r&&tv.delete(i)}try{const i={runtimeId:e,region:t,runtimeVersion:n.currentVersion};return n.retryProbe&&(i.retryProbe=!0),await Wk("","",i,n.signal,n.timeoutMs)}catch(i){if(i instanceof jx||i instanceof $s||i instanceof Error)throw i;return null}}async function dye(e,t){const n=new URLSearchParams({region:t}),i=await Tt(`/web/runtime-tool-channel/${encodeURIComponent(e)}/capabilities?${n.toString()}`);if(!i.ok)throw new $s(await ln(i,H("client.loadLocalToolsFailed")),!1,!0);return await i.json()}async function fye(e,t){const n=new URLSearchParams({region:t}),i=await Tt(`/web/runtime-route-channel/${encodeURIComponent(e)}/connect?${n.toString()}`,{method:"POST"});if(!i.ok)throw new $s(await ln(i,H("client.connectDynamicRouteFailed")),!1,!0);return await i.json()}async function hye(e,t,n={}){const i={runtimeId:e,region:t};n.retryProbe&&(i.retryProbe=!0);const r=await Tt("/.well-known/agent-card.json",{},i),s=await n0e(r);if(s==="runtime_access_denied")throw new jx;if(s==="runtime_private_endpoint_unreachable")throw new $s(Zbe());if(["runtime_proxy_connect_error","runtime_proxy_timeout"].includes(s))throw new $s(Jbe());if(r.status===404)return null;if(r.status===401||r.status===403)throw new $s(H("client.a2aProbeDenied"));if(!r.ok)throw new Error(await ln(r,H("client.loadA2aCardFailed")));const a=await r.json().catch(()=>null),l=typeof(a==null?void 0:a.url)=="string"?a.url.trim():"";return l?{name:typeof(a==null?void 0:a.name)=="string"?a.name:"",description:typeof(a==null?void 0:a.description)=="string"?a.description:"",endpoint:l}:null}async function pye(e,t){const n=new URLSearchParams({runtimeId:e,region:t}),i=await Tt(`/web/runtime-api-key/reveal?${n.toString()}`,{method:"POST",cache:"no-store"});if(!i.ok)throw new Error(await ln(i,H("client.loadRuntimeApiKeyFailed")));const r=await i.json();if(typeof r.apiKey!="string"||!r.apiKey)throw new Error(H("client.runtimeApiKeyMissing"));return r.apiKey}async function mye(e,t){const n=await Tt("/web/delete-runtime",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({runtimeId:e,region:t})});if(!n.ok){const i=await n.text().catch(()=>"");throw new Error(i||H("client.deleteFailed",{status:n.status}))}}function l2({runtimeId:e,region:t,appName:n,currentVersion:i}){return Yb(xS,t,e,i??"",(n==null?void 0:n.trim())??"")}async function xUe({runtimeId:e,region:t,appName:n,currentVersion:i,force:r=!1}){const s=new URLSearchParams({runtimeId:e,region:t});n&&s.set("appName",n),i!=null&&s.set("currentVersion",String(i)),r&&s.set("refresh","true");const a=await Tt(`/web/runtime-update-capability?${s.toString()}`);if(!a.ok)throw new Error(await wUe(a));return await a.json()}function hR({runtimeId:e,region:t,appName:n,currentVersion:i,signal:r,force:s=!1}){var u,d;const a={runtimeId:e,region:t,appName:n,currentVersion:i},l=l2(a);if(s&&Rr.delete(l),!s){const f=Um(Rr,l,Rx);if(f)return tT(Promise.resolve(f),r);const h=(u=Rr.get(l))==null?void 0:u.promise;if(h)return tT(h,r);if(n){const m=l2({...a,appName:""}),g=(d=Rr.get(m))==null?void 0:d.promise;if(g){let b;return b=g.then(v=>{var x,O,w,k,S;if(v.recoveryStatus==="preparing")return((x=Rr.get(l))==null?void 0:x.promise)===b&&Rr.delete(l),v;const y=((w=(O=v.agent)==null?void 0:O.appName)==null?void 0:w.trim())??"";return y&&y!==n.trim()?(((k=Rr.get(l))==null?void 0:k.promise)===b&&Rr.delete(l),hR(a)):(((S=Rr.get(l))==null?void 0:S.promise)===b&&Rr.set(l,{value:v,updatedAt:Date.now()}),v)},v=>{var y;throw((y=Rr.get(l))==null?void 0:y.promise)===b&&Rr.delete(l),v}),Rr.set(l,{promise:b,updatedAt:0}),tT(b,r)}}}let c;return c=xUe({...a,force:s}).then(f=>{var h,m,g,b,v;if(f.recoveryStatus==="preparing")return((h=Rr.get(l))==null?void 0:h.promise)===c&&Rr.delete(l),f;if(((m=Rr.get(l))==null?void 0:m.promise)===c){Rr.set(l,{value:f,updatedAt:Date.now()});const y=new Set(["",((b=(g=f.agent)==null?void 0:g.appName)==null?void 0:b.trim())??""]);for(const x of y){const O=l2({...a,appName:x});O!==l&&!((v=Rr.get(O))!=null&&v.promise)&&Rr.set(O,{value:f,updatedAt:Date.now()})}}return f},f=>{var h;throw((h=Rr.get(l))==null?void 0:h.promise)===c&&Rr.delete(l),f}),Rr.set(l,{promise:c,updatedAt:0}),tT(c,r)}function R4({runtimeId:e,region:t,appName:n,currentVersion:i}){return Um(Rr,l2({runtimeId:e,region:t,appName:n,currentVersion:i}),Rx)}function I4(e){return hR(e).then(()=>{},()=>{})}function P4(e,t){if(!e){Rr.clear();return}for(const n of Rr.keys()){const[i,r,s]=n.split("");i===xS&&s===e&&(!t||r===t)&&Rr.delete(n)}}async function wUe(e){const t=await e.json().catch(()=>null),n=typeof(t==null?void 0:t.detail)=="string"?t.detail:"";return e.status===403?H("client.runtimeManageForbidden"):e.status===404?H(n==="runtime_not_found"?"client.runtimeNotFound":"client.runtimeUnavailable"):H("client.checkRuntimeUpdateFailed",{status:e.status})}async function OUe(e,t){let n=null;for(const i of qk(t)){const r=await Tt(`/web/runtime-detail?runtimeId=${encodeURIComponent(e)}®ion=${encodeURIComponent(i)}`);if(r.ok)return r.json();n=new Error(await ln(r,H("client.loadRuntimeDetailFailed")))}throw n??new Error(H("client.loadRuntimeDetailFailed"))}async function c7(e,t="cn-beijing",n={}){const i=Yb(e,t||"cn-beijing"),r=Um(Eg,i,Rx);if(!n.force&&r)return r;const s=Eg.get(i);if(!n.force&&(s!=null&&s.promise))return s.promise;const a=OUe(e,t).then(l=>Z9(Eg,i,l));Eg.set(i,{...s,promise:a,updatedAt:(s==null?void 0:s.updatedAt)??0});try{return await a}finally{const l=Eg.get(i);(l==null?void 0:l.promise)===a&&Eg.set(i,{value:l.value,updatedAt:l.updatedAt})}}function gye(e,t="cn-beijing"){return Um(Eg,Yb(e,t||"cn-beijing"),Rx)}function bye(e,t="cn-beijing"){c7(e,t).catch(()=>{})}async function EO(e){const t=await Tt("/web/generated-agent-projects",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({draft:e})});if(!t.ok)throw new Error(await ln(t,H("client.generateProjectFailed")));return t.json()}const SUe=19e4;async function yye(e){const t=await Tt("/web/generated-agent-drafts",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({requirement:e})},{},SUe);if(!t.ok)throw new Error(await ln(t,H("client.generateAgentConfigFailed")));return sR(t,H("client.generateAgentConfigFailed"))}async function vye(e,t){const n=await Tt("/web/generated-agent-test-runs",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({draft:e,runtimeId:t==null?void 0:t.runtimeId,runtimeRegion:t==null?void 0:t.region})});if(!n.ok)throw new Error(await ln(n,H("client.createDebugRunFailed")));return sR(n,H("client.createDebugRunFailed"))}async function xye(e,t){const n=await Tt(`/web/generated-agent-test-runs/${e}/sessions`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({userId:t})});if(!n.ok)throw new Error(await ln(n,H("client.createDebugSessionFailed")));return(await sR(n,H("client.createDebugSessionFailed"))).id}async function wye(e,t){const n=await Tt(`/web/generated-agent-test-runs/${encodeURIComponent(e)}/trace/session/${encodeURIComponent(t)}`);if(!n.ok)throw new Error(await ln(n,H("client.loadDebugTraceFailed")));const i=await sR(n,H("client.loadDebugTraceFailed"));if(!Array.isArray(i))throw new Error(H("client.invalidDebugTrace"));return i}async function*Oye({runId:e,userId:t,sessionId:n,text:i,signal:r}){const s=i.trim()?[{text:i}]:[],a=x0e(r);let l;try{l=await Tt(`/web/generated-agent-test-runs/${e}/run_sse`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({user_id:t,session_id:n,new_message:{role:"user",parts:s},streaming:!0}),signal:a.signal},{},0)}catch(c){throw a.cleanup(),a.timedOut()?new Error(zv()):c}if(!l.ok)throw a.cleanup(),new Error(await ln(l,H("client.debugRunFailed")));try{for await(const c of aR(l))a.clearDeadline(),yield c}catch(c){throw a.timedOut()?new Error(zv()):c}finally{a.cleanup()}}async function sy(e){const t=await Tt(`/web/generated-agent-test-runs/${e}`,{method:"DELETE"});if(!t.ok&&t.status!==404)throw new Error(await ln(t,H("client.cleanupDebugRunFailed")))}function Sye(e){if(!e||typeof e!="object")throw new Error(H("client.invalidSandboxVersion"));const t=e;if(typeof t.toolId!="string"||typeof t.error!="string")throw new Error(H("client.invalidSandboxVersion"));if(!t.error&&(t.provider!=="volcengine"&&t.provider!=="byteplus"||typeof t.region!="string"||typeof t.status!="string"||typeof t.currentImage!="string"||typeof t.latestImage!="string"||typeof t.needsImageUpdate!="boolean"||typeof t.canUpdate!="boolean"||typeof t.needsModelEnvUpdate!="boolean"||typeof t.canUpdateModelEnv!="boolean"||typeof t.modelEnvError!="string"))throw new Error(H("client.invalidSandboxVersion"));return t}async function kye(e){const t=await Tt("/web/system-info/sandbox-tools/updates",{signal:e});if(!t.ok)throw new Error(await ln(t,H("client.loadSandboxVersionsFailed")));const n=await t.json();if(!Array.isArray(n.tools))throw new Error(H("client.invalidSandboxVersion"));return n.tools.map(Sye)}async function Eye(e){const t=await Tt(`/web/system-info/sandbox-tools/${encodeURIComponent(e)}/update`,{method:"POST"},{},33e4);if(!t.ok)throw new Error(await ln(t,H("client.updateSandboxFailed")));const n=await t.json();if(typeof n.updated!="boolean")throw new Error(H("client.invalidSandboxUpdate"));return{updated:n.updated,state:Sye(n.state)}}const kUe=Object.freeze(Object.defineProperty({__proto__:null,DEFAULT_SITE_BRANDING:wS,DEFAULT_STUDIO_ACCESS:J0e,GithubCicdPipelineError:kO,RuntimeAccessDeniedError:jx,RuntimeListError:l7,RuntimeProbeError:$s,attachGithubDeliveryCicdToSourceSync:gUe,bindGithubCicdRuntime:o7,buildEnvironment:A4,cancelAgentkitDeployment:Y0e,cancelCronJobRun:cye,checkRuntimeNameAvailability:dR,clearMessageFeedbackCache:Wbe,clearRemoteApps:Gbe,componentSearch:b0e,createCronJob:sye,createEnvironment:F0e,createGeneratedAgentTestRun:vye,createGeneratedAgentTestSession:xye,createGithubCicdPipeline:H0e,createGithubDeliveryCicdPipeline:q0e,createGithubDeliveryRollbackPr:G0e,createSession:i0e,createWorkspace:j0e,deleteAgentFeedbackCases:c0e,deleteCronJob:uye,deleteEnvironment:U0e,deleteGeneratedAgentTestRun:sy,deleteMedia:s2,deleteRuntime:mye,deleteSession:S4,deleteSessionMedia:k4,deleteWorkspace:I0e,deployAgentkitProject:Ix,downloadArtifact:e7,ensureRuntimeRouteChannel:fye,exportEnvironmentShareCode:D0e,fetchRemoteApps:Wk,generateAgentDraftFromRequirement:yye,generateAgentProject:EO,getAgentFeedbackCases:uR,getAgentInfo:C4,getAgentOptimizations:s0e,getAgentUsage:rye,getAutomaticEvaluationStatuses:O4,getCachedAgentFeedbackCases:a0e,getCachedRuntimeAgentInfo:m0e,getCachedRuntimeDetail:gye,getCachedRuntimeUpdateCapability:R4,getCronJob:vUe,getEnvironmentBuild:Q0e,getEnvironmentManifest:z0e,getEnvironmentResources:V0e,getGeneratedAgentTestTrace:wye,getGithubCicdRuntimeBinding:K0e,getGithubDeliveryVersions:o2,getMediaCapabilities:cUe,getMyRuntimes:bUe,getRuntimeAgentInfo:n7,getRuntimeDetail:c7,getRuntimeStudioToolCapabilities:dye,getRuntimeUpdateCapability:hR,getRuntimes:Px,getSandboxImageUpdates:kye,getSession:cR,getSessionTrace:Q_,getStudioAccess:eye,getStudioUpdatePermissions:nye,getStudioUpdateStatus:tye,getSystemInfo:E0e,getUiConfig:Z0e,httpErrorMessage:ln,importEnvironmentShareCodes:L0e,initializeGithubDeliveryMain:W0e,inspectEnvironmentRepository:P0e,inspectEnvironmentShareCodes:M0e,invalidateRuntimeUpdateCapabilityCache:P4,listApps:Ybe,listCronJobRuns:j4,listCronJobs:N4,listDeploymentResources:w0e,listEnvironments:Kk,listIdentityUserPools:fR,listModelApiKeys:X9,listModelOptions:Nx,listSessions:J9,listWorkspaces:a7,mediaContentUrl:h0e,parseEnvironmentManifest:T0e,parseEnvironmentShareCodes:i7,parsePreparedSessionEnvironmentMounts:O0e,prefetchAgentFeedbackCases:oUe,prefetchRuntimeAgentInfo:g0e,prefetchRuntimeDetail:bye,prefetchRuntimeUpdateCapability:I4,prepareSessionEnvironmentMounts:S0e,previewArtifact:t7,probeRuntimeA2a:hye,probeRuntimeApps:Vv,refreshAgentFeedbackCases:o0e,registerRemoteApp:Kbe,revealModelApiKey:Xbe,revealRuntimeApiKey:pye,runCronJobNow:lye,runGeneratedAgentTestSSE:Oye,runSSE:T4,runSseEmptyResponseError:v0e,runSseFirstEventTimeoutError:zv,runSseIncompleteResponseError:a2,runtimeRegionCandidates:qk,setClientCloudProvider:t0e,setCronJobEnabled:oye,startStudioUpdate:iye,studioFetch:Rn,submitIssueFeedback:E4,submitMessageFeedback:r0e,syncGithubCicdRuntime:X0e,updateCodexSandboxToolModelEnv:pUe,updateCronJob:aye,updateEnvironment:B0e,updateSandboxTool:Eye,updateWorkspace:R0e,uploadMedia:d0e,upsertCachedAgentFeedbackCase:r2,webSearch:y0e,writeEnvironmentShareCode:k0e},Symbol.toStringTag,{value:"Module"})),$W=Object.freeze({totalTokenCount:0,promptTokenCount:0,candidatesTokenCount:0,thoughtsTokenCount:0,cachedContentTokenCount:0}),c2=Object.freeze({modelName:"",current:$W,cumulative:$W}),EUe={totalTokenCount:"total_token_count",promptTokenCount:"prompt_token_count",candidatesTokenCount:"candidates_token_count",thoughtsTokenCount:"thoughts_token_count",cachedContentTokenCount:"cached_content_token_count"},CUe=24,TUe=64,AUe=16;function nT(e){var l,c;const t=e.trim();if(!t)return 0;const n=/[\p{Script=Han}\p{Script=Hiragana}\p{Script=Katakana}\p{Script=Hangul}]/gu,i=((l=t.match(n))==null?void 0:l.length)??0,r=t.replace(n," "),s=(r.match(/[A-Za-z0-9_]+/g)??[]).reduce((u,d)=>u+Math.max(1,Math.ceil(d.length/4)),0),a=((c=r.match(/[^\sA-Za-z0-9_]/g))==null?void 0:c.length)??0;return i+s+a}function _Ue(e){var l,c,u;const t=((l=e.instruction)==null?void 0:l.trim())??"",n=((c=e.tools)==null?void 0:c.filter(d=>d.trim()))??[],i=((u=e.skills)==null?void 0:u.filter(d=>d.name.trim()))??[],r=nT(t),s=n.reduce((d,f)=>d+TUe+nT(f),0),a=i.reduce((d,f)=>d+AUe+nT(f.name)+nT(f.description??""),0);return CUe+r+s+a}function NUe({usage:e,contextWindow:t,estimatedSystemTokens:n}){const i=Math.max(1,Math.round(t)),r=Math.max(0,e.current.promptTokenCount),s=Math.max(r,e.current.totalTokenCount),a=Math.min(i,r>0?Math.min(r,Math.max(0,n??0)):Math.max(0,n??0)),l=Math.max(0,r-a),c=r>0?Math.max(0,s-r):Math.max(0,s),u=r>0?s:a+c;return{systemTokens:a,inputTokens:l,outputTokens:c,remainingTokens:Math.max(0,i-u),usedTokens:u,contextWindow:i}}function jUe(e){const t=[{kind:"system",tokens:e.systemTokens},{kind:"input",tokens:e.inputTokens},{kind:"output",tokens:e.outputTokens},{kind:"remaining",tokens:e.remainingTokens}],n=e.contextWindow/100;let i=0;const r=t.map(s=>{const a=i;return i+=s.tokens,{...s,start:a,end:i}});return Array.from({length:100},(s,a)=>{const l=a*n,c=l+n,u=r.flatMap(d=>{const f=Math.max(0,Math.min(c,d.end)-Math.max(l,d.start));return f>0?[{kind:d.kind,share:f/n}]:[]});return{index:a,slices:u}})}function U1(e,t){const n=e,i=n[t]??n[EUe[t]];return typeof i=="number"&&Number.isFinite(i)&&i>0?Math.round(i):0}function RUe(e){const t=U1(e,"promptTokenCount"),n=U1(e,"candidatesTokenCount"),i=U1(e,"thoughtsTokenCount");return{totalTokenCount:U1(e,"totalTokenCount")||t+n+i,promptTokenCount:t,candidatesTokenCount:n,thoughtsTokenCount:i,cachedContentTokenCount:U1(e,"cachedContentTokenCount")}}function IUe(e,t){return{totalTokenCount:e.totalTokenCount+t.totalTokenCount,promptTokenCount:e.promptTokenCount+t.promptTokenCount,candidatesTokenCount:e.candidatesTokenCount+t.candidatesTokenCount,thoughtsTokenCount:e.thoughtsTokenCount+t.thoughtsTokenCount,cachedContentTokenCount:e.cachedContentTokenCount+t.cachedContentTokenCount}}function Cye(e,t){if(!t)return e;const n=typeof t.modelVersion=="string"?t.modelVersion.trim():"",i=typeof t.model_version=="string"?t.model_version.trim():"",r=n||i||e.modelName,s=t.usageMetadata??t.usage_metadata;if(!s)return r===e.modelName?e:{...e,modelName:r};const a=RUe(s);return a.totalTokenCount===0?r===e.modelName?e:{...e,modelName:r}:{modelName:r,current:a,cumulative:IUe(e.cumulative,a)}}function FW(e){return e.reduce((t,n)=>Cye(t,n),c2)}function BW(e){return e.blocks.flatMap(t=>t.kind==="tool"?[{name:t.name,args:t.args,response:t.response,done:t.done}]:[])}function PUe(e){const t=e.attributes;return String(t["invocation.id"]??t["gen_ai.invocation.id"]??t["gcp.vertex.agent.invocation_id"]??"")}function DUe(e,t){if(!t)return e;const n=new Set(e.filter(r=>PUe(r)===t).map(r=>r.trace_id)),i=e.filter(r=>n.has(r.trace_id));return i.length>0?i:e}function Ob(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:void 0}function zp(e){return typeof e=="string"?e:""}function Tye(e,t){return e==="pending"||e==="running"||e==="completed"||e==="failed"?e:t}function MUe(e){let t=e;if(typeof t=="string")try{t=JSON.parse(t)}catch{return{}}const n=Ob(t)??{};return Ob(n.result)??n}function LUe(e){var n;const t=(n=Ob(e))==null?void 0:n.branches;return Array.isArray(t)?t.map(i=>{var r;return zp((r=Ob(i))==null?void 0:r.label)}):[]}function Aye(e,t,n){const i=LUe(e),r=MUe(t),s=Array.isArray(r.branches)?r.branches:[],a=n==="running"?"running":"pending";return{branches:[0,1].map(c=>{const u=Ob(s[c])??{};return{label:zp(u.label)||i[c]||`方向 ${c+1}`,content:zp(u.content),status:Tye(u.status,a),error:zp(u.error)}})}}function $Ue(e){const t=Ob(e),n=Ob(t==null?void 0:t.veadkStudioToolProgress);return!n||n.toolName!=="branch_compare"||typeof n.branchIndex!="number"||n.branchIndex<0||n.branchIndex>1?null:{toolName:"branch_compare",requestId:zp(n.requestId),branchIndex:n.branchIndex,label:zp(n.label),delta:zp(n.delta),status:Tye(n.status,"running"),error:zp(n.error)||void 0}}function FUe(e,t,n){return{branches:Aye(e,t,"running").branches.map((s,a)=>a===n.branchIndex?{...s,label:n.label||s.label,content:s.content+n.delta,status:n.status,error:n.error??s.error}:s)}}function qa(e,t){return on.t(`blocks.codexProgress.${e}`,{ns:"conversation",...t})}const _ye=28e4;function UW(e){try{return JSON.stringify(e).length}catch{return _ye}}function BUe(e){const t=e.slice(-200);let n=t.reduce((i,r)=>i+UW(r),0);for(;t.length>1&&n>_ye;)n-=UW(t.shift());return t}function ec(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:void 0}function Ni(e){return typeof e=="string"?e:""}function u7(e,t=""){const n=Ni(e).toLowerCase();return t.endsWith(".failed")||["failed","error","declined","cancelled"].includes(n)?"failed":t.endsWith(".completed")||["completed","done","success"].includes(n)?"completed":"running"}function Nye(e){if(e.response!==void 0)return e.response;if(e.result!==void 0)return e.result;const t=e.aggregatedOutput??e.aggregated_output??e.output,n=e.exitCode??e.exit_code;if(!(t===void 0&&n===void 0))return{...t!==void 0?{output:t}:{},...n!==void 0?{exitCode:n}:{}}}function jye(e){if(e.args!==void 0)return e.args;if(e.arguments!==void 0)return e.arguments;if(e.input!==void 0)return e.input;const t=Ni(e.command),n=Ni(e.cwd);if(t||n)return{...t?{command:t}:{},...n?{cwd:n}:{}};if(e.changes!==void 0)return{changes:e.changes};if(e.approval!==void 0)return e.approval}function Cg(e,t,n,i,r){return{kind:"tool",name:e,callId:t,args:i,response:r,done:n!=="running",status:n,...n==="failed"?{defaultOpen:!0}:{}}}function Rye(e){const t=Ni(e.id||e.itemId||e.item_id),n=Ni(e.kind);if(!t||!n)return null;const i=u7(e.status),r=Ni(e.text||e.detail||e.delta),s=!Ni(e.text||e.detail)&&typeof e.delta=="string";if(n==="thinking"||n==="reasoning")return r?{id:t,block:{kind:"thinking",text:r,done:i!=="running"},appendText:s}:null;if(n==="commentary")return r?{id:t,block:{kind:"text",text:r},appendText:s}:null;if(["message","text","assistant_final","final"].includes(n))return r?{id:t,block:{kind:"text",text:r},appendText:s,finalAnswer:!0}:null;if(n==="plan"){const a=Array.isArray(e.plan)?e.plan:[];return{id:t,block:{kind:"plan",title:Ni(e.title)||qa("planTitle"),summary:r||void 0,items:a.flatMap(l=>{const c=ec(l),u=Ni(c==null?void 0:c.text);if(!u)return[];const d=Ni(c==null?void 0:c.status);return[{text:u,status:["pending","in_progress","completed","failed"].includes(d)?d:"pending"}]}),done:i!=="running"}}}if(["tool","command","command_execution","commandExecution","file_change","fileChange","mcp_tool_call","mcpToolCall","collab_tool_call","web_search","approval","status"].includes(n)){const a=qa(n==="file_change"||n==="fileChange"?"fallback.fileChange":n==="approval"?"fallback.approval":n==="status"?"fallback.status":"fallback.command"),l=jye(e),c=Nye(e)??(n==="status"&&r||void 0);return{id:t,block:Cg(Ni(e.name||e.title)||a,t,i,l,c)}}return null}function Iye(e){const t=Ni(e.type),n=ec(e.item),i=Ni(n==null?void 0:n.type),r=Ni((n==null?void 0:n.id)||e.id)||(t==="turn.failed"?"turn":"");if(!r)return null;const s=u7(n==null?void 0:n.status,t);if(i==="reasoning"||i==="agent_message"){const a=Ni(n==null?void 0:n.text);return a?{id:r,block:i==="reasoning"?{kind:"thinking",text:a,done:s!=="running"}:{kind:"text",text:a},...i==="agent_message"&&(n==null?void 0:n.phase)!=="commentary"?{finalAnswer:!0}:{}}:null}if(i==="todo_list"){const l=(Array.isArray(n==null?void 0:n.items)?n.items:[]).flatMap(c=>{const u=ec(c),d=Ni(u==null?void 0:u.text);if(!d)return[];const f=Ni(u==null?void 0:u.status).toLowerCase(),h=(u==null?void 0:u.completed)===!0||["completed","done"].includes(f)?"completed":["failed","error"].includes(f)?"failed":["in_progress","running"].includes(f)?"in_progress":"pending";return[{text:d,status:h}]});return l.length?{id:r,block:{kind:"plan",title:qa("planTitle"),summary:qa("planSummary",{completed:l.filter(c=>c.status==="completed").length,total:l.length}),items:l,done:s!=="running"}}:null}if(i==="command_execution"){const a=qa(`command.${s}`);return{id:r,block:Cg(a,r,s,jye(n??{}),Nye(n??{}))}}if(i==="file_change"){const a=Array.isArray(n==null?void 0:n.changes)?n.changes:[],l=a.length?qa("projectFiles",{count:a.length}):qa("projectFile"),c=qa(`fileChange.${s}`,{subject:l});return{id:r,block:Cg(c,r,s,a.length?{changes:a}:void 0)}}if(i==="mcp_tool_call"){const a=[Ni(n==null?void 0:n.server),Ni(n==null?void 0:n.tool)].filter(Boolean).join("/")||qa("externalTool"),l=qa(`mcp.${s}`,{tool:a}),c=ec(n==null?void 0:n.error),u=(n==null?void 0:n.result)!==void 0?n.result:Ni(c==null?void 0:c.message)||void 0;return{id:r,block:Cg(l,r,s,n==null?void 0:n.arguments,u)}}if(i==="collab_tool_call"){const a=Ni(n==null?void 0:n.tool),l=["spawn_agent","send_input","wait","close_agent"].includes(a)?a:"default",c=qa(`collaboration.${l}.${s}`),u=Object.fromEntries(["tool","receiver_thread_ids","prompt"].filter(d=>(n==null?void 0:n[d])!==void 0).map(d=>[d,n==null?void 0:n[d]]));return{id:r,block:Cg(c,r,s,Object.keys(u).length?u:void 0,n==null?void 0:n.agents_states)}}if(i==="web_search"){const a=qa(`webSearch.${s}`),l=Object.fromEntries(["query","action"].filter(c=>(n==null?void 0:n[c])!==void 0).map(c=>[c,n==null?void 0:n[c]]));return{id:r,block:Cg(a,r,s,Object.keys(l).length?l:void 0)}}if(i==="error"||t==="error"||t==="turn.failed"){const a=ec(e.error),l=Ni((n==null?void 0:n.message)||e.message||(a==null?void 0:a.message))||qa("errorDetail");return{id:r,block:Cg(qa("errorTitle"),r,"failed",void 0,l)}}return null}function UUe(e){const t=ec(e),n=ec(t==null?void 0:t.veadkStudioToolProgress);if(!n||n.kind!=="codex")return null;const i=Ni(n.toolName),r=Ni(n.requestId);if(!i||!r)return null;const s=ec(n.event??n.activity);if(!s)return null;const a=ec(s.item)||Ni(s.type)?Iye(s):Rye(s);if(!a)return null;const l=Ni(n.title||n.label),c=Ni(s.agentSessionId??s.agent_session_id),u=Ni(s.sandboxSessionId??s.sandbox_session_id),d=Ni(s.threadId??s.thread_id),f=u7(s.status,Ni(s.type)),m=Ni(s.kind)==="status"&&f!=="running"?f:void 0;return{toolName:i,requestId:r,...l?{title:l}:{},...c?{agentSessionId:c}:{},...u?{sandboxSessionId:u}:{},...d?{threadId:d}:{},...m?{terminalStatus:m}:{},event:a}}function QUe(e,t){const n=ec(t),i=ec((n==null?void 0:n.codexActivity)??(n==null?void 0:n.codex_activity));if(!i)return e;const r=Ni(i.title)||(e==null?void 0:e.title)||"Codex Sandbox",s=Ni(i.agentSessionId??i.agent_session_id)||(e==null?void 0:e.agentSessionId),a=Ni(i.sandboxSessionId??i.sandbox_session_id)||(e==null?void 0:e.sandboxSessionId),l=Ni(i.threadId??i.thread_id)||(e==null?void 0:e.threadId);let c={title:r,...s?{agentSessionId:s}:{},...a?{sandboxSessionId:a}:{},...l?{threadId:l}:{},items:(e==null?void 0:e.items.slice())??[]};const u=Array.isArray(i.events)?i.events:[];for(const d of u){const f=ec(d);if(!f)continue;const h=ec(f.item)||Ni(f.type)?Iye(f):Rye(f);h&&(h.finalAnswer||(c=D4(c,{title:r,...s?{agentSessionId:s}:{},...a?{sandboxSessionId:a}:{},...l?{threadId:l}:{},event:h})))}return c}function D4(e,t){const n=(e==null?void 0:e.items.slice())??[],i=n.findIndex(r=>r.id===t.event.id);if(i>=0){const r=n[i].block,s=t.event.block;t.event.appendText&&r.kind==="text"&&s.kind==="text"?n[i]={id:t.event.id,block:{...s,text:r.text+s.text}}:t.event.appendText&&r.kind==="thinking"&&s.kind==="thinking"?n[i]={id:t.event.id,block:{...s,text:r.text+s.text}}:n[i]={id:t.event.id,block:s}}else n.push({id:t.event.id,block:t.event.block});return{title:t.title||(e==null?void 0:e.title)||"Codex Sandbox",...t.agentSessionId||e!=null&&e.agentSessionId?{agentSessionId:t.agentSessionId||(e==null?void 0:e.agentSessionId)}:{},...t.sandboxSessionId||e!=null&&e.sandboxSessionId?{sandboxSessionId:t.sandboxSessionId||(e==null?void 0:e.sandboxSessionId)}:{},...t.threadId||e!=null&&e.threadId?{threadId:t.threadId||(e==null?void 0:e.threadId)}:{},items:BUe(n)}}const Pye="send_a2ui_json_to_client",M4="validated_a2ui_json",L4="adk_request_credential",QW="transfer_to_agent";function zUe(e){var i,r,s,a;const t=e,n=((i=t==null?void 0:t.exchangedAuthCredential)==null?void 0:i.oauth2)??((r=t==null?void 0:t.exchanged_auth_credential)==null?void 0:r.oauth2)??((s=t==null?void 0:t.rawAuthCredential)==null?void 0:s.oauth2)??((a=t==null?void 0:t.raw_auth_credential)==null?void 0:a.oauth2);return(n==null?void 0:n.authUri)??(n==null?void 0:n.auth_uri)}function $4(){return{blocks:[],liveStart:0,pendingCodexProgress:[]}}function zW(e,t){if(t.event.finalAnswer)return"applied";let n=-1;for(let i=e.length-1;i>=0;i-=1){const r=e[i];if(!(r.kind!=="tool"||r.name!==t.toolName)){if(r.callId===t.requestId)return r.done?"completed":(r.codexActivity=D4(r.codexActivity,t),r.status=t.terminalStatus??"running",t.terminalStatus&&(r.done=!0),"applied");if(!r.done){if(n>=0)return"unmatched";n=i}}}if(n>=0){const i=e[n];return i.kind!=="tool"?"unmatched":(i.codexActivity=D4(i.codexActivity,t),i.status=t.terminalStatus??"running",t.terminalStatus&&(i.done=!0),"applied")}return"unmatched"}function VUe(e){if(!e||typeof e!="object"||Array.isArray(e))return"completed";const t=e,n=typeof t.status=="string"?t.status.toLowerCase():"";return t.ok===!1||["error","failed","denied","declined","cancelled","timeout"].includes(n)?"failed":"completed"}function VW(e){if(!e||typeof e!="object"||Array.isArray(e))return"";const t=e;return t.ok!==!0||typeof t.message!="string"?"":t.message.trim()}const F4=e=>e.functionCall??e.function_call,OS=e=>e.functionResponse??e.function_response;function HUe(e){if(!e||typeof e!="object")return"";const t=e,n=t.agentName??t.agent_name;return typeof n=="string"?n:""}function qUe(e){return e.replace(/-/g,"+").replace(/_/g,"/")}function pR(e){const t=[];for(const[n,i]of e.entries()){const r=i.partMetadata??i.part_metadata,s=r==null?void 0:r.veadkTransport;if((s==null?void 0:s.hidden)===!0)continue;const a=r==null?void 0:r.veadkMedia;if(typeof(a==null?void 0:a.uri)=="string"){t.push({id:String(a.id??a.uri),mimeType:typeof a.mimeType=="string"?a.mimeType:void 0,uri:a.uri,name:typeof a.name=="string"?a.name:void 0,sizeBytes:typeof a.sizeBytes=="number"?a.sizeBytes:void 0});continue}const l=i.inlineData??i.inline_data;if(l&&l.data){t.push({id:`inline-${n}-${l.displayName??l.display_name??"media"}`,mimeType:l.mimeType??l.mime_type,data:qUe(l.data),name:l.displayName??l.display_name});continue}const c=i.fileData??i.file_data,u=(c==null?void 0:c.fileUri)??(c==null?void 0:c.file_uri);c&&u&&t.push({id:u,mimeType:c.mimeType??c.mime_type,uri:u,name:c.displayName??c.display_name})}return t}function SS(e){const t=e.partMetadata??e.part_metadata,n=t==null?void 0:t.veadkTransport;return(n==null?void 0:n.hideText)===!0?void 0:e.text}const WUe=new Set(["llm","sequential","parallel","loop","a2a"]);function KUe(e){var t;for(const n of e){const i=(t=n.partMetadata??n.part_metadata)==null?void 0:t.veadkInvocation;if(!i||typeof i!="object")continue;const r=i,s=Array.isArray(r.skills)?r.skills.flatMap(c=>{if(!c||typeof c!="object")return[];const u=c;return typeof u.name=="string"?[{name:u.name,description:typeof u.description=="string"?u.description:""}]:[]}):[];let a;const l=r.targetAgent;if(l&&typeof l=="object"){const c=l,u=c.type;typeof c.name=="string"&&typeof u=="string"&&WUe.has(u)&&Array.isArray(c.path)&&(a={name:c.name,description:typeof c.description=="string"?c.description:"",type:u,path:c.path.filter(d=>typeof d=="string")})}if(s.length>0||a)return{skills:s,targetAgent:a}}}function GUe(e,t){if(!t.length)return;const n=e[e.length-1];(n==null?void 0:n.kind)==="attachment"?n.files.push(...t):e.push({kind:"attachment",files:t})}function XUe(e,t){if(!t.length)return;const n=e[e.length-1];if((n==null?void 0:n.kind)==="artifact"){for(const i of t)n.files.some(r=>r.filename===i.filename&&r.version===i.version)||n.files.push(i);return}e.push({kind:"artifact",files:t})}function BD(e,t,n){const i=e[e.length-1];i&&i.kind===t?i.text+=n:e.push(t==="thinking"?{kind:t,text:n,done:!1}:{kind:t,text:n})}function iT(e){for(const t of e)t.kind==="thinking"&&(t.done=!0)}function Dye(e,t){var d,f,h,m,g,b;const n=e.blocks.map(v=>({...v}));let i=e.liveStart,r=e.pendingCodexProgress.slice();const s=((d=t.content)==null?void 0:d.parts)??[],a=s.flatMap(v=>{const y=$Ue(v.partMetadata??v.part_metadata);return y?[y]:[]}),l=s.flatMap(v=>{const y=UUe(v.partMetadata??v.part_metadata);return y?[y]:[]});if(a.length>0||l.length>0){for(const v of a)for(let y=n.length-1;y>=0;y-=1){const x=n[y];if(!(x.kind!=="tool"||x.done||x.name!==v.toolName||v.requestId&&x.callId&&x.callId!==v.requestId)){x.response=FUe(x.args,x.response,v),x.status="running";break}}for(const v of l)zW(n,v)==="unmatched"&&(r=[...r,v].slice(-64));return{blocks:n,liveStart:i,pendingCodexProgress:r}}const c=s.some(v=>F4(v)||OS(v));if(t.partial&&!c){for(const v of s){const y=SS(v);typeof y=="string"&&y&&BD(n,v.thought?"thinking":"text",y)}return{blocks:n,liveStart:i,pendingCodexProgress:r}}n.length=i;for(const v of s){const y=F4(v),x=OS(v),O=pR([v]),w=SS(v);if(typeof w=="string"&&w)BD(n,v.thought?"thinking":"text",w);else if(O.length)iT(n),GUe(n,O);else if(y)if(iT(n),y.name===QW){const k=HUe(y.args)||((f=t.actions)==null?void 0:f.transferToAgent)||((h=t.actions)==null?void 0:h.transfer_to_agent)||on.t("app:common.unknownAgent");n.push({kind:"agent-transfer",agentName:k,done:!1})}else if(y.name===L4){const k=y.args??{},S=k.authConfig??k.auth_config??k,C=String(k.functionCallId??k.function_call_id??"").replace(/^_adk_toolset_auth_/,"")||void 0;n.push({kind:"auth",callId:y.id??"",label:C,authUri:zUe(S),authConfig:S,done:!1})}else{const k={kind:"tool",name:y.name??"",callId:y.id,args:y.args,done:!1};if(n.push(k),k.callId){const S=[];for(const E of r)E.toolName===k.name&&E.requestId===k.callId?zW(n,E):S.push(E);r=S}}else if(x){if(iT(n),x.name===QW)for(let k=n.length-1;k>=0;k--){const S=n[k];if(S.kind==="agent-transfer"&&!S.done){S.done=!0;break}}if(x.name===L4)for(let k=n.length-1;k>=0;k--){const S=n[k];if(S.kind==="auth"&&!S.done){S.done=!0;break}}for(let k=n.length-1;k>=0;k--){const S=n[k],E=S.kind==="tool"&&S.name==="delegate_to_codex_sandbox";if(S.kind==="tool"&&(!S.done||E)&&S.name===x.name&&(!x.id||!S.callId||S.callId===x.id)){const C=E?VW(S.response):"";if(S.done=!0,S.response=x.response,E){S.codexActivity=QUe(S.codexActivity,x.response),S.status=VUe(x.response);const N=VW(x.response);N&&N!==C&&BD(n,"text",N)}break}}if(x.name===Pye){const k=((m=x.response)==null?void 0:m[M4])??[];if(k.length){const S=n[n.length-1];S&&S.kind==="a2ui"?S.messages.push(...k):n.push({kind:"a2ui",messages:k})}}}}const u=((g=t.actions)==null?void 0:g.artifactDelta)??((b=t.actions)==null?void 0:b.artifact_delta);return u&&XUe(n,Object.entries(u).map(([v,y])=>({filename:v,version:y}))),iT(n),i=n.length,{blocks:n,liveStart:i,pendingCodexProgress:r}}function YUe(e,t){var u,d,f,h,m,g;if(e.partial===!0)return!1;const n=((u=e.content)==null?void 0:u.parts)??[],i=n.some(b=>{const v=SS(b);return!b.thought&&typeof v=="string"&&v.trim().length>0||pR([b]).length>0}),r=n.some(b=>{var y;const v=OS(b);return(v==null?void 0:v.name)===Pye&&Array.isArray((y=v.response)==null?void 0:y[M4])&&v.response[M4].length>0}),s=((d=e.actions)==null?void 0:d.artifactDelta)??((f=e.actions)==null?void 0:f.artifact_delta),a=!!(s&&Object.keys(s).length>0),l=!!(((h=e.actions)==null?void 0:h.endOfAgent)??((m=e.actions)==null?void 0:m.end_of_agent)??((g=e.actions)==null?void 0:g.escalate)),c=t.some(b=>b.kind==="text"||b.kind==="attachment"||b.kind==="artifact"||b.kind==="a2ui"||b.kind==="delivery");return i||r||a||l&&c}function ZUe(e){var n,i,r;const t=((n=e.actions)==null?void 0:n.artifactDelta)??((i=e.actions)==null?void 0:i.artifact_delta);return t&&Object.keys(t).length>0?!0:(((r=e.content)==null?void 0:r.parts)??[]).some(s=>!!(SS(s)||pR([s]).length>0||F4(s)||OS(s)))}function z_(e="adk-stream",t){var a,l,c;let n=0;const i=new Map;let r;const s=(u,d)=>`${d}\0${u}`;if((t==null?void 0:t.role)==="assistant"){const u=((a=t.meta)==null?void 0:a.author)??"",d=((l=t.meta)==null?void 0:l.invocationId)??"",f=((c=t.meta)==null?void 0:c.localId)??`${e}-${n++}`,h=$4();h.blocks=t.blocks,h.liveStart=t.blocks.length,r=s(u,d),i.set(r,{acc:h,localId:f,meta:{...t.meta,localId:f,streaming:!0,eventId:void 0}})}return{project(u){const d=u.author&&u.author!=="user"?u.author:"",f=u.invocationId??u.invocation_id??"",h=s(d,f);let m=i.get(h);if(!m&&r){const y=i.get(r);y&&(!y.meta.author||y.meta.author===d)&&(i.delete(r),r=void 0,m=y)}if(!m&&!ZUe(u))return{turn:{role:"assistant",blocks:[]},completed:!1,ignored:!0};if(!m){const y=`${e}-${n++}`;m={acc:$4(),localId:y,meta:{author:d||void 0,invocationId:f||void 0}}}m.acc=Dye(m.acc,u);const g=u.usageMetadata??u.usage_metadata,b=YUe(u,m.acc.blocks);m.meta={...m.meta,author:d||m.meta.author,localId:m.localId,streaming:!b,tokens:(g==null?void 0:g.totalTokenCount)||m.meta.tokens,ts:u.timestamp||m.meta.ts,invocationId:f||m.meta.invocationId,eventId:b&&u.id?u.id:m.meta.eventId};const v={role:"assistant",blocks:m.acc.blocks,meta:m.meta};return b?(i.delete(h),r=void 0):i.set(h,m),{turn:v,completed:b}},finish(){const u=[...i.values()].map(d=>({role:"assistant",blocks:d.acc.blocks,meta:{...d.meta,streaming:!1}}));return i.clear(),u}}}function Bg(e,t){var s;const n=(s=t.meta)==null?void 0:s.localId;if(!n)return[...e,t];const i=e.findIndex(a=>{var l;return((l=a.meta)==null?void 0:l.localId)===n});if(i<0)return[...e,t];const r=e.slice();return r[i]=t,r}function JUe(e,t={}){var r;let n=[],i=z_("adk-history");for(const s of e)if(s.author==="user"){const l=((r=s.content)==null?void 0:r.parts)??[];if(l.some(h=>{var m;return((m=OS(h))==null?void 0:m.name)===L4})){for(let h=n.length-1;h>=0;h--)if(n[h].role==="assistant"){for(let m=n[h].blocks.length-1;m>=0;m--){const g=n[h].blocks[m];if(g.kind==="auth"){g.done=!0;break}}break}}const c=l.map(SS).filter(h=>!!h).join(""),u=pR(l),d=KUe(l);if(!c&&!u.length&&!d)continue;for(const h of i.finish())n=Bg(n,h);const f=[];d&&f.push({kind:"invocation",value:d}),u.length&&f.push({kind:"attachment",files:u}),c&&f.push({kind:"text",text:c}),n.push({role:"user",blocks:f,meta:{ts:s.timestamp}}),i=z_("adk-history")}else{const l=i.project(s);l.ignored||(n=Bg(n,l.turn))}for(const s of i.finish())n=Bg(n,s);for(const s of n){const a=s.meta,l=a==null?void 0:a.eventId;if(!l)continue;const c=t[`veadk_feedback:${l}`];if(!c||typeof c!="object")continue;const u=c;u.rating!=="good"&&u.rating!=="bad"||(a.feedback=c)}return n}function mR(e,t=on.t("app:titles.newConversation")){var n,i;for(const r of e??[])if(r.author==="user"||((n=r.content)==null?void 0:n.role)==="user"){const s=(((i=r.content)==null?void 0:i.parts)??[]).map(a=>a.text).find(Boolean);if(s)return s}return t}function Mye(e,t,n){if(e.name===t||e.id===t)return(n==null?void 0:n.type)==="parallel"?n:void 0;for(const i of e.children){const r=Mye(i,t,e);if(r)return r}}function eQe(e,t){var a,l;if(e.role!=="assistant"||!t)return;const n=(a=e.meta)==null?void 0:a.author;if(!n)return;const i=Mye(t,n);if(!i)return;const r=i.id||i.path.join("/")||i.name;return{key:`${((l=e.meta)==null?void 0:l.invocationId)??""}::${r}`,parent:i.name}}function tQe(e,t){const n=[];return e.forEach((i,r)=>{const s=eQe(i,t),a=n[n.length-1];if(s&&(a==null?void 0:a.groupKey)===s.key){a.turnIndexes.push(r);return}n.push({key:s?`parallel-${s.key}-${r}`:`turn-${r}`,turnIndexes:[r],parallelParent:s==null?void 0:s.parent,groupKey:s==null?void 0:s.key})}),n.map(({groupKey:i,...r})=>r)}function Lye(e){var t,n,i="";if(typeof e=="string"||typeof e=="number")i+=e;else if(typeof e=="object")if(Array.isArray(e)){var r=e.length;for(t=0;t{const t=p.Children.toArray(e),n=[];let i="";const r=()=>{i!==""&&(n.push(i),i="")};for(const s of t)if(!(s==null||typeof s=="boolean")){if(typeof s=="string"||typeof s=="number"){i+=String(s);continue}r(),n.push(s)}return r(),n},d7=e=>{const t=nQe(e),n=p.Children.count(t);return p.Children.map(t,i=>{if(typeof i=="string"&&i.trim())return n<=1?i:o.jsx("span",{children:i});if(p.isValidElement(i)){const r=i,{children:s,...a}=r.props;return s!=null?p.cloneElement(r,a,d7(s)):r}return i})},iQe="_Badge_1viyg_1",rQe={Badge:iQe},ya=({children:e,className:t,variant:n="soft",color:i="secondary",size:r="sm",pill:s,...a})=>o.jsx("div",{className:yi(rQe.Badge,t),"data-color":i,"data-size":r,"data-pill":s?"":void 0,"data-variant":n,...a,children:d7(e)});var sQe=typeof Lp=="object"&&Lp&&Lp.Object===Object&&Lp,aQe=typeof self=="object"&&self&&self.Object===Object&&self;sQe||aQe||Function("return this")();var oQe=typeof window<"u"?p.useLayoutEffect:p.useEffect;function lQe(){const e=p.useRef(!1);return p.useEffect(()=>(e.current=!0,()=>{e.current=!1}),[]),p.useCallback(()=>e.current,[])}var HW={width:void 0,height:void 0};function $ye(e){const{ref:t,box:n="content-box"}=e,[{width:i,height:r},s]=p.useState(HW),a=lQe(),l=p.useRef({...HW}),c=p.useRef(void 0);return c.current=e.onResize,p.useEffect(()=>{if(!t.current||typeof window>"u"||!("ResizeObserver"in window))return;const u=new ResizeObserver(([d])=>{const f=n==="border-box"?"borderBoxSize":n==="device-pixel-content-box"?"devicePixelContentBoxSize":"contentBoxSize",h=qW(d,f,"inlineSize"),m=qW(d,f,"blockSize");if(l.current.width!==h||l.current.height!==m){const b={width:h,height:m};l.current.width=h,l.current.height=m,c.current?c.current(b):a()&&s(b)}});return u.observe(t.current,{box:n}),()=>{u.disconnect()}},[n,t,a]),{width:i,height:r}}function qW(e,t,n){return e[t]?Array.isArray(e[t])?e[t][0][n]:e[t][n]:t==="contentBoxSize"?e.contentRect[n==="inlineSize"?"width":"height"]:void 0}function f7(e,t){const n=p.useRef(e);oQe(()=>{n.current=e},[e]),p.useEffect(()=>{if(!t&&t!==0)return;const i=setTimeout(()=>{n.current()},t);return()=>{clearTimeout(i)}},[t])}const cQe={DEV:!1,MODE:"production"},nv=typeof import.meta<"u"?cQe:void 0,uQe=!!(nv!=null&&nv.DEV),dQe=typeof navigator<"u"&&/(jsdom|happy-dom)/i.test(navigator.userAgent)||typeof globalThis.happyDOM=="object",Fye=(nv==null?void 0:nv.MODE)==="test"||dQe,fQe=typeof window<"u",Bye=typeof document<"u",hQe=fQe&&Bye,h7=e=>{const t=e.currentTarget;if(!(t instanceof HTMLElement))return;const n=t.offsetWidth;let i=.985;n<=80?i=.96:n<=150?i=.97:n<=220?i=.98:n>600&&(i=.995),t.style.setProperty("--scale",i.toString())},V_=(e,t)=>{const n=()=>{const a=setTimeout(e);return()=>{clearTimeout(a)}};if(!hQe||typeof window.requestAnimationFrame!="function"||Bye&&document.visibilityState==="hidden")return n();let r=2,s=window.requestAnimationFrame(function a(){r-=1,r===0?e():s=window.requestAnimationFrame(a)});return()=>{typeof window.cancelAnimationFrame=="function"&&window.cancelAnimationFrame(s)}},Zb=e=>Object.keys(e).reduce((n,i)=>{const r=e[i];if(r||r===0){const s=i.startsWith("--")?"":"--",a=typeof r=="number"?`${r}px`:r;n[`${s}${i}`]=a}return n},{}),UD=e=>typeof e=="number"?`${e}deg`:e,QD=e=>String(e),rT=e=>`${e}ms`,zD=({x:e,y:t,scale:n,rotate:i,skewX:r,skewY:s}={})=>{const a=[e==null?null:`translateX(${e}px)`,t==null?null:`translateY(${t}px)`,n==null?null:`scale(${n})`,i==null?null:`rotate(${UD(i)})`,r==null?null:`skewX(${UD(r)})`,s==null?null:`skewY(${UD(s)})`].filter(Boolean);return a.length?a.join(" "):"none"},VD=({blur:e}={})=>{const t=[e==null?null:`blur(${e}px)`].filter(Boolean);return t.length?t.join(" "):"none"},nh=e=>{e.preventDefault()},Uye=e=>e.querySelectorAll('a[href], input:not([disabled]):not([type="hidden"]), textarea:not([disabled]), button:not([disabled]), [tabindex]:not([tabindex^="-"]), [contenteditable]'),pQe="_LoadingIndicator_7yl6f_1",mQe={LoadingIndicator:pQe},Gk=({className:e,size:t,strokeWidth:n,style:i,...r})=>o.jsx("div",{...r,className:yi(mQe.LoadingIndicator,e),style:i||Zb({"indicator-size":t,"indicator-stroke":n})});var gQe=Object.defineProperty,p7=(e,t)=>gQe(e,"name",{value:t,configurable:!0});function B4(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}p7(B4,"setRef");function Qye(...e){return t=>{let n=!1;const i=e.map(r=>{const s=B4(r,t);return!n&&typeof s=="function"&&(n=!0),s});if(n)return()=>{for(let r=0;rbQe(e,"name",{value:t,configurable:!0});function wh(e){const t=p.forwardRef((n,i)=>{let{children:r,...s}=n,a=null,l=!1;const c=[];U4(r)&&typeof sT=="function"&&(r=sT(r._payload)),p.Children.forEach(r,h=>{var m;if(Kye(h)){l=!0;const g=h;let b="child"in g.props?g.props.child:g.props.children;U4(b)&&typeof sT=="function"&&(b=sT(b._payload)),a=yQe(g,b),c.push((m=a==null?void 0:a.props)==null?void 0:m.children)}else c.push(h)}),a?a=p.cloneElement(a,void 0,c):!l&&p.Children.count(r)===1&&p.isValidElement(r)&&(a=r);const u=a?Wye(a):void 0,d=ar(i,u);if(!a){if(r||r===0)throw new Error(l?wQe(e):xQe(e));return r}const f=qye(s,a.props??{});return a.type!==p.Fragment&&(f.ref=i?d:u),p.cloneElement(a,f)});return t.displayName=`${e}.Slot`,t}Wu(wh,"createSlot");var zye=wh("Slot"),Vye=Symbol.for("radix.slottable");function Hye(e){const t=Wu(n=>"child"in n?n.children(n.child):n.children,"Slottable");return t.displayName=`${e}.Slottable`,t.__radixId=Vye,t}Wu(Hye,"createSlottable");var yQe=Wu((e,t)=>{if("child"in e.props){const n=e.props.child;return p.isValidElement(n)?p.cloneElement(n,void 0,e.props.children(n.props.children)):null}return p.isValidElement(t)?t:null},"getSlottableElementFromSlottable");function qye(e,t){const n={...t};for(const i in t){const r=e[i],s=t[i];/^on[A-Z]/.test(i)?r&&s?n[i]=(...l)=>{const c=s(...l);return r(...l),c}:r&&(n[i]=r):i==="style"?n[i]={...r,...s}:i==="className"&&(n[i]=[r,s].filter(Boolean).join(" "))}return{...e,...n}}Wu(qye,"mergeProps");function Wye(e){var i,r;let t=(i=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:i.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=(r=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:r.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}Wu(Wye,"getElementRef");function Kye(e){return p.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===Vye}Wu(Kye,"isSlottable");var vQe=Symbol.for("react.lazy");function U4(e){return e!=null&&typeof e=="object"&&"$$typeof"in e&&e.$$typeof===vQe&&"_payload"in e&&Gye(e._payload)}Wu(U4,"isLazyComponent");function Gye(e){return typeof e=="object"&&e!==null&&"then"in e}Wu(Gye,"isPromiseLike");var xQe=Wu(e=>`${e} failed to slot onto its children. Expected a single React element child or \`Slottable\`.`,"createSlotError"),wQe=Wu(e=>`${e} failed to slot onto its \`Slottable\`. Expected \`Slottable\` to receive a single React element child.`,"createSlottableError"),sT=Vb[" use ".trim().toString()],OQe=Object.defineProperty,SQe=(e,t)=>OQe(e,"name",{value:t,configurable:!0}),kQe=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],_r=kQe.reduce((e,t)=>{const n=wh(`Primitive.${t}`),i=p.forwardRef((r,s)=>{const{asChild:a,...l}=r,c=a?n:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),o.jsx(c,{...l,ref:s})});return i.displayName=`Primitive.${t}`,{...e,[t]:i}},{});function m7(e,t){e&&Fi.flushSync(()=>e.dispatchEvent(t))}SQe(m7,"dispatchDiscreteCustomEvent");var EQe=Object.defineProperty,CQe=(e,t)=>EQe(e,"name",{value:t,configurable:!0}),TQe=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),AQe=p.forwardRef(CQe(function(t,n){return o.jsx(_r.span,{...t,ref:n,style:{...TQe,...t.style}})},"VisuallyHidden")),_Qe=AQe,NQe=Object.defineProperty,zc=(e,t)=>NQe(e,"name",{value:t,configurable:!0});function jQe(e,t){const n=p.createContext(t);n.displayName=e+"Context";const i=zc(s=>{const{children:a,...l}=s,c=p.useMemo(()=>l,Object.values(l));return o.jsx(n.Provider,{value:c,children:a})},"Provider");i.displayName=e+"Provider";function r(s,a={}){const{optional:l=!1}=a,c=p.useContext(n);if(c)return c;if(t!==void 0)return t;if(!l)throw new Error(`\`${s}\` must be used within \`${e}\``)}return zc(r,"useContext"),[i,r]}zc(jQe,"createContext");function El(e,t=[]){let n=[];function i(s,a){const l=p.createContext(a);l.displayName=s+"Context";const c=n.length;n=[...n,a];const u=zc(f=>{var y;const{scope:h,children:m,...g}=f,b=((y=h==null?void 0:h[e])==null?void 0:y[c])||l,v=p.useMemo(()=>g,Object.values(g));return o.jsx(b.Provider,{value:v,children:m})},"Provider");u.displayName=s+"Provider";function d(f,h,m={}){var y;const{optional:g=!1}=m,b=((y=h==null?void 0:h[e])==null?void 0:y[c])||l,v=p.useContext(b);if(v)return v;if(a!==void 0)return a;if(!g)throw new Error(`\`${f}\` must be used within \`${s}\``)}return zc(d,"useContext"),[u,d]}zc(i,"createContext");const r=zc(()=>{const s=n.map(a=>p.createContext(a));return zc(function(l){const c=(l==null?void 0:l[e])||s;return p.useMemo(()=>({[`__scope${e}`]:{...l,[e]:c}}),[l,c])},"useScope")},"createScope");return r.scopeName=e,[i,Xye(r,...t)]}zc(El,"createContextScope");function Xye(...e){const t=e[0];if(e.length===1)return t;const n=zc(()=>{const i=e.map(r=>({useScope:r(),scopeName:r.scopeName}));return zc(function(s){const a=i.reduce((l,{useScope:c,scopeName:u})=>{const f=c(s)[`__scope${u}`];return{...l,...f}},{});return p.useMemo(()=>({[`__scope${t.scopeName}`]:a}),[a])},"useComposedScopes")},"createScope");return n.scopeName=t.scopeName,n}zc(Xye,"composeContextScopes");var RQe=Object.defineProperty,Ra=(e,t)=>RQe(e,"name",{value:t,configurable:!0});function g7(e){const t=e+"CollectionProvider",[n,i]=El(t),[r,s]=n(t,{collectionRef:{current:null},itemMap:new Map}),a=Ra(b=>{const{scope:v,children:y}=b,x=p.useRef(null),O=p.useRef(new Map).current;return o.jsx(r,{scope:v,itemMap:O,collectionRef:x,children:y})},"CollectionProvider");a.displayName=t;const l=e+"CollectionSlot",c=wh(l),u=p.forwardRef((b,v)=>{const{scope:y,children:x}=b,O=s(l,y),w=ar(v,O.collectionRef);return o.jsx(c,{ref:w,children:x})});u.displayName=l;const d=e+"CollectionItemSlot",f="data-radix-collection-item",h=wh(d),m=p.forwardRef((b,v)=>{const{scope:y,children:x,...O}=b,w=p.useRef(null),k=ar(v,w),S=s(d,y);return p.useEffect(()=>(S.itemMap.set(w,{ref:w,...O}),()=>void S.itemMap.delete(w))),o.jsx(h,{[f]:"",ref:k,children:x})});m.displayName=d;function g(b){const v=s(e+"CollectionConsumer",b);return p.useCallback(()=>{const x=v.collectionRef.current;if(!x)return[];const O=Array.from(x.querySelectorAll(`[${f}]`));return Array.from(v.itemMap.values()).sort((S,E)=>O.indexOf(S.ref.current)-O.indexOf(E.ref.current))},[v.collectionRef,v.itemMap])}return Ra(g,"useCollection"),[{Provider:a,Slot:u,ItemSlot:m},g,i]}Ra(g7,"createCollection");var WW=new WeakMap,Ks,Kl,HD=(Kl=class extends Map{constructor(n){super(n);vV(this,Ks);MP(this,Ks,[...super.keys()]),WW.set(this,!0)}set(n,i){return WW.get(this)&&(this.has(n)?po(this,Ks)[po(this,Ks).indexOf(n)]=n:po(this,Ks).push(n)),super.set(n,i),this}insert(n,i,r){const s=this.has(i),a=po(this,Ks).length,l=b7(n);let c=l>=0?l:a+l;const u=c<0||c>=a?-1:c;if(u===this.size||s&&u===this.size-1||u===-1)return this.set(i,r),this;const d=this.size+(s?0:1);l<0&&c++;const f=[...po(this,Ks)];let h,m=!1;for(let g=c;g=this.size&&(s=this.size-1),this.at(s)}keyFrom(n,i){const r=this.indexOf(n);if(r===-1)return;let s=r+i;return s<0&&(s=0),s>=this.size&&(s=this.size-1),this.keyAt(s)}find(n,i){let r=0;for(const s of this){if(Reflect.apply(n,i,[s,r,this]))return s;r++}}findIndex(n,i){let r=0;for(const s of this){if(Reflect.apply(n,i,[s,r,this]))return r;r++}return-1}filter(n,i){const r=[];let s=0;for(const a of this)Reflect.apply(n,i,[a,s,this])&&r.push(a),s++;return new Kl(r)}map(n,i){const r=[];let s=0;for(const a of this)r.push([a[0],Reflect.apply(n,i,[a,s,this])]),s++;return new Kl(r)}reduce(...n){const[i,r]=n;let s=0,a=r??this.at(0);for(const l of this)s===0&&n.length===1?a=l:a=Reflect.apply(i,this,[a,l,s,this]),s++;return a}reduceRight(...n){const[i,r]=n;let s=r??this.at(-1);for(let a=this.size-1;a>=0;a--){const l=this.at(a);a===this.size-1&&n.length===1?s=l:s=Reflect.apply(i,this,[s,l,a,this])}return s}toSorted(n){const i=[...this.entries()].sort(n);return new Kl(i)}toReversed(){const n=new Kl;for(let i=this.size-1;i>=0;i--){const r=this.keyAt(i),s=this.get(r);n.set(r,s)}return n}toSpliced(...n){const i=[...this.entries()];return i.splice(...n),new Kl(i)}slice(n,i){const r=new Kl;let s=this.size-1;if(n===void 0)return r;n<0&&(n=n+this.size),i!==void 0&&i>0&&(s=i-1);for(let a=n;a<=s;a++){const l=this.keyAt(a),c=this.get(l);r.set(l,c)}return r}every(n,i){let r=0;for(const s of this){if(!Reflect.apply(n,i,[s,r,this]))return!1;r++}return!0}some(n,i){let r=0;for(const s of this){if(Reflect.apply(n,i,[s,r,this]))return!0;r++}return!1}},Ks=new WeakMap,Ra(Kl,"OrderedDict"),Kl);function u2(e,t){if("at"in Array.prototype)return Array.prototype.at.call(e,t);const n=Yye(e,t);return n===-1?void 0:e[n]}Ra(u2,"at");function Yye(e,t){const n=e.length,i=b7(t),r=i>=0?i:n+i;return r<0||r>=n?-1:r}Ra(Yye,"toSafeIndex");function b7(e){return e!==e||e===0?0:Math.trunc(e)}Ra(b7,"toSafeInteger");function IQe(e){const t=e+"CollectionProvider",[n,i]=El(t),[r,s]=n(t,{collectionElement:null,collectionRef:{current:null},collectionRefObject:{current:null},itemMap:new HD,setItemMap:Ra(()=>{},"setItemMap")}),a=Ra(({state:O,...w})=>O?o.jsx(c,{...w,state:O}):o.jsx(l,{...w}),"CollectionProvider");a.displayName=t;const l=Ra(O=>{const w=v();return o.jsx(c,{...O,state:w})},"CollectionInit");l.displayName=t+"Init";const c=Ra(O=>{const{scope:w,children:k,state:S}=O,E=p.useRef(null),[C,N]=p.useState(null),T=ar(E,N),[j,A]=S;return p.useEffect(()=>{if(!C)return;const L=eve(()=>{});return L.observe(C,{childList:!0,subtree:!0}),()=>{L.disconnect()}},[C]),o.jsx(r,{scope:w,itemMap:j,setItemMap:A,collectionRef:T,collectionRefObject:E,collectionElement:C,children:k})},"CollectionProviderImpl");c.displayName=t+"Impl";const u=e+"CollectionSlot",d=wh(u),f=p.forwardRef((O,w)=>{const{scope:k,children:S}=O,E=s(u,k),C=ar(w,E.collectionRef);return o.jsx(d,{ref:C,children:S})});f.displayName=u;const h=e+"CollectionItemSlot",m="data-radix-collection-item",g=wh(h),b=p.forwardRef((O,w)=>{const{scope:k,children:S,...E}=O,C=p.useRef(null),[N,T]=p.useState(null),j=ar(w,C,T),A=s(h,k),{setItemMap:L}=A,_=p.useRef(E);Zye(_.current,E)||(_.current=E);const P=_.current;return p.useEffect(()=>{const I=P;return L($=>N?$.has(N)?$.set(N,{...I,element:N}).toSorted(Q4):($.set(N,{...I,element:N}),$.toSorted(Q4)):$),()=>{L($=>!N||!$.has(N)?$:($.delete(N),new HD($)))}},[N,P,L]),o.jsx(g,{[m]:"",ref:j,children:S})});b.displayName=h;function v(){return p.useState(new HD)}Ra(v,"useInitCollection");function y(O){const{itemMap:w}=s(e+"CollectionConsumer",O);return w}return Ra(y,"useCollection"),[{Provider:a,Slot:f,ItemSlot:b},{createCollectionScope:i,useCollection:y,useInitCollection:v}]}Ra(IQe,"createCollection");function Zye(e,t){if(e===t)return!0;if(typeof e!="object"||typeof t!="object"||e==null||t==null)return!1;const n=Object.keys(e),i=Object.keys(t);if(n.length!==i.length)return!1;for(const r of n)if(!Object.prototype.hasOwnProperty.call(t,r)||e[r]!==t[r])return!1;return!0}Ra(Zye,"shallowEqual");function Jye(e,t){return!!(t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_PRECEDING)}Ra(Jye,"isElementPreceding");function Q4(e,t){return!e[1].element||!t[1].element?0:Jye(e[1].element,t[1].element)?-1:1}Ra(Q4,"sortByDocumentPosition");function eve(e){return new MutationObserver(n=>{for(const i of n)if(i.type==="childList"){e();return}})}Ra(eve,"getChildListObserver");var PQe=Object.defineProperty,Dx=(e,t)=>PQe(e,"name",{value:t,configurable:!0}),tve=!!(typeof window<"u"&&window.document&&window.document.createElement);function Sn(e,t,{checkForDefaultPrevented:n=!0}={}){return Dx(function(r){if(e==null||e(r),n===!1||!r||!r.defaultPrevented)return t==null?void 0:t(r)},"handleEvent")}Dx(Sn,"composeEventHandlers");function DQe(e){var t;if(!tve)throw new Error("Cannot access window outside of the DOM");return((t=e==null?void 0:e.ownerDocument)==null?void 0:t.defaultView)??window}Dx(DQe,"getOwnerWindow");function z4(e){if(!tve)throw new Error("Cannot access document outside of the DOM");return(e==null?void 0:e.ownerDocument)??document}Dx(z4,"getOwnerDocument");function nve(e,t=!1){const{activeElement:n}=z4(e);if(!(n!=null&&n.nodeName))return null;if(ive(n)&&n.contentDocument)return nve(n.contentDocument.body,t);if(t){const i=n.getAttribute("aria-activedescendant");if(i){const r=z4(n).getElementById(i);if(r)return r}}return n}Dx(nve,"getActiveElement");function ive(e){return e.tagName==="IFRAME"}Dx(ive,"isFrame");var eu=globalThis!=null&&globalThis.document?p.useLayoutEffect:()=>{},MQe=Object.defineProperty,LQe=(e,t)=>MQe(e,"name",{value:t,configurable:!0}),KW=Vb[" useEffectEvent ".trim().toString()],GW=Vb[" useInsertionEffect ".trim().toString()];function rve(e){if(typeof KW=="function")return KW(e);const t=p.useRef(()=>{throw new Error("Cannot call an event handler while rendering.")});return typeof GW=="function"?GW(()=>{t.current=e}):eu(()=>{t.current=e}),p.useMemo(()=>(...n)=>{var i;return(i=t.current)==null?void 0:i.call(t,...n)},[])}LQe(rve,"useEffectEvent");var $Qe=Object.defineProperty,Xk=(e,t)=>$Qe(e,"name",{value:t,configurable:!0}),FQe=Vb[" useInsertionEffect ".trim().toString()]||eu;function au({prop:e,defaultProp:t,onChange:n=Xk(()=>{},"onChange"),caller:i}){const[r,s,a]=sve({defaultProp:t,onChange:n}),l=e!==void 0,c=l?e:r,u=p.useCallback(d=>{var f;if(l){const h=ave(d)?d(e):d;h!==e&&((f=a.current)==null||f.call(a,h))}else s(d)},[l,e,s,a]);return[c,u]}Xk(au,"useControllableState");function sve({defaultProp:e,onChange:t}){const[n,i]=p.useState(e),r=p.useRef(n),s=p.useRef(t);return FQe(()=>{s.current=t},[t]),p.useEffect(()=>{var a;r.current!==n&&((a=s.current)==null||a.call(s,n),r.current=n)},[n,r]),[n,i,s]}Xk(sve,"useUncontrolledState");function ave(e){return typeof e=="function"}Xk(ave,"isFunction");var XW=Symbol("RADIX:SYNC_STATE");function BQe(e,t,n,i){const{prop:r,defaultProp:s,onChange:a,caller:l}=t,c=r!==void 0,u=rve(a),d=[{...n,state:s}];i&&d.push(i);const[f,h]=p.useReducer((v,y)=>{if(y.type===XW)return{...v,state:y.state};const x=e(v,y);return c&&!Object.is(x.state,v.state)&&u(x.state),x},...d),m=f.state,g=p.useRef(m);p.useEffect(()=>{g.current!==m&&(g.current=m,c||u(m))},[m,g,c]);const b=p.useMemo(()=>r!==void 0?{...f,state:r}:f,[f,r]);return p.useEffect(()=>{c&&!Object.is(r,f.state)&&h({type:XW,state:r})},[r,f.state,c]),[b,h]}Xk(BQe,"useControllableStateReducer");var UQe=Object.defineProperty,Oh=(e,t)=>UQe(e,"name",{value:t,configurable:!0});function ove(e,t){return p.useReducer((n,i)=>t[n][i]??n,e)}Oh(ove,"useStateMachine");var Xd=Oh(e=>{const{present:t,children:n}=e,i=lve(t),r=typeof n=="function"?n({present:i.isPresent}):p.Children.only(n),s=cve(i.ref,uve(r));return typeof n=="function"||i.isPresent?p.cloneElement(r,{ref:s}):null},"Presence");function lve(e){const[t,n]=p.useState(),i=p.useRef(null),r=p.useRef(e),s=p.useRef("none"),a=p.useRef(void 0),l=e?"mounted":"unmounted",[c,u]=ove(l,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return p.useEffect(()=>{c==="mounted"?(s.current=a.current??ay(i.current),a.current=void 0):s.current="none"},[c]),eu(()=>{const d=i.current,f=r.current;if(f!==e){const m=s.current,g=ay(d);e?(a.current=g,u("MOUNT")):g==="none"||(d==null?void 0:d.display)==="none"?u("UNMOUNT"):u(f&&m!==g?"ANIMATION_OUT":"UNMOUNT"),r.current=e}},[e,u]),eu(()=>{if(t){let d;const f=t.ownerDocument.defaultView??window,h=Oh(g=>{const v=ay(i.current).includes(CSS.escape(g.animationName));if(g.target===t&&v&&(u("ANIMATION_END"),!r.current)){const y=t.style.animationFillMode;t.style.animationFillMode="forwards",d=f.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=y)})}},"handleAnimationEnd"),m=Oh(g=>{g.target===t&&(s.current=ay(i.current))},"handleAnimationStart");return t.addEventListener("animationstart",m),t.addEventListener("animationcancel",h),t.addEventListener("animationend",h),()=>{f.clearTimeout(d),t.removeEventListener("animationstart",m),t.removeEventListener("animationcancel",h),t.removeEventListener("animationend",h)}}else u("ANIMATION_END")},[t,u]),{isPresent:["mounted","unmountSuspended"].includes(c),ref:p.useCallback(d=>{if(d){const f=getComputedStyle(d);i.current=f,a.current=ay(f)}else i.current=null;n(d)},[])}}Oh(lve,"usePresence");function V4(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}Oh(V4,"setRef");function cve(...e){const t=p.useRef(e);return t.current=e,p.useCallback(n=>{const i=t.current;let r=!1;const s=i.map(a=>{const l=V4(a,n);return!r&&typeof l=="function"&&(r=!0),l});if(r)return()=>{for(let a=0;aQQe(e,"name",{value:t,configurable:!0}),VQe=Vb[" useId ".trim().toString()]||(()=>{}),HQe=0;function vm(e){const[t,n]=p.useState(VQe());return eu(()=>{e||n(i=>i??String(HQe++))},[e]),e||(t?`radix-${t}`:"")}zQe(vm,"useId");var qQe=Object.defineProperty,WQe=(e,t)=>qQe(e,"name",{value:t,configurable:!0}),KQe=p.createContext(void 0);function Yk(e){const t=p.useContext(KQe);return e||t||"ltr"}WQe(Yk,"useDirection");var GQe=Object.defineProperty,XQe=(e,t)=>GQe(e,"name",{value:t,configurable:!0});function Fu(e){const t=p.useRef(e);return p.useEffect(()=>{t.current=e}),p.useMemo(()=>(...n)=>{var i;return(i=t.current)==null?void 0:i.call(t,...n)},[])}XQe(Fu,"useCallbackRef");var YQe=Object.defineProperty,Na=(e,t)=>YQe(e,"name",{value:t,configurable:!0}),H4="dismissableLayer.update",ZQe="dismissableLayer.pointerDownOutside",JQe="dismissableLayer.focusOutside",YW,dve=p.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set,dismissableSurfaces:new Set}),y7=p.forwardRef(Na(function(t,n){const{disableOutsidePointerEvents:i=!1,deferPointerDownOutside:r=!1,onEscapeKeyDown:s,onPointerDownOutside:a,onFocusOutside:l,onInteractOutside:c,onDismiss:u,...d}=t,f=p.useContext(dve),[h,m]=p.useState(null),g=(h==null?void 0:h.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,b]=p.useState({}),v=ar(n,m),y=Array.from(f.layers),[x]=[...f.layersWithOutsidePointerEventsDisabled].slice(-1),O=x?y.indexOf(x):-1,w=h?y.indexOf(h):-1,k=f.layersWithOutsidePointerEventsDisabled.size>0,S=w>=O,E=p.useRef(!1),C=fve(A=>{a==null||a(A),c==null||c(A),A.defaultPrevented||u==null||u()},{ownerDocument:g,deferPointerDownOutside:r,isDeferredPointerDownOutsideRef:E,dismissableSurfaces:f.dismissableSurfaces,shouldHandlePointerDownOutside:p.useCallback(A=>{if(!(A instanceof Node))return!1;const L=[...f.branches].some(_=>_.contains(A));return S&&!L},[f.branches,S])}),N=hve(A=>{if(r&&E.current)return;const L=A.target;[...f.branches].some(P=>P.contains(L))||(l==null||l(A),c==null||c(A),A.defaultPrevented||u==null||u())},g),T=h?w===y.length-1:!1,j=Fu(A=>{A.key==="Escape"&&(s==null||s(A),!A.defaultPrevented&&u&&(A.preventDefault(),u()))});return p.useEffect(()=>{if(T)return g.addEventListener("keydown",j,{capture:!0}),()=>g.removeEventListener("keydown",j,{capture:!0})},[g,T,j]),p.useEffect(()=>{if(h)return i&&(f.layersWithOutsidePointerEventsDisabled.size===0&&(YW=g.body.style.pointerEvents,g.body.style.pointerEvents="none"),f.layersWithOutsidePointerEventsDisabled.add(h)),f.layers.add(h),q4(),()=>{i&&(f.layersWithOutsidePointerEventsDisabled.delete(h),f.layersWithOutsidePointerEventsDisabled.size===0&&(g.body.style.pointerEvents=YW))}},[h,g,i,f]),p.useEffect(()=>()=>{h&&(f.layers.delete(h),f.layersWithOutsidePointerEventsDisabled.delete(h),q4())},[h,f]),p.useEffect(()=>{const A=Na(()=>b({}),"handleUpdate");return document.addEventListener(H4,A),()=>document.removeEventListener(H4,A)},[]),o.jsx(_r.div,{...d,ref:v,style:{pointerEvents:k?S?"auto":"none":void 0,...t.style},onFocusCapture:Sn(t.onFocusCapture,N.onFocusCapture),onBlurCapture:Sn(t.onBlurCapture,N.onBlurCapture),onPointerDownCapture:Sn(t.onPointerDownCapture,C.onPointerDownCapture)})},"DismissableLayer"));function eze(){const e=p.useContext(dve),[t,n]=p.useState(null);return p.useEffect(()=>{if(t)return e.dismissableSurfaces.add(t),()=>{e.dismissableSurfaces.delete(t)}},[t,e.dismissableSurfaces]),n}Na(eze,"useDismissableLayerSurface");var tze=Na(()=>!0,"IS_TRUE");function fve(e,t){const{ownerDocument:n=globalThis==null?void 0:globalThis.document,deferPointerDownOutside:i=!1,isDeferredPointerDownOutsideRef:r,dismissableSurfaces:s,shouldHandlePointerDownOutside:a=tze}=t,l=Fu(e),c=p.useRef(!1),u=p.useRef(!1),d=p.useRef(new Map),f=p.useRef(()=>{});return p.useEffect(()=>{function h(){u.current=!1,r.current=!1,d.current.clear()}Na(h,"resetOutsideInteraction");function m(){return Array.from(d.current.values()).some(Boolean)}Na(m,"isOutsideInteractionIntercepted");function g(O){if(!u.current)return;const w=O.target;w instanceof Node&&[...s].some(S=>S.contains(w))||d.current.set(O.type,!0),O.type==="click"&&window.setTimeout(()=>{u.current&&f.current()},0)}Na(g,"handleInteractionCapture");function b(O){u.current&&d.current.set(O.type,!1)}Na(b,"handleInteractionBubble");const v=Na(O=>{if(O.target&&!c.current){let w=function(){n.removeEventListener("click",f.current);const S=m();h(),S||v7(ZQe,l,k,{discrete:!0})};if(Na(w,"handleAndDispatchPointerDownOutsideEvent"),!a(O.target)){n.removeEventListener("click",f.current),h(),c.current=!1;return}const k={originalEvent:O};u.current=!0,r.current=i&&O.button===0,d.current.clear(),!i||O.button!==0?w():(n.removeEventListener("click",f.current),f.current=w,n.addEventListener("click",f.current,{once:!0}))}else n.removeEventListener("click",f.current),h();c.current=!1},"handlePointerDown"),y=["pointerup","mousedown","mouseup","touchstart","touchend","click"];for(const O of y)n.addEventListener(O,g,!0),n.addEventListener(O,b);const x=window.setTimeout(()=>{n.addEventListener("pointerdown",v)},0);return()=>{window.clearTimeout(x),n.removeEventListener("pointerdown",v),n.removeEventListener("click",f.current);for(const O of y)n.removeEventListener(O,g,!0),n.removeEventListener(O,b)}},[n,l,i,r,s,a]),{onPointerDownCapture:Na(()=>c.current=!0,"onPointerDownCapture")}}Na(fve,"usePointerDownOutside");function hve(e,t=globalThis==null?void 0:globalThis.document){const n=Fu(e),i=p.useRef(!1);return p.useEffect(()=>{const r=Na(s=>{s.target&&!i.current&&v7(JQe,n,{originalEvent:s},{discrete:!1})},"handleFocus");return t.addEventListener("focusin",r),()=>t.removeEventListener("focusin",r)},[t,n]),{onFocusCapture:Na(()=>i.current=!0,"onFocusCapture"),onBlurCapture:Na(()=>i.current=!1,"onBlurCapture")}}Na(hve,"useFocusOutside");function q4(){const e=new CustomEvent(H4);document.dispatchEvent(e)}Na(q4,"dispatchUpdate");function v7(e,t,n,{discrete:i}){const r=n.originalEvent.target,s=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&r.addEventListener(e,t,{once:!0}),i?m7(r,s):r.dispatchEvent(s)}Na(v7,"handleAndDispatchCustomEvent");var nze=Object.defineProperty,Vo=(e,t)=>nze(e,"name",{value:t,configurable:!0}),qD="focusScope.autoFocusOnMount",WD="focusScope.autoFocusOnUnmount",ZW={bubbles:!1,cancelable:!0},pve=p.forwardRef(Vo(function(t,n){const{loop:i=!1,trapped:r=!1,onMountAutoFocus:s,onUnmountAutoFocus:a,...l}=t,[c,u]=p.useState(null),d=Fu(s),f=Fu(a),h=p.useRef(null),m=ar(n,u),g=p.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;p.useEffect(()=>{if(r){let v=function(w){if(g.paused||!c)return;const k=w.target;c.contains(k)?h.current=k:Nf(h.current,{select:!0})},y=function(w){if(g.paused||!c)return;const k=w.relatedTarget;k!==null&&(c.contains(k)||Nf(h.current,{select:!0}))},x=function(w){if(document.activeElement===document.body)for(const S of w)S.removedNodes.length>0&&Nf(c)};Vo(v,"handleFocusIn"),Vo(y,"handleFocusOut"),Vo(x,"handleMutations"),document.addEventListener("focusin",v),document.addEventListener("focusout",y);const O=new MutationObserver(x);return c&&O.observe(c,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",v),document.removeEventListener("focusout",y),O.disconnect()}}},[r,c,g.paused]),p.useEffect(()=>{if(c){JW.add(g);const v=document.activeElement;if(!c.contains(v)){const x=new CustomEvent(qD,ZW);c.addEventListener(qD,d),c.dispatchEvent(x),x.defaultPrevented||(mve(xve(x7(c)),{select:!0}),document.activeElement===v&&Nf(c))}return()=>{c.removeEventListener(qD,d),setTimeout(()=>{const x=new CustomEvent(WD,ZW);c.addEventListener(WD,f),c.dispatchEvent(x),x.defaultPrevented||Nf(v??document.body,{select:!0}),c.removeEventListener(WD,f),JW.remove(g)},0)}}},[c,d,f,g]);const b=p.useCallback(v=>{if(!i&&!r||g.paused)return;const y=v.key==="Tab"&&!v.altKey&&!v.ctrlKey&&!v.metaKey,x=document.activeElement;if(y&&x){const O=v.currentTarget,[w,k]=gve(O);w&&k?!v.shiftKey&&x===k?(v.preventDefault(),i&&Nf(w,{select:!0})):v.shiftKey&&x===w&&(v.preventDefault(),i&&Nf(k,{select:!0})):x===O&&v.preventDefault()}},[i,r,g.paused]);return o.jsx(_r.div,{tabIndex:-1,...l,ref:m,onKeyDown:b})},"FocusScope"));function mve(e,{select:t=!1}={}){const n=document.activeElement;for(const i of e)if(Nf(i,{select:t}),document.activeElement!==n)return}Vo(mve,"focusFirst");function gve(e){const t=x7(e),n=W4(t,e),i=W4(t.reverse(),e);return[n,i]}Vo(gve,"getTabbableEdges");function x7(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:Vo(i=>{const r=i.tagName==="INPUT"&&i.type==="hidden";return i.disabled||i.hidden||r?NodeFilter.FILTER_SKIP:i.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP},"acceptNode")});for(;n.nextNode();)t.push(n.currentNode);return t}Vo(x7,"getTabbableCandidates");function W4(e,t){const n=typeof t.checkVisibility=="function"&&t.checkVisibility({checkVisibilityCSS:!0});for(const i of e)if(!(n?!i.checkVisibility({checkVisibilityCSS:!0}):bve(i,{upTo:t})))return i}Vo(W4,"findVisible");function bve(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}Vo(bve,"isHidden");function yve(e){return e instanceof HTMLInputElement&&"select"in e}Vo(yve,"isSelectableInput");function Nf(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&yve(e)&&t&&e.select()}}Vo(Nf,"focus");var JW=vve();function vve(){let e=[];return{add(t){const n=e[0];t!==n&&(n==null||n.pause()),e=K4(e,t),e.unshift(t)},remove(t){var n;e=K4(e,t),(n=e[0])==null||n.resume()}}}Vo(vve,"createFocusScopesStack");function K4(e,t){const n=[...e],i=n.indexOf(t);return i!==-1&&n.splice(i,1),n}Vo(K4,"arrayRemove");function xve(e){return e.filter(t=>t.tagName!=="A")}Vo(xve,"removeLinks");var ize=Object.defineProperty,rze=(e,t)=>ize(e,"name",{value:t,configurable:!0}),w7=p.forwardRef(rze(function(t,n){var c;const{container:i,...r}=t,[s,a]=p.useState(!1);eu(()=>a(!0),[]);const l=i||s&&((c=globalThis==null?void 0:globalThis.document)==null?void 0:c.body);return l?Fi.createPortal(o.jsx(_r.div,{...r,ref:n}),l):null},"Portal")),sze=Object.defineProperty,O7=(e,t)=>sze(e,"name",{value:t,configurable:!0}),aT=0,od=null;function aze(e){return gR(),e.children}O7(aze,"FocusGuards");function gR(){p.useEffect(()=>{od||(od={start:G4(),end:G4()});const{start:e,end:t}=od;return document.body.firstElementChild!==e&&document.body.insertAdjacentElement("afterbegin",e),document.body.lastElementChild!==t&&document.body.insertAdjacentElement("beforeend",t),aT++,()=>{aT===1&&(od==null||od.start.remove(),od==null||od.end.remove(),od=null),aT=Math.max(0,aT-1)}},[])}O7(gR,"useFocusGuards");function G4(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}O7(G4,"createFocusGuard");var yd=function(){return yd=Object.assign||function(t){for(var n,i=1,r=arguments.length;i"u")return Sze;var t=kze(e),n=document.documentElement.clientWidth,i=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,i-n+t[2]-t[0])}},Cze=kve(),iv="data-scroll-locked",Tze=function(e,t,n,i){var r=e.left,s=e.top,a=e.right,l=e.gap;return n===void 0&&(n="margin"),` + .`.concat(lze,` { overflow: hidden `).concat(i,`; padding-right: `).concat(l,"px ").concat(i,`; } - body[`).concat(Zy,`] { + body[`).concat(iv,`] { overflow: hidden `).concat(i,`; overscroll-behavior: contain; `).concat([t&&"position: relative ".concat(i,";"),n==="margin"&&` @@ -466,29 +466,29 @@ ${n}`}}async function*hBe({runtimeId:e,region:t,instanceName:n,sessionId:i,follo `),n==="padding"&&"padding-right: ".concat(l,"px ").concat(i,";")].filter(Boolean).join(""),` } - .`).concat(aA,` { + .`).concat(d2,` { right: `).concat(l,"px ").concat(i,`; } - .`).concat(oA,` { + .`).concat(f2,` { margin-right: `).concat(l,"px ").concat(i,`; } - .`).concat(aA," .").concat(aA,` { + .`).concat(d2," .").concat(d2,` { right: 0 `).concat(i,`; } - .`).concat(oA," .").concat(oA,` { + .`).concat(f2," .").concat(f2,` { margin-right: 0 `).concat(i,`; } - body[`).concat(Zy,`] { - `).concat(qQe,": ").concat(l,`px; + body[`).concat(iv,`] { + `).concat(cze,": ").concat(l,`px; } -`)},qW=function(){var e=parseInt(document.body.getAttribute(Zy)||"0",10);return isFinite(e)?e:0},dze=function(){p.useEffect(function(){return document.body.setAttribute(Zy,(qW()+1).toString()),function(){var e=qW()-1;e<=0?document.body.removeAttribute(Zy):document.body.setAttribute(Zy,e.toString())}},[])},fze=function(e){var t=e.noRelative,n=e.noImportant,i=e.gapMode,r=i===void 0?"margin":i;dze();var s=p.useMemo(function(){return lze(r)},[r]);return p.createElement(cze,{styles:uze(s,!t,r,n?"":"!important")})},H4=!1;if(typeof window<"u")try{var rT=Object.defineProperty({},"passive",{get:function(){return H4=!0,!0}});window.addEventListener("test",rT,rT),window.removeEventListener("test",rT,rT)}catch{H4=!1}var j0=H4?{passive:!1}:!1,hze=function(e){return e.tagName==="TEXTAREA"},fve=function(e,t){if(!(e instanceof Element))return!1;var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!hze(e)&&n[t]==="visible")},pze=function(e){return fve(e,"overflowY")},mze=function(e){return fve(e,"overflowX")},WW=function(e,t){var n=t.ownerDocument,i=t;do{typeof ShadowRoot<"u"&&i instanceof ShadowRoot&&(i=i.host);var r=hve(e,i);if(r){var s=pve(e,i),a=s[1],l=s[2];if(a>l)return!0}i=i.parentNode}while(i&&i!==n.body);return!1},gze=function(e){var t=e.scrollTop,n=e.scrollHeight,i=e.clientHeight;return[t,n,i]},bze=function(e){var t=e.scrollLeft,n=e.scrollWidth,i=e.clientWidth;return[t,n,i]},hve=function(e,t){return e==="v"?pze(t):mze(t)},pve=function(e,t){return e==="v"?gze(t):bze(t)},yze=function(e,t){return e==="h"&&t==="rtl"?-1:1},vze=function(e,t,n,i,r){var s=yze(e,window.getComputedStyle(t).direction),a=s*i,l=n.target,c=t.contains(l),u=!1,d=a>0,f=0,h=0;do{if(!l)break;var m=pve(e,l),g=m[0],b=m[1],v=m[2],y=b-v-s*g;(g||y)&&hve(e,l)&&(f+=y,h+=g);var x=l.parentNode;l=x&&x.nodeType===Node.DOCUMENT_FRAGMENT_NODE?x.host:x}while(!c&&l!==document.body||c&&(t.contains(l)||t===l));return(d&&Math.abs(f)<1||!d&&Math.abs(h)<1)&&(u=!0),u},sT=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},GW=function(e){return[e.deltaX,e.deltaY]},KW=function(e){return e&&"current"in e?e.current:e},xze=function(e,t){return e[0]===t[0]&&e[1]===t[1]},wze=function(e){return` +`)},tK=function(){var e=parseInt(document.body.getAttribute(iv)||"0",10);return isFinite(e)?e:0},Aze=function(){p.useEffect(function(){return document.body.setAttribute(iv,(tK()+1).toString()),function(){var e=tK()-1;e<=0?document.body.removeAttribute(iv):document.body.setAttribute(iv,e.toString())}},[])},_ze=function(e){var t=e.noRelative,n=e.noImportant,i=e.gapMode,r=i===void 0?"margin":i;Aze();var s=p.useMemo(function(){return Eze(r)},[r]);return p.createElement(Cze,{styles:Tze(s,!t,r,n?"":"!important")})},X4=!1;if(typeof window<"u")try{var oT=Object.defineProperty({},"passive",{get:function(){return X4=!0,!0}});window.addEventListener("test",oT,oT),window.removeEventListener("test",oT,oT)}catch{X4=!1}var M0=X4?{passive:!1}:!1,Nze=function(e){return e.tagName==="TEXTAREA"},Eve=function(e,t){if(!(e instanceof Element))return!1;var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!Nze(e)&&n[t]==="visible")},jze=function(e){return Eve(e,"overflowY")},Rze=function(e){return Eve(e,"overflowX")},nK=function(e,t){var n=t.ownerDocument,i=t;do{typeof ShadowRoot<"u"&&i instanceof ShadowRoot&&(i=i.host);var r=Cve(e,i);if(r){var s=Tve(e,i),a=s[1],l=s[2];if(a>l)return!0}i=i.parentNode}while(i&&i!==n.body);return!1},Ize=function(e){var t=e.scrollTop,n=e.scrollHeight,i=e.clientHeight;return[t,n,i]},Pze=function(e){var t=e.scrollLeft,n=e.scrollWidth,i=e.clientWidth;return[t,n,i]},Cve=function(e,t){return e==="v"?jze(t):Rze(t)},Tve=function(e,t){return e==="v"?Ize(t):Pze(t)},Dze=function(e,t){return e==="h"&&t==="rtl"?-1:1},Mze=function(e,t,n,i,r){var s=Dze(e,window.getComputedStyle(t).direction),a=s*i,l=n.target,c=t.contains(l),u=!1,d=a>0,f=0,h=0;do{if(!l)break;var m=Tve(e,l),g=m[0],b=m[1],v=m[2],y=b-v-s*g;(g||y)&&Cve(e,l)&&(f+=y,h+=g);var x=l.parentNode;l=x&&x.nodeType===Node.DOCUMENT_FRAGMENT_NODE?x.host:x}while(!c&&l!==document.body||c&&(t.contains(l)||t===l));return(d&&Math.abs(f)<1||!d&&Math.abs(h)<1)&&(u=!0),u},lT=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},iK=function(e){return[e.deltaX,e.deltaY]},rK=function(e){return e&&"current"in e?e.current:e},Lze=function(e,t){return e[0]===t[0]&&e[1]===t[1]},$ze=function(e){return` .block-interactivity-`.concat(e,` {pointer-events: none;} .allow-interactivity-`).concat(e,` {pointer-events: all;} -`)},Oze=0,R0=[];function Sze(e){var t=p.useRef([]),n=p.useRef([0,0]),i=p.useRef(),r=p.useState(Oze++)[0],s=p.useState(dve)[0],a=p.useRef(e);p.useEffect(function(){a.current=e},[e]),p.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(r));var b=VQe([e.lockRef.current],(e.shards||[]).map(KW),!0).filter(Boolean);return b.forEach(function(v){return v.classList.add("allow-interactivity-".concat(r))}),function(){document.body.classList.remove("block-interactivity-".concat(r)),b.forEach(function(v){return v.classList.remove("allow-interactivity-".concat(r))})}}},[e.inert,e.lockRef.current,e.shards]);var l=p.useCallback(function(b,v){if("touches"in b&&b.touches.length===2||b.type==="wheel"&&b.ctrlKey)return!a.current.allowPinchZoom;var y=sT(b),x=n.current,O="deltaX"in b?b.deltaX:x[0]-y[0],w="deltaY"in b?b.deltaY:x[1]-y[1],k,S=b.target,E=Math.abs(O)>Math.abs(w)?"h":"v";if("touches"in b&&E==="h"&&S.type==="range")return!1;var C=window.getSelection(),N=C&&C.anchorNode,_=N?N===S||N.contains(S):!1;if(_)return!1;var j=WW(E,S);if(!j)return!0;if(j?k=E:(k=E==="v"?"h":"v",j=WW(E,S)),!j)return!1;if(!i.current&&"changedTouches"in b&&(O||w)&&(i.current=k),!k)return!0;var A=i.current||k;return vze(A,v,b,A==="h"?O:w)},[]),c=p.useCallback(function(b){var v=b;if(!(!R0.length||R0[R0.length-1]!==s)){var y="deltaY"in v?GW(v):sT(v),x=t.current.filter(function(k){return k.name===v.type&&(k.target===v.target||v.target===k.shadowParent)&&xze(k.delta,y)})[0];if(x&&x.should){v.cancelable&&v.preventDefault();return}if(!x){var O=(a.current.shards||[]).map(KW).filter(Boolean).filter(function(k){return k.contains(v.target)}),w=O.length>0?l(v,O[0]):!a.current.noIsolation;w&&v.cancelable&&v.preventDefault()}}},[]),u=p.useCallback(function(b,v,y,x){var O={name:b,delta:v,target:y,should:x,shadowParent:kze(y)};t.current.push(O),setTimeout(function(){t.current=t.current.filter(function(w){return w!==O})},1)},[]),d=p.useCallback(function(b){n.current=sT(b),i.current=void 0},[]),f=p.useCallback(function(b){u(b.type,GW(b),b.target,l(b,e.lockRef.current))},[]),h=p.useCallback(function(b){u(b.type,sT(b),b.target,l(b,e.lockRef.current))},[]);p.useEffect(function(){return R0.push(s),e.setCallbacks({onScrollCapture:f,onWheelCapture:f,onTouchMoveCapture:h}),document.addEventListener("wheel",c,j0),document.addEventListener("touchmove",c,j0),document.addEventListener("touchstart",d,j0),function(){R0=R0.filter(function(b){return b!==s}),document.removeEventListener("wheel",c,j0),document.removeEventListener("touchmove",c,j0),document.removeEventListener("touchstart",d,j0)}},[]);var m=e.removeScrollBar,g=e.inert;return p.createElement(p.Fragment,null,g?p.createElement(s,{styles:wze(r)}):null,m?p.createElement(fze,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function kze(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}const Eze=JQe(uve,Sze);var y7=p.forwardRef(function(e,t){return p.createElement(dR,bd({},e,{ref:t,sideCar:Eze}))});y7.classNames=dR.classNames;var Cze=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},I0=new WeakMap,aT=new WeakMap,oT={},qD=0,mve=function(e){return e&&(e.host||mve(e.parentNode))},Tze=function(e,t){return t.map(function(n){if(e.contains(n))return n;var i=mve(n);return i&&e.contains(i)?i:(console.error("aria-hidden",n,"in not contained inside",e,". Doing nothing"),null)}).filter(function(n){return!!n})},Aze=function(e,t,n,i){var r=Tze(t,Array.isArray(e)?e:[e]);oT[n]||(oT[n]=new WeakMap);var s=oT[n],a=[],l=new Set,c=new Set(r),u=function(f){!f||l.has(f)||(l.add(f),u(f.parentNode))};r.forEach(u);var d=function(f){!f||c.has(f)||Array.prototype.forEach.call(f.children,function(h){if(l.has(h))d(h);else try{var m=h.getAttribute(i),g=m!==null&&m!=="false",b=(I0.get(h)||0)+1,v=(s.get(h)||0)+1;I0.set(h,b),s.set(h,v),a.push(h),b===1&&g&&aT.set(h,!0),v===1&&h.setAttribute(n,"true"),g||h.setAttribute(i,"true")}catch(y){console.error("aria-hidden: cannot operate on ",h,y)}})};return d(t),l.clear(),qD++,function(){a.forEach(function(f){var h=I0.get(f)-1,m=s.get(f)-1;I0.set(f,h),s.set(f,m),h||(aT.has(f)||f.removeAttribute(i),aT.delete(f)),m||f.removeAttribute(n)}),qD--,qD||(I0=new WeakMap,I0=new WeakMap,aT=new WeakMap,oT={})}},gve=function(e,t,n){n===void 0&&(n="data-aria-hidden");var i=Array.from(Array.isArray(e)?e:[e]),r=Cze(e);return r?(i.push.apply(i,Array.from(r.querySelectorAll("[aria-live], script"))),Aze(i,r,n,"aria-hidden")):function(){return null}},_ze=Object.defineProperty,Nze=(e,t)=>_ze(e,"name",{value:t,configurable:!0});function Gk(e){const[t,n]=p.useState(void 0);return Jc(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const i=new ResizeObserver(r=>{if(!Array.isArray(r)||!r.length)return;const s=r[0];let a,l;if("borderBoxSize"in s){const c=s.borderBoxSize,u=Array.isArray(c)?c[0]:c;a=u.inlineSize,l=u.blockSize}else a=e.offsetWidth,l=e.offsetHeight;n({width:a,height:l})});return i.observe(e,{box:"border-box"}),()=>i.unobserve(e)}else n(void 0)},[e]),t}Nze(Gk,"useSize");var jze=Object.defineProperty,kh=(e,t)=>jze(e,"name",{value:t,configurable:!0}),v7="Checkbox",[Rze,YVt]=kl(v7),[Ize,x7]=Rze(v7);function bve(e){const{__scopeCheckbox:t,checked:n,children:i,defaultChecked:r,disabled:s,form:a,name:l,onCheckedChange:c,required:u,value:d="on",internal_do_not_use_render:f}=e,[h,m]=su({prop:n,defaultProp:r??!1,onChange:c,caller:v7}),[g,b]=p.useState(null),[v,y]=p.useState(null),x=p.useRef(!1),[O,w]=p.useReducer(E=>E+1,0),k=g?!!a||!!g.closest("form"):!0,S={checked:h,disabled:s,setChecked:m,control:g,setControl:b,name:l,form:a,value:d,hasConsumerStoppedPropagationRef:x,userInteractionCount:O,onUserInteraction:w,required:u,defaultChecked:rh(r)?!1:r,isFormControl:k,bubbleInput:v,setBubbleInput:y};return o.jsx(Ize,{scope:t,...S,children:yve(f)?f(S):i})}kh(bve,"CheckboxProvider");var Pze="CheckboxTrigger",Dze=p.forwardRef(kh(function({__scopeCheckbox:t,onKeyDown:n,onClick:i,...r},s){const{control:a,value:l,disabled:c,checked:u,required:d,setControl:f,setChecked:h,hasConsumerStoppedPropagationRef:m,onUserInteraction:g,isFormControl:b,bubbleInput:v}=x7(Pze,t),y=ir(s,f),x=p.useRef(u);return p.useEffect(()=>{const O=a==null?void 0:a.form;if(O){const w=kh(()=>h(x.current),"reset");return O.addEventListener("reset",w),()=>O.removeEventListener("reset",w)}},[a,h]),o.jsx(wr.button,{type:"button",role:"checkbox","aria-checked":rh(u)?"mixed":u,"aria-required":d,"data-state":w7(u),"data-disabled":c?"":void 0,disabled:c,value:l,...r,ref:y,onKeyDown:yn(n,O=>{O.key==="Enter"&&O.preventDefault()}),onClick:yn(i,O=>{g(),h(w=>rh(w)?!0:!w),v&&b&&(m.current=O.isPropagationStopped(),m.current||O.stopPropagation())})})},"CheckboxTrigger")),Mze=p.forwardRef(kh(function(t,n){const{__scopeCheckbox:i,name:r,checked:s,defaultChecked:a,required:l,disabled:c,value:u,onCheckedChange:d,form:f,...h}=t;return o.jsx(bve,{__scopeCheckbox:i,checked:s,defaultChecked:a,disabled:c,required:l,onCheckedChange:d,name:r,form:f,value:u,internal_do_not_use_render:({isFormControl:m})=>o.jsxs(o.Fragment,{children:[o.jsx(Dze,{...h,ref:n,__scopeCheckbox:i}),m&&o.jsx(Bze,{__scopeCheckbox:i})]})})},"Checkbox")),Lze="CheckboxIndicator",$ze=p.forwardRef(kh(function(t,n){const{__scopeCheckbox:i,forceMount:r,...s}=t,a=x7(Lze,i);return o.jsx(Gd,{present:r||rh(a.checked)||a.checked===!0,children:o.jsx(wr.span,{"data-state":w7(a.checked),"data-disabled":a.disabled?"":void 0,...s,ref:n,style:{pointerEvents:"none",...t.style}})})},"CheckboxIndicator")),Fze="CheckboxBubbleInput",Bze=p.forwardRef(kh(function({__scopeCheckbox:t,onClick:n,...i},r){const{control:s,hasConsumerStoppedPropagationRef:a,userInteractionCount:l,checked:c,defaultChecked:u,required:d,disabled:f,name:h,value:m,form:g,bubbleInput:b,setBubbleInput:v}=x7(Fze,t),y=ir(r,v),x=Gk(s),O=p.useRef(!1),w=p.useRef(c),k=p.useRef(l);p.useEffect(()=>{const E=b;if(!E)return;const C=window.HTMLInputElement.prototype,_=Object.getOwnPropertyDescriptor(C,"checked").set,j=l!==k.current;k.current=l;const A=w.current!==c;w.current=c;const F=!(j&&a.current);if(A&&_){O.current=!j;const T=new Event("click",{bubbles:F});E.indeterminate=rh(c),_.call(E,rh(c)?!1:c),E.dispatchEvent(T),O.current=!1}},[b,c,a,l]);const S=p.useRef(rh(c)?!1:c);return o.jsx(wr.input,{type:"checkbox","aria-hidden":!0,defaultChecked:u??S.current,required:d,disabled:f,name:h,value:m,form:g,...i,tabIndex:-1,ref:y,onClick:yn(n,E=>{O.current&&E.stopPropagation()}),style:{...i.style,...x,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})},"CheckboxBubbleInput"));function yve(e){return typeof e=="function"}kh(yve,"isFunction");function rh(e){return e==="indeterminate"}kh(rh,"isIndeterminate");function w7(e){return rh(e)?"indeterminate":e?"checked":"unchecked"}kh(w7,"getState");const Uze=["top","right","bottom","left"],gm=Math.min,sh=Math.max,B_=Math.round,lT=Math.floor,ah=e=>({x:e,y:e}),Qze={left:"right",right:"left",bottom:"top",top:"bottom"};function vve(e,t,n){return sh(e,gm(t,n))}function Eh(e,t){return typeof e=="function"?e(t):e}function bm(e){return e.split("-")[0]}function jx(e){return e.split("-")[1]}function O7(e){return e==="x"?"y":"x"}function S7(e){return e==="y"?"height":"width"}function Ed(e){const t=e[0];return t==="t"||t==="b"?"y":"x"}function k7(e){return O7(Ed(e))}function zze(e,t,n){n===void 0&&(n=!1);const i=jx(e),r=k7(e),s=S7(r);let a=r==="x"?i===(n?"end":"start")?"right":"left":i==="start"?"bottom":"top";return t.reference[s]>t.floating[s]&&(a=U_(a)),[a,U_(a)]}function Vze(e){const t=U_(e);return[q4(e),t,q4(t)]}function q4(e){return e.includes("start")?e.replace("start","end"):e.replace("end","start")}const XW=["left","right"],YW=["right","left"],Hze=["top","bottom"],qze=["bottom","top"];function Wze(e,t,n){switch(e){case"top":case"bottom":return n?t?YW:XW:t?XW:YW;case"left":case"right":return t?Hze:qze;default:return[]}}function Gze(e,t,n,i){const r=jx(e);let s=Wze(bm(e),n==="start",i);return r&&(s=s.map(a=>a+"-"+r),t&&(s=s.concat(s.map(q4)))),s}function U_(e){const t=bm(e);return Qze[t]+e.slice(t.length)}function Kze(e){var t,n,i,r;return{top:(t=e.top)!=null?t:0,right:(n=e.right)!=null?n:0,bottom:(i=e.bottom)!=null?i:0,left:(r=e.left)!=null?r:0}}function xve(e){return typeof e!="number"?Kze(e):{top:e,right:e,bottom:e,left:e}}function Q_(e){const{x:t,y:n,width:i,height:r}=e;return{width:i,height:r,top:n,left:t,right:t+i,bottom:n+r,x:t,y:n}}function ZW(e,t,n){let{reference:i,floating:r}=e;const s=Ed(t),a=k7(t),l=S7(a),c=bm(t),u=s==="y",d=i.x+i.width/2-r.width/2,f=i.y+i.height/2-r.height/2,h=i[l]/2-r[l]/2;let m;switch(c){case"top":m={x:d,y:i.y-r.height};break;case"bottom":m={x:d,y:i.y+i.height};break;case"right":m={x:i.x+i.width,y:f};break;case"left":m={x:i.x-r.width,y:f};break;default:m={x:i.x,y:i.y}}const g=jx(t);return g&&(m[a]+=h*(g==="end"?1:-1)*(n&&u?-1:1)),m}async function Xze(e,t){var n;t===void 0&&(t={});const{x:i,y:r,platform:s,rects:a,elements:l,strategy:c}=e,{boundary:u="clippingAncestors",rootBoundary:d="viewport",elementContext:f="floating",altBoundary:h=!1,padding:m=0}=Eh(t,e),g=xve(m),v=l[h?f==="floating"?"reference":"floating":f],y=Q_(await s.getClippingRect({element:(n=await(s.isElement==null?void 0:s.isElement(v)))==null||n?v:v.contextElement||await(s.getDocumentElement==null?void 0:s.getDocumentElement(l.floating)),boundary:u,rootBoundary:d,strategy:c})),x=f==="floating"?{x:i,y:r,width:a.floating.width,height:a.floating.height}:a.reference,O=await(s.getOffsetParent==null?void 0:s.getOffsetParent(l.floating)),w=await(s.isElement==null?void 0:s.isElement(O))&&await(s.getScale==null?void 0:s.getScale(O))||{x:1,y:1},k=Q_(s.convertOffsetParentRelativeRectToViewportRelativeRect?await s.convertOffsetParentRelativeRectToViewportRelativeRect({elements:l,rect:x,offsetParent:O,strategy:c}):x);return{top:(y.top-k.top+g.top)/w.y,bottom:(k.bottom-y.bottom+g.bottom)/w.y,left:(y.left-k.left+g.left)/w.x,right:(k.right-y.right+g.right)/w.x}}const Yze=50,Zze=async(e,t,n)=>{const{placement:i="bottom",strategy:r="absolute",middleware:s=[],platform:a}=n,l=a.detectOverflow?a:{...a,detectOverflow:Xze},c=await(a.isRTL==null?void 0:a.isRTL(t));let u=await a.getElementRects({reference:e,floating:t,strategy:r}),{x:d,y:f}=ZW(u,i,c),h=i,m=0;const g={};for(let b=0;b({name:"arrow",options:e,async fn(t){const{x:n,y:i,placement:r,rects:s,platform:a,elements:l,middlewareData:c}=t,{element:u,padding:d=0}=Eh(e,t)||{};if(u==null)return{};const f=xve(d),h={x:n,y:i},m=k7(r),g=S7(m),b=await a.getDimensions(u),v=m==="y",y=v?"top":"left",x=v?"bottom":"right",O=v?"clientHeight":"clientWidth",w=s.reference[g]+s.reference[m]-h[m]-s.floating[g],k=h[m]-s.reference[m],S=await(a.getOffsetParent==null?void 0:a.getOffsetParent(u));let E=S?S[O]:0;(!E||!await(a.isElement==null?void 0:a.isElement(S)))&&(E=l.floating[O]||s.floating[g]);const C=w/2-k/2,N=E/2-b[g]/2-1,_=gm(f[y],N),j=gm(f[x],N),A=E-b[g]-j,F=E/2-b[g]/2+C,T=vve(_,F,A),P=!c.arrow&&jx(r)!=null&&F!==T&&s.reference[g]/2-(F<_?_:j)-b[g]/2<0,R=P?F<_?F-_:F-A:0;return{[m]:h[m]+R,data:{[m]:T,centerOffset:F-T-R,...P&&{alignmentOffset:R}},reset:P}}}),eVe=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n,i;const{placement:r,middlewareData:s,rects:a,initialPlacement:l,platform:c,elements:u}=t,{mainAxis:d=!0,crossAxis:f=!0,fallbackPlacements:h,fallbackStrategy:m="bestFit",fallbackAxisSideDirection:g="none",flipAlignment:b=!0,...v}=Eh(e,t);if((n=s.arrow)!=null&&n.alignmentOffset)return{};const y=bm(r),x=Ed(l),O=bm(l)===l,w=await(c.isRTL==null?void 0:c.isRTL(u.floating)),k=h||(O||!b?[U_(l)]:Vze(l)),S=g!=="none";!h&&S&&k.push(...Gze(l,b,g,w));const E=[l,...k],C=await c.detectOverflow(t,v),N=[];let _=((i=s.flip)==null?void 0:i.overflows)||[];if(d&&N.push(C[y]),f){const T=zze(r,a,w);N.push(C[T[0]],C[T[1]])}if(_=[..._,{placement:r,overflows:N}],!N.every(T=>T<=0)){var j,A;const T=(((j=s.flip)==null?void 0:j.index)||0)+1,P=E[T];if(P&&(!(f==="alignment"?x!==Ed(P):!1)||_.every(M=>Ed(M.placement)===x?M.overflows[0]>0:!0)))return{data:{index:T,overflows:_},reset:{placement:P}};let R=(A=_.filter(L=>L.overflows[0]<=0).sort((L,M)=>L.overflows[1]-M.overflows[1])[0])==null?void 0:A.placement;if(!R)switch(m){case"bestFit":{var F;const L=(F=_.filter(M=>{if(S){const U=Ed(M.placement);return U===x||U==="y"}return!0}).map(M=>[M.placement,M.overflows.filter(U=>U>0).reduce((U,I)=>U+I,0)]).sort((M,U)=>M[1]-U[1])[0])==null?void 0:F[0];L&&(R=L);break}case"initialPlacement":R=l;break}if(r!==R)return{reset:{placement:R}}}return{}}}};function JW(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function eG(e){return Uze.some(t=>e[t]>=0)}const tVe=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){const{rects:n,platform:i}=t,{strategy:r="referenceHidden",...s}=Eh(e,t);switch(r){case"referenceHidden":{const a=await i.detectOverflow(t,{...s,elementContext:"reference"}),l=JW(a,n.reference);return{data:{referenceHiddenOffsets:l,referenceHidden:eG(l)}}}case"escaped":{const a=await i.detectOverflow(t,{...s,altBoundary:!0}),l=JW(a,n.floating);return{data:{escapedOffsets:l,escaped:eG(l)}}}default:return{}}}}},wve=new Set(["left","top"]);async function nVe(e,t){const{placement:n,platform:i,elements:r}=e,s=await(i.isRTL==null?void 0:i.isRTL(r.floating)),a=bm(n),l=jx(n),c=Ed(n)==="y",u=wve.has(a)?-1:1,d=s&&c?-1:1,f=Eh(t,e);let{mainAxis:h,crossAxis:m,alignmentAxis:g}=typeof f=="number"?{mainAxis:f,crossAxis:0,alignmentAxis:null}:{mainAxis:f.mainAxis||0,crossAxis:f.crossAxis||0,alignmentAxis:f.alignmentAxis};return l&&typeof g=="number"&&(m=l==="end"?g*-1:g),c?{x:m*d,y:h*u}:{x:h*u,y:m*d}}const iVe=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var n,i;const{x:r,y:s,placement:a,middlewareData:l}=t,c=await nVe(t,e);return a===((n=l.offset)==null?void 0:n.placement)&&(i=l.arrow)!=null&&i.alignmentOffset?{}:{x:r+c.x,y:s+c.y,data:{...c,placement:a}}}}},rVe=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:i,placement:r,platform:s}=t,{mainAxis:a=!0,crossAxis:l=!1,limiter:c={fn:x=>{let{x:O,y:w}=x;return{x:O,y:w}}},...u}=Eh(e,t),d={x:n,y:i},f=await s.detectOverflow(t,u),h=Ed(r),m=O7(h);let g=d[m],b=d[h];const v=(x,O)=>vve(O+f[x==="y"?"top":"left"],O,O-f[x==="y"?"bottom":"right"]);a&&(g=v(m,g)),l&&(b=v(h,b));const y=c.fn({...t,[m]:g,[h]:b});return{...y,data:{x:y.x-n,y:y.y-i,enabled:{[m]:a,[h]:l}}}}}},sVe=function(e){return e===void 0&&(e={}),{options:e,fn(t){var n,i;const{x:r,y:s,placement:a,rects:l,middlewareData:c}=t,{offset:u=0,mainAxis:d=!0,crossAxis:f=!0}=Eh(e,t),h={x:r,y:s},m=Ed(a),g=O7(m);let b=h[g],v=h[m];const y=Eh(u,t),x=typeof y=="number"?{mainAxis:y,crossAxis:0}:{mainAxis:(n=y.mainAxis)!=null?n:0,crossAxis:(i=y.crossAxis)!=null?i:0};if(d){const k=g==="y"?"height":"width",S=l.reference[g]-l.floating[k]+x.mainAxis,E=l.reference[g]+l.reference[k]-x.mainAxis;bE&&(b=E)}if(f){var O,w;const k=g==="y"?"width":"height",S=wve.has(bm(a)),E=l.reference[m]-l.floating[k]+(S&&((O=c.offset)==null?void 0:O[m])||0)+(S?0:x.crossAxis),C=l.reference[m]+l.reference[k]+(S?0:((w=c.offset)==null?void 0:w[m])||0)-(S?x.crossAxis:0);vC&&(v=C)}return{[g]:b,[m]:v}}}},aVe=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){const{placement:n,rects:i,platform:r,elements:s}=t,{apply:a=()=>{},...l}=Eh(e,t),c=await r.detectOverflow(t,l),u=bm(n),d=jx(n),f=Ed(n)==="y",{width:h,height:m}=i.floating;let g,b;u==="top"||u==="bottom"?(g=u,b=d===(await(r.isRTL==null?void 0:r.isRTL(s.floating))?"start":"end")?"left":"right"):(b=u,g=d==="end"?"top":"bottom");const v=m-c.top-c.bottom,y=h-c.left-c.right,x=gm(m-c[g],v),O=gm(h-c[b],y),w=t.middlewareData.shift,k=!w;let S=x,E=O;w!=null&&w.enabled.x&&(E=y),w!=null&&w.enabled.y&&(S=v),k&&!d&&(f?E=h-2*sh(c.left,c.right):S=m-2*sh(c.top,c.bottom)),await a({...t,availableWidth:E,availableHeight:S});const C=await r.getDimensions(s.floating);return h!==C.width||m!==C.height?{reset:{rects:!0}}:{}}}};function fR(){return typeof window<"u"}function Rx(e){return Ove(e)?(e.nodeName||"").toLowerCase():"#document"}function yo(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function $h(e){var t;return(t=(Ove(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function Ove(e){return fR()?e instanceof Node||e instanceof yo(e).Node:!1}function Fd(e){return fR()?e instanceof Element||e instanceof yo(e).Element:!1}function Kd(e){return fR()?e instanceof HTMLElement||e instanceof yo(e).HTMLElement:!1}function tG(e){return!fR()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof yo(e).ShadowRoot}function hR(e){const{overflow:t,overflowX:n,overflowY:i,display:r}=Bd(e);return/auto|scroll|overlay|hidden|clip/.test(t+i+n)&&r!=="inline"&&r!=="contents"}function oVe(e){return/^(table|td|th)$/.test(Rx(e))}function pR(e){try{if(e.matches(":popover-open"))return!0}catch{}try{return e.matches(":modal")}catch{return!1}}const lVe=/transform|translate|scale|rotate|perspective|filter/,cVe=/paint|layout|strict|content/,tg=e=>!!e&&e!=="none";let WD;function E7(e){const t=Fd(e)?Bd(e):e;return tg(t.transform)||tg(t.translate)||tg(t.scale)||tg(t.rotate)||tg(t.perspective)||!C7()&&(tg(t.backdropFilter)||tg(t.filter))||lVe.test(t.willChange||"")||cVe.test(t.contain||"")}function uVe(e){let t=yb(e);for(;Kd(t)&&!xS(t);){if(E7(t))return t;if(pR(t))return null;t=yb(t)}return null}function C7(){return WD==null&&(WD=typeof CSS<"u"&&CSS.supports&&CSS.supports("-webkit-backdrop-filter","none")),WD}function xS(e){return/^(html|body|#document)$/.test(Rx(e))}function Bd(e){return yo(e).getComputedStyle(e)}function mR(e){return Fd(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function yb(e){if(Rx(e)==="html")return e;const t=e.assignedSlot||e.parentNode||tG(e)&&e.host||$h(e);return tG(t)?t.host:t}function Sve(e){const t=yb(e);return xS(t)?(e.ownerDocument||e).body:Kd(t)&&hR(t)?t:Sve(t)}function wS(e,t,n){var i;t===void 0&&(t=[]),n===void 0&&(n=!0);const r=Sve(e),s=r===((i=e.ownerDocument)==null?void 0:i.body),a=yo(r);if(s){const l=W4(a);return t.concat(a,a.visualViewport||[],hR(r)?r:[],l&&n?wS(l):[])}else return t.concat(r,wS(r,[],n))}function W4(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function kve(e){const t=Bd(e);let n=parseFloat(t.width)||0,i=parseFloat(t.height)||0;const r=Kd(e),s=r?e.offsetWidth:n,a=r?e.offsetHeight:i,l=B_(n)!==s||B_(i)!==a;return l&&(n=s,i=a),{width:n,height:i,$:l}}function T7(e){return Fd(e)?e:e.contextElement}function Jy(e){const t=T7(e);if(!Kd(t))return ah(1);const n=t.getBoundingClientRect(),{width:i,height:r,$:s}=kve(t);let a=(s?B_(n.width):n.width)/i,l=(s?B_(n.height):n.height)/r;return(!a||!Number.isFinite(a))&&(a=1),(!l||!Number.isFinite(l))&&(l=1),{x:a,y:l}}const dVe=ah(0);function Eve(e){const t=yo(e);return!C7()||!t.visualViewport?dVe:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function fVe(e,t,n){return t===void 0&&(t=!1),!!n&&t&&n===yo(e)}function vb(e,t,n,i){t===void 0&&(t=!1),n===void 0&&(n=!1);const r=e.getBoundingClientRect(),s=T7(e);let a=ah(1);t&&(i?Fd(i)&&(a=Jy(i)):a=Jy(e));const l=fVe(s,n,i)?Eve(s):ah(0);let c=(r.left+l.x)/a.x,u=(r.top+l.y)/a.y,d=r.width/a.x,f=r.height/a.y;if(s&&i){const h=yo(s),m=Fd(i)?yo(i):i;let g=h,b=W4(g);for(;b&&m!==g;){const v=Jy(b),y=b.getBoundingClientRect(),x=Bd(b),O=y.left+(b.clientLeft+parseFloat(x.paddingLeft))*v.x,w=y.top+(b.clientTop+parseFloat(x.paddingTop))*v.y;c*=v.x,u*=v.y,d*=v.x,f*=v.y,c+=O,u+=w,g=yo(b),b=W4(g)}}return Q_({width:d,height:f,x:c,y:u})}function gR(e,t){const n=mR(e).scrollLeft;return t?t.left+n:vb($h(e)).left+n}function Cve(e,t){const n=e.getBoundingClientRect(),i=n.left+t.scrollLeft-gR(e,n),r=n.top+t.scrollTop;return{x:i,y:r}}function hVe(e){let{elements:t,rect:n,offsetParent:i,strategy:r}=e;const s=r==="fixed",a=$h(i),l=t?pR(t.floating):!1;if(i===a||l&&s)return n;let c={scrollLeft:0,scrollTop:0},u=ah(1);const d=ah(0),f=Kd(i);if((f||!s)&&((Rx(i)!=="body"||hR(a))&&(c=mR(i)),f)){const m=vb(i);u=Jy(i),d.x=m.x+i.clientLeft,d.y=m.y+i.clientTop}const h=a&&!f&&!s?Cve(a,c):ah(0);return{width:n.width*u.x,height:n.height*u.y,x:n.x*u.x-c.scrollLeft*u.x+d.x+h.x,y:n.y*u.y-c.scrollTop*u.y+d.y+h.y}}function pVe(e){return e.getClientRects?Array.from(e.getClientRects()):[]}function mVe(e){const t=mR(e),n=e.ownerDocument.body,i=sh(e.scrollWidth,e.clientWidth,n.scrollWidth,n.clientWidth),r=sh(e.scrollHeight,e.clientHeight,n.scrollHeight,n.clientHeight);let s=-t.scrollLeft+gR(e);const a=-t.scrollTop;return Bd(n).direction==="rtl"&&(s+=sh(e.clientWidth,n.clientWidth)-i),{width:i,height:r,x:s,y:a}}const gVe=25;function bVe(e,t,n){n===void 0&&(n="viewport");const i=n==="layoutViewport",r=yo(e),s=$h(e),a=r.visualViewport;let l=s.clientWidth,c=s.clientHeight,u=0,d=0;if(a){const h=!C7()||t==="fixed";i?h||(u=-a.offsetLeft,d=-a.offsetTop):(l=a.width,c=a.height,h&&(u=a.offsetLeft,d=a.offsetTop))}if(gR(s)<=0){const h=s.ownerDocument,m=h.body,g=getComputedStyle(m),b=h.compatMode==="CSS1Compat"&&parseFloat(g.marginLeft)+parseFloat(g.marginRight)||0,v=Math.abs(s.clientWidth-m.clientWidth-b),y=getComputedStyle(s).scrollbarGutter==="stable both-edges"?v/2:v;y<=gVe&&(l-=y)}return{width:l,height:c,x:u,y:d}}function yVe(e,t){const n=vb(e,!0,t==="fixed"),i=n.top+e.clientTop,r=n.left+e.clientLeft,s=Jy(e),a=e.clientWidth*s.x,l=e.clientHeight*s.y,c=r*s.x,u=i*s.y;return{width:a,height:l,x:c,y:u}}function nG(e,t,n){let i;if(t==="viewport"||t==="layoutViewport")i=bVe(e,n,t);else if(t==="document")i=mVe($h(e));else if(Fd(t))i=yVe(t,n);else{const r=Eve(e);i={x:t.x-r.x,y:t.y-r.y,width:t.width,height:t.height}}return Q_(i)}function vVe(e,t){const n=t.get(e);if(n)return n;let i=wS(e,[],!1).filter(l=>Fd(l)&&Rx(l)!=="body"),r=null;const s=Bd(e).position==="fixed";let a=s?yb(e):e;for(;Fd(a)&&!xS(a);){const l=Bd(a),c=E7(a),u=r?r.position:s?"fixed":"";!c&&(u==="fixed"||u==="absolute"&&l.position==="static")?i=i.filter(f=>f!==a):r=l,a=yb(a)}return t.set(e,i),i}function xVe(e){let{element:t,boundary:n,rootBoundary:i,strategy:r}=e;const a=[...n==="clippingAncestors"?pR(t)?[]:vVe(t,this._c):[].concat(n),i],l=nG(t,a[0],r);let c=l.top,u=l.right,d=l.bottom,f=l.left;for(let h=1;h{l(!1,1e-7)},1e3)}E=!1}try{i=new IntersectionObserver(C,{...S,root:s.ownerDocument})}catch{i=new IntersectionObserver(C,S)}i.observe(e)}const c=yo(e),u=()=>l(n);return c.addEventListener("resize",u),l(!0),()=>{c.removeEventListener("resize",u),a()}}function TVe(e,t,n,i){i===void 0&&(i={});const{ancestorScroll:r=!0,ancestorResize:s=!0,elementResize:a=typeof ResizeObserver=="function",layoutShift:l=typeof IntersectionObserver=="function",animationFrame:c=!1}=i,u=T7(e),d=r||s?[...u?wS(u):[],...t?wS(t):[]]:[];d.forEach(y=>{r&&y.addEventListener("scroll",n),s&&y.addEventListener("resize",n)});const f=u&&l?CVe(u,n,s):null;let h=-1,m=null;a&&(m=new ResizeObserver(y=>{let[x]=y;x&&x.target===u&&m&&t&&(m.unobserve(t),cancelAnimationFrame(h),h=requestAnimationFrame(()=>{var O;(O=m)==null||O.observe(t)})),n()}),u&&!c&&m.observe(u),t&&m.observe(t));let g,b=c?vb(e):null;c&&v();function v(){const y=vb(e);b&&!Ave(b,y)&&n(),b=y,g=requestAnimationFrame(v)}return n(),()=>{var y;d.forEach(x=>{r&&x.removeEventListener("scroll",n),s&&x.removeEventListener("resize",n)}),f==null||f(),(y=m)==null||y.disconnect(),m=null,c&&cancelAnimationFrame(g)}}const AVe=iVe,_Ve=rVe,NVe=eVe,jVe=aVe,RVe=tVe,rG=Jze,IVe=sVe,PVe=(e,t,n)=>{const i=new Map,r=n??{},s={...EVe,...r.platform,_c:i};return Zze(e,t,{...r,platform:s})};var DVe=typeof document<"u",MVe=function(){},lA=DVe?p.useLayoutEffect:MVe;function z_(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let n,i,r;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(i=n;i--!==0;)if(!z_(e[i],t[i]))return!1;return!0}if(r=Object.keys(e),n=r.length,n!==Object.keys(t).length)return!1;for(i=n;i--!==0;)if(!{}.hasOwnProperty.call(t,r[i]))return!1;for(i=n;i--!==0;){const s=r[i];if(!(s==="_owner"&&e.$$typeof)&&!z_(e[s],t[s]))return!1}return!0}return e!==e&&t!==t}function _ve(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function sG(e,t){const n=_ve(e);return Math.round(t*n)/n}function KD(e){const t=p.useRef(e);return lA(()=>{t.current=e}),t}function LVe(e){e===void 0&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:i=[],platform:r,elements:{reference:s,floating:a}={},transform:l=!0,whileElementsMounted:c,open:u}=e,[d,f]=p.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[h,m]=p.useState(i);z_(h,i)||m(i);const[g,b]=p.useState(null),[v,y]=p.useState(null),x=p.useCallback(M=>{M!==S.current&&(S.current=M,b(M))},[]),O=p.useCallback(M=>{M!==E.current&&(E.current=M,y(M))},[]),w=s||g,k=a||v,S=p.useRef(null),E=p.useRef(null),C=p.useRef(d),N=c!=null,_=KD(c),j=KD(r),A=KD(u),F=p.useCallback(()=>{if(!S.current||!E.current)return;const M={placement:t,strategy:n,middleware:h};j.current&&(M.platform=j.current),PVe(S.current,E.current,M).then(U=>{const I={...U,isPositioned:A.current!==!1};T.current&&!z_(C.current,I)&&(C.current=I,Li.flushSync(()=>{f(I)}))})},[h,t,n,j,A]);lA(()=>{u===!1&&C.current.isPositioned&&(C.current.isPositioned=!1,f(M=>({...M,isPositioned:!1})))},[u]);const T=p.useRef(!1);lA(()=>(T.current=!0,()=>{T.current=!1}),[]),lA(()=>{if(w&&(S.current=w),k&&(E.current=k),w&&k){if(_.current)return _.current(w,k,F);F()}},[w,k,F,_,N]);const P=p.useMemo(()=>({reference:S,floating:E,setReference:x,setFloating:O}),[x,O]),R=p.useMemo(()=>({reference:w,floating:k}),[w,k]),L=p.useMemo(()=>{const M={position:n,left:0,top:0};if(!R.floating)return M;const U=sG(R.floating,d.x),I=sG(R.floating,d.y);return l?{...M,transform:"translate("+U+"px, "+I+"px)",..._ve(R.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:U,top:I}},[n,l,R.floating,d.x,d.y]);return p.useMemo(()=>({...d,update:F,refs:P,elements:R,floatingStyles:L}),[d,F,P,R,L])}const $Ve=e=>{function t(n){return{}.hasOwnProperty.call(n,"current")}return{name:"arrow",options:e,fn(n){const{element:i,padding:r}=typeof e=="function"?e(n):e;return i&&t(i)?i.current!=null?rG({element:i.current,padding:r}).fn(n):{}:i?rG({element:i,padding:r}).fn(n):{}}}},FVe=(e,t)=>{const n=AVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},BVe=(e,t)=>{const n=_Ve(e);return{name:n.name,fn:n.fn,options:[e,t]}},UVe=(e,t)=>({fn:IVe(e).fn,options:[e,t]}),QVe=(e,t)=>{const n=NVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},zVe=(e,t)=>{const n=jVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},VVe=(e,t)=>{const n=RVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},HVe=(e,t)=>{const n=$Ve(e);return{name:n.name,fn:n.fn,options:[e,t]}};var qVe=Object.defineProperty,em=(e,t)=>qVe(e,"name",{value:t,configurable:!0}),Nve="Popper",[jve,Ix]=kl(Nve),[WVe,Rve]=jve(Nve),GVe=em(e=>{const{__scopePopper:t,children:n}=e,[i,r]=p.useState(null),[s,a]=p.useState(void 0);return o.jsx(WVe,{scope:t,anchor:i,onAnchorChange:r,placementState:s,setPlacementState:a,children:n})},"Popper"),KVe="PopperAnchor",XVe=p.forwardRef(em(function(t,n){const{__scopePopper:i,virtualRef:r,...s}=t,a=Rve(KVe,i),l=p.useRef(null),c=a.onAnchorChange,u=p.useCallback(b=>{l.current=b,b&&c(b)},[c]),d=ir(n,u),f=p.useRef(null);p.useEffect(()=>{if(!r)return;const b=f.current;f.current=r.current,b!==f.current&&c(f.current)});const h=a.placementState&&bR(a.placementState),m=h==null?void 0:h[0],g=h==null?void 0:h[1];return r?null:o.jsx(wr.div,{"data-radix-popper-side":m,"data-radix-popper-align":g,...s,ref:d})},"PopperAnchor")),Ive="PopperContent",[YVe,ZVt]=jve(Ive),ZVe=p.forwardRef(em(function(t,n){var re,ge,W,X,ae,ue,Oe;const{__scopePopper:i,side:r="bottom",sideOffset:s=0,align:a="center",alignOffset:l=0,arrowPadding:c=0,avoidCollisions:u=!0,collisionBoundary:d=[],collisionPadding:f=0,sticky:h="partial",hideWhenDetached:m=!1,updatePositionStrategy:g="optimized",onPlaced:b,...v}=t,y=Rve(Ive,i),[x,O]=p.useState(null),w=ir(n,O),[k,S]=p.useState(null),E=Gk(k),C=(E==null?void 0:E.width)??0,N=(E==null?void 0:E.height)??0,_=r+(a!=="center"?"-"+a:""),j=typeof f=="number"?f:{top:0,right:0,bottom:0,left:0,...f},A=Array.isArray(d)?d:[d],F=A.length>0,T={padding:j,boundary:A.filter(Pve),altBoundary:F},{refs:P,floatingStyles:R,placement:L,isPositioned:M,middlewareData:U}=LVe({strategy:"fixed",placement:_,whileElementsMounted:em((...ke)=>TVe(...ke,{animationFrame:g==="always"}),"whileElementsMounted"),elements:{reference:y.anchor},middleware:[FVe({mainAxis:s+N,alignmentAxis:l}),u&&BVe({mainAxis:!0,crossAxis:!1,limiter:h==="partial"?UVe():void 0,...T}),u&&QVe({...T}),zVe({...T,apply:em(({elements:ke,rects:st,availableWidth:Le,availableHeight:Me})=>{const{width:Ie,height:qe}=st.reference,Ae=ke.floating.style;Ae.setProperty("--radix-popper-available-width",`${Le}px`),Ae.setProperty("--radix-popper-available-height",`${Me}px`),Ae.setProperty("--radix-popper-anchor-width",`${Ie}px`),Ae.setProperty("--radix-popper-anchor-height",`${qe}px`)},"apply")}),k&&HVe({element:k,padding:c}),JVe({arrowWidth:C,arrowHeight:N}),m&&VVe({strategy:"referenceHidden",...T,boundary:F?T.boundary:void 0})]}),I=y.setPlacementState;Jc(()=>(I(L),()=>{I(void 0)}),[L,I]);const[H,K]=bR(L),Q=$u(b);Jc(()=>{M&&(Q==null||Q())},[M,Q]);const q=(re=U.arrow)==null?void 0:re.x,B=(ge=U.arrow)==null?void 0:ge.y,ee=((W=U.arrow)==null?void 0:W.centerOffset)!==0,[le,se]=p.useState();return Jc(()=>{x&&se(window.getComputedStyle(x).zIndex)},[x]),o.jsx("div",{ref:P.setFloating,"data-radix-popper-content-wrapper":"",style:{...R,transform:M?R.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:le,"--radix-popper-transform-origin":[(X=U.transformOrigin)==null?void 0:X.x,(ae=U.transformOrigin)==null?void 0:ae.y].join(" "),...((ue=U.hide)==null?void 0:ue.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:t.dir,children:o.jsx(YVe,{scope:i,placedSide:H,placedAlign:K,onArrowChange:S,arrowX:q,arrowY:B,shouldHideArrow:ee,children:o.jsx(wr.div,{"data-side":H,"data-align":K,...v,ref:w,style:{...v.style,animation:M?(Oe=v.style)==null?void 0:Oe.animation:"none"}})})})},"PopperContent"));function Pve(e){return e!==null}em(Pve,"isNotNull");var JVe=em(e=>({name:"transformOrigin",options:e,fn(t){var v,y,x;const{placement:n,rects:i,middlewareData:r}=t,a=((v=r.arrow)==null?void 0:v.centerOffset)!==0,l=a?0:e.arrowWidth,c=a?0:e.arrowHeight,[u,d]=bR(n),f={start:"0%",center:"50%",end:"100%"}[d],h=(((y=r.arrow)==null?void 0:y.x)??0)+l/2,m=(((x=r.arrow)==null?void 0:x.y)??0)+c/2;let g="",b="";return u==="bottom"?(g=a?f:`${h}px`,b=`${-c}px`):u==="top"?(g=a?f:`${h}px`,b=`${i.floating.height+c}px`):u==="right"?(g=`${-c}px`,b=a?f:`${m}px`):u==="left"&&(g=`${i.floating.width+c}px`,b=a?f:`${m}px`),{data:{x:g,y:b}}}}),"transformOrigin");function bR(e){const[t,n="center"]=e.split("-");return[t,n]}em(bR,"getSideAndAlignFromPlacement");var yR=GVe,A7=XVe,_7=ZVe,eHe=Object.defineProperty,N7=(e,t)=>eHe(e,"name",{value:t,configurable:!0}),XD=!1;function Dve(){const[e,t]=p.useState(XD);return p.useEffect(()=>{XD||(XD=!0,t(!0))},[]),e}N7(Dve,"useIsHydrated");var Mve=Fb[" useSyncExternalStore ".trim().toString()];function Lve(){return()=>{}}N7(Lve,"subscribe");function $ve(){return Mve(Lve,()=>!0,()=>!1)}N7($ve,"useIsHydratedModern");var tHe=typeof Mve=="function"?$ve:Dve,nHe=Object.defineProperty,Gb=(e,t)=>nHe(e,"name",{value:t,configurable:!0}),YD="rovingFocusGroup.onEntryFocus",iHe={bubbles:!1,cancelable:!0},vR="RovingFocusGroup",[G4,Fve,rHe]=d7(vR),[sHe,Px]=kl(vR,[rHe]),[aHe,oHe]=sHe(vR),lHe=p.forwardRef(Gb(function(t,n){return o.jsx(G4.Provider,{scope:t.__scopeRovingFocusGroup,children:o.jsx(G4.Slot,{scope:t.__scopeRovingFocusGroup,children:o.jsx(cHe,{...t,ref:n})})})},"RovingFocusGroup")),cHe=p.forwardRef(Gb(function(t,n){const{__scopeRovingFocusGroup:i,orientation:r,loop:s=!1,dir:a,currentTabStopId:l,defaultCurrentTabStopId:c,onCurrentTabStopIdChange:u,onEntryFocus:d,preventScrollOnEntryFocus:f=!1,...h}=t,m=p.useRef(null),g=ir(n,m),b=Wk(a),[v,y]=su({prop:l,defaultProp:c??null,onChange:u,caller:vR}),[x,O]=p.useState(!1),w=$u(d),k=Fve(i),S=p.useRef(!1),[E,C]=p.useState(0);return p.useEffect(()=>{const N=m.current;if(N)return N.addEventListener(YD,w),()=>N.removeEventListener(YD,w)},[w]),o.jsx(aHe,{scope:i,orientation:r,dir:b,loop:s,currentTabStopId:v,onItemFocus:p.useCallback(N=>y(N),[y]),onItemShiftTab:p.useCallback(()=>O(!0),[]),onFocusableItemAdd:p.useCallback(()=>C(N=>N+1),[]),onFocusableItemRemove:p.useCallback(()=>C(N=>N-1),[]),children:o.jsx(wr.div,{tabIndex:x||E===0?-1:0,"data-orientation":r,...h,ref:g,style:{outline:"none",...t.style},onMouseDown:yn(t.onMouseDown,()=>{S.current=!0}),onFocus:yn(t.onFocus,N=>{const _=!S.current;if(N.target===N.currentTarget&&_&&!x){const j=new CustomEvent(YD,iHe);if(N.currentTarget.dispatchEvent(j),!j.defaultPrevented){const A=k().filter(L=>L.focusable),F=A.find(L=>L.active),T=A.find(L=>L.id===v),R=[F,T,...A].filter(Boolean).map(L=>L.ref.current);j7(R,f)}}S.current=!1}),onBlur:yn(t.onBlur,()=>O(!1))})})},"RovingFocusGroupImpl")),uHe="RovingFocusGroupItem",dHe=p.forwardRef(Gb(function(t,n){const{__scopeRovingFocusGroup:i,focusable:r=!0,active:s=!1,tabStopId:a,children:l,...c}=t,u=mm(),d=a||u,f=oHe(uHe,i),h=f.currentTabStopId===d,m=Fve(i),{onFocusableItemAdd:g,onFocusableItemRemove:b,currentTabStopId:v}=f,y=tHe();return Jc(()=>{if(!(!y||!r))return g(),()=>b()},[y,r,g,b]),p.useEffect(()=>{if(!(y||!r))return g(),()=>b()},[y,r,g,b]),o.jsx(G4.ItemSlot,{scope:i,id:d,focusable:r,active:s,children:o.jsx(wr.span,{tabIndex:h?0:-1,"data-orientation":f.orientation,...c,ref:n,onMouseDown:yn(t.onMouseDown,x=>{r?f.onItemFocus(d):x.preventDefault()}),onFocus:yn(t.onFocus,()=>f.onItemFocus(d)),onKeyDown:yn(t.onKeyDown,x=>{if(x.key==="Tab"&&x.shiftKey){f.onItemShiftTab();return}if(x.target!==x.currentTarget)return;const O=Uve(x,f.orientation,f.dir);if(O!==void 0){if(x.metaKey||x.ctrlKey||x.altKey||x.shiftKey)return;x.preventDefault();let k=m().filter(S=>S.focusable).map(S=>S.ref.current);if(O==="last")k.reverse();else if(O==="prev"||O==="next"){O==="prev"&&k.reverse();const S=k.indexOf(x.currentTarget);k=f.loop?Qve(k,S+1):k.slice(S+1)}setTimeout(()=>j7(k))}}),children:typeof l=="function"?l({isCurrentTabStop:h,hasTabStop:v!=null}):l})})},"RovingFocusGroupItem")),fHe={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function Bve(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}Gb(Bve,"getDirectionAwareKey");function Uve(e,t,n){const i=Bve(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(i))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(i)))return fHe[i]}Gb(Uve,"getFocusIntent");function j7(e,t=!1){const n=document.activeElement;for(const i of e)if(i===n||(i.focus({preventScroll:t}),document.activeElement!==n))return}Gb(j7,"focusFirst");function Qve(e,t){return e.map((n,i)=>e[(t+i)%e.length])}Gb(Qve,"wrapArray");var R7=lHe,I7=dHe,hHe=Object.defineProperty,Qi=(e,t)=>hHe(e,"name",{value:t,configurable:!0}),K4=["Enter"," "],pHe=["ArrowDown","PageUp","Home"],zve=["ArrowUp","PageDown","End"],mHe=[...pHe,...zve],gHe={ltr:[...K4,"ArrowRight"],rtl:[...K4,"ArrowLeft"]},bHe={ltr:["ArrowLeft"],rtl:["ArrowRight"]},xR="Menu",[OS,yHe,vHe]=d7(xR),[Kb,Vve]=kl(xR,[vHe,Ix,Px]),wR=Ix(),Hve=Px(),[qve,$m]=Kb(xR),[xHe,Kk]=Kb(xR),wHe=Qi(e=>{const{__scopeMenu:t,open:n=!1,children:i,dir:r,onOpenChange:s,modal:a=!0}=e,l=wR(t),[c,u]=p.useState(null),d=p.useRef(!1),f=$u(s),h=Wk(r);return p.useEffect(()=>{const m=Qi(()=>{d.current=!0,document.addEventListener("pointerdown",g,{capture:!0,once:!0}),document.addEventListener("pointermove",g,{capture:!0,once:!0})},"handleKeyDown"),g=Qi(()=>d.current=!1,"handlePointer");return document.addEventListener("keydown",m,{capture:!0}),()=>{document.removeEventListener("keydown",m,{capture:!0}),document.removeEventListener("pointerdown",g,{capture:!0}),document.removeEventListener("pointermove",g,{capture:!0})}},[]),p.useEffect(()=>{if(!n)return;const m=Qi(()=>f(!1),"handleBlur");return window.addEventListener("blur",m),()=>window.removeEventListener("blur",m)},[n,f]),o.jsx(yR,{...l,children:o.jsx(qve,{scope:t,open:n,onOpenChange:f,content:c,onContentChange:u,children:o.jsx(xHe,{scope:t,onClose:p.useCallback(()=>f(!1),[f]),isUsingKeyboardRef:d,dir:h,modal:a,children:i})})})},"Menu"),Wve=p.forwardRef(Qi(function(t,n){const{__scopeMenu:i,...r}=t,s=wR(i);return o.jsx(A7,{...s,...r,ref:n})},"MenuAnchor")),Gve="MenuPortal",[OHe,Kve]=Kb(Gve,{forceMount:void 0}),SHe=Qi(e=>{const{__scopeMenu:t,forceMount:n,children:i,container:r}=e,s=$m(Gve,t);return o.jsx(OHe,{scope:t,forceMount:n,children:o.jsx(Gd,{present:n||s.open,children:o.jsx(g7,{asChild:!0,container:r,children:i})})})},"MenuPortal"),Pu="MenuContent",[kHe,P7]=Kb(Pu),EHe=p.forwardRef(Qi(function(t,n){const i=Kve(Pu,t.__scopeMenu),{forceMount:r=i.forceMount,...s}=t,a=$m(Pu,t.__scopeMenu),l=Kk(Pu,t.__scopeMenu);return o.jsx(OS.Provider,{scope:t.__scopeMenu,children:o.jsx(Gd,{present:r||a.open,children:o.jsx(OS.Slot,{scope:t.__scopeMenu,children:l.modal?o.jsx(CHe,{...s,ref:n}):o.jsx(THe,{...s,ref:n})})})})},"MenuContent")),CHe=p.forwardRef(Qi(function(t,n){const i=$m(Pu,t.__scopeMenu),r=p.useRef(null),s=ir(n,r);return p.useEffect(()=>{const a=r.current;if(a)return gve(a)},[]),o.jsx(D7,{...t,ref:s,trapFocus:i.open,disableOutsidePointerEvents:i.open,disableOutsideScroll:!0,onFocusOutside:yn(t.onFocusOutside,a=>a.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>i.onOpenChange(!1)})},"MenuRootContentModal")),THe=p.forwardRef(Qi(function(t,n){const i=$m(Pu,t.__scopeMenu);return o.jsx(D7,{...t,ref:n,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>i.onOpenChange(!1)})},"MenuRootContentNonModal")),AHe=Oh("MenuContent.ScrollLock"),D7=p.forwardRef(Qi(function(t,n){const{__scopeMenu:i,loop:r=!1,trapFocus:s,onOpenAutoFocus:a,onCloseAutoFocus:l,disableOutsidePointerEvents:c,onEntryFocus:u,onEscapeKeyDown:d,onPointerDownOutside:f,onFocusOutside:h,onInteractOutside:m,onDismiss:g,disableOutsideScroll:b,...v}=t,y=$m(Pu,i),x=Kk(Pu,i),O=wR(i),w=Hve(i),k=yHe(i),[S,E]=p.useState(null),C=p.useRef(null),N=ir(n,C,y.onContentChange),_=p.useRef(0),j=p.useRef(""),A=p.useRef(0),F=p.useRef(null),T=p.useRef("right"),P=p.useRef(0),R=b?y7:p.Fragment,L=b?{as:AHe,allowPinchZoom:!0}:void 0,M=Qi(I=>{var se,re;const H=j.current+I,K=k().filter(ge=>!ge.disabled),Q=document.activeElement,q=(se=K.find(ge=>ge.ref.current===Q))==null?void 0:se.textValue,B=K.map(ge=>ge.textValue),ee=ixe(B,H,q),le=(re=K.find(ge=>ge.textValue===ee))==null?void 0:re.ref.current;Qi(function ge(W){j.current=W,window.clearTimeout(_.current),W!==""&&(_.current=window.setTimeout(()=>ge(""),1e3))},"updateSearch")(H),le&&setTimeout(()=>le.focus())},"handleTypeaheadSearch");p.useEffect(()=>()=>window.clearTimeout(_.current),[]),uR();const U=p.useCallback(I=>{var K,Q;return T.current===((K=F.current)==null?void 0:K.side)&&sxe(I,(Q=F.current)==null?void 0:Q.area)},[]);return o.jsx(kHe,{scope:i,searchRef:j,onItemEnter:p.useCallback(I=>{U(I)&&I.preventDefault()},[U]),onItemLeave:p.useCallback(I=>{var H;U(I)||((H=C.current)==null||H.focus(),E(null))},[U]),onTriggerLeave:p.useCallback(I=>{U(I)&&I.preventDefault()},[U]),pointerGraceTimerRef:A,onPointerGraceIntentChange:p.useCallback(I=>{F.current=I},[]),children:o.jsx(R,{...L,children:o.jsx(tve,{asChild:!0,trapped:s,onMountAutoFocus:yn(a,I=>{var H;I.preventDefault(),(H=C.current)==null||H.focus({preventScroll:!0})}),onUnmountAutoFocus:l,children:o.jsx(h7,{asChild:!0,disableOutsidePointerEvents:c,onEscapeKeyDown:d,onPointerDownOutside:f,onFocusOutside:h,onInteractOutside:m,onDismiss:g,children:o.jsx(R7,{asChild:!0,...w,dir:x.dir,orientation:"vertical",loop:r,currentTabStopId:S,onCurrentTabStopIdChange:E,onEntryFocus:yn(u,I=>{x.isUsingKeyboardRef.current||I.preventDefault()}),preventScrollOnEntryFocus:!0,children:o.jsx(_7,{role:"menu","aria-orientation":"vertical","data-state":L7(y.open),"data-radix-menu-content":"",dir:x.dir,...O,...v,ref:N,style:{outline:"none",...v.style},onKeyDown:yn(v.onKeyDown,I=>{const K=I.target.closest("[data-radix-menu-content]")===I.currentTarget,Q=I.ctrlKey||I.altKey||I.metaKey,q=I.key.length===1;K&&(I.key==="Tab"&&I.preventDefault(),!Q&&q&&M(I.key));const B=C.current;if(I.target!==B||!mHe.includes(I.key))return;I.preventDefault();const le=k().filter(se=>!se.disabled).map(se=>se.ref.current);zve.includes(I.key)&&le.reverse(),txe(le)}),onBlur:yn(t.onBlur,I=>{I.currentTarget.contains(I.target)||(window.clearTimeout(_.current),j.current="")}),onPointerMove:yn(t.onPointerMove,Bv(I=>{const H=I.target,K=P.current!==I.clientX;if(I.currentTarget.contains(H)&&K){const Q=I.clientX>P.current?"right":"left";T.current=Q,P.current=I.clientX}}))})})})})})})},"MenuContentImpl")),_He=p.forwardRef(Qi(function(t,n){const{__scopeMenu:i,...r}=t;return o.jsx(wr.div,{role:"group",...r,ref:n})},"MenuGroup")),X4="MenuItem",aG="menu.itemSelect",M7=p.forwardRef(Qi(function(t,n){const{disabled:i=!1,onSelect:r,...s}=t,a=p.useRef(null),l=Kk(X4,t.__scopeMenu),c=P7(X4,t.__scopeMenu),u=ir(n,a),d=p.useRef(!1),f=Qi(()=>{const h=a.current;if(!i&&h){const m=new CustomEvent(aG,{bubbles:!0,cancelable:!0});h.addEventListener(aG,g=>r==null?void 0:r(g),{once:!0}),u7(h,m),m.defaultPrevented?d.current=!1:l.onClose()}},"handleSelect");return o.jsx(Xve,{...s,ref:u,disabled:i,onClick:yn(t.onClick,f),onPointerDown:h=>{var m;(m=t.onPointerDown)==null||m.call(t,h),d.current=!0},onPointerUp:yn(t.onPointerUp,h=>{var m;d.current||(m=h.currentTarget)==null||m.click()}),onKeyDown:yn(t.onKeyDown,h=>{i||h.target!==h.currentTarget||c.searchRef.current!==""&&h.key===" "||K4.includes(h.key)&&(h.currentTarget.click(),h.preventDefault())})})},"MenuItem")),Xve=p.forwardRef(Qi(function(t,n){const{__scopeMenu:i,disabled:r=!1,textValue:s,...a}=t,l=P7(X4,i),c=Hve(i),u=p.useRef(null),d=ir(n,u),[f,h]=p.useState(!1),[m,g]=p.useState("");return p.useEffect(()=>{const b=u.current;b&&g((b.textContent??"").trim())},[a.children]),o.jsx(OS.ItemSlot,{scope:i,disabled:r,textValue:s??m,children:o.jsx(I7,{asChild:!0,...c,focusable:!r,children:o.jsx(wr.div,{role:"menuitem","data-highlighted":f?"":void 0,"aria-disabled":r||void 0,"data-disabled":r?"":void 0,...a,ref:d,onPointerMove:yn(t.onPointerMove,Bv(b=>{r?l.onItemLeave(b):(l.onItemEnter(b),b.defaultPrevented||b.currentTarget.focus({preventScroll:!0}))})),onPointerLeave:yn(t.onPointerLeave,Bv(b=>l.onItemLeave(b))),onFocus:yn(t.onFocus,()=>h(!0)),onBlur:yn(t.onBlur,()=>h(!1))})})})},"MenuItemImpl")),NHe=p.forwardRef(Qi(function(t,n){const{checked:i=!1,onCheckedChange:r,...s}=t;return o.jsx(Zve,{scope:t.__scopeMenu,checked:i,children:o.jsx(M7,{role:"menuitemcheckbox","aria-checked":SS(i)?"mixed":i,...s,ref:n,"data-state":OR(i),onSelect:yn(s.onSelect,()=>r==null?void 0:r(SS(i)?!0:!i),{checkForDefaultPrevented:!1})})})},"MenuCheckboxItem")),jHe="MenuRadioGroup",[RHe,IHe]=Kb(jHe,{value:void 0,onValueChange:Qi(()=>{},"onValueChange")}),PHe=p.forwardRef(Qi(function(t,n){const{value:i,onValueChange:r,...s}=t,a=$u(r);return o.jsx(RHe,{scope:t.__scopeMenu,value:i,onValueChange:a,children:o.jsx(_He,{...s,ref:n})})},"MenuRadioGroup")),DHe="MenuRadioItem",MHe=p.forwardRef(Qi(function(t,n){const{value:i,...r}=t,s=IHe(DHe,t.__scopeMenu),a=i===s.value;return o.jsx(Zve,{scope:t.__scopeMenu,checked:a,children:o.jsx(M7,{role:"menuitemradio","aria-checked":a,...r,ref:n,"data-state":OR(a),onSelect:yn(r.onSelect,()=>{var l;return(l=s.onValueChange)==null?void 0:l.call(s,i)},{checkForDefaultPrevented:!1})})})},"MenuRadioItem")),Yve="MenuItemIndicator",[Zve,LHe]=Kb(Yve,{checked:!1}),$He=p.forwardRef(Qi(function(t,n){const{__scopeMenu:i,forceMount:r,...s}=t,a=LHe(Yve,i);return o.jsx(Gd,{present:r||SS(a.checked)||a.checked===!0,children:o.jsx(wr.span,{...s,ref:n,"data-state":OR(a.checked)})})},"MenuItemIndicator")),FHe=p.forwardRef(Qi(function(t,n){const{__scopeMenu:i,...r}=t;return o.jsx(wr.div,{role:"separator","aria-orientation":"horizontal",...r,ref:n})},"MenuSeparator")),Jve="MenuSub",[BHe,exe]=Kb(Jve),UHe=Qi(e=>{const{__scopeMenu:t,children:n,open:i=!1,onOpenChange:r}=e,s=$m(Jve,t),a=wR(t),[l,c]=p.useState(null),[u,d]=p.useState(null),f=$u(r);return p.useEffect(()=>(s.open===!1&&f(!1),()=>f(!1)),[s.open,f]),o.jsx(yR,{...a,children:o.jsx(qve,{scope:t,open:i,onOpenChange:f,content:u,onContentChange:d,children:o.jsx(BHe,{scope:t,contentId:mm(),triggerId:mm(),trigger:l,onTriggerChange:c,children:n})})})},"MenuSub"),cT="MenuSubTrigger",QHe=p.forwardRef(Qi(function(t,n){const i=$m(cT,t.__scopeMenu),r=Kk(cT,t.__scopeMenu),s=exe(cT,t.__scopeMenu),a=P7(cT,t.__scopeMenu),l=p.useRef(null),{pointerGraceTimerRef:c,onPointerGraceIntentChange:u}=a,d={__scopeMenu:t.__scopeMenu},f=p.useCallback(()=>{l.current&&window.clearTimeout(l.current),l.current=null},[]);p.useEffect(()=>f,[f]),p.useEffect(()=>{const m=c.current;return()=>{window.clearTimeout(m),u(null)}},[c,u]);const h=ir(n,s.onTriggerChange);return o.jsx(Wve,{asChild:!0,...d,children:o.jsx(Xve,{id:s.triggerId,"aria-haspopup":"menu","aria-expanded":i.open,"aria-controls":i.open?s.contentId:void 0,"data-state":L7(i.open),...t,ref:h,onClick:m=>{var g;(g=t.onClick)==null||g.call(t,m),!(t.disabled||m.defaultPrevented)&&(m.currentTarget.focus(),i.open||i.onOpenChange(!0))},onPointerMove:yn(t.onPointerMove,Bv(m=>{a.onItemEnter(m),!m.defaultPrevented&&!t.disabled&&!i.open&&!l.current&&(a.onPointerGraceIntentChange(null),l.current=window.setTimeout(()=>{i.onOpenChange(!0),f()},100))})),onPointerLeave:yn(t.onPointerLeave,Bv(m=>{var b,v;f();const g=(b=i.content)==null?void 0:b.getBoundingClientRect();if(g){const y=(v=i.content)==null?void 0:v.dataset.side,x=y==="right",O=x?-5:5,w=g[x?"left":"right"],k=g[x?"right":"left"];a.onPointerGraceIntentChange({area:[{x:m.clientX+O,y:m.clientY},{x:w,y:g.top},{x:k,y:g.top},{x:k,y:g.bottom},{x:w,y:g.bottom}],side:y}),window.clearTimeout(c.current),c.current=window.setTimeout(()=>a.onPointerGraceIntentChange(null),300)}else{if(a.onTriggerLeave(m),m.defaultPrevented)return;a.onPointerGraceIntentChange(null)}})),onKeyDown:yn(t.onKeyDown,m=>{var b;t.disabled||m.target!==m.currentTarget||a.searchRef.current!==""&&m.key===" "||gHe[r.dir].includes(m.key)&&(i.onOpenChange(!0),(b=i.content)==null||b.focus(),m.preventDefault())})})})},"MenuSubTrigger")),zHe="MenuSubContent",VHe=p.forwardRef(Qi(function(t,n){const i=Kve(Pu,t.__scopeMenu),{forceMount:r=i.forceMount,align:s="start",...a}=t,l=$m(Pu,t.__scopeMenu),c=Kk(Pu,t.__scopeMenu),u=exe(zHe,t.__scopeMenu),d=p.useRef(null),f=ir(n,d);return o.jsx(OS.Provider,{scope:t.__scopeMenu,children:o.jsx(Gd,{present:r||l.open,children:o.jsx(OS.Slot,{scope:t.__scopeMenu,children:o.jsx(D7,{id:u.contentId,"aria-labelledby":u.triggerId,...a,ref:f,align:s,side:c.dir==="rtl"?"left":"right",disableOutsidePointerEvents:!1,disableOutsideScroll:!1,trapFocus:!1,onOpenAutoFocus:h=>{var m;c.isUsingKeyboardRef.current&&((m=d.current)==null||m.focus()),h.preventDefault()},onCloseAutoFocus:h=>h.preventDefault(),onFocusOutside:yn(t.onFocusOutside,h=>{h.target!==u.trigger&&l.onOpenChange(!1)}),onEscapeKeyDown:yn(t.onEscapeKeyDown,h=>{c.onClose(),h.preventDefault()}),onKeyDown:yn(t.onKeyDown,h=>{var b;const m=h.currentTarget.contains(h.target),g=bHe[c.dir].includes(h.key);m&&g&&(l.onOpenChange(!1),(b=u.trigger)==null||b.focus(),h.preventDefault())})})})})})},"MenuSubContent"));function L7(e){return e?"open":"closed"}Qi(L7,"getOpenState");function SS(e){return e==="indeterminate"}Qi(SS,"isIndeterminate");function OR(e){return SS(e)?"indeterminate":e?"checked":"unchecked"}Qi(OR,"getCheckedState");function txe(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}Qi(txe,"focusFirst");function nxe(e,t){return e.map((n,i)=>e[(t+i)%e.length])}Qi(nxe,"wrapArray");function ixe(e,t,n){const r=t.length>1&&Array.from(t).every(u=>u===t[0])?t[0]:t,s=n?e.indexOf(n):-1;let a=nxe(e,Math.max(s,0));r.length===1&&(a=a.filter(u=>u!==n));const c=a.find(u=>u.toLowerCase().startsWith(r.toLowerCase()));return c!==n?c:void 0}Qi(ixe,"getNextMatch");function rxe(e,t){const{x:n,y:i}=e;let r=!1;for(let s=0,a=t.length-1;si!=h>i&&n<(f-u)*(i-d)/(h-d)+u&&(r=!r)}return r}Qi(rxe,"isPointInPolygon");function sxe(e,t){if(!t)return!1;const n={x:e.clientX,y:e.clientY};return rxe(n,t)}Qi(sxe,"isPointerInGraceArea");function Bv(e){return t=>t.pointerType==="mouse"?e(t):void 0}Qi(Bv,"whenMouse");var HHe=wHe,qHe=Wve,WHe=SHe,GHe=EHe,KHe=M7,XHe=NHe,YHe=PHe,ZHe=MHe,JHe=$He,eqe=FHe,tqe=UHe,nqe=QHe,iqe=VHe,rqe=Object.defineProperty,mc=(e,t)=>rqe(e,"name",{value:t,configurable:!0}),$7="DropdownMenu",[sqe,JVt]=kl($7,[Vve]),gc=Vve(),[aqe,axe]=sqe($7),oqe=mc(e=>{const{__scopeDropdownMenu:t,children:n,dir:i,open:r,defaultOpen:s,onOpenChange:a,modal:l=!0}=e,c=gc(t),u=p.useRef(null),[d,f]=su({prop:r,defaultProp:s??!1,onChange:a,caller:$7});return o.jsx(aqe,{scope:t,triggerId:mm(),triggerRef:u,contentId:mm(),open:d,onOpenChange:f,onOpenToggle:p.useCallback(()=>f(h=>!h),[f]),modal:l,children:o.jsx(HHe,{...c,open:d,onOpenChange:f,dir:i,modal:l,children:n})})},"DropdownMenu"),lqe="DropdownMenuTrigger",cqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,disabled:r=!1,...s}=t,a=axe(lqe,i),l=gc(i),c=ir(n,a.triggerRef);return o.jsx(qHe,{asChild:!0,...l,children:o.jsx(wr.button,{type:"button",id:a.triggerId,"aria-haspopup":"menu","aria-expanded":a.open,"aria-controls":a.open?a.contentId:void 0,"data-state":a.open?"open":"closed","data-disabled":r?"":void 0,disabled:r,...s,ref:c,onPointerDown:yn(t.onPointerDown,u=>{!r&&u.button===0&&u.ctrlKey===!1&&(a.onOpenToggle(),a.open||u.preventDefault())}),onKeyDown:yn(t.onKeyDown,u=>{r||(["Enter"," "].includes(u.key)&&a.onOpenToggle(),u.key==="ArrowDown"&&a.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(u.key)&&u.preventDefault())})})})},"DropdownMenuTrigger")),uqe=mc(e=>{const{__scopeDropdownMenu:t,...n}=e,i=gc(t);return o.jsx(WHe,{...i,...n})},"DropdownMenuPortal"),dqe="DropdownMenuContent",fqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=axe(dqe,i),a=gc(i),l=p.useRef(!1);return o.jsx(GHe,{id:s.contentId,"aria-labelledby":s.triggerId,...a,...r,ref:n,onCloseAutoFocus:yn(t.onCloseAutoFocus,c=>{var u;l.current||(u=s.triggerRef.current)==null||u.focus(),l.current=!1,c.preventDefault()}),onInteractOutside:yn(t.onInteractOutside,c=>{const u=c.detail.originalEvent,d=u.button===0&&u.ctrlKey===!0,f=u.button===2||d;(!s.modal||f)&&(l.current=!0)}),style:{...t.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})},"DropdownMenuContent")),hqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=gc(i);return o.jsx(KHe,{...s,...r,ref:n})},"DropdownMenuItem")),pqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=gc(i);return o.jsx(XHe,{...s,...r,ref:n})},"DropdownMenuCheckboxItem")),mqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=gc(i);return o.jsx(YHe,{...s,...r,ref:n})},"DropdownMenuRadioGroup")),gqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=gc(i);return o.jsx(ZHe,{...s,...r,ref:n})},"DropdownMenuRadioItem")),bqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=gc(i);return o.jsx(JHe,{...s,...r,ref:n})},"DropdownMenuItemIndicator")),yqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=gc(i);return o.jsx(eqe,{...s,...r,ref:n})},"DropdownMenuSeparator")),vqe=mc(e=>{const{__scopeDropdownMenu:t,children:n,open:i,onOpenChange:r,defaultOpen:s}=e,a=gc(t),[l,c]=su({prop:i,defaultProp:s??!1,onChange:r,caller:"DropdownMenuSub"});return o.jsx(tqe,{...a,open:l,onOpenChange:c,children:n})},"DropdownMenuSub"),xqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=gc(i);return o.jsx(nqe,{...s,...r,ref:n})},"DropdownMenuSubTrigger")),wqe=p.forwardRef(mc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=gc(i);return o.jsx(iqe,{...s,...r,ref:n,style:{...t.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})},"DropdownMenuSubContent")),Oqe=oqe,Sqe=cqe,oxe=uqe,kqe=fqe,lxe=hqe,Eqe=pqe,Cqe=mqe,Tqe=gqe,cxe=bqe,Aqe=yqe,_qe=vqe,Nqe=xqe,jqe=wqe,Rqe=Object.defineProperty,Fm=(e,t)=>Rqe(e,"name",{value:t,configurable:!0}),F7="Popover",[uxe,eHt]=kl(F7,[Ix]),B7=Ix(),[Iqe,Dx]=uxe(F7),Pqe=Fm(e=>{const{__scopePopover:t,children:n,open:i,defaultOpen:r,onOpenChange:s,modal:a=!1}=e,l=B7(t),c=p.useRef(null),[u,d]=p.useState(!1),[f,h]=su({prop:i,defaultProp:r??!1,onChange:s,caller:F7});return o.jsx(yR,{...l,children:o.jsx(Iqe,{scope:t,contentId:mm(),triggerRef:c,open:f,onOpenChange:h,onOpenToggle:p.useCallback(()=>h(m=>!m),[h]),hasCustomAnchor:u,onCustomAnchorAdd:p.useCallback(()=>d(!0),[]),onCustomAnchorRemove:p.useCallback(()=>d(!1),[]),modal:a,children:n})})},"Popover"),Dqe="PopoverTrigger",Mqe=p.forwardRef(Fm(function(t,n){const{__scopePopover:i,...r}=t,s=Dx(Dqe,i),a=B7(i),l=ir(n,s.triggerRef),c=o.jsx(wr.button,{type:"button","aria-haspopup":"dialog","aria-expanded":s.open,"aria-controls":s.open?s.contentId:void 0,"data-state":U7(s.open),...r,ref:l,onClick:yn(t.onClick,s.onOpenToggle)});return s.hasCustomAnchor?c:o.jsx(A7,{asChild:!0,...a,children:c})},"PopoverTrigger")),dxe="PopoverPortal",[Lqe,$qe]=uxe(dxe,{forceMount:void 0}),Fqe=Fm(e=>{const{__scopePopover:t,forceMount:n,children:i,container:r}=e,s=Dx(dxe,t);return o.jsx(Lqe,{scope:t,forceMount:n,children:o.jsx(Gd,{present:n||s.open,children:o.jsx(g7,{asChild:!0,container:r,children:i})})})},"PopoverPortal"),kS="PopoverContent",Bqe=p.forwardRef(Fm(function(t,n){const i=$qe(kS,t.__scopePopover),{forceMount:r=i.forceMount,...s}=t,a=Dx(kS,t.__scopePopover);return o.jsx(Gd,{present:r||a.open,children:a.modal?o.jsx(Qqe,{...s,ref:n}):o.jsx(zqe,{...s,ref:n})})},"PopoverContent")),Uqe=Oh("PopoverContent.RemoveScroll"),Qqe=p.forwardRef(Fm(function(t,n){const i=Dx(kS,t.__scopePopover),r=p.useRef(null),s=ir(n,r),a=p.useRef(!1);return p.useEffect(()=>{const l=r.current;if(l)return gve(l)},[]),o.jsx(y7,{as:Uqe,allowPinchZoom:!0,children:o.jsx(fxe,{...t,ref:s,trapFocus:i.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:yn(t.onCloseAutoFocus,l=>{var c;l.preventDefault(),a.current||(c=i.triggerRef.current)==null||c.focus()}),onPointerDownOutside:yn(t.onPointerDownOutside,l=>{const c=l.detail.originalEvent,u=c.button===0&&c.ctrlKey===!0,d=c.button===2||u;a.current=d},{checkForDefaultPrevented:!1}),onFocusOutside:yn(t.onFocusOutside,l=>l.preventDefault(),{checkForDefaultPrevented:!1})})})},"PopoverContentModal")),zqe=p.forwardRef(Fm(function(t,n){const i=Dx(kS,t.__scopePopover),r=p.useRef(!1),s=p.useRef(!1);return o.jsx(fxe,{...t,ref:n,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:a=>{var l,c;(l=t.onCloseAutoFocus)==null||l.call(t,a),a.defaultPrevented||(r.current||(c=i.triggerRef.current)==null||c.focus(),a.preventDefault()),r.current=!1,s.current=!1},onInteractOutside:a=>{var u,d;(u=t.onInteractOutside)==null||u.call(t,a),a.defaultPrevented||(r.current=!0,a.detail.originalEvent.type==="pointerdown"&&(s.current=!0));const l=a.target;((d=i.triggerRef.current)==null?void 0:d.contains(l))&&a.preventDefault(),a.detail.originalEvent.type==="focusin"&&s.current&&a.preventDefault()}})},"PopoverContentNonModal")),fxe=p.forwardRef(Fm(function(t,n){const{__scopePopover:i,trapFocus:r,onOpenAutoFocus:s,onCloseAutoFocus:a,disableOutsidePointerEvents:l,onEscapeKeyDown:c,onPointerDownOutside:u,onFocusOutside:d,onInteractOutside:f,...h}=t,m=Dx(kS,i),g=B7(i);return uR(),o.jsx(tve,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:s,onUnmountAutoFocus:a,children:o.jsx(h7,{asChild:!0,disableOutsidePointerEvents:l,onInteractOutside:f,onEscapeKeyDown:c,onPointerDownOutside:u,onFocusOutside:d,onDismiss:()=>m.onOpenChange(!1),deferPointerDownOutside:!0,children:o.jsx(_7,{"data-state":U7(m.open),role:"dialog",id:m.contentId,...g,...h,ref:n,style:{...h.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}})})})},"PopoverContentImpl"));function U7(e){return e?"open":"closed"}Fm(U7,"getState");var hxe=Pqe,pxe=Mqe,mxe=Fqe,gxe=Bqe,Vqe=Object.defineProperty,vo=(e,t)=>Vqe(e,"name",{value:t,configurable:!0}),bxe="Radio",[Hqe,yxe]=kl(bxe),[qqe,SR]=Hqe(bxe);function vxe(e){const{__scopeRadio:t,checked:n=!1,children:i,disabled:r,form:s,name:a,onCheck:l,required:c,value:u="on",internal_do_not_use_render:d}=e,[f,h]=p.useState(null),[m,g]=p.useState(null),b=p.useRef(!1),[v,y]=p.useReducer(w=>w+1,0),x=f?!!s||!!f.closest("form"):!0,O={checked:n,disabled:r,required:c,name:a,form:s,value:u,control:f,setControl:h,hasConsumerStoppedPropagationRef:b,userInteractionCount:v,onUserInteraction:y,isFormControl:x,bubbleInput:m,setBubbleInput:g,onCheck:vo(()=>l==null?void 0:l(),"onCheck")};return o.jsx(qqe,{scope:t,...O,children:xxe(d)?d(O):i})}vo(vxe,"RadioProvider");var Wqe="RadioTrigger",Gqe=p.forwardRef(vo(function({__scopeRadio:t,onClick:n,...i},r){const{checked:s,disabled:a,value:l,setControl:c,onCheck:u,hasConsumerStoppedPropagationRef:d,onUserInteraction:f,isFormControl:h,bubbleInput:m}=SR(Wqe,t),g=ir(r,c);return o.jsx(wr.button,{type:"button",role:"radio","aria-checked":s,"data-state":Q7(s),"data-disabled":a?"":void 0,disabled:a,value:l,...i,ref:g,onClick:yn(n,b=>{s||(f(),u()),m&&h&&(d.current=b.isPropagationStopped(),d.current||b.stopPropagation())})})},"RadioTrigger")),Kqe="RadioIndicator",Xqe=p.forwardRef(vo(function(t,n){const{__scopeRadio:i,forceMount:r,...s}=t,a=SR(Kqe,i);return o.jsx(Gd,{present:r||a.checked,children:o.jsx(wr.span,{"data-state":Q7(a.checked),"data-disabled":a.disabled?"":void 0,...s,ref:n})})},"RadioIndicator")),Yqe="RadioBubbleInput",Zqe=p.forwardRef(vo(function({__scopeRadio:t,onClick:n,...i},r){const{control:s,checked:a,required:l,disabled:c,name:u,value:d,form:f,bubbleInput:h,setBubbleInput:m,hasConsumerStoppedPropagationRef:g,userInteractionCount:b}=SR(Yqe,t),v=ir(r,m),y=Gk(s),x=p.useRef(!1),O=p.useRef(a),w=p.useRef(b);p.useEffect(()=>{const S=h;if(!S)return;const E=window.HTMLInputElement.prototype,N=Object.getOwnPropertyDescriptor(E,"checked").set,_=b!==w.current;w.current=b;const j=O.current!==a;O.current=a;const A=!(_&&g.current);if(j&&N){x.current=!_;const F=new Event("click",{bubbles:A});N.call(S,a),S.dispatchEvent(F),x.current=!1}},[h,a,g,b]);const k=p.useRef(a);return o.jsx(wr.input,{type:"radio","aria-hidden":!0,defaultChecked:k.current,required:l,disabled:c,name:u,value:d,form:f,...i,tabIndex:-1,ref:v,onClick:yn(n,S=>{x.current&&S.stopPropagation()}),style:{...i.style,...y,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})},"RadioBubbleInput"));function xxe(e){return typeof e=="function"}vo(xxe,"isFunction");function Q7(e){return e?"checked":"unchecked"}vo(Q7,"getState");var Jqe=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],z7="RadioGroup",[eWe,tHt]=kl(z7,[Px,yxe]),wxe=Px(),kR=yxe(),[tWe,nWe]=eWe(z7),iWe=p.forwardRef(vo(function(t,n){const{__scopeRadioGroup:i,name:r,form:s,defaultValue:a,value:l,required:c=!1,disabled:u=!1,orientation:d,dir:f,loop:h=!0,onValueChange:m,...g}=t,b=wxe(i),v=Wk(f),[y,x]=su({prop:l,defaultProp:a??null,onChange:m,caller:z7}),[O,w]=p.useState(null),k=ir(n,w),S=p.useRef(y);return p.useEffect(()=>{const E=s?O==null?void 0:O.ownerDocument.getElementById(s):O==null?void 0:O.closest("form");if(E instanceof HTMLFormElement){const C=vo(()=>x(S.current),"reset");return E.addEventListener("reset",C),()=>E.removeEventListener("reset",C)}},[O,s,x]),o.jsx(tWe,{scope:i,name:r,form:s,required:c,disabled:u,value:y,onValueChange:x,children:o.jsx(R7,{asChild:!0,...b,orientation:d,dir:v,loop:h,children:o.jsx(wr.div,{role:"radiogroup","aria-required":c,"aria-orientation":d,"data-disabled":u?"":void 0,dir:v,...g,ref:k})})})},"RadioGroup")),rWe="RadioGroupItemProvider",sWe="RadioGroupItemTrigger";function Oxe(e){const{__scopeRadioGroup:t,value:n,disabled:i,children:r,internal_do_not_use_render:s}=e,a=nWe(rWe,t),l=kR(t),c=a.disabled||i;return o.jsx(vxe,{...l,checked:a.value===n,disabled:c,required:a.required,name:a.name,form:a.form,value:n,onCheck:()=>a.onValueChange(n),internal_do_not_use_render:s,children:r})}vo(Oxe,"RadioGroupItemProvider");var aWe=p.forwardRef(vo(function(t,n){const{__scopeRadioGroup:i,...r}=t,s=wxe(i),a=kR(i),{checked:l,disabled:c}=SR(sWe,a.__scopeRadio),u=p.useRef(null),d=ir(n,u),f=p.useRef(!1);return p.useEffect(()=>{const h=vo(g=>{Jqe.includes(g.key)&&(f.current=!0)},"handleKeyDown"),m=vo(()=>f.current=!1,"handleKeyUp");return document.addEventListener("keydown",h),document.addEventListener("keyup",m),()=>{document.removeEventListener("keydown",h),document.removeEventListener("keyup",m)}},[]),o.jsx(I7,{asChild:!0,...s,focusable:!c,active:l,children:o.jsx(Gqe,{...a,...r,ref:d,onKeyDown:yn(r.onKeyDown,h=>{h.key==="Enter"&&h.preventDefault()}),onFocus:yn(r.onFocus,()=>{var h;f.current&&((h=u.current)==null||h.click())})})})},"RadioGroupItemTrigger")),oWe=p.forwardRef(vo(function(t,n){const{__scopeRadioGroup:i,value:r,disabled:s,...a}=t;return o.jsx(Oxe,{__scopeRadioGroup:i,value:r,disabled:s,internal_do_not_use_render:({isFormControl:l})=>o.jsxs(o.Fragment,{children:[o.jsx(aWe,{...a,ref:n,__scopeRadioGroup:i}),l&&o.jsx(lWe,{__scopeRadioGroup:i})]})})},"RadioGroupItem")),lWe=p.forwardRef(vo(function(t,n){const{__scopeRadioGroup:i,...r}=t,s=kR(i);return o.jsx(Zqe,{...s,...r,ref:n})},"RadioGroupItemBubbleInput")),cWe=p.forwardRef(vo(function(t,n){const{__scopeRadioGroup:i,...r}=t,s=kR(i);return o.jsx(Xqe,{...s,...r,ref:n})},"RadioGroupIndicator")),uWe=Object.defineProperty,ym=(e,t)=>uWe(e,"name",{value:t,configurable:!0}),V7="Switch",[dWe,nHt]=kl(V7),[fWe,H7]=dWe(V7);function Sxe(e){const{__scopeSwitch:t,checked:n,children:i,defaultChecked:r,disabled:s,form:a,name:l,onCheckedChange:c,required:u,value:d="on",internal_do_not_use_render:f}=e,[h,m]=su({prop:n,defaultProp:r??!1,onChange:c,caller:V7}),[g,b]=p.useState(null),[v,y]=p.useState(null),x=p.useRef(!1),[O,w]=p.useReducer(E=>E+1,0),k=g?!!a||!!g.closest("form"):!0,S={checked:h,setChecked:m,disabled:s,control:g,setControl:b,name:l,form:a,value:d,hasConsumerStoppedPropagationRef:x,userInteractionCount:O,onUserInteraction:w,required:u,defaultChecked:r,isFormControl:k,bubbleInput:v,setBubbleInput:y};return o.jsx(fWe,{scope:t,...S,children:kxe(f)?f(S):i})}ym(Sxe,"SwitchProvider");var hWe="SwitchTrigger",pWe=p.forwardRef(ym(function({__scopeSwitch:t,onClick:n,...i},r){const{control:s,form:a,value:l,disabled:c,checked:u,required:d,setControl:f,setChecked:h,hasConsumerStoppedPropagationRef:m,onUserInteraction:g,isFormControl:b,bubbleInput:v}=H7(hWe,t),y=ir(r,f),x=p.useRef(u);return p.useEffect(()=>{const O=a?s==null?void 0:s.ownerDocument.getElementById(a):s==null?void 0:s.form;if(O instanceof HTMLFormElement){const w=ym(()=>h(x.current),"reset");return O.addEventListener("reset",w),()=>O.removeEventListener("reset",w)}},[s,a,h]),o.jsx(wr.button,{type:"button",role:"switch","aria-checked":u,"aria-required":d,"data-state":q7(u),"data-disabled":c?"":void 0,disabled:c,value:l,...i,ref:y,onClick:yn(n,O=>{g(),h(w=>!w),v&&b&&(m.current=O.isPropagationStopped(),m.current||O.stopPropagation())})})},"SwitchTrigger")),mWe=p.forwardRef(ym(function(t,n){const{__scopeSwitch:i,name:r,checked:s,defaultChecked:a,required:l,disabled:c,value:u,onCheckedChange:d,form:f,...h}=t;return o.jsx(Sxe,{__scopeSwitch:i,checked:s,defaultChecked:a,disabled:c,required:l,onCheckedChange:d,name:r,form:f,value:u,internal_do_not_use_render:({isFormControl:m})=>o.jsxs(o.Fragment,{children:[o.jsx(pWe,{...h,ref:n,__scopeSwitch:i}),m&&o.jsx(vWe,{__scopeSwitch:i})]})})},"Switch")),gWe="SwitchThumb",bWe=p.forwardRef(ym(function(t,n){const{__scopeSwitch:i,...r}=t,s=H7(gWe,i);return o.jsx(wr.span,{"data-state":q7(s.checked),"data-disabled":s.disabled?"":void 0,...r,ref:n})},"SwitchThumb")),yWe="SwitchBubbleInput",vWe=p.forwardRef(ym(function({__scopeSwitch:t,onClick:n,...i},r){const{control:s,hasConsumerStoppedPropagationRef:a,userInteractionCount:l,checked:c,defaultChecked:u,required:d,disabled:f,name:h,value:m,form:g,bubbleInput:b,setBubbleInput:v}=H7(yWe,t),y=ir(r,v),x=Gk(s),O=p.useRef(!1),w=p.useRef(c),k=p.useRef(l);p.useEffect(()=>{const E=b;if(!E)return;const C=window.HTMLInputElement.prototype,_=Object.getOwnPropertyDescriptor(C,"checked").set,j=l!==k.current;k.current=l;const A=w.current!==c;w.current=c;const F=!(j&&a.current);if(A&&_){O.current=!j;const T=new Event("click",{bubbles:F});_.call(E,c),E.dispatchEvent(T),O.current=!1}},[b,c,a,l]);const S=p.useRef(c);return o.jsx(wr.input,{type:"checkbox","aria-hidden":!0,defaultChecked:u??S.current,required:d,disabled:f,name:h,value:m,form:g,...i,tabIndex:-1,ref:y,onClick:yn(n,E=>{O.current&&E.stopPropagation()}),style:{...i.style,...x,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})},"SwitchBubbleInput"));function kxe(e){return typeof e=="function"}ym(kxe,"isFunction");function q7(e){return e?"checked":"unchecked"}ym(q7,"getState");var xWe=Object.defineProperty,wWe=(e,t)=>xWe(e,"name",{value:t,configurable:!0}),OWe="Toggle",SWe=p.forwardRef(wWe(function(t,n){const{pressed:i,defaultPressed:r,onPressedChange:s,...a}=t,[l,c]=su({prop:i,onChange:s,defaultProp:r??!1,caller:OWe});return o.jsx(wr.button,{type:"button","aria-pressed":l,"data-state":l?"on":"off","data-disabled":t.disabled?"":void 0,...a,ref:n,onClick:yn(t.onClick,()=>{t.disabled||c(!l)})})},"Toggle")),kWe=Object.defineProperty,vm=(e,t)=>kWe(e,"name",{value:t,configurable:!0}),Mx="ToggleGroup",[Exe,iHt]=kl(Mx,[Px]),Cxe=Px(),EWe=p.forwardRef(vm(function(t,n){const{type:i,...r}=t;if(i==="single"){const s=r;return o.jsx(CWe,{role:"radiogroup",...s,ref:n})}if(i==="multiple"){const s=r;return o.jsx(TWe,{role:"toolbar",...s,ref:n})}throw new Error(`Missing prop \`type\` expected on \`${Mx}\``)},"ToggleGroup")),[Txe,Axe]=Exe(Mx),CWe=p.forwardRef(vm(function(t,n){const{value:i,defaultValue:r,onValueChange:s=vm(()=>{},"onValueChange"),...a}=t,[l,c]=su({prop:i,defaultProp:r??"",onChange:s,caller:Mx});return o.jsx(Txe,{scope:t.__scopeToggleGroup,type:"single",value:p.useMemo(()=>l?[l]:[],[l]),onItemActivate:c,onItemDeactivate:p.useCallback(()=>c(""),[c]),children:o.jsx(_xe,{...a,ref:n})})},"ToggleGroupImplSingle")),TWe=p.forwardRef(vm(function(t,n){const{value:i,defaultValue:r,onValueChange:s=vm(()=>{},"onValueChange"),...a}=t,[l,c]=su({prop:i,defaultProp:r??[],onChange:s,caller:Mx}),u=p.useCallback(f=>c((h=[])=>[...h,f]),[c]),d=p.useCallback(f=>c((h=[])=>h.filter(m=>m!==f)),[c]);return o.jsx(Txe,{scope:t.__scopeToggleGroup,type:"multiple",value:l,onItemActivate:u,onItemDeactivate:d,children:o.jsx(_xe,{...a,ref:n})})},"ToggleGroupImplMultiple")),[AWe,_We]=Exe(Mx),_xe=p.forwardRef(vm(function(t,n){const{__scopeToggleGroup:i,disabled:r=!1,rovingFocus:s=!0,orientation:a,dir:l,loop:c=!0,...u}=t,d=Cxe(i),f=Wk(l),h={dir:f,...u};return o.jsx(AWe,{scope:i,rovingFocus:s,disabled:r,children:s?o.jsx(R7,{asChild:!0,...d,orientation:a,dir:f,loop:c,children:o.jsx(wr.div,{...h,ref:n})}):o.jsx(wr.div,{...h,ref:n})})},"ToggleGroupImpl")),Y4="ToggleGroupItem",NWe=p.forwardRef(vm(function(t,n){const i=Axe(Y4,t.__scopeToggleGroup),r=_We(Y4,t.__scopeToggleGroup),s=Cxe(t.__scopeToggleGroup),a=i.value.includes(t.value),l=r.disabled||t.disabled,c={...t,pressed:a,disabled:l},u=p.useRef(null);return r.rovingFocus?o.jsx(I7,{asChild:!0,...s,focusable:!l,active:a,ref:u,children:o.jsx(oG,{...c,ref:n})}):o.jsx(oG,{...c,ref:n})},"ToggleGroupItem")),oG=p.forwardRef(vm(function(t,n){const{__scopeToggleGroup:i,value:r,...s}=t,a=Axe(Y4,i),l={role:"radio","aria-checked":t.pressed,"aria-pressed":void 0},c=a.type==="single"?l:void 0;return o.jsx(SWe,{...c,...s,ref:n,onPressedChange:u=>{u?a.onItemActivate(r):a.onItemDeactivate(r)}})},"ToggleGroupItemImpl")),jWe=Object.defineProperty,La=(e,t)=>jWe(e,"name",{value:t,configurable:!0}),[W7,rHt]=kl("Tooltip",[Ix]),G7=Ix(),RWe="TooltipProvider",IWe=700,Z4="tooltip.open",[PWe,K7]=W7(RWe),DWe=La(e=>{const{__scopeTooltip:t,delayDuration:n=IWe,skipDelayDuration:i=300,disableHoverableContent:r=!1,children:s}=e,a=p.useRef(!0),l=p.useRef(!1),c=p.useRef(0);return p.useEffect(()=>{const u=c.current;return()=>window.clearTimeout(u)},[]),o.jsx(PWe,{scope:t,isOpenDelayedRef:a,delayDuration:n,onOpen:p.useCallback(()=>{i<=0||(window.clearTimeout(c.current),a.current=!1)},[i]),onClose:p.useCallback(()=>{i<=0||(window.clearTimeout(c.current),c.current=window.setTimeout(()=>a.current=!0,i))},[i]),isPointerInTransitRef:l,onPointerInTransitChange:p.useCallback(u=>{l.current=u},[]),disableHoverableContent:r,children:s})},"TooltipProvider"),J4="Tooltip",[MWe,Xk]=W7(J4),LWe=La(e=>{const{__scopeTooltip:t,children:n,open:i,defaultOpen:r,onOpenChange:s,disableHoverableContent:a,delayDuration:l}=e,c=K7(J4,e.__scopeTooltip),u=G7(t),[d,f]=p.useState(null),[h,m]=p.useState(void 0),g=mm(),b=p.useRef(0),v=a??c.disableHoverableContent,y=l??c.delayDuration,x=p.useRef(!1),[O,w]=su({prop:i,defaultProp:r??!1,onChange:La(_=>{_?(c.onOpen(),document.dispatchEvent(new CustomEvent(Z4))):c.onClose(),s==null||s(_)},"onChange"),caller:J4}),k=p.useMemo(()=>O?x.current?"delayed-open":"instant-open":"closed",[O]),S=p.useCallback(()=>{window.clearTimeout(b.current),b.current=0,x.current=!1,w(!0)},[w]),E=p.useCallback(()=>{window.clearTimeout(b.current),b.current=0,w(!1)},[w]),C=p.useCallback(()=>{window.clearTimeout(b.current),b.current=window.setTimeout(()=>{x.current=!0,w(!0),b.current=0},y)},[y,w]);p.useEffect(()=>()=>{b.current&&(window.clearTimeout(b.current),b.current=0)},[]);const N=h??g;return o.jsx(yR,{...u,children:o.jsx(MWe,{scope:t,contentId:N,setContentId:m,open:O,stateAttribute:k,trigger:d,onTriggerChange:f,onTriggerEnter:p.useCallback(()=>{c.isOpenDelayedRef.current?C():S()},[c.isOpenDelayedRef,C,S]),onTriggerLeave:p.useCallback(()=>{v?E():(window.clearTimeout(b.current),b.current=0)},[E,v]),onOpen:S,onClose:E,disableHoverableContent:v,children:n})})},"Tooltip"),lG="TooltipTrigger",$We=p.forwardRef(La(function(t,n){const{__scopeTooltip:i,...r}=t,s=Xk(lG,i),a=K7(lG,i),l=G7(i),c=p.useRef(null),u=ir(n,c,s.onTriggerChange),d=p.useRef(!1),f=p.useRef(!1),h=p.useCallback(()=>d.current=!1,[]);return p.useEffect(()=>()=>document.removeEventListener("pointerup",h),[h]),o.jsx(A7,{asChild:!0,...l,children:o.jsx(wr.button,{"aria-describedby":s.open?s.contentId:void 0,"data-state":s.stateAttribute,...r,ref:u,onPointerMove:yn(t.onPointerMove,m=>{m.pointerType!=="touch"&&!f.current&&!a.isPointerInTransitRef.current&&(s.onTriggerEnter(),f.current=!0)}),onPointerLeave:yn(t.onPointerLeave,()=>{s.onTriggerLeave(),f.current=!1}),onPointerDown:yn(t.onPointerDown,()=>{s.open&&s.onClose(),d.current=!0,document.addEventListener("pointerup",h,{once:!0})}),onFocus:yn(t.onFocus,()=>{d.current||s.onOpen()}),onBlur:yn(t.onBlur,s.onClose),onClick:yn(t.onClick,s.onClose)})})},"TooltipTrigger")),Nxe="TooltipPortal",[FWe,BWe]=W7(Nxe,{forceMount:void 0}),UWe=La(e=>{const{__scopeTooltip:t,forceMount:n,children:i,container:r}=e,s=Xk(Nxe,t);return o.jsx(FWe,{scope:t,forceMount:n,children:o.jsx(Gd,{present:n||s.open,children:o.jsx(g7,{asChild:!0,container:r,children:i})})})},"TooltipPortal"),ES="TooltipContent",QWe=p.forwardRef(La(function(t,n){const i=BWe(ES,t.__scopeTooltip),{forceMount:r=i.forceMount,side:s="top",...a}=t,l=Xk(ES,t.__scopeTooltip);return o.jsx(Gd,{present:r||l.open,children:l.disableHoverableContent?o.jsx(jxe,{side:s,...a,ref:n}):o.jsx(zWe,{side:s,...a,ref:n})})},"TooltipContent")),zWe=p.forwardRef(La(function(t,n){const i=Xk(ES,t.__scopeTooltip),r=K7(ES,t.__scopeTooltip),s=p.useRef(null),a=ir(n,s),[l,c]=p.useState(null),{trigger:u,onClose:d}=i,f=s.current,{onPointerInTransitChange:h}=r,m=p.useCallback(()=>{c(null),h(!1)},[h]),g=p.useCallback((b,v)=>{const y=b.currentTarget,x={x:b.clientX,y:b.clientY},O=Rxe(x,y.getBoundingClientRect()),w=Ixe(x,O),k=Pxe(v.getBoundingClientRect()),S=Mxe([...w,...k]);c(S),h(!0)},[h]);return p.useEffect(()=>()=>m(),[m]),p.useEffect(()=>{if(u&&f){const b=La(y=>g(y,f),"handleTriggerLeave"),v=La(y=>g(y,u),"handleContentLeave");return u.addEventListener("pointerleave",b),f.addEventListener("pointerleave",v),()=>{u.removeEventListener("pointerleave",b),f.removeEventListener("pointerleave",v)}}},[u,f,g,m]),p.useEffect(()=>{if(l){const b=La(v=>{const y=v.target,x={x:v.clientX,y:v.clientY},O=(u==null?void 0:u.contains(y))||(f==null?void 0:f.contains(y)),w=!Dxe(x,l);O?m():w&&(m(),d())},"handleTrackPointerGrace");return document.addEventListener("pointermove",b),()=>document.removeEventListener("pointermove",b)}},[u,f,l,d,m]),o.jsx(jxe,{...t,ref:a})},"TooltipContentHoverable")),VWe=Rye("TooltipContent"),jxe=p.forwardRef(La(function(t,n){const{__scopeTooltip:i,children:r,"aria-label":s,id:a,onEscapeKeyDown:l,onPointerDownOutside:c,...u}=t,d=Xk(ES,i),f=G7(i),{onClose:h}=d;p.useEffect(()=>(document.addEventListener(Z4,h),()=>document.removeEventListener(Z4,h)),[h]),p.useEffect(()=>{if(d.trigger){const g=La(b=>{b.target instanceof Node&&b.target.contains(d.trigger)&&h()},"handleScroll");return window.addEventListener("scroll",g,{capture:!0}),()=>window.removeEventListener("scroll",g,{capture:!0})}},[d.trigger,h]);const{setContentId:m}=d;return Jc(()=>(m(a),()=>{m(void 0)}),[a,m]),o.jsx(h7,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:l,onPointerDownOutside:c,onFocusOutside:g=>g.preventDefault(),onDismiss:h,children:o.jsxs(_7,{"data-state":d.stateAttribute,role:s?void 0:"tooltip",id:s?void 0:d.contentId,...f,...u,ref:n,style:{...u.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"},children:[o.jsx(VWe,{children:r}),s?o.jsx(fQe,{id:d.contentId,role:"tooltip",children:s}):null]})})},"TooltipContentImpl"));function Rxe(e,t){const n=Math.abs(t.top-e.y),i=Math.abs(t.bottom-e.y),r=Math.abs(t.right-e.x),s=Math.abs(t.left-e.x);switch(Math.min(n,i,r,s)){case s:return"left";case r:return"right";case n:return"top";case i:return"bottom";default:throw new Error("unreachable")}}La(Rxe,"getExitSideFromRect");function Ixe(e,t,n=5){const i=[];switch(t){case"top":i.push({x:e.x-n,y:e.y+n},{x:e.x+n,y:e.y+n});break;case"bottom":i.push({x:e.x-n,y:e.y-n},{x:e.x+n,y:e.y-n});break;case"left":i.push({x:e.x+n,y:e.y-n},{x:e.x+n,y:e.y+n});break;case"right":i.push({x:e.x-n,y:e.y-n},{x:e.x-n,y:e.y+n});break}return i}La(Ixe,"getPaddedExitPoints");function Pxe(e){const{top:t,right:n,bottom:i,left:r}=e;return[{x:r,y:t},{x:n,y:t},{x:n,y:i},{x:r,y:i}]}La(Pxe,"getPointsFromRect");function Dxe(e,t){const{x:n,y:i}=e;let r=!1;for(let s=0,a=t.length-1;si!=h>i&&n<(f-u)*(i-d)/(h-d)+u&&(r=!r)}return r}La(Dxe,"isPointInPolygon");function Mxe(e){const t=e.slice();return t.sort((n,i)=>n.xi.x?1:n.yi.y?1:0),Lxe(t)}La(Mxe,"getHull");function Lxe(e){if(e.length<=1)return e.slice();const t=[];for(let i=0;i=2;){const s=t[t.length-1],a=t[t.length-2];if((s.x-a.x)*(r.y-a.y)>=(s.y-a.y)*(r.x-a.x))t.pop();else break}t.push(r)}t.pop();const n=[];for(let i=e.length-1;i>=0;i--){const r=e[i];for(;n.length>=2;){const s=n[n.length-1],a=n[n.length-2];if((s.x-a.x)*(r.y-a.y)>=(s.y-a.y)*(r.x-a.x))n.pop();else break}n.push(r)}return n.pop(),t.length===1&&n.length===1&&t[0].x===n[0].x&&t[0].y===n[0].y?t:t.concat(n)}La(Lxe,"getHullPresorted");var HWe=DWe,qWe=LWe,$xe=$We,WWe=UWe,GWe=QWe;function xm(e){const t=p.useRef(e);return t.current=e,t}let Uv=[],uT=!1;const cG=e=>{var t,n;if(e.key==="Escape"){const[i]=Uv;i&&(e.preventDefault(),(n=(t=i.callback).current)==null||n.call(t))}},Fxe=()=>{Uv.length>0&&!uT?(document.body.addEventListener("keydown",cG),uT=!0):Uv.length===0&&uT&&(document.body.removeEventListener("keydown",cG),uT=!1)},KWe=e=>{Uv.unshift(e),Fxe()},XWe=({id:e})=>{Uv=Uv.filter(t=>t.id!==e),Fxe()},Yk=(e,t)=>{const n=p.useId(),i=xm(t);p.useEffect(()=>{if(!e)return;const r={id:n,callback:i};return KWe(r),()=>XWe(r)},[n,e,i])},YWe=p.createContext(null);function Bxe(){const e=p.useContext(YWe);return(e==null?void 0:e.linkComponent)??"a"}function Zk(e){return t=>{e.forEach(n=>{typeof n=="function"?n(t):n!=null&&(n.current=t)})}}const ZWe=()=>Cye,uG=(e,t=!1,n="TransitionGroup")=>{const i=[];return p.Children.forEach(e,r=>{if(r&&typeof r=="object"&&"key"in r&&r.key)i.push(r);else if(t)throw new Error(`Child elements of <${n} /> must include a \`key\``)}),i},P0=()=>{},D0=e=>{const t=p.useRef(e);return t.current=e,p.useCallback(n=>t.current(n),[])};function JWe(e,t,n,i){const r=e.reduce((c,u)=>({...c,[u.key]:1}),{}),s=t.reduce((c,u)=>({...c,[u.component.key]:1}),{}),a=e.filter(c=>!s[c.key]).map(n),l=t.map(c=>({...c,component:e.find(({key:u})=>u===c.component.key)||c.component,shouldRender:!!r[c.component.key]}));return i==="append"?l.concat(a):a.concat(l)}function eGe(e,t,n){if((Cye||WUe)&&t&&n>1)throw new Error(`Cannot use forwardRef with multiple children in <${e} />`)}const tGe="_TransitionGroupChild_1hv1z_1",nGe={TransitionGroupChild:tGe},Uxe={enter:!1,enterActive:!1,exit:!1,exitActive:!1,interrupted:!1},iGe=e=>({...Uxe,enter:!e}),rGe=(e,t)=>{switch(t.type){case"enter-before":return{enter:!0,enterActive:!1,exit:!1,exitActive:!1,interrupted:e.interrupted||e.exit};case"enter-active":return{enter:!0,enterActive:!0,exit:!1,exitActive:!1,interrupted:!1};case"exit-before":return{enter:!1,enterActive:!1,exit:!0,exitActive:!1,interrupted:e.interrupted||e.enter};case"exit-active":return{enter:!1,enterActive:!1,exit:!0,exitActive:!0,interrupted:!1};case"done":default:return Uxe}},sGe=({ref:e,as:t,children:n,className:i,transitionId:r,style:s,preventMountTransition:a,shouldRender:l,enterDuration:c,exitDuration:u,removeChild:d,onEnter:f,onEnterActive:h,onEnterComplete:m,onExit:g,onExitActive:b,onExitComplete:v})=>{const[y,x]=p.useReducer(rGe,iGe(a||!1)),O=p.useRef(!1),w=p.useRef(null),k=p.useRef(c);k.current=c;const S=p.useRef(u);S.current=u;const E=p.useRef(null),C=p.useCallback(N=>{const _=w.current;if(!(!_||N===E.current))switch(E.current=N,N){case"enter":f(_);break;case"enter-active":h(_);break;case"enter-complete":m(_);break;case"exit":g(_);break;case"exit-active":b(_);break;case"exit-complete":v(_);break}},[f,h,m,g,b,v]);return ii.useLayoutEffect(()=>{if(!l){let j;x({type:"exit-before"}),C("exit");const A=F_(()=>{x({type:"exit-active"}),C("exit-active"),j=window.setTimeout(()=>{C("exit-complete"),d()},S.current)});return()=>{A(),j!==void 0&&clearTimeout(j)}}if(a&&!O.current){O.current=!0;return}let N;x({type:"enter-before"}),C("enter");const _=F_(()=>{x({type:"enter-active"}),C("enter-active"),N=window.setTimeout(()=>{x({type:"done"}),C("enter-complete")},k.current)});return()=>{_(),N!==void 0&&clearTimeout(N)}},[l,a,d,C]),p.useEffect(()=>()=>{O.current=!1},[]),o.jsx(t,{ref:Zk([w,e]),className:pi(i,nGe.TransitionGroupChild),"data-transition-id":r,style:s,"data-entering":y.enter?"":void 0,"data-entering-active":y.enterActive?"":void 0,"data-exiting":y.exit?"":void 0,"data-exiting-active":y.exitActive?"":void 0,"data-interrupted":y.interrupted?"":void 0,children:n})},aGe=e=>{const{enterMountDelay:t,preventMountTransition:n}=e,i=!n&&t!=null?t:null,[r,s]=p.useState(i==null);return o7(()=>s(!0),r?null:i),r?o.jsx(sGe,{...e}):null},Lx=e=>{const{ref:t,as:n="span",children:i,className:r,transitionId:s,style:a,enterDuration:l=0,exitDuration:c=0,preventInitialTransition:u=!0,enterMountDelay:d,insertMethod:f="append",disableAnimations:h=ZWe()}=e,m=D0(e.onEnter??P0),g=D0(e.onEnterActive??P0),b=D0(e.onEnterComplete??P0),v=D0(e.onExit??P0),y=D0(e.onExitActive??P0),x=D0(e.onExitComplete??P0);p.Children.forEach(i,S=>{if(S&&!S.key)throw new Error("Child elements of must include a `key`")});const O=p.useCallback(S=>({component:S,shouldRender:!0,removeChild:()=>{k(E=>E.filter(C=>S.key!==C.component.key))},onEnter:m,onEnterActive:g,onEnterComplete:b,onExit:v,onExitActive:y,onExitComplete:x}),[m,g,b,v,y,x]),[w,k]=p.useState(()=>uG(i).map(S=>({...O(S),preventMountTransition:u})));return p.useLayoutEffect(()=>{k(S=>{const E=uG(i);return JWe(E,S,O,f)})},[i,f,O]),eGe("TransitionGroup",t,p.Children.count(i)),h?o.jsx(o.Fragment,{children:p.Children.map(i,S=>o.jsx(n,{ref:t,className:r,style:a,"data-transition-id":s,children:S}))}):o.jsx(o.Fragment,{children:w.map(({component:S,...E})=>o.jsx(aGe,{...E,as:n,className:r,transitionId:s,enterDuration:l,exitDuration:c,enterMountDelay:d,style:a,ref:t,children:S},S.key))})},oGe="_Button_1864l_1",lGe="_ButtonInner_1864l_4",cGe="_ButtonLoader_1864l_749",ZD={Button:oGe,ButtonInner:lGe,ButtonLoader:cGe},Ht=e=>{const{type:t="button",color:n="primary",variant:i="solid",pill:r=!0,uniform:s=!1,size:a="md",iconSize:l,gutterSize:c,loading:u,selected:d,block:f,opticallyAlign:h,children:m,className:g,onClick:b,disabled:v,disabledTone:y,inert:x=u,...O}=e,w=v||x,k=p.useCallback(S=>{v||b==null||b(S)},[b,v]);return o.jsxs("button",{type:t,className:pi(ZD.Button,g),"data-color":n,"data-variant":i,"data-pill":r?"":void 0,"data-uniform":s?"":void 0,"data-size":a,"data-gutter-size":c,"data-icon-size":l,"data-loading":u?"":void 0,"data-selected":d?"":void 0,"data-block":f?"":void 0,"data-optically-align":h,onPointerEnter:l7,disabled:w,"aria-disabled":w,tabIndex:w?-1:void 0,"data-disabled":v?"":void 0,"data-disabled-tone":v?y:void 0,onClick:k,...O,children:[o.jsx(Lx,{className:ZD.ButtonLoader,enterDuration:250,exitDuration:150,children:u&&o.jsx(Hk,{},"loader")}),o.jsx("span",{className:ZD.ButtonInner,children:a7(m)})]})},uGe=()=>{var e;return typeof ClipboardItem<"u"&&!!((e=navigator.clipboard)!=null&&e.write)};function dGe(e){const{"text/plain":t,...n}=e;return new ClipboardItem({...n,...t?{"text/plain":new Blob([t],{type:"text/plain"})}:null})}async function fGe(e,t=document.body){if(typeof e=="string")return dG(e,t);try{return uGe()?(await navigator.clipboard.write([dGe(e)]),!0):e["text/plain"]?dG(e["text/plain"],t):!1}catch{return!1}}async function dG(e,t=document.body){if(navigator.clipboard)try{return await navigator.clipboard.writeText(e),!0}catch{}const n=document.createElement("textarea");n.value=e,n.style.position="fixed",n.style.top="0",n.style.left="0",n.style.opacity="0",t.appendChild(n),n.focus(),n.select();let i=!1;try{i=document.execCommand("copy")}catch{}return t.removeChild(n),i}const hGe="_TransitionItem_1o7b1_1",pGe={TransitionItem:hGe},mGe=e=>{const{as:t="span",className:n,children:i,preventInitialTransition:r,insertMethod:s,transitionClassName:a,transitionPosition:l="absolute"}=e,{enterTotalDuration:c,exitTotalDuration:u,variables:d}=xGe(e);return o.jsx(t,{className:pi("block",l==="absolute"&&"relative",n),"data-transition-position":l,style:d,children:o.jsx(Lx,{as:t,className:pi(pGe.TransitionItem,a),enterDuration:c,exitDuration:u,insertMethod:s,preventInitialTransition:r,children:i})})},gGe=400,bGe=500,yGe=200,vGe=300;function xGe({initial:e,enter:t,exit:n,forceCompositeLayer:i}){const r=$D(e),s=$D(t),a=$D(n),l=[r,a,s].some(b=>b!=="none"),c=(t==null?void 0:t.duration)??(l?bGe:gGe),u=(t==null?void 0:t.timingFunction)??(l?"var(--cubic-enter)":"ease"),d=(n==null?void 0:n.duration)??(l?vGe:yGe),f=(n==null?void 0:n.timingFunction)??(l?"var(--cubic-exit)":"ease"),h=Wb({"tg-will-change":i?"transform, opacity":"auto","tg-enter-opacity":LD((t==null?void 0:t.opacity)??1),"tg-enter-transform":s,"tg-enter-filter":FD(t),"tg-enter-duration":tT(c),"tg-enter-delay":tT((t==null?void 0:t.delay)??0),"tg-enter-timing-function":u,"tg-exit-opacity":LD((n==null?void 0:n.opacity)??0),"tg-exit-transform":a,"tg-exit-filter":FD(n),"tg-exit-duration":tT(d),"tg-exit-delay":tT((n==null?void 0:n.delay)??0),"tg-exit-timing-function":f,"tg-initial-opacity":LD((e==null?void 0:e.opacity)??(n==null?void 0:n.opacity)??0),"tg-initial-transform":r==="none"?a:r,"tg-initial-filter":FD(e??n??{})}),m=((t==null?void 0:t.delay)??0)+c,g=((n==null?void 0:n.delay)??0)+d;return{enterTotalDuration:m,exitTotalDuration:g,variables:h}}const X7=({children:e,copyValue:t,onClick:n,...i})=>{const[r,s]=p.useState(!1),a=p.useRef(null),l=c=>{r||(s(!0),n==null||n(c),fGe(typeof t=="function"?t():t),a.current=window.setTimeout(()=>{s(!1)},1300))};return p.useEffect(()=>()=>{a.current&&clearTimeout(a.current)},[]),o.jsxs(Ht,{...i,onClick:l,children:[o.jsx(mGe,{className:"w-[var(--button-icon-size)] h-[var(--button-icon-size)]",initial:{scale:.6},enter:{scale:1,delay:150,duration:300},exit:{scale:.6,duration:150},forceCompositeLayer:!0,children:r?o.jsx(Lv,{},"copied-icon"):o.jsx(PF,{},"copy-icon")}),typeof e=="function"?e({copied:r}):e]})},wGe="_Menu_1t4b0_1",OGe="_MenuList_1t4b0_3",SGe="_MenuItemContent_1t4b0_53",kGe="_MenuItem_1t4b0_53",EGe="_ItemActions_1t4b0_98",CGe="_PressableInner_1t4b0_117",TGe="_Separator_1t4b0_135",AGe="_SubMenuItem_1t4b0_139",_Ge="_SubTriggerIcon_1t4b0_141",NGe="_RadioItem_1t4b0_151",jGe="_RadioIndicatorActive_1t4b0_158",RGe="_RadioIndicator_1t4b0_158",IGe="_CheckboxItem_1t4b0_249",PGe="_CheckboxIndicator_1t4b0_256",DGe="_CheckboxCircle_1t4b0_269",Wr={Menu:wGe,MenuList:OGe,MenuItemContent:SGe,MenuItem:kGe,ItemActions:EGe,PressableInner:CGe,Separator:TGe,SubMenuItem:AGe,SubTriggerIcon:_Ge,RadioItem:NGe,RadioIndicatorActive:jGe,RadioIndicator:RGe,CheckboxItem:IGe,CheckboxIndicator:PGe,CheckboxCircle:DGe},Qxe=p.createContext(null),Jk=()=>{const e=p.useContext(Qxe);if(!e)throw new Error("Menu components must be wrapped in ");return e},vr=({children:e,forceOpen:t,onOpen:n,onClose:i,modal:r=!1})=>{const[s,a]=p.useState(!1),l=t??s,c=xm(n),u=xm(i),d=p.useCallback(h=>{var m,g;a(h),h?(m=c.current)==null||m.call(c):(g=u.current)==null||g.call(u)},[c,u]);Yk(s,()=>{d(!1)});const f=p.useMemo(()=>({open:l,setOpen:d}),[l,d]);return o.jsx(Qxe.Provider,{value:f,children:o.jsx(Oqe,{open:l,onOpenChange:d,modal:r,children:e})})},MGe=({className:e,children:t,disabled:n,onSelect:i,onClick:r})=>{const{open:s}=Jk(),a=l=>{s||l.preventDefault()};return i?o.jsx(lxe,{className:pi(Wr.MenuItem,e),onSelect:i,onClick:r,disabled:n,onPointerMove:a,onPointerLeave:a,children:o.jsx("div",{className:Wr.PressableInner,children:t})}):o.jsx("div",{className:pi(Wr.MenuItemContent,e),children:t})},LGe=({className:e,children:t})=>o.jsx("div",{className:pi(Wr.ItemActions,e),children:t}),$Ge=({children:e,onClick:t})=>{const{setOpen:n}=Jk();return o.jsx(Ht,{className:"rounded-sm",color:"secondary",size:"xs",uniform:!0,iconSize:"sm",variant:"ghost",onClick:i=>{i.stopPropagation(),n(!1),t(i)},children:e})},FGe=e=>{const{className:t,children:n,href:i,to:r,disabled:s,as:a,...l}=e,{open:c}=Jk(),u=i||r,d=u?/^https?:\/\//.test(u):!0,f=Bxe(),h=a||(d?"a":f),m=b=>{c||b.preventDefault()},g=d?{target:"_blank",rel:"noopener noreferrer",href:i??r}:{href:i,to:r};return o.jsx(lxe,{asChild:!0,className:pi(Wr.MenuItem,t),disabled:s,onPointerMove:d?void 0:m,onPointerLeave:d?void 0:m,children:o.jsx(h,{...g,...l,children:o.jsx("span",{className:Wr.PressableInner,children:n})})})},BGe=({className:e})=>o.jsx(Aqe,{className:pi(Wr.Separator,e),role:"separator"}),UGe=({children:e,side:t,sideOffset:n=5,align:i,alignOffset:r,width:s,minWidth:a,maxHeight:l})=>{const{open:c}=Jk();return o.jsx(oxe,{forceMount:!0,children:o.jsx(Lx,{className:Wr.Menu,enterDuration:350,exitDuration:200,disableAnimations:!0,children:c&&o.jsx(kqe,{forceMount:!0,className:Wr.MenuList,side:t,sideOffset:n,align:i,alignOffset:r??(i==="center"?0:-5),avoidCollisions:!0,collisionPadding:{bottom:30,top:30,left:12,right:12},onEscapeKeyDown:ih,style:Wb({"menu-width":s,"menu-min-width":a,"menu-max-height":l}),children:e},"dropdown")})})},QGe=({children:e,disabled:t})=>o.jsx(Sqe,{asChild:!0,disabled:t,children:e}),zxe=p.createContext(null),Vxe=()=>{const e=p.useContext(zxe);if(!e)throw new Error("Submenu components must be wrapped in ");return e},zGe=({children:e,forceOpen:t,onOpen:n,onClose:i})=>{const[r,s]=p.useState(!1),a=p.useRef(null),l=t??r,c=xm(n),u=xm(i),d=p.useCallback(h=>{var m,g;s(h),h?(m=c.current)==null||m.call(c):(g=u.current)==null||g.call(u)},[c,u]);Yk(r,()=>{var h;d(!1),(h=a.current)==null||h.focus()});const f=p.useMemo(()=>({open:l,setOpen:d,triggerRef:a}),[l,d]);return o.jsx(zxe.Provider,{value:f,children:o.jsx(_qe,{open:l,onOpenChange:d,children:e})})},VGe=({className:e,children:t,disabled:n})=>{const{open:i}=Jk(),{triggerRef:r}=Vxe(),s=a=>{i||a.preventDefault()};return o.jsx(Nqe,{ref:r,className:pi(Wr.MenuItem,Wr.SubMenuItem,e),disabled:n,onPointerMove:s,onPointerLeave:s,children:o.jsxs("div",{className:Wr.PressableInner,children:[t,o.jsx(DFe,{width:"16",height:"16",className:Wr.SubTriggerIcon})]})})},HGe=({children:e,sideOffset:t=4,alignOffset:n=-6,width:i="auto",minWidth:r="auto",maxHeight:s})=>{const{open:a}=Vxe();return o.jsx(oxe,{forceMount:!0,children:o.jsx(Lx,{className:Wr.Menu,enterDuration:350,exitDuration:200,disableAnimations:!0,children:a&&o.jsx(jqe,{className:Wr.MenuList,sideOffset:t,alignOffset:n,avoidCollisions:!0,collisionPadding:{bottom:30,top:30,left:12,right:12},onEscapeKeyDown:ih,style:Wb({"menu-width":i,"menu-min-width":r,"menu-max-height":s}),children:e},"submenu")})})},qGe=({children:e,value:t,onChange:n,indicatorPosition:i="end",...r})=>o.jsx(Cqe,{...r,value:t,onValueChange:s=>n(s),"data-indicator-position":i,children:e}),WGe=({className:e,children:t,...n})=>o.jsx(Tqe,{className:pi(Wr.MenuItem,Wr.RadioItem,e),...n,children:o.jsxs("div",{className:Wr.PressableInner,children:[o.jsx("div",{className:Wr.RadioIndicator,children:o.jsx(cxe,{className:Wr.RadioIndicatorActive})}),t]})}),GGe=({className:e,children:t,indicatorPosition:n="end",indicatorVariant:i="solid",...r})=>o.jsx(Eqe,{className:pi(Wr.MenuItem,Wr.CheckboxItem,e),...r,"data-indicator-position":n,"data-indicator-variant":i,children:o.jsxs("div",{className:Wr.PressableInner,children:[o.jsx("div",{className:Wr.CheckboxIndicator,children:o.jsx(cxe,{children:i==="ghost"?o.jsx(Lv,{className:"size-4"}):o.jsx("div",{className:Wr.CheckboxCircle,children:o.jsx(Lv,{className:"size-4"})})})}),t]})});vr.Content=UGe;vr.Item=MGe;vr.ItemActions=LGe;vr.ItemAction=$Ge;vr.Link=FGe;vr.Separator=BGe;vr.Trigger=QGe;vr.Sub=zGe;vr.SubTrigger=VGe;vr.SubContent=HGe;vr.CheckboxItem=GGe;vr.RadioGroup=qGe;vr.RadioItem=WGe;const KGe="_Tooltip_16g2y_1",XGe="_TriggerDecorator_16g2y_73",Hxe={Tooltip:KGe,TriggerDecorator:XGe},go=e=>{const{ref:t,children:n,content:i,forceOpen:r=i===null?!1:void 0,maxWidth:s=300,openDelay:a=150,interactive:l=!1,compact:c=!1,preventUnintentionalClickToClose:u,align:d,alignOffset:f=0,side:h,sideOffset:m=5,gutterSize:g="md",contentClassName:b,onPointerDown:v,onClick:y,...x}=e,[O,w]=p.useState(!1),[k,S]=p.useState(!1);o7(()=>S(!1),k?400:null);const E=r??O,C=_=>{typeof r!="boolean"&&(w(_),u&&S(_))},N=_=>{u&&k&&(_.preventDefault(),_.stopPropagation())};return o.jsxs(qxe,{open:E,delayDuration:a,onOpenChange:C,disableHoverableContent:!l,children:[o.jsx($xe,{asChild:!0,children:o.jsx(Nye,{...x,ref:t,onPointerDown:_=>{N(_),v==null||v(_)},onClick:_=>{N(_),y==null||y(_)},children:n})}),o.jsx(Wxe,{maxWidth:s,compact:c,align:d,alignOffset:f,side:h,sideOffset:m,gutterSize:g,className:b,children:i})]})},qxe=({children:e,open:t,onOpenChange:n,...i})=>(Yk(t,()=>{n(!1)}),o.jsx(HWe,{children:o.jsx(qWe,{open:t,onOpenChange:n,...i,children:e})})),Wxe=({children:e,maxWidth:t=300,compact:n=!1,clickable:i=void 0,alignOffset:r=0,sideOffset:s=5,gutterSize:a="md",className:l,style:c,...u})=>o.jsx(WWe,{children:o.jsx(GWe,{...u,className:pi(Hxe.Tooltip,l),"data-compact":n,"data-clickable":i,"data-gutter-size":a,alignOffset:r,sideOffset:s,collisionPadding:15,hideWhenDetached:!0,style:{...c,maxWidth:t},onEscapeKeyDown:ih,children:e})}),YGe=({children:e,asChild:t=!0,...n})=>o.jsx($xe,{asChild:t,...n,children:e}),ZGe=e=>{const{children:t,className:n,focusable:i=!0,ref:r,...s}=e,a=typeof t=="string";return o.jsx(Nye,{ref:r,...s,className:pi(Hxe.TriggerDecorator,n),tabIndex:i?0:void 0,children:a?o.jsx("span",{children:t}):t})};go.Root=qxe;go.Content=Wxe;go.Trigger=YGe;go.TriggerDecorator=ZGe;const JGe=50,fG=48;function eKe(e){return(e.events??[]).flatMap(t=>{var r,s;const i=(((r=t.content)==null?void 0:r.parts)??[]).map(a=>typeof a.text=="string"?a.text:"").filter(Boolean).join("");return i?[{text:i,role:t.author??((s=t.content)==null?void 0:s.role)??"",ts:t.timestamp}]:[]})}function tKe(e){var t,n;for(const i of e.events??[])if(i.author==="user"||((t=i.content)==null?void 0:t.role)==="user"){const r=(((n=i.content)==null?void 0:n.parts)??[]).map(s=>s.text).find(Boolean);if(r)return r}return V("search.untitledSession")}function nKe(e,t,n){const i=Math.max(0,t-fG),r=Math.min(e.length,t+n+fG);return(i>0?"…":"")+e.slice(i,r).trim()+(r{var c;if((c=l.events)!=null&&c.length)return l;try{return await iR(t,e,l.id)}catch{return l}})),a=[];for(const l of s)for(const{text:c,role:u,ts:d}of eKe(l)){const f=c.toLowerCase().indexOf(i);if(f!==-1){a.push({type:"session",appId:t,sessionId:l.id,title:tKe(l),snippet:nKe(c,f,i.length),role:u,ts:d??l.lastUpdateTime});break}}return a.sort((l,c)=>(c.ts??0)-(l.ts??0)),a.slice(0,JGe)}async function rKe(e,t){if(!e||!t.trim())return{results:[]};let n;try{n=await s0e(e,t.trim())}catch(a){const l=String(a);return{results:[],note:l.includes("404")?V("search.webUnavailable"):V("search.webFailed",{message:l})}}const{mounted:i,results:r,error:s}=n;return i?s?{results:[],note:s}:{results:r.map((a,l)=>({type:"web",index:l,title:a.title,url:a.url,siteName:a.siteName,summary:a.summary}))}:{results:[],note:V("search.webNotMounted")}}async function sKe(e,t,n,i){if(!t||!i.trim())return{results:[]};const r=await r0e(t,e,i.trim(),n);if(!r.mounted)return{results:[],note:V(e==="knowledge"?"search.knowledgeNotMounted":"search.memoryNotMounted")};if(r.error)return{results:[],note:r.error};const s=r.sourceName??V(e==="knowledge"?"search.knowledge":"search.longTermMemory");return{results:r.results.map((a,l)=>e==="knowledge"?{type:"knowledge",index:l,content:a.content,sourceName:s,sourceType:r.sourceType}:{type:"memory",index:l,content:a.content,sourceName:s,sourceType:r.sourceType,author:a.author,ts:a.timestamp})}}async function aKe(e,t,n){return e==="session"?{results:await iKe(n.userId,n.appId,t)}:e==="web"?rKe(n.appId,t):sKe(e,n.appId,n.userId,t)}function Gxe({mirrored:e=!1}){return o.jsxs("g",{opacity:"0.5",transform:e?"translate(20 0) scale(-1 1)":void 0,children:[o.jsx("path",{className:"sidebar-panel-glyph__divider",d:"M5.938 6.833c.11 0 .249.102.249.292v6.042c0 .19-.14.291-.249.291s-.248-.101-.248-.291V7.125c0-.19.139-.292.248-.292Z",strokeWidth:"1.167"}),o.jsx("path",{className:"sidebar-panel-glyph__frame",d:"M14.5 3.75h-9a3 3 0 0 0-3 3v6.857a3 3 0 0 0 3 3h9a3 3 0 0 0 3-3V6.75a3 3 0 0 0-3-3Z",strokeWidth:"1.667",strokeLinecap:"round",strokeLinejoin:"round"})]})}function oKe(e){return o.jsx("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",...e,children:o.jsx(Gxe,{})})}function lKe(e){return o.jsx("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",...e,children:o.jsx(Gxe,{mirrored:!0})})}function cKe(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M12 8.333c.368 0 .667.299.667.667v2h2a.667.667 0 0 1 0 1.333h-2v2a.667.667 0 0 1-1.334 0v-2h-2a.667.667 0 0 1 0-1.333h2V9c0-.368.299-.667.667-.667ZM7.667 1c3.49 0 6.383 2.554 6.913 5.896a.667.667 0 0 1-1.317.208 5.667 5.667 0 1 0-9.708 4.424.67.67 0 0 1 .07.12.667.667 0 0 1-.13.834l-.95.853 4.788-.002a.667.667 0 0 1 0 1.334l-5.657.002c-.917 0-1.35-1.131-.67-1.744l1.163-1.045A6.97 6.97 0 0 1 .667 8c0-3.866 3.134-7 7-7Z",fill:"currentColor"})})}function uKe(e){return o.jsxs("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.333",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"7.333",cy:"7.333",r:"5.333"}),o.jsx("path",{d:"m11.133 11.133 2.867 2.867"})]})}function dKe(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8 0.667c4.05 0 7.334 3.283 7.334 7.333 0 4.05-3.284 7.334-7.334 7.334S0.667 12.05 0.667 8 3.95 0.667 8 0.667Zm0 1.333a6 6 0 1 0 0 12A6 6 0 0 0 8 2ZM6.167 6c.368 0 .667.299.667.667v2a.667.667 0 0 1-1.334 0v-2c0-.368.299-.667.667-.667Zm3.666 0c.368 0 .667.299.667.667v2a.667.667 0 0 1-1.333 0v-2c0-.368.298-.667.666-.667Z",fill:"currentColor"})})}function Kxe(e){return o.jsxs("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M7.58 2.6a.667.667 0 0 0-.667-.667h-.666a.667.667 0 0 0-.667.667v10.667c0 .368.299.666.667.666h.666a.667.667 0 0 0 .667-.666V2.6Zm1.333 10.667A2 2 0 0 1 6.913 15.267h-.666a2 2 0 0 1-2-2V2.6a2 2 0 0 1 2-2h.666a2 2 0 0 1 2 2v10.667Z",fill:"currentColor"}),o.jsx("path",{d:"M11.88 5.045a.667.667 0 0 0-.801-.514l-.653.136a.667.667 0 0 0-.504.786l1.85 8.092c.081.358.44.589.8.514l.653-.137a.667.667 0 0 0 .504-.786L11.88 5.045Zm3.155 7.82a2 2 0 0 1-1.512 2.358l-.653.136a2 2 0 0 1-2.403-1.541L8.617 5.726a2 2 0 0 1 1.513-2.358l.652-.136a2 2 0 0 1 2.404 1.541l1.849 8.092Z",fill:"currentColor"}),o.jsx("path",{d:"M4.247 2.6a.667.667 0 0 0-.667-.667h-.667a.667.667 0 0 0-.666.667v10.667c0 .368.298.666.666.666h.667a.667.667 0 0 0 .667-.666V2.6ZM5.58 13.267a2 2 0 0 1-2 2h-.667a2 2 0 0 1-2-2V2.6a2 2 0 0 1 2-2h.667a2 2 0 0 1 2 2v10.667Z",fill:"currentColor"})]})}function fKe({className:e="icon"}){return o.jsxs("svg",{className:e,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[o.jsx("path",{d:"M16.4 10.7a5.7 5.7 0 1 1-1.67-4.03"}),o.jsx("path",{d:"M15.25 15.25 19.6 19.6"})]})}function hKe({open:e}){return o.jsx("svg",{className:`search-source-chevron ${e?"open":""}`,viewBox:"0 0 12 12",fill:"none",stroke:"currentColor",strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:o.jsx("path",{d:"m3.25 4.75 2.75 2.5 2.75-2.5"})})}function pKe({active:e=!1,onClick:t}){const{t:n}=Te("workspaceTools");return o.jsxs("button",{className:`new-chat${e?" is-active":""}`,onClick:t,"aria-label":n("search.nav"),"aria-current":e?"page":void 0,title:n("search.nav"),children:[o.jsx(uKe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:n("search.nav")})]})}function mKe(e,t,n,i){const r=!!e,s=new Set((t==null?void 0:t.searchSources)??[]),a=l=>r?n?i("search.checkingCapabilities"):i("search.notMounted",{label:l}):i("search.selectAgent");return[{id:"session",label:i("search.sources.session"),ready:r,unavailableLabel:i("search.selectAgent")},{id:"web",label:i("search.sources.web"),ready:r&&s.has("web"),description:i("search.webDescription"),unavailableLabel:a(" web_search")},{id:"knowledge",label:i("search.sources.knowledge"),ready:r&&s.has("knowledge"),unavailableLabel:a(i("search.sources.knowledge"))},{id:"memory",label:i("search.sources.memory"),ready:r&&s.has("memory"),unavailableLabel:a(i("search.sources.memory"))}]}function V_(e,t){return{context_search:"Context Search",local:t("search.backendLocal"),mem0:"Mem0",milvus:"Milvus",opensearch:"OpenSearch",openviking:"OpenViking",redis:"Redis",tos_vector:"TOS Vector",viking:"VikingDB"}[e.toLowerCase()]??e}function hG(e,t){return e?new Date(e*1e3).toLocaleString(t,{timeZone:"Asia/Shanghai",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"}):""}function gKe({userId:e,appId:t,agentInfo:n,capabilitiesLoading:i,agentLabel:r,onOpenSession:s}){var M,U;const{t:a,i18n:l}=Te("workspaceTools"),c=l.resolvedLanguage||l.language,[u,d]=p.useState("session"),[f,h]=p.useState(""),[m,g]=p.useState([]),[b,v]=p.useState(),[y,x]=p.useState(!1),[O,w]=p.useState(!1),[k,S]=p.useState(!1),E=p.useRef(0),C=p.useRef(null),N=mKe(t,n,i,a),_=N.find(I=>I.id===u),j=u==="knowledge"?(M=n==null?void 0:n.components)==null?void 0:M.find(I=>I.source==="knowledgebase"||I.kind==="knowledgebase"):u==="memory"?(U=n==null?void 0:n.components)==null?void 0:U.find(I=>I.source==="long_term_memory"||I.kind==="memory"):void 0;p.useEffect(()=>{E.current+=1,d("session"),g([]),v(void 0),w(!1),x(!1),S(!1)},[t]),p.useEffect(()=>{if(!k)return;function I(H){var K;(K=C.current)!=null&&K.contains(H.target)||S(!1)}return document.addEventListener("pointerdown",I),()=>document.removeEventListener("pointerdown",I)},[k]);async function A(I,H){var B;const K=I.trim();if(!K||!((B=N.find(ee=>ee.id===H))!=null&&B.ready))return;const Q=++E.current;x(!0),w(!0);let q;try{q=await aKe(H,K,{userId:e,appId:t})}catch(ee){const le=ee instanceof Error?ee.message:String(ee);q={results:[],note:a("search.failed",{message:le})}}Q===E.current&&(g(q.results),v(q.note),x(!1))}function F(I){E.current+=1,h(I),g([]),v(void 0),w(!1),x(!1)}function T(I){E.current+=1,d(I),S(!1),g([]),v(void 0),w(!1),x(!1)}const P=!!(_!=null&&_.ready),R=t?u==="web"?a("search.placeholder.web"):u==="knowledge"?a("search.placeholder.knowledge",{name:(j==null?void 0:j.name)??a("search.placeholder.knowledgeFallback")}):u==="memory"?a("search.placeholder.memory",{name:(j==null?void 0:j.name)??a("search.placeholder.memoryFallback")}):a("search.placeholder.session"):a("search.placeholder.selectAgent"),L=j!=null&&j.backend?V_(j.backend,a):"";return o.jsxs("div",{className:"search",children:[o.jsxs("div",{className:"search-box",children:[o.jsxs("div",{className:"search-source-picker-wrap",ref:C,children:[o.jsxs("button",{className:"search-source-picker",type:"button","aria-label":a("search.sourceTypeAria",{label:(_==null?void 0:_.label)??a("search.notSelected")}),"aria-haspopup":"listbox","aria-expanded":k,onClick:()=>S(I=>!I),children:[o.jsx("span",{children:(_==null?void 0:_.label)??a("search.sourceType")}),L&&o.jsx("small",{children:L}),o.jsx(hKe,{open:k})]}),k&&o.jsx("div",{className:"search-source-menu",role:"listbox","aria-label":a("search.selectSource"),children:N.map(I=>{var Q,q;const H=I.id==="knowledge"?(Q=n==null?void 0:n.components)==null?void 0:Q.find(B=>B.source==="knowledgebase"||B.kind==="knowledgebase"):I.id==="memory"?(q=n==null?void 0:n.components)==null?void 0:q.find(B=>B.source==="long_term_memory"||B.kind==="memory"):void 0,K=H?[H.name,H.backend?V_(H.backend,a):""].filter(Boolean).join(" · "):I.ready?I.description:I.unavailableLabel;return o.jsxs("button",{type:"button",role:"option","aria-selected":u===I.id,disabled:!I.ready,onClick:()=>T(I.id),children:[o.jsx("span",{children:I.label}),K&&o.jsx("small",{children:K})]},I.id)})})]}),o.jsx("span",{className:"search-box-divider","aria-hidden":!0}),o.jsx("input",{className:"search-input",value:f,onChange:I=>F(I.target.value),onKeyDown:I=>{I.key==="Enter"&&(I.preventDefault(),A(f,u))},placeholder:R,disabled:!P,autoFocus:!0}),o.jsx("button",{className:"search-go",onClick:()=>void A(f,u),disabled:!f.trim()||y,"aria-label":a("search.nav"),children:y?o.jsx(fi,{className:"icon spin"}):o.jsx(fKe,{className:"icon"})})]}),o.jsx("div",{className:"search-results",children:P?O?y?null:b?o.jsx("div",{className:"search-empty",children:b}):m.length===0&&O?o.jsx("div",{className:"search-empty",children:a("search.noResults",{query:f.trim()})}):m.map((I,H)=>o.jsx(bKe,{result:I,agentLabel:r,onOpen:s,locale:c},H)):o.jsx("div",{className:"search-empty",children:a(u==="web"?"search.instructions.web":u==="knowledge"?"search.instructions.knowledge":u==="memory"?"search.instructions.memory":"search.instructions.session")}):o.jsx("div",{className:"search-empty",children:t?i?a("search.loadingCapabilities"):(_==null?void 0:_.unavailableLabel)??a("search.sourceUnavailable"):a("search.noAgentHint")})})]})}function bKe({result:e,agentLabel:t,onOpen:n,locale:i}){const{t:r}=Te("workspaceTools");switch(e.type){case"session":return o.jsxs("button",{className:"search-result",onClick:()=>n(e.appId,e.sessionId),children:[o.jsx(Abe,{className:"search-result-icon"}),o.jsxs("div",{className:"search-result-body",children:[o.jsxs("div",{className:"search-result-head",children:[o.jsx("span",{className:"search-result-title",children:e.title}),o.jsxs("span",{className:"search-result-meta",children:[t(e.appId),e.ts?` · ${hG(e.ts,i)}`:""]})]}),o.jsx("div",{className:"search-result-snippet",children:e.snippet})]})]});case"web":return o.jsxs("a",{className:"search-result",href:e.url||void 0,target:"_blank",rel:"noreferrer noopener",children:[o.jsx(Zj,{className:"search-result-icon"}),o.jsxs("div",{className:"search-result-body",children:[o.jsxs("div",{className:"search-result-head",children:[o.jsx("span",{className:"search-result-title",children:e.title||e.url}),o.jsxs("span",{className:"search-result-meta",children:[e.siteName,e.url&&o.jsx(gb,{className:"search-result-ext"})]})]}),e.summary&&o.jsx("div",{className:"search-result-snippet",children:e.summary})]})]});case"knowledge":return o.jsxs("div",{className:"search-result search-result-static",children:[o.jsx(pG,{source:"knowledge"}),o.jsxs("div",{className:"search-result-body",children:[o.jsxs("div",{className:"search-result-head",children:[o.jsx("span",{className:"search-result-title",children:r("search.knowledgeFragment",{index:e.index+1})}),o.jsxs("span",{className:"search-result-meta",children:[e.sourceName,e.sourceType?` · ${V_(e.sourceType,r)}`:""]})]}),o.jsx("div",{className:"search-result-snippet search-result-snippet-expanded",children:e.content})]})]});case"memory":return o.jsxs("div",{className:"search-result search-result-static",children:[o.jsx(pG,{source:"memory"}),o.jsxs("div",{className:"search-result-body",children:[o.jsxs("div",{className:"search-result-head",children:[o.jsx("span",{className:"search-result-title",children:r("search.memoryFragment",{index:e.index+1})}),o.jsxs("span",{className:"search-result-meta",children:[e.sourceName,e.sourceType?` · ${V_(e.sourceType,r)}`:"",e.ts?` · ${hG(e.ts,i)}`:""]})]}),o.jsx("div",{className:"search-result-snippet search-result-snippet-expanded",children:e.content})]})]});default:return null}}function pG({source:e,className:t="search-result-icon"}){return e==="knowledge"?o.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"none","aria-hidden":!0,children:[o.jsx("path",{d:"M5 5.5h10.5A3.5 3.5 0 0 1 19 9v9.5H8.5A3.5 3.5 0 0 1 5 15V5.5Z"}),o.jsx("path",{d:"M8.25 9h7.5M8.25 12.25h6"})]}):o.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"none","aria-hidden":!0,children:[o.jsx("path",{d:"M12 4.5a7.5 7.5 0 1 0 7.5 7.5"}),o.jsx("path",{d:"M12 8a4 4 0 1 0 4 4M12 11.3a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Z"})]})}function yKe({filled:e=!1,...t}){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:e?"currentColor":"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...t,children:[o.jsx("rect",{x:"3.5",y:"9.3",width:"4.5",height:"10.2",rx:"1.5"}),o.jsx("path",{d:"M8 10.2 11.3 4.8c.5-.8 1.7-.45 1.7.5v3.8h4.2a2.1 2.1 0 0 1 2.04 2.6l-1.4 5.75A2.1 2.1 0 0 1 15.8 19H8"})]})}function vKe({filled:e=!1,...t}){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:e?"currentColor":"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...t,children:[o.jsx("rect",{x:"3.5",y:"4.5",width:"4.5",height:"10.2",rx:"1.5"}),o.jsx("path",{d:"M8 13.8 11.3 19.2c.5.8 1.7.45 1.7-.5v-3.8h4.2a2.1 2.1 0 0 0 2.04-2.6l-1.4-5.75A2.1 2.1 0 0 0 15.8 5H8"})]})}function Xxe(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5.25 4.25h9.5a2.5 2.5 0 0 1 2.5 2.5v3.5"}),o.jsx("path",{d:"M13.25 17.75h-8a2.5 2.5 0 0 1-2.5-2.5v-8a3 3 0 0 1 3-3"}),o.jsx("path",{d:"M7 8.25h5.5M7 11.75h3.25"}),o.jsx("path",{d:"m13.35 16.65.42-2.16 4.76-4.76a1.35 1.35 0 0 1 1.91 1.91l-4.76 4.76-2.33.25Z"}),o.jsx("path",{d:"m17.65 10.6 1.9 1.9"})]})}const ER="/assets/media/logo-DCsNZy-k.svg",Y7="data:image/svg+xml,%3csvg%20width='28'%20height='23'%20viewBox='0%200%2028%2023'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M17.1957%209.44218C17.0253%209.58161%2016.7774%209.47317%2016.7774%209.24079V8.01696V0.611967C16.7774%200.395085%2016.514%200.271152%2016.3591%200.410576L6.04172%209.16334C5.87132%209.30276%205.62345%209.19432%205.62345%208.96194V2.98218C5.62345%202.81178%205.48403%202.67235%205.31362%202.67235H0.309832C0.139424%202.67235%200%202.81178%200%202.98218V21.7115C0%2021.9284%200.263357%2022.0524%200.418273%2021.9129L10.7202%2013.1602C10.8906%2013.0207%2011.1385%2013.1292%2011.1385%2013.3616V22.0059C11.1385%2022.2228%2011.4018%2022.3467%2011.5567%2022.2073L21.8586%2013.4545C22.0291%2013.3151%2022.2769%2013.4235%2022.2769%2013.6559V19.6357C22.2769%2019.8061%2022.4163%2019.9455%2022.5868%2019.9455H27.5905C27.7609%2019.9455%2027.9004%2019.8061%2027.9004%2019.6357V0.890816C27.9004%200.673934%2027.637%200.550001%2027.4821%200.689425L17.1957%209.44218Z'%20fill='%230066FC'/%3e%3c/svg%3e",mG="(max-width: 860px)";function gG({title:e}){const t=p.useRef(null),n=p.useRef(null),[i,r]=p.useState(0);p.useLayoutEffect(()=>{const l=t.current,c=n.current;if(!l||!c)return;const u=()=>{const f=Math.max(0,Math.ceil(c.scrollWidth-l.clientWidth));r(h=>h===f?h:f)};u();const d=new ResizeObserver(u);return d.observe(l),d.observe(c),()=>d.disconnect()},[e]);const s=Math.min(12,Math.max(4.8,3.6+i/36)),a={"--history-title-translate":`-${i}px`,"--history-title-duration":`${s.toFixed(2)}s`};return o.jsx("span",{ref:t,className:`history-title${i>0?" is-overflowing":""}`,style:a,children:o.jsx("span",{ref:n,className:"history-title-text",children:e})})}function xKe(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"7",cy:"7",r:"2.25"}),o.jsx("circle",{cx:"17",cy:"7",r:"2.25"}),o.jsx("circle",{cx:"7",cy:"17",r:"2.25"}),o.jsx("circle",{cx:"17",cy:"17",r:"2.25"})]})}function wKe(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"12",cy:"12",r:"8.25"}),o.jsx("path",{d:"M3.75 12h16.5M12 3.75c2.1 2.2 3.2 4.95 3.2 8.25S14.1 18.05 12 20.25M12 3.75C9.9 5.95 8.8 8.7 8.8 12s1.1 6.05 3.2 8.25"})]})}function OKe(e){let t=2166136261;for(const i of e)t^=i.charCodeAt(0),t=Math.imul(t,16777619);const n=t>>>0;return{"--avatar-hue-a":194+n%22,"--avatar-hue-b":214+(n>>>6)%25,"--avatar-hue-c":176+(n>>>12)%25,"--avatar-x":`${22+(n>>>18)%55}%`,"--avatar-y":`${18+(n>>>24)%58}%`}}const SKe={admin:"account.roles.admin",developer:"account.roles.developer",user:"account.roles.user"};function kKe({activePage:e,access:t,userInfo:n,onAgentKitCli:i,onDeveloperResources:r,onSystemInfo:s,onIssueFeedback:a,onLogout:l}){const{t:c,i18n:u}=Te(["sidebar","common"]),[d,f]=p.useState("");if(!n)return null;const h=K7e(n)||c("sidebar:account.defaultUser"),m=typeof n.email=="string"?n.email.trim():"",g=OKe(h),b=X7e(n),v=b===d?"":b,y=wj(u.resolvedLanguage??u.language)??xj;return o.jsx("div",{className:"sidebar-user",children:o.jsxs("div",{className:"sidebar-user-row",children:[o.jsxs(vr,{modal:!0,children:[o.jsx(vr.Trigger,{children:o.jsxs("button",{type:"button",className:"sidebar-user-btn",title:h,children:[o.jsx("span",{className:`account-avatar${v?" has-image":""}`,style:g,"aria-hidden":"true",children:v?o.jsx("img",{className:"account-avatar-image",src:v,alt:"","aria-hidden":"true",referrerPolicy:"no-referrer",onError:()=>f(v)}):null}),o.jsx("span",{className:"sidebar-user-identity",children:o.jsx("span",{className:"sidebar-user-name",children:h})})]})}),o.jsxs(vr.Content,{side:"top",align:"start",sideOffset:4,minWidth:216,children:[o.jsxs("div",{className:"account-menu-head",children:[o.jsx("span",{className:`account-avatar account-avatar--lg${v?" has-image":""}`,style:g,"aria-hidden":"true",children:v?o.jsx("img",{className:"account-avatar-image",src:v,alt:"","aria-hidden":"true",referrerPolicy:"no-referrer",onError:()=>f(v)}):null}),o.jsxs("div",{className:"account-id",children:[o.jsxs("div",{className:"account-name-row",children:[o.jsx("div",{className:"account-name",children:h}),o.jsx(ba,{color:"secondary",size:"sm",variant:"soft",pill:!0,children:c(`sidebar:${SKe[t.role]}`)})]}),m&&m!==h&&o.jsx("div",{className:"account-sub",children:m})]})]}),o.jsxs(vr.Item,{className:"account-menu-action",onSelect:s,children:[o.jsx(Wd,{className:"icon","aria-hidden":"true"}),c("sidebar:account.systemInfo")]}),o.jsxs(vr.Sub,{children:[o.jsx(vr.SubTrigger,{className:"account-menu-action",children:o.jsxs("span",{className:"account-menu-action__label",children:[o.jsx(wKe,{className:"icon"}),c("sidebar:account.language")]})}),o.jsx(vr.SubContent,{sideOffset:6,minWidth:136,children:o.jsx(vr.RadioGroup,{value:y,onChange:x=>{aLe(x)},indicatorPosition:"end",children:K8.map(x=>o.jsx(vr.RadioItem,{value:x,children:c(`common:languageNames.${x}`)},x))})})]}),o.jsxs(vr.Item,{className:"account-menu-action",onSelect:a,children:[o.jsx(Xxe,{className:"icon"}),c("sidebar:account.issueFeedback")]}),o.jsxs(vr.Item,{className:"account-menu-action",onSelect:l,children:[o.jsx(C7e,{className:"icon","aria-hidden":"true"}),c("sidebar:account.logout")]})]})]}),o.jsxs("div",{className:"sidebar-user-shortcuts","aria-label":c("sidebar:account.shortcuts"),children:[o.jsx(go,{compact:!0,content:c("sidebar:account.tryCli"),children:o.jsx("button",{type:"button",className:"sidebar-user-shortcut",onClick:i,"aria-label":c("sidebar:account.tryCli"),children:o.jsx(VFe,{className:"icon"})})}),o.jsx(go,{compact:!0,content:c("sidebar:account.developerResources"),children:o.jsx("button",{type:"button",className:`sidebar-user-shortcut${e==="developer-resources"?" is-active":""}`,onClick:r,"aria-label":c("sidebar:account.developerResources"),"aria-current":e==="developer-resources"?"page":void 0,children:o.jsx(RFe,{className:"icon"})})})]})]})})}function EKe({branding:e,cloudProvider:t,sessions:n,currentSessionId:i,activePage:r,features:s,access:a,streamingSids:l,evaluatingSids:c,sandboxHistory:u,onNewChat:d,onSearch:f,onQuickCreate:h,onLibrary:m,onAddAgent:g,onMyAgents:b,onWorkspace:v,onApplications:y,onCronJobs:x,onAgentKitCli:O,onDeveloperResources:w,onSystemInfo:k,onIssueFeedback:S,onPickSession:E,onDeleteSession:C,userInfo:N,onLogout:_}){const{t:j}=Te("sidebar"),A=H=>(s==null?void 0:s[H])!==!1,[F,T]=p.useState(null),P=p.useRef(typeof window<"u"&&window.matchMedia(mG).matches),[R,L]=p.useState(P.current),M=n.map(H=>({id:H.id,title:cR(H.events,j("history.newConversation")),createdAt:(H.lastUpdateTime??0)*1e3})).sort((H,K)=>K.createdAt-H.createdAt),U=()=>{P.current=!1,L(H=>!H),T(null)};p.useEffect(()=>{const H=window.matchMedia(mG),K=Q=>{Q.matches?L(q=>q||(P.current=!0,!0)):P.current&&(P.current=!1,L(!1))};return H.addEventListener("change",K),()=>H.removeEventListener("change",K)},[]);const I=t==="byteplus"?Y7:ER;return o.jsxs("aside",{className:`sidebar ${R?"is-collapsed":""}`,children:[o.jsxs("div",{className:"sidebar-top",children:[o.jsxs("div",{className:"sidebar-brand-row",children:[o.jsxs("button",{type:"button",className:"brand",onClick:d,"aria-label":j("navigation.home"),title:j("navigation.home"),children:[o.jsx("img",{className:"brand-logo",src:e.logoUrl||I,width:20,height:20,alt:"","aria-hidden":!0}),o.jsx("span",{className:"brand-title",children:e.title})]}),o.jsx("button",{type:"button",className:"sidebar-collapse-toggle",onClick:U,"aria-label":j(R?"navigation.expand":"navigation.collapse"),title:j(R?"navigation.expand":"navigation.collapse"),children:R?o.jsx(lKe,{className:"icon"}):o.jsx(oKe,{className:"icon"})})]}),o.jsxs("nav",{className:"sidebar-nav","aria-label":j("navigation.label"),children:[A("newChat")&&o.jsxs("button",{className:`new-chat new-chat--conversation${r==="new-chat"?" is-active":""}`,onClick:d,"aria-label":j("navigation.newChat"),"aria-current":r==="new-chat"?"page":void 0,title:j("navigation.newChat"),children:[o.jsx(cKe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.newChat")})]}),A("search")&&o.jsx(pKe,{active:r==="search",onClick:f}),o.jsxs("button",{className:`new-chat new-chat--agents${r==="agents"?" is-active":""}`,onClick:b,"aria-label":j("navigation.agents"),"aria-current":r==="agents"?"page":void 0,title:j("navigation.agents"),children:[o.jsx(dKe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.agents")})]}),o.jsxs("button",{className:`new-chat new-chat--workspaces${r==="workspaces"?" is-active":""}`,onClick:v,"aria-label":j("navigation.workspaces"),"aria-current":r==="workspaces"?"page":void 0,title:j("navigation.workspaces"),children:[o.jsx(a7e,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.workspaces")})]}),o.jsxs("button",{className:`new-chat new-chat--library${r==="library"?" is-active":""}`,onClick:m,"aria-label":j("navigation.library"),"aria-current":r==="library"?"page":void 0,title:j("navigation.library"),children:[o.jsx(Kxe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.library")})]}),o.jsxs("button",{className:`new-chat new-chat--cronjobs${r==="cronjobs"?" is-active":""}`,onClick:x,"aria-label":j("navigation.cronjobs"),"aria-current":r==="cronjobs"?"page":void 0,title:j("navigation.cronjobs"),children:[o.jsx(IF,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.cronjobs")})]}),o.jsxs("button",{className:`new-chat new-chat--applications${r==="applications"?" is-active":""}`,onClick:y,"aria-label":j("navigation.automations"),"aria-current":r==="applications"?"page":void 0,title:j("navigation.automations"),children:[o.jsx(xKe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.automations")})]})]})]}),A("history")&&o.jsxs("div",{className:"sidebar-history",children:[o.jsxs("div",{className:"history-head",children:[o.jsx("span",{children:j("history.title")}),A("newChat")&&o.jsx("button",{type:"button",className:"history-new-chat",onClick:(u==null?void 0:u.onNew)??d,disabled:u==null?void 0:u.newDisabled,"aria-label":j("history.create"),title:j("history.create"),children:o.jsx(Fo,{className:"icon"})})]}),o.jsx("div",{className:"history-list",children:u?o.jsxs(o.Fragment,{children:[u.loading&&u.threads.length===0?o.jsx("div",{className:"history-empty",role:"status",children:j("history.loading")}):null,u.error?o.jsx("div",{className:"history-error",role:"alert",children:u.error}):null,!u.loading&&!u.error&&u.threads.length===0?o.jsx("div",{className:"history-empty",children:j("history.empty")}):null,u.threads.map(H=>{const K=H.id===u.currentThreadId,Q=H.name||H.preview||`Thread ${H.id.slice(0,8)}`,q=H.id===u.busyThreadId;return o.jsxs("div",{className:`history-item ${K?"active":""}`,children:[o.jsxs("button",{type:"button",className:"history-item-btn",onClick:()=>u.onSelect(H.id),"aria-current":K?"page":void 0,title:Q,disabled:q,children:[o.jsx(gG,{title:Q}),K?o.jsx("span",{className:"history-current-badge",children:j("history.current")}):null]}),o.jsx("button",{type:"button",className:"history-more","aria-label":j("history.manage",{title:Q}),title:j("history.more"),disabled:q,onClick:()=>T(B=>B===H.id?null:H.id),children:o.jsx(xW,{className:"icon"})}),F===H.id?o.jsxs(o.Fragment,{children:[o.jsx("div",{className:"menu-scrim",onClick:()=>T(null)}),o.jsx("div",{className:"history-menu",children:o.jsxs("button",{type:"button",className:"menu-item menu-item--danger",onClick:()=>{T(null),u.onDelete(H)},children:[o.jsx(pm,{className:"icon"})," ",j("history.delete")]})})]}):null]},H.id)}),u.hasMore?o.jsx("button",{type:"button",className:"history-load-more",disabled:u.loading,onClick:u.onLoadMore,children:u.loading?j("history.loadingMore"):j("history.loadMore")}):null]}):o.jsxs(o.Fragment,{children:[M.length===0?o.jsx("div",{className:"history-empty",children:j("history.empty")}):null,M.map(H=>{const K=H.id===i,Q=(l==null?void 0:l.has(H.id))===!0,q=!Q&&(c==null?void 0:c.has(H.id))===!0;return o.jsxs("div",{className:`history-item ${K?"active":""}`,children:[o.jsxs("button",{className:"history-item-btn",onClick:()=>E(H.id),"aria-current":K?"page":void 0,title:H.title,children:[o.jsx(gG,{title:H.title}),q&&o.jsxs("span",{className:"history-evaluating-status",title:j("history.evaluatingTitle"),children:[o.jsx("span",{className:"history-evaluating","aria-hidden":"true"}),j("history.evaluating")]})]}),o.jsxs("div",{className:"history-action-slot",children:[Q?o.jsx(Hk,{className:"history-streaming-indicator",size:12,role:"status","aria-label":j("history.generating")}):null,o.jsx("button",{type:"button",className:"history-more","aria-label":j("history.manage",{title:H.title}),title:j("history.more"),onClick:()=>T(B=>B===H.id?null:H.id),children:o.jsx(xW,{className:"icon"})})]}),F===H.id&&o.jsxs(o.Fragment,{children:[o.jsx("div",{className:"menu-scrim",onClick:()=>T(null)}),o.jsx("div",{className:"history-menu",children:o.jsxs("button",{type:"button",className:"menu-item menu-item--danger",onClick:()=>{T(null),C(H.id)},children:[o.jsx(pm,{className:"icon"})," ",j("history.delete")]})})]})]},H.id)})]})})]}),o.jsx("div",{className:"sidebar-footer",children:o.jsx(kKe,{activePage:r,access:a,userInfo:N,onAgentKitCli:O,onDeveloperResources:w,onSystemInfo:k,onIssueFeedback:S,onLogout:_})})]})}function ta(e){if(typeof e=="string"||typeof e=="number")return""+e;let t="";if(Array.isArray(e))for(let n=0,i;n{}};function CR(){for(var e=0,t=arguments.length,n={},i;e=0&&(i=n.slice(r+1),n=n.slice(0,r)),n&&!t.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:i}})}cA.prototype=CR.prototype={constructor:cA,on:function(e,t){var n=this._,i=TKe(e+"",n),r,s=-1,a=i.length;if(arguments.length<2){for(;++s0)for(var n=new Array(r),i=0,r,s;i=0&&(t=e.slice(0,n))!=="xmlns"&&(e=e.slice(n+1)),yG.hasOwnProperty(t)?{space:yG[t],local:e}:e}function _Ke(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===e6&&t.documentElement.namespaceURI===e6?t.createElement(e):t.createElementNS(n,e)}}function NKe(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function Yxe(e){var t=TR(e);return(t.local?NKe:_Ke)(t)}function jKe(){}function Z7(e){return e==null?jKe:function(){return this.querySelector(e)}}function RKe(e){typeof e!="function"&&(e=Z7(e));for(var t=this._groups,n=t.length,i=new Array(n),r=0;r=O&&(O=x+1);!(k=v[O])&&++O=0;)(a=i[r])&&(s&&a.compareDocumentPosition(s)^4&&s.parentNode.insertBefore(a,s),s=a);return this}function iXe(e){e||(e=rXe);function t(f,h){return f&&h?e(f.__data__,h.__data__):!f-!h}for(var n=this._groups,i=n.length,r=new Array(i),s=0;st?1:e>=t?0:NaN}function sXe(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function aXe(){return Array.from(this)}function oXe(){for(var e=this._groups,t=0,n=e.length;t1?this.each((t==null?yXe:typeof t=="function"?xXe:vXe)(e,t,n??"")):Qv(this.node(),e)}function Qv(e,t){return e.style.getPropertyValue(t)||n1e(e).getComputedStyle(e,null).getPropertyValue(t)}function OXe(e){return function(){delete this[e]}}function SXe(e,t){return function(){this[e]=t}}function kXe(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function EXe(e,t){return arguments.length>1?this.each((t==null?OXe:typeof t=="function"?kXe:SXe)(e,t)):this.node()[e]}function i1e(e){return e.trim().split(/^|\s+/)}function J7(e){return e.classList||new r1e(e)}function r1e(e){this._node=e,this._names=i1e(e.getAttribute("class")||"")}r1e.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function s1e(e,t){for(var n=J7(e),i=-1,r=t.length;++i=0&&(n=t.slice(i+1),t=t.slice(0,i)),{type:t,name:n}})}function JXe(e){return function(){var t=this.__on;if(t){for(var n=0,i=-1,r=t.length,s;n()=>e;function t6(e,{sourceEvent:t,subject:n,target:i,identifier:r,active:s,x:a,y:l,dx:c,dy:u,dispatch:d}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},subject:{value:n,enumerable:!0,configurable:!0},target:{value:i,enumerable:!0,configurable:!0},identifier:{value:r,enumerable:!0,configurable:!0},active:{value:s,enumerable:!0,configurable:!0},x:{value:a,enumerable:!0,configurable:!0},y:{value:l,enumerable:!0,configurable:!0},dx:{value:c,enumerable:!0,configurable:!0},dy:{value:u,enumerable:!0,configurable:!0},_:{value:d}})}t6.prototype.on=function(){var e=this._.on.apply(this._,arguments);return e===this._?this:e};function cYe(e){return!e.ctrlKey&&!e.button}function uYe(){return this.parentNode}function dYe(e,t){return t??{x:e.x,y:e.y}}function fYe(){return navigator.maxTouchPoints||"ontouchstart"in this}function d1e(){var e=cYe,t=uYe,n=dYe,i=fYe,r={},s=CR("start","drag","end"),a=0,l,c,u,d,f=0;function h(w){w.on("mousedown.drag",m).filter(i).on("touchstart.drag",v).on("touchmove.drag",y,lYe).on("touchend.drag touchcancel.drag",x).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function m(w,k){if(!(d||!e.call(this,w,k))){var S=O(this,t.call(this,w,k),w,k,"mouse");S&&(Yl(w.view).on("mousemove.drag",g,CS).on("mouseup.drag",b,CS),c1e(w.view),JD(w),u=!1,l=w.clientX,c=w.clientY,S("start",w))}}function g(w){if(ev(w),!u){var k=w.clientX-l,S=w.clientY-c;u=k*k+S*S>f}r.mouse("drag",w)}function b(w){Yl(w.view).on("mousemove.drag mouseup.drag",null),u1e(w.view,u),ev(w),r.mouse("end",w)}function v(w,k){if(e.call(this,w,k)){var S=w.changedTouches,E=t.call(this,w,k),C=S.length,N,_;for(N=0;N>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?fT(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?fT(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=pYe.exec(e))?new dl(t[1],t[2],t[3],1):(t=mYe.exec(e))?new dl(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=gYe.exec(e))?fT(t[1],t[2],t[3],t[4]):(t=bYe.exec(e))?fT(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=yYe.exec(e))?EG(t[1],t[2]/100,t[3]/100,1):(t=vYe.exec(e))?EG(t[1],t[2]/100,t[3]/100,t[4]):vG.hasOwnProperty(e)?OG(vG[e]):e==="transparent"?new dl(NaN,NaN,NaN,0):null}function OG(e){return new dl(e>>16&255,e>>8&255,e&255,1)}function fT(e,t,n,i){return i<=0&&(e=t=n=NaN),new dl(e,t,n,i)}function OYe(e){return e instanceof tE||(e=xb(e)),e?(e=e.rgb(),new dl(e.r,e.g,e.b,e.opacity)):new dl}function n6(e,t,n,i){return arguments.length===1?OYe(e):new dl(e,t,n,i??1)}function dl(e,t,n,i){this.r=+e,this.g=+t,this.b=+n,this.opacity=+i}eB(dl,n6,f1e(tE,{brighter(e){return e=e==null?q_:Math.pow(q_,e),new dl(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?TS:Math.pow(TS,e),new dl(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new dl(ib(this.r),ib(this.g),ib(this.b),W_(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:SG,formatHex:SG,formatHex8:SYe,formatRgb:kG,toString:kG}));function SG(){return`#${Mg(this.r)}${Mg(this.g)}${Mg(this.b)}`}function SYe(){return`#${Mg(this.r)}${Mg(this.g)}${Mg(this.b)}${Mg((isNaN(this.opacity)?1:this.opacity)*255)}`}function kG(){const e=W_(this.opacity);return`${e===1?"rgb(":"rgba("}${ib(this.r)}, ${ib(this.g)}, ${ib(this.b)}${e===1?")":`, ${e})`}`}function W_(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function ib(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Mg(e){return e=ib(e),(e<16?"0":"")+e.toString(16)}function EG(e,t,n,i){return i<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new Cu(e,t,n,i)}function h1e(e){if(e instanceof Cu)return new Cu(e.h,e.s,e.l,e.opacity);if(e instanceof tE||(e=xb(e)),!e)return new Cu;if(e instanceof Cu)return e;e=e.rgb();var t=e.r/255,n=e.g/255,i=e.b/255,r=Math.min(t,n,i),s=Math.max(t,n,i),a=NaN,l=s-r,c=(s+r)/2;return l?(t===s?a=(n-i)/l+(n0&&c<1?0:a,new Cu(a,l,c,e.opacity)}function kYe(e,t,n,i){return arguments.length===1?h1e(e):new Cu(e,t,n,i??1)}function Cu(e,t,n,i){this.h=+e,this.s=+t,this.l=+n,this.opacity=+i}eB(Cu,kYe,f1e(tE,{brighter(e){return e=e==null?q_:Math.pow(q_,e),new Cu(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?TS:Math.pow(TS,e),new Cu(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,i=n+(n<.5?n:1-n)*t,r=2*n-i;return new dl(eM(e>=240?e-240:e+120,r,i),eM(e,r,i),eM(e<120?e+240:e-120,r,i),this.opacity)},clamp(){return new Cu(CG(this.h),hT(this.s),hT(this.l),W_(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=W_(this.opacity);return`${e===1?"hsl(":"hsla("}${CG(this.h)}, ${hT(this.s)*100}%, ${hT(this.l)*100}%${e===1?")":`, ${e})`}`}}));function CG(e){return e=(e||0)%360,e<0?e+360:e}function hT(e){return Math.max(0,Math.min(1,e||0))}function eM(e,t,n){return(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)*255}const AR=e=>()=>e;function p1e(e,t){return function(n){return e+n*t}}function EYe(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(i){return Math.pow(e+i*t,n)}}function sHt(e,t){var n=t-e;return n?p1e(e,n>180||n<-180?n-360*Math.round(n/360):n):AR(isNaN(e)?t:e)}function CYe(e){return(e=+e)==1?m1e:function(t,n){return n-t?EYe(t,n,e):AR(isNaN(t)?n:t)}}function m1e(e,t){var n=t-e;return n?p1e(e,n):AR(isNaN(e)?t:e)}const G_=function e(t){var n=CYe(t);function i(r,s){var a=n((r=n6(r)).r,(s=n6(s)).r),l=n(r.g,s.g),c=n(r.b,s.b),u=m1e(r.opacity,s.opacity);return function(d){return r.r=a(d),r.g=l(d),r.b=c(d),r.opacity=u(d),r+""}}return i.gamma=e,i}(1);function TYe(e,t){t||(t=[]);var n=e?Math.min(t.length,e.length):0,i=t.slice(),r;return function(s){for(r=0;rn&&(s=t.slice(n,s),l[a]?l[a]+=s:l[++a]=s),(i=i[0])===(r=r[0])?l[a]?l[a]+=r:l[++a]=r:(l[++a]=null,c.push({i:a,x:pd(i,r)})),n=tM.lastIndex;return n180?d+=360:d-u>180&&(u+=360),h.push({i:f.push(r(f)+"rotate(",null,i)-2,x:pd(u,d)})):d&&f.push(r(f)+"rotate("+d+i)}function l(u,d,f,h){u!==d?h.push({i:f.push(r(f)+"skewX(",null,i)-2,x:pd(u,d)}):d&&f.push(r(f)+"skewX("+d+i)}function c(u,d,f,h,m,g){if(u!==f||d!==h){var b=m.push(r(m)+"scale(",null,",",null,")");g.push({i:b-4,x:pd(u,f)},{i:b-2,x:pd(d,h)})}else(f!==1||h!==1)&&m.push(r(m)+"scale("+f+","+h+")")}return function(u,d){var f=[],h=[];return u=e(u),d=e(d),s(u.translateX,u.translateY,d.translateX,d.translateY,f,h),a(u.rotate,d.rotate,f,h),l(u.skewX,d.skewX,f,h),c(u.scaleX,u.scaleY,d.scaleX,d.scaleY,f,h),u=d=null,function(m){for(var g=-1,b=h.length,v;++g=0&&e._call.call(void 0,t),e=e._next;--zv}function _G(){wb=(X_=_S.now())+_R,zv=Rw=0;try{QYe()}finally{zv=0,VYe(),wb=0}}function zYe(){var e=_S.now(),t=e-X_;t>v1e&&(_R-=t,X_=e)}function VYe(){for(var e,t=K_,n,i=1/0;t;)t._call?(i>t._time&&(i=t._time),e=t,t=t._next):(n=t._next,t._next=null,t=e?e._next=n:K_=n);Iw=e,s6(i)}function s6(e){if(!zv){Rw&&(Rw=clearTimeout(Rw));var t=e-wb;t>24?(e<1/0&&(Rw=setTimeout(_G,e-_S.now()-_R)),$1&&($1=clearInterval($1))):($1||(X_=_S.now(),$1=setInterval(zYe,v1e)),zv=1,x1e(_G))}}function NG(e,t,n){var i=new Y_;return t=t==null?0:+t,i.restart(r=>{i.stop(),e(r+t)},t,n),i}var HYe=CR("start","end","cancel","interrupt"),qYe=[],O1e=0,jG=1,a6=2,dA=3,RG=4,o6=5,fA=6;function NR(e,t,n,i,r,s){var a=e.__transition;if(!a)e.__transition={};else if(n in a)return;WYe(e,n,{name:t,index:i,group:r,on:HYe,tween:qYe,time:s.time,delay:s.delay,duration:s.duration,ease:s.ease,timer:null,state:O1e})}function nB(e,t){var n=Wu(e,t);if(n.state>O1e)throw new Error("too late; already scheduled");return n}function Xd(e,t){var n=Wu(e,t);if(n.state>dA)throw new Error("too late; already running");return n}function Wu(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw new Error("transition not found");return n}function WYe(e,t,n){var i=e.__transition,r;i[t]=n,n.timer=w1e(s,0,n.time);function s(u){n.state=jG,n.timer.restart(a,n.delay,n.time),n.delay<=u&&a(u-n.delay)}function a(u){var d,f,h,m;if(n.state!==jG)return c();for(d in i)if(m=i[d],m.name===n.name){if(m.state===dA)return NG(a);m.state===RG?(m.state=fA,m.timer.stop(),m.on.call("interrupt",e,e.__data__,m.index,m.group),delete i[d]):+da6&&i.state=0&&(t=t.slice(0,n)),!t||t==="start"})}function SZe(e,t,n){var i,r,s=OZe(t)?nB:Xd;return function(){var a=s(this,e),l=a.on;l!==i&&(r=(i=l).copy()).on(t,n),a.on=r}}function kZe(e,t){var n=this._id;return arguments.length<2?Wu(this.node(),n).on.on(e):this.each(SZe(n,e,t))}function EZe(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function CZe(){return this.on("end.remove",EZe(this._id))}function TZe(e){var t=this._name,n=this._id;typeof e!="function"&&(e=Z7(e));for(var i=this._groups,r=i.length,s=new Array(r),a=0;a()=>e;function ZZe(e,{sourceEvent:t,target:n,transform:i,dispatch:r}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},transform:{value:i,enumerable:!0,configurable:!0},_:{value:r}})}function Kf(e,t,n){this.k=e,this.x=t,this.y=n}Kf.prototype={constructor:Kf,scale:function(e){return e===1?this:new Kf(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Kf(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var jR=new Kf(1,0,0);C1e.prototype=Kf.prototype;function C1e(e){for(;!e.__zoom;)if(!(e=e.parentNode))return jR;return e.__zoom}function nM(e){e.stopImmediatePropagation()}function F1(e){e.preventDefault(),e.stopImmediatePropagation()}function JZe(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function eJe(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]):[[0,0],[e.clientWidth,e.clientHeight]]}function IG(){return this.__zoom||jR}function tJe(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function nJe(){return navigator.maxTouchPoints||"ontouchstart"in this}function iJe(e,t,n){var i=e.invertX(t[0][0])-n[0][0],r=e.invertX(t[1][0])-n[1][0],s=e.invertY(t[0][1])-n[0][1],a=e.invertY(t[1][1])-n[1][1];return e.translate(r>i?(i+r)/2:Math.min(0,i)||Math.max(0,r),a>s?(s+a)/2:Math.min(0,s)||Math.max(0,a))}function T1e(){var e=JZe,t=eJe,n=iJe,i=tJe,r=nJe,s=[0,1/0],a=[[-1/0,-1/0],[1/0,1/0]],l=250,c=uA,u=CR("start","zoom","end"),d,f,h,m=500,g=150,b=0,v=10;function y(T){T.property("__zoom",IG).on("wheel.zoom",C,{passive:!1}).on("mousedown.zoom",N).on("dblclick.zoom",_).filter(r).on("touchstart.zoom",j).on("touchmove.zoom",A).on("touchend.zoom touchcancel.zoom",F).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}y.transform=function(T,P,R,L){var M=T.selection?T.selection():T;M.property("__zoom",IG),T!==M?k(T,P,R,L):M.interrupt().each(function(){S(this,arguments).event(L).start().zoom(null,typeof P=="function"?P.apply(this,arguments):P).end()})},y.scaleBy=function(T,P,R,L){y.scaleTo(T,function(){var M=this.__zoom.k,U=typeof P=="function"?P.apply(this,arguments):P;return M*U},R,L)},y.scaleTo=function(T,P,R,L){y.transform(T,function(){var M=t.apply(this,arguments),U=this.__zoom,I=R==null?w(M):typeof R=="function"?R.apply(this,arguments):R,H=U.invert(I),K=typeof P=="function"?P.apply(this,arguments):P;return n(O(x(U,K),I,H),M,a)},R,L)},y.translateBy=function(T,P,R,L){y.transform(T,function(){return n(this.__zoom.translate(typeof P=="function"?P.apply(this,arguments):P,typeof R=="function"?R.apply(this,arguments):R),t.apply(this,arguments),a)},null,L)},y.translateTo=function(T,P,R,L,M){y.transform(T,function(){var U=t.apply(this,arguments),I=this.__zoom,H=L==null?w(U):typeof L=="function"?L.apply(this,arguments):L;return n(jR.translate(H[0],H[1]).scale(I.k).translate(typeof P=="function"?-P.apply(this,arguments):-P,typeof R=="function"?-R.apply(this,arguments):-R),U,a)},L,M)};function x(T,P){return P=Math.max(s[0],Math.min(s[1],P)),P===T.k?T:new Kf(P,T.x,T.y)}function O(T,P,R){var L=P[0]-R[0]*T.k,M=P[1]-R[1]*T.k;return L===T.x&&M===T.y?T:new Kf(T.k,L,M)}function w(T){return[(+T[0][0]+ +T[1][0])/2,(+T[0][1]+ +T[1][1])/2]}function k(T,P,R,L){T.on("start.zoom",function(){S(this,arguments).event(L).start()}).on("interrupt.zoom end.zoom",function(){S(this,arguments).event(L).end()}).tween("zoom",function(){var M=this,U=arguments,I=S(M,U).event(L),H=t.apply(M,U),K=R==null?w(H):typeof R=="function"?R.apply(M,U):R,Q=Math.max(H[1][0]-H[0][0],H[1][1]-H[0][1]),q=M.__zoom,B=typeof P=="function"?P.apply(M,U):P,ee=c(q.invert(K).concat(Q/q.k),B.invert(K).concat(Q/B.k));return function(le){if(le===1)le=B;else{var se=ee(le),re=Q/se[2];le=new Kf(re,K[0]-se[0]*re,K[1]-se[1]*re)}I.zoom(null,le)}})}function S(T,P,R){return!R&&T.__zooming||new E(T,P)}function E(T,P){this.that=T,this.args=P,this.active=0,this.sourceEvent=null,this.extent=t.apply(T,P),this.taps=0}E.prototype={event:function(T){return T&&(this.sourceEvent=T),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(T,P){return this.mouse&&T!=="mouse"&&(this.mouse[1]=P.invert(this.mouse[0])),this.touch0&&T!=="touch"&&(this.touch0[1]=P.invert(this.touch0[0])),this.touch1&&T!=="touch"&&(this.touch1[1]=P.invert(this.touch1[0])),this.that.__zoom=P,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(T){var P=Yl(this.that).datum();u.call(T,this.that,new ZZe(T,{sourceEvent:this.sourceEvent,target:y,transform:this.that.__zoom,dispatch:u}),P)}};function C(T,...P){if(!e.apply(this,arguments))return;var R=S(this,P).event(T),L=this.__zoom,M=Math.max(s[0],Math.min(s[1],L.k*Math.pow(2,i.apply(this,arguments)))),U=Ou(T);if(R.wheel)(R.mouse[0][0]!==U[0]||R.mouse[0][1]!==U[1])&&(R.mouse[1]=L.invert(R.mouse[0]=U)),clearTimeout(R.wheel);else{if(L.k===M)return;R.mouse=[U,L.invert(U)],hA(this),R.start()}F1(T),R.wheel=setTimeout(I,g),R.zoom("mouse",n(O(x(L,M),R.mouse[0],R.mouse[1]),R.extent,a));function I(){R.wheel=null,R.end()}}function N(T,...P){if(h||!e.apply(this,arguments))return;var R=T.currentTarget,L=S(this,P,!0).event(T),M=Yl(T.view).on("mousemove.zoom",K,!0).on("mouseup.zoom",Q,!0),U=Ou(T,R),I=T.clientX,H=T.clientY;c1e(T.view),nM(T),L.mouse=[U,this.__zoom.invert(U)],hA(this),L.start();function K(q){if(F1(q),!L.moved){var B=q.clientX-I,ee=q.clientY-H;L.moved=B*B+ee*ee>b}L.event(q).zoom("mouse",n(O(L.that.__zoom,L.mouse[0]=Ou(q,R),L.mouse[1]),L.extent,a))}function Q(q){M.on("mousemove.zoom mouseup.zoom",null),u1e(q.view,L.moved),F1(q),L.event(q).end()}}function _(T,...P){if(e.apply(this,arguments)){var R=this.__zoom,L=Ou(T.changedTouches?T.changedTouches[0]:T,this),M=R.invert(L),U=R.k*(T.shiftKey?.5:2),I=n(O(x(R,U),L,M),t.apply(this,P),a);F1(T),l>0?Yl(this).transition().duration(l).call(k,I,L,T):Yl(this).call(y.transform,I,L,T)}}function j(T,...P){if(e.apply(this,arguments)){var R=T.touches,L=R.length,M=S(this,P,T.changedTouches.length===L).event(T),U,I,H,K;for(nM(T),I=0;I`Seems like you have not used zustand provider as an ancestor. Help: https://${e}flow.dev/error#001`,error002:()=>"It looks like you've created a new nodeTypes or edgeTypes object. If this wasn't on purpose please define the nodeTypes/edgeTypes outside of the component or memoize them.",error003:e=>`Node type "${e}" not found. Using fallback type "default".`,error004:()=>"The parent container needs a width and a height to render the graph.",error005:()=>"Only child nodes can use a parent extent.",error006:()=>"Can't create edge. An edge needs a source and a target.",error007:e=>`The old edge with id=${e} does not exist.`,error009:e=>`Marker type "${e}" doesn't exist.`,error008:(e,{id:t,sourceHandle:n,targetHandle:i})=>`Couldn't create edge for ${e} handle id: "${e==="source"?n:i}", edge id: ${t}.`,error010:()=>"Handle: No node id found. Make sure to only use a Handle inside a custom Node.",error011:e=>`Edge type "${e}" not found. Using fallback type "default".`,error012:e=>`Node with id "${e}" does not exist, it may have been removed. This can happen when a node is deleted before the "onNodeClick" handler is called.`,error013:(e="react")=>`It seems that you haven't loaded the styles. Please import '@xyflow/${e}/dist/style.css' or base.css to make sure everything is working properly.`,error014:()=>"useNodeConnections: No node ID found. Call useNodeConnections inside a custom Node or provide a node ID.",error015:()=>"It seems that you are trying to drag a node that is not initialized. Please use onNodesChange as explained in the docs.",error016:e=>`Edge with id "${e}" does not exist, it may have been removed. This can happen when an edge is deleted before the "onEdgeClick" handler is called.`},NS=[[Number.NEGATIVE_INFINITY,Number.NEGATIVE_INFINITY],[Number.POSITIVE_INFINITY,Number.POSITIVE_INFINITY]],A1e=["Enter"," ","Escape"],_1e={"node.a11yDescription.default":"Press enter or space to select a node. Press delete to remove it and escape to cancel.","node.a11yDescription.keyboardDisabled":"Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.","node.a11yDescription.ariaLiveMessage":({direction:e,x:t,y:n})=>`Moved selected node ${e}. New position, x: ${t}, y: ${n}`,"edge.a11yDescription.default":"Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.","controls.ariaLabel":"Control Panel","controls.zoomIn.ariaLabel":"Zoom In","controls.zoomOut.ariaLabel":"Zoom Out","controls.fitView.ariaLabel":"Fit View","controls.interactive.ariaLabel":"Toggle Interactivity","minimap.ariaLabel":"Mini Map","handle.ariaLabel":"Handle"};var Vv;(function(e){e.Strict="strict",e.Loose="loose"})(Vv||(Vv={}));var rb;(function(e){e.Free="free",e.Vertical="vertical",e.Horizontal="horizontal"})(rb||(rb={}));var jS;(function(e){e.Partial="partial",e.Full="full"})(jS||(jS={}));const N1e={inProgress:!1,isValid:null,from:null,fromHandle:null,fromPosition:null,fromNode:null,to:null,toHandle:null,toPosition:null,toNode:null,pointer:null};var Np;(function(e){e.Bezier="default",e.Straight="straight",e.Step="step",e.SmoothStep="smoothstep",e.SimpleBezier="simplebezier"})(Np||(Np={}));var RS;(function(e){e.Arrow="arrow",e.ArrowClosed="arrowclosed"})(RS||(RS={}));var sn;(function(e){e.Left="left",e.Top="top",e.Right="right",e.Bottom="bottom"})(sn||(sn={}));const PG={[sn.Left]:sn.Right,[sn.Right]:sn.Left,[sn.Top]:sn.Bottom,[sn.Bottom]:sn.Top};function j1e(e){return e===null?null:e?"valid":"invalid"}const R1e=e=>"id"in e&&"source"in e&&"target"in e,rJe=e=>"id"in e&&"position"in e&&!("source"in e)&&!("target"in e),rB=e=>"id"in e&&"internals"in e&&!("source"in e)&&!("target"in e),nE=(e,t=[0,0])=>{const{width:n,height:i}=Fh(e),r=e.origin??t,s=n*r[0],a=i*r[1];return{x:e.position.x-s,y:e.position.y-a}},sJe=(e,t={nodeOrigin:[0,0]})=>{if(e.length===0)return{x:0,y:0,width:0,height:0};const n=e.reduce((i,r)=>{const s=typeof r=="string";let a=!t.nodeLookup&&!s?r:void 0;t.nodeLookup&&(a=s?t.nodeLookup.get(r):rB(r)?r:t.nodeLookup.get(r.id));const l=a?Z_(a,t.nodeOrigin):{x:0,y:0,x2:0,y2:0};return RR(i,l)},{x:1/0,y:1/0,x2:-1/0,y2:-1/0});return IR(n)},iE=(e,t={})=>{let n={x:1/0,y:1/0,x2:-1/0,y2:-1/0},i=!1;return e.forEach(r=>{(t.filter===void 0||t.filter(r))&&(n=RR(n,Z_(r)),i=!0)}),i?IR(n):{x:0,y:0,width:0,height:0}},sB=(e,t,[n,i,r]=[0,0,1],s=!1,a=!1)=>{const l={...$x(t,[n,i,r]),width:t.width/r,height:t.height/r},c=[];for(const u of e.values()){const{measured:d,selectable:f=!0,hidden:h=!1}=u;if(a&&!f||h)continue;const m=d.width??u.width??u.initialWidth??null,g=d.height??u.height??u.initialHeight??null,b=IS(l,qv(u)),v=(m??0)*(g??0),y=s&&b>0;(!u.internals.handleBounds||y||b>=v||u.dragging)&&c.push(u)}return c},aJe=(e,t)=>{const n=new Set;return e.forEach(i=>{n.add(i.id)}),t.filter(i=>n.has(i.source)||n.has(i.target))};function oJe(e,t){const n=new Map,i=t!=null&&t.nodes?new Set(t.nodes.map(r=>r.id)):null;return e.forEach(r=>{r.measured.width&&r.measured.height&&((t==null?void 0:t.includeHiddenNodes)||!r.hidden)&&(!i||i.has(r.id))&&n.set(r.id,r)}),n}async function lJe({nodes:e,width:t,height:n,panZoom:i,minZoom:r,maxZoom:s},a){if(e.size===0)return!0;const l=oJe(e,a),c=iE(l),u=oB(c,t,n,(a==null?void 0:a.minZoom)??r,(a==null?void 0:a.maxZoom)??s,(a==null?void 0:a.padding)??.1);return await i.setViewport(u,{duration:a==null?void 0:a.duration,ease:a==null?void 0:a.ease,interpolate:a==null?void 0:a.interpolate}),!0}function I1e({nodeId:e,nextPosition:t,nodeLookup:n,nodeOrigin:i=[0,0],nodeExtent:r,onError:s}){const a=n.get(e),l=a.parentId?n.get(a.parentId):void 0,{x:c,y:u}=l?l.internals.positionAbsolute:{x:0,y:0},d=a.origin??i;let f=a.extent||r;if(a.extent==="parent"&&!a.expandParent)if(!l)s==null||s("005",Fu.error005());else{const m=l.measured.width,g=l.measured.height;m&&g&&(f=[[c,u],[c+m,u+g]])}else l&&Sb(a.extent)&&(f=[[a.extent[0][0]+c,a.extent[0][1]+u],[a.extent[1][0]+c,a.extent[1][1]+u]]);const h=Sb(f)?Ob(t,f,a.measured):t;return(a.measured.width===void 0||a.measured.height===void 0)&&(s==null||s("015",Fu.error015())),{position:{x:h.x-c+(a.measured.width??0)*d[0],y:h.y-u+(a.measured.height??0)*d[1]},positionAbsolute:h}}async function cJe({nodesToRemove:e=[],edgesToRemove:t=[],nodes:n,edges:i,onBeforeDelete:r}){const s=new Set(e.map(h=>h.id)),a=[];for(const h of n){if(h.deletable===!1)continue;const m=s.has(h.id),g=!m&&h.parentId&&a.find(b=>b.id===h.parentId);(m||g)&&a.push(h)}const l=new Set(t.map(h=>h.id)),c=i.filter(h=>h.deletable!==!1),d=aJe(a,c);for(const h of c)l.has(h.id)&&!d.find(g=>g.id===h.id)&&d.push(h);if(!r)return{edges:d,nodes:a};const f=await r({nodes:a,edges:d});return typeof f=="boolean"?f?{edges:d,nodes:a}:{edges:[],nodes:[]}:f}const Hv=(e,t=0,n=1)=>Math.min(Math.max(e,t),n),Ob=(e={x:0,y:0},t,n)=>({x:Hv(e.x,t[0][0],t[1][0]-((n==null?void 0:n.width)??0)),y:Hv(e.y,t[0][1],t[1][1]-((n==null?void 0:n.height)??0))});function P1e(e,t,n){const{width:i,height:r}=Fh(n),{x:s,y:a}=n.internals.positionAbsolute;return Ob(e,[[s,a],[s+i,a+r]],t)}const DG=(e,t,n)=>en?-Hv(Math.abs(e-n),1,t)/t:0,aB=(e,t,n=15,i=40)=>{const r=DG(e.x,i,t.width-i)*n,s=DG(e.y,i,t.height-i)*n;return[r,s]},RR=(e,t)=>({x:Math.min(e.x,t.x),y:Math.min(e.y,t.y),x2:Math.max(e.x2,t.x2),y2:Math.max(e.y2,t.y2)}),l6=({x:e,y:t,width:n,height:i})=>({x:e,y:t,x2:e+n,y2:t+i}),IR=({x:e,y:t,x2:n,y2:i})=>({x:e,y:t,width:n-e,height:i-t}),qv=(e,t=[0,0])=>{var r,s;const{x:n,y:i}=rB(e)?e.internals.positionAbsolute:nE(e,t);return{x:n,y:i,width:((r=e.measured)==null?void 0:r.width)??e.width??e.initialWidth??0,height:((s=e.measured)==null?void 0:s.height)??e.height??e.initialHeight??0}},Z_=(e,t=[0,0])=>{var r,s;const{x:n,y:i}=rB(e)?e.internals.positionAbsolute:nE(e,t);return{x:n,y:i,x2:n+(((r=e.measured)==null?void 0:r.width)??e.width??e.initialWidth??0),y2:i+(((s=e.measured)==null?void 0:s.height)??e.height??e.initialHeight??0)}},D1e=(e,t)=>IR(RR(l6(e),l6(t))),IS=(e,t)=>{const n=Math.max(0,Math.min(e.x+e.width,t.x+t.width)-Math.max(e.x,t.x)),i=Math.max(0,Math.min(e.y+e.height,t.y+t.height)-Math.max(e.y,t.y));return Math.ceil(n*i)},MG=e=>Au(e.width)&&Au(e.height)&&Au(e.x)&&Au(e.y),Au=e=>!isNaN(e)&&isFinite(e),M1e=(e,t)=>(n,i)=>{},rE=(e,t=[1,1])=>({x:t[0]*Math.round(e.x/t[0]),y:t[1]*Math.round(e.y/t[1])}),$x=({x:e,y:t},[n,i,r],s=!1,a=[1,1])=>{const l={x:(e-n)/r,y:(t-i)/r};return s?rE(l,a):l},Wv=({x:e,y:t},[n,i,r])=>({x:e*r+n,y:t*r+i});function M0(e,t){if(typeof e=="number")return Math.floor((t-t/(1+e))*.5);if(typeof e=="string"&&e.endsWith("px")){const n=parseFloat(e);if(!Number.isNaN(n))return Math.floor(n)}if(typeof e=="string"&&e.endsWith("%")){const n=parseFloat(e);if(!Number.isNaN(n))return Math.floor(t*n*.01)}return console.error(`The padding value "${e}" is invalid. Please provide a number or a string with a valid unit (px or %).`),0}function uJe(e,t,n){if(typeof e=="string"||typeof e=="number"){const i=M0(e,n),r=M0(e,t);return{top:i,right:r,bottom:i,left:r,x:r*2,y:i*2}}if(typeof e=="object"){const i=M0(e.top??e.y??0,n),r=M0(e.bottom??e.y??0,n),s=M0(e.left??e.x??0,t),a=M0(e.right??e.x??0,t);return{top:i,right:a,bottom:r,left:s,x:s+a,y:i+r}}return{top:0,right:0,bottom:0,left:0,x:0,y:0}}function dJe(e,t,n,i,r,s){const{x:a,y:l}=Wv(e,[t,n,i]),{x:c,y:u}=Wv({x:e.x+e.width,y:e.y+e.height},[t,n,i]),d=r-c,f=s-u;return{left:Math.floor(a),top:Math.floor(l),right:Math.floor(d),bottom:Math.floor(f)}}const oB=(e,t,n,i,r,s)=>{const a=uJe(s,t,n),l=(t-a.x)/e.width,c=(n-a.y)/e.height,u=Math.min(l,c),d=Hv(u,i,r),f=e.x+e.width/2,h=e.y+e.height/2,m=t/2-f*d,g=n/2-h*d,b=dJe(e,m,g,d,t,n),v={left:Math.min(b.left-a.left,0),top:Math.min(b.top-a.top,0),right:Math.min(b.right-a.right,0),bottom:Math.min(b.bottom-a.bottom,0)};return{x:m-v.left+v.right,y:g-v.top+v.bottom,zoom:d}},PS=()=>{var e;return typeof navigator<"u"&&((e=navigator==null?void 0:navigator.userAgent)==null?void 0:e.indexOf("Mac"))>=0};function Sb(e){return e!=null&&e!=="parent"}function Fh(e){var t,n;return{width:((t=e.measured)==null?void 0:t.width)??e.width??e.initialWidth??0,height:((n=e.measured)==null?void 0:n.height)??e.height??e.initialHeight??0}}function lB(e){var t,n;return(((t=e.measured)==null?void 0:t.width)??e.width??e.initialWidth)!==void 0&&(((n=e.measured)==null?void 0:n.height)??e.height??e.initialHeight)!==void 0}function L1e(e,t={width:0,height:0},n,i,r){const s={...e},a=i.get(n);if(a){const l=a.origin||r;s.x+=a.internals.positionAbsolute.x-(t.width??0)*l[0],s.y+=a.internals.positionAbsolute.y-(t.height??0)*l[1]}return s}function LG(e,t){if(e.size!==t.size)return!1;for(const n of e)if(!t.has(n))return!1;return!0}function fJe(){let e,t;return{promise:new Promise((i,r)=>{e=i,t=r}),resolve:e,reject:t}}function hJe(e){return{..._1e,...e||{}}}function SO(e,{snapGrid:t=[0,0],snapToGrid:n=!1,transform:i,containerBounds:r}){const{x:s,y:a}=_u(e),l=$x({x:s-((r==null?void 0:r.left)??0),y:a-((r==null?void 0:r.top)??0)},i),{x:c,y:u}=n?rE(l,t):l;return{xSnapped:c,ySnapped:u,...l}}const cB=e=>({width:e.offsetWidth,height:e.offsetHeight}),$1e=e=>{var t;return((t=e==null?void 0:e.getRootNode)==null?void 0:t.call(e))||(window==null?void 0:window.document)},pJe=["INPUT","SELECT","TEXTAREA"];function F1e(e){var i,r;const t=((r=(i=e.composedPath)==null?void 0:i.call(e))==null?void 0:r[0])||e.target;return(t==null?void 0:t.nodeType)!==1?!1:pJe.includes(t.nodeName)||t.hasAttribute("contenteditable")||!!t.closest(".nokey")}const B1e=e=>"clientX"in e,_u=(e,t)=>{var s,a;const n=B1e(e),i=n?e.clientX:(s=e.touches)==null?void 0:s[0].clientX,r=n?e.clientY:(a=e.touches)==null?void 0:a[0].clientY;return{x:i-((t==null?void 0:t.left)??0),y:r-((t==null?void 0:t.top)??0)}},$G=(e,t,n,i,r)=>{const s=t.querySelectorAll(`.${e}`);return!s||!s.length?null:Array.from(s).map(a=>{const l=a.getBoundingClientRect();return{id:a.getAttribute("data-handleid"),type:e,nodeId:r,position:a.getAttribute("data-handlepos"),x:(l.left-n.left)/i,y:(l.top-n.top)/i,...cB(a)}})};function U1e({sourceX:e,sourceY:t,targetX:n,targetY:i,sourceControlX:r,sourceControlY:s,targetControlX:a,targetControlY:l}){const c=e*.125+r*.375+a*.375+n*.125,u=t*.125+s*.375+l*.375+i*.125,d=Math.abs(c-e),f=Math.abs(u-t);return[c,u,d,f]}function gT(e,t){return e>=0?.5*e:t*25*Math.sqrt(-e)}function FG({pos:e,x1:t,y1:n,x2:i,y2:r,c:s}){switch(e){case sn.Left:return[t-gT(t-i,s),n];case sn.Right:return[t+gT(i-t,s),n];case sn.Top:return[t,n-gT(n-r,s)];case sn.Bottom:return[t,n+gT(r-n,s)]}}function Q1e({sourceX:e,sourceY:t,sourcePosition:n=sn.Bottom,targetX:i,targetY:r,targetPosition:s=sn.Top,curvature:a=.25}){const[l,c]=FG({pos:n,x1:e,y1:t,x2:i,y2:r,c:a}),[u,d]=FG({pos:s,x1:i,y1:r,x2:e,y2:t,c:a}),[f,h,m,g]=U1e({sourceX:e,sourceY:t,targetX:i,targetY:r,sourceControlX:l,sourceControlY:c,targetControlX:u,targetControlY:d});return[`M${e},${t} C${l},${c} ${u},${d} ${i},${r}`,f,h,m,g]}function z1e({sourceX:e,sourceY:t,targetX:n,targetY:i}){const r=Math.abs(n-e)/2,s=n0}const bJe=({source:e,sourceHandle:t,target:n,targetHandle:i})=>`xy-edge__${e}${t||""}-${n}${i||""}`,yJe=(e,t)=>t.some(n=>n.source===e.source&&n.target===e.target&&(n.sourceHandle===e.sourceHandle||!n.sourceHandle&&!e.sourceHandle)&&(n.targetHandle===e.targetHandle||!n.targetHandle&&!e.targetHandle)),vJe=(e,t,n={})=>{var s;if(!e.source||!e.target)return(s=n.onError)==null||s.call(n,"006",Fu.error006()),t;const i=n.getEdgeId||bJe;let r;return R1e(e)?r={...e}:r={...e,id:i(e)},yJe(r,t)?t:(r.sourceHandle===null&&delete r.sourceHandle,r.targetHandle===null&&delete r.targetHandle,t.concat(r))};function V1e({sourceX:e,sourceY:t,targetX:n,targetY:i}){const[r,s,a,l]=z1e({sourceX:e,sourceY:t,targetX:n,targetY:i});return[`M ${e},${t}L ${n},${i}`,r,s,a,l]}const BG={[sn.Left]:{x:-1,y:0},[sn.Right]:{x:1,y:0},[sn.Top]:{x:0,y:-1},[sn.Bottom]:{x:0,y:1}},xJe=({source:e,sourcePosition:t=sn.Bottom,target:n})=>t===sn.Left||t===sn.Right?e.xMath.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2));function wJe({source:e,sourcePosition:t=sn.Bottom,target:n,targetPosition:i=sn.Top,center:r,offset:s,stepPosition:a}){const l=BG[t],c=BG[i],u={x:e.x+l.x*s,y:e.y+l.y*s},d={x:n.x+c.x*s,y:n.y+c.y*s},f=xJe({source:u,sourcePosition:t,target:d}),h=f.x!==0?"x":"y",m=f[h];let g=[],b,v;const y={x:0,y:0},x={x:0,y:0},[,,O,w]=z1e({sourceX:e.x,sourceY:e.y,targetX:n.x,targetY:n.y});if(l[h]*c[h]===-1){h==="x"?(b=r.x??u.x+(d.x-u.x)*a,v=r.y??(u.y+d.y)/2):(b=r.x??(u.x+d.x)/2,v=r.y??u.y+(d.y-u.y)*a);const C=[{x:b,y:u.y},{x:b,y:d.y}],N=[{x:u.x,y:v},{x:d.x,y:v}];l[h]===m?g=h==="x"?C:N:g=h==="x"?N:C}else{const C=[{x:u.x,y:d.y}],N=[{x:d.x,y:u.y}];if(h==="x"?g=l.x===m?N:C:g=l.y===m?C:N,t===i){const T=Math.abs(e[h]-n[h]);if(T<=s){const P=Math.min(s-1,s-T);l[h]===m?y[h]=(u[h]>e[h]?-1:1)*P:x[h]=(d[h]>n[h]?-1:1)*P}}if(t!==i){const T=h==="x"?"y":"x",P=l[h]===c[T],R=u[T]>d[T],L=u[T]=F?(b=(_.x+j.x)/2,v=g[0].y):(b=g[0].x,v=(_.y+j.y)/2)}const k={x:u.x+y.x,y:u.y+y.y},S={x:d.x+x.x,y:d.y+x.y};return[[e,...k.x!==g[0].x||k.y!==g[0].y?[k]:[],...g,...S.x!==g[g.length-1].x||S.y!==g[g.length-1].y?[S]:[],n],b,v,O,w]}function OJe(e,t,n,i){const r=Math.min(UG(e,t)/2,UG(t,n)/2,i),{x:s,y:a}=t;if(e.x===s&&s===n.x||e.y===a&&a===n.y)return`L${s} ${a}`;if(e.y===a){const u=e.xn.id===t):e[0])||null}function c6(e,t){return e?typeof e=="string"?e:`${t?`${t}__`:""}${Object.keys(e).sort().map(i=>`${i}=${e[i]}`).join("&")}`:""}function kJe(e,{id:t,defaultColor:n,defaultMarkerStart:i,defaultMarkerEnd:r}){const s=new Set;return e.reduce((a,l)=>([l.markerStart||i,l.markerEnd||r].forEach(c=>{if(c&&typeof c=="object"){const u=c6(c,t);s.has(u)||(a.push({id:u,color:c.color||n,...c}),s.add(u))}}),a),[]).sort((a,l)=>a.id.localeCompare(l.id))}const H1e=1e3,EJe=10,uB={nodeOrigin:[0,0],nodeExtent:NS,elevateNodesOnSelect:!0,zIndexMode:"basic",defaults:{}},CJe={...uB,checkEquality:!0};function dB(e,t){const n={...e};for(const i in t)t[i]!==void 0&&(n[i]=t[i]);return n}function TJe(e,t,n){const i=dB(uB,n);for(const r of e.values())if(r.parentId)hB(r,e,t,i);else{const s=nE(r,i.nodeOrigin),a=Sb(r.extent)?r.extent:i.nodeExtent,l=Ob(s,a,Fh(r));r.internals.positionAbsolute=l}}function AJe(e,t){if(!e.handles)return e.measured?t==null?void 0:t.internals.handleBounds:void 0;const n=[],i=[];for(const r of e.handles){const s={id:r.id,width:r.width??1,height:r.height??1,nodeId:e.id,x:r.x,y:r.y,position:r.position,type:r.type};r.type==="source"?n.push(s):r.type==="target"&&i.push(s)}return{source:n,target:i}}function fB(e){return e==="manual"}function u6(e,t,n,i={}){var d,f;const r=dB(CJe,i),s={i:0},a=new Map(t),l=r!=null&&r.elevateNodesOnSelect&&!fB(r.zIndexMode)?H1e:0;let c=e.length>0,u=!1;t.clear(),n.clear();for(const h of e){let m=a.get(h.id);if(r.checkEquality&&h===(m==null?void 0:m.internals.userNode))t.set(h.id,m);else{const g=nE(h,r.nodeOrigin),b=Sb(h.extent)?h.extent:r.nodeExtent,v=Ob(g,b,Fh(h));m={...r.defaults,...h,measured:{width:(d=h.measured)==null?void 0:d.width,height:(f=h.measured)==null?void 0:f.height},internals:{positionAbsolute:v,handleBounds:AJe(h,m),z:q1e(h,l,r.zIndexMode),userNode:h}},t.set(h.id,m)}(m.measured===void 0||m.measured.width===void 0||m.measured.height===void 0)&&!m.hidden&&(c=!1),h.parentId&&hB(m,t,n,i,s),u||(u=h.selected??!1)}return{nodesInitialized:c,hasSelectedNodes:u}}function _Je(e,t){if(!e.parentId)return;const n=t.get(e.parentId);n?n.set(e.id,e):t.set(e.parentId,new Map([[e.id,e]]))}function hB(e,t,n,i,r){const{elevateNodesOnSelect:s,nodeOrigin:a,nodeExtent:l,zIndexMode:c}=dB(uB,i),u=e.parentId,d=t.get(u);if(!d){console.warn(`Parent node ${u} not found. Please make sure that parent nodes are in front of their child nodes in the nodes array.`);return}_Je(e,n),r&&!d.parentId&&d.internals.rootParentIndex===void 0&&c==="auto"&&(d.internals.rootParentIndex=++r.i,d.internals.z=d.internals.z+r.i*EJe),r&&d.internals.rootParentIndex!==void 0&&(r.i=d.internals.rootParentIndex);const f=s&&!fB(c)?H1e:0,{x:h,y:m,z:g}=NJe(e,d,a,l,f,c),{positionAbsolute:b}=e.internals,v=h!==b.x||m!==b.y;(v||g!==e.internals.z)&&t.set(e.id,{...e,internals:{...e.internals,positionAbsolute:v?{x:h,y:m}:b,z:g}})}function q1e(e,t,n){const i=Au(e.zIndex)?e.zIndex:0;return fB(n)?i:i+(e.selected?t:0)}function NJe(e,t,n,i,r,s){const{x:a,y:l}=t.internals.positionAbsolute,c=Fh(e),u=nE(e,n),d=Sb(e.extent)?Ob(u,e.extent,c):u;let f=Ob({x:a+d.x,y:l+d.y},i,c);e.extent==="parent"&&(f=P1e(f,c,t));const h=q1e(e,r,s),m=t.internals.z??0;return{x:f.x,y:f.y,z:m>=h?m+1:h}}function pB(e,t,n,i=[0,0]){var a;const r=[],s=new Map;for(const l of e){const c=t.get(l.parentId);if(!c)continue;const u=((a=s.get(l.parentId))==null?void 0:a.expandedRect)??qv(c),d=D1e(u,l.rect);s.set(l.parentId,{expandedRect:d,parent:c})}return s.size>0&&s.forEach(({expandedRect:l,parent:c},u)=>{var O;const d=c.internals.positionAbsolute,f=Fh(c),h=c.origin??i,m=l.x0||g>0||y||x)&&(r.push({id:u,type:"position",position:{x:c.position.x-m+y,y:c.position.y-g+x}}),(O=n.get(u))==null||O.forEach(w=>{e.some(k=>k.id===w.id)||r.push({id:w.id,type:"position",position:{x:w.position.x+m,y:w.position.y+g}})})),(f.width0){const m=pB(h,t,n,r);u.push(...m)}return{changes:u,updatedInternals:c}}async function RJe({delta:e,panZoom:t,transform:n,translateExtent:i,width:r,height:s}){if(!t||!e.x&&!e.y)return!1;const a=await t.setViewportConstrained({x:n[0]+e.x,y:n[1]+e.y,zoom:n[2]},[[0,0],[r,s]],i);return!!a&&(a.x!==n[0]||a.y!==n[1]||a.k!==n[2])}function HG(e,t,n,i,r,s){let a=r;const l=i.get(a)||new Map;i.set(a,l.set(n,t)),a=`${r}-${e}`;const c=i.get(a)||new Map;if(i.set(a,c.set(n,t)),s){a=`${r}-${e}-${s}`;const u=i.get(a)||new Map;i.set(a,u.set(n,t))}}function W1e(e,t,n){e.clear(),t.clear();for(const i of n){const{source:r,target:s,sourceHandle:a=null,targetHandle:l=null}=i,c={edgeId:i.id,source:r,target:s,sourceHandle:a,targetHandle:l},u=`${r}-${a}--${s}-${l}`,d=`${s}-${l}--${r}-${a}`;HG("source",c,d,e,r,a),HG("target",c,u,e,s,l),t.set(i.id,i)}}function G1e(e,t){if(!e.parentId)return!1;const n=t.get(e.parentId);return n?n.selected?!0:G1e(n,t):!1}function qG(e,t,n){var r;let i=e;do{if((r=i==null?void 0:i.matches)!=null&&r.call(i,t))return!0;if(i===n)return!1;i=i==null?void 0:i.parentElement}while(i);return!1}function IJe(e,t,n,i){const r=new Map;for(const[s,a]of e)if((a.selected||a.id===i)&&(!a.parentId||!G1e(a,e))&&(a.draggable||t&&typeof a.draggable>"u")){const l=e.get(s);l&&r.set(s,{id:s,position:l.position||{x:0,y:0},distance:{x:n.x-l.internals.positionAbsolute.x,y:n.y-l.internals.positionAbsolute.y},extent:l.extent,parentId:l.parentId,origin:l.origin,expandParent:l.expandParent,internals:{positionAbsolute:l.internals.positionAbsolute||{x:0,y:0}},measured:{width:l.measured.width??0,height:l.measured.height??0}})}return r}function iM({nodeId:e,dragItems:t,nodeLookup:n,dragging:i=!0}){var a,l,c;const r=[];for(const[u,d]of t){const f=(a=n.get(u))==null?void 0:a.internals.userNode;f&&r.push({...f,position:d.position,dragging:i})}if(!e)return[r[0],r];const s=(l=n.get(e))==null?void 0:l.internals.userNode;return[s?{...s,position:((c=t.get(e))==null?void 0:c.position)||s.position,dragging:i}:r[0],r]}function PJe({dragItems:e,snapGrid:t,x:n,y:i}){const r=e.values().next().value;if(!r)return null;const s={x:n-r.distance.x,y:i-r.distance.y},a=rE(s,t);return{x:a.x-s.x,y:a.y-s.y}}function DJe({onNodeMouseDown:e,getStoreItems:t,onDragStart:n,onDrag:i,onDragStop:r}){let s={x:null,y:null},a=0,l=new Map,c=!1,u={x:0,y:0},d=null,f=!1,h=null,m=!1,g=!1,b=null;function v({noDragClassName:x,handleSelector:O,domNode:w,isSelectable:k,nodeId:S,nodeClickDistance:E=0}){h=Yl(w);function C({x:A,y:F}){const{nodeLookup:T,nodeExtent:P,snapGrid:R,snapToGrid:L,nodeOrigin:M,onNodeDrag:U,onSelectionDrag:I,onError:H,updateNodePositions:K}=t();s={x:A,y:F};let Q=!1;const q=l.size>1,B=q&&P?l6(iE(l)):null,ee=q&&L?PJe({dragItems:l,snapGrid:R,x:A,y:F}):null;for(const[le,se]of l){if(!T.has(le))continue;let re={x:A-se.distance.x,y:F-se.distance.y};L&&(re=ee?{x:Math.round(re.x+ee.x),y:Math.round(re.y+ee.y)}:rE(re,R));let ge=null;if(q&&P&&!se.extent&&B){const{positionAbsolute:ae}=se.internals,ue=ae.x-B.x+P[0][0],Oe=ae.x+se.measured.width-B.x2+P[1][0],ke=ae.y-B.y+P[0][1],st=ae.y+se.measured.height-B.y2+P[1][1];ge=[[ue,ke],[Oe,st]]}const{position:W,positionAbsolute:X}=I1e({nodeId:le,nextPosition:re,nodeLookup:T,nodeExtent:ge||P,nodeOrigin:M,onError:H});Q=Q||se.position.x!==W.x||se.position.y!==W.y,se.position=W,se.internals.positionAbsolute=X}if(g=g||Q,!!Q&&(K(l,!0),b&&(i||U||!S&&I))){const[le,se]=iM({nodeId:S,dragItems:l,nodeLookup:T});i==null||i(b,l,le,se),U==null||U(b,le,se),S||I==null||I(b,se)}}async function N(){if(!d)return;const{transform:A,panBy:F,autoPanSpeed:T,autoPanOnNodeDrag:P}=t();if(!P){c=!1,cancelAnimationFrame(a);return}const[R,L]=aB(u,d,T);(R!==0||L!==0)&&(s.x=(s.x??0)-R/A[2],s.y=(s.y??0)-L/A[2],await F({x:R,y:L})&&C(s)),a=requestAnimationFrame(N)}function _(A){var q;const{nodeLookup:F,multiSelectionActive:T,nodesDraggable:P,transform:R,snapGrid:L,snapToGrid:M,selectNodesOnDrag:U,onNodeDragStart:I,onSelectionDragStart:H,unselectNodesAndEdges:K}=t();f=!0,(!U||!k)&&!T&&S&&((q=F.get(S))!=null&&q.selected||K()),k&&U&&S&&(e==null||e(S));const Q=SO(A.sourceEvent,{transform:R,snapGrid:L,snapToGrid:M,containerBounds:d});if(s=Q,l=IJe(F,P,Q,S),l.size>0&&(n||I||!S&&H)){const[B,ee]=iM({nodeId:S,dragItems:l,nodeLookup:F});n==null||n(A.sourceEvent,l,B,ee),I==null||I(A.sourceEvent,B,ee),S||H==null||H(A.sourceEvent,ee)}}const j=d1e().clickDistance(E).on("start",A=>{const{domNode:F,nodeDragThreshold:T,transform:P,snapGrid:R,snapToGrid:L}=t();d=(F==null?void 0:F.getBoundingClientRect())||null,m=!1,g=!1,b=A.sourceEvent,T===0&&_(A),s=SO(A.sourceEvent,{transform:P,snapGrid:R,snapToGrid:L,containerBounds:d}),u=_u(A.sourceEvent,d)}).on("drag",A=>{const{autoPanOnNodeDrag:F,transform:T,snapGrid:P,snapToGrid:R,nodeDragThreshold:L,nodeLookup:M}=t(),U=SO(A.sourceEvent,{transform:T,snapGrid:P,snapToGrid:R,containerBounds:d});if(b=A.sourceEvent,(A.sourceEvent.type==="touchmove"&&A.sourceEvent.touches.length>1||S&&!M.has(S))&&(m=!0),!m){if(!c&&F&&f&&(c=!0,N()),!f){const I=_u(A.sourceEvent,d),H=I.x-u.x,K=I.y-u.y;Math.sqrt(H*H+K*K)>L&&_(A)}(s.x!==U.xSnapped||s.y!==U.ySnapped)&&l&&f&&(u=_u(A.sourceEvent,d),C(U))}}).on("end",A=>{if(!f||m){m&&l.size>0&&t().updateNodePositions(l,!1);return}if(c=!1,f=!1,cancelAnimationFrame(a),l.size>0){const{nodeLookup:F,updateNodePositions:T,onNodeDragStop:P,onSelectionDragStop:R}=t();if(g&&(T(l,!1),g=!1),r||P||!S&&R){const[L,M]=iM({nodeId:S,dragItems:l,nodeLookup:F,dragging:!1});r==null||r(A.sourceEvent,l,L,M),P==null||P(A.sourceEvent,L,M),S||R==null||R(A.sourceEvent,M)}}}).filter(A=>{const F=A.target;return!A.button&&(!x||!qG(F,`.${x}`,w))&&(!O||qG(F,O,w))});h.call(j)}function y(){h==null||h.on(".drag",null)}return{update:v,destroy:y}}function MJe(e,t,n){const i=[],r={x:e.x-n,y:e.y-n,width:n*2,height:n*2};for(const s of t.values())IS(r,qv(s))>0&&i.push(s);return i}const LJe=250;function $Je(e,t,n,i){var l,c;let r=[],s=1/0;const a=MJe(e,n,t+LJe);for(const u of a){const d=[...((l=u.internals.handleBounds)==null?void 0:l.source)??[],...((c=u.internals.handleBounds)==null?void 0:c.target)??[]];for(const f of d){if(i.nodeId===f.nodeId&&i.type===f.type&&i.id===f.id)continue;const{x:h,y:m}=kb(u,f,f.position,!0),g=Math.sqrt(Math.pow(h-e.x,2)+Math.pow(m-e.y,2));g>t||(g1){const u=i.type==="source"?"target":"source";return r.find(d=>d.type===u)??r[0]}return r[0]}function K1e(e,t,n,i,r,s=!1){var u,d,f;const a=i.get(e);if(!a)return null;const l=r==="strict"?(u=a.internals.handleBounds)==null?void 0:u[t]:[...((d=a.internals.handleBounds)==null?void 0:d.source)??[],...((f=a.internals.handleBounds)==null?void 0:f.target)??[]],c=(n?l==null?void 0:l.find(h=>h.id===n):l==null?void 0:l[0])??null;return c&&s?{...c,...kb(a,c,c.position,!0)}:c}function X1e(e,t){return e||(t!=null&&t.classList.contains("target")?"target":t!=null&&t.classList.contains("source")?"source":null)}function FJe(e,t){let n=null;return t?n=!0:e&&!t&&(n=!1),n}const Y1e=()=>!0;function BJe(e,{connectionMode:t,connectionRadius:n,handleId:i,nodeId:r,edgeUpdaterType:s,isTarget:a,domNode:l,nodeLookup:c,lib:u,autoPanOnConnect:d,flowId:f,panBy:h,cancelConnection:m,onConnectStart:g,onConnect:b,onConnectEnd:v,isValidConnection:y=Y1e,onReconnectEnd:x,updateConnection:O,getTransform:w,getFromHandle:k,autoPanSpeed:S,dragThreshold:E=1,handleDomNode:C}){const N=$1e(e.target);let _=0,j;const{x:A,y:F}=_u(e),T=X1e(s,C),P=l==null?void 0:l.getBoundingClientRect();let R=!1;if(!P||!T)return;const L=K1e(r,T,i,c,t);if(!L)return;let M=_u(e,P),U=!1,I=null,H=!1,K=null;function Q(){if(!d||!P)return;const[W,X]=aB(M,P,S);h({x:W,y:X}),_=requestAnimationFrame(Q)}const q={...L,nodeId:r,type:T,position:L.position},B=c.get(r);let le={inProgress:!0,isValid:null,from:kb(B,q,sn.Left,!0),fromHandle:q,fromPosition:q.position,fromNode:B,to:M,toHandle:null,toPosition:PG[q.position],toNode:null,pointer:M};function se(){R=!0,O(le),g==null||g(e,{nodeId:r,handleId:i,handleType:T})}E===0&&se();function re(W){if(!R){const{x:st,y:Le}=_u(W),Me=st-A,Ie=Le-F;if(!(Me*Me+Ie*Ie>E*E))return;se()}if(!k()||!q){ge(W);return}const X=w();M=_u(W,P),j=$Je($x(M,X,!1,[1,1]),n,c,q),U||(Q(),U=!0);const ae=Z1e(W,{handle:j,connectionMode:t,fromNodeId:r,fromHandleId:i,fromType:a?"target":"source",isValidConnection:y,doc:N,lib:u,flowId:f,nodeLookup:c});K=ae.handleDomNode,I=ae.connection,H=FJe(!!j,ae.isValid);const ue=c.get(r),Oe=ue?kb(ue,q,sn.Left,!0):le.from,ke={...le,from:Oe,isValid:H,to:ae.toHandle&&H?Wv({x:ae.toHandle.x,y:ae.toHandle.y},X):M,toHandle:ae.toHandle,toPosition:H&&ae.toHandle?ae.toHandle.position:PG[q.position],toNode:ae.toHandle?c.get(ae.toHandle.nodeId):null,pointer:M};O(ke),le=ke}function ge(W){if(!("touches"in W&&W.touches.length>0)){if(R){(j||K)&&I&&H&&(b==null||b(I));const{inProgress:X,...ae}=le,ue={...ae,toPosition:le.toHandle?le.toPosition:null};v==null||v(W,ue),s&&(x==null||x(W,ue))}m(),cancelAnimationFrame(_),U=!1,H=!1,I=null,K=null,N.removeEventListener("mousemove",re),N.removeEventListener("mouseup",ge),N.removeEventListener("touchmove",re),N.removeEventListener("touchend",ge)}}N.addEventListener("mousemove",re),N.addEventListener("mouseup",ge),N.addEventListener("touchmove",re),N.addEventListener("touchend",ge)}function Z1e(e,{handle:t,connectionMode:n,fromNodeId:i,fromHandleId:r,fromType:s,doc:a,lib:l,flowId:c,isValidConnection:u=Y1e,nodeLookup:d}){const f=s==="target",h=t?a.querySelector(`.${l}-flow__handle[data-id="${c}-${t==null?void 0:t.nodeId}-${t==null?void 0:t.id}-${t==null?void 0:t.type}"]`):null,{x:m,y:g}=_u(e),b=a.elementFromPoint(m,g),v=b!=null&&b.classList.contains(`${l}-flow__handle`)?b:h,y={handleDomNode:v,isValid:!1,connection:null,toHandle:null};if(v){const x=X1e(void 0,v),O=v.getAttribute("data-nodeid"),w=v.getAttribute("data-handleid"),k=v.classList.contains("connectable"),S=v.classList.contains("connectableend");if(!O||!x)return y;const E={source:f?O:i,sourceHandle:f?w:r,target:f?i:O,targetHandle:f?r:w};y.connection=E;const N=k&&S&&(n===Vv.Strict?f&&x==="source"||!f&&x==="target":O!==i||w!==r);y.isValid=N&&u(E),y.toHandle=K1e(O,x,w,d,n,!0)}return y}const d6={onPointerDown:BJe,isValid:Z1e};function UJe({domNode:e,panZoom:t,getTransform:n,getViewScale:i}){const r=Yl(e);function s({translateExtent:l,width:c,height:u,zoomStep:d=1,pannable:f=!0,zoomable:h=!0,inversePan:m=!1}){const g=O=>{if(O.sourceEvent.type!=="wheel"||!t)return;const w=n(),k=O.sourceEvent.ctrlKey&&PS()?10:1,S=-O.sourceEvent.deltaY*(O.sourceEvent.deltaMode===1?.05:O.sourceEvent.deltaMode?1:.002)*d,E=w[2]*Math.pow(2,S*k);t.scaleTo(E)};let b=[0,0];const v=O=>{(O.sourceEvent.type==="mousedown"||O.sourceEvent.type==="touchstart")&&(b=[O.sourceEvent.clientX??O.sourceEvent.touches[0].clientX,O.sourceEvent.clientY??O.sourceEvent.touches[0].clientY])},y=O=>{const w=n();if(O.sourceEvent.type!=="mousemove"&&O.sourceEvent.type!=="touchmove"||!t)return;const k=[O.sourceEvent.clientX??O.sourceEvent.touches[0].clientX,O.sourceEvent.clientY??O.sourceEvent.touches[0].clientY],S=[k[0]-b[0],k[1]-b[1]];b=k;const E=i()*Math.max(w[2],Math.log(w[2]))*(m?-1:1),C={x:w[0]-S[0]*E,y:w[1]-S[1]*E},N=[[0,0],[c,u]];t.setViewportConstrained({x:C.x,y:C.y,zoom:w[2]},N,l)},x=T1e().on("start",v).on("zoom",f?y:null).on("zoom.wheel",h?g:null);r.call(x,{})}function a(){r.on("zoom",null)}return{update:s,destroy:a,pointer:Ou}}const PR=e=>({x:e.x,y:e.y,zoom:e.k}),rM=({x:e,y:t,zoom:n})=>jR.translate(e,t).scale(n),Ay=(e,t)=>e.target.closest(`.${t}`),J1e=(e,t)=>t===2&&Array.isArray(e)&&e.includes(2),QJe=e=>((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2,sM=(e,t=0,n=QJe,i=()=>{})=>{const r=typeof t=="number"&&t>0;return r||i(),r?e.transition().duration(t).ease(n).on("end",i):e},ewe=e=>{const t=e.ctrlKey&&PS()?10:1;return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*t};function zJe({zoomPanValues:e,noWheelClassName:t,d3Selection:n,d3Zoom:i,panOnScrollMode:r,panOnScrollSpeed:s,zoomOnPinch:a,onPanZoomStart:l,onPanZoom:c,onPanZoomEnd:u}){return d=>{if(Ay(d,t))return d.ctrlKey&&d.preventDefault(),!1;d.preventDefault(),d.stopImmediatePropagation();const f=n.property("__zoom").k||1;if(d.ctrlKey&&a){const v=Ou(d),y=ewe(d),x=f*Math.pow(2,y);i.scaleTo(n,x,v,d);return}const h=d.deltaMode===1?20:1;let m=r===rb.Vertical?0:d.deltaX*h,g=r===rb.Horizontal?0:d.deltaY*h;!PS()&&d.shiftKey&&r!==rb.Vertical&&(m=d.deltaY*h,g=0),i.translateBy(n,-(m/f)*s,-(g/f)*s,{internal:!0});const b=PR(n.property("__zoom"));clearTimeout(e.panScrollTimeout),e.isPanScrolling?(c==null||c(d,b),e.panScrollTimeout=setTimeout(()=>{u==null||u(d,b),e.isPanScrolling=!1},150)):(e.isPanScrolling=!0,l==null||l(d,b))}}function VJe({noWheelClassName:e,preventScrolling:t,d3ZoomHandler:n}){return function(i,r){const s=i.type==="wheel",a=!t&&s&&!i.ctrlKey,l=Ay(i,e);if(i.ctrlKey&&s&&l&&i.preventDefault(),a||l)return null;i.preventDefault(),n.call(this,i,r)}}function HJe({zoomPanValues:e,onDraggingChange:t,onPanZoomStart:n}){return i=>{var s,a,l;if((s=i.sourceEvent)!=null&&s.internal)return;const r=PR(i.transform);e.mouseButton=((a=i.sourceEvent)==null?void 0:a.button)||0,e.isZoomingOrPanning=!0,e.prevViewport=r,((l=i.sourceEvent)==null?void 0:l.type)==="mousedown"&&t(!0),n&&(n==null||n(i.sourceEvent,r))}}function qJe({zoomPanValues:e,panOnDrag:t,onPaneContextMenu:n,onTransformChange:i,onPanZoom:r}){return s=>{var a,l;e.usedRightMouseButton=!!(n&&J1e(t,e.mouseButton??0)),(a=s.sourceEvent)!=null&&a.sync||i([s.transform.x,s.transform.y,s.transform.k]),r&&!((l=s.sourceEvent)!=null&&l.internal)&&(r==null||r(s.sourceEvent,PR(s.transform)))}}function WJe({zoomPanValues:e,panOnDrag:t,panOnScroll:n,onDraggingChange:i,onPanZoomEnd:r,onPaneContextMenu:s}){return a=>{var l;if(!((l=a.sourceEvent)!=null&&l.internal)&&(e.isZoomingOrPanning=!1,s&&J1e(t,e.mouseButton??0)&&!e.usedRightMouseButton&&a.sourceEvent&&s(a.sourceEvent),e.usedRightMouseButton=!1,i(!1),r)){const c=PR(a.transform);e.prevViewport=c,clearTimeout(e.timerId),e.timerId=setTimeout(()=>{r==null||r(a.sourceEvent,c)},n?150:0)}}}function GJe({zoomActivationKeyPressed:e,zoomOnScroll:t,zoomOnPinch:n,panOnDrag:i,panOnScroll:r,zoomOnDoubleClick:s,userSelectionActive:a,noWheelClassName:l,noPanClassName:c,lib:u,connectionInProgress:d}){return f=>{var v;const h=e||t,m=n&&f.ctrlKey,g=f.type==="wheel";if(f.button===1&&f.type==="mousedown"&&(Ay(f,`${u}-flow__node`)||Ay(f,`${u}-flow__edge`)))return!0;if(!i&&!h&&!r&&!s&&!n||a||d&&!g||Ay(f,l)&&g||Ay(f,c)&&(!g||r&&g&&!e)||!n&&f.ctrlKey&&g)return!1;if(!n&&f.type==="touchstart"&&((v=f.touches)==null?void 0:v.length)>1)return f.preventDefault(),!1;if(!h&&!r&&!m&&g||!i&&(f.type==="mousedown"||f.type==="touchstart")||Array.isArray(i)&&!i.includes(f.button)&&f.type==="mousedown")return!1;const b=Array.isArray(i)&&i.includes(f.button)||!f.button||f.button<=1;return(!f.ctrlKey||g)&&b}}function KJe({domNode:e,minZoom:t,maxZoom:n,translateExtent:i,viewport:r,onPanZoom:s,onPanZoomStart:a,onPanZoomEnd:l,onDraggingChange:c}){const u={isZoomingOrPanning:!1,usedRightMouseButton:!1,prevViewport:{},mouseButton:0,timerId:void 0,panScrollTimeout:void 0,isPanScrolling:!1},d=e.getBoundingClientRect(),f=T1e().scaleExtent([t,n]).translateExtent(i),h=Yl(e).call(f);x({x:r.x,y:r.y,zoom:Hv(r.zoom,t,n)},[[0,0],[d.width,d.height]],i);const m=h.on("wheel.zoom"),g=h.on("dblclick.zoom");f.wheelDelta(ewe);async function b(j,A){return h?new Promise(F=>{f==null||f.interpolate((A==null?void 0:A.interpolate)==="linear"?OO:uA).transform(sM(h,A==null?void 0:A.duration,A==null?void 0:A.ease,()=>F(!0)),j)}):!1}function v({noWheelClassName:j,noPanClassName:A,onPaneContextMenu:F,userSelectionActive:T,panOnScroll:P,panOnDrag:R,panOnScrollMode:L,panOnScrollSpeed:M,preventScrolling:U,zoomOnPinch:I,zoomOnScroll:H,zoomOnDoubleClick:K,zoomActivationKeyPressed:Q,lib:q,onTransformChange:B,connectionInProgress:ee,paneClickDistance:le,selectionOnDrag:se}){T&&!u.isZoomingOrPanning&&y();const re=P&&!Q&&!T;f.clickDistance(se?1/0:!Au(le)||le<0?0:le);const ge=re?zJe({zoomPanValues:u,noWheelClassName:j,d3Selection:h,d3Zoom:f,panOnScrollMode:L,panOnScrollSpeed:M,zoomOnPinch:I,onPanZoomStart:a,onPanZoom:s,onPanZoomEnd:l}):VJe({noWheelClassName:j,preventScrolling:U,d3ZoomHandler:m});h.on("wheel.zoom",ge,{passive:!1});const W=HJe({zoomPanValues:u,onDraggingChange:c,onPanZoomStart:a});f.on("start",W);const X=qJe({zoomPanValues:u,panOnDrag:R,onPaneContextMenu:!!F,onPanZoom:s,onTransformChange:B});f.on("zoom",X);const ae=WJe({zoomPanValues:u,panOnDrag:R,panOnScroll:P,onPaneContextMenu:F,onPanZoomEnd:l,onDraggingChange:c});f.on("end",ae);const ue=GJe({zoomActivationKeyPressed:Q,panOnDrag:R,zoomOnScroll:H,panOnScroll:P,zoomOnDoubleClick:K,zoomOnPinch:I,userSelectionActive:T,noPanClassName:A,noWheelClassName:j,lib:q,connectionInProgress:ee});f.filter(ue),K?h.on("dblclick.zoom",g):h.on("dblclick.zoom",null)}function y(){f.on("zoom",null)}async function x(j,A,F){const T=rM(j),P=f==null?void 0:f.constrain()(T,A,F);return P&&await b(P),P}async function O(j,A){const F=rM(j);return await b(F,A),F}function w(j){if(h){const A=rM(j),F=h.property("__zoom");(F.k!==j.zoom||F.x!==j.x||F.y!==j.y)&&(f==null||f.transform(h,A,null,{sync:!0}))}}function k(){const j=h?C1e(h.node()):{x:0,y:0,k:1};return{x:j.x,y:j.y,zoom:j.k}}async function S(j,A){return h?new Promise(F=>{f==null||f.interpolate((A==null?void 0:A.interpolate)==="linear"?OO:uA).scaleTo(sM(h,A==null?void 0:A.duration,A==null?void 0:A.ease,()=>F(!0)),j)}):!1}async function E(j,A){return h?new Promise(F=>{f==null||f.interpolate((A==null?void 0:A.interpolate)==="linear"?OO:uA).scaleBy(sM(h,A==null?void 0:A.duration,A==null?void 0:A.ease,()=>F(!0)),j)}):!1}function C(j){f==null||f.scaleExtent(j)}function N(j){f==null||f.translateExtent(j)}function _(j){const A=!Au(j)||j<0?0:j;f==null||f.clickDistance(A)}return{update:v,destroy:y,setViewport:O,setViewportConstrained:x,getViewport:k,scaleTo:S,scaleBy:E,setScaleExtent:C,setTranslateExtent:N,syncViewport:w,setClickDistance:_}}var Gv;(function(e){e.Line="line",e.Handle="handle"})(Gv||(Gv={}));function XJe({width:e,prevWidth:t,height:n,prevHeight:i,affectsX:r,affectsY:s}){const a=e-t,l=n-i,c=[a>0?1:a<0?-1:0,l>0?1:l<0?-1:0];return a&&r&&(c[0]=c[0]*-1),l&&s&&(c[1]=c[1]*-1),c}function WG(e){const t=e.includes("right")||e.includes("left"),n=e.includes("bottom")||e.includes("top"),i=e.includes("left"),r=e.includes("top");return{isHorizontal:t,isVertical:n,affectsX:i,affectsY:r}}function lp(e,t){return Math.max(0,t-e)}function cp(e,t){return Math.max(0,e-t)}function bT(e,t,n){return Math.max(0,t-e,e-n)}function GG(e,t){return e?!t:t}function YJe(e,t,n,i,r,s,a,l){let{affectsX:c,affectsY:u}=t;const{isHorizontal:d,isVertical:f}=t,h=d&&f,{xSnapped:m,ySnapped:g}=n,{minWidth:b,maxWidth:v,minHeight:y,maxHeight:x}=i,{x:O,y:w,width:k,height:S,aspectRatio:E}=e;let C=Math.floor(d?m-e.pointerX:0),N=Math.floor(f?g-e.pointerY:0);const _=k+(c?-C:C),j=S+(u?-N:N),A=-s[0]*k,F=-s[1]*S;let T=bT(_,b,v),P=bT(j,y,x);if(a){let M=0,U=0;c&&C<0?M=lp(O+C+A,a[0][0]):!c&&C>0&&(M=cp(O+_+A,a[1][0])),u&&N<0?U=lp(w+N+F,a[0][1]):!u&&N>0&&(U=cp(w+j+F,a[1][1])),T=Math.max(T,M),P=Math.max(P,U)}if(l){let M=0,U=0;c&&C>0?M=cp(O+C,l[0][0]):!c&&C<0&&(M=lp(O+_,l[1][0])),u&&N>0?U=cp(w+N,l[0][1]):!u&&N<0&&(U=lp(w+j,l[1][1])),T=Math.max(T,M),P=Math.max(P,U)}if(r){if(d){const M=bT(_/E,y,x)*E;if(T=Math.max(T,M),a){let U=0;!c&&!u||c&&!u&&h?U=cp(w+F+_/E,a[1][1])*E:U=lp(w+F+(c?C:-C)/E,a[0][1])*E,T=Math.max(T,U)}if(l){let U=0;!c&&!u||c&&!u&&h?U=lp(w+_/E,l[1][1])*E:U=cp(w+(c?C:-C)/E,l[0][1])*E,T=Math.max(T,U)}}if(f){const M=bT(j*E,b,v)/E;if(P=Math.max(P,M),a){let U=0;!c&&!u||u&&!c&&h?U=cp(O+j*E+A,a[1][0])/E:U=lp(O+(u?N:-N)*E+A,a[0][0])/E,P=Math.max(P,U)}if(l){let U=0;!c&&!u||u&&!c&&h?U=lp(O+j*E,l[1][0])/E:U=cp(O+(u?N:-N)*E,l[0][0])/E,P=Math.max(P,U)}}}N=N+(N<0?P:-P),C=C+(C<0?T:-T),r&&(h?_>j*E?N=(GG(c,u)?-C:C)/E:C=(GG(c,u)?-N:N)*E:d?(N=C/E,u=c):(C=N*E,c=u));const R=c?O+C:O,L=u?w+N:w;return{width:k+(c?-C:C),height:S+(u?-N:N),x:s[0]*C*(c?-1:1)+R,y:s[1]*N*(u?-1:1)+L}}const twe={width:0,height:0,x:0,y:0},ZJe={...twe,pointerX:0,pointerY:0,aspectRatio:1};function JJe(e,t,n){const i=t.position.x+e.position.x,r=t.position.y+e.position.y,s=e.measured.width??0,a=e.measured.height??0,l=n[0]*s,c=n[1]*a;return[[i-l,r-c],[i+s-l,r+a-c]]}function eet({domNode:e,nodeId:t,getStoreItems:n,onChange:i,onEnd:r}){const s=Yl(e);let a={controlDirection:WG("bottom-right"),boundaries:{minWidth:0,minHeight:0,maxWidth:Number.MAX_VALUE,maxHeight:Number.MAX_VALUE},resizeDirection:void 0,keepAspectRatio:!1};function l({controlPosition:u,boundaries:d,keepAspectRatio:f,resizeDirection:h,onResizeStart:m,onResize:g,onResizeEnd:b,shouldResize:v}){let y={...twe},x={...ZJe};a={boundaries:d,resizeDirection:h,keepAspectRatio:f,controlDirection:WG(u)};let O,w=null,k=[],S,E,C,N=!1;const _=d1e().on("start",j=>{const{nodeLookup:A,transform:F,snapGrid:T,snapToGrid:P,nodeOrigin:R,paneDomNode:L}=n();if(O=A.get(t),!O)return;w=(L==null?void 0:L.getBoundingClientRect())??null;const{xSnapped:M,ySnapped:U}=SO(j.sourceEvent,{transform:F,snapGrid:T,snapToGrid:P,containerBounds:w});y={width:O.measured.width??0,height:O.measured.height??0,x:O.position.x??0,y:O.position.y??0},x={...y,pointerX:M,pointerY:U,aspectRatio:y.width/y.height},S=void 0,E=Sb(O.extent)?O.extent:void 0,O.parentId&&(O.extent==="parent"||O.expandParent)&&(S=A.get(O.parentId)),S&&O.extent==="parent"&&(E=[[0,0],[S.measured.width,S.measured.height]]),k=[],C=void 0;for(const[I,H]of A)if(H.parentId===t&&(k.push({id:I,position:{...H.position},extent:H.extent}),H.extent==="parent"||H.expandParent)){const K=JJe(H,O,H.origin??R);C?C=[[Math.min(K[0][0],C[0][0]),Math.min(K[0][1],C[0][1])],[Math.max(K[1][0],C[1][0]),Math.max(K[1][1],C[1][1])]]:C=K}m==null||m(j,{...y})}).on("drag",j=>{const{transform:A,snapGrid:F,snapToGrid:T,nodeOrigin:P}=n(),R=SO(j.sourceEvent,{transform:A,snapGrid:F,snapToGrid:T,containerBounds:w}),L=[];if(!O)return;const{x:M,y:U,width:I,height:H}=y,K={},Q=O.origin??P,{width:q,height:B,x:ee,y:le}=YJe(x,a.controlDirection,R,a.boundaries,a.keepAspectRatio,Q,E,C),se=q!==I,re=B!==H,ge=ee!==M&&se,W=le!==U&&re;if(!ge&&!W&&!se&&!re)return;if((ge||W||Q[0]===1||Q[1]===1)&&(K.x=ge?ee:y.x,K.y=W?le:y.y,y.x=K.x,y.y=K.y,k.length>0)){const Oe=ee-M,ke=le-U;for(const st of k)st.position={x:st.position.x-Oe+Q[0]*(q-I),y:st.position.y-ke+Q[1]*(B-H)},L.push(st)}if((se||re)&&(K.width=se&&(!a.resizeDirection||a.resizeDirection==="horizontal")?q:y.width,K.height=re&&(!a.resizeDirection||a.resizeDirection==="vertical")?B:y.height,y.width=K.width,y.height=K.height),S&&O.expandParent){const Oe=Q[0]*(K.width??0);K.x&&K.x{N&&(b==null||b(j,{...y}),r==null||r({...y}),N=!1)});s.call(_)}function c(){s.on(".drag",null)}return{update:l,destroy:c}}var nwe={exports:{}},iwe={};/** +`)},Fze=0,L0=[];function Bze(e){var t=p.useRef([]),n=p.useRef([0,0]),i=p.useRef(),r=p.useState(Fze++)[0],s=p.useState(kve)[0],a=p.useRef(e);p.useEffect(function(){a.current=e},[e]),p.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(r));var b=oze([e.lockRef.current],(e.shards||[]).map(rK),!0).filter(Boolean);return b.forEach(function(v){return v.classList.add("allow-interactivity-".concat(r))}),function(){document.body.classList.remove("block-interactivity-".concat(r)),b.forEach(function(v){return v.classList.remove("allow-interactivity-".concat(r))})}}},[e.inert,e.lockRef.current,e.shards]);var l=p.useCallback(function(b,v){if("touches"in b&&b.touches.length===2||b.type==="wheel"&&b.ctrlKey)return!a.current.allowPinchZoom;var y=lT(b),x=n.current,O="deltaX"in b?b.deltaX:x[0]-y[0],w="deltaY"in b?b.deltaY:x[1]-y[1],k,S=b.target,E=Math.abs(O)>Math.abs(w)?"h":"v";if("touches"in b&&E==="h"&&S.type==="range")return!1;var C=window.getSelection(),N=C&&C.anchorNode,T=N?N===S||N.contains(S):!1;if(T)return!1;var j=nK(E,S);if(!j)return!0;if(j?k=E:(k=E==="v"?"h":"v",j=nK(E,S)),!j)return!1;if(!i.current&&"changedTouches"in b&&(O||w)&&(i.current=k),!k)return!0;var A=i.current||k;return Mze(A,v,b,A==="h"?O:w)},[]),c=p.useCallback(function(b){var v=b;if(!(!L0.length||L0[L0.length-1]!==s)){var y="deltaY"in v?iK(v):lT(v),x=t.current.filter(function(k){return k.name===v.type&&(k.target===v.target||v.target===k.shadowParent)&&Lze(k.delta,y)})[0];if(x&&x.should){v.cancelable&&v.preventDefault();return}if(!x){var O=(a.current.shards||[]).map(rK).filter(Boolean).filter(function(k){return k.contains(v.target)}),w=O.length>0?l(v,O[0]):!a.current.noIsolation;w&&v.cancelable&&v.preventDefault()}}},[]),u=p.useCallback(function(b,v,y,x){var O={name:b,delta:v,target:y,should:x,shadowParent:Uze(y)};t.current.push(O),setTimeout(function(){t.current=t.current.filter(function(w){return w!==O})},1)},[]),d=p.useCallback(function(b){n.current=lT(b),i.current=void 0},[]),f=p.useCallback(function(b){u(b.type,iK(b),b.target,l(b,e.lockRef.current))},[]),h=p.useCallback(function(b){u(b.type,lT(b),b.target,l(b,e.lockRef.current))},[]);p.useEffect(function(){return L0.push(s),e.setCallbacks({onScrollCapture:f,onWheelCapture:f,onTouchMoveCapture:h}),document.addEventListener("wheel",c,M0),document.addEventListener("touchmove",c,M0),document.addEventListener("touchstart",d,M0),function(){L0=L0.filter(function(b){return b!==s}),document.removeEventListener("wheel",c,M0),document.removeEventListener("touchmove",c,M0),document.removeEventListener("touchstart",d,M0)}},[]);var m=e.removeScrollBar,g=e.inert;return p.createElement(p.Fragment,null,g?p.createElement(s,{styles:$ze(r)}):null,m?p.createElement(_ze,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function Uze(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}const Qze=gze(Sve,Bze);var S7=p.forwardRef(function(e,t){return p.createElement(bR,yd({},e,{ref:t,sideCar:Qze}))});S7.classNames=bR.classNames;var zze=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},$0=new WeakMap,cT=new WeakMap,uT={},YD=0,Ave=function(e){return e&&(e.host||Ave(e.parentNode))},Vze=function(e,t){return t.map(function(n){if(e.contains(n))return n;var i=Ave(n);return i&&e.contains(i)?i:(console.error("aria-hidden",n,"in not contained inside",e,". Doing nothing"),null)}).filter(function(n){return!!n})},Hze=function(e,t,n,i){var r=Vze(t,Array.isArray(e)?e:[e]);uT[n]||(uT[n]=new WeakMap);var s=uT[n],a=[],l=new Set,c=new Set(r),u=function(f){!f||l.has(f)||(l.add(f),u(f.parentNode))};r.forEach(u);var d=function(f){!f||c.has(f)||Array.prototype.forEach.call(f.children,function(h){if(l.has(h))d(h);else try{var m=h.getAttribute(i),g=m!==null&&m!=="false",b=($0.get(h)||0)+1,v=(s.get(h)||0)+1;$0.set(h,b),s.set(h,v),a.push(h),b===1&&g&&cT.set(h,!0),v===1&&h.setAttribute(n,"true"),g||h.setAttribute(i,"true")}catch(y){console.error("aria-hidden: cannot operate on ",h,y)}})};return d(t),l.clear(),YD++,function(){a.forEach(function(f){var h=$0.get(f)-1,m=s.get(f)-1;$0.set(f,h),s.set(f,m),h||(cT.has(f)||f.removeAttribute(i),cT.delete(f)),m||f.removeAttribute(n)}),YD--,YD||($0=new WeakMap,$0=new WeakMap,cT=new WeakMap,uT={})}},_ve=function(e,t,n){n===void 0&&(n="data-aria-hidden");var i=Array.from(Array.isArray(e)?e:[e]),r=zze(e);return r?(i.push.apply(i,Array.from(r.querySelectorAll("[aria-live], script"))),Hze(i,r,n,"aria-hidden")):function(){return null}},qze=Object.defineProperty,Wze=(e,t)=>qze(e,"name",{value:t,configurable:!0});function Zk(e){const[t,n]=p.useState(void 0);return eu(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const i=new ResizeObserver(r=>{if(!Array.isArray(r)||!r.length)return;const s=r[0];let a,l;if("borderBoxSize"in s){const c=s.borderBoxSize,u=Array.isArray(c)?c[0]:c;a=u.inlineSize,l=u.blockSize}else a=e.offsetWidth,l=e.offsetHeight;n({width:a,height:l})});return i.observe(e,{box:"border-box"}),()=>i.unobserve(e)}else n(void 0)},[e]),t}Wze(Zk,"useSize");var Kze=Object.defineProperty,Sh=(e,t)=>Kze(e,"name",{value:t,configurable:!0}),k7="Checkbox",[Gze,gHt]=El(k7),[Xze,E7]=Gze(k7);function Nve(e){const{__scopeCheckbox:t,checked:n,children:i,defaultChecked:r,disabled:s,form:a,name:l,onCheckedChange:c,required:u,value:d="on",internal_do_not_use_render:f}=e,[h,m]=au({prop:n,defaultProp:r??!1,onChange:c,caller:k7}),[g,b]=p.useState(null),[v,y]=p.useState(null),x=p.useRef(!1),[O,w]=p.useReducer(E=>E+1,0),k=g?!!a||!!g.closest("form"):!0,S={checked:h,disabled:s,setChecked:m,control:g,setControl:b,name:l,form:a,value:d,hasConsumerStoppedPropagationRef:x,userInteractionCount:O,onUserInteraction:w,required:u,defaultChecked:ih(r)?!1:r,isFormControl:k,bubbleInput:v,setBubbleInput:y};return o.jsx(Xze,{scope:t,...S,children:jve(f)?f(S):i})}Sh(Nve,"CheckboxProvider");var Yze="CheckboxTrigger",Zze=p.forwardRef(Sh(function({__scopeCheckbox:t,onKeyDown:n,onClick:i,...r},s){const{control:a,value:l,disabled:c,checked:u,required:d,setControl:f,setChecked:h,hasConsumerStoppedPropagationRef:m,onUserInteraction:g,isFormControl:b,bubbleInput:v}=E7(Yze,t),y=ar(s,f),x=p.useRef(u);return p.useEffect(()=>{const O=a==null?void 0:a.form;if(O){const w=Sh(()=>h(x.current),"reset");return O.addEventListener("reset",w),()=>O.removeEventListener("reset",w)}},[a,h]),o.jsx(_r.button,{type:"button",role:"checkbox","aria-checked":ih(u)?"mixed":u,"aria-required":d,"data-state":C7(u),"data-disabled":c?"":void 0,disabled:c,value:l,...r,ref:y,onKeyDown:Sn(n,O=>{O.key==="Enter"&&O.preventDefault()}),onClick:Sn(i,O=>{g(),h(w=>ih(w)?!0:!w),v&&b&&(m.current=O.isPropagationStopped(),m.current||O.stopPropagation())})})},"CheckboxTrigger")),Jze=p.forwardRef(Sh(function(t,n){const{__scopeCheckbox:i,name:r,checked:s,defaultChecked:a,required:l,disabled:c,value:u,onCheckedChange:d,form:f,...h}=t;return o.jsx(Nve,{__scopeCheckbox:i,checked:s,defaultChecked:a,disabled:c,required:l,onCheckedChange:d,name:r,form:f,value:u,internal_do_not_use_render:({isFormControl:m})=>o.jsxs(o.Fragment,{children:[o.jsx(Zze,{...h,ref:n,__scopeCheckbox:i}),m&&o.jsx(iVe,{__scopeCheckbox:i})]})})},"Checkbox")),eVe="CheckboxIndicator",tVe=p.forwardRef(Sh(function(t,n){const{__scopeCheckbox:i,forceMount:r,...s}=t,a=E7(eVe,i);return o.jsx(Xd,{present:r||ih(a.checked)||a.checked===!0,children:o.jsx(_r.span,{"data-state":C7(a.checked),"data-disabled":a.disabled?"":void 0,...s,ref:n,style:{pointerEvents:"none",...t.style}})})},"CheckboxIndicator")),nVe="CheckboxBubbleInput",iVe=p.forwardRef(Sh(function({__scopeCheckbox:t,onClick:n,...i},r){const{control:s,hasConsumerStoppedPropagationRef:a,userInteractionCount:l,checked:c,defaultChecked:u,required:d,disabled:f,name:h,value:m,form:g,bubbleInput:b,setBubbleInput:v}=E7(nVe,t),y=ar(r,v),x=Zk(s),O=p.useRef(!1),w=p.useRef(c),k=p.useRef(l);p.useEffect(()=>{const E=b;if(!E)return;const C=window.HTMLInputElement.prototype,T=Object.getOwnPropertyDescriptor(C,"checked").set,j=l!==k.current;k.current=l;const A=w.current!==c;w.current=c;const L=!(j&&a.current);if(A&&T){O.current=!j;const _=new Event("click",{bubbles:L});E.indeterminate=ih(c),T.call(E,ih(c)?!1:c),E.dispatchEvent(_),O.current=!1}},[b,c,a,l]);const S=p.useRef(ih(c)?!1:c);return o.jsx(_r.input,{type:"checkbox","aria-hidden":!0,defaultChecked:u??S.current,required:d,disabled:f,name:h,value:m,form:g,...i,tabIndex:-1,ref:y,onClick:Sn(n,E=>{O.current&&E.stopPropagation()}),style:{...i.style,...x,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})},"CheckboxBubbleInput"));function jve(e){return typeof e=="function"}Sh(jve,"isFunction");function ih(e){return e==="indeterminate"}Sh(ih,"isIndeterminate");function C7(e){return ih(e)?"indeterminate":e?"checked":"unchecked"}Sh(C7,"getState");const rVe=["top","right","bottom","left"],xm=Math.min,rh=Math.max,H_=Math.round,dT=Math.floor,sh=e=>({x:e,y:e}),sVe={left:"right",right:"left",bottom:"top",top:"bottom"};function Rve(e,t,n){return rh(e,xm(t,n))}function kh(e,t){return typeof e=="function"?e(t):e}function wm(e){return e.split("-")[0]}function Mx(e){return e.split("-")[1]}function T7(e){return e==="x"?"y":"x"}function A7(e){return e==="y"?"height":"width"}function Td(e){const t=e[0];return t==="t"||t==="b"?"y":"x"}function _7(e){return T7(Td(e))}function aVe(e,t,n){n===void 0&&(n=!1);const i=Mx(e),r=_7(e),s=A7(r);let a=r==="x"?i===(n?"end":"start")?"right":"left":i==="start"?"bottom":"top";return t.reference[s]>t.floating[s]&&(a=q_(a)),[a,q_(a)]}function oVe(e){const t=q_(e);return[Y4(e),t,Y4(t)]}function Y4(e){return e.includes("start")?e.replace("start","end"):e.replace("end","start")}const sK=["left","right"],aK=["right","left"],lVe=["top","bottom"],cVe=["bottom","top"];function uVe(e,t,n){switch(e){case"top":case"bottom":return n?t?aK:sK:t?sK:aK;case"left":case"right":return t?lVe:cVe;default:return[]}}function dVe(e,t,n,i){const r=Mx(e);let s=uVe(wm(e),n==="start",i);return r&&(s=s.map(a=>a+"-"+r),t&&(s=s.concat(s.map(Y4)))),s}function q_(e){const t=wm(e);return sVe[t]+e.slice(t.length)}function fVe(e){var t,n,i,r;return{top:(t=e.top)!=null?t:0,right:(n=e.right)!=null?n:0,bottom:(i=e.bottom)!=null?i:0,left:(r=e.left)!=null?r:0}}function Ive(e){return typeof e!="number"?fVe(e):{top:e,right:e,bottom:e,left:e}}function W_(e){const{x:t,y:n,width:i,height:r}=e;return{width:i,height:r,top:n,left:t,right:t+i,bottom:n+r,x:t,y:n}}function oK(e,t,n){let{reference:i,floating:r}=e;const s=Td(t),a=_7(t),l=A7(a),c=wm(t),u=s==="y",d=i.x+i.width/2-r.width/2,f=i.y+i.height/2-r.height/2,h=i[l]/2-r[l]/2;let m;switch(c){case"top":m={x:d,y:i.y-r.height};break;case"bottom":m={x:d,y:i.y+i.height};break;case"right":m={x:i.x+i.width,y:f};break;case"left":m={x:i.x-r.width,y:f};break;default:m={x:i.x,y:i.y}}const g=Mx(t);return g&&(m[a]+=h*(g==="end"?1:-1)*(n&&u?-1:1)),m}async function hVe(e,t){var n;t===void 0&&(t={});const{x:i,y:r,platform:s,rects:a,elements:l,strategy:c}=e,{boundary:u="clippingAncestors",rootBoundary:d="viewport",elementContext:f="floating",altBoundary:h=!1,padding:m=0}=kh(t,e),g=Ive(m),v=l[h?f==="floating"?"reference":"floating":f],y=W_(await s.getClippingRect({element:(n=await(s.isElement==null?void 0:s.isElement(v)))==null||n?v:v.contextElement||await(s.getDocumentElement==null?void 0:s.getDocumentElement(l.floating)),boundary:u,rootBoundary:d,strategy:c})),x=f==="floating"?{x:i,y:r,width:a.floating.width,height:a.floating.height}:a.reference,O=await(s.getOffsetParent==null?void 0:s.getOffsetParent(l.floating)),w=await(s.isElement==null?void 0:s.isElement(O))&&await(s.getScale==null?void 0:s.getScale(O))||{x:1,y:1},k=W_(s.convertOffsetParentRelativeRectToViewportRelativeRect?await s.convertOffsetParentRelativeRectToViewportRelativeRect({elements:l,rect:x,offsetParent:O,strategy:c}):x);return{top:(y.top-k.top+g.top)/w.y,bottom:(k.bottom-y.bottom+g.bottom)/w.y,left:(y.left-k.left+g.left)/w.x,right:(k.right-y.right+g.right)/w.x}}const pVe=50,mVe=async(e,t,n)=>{const{placement:i="bottom",strategy:r="absolute",middleware:s=[],platform:a}=n,l=a.detectOverflow?a:{...a,detectOverflow:hVe},c=await(a.isRTL==null?void 0:a.isRTL(t));let u=await a.getElementRects({reference:e,floating:t,strategy:r}),{x:d,y:f}=oK(u,i,c),h=i,m=0;const g={};for(let b=0;b({name:"arrow",options:e,async fn(t){const{x:n,y:i,placement:r,rects:s,platform:a,elements:l,middlewareData:c}=t,{element:u,padding:d=0}=kh(e,t)||{};if(u==null)return{};const f=Ive(d),h={x:n,y:i},m=_7(r),g=A7(m),b=await a.getDimensions(u),v=m==="y",y=v?"top":"left",x=v?"bottom":"right",O=v?"clientHeight":"clientWidth",w=s.reference[g]+s.reference[m]-h[m]-s.floating[g],k=h[m]-s.reference[m],S=await(a.getOffsetParent==null?void 0:a.getOffsetParent(u));let E=S?S[O]:0;(!E||!await(a.isElement==null?void 0:a.isElement(S)))&&(E=l.floating[O]||s.floating[g]);const C=w/2-k/2,N=E/2-b[g]/2-1,T=xm(f[y],N),j=xm(f[x],N),A=E-b[g]-j,L=E/2-b[g]/2+C,_=Rve(T,L,A),P=!c.arrow&&Mx(r)!=null&&L!==_&&s.reference[g]/2-(L_<=0)){var j,A;const _=(((j=s.flip)==null?void 0:j.index)||0)+1,P=E[_];if(P&&(!(f==="alignment"?x!==Td(P):!1)||T.every(M=>Td(M.placement)===x?M.overflows[0]>0:!0)))return{data:{index:_,overflows:T},reset:{placement:P}};let I=(A=T.filter($=>$.overflows[0]<=0).sort(($,M)=>$.overflows[1]-M.overflows[1])[0])==null?void 0:A.placement;if(!I)switch(m){case"bestFit":{var L;const $=(L=T.filter(M=>{if(S){const B=Td(M.placement);return B===x||B==="y"}return!0}).map(M=>[M.placement,M.overflows.filter(B=>B>0).reduce((B,R)=>B+R,0)]).sort((M,B)=>M[1]-B[1])[0])==null?void 0:L[0];$&&(I=$);break}case"initialPlacement":I=l;break}if(r!==I)return{reset:{placement:I}}}return{}}}};function lK(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function cK(e){return rVe.some(t=>e[t]>=0)}const yVe=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){const{rects:n,platform:i}=t,{strategy:r="referenceHidden",...s}=kh(e,t);switch(r){case"referenceHidden":{const a=await i.detectOverflow(t,{...s,elementContext:"reference"}),l=lK(a,n.reference);return{data:{referenceHiddenOffsets:l,referenceHidden:cK(l)}}}case"escaped":{const a=await i.detectOverflow(t,{...s,altBoundary:!0}),l=lK(a,n.floating);return{data:{escapedOffsets:l,escaped:cK(l)}}}default:return{}}}}},Pve=new Set(["left","top"]);async function vVe(e,t){const{placement:n,platform:i,elements:r}=e,s=await(i.isRTL==null?void 0:i.isRTL(r.floating)),a=wm(n),l=Mx(n),c=Td(n)==="y",u=Pve.has(a)?-1:1,d=s&&c?-1:1,f=kh(t,e);let{mainAxis:h,crossAxis:m,alignmentAxis:g}=typeof f=="number"?{mainAxis:f,crossAxis:0,alignmentAxis:null}:{mainAxis:f.mainAxis||0,crossAxis:f.crossAxis||0,alignmentAxis:f.alignmentAxis};return l&&typeof g=="number"&&(m=l==="end"?g*-1:g),c?{x:m*d,y:h*u}:{x:h*u,y:m*d}}const xVe=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var n,i;const{x:r,y:s,placement:a,middlewareData:l}=t,c=await vVe(t,e);return a===((n=l.offset)==null?void 0:n.placement)&&(i=l.arrow)!=null&&i.alignmentOffset?{}:{x:r+c.x,y:s+c.y,data:{...c,placement:a}}}}},wVe=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:i,placement:r,platform:s}=t,{mainAxis:a=!0,crossAxis:l=!1,limiter:c={fn:x=>{let{x:O,y:w}=x;return{x:O,y:w}}},...u}=kh(e,t),d={x:n,y:i},f=await s.detectOverflow(t,u),h=Td(r),m=T7(h);let g=d[m],b=d[h];const v=(x,O)=>Rve(O+f[x==="y"?"top":"left"],O,O-f[x==="y"?"bottom":"right"]);a&&(g=v(m,g)),l&&(b=v(h,b));const y=c.fn({...t,[m]:g,[h]:b});return{...y,data:{x:y.x-n,y:y.y-i,enabled:{[m]:a,[h]:l}}}}}},OVe=function(e){return e===void 0&&(e={}),{options:e,fn(t){var n,i;const{x:r,y:s,placement:a,rects:l,middlewareData:c}=t,{offset:u=0,mainAxis:d=!0,crossAxis:f=!0}=kh(e,t),h={x:r,y:s},m=Td(a),g=T7(m);let b=h[g],v=h[m];const y=kh(u,t),x=typeof y=="number"?{mainAxis:y,crossAxis:0}:{mainAxis:(n=y.mainAxis)!=null?n:0,crossAxis:(i=y.crossAxis)!=null?i:0};if(d){const k=g==="y"?"height":"width",S=l.reference[g]-l.floating[k]+x.mainAxis,E=l.reference[g]+l.reference[k]-x.mainAxis;bE&&(b=E)}if(f){var O,w;const k=g==="y"?"width":"height",S=Pve.has(wm(a)),E=l.reference[m]-l.floating[k]+(S&&((O=c.offset)==null?void 0:O[m])||0)+(S?0:x.crossAxis),C=l.reference[m]+l.reference[k]+(S?0:((w=c.offset)==null?void 0:w[m])||0)-(S?x.crossAxis:0);vC&&(v=C)}return{[g]:b,[m]:v}}}},SVe=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){const{placement:n,rects:i,platform:r,elements:s}=t,{apply:a=()=>{},...l}=kh(e,t),c=await r.detectOverflow(t,l),u=wm(n),d=Mx(n),f=Td(n)==="y",{width:h,height:m}=i.floating;let g,b;u==="top"||u==="bottom"?(g=u,b=d===(await(r.isRTL==null?void 0:r.isRTL(s.floating))?"start":"end")?"left":"right"):(b=u,g=d==="end"?"top":"bottom");const v=m-c.top-c.bottom,y=h-c.left-c.right,x=xm(m-c[g],v),O=xm(h-c[b],y),w=t.middlewareData.shift,k=!w;let S=x,E=O;w!=null&&w.enabled.x&&(E=y),w!=null&&w.enabled.y&&(S=v),k&&!d&&(f?E=h-2*rh(c.left,c.right):S=m-2*rh(c.top,c.bottom)),await a({...t,availableWidth:E,availableHeight:S});const C=await r.getDimensions(s.floating);return h!==C.width||m!==C.height?{reset:{rects:!0}}:{}}}};function yR(){return typeof window<"u"}function Lx(e){return Dve(e)?(e.nodeName||"").toLowerCase():"#document"}function wo(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function Lh(e){var t;return(t=(Dve(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function Dve(e){return yR()?e instanceof Node||e instanceof wo(e).Node:!1}function Ud(e){return yR()?e instanceof Element||e instanceof wo(e).Element:!1}function Yd(e){return yR()?e instanceof HTMLElement||e instanceof wo(e).HTMLElement:!1}function uK(e){return!yR()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof wo(e).ShadowRoot}function vR(e){const{overflow:t,overflowX:n,overflowY:i,display:r}=Qd(e);return/auto|scroll|overlay|hidden|clip/.test(t+i+n)&&r!=="inline"&&r!=="contents"}function kVe(e){return/^(table|td|th)$/.test(Lx(e))}function xR(e){try{if(e.matches(":popover-open"))return!0}catch{}try{return e.matches(":modal")}catch{return!1}}const EVe=/transform|translate|scale|rotate|perspective|filter/,CVe=/paint|layout|strict|content/,ag=e=>!!e&&e!=="none";let ZD;function N7(e){const t=Ud(e)?Qd(e):e;return ag(t.transform)||ag(t.translate)||ag(t.scale)||ag(t.rotate)||ag(t.perspective)||!j7()&&(ag(t.backdropFilter)||ag(t.filter))||EVe.test(t.willChange||"")||CVe.test(t.contain||"")}function TVe(e){let t=Sb(e);for(;Yd(t)&&!kS(t);){if(N7(t))return t;if(xR(t))return null;t=Sb(t)}return null}function j7(){return ZD==null&&(ZD=typeof CSS<"u"&&CSS.supports&&CSS.supports("-webkit-backdrop-filter","none")),ZD}function kS(e){return/^(html|body|#document)$/.test(Lx(e))}function Qd(e){return wo(e).getComputedStyle(e)}function wR(e){return Ud(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function Sb(e){if(Lx(e)==="html")return e;const t=e.assignedSlot||e.parentNode||uK(e)&&e.host||Lh(e);return uK(t)?t.host:t}function Mve(e){const t=Sb(e);return kS(t)?(e.ownerDocument||e).body:Yd(t)&&vR(t)?t:Mve(t)}function ES(e,t,n){var i;t===void 0&&(t=[]),n===void 0&&(n=!0);const r=Mve(e),s=r===((i=e.ownerDocument)==null?void 0:i.body),a=wo(r);if(s){const l=Z4(a);return t.concat(a,a.visualViewport||[],vR(r)?r:[],l&&n?ES(l):[])}else return t.concat(r,ES(r,[],n))}function Z4(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function Lve(e){const t=Qd(e);let n=parseFloat(t.width)||0,i=parseFloat(t.height)||0;const r=Yd(e),s=r?e.offsetWidth:n,a=r?e.offsetHeight:i,l=H_(n)!==s||H_(i)!==a;return l&&(n=s,i=a),{width:n,height:i,$:l}}function R7(e){return Ud(e)?e:e.contextElement}function rv(e){const t=R7(e);if(!Yd(t))return sh(1);const n=t.getBoundingClientRect(),{width:i,height:r,$:s}=Lve(t);let a=(s?H_(n.width):n.width)/i,l=(s?H_(n.height):n.height)/r;return(!a||!Number.isFinite(a))&&(a=1),(!l||!Number.isFinite(l))&&(l=1),{x:a,y:l}}const AVe=sh(0);function $ve(e){const t=wo(e);return!j7()||!t.visualViewport?AVe:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function _Ve(e,t,n){return t===void 0&&(t=!1),!!n&&t&&n===wo(e)}function kb(e,t,n,i){t===void 0&&(t=!1),n===void 0&&(n=!1);const r=e.getBoundingClientRect(),s=R7(e);let a=sh(1);t&&(i?Ud(i)&&(a=rv(i)):a=rv(e));const l=_Ve(s,n,i)?$ve(s):sh(0);let c=(r.left+l.x)/a.x,u=(r.top+l.y)/a.y,d=r.width/a.x,f=r.height/a.y;if(s&&i){const h=wo(s),m=Ud(i)?wo(i):i;let g=h,b=Z4(g);for(;b&&m!==g;){const v=rv(b),y=b.getBoundingClientRect(),x=Qd(b),O=y.left+(b.clientLeft+parseFloat(x.paddingLeft))*v.x,w=y.top+(b.clientTop+parseFloat(x.paddingTop))*v.y;c*=v.x,u*=v.y,d*=v.x,f*=v.y,c+=O,u+=w,g=wo(b),b=Z4(g)}}return W_({width:d,height:f,x:c,y:u})}function OR(e,t){const n=wR(e).scrollLeft;return t?t.left+n:kb(Lh(e)).left+n}function Fve(e,t){const n=e.getBoundingClientRect(),i=n.left+t.scrollLeft-OR(e,n),r=n.top+t.scrollTop;return{x:i,y:r}}function NVe(e){let{elements:t,rect:n,offsetParent:i,strategy:r}=e;const s=r==="fixed",a=Lh(i),l=t?xR(t.floating):!1;if(i===a||l&&s)return n;let c={scrollLeft:0,scrollTop:0},u=sh(1);const d=sh(0),f=Yd(i);if((f||!s)&&((Lx(i)!=="body"||vR(a))&&(c=wR(i)),f)){const m=kb(i);u=rv(i),d.x=m.x+i.clientLeft,d.y=m.y+i.clientTop}const h=a&&!f&&!s?Fve(a,c):sh(0);return{width:n.width*u.x,height:n.height*u.y,x:n.x*u.x-c.scrollLeft*u.x+d.x+h.x,y:n.y*u.y-c.scrollTop*u.y+d.y+h.y}}function jVe(e){return e.getClientRects?Array.from(e.getClientRects()):[]}function RVe(e){const t=wR(e),n=e.ownerDocument.body,i=rh(e.scrollWidth,e.clientWidth,n.scrollWidth,n.clientWidth),r=rh(e.scrollHeight,e.clientHeight,n.scrollHeight,n.clientHeight);let s=-t.scrollLeft+OR(e);const a=-t.scrollTop;return Qd(n).direction==="rtl"&&(s+=rh(e.clientWidth,n.clientWidth)-i),{width:i,height:r,x:s,y:a}}const IVe=25;function PVe(e,t,n){n===void 0&&(n="viewport");const i=n==="layoutViewport",r=wo(e),s=Lh(e),a=r.visualViewport;let l=s.clientWidth,c=s.clientHeight,u=0,d=0;if(a){const h=!j7()||t==="fixed";i?h||(u=-a.offsetLeft,d=-a.offsetTop):(l=a.width,c=a.height,h&&(u=a.offsetLeft,d=a.offsetTop))}if(OR(s)<=0){const h=s.ownerDocument,m=h.body,g=getComputedStyle(m),b=h.compatMode==="CSS1Compat"&&parseFloat(g.marginLeft)+parseFloat(g.marginRight)||0,v=Math.abs(s.clientWidth-m.clientWidth-b),y=getComputedStyle(s).scrollbarGutter==="stable both-edges"?v/2:v;y<=IVe&&(l-=y)}return{width:l,height:c,x:u,y:d}}function DVe(e,t){const n=kb(e,!0,t==="fixed"),i=n.top+e.clientTop,r=n.left+e.clientLeft,s=rv(e),a=e.clientWidth*s.x,l=e.clientHeight*s.y,c=r*s.x,u=i*s.y;return{width:a,height:l,x:c,y:u}}function dK(e,t,n){let i;if(t==="viewport"||t==="layoutViewport")i=PVe(e,n,t);else if(t==="document")i=RVe(Lh(e));else if(Ud(t))i=DVe(t,n);else{const r=$ve(e);i={x:t.x-r.x,y:t.y-r.y,width:t.width,height:t.height}}return W_(i)}function MVe(e,t){const n=t.get(e);if(n)return n;let i=ES(e,[],!1).filter(l=>Ud(l)&&Lx(l)!=="body"),r=null;const s=Qd(e).position==="fixed";let a=s?Sb(e):e;for(;Ud(a)&&!kS(a);){const l=Qd(a),c=N7(a),u=r?r.position:s?"fixed":"";!c&&(u==="fixed"||u==="absolute"&&l.position==="static")?i=i.filter(f=>f!==a):r=l,a=Sb(a)}return t.set(e,i),i}function LVe(e){let{element:t,boundary:n,rootBoundary:i,strategy:r}=e;const a=[...n==="clippingAncestors"?xR(t)?[]:MVe(t,this._c):[].concat(n),i],l=dK(t,a[0],r);let c=l.top,u=l.right,d=l.bottom,f=l.left;for(let h=1;h{l(!1,1e-7)},1e3)}E=!1}try{i=new IntersectionObserver(C,{...S,root:s.ownerDocument})}catch{i=new IntersectionObserver(C,S)}i.observe(e)}const c=wo(e),u=()=>l(n);return c.addEventListener("resize",u),l(!0),()=>{c.removeEventListener("resize",u),a()}}function VVe(e,t,n,i){i===void 0&&(i={});const{ancestorScroll:r=!0,ancestorResize:s=!0,elementResize:a=typeof ResizeObserver=="function",layoutShift:l=typeof IntersectionObserver=="function",animationFrame:c=!1}=i,u=R7(e),d=r||s?[...u?ES(u):[],...t?ES(t):[]]:[];d.forEach(y=>{r&&y.addEventListener("scroll",n),s&&y.addEventListener("resize",n)});const f=u&&l?zVe(u,n,s):null;let h=-1,m=null;a&&(m=new ResizeObserver(y=>{let[x]=y;x&&x.target===u&&m&&t&&(m.unobserve(t),cancelAnimationFrame(h),h=requestAnimationFrame(()=>{var O;(O=m)==null||O.observe(t)})),n()}),u&&!c&&m.observe(u),t&&m.observe(t));let g,b=c?kb(e):null;c&&v();function v(){const y=kb(e);b&&!Uve(b,y)&&n(),b=y,g=requestAnimationFrame(v)}return n(),()=>{var y;d.forEach(x=>{r&&x.removeEventListener("scroll",n),s&&x.removeEventListener("resize",n)}),f==null||f(),(y=m)==null||y.disconnect(),m=null,c&&cancelAnimationFrame(g)}}const HVe=xVe,qVe=wVe,WVe=bVe,KVe=SVe,GVe=yVe,hK=gVe,XVe=OVe,YVe=(e,t,n)=>{const i=new Map,r=n??{},s={...QVe,...r.platform,_c:i};return mVe(e,t,{...r,platform:s})};var ZVe=typeof document<"u",JVe=function(){},h2=ZVe?p.useLayoutEffect:JVe;function K_(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let n,i,r;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(i=n;i--!==0;)if(!K_(e[i],t[i]))return!1;return!0}if(r=Object.keys(e),n=r.length,n!==Object.keys(t).length)return!1;for(i=n;i--!==0;)if(!{}.hasOwnProperty.call(t,r[i]))return!1;for(i=n;i--!==0;){const s=r[i];if(!(s==="_owner"&&e.$$typeof)&&!K_(e[s],t[s]))return!1}return!0}return e!==e&&t!==t}function Qve(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function pK(e,t){const n=Qve(e);return Math.round(t*n)/n}function eM(e){const t=p.useRef(e);return h2(()=>{t.current=e}),t}function eHe(e){e===void 0&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:i=[],platform:r,elements:{reference:s,floating:a}={},transform:l=!0,whileElementsMounted:c,open:u}=e,[d,f]=p.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[h,m]=p.useState(i);K_(h,i)||m(i);const[g,b]=p.useState(null),[v,y]=p.useState(null),x=p.useCallback(M=>{M!==S.current&&(S.current=M,b(M))},[]),O=p.useCallback(M=>{M!==E.current&&(E.current=M,y(M))},[]),w=s||g,k=a||v,S=p.useRef(null),E=p.useRef(null),C=p.useRef(d),N=c!=null,T=eM(c),j=eM(r),A=eM(u),L=p.useCallback(()=>{if(!S.current||!E.current)return;const M={placement:t,strategy:n,middleware:h};j.current&&(M.platform=j.current),YVe(S.current,E.current,M).then(B=>{const R={...B,isPositioned:A.current!==!1};_.current&&!K_(C.current,R)&&(C.current=R,Fi.flushSync(()=>{f(R)}))})},[h,t,n,j,A]);h2(()=>{u===!1&&C.current.isPositioned&&(C.current.isPositioned=!1,f(M=>({...M,isPositioned:!1})))},[u]);const _=p.useRef(!1);h2(()=>(_.current=!0,()=>{_.current=!1}),[]),h2(()=>{if(w&&(S.current=w),k&&(E.current=k),w&&k){if(T.current)return T.current(w,k,L);L()}},[w,k,L,T,N]);const P=p.useMemo(()=>({reference:S,floating:E,setReference:x,setFloating:O}),[x,O]),I=p.useMemo(()=>({reference:w,floating:k}),[w,k]),$=p.useMemo(()=>{const M={position:n,left:0,top:0};if(!I.floating)return M;const B=pK(I.floating,d.x),R=pK(I.floating,d.y);return l?{...M,transform:"translate("+B+"px, "+R+"px)",...Qve(I.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:B,top:R}},[n,l,I.floating,d.x,d.y]);return p.useMemo(()=>({...d,update:L,refs:P,elements:I,floatingStyles:$}),[d,L,P,I,$])}const tHe=e=>{function t(n){return{}.hasOwnProperty.call(n,"current")}return{name:"arrow",options:e,fn(n){const{element:i,padding:r}=typeof e=="function"?e(n):e;return i&&t(i)?i.current!=null?hK({element:i.current,padding:r}).fn(n):{}:i?hK({element:i,padding:r}).fn(n):{}}}},nHe=(e,t)=>{const n=HVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},iHe=(e,t)=>{const n=qVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},rHe=(e,t)=>({fn:XVe(e).fn,options:[e,t]}),sHe=(e,t)=>{const n=WVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},aHe=(e,t)=>{const n=KVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},oHe=(e,t)=>{const n=GVe(e);return{name:n.name,fn:n.fn,options:[e,t]}},lHe=(e,t)=>{const n=tHe(e);return{name:n.name,fn:n.fn,options:[e,t]}};var cHe=Object.defineProperty,rm=(e,t)=>cHe(e,"name",{value:t,configurable:!0}),zve="Popper",[Vve,$x]=El(zve),[uHe,Hve]=Vve(zve),dHe=rm(e=>{const{__scopePopper:t,children:n}=e,[i,r]=p.useState(null),[s,a]=p.useState(void 0);return o.jsx(uHe,{scope:t,anchor:i,onAnchorChange:r,placementState:s,setPlacementState:a,children:n})},"Popper"),fHe="PopperAnchor",hHe=p.forwardRef(rm(function(t,n){const{__scopePopper:i,virtualRef:r,...s}=t,a=Hve(fHe,i),l=p.useRef(null),c=a.onAnchorChange,u=p.useCallback(b=>{l.current=b,b&&c(b)},[c]),d=ar(n,u),f=p.useRef(null);p.useEffect(()=>{if(!r)return;const b=f.current;f.current=r.current,b!==f.current&&c(f.current)});const h=a.placementState&&SR(a.placementState),m=h==null?void 0:h[0],g=h==null?void 0:h[1];return r?null:o.jsx(_r.div,{"data-radix-popper-side":m,"data-radix-popper-align":g,...s,ref:d})},"PopperAnchor")),qve="PopperContent",[pHe,bHt]=Vve(qve),mHe=p.forwardRef(rm(function(t,n){var se,me,Z,X,J,oe,Ee;const{__scopePopper:i,side:r="bottom",sideOffset:s=0,align:a="center",alignOffset:l=0,arrowPadding:c=0,avoidCollisions:u=!0,collisionBoundary:d=[],collisionPadding:f=0,sticky:h="partial",hideWhenDetached:m=!1,updatePositionStrategy:g="optimized",onPlaced:b,...v}=t,y=Hve(qve,i),[x,O]=p.useState(null),w=ar(n,O),[k,S]=p.useState(null),E=Zk(k),C=(E==null?void 0:E.width)??0,N=(E==null?void 0:E.height)??0,T=r+(a!=="center"?"-"+a:""),j=typeof f=="number"?f:{top:0,right:0,bottom:0,left:0,...f},A=Array.isArray(d)?d:[d],L=A.length>0,_={padding:j,boundary:A.filter(Wve),altBoundary:L},{refs:P,floatingStyles:I,placement:$,isPositioned:M,middlewareData:B}=eHe({strategy:"fixed",placement:T,whileElementsMounted:rm((...he)=>VVe(...he,{animationFrame:g==="always"}),"whileElementsMounted"),elements:{reference:y.anchor},middleware:[nHe({mainAxis:s+N,alignmentAxis:l}),u&&iHe({mainAxis:!0,crossAxis:!1,limiter:h==="partial"?rHe():void 0,..._}),u&&sHe({..._}),aHe({..._,apply:rm(({elements:he,rects:Me,availableWidth:De,availableHeight:_e})=>{const{width:Re,height:Xe}=Me.reference,Ce=he.floating.style;Ce.setProperty("--radix-popper-available-width",`${De}px`),Ce.setProperty("--radix-popper-available-height",`${_e}px`),Ce.setProperty("--radix-popper-anchor-width",`${Re}px`),Ce.setProperty("--radix-popper-anchor-height",`${Xe}px`)},"apply")}),k&&lHe({element:k,padding:c}),gHe({arrowWidth:C,arrowHeight:N}),m&&oHe({strategy:"referenceHidden",..._,boundary:L?_.boundary:void 0})]}),R=y.setPlacementState;eu(()=>(R($),()=>{R(void 0)}),[$,R]);const[V,K]=SR($),Q=Fu(b);eu(()=>{M&&(Q==null||Q())},[M,Q]);const q=(se=B.arrow)==null?void 0:se.x,U=(me=B.arrow)==null?void 0:me.y,G=((Z=B.arrow)==null?void 0:Z.centerOffset)!==0,[ae,re]=p.useState();return eu(()=>{x&&re(window.getComputedStyle(x).zIndex)},[x]),o.jsx("div",{ref:P.setFloating,"data-radix-popper-content-wrapper":"",style:{...I,transform:M?I.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:ae,"--radix-popper-transform-origin":[(X=B.transformOrigin)==null?void 0:X.x,(J=B.transformOrigin)==null?void 0:J.y].join(" "),...((oe=B.hide)==null?void 0:oe.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:t.dir,children:o.jsx(pHe,{scope:i,placedSide:V,placedAlign:K,onArrowChange:S,arrowX:q,arrowY:U,shouldHideArrow:G,children:o.jsx(_r.div,{"data-side":V,"data-align":K,...v,ref:w,style:{...v.style,animation:M?(Ee=v.style)==null?void 0:Ee.animation:"none"}})})})},"PopperContent"));function Wve(e){return e!==null}rm(Wve,"isNotNull");var gHe=rm(e=>({name:"transformOrigin",options:e,fn(t){var v,y,x;const{placement:n,rects:i,middlewareData:r}=t,a=((v=r.arrow)==null?void 0:v.centerOffset)!==0,l=a?0:e.arrowWidth,c=a?0:e.arrowHeight,[u,d]=SR(n),f={start:"0%",center:"50%",end:"100%"}[d],h=(((y=r.arrow)==null?void 0:y.x)??0)+l/2,m=(((x=r.arrow)==null?void 0:x.y)??0)+c/2;let g="",b="";return u==="bottom"?(g=a?f:`${h}px`,b=`${-c}px`):u==="top"?(g=a?f:`${h}px`,b=`${i.floating.height+c}px`):u==="right"?(g=`${-c}px`,b=a?f:`${m}px`):u==="left"&&(g=`${i.floating.width+c}px`,b=a?f:`${m}px`),{data:{x:g,y:b}}}}),"transformOrigin");function SR(e){const[t,n="center"]=e.split("-");return[t,n]}rm(SR,"getSideAndAlignFromPlacement");var kR=dHe,I7=hHe,P7=mHe,bHe=Object.defineProperty,D7=(e,t)=>bHe(e,"name",{value:t,configurable:!0}),tM=!1;function Kve(){const[e,t]=p.useState(tM);return p.useEffect(()=>{tM||(tM=!0,t(!0))},[]),e}D7(Kve,"useIsHydrated");var Gve=Vb[" useSyncExternalStore ".trim().toString()];function Xve(){return()=>{}}D7(Xve,"subscribe");function Yve(){return Gve(Xve,()=>!0,()=>!1)}D7(Yve,"useIsHydratedModern");var yHe=typeof Gve=="function"?Yve:Kve,vHe=Object.defineProperty,Jb=(e,t)=>vHe(e,"name",{value:t,configurable:!0}),nM="rovingFocusGroup.onEntryFocus",xHe={bubbles:!1,cancelable:!0},ER="RovingFocusGroup",[J4,Zve,wHe]=g7(ER),[OHe,Fx]=El(ER,[wHe]),[SHe,kHe]=OHe(ER),EHe=p.forwardRef(Jb(function(t,n){return o.jsx(J4.Provider,{scope:t.__scopeRovingFocusGroup,children:o.jsx(J4.Slot,{scope:t.__scopeRovingFocusGroup,children:o.jsx(CHe,{...t,ref:n})})})},"RovingFocusGroup")),CHe=p.forwardRef(Jb(function(t,n){const{__scopeRovingFocusGroup:i,orientation:r,loop:s=!1,dir:a,currentTabStopId:l,defaultCurrentTabStopId:c,onCurrentTabStopIdChange:u,onEntryFocus:d,preventScrollOnEntryFocus:f=!1,...h}=t,m=p.useRef(null),g=ar(n,m),b=Yk(a),[v,y]=au({prop:l,defaultProp:c??null,onChange:u,caller:ER}),[x,O]=p.useState(!1),w=Fu(d),k=Zve(i),S=p.useRef(!1),[E,C]=p.useState(0);return p.useEffect(()=>{const N=m.current;if(N)return N.addEventListener(nM,w),()=>N.removeEventListener(nM,w)},[w]),o.jsx(SHe,{scope:i,orientation:r,dir:b,loop:s,currentTabStopId:v,onItemFocus:p.useCallback(N=>y(N),[y]),onItemShiftTab:p.useCallback(()=>O(!0),[]),onFocusableItemAdd:p.useCallback(()=>C(N=>N+1),[]),onFocusableItemRemove:p.useCallback(()=>C(N=>N-1),[]),children:o.jsx(_r.div,{tabIndex:x||E===0?-1:0,"data-orientation":r,...h,ref:g,style:{outline:"none",...t.style},onMouseDown:Sn(t.onMouseDown,()=>{S.current=!0}),onFocus:Sn(t.onFocus,N=>{const T=!S.current;if(N.target===N.currentTarget&&T&&!x){const j=new CustomEvent(nM,xHe);if(N.currentTarget.dispatchEvent(j),!j.defaultPrevented){const A=k().filter($=>$.focusable),L=A.find($=>$.active),_=A.find($=>$.id===v),I=[L,_,...A].filter(Boolean).map($=>$.ref.current);M7(I,f)}}S.current=!1}),onBlur:Sn(t.onBlur,()=>O(!1))})})},"RovingFocusGroupImpl")),THe="RovingFocusGroupItem",AHe=p.forwardRef(Jb(function(t,n){const{__scopeRovingFocusGroup:i,focusable:r=!0,active:s=!1,tabStopId:a,children:l,...c}=t,u=vm(),d=a||u,f=kHe(THe,i),h=f.currentTabStopId===d,m=Zve(i),{onFocusableItemAdd:g,onFocusableItemRemove:b,currentTabStopId:v}=f,y=yHe();return eu(()=>{if(!(!y||!r))return g(),()=>b()},[y,r,g,b]),p.useEffect(()=>{if(!(y||!r))return g(),()=>b()},[y,r,g,b]),o.jsx(J4.ItemSlot,{scope:i,id:d,focusable:r,active:s,children:o.jsx(_r.span,{tabIndex:h?0:-1,"data-orientation":f.orientation,...c,ref:n,onMouseDown:Sn(t.onMouseDown,x=>{r?f.onItemFocus(d):x.preventDefault()}),onFocus:Sn(t.onFocus,()=>f.onItemFocus(d)),onKeyDown:Sn(t.onKeyDown,x=>{if(x.key==="Tab"&&x.shiftKey){f.onItemShiftTab();return}if(x.target!==x.currentTarget)return;const O=exe(x,f.orientation,f.dir);if(O!==void 0){if(x.metaKey||x.ctrlKey||x.altKey||x.shiftKey)return;x.preventDefault();let k=m().filter(S=>S.focusable).map(S=>S.ref.current);if(O==="last")k.reverse();else if(O==="prev"||O==="next"){O==="prev"&&k.reverse();const S=k.indexOf(x.currentTarget);k=f.loop?txe(k,S+1):k.slice(S+1)}setTimeout(()=>M7(k))}}),children:typeof l=="function"?l({isCurrentTabStop:h,hasTabStop:v!=null}):l})})},"RovingFocusGroupItem")),_He={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function Jve(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}Jb(Jve,"getDirectionAwareKey");function exe(e,t,n){const i=Jve(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(i))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(i)))return _He[i]}Jb(exe,"getFocusIntent");function M7(e,t=!1){const n=document.activeElement;for(const i of e)if(i===n||(i.focus({preventScroll:t}),document.activeElement!==n))return}Jb(M7,"focusFirst");function txe(e,t){return e.map((n,i)=>e[(t+i)%e.length])}Jb(txe,"wrapArray");var L7=EHe,$7=AHe,NHe=Object.defineProperty,Hi=(e,t)=>NHe(e,"name",{value:t,configurable:!0}),e6=["Enter"," "],jHe=["ArrowDown","PageUp","Home"],nxe=["ArrowUp","PageDown","End"],RHe=[...jHe,...nxe],IHe={ltr:[...e6,"ArrowRight"],rtl:[...e6,"ArrowLeft"]},PHe={ltr:["ArrowLeft"],rtl:["ArrowRight"]},CR="Menu",[CS,DHe,MHe]=g7(CR),[e0,ixe]=El(CR,[MHe,$x,Fx]),TR=$x(),rxe=Fx(),[sxe,Qm]=e0(CR),[LHe,Jk]=e0(CR),$He=Hi(e=>{const{__scopeMenu:t,open:n=!1,children:i,dir:r,onOpenChange:s,modal:a=!0}=e,l=TR(t),[c,u]=p.useState(null),d=p.useRef(!1),f=Fu(s),h=Yk(r);return p.useEffect(()=>{const m=Hi(()=>{d.current=!0,document.addEventListener("pointerdown",g,{capture:!0,once:!0}),document.addEventListener("pointermove",g,{capture:!0,once:!0})},"handleKeyDown"),g=Hi(()=>d.current=!1,"handlePointer");return document.addEventListener("keydown",m,{capture:!0}),()=>{document.removeEventListener("keydown",m,{capture:!0}),document.removeEventListener("pointerdown",g,{capture:!0}),document.removeEventListener("pointermove",g,{capture:!0})}},[]),p.useEffect(()=>{if(!n)return;const m=Hi(()=>f(!1),"handleBlur");return window.addEventListener("blur",m),()=>window.removeEventListener("blur",m)},[n,f]),o.jsx(kR,{...l,children:o.jsx(sxe,{scope:t,open:n,onOpenChange:f,content:c,onContentChange:u,children:o.jsx(LHe,{scope:t,onClose:p.useCallback(()=>f(!1),[f]),isUsingKeyboardRef:d,dir:h,modal:a,children:i})})})},"Menu"),axe=p.forwardRef(Hi(function(t,n){const{__scopeMenu:i,...r}=t,s=TR(i);return o.jsx(I7,{...s,...r,ref:n})},"MenuAnchor")),oxe="MenuPortal",[FHe,lxe]=e0(oxe,{forceMount:void 0}),BHe=Hi(e=>{const{__scopeMenu:t,forceMount:n,children:i,container:r}=e,s=Qm(oxe,t);return o.jsx(FHe,{scope:t,forceMount:n,children:o.jsx(Xd,{present:n||s.open,children:o.jsx(w7,{asChild:!0,container:r,children:i})})})},"MenuPortal"),Du="MenuContent",[UHe,F7]=e0(Du),QHe=p.forwardRef(Hi(function(t,n){const i=lxe(Du,t.__scopeMenu),{forceMount:r=i.forceMount,...s}=t,a=Qm(Du,t.__scopeMenu),l=Jk(Du,t.__scopeMenu);return o.jsx(CS.Provider,{scope:t.__scopeMenu,children:o.jsx(Xd,{present:r||a.open,children:o.jsx(CS.Slot,{scope:t.__scopeMenu,children:l.modal?o.jsx(zHe,{...s,ref:n}):o.jsx(VHe,{...s,ref:n})})})})},"MenuContent")),zHe=p.forwardRef(Hi(function(t,n){const i=Qm(Du,t.__scopeMenu),r=p.useRef(null),s=ar(n,r);return p.useEffect(()=>{const a=r.current;if(a)return _ve(a)},[]),o.jsx(B7,{...t,ref:s,trapFocus:i.open,disableOutsidePointerEvents:i.open,disableOutsideScroll:!0,onFocusOutside:Sn(t.onFocusOutside,a=>a.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>i.onOpenChange(!1)})},"MenuRootContentModal")),VHe=p.forwardRef(Hi(function(t,n){const i=Qm(Du,t.__scopeMenu);return o.jsx(B7,{...t,ref:n,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>i.onOpenChange(!1)})},"MenuRootContentNonModal")),HHe=wh("MenuContent.ScrollLock"),B7=p.forwardRef(Hi(function(t,n){const{__scopeMenu:i,loop:r=!1,trapFocus:s,onOpenAutoFocus:a,onCloseAutoFocus:l,disableOutsidePointerEvents:c,onEntryFocus:u,onEscapeKeyDown:d,onPointerDownOutside:f,onFocusOutside:h,onInteractOutside:m,onDismiss:g,disableOutsideScroll:b,...v}=t,y=Qm(Du,i),x=Jk(Du,i),O=TR(i),w=rxe(i),k=DHe(i),[S,E]=p.useState(null),C=p.useRef(null),N=ar(n,C,y.onContentChange),T=p.useRef(0),j=p.useRef(""),A=p.useRef(0),L=p.useRef(null),_=p.useRef("right"),P=p.useRef(0),I=b?S7:p.Fragment,$=b?{as:HHe,allowPinchZoom:!0}:void 0,M=Hi(R=>{var re,se;const V=j.current+R,K=k().filter(me=>!me.disabled),Q=document.activeElement,q=(re=K.find(me=>me.ref.current===Q))==null?void 0:re.textValue,U=K.map(me=>me.textValue),G=gxe(U,V,q),ae=(se=K.find(me=>me.textValue===G))==null?void 0:se.ref.current;Hi(function me(Z){j.current=Z,window.clearTimeout(T.current),Z!==""&&(T.current=window.setTimeout(()=>me(""),1e3))},"updateSearch")(V),ae&&setTimeout(()=>ae.focus())},"handleTypeaheadSearch");p.useEffect(()=>()=>window.clearTimeout(T.current),[]),gR();const B=p.useCallback(R=>{var K,Q;return _.current===((K=L.current)==null?void 0:K.side)&&yxe(R,(Q=L.current)==null?void 0:Q.area)},[]);return o.jsx(UHe,{scope:i,searchRef:j,onItemEnter:p.useCallback(R=>{B(R)&&R.preventDefault()},[B]),onItemLeave:p.useCallback(R=>{var V;B(R)||((V=C.current)==null||V.focus(),E(null))},[B]),onTriggerLeave:p.useCallback(R=>{B(R)&&R.preventDefault()},[B]),pointerGraceTimerRef:A,onPointerGraceIntentChange:p.useCallback(R=>{L.current=R},[]),children:o.jsx(I,{...$,children:o.jsx(pve,{asChild:!0,trapped:s,onMountAutoFocus:Sn(a,R=>{var V;R.preventDefault(),(V=C.current)==null||V.focus({preventScroll:!0})}),onUnmountAutoFocus:l,children:o.jsx(y7,{asChild:!0,disableOutsidePointerEvents:c,onEscapeKeyDown:d,onPointerDownOutside:f,onFocusOutside:h,onInteractOutside:m,onDismiss:g,children:o.jsx(L7,{asChild:!0,...w,dir:x.dir,orientation:"vertical",loop:r,currentTabStopId:S,onCurrentTabStopIdChange:E,onEntryFocus:Sn(u,R=>{x.isUsingKeyboardRef.current||R.preventDefault()}),preventScrollOnEntryFocus:!0,children:o.jsx(P7,{role:"menu","aria-orientation":"vertical","data-state":Q7(y.open),"data-radix-menu-content":"",dir:x.dir,...O,...v,ref:N,style:{outline:"none",...v.style},onKeyDown:Sn(v.onKeyDown,R=>{const K=R.target.closest("[data-radix-menu-content]")===R.currentTarget,Q=R.ctrlKey||R.altKey||R.metaKey,q=R.key.length===1;K&&(R.key==="Tab"&&R.preventDefault(),!Q&&q&&M(R.key));const U=C.current;if(R.target!==U||!RHe.includes(R.key))return;R.preventDefault();const ae=k().filter(re=>!re.disabled).map(re=>re.ref.current);nxe.includes(R.key)&&ae.reverse(),pxe(ae)}),onBlur:Sn(t.onBlur,R=>{R.currentTarget.contains(R.target)||(window.clearTimeout(T.current),j.current="")}),onPointerMove:Sn(t.onPointerMove,Hv(R=>{const V=R.target,K=P.current!==R.clientX;if(R.currentTarget.contains(V)&&K){const Q=R.clientX>P.current?"right":"left";_.current=Q,P.current=R.clientX}}))})})})})})})},"MenuContentImpl")),qHe=p.forwardRef(Hi(function(t,n){const{__scopeMenu:i,...r}=t;return o.jsx(_r.div,{role:"group",...r,ref:n})},"MenuGroup")),t6="MenuItem",mK="menu.itemSelect",U7=p.forwardRef(Hi(function(t,n){const{disabled:i=!1,onSelect:r,...s}=t,a=p.useRef(null),l=Jk(t6,t.__scopeMenu),c=F7(t6,t.__scopeMenu),u=ar(n,a),d=p.useRef(!1),f=Hi(()=>{const h=a.current;if(!i&&h){const m=new CustomEvent(mK,{bubbles:!0,cancelable:!0});h.addEventListener(mK,g=>r==null?void 0:r(g),{once:!0}),m7(h,m),m.defaultPrevented?d.current=!1:l.onClose()}},"handleSelect");return o.jsx(cxe,{...s,ref:u,disabled:i,onClick:Sn(t.onClick,f),onPointerDown:h=>{var m;(m=t.onPointerDown)==null||m.call(t,h),d.current=!0},onPointerUp:Sn(t.onPointerUp,h=>{var m;d.current||(m=h.currentTarget)==null||m.click()}),onKeyDown:Sn(t.onKeyDown,h=>{i||h.target!==h.currentTarget||c.searchRef.current!==""&&h.key===" "||e6.includes(h.key)&&(h.currentTarget.click(),h.preventDefault())})})},"MenuItem")),cxe=p.forwardRef(Hi(function(t,n){const{__scopeMenu:i,disabled:r=!1,textValue:s,...a}=t,l=F7(t6,i),c=rxe(i),u=p.useRef(null),d=ar(n,u),[f,h]=p.useState(!1),[m,g]=p.useState("");return p.useEffect(()=>{const b=u.current;b&&g((b.textContent??"").trim())},[a.children]),o.jsx(CS.ItemSlot,{scope:i,disabled:r,textValue:s??m,children:o.jsx($7,{asChild:!0,...c,focusable:!r,children:o.jsx(_r.div,{role:"menuitem","data-highlighted":f?"":void 0,"aria-disabled":r||void 0,"data-disabled":r?"":void 0,...a,ref:d,onPointerMove:Sn(t.onPointerMove,Hv(b=>{r?l.onItemLeave(b):(l.onItemEnter(b),b.defaultPrevented||b.currentTarget.focus({preventScroll:!0}))})),onPointerLeave:Sn(t.onPointerLeave,Hv(b=>l.onItemLeave(b))),onFocus:Sn(t.onFocus,()=>h(!0)),onBlur:Sn(t.onBlur,()=>h(!1))})})})},"MenuItemImpl")),WHe=p.forwardRef(Hi(function(t,n){const{checked:i=!1,onCheckedChange:r,...s}=t;return o.jsx(dxe,{scope:t.__scopeMenu,checked:i,children:o.jsx(U7,{role:"menuitemcheckbox","aria-checked":TS(i)?"mixed":i,...s,ref:n,"data-state":AR(i),onSelect:Sn(s.onSelect,()=>r==null?void 0:r(TS(i)?!0:!i),{checkForDefaultPrevented:!1})})})},"MenuCheckboxItem")),KHe="MenuRadioGroup",[GHe,XHe]=e0(KHe,{value:void 0,onValueChange:Hi(()=>{},"onValueChange")}),YHe=p.forwardRef(Hi(function(t,n){const{value:i,onValueChange:r,...s}=t,a=Fu(r);return o.jsx(GHe,{scope:t.__scopeMenu,value:i,onValueChange:a,children:o.jsx(qHe,{...s,ref:n})})},"MenuRadioGroup")),ZHe="MenuRadioItem",JHe=p.forwardRef(Hi(function(t,n){const{value:i,...r}=t,s=XHe(ZHe,t.__scopeMenu),a=i===s.value;return o.jsx(dxe,{scope:t.__scopeMenu,checked:a,children:o.jsx(U7,{role:"menuitemradio","aria-checked":a,...r,ref:n,"data-state":AR(a),onSelect:Sn(r.onSelect,()=>{var l;return(l=s.onValueChange)==null?void 0:l.call(s,i)},{checkForDefaultPrevented:!1})})})},"MenuRadioItem")),uxe="MenuItemIndicator",[dxe,eqe]=e0(uxe,{checked:!1}),tqe=p.forwardRef(Hi(function(t,n){const{__scopeMenu:i,forceMount:r,...s}=t,a=eqe(uxe,i);return o.jsx(Xd,{present:r||TS(a.checked)||a.checked===!0,children:o.jsx(_r.span,{...s,ref:n,"data-state":AR(a.checked)})})},"MenuItemIndicator")),nqe=p.forwardRef(Hi(function(t,n){const{__scopeMenu:i,...r}=t;return o.jsx(_r.div,{role:"separator","aria-orientation":"horizontal",...r,ref:n})},"MenuSeparator")),fxe="MenuSub",[iqe,hxe]=e0(fxe),rqe=Hi(e=>{const{__scopeMenu:t,children:n,open:i=!1,onOpenChange:r}=e,s=Qm(fxe,t),a=TR(t),[l,c]=p.useState(null),[u,d]=p.useState(null),f=Fu(r);return p.useEffect(()=>(s.open===!1&&f(!1),()=>f(!1)),[s.open,f]),o.jsx(kR,{...a,children:o.jsx(sxe,{scope:t,open:i,onOpenChange:f,content:u,onContentChange:d,children:o.jsx(iqe,{scope:t,contentId:vm(),triggerId:vm(),trigger:l,onTriggerChange:c,children:n})})})},"MenuSub"),fT="MenuSubTrigger",sqe=p.forwardRef(Hi(function(t,n){const i=Qm(fT,t.__scopeMenu),r=Jk(fT,t.__scopeMenu),s=hxe(fT,t.__scopeMenu),a=F7(fT,t.__scopeMenu),l=p.useRef(null),{pointerGraceTimerRef:c,onPointerGraceIntentChange:u}=a,d={__scopeMenu:t.__scopeMenu},f=p.useCallback(()=>{l.current&&window.clearTimeout(l.current),l.current=null},[]);p.useEffect(()=>f,[f]),p.useEffect(()=>{const m=c.current;return()=>{window.clearTimeout(m),u(null)}},[c,u]);const h=ar(n,s.onTriggerChange);return o.jsx(axe,{asChild:!0,...d,children:o.jsx(cxe,{id:s.triggerId,"aria-haspopup":"menu","aria-expanded":i.open,"aria-controls":i.open?s.contentId:void 0,"data-state":Q7(i.open),...t,ref:h,onClick:m=>{var g;(g=t.onClick)==null||g.call(t,m),!(t.disabled||m.defaultPrevented)&&(m.currentTarget.focus(),i.open||i.onOpenChange(!0))},onPointerMove:Sn(t.onPointerMove,Hv(m=>{a.onItemEnter(m),!m.defaultPrevented&&!t.disabled&&!i.open&&!l.current&&(a.onPointerGraceIntentChange(null),l.current=window.setTimeout(()=>{i.onOpenChange(!0),f()},100))})),onPointerLeave:Sn(t.onPointerLeave,Hv(m=>{var b,v;f();const g=(b=i.content)==null?void 0:b.getBoundingClientRect();if(g){const y=(v=i.content)==null?void 0:v.dataset.side,x=y==="right",O=x?-5:5,w=g[x?"left":"right"],k=g[x?"right":"left"];a.onPointerGraceIntentChange({area:[{x:m.clientX+O,y:m.clientY},{x:w,y:g.top},{x:k,y:g.top},{x:k,y:g.bottom},{x:w,y:g.bottom}],side:y}),window.clearTimeout(c.current),c.current=window.setTimeout(()=>a.onPointerGraceIntentChange(null),300)}else{if(a.onTriggerLeave(m),m.defaultPrevented)return;a.onPointerGraceIntentChange(null)}})),onKeyDown:Sn(t.onKeyDown,m=>{var b;t.disabled||m.target!==m.currentTarget||a.searchRef.current!==""&&m.key===" "||IHe[r.dir].includes(m.key)&&(i.onOpenChange(!0),(b=i.content)==null||b.focus(),m.preventDefault())})})})},"MenuSubTrigger")),aqe="MenuSubContent",oqe=p.forwardRef(Hi(function(t,n){const i=lxe(Du,t.__scopeMenu),{forceMount:r=i.forceMount,align:s="start",...a}=t,l=Qm(Du,t.__scopeMenu),c=Jk(Du,t.__scopeMenu),u=hxe(aqe,t.__scopeMenu),d=p.useRef(null),f=ar(n,d);return o.jsx(CS.Provider,{scope:t.__scopeMenu,children:o.jsx(Xd,{present:r||l.open,children:o.jsx(CS.Slot,{scope:t.__scopeMenu,children:o.jsx(B7,{id:u.contentId,"aria-labelledby":u.triggerId,...a,ref:f,align:s,side:c.dir==="rtl"?"left":"right",disableOutsidePointerEvents:!1,disableOutsideScroll:!1,trapFocus:!1,onOpenAutoFocus:h=>{var m;c.isUsingKeyboardRef.current&&((m=d.current)==null||m.focus()),h.preventDefault()},onCloseAutoFocus:h=>h.preventDefault(),onFocusOutside:Sn(t.onFocusOutside,h=>{h.target!==u.trigger&&l.onOpenChange(!1)}),onEscapeKeyDown:Sn(t.onEscapeKeyDown,h=>{c.onClose(),h.preventDefault()}),onKeyDown:Sn(t.onKeyDown,h=>{var b;const m=h.currentTarget.contains(h.target),g=PHe[c.dir].includes(h.key);m&&g&&(l.onOpenChange(!1),(b=u.trigger)==null||b.focus(),h.preventDefault())})})})})})},"MenuSubContent"));function Q7(e){return e?"open":"closed"}Hi(Q7,"getOpenState");function TS(e){return e==="indeterminate"}Hi(TS,"isIndeterminate");function AR(e){return TS(e)?"indeterminate":e?"checked":"unchecked"}Hi(AR,"getCheckedState");function pxe(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}Hi(pxe,"focusFirst");function mxe(e,t){return e.map((n,i)=>e[(t+i)%e.length])}Hi(mxe,"wrapArray");function gxe(e,t,n){const r=t.length>1&&Array.from(t).every(u=>u===t[0])?t[0]:t,s=n?e.indexOf(n):-1;let a=mxe(e,Math.max(s,0));r.length===1&&(a=a.filter(u=>u!==n));const c=a.find(u=>u.toLowerCase().startsWith(r.toLowerCase()));return c!==n?c:void 0}Hi(gxe,"getNextMatch");function bxe(e,t){const{x:n,y:i}=e;let r=!1;for(let s=0,a=t.length-1;si!=h>i&&n<(f-u)*(i-d)/(h-d)+u&&(r=!r)}return r}Hi(bxe,"isPointInPolygon");function yxe(e,t){if(!t)return!1;const n={x:e.clientX,y:e.clientY};return bxe(n,t)}Hi(yxe,"isPointerInGraceArea");function Hv(e){return t=>t.pointerType==="mouse"?e(t):void 0}Hi(Hv,"whenMouse");var lqe=$He,cqe=axe,uqe=BHe,dqe=QHe,fqe=U7,hqe=WHe,pqe=YHe,mqe=JHe,gqe=tqe,bqe=nqe,yqe=rqe,vqe=sqe,xqe=oqe,wqe=Object.defineProperty,bc=(e,t)=>wqe(e,"name",{value:t,configurable:!0}),z7="DropdownMenu",[Oqe,yHt]=El(z7,[ixe]),yc=ixe(),[Sqe,vxe]=Oqe(z7),kqe=bc(e=>{const{__scopeDropdownMenu:t,children:n,dir:i,open:r,defaultOpen:s,onOpenChange:a,modal:l=!0}=e,c=yc(t),u=p.useRef(null),[d,f]=au({prop:r,defaultProp:s??!1,onChange:a,caller:z7});return o.jsx(Sqe,{scope:t,triggerId:vm(),triggerRef:u,contentId:vm(),open:d,onOpenChange:f,onOpenToggle:p.useCallback(()=>f(h=>!h),[f]),modal:l,children:o.jsx(lqe,{...c,open:d,onOpenChange:f,dir:i,modal:l,children:n})})},"DropdownMenu"),Eqe="DropdownMenuTrigger",Cqe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,disabled:r=!1,...s}=t,a=vxe(Eqe,i),l=yc(i),c=ar(n,a.triggerRef);return o.jsx(cqe,{asChild:!0,...l,children:o.jsx(_r.button,{type:"button",id:a.triggerId,"aria-haspopup":"menu","aria-expanded":a.open,"aria-controls":a.open?a.contentId:void 0,"data-state":a.open?"open":"closed","data-disabled":r?"":void 0,disabled:r,...s,ref:c,onPointerDown:Sn(t.onPointerDown,u=>{!r&&u.button===0&&u.ctrlKey===!1&&(a.onOpenToggle(),a.open||u.preventDefault())}),onKeyDown:Sn(t.onKeyDown,u=>{r||(["Enter"," "].includes(u.key)&&a.onOpenToggle(),u.key==="ArrowDown"&&a.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(u.key)&&u.preventDefault())})})})},"DropdownMenuTrigger")),Tqe=bc(e=>{const{__scopeDropdownMenu:t,...n}=e,i=yc(t);return o.jsx(uqe,{...i,...n})},"DropdownMenuPortal"),Aqe="DropdownMenuContent",_qe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=vxe(Aqe,i),a=yc(i),l=p.useRef(!1);return o.jsx(dqe,{id:s.contentId,"aria-labelledby":s.triggerId,...a,...r,ref:n,onCloseAutoFocus:Sn(t.onCloseAutoFocus,c=>{var u;l.current||(u=s.triggerRef.current)==null||u.focus(),l.current=!1,c.preventDefault()}),onInteractOutside:Sn(t.onInteractOutside,c=>{const u=c.detail.originalEvent,d=u.button===0&&u.ctrlKey===!0,f=u.button===2||d;(!s.modal||f)&&(l.current=!0)}),style:{...t.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})},"DropdownMenuContent")),Nqe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=yc(i);return o.jsx(fqe,{...s,...r,ref:n})},"DropdownMenuItem")),jqe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=yc(i);return o.jsx(hqe,{...s,...r,ref:n})},"DropdownMenuCheckboxItem")),Rqe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=yc(i);return o.jsx(pqe,{...s,...r,ref:n})},"DropdownMenuRadioGroup")),Iqe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=yc(i);return o.jsx(mqe,{...s,...r,ref:n})},"DropdownMenuRadioItem")),Pqe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=yc(i);return o.jsx(gqe,{...s,...r,ref:n})},"DropdownMenuItemIndicator")),Dqe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=yc(i);return o.jsx(bqe,{...s,...r,ref:n})},"DropdownMenuSeparator")),Mqe=bc(e=>{const{__scopeDropdownMenu:t,children:n,open:i,onOpenChange:r,defaultOpen:s}=e,a=yc(t),[l,c]=au({prop:i,defaultProp:s??!1,onChange:r,caller:"DropdownMenuSub"});return o.jsx(yqe,{...a,open:l,onOpenChange:c,children:n})},"DropdownMenuSub"),Lqe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=yc(i);return o.jsx(vqe,{...s,...r,ref:n})},"DropdownMenuSubTrigger")),$qe=p.forwardRef(bc(function(t,n){const{__scopeDropdownMenu:i,...r}=t,s=yc(i);return o.jsx(xqe,{...s,...r,ref:n,style:{...t.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})},"DropdownMenuSubContent")),Fqe=kqe,Bqe=Cqe,xxe=Tqe,Uqe=_qe,wxe=Nqe,Qqe=jqe,zqe=Rqe,Vqe=Iqe,Oxe=Pqe,Hqe=Dqe,qqe=Mqe,Wqe=Lqe,Kqe=$qe,Gqe=Object.defineProperty,zm=(e,t)=>Gqe(e,"name",{value:t,configurable:!0}),V7="Popover",[Sxe,vHt]=El(V7,[$x]),H7=$x(),[Xqe,Bx]=Sxe(V7),Yqe=zm(e=>{const{__scopePopover:t,children:n,open:i,defaultOpen:r,onOpenChange:s,modal:a=!1}=e,l=H7(t),c=p.useRef(null),[u,d]=p.useState(!1),[f,h]=au({prop:i,defaultProp:r??!1,onChange:s,caller:V7});return o.jsx(kR,{...l,children:o.jsx(Xqe,{scope:t,contentId:vm(),triggerRef:c,open:f,onOpenChange:h,onOpenToggle:p.useCallback(()=>h(m=>!m),[h]),hasCustomAnchor:u,onCustomAnchorAdd:p.useCallback(()=>d(!0),[]),onCustomAnchorRemove:p.useCallback(()=>d(!1),[]),modal:a,children:n})})},"Popover"),Zqe="PopoverTrigger",Jqe=p.forwardRef(zm(function(t,n){const{__scopePopover:i,...r}=t,s=Bx(Zqe,i),a=H7(i),l=ar(n,s.triggerRef),c=o.jsx(_r.button,{type:"button","aria-haspopup":"dialog","aria-expanded":s.open,"aria-controls":s.open?s.contentId:void 0,"data-state":q7(s.open),...r,ref:l,onClick:Sn(t.onClick,s.onOpenToggle)});return s.hasCustomAnchor?c:o.jsx(I7,{asChild:!0,...a,children:c})},"PopoverTrigger")),kxe="PopoverPortal",[eWe,tWe]=Sxe(kxe,{forceMount:void 0}),nWe=zm(e=>{const{__scopePopover:t,forceMount:n,children:i,container:r}=e,s=Bx(kxe,t);return o.jsx(eWe,{scope:t,forceMount:n,children:o.jsx(Xd,{present:n||s.open,children:o.jsx(w7,{asChild:!0,container:r,children:i})})})},"PopoverPortal"),AS="PopoverContent",iWe=p.forwardRef(zm(function(t,n){const i=tWe(AS,t.__scopePopover),{forceMount:r=i.forceMount,...s}=t,a=Bx(AS,t.__scopePopover);return o.jsx(Xd,{present:r||a.open,children:a.modal?o.jsx(sWe,{...s,ref:n}):o.jsx(aWe,{...s,ref:n})})},"PopoverContent")),rWe=wh("PopoverContent.RemoveScroll"),sWe=p.forwardRef(zm(function(t,n){const i=Bx(AS,t.__scopePopover),r=p.useRef(null),s=ar(n,r),a=p.useRef(!1);return p.useEffect(()=>{const l=r.current;if(l)return _ve(l)},[]),o.jsx(S7,{as:rWe,allowPinchZoom:!0,children:o.jsx(Exe,{...t,ref:s,trapFocus:i.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:Sn(t.onCloseAutoFocus,l=>{var c;l.preventDefault(),a.current||(c=i.triggerRef.current)==null||c.focus()}),onPointerDownOutside:Sn(t.onPointerDownOutside,l=>{const c=l.detail.originalEvent,u=c.button===0&&c.ctrlKey===!0,d=c.button===2||u;a.current=d},{checkForDefaultPrevented:!1}),onFocusOutside:Sn(t.onFocusOutside,l=>l.preventDefault(),{checkForDefaultPrevented:!1})})})},"PopoverContentModal")),aWe=p.forwardRef(zm(function(t,n){const i=Bx(AS,t.__scopePopover),r=p.useRef(!1),s=p.useRef(!1);return o.jsx(Exe,{...t,ref:n,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:a=>{var l,c;(l=t.onCloseAutoFocus)==null||l.call(t,a),a.defaultPrevented||(r.current||(c=i.triggerRef.current)==null||c.focus(),a.preventDefault()),r.current=!1,s.current=!1},onInteractOutside:a=>{var u,d;(u=t.onInteractOutside)==null||u.call(t,a),a.defaultPrevented||(r.current=!0,a.detail.originalEvent.type==="pointerdown"&&(s.current=!0));const l=a.target;((d=i.triggerRef.current)==null?void 0:d.contains(l))&&a.preventDefault(),a.detail.originalEvent.type==="focusin"&&s.current&&a.preventDefault()}})},"PopoverContentNonModal")),Exe=p.forwardRef(zm(function(t,n){const{__scopePopover:i,trapFocus:r,onOpenAutoFocus:s,onCloseAutoFocus:a,disableOutsidePointerEvents:l,onEscapeKeyDown:c,onPointerDownOutside:u,onFocusOutside:d,onInteractOutside:f,...h}=t,m=Bx(AS,i),g=H7(i);return gR(),o.jsx(pve,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:s,onUnmountAutoFocus:a,children:o.jsx(y7,{asChild:!0,disableOutsidePointerEvents:l,onInteractOutside:f,onEscapeKeyDown:c,onPointerDownOutside:u,onFocusOutside:d,onDismiss:()=>m.onOpenChange(!1),deferPointerDownOutside:!0,children:o.jsx(P7,{"data-state":q7(m.open),role:"dialog",id:m.contentId,...g,...h,ref:n,style:{...h.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}})})})},"PopoverContentImpl"));function q7(e){return e?"open":"closed"}zm(q7,"getState");var Cxe=Yqe,Txe=Jqe,Axe=nWe,_xe=iWe,oWe=Object.defineProperty,Oo=(e,t)=>oWe(e,"name",{value:t,configurable:!0}),Nxe="Radio",[lWe,jxe]=El(Nxe),[cWe,_R]=lWe(Nxe);function Rxe(e){const{__scopeRadio:t,checked:n=!1,children:i,disabled:r,form:s,name:a,onCheck:l,required:c,value:u="on",internal_do_not_use_render:d}=e,[f,h]=p.useState(null),[m,g]=p.useState(null),b=p.useRef(!1),[v,y]=p.useReducer(w=>w+1,0),x=f?!!s||!!f.closest("form"):!0,O={checked:n,disabled:r,required:c,name:a,form:s,value:u,control:f,setControl:h,hasConsumerStoppedPropagationRef:b,userInteractionCount:v,onUserInteraction:y,isFormControl:x,bubbleInput:m,setBubbleInput:g,onCheck:Oo(()=>l==null?void 0:l(),"onCheck")};return o.jsx(cWe,{scope:t,...O,children:Ixe(d)?d(O):i})}Oo(Rxe,"RadioProvider");var uWe="RadioTrigger",dWe=p.forwardRef(Oo(function({__scopeRadio:t,onClick:n,...i},r){const{checked:s,disabled:a,value:l,setControl:c,onCheck:u,hasConsumerStoppedPropagationRef:d,onUserInteraction:f,isFormControl:h,bubbleInput:m}=_R(uWe,t),g=ar(r,c);return o.jsx(_r.button,{type:"button",role:"radio","aria-checked":s,"data-state":W7(s),"data-disabled":a?"":void 0,disabled:a,value:l,...i,ref:g,onClick:Sn(n,b=>{s||(f(),u()),m&&h&&(d.current=b.isPropagationStopped(),d.current||b.stopPropagation())})})},"RadioTrigger")),fWe="RadioIndicator",hWe=p.forwardRef(Oo(function(t,n){const{__scopeRadio:i,forceMount:r,...s}=t,a=_R(fWe,i);return o.jsx(Xd,{present:r||a.checked,children:o.jsx(_r.span,{"data-state":W7(a.checked),"data-disabled":a.disabled?"":void 0,...s,ref:n})})},"RadioIndicator")),pWe="RadioBubbleInput",mWe=p.forwardRef(Oo(function({__scopeRadio:t,onClick:n,...i},r){const{control:s,checked:a,required:l,disabled:c,name:u,value:d,form:f,bubbleInput:h,setBubbleInput:m,hasConsumerStoppedPropagationRef:g,userInteractionCount:b}=_R(pWe,t),v=ar(r,m),y=Zk(s),x=p.useRef(!1),O=p.useRef(a),w=p.useRef(b);p.useEffect(()=>{const S=h;if(!S)return;const E=window.HTMLInputElement.prototype,N=Object.getOwnPropertyDescriptor(E,"checked").set,T=b!==w.current;w.current=b;const j=O.current!==a;O.current=a;const A=!(T&&g.current);if(j&&N){x.current=!T;const L=new Event("click",{bubbles:A});N.call(S,a),S.dispatchEvent(L),x.current=!1}},[h,a,g,b]);const k=p.useRef(a);return o.jsx(_r.input,{type:"radio","aria-hidden":!0,defaultChecked:k.current,required:l,disabled:c,name:u,value:d,form:f,...i,tabIndex:-1,ref:v,onClick:Sn(n,S=>{x.current&&S.stopPropagation()}),style:{...i.style,...y,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})},"RadioBubbleInput"));function Ixe(e){return typeof e=="function"}Oo(Ixe,"isFunction");function W7(e){return e?"checked":"unchecked"}Oo(W7,"getState");var gWe=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],K7="RadioGroup",[bWe,xHt]=El(K7,[Fx,jxe]),Pxe=Fx(),NR=jxe(),[yWe,vWe]=bWe(K7),xWe=p.forwardRef(Oo(function(t,n){const{__scopeRadioGroup:i,name:r,form:s,defaultValue:a,value:l,required:c=!1,disabled:u=!1,orientation:d,dir:f,loop:h=!0,onValueChange:m,...g}=t,b=Pxe(i),v=Yk(f),[y,x]=au({prop:l,defaultProp:a??null,onChange:m,caller:K7}),[O,w]=p.useState(null),k=ar(n,w),S=p.useRef(y);return p.useEffect(()=>{const E=s?O==null?void 0:O.ownerDocument.getElementById(s):O==null?void 0:O.closest("form");if(E instanceof HTMLFormElement){const C=Oo(()=>x(S.current),"reset");return E.addEventListener("reset",C),()=>E.removeEventListener("reset",C)}},[O,s,x]),o.jsx(yWe,{scope:i,name:r,form:s,required:c,disabled:u,value:y,onValueChange:x,children:o.jsx(L7,{asChild:!0,...b,orientation:d,dir:v,loop:h,children:o.jsx(_r.div,{role:"radiogroup","aria-required":c,"aria-orientation":d,"data-disabled":u?"":void 0,dir:v,...g,ref:k})})})},"RadioGroup")),wWe="RadioGroupItemProvider",OWe="RadioGroupItemTrigger";function Dxe(e){const{__scopeRadioGroup:t,value:n,disabled:i,children:r,internal_do_not_use_render:s}=e,a=vWe(wWe,t),l=NR(t),c=a.disabled||i;return o.jsx(Rxe,{...l,checked:a.value===n,disabled:c,required:a.required,name:a.name,form:a.form,value:n,onCheck:()=>a.onValueChange(n),internal_do_not_use_render:s,children:r})}Oo(Dxe,"RadioGroupItemProvider");var SWe=p.forwardRef(Oo(function(t,n){const{__scopeRadioGroup:i,...r}=t,s=Pxe(i),a=NR(i),{checked:l,disabled:c}=_R(OWe,a.__scopeRadio),u=p.useRef(null),d=ar(n,u),f=p.useRef(!1);return p.useEffect(()=>{const h=Oo(g=>{gWe.includes(g.key)&&(f.current=!0)},"handleKeyDown"),m=Oo(()=>f.current=!1,"handleKeyUp");return document.addEventListener("keydown",h),document.addEventListener("keyup",m),()=>{document.removeEventListener("keydown",h),document.removeEventListener("keyup",m)}},[]),o.jsx($7,{asChild:!0,...s,focusable:!c,active:l,children:o.jsx(dWe,{...a,...r,ref:d,onKeyDown:Sn(r.onKeyDown,h=>{h.key==="Enter"&&h.preventDefault()}),onFocus:Sn(r.onFocus,()=>{var h;f.current&&((h=u.current)==null||h.click())})})})},"RadioGroupItemTrigger")),kWe=p.forwardRef(Oo(function(t,n){const{__scopeRadioGroup:i,value:r,disabled:s,...a}=t;return o.jsx(Dxe,{__scopeRadioGroup:i,value:r,disabled:s,internal_do_not_use_render:({isFormControl:l})=>o.jsxs(o.Fragment,{children:[o.jsx(SWe,{...a,ref:n,__scopeRadioGroup:i}),l&&o.jsx(EWe,{__scopeRadioGroup:i})]})})},"RadioGroupItem")),EWe=p.forwardRef(Oo(function(t,n){const{__scopeRadioGroup:i,...r}=t,s=NR(i);return o.jsx(mWe,{...s,...r,ref:n})},"RadioGroupItemBubbleInput")),CWe=p.forwardRef(Oo(function(t,n){const{__scopeRadioGroup:i,...r}=t,s=NR(i);return o.jsx(hWe,{...s,...r,ref:n})},"RadioGroupIndicator")),TWe=Object.defineProperty,Om=(e,t)=>TWe(e,"name",{value:t,configurable:!0}),G7="Switch",[AWe,wHt]=El(G7),[_We,X7]=AWe(G7);function Mxe(e){const{__scopeSwitch:t,checked:n,children:i,defaultChecked:r,disabled:s,form:a,name:l,onCheckedChange:c,required:u,value:d="on",internal_do_not_use_render:f}=e,[h,m]=au({prop:n,defaultProp:r??!1,onChange:c,caller:G7}),[g,b]=p.useState(null),[v,y]=p.useState(null),x=p.useRef(!1),[O,w]=p.useReducer(E=>E+1,0),k=g?!!a||!!g.closest("form"):!0,S={checked:h,setChecked:m,disabled:s,control:g,setControl:b,name:l,form:a,value:d,hasConsumerStoppedPropagationRef:x,userInteractionCount:O,onUserInteraction:w,required:u,defaultChecked:r,isFormControl:k,bubbleInput:v,setBubbleInput:y};return o.jsx(_We,{scope:t,...S,children:Lxe(f)?f(S):i})}Om(Mxe,"SwitchProvider");var NWe="SwitchTrigger",jWe=p.forwardRef(Om(function({__scopeSwitch:t,onClick:n,...i},r){const{control:s,form:a,value:l,disabled:c,checked:u,required:d,setControl:f,setChecked:h,hasConsumerStoppedPropagationRef:m,onUserInteraction:g,isFormControl:b,bubbleInput:v}=X7(NWe,t),y=ar(r,f),x=p.useRef(u);return p.useEffect(()=>{const O=a?s==null?void 0:s.ownerDocument.getElementById(a):s==null?void 0:s.form;if(O instanceof HTMLFormElement){const w=Om(()=>h(x.current),"reset");return O.addEventListener("reset",w),()=>O.removeEventListener("reset",w)}},[s,a,h]),o.jsx(_r.button,{type:"button",role:"switch","aria-checked":u,"aria-required":d,"data-state":Y7(u),"data-disabled":c?"":void 0,disabled:c,value:l,...i,ref:y,onClick:Sn(n,O=>{g(),h(w=>!w),v&&b&&(m.current=O.isPropagationStopped(),m.current||O.stopPropagation())})})},"SwitchTrigger")),RWe=p.forwardRef(Om(function(t,n){const{__scopeSwitch:i,name:r,checked:s,defaultChecked:a,required:l,disabled:c,value:u,onCheckedChange:d,form:f,...h}=t;return o.jsx(Mxe,{__scopeSwitch:i,checked:s,defaultChecked:a,disabled:c,required:l,onCheckedChange:d,name:r,form:f,value:u,internal_do_not_use_render:({isFormControl:m})=>o.jsxs(o.Fragment,{children:[o.jsx(jWe,{...h,ref:n,__scopeSwitch:i}),m&&o.jsx(MWe,{__scopeSwitch:i})]})})},"Switch")),IWe="SwitchThumb",PWe=p.forwardRef(Om(function(t,n){const{__scopeSwitch:i,...r}=t,s=X7(IWe,i);return o.jsx(_r.span,{"data-state":Y7(s.checked),"data-disabled":s.disabled?"":void 0,...r,ref:n})},"SwitchThumb")),DWe="SwitchBubbleInput",MWe=p.forwardRef(Om(function({__scopeSwitch:t,onClick:n,...i},r){const{control:s,hasConsumerStoppedPropagationRef:a,userInteractionCount:l,checked:c,defaultChecked:u,required:d,disabled:f,name:h,value:m,form:g,bubbleInput:b,setBubbleInput:v}=X7(DWe,t),y=ar(r,v),x=Zk(s),O=p.useRef(!1),w=p.useRef(c),k=p.useRef(l);p.useEffect(()=>{const E=b;if(!E)return;const C=window.HTMLInputElement.prototype,T=Object.getOwnPropertyDescriptor(C,"checked").set,j=l!==k.current;k.current=l;const A=w.current!==c;w.current=c;const L=!(j&&a.current);if(A&&T){O.current=!j;const _=new Event("click",{bubbles:L});T.call(E,c),E.dispatchEvent(_),O.current=!1}},[b,c,a,l]);const S=p.useRef(c);return o.jsx(_r.input,{type:"checkbox","aria-hidden":!0,defaultChecked:u??S.current,required:d,disabled:f,name:h,value:m,form:g,...i,tabIndex:-1,ref:y,onClick:Sn(n,E=>{O.current&&E.stopPropagation()}),style:{...i.style,...x,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})},"SwitchBubbleInput"));function Lxe(e){return typeof e=="function"}Om(Lxe,"isFunction");function Y7(e){return e?"checked":"unchecked"}Om(Y7,"getState");var LWe=Object.defineProperty,$We=(e,t)=>LWe(e,"name",{value:t,configurable:!0}),FWe="Toggle",BWe=p.forwardRef($We(function(t,n){const{pressed:i,defaultPressed:r,onPressedChange:s,...a}=t,[l,c]=au({prop:i,onChange:s,defaultProp:r??!1,caller:FWe});return o.jsx(_r.button,{type:"button","aria-pressed":l,"data-state":l?"on":"off","data-disabled":t.disabled?"":void 0,...a,ref:n,onClick:Sn(t.onClick,()=>{t.disabled||c(!l)})})},"Toggle")),UWe=Object.defineProperty,Sm=(e,t)=>UWe(e,"name",{value:t,configurable:!0}),Ux="ToggleGroup",[$xe,OHt]=El(Ux,[Fx]),Fxe=Fx(),QWe=p.forwardRef(Sm(function(t,n){const{type:i,...r}=t;if(i==="single"){const s=r;return o.jsx(zWe,{role:"radiogroup",...s,ref:n})}if(i==="multiple"){const s=r;return o.jsx(VWe,{role:"toolbar",...s,ref:n})}throw new Error(`Missing prop \`type\` expected on \`${Ux}\``)},"ToggleGroup")),[Bxe,Uxe]=$xe(Ux),zWe=p.forwardRef(Sm(function(t,n){const{value:i,defaultValue:r,onValueChange:s=Sm(()=>{},"onValueChange"),...a}=t,[l,c]=au({prop:i,defaultProp:r??"",onChange:s,caller:Ux});return o.jsx(Bxe,{scope:t.__scopeToggleGroup,type:"single",value:p.useMemo(()=>l?[l]:[],[l]),onItemActivate:c,onItemDeactivate:p.useCallback(()=>c(""),[c]),children:o.jsx(Qxe,{...a,ref:n})})},"ToggleGroupImplSingle")),VWe=p.forwardRef(Sm(function(t,n){const{value:i,defaultValue:r,onValueChange:s=Sm(()=>{},"onValueChange"),...a}=t,[l,c]=au({prop:i,defaultProp:r??[],onChange:s,caller:Ux}),u=p.useCallback(f=>c((h=[])=>[...h,f]),[c]),d=p.useCallback(f=>c((h=[])=>h.filter(m=>m!==f)),[c]);return o.jsx(Bxe,{scope:t.__scopeToggleGroup,type:"multiple",value:l,onItemActivate:u,onItemDeactivate:d,children:o.jsx(Qxe,{...a,ref:n})})},"ToggleGroupImplMultiple")),[HWe,qWe]=$xe(Ux),Qxe=p.forwardRef(Sm(function(t,n){const{__scopeToggleGroup:i,disabled:r=!1,rovingFocus:s=!0,orientation:a,dir:l,loop:c=!0,...u}=t,d=Fxe(i),f=Yk(l),h={dir:f,...u};return o.jsx(HWe,{scope:i,rovingFocus:s,disabled:r,children:s?o.jsx(L7,{asChild:!0,...d,orientation:a,dir:f,loop:c,children:o.jsx(_r.div,{...h,ref:n})}):o.jsx(_r.div,{...h,ref:n})})},"ToggleGroupImpl")),n6="ToggleGroupItem",WWe=p.forwardRef(Sm(function(t,n){const i=Uxe(n6,t.__scopeToggleGroup),r=qWe(n6,t.__scopeToggleGroup),s=Fxe(t.__scopeToggleGroup),a=i.value.includes(t.value),l=r.disabled||t.disabled,c={...t,pressed:a,disabled:l},u=p.useRef(null);return r.rovingFocus?o.jsx($7,{asChild:!0,...s,focusable:!l,active:a,ref:u,children:o.jsx(gK,{...c,ref:n})}):o.jsx(gK,{...c,ref:n})},"ToggleGroupItem")),gK=p.forwardRef(Sm(function(t,n){const{__scopeToggleGroup:i,value:r,...s}=t,a=Uxe(n6,i),l={role:"radio","aria-checked":t.pressed,"aria-pressed":void 0},c=a.type==="single"?l:void 0;return o.jsx(BWe,{...c,...s,ref:n,onPressedChange:u=>{u?a.onItemActivate(r):a.onItemDeactivate(r)}})},"ToggleGroupItemImpl")),KWe=Object.defineProperty,Da=(e,t)=>KWe(e,"name",{value:t,configurable:!0}),[Z7,SHt]=El("Tooltip",[$x]),J7=$x(),GWe="TooltipProvider",XWe=700,i6="tooltip.open",[YWe,eB]=Z7(GWe),ZWe=Da(e=>{const{__scopeTooltip:t,delayDuration:n=XWe,skipDelayDuration:i=300,disableHoverableContent:r=!1,children:s}=e,a=p.useRef(!0),l=p.useRef(!1),c=p.useRef(0);return p.useEffect(()=>{const u=c.current;return()=>window.clearTimeout(u)},[]),o.jsx(YWe,{scope:t,isOpenDelayedRef:a,delayDuration:n,onOpen:p.useCallback(()=>{i<=0||(window.clearTimeout(c.current),a.current=!1)},[i]),onClose:p.useCallback(()=>{i<=0||(window.clearTimeout(c.current),c.current=window.setTimeout(()=>a.current=!0,i))},[i]),isPointerInTransitRef:l,onPointerInTransitChange:p.useCallback(u=>{l.current=u},[]),disableHoverableContent:r,children:s})},"TooltipProvider"),r6="Tooltip",[JWe,eE]=Z7(r6),eKe=Da(e=>{const{__scopeTooltip:t,children:n,open:i,defaultOpen:r,onOpenChange:s,disableHoverableContent:a,delayDuration:l}=e,c=eB(r6,e.__scopeTooltip),u=J7(t),[d,f]=p.useState(null),[h,m]=p.useState(void 0),g=vm(),b=p.useRef(0),v=a??c.disableHoverableContent,y=l??c.delayDuration,x=p.useRef(!1),[O,w]=au({prop:i,defaultProp:r??!1,onChange:Da(T=>{T?(c.onOpen(),document.dispatchEvent(new CustomEvent(i6))):c.onClose(),s==null||s(T)},"onChange"),caller:r6}),k=p.useMemo(()=>O?x.current?"delayed-open":"instant-open":"closed",[O]),S=p.useCallback(()=>{window.clearTimeout(b.current),b.current=0,x.current=!1,w(!0)},[w]),E=p.useCallback(()=>{window.clearTimeout(b.current),b.current=0,w(!1)},[w]),C=p.useCallback(()=>{window.clearTimeout(b.current),b.current=window.setTimeout(()=>{x.current=!0,w(!0),b.current=0},y)},[y,w]);p.useEffect(()=>()=>{b.current&&(window.clearTimeout(b.current),b.current=0)},[]);const N=h??g;return o.jsx(kR,{...u,children:o.jsx(JWe,{scope:t,contentId:N,setContentId:m,open:O,stateAttribute:k,trigger:d,onTriggerChange:f,onTriggerEnter:p.useCallback(()=>{c.isOpenDelayedRef.current?C():S()},[c.isOpenDelayedRef,C,S]),onTriggerLeave:p.useCallback(()=>{v?E():(window.clearTimeout(b.current),b.current=0)},[E,v]),onOpen:S,onClose:E,disableHoverableContent:v,children:n})})},"Tooltip"),bK="TooltipTrigger",tKe=p.forwardRef(Da(function(t,n){const{__scopeTooltip:i,...r}=t,s=eE(bK,i),a=eB(bK,i),l=J7(i),c=p.useRef(null),u=ar(n,c,s.onTriggerChange),d=p.useRef(!1),f=p.useRef(!1),h=p.useCallback(()=>d.current=!1,[]);return p.useEffect(()=>()=>document.removeEventListener("pointerup",h),[h]),o.jsx(I7,{asChild:!0,...l,children:o.jsx(_r.button,{"aria-describedby":s.open?s.contentId:void 0,"data-state":s.stateAttribute,...r,ref:u,onPointerMove:Sn(t.onPointerMove,m=>{m.pointerType!=="touch"&&!f.current&&!a.isPointerInTransitRef.current&&(s.onTriggerEnter(),f.current=!0)}),onPointerLeave:Sn(t.onPointerLeave,()=>{s.onTriggerLeave(),f.current=!1}),onPointerDown:Sn(t.onPointerDown,()=>{s.open&&s.onClose(),d.current=!0,document.addEventListener("pointerup",h,{once:!0})}),onFocus:Sn(t.onFocus,()=>{d.current||s.onOpen()}),onBlur:Sn(t.onBlur,s.onClose),onClick:Sn(t.onClick,s.onClose)})})},"TooltipTrigger")),zxe="TooltipPortal",[nKe,iKe]=Z7(zxe,{forceMount:void 0}),rKe=Da(e=>{const{__scopeTooltip:t,forceMount:n,children:i,container:r}=e,s=eE(zxe,t);return o.jsx(nKe,{scope:t,forceMount:n,children:o.jsx(Xd,{present:n||s.open,children:o.jsx(w7,{asChild:!0,container:r,children:i})})})},"TooltipPortal"),_S="TooltipContent",sKe=p.forwardRef(Da(function(t,n){const i=iKe(_S,t.__scopeTooltip),{forceMount:r=i.forceMount,side:s="top",...a}=t,l=eE(_S,t.__scopeTooltip);return o.jsx(Xd,{present:r||l.open,children:l.disableHoverableContent?o.jsx(Vxe,{side:s,...a,ref:n}):o.jsx(aKe,{side:s,...a,ref:n})})},"TooltipContent")),aKe=p.forwardRef(Da(function(t,n){const i=eE(_S,t.__scopeTooltip),r=eB(_S,t.__scopeTooltip),s=p.useRef(null),a=ar(n,s),[l,c]=p.useState(null),{trigger:u,onClose:d}=i,f=s.current,{onPointerInTransitChange:h}=r,m=p.useCallback(()=>{c(null),h(!1)},[h]),g=p.useCallback((b,v)=>{const y=b.currentTarget,x={x:b.clientX,y:b.clientY},O=Hxe(x,y.getBoundingClientRect()),w=qxe(x,O),k=Wxe(v.getBoundingClientRect()),S=Gxe([...w,...k]);c(S),h(!0)},[h]);return p.useEffect(()=>()=>m(),[m]),p.useEffect(()=>{if(u&&f){const b=Da(y=>g(y,f),"handleTriggerLeave"),v=Da(y=>g(y,u),"handleContentLeave");return u.addEventListener("pointerleave",b),f.addEventListener("pointerleave",v),()=>{u.removeEventListener("pointerleave",b),f.removeEventListener("pointerleave",v)}}},[u,f,g,m]),p.useEffect(()=>{if(l){const b=Da(v=>{const y=v.target,x={x:v.clientX,y:v.clientY},O=(u==null?void 0:u.contains(y))||(f==null?void 0:f.contains(y)),w=!Kxe(x,l);O?m():w&&(m(),d())},"handleTrackPointerGrace");return document.addEventListener("pointermove",b),()=>document.removeEventListener("pointermove",b)}},[u,f,l,d,m]),o.jsx(Vxe,{...t,ref:a})},"TooltipContentHoverable")),oKe=Hye("TooltipContent"),Vxe=p.forwardRef(Da(function(t,n){const{__scopeTooltip:i,children:r,"aria-label":s,id:a,onEscapeKeyDown:l,onPointerDownOutside:c,...u}=t,d=eE(_S,i),f=J7(i),{onClose:h}=d;p.useEffect(()=>(document.addEventListener(i6,h),()=>document.removeEventListener(i6,h)),[h]),p.useEffect(()=>{if(d.trigger){const g=Da(b=>{b.target instanceof Node&&b.target.contains(d.trigger)&&h()},"handleScroll");return window.addEventListener("scroll",g,{capture:!0}),()=>window.removeEventListener("scroll",g,{capture:!0})}},[d.trigger,h]);const{setContentId:m}=d;return eu(()=>(m(a),()=>{m(void 0)}),[a,m]),o.jsx(y7,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:l,onPointerDownOutside:c,onFocusOutside:g=>g.preventDefault(),onDismiss:h,children:o.jsxs(P7,{"data-state":d.stateAttribute,role:s?void 0:"tooltip",id:s?void 0:d.contentId,...f,...u,ref:n,style:{...u.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"},children:[o.jsx(oKe,{children:r}),s?o.jsx(_Qe,{id:d.contentId,role:"tooltip",children:s}):null]})})},"TooltipContentImpl"));function Hxe(e,t){const n=Math.abs(t.top-e.y),i=Math.abs(t.bottom-e.y),r=Math.abs(t.right-e.x),s=Math.abs(t.left-e.x);switch(Math.min(n,i,r,s)){case s:return"left";case r:return"right";case n:return"top";case i:return"bottom";default:throw new Error("unreachable")}}Da(Hxe,"getExitSideFromRect");function qxe(e,t,n=5){const i=[];switch(t){case"top":i.push({x:e.x-n,y:e.y+n},{x:e.x+n,y:e.y+n});break;case"bottom":i.push({x:e.x-n,y:e.y-n},{x:e.x+n,y:e.y-n});break;case"left":i.push({x:e.x+n,y:e.y-n},{x:e.x+n,y:e.y+n});break;case"right":i.push({x:e.x-n,y:e.y-n},{x:e.x-n,y:e.y+n});break}return i}Da(qxe,"getPaddedExitPoints");function Wxe(e){const{top:t,right:n,bottom:i,left:r}=e;return[{x:r,y:t},{x:n,y:t},{x:n,y:i},{x:r,y:i}]}Da(Wxe,"getPointsFromRect");function Kxe(e,t){const{x:n,y:i}=e;let r=!1;for(let s=0,a=t.length-1;si!=h>i&&n<(f-u)*(i-d)/(h-d)+u&&(r=!r)}return r}Da(Kxe,"isPointInPolygon");function Gxe(e){const t=e.slice();return t.sort((n,i)=>n.xi.x?1:n.yi.y?1:0),Xxe(t)}Da(Gxe,"getHull");function Xxe(e){if(e.length<=1)return e.slice();const t=[];for(let i=0;i=2;){const s=t[t.length-1],a=t[t.length-2];if((s.x-a.x)*(r.y-a.y)>=(s.y-a.y)*(r.x-a.x))t.pop();else break}t.push(r)}t.pop();const n=[];for(let i=e.length-1;i>=0;i--){const r=e[i];for(;n.length>=2;){const s=n[n.length-1],a=n[n.length-2];if((s.x-a.x)*(r.y-a.y)>=(s.y-a.y)*(r.x-a.x))n.pop();else break}n.push(r)}return n.pop(),t.length===1&&n.length===1&&t[0].x===n[0].x&&t[0].y===n[0].y?t:t.concat(n)}Da(Xxe,"getHullPresorted");var lKe=ZWe,cKe=eKe,Yxe=tKe,uKe=rKe,dKe=sKe;function km(e){const t=p.useRef(e);return t.current=e,t}let qv=[],hT=!1;const yK=e=>{var t,n;if(e.key==="Escape"){const[i]=qv;i&&(e.preventDefault(),(n=(t=i.callback).current)==null||n.call(t))}},Zxe=()=>{qv.length>0&&!hT?(document.body.addEventListener("keydown",yK),hT=!0):qv.length===0&&hT&&(document.body.removeEventListener("keydown",yK),hT=!1)},fKe=e=>{qv.unshift(e),Zxe()},hKe=({id:e})=>{qv=qv.filter(t=>t.id!==e),Zxe()},tE=(e,t)=>{const n=p.useId(),i=km(t);p.useEffect(()=>{if(!e)return;const r={id:n,callback:i};return fKe(r),()=>hKe(r)},[n,e,i])},pKe=p.createContext(null);function Jxe(){const e=p.useContext(pKe);return(e==null?void 0:e.linkComponent)??"a"}function nE(e){return t=>{e.forEach(n=>{typeof n=="function"?n(t):n!=null&&(n.current=t)})}}const mKe=()=>Fye,vK=(e,t=!1,n="TransitionGroup")=>{const i=[];return p.Children.forEach(e,r=>{if(r&&typeof r=="object"&&"key"in r&&r.key)i.push(r);else if(t)throw new Error(`Child elements of <${n} /> must include a \`key\``)}),i},F0=()=>{},B0=e=>{const t=p.useRef(e);return t.current=e,p.useCallback(n=>t.current(n),[])};function gKe(e,t,n,i){const r=e.reduce((c,u)=>({...c,[u.key]:1}),{}),s=t.reduce((c,u)=>({...c,[u.component.key]:1}),{}),a=e.filter(c=>!s[c.key]).map(n),l=t.map(c=>({...c,component:e.find(({key:u})=>u===c.component.key)||c.component,shouldRender:!!r[c.component.key]}));return i==="append"?l.concat(a):a.concat(l)}function bKe(e,t,n){if((Fye||uQe)&&t&&n>1)throw new Error(`Cannot use forwardRef with multiple children in <${e} />`)}const yKe="_TransitionGroupChild_1hv1z_1",vKe={TransitionGroupChild:yKe},e1e={enter:!1,enterActive:!1,exit:!1,exitActive:!1,interrupted:!1},xKe=e=>({...e1e,enter:!e}),wKe=(e,t)=>{switch(t.type){case"enter-before":return{enter:!0,enterActive:!1,exit:!1,exitActive:!1,interrupted:e.interrupted||e.exit};case"enter-active":return{enter:!0,enterActive:!0,exit:!1,exitActive:!1,interrupted:!1};case"exit-before":return{enter:!1,enterActive:!1,exit:!0,exitActive:!1,interrupted:e.interrupted||e.enter};case"exit-active":return{enter:!1,enterActive:!1,exit:!0,exitActive:!0,interrupted:!1};case"done":default:return e1e}},OKe=({ref:e,as:t,children:n,className:i,transitionId:r,style:s,preventMountTransition:a,shouldRender:l,enterDuration:c,exitDuration:u,removeChild:d,onEnter:f,onEnterActive:h,onEnterComplete:m,onExit:g,onExitActive:b,onExitComplete:v})=>{const[y,x]=p.useReducer(wKe,xKe(a||!1)),O=p.useRef(!1),w=p.useRef(null),k=p.useRef(c);k.current=c;const S=p.useRef(u);S.current=u;const E=p.useRef(null),C=p.useCallback(N=>{const T=w.current;if(!(!T||N===E.current))switch(E.current=N,N){case"enter":f(T);break;case"enter-active":h(T);break;case"enter-complete":m(T);break;case"exit":g(T);break;case"exit-active":b(T);break;case"exit-complete":v(T);break}},[f,h,m,g,b,v]);return li.useLayoutEffect(()=>{if(!l){let j;x({type:"exit-before"}),C("exit");const A=V_(()=>{x({type:"exit-active"}),C("exit-active"),j=window.setTimeout(()=>{C("exit-complete"),d()},S.current)});return()=>{A(),j!==void 0&&clearTimeout(j)}}if(a&&!O.current){O.current=!0;return}let N;x({type:"enter-before"}),C("enter");const T=V_(()=>{x({type:"enter-active"}),C("enter-active"),N=window.setTimeout(()=>{x({type:"done"}),C("enter-complete")},k.current)});return()=>{T(),N!==void 0&&clearTimeout(N)}},[l,a,d,C]),p.useEffect(()=>()=>{O.current=!1},[]),o.jsx(t,{ref:nE([w,e]),className:yi(i,vKe.TransitionGroupChild),"data-transition-id":r,style:s,"data-entering":y.enter?"":void 0,"data-entering-active":y.enterActive?"":void 0,"data-exiting":y.exit?"":void 0,"data-exiting-active":y.exitActive?"":void 0,"data-interrupted":y.interrupted?"":void 0,children:n})},SKe=e=>{const{enterMountDelay:t,preventMountTransition:n}=e,i=!n&&t!=null?t:null,[r,s]=p.useState(i==null);return f7(()=>s(!0),r?null:i),r?o.jsx(OKe,{...e}):null},Qx=e=>{const{ref:t,as:n="span",children:i,className:r,transitionId:s,style:a,enterDuration:l=0,exitDuration:c=0,preventInitialTransition:u=!0,enterMountDelay:d,insertMethod:f="append",disableAnimations:h=mKe()}=e,m=B0(e.onEnter??F0),g=B0(e.onEnterActive??F0),b=B0(e.onEnterComplete??F0),v=B0(e.onExit??F0),y=B0(e.onExitActive??F0),x=B0(e.onExitComplete??F0);p.Children.forEach(i,S=>{if(S&&!S.key)throw new Error("Child elements of must include a `key`")});const O=p.useCallback(S=>({component:S,shouldRender:!0,removeChild:()=>{k(E=>E.filter(C=>S.key!==C.component.key))},onEnter:m,onEnterActive:g,onEnterComplete:b,onExit:v,onExitActive:y,onExitComplete:x}),[m,g,b,v,y,x]),[w,k]=p.useState(()=>vK(i).map(S=>({...O(S),preventMountTransition:u})));return p.useLayoutEffect(()=>{k(S=>{const E=vK(i);return gKe(E,S,O,f)})},[i,f,O]),bKe("TransitionGroup",t,p.Children.count(i)),h?o.jsx(o.Fragment,{children:p.Children.map(i,S=>o.jsx(n,{ref:t,className:r,style:a,"data-transition-id":s,children:S}))}):o.jsx(o.Fragment,{children:w.map(({component:S,...E})=>o.jsx(SKe,{...E,as:n,className:r,transitionId:s,enterDuration:l,exitDuration:c,enterMountDelay:d,style:a,ref:t,children:S},S.key))})},kKe="_Button_1864l_1",EKe="_ButtonInner_1864l_4",CKe="_ButtonLoader_1864l_749",iM={Button:kKe,ButtonInner:EKe,ButtonLoader:CKe},Ht=e=>{const{type:t="button",color:n="primary",variant:i="solid",pill:r=!0,uniform:s=!1,size:a="md",iconSize:l,gutterSize:c,loading:u,selected:d,block:f,opticallyAlign:h,children:m,className:g,onClick:b,disabled:v,disabledTone:y,inert:x=u,...O}=e,w=v||x,k=p.useCallback(S=>{v||b==null||b(S)},[b,v]);return o.jsxs("button",{type:t,className:yi(iM.Button,g),"data-color":n,"data-variant":i,"data-pill":r?"":void 0,"data-uniform":s?"":void 0,"data-size":a,"data-gutter-size":c,"data-icon-size":l,"data-loading":u?"":void 0,"data-selected":d?"":void 0,"data-block":f?"":void 0,"data-optically-align":h,onPointerEnter:h7,disabled:w,"aria-disabled":w,tabIndex:w?-1:void 0,"data-disabled":v?"":void 0,"data-disabled-tone":v?y:void 0,onClick:k,...O,children:[o.jsx(Qx,{className:iM.ButtonLoader,enterDuration:250,exitDuration:150,children:u&&o.jsx(Gk,{},"loader")}),o.jsx("span",{className:iM.ButtonInner,children:d7(m)})]})},TKe=()=>{var e;return typeof ClipboardItem<"u"&&!!((e=navigator.clipboard)!=null&&e.write)};function AKe(e){const{"text/plain":t,...n}=e;return new ClipboardItem({...n,...t?{"text/plain":new Blob([t],{type:"text/plain"})}:null})}async function _Ke(e,t=document.body){if(typeof e=="string")return xK(e,t);try{return TKe()?(await navigator.clipboard.write([AKe(e)]),!0):e["text/plain"]?xK(e["text/plain"],t):!1}catch{return!1}}async function xK(e,t=document.body){if(navigator.clipboard)try{return await navigator.clipboard.writeText(e),!0}catch{}const n=document.createElement("textarea");n.value=e,n.style.position="fixed",n.style.top="0",n.style.left="0",n.style.opacity="0",t.appendChild(n),n.focus(),n.select();let i=!1;try{i=document.execCommand("copy")}catch{}return t.removeChild(n),i}const NKe="_TransitionItem_1o7b1_1",jKe={TransitionItem:NKe},RKe=e=>{const{as:t="span",className:n,children:i,preventInitialTransition:r,insertMethod:s,transitionClassName:a,transitionPosition:l="absolute"}=e,{enterTotalDuration:c,exitTotalDuration:u,variables:d}=LKe(e);return o.jsx(t,{className:yi("block",l==="absolute"&&"relative",n),"data-transition-position":l,style:d,children:o.jsx(Qx,{as:t,className:yi(jKe.TransitionItem,a),enterDuration:c,exitDuration:u,insertMethod:s,preventInitialTransition:r,children:i})})},IKe=400,PKe=500,DKe=200,MKe=300;function LKe({initial:e,enter:t,exit:n,forceCompositeLayer:i}){const r=zD(e),s=zD(t),a=zD(n),l=[r,a,s].some(b=>b!=="none"),c=(t==null?void 0:t.duration)??(l?PKe:IKe),u=(t==null?void 0:t.timingFunction)??(l?"var(--cubic-enter)":"ease"),d=(n==null?void 0:n.duration)??(l?MKe:DKe),f=(n==null?void 0:n.timingFunction)??(l?"var(--cubic-exit)":"ease"),h=Zb({"tg-will-change":i?"transform, opacity":"auto","tg-enter-opacity":QD((t==null?void 0:t.opacity)??1),"tg-enter-transform":s,"tg-enter-filter":VD(t),"tg-enter-duration":rT(c),"tg-enter-delay":rT((t==null?void 0:t.delay)??0),"tg-enter-timing-function":u,"tg-exit-opacity":QD((n==null?void 0:n.opacity)??0),"tg-exit-transform":a,"tg-exit-filter":VD(n),"tg-exit-duration":rT(d),"tg-exit-delay":rT((n==null?void 0:n.delay)??0),"tg-exit-timing-function":f,"tg-initial-opacity":QD((e==null?void 0:e.opacity)??(n==null?void 0:n.opacity)??0),"tg-initial-transform":r==="none"?a:r,"tg-initial-filter":VD(e??n??{})}),m=((t==null?void 0:t.delay)??0)+c,g=((n==null?void 0:n.delay)??0)+d;return{enterTotalDuration:m,exitTotalDuration:g,variables:h}}const tB=({children:e,copyValue:t,onClick:n,...i})=>{const[r,s]=p.useState(!1),a=p.useRef(null),l=c=>{r||(s(!0),n==null||n(c),_Ke(typeof t=="function"?t():t),a.current=window.setTimeout(()=>{s(!1)},1300))};return p.useEffect(()=>()=>{a.current&&clearTimeout(a.current)},[]),o.jsxs(Ht,{...i,onClick:l,children:[o.jsx(RKe,{className:"w-[var(--button-icon-size)] h-[var(--button-icon-size)]",initial:{scale:.6},enter:{scale:1,delay:150,duration:300},exit:{scale:.6,duration:150},forceCompositeLayer:!0,children:r?o.jsx(Qv,{},"copied-icon"):o.jsx(F9,{},"copy-icon")}),typeof e=="function"?e({copied:r}):e]})},$Ke="_Menu_1t4b0_1",FKe="_MenuList_1t4b0_3",BKe="_MenuItemContent_1t4b0_53",UKe="_MenuItem_1t4b0_53",QKe="_ItemActions_1t4b0_98",zKe="_PressableInner_1t4b0_117",VKe="_Separator_1t4b0_135",HKe="_SubMenuItem_1t4b0_139",qKe="_SubTriggerIcon_1t4b0_141",WKe="_RadioItem_1t4b0_151",KKe="_RadioIndicatorActive_1t4b0_158",GKe="_RadioIndicator_1t4b0_158",XKe="_CheckboxItem_1t4b0_249",YKe="_CheckboxIndicator_1t4b0_256",ZKe="_CheckboxCircle_1t4b0_269",Gr={Menu:$Ke,MenuList:FKe,MenuItemContent:BKe,MenuItem:UKe,ItemActions:QKe,PressableInner:zKe,Separator:VKe,SubMenuItem:HKe,SubTriggerIcon:qKe,RadioItem:WKe,RadioIndicatorActive:KKe,RadioIndicator:GKe,CheckboxItem:XKe,CheckboxIndicator:YKe,CheckboxCircle:ZKe},t1e=p.createContext(null),iE=()=>{const e=p.useContext(t1e);if(!e)throw new Error("Menu components must be wrapped in ");return e},Tr=({children:e,forceOpen:t,onOpen:n,onClose:i,modal:r=!1})=>{const[s,a]=p.useState(!1),l=t??s,c=km(n),u=km(i),d=p.useCallback(h=>{var m,g;a(h),h?(m=c.current)==null||m.call(c):(g=u.current)==null||g.call(u)},[c,u]);tE(s,()=>{d(!1)});const f=p.useMemo(()=>({open:l,setOpen:d}),[l,d]);return o.jsx(t1e.Provider,{value:f,children:o.jsx(Fqe,{open:l,onOpenChange:d,modal:r,children:e})})},JKe=({className:e,children:t,disabled:n,onSelect:i,onClick:r})=>{const{open:s}=iE(),a=l=>{s||l.preventDefault()};return i?o.jsx(wxe,{className:yi(Gr.MenuItem,e),onSelect:i,onClick:r,disabled:n,onPointerMove:a,onPointerLeave:a,children:o.jsx("div",{className:Gr.PressableInner,children:t})}):o.jsx("div",{className:yi(Gr.MenuItemContent,e),children:t})},eGe=({className:e,children:t})=>o.jsx("div",{className:yi(Gr.ItemActions,e),children:t}),tGe=({children:e,onClick:t})=>{const{setOpen:n}=iE();return o.jsx(Ht,{className:"rounded-sm",color:"secondary",size:"xs",uniform:!0,iconSize:"sm",variant:"ghost",onClick:i=>{i.stopPropagation(),n(!1),t(i)},children:e})},nGe=e=>{const{className:t,children:n,href:i,to:r,disabled:s,as:a,...l}=e,{open:c}=iE(),u=i||r,d=u?/^https?:\/\//.test(u):!0,f=Jxe(),h=a||(d?"a":f),m=b=>{c||b.preventDefault()},g=d?{target:"_blank",rel:"noopener noreferrer",href:i??r}:{href:i,to:r};return o.jsx(wxe,{asChild:!0,className:yi(Gr.MenuItem,t),disabled:s,onPointerMove:d?void 0:m,onPointerLeave:d?void 0:m,children:o.jsx(h,{...g,...l,children:o.jsx("span",{className:Gr.PressableInner,children:n})})})},iGe=({className:e})=>o.jsx(Hqe,{className:yi(Gr.Separator,e),role:"separator"}),rGe=({children:e,side:t,sideOffset:n=5,align:i,alignOffset:r,width:s,minWidth:a,maxHeight:l})=>{const{open:c}=iE();return o.jsx(xxe,{forceMount:!0,children:o.jsx(Qx,{className:Gr.Menu,enterDuration:350,exitDuration:200,disableAnimations:!0,children:c&&o.jsx(Uqe,{forceMount:!0,className:Gr.MenuList,side:t,sideOffset:n,align:i,alignOffset:r??(i==="center"?0:-5),avoidCollisions:!0,collisionPadding:{bottom:30,top:30,left:12,right:12},onEscapeKeyDown:nh,style:Zb({"menu-width":s,"menu-min-width":a,"menu-max-height":l}),children:e},"dropdown")})})},sGe=({children:e,disabled:t})=>o.jsx(Bqe,{asChild:!0,disabled:t,children:e}),n1e=p.createContext(null),i1e=()=>{const e=p.useContext(n1e);if(!e)throw new Error("Submenu components must be wrapped in ");return e},aGe=({children:e,forceOpen:t,onOpen:n,onClose:i})=>{const[r,s]=p.useState(!1),a=p.useRef(null),l=t??r,c=km(n),u=km(i),d=p.useCallback(h=>{var m,g;s(h),h?(m=c.current)==null||m.call(c):(g=u.current)==null||g.call(u)},[c,u]);tE(r,()=>{var h;d(!1),(h=a.current)==null||h.focus()});const f=p.useMemo(()=>({open:l,setOpen:d,triggerRef:a}),[l,d]);return o.jsx(n1e.Provider,{value:f,children:o.jsx(qqe,{open:l,onOpenChange:d,children:e})})},oGe=({className:e,children:t,disabled:n})=>{const{open:i}=iE(),{triggerRef:r}=i1e(),s=a=>{i||a.preventDefault()};return o.jsx(Wqe,{ref:r,className:yi(Gr.MenuItem,Gr.SubMenuItem,e),disabled:n,onPointerMove:s,onPointerLeave:s,children:o.jsxs("div",{className:Gr.PressableInner,children:[t,o.jsx(Z9e,{width:"16",height:"16",className:Gr.SubTriggerIcon})]})})},lGe=({children:e,sideOffset:t=4,alignOffset:n=-6,width:i="auto",minWidth:r="auto",maxHeight:s})=>{const{open:a}=i1e();return o.jsx(xxe,{forceMount:!0,children:o.jsx(Qx,{className:Gr.Menu,enterDuration:350,exitDuration:200,disableAnimations:!0,children:a&&o.jsx(Kqe,{className:Gr.MenuList,sideOffset:t,alignOffset:n,avoidCollisions:!0,collisionPadding:{bottom:30,top:30,left:12,right:12},onEscapeKeyDown:nh,style:Zb({"menu-width":i,"menu-min-width":r,"menu-max-height":s}),children:e},"submenu")})})},cGe=({children:e,value:t,onChange:n,indicatorPosition:i="end",...r})=>o.jsx(zqe,{...r,value:t,onValueChange:s=>n(s),"data-indicator-position":i,children:e}),uGe=({className:e,children:t,...n})=>o.jsx(Vqe,{className:yi(Gr.MenuItem,Gr.RadioItem,e),...n,children:o.jsxs("div",{className:Gr.PressableInner,children:[o.jsx("div",{className:Gr.RadioIndicator,children:o.jsx(Oxe,{className:Gr.RadioIndicatorActive})}),t]})}),dGe=({className:e,children:t,indicatorPosition:n="end",indicatorVariant:i="solid",...r})=>o.jsx(Qqe,{className:yi(Gr.MenuItem,Gr.CheckboxItem,e),...r,"data-indicator-position":n,"data-indicator-variant":i,children:o.jsxs("div",{className:Gr.PressableInner,children:[o.jsx("div",{className:Gr.CheckboxIndicator,children:o.jsx(Oxe,{children:i==="ghost"?o.jsx(Qv,{className:"size-4"}):o.jsx("div",{className:Gr.CheckboxCircle,children:o.jsx(Qv,{className:"size-4"})})})}),t]})});Tr.Content=rGe;Tr.Item=JKe;Tr.ItemActions=eGe;Tr.ItemAction=tGe;Tr.Link=nGe;Tr.Separator=iGe;Tr.Trigger=sGe;Tr.Sub=aGe;Tr.SubTrigger=oGe;Tr.SubContent=lGe;Tr.CheckboxItem=dGe;Tr.RadioGroup=cGe;Tr.RadioItem=uGe;const fGe="_Tooltip_16g2y_1",hGe="_TriggerDecorator_16g2y_73",r1e={Tooltip:fGe,TriggerDecorator:hGe},vo=e=>{const{ref:t,children:n,content:i,forceOpen:r=i===null?!1:void 0,maxWidth:s=300,openDelay:a=150,interactive:l=!1,compact:c=!1,preventUnintentionalClickToClose:u,align:d,alignOffset:f=0,side:h,sideOffset:m=5,gutterSize:g="md",contentClassName:b,onPointerDown:v,onClick:y,...x}=e,[O,w]=p.useState(!1),[k,S]=p.useState(!1);f7(()=>S(!1),k?400:null);const E=r??O,C=T=>{typeof r!="boolean"&&(w(T),u&&S(T))},N=T=>{u&&k&&(T.preventDefault(),T.stopPropagation())};return o.jsxs(s1e,{open:E,delayDuration:a,onOpenChange:C,disableHoverableContent:!l,children:[o.jsx(Yxe,{asChild:!0,children:o.jsx(zye,{...x,ref:t,onPointerDown:T=>{N(T),v==null||v(T)},onClick:T=>{N(T),y==null||y(T)},children:n})}),o.jsx(a1e,{maxWidth:s,compact:c,align:d,alignOffset:f,side:h,sideOffset:m,gutterSize:g,className:b,children:i})]})},s1e=({children:e,open:t,onOpenChange:n,...i})=>(tE(t,()=>{n(!1)}),o.jsx(lKe,{children:o.jsx(cKe,{open:t,onOpenChange:n,...i,children:e})})),a1e=({children:e,maxWidth:t=300,compact:n=!1,clickable:i=void 0,alignOffset:r=0,sideOffset:s=5,gutterSize:a="md",className:l,style:c,...u})=>o.jsx(uKe,{children:o.jsx(dKe,{...u,className:yi(r1e.Tooltip,l),"data-compact":n,"data-clickable":i,"data-gutter-size":a,alignOffset:r,sideOffset:s,collisionPadding:15,hideWhenDetached:!0,style:{...c,maxWidth:t},onEscapeKeyDown:nh,children:e})}),pGe=({children:e,asChild:t=!0,...n})=>o.jsx(Yxe,{asChild:t,...n,children:e}),mGe=e=>{const{children:t,className:n,focusable:i=!0,ref:r,...s}=e,a=typeof t=="string";return o.jsx(zye,{ref:r,...s,className:yi(r1e.TriggerDecorator,n),tabIndex:i?0:void 0,children:a?o.jsx("span",{children:t}):t})};vo.Root=s1e;vo.Content=a1e;vo.Trigger=pGe;vo.TriggerDecorator=mGe;const gGe=50,wK=48;function bGe(e){return(e.events??[]).flatMap(t=>{var r,s;const i=(((r=t.content)==null?void 0:r.parts)??[]).map(a=>typeof a.text=="string"?a.text:"").filter(Boolean).join("");return i?[{text:i,role:t.author??((s=t.content)==null?void 0:s.role)??"",ts:t.timestamp}]:[]})}function yGe(e){var t,n;for(const i of e.events??[])if(i.author==="user"||((t=i.content)==null?void 0:t.role)==="user"){const r=(((n=i.content)==null?void 0:n.parts)??[]).map(s=>s.text).find(Boolean);if(r)return r}return H("search.untitledSession")}function vGe(e,t,n){const i=Math.max(0,t-wK),r=Math.min(e.length,t+n+wK);return(i>0?"…":"")+e.slice(i,r).trim()+(r{var c;if((c=l.events)!=null&&c.length)return l;try{return await cR(t,e,l.id)}catch{return l}})),a=[];for(const l of s)for(const{text:c,role:u,ts:d}of bGe(l)){const f=c.toLowerCase().indexOf(i);if(f!==-1){a.push({type:"session",appId:t,sessionId:l.id,title:yGe(l),snippet:vGe(c,f,i.length),role:u,ts:d??l.lastUpdateTime});break}}return a.sort((l,c)=>(c.ts??0)-(l.ts??0)),a.slice(0,gGe)}async function wGe(e,t){if(!e||!t.trim())return{results:[]};let n;try{n=await y0e(e,t.trim())}catch(a){const l=String(a);return{results:[],note:l.includes("404")?H("search.webUnavailable"):H("search.webFailed",{message:l})}}const{mounted:i,results:r,error:s}=n;return i?s?{results:[],note:s}:{results:r.map((a,l)=>({type:"web",index:l,title:a.title,url:a.url,siteName:a.siteName,summary:a.summary}))}:{results:[],note:H("search.webNotMounted")}}async function OGe(e,t,n,i){if(!t||!i.trim())return{results:[]};const r=await b0e(t,e,i.trim(),n);if(!r.mounted)return{results:[],note:H(e==="knowledge"?"search.knowledgeNotMounted":"search.memoryNotMounted")};if(r.error)return{results:[],note:r.error};const s=r.sourceName??H(e==="knowledge"?"search.knowledge":"search.longTermMemory");return{results:r.results.map((a,l)=>e==="knowledge"?{type:"knowledge",index:l,content:a.content,sourceName:s,sourceType:r.sourceType}:{type:"memory",index:l,content:a.content,sourceName:s,sourceType:r.sourceType,author:a.author,ts:a.timestamp})}}async function SGe(e,t,n){return e==="session"?{results:await xGe(n.userId,n.appId,t)}:e==="web"?wGe(n.appId,t):OGe(e,n.appId,n.userId,t)}function o1e({mirrored:e=!1}){return o.jsxs("g",{opacity:"0.5",transform:e?"translate(20 0) scale(-1 1)":void 0,children:[o.jsx("path",{className:"sidebar-panel-glyph__divider",d:"M5.938 6.833c.11 0 .249.102.249.292v6.042c0 .19-.14.291-.249.291s-.248-.101-.248-.291V7.125c0-.19.139-.292.248-.292Z",strokeWidth:"1.167"}),o.jsx("path",{className:"sidebar-panel-glyph__frame",d:"M14.5 3.75h-9a3 3 0 0 0-3 3v6.857a3 3 0 0 0 3 3h9a3 3 0 0 0 3-3V6.75a3 3 0 0 0-3-3Z",strokeWidth:"1.667",strokeLinecap:"round",strokeLinejoin:"round"})]})}function kGe(e){return o.jsx("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",...e,children:o.jsx(o1e,{})})}function EGe(e){return o.jsx("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",...e,children:o.jsx(o1e,{mirrored:!0})})}function CGe(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M12 8.333c.368 0 .667.299.667.667v2h2a.667.667 0 0 1 0 1.333h-2v2a.667.667 0 0 1-1.334 0v-2h-2a.667.667 0 0 1 0-1.333h2V9c0-.368.299-.667.667-.667ZM7.667 1c3.49 0 6.383 2.554 6.913 5.896a.667.667 0 0 1-1.317.208 5.667 5.667 0 1 0-9.708 4.424.67.67 0 0 1 .07.12.667.667 0 0 1-.13.834l-.95.853 4.788-.002a.667.667 0 0 1 0 1.334l-5.657.002c-.917 0-1.35-1.131-.67-1.744l1.163-1.045A6.97 6.97 0 0 1 .667 8c0-3.866 3.134-7 7-7Z",fill:"currentColor"})})}function TGe(e){return o.jsxs("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.333",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"7.333",cy:"7.333",r:"5.333"}),o.jsx("path",{d:"m11.133 11.133 2.867 2.867"})]})}function AGe(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8 0.667c4.05 0 7.334 3.283 7.334 7.333 0 4.05-3.284 7.334-7.334 7.334S0.667 12.05 0.667 8 3.95 0.667 8 0.667Zm0 1.333a6 6 0 1 0 0 12A6 6 0 0 0 8 2ZM6.167 6c.368 0 .667.299.667.667v2a.667.667 0 0 1-1.334 0v-2c0-.368.299-.667.667-.667Zm3.666 0c.368 0 .667.299.667.667v2a.667.667 0 0 1-1.333 0v-2c0-.368.298-.667.666-.667Z",fill:"currentColor"})})}function l1e(e){return o.jsxs("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M7.58 2.6a.667.667 0 0 0-.667-.667h-.666a.667.667 0 0 0-.667.667v10.667c0 .368.299.666.667.666h.666a.667.667 0 0 0 .667-.666V2.6Zm1.333 10.667A2 2 0 0 1 6.913 15.267h-.666a2 2 0 0 1-2-2V2.6a2 2 0 0 1 2-2h.666a2 2 0 0 1 2 2v10.667Z",fill:"currentColor"}),o.jsx("path",{d:"M11.88 5.045a.667.667 0 0 0-.801-.514l-.653.136a.667.667 0 0 0-.504.786l1.85 8.092c.081.358.44.589.8.514l.653-.137a.667.667 0 0 0 .504-.786L11.88 5.045Zm3.155 7.82a2 2 0 0 1-1.512 2.358l-.653.136a2 2 0 0 1-2.403-1.541L8.617 5.726a2 2 0 0 1 1.513-2.358l.652-.136a2 2 0 0 1 2.404 1.541l1.849 8.092Z",fill:"currentColor"}),o.jsx("path",{d:"M4.247 2.6a.667.667 0 0 0-.667-.667h-.667a.667.667 0 0 0-.666.667v10.667c0 .368.298.666.666.666h.667a.667.667 0 0 0 .667-.666V2.6ZM5.58 13.267a2 2 0 0 1-2 2h-.667a2 2 0 0 1-2-2V2.6a2 2 0 0 1 2-2h.667a2 2 0 0 1 2 2v10.667Z",fill:"currentColor"})]})}function _Ge({className:e="icon"}){return o.jsxs("svg",{className:e,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[o.jsx("path",{d:"M16.4 10.7a5.7 5.7 0 1 1-1.67-4.03"}),o.jsx("path",{d:"M15.25 15.25 19.6 19.6"})]})}function NGe({open:e}){return o.jsx("svg",{className:`search-source-chevron ${e?"open":""}`,viewBox:"0 0 12 12",fill:"none",stroke:"currentColor",strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:o.jsx("path",{d:"m3.25 4.75 2.75 2.5 2.75-2.5"})})}function jGe({active:e=!1,onClick:t}){const{t:n}=Ae("workspaceTools");return o.jsxs("button",{className:`new-chat${e?" is-active":""}`,onClick:t,"aria-label":n("search.nav"),"aria-current":e?"page":void 0,title:n("search.nav"),children:[o.jsx(TGe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:n("search.nav")})]})}function RGe(e,t,n,i){const r=!!e,s=new Set((t==null?void 0:t.searchSources)??[]),a=l=>r?n?i("search.checkingCapabilities"):i("search.notMounted",{label:l}):i("search.selectAgent");return[{id:"session",label:i("search.sources.session"),ready:r,unavailableLabel:i("search.selectAgent")},{id:"web",label:i("search.sources.web"),ready:r&&s.has("web"),description:i("search.webDescription"),unavailableLabel:a(" web_search")},{id:"knowledge",label:i("search.sources.knowledge"),ready:r&&s.has("knowledge"),unavailableLabel:a(i("search.sources.knowledge"))},{id:"memory",label:i("search.sources.memory"),ready:r&&s.has("memory"),unavailableLabel:a(i("search.sources.memory"))}]}function G_(e,t){return{context_search:"Context Search",local:t("search.backendLocal"),mem0:"Mem0",milvus:"Milvus",opensearch:"OpenSearch",openviking:"OpenViking",redis:"Redis",tos_vector:"TOS Vector",viking:"VikingDB"}[e.toLowerCase()]??e}function OK(e,t){return e?new Date(e*1e3).toLocaleString(t,{timeZone:"Asia/Shanghai",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"}):""}function IGe({userId:e,appId:t,agentInfo:n,capabilitiesLoading:i,agentLabel:r,onOpenSession:s}){var M,B;const{t:a,i18n:l}=Ae("workspaceTools"),c=l.resolvedLanguage||l.language,[u,d]=p.useState("session"),[f,h]=p.useState(""),[m,g]=p.useState([]),[b,v]=p.useState(),[y,x]=p.useState(!1),[O,w]=p.useState(!1),[k,S]=p.useState(!1),E=p.useRef(0),C=p.useRef(null),N=RGe(t,n,i,a),T=N.find(R=>R.id===u),j=u==="knowledge"?(M=n==null?void 0:n.components)==null?void 0:M.find(R=>R.source==="knowledgebase"||R.kind==="knowledgebase"):u==="memory"?(B=n==null?void 0:n.components)==null?void 0:B.find(R=>R.source==="long_term_memory"||R.kind==="memory"):void 0;p.useEffect(()=>{E.current+=1,d("session"),g([]),v(void 0),w(!1),x(!1),S(!1)},[t]),p.useEffect(()=>{if(!k)return;function R(V){var K;(K=C.current)!=null&&K.contains(V.target)||S(!1)}return document.addEventListener("pointerdown",R),()=>document.removeEventListener("pointerdown",R)},[k]);async function A(R,V){var U;const K=R.trim();if(!K||!((U=N.find(G=>G.id===V))!=null&&U.ready))return;const Q=++E.current;x(!0),w(!0);let q;try{q=await SGe(V,K,{userId:e,appId:t})}catch(G){const ae=G instanceof Error?G.message:String(G);q={results:[],note:a("search.failed",{message:ae})}}Q===E.current&&(g(q.results),v(q.note),x(!1))}function L(R){E.current+=1,h(R),g([]),v(void 0),w(!1),x(!1)}function _(R){E.current+=1,d(R),S(!1),g([]),v(void 0),w(!1),x(!1)}const P=!!(T!=null&&T.ready),I=t?u==="web"?a("search.placeholder.web"):u==="knowledge"?a("search.placeholder.knowledge",{name:(j==null?void 0:j.name)??a("search.placeholder.knowledgeFallback")}):u==="memory"?a("search.placeholder.memory",{name:(j==null?void 0:j.name)??a("search.placeholder.memoryFallback")}):a("search.placeholder.session"):a("search.placeholder.selectAgent"),$=j!=null&&j.backend?G_(j.backend,a):"";return o.jsxs("div",{className:"search",children:[o.jsxs("div",{className:"search-box",children:[o.jsxs("div",{className:"search-source-picker-wrap",ref:C,children:[o.jsxs("button",{className:"search-source-picker",type:"button","aria-label":a("search.sourceTypeAria",{label:(T==null?void 0:T.label)??a("search.notSelected")}),"aria-haspopup":"listbox","aria-expanded":k,onClick:()=>S(R=>!R),children:[o.jsx("span",{children:(T==null?void 0:T.label)??a("search.sourceType")}),$&&o.jsx("small",{children:$}),o.jsx(NGe,{open:k})]}),k&&o.jsx("div",{className:"search-source-menu",role:"listbox","aria-label":a("search.selectSource"),children:N.map(R=>{var Q,q;const V=R.id==="knowledge"?(Q=n==null?void 0:n.components)==null?void 0:Q.find(U=>U.source==="knowledgebase"||U.kind==="knowledgebase"):R.id==="memory"?(q=n==null?void 0:n.components)==null?void 0:q.find(U=>U.source==="long_term_memory"||U.kind==="memory"):void 0,K=V?[V.name,V.backend?G_(V.backend,a):""].filter(Boolean).join(" · "):R.ready?R.description:R.unavailableLabel;return o.jsxs("button",{type:"button",role:"option","aria-selected":u===R.id,disabled:!R.ready,onClick:()=>_(R.id),children:[o.jsx("span",{children:R.label}),K&&o.jsx("small",{children:K})]},R.id)})})]}),o.jsx("span",{className:"search-box-divider","aria-hidden":!0}),o.jsx("input",{className:"search-input",value:f,onChange:R=>L(R.target.value),onKeyDown:R=>{R.key==="Enter"&&(R.preventDefault(),A(f,u))},placeholder:I,disabled:!P,autoFocus:!0}),o.jsx("button",{className:"search-go",onClick:()=>void A(f,u),disabled:!f.trim()||y,"aria-label":a("search.nav"),children:y?o.jsx(gi,{className:"icon spin"}):o.jsx(_Ge,{className:"icon"})})]}),o.jsx("div",{className:"search-results",children:P?O?y?null:b?o.jsx("div",{className:"search-empty",children:b}):m.length===0&&O?o.jsx("div",{className:"search-empty",children:a("search.noResults",{query:f.trim()})}):m.map((R,V)=>o.jsx(PGe,{result:R,agentLabel:r,onOpen:s,locale:c},V)):o.jsx("div",{className:"search-empty",children:a(u==="web"?"search.instructions.web":u==="knowledge"?"search.instructions.knowledge":u==="memory"?"search.instructions.memory":"search.instructions.session")}):o.jsx("div",{className:"search-empty",children:t?i?a("search.loadingCapabilities"):(T==null?void 0:T.unavailableLabel)??a("search.sourceUnavailable"):a("search.noAgentHint")})})]})}function PGe({result:e,agentLabel:t,onOpen:n,locale:i}){const{t:r}=Ae("workspaceTools");switch(e.type){case"session":return o.jsxs("button",{className:"search-result",onClick:()=>n(e.appId,e.sessionId),children:[o.jsx(Ube,{className:"search-result-icon"}),o.jsxs("div",{className:"search-result-body",children:[o.jsxs("div",{className:"search-result-head",children:[o.jsx("span",{className:"search-result-title",children:e.title}),o.jsxs("span",{className:"search-result-meta",children:[t(e.appId),e.ts?` · ${OK(e.ts,i)}`:""]})]}),o.jsx("div",{className:"search-result-snippet",children:e.snippet})]})]});case"web":return o.jsxs("a",{className:"search-result",href:e.url||void 0,target:"_blank",rel:"noreferrer noopener",children:[o.jsx(rR,{className:"search-result-icon"}),o.jsxs("div",{className:"search-result-body",children:[o.jsxs("div",{className:"search-result-head",children:[o.jsx("span",{className:"search-result-title",children:e.title||e.url}),o.jsxs("span",{className:"search-result-meta",children:[e.siteName,e.url&&o.jsx(wb,{className:"search-result-ext"})]})]}),e.summary&&o.jsx("div",{className:"search-result-snippet",children:e.summary})]})]});case"knowledge":return o.jsxs("div",{className:"search-result search-result-static",children:[o.jsx(SK,{source:"knowledge"}),o.jsxs("div",{className:"search-result-body",children:[o.jsxs("div",{className:"search-result-head",children:[o.jsx("span",{className:"search-result-title",children:r("search.knowledgeFragment",{index:e.index+1})}),o.jsxs("span",{className:"search-result-meta",children:[e.sourceName,e.sourceType?` · ${G_(e.sourceType,r)}`:""]})]}),o.jsx("div",{className:"search-result-snippet search-result-snippet-expanded",children:e.content})]})]});case"memory":return o.jsxs("div",{className:"search-result search-result-static",children:[o.jsx(SK,{source:"memory"}),o.jsxs("div",{className:"search-result-body",children:[o.jsxs("div",{className:"search-result-head",children:[o.jsx("span",{className:"search-result-title",children:r("search.memoryFragment",{index:e.index+1})}),o.jsxs("span",{className:"search-result-meta",children:[e.sourceName,e.sourceType?` · ${G_(e.sourceType,r)}`:"",e.ts?` · ${OK(e.ts,i)}`:""]})]}),o.jsx("div",{className:"search-result-snippet search-result-snippet-expanded",children:e.content})]})]});default:return null}}function SK({source:e,className:t="search-result-icon"}){return e==="knowledge"?o.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"none","aria-hidden":!0,children:[o.jsx("path",{d:"M5 5.5h10.5A3.5 3.5 0 0 1 19 9v9.5H8.5A3.5 3.5 0 0 1 5 15V5.5Z"}),o.jsx("path",{d:"M8.25 9h7.5M8.25 12.25h6"})]}):o.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"none","aria-hidden":!0,children:[o.jsx("path",{d:"M12 4.5a7.5 7.5 0 1 0 7.5 7.5"}),o.jsx("path",{d:"M12 8a4 4 0 1 0 4 4M12 11.3a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Z"})]})}function DGe({filled:e=!1,...t}){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:e?"currentColor":"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...t,children:[o.jsx("rect",{x:"3.5",y:"9.3",width:"4.5",height:"10.2",rx:"1.5"}),o.jsx("path",{d:"M8 10.2 11.3 4.8c.5-.8 1.7-.45 1.7.5v3.8h4.2a2.1 2.1 0 0 1 2.04 2.6l-1.4 5.75A2.1 2.1 0 0 1 15.8 19H8"})]})}function MGe({filled:e=!1,...t}){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:e?"currentColor":"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...t,children:[o.jsx("rect",{x:"3.5",y:"4.5",width:"4.5",height:"10.2",rx:"1.5"}),o.jsx("path",{d:"M8 13.8 11.3 19.2c.5.8 1.7.45 1.7-.5v-3.8h4.2a2.1 2.1 0 0 0 2.04-2.6l-1.4-5.75A2.1 2.1 0 0 0 15.8 5H8"})]})}function c1e(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5.25 4.25h9.5a2.5 2.5 0 0 1 2.5 2.5v3.5"}),o.jsx("path",{d:"M13.25 17.75h-8a2.5 2.5 0 0 1-2.5-2.5v-8a3 3 0 0 1 3-3"}),o.jsx("path",{d:"M7 8.25h5.5M7 11.75h3.25"}),o.jsx("path",{d:"m13.35 16.65.42-2.16 4.76-4.76a1.35 1.35 0 0 1 1.91 1.91l-4.76 4.76-2.33.25Z"}),o.jsx("path",{d:"m17.65 10.6 1.9 1.9"})]})}const jR="/assets/media/logo-DCsNZy-k.svg",nB="data:image/svg+xml,%3csvg%20width='28'%20height='23'%20viewBox='0%200%2028%2023'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M17.1957%209.44218C17.0253%209.58161%2016.7774%209.47317%2016.7774%209.24079V8.01696V0.611967C16.7774%200.395085%2016.514%200.271152%2016.3591%200.410576L6.04172%209.16334C5.87132%209.30276%205.62345%209.19432%205.62345%208.96194V2.98218C5.62345%202.81178%205.48403%202.67235%205.31362%202.67235H0.309832C0.139424%202.67235%200%202.81178%200%202.98218V21.7115C0%2021.9284%200.263357%2022.0524%200.418273%2021.9129L10.7202%2013.1602C10.8906%2013.0207%2011.1385%2013.1292%2011.1385%2013.3616V22.0059C11.1385%2022.2228%2011.4018%2022.3467%2011.5567%2022.2073L21.8586%2013.4545C22.0291%2013.3151%2022.2769%2013.4235%2022.2769%2013.6559V19.6357C22.2769%2019.8061%2022.4163%2019.9455%2022.5868%2019.9455H27.5905C27.7609%2019.9455%2027.9004%2019.8061%2027.9004%2019.6357V0.890816C27.9004%200.673934%2027.637%200.550001%2027.4821%200.689425L17.1957%209.44218Z'%20fill='%230066FC'/%3e%3c/svg%3e",kK="(max-width: 860px)";function EK({title:e}){const t=p.useRef(null),n=p.useRef(null),[i,r]=p.useState(0);p.useLayoutEffect(()=>{const l=t.current,c=n.current;if(!l||!c)return;const u=()=>{const f=Math.max(0,Math.ceil(c.scrollWidth-l.clientWidth));r(h=>h===f?h:f)};u();const d=new ResizeObserver(u);return d.observe(l),d.observe(c),()=>d.disconnect()},[e]);const s=Math.min(12,Math.max(4.8,3.6+i/36)),a={"--history-title-translate":`-${i}px`,"--history-title-duration":`${s.toFixed(2)}s`};return o.jsx("span",{ref:t,className:`history-title${i>0?" is-overflowing":""}`,style:a,children:o.jsx("span",{ref:n,className:"history-title-text",children:e})})}function LGe(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"7",cy:"7",r:"2.25"}),o.jsx("circle",{cx:"17",cy:"7",r:"2.25"}),o.jsx("circle",{cx:"7",cy:"17",r:"2.25"}),o.jsx("circle",{cx:"17",cy:"17",r:"2.25"})]})}function $Ge(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"12",cy:"12",r:"8.25"}),o.jsx("path",{d:"M3.75 12h16.5M12 3.75c2.1 2.2 3.2 4.95 3.2 8.25S14.1 18.05 12 20.25M12 3.75C9.9 5.95 8.8 8.7 8.8 12s1.1 6.05 3.2 8.25"})]})}function FGe(e){let t=2166136261;for(const i of e)t^=i.charCodeAt(0),t=Math.imul(t,16777619);const n=t>>>0;return{"--avatar-hue-a":194+n%22,"--avatar-hue-b":214+(n>>>6)%25,"--avatar-hue-c":176+(n>>>12)%25,"--avatar-x":`${22+(n>>>18)%55}%`,"--avatar-y":`${18+(n>>>24)%58}%`}}const BGe={admin:"account.roles.admin",developer:"account.roles.developer",user:"account.roles.user"};function UGe({activePage:e,access:t,userInfo:n,onAgentKitCli:i,onDeveloperResources:r,onSystemInfo:s,onIssueFeedback:a,onLogout:l}){const{t:c,i18n:u}=Ae(["sidebar","common"]),[d,f]=p.useState("");if(!n)return null;const h=fBe(n)||c("sidebar:account.defaultUser"),m=typeof n.email=="string"?n.email.trim():"",g=FGe(h),b=hBe(n),v=b===d?"":b,y=Tj(u.resolvedLanguage??u.language)??Cj;return o.jsx("div",{className:"sidebar-user",children:o.jsxs("div",{className:"sidebar-user-row",children:[o.jsxs(Tr,{modal:!0,children:[o.jsx(Tr.Trigger,{children:o.jsxs("button",{type:"button",className:"sidebar-user-btn",title:h,children:[o.jsx("span",{className:`account-avatar${v?" has-image":""}`,style:g,"aria-hidden":"true",children:v?o.jsx("img",{className:"account-avatar-image",src:v,alt:"","aria-hidden":"true",referrerPolicy:"no-referrer",onError:()=>f(v)}):null}),o.jsx("span",{className:"sidebar-user-identity",children:o.jsx("span",{className:"sidebar-user-name",children:h})})]})}),o.jsxs(Tr.Content,{side:"top",align:"start",sideOffset:4,minWidth:216,children:[o.jsxs("div",{className:"account-menu-head",children:[o.jsx("span",{className:`account-avatar account-avatar--lg${v?" has-image":""}`,style:g,"aria-hidden":"true",children:v?o.jsx("img",{className:"account-avatar-image",src:v,alt:"","aria-hidden":"true",referrerPolicy:"no-referrer",onError:()=>f(v)}):null}),o.jsxs("div",{className:"account-id",children:[o.jsxs("div",{className:"account-name-row",children:[o.jsx("div",{className:"account-name",children:h}),o.jsx(ya,{color:"secondary",size:"sm",variant:"soft",pill:!0,children:c(`sidebar:${BGe[t.role]}`)})]}),m&&m!==h&&o.jsx("div",{className:"account-sub",children:m})]})]}),o.jsxs(Tr.Item,{className:"account-menu-action",onSelect:s,children:[o.jsx(Gd,{className:"icon","aria-hidden":"true"}),c("sidebar:account.systemInfo")]}),o.jsxs(Tr.Sub,{children:[o.jsx(Tr.SubTrigger,{className:"account-menu-action",children:o.jsxs("span",{className:"account-menu-action__label",children:[o.jsx($Ge,{className:"icon"}),c("sidebar:account.language")]})}),o.jsx(Tr.SubContent,{sideOffset:6,minWidth:136,children:o.jsx(Tr.RadioGroup,{value:y,onChange:x=>{SLe(x)},indicatorPosition:"end",children:eF.map(x=>o.jsx(Tr.RadioItem,{value:x,children:c(`common:languageNames.${x}`)},x))})})]}),o.jsxs(Tr.Item,{className:"account-menu-action",onSelect:a,children:[o.jsx(c1e,{className:"icon"}),c("sidebar:account.issueFeedback")]}),o.jsxs(Tr.Item,{className:"account-menu-action",onSelect:l,children:[o.jsx(z7e,{className:"icon","aria-hidden":"true"}),c("sidebar:account.logout")]})]})]}),o.jsxs("div",{className:"sidebar-user-shortcuts","aria-label":c("sidebar:account.shortcuts"),children:[o.jsx(vo,{compact:!0,content:c("sidebar:account.tryCli"),children:o.jsx("button",{type:"button",className:"sidebar-user-shortcut",onClick:i,"aria-label":c("sidebar:account.tryCli"),children:o.jsx(o7e,{className:"icon"})})}),o.jsx(vo,{compact:!0,content:c("sidebar:account.developerResources"),children:o.jsx("button",{type:"button",className:`sidebar-user-shortcut${e==="developer-resources"?" is-active":""}`,onClick:r,"aria-label":c("sidebar:account.developerResources"),"aria-current":e==="developer-resources"?"page":void 0,children:o.jsx(G9e,{className:"icon"})})})]})]})})}function QGe({branding:e,cloudProvider:t,sessions:n,currentSessionId:i,activePage:r,features:s,access:a,streamingSids:l,evaluatingSids:c,sandboxHistory:u,onNewChat:d,onSearch:f,onQuickCreate:h,onLibrary:m,onAddAgent:g,onMyAgents:b,onWorkspace:v,onApplications:y,onCronJobs:x,onAgentKitCli:O,onDeveloperResources:w,onSystemInfo:k,onIssueFeedback:S,onPickSession:E,onDeleteSession:C,userInfo:N,onLogout:T}){const{t:j}=Ae("sidebar"),A=V=>(s==null?void 0:s[V])!==!1,[L,_]=p.useState(null),P=p.useRef(typeof window<"u"&&window.matchMedia(kK).matches),[I,$]=p.useState(P.current),M=n.map(V=>({id:V.id,title:mR(V.events,j("history.newConversation")),createdAt:(V.lastUpdateTime??0)*1e3})).sort((V,K)=>K.createdAt-V.createdAt),B=()=>{P.current=!1,$(V=>!V),_(null)};p.useEffect(()=>{const V=window.matchMedia(kK),K=Q=>{Q.matches?$(q=>q||(P.current=!0,!0)):P.current&&(P.current=!1,$(!1))};return V.addEventListener("change",K),()=>V.removeEventListener("change",K)},[]);const R=t==="byteplus"?nB:jR;return o.jsxs("aside",{className:`sidebar ${I?"is-collapsed":""}`,children:[o.jsxs("div",{className:"sidebar-top",children:[o.jsxs("div",{className:"sidebar-brand-row",children:[o.jsxs("button",{type:"button",className:"brand",onClick:d,"aria-label":j("navigation.home"),title:j("navigation.home"),children:[o.jsx("img",{className:"brand-logo",src:e.logoUrl||R,width:20,height:20,alt:"","aria-hidden":!0}),o.jsx("span",{className:"brand-title",children:e.title})]}),o.jsx("button",{type:"button",className:"sidebar-collapse-toggle",onClick:B,"aria-label":j(I?"navigation.expand":"navigation.collapse"),title:j(I?"navigation.expand":"navigation.collapse"),children:I?o.jsx(EGe,{className:"icon"}):o.jsx(kGe,{className:"icon"})})]}),o.jsxs("nav",{className:"sidebar-nav","aria-label":j("navigation.label"),children:[A("newChat")&&o.jsxs("button",{className:`new-chat new-chat--conversation${r==="new-chat"?" is-active":""}`,onClick:d,"aria-label":j("navigation.newChat"),"aria-current":r==="new-chat"?"page":void 0,title:j("navigation.newChat"),children:[o.jsx(CGe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.newChat")})]}),A("search")&&o.jsx(jGe,{active:r==="search",onClick:f}),o.jsxs("button",{className:`new-chat new-chat--agents${r==="agents"?" is-active":""}`,onClick:b,"aria-label":j("navigation.agents"),"aria-current":r==="agents"?"page":void 0,title:j("navigation.agents"),children:[o.jsx(AGe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.agents")})]}),o.jsxs("button",{className:`new-chat new-chat--workspaces${r==="workspaces"?" is-active":""}`,onClick:v,"aria-label":j("navigation.workspaces"),"aria-current":r==="workspaces"?"page":void 0,title:j("navigation.workspaces"),children:[o.jsx(S7e,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.workspaces")})]}),o.jsxs("button",{className:`new-chat new-chat--library${r==="library"?" is-active":""}`,onClick:m,"aria-label":j("navigation.library"),"aria-current":r==="library"?"page":void 0,title:j("navigation.library"),children:[o.jsx(l1e,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.library")})]}),o.jsxs("button",{className:`new-chat new-chat--cronjobs${r==="cronjobs"?" is-active":""}`,onClick:x,"aria-label":j("navigation.cronjobs"),"aria-current":r==="cronjobs"?"page":void 0,title:j("navigation.cronjobs"),children:[o.jsx($9,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.cronjobs")})]}),o.jsxs("button",{className:`new-chat new-chat--applications${r==="applications"?" is-active":""}`,onClick:y,"aria-label":j("navigation.automations"),"aria-current":r==="applications"?"page":void 0,title:j("navigation.automations"),children:[o.jsx(LGe,{className:"icon"}),o.jsx("span",{className:"sidebar-nav-label",children:j("navigation.automations")})]})]})]}),A("history")&&o.jsxs("div",{className:"sidebar-history",children:[o.jsxs("div",{className:"history-head",children:[o.jsx("span",{children:j("history.title")}),A("newChat")&&o.jsx("button",{type:"button",className:"history-new-chat",onClick:(u==null?void 0:u.onNew)??d,disabled:u==null?void 0:u.newDisabled,"aria-label":j("history.create"),title:j("history.create"),children:o.jsx(zo,{className:"icon"})})]}),o.jsx("div",{className:"history-list",children:u?o.jsxs(o.Fragment,{children:[u.loading&&u.threads.length===0?o.jsx("div",{className:"history-empty",role:"status",children:j("history.loading")}):null,u.error?o.jsx("div",{className:"history-error",role:"alert",children:u.error}):null,!u.loading&&!u.error&&u.threads.length===0?o.jsx("div",{className:"history-empty",children:j("history.empty")}):null,u.threads.map(V=>{const K=V.id===u.currentThreadId,Q=V.name||V.preview||`Thread ${V.id.slice(0,8)}`,q=V.id===u.busyThreadId;return o.jsxs("div",{className:`history-item ${K?"active":""}`,children:[o.jsxs("button",{type:"button",className:"history-item-btn",onClick:()=>u.onSelect(V.id),"aria-current":K?"page":void 0,title:Q,disabled:q,children:[o.jsx(EK,{title:Q}),K?o.jsx("span",{className:"history-current-badge",children:j("history.current")}):null]}),o.jsx("button",{type:"button",className:"history-more","aria-label":j("history.manage",{title:Q}),title:j("history.more"),disabled:q,onClick:()=>_(U=>U===V.id?null:V.id),children:o.jsx(_W,{className:"icon"})}),L===V.id?o.jsxs(o.Fragment,{children:[o.jsx("div",{className:"menu-scrim",onClick:()=>_(null)}),o.jsx("div",{className:"history-menu",children:o.jsxs("button",{type:"button",className:"menu-item menu-item--danger",onClick:()=>{_(null),u.onDelete(V)},children:[o.jsx(ym,{className:"icon"})," ",j("history.delete")]})})]}):null]},V.id)}),u.hasMore?o.jsx("button",{type:"button",className:"history-load-more",disabled:u.loading,onClick:u.onLoadMore,children:u.loading?j("history.loadingMore"):j("history.loadMore")}):null]}):o.jsxs(o.Fragment,{children:[M.length===0?o.jsx("div",{className:"history-empty",children:j("history.empty")}):null,M.map(V=>{const K=V.id===i,Q=(l==null?void 0:l.has(V.id))===!0,q=!Q&&(c==null?void 0:c.has(V.id))===!0;return o.jsxs("div",{className:`history-item ${K?"active":""}`,children:[o.jsxs("button",{className:"history-item-btn",onClick:()=>E(V.id),"aria-current":K?"page":void 0,title:V.title,children:[o.jsx(EK,{title:V.title}),q&&o.jsxs("span",{className:"history-evaluating-status",title:j("history.evaluatingTitle"),children:[o.jsx("span",{className:"history-evaluating","aria-hidden":"true"}),j("history.evaluating")]})]}),o.jsxs("div",{className:"history-action-slot",children:[Q?o.jsx(Gk,{className:"history-streaming-indicator",size:12,role:"status","aria-label":j("history.generating")}):null,o.jsx("button",{type:"button",className:"history-more","aria-label":j("history.manage",{title:V.title}),title:j("history.more"),onClick:()=>_(U=>U===V.id?null:V.id),children:o.jsx(_W,{className:"icon"})})]}),L===V.id&&o.jsxs(o.Fragment,{children:[o.jsx("div",{className:"menu-scrim",onClick:()=>_(null)}),o.jsx("div",{className:"history-menu",children:o.jsxs("button",{type:"button",className:"menu-item menu-item--danger",onClick:()=>{_(null),C(V.id)},children:[o.jsx(ym,{className:"icon"})," ",j("history.delete")]})})]})]},V.id)})]})})]}),o.jsx("div",{className:"sidebar-footer",children:o.jsx(UGe,{activePage:r,access:a,userInfo:N,onAgentKitCli:O,onDeveloperResources:w,onSystemInfo:k,onIssueFeedback:S,onLogout:T})})]})}function na(e){if(typeof e=="string"||typeof e=="number")return""+e;let t="";if(Array.isArray(e))for(let n=0,i;n{}};function RR(){for(var e=0,t=arguments.length,n={},i;e=0&&(i=n.slice(r+1),n=n.slice(0,r)),n&&!t.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:i}})}p2.prototype=RR.prototype={constructor:p2,on:function(e,t){var n=this._,i=VGe(e+"",n),r,s=-1,a=i.length;if(arguments.length<2){for(;++s0)for(var n=new Array(r),i=0,r,s;i=0&&(t=e.slice(0,n))!=="xmlns"&&(e=e.slice(n+1)),TK.hasOwnProperty(t)?{space:TK[t],local:e}:e}function qGe(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===s6&&t.documentElement.namespaceURI===s6?t.createElement(e):t.createElementNS(n,e)}}function WGe(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function u1e(e){var t=IR(e);return(t.local?WGe:qGe)(t)}function KGe(){}function iB(e){return e==null?KGe:function(){return this.querySelector(e)}}function GGe(e){typeof e!="function"&&(e=iB(e));for(var t=this._groups,n=t.length,i=new Array(n),r=0;r=O&&(O=x+1);!(k=v[O])&&++O=0;)(a=i[r])&&(s&&a.compareDocumentPosition(s)^4&&s.parentNode.insertBefore(a,s),s=a);return this}function xXe(e){e||(e=wXe);function t(f,h){return f&&h?e(f.__data__,h.__data__):!f-!h}for(var n=this._groups,i=n.length,r=new Array(i),s=0;st?1:e>=t?0:NaN}function OXe(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function SXe(){return Array.from(this)}function kXe(){for(var e=this._groups,t=0,n=e.length;t1?this.each((t==null?DXe:typeof t=="function"?LXe:MXe)(e,t,n??"")):Wv(this.node(),e)}function Wv(e,t){return e.style.getPropertyValue(t)||m1e(e).getComputedStyle(e,null).getPropertyValue(t)}function FXe(e){return function(){delete this[e]}}function BXe(e,t){return function(){this[e]=t}}function UXe(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function QXe(e,t){return arguments.length>1?this.each((t==null?FXe:typeof t=="function"?UXe:BXe)(e,t)):this.node()[e]}function g1e(e){return e.trim().split(/^|\s+/)}function rB(e){return e.classList||new b1e(e)}function b1e(e){this._node=e,this._names=g1e(e.getAttribute("class")||"")}b1e.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function y1e(e,t){for(var n=rB(e),i=-1,r=t.length;++i=0&&(n=t.slice(i+1),t=t.slice(0,i)),{type:t,name:n}})}function gYe(e){return function(){var t=this.__on;if(t){for(var n=0,i=-1,r=t.length,s;n()=>e;function a6(e,{sourceEvent:t,subject:n,target:i,identifier:r,active:s,x:a,y:l,dx:c,dy:u,dispatch:d}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},subject:{value:n,enumerable:!0,configurable:!0},target:{value:i,enumerable:!0,configurable:!0},identifier:{value:r,enumerable:!0,configurable:!0},active:{value:s,enumerable:!0,configurable:!0},x:{value:a,enumerable:!0,configurable:!0},y:{value:l,enumerable:!0,configurable:!0},dx:{value:c,enumerable:!0,configurable:!0},dy:{value:u,enumerable:!0,configurable:!0},_:{value:d}})}a6.prototype.on=function(){var e=this._.on.apply(this._,arguments);return e===this._?this:e};function CYe(e){return!e.ctrlKey&&!e.button}function TYe(){return this.parentNode}function AYe(e,t){return t??{x:e.x,y:e.y}}function _Ye(){return navigator.maxTouchPoints||"ontouchstart"in this}function k1e(){var e=CYe,t=TYe,n=AYe,i=_Ye,r={},s=RR("start","drag","end"),a=0,l,c,u,d,f=0;function h(w){w.on("mousedown.drag",m).filter(i).on("touchstart.drag",v).on("touchmove.drag",y,EYe).on("touchend.drag touchcancel.drag",x).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function m(w,k){if(!(d||!e.call(this,w,k))){var S=O(this,t.call(this,w,k),w,k,"mouse");S&&(Zl(w.view).on("mousemove.drag",g,NS).on("mouseup.drag",b,NS),O1e(w.view),rM(w),u=!1,l=w.clientX,c=w.clientY,S("start",w))}}function g(w){if(sv(w),!u){var k=w.clientX-l,S=w.clientY-c;u=k*k+S*S>f}r.mouse("drag",w)}function b(w){Zl(w.view).on("mousemove.drag mouseup.drag",null),S1e(w.view,u),sv(w),r.mouse("end",w)}function v(w,k){if(e.call(this,w,k)){var S=w.changedTouches,E=t.call(this,w,k),C=S.length,N,T;for(N=0;N>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?mT(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?mT(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=jYe.exec(e))?new hl(t[1],t[2],t[3],1):(t=RYe.exec(e))?new hl(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=IYe.exec(e))?mT(t[1],t[2],t[3],t[4]):(t=PYe.exec(e))?mT(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=DYe.exec(e))?PK(t[1],t[2]/100,t[3]/100,1):(t=MYe.exec(e))?PK(t[1],t[2]/100,t[3]/100,t[4]):AK.hasOwnProperty(e)?jK(AK[e]):e==="transparent"?new hl(NaN,NaN,NaN,0):null}function jK(e){return new hl(e>>16&255,e>>8&255,e&255,1)}function mT(e,t,n,i){return i<=0&&(e=t=n=NaN),new hl(e,t,n,i)}function FYe(e){return e instanceof sE||(e=Eb(e)),e?(e=e.rgb(),new hl(e.r,e.g,e.b,e.opacity)):new hl}function o6(e,t,n,i){return arguments.length===1?FYe(e):new hl(e,t,n,i??1)}function hl(e,t,n,i){this.r=+e,this.g=+t,this.b=+n,this.opacity=+i}sB(hl,o6,E1e(sE,{brighter(e){return e=e==null?Y_:Math.pow(Y_,e),new hl(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?jS:Math.pow(jS,e),new hl(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new hl(lb(this.r),lb(this.g),lb(this.b),Z_(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:RK,formatHex:RK,formatHex8:BYe,formatRgb:IK,toString:IK}));function RK(){return`#${Ug(this.r)}${Ug(this.g)}${Ug(this.b)}`}function BYe(){return`#${Ug(this.r)}${Ug(this.g)}${Ug(this.b)}${Ug((isNaN(this.opacity)?1:this.opacity)*255)}`}function IK(){const e=Z_(this.opacity);return`${e===1?"rgb(":"rgba("}${lb(this.r)}, ${lb(this.g)}, ${lb(this.b)}${e===1?")":`, ${e})`}`}function Z_(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function lb(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Ug(e){return e=lb(e),(e<16?"0":"")+e.toString(16)}function PK(e,t,n,i){return i<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new Tu(e,t,n,i)}function C1e(e){if(e instanceof Tu)return new Tu(e.h,e.s,e.l,e.opacity);if(e instanceof sE||(e=Eb(e)),!e)return new Tu;if(e instanceof Tu)return e;e=e.rgb();var t=e.r/255,n=e.g/255,i=e.b/255,r=Math.min(t,n,i),s=Math.max(t,n,i),a=NaN,l=s-r,c=(s+r)/2;return l?(t===s?a=(n-i)/l+(n0&&c<1?0:a,new Tu(a,l,c,e.opacity)}function UYe(e,t,n,i){return arguments.length===1?C1e(e):new Tu(e,t,n,i??1)}function Tu(e,t,n,i){this.h=+e,this.s=+t,this.l=+n,this.opacity=+i}sB(Tu,UYe,E1e(sE,{brighter(e){return e=e==null?Y_:Math.pow(Y_,e),new Tu(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?jS:Math.pow(jS,e),new Tu(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,i=n+(n<.5?n:1-n)*t,r=2*n-i;return new hl(sM(e>=240?e-240:e+120,r,i),sM(e,r,i),sM(e<120?e+240:e-120,r,i),this.opacity)},clamp(){return new Tu(DK(this.h),gT(this.s),gT(this.l),Z_(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=Z_(this.opacity);return`${e===1?"hsl(":"hsla("}${DK(this.h)}, ${gT(this.s)*100}%, ${gT(this.l)*100}%${e===1?")":`, ${e})`}`}}));function DK(e){return e=(e||0)%360,e<0?e+360:e}function gT(e){return Math.max(0,Math.min(1,e||0))}function sM(e,t,n){return(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)*255}const PR=e=>()=>e;function T1e(e,t){return function(n){return e+n*t}}function QYe(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(i){return Math.pow(e+i*t,n)}}function kHt(e,t){var n=t-e;return n?T1e(e,n>180||n<-180?n-360*Math.round(n/360):n):PR(isNaN(e)?t:e)}function zYe(e){return(e=+e)==1?A1e:function(t,n){return n-t?QYe(t,n,e):PR(isNaN(t)?n:t)}}function A1e(e,t){var n=t-e;return n?T1e(e,n):PR(isNaN(e)?t:e)}const J_=function e(t){var n=zYe(t);function i(r,s){var a=n((r=o6(r)).r,(s=o6(s)).r),l=n(r.g,s.g),c=n(r.b,s.b),u=A1e(r.opacity,s.opacity);return function(d){return r.r=a(d),r.g=l(d),r.b=c(d),r.opacity=u(d),r+""}}return i.gamma=e,i}(1);function VYe(e,t){t||(t=[]);var n=e?Math.min(t.length,e.length):0,i=t.slice(),r;return function(s){for(r=0;rn&&(s=t.slice(n,s),l[a]?l[a]+=s:l[++a]=s),(i=i[0])===(r=r[0])?l[a]?l[a]+=r:l[++a]=r:(l[++a]=null,c.push({i:a,x:md(i,r)})),n=aM.lastIndex;return n180?d+=360:d-u>180&&(u+=360),h.push({i:f.push(r(f)+"rotate(",null,i)-2,x:md(u,d)})):d&&f.push(r(f)+"rotate("+d+i)}function l(u,d,f,h){u!==d?h.push({i:f.push(r(f)+"skewX(",null,i)-2,x:md(u,d)}):d&&f.push(r(f)+"skewX("+d+i)}function c(u,d,f,h,m,g){if(u!==f||d!==h){var b=m.push(r(m)+"scale(",null,",",null,")");g.push({i:b-4,x:md(u,f)},{i:b-2,x:md(d,h)})}else(f!==1||h!==1)&&m.push(r(m)+"scale("+f+","+h+")")}return function(u,d){var f=[],h=[];return u=e(u),d=e(d),s(u.translateX,u.translateY,d.translateX,d.translateY,f,h),a(u.rotate,d.rotate,f,h),l(u.skewX,d.skewX,f,h),c(u.scaleX,u.scaleY,d.scaleX,d.scaleY,f,h),u=d=null,function(m){for(var g=-1,b=h.length,v;++g=0&&e._call.call(void 0,t),e=e._next;--Kv}function $K(){Cb=(tN=IS.now())+DR,Kv=Mw=0;try{sZe()}finally{Kv=0,oZe(),Cb=0}}function aZe(){var e=IS.now(),t=e-tN;t>R1e&&(DR-=t,tN=e)}function oZe(){for(var e,t=eN,n,i=1/0;t;)t._call?(i>t._time&&(i=t._time),e=t,t=t._next):(n=t._next,t._next=null,t=e?e._next=n:eN=n);Lw=e,u6(i)}function u6(e){if(!Kv){Mw&&(Mw=clearTimeout(Mw));var t=e-Cb;t>24?(e<1/0&&(Mw=setTimeout($K,e-IS.now()-DR)),Q1&&(Q1=clearInterval(Q1))):(Q1||(tN=IS.now(),Q1=setInterval(aZe,R1e)),Kv=1,I1e($K))}}function FK(e,t,n){var i=new nN;return t=t==null?0:+t,i.restart(r=>{i.stop(),e(r+t)},t,n),i}var lZe=RR("start","end","cancel","interrupt"),cZe=[],D1e=0,BK=1,d6=2,g2=3,UK=4,f6=5,b2=6;function MR(e,t,n,i,r,s){var a=e.__transition;if(!a)e.__transition={};else if(n in a)return;uZe(e,n,{name:t,index:i,group:r,on:lZe,tween:cZe,time:s.time,delay:s.delay,duration:s.duration,ease:s.ease,timer:null,state:D1e})}function oB(e,t){var n=Ku(e,t);if(n.state>D1e)throw new Error("too late; already scheduled");return n}function Zd(e,t){var n=Ku(e,t);if(n.state>g2)throw new Error("too late; already running");return n}function Ku(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw new Error("transition not found");return n}function uZe(e,t,n){var i=e.__transition,r;i[t]=n,n.timer=P1e(s,0,n.time);function s(u){n.state=BK,n.timer.restart(a,n.delay,n.time),n.delay<=u&&a(u-n.delay)}function a(u){var d,f,h,m;if(n.state!==BK)return c();for(d in i)if(m=i[d],m.name===n.name){if(m.state===g2)return FK(a);m.state===UK?(m.state=b2,m.timer.stop(),m.on.call("interrupt",e,e.__data__,m.index,m.group),delete i[d]):+dd6&&i.state=0&&(t=t.slice(0,n)),!t||t==="start"})}function BZe(e,t,n){var i,r,s=FZe(t)?oB:Zd;return function(){var a=s(this,e),l=a.on;l!==i&&(r=(i=l).copy()).on(t,n),a.on=r}}function UZe(e,t){var n=this._id;return arguments.length<2?Ku(this.node(),n).on.on(e):this.each(BZe(n,e,t))}function QZe(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function zZe(){return this.on("end.remove",QZe(this._id))}function VZe(e){var t=this._name,n=this._id;typeof e!="function"&&(e=iB(e));for(var i=this._groups,r=i.length,s=new Array(r),a=0;a()=>e;function mJe(e,{sourceEvent:t,target:n,transform:i,dispatch:r}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},transform:{value:i,enumerable:!0,configurable:!0},_:{value:r}})}function Kf(e,t,n){this.k=e,this.x=t,this.y=n}Kf.prototype={constructor:Kf,scale:function(e){return e===1?this:new Kf(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Kf(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var LR=new Kf(1,0,0);F1e.prototype=Kf.prototype;function F1e(e){for(;!e.__zoom;)if(!(e=e.parentNode))return LR;return e.__zoom}function oM(e){e.stopImmediatePropagation()}function z1(e){e.preventDefault(),e.stopImmediatePropagation()}function gJe(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function bJe(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]):[[0,0],[e.clientWidth,e.clientHeight]]}function QK(){return this.__zoom||LR}function yJe(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function vJe(){return navigator.maxTouchPoints||"ontouchstart"in this}function xJe(e,t,n){var i=e.invertX(t[0][0])-n[0][0],r=e.invertX(t[1][0])-n[1][0],s=e.invertY(t[0][1])-n[0][1],a=e.invertY(t[1][1])-n[1][1];return e.translate(r>i?(i+r)/2:Math.min(0,i)||Math.max(0,r),a>s?(s+a)/2:Math.min(0,s)||Math.max(0,a))}function B1e(){var e=gJe,t=bJe,n=xJe,i=yJe,r=vJe,s=[0,1/0],a=[[-1/0,-1/0],[1/0,1/0]],l=250,c=m2,u=RR("start","zoom","end"),d,f,h,m=500,g=150,b=0,v=10;function y(_){_.property("__zoom",QK).on("wheel.zoom",C,{passive:!1}).on("mousedown.zoom",N).on("dblclick.zoom",T).filter(r).on("touchstart.zoom",j).on("touchmove.zoom",A).on("touchend.zoom touchcancel.zoom",L).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}y.transform=function(_,P,I,$){var M=_.selection?_.selection():_;M.property("__zoom",QK),_!==M?k(_,P,I,$):M.interrupt().each(function(){S(this,arguments).event($).start().zoom(null,typeof P=="function"?P.apply(this,arguments):P).end()})},y.scaleBy=function(_,P,I,$){y.scaleTo(_,function(){var M=this.__zoom.k,B=typeof P=="function"?P.apply(this,arguments):P;return M*B},I,$)},y.scaleTo=function(_,P,I,$){y.transform(_,function(){var M=t.apply(this,arguments),B=this.__zoom,R=I==null?w(M):typeof I=="function"?I.apply(this,arguments):I,V=B.invert(R),K=typeof P=="function"?P.apply(this,arguments):P;return n(O(x(B,K),R,V),M,a)},I,$)},y.translateBy=function(_,P,I,$){y.transform(_,function(){return n(this.__zoom.translate(typeof P=="function"?P.apply(this,arguments):P,typeof I=="function"?I.apply(this,arguments):I),t.apply(this,arguments),a)},null,$)},y.translateTo=function(_,P,I,$,M){y.transform(_,function(){var B=t.apply(this,arguments),R=this.__zoom,V=$==null?w(B):typeof $=="function"?$.apply(this,arguments):$;return n(LR.translate(V[0],V[1]).scale(R.k).translate(typeof P=="function"?-P.apply(this,arguments):-P,typeof I=="function"?-I.apply(this,arguments):-I),B,a)},$,M)};function x(_,P){return P=Math.max(s[0],Math.min(s[1],P)),P===_.k?_:new Kf(P,_.x,_.y)}function O(_,P,I){var $=P[0]-I[0]*_.k,M=P[1]-I[1]*_.k;return $===_.x&&M===_.y?_:new Kf(_.k,$,M)}function w(_){return[(+_[0][0]+ +_[1][0])/2,(+_[0][1]+ +_[1][1])/2]}function k(_,P,I,$){_.on("start.zoom",function(){S(this,arguments).event($).start()}).on("interrupt.zoom end.zoom",function(){S(this,arguments).event($).end()}).tween("zoom",function(){var M=this,B=arguments,R=S(M,B).event($),V=t.apply(M,B),K=I==null?w(V):typeof I=="function"?I.apply(M,B):I,Q=Math.max(V[1][0]-V[0][0],V[1][1]-V[0][1]),q=M.__zoom,U=typeof P=="function"?P.apply(M,B):P,G=c(q.invert(K).concat(Q/q.k),U.invert(K).concat(Q/U.k));return function(ae){if(ae===1)ae=U;else{var re=G(ae),se=Q/re[2];ae=new Kf(se,K[0]-re[0]*se,K[1]-re[1]*se)}R.zoom(null,ae)}})}function S(_,P,I){return!I&&_.__zooming||new E(_,P)}function E(_,P){this.that=_,this.args=P,this.active=0,this.sourceEvent=null,this.extent=t.apply(_,P),this.taps=0}E.prototype={event:function(_){return _&&(this.sourceEvent=_),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(_,P){return this.mouse&&_!=="mouse"&&(this.mouse[1]=P.invert(this.mouse[0])),this.touch0&&_!=="touch"&&(this.touch0[1]=P.invert(this.touch0[0])),this.touch1&&_!=="touch"&&(this.touch1[1]=P.invert(this.touch1[0])),this.that.__zoom=P,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(_){var P=Zl(this.that).datum();u.call(_,this.that,new mJe(_,{sourceEvent:this.sourceEvent,target:y,transform:this.that.__zoom,dispatch:u}),P)}};function C(_,...P){if(!e.apply(this,arguments))return;var I=S(this,P).event(_),$=this.__zoom,M=Math.max(s[0],Math.min(s[1],$.k*Math.pow(2,i.apply(this,arguments)))),B=Su(_);if(I.wheel)(I.mouse[0][0]!==B[0]||I.mouse[0][1]!==B[1])&&(I.mouse[1]=$.invert(I.mouse[0]=B)),clearTimeout(I.wheel);else{if($.k===M)return;I.mouse=[B,$.invert(B)],y2(this),I.start()}z1(_),I.wheel=setTimeout(R,g),I.zoom("mouse",n(O(x($,M),I.mouse[0],I.mouse[1]),I.extent,a));function R(){I.wheel=null,I.end()}}function N(_,...P){if(h||!e.apply(this,arguments))return;var I=_.currentTarget,$=S(this,P,!0).event(_),M=Zl(_.view).on("mousemove.zoom",K,!0).on("mouseup.zoom",Q,!0),B=Su(_,I),R=_.clientX,V=_.clientY;O1e(_.view),oM(_),$.mouse=[B,this.__zoom.invert(B)],y2(this),$.start();function K(q){if(z1(q),!$.moved){var U=q.clientX-R,G=q.clientY-V;$.moved=U*U+G*G>b}$.event(q).zoom("mouse",n(O($.that.__zoom,$.mouse[0]=Su(q,I),$.mouse[1]),$.extent,a))}function Q(q){M.on("mousemove.zoom mouseup.zoom",null),S1e(q.view,$.moved),z1(q),$.event(q).end()}}function T(_,...P){if(e.apply(this,arguments)){var I=this.__zoom,$=Su(_.changedTouches?_.changedTouches[0]:_,this),M=I.invert($),B=I.k*(_.shiftKey?.5:2),R=n(O(x(I,B),$,M),t.apply(this,P),a);z1(_),l>0?Zl(this).transition().duration(l).call(k,R,$,_):Zl(this).call(y.transform,R,$,_)}}function j(_,...P){if(e.apply(this,arguments)){var I=_.touches,$=I.length,M=S(this,P,_.changedTouches.length===$).event(_),B,R,V,K;for(oM(_),R=0;R<$;++R)V=I[R],K=Su(V,this),K=[K,this.__zoom.invert(K),V.identifier],M.touch0?!M.touch1&&M.touch0[2]!==K[2]&&(M.touch1=K,M.taps=0):(M.touch0=K,B=!0,M.taps=1+!!d);d&&(d=clearTimeout(d)),B&&(M.taps<2&&(f=K[0],d=setTimeout(function(){d=null},m)),y2(this),M.start())}}function A(_,...P){if(this.__zooming){var I=S(this,P).event(_),$=_.changedTouches,M=$.length,B,R,V,K;for(z1(_),B=0;B`Seems like you have not used zustand provider as an ancestor. Help: https://${e}flow.dev/error#001`,error002:()=>"It looks like you've created a new nodeTypes or edgeTypes object. If this wasn't on purpose please define the nodeTypes/edgeTypes outside of the component or memoize them.",error003:e=>`Node type "${e}" not found. Using fallback type "default".`,error004:()=>"The parent container needs a width and a height to render the graph.",error005:()=>"Only child nodes can use a parent extent.",error006:()=>"Can't create edge. An edge needs a source and a target.",error007:e=>`The old edge with id=${e} does not exist.`,error009:e=>`Marker type "${e}" doesn't exist.`,error008:(e,{id:t,sourceHandle:n,targetHandle:i})=>`Couldn't create edge for ${e} handle id: "${e==="source"?n:i}", edge id: ${t}.`,error010:()=>"Handle: No node id found. Make sure to only use a Handle inside a custom Node.",error011:e=>`Edge type "${e}" not found. Using fallback type "default".`,error012:e=>`Node with id "${e}" does not exist, it may have been removed. This can happen when a node is deleted before the "onNodeClick" handler is called.`,error013:(e="react")=>`It seems that you haven't loaded the styles. Please import '@xyflow/${e}/dist/style.css' or base.css to make sure everything is working properly.`,error014:()=>"useNodeConnections: No node ID found. Call useNodeConnections inside a custom Node or provide a node ID.",error015:()=>"It seems that you are trying to drag a node that is not initialized. Please use onNodesChange as explained in the docs.",error016:e=>`Edge with id "${e}" does not exist, it may have been removed. This can happen when an edge is deleted before the "onEdgeClick" handler is called.`},PS=[[Number.NEGATIVE_INFINITY,Number.NEGATIVE_INFINITY],[Number.POSITIVE_INFINITY,Number.POSITIVE_INFINITY]],U1e=["Enter"," ","Escape"],Q1e={"node.a11yDescription.default":"Press enter or space to select a node. Press delete to remove it and escape to cancel.","node.a11yDescription.keyboardDisabled":"Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.","node.a11yDescription.ariaLiveMessage":({direction:e,x:t,y:n})=>`Moved selected node ${e}. New position, x: ${t}, y: ${n}`,"edge.a11yDescription.default":"Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.","controls.ariaLabel":"Control Panel","controls.zoomIn.ariaLabel":"Zoom In","controls.zoomOut.ariaLabel":"Zoom Out","controls.fitView.ariaLabel":"Fit View","controls.interactive.ariaLabel":"Toggle Interactivity","minimap.ariaLabel":"Mini Map","handle.ariaLabel":"Handle"};var Gv;(function(e){e.Strict="strict",e.Loose="loose"})(Gv||(Gv={}));var cb;(function(e){e.Free="free",e.Vertical="vertical",e.Horizontal="horizontal"})(cb||(cb={}));var DS;(function(e){e.Partial="partial",e.Full="full"})(DS||(DS={}));const z1e={inProgress:!1,isValid:null,from:null,fromHandle:null,fromPosition:null,fromNode:null,to:null,toHandle:null,toPosition:null,toNode:null,pointer:null};var Pp;(function(e){e.Bezier="default",e.Straight="straight",e.Step="step",e.SmoothStep="smoothstep",e.SimpleBezier="simplebezier"})(Pp||(Pp={}));var MS;(function(e){e.Arrow="arrow",e.ArrowClosed="arrowclosed"})(MS||(MS={}));var an;(function(e){e.Left="left",e.Top="top",e.Right="right",e.Bottom="bottom"})(an||(an={}));const zK={[an.Left]:an.Right,[an.Right]:an.Left,[an.Top]:an.Bottom,[an.Bottom]:an.Top};function V1e(e){return e===null?null:e?"valid":"invalid"}const H1e=e=>"id"in e&&"source"in e&&"target"in e,wJe=e=>"id"in e&&"position"in e&&!("source"in e)&&!("target"in e),cB=e=>"id"in e&&"internals"in e&&!("source"in e)&&!("target"in e),aE=(e,t=[0,0])=>{const{width:n,height:i}=$h(e),r=e.origin??t,s=n*r[0],a=i*r[1];return{x:e.position.x-s,y:e.position.y-a}},OJe=(e,t={nodeOrigin:[0,0]})=>{if(e.length===0)return{x:0,y:0,width:0,height:0};const n=e.reduce((i,r)=>{const s=typeof r=="string";let a=!t.nodeLookup&&!s?r:void 0;t.nodeLookup&&(a=s?t.nodeLookup.get(r):cB(r)?r:t.nodeLookup.get(r.id));const l=a?iN(a,t.nodeOrigin):{x:0,y:0,x2:0,y2:0};return $R(i,l)},{x:1/0,y:1/0,x2:-1/0,y2:-1/0});return FR(n)},oE=(e,t={})=>{let n={x:1/0,y:1/0,x2:-1/0,y2:-1/0},i=!1;return e.forEach(r=>{(t.filter===void 0||t.filter(r))&&(n=$R(n,iN(r)),i=!0)}),i?FR(n):{x:0,y:0,width:0,height:0}},uB=(e,t,[n,i,r]=[0,0,1],s=!1,a=!1)=>{const l={...zx(t,[n,i,r]),width:t.width/r,height:t.height/r},c=[];for(const u of e.values()){const{measured:d,selectable:f=!0,hidden:h=!1}=u;if(a&&!f||h)continue;const m=d.width??u.width??u.initialWidth??null,g=d.height??u.height??u.initialHeight??null,b=LS(l,Yv(u)),v=(m??0)*(g??0),y=s&&b>0;(!u.internals.handleBounds||y||b>=v||u.dragging)&&c.push(u)}return c},SJe=(e,t)=>{const n=new Set;return e.forEach(i=>{n.add(i.id)}),t.filter(i=>n.has(i.source)||n.has(i.target))};function kJe(e,t){const n=new Map,i=t!=null&&t.nodes?new Set(t.nodes.map(r=>r.id)):null;return e.forEach(r=>{r.measured.width&&r.measured.height&&((t==null?void 0:t.includeHiddenNodes)||!r.hidden)&&(!i||i.has(r.id))&&n.set(r.id,r)}),n}async function EJe({nodes:e,width:t,height:n,panZoom:i,minZoom:r,maxZoom:s},a){if(e.size===0)return!0;const l=kJe(e,a),c=oE(l),u=fB(c,t,n,(a==null?void 0:a.minZoom)??r,(a==null?void 0:a.maxZoom)??s,(a==null?void 0:a.padding)??.1);return await i.setViewport(u,{duration:a==null?void 0:a.duration,ease:a==null?void 0:a.ease,interpolate:a==null?void 0:a.interpolate}),!0}function q1e({nodeId:e,nextPosition:t,nodeLookup:n,nodeOrigin:i=[0,0],nodeExtent:r,onError:s}){const a=n.get(e),l=a.parentId?n.get(a.parentId):void 0,{x:c,y:u}=l?l.internals.positionAbsolute:{x:0,y:0},d=a.origin??i;let f=a.extent||r;if(a.extent==="parent"&&!a.expandParent)if(!l)s==null||s("005",Bu.error005());else{const m=l.measured.width,g=l.measured.height;m&&g&&(f=[[c,u],[c+m,u+g]])}else l&&Ab(a.extent)&&(f=[[a.extent[0][0]+c,a.extent[0][1]+u],[a.extent[1][0]+c,a.extent[1][1]+u]]);const h=Ab(f)?Tb(t,f,a.measured):t;return(a.measured.width===void 0||a.measured.height===void 0)&&(s==null||s("015",Bu.error015())),{position:{x:h.x-c+(a.measured.width??0)*d[0],y:h.y-u+(a.measured.height??0)*d[1]},positionAbsolute:h}}async function CJe({nodesToRemove:e=[],edgesToRemove:t=[],nodes:n,edges:i,onBeforeDelete:r}){const s=new Set(e.map(h=>h.id)),a=[];for(const h of n){if(h.deletable===!1)continue;const m=s.has(h.id),g=!m&&h.parentId&&a.find(b=>b.id===h.parentId);(m||g)&&a.push(h)}const l=new Set(t.map(h=>h.id)),c=i.filter(h=>h.deletable!==!1),d=SJe(a,c);for(const h of c)l.has(h.id)&&!d.find(g=>g.id===h.id)&&d.push(h);if(!r)return{edges:d,nodes:a};const f=await r({nodes:a,edges:d});return typeof f=="boolean"?f?{edges:d,nodes:a}:{edges:[],nodes:[]}:f}const Xv=(e,t=0,n=1)=>Math.min(Math.max(e,t),n),Tb=(e={x:0,y:0},t,n)=>({x:Xv(e.x,t[0][0],t[1][0]-((n==null?void 0:n.width)??0)),y:Xv(e.y,t[0][1],t[1][1]-((n==null?void 0:n.height)??0))});function W1e(e,t,n){const{width:i,height:r}=$h(n),{x:s,y:a}=n.internals.positionAbsolute;return Tb(e,[[s,a],[s+i,a+r]],t)}const VK=(e,t,n)=>en?-Xv(Math.abs(e-n),1,t)/t:0,dB=(e,t,n=15,i=40)=>{const r=VK(e.x,i,t.width-i)*n,s=VK(e.y,i,t.height-i)*n;return[r,s]},$R=(e,t)=>({x:Math.min(e.x,t.x),y:Math.min(e.y,t.y),x2:Math.max(e.x2,t.x2),y2:Math.max(e.y2,t.y2)}),h6=({x:e,y:t,width:n,height:i})=>({x:e,y:t,x2:e+n,y2:t+i}),FR=({x:e,y:t,x2:n,y2:i})=>({x:e,y:t,width:n-e,height:i-t}),Yv=(e,t=[0,0])=>{var r,s;const{x:n,y:i}=cB(e)?e.internals.positionAbsolute:aE(e,t);return{x:n,y:i,width:((r=e.measured)==null?void 0:r.width)??e.width??e.initialWidth??0,height:((s=e.measured)==null?void 0:s.height)??e.height??e.initialHeight??0}},iN=(e,t=[0,0])=>{var r,s;const{x:n,y:i}=cB(e)?e.internals.positionAbsolute:aE(e,t);return{x:n,y:i,x2:n+(((r=e.measured)==null?void 0:r.width)??e.width??e.initialWidth??0),y2:i+(((s=e.measured)==null?void 0:s.height)??e.height??e.initialHeight??0)}},K1e=(e,t)=>FR($R(h6(e),h6(t))),LS=(e,t)=>{const n=Math.max(0,Math.min(e.x+e.width,t.x+t.width)-Math.max(e.x,t.x)),i=Math.max(0,Math.min(e.y+e.height,t.y+t.height)-Math.max(e.y,t.y));return Math.ceil(n*i)},HK=e=>_u(e.width)&&_u(e.height)&&_u(e.x)&&_u(e.y),_u=e=>!isNaN(e)&&isFinite(e),G1e=(e,t)=>(n,i)=>{},lE=(e,t=[1,1])=>({x:t[0]*Math.round(e.x/t[0]),y:t[1]*Math.round(e.y/t[1])}),zx=({x:e,y:t},[n,i,r],s=!1,a=[1,1])=>{const l={x:(e-n)/r,y:(t-i)/r};return s?lE(l,a):l},Zv=({x:e,y:t},[n,i,r])=>({x:e*r+n,y:t*r+i});function U0(e,t){if(typeof e=="number")return Math.floor((t-t/(1+e))*.5);if(typeof e=="string"&&e.endsWith("px")){const n=parseFloat(e);if(!Number.isNaN(n))return Math.floor(n)}if(typeof e=="string"&&e.endsWith("%")){const n=parseFloat(e);if(!Number.isNaN(n))return Math.floor(t*n*.01)}return console.error(`The padding value "${e}" is invalid. Please provide a number or a string with a valid unit (px or %).`),0}function TJe(e,t,n){if(typeof e=="string"||typeof e=="number"){const i=U0(e,n),r=U0(e,t);return{top:i,right:r,bottom:i,left:r,x:r*2,y:i*2}}if(typeof e=="object"){const i=U0(e.top??e.y??0,n),r=U0(e.bottom??e.y??0,n),s=U0(e.left??e.x??0,t),a=U0(e.right??e.x??0,t);return{top:i,right:a,bottom:r,left:s,x:s+a,y:i+r}}return{top:0,right:0,bottom:0,left:0,x:0,y:0}}function AJe(e,t,n,i,r,s){const{x:a,y:l}=Zv(e,[t,n,i]),{x:c,y:u}=Zv({x:e.x+e.width,y:e.y+e.height},[t,n,i]),d=r-c,f=s-u;return{left:Math.floor(a),top:Math.floor(l),right:Math.floor(d),bottom:Math.floor(f)}}const fB=(e,t,n,i,r,s)=>{const a=TJe(s,t,n),l=(t-a.x)/e.width,c=(n-a.y)/e.height,u=Math.min(l,c),d=Xv(u,i,r),f=e.x+e.width/2,h=e.y+e.height/2,m=t/2-f*d,g=n/2-h*d,b=AJe(e,m,g,d,t,n),v={left:Math.min(b.left-a.left,0),top:Math.min(b.top-a.top,0),right:Math.min(b.right-a.right,0),bottom:Math.min(b.bottom-a.bottom,0)};return{x:m-v.left+v.right,y:g-v.top+v.bottom,zoom:d}},$S=()=>{var e;return typeof navigator<"u"&&((e=navigator==null?void 0:navigator.userAgent)==null?void 0:e.indexOf("Mac"))>=0};function Ab(e){return e!=null&&e!=="parent"}function $h(e){var t,n;return{width:((t=e.measured)==null?void 0:t.width)??e.width??e.initialWidth??0,height:((n=e.measured)==null?void 0:n.height)??e.height??e.initialHeight??0}}function hB(e){var t,n;return(((t=e.measured)==null?void 0:t.width)??e.width??e.initialWidth)!==void 0&&(((n=e.measured)==null?void 0:n.height)??e.height??e.initialHeight)!==void 0}function X1e(e,t={width:0,height:0},n,i,r){const s={...e},a=i.get(n);if(a){const l=a.origin||r;s.x+=a.internals.positionAbsolute.x-(t.width??0)*l[0],s.y+=a.internals.positionAbsolute.y-(t.height??0)*l[1]}return s}function qK(e,t){if(e.size!==t.size)return!1;for(const n of e)if(!t.has(n))return!1;return!0}function _Je(){let e,t;return{promise:new Promise((i,r)=>{e=i,t=r}),resolve:e,reject:t}}function NJe(e){return{...Q1e,...e||{}}}function TO(e,{snapGrid:t=[0,0],snapToGrid:n=!1,transform:i,containerBounds:r}){const{x:s,y:a}=Nu(e),l=zx({x:s-((r==null?void 0:r.left)??0),y:a-((r==null?void 0:r.top)??0)},i),{x:c,y:u}=n?lE(l,t):l;return{xSnapped:c,ySnapped:u,...l}}const pB=e=>({width:e.offsetWidth,height:e.offsetHeight}),Y1e=e=>{var t;return((t=e==null?void 0:e.getRootNode)==null?void 0:t.call(e))||(window==null?void 0:window.document)},jJe=["INPUT","SELECT","TEXTAREA"];function Z1e(e){var i,r;const t=((r=(i=e.composedPath)==null?void 0:i.call(e))==null?void 0:r[0])||e.target;return(t==null?void 0:t.nodeType)!==1?!1:jJe.includes(t.nodeName)||t.hasAttribute("contenteditable")||!!t.closest(".nokey")}const J1e=e=>"clientX"in e,Nu=(e,t)=>{var s,a;const n=J1e(e),i=n?e.clientX:(s=e.touches)==null?void 0:s[0].clientX,r=n?e.clientY:(a=e.touches)==null?void 0:a[0].clientY;return{x:i-((t==null?void 0:t.left)??0),y:r-((t==null?void 0:t.top)??0)}},WK=(e,t,n,i,r)=>{const s=t.querySelectorAll(`.${e}`);return!s||!s.length?null:Array.from(s).map(a=>{const l=a.getBoundingClientRect();return{id:a.getAttribute("data-handleid"),type:e,nodeId:r,position:a.getAttribute("data-handlepos"),x:(l.left-n.left)/i,y:(l.top-n.top)/i,...pB(a)}})};function ewe({sourceX:e,sourceY:t,targetX:n,targetY:i,sourceControlX:r,sourceControlY:s,targetControlX:a,targetControlY:l}){const c=e*.125+r*.375+a*.375+n*.125,u=t*.125+s*.375+l*.375+i*.125,d=Math.abs(c-e),f=Math.abs(u-t);return[c,u,d,f]}function vT(e,t){return e>=0?.5*e:t*25*Math.sqrt(-e)}function KK({pos:e,x1:t,y1:n,x2:i,y2:r,c:s}){switch(e){case an.Left:return[t-vT(t-i,s),n];case an.Right:return[t+vT(i-t,s),n];case an.Top:return[t,n-vT(n-r,s)];case an.Bottom:return[t,n+vT(r-n,s)]}}function twe({sourceX:e,sourceY:t,sourcePosition:n=an.Bottom,targetX:i,targetY:r,targetPosition:s=an.Top,curvature:a=.25}){const[l,c]=KK({pos:n,x1:e,y1:t,x2:i,y2:r,c:a}),[u,d]=KK({pos:s,x1:i,y1:r,x2:e,y2:t,c:a}),[f,h,m,g]=ewe({sourceX:e,sourceY:t,targetX:i,targetY:r,sourceControlX:l,sourceControlY:c,targetControlX:u,targetControlY:d});return[`M${e},${t} C${l},${c} ${u},${d} ${i},${r}`,f,h,m,g]}function nwe({sourceX:e,sourceY:t,targetX:n,targetY:i}){const r=Math.abs(n-e)/2,s=n0}const PJe=({source:e,sourceHandle:t,target:n,targetHandle:i})=>`xy-edge__${e}${t||""}-${n}${i||""}`,DJe=(e,t)=>t.some(n=>n.source===e.source&&n.target===e.target&&(n.sourceHandle===e.sourceHandle||!n.sourceHandle&&!e.sourceHandle)&&(n.targetHandle===e.targetHandle||!n.targetHandle&&!e.targetHandle)),MJe=(e,t,n={})=>{var s;if(!e.source||!e.target)return(s=n.onError)==null||s.call(n,"006",Bu.error006()),t;const i=n.getEdgeId||PJe;let r;return H1e(e)?r={...e}:r={...e,id:i(e)},DJe(r,t)?t:(r.sourceHandle===null&&delete r.sourceHandle,r.targetHandle===null&&delete r.targetHandle,t.concat(r))};function iwe({sourceX:e,sourceY:t,targetX:n,targetY:i}){const[r,s,a,l]=nwe({sourceX:e,sourceY:t,targetX:n,targetY:i});return[`M ${e},${t}L ${n},${i}`,r,s,a,l]}const GK={[an.Left]:{x:-1,y:0},[an.Right]:{x:1,y:0},[an.Top]:{x:0,y:-1},[an.Bottom]:{x:0,y:1}},LJe=({source:e,sourcePosition:t=an.Bottom,target:n})=>t===an.Left||t===an.Right?e.xMath.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2));function $Je({source:e,sourcePosition:t=an.Bottom,target:n,targetPosition:i=an.Top,center:r,offset:s,stepPosition:a}){const l=GK[t],c=GK[i],u={x:e.x+l.x*s,y:e.y+l.y*s},d={x:n.x+c.x*s,y:n.y+c.y*s},f=LJe({source:u,sourcePosition:t,target:d}),h=f.x!==0?"x":"y",m=f[h];let g=[],b,v;const y={x:0,y:0},x={x:0,y:0},[,,O,w]=nwe({sourceX:e.x,sourceY:e.y,targetX:n.x,targetY:n.y});if(l[h]*c[h]===-1){h==="x"?(b=r.x??u.x+(d.x-u.x)*a,v=r.y??(u.y+d.y)/2):(b=r.x??(u.x+d.x)/2,v=r.y??u.y+(d.y-u.y)*a);const C=[{x:b,y:u.y},{x:b,y:d.y}],N=[{x:u.x,y:v},{x:d.x,y:v}];l[h]===m?g=h==="x"?C:N:g=h==="x"?N:C}else{const C=[{x:u.x,y:d.y}],N=[{x:d.x,y:u.y}];if(h==="x"?g=l.x===m?N:C:g=l.y===m?C:N,t===i){const _=Math.abs(e[h]-n[h]);if(_<=s){const P=Math.min(s-1,s-_);l[h]===m?y[h]=(u[h]>e[h]?-1:1)*P:x[h]=(d[h]>n[h]?-1:1)*P}}if(t!==i){const _=h==="x"?"y":"x",P=l[h]===c[_],I=u[_]>d[_],$=u[_]=L?(b=(T.x+j.x)/2,v=g[0].y):(b=g[0].x,v=(T.y+j.y)/2)}const k={x:u.x+y.x,y:u.y+y.y},S={x:d.x+x.x,y:d.y+x.y};return[[e,...k.x!==g[0].x||k.y!==g[0].y?[k]:[],...g,...S.x!==g[g.length-1].x||S.y!==g[g.length-1].y?[S]:[],n],b,v,O,w]}function FJe(e,t,n,i){const r=Math.min(XK(e,t)/2,XK(t,n)/2,i),{x:s,y:a}=t;if(e.x===s&&s===n.x||e.y===a&&a===n.y)return`L${s} ${a}`;if(e.y===a){const u=e.xn.id===t):e[0])||null}function p6(e,t){return e?typeof e=="string"?e:`${t?`${t}__`:""}${Object.keys(e).sort().map(i=>`${i}=${e[i]}`).join("&")}`:""}function UJe(e,{id:t,defaultColor:n,defaultMarkerStart:i,defaultMarkerEnd:r}){const s=new Set;return e.reduce((a,l)=>([l.markerStart||i,l.markerEnd||r].forEach(c=>{if(c&&typeof c=="object"){const u=p6(c,t);s.has(u)||(a.push({id:u,color:c.color||n,...c}),s.add(u))}}),a),[]).sort((a,l)=>a.id.localeCompare(l.id))}const rwe=1e3,QJe=10,mB={nodeOrigin:[0,0],nodeExtent:PS,elevateNodesOnSelect:!0,zIndexMode:"basic",defaults:{}},zJe={...mB,checkEquality:!0};function gB(e,t){const n={...e};for(const i in t)t[i]!==void 0&&(n[i]=t[i]);return n}function VJe(e,t,n){const i=gB(mB,n);for(const r of e.values())if(r.parentId)yB(r,e,t,i);else{const s=aE(r,i.nodeOrigin),a=Ab(r.extent)?r.extent:i.nodeExtent,l=Tb(s,a,$h(r));r.internals.positionAbsolute=l}}function HJe(e,t){if(!e.handles)return e.measured?t==null?void 0:t.internals.handleBounds:void 0;const n=[],i=[];for(const r of e.handles){const s={id:r.id,width:r.width??1,height:r.height??1,nodeId:e.id,x:r.x,y:r.y,position:r.position,type:r.type};r.type==="source"?n.push(s):r.type==="target"&&i.push(s)}return{source:n,target:i}}function bB(e){return e==="manual"}function m6(e,t,n,i={}){var d,f;const r=gB(zJe,i),s={i:0},a=new Map(t),l=r!=null&&r.elevateNodesOnSelect&&!bB(r.zIndexMode)?rwe:0;let c=e.length>0,u=!1;t.clear(),n.clear();for(const h of e){let m=a.get(h.id);if(r.checkEquality&&h===(m==null?void 0:m.internals.userNode))t.set(h.id,m);else{const g=aE(h,r.nodeOrigin),b=Ab(h.extent)?h.extent:r.nodeExtent,v=Tb(g,b,$h(h));m={...r.defaults,...h,measured:{width:(d=h.measured)==null?void 0:d.width,height:(f=h.measured)==null?void 0:f.height},internals:{positionAbsolute:v,handleBounds:HJe(h,m),z:swe(h,l,r.zIndexMode),userNode:h}},t.set(h.id,m)}(m.measured===void 0||m.measured.width===void 0||m.measured.height===void 0)&&!m.hidden&&(c=!1),h.parentId&&yB(m,t,n,i,s),u||(u=h.selected??!1)}return{nodesInitialized:c,hasSelectedNodes:u}}function qJe(e,t){if(!e.parentId)return;const n=t.get(e.parentId);n?n.set(e.id,e):t.set(e.parentId,new Map([[e.id,e]]))}function yB(e,t,n,i,r){const{elevateNodesOnSelect:s,nodeOrigin:a,nodeExtent:l,zIndexMode:c}=gB(mB,i),u=e.parentId,d=t.get(u);if(!d){console.warn(`Parent node ${u} not found. Please make sure that parent nodes are in front of their child nodes in the nodes array.`);return}qJe(e,n),r&&!d.parentId&&d.internals.rootParentIndex===void 0&&c==="auto"&&(d.internals.rootParentIndex=++r.i,d.internals.z=d.internals.z+r.i*QJe),r&&d.internals.rootParentIndex!==void 0&&(r.i=d.internals.rootParentIndex);const f=s&&!bB(c)?rwe:0,{x:h,y:m,z:g}=WJe(e,d,a,l,f,c),{positionAbsolute:b}=e.internals,v=h!==b.x||m!==b.y;(v||g!==e.internals.z)&&t.set(e.id,{...e,internals:{...e.internals,positionAbsolute:v?{x:h,y:m}:b,z:g}})}function swe(e,t,n){const i=_u(e.zIndex)?e.zIndex:0;return bB(n)?i:i+(e.selected?t:0)}function WJe(e,t,n,i,r,s){const{x:a,y:l}=t.internals.positionAbsolute,c=$h(e),u=aE(e,n),d=Ab(e.extent)?Tb(u,e.extent,c):u;let f=Tb({x:a+d.x,y:l+d.y},i,c);e.extent==="parent"&&(f=W1e(f,c,t));const h=swe(e,r,s),m=t.internals.z??0;return{x:f.x,y:f.y,z:m>=h?m+1:h}}function vB(e,t,n,i=[0,0]){var a;const r=[],s=new Map;for(const l of e){const c=t.get(l.parentId);if(!c)continue;const u=((a=s.get(l.parentId))==null?void 0:a.expandedRect)??Yv(c),d=K1e(u,l.rect);s.set(l.parentId,{expandedRect:d,parent:c})}return s.size>0&&s.forEach(({expandedRect:l,parent:c},u)=>{var O;const d=c.internals.positionAbsolute,f=$h(c),h=c.origin??i,m=l.x0||g>0||y||x)&&(r.push({id:u,type:"position",position:{x:c.position.x-m+y,y:c.position.y-g+x}}),(O=n.get(u))==null||O.forEach(w=>{e.some(k=>k.id===w.id)||r.push({id:w.id,type:"position",position:{x:w.position.x+m,y:w.position.y+g}})})),(f.width0){const m=vB(h,t,n,r);u.push(...m)}return{changes:u,updatedInternals:c}}async function GJe({delta:e,panZoom:t,transform:n,translateExtent:i,width:r,height:s}){if(!t||!e.x&&!e.y)return!1;const a=await t.setViewportConstrained({x:n[0]+e.x,y:n[1]+e.y,zoom:n[2]},[[0,0],[r,s]],i);return!!a&&(a.x!==n[0]||a.y!==n[1]||a.k!==n[2])}function eG(e,t,n,i,r,s){let a=r;const l=i.get(a)||new Map;i.set(a,l.set(n,t)),a=`${r}-${e}`;const c=i.get(a)||new Map;if(i.set(a,c.set(n,t)),s){a=`${r}-${e}-${s}`;const u=i.get(a)||new Map;i.set(a,u.set(n,t))}}function awe(e,t,n){e.clear(),t.clear();for(const i of n){const{source:r,target:s,sourceHandle:a=null,targetHandle:l=null}=i,c={edgeId:i.id,source:r,target:s,sourceHandle:a,targetHandle:l},u=`${r}-${a}--${s}-${l}`,d=`${s}-${l}--${r}-${a}`;eG("source",c,d,e,r,a),eG("target",c,u,e,s,l),t.set(i.id,i)}}function owe(e,t){if(!e.parentId)return!1;const n=t.get(e.parentId);return n?n.selected?!0:owe(n,t):!1}function tG(e,t,n){var r;let i=e;do{if((r=i==null?void 0:i.matches)!=null&&r.call(i,t))return!0;if(i===n)return!1;i=i==null?void 0:i.parentElement}while(i);return!1}function XJe(e,t,n,i){const r=new Map;for(const[s,a]of e)if((a.selected||a.id===i)&&(!a.parentId||!owe(a,e))&&(a.draggable||t&&typeof a.draggable>"u")){const l=e.get(s);l&&r.set(s,{id:s,position:l.position||{x:0,y:0},distance:{x:n.x-l.internals.positionAbsolute.x,y:n.y-l.internals.positionAbsolute.y},extent:l.extent,parentId:l.parentId,origin:l.origin,expandParent:l.expandParent,internals:{positionAbsolute:l.internals.positionAbsolute||{x:0,y:0}},measured:{width:l.measured.width??0,height:l.measured.height??0}})}return r}function lM({nodeId:e,dragItems:t,nodeLookup:n,dragging:i=!0}){var a,l,c;const r=[];for(const[u,d]of t){const f=(a=n.get(u))==null?void 0:a.internals.userNode;f&&r.push({...f,position:d.position,dragging:i})}if(!e)return[r[0],r];const s=(l=n.get(e))==null?void 0:l.internals.userNode;return[s?{...s,position:((c=t.get(e))==null?void 0:c.position)||s.position,dragging:i}:r[0],r]}function YJe({dragItems:e,snapGrid:t,x:n,y:i}){const r=e.values().next().value;if(!r)return null;const s={x:n-r.distance.x,y:i-r.distance.y},a=lE(s,t);return{x:a.x-s.x,y:a.y-s.y}}function ZJe({onNodeMouseDown:e,getStoreItems:t,onDragStart:n,onDrag:i,onDragStop:r}){let s={x:null,y:null},a=0,l=new Map,c=!1,u={x:0,y:0},d=null,f=!1,h=null,m=!1,g=!1,b=null;function v({noDragClassName:x,handleSelector:O,domNode:w,isSelectable:k,nodeId:S,nodeClickDistance:E=0}){h=Zl(w);function C({x:A,y:L}){const{nodeLookup:_,nodeExtent:P,snapGrid:I,snapToGrid:$,nodeOrigin:M,onNodeDrag:B,onSelectionDrag:R,onError:V,updateNodePositions:K}=t();s={x:A,y:L};let Q=!1;const q=l.size>1,U=q&&P?h6(oE(l)):null,G=q&&$?YJe({dragItems:l,snapGrid:I,x:A,y:L}):null;for(const[ae,re]of l){if(!_.has(ae))continue;let se={x:A-re.distance.x,y:L-re.distance.y};$&&(se=G?{x:Math.round(se.x+G.x),y:Math.round(se.y+G.y)}:lE(se,I));let me=null;if(q&&P&&!re.extent&&U){const{positionAbsolute:J}=re.internals,oe=J.x-U.x+P[0][0],Ee=J.x+re.measured.width-U.x2+P[1][0],he=J.y-U.y+P[0][1],Me=J.y+re.measured.height-U.y2+P[1][1];me=[[oe,he],[Ee,Me]]}const{position:Z,positionAbsolute:X}=q1e({nodeId:ae,nextPosition:se,nodeLookup:_,nodeExtent:me||P,nodeOrigin:M,onError:V});Q=Q||re.position.x!==Z.x||re.position.y!==Z.y,re.position=Z,re.internals.positionAbsolute=X}if(g=g||Q,!!Q&&(K(l,!0),b&&(i||B||!S&&R))){const[ae,re]=lM({nodeId:S,dragItems:l,nodeLookup:_});i==null||i(b,l,ae,re),B==null||B(b,ae,re),S||R==null||R(b,re)}}async function N(){if(!d)return;const{transform:A,panBy:L,autoPanSpeed:_,autoPanOnNodeDrag:P}=t();if(!P){c=!1,cancelAnimationFrame(a);return}const[I,$]=dB(u,d,_);(I!==0||$!==0)&&(s.x=(s.x??0)-I/A[2],s.y=(s.y??0)-$/A[2],await L({x:I,y:$})&&C(s)),a=requestAnimationFrame(N)}function T(A){var q;const{nodeLookup:L,multiSelectionActive:_,nodesDraggable:P,transform:I,snapGrid:$,snapToGrid:M,selectNodesOnDrag:B,onNodeDragStart:R,onSelectionDragStart:V,unselectNodesAndEdges:K}=t();f=!0,(!B||!k)&&!_&&S&&((q=L.get(S))!=null&&q.selected||K()),k&&B&&S&&(e==null||e(S));const Q=TO(A.sourceEvent,{transform:I,snapGrid:$,snapToGrid:M,containerBounds:d});if(s=Q,l=XJe(L,P,Q,S),l.size>0&&(n||R||!S&&V)){const[U,G]=lM({nodeId:S,dragItems:l,nodeLookup:L});n==null||n(A.sourceEvent,l,U,G),R==null||R(A.sourceEvent,U,G),S||V==null||V(A.sourceEvent,G)}}const j=k1e().clickDistance(E).on("start",A=>{const{domNode:L,nodeDragThreshold:_,transform:P,snapGrid:I,snapToGrid:$}=t();d=(L==null?void 0:L.getBoundingClientRect())||null,m=!1,g=!1,b=A.sourceEvent,_===0&&T(A),s=TO(A.sourceEvent,{transform:P,snapGrid:I,snapToGrid:$,containerBounds:d}),u=Nu(A.sourceEvent,d)}).on("drag",A=>{const{autoPanOnNodeDrag:L,transform:_,snapGrid:P,snapToGrid:I,nodeDragThreshold:$,nodeLookup:M}=t(),B=TO(A.sourceEvent,{transform:_,snapGrid:P,snapToGrid:I,containerBounds:d});if(b=A.sourceEvent,(A.sourceEvent.type==="touchmove"&&A.sourceEvent.touches.length>1||S&&!M.has(S))&&(m=!0),!m){if(!c&&L&&f&&(c=!0,N()),!f){const R=Nu(A.sourceEvent,d),V=R.x-u.x,K=R.y-u.y;Math.sqrt(V*V+K*K)>$&&T(A)}(s.x!==B.xSnapped||s.y!==B.ySnapped)&&l&&f&&(u=Nu(A.sourceEvent,d),C(B))}}).on("end",A=>{if(!f||m){m&&l.size>0&&t().updateNodePositions(l,!1);return}if(c=!1,f=!1,cancelAnimationFrame(a),l.size>0){const{nodeLookup:L,updateNodePositions:_,onNodeDragStop:P,onSelectionDragStop:I}=t();if(g&&(_(l,!1),g=!1),r||P||!S&&I){const[$,M]=lM({nodeId:S,dragItems:l,nodeLookup:L,dragging:!1});r==null||r(A.sourceEvent,l,$,M),P==null||P(A.sourceEvent,$,M),S||I==null||I(A.sourceEvent,M)}}}).filter(A=>{const L=A.target;return!A.button&&(!x||!tG(L,`.${x}`,w))&&(!O||tG(L,O,w))});h.call(j)}function y(){h==null||h.on(".drag",null)}return{update:v,destroy:y}}function JJe(e,t,n){const i=[],r={x:e.x-n,y:e.y-n,width:n*2,height:n*2};for(const s of t.values())LS(r,Yv(s))>0&&i.push(s);return i}const eet=250;function tet(e,t,n,i){var l,c;let r=[],s=1/0;const a=JJe(e,n,t+eet);for(const u of a){const d=[...((l=u.internals.handleBounds)==null?void 0:l.source)??[],...((c=u.internals.handleBounds)==null?void 0:c.target)??[]];for(const f of d){if(i.nodeId===f.nodeId&&i.type===f.type&&i.id===f.id)continue;const{x:h,y:m}=_b(u,f,f.position,!0),g=Math.sqrt(Math.pow(h-e.x,2)+Math.pow(m-e.y,2));g>t||(g1){const u=i.type==="source"?"target":"source";return r.find(d=>d.type===u)??r[0]}return r[0]}function lwe(e,t,n,i,r,s=!1){var u,d,f;const a=i.get(e);if(!a)return null;const l=r==="strict"?(u=a.internals.handleBounds)==null?void 0:u[t]:[...((d=a.internals.handleBounds)==null?void 0:d.source)??[],...((f=a.internals.handleBounds)==null?void 0:f.target)??[]],c=(n?l==null?void 0:l.find(h=>h.id===n):l==null?void 0:l[0])??null;return c&&s?{...c,..._b(a,c,c.position,!0)}:c}function cwe(e,t){return e||(t!=null&&t.classList.contains("target")?"target":t!=null&&t.classList.contains("source")?"source":null)}function net(e,t){let n=null;return t?n=!0:e&&!t&&(n=!1),n}const uwe=()=>!0;function iet(e,{connectionMode:t,connectionRadius:n,handleId:i,nodeId:r,edgeUpdaterType:s,isTarget:a,domNode:l,nodeLookup:c,lib:u,autoPanOnConnect:d,flowId:f,panBy:h,cancelConnection:m,onConnectStart:g,onConnect:b,onConnectEnd:v,isValidConnection:y=uwe,onReconnectEnd:x,updateConnection:O,getTransform:w,getFromHandle:k,autoPanSpeed:S,dragThreshold:E=1,handleDomNode:C}){const N=Y1e(e.target);let T=0,j;const{x:A,y:L}=Nu(e),_=cwe(s,C),P=l==null?void 0:l.getBoundingClientRect();let I=!1;if(!P||!_)return;const $=lwe(r,_,i,c,t);if(!$)return;let M=Nu(e,P),B=!1,R=null,V=!1,K=null;function Q(){if(!d||!P)return;const[Z,X]=dB(M,P,S);h({x:Z,y:X}),T=requestAnimationFrame(Q)}const q={...$,nodeId:r,type:_,position:$.position},U=c.get(r);let ae={inProgress:!0,isValid:null,from:_b(U,q,an.Left,!0),fromHandle:q,fromPosition:q.position,fromNode:U,to:M,toHandle:null,toPosition:zK[q.position],toNode:null,pointer:M};function re(){I=!0,O(ae),g==null||g(e,{nodeId:r,handleId:i,handleType:_})}E===0&&re();function se(Z){if(!I){const{x:Me,y:De}=Nu(Z),_e=Me-A,Re=De-L;if(!(_e*_e+Re*Re>E*E))return;re()}if(!k()||!q){me(Z);return}const X=w();M=Nu(Z,P),j=tet(zx(M,X,!1,[1,1]),n,c,q),B||(Q(),B=!0);const J=dwe(Z,{handle:j,connectionMode:t,fromNodeId:r,fromHandleId:i,fromType:a?"target":"source",isValidConnection:y,doc:N,lib:u,flowId:f,nodeLookup:c});K=J.handleDomNode,R=J.connection,V=net(!!j,J.isValid);const oe=c.get(r),Ee=oe?_b(oe,q,an.Left,!0):ae.from,he={...ae,from:Ee,isValid:V,to:J.toHandle&&V?Zv({x:J.toHandle.x,y:J.toHandle.y},X):M,toHandle:J.toHandle,toPosition:V&&J.toHandle?J.toHandle.position:zK[q.position],toNode:J.toHandle?c.get(J.toHandle.nodeId):null,pointer:M};O(he),ae=he}function me(Z){if(!("touches"in Z&&Z.touches.length>0)){if(I){(j||K)&&R&&V&&(b==null||b(R));const{inProgress:X,...J}=ae,oe={...J,toPosition:ae.toHandle?ae.toPosition:null};v==null||v(Z,oe),s&&(x==null||x(Z,oe))}m(),cancelAnimationFrame(T),B=!1,V=!1,R=null,K=null,N.removeEventListener("mousemove",se),N.removeEventListener("mouseup",me),N.removeEventListener("touchmove",se),N.removeEventListener("touchend",me)}}N.addEventListener("mousemove",se),N.addEventListener("mouseup",me),N.addEventListener("touchmove",se),N.addEventListener("touchend",me)}function dwe(e,{handle:t,connectionMode:n,fromNodeId:i,fromHandleId:r,fromType:s,doc:a,lib:l,flowId:c,isValidConnection:u=uwe,nodeLookup:d}){const f=s==="target",h=t?a.querySelector(`.${l}-flow__handle[data-id="${c}-${t==null?void 0:t.nodeId}-${t==null?void 0:t.id}-${t==null?void 0:t.type}"]`):null,{x:m,y:g}=Nu(e),b=a.elementFromPoint(m,g),v=b!=null&&b.classList.contains(`${l}-flow__handle`)?b:h,y={handleDomNode:v,isValid:!1,connection:null,toHandle:null};if(v){const x=cwe(void 0,v),O=v.getAttribute("data-nodeid"),w=v.getAttribute("data-handleid"),k=v.classList.contains("connectable"),S=v.classList.contains("connectableend");if(!O||!x)return y;const E={source:f?O:i,sourceHandle:f?w:r,target:f?i:O,targetHandle:f?r:w};y.connection=E;const N=k&&S&&(n===Gv.Strict?f&&x==="source"||!f&&x==="target":O!==i||w!==r);y.isValid=N&&u(E),y.toHandle=lwe(O,x,w,d,n,!0)}return y}const g6={onPointerDown:iet,isValid:dwe};function ret({domNode:e,panZoom:t,getTransform:n,getViewScale:i}){const r=Zl(e);function s({translateExtent:l,width:c,height:u,zoomStep:d=1,pannable:f=!0,zoomable:h=!0,inversePan:m=!1}){const g=O=>{if(O.sourceEvent.type!=="wheel"||!t)return;const w=n(),k=O.sourceEvent.ctrlKey&&$S()?10:1,S=-O.sourceEvent.deltaY*(O.sourceEvent.deltaMode===1?.05:O.sourceEvent.deltaMode?1:.002)*d,E=w[2]*Math.pow(2,S*k);t.scaleTo(E)};let b=[0,0];const v=O=>{(O.sourceEvent.type==="mousedown"||O.sourceEvent.type==="touchstart")&&(b=[O.sourceEvent.clientX??O.sourceEvent.touches[0].clientX,O.sourceEvent.clientY??O.sourceEvent.touches[0].clientY])},y=O=>{const w=n();if(O.sourceEvent.type!=="mousemove"&&O.sourceEvent.type!=="touchmove"||!t)return;const k=[O.sourceEvent.clientX??O.sourceEvent.touches[0].clientX,O.sourceEvent.clientY??O.sourceEvent.touches[0].clientY],S=[k[0]-b[0],k[1]-b[1]];b=k;const E=i()*Math.max(w[2],Math.log(w[2]))*(m?-1:1),C={x:w[0]-S[0]*E,y:w[1]-S[1]*E},N=[[0,0],[c,u]];t.setViewportConstrained({x:C.x,y:C.y,zoom:w[2]},N,l)},x=B1e().on("start",v).on("zoom",f?y:null).on("zoom.wheel",h?g:null);r.call(x,{})}function a(){r.on("zoom",null)}return{update:s,destroy:a,pointer:Su}}const BR=e=>({x:e.x,y:e.y,zoom:e.k}),cM=({x:e,y:t,zoom:n})=>LR.translate(e,t).scale(n),Iy=(e,t)=>e.target.closest(`.${t}`),fwe=(e,t)=>t===2&&Array.isArray(e)&&e.includes(2),set=e=>((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2,uM=(e,t=0,n=set,i=()=>{})=>{const r=typeof t=="number"&&t>0;return r||i(),r?e.transition().duration(t).ease(n).on("end",i):e},hwe=e=>{const t=e.ctrlKey&&$S()?10:1;return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*t};function aet({zoomPanValues:e,noWheelClassName:t,d3Selection:n,d3Zoom:i,panOnScrollMode:r,panOnScrollSpeed:s,zoomOnPinch:a,onPanZoomStart:l,onPanZoom:c,onPanZoomEnd:u}){return d=>{if(Iy(d,t))return d.ctrlKey&&d.preventDefault(),!1;d.preventDefault(),d.stopImmediatePropagation();const f=n.property("__zoom").k||1;if(d.ctrlKey&&a){const v=Su(d),y=hwe(d),x=f*Math.pow(2,y);i.scaleTo(n,x,v,d);return}const h=d.deltaMode===1?20:1;let m=r===cb.Vertical?0:d.deltaX*h,g=r===cb.Horizontal?0:d.deltaY*h;!$S()&&d.shiftKey&&r!==cb.Vertical&&(m=d.deltaY*h,g=0),i.translateBy(n,-(m/f)*s,-(g/f)*s,{internal:!0});const b=BR(n.property("__zoom"));clearTimeout(e.panScrollTimeout),e.isPanScrolling?(c==null||c(d,b),e.panScrollTimeout=setTimeout(()=>{u==null||u(d,b),e.isPanScrolling=!1},150)):(e.isPanScrolling=!0,l==null||l(d,b))}}function oet({noWheelClassName:e,preventScrolling:t,d3ZoomHandler:n}){return function(i,r){const s=i.type==="wheel",a=!t&&s&&!i.ctrlKey,l=Iy(i,e);if(i.ctrlKey&&s&&l&&i.preventDefault(),a||l)return null;i.preventDefault(),n.call(this,i,r)}}function cet({zoomPanValues:e,onDraggingChange:t,onPanZoomStart:n}){return i=>{var s,a,l;if((s=i.sourceEvent)!=null&&s.internal)return;const r=BR(i.transform);e.mouseButton=((a=i.sourceEvent)==null?void 0:a.button)||0,e.isZoomingOrPanning=!0,e.prevViewport=r,((l=i.sourceEvent)==null?void 0:l.type)==="mousedown"&&t(!0),n&&(n==null||n(i.sourceEvent,r))}}function uet({zoomPanValues:e,panOnDrag:t,onPaneContextMenu:n,onTransformChange:i,onPanZoom:r}){return s=>{var a,l;e.usedRightMouseButton=!!(n&&fwe(t,e.mouseButton??0)),(a=s.sourceEvent)!=null&&a.sync||i([s.transform.x,s.transform.y,s.transform.k]),r&&!((l=s.sourceEvent)!=null&&l.internal)&&(r==null||r(s.sourceEvent,BR(s.transform)))}}function det({zoomPanValues:e,panOnDrag:t,panOnScroll:n,onDraggingChange:i,onPanZoomEnd:r,onPaneContextMenu:s}){return a=>{var l;if(!((l=a.sourceEvent)!=null&&l.internal)&&(e.isZoomingOrPanning=!1,s&&fwe(t,e.mouseButton??0)&&!e.usedRightMouseButton&&a.sourceEvent&&s(a.sourceEvent),e.usedRightMouseButton=!1,i(!1),r)){const c=BR(a.transform);e.prevViewport=c,clearTimeout(e.timerId),e.timerId=setTimeout(()=>{r==null||r(a.sourceEvent,c)},n?150:0)}}}function fet({zoomActivationKeyPressed:e,zoomOnScroll:t,zoomOnPinch:n,panOnDrag:i,panOnScroll:r,zoomOnDoubleClick:s,userSelectionActive:a,noWheelClassName:l,noPanClassName:c,lib:u,connectionInProgress:d}){return f=>{var v;const h=e||t,m=n&&f.ctrlKey,g=f.type==="wheel";if(f.button===1&&f.type==="mousedown"&&(Iy(f,`${u}-flow__node`)||Iy(f,`${u}-flow__edge`)))return!0;if(!i&&!h&&!r&&!s&&!n||a||d&&!g||Iy(f,l)&&g||Iy(f,c)&&(!g||r&&g&&!e)||!n&&f.ctrlKey&&g)return!1;if(!n&&f.type==="touchstart"&&((v=f.touches)==null?void 0:v.length)>1)return f.preventDefault(),!1;if(!h&&!r&&!m&&g||!i&&(f.type==="mousedown"||f.type==="touchstart")||Array.isArray(i)&&!i.includes(f.button)&&f.type==="mousedown")return!1;const b=Array.isArray(i)&&i.includes(f.button)||!f.button||f.button<=1;return(!f.ctrlKey||g)&&b}}function het({domNode:e,minZoom:t,maxZoom:n,translateExtent:i,viewport:r,onPanZoom:s,onPanZoomStart:a,onPanZoomEnd:l,onDraggingChange:c}){const u={isZoomingOrPanning:!1,usedRightMouseButton:!1,prevViewport:{},mouseButton:0,timerId:void 0,panScrollTimeout:void 0,isPanScrolling:!1},d=e.getBoundingClientRect(),f=B1e().scaleExtent([t,n]).translateExtent(i),h=Zl(e).call(f);x({x:r.x,y:r.y,zoom:Xv(r.zoom,t,n)},[[0,0],[d.width,d.height]],i);const m=h.on("wheel.zoom"),g=h.on("dblclick.zoom");f.wheelDelta(hwe);async function b(j,A){return h?new Promise(L=>{f==null||f.interpolate((A==null?void 0:A.interpolate)==="linear"?CO:m2).transform(uM(h,A==null?void 0:A.duration,A==null?void 0:A.ease,()=>L(!0)),j)}):!1}function v({noWheelClassName:j,noPanClassName:A,onPaneContextMenu:L,userSelectionActive:_,panOnScroll:P,panOnDrag:I,panOnScrollMode:$,panOnScrollSpeed:M,preventScrolling:B,zoomOnPinch:R,zoomOnScroll:V,zoomOnDoubleClick:K,zoomActivationKeyPressed:Q,lib:q,onTransformChange:U,connectionInProgress:G,paneClickDistance:ae,selectionOnDrag:re}){_&&!u.isZoomingOrPanning&&y();const se=P&&!Q&&!_;f.clickDistance(re?1/0:!_u(ae)||ae<0?0:ae);const me=se?aet({zoomPanValues:u,noWheelClassName:j,d3Selection:h,d3Zoom:f,panOnScrollMode:$,panOnScrollSpeed:M,zoomOnPinch:R,onPanZoomStart:a,onPanZoom:s,onPanZoomEnd:l}):oet({noWheelClassName:j,preventScrolling:B,d3ZoomHandler:m});h.on("wheel.zoom",me,{passive:!1});const Z=cet({zoomPanValues:u,onDraggingChange:c,onPanZoomStart:a});f.on("start",Z);const X=uet({zoomPanValues:u,panOnDrag:I,onPaneContextMenu:!!L,onPanZoom:s,onTransformChange:U});f.on("zoom",X);const J=det({zoomPanValues:u,panOnDrag:I,panOnScroll:P,onPaneContextMenu:L,onPanZoomEnd:l,onDraggingChange:c});f.on("end",J);const oe=fet({zoomActivationKeyPressed:Q,panOnDrag:I,zoomOnScroll:V,panOnScroll:P,zoomOnDoubleClick:K,zoomOnPinch:R,userSelectionActive:_,noPanClassName:A,noWheelClassName:j,lib:q,connectionInProgress:G});f.filter(oe),K?h.on("dblclick.zoom",g):h.on("dblclick.zoom",null)}function y(){f.on("zoom",null)}async function x(j,A,L){const _=cM(j),P=f==null?void 0:f.constrain()(_,A,L);return P&&await b(P),P}async function O(j,A){const L=cM(j);return await b(L,A),L}function w(j){if(h){const A=cM(j),L=h.property("__zoom");(L.k!==j.zoom||L.x!==j.x||L.y!==j.y)&&(f==null||f.transform(h,A,null,{sync:!0}))}}function k(){const j=h?F1e(h.node()):{x:0,y:0,k:1};return{x:j.x,y:j.y,zoom:j.k}}async function S(j,A){return h?new Promise(L=>{f==null||f.interpolate((A==null?void 0:A.interpolate)==="linear"?CO:m2).scaleTo(uM(h,A==null?void 0:A.duration,A==null?void 0:A.ease,()=>L(!0)),j)}):!1}async function E(j,A){return h?new Promise(L=>{f==null||f.interpolate((A==null?void 0:A.interpolate)==="linear"?CO:m2).scaleBy(uM(h,A==null?void 0:A.duration,A==null?void 0:A.ease,()=>L(!0)),j)}):!1}function C(j){f==null||f.scaleExtent(j)}function N(j){f==null||f.translateExtent(j)}function T(j){const A=!_u(j)||j<0?0:j;f==null||f.clickDistance(A)}return{update:v,destroy:y,setViewport:O,setViewportConstrained:x,getViewport:k,scaleTo:S,scaleBy:E,setScaleExtent:C,setTranslateExtent:N,syncViewport:w,setClickDistance:T}}var Jv;(function(e){e.Line="line",e.Handle="handle"})(Jv||(Jv={}));function pet({width:e,prevWidth:t,height:n,prevHeight:i,affectsX:r,affectsY:s}){const a=e-t,l=n-i,c=[a>0?1:a<0?-1:0,l>0?1:l<0?-1:0];return a&&r&&(c[0]=c[0]*-1),l&&s&&(c[1]=c[1]*-1),c}function nG(e){const t=e.includes("right")||e.includes("left"),n=e.includes("bottom")||e.includes("top"),i=e.includes("left"),r=e.includes("top");return{isHorizontal:t,isVertical:n,affectsX:i,affectsY:r}}function fp(e,t){return Math.max(0,t-e)}function hp(e,t){return Math.max(0,e-t)}function xT(e,t,n){return Math.max(0,t-e,e-n)}function iG(e,t){return e?!t:t}function met(e,t,n,i,r,s,a,l){let{affectsX:c,affectsY:u}=t;const{isHorizontal:d,isVertical:f}=t,h=d&&f,{xSnapped:m,ySnapped:g}=n,{minWidth:b,maxWidth:v,minHeight:y,maxHeight:x}=i,{x:O,y:w,width:k,height:S,aspectRatio:E}=e;let C=Math.floor(d?m-e.pointerX:0),N=Math.floor(f?g-e.pointerY:0);const T=k+(c?-C:C),j=S+(u?-N:N),A=-s[0]*k,L=-s[1]*S;let _=xT(T,b,v),P=xT(j,y,x);if(a){let M=0,B=0;c&&C<0?M=fp(O+C+A,a[0][0]):!c&&C>0&&(M=hp(O+T+A,a[1][0])),u&&N<0?B=fp(w+N+L,a[0][1]):!u&&N>0&&(B=hp(w+j+L,a[1][1])),_=Math.max(_,M),P=Math.max(P,B)}if(l){let M=0,B=0;c&&C>0?M=hp(O+C,l[0][0]):!c&&C<0&&(M=fp(O+T,l[1][0])),u&&N>0?B=hp(w+N,l[0][1]):!u&&N<0&&(B=fp(w+j,l[1][1])),_=Math.max(_,M),P=Math.max(P,B)}if(r){if(d){const M=xT(T/E,y,x)*E;if(_=Math.max(_,M),a){let B=0;!c&&!u||c&&!u&&h?B=hp(w+L+T/E,a[1][1])*E:B=fp(w+L+(c?C:-C)/E,a[0][1])*E,_=Math.max(_,B)}if(l){let B=0;!c&&!u||c&&!u&&h?B=fp(w+T/E,l[1][1])*E:B=hp(w+(c?C:-C)/E,l[0][1])*E,_=Math.max(_,B)}}if(f){const M=xT(j*E,b,v)/E;if(P=Math.max(P,M),a){let B=0;!c&&!u||u&&!c&&h?B=hp(O+j*E+A,a[1][0])/E:B=fp(O+(u?N:-N)*E+A,a[0][0])/E,P=Math.max(P,B)}if(l){let B=0;!c&&!u||u&&!c&&h?B=fp(O+j*E,l[1][0])/E:B=hp(O+(u?N:-N)*E,l[0][0])/E,P=Math.max(P,B)}}}N=N+(N<0?P:-P),C=C+(C<0?_:-_),r&&(h?T>j*E?N=(iG(c,u)?-C:C)/E:C=(iG(c,u)?-N:N)*E:d?(N=C/E,u=c):(C=N*E,c=u));const I=c?O+C:O,$=u?w+N:w;return{width:k+(c?-C:C),height:S+(u?-N:N),x:s[0]*C*(c?-1:1)+I,y:s[1]*N*(u?-1:1)+$}}const pwe={width:0,height:0,x:0,y:0},get={...pwe,pointerX:0,pointerY:0,aspectRatio:1};function bet(e,t,n){const i=t.position.x+e.position.x,r=t.position.y+e.position.y,s=e.measured.width??0,a=e.measured.height??0,l=n[0]*s,c=n[1]*a;return[[i-l,r-c],[i+s-l,r+a-c]]}function yet({domNode:e,nodeId:t,getStoreItems:n,onChange:i,onEnd:r}){const s=Zl(e);let a={controlDirection:nG("bottom-right"),boundaries:{minWidth:0,minHeight:0,maxWidth:Number.MAX_VALUE,maxHeight:Number.MAX_VALUE},resizeDirection:void 0,keepAspectRatio:!1};function l({controlPosition:u,boundaries:d,keepAspectRatio:f,resizeDirection:h,onResizeStart:m,onResize:g,onResizeEnd:b,shouldResize:v}){let y={...pwe},x={...get};a={boundaries:d,resizeDirection:h,keepAspectRatio:f,controlDirection:nG(u)};let O,w=null,k=[],S,E,C,N=!1;const T=k1e().on("start",j=>{const{nodeLookup:A,transform:L,snapGrid:_,snapToGrid:P,nodeOrigin:I,paneDomNode:$}=n();if(O=A.get(t),!O)return;w=($==null?void 0:$.getBoundingClientRect())??null;const{xSnapped:M,ySnapped:B}=TO(j.sourceEvent,{transform:L,snapGrid:_,snapToGrid:P,containerBounds:w});y={width:O.measured.width??0,height:O.measured.height??0,x:O.position.x??0,y:O.position.y??0},x={...y,pointerX:M,pointerY:B,aspectRatio:y.width/y.height},S=void 0,E=Ab(O.extent)?O.extent:void 0,O.parentId&&(O.extent==="parent"||O.expandParent)&&(S=A.get(O.parentId)),S&&O.extent==="parent"&&(E=[[0,0],[S.measured.width,S.measured.height]]),k=[],C=void 0;for(const[R,V]of A)if(V.parentId===t&&(k.push({id:R,position:{...V.position},extent:V.extent}),V.extent==="parent"||V.expandParent)){const K=bet(V,O,V.origin??I);C?C=[[Math.min(K[0][0],C[0][0]),Math.min(K[0][1],C[0][1])],[Math.max(K[1][0],C[1][0]),Math.max(K[1][1],C[1][1])]]:C=K}m==null||m(j,{...y})}).on("drag",j=>{const{transform:A,snapGrid:L,snapToGrid:_,nodeOrigin:P}=n(),I=TO(j.sourceEvent,{transform:A,snapGrid:L,snapToGrid:_,containerBounds:w}),$=[];if(!O)return;const{x:M,y:B,width:R,height:V}=y,K={},Q=O.origin??P,{width:q,height:U,x:G,y:ae}=met(x,a.controlDirection,I,a.boundaries,a.keepAspectRatio,Q,E,C),re=q!==R,se=U!==V,me=G!==M&&re,Z=ae!==B&&se;if(!me&&!Z&&!re&&!se)return;if((me||Z||Q[0]===1||Q[1]===1)&&(K.x=me?G:y.x,K.y=Z?ae:y.y,y.x=K.x,y.y=K.y,k.length>0)){const Ee=G-M,he=ae-B;for(const Me of k)Me.position={x:Me.position.x-Ee+Q[0]*(q-R),y:Me.position.y-he+Q[1]*(U-V)},$.push(Me)}if((re||se)&&(K.width=re&&(!a.resizeDirection||a.resizeDirection==="horizontal")?q:y.width,K.height=se&&(!a.resizeDirection||a.resizeDirection==="vertical")?U:y.height,y.width=K.width,y.height=K.height),S&&O.expandParent){const Ee=Q[0]*(K.width??0);K.x&&K.x{N&&(b==null||b(j,{...y}),r==null||r({...y}),N=!1)});s.call(T)}function c(){s.on(".drag",null)}return{update:l,destroy:c}}var mwe={exports:{}},gwe={};/** * @license React * use-sync-external-store-shim/with-selector.production.js * @@ -496,151 +496,151 @@ ${n}`}}async function*hBe({runtimeId:e,region:t,instanceName:n,sessionId:i,follo * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var DR=p,tet=zfe;function net(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var iet=typeof Object.is=="function"?Object.is:net,ret=tet.useSyncExternalStore,set=DR.useRef,aet=DR.useEffect,oet=DR.useMemo,cet=DR.useDebugValue;iwe.useSyncExternalStoreWithSelector=function(e,t,n,i,r){var s=set(null);if(s.current===null){var a={hasValue:!1,value:null};s.current=a}else a=s.current;s=oet(function(){function c(m){if(!u){if(u=!0,d=m,m=i(m),r!==void 0&&a.hasValue){var g=a.value;if(r(g,m))return f=g}return f=m}if(g=f,iet(d,m))return g;var b=i(m);return r!==void 0&&r(g,b)?(d=m,g):(d=m,f=b)}var u=!1,d,f,h=n===void 0?null:n;return[function(){return c(t())},h===null?void 0:function(){return c(h())}]},[t,n,i,r]);var l=ret(e,s[0],s[1]);return aet(function(){a.hasValue=!0,a.value=l},[l]),cet(l),l};nwe.exports=iwe;var uet=nwe.exports;const det=px(uet),fet={},KG=e=>{let t;const n=new Set,i=(d,f)=>{const h=typeof d=="function"?d(t):d;if(!Object.is(h,t)){const m=t;t=f??(typeof h!="object"||h===null)?h:Object.assign({},t,h),n.forEach(g=>g(t,m))}},r=()=>t,c={setState:i,getState:r,getInitialState:()=>u,subscribe:d=>(n.add(d),()=>n.delete(d)),destroy:()=>{(fet?"production":void 0)!=="production"&&console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),n.clear()}},u=t=e(i,r,c);return c},het=e=>e?KG(e):KG,{useDebugValue:pet}=ii,{useSyncExternalStoreWithSelector:met}=det,get=e=>e;function rwe(e,t=get,n){const i=met(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,n);return pet(i),i}const XG=(e,t)=>{const n=het(e),i=(r,s=t)=>rwe(n,r,s);return Object.assign(i,n),i},bet=(e,t)=>e?XG(e,t):XG;function rs(e,t){if(Object.is(e,t))return!0;if(typeof e!="object"||e===null||typeof t!="object"||t===null)return!1;if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(const[i,r]of e)if(!Object.is(r,t.get(i)))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(const i of e)if(!t.has(i))return!1;return!0}const n=Object.keys(e);if(n.length!==Object.keys(t).length)return!1;for(const i of n)if(!Object.prototype.hasOwnProperty.call(t,i)||!Object.is(e[i],t[i]))return!1;return!0}const MR=p.createContext(null),yet=MR.Provider,swe=Fu.error001("react");function _i(e,t){const n=p.useContext(MR);if(n===null)throw new Error(swe);return rwe(n,e,t)}function ss(){const e=p.useContext(MR);if(e===null)throw new Error(swe);return p.useMemo(()=>({getState:e.getState,setState:e.setState,subscribe:e.subscribe}),[e])}const YG={display:"none"},vet={position:"absolute",width:1,height:1,margin:-1,border:0,padding:0,overflow:"hidden",clip:"rect(0px, 0px, 0px, 0px)",clipPath:"inset(100%)"},awe="react-flow__node-desc",owe="react-flow__edge-desc",xet="react-flow__aria-live",wet=e=>e.ariaLiveMessage,Oet=e=>e.ariaLabelConfig;function ket({rfId:e}){const t=_i(wet);return o.jsx("div",{id:`${xet}-${e}`,"aria-live":"assertive","aria-atomic":"true",style:vet,children:t})}function Eet({rfId:e,disableKeyboardA11y:t}){const n=_i(Oet);return o.jsxs(o.Fragment,{children:[o.jsx("div",{id:`${awe}-${e}`,style:YG,children:t?n["node.a11yDescription.default"]:n["node.a11yDescription.keyboardDisabled"]}),o.jsx("div",{id:`${owe}-${e}`,style:YG,children:n["edge.a11yDescription.default"]}),!t&&o.jsx(ket,{rfId:e})]})}const LR=p.forwardRef(({position:e="top-left",children:t,className:n,style:i,...r},s)=>{const a=`${e}`.split("-");return o.jsx("div",{className:ta(["react-flow__panel",n,...a]),style:i,ref:s,...r,children:t})});LR.displayName="Panel";function Cet({proOptions:e,position:t="bottom-right"}){return e!=null&&e.hideAttribution?null:o.jsx(LR,{position:t,className:"react-flow__attribution","data-message":"Please only hide this attribution when you are subscribed to React Flow Pro: https://pro.reactflow.dev",children:o.jsx("a",{href:"https://reactflow.dev",target:"_blank",rel:"noopener noreferrer","aria-label":"React Flow attribution",children:"React Flow"})})}const Tet=e=>{const t=[],n=[];for(const[,i]of e.nodeLookup)i.selected&&t.push(i.internals.userNode);for(const[,i]of e.edgeLookup)i.selected&&n.push(i);return{selectedNodes:t,selectedEdges:n}},yT=e=>e.id;function Aet(e,t){return rs(e.selectedNodes.map(yT),t.selectedNodes.map(yT))&&rs(e.selectedEdges.map(yT),t.selectedEdges.map(yT))}function _et({onSelectionChange:e}){const t=ss(),{selectedNodes:n,selectedEdges:i}=_i(Tet,Aet);return p.useEffect(()=>{const r={nodes:n,edges:i};e==null||e(r),t.getState().onSelectionChangeHandlers.forEach(s=>s(r))},[n,i,e]),null}const Net=e=>!!e.onSelectionChangeHandlers;function jet({onSelectionChange:e}){const t=_i(Net);return e||t?o.jsx(_et,{onSelectionChange:e}):null}const lwe=[0,0],Ret={x:0,y:0,zoom:1},Iet=["nodes","edges","defaultNodes","defaultEdges","onConnect","onConnectStart","onConnectEnd","onClickConnectStart","onClickConnectEnd","nodesDraggable","autoPanOnNodeFocus","nodesConnectable","nodesFocusable","edgesFocusable","edgesReconnectable","elevateNodesOnSelect","elevateEdgesOnSelect","minZoom","maxZoom","nodeExtent","onNodesChange","onEdgesChange","elementsSelectable","connectionMode","snapGrid","snapToGrid","translateExtent","connectOnClick","defaultEdgeOptions","fitView","fitViewOptions","onNodesDelete","onEdgesDelete","onDelete","onNodeDrag","onNodeDragStart","onNodeDragStop","onSelectionDrag","onSelectionDragStart","onSelectionDragStop","onMoveStart","onMove","onMoveEnd","noPanClassName","nodeOrigin","autoPanOnConnect","autoPanOnNodeDrag","onError","connectionRadius","isValidConnection","selectNodesOnDrag","nodeDragThreshold","connectionDragThreshold","onBeforeDelete","debug","autoPanSpeed","ariaLabelConfig","zIndexMode"],ZG=[...Iet,"rfId"],Pet=e=>({setNodes:e.setNodes,setEdges:e.setEdges,setMinZoom:e.setMinZoom,setMaxZoom:e.setMaxZoom,setTranslateExtent:e.setTranslateExtent,setNodeExtent:e.setNodeExtent,reset:e.reset,setDefaultNodesAndEdges:e.setDefaultNodesAndEdges}),JG={translateExtent:NS,nodeOrigin:lwe,minZoom:.5,maxZoom:2,elementsSelectable:!0,noPanClassName:"nopan",rfId:"1"};function Det(e){const{setNodes:t,setEdges:n,setMinZoom:i,setMaxZoom:r,setTranslateExtent:s,setNodeExtent:a,reset:l,setDefaultNodesAndEdges:c}=_i(Pet,rs),u=ss();p.useEffect(()=>(c(e.defaultNodes,e.defaultEdges),()=>{d.current=JG,l()}),[]);const d=p.useRef(JG);return p.useEffect(()=>{for(const f of ZG){const h=e[f],m=d.current[f];h!==m&&(typeof e[f]>"u"||(f==="nodes"?t(h):f==="edges"?n(h):f==="minZoom"?i(h):f==="maxZoom"?r(h):f==="translateExtent"?s(h):f==="nodeExtent"?a(h):f==="ariaLabelConfig"?u.setState({ariaLabelConfig:hJe(h)}):f==="fitView"?u.setState({fitViewQueued:h}):f==="fitViewOptions"?u.setState({fitViewOptions:h}):u.setState({[f]:h})))}d.current=e},ZG.map(f=>e[f])),null}function eK(){return typeof window>"u"||!window.matchMedia?null:window.matchMedia("(prefers-color-scheme: dark)")}function Met(e){var i;const[t,n]=p.useState(e==="system"?null:e);return p.useEffect(()=>{if(e!=="system"){n(e);return}const r=eK(),s=()=>n(r!=null&&r.matches?"dark":"light");return s(),r==null||r.addEventListener("change",s),()=>{r==null||r.removeEventListener("change",s)}},[e]),t!==null?t:(i=eK())!=null&&i.matches?"dark":"light"}const tK=typeof document<"u"?document:null;function DS(e=null,t={target:tK,actInsideInputWithModifier:!0}){const[n,i]=p.useState(!1),r=p.useRef(!1),s=p.useRef(new Set([])),[a,l]=p.useMemo(()=>{if(e!==null){const u=(Array.isArray(e)?e:[e]).filter(f=>typeof f=="string").map(f=>f.replace("+",` + */var UR=p,vet=nhe;function xet(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var wet=typeof Object.is=="function"?Object.is:xet,Oet=vet.useSyncExternalStore,ket=UR.useRef,Eet=UR.useEffect,Cet=UR.useMemo,Tet=UR.useDebugValue;gwe.useSyncExternalStoreWithSelector=function(e,t,n,i,r){var s=ket(null);if(s.current===null){var a={hasValue:!1,value:null};s.current=a}else a=s.current;s=Cet(function(){function c(m){if(!u){if(u=!0,d=m,m=i(m),r!==void 0&&a.hasValue){var g=a.value;if(r(g,m))return f=g}return f=m}if(g=f,wet(d,m))return g;var b=i(m);return r!==void 0&&r(g,b)?(d=m,g):(d=m,f=b)}var u=!1,d,f,h=n===void 0?null:n;return[function(){return c(t())},h===null?void 0:function(){return c(h())}]},[t,n,i,r]);var l=Oet(e,s[0],s[1]);return Eet(function(){a.hasValue=!0,a.value=l},[l]),Tet(l),l};mwe.exports=gwe;var Aet=mwe.exports;const _et=vx(Aet),Net={},rG=e=>{let t;const n=new Set,i=(d,f)=>{const h=typeof d=="function"?d(t):d;if(!Object.is(h,t)){const m=t;t=f??(typeof h!="object"||h===null)?h:Object.assign({},t,h),n.forEach(g=>g(t,m))}},r=()=>t,c={setState:i,getState:r,getInitialState:()=>u,subscribe:d=>(n.add(d),()=>n.delete(d)),destroy:()=>{(Net?"production":void 0)!=="production"&&console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),n.clear()}},u=t=e(i,r,c);return c},jet=e=>e?rG(e):rG,{useDebugValue:Ret}=li,{useSyncExternalStoreWithSelector:Iet}=_et,Pet=e=>e;function bwe(e,t=Pet,n){const i=Iet(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,n);return Ret(i),i}const sG=(e,t)=>{const n=jet(e),i=(r,s=t)=>bwe(n,r,s);return Object.assign(i,n),i},Det=(e,t)=>e?sG(e,t):sG;function ss(e,t){if(Object.is(e,t))return!0;if(typeof e!="object"||e===null||typeof t!="object"||t===null)return!1;if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(const[i,r]of e)if(!Object.is(r,t.get(i)))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(const i of e)if(!t.has(i))return!1;return!0}const n=Object.keys(e);if(n.length!==Object.keys(t).length)return!1;for(const i of n)if(!Object.prototype.hasOwnProperty.call(t,i)||!Object.is(e[i],t[i]))return!1;return!0}const QR=p.createContext(null),Met=QR.Provider,ywe=Bu.error001("react");function Ii(e,t){const n=p.useContext(QR);if(n===null)throw new Error(ywe);return bwe(n,e,t)}function as(){const e=p.useContext(QR);if(e===null)throw new Error(ywe);return p.useMemo(()=>({getState:e.getState,setState:e.setState,subscribe:e.subscribe}),[e])}const aG={display:"none"},Let={position:"absolute",width:1,height:1,margin:-1,border:0,padding:0,overflow:"hidden",clip:"rect(0px, 0px, 0px, 0px)",clipPath:"inset(100%)"},vwe="react-flow__node-desc",xwe="react-flow__edge-desc",$et="react-flow__aria-live",Fet=e=>e.ariaLiveMessage,Bet=e=>e.ariaLabelConfig;function Uet({rfId:e}){const t=Ii(Fet);return o.jsx("div",{id:`${$et}-${e}`,"aria-live":"assertive","aria-atomic":"true",style:Let,children:t})}function Qet({rfId:e,disableKeyboardA11y:t}){const n=Ii(Bet);return o.jsxs(o.Fragment,{children:[o.jsx("div",{id:`${vwe}-${e}`,style:aG,children:t?n["node.a11yDescription.default"]:n["node.a11yDescription.keyboardDisabled"]}),o.jsx("div",{id:`${xwe}-${e}`,style:aG,children:n["edge.a11yDescription.default"]}),!t&&o.jsx(Uet,{rfId:e})]})}const zR=p.forwardRef(({position:e="top-left",children:t,className:n,style:i,...r},s)=>{const a=`${e}`.split("-");return o.jsx("div",{className:na(["react-flow__panel",n,...a]),style:i,ref:s,...r,children:t})});zR.displayName="Panel";function zet({proOptions:e,position:t="bottom-right"}){return e!=null&&e.hideAttribution?null:o.jsx(zR,{position:t,className:"react-flow__attribution","data-message":"Please only hide this attribution when you are subscribed to React Flow Pro: https://pro.reactflow.dev",children:o.jsx("a",{href:"https://reactflow.dev",target:"_blank",rel:"noopener noreferrer","aria-label":"React Flow attribution",children:"React Flow"})})}const Vet=e=>{const t=[],n=[];for(const[,i]of e.nodeLookup)i.selected&&t.push(i.internals.userNode);for(const[,i]of e.edgeLookup)i.selected&&n.push(i);return{selectedNodes:t,selectedEdges:n}},wT=e=>e.id;function Het(e,t){return ss(e.selectedNodes.map(wT),t.selectedNodes.map(wT))&&ss(e.selectedEdges.map(wT),t.selectedEdges.map(wT))}function qet({onSelectionChange:e}){const t=as(),{selectedNodes:n,selectedEdges:i}=Ii(Vet,Het);return p.useEffect(()=>{const r={nodes:n,edges:i};e==null||e(r),t.getState().onSelectionChangeHandlers.forEach(s=>s(r))},[n,i,e]),null}const Wet=e=>!!e.onSelectionChangeHandlers;function Ket({onSelectionChange:e}){const t=Ii(Wet);return e||t?o.jsx(qet,{onSelectionChange:e}):null}const wwe=[0,0],Get={x:0,y:0,zoom:1},Xet=["nodes","edges","defaultNodes","defaultEdges","onConnect","onConnectStart","onConnectEnd","onClickConnectStart","onClickConnectEnd","nodesDraggable","autoPanOnNodeFocus","nodesConnectable","nodesFocusable","edgesFocusable","edgesReconnectable","elevateNodesOnSelect","elevateEdgesOnSelect","minZoom","maxZoom","nodeExtent","onNodesChange","onEdgesChange","elementsSelectable","connectionMode","snapGrid","snapToGrid","translateExtent","connectOnClick","defaultEdgeOptions","fitView","fitViewOptions","onNodesDelete","onEdgesDelete","onDelete","onNodeDrag","onNodeDragStart","onNodeDragStop","onSelectionDrag","onSelectionDragStart","onSelectionDragStop","onMoveStart","onMove","onMoveEnd","noPanClassName","nodeOrigin","autoPanOnConnect","autoPanOnNodeDrag","onError","connectionRadius","isValidConnection","selectNodesOnDrag","nodeDragThreshold","connectionDragThreshold","onBeforeDelete","debug","autoPanSpeed","ariaLabelConfig","zIndexMode"],oG=[...Xet,"rfId"],Yet=e=>({setNodes:e.setNodes,setEdges:e.setEdges,setMinZoom:e.setMinZoom,setMaxZoom:e.setMaxZoom,setTranslateExtent:e.setTranslateExtent,setNodeExtent:e.setNodeExtent,reset:e.reset,setDefaultNodesAndEdges:e.setDefaultNodesAndEdges}),lG={translateExtent:PS,nodeOrigin:wwe,minZoom:.5,maxZoom:2,elementsSelectable:!0,noPanClassName:"nopan",rfId:"1"};function Zet(e){const{setNodes:t,setEdges:n,setMinZoom:i,setMaxZoom:r,setTranslateExtent:s,setNodeExtent:a,reset:l,setDefaultNodesAndEdges:c}=Ii(Yet,ss),u=as();p.useEffect(()=>(c(e.defaultNodes,e.defaultEdges),()=>{d.current=lG,l()}),[]);const d=p.useRef(lG);return p.useEffect(()=>{for(const f of oG){const h=e[f],m=d.current[f];h!==m&&(typeof e[f]>"u"||(f==="nodes"?t(h):f==="edges"?n(h):f==="minZoom"?i(h):f==="maxZoom"?r(h):f==="translateExtent"?s(h):f==="nodeExtent"?a(h):f==="ariaLabelConfig"?u.setState({ariaLabelConfig:NJe(h)}):f==="fitView"?u.setState({fitViewQueued:h}):f==="fitViewOptions"?u.setState({fitViewOptions:h}):u.setState({[f]:h})))}d.current=e},oG.map(f=>e[f])),null}function cG(){return typeof window>"u"||!window.matchMedia?null:window.matchMedia("(prefers-color-scheme: dark)")}function Jet(e){var i;const[t,n]=p.useState(e==="system"?null:e);return p.useEffect(()=>{if(e!=="system"){n(e);return}const r=cG(),s=()=>n(r!=null&&r.matches?"dark":"light");return s(),r==null||r.addEventListener("change",s),()=>{r==null||r.removeEventListener("change",s)}},[e]),t!==null?t:(i=cG())!=null&&i.matches?"dark":"light"}const uG=typeof document<"u"?document:null;function FS(e=null,t={target:uG,actInsideInputWithModifier:!0}){const[n,i]=p.useState(!1),r=p.useRef(!1),s=p.useRef(new Set([])),[a,l]=p.useMemo(()=>{if(e!==null){const u=(Array.isArray(e)?e:[e]).filter(f=>typeof f=="string").map(f=>f.replace("+",` `).replace(` `,` +`).split(` -`)),d=u.reduce((f,h)=>f.concat(...h),[]);return[u,d]}return[[],[]]},[e]);return p.useEffect(()=>{const c=(t==null?void 0:t.target)??tK,u=(t==null?void 0:t.actInsideInputWithModifier)??!0;if(e!==null){const d=m=>{var v,y;if(r.current=m.ctrlKey||m.metaKey||m.shiftKey||m.altKey,(!r.current||r.current&&!u)&&F1e(m))return!1;const b=iK(m.code,l);if(s.current.add(m[b]),nK(a,s.current,!1)){const x=((y=(v=m.composedPath)==null?void 0:v.call(m))==null?void 0:y[0])||m.target,O=(x==null?void 0:x.nodeName)==="BUTTON"||(x==null?void 0:x.nodeName)==="A";t.preventDefault!==!1&&(r.current||!O)&&m.preventDefault(),i(!0)}},f=m=>{const g=iK(m.code,l);nK(a,s.current,!0)?(i(!1),s.current.clear()):s.current.delete(m[g]),m.key==="Meta"&&s.current.clear(),r.current=!1},h=()=>{s.current.clear(),i(!1)};return c==null||c.addEventListener("keydown",d),c==null||c.addEventListener("keyup",f),window.addEventListener("blur",h),window.addEventListener("contextmenu",h),()=>{c==null||c.removeEventListener("keydown",d),c==null||c.removeEventListener("keyup",f),window.removeEventListener("blur",h),window.removeEventListener("contextmenu",h)}}},[e,i]),n}function nK(e,t,n){return e.filter(i=>n||i.length===t.size).some(i=>i.every(r=>t.has(r)))}function iK(e,t){return t.includes(e)?"code":"key"}const Let=()=>{const e=ss();return p.useMemo(()=>({zoomIn:async t=>{const{panZoom:n}=e.getState();return n?n.scaleBy(1.2,t):!1},zoomOut:async t=>{const{panZoom:n}=e.getState();return n?n.scaleBy(1/1.2,t):!1},zoomTo:async(t,n)=>{const{panZoom:i}=e.getState();return i?i.scaleTo(t,n):!1},getZoom:()=>e.getState().transform[2],setViewport:async(t,n)=>{const{transform:[i,r,s],panZoom:a}=e.getState();return a?(await a.setViewport({x:t.x??i,y:t.y??r,zoom:t.zoom??s},n),!0):!1},getViewport:()=>{const[t,n,i]=e.getState().transform;return{x:t,y:n,zoom:i}},setCenter:async(t,n,i)=>e.getState().setCenter(t,n,i),fitBounds:async(t,n)=>{const{width:i,height:r,minZoom:s,maxZoom:a,panZoom:l}=e.getState(),c=oB(t,i,r,s,a,(n==null?void 0:n.padding)??.1);return l?(await l.setViewport(c,{duration:n==null?void 0:n.duration,ease:n==null?void 0:n.ease,interpolate:n==null?void 0:n.interpolate}),!0):!1},screenToFlowPosition:(t,n={})=>{const{transform:i,snapGrid:r,snapToGrid:s,domNode:a}=e.getState();if(!a)return t;const{x:l,y:c}=a.getBoundingClientRect(),u={x:t.x-l,y:t.y-c},d=n.snapGrid??r,f=n.snapToGrid??s;return $x(u,i,f,d)},flowToScreenPosition:t=>{const{transform:n,domNode:i}=e.getState();if(!i)return t;const{x:r,y:s}=i.getBoundingClientRect(),a=Wv(t,n);return{x:a.x+r,y:a.y+s}}}),[])};function cwe(e,t){const n=[],i=new Map,r=[];for(const s of e)if(s.type==="add"){r.push(s);continue}else if(s.type==="remove"||s.type==="replace")i.set(s.id,[s]);else{const a=i.get(s.id);a?a.push(s):i.set(s.id,[s])}for(const s of t){const a=i.get(s.id);if(!a){n.push(s);continue}if(a[0].type==="remove")continue;if(a[0].type==="replace"){n.push({...a[0].item});continue}const l={...s};for(const c of a)$et(c,l);n.push(l)}return r.length&&r.forEach(s=>{s.index!==void 0?n.splice(s.index,0,{...s.item}):n.push({...s.item})}),n}function $et(e,t){switch(e.type){case"select":{t.selected=e.selected;break}case"position":{typeof e.position<"u"&&(t.position=e.position),typeof e.dragging<"u"&&(t.dragging=e.dragging);break}case"dimensions":{typeof e.dimensions<"u"&&(t.measured={...e.dimensions},e.setAttributes&&((e.setAttributes===!0||e.setAttributes==="width")&&(t.width=e.dimensions.width),(e.setAttributes===!0||e.setAttributes==="height")&&(t.height=e.dimensions.height))),typeof e.resizing=="boolean"&&(t.resizing=e.resizing);break}}}function uwe(e,t){return cwe(e,t)}function dwe(e,t){return cwe(e,t)}function Og(e,t){return{id:e,type:"select",selected:t}}function _y(e,t=new Set,n=!1){const i=[];for(const[r,s]of e){const a=t.has(r);!(s.selected===void 0&&!a)&&s.selected!==a&&(n&&(s.selected=a),i.push(Og(s.id,a)))}return i}function rK({items:e=[],lookup:t}){var r;const n=[],i=new Map(e.map(s=>[s.id,s]));for(const[s,a]of e.entries()){const l=t.get(a.id),c=((r=l==null?void 0:l.internals)==null?void 0:r.userNode)??l;c!==void 0&&c!==a&&n.push({id:a.id,item:a,type:"replace"}),c===void 0&&n.push({item:a,type:"add",index:s})}for(const[s]of t)i.get(s)===void 0&&n.push({id:s,type:"remove"});return n}function sK(e){return{id:e.id,type:"remove"}}const Fet=M1e();function Bet(e,t,n={}){return vJe(e,t,{...n,onError:n.onError??Fet})}const aK=e=>rJe(e),Uet=e=>R1e(e);function fwe(e){return p.forwardRef(e)}const Qet=typeof window<"u"?p.useLayoutEffect:p.useEffect;function oK(e){const[t,n]=p.useState(BigInt(0)),[i]=p.useState(()=>zet(()=>n(r=>r+BigInt(1))));return Qet(()=>{const r=i.get();r.length&&(e(r),i.reset())},[t]),i}function zet(e){let t=[];return{get:()=>t,reset:()=>{t=[]},push:n=>{t.push(n),e()}}}const hwe=p.createContext(null);function Vet({children:e}){const t=ss(),n=p.useCallback(l=>{const{nodes:c=[],setNodes:u,hasDefaultNodes:d,onNodesChange:f,nodeLookup:h,fitViewQueued:m,onNodesChangeMiddlewareMap:g}=t.getState();let b=c;for(const y of l)b=typeof y=="function"?y(b):y;let v=rK({items:b,lookup:h});for(const y of g.values())v=y(v);d&&u(b),v.length>0?f==null||f(v):m&&window.requestAnimationFrame(()=>{const{fitViewQueued:y,nodes:x,setNodes:O}=t.getState();y&&O(x)})},[]),i=oK(n),r=p.useCallback(l=>{const{edges:c=[],setEdges:u,hasDefaultEdges:d,onEdgesChange:f,edgeLookup:h}=t.getState();let m=c;for(const g of l)m=typeof g=="function"?g(m):g;d?u(m):f&&f(rK({items:m,lookup:h}))},[]),s=oK(r),a=p.useMemo(()=>({nodeQueue:i,edgeQueue:s}),[]);return o.jsx(hwe.Provider,{value:a,children:e})}function Het(){const e=p.useContext(hwe);if(!e)throw new Error("useBatchContext must be used within a BatchProvider");return e}const qet=e=>!!e.panZoom;function $R(){const e=Let(),t=ss(),n=Het(),i=_i(qet),r=p.useMemo(()=>{const s=f=>t.getState().nodeLookup.get(f),a=f=>{n.nodeQueue.push(f)},l=f=>{n.edgeQueue.push(f)},c=f=>{var y,x;const{nodeLookup:h,nodeOrigin:m}=t.getState(),g=aK(f)?f:h.get(f.id),b=g.parentId?L1e(g.position,g.measured,g.parentId,h,m):g.position,v={...g,position:b,width:((y=g.measured)==null?void 0:y.width)??g.width,height:((x=g.measured)==null?void 0:x.height)??g.height};return qv(v)},u=(f,h,m={replace:!1})=>{a(g=>g.map(b=>{if(b.id===f){const v=typeof h=="function"?h(b):h;return m.replace&&aK(v)?v:{...b,...v}}return b}))},d=(f,h,m={replace:!1})=>{l(g=>g.map(b=>{if(b.id===f){const v=typeof h=="function"?h(b):h;return m.replace&&Uet(v)?v:{...b,...v}}return b}))};return{getNodes:()=>t.getState().nodes.map(f=>({...f})),getNode:f=>{var h;return(h=s(f))==null?void 0:h.internals.userNode},getInternalNode:s,getEdges:()=>{const{edges:f=[]}=t.getState();return f.map(h=>({...h}))},getEdge:f=>t.getState().edgeLookup.get(f),setNodes:a,setEdges:l,addNodes:f=>{const h=Array.isArray(f)?f:[f];n.nodeQueue.push(m=>[...m,...h])},addEdges:f=>{const h=Array.isArray(f)?f:[f];n.edgeQueue.push(m=>[...m,...h])},toObject:()=>{const{nodes:f=[],edges:h=[],transform:m}=t.getState(),[g,b,v]=m;return{nodes:f.map(y=>({...y})),edges:h.map(y=>({...y})),viewport:{x:g,y:b,zoom:v}}},deleteElements:async({nodes:f=[],edges:h=[]})=>{const{nodes:m,edges:g,onNodesDelete:b,onEdgesDelete:v,triggerNodeChanges:y,triggerEdgeChanges:x,onDelete:O,onBeforeDelete:w}=t.getState(),{nodes:k,edges:S}=await cJe({nodesToRemove:f,edgesToRemove:h,nodes:m,edges:g,onBeforeDelete:w}),E=S.length>0,C=k.length>0;if(E){const N=S.map(sK);v==null||v(S),x(N)}if(C){const N=k.map(sK);b==null||b(k),y(N)}return(C||E)&&(O==null||O({nodes:k,edges:S})),{deletedNodes:k,deletedEdges:S}},getIntersectingNodes:(f,h=!0,m)=>{const g=MG(f),b=g?f:c(f),v=m!==void 0;return b?(m||t.getState().nodes).filter(y=>{const x=t.getState().nodeLookup.get(y.id);if(x&&!g&&(y.id===f.id||!x.internals.positionAbsolute))return!1;const O=qv(v?y:x),w=IS(O,b);return h&&w>0||w>=O.width*O.height||w>=b.width*b.height}):[]},isNodeIntersecting:(f,h,m=!0)=>{const b=MG(f)?f:c(f);if(!b)return!1;const v=IS(b,h);return m&&v>0||v>=h.width*h.height||v>=b.width*b.height},updateNode:u,updateNodeData:(f,h,m={replace:!1})=>{u(f,g=>{const b=typeof h=="function"?h(g):h;return m.replace?{...g,data:b}:{...g,data:{...g.data,...b}}},m)},updateEdge:d,updateEdgeData:(f,h,m={replace:!1})=>{d(f,g=>{const b=typeof h=="function"?h(g):h;return m.replace?{...g,data:b}:{...g,data:{...g.data,...b}}},m)},getNodesBounds:f=>{const{nodeLookup:h,nodeOrigin:m}=t.getState();return sJe(f,{nodeLookup:h,nodeOrigin:m})},getHandleConnections:({type:f,id:h,nodeId:m})=>{var g;return Array.from(((g=t.getState().connectionLookup.get(`${m}-${f}${h?`-${h}`:""}`))==null?void 0:g.values())??[])},getNodeConnections:({type:f,handleId:h,nodeId:m})=>{var g;return Array.from(((g=t.getState().connectionLookup.get(`${m}${f?h?`-${f}-${h}`:`-${f}`:""}`))==null?void 0:g.values())??[])},fitView:async f=>{const h=t.getState().fitViewResolver??fJe();return t.setState({fitViewQueued:!0,fitViewOptions:f,fitViewResolver:h}),n.nodeQueue.push(m=>[...m]),h.promise}}},[]);return p.useMemo(()=>({...r,...e,viewportInitialized:i}),[i])}const lK=e=>e.selected,Wet=typeof window<"u"?window:void 0;function Get({deleteKeyCode:e,multiSelectionKeyCode:t}){const n=ss(),{deleteElements:i}=$R(),r=DS(e,{actInsideInputWithModifier:!1}),s=DS(t,{target:Wet});p.useEffect(()=>{if(r){const{edges:a,nodes:l}=n.getState();i({nodes:l.filter(lK),edges:a.filter(lK)}),n.setState({nodesSelectionActive:!1})}},[r]),p.useEffect(()=>{n.setState({multiSelectionActive:s})},[s])}function Ket(e){const t=ss();p.useEffect(()=>{const n=()=>{var r,s,a,l;if(!e.current||!(((s=(r=e.current).checkVisibility)==null?void 0:s.call(r))??!0))return!1;const i=cB(e.current);(i.height===0||i.width===0)&&((l=(a=t.getState()).onError)==null||l.call(a,"004",Fu.error004())),t.setState({width:i.width||500,height:i.height||500})};if(e.current){n(),window.addEventListener("resize",n);const i=new ResizeObserver(()=>n());return i.observe(e.current),()=>{window.removeEventListener("resize",n),i&&e.current&&i.unobserve(e.current)}}},[])}const FR={position:"absolute",width:"100%",height:"100%",top:0,left:0},Xet=e=>({userSelectionActive:e.userSelectionActive,lib:e.lib,connectionInProgress:e.connection.inProgress});function Yet({onPaneContextMenu:e,zoomOnScroll:t=!0,zoomOnPinch:n=!0,panOnScroll:i=!1,panOnScrollSpeed:r=.5,panOnScrollMode:s=rb.Free,zoomOnDoubleClick:a=!0,panOnDrag:l=!0,defaultViewport:c,translateExtent:u,minZoom:d,maxZoom:f,zoomActivationKeyCode:h,preventScrolling:m=!0,children:g,noWheelClassName:b,noPanClassName:v,onViewportChange:y,isControlledViewport:x,paneClickDistance:O,selectionOnDrag:w}){const k=ss(),S=p.useRef(null),{userSelectionActive:E,lib:C,connectionInProgress:N}=_i(Xet,rs),_=DS(h),j=p.useRef();Ket(S);const A=p.useCallback(F=>{y==null||y({x:F[0],y:F[1],zoom:F[2]}),x||k.setState({transform:F})},[y,x]);return p.useEffect(()=>{if(S.current){j.current=KJe({domNode:S.current,minZoom:d,maxZoom:f,translateExtent:u,viewport:c,onDraggingChange:R=>k.setState(L=>L.paneDragging===R?L:{paneDragging:R}),onPanZoomStart:(R,L)=>{const{onViewportChangeStart:M,onMoveStart:U}=k.getState();U==null||U(R,L),M==null||M(L)},onPanZoom:(R,L)=>{const{onViewportChange:M,onMove:U}=k.getState();U==null||U(R,L),M==null||M(L)},onPanZoomEnd:(R,L)=>{const{onViewportChangeEnd:M,onMoveEnd:U}=k.getState();U==null||U(R,L),M==null||M(L)}});const{x:F,y:T,zoom:P}=j.current.getViewport();return k.setState({panZoom:j.current,transform:[F,T,P],domNode:S.current.closest(".react-flow")}),()=>{var R;(R=j.current)==null||R.destroy()}}},[]),p.useEffect(()=>{var F;(F=j.current)==null||F.update({onPaneContextMenu:e,zoomOnScroll:t,zoomOnPinch:n,panOnScroll:i,panOnScrollSpeed:r,panOnScrollMode:s,zoomOnDoubleClick:a,panOnDrag:l,zoomActivationKeyPressed:_,preventScrolling:m,noPanClassName:v,userSelectionActive:E,noWheelClassName:b,lib:C,onTransformChange:A,connectionInProgress:N,selectionOnDrag:w,paneClickDistance:O})},[e,t,n,i,r,s,a,l,_,m,v,E,b,C,A,N,w,O]),o.jsx("div",{className:"react-flow__renderer",ref:S,style:FR,children:g})}const Zet=e=>({userSelectionActive:e.userSelectionActive,userSelectionRect:e.userSelectionRect});function Jet(){const{userSelectionActive:e,userSelectionRect:t}=_i(Zet,rs);return e&&t?o.jsx("div",{className:"react-flow__selection react-flow__container",style:{width:t.width,height:t.height,transform:`translate(${t.x}px, ${t.y}px)`}}):null}const aM=(e,t)=>n=>{n.target===t.current&&(e==null||e(n))},ett=e=>({userSelectionActive:e.userSelectionActive,elementsSelectable:e.elementsSelectable,connectionInProgress:e.connection.inProgress,dragging:e.paneDragging,panBy:e.panBy,autoPanSpeed:e.autoPanSpeed});function ttt({isSelecting:e,selectionKeyPressed:t,selectionMode:n=jS.Full,panOnDrag:i,autoPanOnSelection:r,paneClickDistance:s,selectionOnDrag:a,onSelectionStart:l,onSelectionEnd:c,onPaneClick:u,onPaneContextMenu:d,onPaneScroll:f,onPaneMouseEnter:h,onPaneMouseMove:m,onPaneMouseLeave:g,children:b}){const v=p.useRef(0),y=ss(),{userSelectionActive:x,elementsSelectable:O,dragging:w,connectionInProgress:k,panBy:S,autoPanSpeed:E}=_i(ett,rs),C=O&&(e||x),N=p.useRef(null),_=p.useRef(),j=p.useRef(new Set),A=p.useRef(new Set),F=p.useRef(!1),T=p.useRef({x:0,y:0}),P=p.useRef(!1),R=se=>{if(F.current||k){F.current=!1;return}u==null||u(se),y.getState().resetSelectedElements(),y.setState({nodesSelectionActive:!1})},L=se=>{if(Array.isArray(i)&&(i!=null&&i.includes(2))){se.preventDefault();return}d==null||d(se)},M=f?se=>f(se):void 0,U=se=>{F.current&&(se.stopPropagation(),F.current=!1)},I=se=>{var st,Le;const{domNode:re,transform:ge}=y.getState();if(_.current=re==null?void 0:re.getBoundingClientRect(),!_.current)return;const W=se.target===N.current;if(!W&&!!se.target.closest(".nokey")||!e||!(a&&W||t)||se.button!==0||!se.isPrimary)return;(Le=(st=se.target)==null?void 0:st.setPointerCapture)==null||Le.call(st,se.pointerId),F.current=!1;const{x:ue,y:Oe}=_u(se.nativeEvent,_.current),ke=$x({x:ue,y:Oe},ge);y.setState({userSelectionRect:{width:0,height:0,startX:ke.x,startY:ke.y,x:ue,y:Oe}}),W||(se.stopPropagation(),se.preventDefault())};function H(se,re){const{userSelectionRect:ge}=y.getState();if(!ge)return;const{transform:W,nodeLookup:X,edgeLookup:ae,connectionLookup:ue,triggerNodeChanges:Oe,triggerEdgeChanges:ke,defaultEdgeOptions:st}=y.getState(),Le={x:ge.startX,y:ge.startY},{x:Me,y:Ie}=Wv(Le,W),qe={startX:Le.x,startY:Le.y,x:seDe.id)),A.current=new Set;const Ee=(st==null?void 0:st.selectable)??!0;for(const De of j.current){const J=ue.get(De);if(J)for(const{edgeId:he}of J.values()){const _e=ae.get(he);_e&&(_e.selectable??Ee)&&A.current.add(he)}}if(!LG(Ae,j.current)){const De=_y(X,j.current,!0);Oe(De)}if(!LG(ze,A.current)){const De=_y(ae,A.current);ke(De)}y.setState({userSelectionRect:qe,userSelectionActive:!0,nodesSelectionActive:!1})}function K(){if(!r||!_.current)return;const[se,re]=aB(T.current,_.current,E);S({x:se,y:re}).then(ge=>{if(!F.current||!ge){v.current=requestAnimationFrame(K);return}const{x:W,y:X}=T.current;H(W,X),v.current=requestAnimationFrame(K)})}const Q=()=>{cancelAnimationFrame(v.current),v.current=0,P.current=!1};p.useEffect(()=>()=>Q(),[]);const q=se=>{const{userSelectionRect:re,transform:ge,resetSelectedElements:W}=y.getState();if(!_.current||!re)return;const{x:X,y:ae}=_u(se.nativeEvent,_.current);T.current={x:X,y:ae};const ue=Wv({x:re.startX,y:re.startY},ge);if(!F.current){const Oe=t?0:s;if(Math.hypot(X-ue.x,ae-ue.y)<=Oe)return;W(),l==null||l(se)}F.current=!0,P.current||(K(),P.current=!0),H(X,ae)},B=se=>{var re,ge;se.button===0&&((ge=(re=se.target)==null?void 0:re.releasePointerCapture)==null||ge.call(re,se.pointerId),!x&&se.target===N.current&&y.getState().userSelectionRect&&(R==null||R(se)),y.setState({userSelectionActive:!1,userSelectionRect:null}),F.current&&(c==null||c(se),y.setState({nodesSelectionActive:j.current.size>0})),Q())},ee=se=>{var re,ge;(ge=(re=se.target)==null?void 0:re.releasePointerCapture)==null||ge.call(re,se.pointerId),Q()},le=i===!0||Array.isArray(i)&&i.includes(0);return o.jsxs("div",{className:ta(["react-flow__pane",{draggable:le,dragging:w,selection:e}]),onClick:C?void 0:aM(R,N),onContextMenu:aM(L,N),onWheel:aM(M,N),onPointerEnter:C?void 0:h,onPointerMove:C?q:m,onPointerUp:C?B:void 0,onPointerCancel:C?ee:void 0,onPointerDownCapture:C?I:void 0,onClickCapture:C?U:void 0,onPointerLeave:g,ref:N,style:FR,children:[b,o.jsx(Jet,{})]})}function f6({id:e,store:t,unselect:n=!1,nodeRef:i}){const{addSelectedNodes:r,unselectNodesAndEdges:s,multiSelectionActive:a,nodeLookup:l,onError:c}=t.getState(),u=l.get(e);if(!u){c==null||c("012",Fu.error012(e));return}t.setState({nodesSelectionActive:!1}),u.selected?(n||u.selected&&a)&&(s({nodes:[u],edges:[]}),requestAnimationFrame(()=>{var d;return(d=i==null?void 0:i.current)==null?void 0:d.blur()})):r([e])}function pwe({nodeRef:e,disabled:t=!1,noDragClassName:n,handleSelector:i,nodeId:r,isSelectable:s,nodeClickDistance:a}){const l=ss(),[c,u]=p.useState(!1),d=p.useRef();return p.useEffect(()=>{d.current=DJe({getStoreItems:()=>l.getState(),onNodeMouseDown:f=>{f6({id:f,store:l,nodeRef:e})},onDragStart:()=>{u(!0)},onDragStop:()=>{u(!1)}})},[]),p.useEffect(()=>{if(!(t||!e.current||!d.current))return d.current.update({noDragClassName:n,handleSelector:i,domNode:e.current,isSelectable:s,nodeId:r,nodeClickDistance:a}),()=>{var f;(f=d.current)==null||f.destroy()}},[n,i,t,s,e,r,a]),c}const ntt=e=>t=>t.selected&&(t.draggable||e&&typeof t.draggable>"u");function mwe(){const e=ss();return p.useCallback(n=>{const{nodeExtent:i,snapToGrid:r,snapGrid:s,nodesDraggable:a,onError:l,updateNodePositions:c,nodeLookup:u,nodeOrigin:d}=e.getState(),f=new Map,h=ntt(a),m=r?s[0]:5,g=r?s[1]:5,b=n.direction.x*m*n.factor,v=n.direction.y*g*n.factor;for(const[,y]of u){if(!h(y))continue;let x={x:y.internals.positionAbsolute.x+b,y:y.internals.positionAbsolute.y+v};r&&(x=rE(x,s));const{position:O,positionAbsolute:w}=I1e({nodeId:y.id,nextPosition:x,nodeLookup:u,nodeExtent:i,nodeOrigin:d,onError:l});y.position=O,y.internals.positionAbsolute=w,f.set(y.id,y)}c(f)},[])}const mB=p.createContext(null),itt=mB.Provider;mB.Consumer;const gwe=()=>p.useContext(mB),rtt=e=>({connectOnClick:e.connectOnClick,noPanClassName:e.noPanClassName,rfId:e.rfId}),stt=(e,t,n)=>i=>{const{connectionClickStartHandle:r,connectionMode:s,connection:a}=i,{fromHandle:l,toHandle:c,isValid:u}=a,d=(c==null?void 0:c.nodeId)===e&&(c==null?void 0:c.id)===t&&(c==null?void 0:c.type)===n;return{connectingFrom:(l==null?void 0:l.nodeId)===e&&(l==null?void 0:l.id)===t&&(l==null?void 0:l.type)===n,connectingTo:d,clickConnecting:(r==null?void 0:r.nodeId)===e&&(r==null?void 0:r.id)===t&&(r==null?void 0:r.type)===n,isPossibleEndHandle:s===Vv.Strict?(l==null?void 0:l.type)!==n:e!==(l==null?void 0:l.nodeId)||t!==(l==null?void 0:l.id),connectionInProcess:!!l,clickConnectionInProcess:!!r,valid:d&&u}};function att({type:e="source",position:t=sn.Top,isValidConnection:n,isConnectable:i=!0,isConnectableStart:r=!0,isConnectableEnd:s=!0,id:a,onConnect:l,children:c,className:u,onMouseDown:d,onTouchStart:f,...h},m){var P,R;const g=a||null,b=e==="target",v=ss(),y=gwe(),{connectOnClick:x,noPanClassName:O,rfId:w}=_i(rtt,rs),{connectingFrom:k,connectingTo:S,clickConnecting:E,isPossibleEndHandle:C,connectionInProcess:N,clickConnectionInProcess:_,valid:j}=_i(stt(y,g,e),rs);y||(R=(P=v.getState()).onError)==null||R.call(P,"010",Fu.error010());const A=L=>{const{defaultEdgeOptions:M,onConnect:U,hasDefaultEdges:I}=v.getState(),H={...M,...L};if(I){const{edges:K,setEdges:Q,onError:q}=v.getState();Q(Bet(H,K,{onError:q}))}U==null||U(H),l==null||l(H)},F=L=>{if(!y)return;const M=B1e(L.nativeEvent);if(r&&(M&&L.button===0||!M)){const U=v.getState();d6.onPointerDown(L.nativeEvent,{handleDomNode:L.currentTarget,autoPanOnConnect:U.autoPanOnConnect,connectionMode:U.connectionMode,connectionRadius:U.connectionRadius,domNode:U.domNode,nodeLookup:U.nodeLookup,lib:U.lib,isTarget:b,handleId:g,nodeId:y,flowId:U.rfId,panBy:U.panBy,cancelConnection:U.cancelConnection,onConnectStart:U.onConnectStart,onConnectEnd:(...I)=>{var H,K;return(K=(H=v.getState()).onConnectEnd)==null?void 0:K.call(H,...I)},updateConnection:U.updateConnection,onConnect:A,isValidConnection:n||((...I)=>{var H,K;return((K=(H=v.getState()).isValidConnection)==null?void 0:K.call(H,...I))??!0}),getTransform:()=>v.getState().transform,getFromHandle:()=>v.getState().connection.fromHandle,autoPanSpeed:U.autoPanSpeed,dragThreshold:U.connectionDragThreshold})}M?d==null||d(L):f==null||f(L)},T=L=>{const{onClickConnectStart:M,onClickConnectEnd:U,connectionClickStartHandle:I,connectionMode:H,isValidConnection:K,lib:Q,rfId:q,nodeLookup:B,connection:ee}=v.getState();if(!y||!I&&!r)return;if(!I){M==null||M(L.nativeEvent,{nodeId:y,handleId:g,handleType:e}),v.setState({connectionClickStartHandle:{nodeId:y,type:e,id:g}});return}const le=$1e(L.target),se=n||K,{connection:re,isValid:ge}=d6.isValid(L.nativeEvent,{handle:{nodeId:y,id:g,type:e},connectionMode:H,fromNodeId:I.nodeId,fromHandleId:I.id||null,fromType:I.type,isValidConnection:se,flowId:q,doc:le,lib:Q,nodeLookup:B});ge&&re&&A(re);const W=structuredClone(ee);delete W.inProgress,W.toPosition=W.toHandle?W.toHandle.position:null,U==null||U(L,W),v.setState({connectionClickStartHandle:null})};return o.jsx("div",{"data-handleid":g,"data-nodeid":y,"data-handlepos":t,"data-id":`${w}-${y}-${g}-${e}`,className:ta(["react-flow__handle",`react-flow__handle-${t}`,"nodrag",O,u,{source:!b,target:b,connectable:i,connectablestart:r,connectableend:s,clickconnecting:E,connectingfrom:k,connectingto:S,valid:j,connectionindicator:i&&(!N||C)&&(N||_?s:r)}]),onMouseDown:F,onTouchStart:F,onClick:x?T:void 0,ref:m,...h,children:c})}const fl=p.memo(fwe(att));function ott({data:e,isConnectable:t,sourcePosition:n=sn.Bottom}){return o.jsxs(o.Fragment,{children:[e==null?void 0:e.label,o.jsx(fl,{type:"source",position:n,isConnectable:t})]})}function ltt({data:e,isConnectable:t,targetPosition:n=sn.Top,sourcePosition:i=sn.Bottom}){return o.jsxs(o.Fragment,{children:[o.jsx(fl,{type:"target",position:n,isConnectable:t}),e==null?void 0:e.label,o.jsx(fl,{type:"source",position:i,isConnectable:t})]})}function ctt(){return null}function utt({data:e,isConnectable:t,targetPosition:n=sn.Top}){return o.jsxs(o.Fragment,{children:[o.jsx(fl,{type:"target",position:n,isConnectable:t}),e==null?void 0:e.label]})}const eN={ArrowUp:{x:0,y:-1},ArrowDown:{x:0,y:1},ArrowLeft:{x:-1,y:0},ArrowRight:{x:1,y:0}},cK={input:ott,default:ltt,output:utt,group:ctt};function dtt(e){var t,n,i,r;return e.internals.handleBounds===void 0?{width:e.width??e.initialWidth??((t=e.style)==null?void 0:t.width),height:e.height??e.initialHeight??((n=e.style)==null?void 0:n.height)}:{width:e.width??((i=e.style)==null?void 0:i.width),height:e.height??((r=e.style)==null?void 0:r.height)}}const ftt=e=>{const{width:t,height:n,x:i,y:r}=iE(e.nodeLookup,{filter:s=>!!s.selected});return{width:Au(t)?t:null,height:Au(n)?n:null,userSelectionActive:e.userSelectionActive,transformString:`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]}) translate(${i}px,${r}px)`}};function htt({onSelectionContextMenu:e,noPanClassName:t,disableKeyboardA11y:n}){const i=ss(),{width:r,height:s,transformString:a,userSelectionActive:l}=_i(ftt,rs),c=mwe(),u=p.useRef(null);p.useEffect(()=>{var m;n||(m=u.current)==null||m.focus({preventScroll:!0})},[n]);const d=!l&&r!==null&&s!==null;if(pwe({nodeRef:u,disabled:!d}),!d)return null;const f=e?m=>{const g=i.getState().nodes.filter(b=>b.selected);e(m,g)}:void 0,h=m=>{Object.prototype.hasOwnProperty.call(eN,m.key)&&(m.preventDefault(),c({direction:eN[m.key],factor:m.shiftKey?4:1}))};return o.jsx("div",{className:ta(["react-flow__nodesselection","react-flow__container",t]),style:{transform:a},children:o.jsx("div",{ref:u,className:"react-flow__nodesselection-rect",onContextMenu:f,tabIndex:n?void 0:-1,onKeyDown:n?void 0:h,style:{width:r,height:s}})})}const uK=typeof window<"u"?window:void 0,ptt=e=>({nodesSelectionActive:e.nodesSelectionActive,userSelectionActive:e.userSelectionActive});function bwe({children:e,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:i,onPaneMouseLeave:r,onPaneContextMenu:s,onPaneScroll:a,paneClickDistance:l,deleteKeyCode:c,selectionKeyCode:u,selectionOnDrag:d,selectionMode:f,onSelectionStart:h,onSelectionEnd:m,multiSelectionKeyCode:g,panActivationKeyCode:b,zoomActivationKeyCode:v,elementsSelectable:y,zoomOnScroll:x,zoomOnPinch:O,panOnScroll:w,panOnScrollSpeed:k,panOnScrollMode:S,zoomOnDoubleClick:E,panOnDrag:C,autoPanOnSelection:N,defaultViewport:_,translateExtent:j,minZoom:A,maxZoom:F,preventScrolling:T,onSelectionContextMenu:P,noWheelClassName:R,noPanClassName:L,disableKeyboardA11y:M,onViewportChange:U,isControlledViewport:I}){const{nodesSelectionActive:H,userSelectionActive:K}=_i(ptt,rs),Q=DS(u,{target:uK}),q=DS(b,{target:uK}),B=q||C,ee=q||w,le=d&&B!==!0,se=Q||K||le;return Get({deleteKeyCode:c,multiSelectionKeyCode:g}),o.jsx(Yet,{onPaneContextMenu:s,elementsSelectable:y,zoomOnScroll:x,zoomOnPinch:O,panOnScroll:ee,panOnScrollSpeed:k,panOnScrollMode:S,zoomOnDoubleClick:E,panOnDrag:!Q&&B,defaultViewport:_,translateExtent:j,minZoom:A,maxZoom:F,zoomActivationKeyCode:v,preventScrolling:T,noWheelClassName:R,noPanClassName:L,onViewportChange:U,isControlledViewport:I,paneClickDistance:l,selectionOnDrag:le,children:o.jsxs(ttt,{onSelectionStart:h,onSelectionEnd:m,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:i,onPaneMouseLeave:r,onPaneContextMenu:s,onPaneScroll:a,panOnDrag:B,autoPanOnSelection:N,isSelecting:!!se,selectionMode:f,selectionKeyPressed:Q,paneClickDistance:l,selectionOnDrag:le,children:[e,H&&o.jsx(htt,{onSelectionContextMenu:P,noPanClassName:L,disableKeyboardA11y:M})]})})}bwe.displayName="FlowRenderer";const mtt=p.memo(bwe),gtt=e=>t=>e?sB(t.nodeLookup,{x:0,y:0,width:t.width,height:t.height},t.transform,!0).map(n=>n.id):Array.from(t.nodeLookup.keys());function btt(e){return _i(p.useCallback(gtt(e),[e]),rs)}const ytt=e=>e.updateNodeInternals;function vtt(){const e=_i(ytt),[t]=p.useState(()=>typeof ResizeObserver>"u"?null:new ResizeObserver(n=>{const i=new Map;n.forEach(r=>{const s=r.target.getAttribute("data-id");i.set(s,{id:s,nodeElement:r.target,force:!0})}),e(i)}));return p.useEffect(()=>()=>{t==null||t.disconnect()},[t]),t}function xtt({node:e,nodeType:t,hasDimensions:n,resizeObserver:i}){const r=ss(),s=p.useRef(null),a=p.useRef(null),l=p.useRef(e.sourcePosition),c=p.useRef(e.targetPosition),u=p.useRef(t),d=n&&!!e.internals.handleBounds;return p.useEffect(()=>{s.current&&!e.hidden&&(!d||a.current!==s.current)&&(a.current&&(i==null||i.unobserve(a.current)),i==null||i.observe(s.current),a.current=s.current)},[d,e.hidden]),p.useEffect(()=>()=>{a.current&&(i==null||i.unobserve(a.current),a.current=null)},[]),p.useEffect(()=>{if(s.current){const f=u.current!==t,h=l.current!==e.sourcePosition,m=c.current!==e.targetPosition;(f||h||m)&&(u.current=t,l.current=e.sourcePosition,c.current=e.targetPosition,r.getState().updateNodeInternals(new Map([[e.id,{id:e.id,nodeElement:s.current,force:!0}]])))}},[e.id,t,e.sourcePosition,e.targetPosition]),s}function wtt({id:e,onClick:t,onMouseEnter:n,onMouseMove:i,onMouseLeave:r,onContextMenu:s,onDoubleClick:a,nodesDraggable:l,elementsSelectable:c,nodesConnectable:u,nodesFocusable:d,resizeObserver:f,noDragClassName:h,noPanClassName:m,disableKeyboardA11y:g,rfId:b,nodeTypes:v,nodeClickDistance:y,onError:x}){const{node:O,internals:w,isParent:k}=_i(se=>{const re=se.nodeLookup.get(e),ge=se.parentLookup.has(e);return{node:re,internals:re.internals,isParent:ge}},rs);let S=O.type||"default",E=(v==null?void 0:v[S])||cK[S];E===void 0&&(x==null||x("003",Fu.error003(S)),S="default",E=(v==null?void 0:v.default)||cK.default);const C=!!(O.draggable||l&&typeof O.draggable>"u"),N=!!(O.selectable||c&&typeof O.selectable>"u"),_=!!(O.connectable||u&&typeof O.connectable>"u"),j=!!(O.focusable||d&&typeof O.focusable>"u"),A=ss(),F=lB(O),T=xtt({node:O,nodeType:S,hasDimensions:F,resizeObserver:f}),P=pwe({nodeRef:T,disabled:O.hidden||!C,noDragClassName:h,handleSelector:O.dragHandle,nodeId:e,isSelectable:N,nodeClickDistance:y}),R=mwe();if(O.hidden)return null;const L=Fh(O),M=dtt(O),U=N||C||t||n||i||r,I=n?se=>n(se,{...w.userNode}):void 0,H=i?se=>i(se,{...w.userNode}):void 0,K=r?se=>r(se,{...w.userNode}):void 0,Q=s?se=>s(se,{...w.userNode}):void 0,q=a?se=>a(se,{...w.userNode}):void 0,B=se=>{const{selectNodesOnDrag:re,nodeDragThreshold:ge}=A.getState();N&&(!re||!C||ge>0)&&f6({id:e,store:A,nodeRef:T}),t&&t(se,{...w.userNode})},ee=se=>{if(!(F1e(se.nativeEvent)||g)){if(A1e.includes(se.key)&&N){const re=se.key==="Escape";f6({id:e,store:A,unselect:re,nodeRef:T})}else if(C&&O.selected&&Object.prototype.hasOwnProperty.call(eN,se.key)){se.preventDefault();const{ariaLabelConfig:re}=A.getState();A.setState({ariaLiveMessage:re["node.a11yDescription.ariaLiveMessage"]({direction:se.key.replace("Arrow","").toLowerCase(),x:~~w.positionAbsolute.x,y:~~w.positionAbsolute.y})}),R({direction:eN[se.key],factor:se.shiftKey?4:1})}}},le=()=>{var ue;if(g||!((ue=T.current)!=null&&ue.matches(":focus-visible")))return;const{transform:se,width:re,height:ge,autoPanOnNodeFocus:W,setCenter:X}=A.getState();if(!W)return;sB(new Map([[e,O]]),{x:0,y:0,width:re,height:ge},se,!0).length>0||X(O.position.x+L.width/2,O.position.y+L.height/2,{zoom:se[2]})};return o.jsx("div",{className:ta(["react-flow__node",`react-flow__node-${S}`,{[m]:C},O.className,{selected:O.selected,selectable:N,parent:k,draggable:C,dragging:P}]),ref:T,style:{zIndex:w.z,transform:`translate(${w.positionAbsolute.x}px,${w.positionAbsolute.y}px)`,pointerEvents:U?"all":"none",visibility:F?"visible":"hidden",...O.style,...M},"data-id":e,"data-testid":`rf__node-${e}`,onMouseEnter:I,onMouseMove:H,onMouseLeave:K,onContextMenu:Q,onClick:B,onDoubleClick:q,onKeyDown:j?ee:void 0,tabIndex:j?0:void 0,onFocus:j?le:void 0,role:O.ariaRole??(j?"group":void 0),"aria-roledescription":"node","aria-describedby":g?void 0:`${awe}-${b}`,"aria-label":O.ariaLabel,...O.domAttributes,children:o.jsx(itt,{value:e,children:o.jsx(E,{id:e,data:O.data,type:S,positionAbsoluteX:w.positionAbsolute.x,positionAbsoluteY:w.positionAbsolute.y,selected:O.selected??!1,selectable:N,draggable:C,deletable:O.deletable??!0,isConnectable:_,sourcePosition:O.sourcePosition,targetPosition:O.targetPosition,dragging:P,dragHandle:O.dragHandle,zIndex:w.z,parentId:O.parentId,...L})})})}var Ott=p.memo(wtt);const Stt=e=>({nodesDraggable:e.nodesDraggable,nodesConnectable:e.nodesConnectable,nodesFocusable:e.nodesFocusable,elementsSelectable:e.elementsSelectable,onError:e.onError});function ywe(e){const{nodesDraggable:t,nodesConnectable:n,nodesFocusable:i,elementsSelectable:r,onError:s}=_i(Stt,rs),a=btt(e.onlyRenderVisibleElements),l=vtt();return o.jsx("div",{className:"react-flow__nodes",style:FR,children:a.map(c=>o.jsx(Ott,{id:c,nodeTypes:e.nodeTypes,nodeExtent:e.nodeExtent,onClick:e.onNodeClick,onMouseEnter:e.onNodeMouseEnter,onMouseMove:e.onNodeMouseMove,onMouseLeave:e.onNodeMouseLeave,onContextMenu:e.onNodeContextMenu,onDoubleClick:e.onNodeDoubleClick,noDragClassName:e.noDragClassName,noPanClassName:e.noPanClassName,rfId:e.rfId,disableKeyboardA11y:e.disableKeyboardA11y,resizeObserver:l,nodesDraggable:t,nodesConnectable:n,nodesFocusable:i,elementsSelectable:r,nodeClickDistance:e.nodeClickDistance,onError:s},c))})}ywe.displayName="NodeRenderer";const ktt=p.memo(ywe);function Ett(e){return _i(p.useCallback(n=>{if(!e)return n.edges.map(r=>r.id);const i=[];if(n.width&&n.height)for(const r of n.edges){const s=n.nodeLookup.get(r.source),a=n.nodeLookup.get(r.target);s&&a&&gJe({sourceNode:s,targetNode:a,width:n.width,height:n.height,transform:n.transform})&&i.push(r.id)}return i},[e]),rs)}const Ctt=({color:e="none",strokeWidth:t=1})=>{const n={strokeWidth:t,...e&&{stroke:e}};return o.jsx("polyline",{className:"arrow",style:n,strokeLinecap:"round",fill:"none",strokeLinejoin:"round",points:"-5,-4 0,0 -5,4"})},Ttt=({color:e="none",strokeWidth:t=1})=>{const n={strokeWidth:t,...e&&{stroke:e,fill:e}};return o.jsx("polyline",{className:"arrowclosed",style:n,strokeLinecap:"round",strokeLinejoin:"round",points:"-5,-4 0,0 -5,4 -5,-4"})},dK={[RS.Arrow]:Ctt,[RS.ArrowClosed]:Ttt};function Att(e){const t=ss();return p.useMemo(()=>{var r,s;return Object.prototype.hasOwnProperty.call(dK,e)?dK[e]:((s=(r=t.getState()).onError)==null||s.call(r,"009",Fu.error009(e)),null)},[e])}const _tt=({id:e,type:t,color:n,width:i=12.5,height:r=12.5,markerUnits:s="strokeWidth",strokeWidth:a,orient:l="auto-start-reverse"})=>{const c=Att(t);return c?o.jsx("marker",{className:"react-flow__arrowhead",id:e,markerWidth:`${i}`,markerHeight:`${r}`,viewBox:"-10 -10 20 20",markerUnits:s,orient:l,refX:"0",refY:"0",children:o.jsx(c,{color:n,strokeWidth:a})}):null},vwe=({defaultColor:e,rfId:t})=>{const n=_i(s=>s.edges),i=_i(s=>s.defaultEdgeOptions),r=p.useMemo(()=>kJe(n,{id:t,defaultColor:e,defaultMarkerStart:i==null?void 0:i.markerStart,defaultMarkerEnd:i==null?void 0:i.markerEnd}),[n,i,t,e]);return r.length?o.jsx("svg",{className:"react-flow__marker","aria-hidden":"true",children:o.jsx("defs",{children:r.map(s=>o.jsx(_tt,{id:s.id,type:s.type,color:s.color,width:s.width,height:s.height,markerUnits:s.markerUnits,strokeWidth:s.strokeWidth,orient:s.orient},s.id))})}):null};vwe.displayName="MarkerDefinitions";var Ntt=p.memo(vwe);function xwe({x:e,y:t,label:n,labelStyle:i,labelShowBg:r=!0,labelBgStyle:s,labelBgPadding:a=[2,4],labelBgBorderRadius:l=2,children:c,className:u,...d}){const[f,h]=p.useState({x:1,y:0,width:0,height:0}),m=ta(["react-flow__edge-textwrapper",u]),g=p.useRef(null);return p.useEffect(()=>{if(g.current){const b=g.current.getBBox();h({x:b.x,y:b.y,width:b.width,height:b.height})}},[n]),n?o.jsxs("g",{transform:`translate(${e-f.width/2} ${t-f.height/2})`,className:m,visibility:f.width?"visible":"hidden",...d,children:[r&&o.jsx("rect",{width:f.width+2*a[0],x:-a[0],y:-a[1],height:f.height+2*a[1],className:"react-flow__edge-textbg",style:s,rx:l,ry:l}),o.jsx("text",{className:"react-flow__edge-text",y:f.height/2,dy:"0.3em",ref:g,style:i,children:n}),c]}):null}xwe.displayName="EdgeText";const jtt=p.memo(xwe);function sE({path:e,labelX:t,labelY:n,label:i,labelStyle:r,labelShowBg:s,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c,interactionWidth:u=20,...d}){return o.jsxs(o.Fragment,{children:[o.jsx("path",{...d,d:e,fill:"none",className:ta(["react-flow__edge-path",d.className])}),u?o.jsx("path",{d:e,fill:"none",strokeOpacity:0,strokeWidth:u,className:"react-flow__edge-interaction"}):null,i&&Au(t)&&Au(n)?o.jsx(jtt,{x:t,y:n,label:i,labelStyle:r,labelShowBg:s,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c}):null]})}function fK({pos:e,x1:t,y1:n,x2:i,y2:r}){return e===sn.Left||e===sn.Right?[.5*(t+i),n]:[t,.5*(n+r)]}function wwe({sourceX:e,sourceY:t,sourcePosition:n=sn.Bottom,targetX:i,targetY:r,targetPosition:s=sn.Top}){const[a,l]=fK({pos:n,x1:e,y1:t,x2:i,y2:r}),[c,u]=fK({pos:s,x1:i,y1:r,x2:e,y2:t}),[d,f,h,m]=U1e({sourceX:e,sourceY:t,targetX:i,targetY:r,sourceControlX:a,sourceControlY:l,targetControlX:c,targetControlY:u});return[`M${e},${t} C${a},${l} ${c},${u} ${i},${r}`,d,f,h,m]}function Owe(e){return p.memo(({id:t,sourceX:n,sourceY:i,targetX:r,targetY:s,sourcePosition:a,targetPosition:l,label:c,labelStyle:u,labelShowBg:d,labelBgStyle:f,labelBgPadding:h,labelBgBorderRadius:m,style:g,markerEnd:b,markerStart:v,interactionWidth:y})=>{const[x,O,w]=wwe({sourceX:n,sourceY:i,sourcePosition:a,targetX:r,targetY:s,targetPosition:l}),k=e.isInternal?void 0:t;return o.jsx(sE,{id:k,path:x,labelX:O,labelY:w,label:c,labelStyle:u,labelShowBg:d,labelBgStyle:f,labelBgPadding:h,labelBgBorderRadius:m,style:g,markerEnd:b,markerStart:v,interactionWidth:y})})}const Rtt=Owe({isInternal:!1}),Swe=Owe({isInternal:!0});Rtt.displayName="SimpleBezierEdge";Swe.displayName="SimpleBezierEdgeInternal";function kwe(e){return p.memo(({id:t,sourceX:n,sourceY:i,targetX:r,targetY:s,label:a,labelStyle:l,labelShowBg:c,labelBgStyle:u,labelBgPadding:d,labelBgBorderRadius:f,style:h,sourcePosition:m=sn.Bottom,targetPosition:g=sn.Top,markerEnd:b,markerStart:v,pathOptions:y,interactionWidth:x})=>{const[O,w,k]=J_({sourceX:n,sourceY:i,sourcePosition:m,targetX:r,targetY:s,targetPosition:g,borderRadius:y==null?void 0:y.borderRadius,offset:y==null?void 0:y.offset,stepPosition:y==null?void 0:y.stepPosition}),S=e.isInternal?void 0:t;return o.jsx(sE,{id:S,path:O,labelX:w,labelY:k,label:a,labelStyle:l,labelShowBg:c,labelBgStyle:u,labelBgPadding:d,labelBgBorderRadius:f,style:h,markerEnd:b,markerStart:v,interactionWidth:x})})}const Ewe=kwe({isInternal:!1}),Cwe=kwe({isInternal:!0});Ewe.displayName="SmoothStepEdge";Cwe.displayName="SmoothStepEdgeInternal";function Twe(e){return p.memo(({id:t,...n})=>{var r;const i=e.isInternal?void 0:t;return o.jsx(Ewe,{...n,id:i,pathOptions:p.useMemo(()=>{var s;return{borderRadius:0,offset:(s=n.pathOptions)==null?void 0:s.offset}},[(r=n.pathOptions)==null?void 0:r.offset])})})}const Itt=Twe({isInternal:!1}),Awe=Twe({isInternal:!0});Itt.displayName="StepEdge";Awe.displayName="StepEdgeInternal";function _we(e){return p.memo(({id:t,sourceX:n,sourceY:i,targetX:r,targetY:s,label:a,labelStyle:l,labelShowBg:c,labelBgStyle:u,labelBgPadding:d,labelBgBorderRadius:f,style:h,markerEnd:m,markerStart:g,interactionWidth:b})=>{const[v,y,x]=V1e({sourceX:n,sourceY:i,targetX:r,targetY:s}),O=e.isInternal?void 0:t;return o.jsx(sE,{id:O,path:v,labelX:y,labelY:x,label:a,labelStyle:l,labelShowBg:c,labelBgStyle:u,labelBgPadding:d,labelBgBorderRadius:f,style:h,markerEnd:m,markerStart:g,interactionWidth:b})})}const Ptt=_we({isInternal:!1}),Nwe=_we({isInternal:!0});Ptt.displayName="StraightEdge";Nwe.displayName="StraightEdgeInternal";function jwe(e){return p.memo(({id:t,sourceX:n,sourceY:i,targetX:r,targetY:s,sourcePosition:a=sn.Bottom,targetPosition:l=sn.Top,label:c,labelStyle:u,labelShowBg:d,labelBgStyle:f,labelBgPadding:h,labelBgBorderRadius:m,style:g,markerEnd:b,markerStart:v,pathOptions:y,interactionWidth:x})=>{const[O,w,k]=Q1e({sourceX:n,sourceY:i,sourcePosition:a,targetX:r,targetY:s,targetPosition:l,curvature:y==null?void 0:y.curvature}),S=e.isInternal?void 0:t;return o.jsx(sE,{id:S,path:O,labelX:w,labelY:k,label:c,labelStyle:u,labelShowBg:d,labelBgStyle:f,labelBgPadding:h,labelBgBorderRadius:m,style:g,markerEnd:b,markerStart:v,interactionWidth:x})})}const Dtt=jwe({isInternal:!1}),Rwe=jwe({isInternal:!0});Dtt.displayName="BezierEdge";Rwe.displayName="BezierEdgeInternal";const hK={default:Rwe,straight:Nwe,step:Awe,smoothstep:Cwe,simplebezier:Swe},pK={sourceX:null,sourceY:null,targetX:null,targetY:null,sourcePosition:null,targetPosition:null},Mtt=(e,t,n)=>n===sn.Left?e-t:n===sn.Right?e+t:e,Ltt=(e,t,n)=>n===sn.Top?e-t:n===sn.Bottom?e+t:e,mK="react-flow__edgeupdater";function gK({position:e,centerX:t,centerY:n,radius:i=10,onMouseDown:r,onMouseEnter:s,onMouseOut:a,type:l}){return o.jsx("circle",{onMouseDown:r,onMouseEnter:s,onMouseOut:a,className:ta([mK,`${mK}-${l}`]),cx:Mtt(t,i,e),cy:Ltt(n,i,e),r:i,stroke:"transparent",fill:"transparent"})}function $tt({isReconnectable:e,reconnectRadius:t,edge:n,sourceX:i,sourceY:r,targetX:s,targetY:a,sourcePosition:l,targetPosition:c,onReconnect:u,onReconnectStart:d,onReconnectEnd:f,setReconnecting:h,setUpdateHover:m}){const g=ss(),b=(w,k)=>{if(w.button!==0)return;const{autoPanOnConnect:S,domNode:E,connectionMode:C,connectionRadius:N,lib:_,onConnectStart:j,cancelConnection:A,nodeLookup:F,rfId:T,panBy:P,updateConnection:R}=g.getState(),L=k.type==="target",M=(H,K)=>{h(!1),f==null||f(H,n,k.type,K)},U=H=>u==null?void 0:u(n,H),I=(H,K)=>{h(!0),d==null||d(w,n,k.type),j==null||j(H,K)};d6.onPointerDown(w.nativeEvent,{autoPanOnConnect:S,connectionMode:C,connectionRadius:N,domNode:E,handleId:k.id,nodeId:k.nodeId,nodeLookup:F,isTarget:L,edgeUpdaterType:k.type,lib:_,flowId:T,cancelConnection:A,panBy:P,isValidConnection:(...H)=>{var K,Q;return((Q=(K=g.getState()).isValidConnection)==null?void 0:Q.call(K,...H))??!0},onConnect:U,onConnectStart:I,onConnectEnd:(...H)=>{var K,Q;return(Q=(K=g.getState()).onConnectEnd)==null?void 0:Q.call(K,...H)},onReconnectEnd:M,updateConnection:R,getTransform:()=>g.getState().transform,getFromHandle:()=>g.getState().connection.fromHandle,dragThreshold:g.getState().connectionDragThreshold,handleDomNode:w.currentTarget})},v=w=>b(w,{nodeId:n.target,id:n.targetHandle??null,type:"target"}),y=w=>b(w,{nodeId:n.source,id:n.sourceHandle??null,type:"source"}),x=()=>m(!0),O=()=>m(!1);return o.jsxs(o.Fragment,{children:[(e===!0||e==="source")&&o.jsx(gK,{position:l,centerX:i,centerY:r,radius:t,onMouseDown:v,onMouseEnter:x,onMouseOut:O,type:"source"}),(e===!0||e==="target")&&o.jsx(gK,{position:c,centerX:s,centerY:a,radius:t,onMouseDown:y,onMouseEnter:x,onMouseOut:O,type:"target"})]})}function Ftt({id:e,edgesFocusable:t,edgesReconnectable:n,elementsSelectable:i,onClick:r,onDoubleClick:s,onContextMenu:a,onMouseEnter:l,onMouseMove:c,onMouseLeave:u,reconnectRadius:d,onReconnect:f,onReconnectStart:h,onReconnectEnd:m,rfId:g,edgeTypes:b,noPanClassName:v,onError:y,disableKeyboardA11y:x}){let O=_i(X=>X.edgeLookup.get(e));const w=_i(X=>X.defaultEdgeOptions);O=w?{...w,...O}:O;let k=O.type||"default",S=(b==null?void 0:b[k])||hK[k];S===void 0&&(y==null||y("011",Fu.error011(k)),k="default",S=(b==null?void 0:b.default)||hK.default);const E=!!(O.focusable||t&&typeof O.focusable>"u"),C=typeof f<"u"&&(O.reconnectable||n&&typeof O.reconnectable>"u"),N=!!(O.selectable||i&&typeof O.selectable>"u"),_=p.useRef(null),[j,A]=p.useState(!1),[F,T]=p.useState(!1),P=ss(),{zIndex:R,sourceX:L,sourceY:M,targetX:U,targetY:I,sourcePosition:H,targetPosition:K}=_i(p.useCallback(X=>{const ae=X.nodeLookup.get(O.source),ue=X.nodeLookup.get(O.target);if(!ae||!ue)return{zIndex:O.zIndex,...pK};const Oe=SJe({id:e,sourceNode:ae,targetNode:ue,sourceHandle:O.sourceHandle||null,targetHandle:O.targetHandle||null,connectionMode:X.connectionMode,onError:y});return{zIndex:mJe({selected:O.selected,zIndex:O.zIndex,sourceNode:ae,targetNode:ue,elevateOnSelect:X.elevateEdgesOnSelect,zIndexMode:X.zIndexMode}),...Oe||pK}},[O.source,O.target,O.sourceHandle,O.targetHandle,O.selected,O.zIndex]),rs),Q=p.useMemo(()=>O.markerStart?`url('#${c6(O.markerStart,g)}')`:void 0,[O.markerStart,g]),q=p.useMemo(()=>O.markerEnd?`url('#${c6(O.markerEnd,g)}')`:void 0,[O.markerEnd,g]);if(O.hidden||L===null||M===null||U===null||I===null)return null;const B=X=>{var ke;const{addSelectedEdges:ae,unselectNodesAndEdges:ue,multiSelectionActive:Oe}=P.getState();N&&(P.setState({nodesSelectionActive:!1}),O.selected&&Oe?(ue({nodes:[],edges:[O]}),(ke=_.current)==null||ke.blur()):ae([e])),r&&r(X,O)},ee=s?X=>{s(X,{...O})}:void 0,le=a?X=>{a(X,{...O})}:void 0,se=l?X=>{l(X,{...O})}:void 0,re=c?X=>{c(X,{...O})}:void 0,ge=u?X=>{u(X,{...O})}:void 0,W=X=>{var ae;if(!x&&A1e.includes(X.key)&&N){const{unselectNodesAndEdges:ue,addSelectedEdges:Oe}=P.getState();X.key==="Escape"?((ae=_.current)==null||ae.blur(),ue({edges:[O]})):Oe([e])}};return o.jsx("svg",{style:{zIndex:R},children:o.jsxs("g",{className:ta(["react-flow__edge",`react-flow__edge-${k}`,O.className,v,{selected:O.selected,animated:O.animated,inactive:!N&&!r,updating:j,selectable:N}]),onClick:B,onDoubleClick:ee,onContextMenu:le,onMouseEnter:se,onMouseMove:re,onMouseLeave:ge,onKeyDown:E?W:void 0,tabIndex:E?0:void 0,role:O.ariaRole??(E?"group":"img"),"aria-roledescription":"edge","data-id":e,"data-testid":`rf__edge-${e}`,"aria-label":O.ariaLabel===null?void 0:O.ariaLabel||`Edge from ${O.source} to ${O.target}`,"aria-describedby":E?`${owe}-${g}`:void 0,ref:_,...O.domAttributes,children:[!F&&o.jsx(S,{id:e,source:O.source,target:O.target,type:O.type,selected:O.selected,animated:O.animated,selectable:N,deletable:O.deletable??!0,label:O.label,labelStyle:O.labelStyle,labelShowBg:O.labelShowBg,labelBgStyle:O.labelBgStyle,labelBgPadding:O.labelBgPadding,labelBgBorderRadius:O.labelBgBorderRadius,sourceX:L,sourceY:M,targetX:U,targetY:I,sourcePosition:H,targetPosition:K,data:O.data,style:O.style,sourceHandleId:O.sourceHandle,targetHandleId:O.targetHandle,markerStart:Q,markerEnd:q,pathOptions:"pathOptions"in O?O.pathOptions:void 0,interactionWidth:O.interactionWidth}),C&&o.jsx($tt,{edge:O,isReconnectable:C,reconnectRadius:d,onReconnect:f,onReconnectStart:h,onReconnectEnd:m,sourceX:L,sourceY:M,targetX:U,targetY:I,sourcePosition:H,targetPosition:K,setUpdateHover:A,setReconnecting:T})]})})}var Btt=p.memo(Ftt);const Utt=e=>({edgesFocusable:e.edgesFocusable,edgesReconnectable:e.edgesReconnectable,elementsSelectable:e.elementsSelectable,connectionMode:e.connectionMode,onError:e.onError});function Iwe({defaultMarkerColor:e,onlyRenderVisibleElements:t,rfId:n,edgeTypes:i,noPanClassName:r,onReconnect:s,onEdgeContextMenu:a,onEdgeMouseEnter:l,onEdgeMouseMove:c,onEdgeMouseLeave:u,onEdgeClick:d,reconnectRadius:f,onEdgeDoubleClick:h,onReconnectStart:m,onReconnectEnd:g,disableKeyboardA11y:b}){const{edgesFocusable:v,edgesReconnectable:y,elementsSelectable:x,onError:O}=_i(Utt,rs),w=Ett(t);return o.jsxs("div",{className:"react-flow__edges",children:[o.jsx(Ntt,{defaultColor:e,rfId:n}),w.map(k=>o.jsx(Btt,{id:k,edgesFocusable:v,edgesReconnectable:y,elementsSelectable:x,noPanClassName:r,onReconnect:s,onContextMenu:a,onMouseEnter:l,onMouseMove:c,onMouseLeave:u,onClick:d,reconnectRadius:f,onDoubleClick:h,onReconnectStart:m,onReconnectEnd:g,rfId:n,onError:O,edgeTypes:i,disableKeyboardA11y:b},k))]})}Iwe.displayName="EdgeRenderer";const Qtt=p.memo(Iwe),ztt=e=>`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]})`;function Vtt({children:e}){const t=_i(ztt);return o.jsx("div",{className:"react-flow__viewport xyflow__viewport react-flow__container",style:{transform:t},children:e})}function Htt(e){const t=$R(),n=p.useRef(!1);p.useEffect(()=>{!n.current&&t.viewportInitialized&&e&&(setTimeout(()=>e(t),1),n.current=!0)},[e,t.viewportInitialized])}const qtt=e=>{var t;return(t=e.panZoom)==null?void 0:t.syncViewport};function Wtt(e){const t=_i(qtt),n=ss();return p.useEffect(()=>{e&&(t==null||t(e),n.setState({transform:[e.x,e.y,e.zoom]}))},[e,t]),null}function Gtt(e){return e.connection.inProgress?{...e.connection,to:$x(e.connection.to,e.transform)}:{...e.connection}}function Ktt(e){return Gtt}function Xtt(e){const t=Ktt();return _i(t,rs)}const Ytt=e=>({nodesConnectable:e.nodesConnectable,isValid:e.connection.isValid,inProgress:e.connection.inProgress,width:e.width,height:e.height});function Ztt({containerStyle:e,style:t,type:n,component:i}){const{nodesConnectable:r,width:s,height:a,isValid:l,inProgress:c}=_i(Ytt,rs);return!(s&&r&&c)?null:o.jsx("svg",{style:e,width:s,height:a,className:"react-flow__connectionline react-flow__container",children:o.jsx("g",{className:ta(["react-flow__connection",j1e(l)]),children:o.jsx(Pwe,{style:t,type:n,CustomComponent:i,isValid:l})})})}const Pwe=({style:e,type:t=Np.Bezier,CustomComponent:n,isValid:i})=>{const{inProgress:r,from:s,fromNode:a,fromHandle:l,fromPosition:c,to:u,toNode:d,toHandle:f,toPosition:h,pointer:m}=Xtt();if(!r)return;if(n)return o.jsx(n,{connectionLineType:t,connectionLineStyle:e,fromNode:a,fromHandle:l,fromX:s.x,fromY:s.y,toX:u.x,toY:u.y,fromPosition:c,toPosition:h,connectionStatus:j1e(i),toNode:d,toHandle:f,pointer:m});let g="";const b={sourceX:s.x,sourceY:s.y,sourcePosition:c,targetX:u.x,targetY:u.y,targetPosition:h};switch(t){case Np.Bezier:[g]=Q1e(b);break;case Np.SimpleBezier:[g]=wwe(b);break;case Np.Step:[g]=J_({...b,borderRadius:0});break;case Np.SmoothStep:[g]=J_(b);break;default:[g]=V1e(b)}return o.jsx("path",{d:g,fill:"none",className:"react-flow__connection-path",style:e})};Pwe.displayName="ConnectionLine";const Jtt={};function bK(e=Jtt){p.useRef(e),ss(),p.useEffect(()=>{},[e])}function ent(){ss(),p.useRef(!1),p.useEffect(()=>{},[])}function Dwe({nodeTypes:e,edgeTypes:t,onInit:n,onNodeClick:i,onEdgeClick:r,onNodeDoubleClick:s,onEdgeDoubleClick:a,onNodeMouseEnter:l,onNodeMouseMove:c,onNodeMouseLeave:u,onNodeContextMenu:d,onSelectionContextMenu:f,onSelectionStart:h,onSelectionEnd:m,connectionLineType:g,connectionLineStyle:b,connectionLineComponent:v,connectionLineContainerStyle:y,selectionKeyCode:x,selectionOnDrag:O,selectionMode:w,multiSelectionKeyCode:k,panActivationKeyCode:S,zoomActivationKeyCode:E,deleteKeyCode:C,onlyRenderVisibleElements:N,elementsSelectable:_,defaultViewport:j,translateExtent:A,minZoom:F,maxZoom:T,preventScrolling:P,defaultMarkerColor:R,zoomOnScroll:L,zoomOnPinch:M,panOnScroll:U,panOnScrollSpeed:I,panOnScrollMode:H,zoomOnDoubleClick:K,panOnDrag:Q,autoPanOnSelection:q,onPaneClick:B,onPaneMouseEnter:ee,onPaneMouseMove:le,onPaneMouseLeave:se,onPaneScroll:re,onPaneContextMenu:ge,paneClickDistance:W,nodeClickDistance:X,onEdgeContextMenu:ae,onEdgeMouseEnter:ue,onEdgeMouseMove:Oe,onEdgeMouseLeave:ke,reconnectRadius:st,onReconnect:Le,onReconnectStart:Me,onReconnectEnd:Ie,noDragClassName:qe,noWheelClassName:Ae,noPanClassName:ze,disableKeyboardA11y:Ee,nodeExtent:De,rfId:J,viewport:he,onViewportChange:_e}){return bK(e),bK(t),ent(),Htt(n),Wtt(he),o.jsx(mtt,{onPaneClick:B,onPaneMouseEnter:ee,onPaneMouseMove:le,onPaneMouseLeave:se,onPaneContextMenu:ge,onPaneScroll:re,paneClickDistance:W,deleteKeyCode:C,selectionKeyCode:x,selectionOnDrag:O,selectionMode:w,onSelectionStart:h,onSelectionEnd:m,multiSelectionKeyCode:k,panActivationKeyCode:S,zoomActivationKeyCode:E,elementsSelectable:_,zoomOnScroll:L,zoomOnPinch:M,zoomOnDoubleClick:K,panOnScroll:U,panOnScrollSpeed:I,panOnScrollMode:H,panOnDrag:Q,autoPanOnSelection:q,defaultViewport:j,translateExtent:A,minZoom:F,maxZoom:T,onSelectionContextMenu:f,preventScrolling:P,noDragClassName:qe,noWheelClassName:Ae,noPanClassName:ze,disableKeyboardA11y:Ee,onViewportChange:_e,isControlledViewport:!!he,children:o.jsxs(Vtt,{children:[o.jsx(Qtt,{edgeTypes:t,onEdgeClick:r,onEdgeDoubleClick:a,onReconnect:Le,onReconnectStart:Me,onReconnectEnd:Ie,onlyRenderVisibleElements:N,onEdgeContextMenu:ae,onEdgeMouseEnter:ue,onEdgeMouseMove:Oe,onEdgeMouseLeave:ke,reconnectRadius:st,defaultMarkerColor:R,noPanClassName:ze,disableKeyboardA11y:Ee,rfId:J}),o.jsx(Ztt,{style:b,type:g,component:v,containerStyle:y}),o.jsx("div",{className:"react-flow__edgelabel-renderer"}),o.jsx(ktt,{nodeTypes:e,onNodeClick:i,onNodeDoubleClick:s,onNodeMouseEnter:l,onNodeMouseMove:c,onNodeMouseLeave:u,onNodeContextMenu:d,nodeClickDistance:X,onlyRenderVisibleElements:N,noPanClassName:ze,noDragClassName:qe,disableKeyboardA11y:Ee,nodeExtent:De,rfId:J}),o.jsx("div",{className:"react-flow__viewport-portal"})]})})}Dwe.displayName="GraphView";const tnt=p.memo(Dwe),nnt=M1e(),yK=({nodes:e,edges:t,defaultNodes:n,defaultEdges:i,width:r,height:s,fitView:a,fitViewOptions:l,minZoom:c=.5,maxZoom:u=2,nodeOrigin:d,nodeExtent:f,zIndexMode:h="basic"}={})=>{const m=new Map,g=new Map,b=new Map,v=new Map,y=i??t??[],x=n??e??[],O=d??[0,0],w=f??NS;W1e(b,v,y);const{nodesInitialized:k}=u6(x,m,g,{nodeOrigin:O,nodeExtent:w,zIndexMode:h});let S=[0,0,1];if(a&&r&&s){const E=iE(m,{filter:j=>!!((j.width||j.initialWidth)&&(j.height||j.initialHeight))}),{x:C,y:N,zoom:_}=oB(E,r,s,c,u,(l==null?void 0:l.padding)??.1);S=[C,N,_]}return{rfId:"1",width:r??0,height:s??0,transform:S,nodes:x,nodesInitialized:k,nodeLookup:m,parentLookup:g,edges:y,edgeLookup:v,connectionLookup:b,onNodesChange:null,onEdgesChange:null,hasDefaultNodes:n!==void 0,hasDefaultEdges:i!==void 0,panZoom:null,minZoom:c,maxZoom:u,translateExtent:NS,nodeExtent:w,nodesSelectionActive:!1,userSelectionActive:!1,userSelectionRect:null,connectionMode:Vv.Strict,domNode:null,paneDragging:!1,noPanClassName:"nopan",nodeOrigin:O,nodeDragThreshold:1,connectionDragThreshold:1,snapGrid:[15,15],snapToGrid:!1,nodesDraggable:!0,nodesConnectable:!0,nodesFocusable:!0,edgesFocusable:!0,edgesReconnectable:!0,elementsSelectable:!0,elevateNodesOnSelect:!0,elevateEdgesOnSelect:!0,selectNodesOnDrag:!0,multiSelectionActive:!1,fitViewQueued:a??!1,fitViewOptions:l,fitViewResolver:null,connection:{...N1e},connectionClickStartHandle:null,connectOnClick:!0,ariaLiveMessage:"",autoPanOnConnect:!0,autoPanOnNodeDrag:!0,autoPanOnNodeFocus:!0,autoPanSpeed:15,connectionRadius:20,onError:nnt,isValidConnection:void 0,onSelectionChangeHandlers:[],lib:"react",debug:!1,ariaLabelConfig:_1e,zIndexMode:h,onNodesChangeMiddlewareMap:new Map,onEdgesChangeMiddlewareMap:new Map}},int=({nodes:e,edges:t,defaultNodes:n,defaultEdges:i,width:r,height:s,fitView:a,fitViewOptions:l,minZoom:c,maxZoom:u,nodeOrigin:d,nodeExtent:f,zIndexMode:h})=>bet((m,g)=>{async function b(){const{nodeLookup:v,panZoom:y,fitViewOptions:x,fitViewResolver:O,width:w,height:k,minZoom:S,maxZoom:E}=g();y&&(await lJe({nodes:v,width:w,height:k,panZoom:y,minZoom:S,maxZoom:E},x),O==null||O.resolve(!0),m({fitViewResolver:null}))}return{...yK({nodes:e,edges:t,width:r,height:s,fitView:a,fitViewOptions:l,minZoom:c,maxZoom:u,nodeOrigin:d,nodeExtent:f,defaultNodes:n,defaultEdges:i,zIndexMode:h}),setNodes:v=>{const{nodeLookup:y,parentLookup:x,nodeOrigin:O,elevateNodesOnSelect:w,fitViewQueued:k,zIndexMode:S,nodesSelectionActive:E}=g(),{nodesInitialized:C,hasSelectedNodes:N}=u6(v,y,x,{nodeOrigin:O,nodeExtent:f,elevateNodesOnSelect:w,checkEquality:!0,zIndexMode:S}),_=E&&N;k&&C?(b(),m({nodes:v,nodesInitialized:C,fitViewQueued:!1,fitViewOptions:void 0,nodesSelectionActive:_})):m({nodes:v,nodesInitialized:C,nodesSelectionActive:_})},setEdges:v=>{const{connectionLookup:y,edgeLookup:x}=g();W1e(y,x,v),m({edges:v})},setDefaultNodesAndEdges:(v,y)=>{if(v){const{setNodes:x}=g();x(v),m({hasDefaultNodes:!0})}if(y){const{setEdges:x}=g();x(y),m({hasDefaultEdges:!0})}},updateNodeInternals:v=>{const{triggerNodeChanges:y,nodeLookup:x,parentLookup:O,domNode:w,nodeOrigin:k,nodeExtent:S,debug:E,fitViewQueued:C,zIndexMode:N}=g(),{changes:_,updatedInternals:j}=jJe(v,x,O,w,k,S,N);j&&(TJe(x,O,{nodeOrigin:k,nodeExtent:S,zIndexMode:N}),C?(b(),m({fitViewQueued:!1,fitViewOptions:void 0})):m({}),(_==null?void 0:_.length)>0&&(E&&console.log("React Flow: trigger node changes",_),y==null||y(_)))},updateNodePositions:(v,y=!1)=>{const x=[];let O=[];const{nodeLookup:w,triggerNodeChanges:k,connection:S,updateConnection:E,onNodesChangeMiddlewareMap:C}=g();for(const[N,_]of v){const j=w.get(N),A=!!(j!=null&&j.expandParent&&(j!=null&&j.parentId)&&(_!=null&&_.position)),F={id:N,type:"position",position:A?{x:Math.max(0,_.position.x),y:Math.max(0,_.position.y)}:_.position,dragging:y};if(j&&S.inProgress&&S.fromNode.id===j.id){const T=kb(j,S.fromHandle,sn.Left,!0);E({...S,from:T})}A&&j.parentId&&x.push({id:N,parentId:j.parentId,rect:{..._.internals.positionAbsolute,width:_.measured.width??0,height:_.measured.height??0}}),O.push(F)}if(x.length>0){const{parentLookup:N,nodeOrigin:_}=g(),j=pB(x,w,N,_);O.push(...j)}for(const N of C.values())O=N(O);k(O)},triggerNodeChanges:v=>{const{onNodesChange:y,setNodes:x,nodes:O,hasDefaultNodes:w,debug:k}=g();if(v!=null&&v.length){if(w){const S=uwe(v,O);x(S)}k&&console.log("React Flow: trigger node changes",v),y==null||y(v)}},triggerEdgeChanges:v=>{const{onEdgesChange:y,setEdges:x,edges:O,hasDefaultEdges:w,debug:k}=g();if(v!=null&&v.length){if(w){const S=dwe(v,O);x(S)}k&&console.log("React Flow: trigger edge changes",v),y==null||y(v)}},addSelectedNodes:v=>{const{multiSelectionActive:y,edgeLookup:x,nodeLookup:O,triggerNodeChanges:w,triggerEdgeChanges:k}=g();if(y){const S=v.map(E=>Og(E,!0));w(S);return}w(_y(O,new Set([...v]),!0)),k(_y(x))},addSelectedEdges:v=>{const{multiSelectionActive:y,edgeLookup:x,nodeLookup:O,triggerNodeChanges:w,triggerEdgeChanges:k}=g();if(y){const S=v.map(E=>Og(E,!0));k(S);return}k(_y(x,new Set([...v]))),w(_y(O,new Set,!0))},unselectNodesAndEdges:({nodes:v,edges:y}={})=>{const{edges:x,nodes:O,nodeLookup:w,triggerNodeChanges:k,triggerEdgeChanges:S}=g(),E=v||O,C=y||x,N=[];for(const j of E){if(!j.selected)continue;const A=w.get(j.id);A&&(A.selected=!1),N.push(Og(j.id,!1))}const _=[];for(const j of C)j.selected&&_.push(Og(j.id,!1));k(N),S(_)},setMinZoom:v=>{const{panZoom:y,maxZoom:x}=g();y==null||y.setScaleExtent([v,x]),m({minZoom:v})},setMaxZoom:v=>{const{panZoom:y,minZoom:x}=g();y==null||y.setScaleExtent([x,v]),m({maxZoom:v})},setTranslateExtent:v=>{var y;(y=g().panZoom)==null||y.setTranslateExtent(v),m({translateExtent:v})},resetSelectedElements:()=>{const{edges:v,nodes:y,triggerNodeChanges:x,triggerEdgeChanges:O,elementsSelectable:w}=g();if(!w)return;const k=y.reduce((E,C)=>C.selected?[...E,Og(C.id,!1)]:E,[]),S=v.reduce((E,C)=>C.selected?[...E,Og(C.id,!1)]:E,[]);x(k),O(S)},setNodeExtent:v=>{const{nodes:y,nodeLookup:x,parentLookup:O,nodeOrigin:w,elevateNodesOnSelect:k,nodeExtent:S,zIndexMode:E}=g();v[0][0]===S[0][0]&&v[0][1]===S[0][1]&&v[1][0]===S[1][0]&&v[1][1]===S[1][1]||(u6(y,x,O,{nodeOrigin:w,nodeExtent:v,elevateNodesOnSelect:k,checkEquality:!1,zIndexMode:E}),m({nodeExtent:v}))},panBy:v=>{const{transform:y,width:x,height:O,panZoom:w,translateExtent:k}=g();return RJe({delta:v,panZoom:w,transform:y,translateExtent:k,width:x,height:O})},setCenter:async(v,y,x)=>{const{width:O,height:w,maxZoom:k,panZoom:S}=g();if(!S)return!1;const E=typeof(x==null?void 0:x.zoom)<"u"?x.zoom:k;return await S.setViewport({x:O/2-v*E,y:w/2-y*E,zoom:E},{duration:x==null?void 0:x.duration,ease:x==null?void 0:x.ease,interpolate:x==null?void 0:x.interpolate}),!0},cancelConnection:()=>{m({connection:{...N1e}})},updateConnection:v=>{m({connection:v})},reset:()=>m({...yK()})}},Object.is);function Mwe({initialNodes:e,initialEdges:t,defaultNodes:n,defaultEdges:i,initialWidth:r,initialHeight:s,initialMinZoom:a,initialMaxZoom:l,initialFitViewOptions:c,fitView:u,nodeOrigin:d,nodeExtent:f,zIndexMode:h,children:m}){const[g]=p.useState(()=>int({nodes:e,edges:t,defaultNodes:n,defaultEdges:i,width:r,height:s,fitView:u,minZoom:a,maxZoom:l,fitViewOptions:c,nodeOrigin:d,nodeExtent:f,zIndexMode:h}));return o.jsx(yet,{value:g,children:o.jsx(Vet,{children:m})})}function rnt({children:e,nodes:t,edges:n,defaultNodes:i,defaultEdges:r,width:s,height:a,fitView:l,fitViewOptions:c,minZoom:u,maxZoom:d,nodeOrigin:f,nodeExtent:h,zIndexMode:m}){return p.useContext(MR)?o.jsx(o.Fragment,{children:e}):o.jsx(Mwe,{initialNodes:t,initialEdges:n,defaultNodes:i,defaultEdges:r,initialWidth:s,initialHeight:a,fitView:l,initialFitViewOptions:c,initialMinZoom:u,initialMaxZoom:d,nodeOrigin:f,nodeExtent:h,zIndexMode:m,children:e})}const snt={width:"100%",height:"100%",overflow:"hidden",position:"relative",zIndex:0};function ant({nodes:e,edges:t,defaultNodes:n,defaultEdges:i,className:r,nodeTypes:s,edgeTypes:a,onNodeClick:l,onEdgeClick:c,onInit:u,onMove:d,onMoveStart:f,onMoveEnd:h,onConnect:m,onConnectStart:g,onConnectEnd:b,onClickConnectStart:v,onClickConnectEnd:y,onNodeMouseEnter:x,onNodeMouseMove:O,onNodeMouseLeave:w,onNodeContextMenu:k,onNodeDoubleClick:S,onNodeDragStart:E,onNodeDrag:C,onNodeDragStop:N,onNodesDelete:_,onEdgesDelete:j,onDelete:A,onSelectionChange:F,onSelectionDragStart:T,onSelectionDrag:P,onSelectionDragStop:R,onSelectionContextMenu:L,onSelectionStart:M,onSelectionEnd:U,onBeforeDelete:I,connectionMode:H,connectionLineType:K=Np.Bezier,connectionLineStyle:Q,connectionLineComponent:q,connectionLineContainerStyle:B,deleteKeyCode:ee="Backspace",selectionKeyCode:le="Shift",selectionOnDrag:se=!1,selectionMode:re=jS.Full,panActivationKeyCode:ge="Space",multiSelectionKeyCode:W=PS()?"Meta":"Control",zoomActivationKeyCode:X=PS()?"Meta":"Control",snapToGrid:ae,snapGrid:ue,onlyRenderVisibleElements:Oe=!1,selectNodesOnDrag:ke,nodesDraggable:st,autoPanOnNodeFocus:Le,nodesConnectable:Me,nodesFocusable:Ie,nodeOrigin:qe=lwe,edgesFocusable:Ae,edgesReconnectable:ze,elementsSelectable:Ee=!0,defaultViewport:De=Ret,minZoom:J=.5,maxZoom:he=2,translateExtent:_e=NS,preventScrolling:Ze=!0,nodeExtent:at,defaultMarkerColor:wt="#b1b1b7",zoomOnScroll:Se=!0,zoomOnPinch:ve=!0,panOnScroll:He=!1,panOnScrollSpeed:Je=.5,panOnScrollMode:Ce=rb.Free,zoomOnDoubleClick:Wt=!0,panOnDrag:ln=!0,onPaneClick:cn,onPaneMouseEnter:Ot,onPaneMouseMove:jt,onPaneMouseLeave:ot,onPaneScroll:gt,onPaneContextMenu:Pe,paneClickDistance:Et=1,nodeClickDistance:bt=0,children:Mt,onReconnect:$e,onReconnectStart:ye,onReconnectEnd:Ue,onEdgeContextMenu:Ke,onEdgeDoubleClick:ft,onEdgeMouseEnter:ut,onEdgeMouseMove:Gt,onEdgeMouseLeave:Rt,reconnectRadius:zt=10,onNodesChange:Z,onEdgesChange:Bt,noDragClassName:Qe="nodrag",noWheelClassName:tt="nowheel",noPanClassName:ht="nopan",fitView:pe,fitViewOptions:We,connectOnClick:vt,attributionPosition:vn,proOptions:Ki,defaultEdgeOptions:Fe,elevateNodesOnSelect:Pt=!0,elevateEdgesOnSelect:pn=!1,disableKeyboardA11y:Jt=!1,autoPanOnConnect:en,autoPanOnNodeDrag:Un,autoPanOnSelection:wn=!0,autoPanSpeed:oi,connectionRadius:Oi,isValidConnection:mi,onError:bn,style:qi,id:ri,nodeDragThreshold:zi,connectionDragThreshold:as,viewport:Lr,onViewportChange:_r,width:xs,height:os,colorMode:ia="light",debug:Nr,onScroll:As,ariaLabelConfig:Vs,zIndexMode:Yr="basic",...ra},sa){const ls=ri||"1",va=Met(ia),aa=p.useCallback(ws=>{ws.currentTarget.scrollTo({top:0,left:0,behavior:"instant"}),As==null||As(ws)},[As]);return o.jsx("div",{"data-testid":"rf__wrapper",...ra,onScroll:aa,style:{...qi,...snt},ref:sa,className:ta(["react-flow",r,va]),id:ri,role:"application",children:o.jsxs(rnt,{nodes:e,edges:t,width:xs,height:os,fitView:pe,fitViewOptions:We,minZoom:J,maxZoom:he,nodeOrigin:qe,nodeExtent:at,zIndexMode:Yr,children:[o.jsx(Det,{nodes:e,edges:t,defaultNodes:n,defaultEdges:i,onConnect:m,onConnectStart:g,onConnectEnd:b,onClickConnectStart:v,onClickConnectEnd:y,nodesDraggable:st,autoPanOnNodeFocus:Le,nodesConnectable:Me,nodesFocusable:Ie,edgesFocusable:Ae,edgesReconnectable:ze,elementsSelectable:Ee,elevateNodesOnSelect:Pt,elevateEdgesOnSelect:pn,minZoom:J,maxZoom:he,nodeExtent:at,onNodesChange:Z,onEdgesChange:Bt,snapToGrid:ae,snapGrid:ue,connectionMode:H,translateExtent:_e,connectOnClick:vt,defaultEdgeOptions:Fe,fitView:pe,fitViewOptions:We,onNodesDelete:_,onEdgesDelete:j,onDelete:A,onNodeDragStart:E,onNodeDrag:C,onNodeDragStop:N,onSelectionDrag:P,onSelectionDragStart:T,onSelectionDragStop:R,onMove:d,onMoveStart:f,onMoveEnd:h,noPanClassName:ht,nodeOrigin:qe,rfId:ls,autoPanOnConnect:en,autoPanOnNodeDrag:Un,autoPanSpeed:oi,onError:bn,connectionRadius:Oi,isValidConnection:mi,selectNodesOnDrag:ke,nodeDragThreshold:zi,connectionDragThreshold:as,onBeforeDelete:I,debug:Nr,ariaLabelConfig:Vs,zIndexMode:Yr}),o.jsx(tnt,{onInit:u,onNodeClick:l,onEdgeClick:c,onNodeMouseEnter:x,onNodeMouseMove:O,onNodeMouseLeave:w,onNodeContextMenu:k,onNodeDoubleClick:S,nodeTypes:s,edgeTypes:a,connectionLineType:K,connectionLineStyle:Q,connectionLineComponent:q,connectionLineContainerStyle:B,selectionKeyCode:le,selectionOnDrag:se,selectionMode:re,deleteKeyCode:ee,multiSelectionKeyCode:W,panActivationKeyCode:ge,zoomActivationKeyCode:X,onlyRenderVisibleElements:Oe,defaultViewport:De,translateExtent:_e,minZoom:J,maxZoom:he,preventScrolling:Ze,zoomOnScroll:Se,zoomOnPinch:ve,zoomOnDoubleClick:Wt,panOnScroll:He,panOnScrollSpeed:Je,panOnScrollMode:Ce,panOnDrag:ln,autoPanOnSelection:wn,onPaneClick:cn,onPaneMouseEnter:Ot,onPaneMouseMove:jt,onPaneMouseLeave:ot,onPaneScroll:gt,onPaneContextMenu:Pe,paneClickDistance:Et,nodeClickDistance:bt,onSelectionContextMenu:L,onSelectionStart:M,onSelectionEnd:U,onReconnect:$e,onReconnectStart:ye,onReconnectEnd:Ue,onEdgeContextMenu:Ke,onEdgeDoubleClick:ft,onEdgeMouseEnter:ut,onEdgeMouseMove:Gt,onEdgeMouseLeave:Rt,reconnectRadius:zt,defaultMarkerColor:wt,noDragClassName:Qe,noWheelClassName:tt,noPanClassName:ht,rfId:ls,disableKeyboardA11y:Jt,nodeExtent:at,viewport:Lr,onViewportChange:_r}),o.jsx(jet,{onSelectionChange:F}),Mt,o.jsx(Cet,{proOptions:Ki,position:vn}),o.jsx(Eet,{rfId:ls,disableKeyboardA11y:Jt})]})})}var ont=fwe(ant);const lnt=e=>{var t;return(t=e.domNode)==null?void 0:t.querySelector(".react-flow__edgelabel-renderer")};function cnt({children:e}){const t=_i(lnt);return t?Li.createPortal(e,t):null}function unt(e){const[t,n]=p.useState(e),i=p.useCallback(r=>n(s=>uwe(r,s)),[]);return[t,n,i]}function dnt(e){const[t,n]=p.useState(e),i=p.useCallback(r=>n(s=>dwe(r,s)),[]);return[t,n,i]}const fnt=e=>t=>{if(!e.includeHiddenNodes)return t.nodesInitialized;if(t.nodeLookup.size===0)return!1;for(const[,{internals:n}]of t.nodeLookup)if(n.handleBounds===void 0||!lB(n.userNode))return!1;return!0};function hnt(e={includeHiddenNodes:!1}){return _i(fnt(e))}function pnt({dimensions:e,lineWidth:t,variant:n,className:i}){return o.jsx("path",{strokeWidth:t,d:`M${e[0]/2} 0 V${e[1]} M0 ${e[1]/2} H${e[0]}`,className:ta(["react-flow__background-pattern",n,i])})}function mnt({radius:e,className:t}){return o.jsx("circle",{cx:e,cy:e,r:e,className:ta(["react-flow__background-pattern","dots",t])})}var tm;(function(e){e.Lines="lines",e.Dots="dots",e.Cross="cross"})(tm||(tm={}));const gnt={[tm.Dots]:1,[tm.Lines]:1,[tm.Cross]:6},bnt=e=>({transform:e.transform,patternId:`pattern-${e.rfId}`});function Lwe({id:e,variant:t=tm.Dots,gap:n=20,size:i,lineWidth:r=1,offset:s=0,color:a,bgColor:l,style:c,className:u,patternClassName:d}){const f=p.useRef(null),{transform:h,patternId:m}=_i(bnt,rs),g=i||gnt[t],b=t===tm.Dots,v=t===tm.Cross,y=Array.isArray(n)?n:[n,n],x=[y[0]*h[2]||1,y[1]*h[2]||1],O=g*h[2],w=Array.isArray(s)?s:[s,s],k=v?[O,O]:x,S=[w[0]*h[2]||1+k[0]/2,w[1]*h[2]||1+k[1]/2],E=`${m}${e||""}`;return o.jsxs("svg",{className:ta(["react-flow__background",u]),style:{...c,...FR,"--xy-background-color-props":l,"--xy-background-pattern-color-props":a},ref:f,"data-testid":"rf__background",children:[o.jsx("pattern",{id:E,x:h[0]%x[0],y:h[1]%x[1],width:x[0],height:x[1],patternUnits:"userSpaceOnUse",patternTransform:`translate(-${S[0]},-${S[1]})`,children:b?o.jsx(mnt,{radius:O/2,className:d}):o.jsx(pnt,{dimensions:k,lineWidth:r,variant:t,className:d})}),o.jsx("rect",{x:"0",y:"0",width:"100%",height:"100%",fill:`url(#${E})`})]})}Lwe.displayName="Background";const ynt=p.memo(Lwe);function vnt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",children:o.jsx("path",{d:"M32 18.133H18.133V32h-4.266V18.133H0v-4.266h13.867V0h4.266v13.867H32z"})})}function xnt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 5",children:o.jsx("path",{d:"M0 0h32v4.2H0z"})})}function wnt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 30",children:o.jsx("path",{d:"M3.692 4.63c0-.53.4-.938.939-.938h5.215V0H4.708C2.13 0 0 2.054 0 4.63v5.216h3.692V4.631zM27.354 0h-5.2v3.692h5.17c.53 0 .984.4.984.939v5.215H32V4.631A4.624 4.624 0 0027.354 0zm.954 24.83c0 .532-.4.94-.939.94h-5.215v3.768h5.215c2.577 0 4.631-2.13 4.631-4.707v-5.139h-3.692v5.139zm-23.677.94c-.531 0-.939-.4-.939-.94v-5.138H0v5.139c0 2.577 2.13 4.707 4.708 4.707h5.138V25.77H4.631z"})})}function Ont(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 25 32",children:o.jsx("path",{d:"M21.333 10.667H19.81V7.619C19.81 3.429 16.38 0 12.19 0 8 0 4.571 3.429 4.571 7.619v3.048H3.048A3.056 3.056 0 000 13.714v15.238A3.056 3.056 0 003.048 32h18.285a3.056 3.056 0 003.048-3.048V13.714a3.056 3.056 0 00-3.048-3.047zM12.19 24.533a3.056 3.056 0 01-3.047-3.047 3.056 3.056 0 013.047-3.048 3.056 3.056 0 013.048 3.048 3.056 3.056 0 01-3.048 3.047zm4.724-13.866H7.467V7.619c0-2.59 2.133-4.724 4.723-4.724 2.591 0 4.724 2.133 4.724 4.724v3.048z"})})}function Snt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 25 32",children:o.jsx("path",{d:"M21.333 10.667H19.81V7.619C19.81 3.429 16.38 0 12.19 0c-4.114 1.828-1.37 2.133.305 2.438 1.676.305 4.42 2.59 4.42 5.181v3.048H3.047A3.056 3.056 0 000 13.714v15.238A3.056 3.056 0 003.048 32h18.285a3.056 3.056 0 003.048-3.048V13.714a3.056 3.056 0 00-3.048-3.047zM12.19 24.533a3.056 3.056 0 01-3.047-3.047 3.056 3.056 0 013.047-3.048 3.056 3.056 0 013.048 3.048 3.056 3.056 0 01-3.048 3.047z"})})}function vT({children:e,className:t,...n}){return o.jsx("button",{type:"button",className:ta(["react-flow__controls-button",t]),...n,children:e})}const knt=e=>({isInteractive:e.nodesDraggable||e.nodesConnectable||e.elementsSelectable,minZoomReached:e.transform[2]<=e.minZoom,maxZoomReached:e.transform[2]>=e.maxZoom,ariaLabelConfig:e.ariaLabelConfig});function $we({style:e,showZoom:t=!0,showFitView:n=!0,showInteractive:i=!0,fitViewOptions:r,onZoomIn:s,onZoomOut:a,onFitView:l,onInteractiveChange:c,className:u,children:d,position:f="bottom-left",orientation:h="vertical","aria-label":m}){const g=ss(),{isInteractive:b,minZoomReached:v,maxZoomReached:y,ariaLabelConfig:x}=_i(knt,rs),{zoomIn:O,zoomOut:w,fitView:k}=$R(),S=()=>{O(),s==null||s()},E=()=>{w(),a==null||a()},C=()=>{k(r),l==null||l()},N=()=>{g.setState({nodesDraggable:!b,nodesConnectable:!b,elementsSelectable:!b}),c==null||c(!b)},_=h==="horizontal"?"horizontal":"vertical";return o.jsxs(LR,{className:ta(["react-flow__controls",_,u]),position:f,style:e,"data-testid":"rf__controls","aria-label":m??x["controls.ariaLabel"],children:[t&&o.jsxs(o.Fragment,{children:[o.jsx(vT,{onClick:S,className:"react-flow__controls-zoomin",title:x["controls.zoomIn.ariaLabel"],"aria-label":x["controls.zoomIn.ariaLabel"],disabled:y,children:o.jsx(vnt,{})}),o.jsx(vT,{onClick:E,className:"react-flow__controls-zoomout",title:x["controls.zoomOut.ariaLabel"],"aria-label":x["controls.zoomOut.ariaLabel"],disabled:v,children:o.jsx(xnt,{})})]}),n&&o.jsx(vT,{className:"react-flow__controls-fitview",onClick:C,title:x["controls.fitView.ariaLabel"],"aria-label":x["controls.fitView.ariaLabel"],children:o.jsx(wnt,{})}),i&&o.jsx(vT,{className:"react-flow__controls-interactive",onClick:N,title:x["controls.interactive.ariaLabel"],"aria-label":x["controls.interactive.ariaLabel"],children:b?o.jsx(Snt,{}):o.jsx(Ont,{})}),d]})}$we.displayName="Controls";const Ent=p.memo($we);function Cnt({id:e,x:t,y:n,width:i,height:r,style:s,color:a,strokeColor:l,strokeWidth:c,className:u,borderRadius:d,shapeRendering:f,selected:h,onClick:m}){const{background:g,backgroundColor:b}=s||{},v=a||g||b;return o.jsx("rect",{className:ta(["react-flow__minimap-node",{selected:h},u]),x:t,y:n,rx:d,ry:d,width:i,height:r,style:{fill:v,stroke:l,strokeWidth:c},shapeRendering:f,onClick:m?y=>m(y,e):void 0})}const Tnt=p.memo(Cnt),Ant=e=>e.nodes.map(t=>t.id),oM=e=>e instanceof Function?e:()=>e;function _nt({nodeStrokeColor:e,nodeColor:t,nodeClassName:n="",nodeBorderRadius:i=5,nodeStrokeWidth:r,nodeComponent:s=Tnt,onClick:a}){const l=_i(Ant,rs),c=oM(t),u=oM(e),d=oM(n),f=typeof window>"u"||window.chrome?"crispEdges":"geometricPrecision";return o.jsx(o.Fragment,{children:l.map(h=>o.jsx(jnt,{id:h,nodeColorFunc:c,nodeStrokeColorFunc:u,nodeClassNameFunc:d,nodeBorderRadius:i,nodeStrokeWidth:r,NodeComponent:s,onClick:a,shapeRendering:f},h))})}function Nnt({id:e,nodeColorFunc:t,nodeStrokeColorFunc:n,nodeClassNameFunc:i,nodeBorderRadius:r,nodeStrokeWidth:s,shapeRendering:a,NodeComponent:l,onClick:c}){const{node:u,x:d,y:f,width:h,height:m}=_i(g=>{const b=g.nodeLookup.get(e);if(!b)return{node:void 0,x:0,y:0,width:0,height:0};const v=b.internals.userNode,{x:y,y:x}=b.internals.positionAbsolute,{width:O,height:w}=Fh(v);return{node:v,x:y,y:x,width:O,height:w}},rs);return!u||u.hidden||!lB(u)?null:o.jsx(l,{x:d,y:f,width:h,height:m,style:u.style,selected:!!u.selected,className:i(u),color:t(u),borderRadius:r,strokeColor:n(u),strokeWidth:s,shapeRendering:a,onClick:c,id:u.id})}const jnt=p.memo(Nnt);var Rnt=p.memo(_nt);const Int=200,Pnt=150,Dnt=e=>!e.hidden,Mnt=e=>{const t={x:-e.transform[0]/e.transform[2],y:-e.transform[1]/e.transform[2],width:e.width/e.transform[2],height:e.height/e.transform[2]};return{viewBB:t,boundingRect:e.nodeLookup.size>0?D1e(iE(e.nodeLookup,{filter:Dnt}),t):t,rfId:e.rfId,panZoom:e.panZoom,translateExtent:e.translateExtent,flowWidth:e.width,flowHeight:e.height,ariaLabelConfig:e.ariaLabelConfig}},Lnt="react-flow__minimap-desc";function Fwe({style:e,className:t,nodeStrokeColor:n,nodeColor:i,nodeClassName:r="",nodeBorderRadius:s=5,nodeStrokeWidth:a,nodeComponent:l,bgColor:c,maskColor:u,maskStrokeColor:d,maskStrokeWidth:f,position:h="bottom-right",onClick:m,onNodeClick:g,pannable:b=!1,zoomable:v=!1,ariaLabel:y,inversePan:x,zoomStep:O=1,offsetScale:w=5}){const k=ss(),S=p.useRef(null),{boundingRect:E,viewBB:C,rfId:N,panZoom:_,translateExtent:j,flowWidth:A,flowHeight:F,ariaLabelConfig:T}=_i(Mnt,rs),P=(e==null?void 0:e.width)??Int,R=(e==null?void 0:e.height)??Pnt,L=E.width/P,M=E.height/R,U=Math.max(L,M),I=U*P,H=U*R,K=w*U,Q=E.x-(I-E.width)/2-K,q=E.y-(H-E.height)/2-K,B=I+K*2,ee=H+K*2,le=`${Lnt}-${N}`,se=p.useRef(0),re=p.useRef();se.current=U,p.useEffect(()=>{if(S.current&&_)return re.current=UJe({domNode:S.current,panZoom:_,getTransform:()=>k.getState().transform,getViewScale:()=>se.current}),()=>{var ae;(ae=re.current)==null||ae.destroy()}},[_]),p.useEffect(()=>{var ae;(ae=re.current)==null||ae.update({translateExtent:j,width:A,height:F,inversePan:x,pannable:b,zoomStep:O,zoomable:v})},[b,v,x,O,j,A,F]);const ge=m?ae=>{var ke;const[ue,Oe]=((ke=re.current)==null?void 0:ke.pointer(ae))||[0,0];m(ae,{x:ue,y:Oe})}:void 0,W=g?p.useCallback((ae,ue)=>{const Oe=k.getState().nodeLookup.get(ue).internals.userNode;g(ae,Oe)},[]):void 0,X=y??T["minimap.ariaLabel"];return o.jsx(LR,{position:h,style:{...e,"--xy-minimap-background-color-props":typeof c=="string"?c:void 0,"--xy-minimap-mask-background-color-props":typeof u=="string"?u:void 0,"--xy-minimap-mask-stroke-color-props":typeof d=="string"?d:void 0,"--xy-minimap-mask-stroke-width-props":typeof f=="number"?f*U:void 0,"--xy-minimap-node-background-color-props":typeof i=="string"?i:void 0,"--xy-minimap-node-stroke-color-props":typeof n=="string"?n:void 0,"--xy-minimap-node-stroke-width-props":typeof a=="number"?a:void 0},className:ta(["react-flow__minimap",t]),"data-testid":"rf__minimap",children:o.jsxs("svg",{width:P,height:R,viewBox:`${Q} ${q} ${B} ${ee}`,className:"react-flow__minimap-svg",role:"img","aria-labelledby":le,ref:S,onClick:ge,children:[X&&o.jsx("title",{id:le,children:X}),o.jsx(Rnt,{onClick:W,nodeColor:i,nodeStrokeColor:n,nodeBorderRadius:s,nodeClassName:r,nodeStrokeWidth:a,nodeComponent:l}),o.jsx("path",{className:"react-flow__minimap-mask",d:`M${Q-K},${q-K}h${B+K*2}v${ee+K*2}h${-B-K*2}z - M${C.x},${C.y}h${C.width}v${C.height}h${-C.width}z`,fillRule:"evenodd",pointerEvents:"none"})]})})}Fwe.displayName="MiniMap";p.memo(Fwe);const $nt=e=>t=>e?`${Math.max(1/t.transform[2],1)}`:void 0,Fnt={[Gv.Line]:"right",[Gv.Handle]:"bottom-right"};function Bnt({nodeId:e,position:t,variant:n=Gv.Handle,className:i,style:r=void 0,children:s,color:a,minWidth:l=10,minHeight:c=10,maxWidth:u=Number.MAX_VALUE,maxHeight:d=Number.MAX_VALUE,keepAspectRatio:f=!1,resizeDirection:h,autoScale:m=!0,shouldResize:g,onResizeStart:b,onResize:v,onResizeEnd:y}){const x=gwe(),O=typeof e=="string"?e:x,w=ss(),k=p.useRef(null),S=n===Gv.Handle,E=_i(p.useCallback($nt(S&&m),[S,m]),rs),C=p.useRef(null),N=t??Fnt[n];p.useEffect(()=>{if(!(!k.current||!O))return C.current||(C.current=eet({domNode:k.current,nodeId:O,getStoreItems:()=>{const{nodeLookup:j,transform:A,snapGrid:F,snapToGrid:T,nodeOrigin:P,domNode:R}=w.getState();return{nodeLookup:j,transform:A,snapGrid:F,snapToGrid:T,nodeOrigin:P,paneDomNode:R}},onChange:(j,A)=>{const{triggerNodeChanges:F,nodeLookup:T,parentLookup:P,nodeOrigin:R}=w.getState(),L=[],M={x:j.x,y:j.y},U=T.get(O);if(U&&U.expandParent&&U.parentId){const I=U.origin??R,H=j.width??U.measured.width??0,K=j.height??U.measured.height??0,Q={id:U.id,parentId:U.parentId,rect:{width:H,height:K,...L1e({x:j.x??U.position.x,y:j.y??U.position.y},{width:H,height:K},U.parentId,T,I)}},q=pB([Q],T,P,R);L.push(...q),M.x=j.x?Math.max(I[0]*H,j.x):void 0,M.y=j.y?Math.max(I[1]*K,j.y):void 0}if(M.x!==void 0&&M.y!==void 0){const I={id:O,type:"position",position:{...M}};L.push(I)}if(j.width!==void 0&&j.height!==void 0){const H={id:O,type:"dimensions",resizing:!0,setAttributes:h?h==="horizontal"?"width":"height":!0,dimensions:{width:j.width,height:j.height}};L.push(H)}for(const I of A){const H={...I,type:"position"};L.push(H)}F(L)},onEnd:({width:j,height:A})=>{const F={id:O,type:"dimensions",resizing:!1,dimensions:{width:j,height:A}};w.getState().triggerNodeChanges([F])}})),C.current.update({controlPosition:N,boundaries:{minWidth:l,minHeight:c,maxWidth:u,maxHeight:d},keepAspectRatio:f,resizeDirection:h,onResizeStart:b,onResize:v,onResizeEnd:y,shouldResize:g}),()=>{var j;(j=C.current)==null||j.destroy()}},[N,l,c,u,d,f,b,v,y,g]);const _=N.split("-");return o.jsx("div",{className:ta(["react-flow__resize-control","nodrag",..._,n,i]),ref:k,style:{...r,scale:E,...a&&{[S?"backgroundColor":"borderColor"]:a}},children:s})}p.memo(Bnt);var Bwe=Object.defineProperty,Unt=(e,t,n)=>t in e?Bwe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Qnt=(e,t)=>{for(var n in t)Bwe(e,n,{get:t[n],enumerable:!0})},znt=(e,t,n)=>Unt(e,t+"",n),Uwe={};Qnt(Uwe,{Graph:()=>au,alg:()=>gB,json:()=>zwe,version:()=>qnt});var Vnt=Object.defineProperty,Qwe=(e,t)=>{for(var n in t)Vnt(e,n,{get:t[n],enumerable:!0})},au=class{constructor(t){this._isDirected=!0,this._isMultigraph=!1,this._isCompound=!1,this._nodes={},this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={},this._nodeCount=0,this._edgeCount=0,this._defaultNodeLabelFn=()=>{},this._defaultEdgeLabelFn=()=>{},t&&(this._isDirected="directed"in t?t.directed:!0,this._isMultigraph="multigraph"in t?t.multigraph:!1,this._isCompound="compound"in t?t.compound:!1),this._isCompound&&(this._parent={},this._children={},this._children["\0"]={})}isDirected(){return this._isDirected}isMultigraph(){return this._isMultigraph}isCompound(){return this._isCompound}setGraph(t){return this._label=t,this}graph(){return this._label}setDefaultNodeLabel(t){return typeof t!="function"?this._defaultNodeLabelFn=()=>t:this._defaultNodeLabelFn=t,this}nodeCount(){return this._nodeCount}nodes(){return Object.keys(this._nodes)}sources(){return this.nodes().filter(t=>Object.keys(this._in[t]).length===0)}sinks(){return this.nodes().filter(t=>Object.keys(this._out[t]).length===0)}setNodes(t,n){return t.forEach(i=>{n!==void 0?this.setNode(i,n):this.setNode(i)}),this}setNode(t,n){return t in this._nodes?(arguments.length>1&&(this._nodes[t]=n),this):(this._nodes[t]=arguments.length>1?n:this._defaultNodeLabelFn(t),this._isCompound&&(this._parent[t]="\0",this._children[t]={},this._children["\0"][t]=!0),this._in[t]={},this._preds[t]={},this._out[t]={},this._sucs[t]={},++this._nodeCount,this)}node(t){return this._nodes[t]}hasNode(t){return t in this._nodes}removeNode(t){if(t in this._nodes){let n=i=>this.removeEdge(this._edgeObjs[i]);delete this._nodes[t],this._isCompound&&(this._removeFromParentsChildList(t),delete this._parent[t],this.children(t).forEach(i=>{this.setParent(i)}),delete this._children[t]),Object.keys(this._in[t]).forEach(n),delete this._in[t],delete this._preds[t],Object.keys(this._out[t]).forEach(n),delete this._out[t],delete this._sucs[t],--this._nodeCount}return this}setParent(t,n){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(n===void 0)n="\0";else{n+="";for(let i=n;i!==void 0;i=this.parent(i))if(i===t)throw new Error("Setting "+n+" as parent of "+t+" would create a cycle");this.setNode(n)}return this.setNode(t),this._removeFromParentsChildList(t),this._parent[t]=n,this._children[n][t]=!0,this}parent(t){if(this._isCompound){let n=this._parent[t];if(n!=="\0")return n}}children(t="\0"){if(this._isCompound){let n=this._children[t];if(n)return Object.keys(n)}else{if(t==="\0")return this.nodes();if(this.hasNode(t))return[]}return[]}predecessors(t){let n=this._preds[t];if(n)return Object.keys(n)}successors(t){let n=this._sucs[t];if(n)return Object.keys(n)}neighbors(t){let n=this.predecessors(t);if(n){let i=new Set(n);for(let r of this.successors(t))i.add(r);return Array.from(i.values())}}isLeaf(t){let n;return this.isDirected()?n=this.successors(t):n=this.neighbors(t),n.length===0}filterNodes(t){let n=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});n.setGraph(this.graph()),Object.entries(this._nodes).forEach(([s,a])=>{t(s)&&n.setNode(s,a)}),Object.values(this._edgeObjs).forEach(s=>{n.hasNode(s.v)&&n.hasNode(s.w)&&n.setEdge(s,this.edge(s))});let i={},r=s=>{let a=this.parent(s);return!a||n.hasNode(a)?(i[s]=a??void 0,a??void 0):a in i?i[a]:r(a)};return this._isCompound&&n.nodes().forEach(s=>n.setParent(s,r(s))),n}setDefaultEdgeLabel(t){return typeof t!="function"?this._defaultEdgeLabelFn=()=>t:this._defaultEdgeLabelFn=t,this}edgeCount(){return this._edgeCount}edges(){return Object.values(this._edgeObjs)}setPath(t,n){return t.reduce((i,r)=>(n!==void 0?this.setEdge(i,r,n):this.setEdge(i,r),r)),this}setEdge(t,n,i,r){let s,a,l,c,u=!1;typeof t=="object"&&t!==null&&"v"in t?(s=t.v,a=t.w,l=t.name,arguments.length===2&&(c=n,u=!0)):(s=t,a=n,l=r,arguments.length>2&&(c=i,u=!0)),s=""+s,a=""+a,l!==void 0&&(l=""+l);let d=Pw(this._isDirected,s,a,l);if(d in this._edgeLabels)return u&&(this._edgeLabels[d]=c),this;if(l!==void 0&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(s),this.setNode(a),this._edgeLabels[d]=u?c:this._defaultEdgeLabelFn(s,a,l);let f=Hnt(this._isDirected,s,a,l);return s=f.v,a=f.w,Object.freeze(f),this._edgeObjs[d]=f,vK(this._preds[a],s),vK(this._sucs[s],a),this._in[a][d]=f,this._out[s][d]=f,this._edgeCount++,this}edge(t,n,i){let r=arguments.length===1?lM(this._isDirected,t):Pw(this._isDirected,t,n,i);return this._edgeLabels[r]}edgeAsObj(t,n,i){let r=arguments.length===1?this.edge(t):this.edge(t,n,i);return typeof r!="object"?{label:r}:r}hasEdge(t,n,i){return(arguments.length===1?lM(this._isDirected,t):Pw(this._isDirected,t,n,i))in this._edgeLabels}removeEdge(t,n,i){let r=arguments.length===1?lM(this._isDirected,t):Pw(this._isDirected,t,n,i),s=this._edgeObjs[r];if(s){let a=s.v,l=s.w;delete this._edgeLabels[r],delete this._edgeObjs[r],xK(this._preds[l],a),xK(this._sucs[a],l),delete this._in[l][r],delete this._out[a][r],this._edgeCount--}return this}inEdges(t,n){return this.isDirected()?this.filterEdges(this._in[t],t,n):this.nodeEdges(t,n)}outEdges(t,n){return this.isDirected()?this.filterEdges(this._out[t],t,n):this.nodeEdges(t,n)}nodeEdges(t,n){if(t in this._nodes)return this.filterEdges({...this._in[t],...this._out[t]},t,n)}_removeFromParentsChildList(t){delete this._children[this._parent[t]][t]}filterEdges(t,n,i){if(!t)return;let r=Object.values(t);return i?r.filter(s=>s.v===n&&s.w===i||s.v===i&&s.w===n):r}};function vK(e,t){e[t]?e[t]++:e[t]=1}function xK(e,t){e[t]!==void 0&&!--e[t]&&delete e[t]}function Pw(e,t,n,i){let r=""+t,s=""+n;if(!e&&r>s){let a=r;r=s,s=a}return r+""+s+""+(i===void 0?"\0":i)}function Hnt(e,t,n,i){let r=""+t,s=""+n;if(!e&&r>s){let l=r;r=s,s=l}let a={v:r,w:s};return i&&(a.name=i),a}function lM(e,t){return Pw(e,t.v,t.w,t.name)}var qnt="4.0.1",zwe={};Qwe(zwe,{read:()=>Xnt,write:()=>Wnt});function Wnt(e){let t={options:{directed:e.isDirected(),multigraph:e.isMultigraph(),compound:e.isCompound()},nodes:Gnt(e),edges:Knt(e)},n=e.graph();return n!==void 0&&(t.value=structuredClone(n)),t}function Gnt(e){return e.nodes().map(t=>{let n=e.node(t),i=e.parent(t),r={v:t};return n!==void 0&&(r.value=n),i!==void 0&&(r.parent=i),r})}function Knt(e){return e.edges().map(t=>{let n=e.edge(t),i={v:t.v,w:t.w};return t.name!==void 0&&(i.name=t.name),n!==void 0&&(i.value=n),i})}function Xnt(e){let t=new au(e.options);return e.value!==void 0&&t.setGraph(e.value),e.nodes.forEach(n=>{t.setNode(n.v,n.value),n.parent&&t.setParent(n.v,n.parent)}),e.edges.forEach(n=>{t.setEdge({v:n.v,w:n.w,name:n.name},n.value)}),t}var gB={};Qwe(gB,{CycleException:()=>nN,bellmanFord:()=>Vwe,components:()=>Jnt,dijkstra:()=>tN,dijkstraAll:()=>nit,findCycles:()=>iit,floydWarshall:()=>sit,isAcyclic:()=>oit,postorder:()=>cit,preorder:()=>uit,prim:()=>dit,shortestPaths:()=>fit,tarjan:()=>qwe,topsort:()=>Wwe});var Ynt=()=>1;function Vwe(e,t,n,i){return Znt(e,String(t),n||Ynt,i||function(r){return e.outEdges(r)})}function Znt(e,t,n,i){let r={},s,a=0,l=e.nodes(),c=function(f){let h=n(f);r[f.v].distance+he.key)}has(e){return e in this._keyIndices}priority(e){let t=this._keyIndices[e];if(t!==void 0)return this._arr[t].priority}min(){if(this.size()===0)throw new Error("Queue underflow");return this._arr[0].key}add(e,t){let n=this._keyIndices,i=String(e);if(!(i in n)){let r=this._arr,s=r.length;return n[i]=s,r.push({key:i,priority:t}),this._decrease(s),!0}return!1}removeMin(){this._swap(0,this._arr.length-1);let e=this._arr.pop();return delete this._keyIndices[e.key],this._heapify(0),e.key}decrease(e,t){let n=this._keyIndices[e];if(n===void 0)throw new Error(`Key not found: ${e}`);let i=this._arr[n].priority;if(t>i)throw new Error(`New priority is greater than current priority. Key: ${e} Old: ${i} New: ${t}`);this._arr[n].priority=t,this._decrease(n)}_heapify(e){let t=this._arr,n=2*e,i=n+1,r=e;n>1,!(t[i].priority1;function tN(e,t,n,i){let r=function(s){return e.outEdges(s)};return tit(e,String(t),n||eit,i||r)}function tit(e,t,n,i){let r={},s=new Hwe,a,l,c=function(u){let d=u.v!==a?u.v:u.w,f=r[d],h=n(u),m=l.distance+h;if(h<0)throw new Error("dijkstra does not allow negative edge weights. Bad edge: "+u+" Weight: "+h);m0&&(a=s.removeMin(),l=r[a],l.distance!==Number.POSITIVE_INFINITY);)i(a).forEach(c);return r}function nit(e,t,n){return e.nodes().reduce(function(i,r){return i[r]=tN(e,r,t,n),i},{})}function qwe(e){let t=0,n=[],i={},r=[];function s(a){let l=i[a]={onStack:!0,lowlink:t,index:t++};if(n.push(a),e.successors(a).forEach(function(c){c in i?i[c].onStack&&(l.lowlink=Math.min(l.lowlink,i[c].index)):(s(c),l.lowlink=Math.min(l.lowlink,i[c].lowlink))}),l.lowlink===l.index){let c=[],u;do u=n.pop(),i[u].onStack=!1,c.push(u);while(a!==u);r.push(c)}}return e.nodes().forEach(function(a){a in i||s(a)}),r}function iit(e){return qwe(e).filter(function(t){return t.length>1||t.length===1&&e.hasEdge(t[0],t[0])})}var rit=()=>1;function sit(e,t,n){return ait(e,t||rit,n||function(i){return e.outEdges(i)})}function ait(e,t,n){let i={},r=e.nodes();return r.forEach(function(s){i[s]={},i[s][s]={distance:0,predecessor:""},r.forEach(function(a){s!==a&&(i[s][a]={distance:Number.POSITIVE_INFINITY,predecessor:""})}),n(s).forEach(function(a){let l=a.v===s?a.w:a.v,c=t(a);i[s][l]={distance:c,predecessor:s}})}),r.forEach(function(s){let a=i[s];r.forEach(function(l){let c=i[l];r.forEach(function(u){let d=c[s],f=a[u],h=c[u],m=d.distance+f.distance;m{var c;return(c=e.isDirected()?e.successors(l):e.neighbors(l))!=null?c:[]},a={};return t.forEach(function(l){if(!e.hasNode(l))throw new Error("Graph does not have node: "+l);r=Gwe(e,l,n==="post",a,s,i,r)}),r}function Gwe(e,t,n,i,r,s,a){return t in i||(i[t]=!0,n||(a=s(a,t)),r(t).forEach(function(l){a=Gwe(e,l,n,i,r,s,a)}),n&&(a=s(a,t))),a}function Kwe(e,t,n){return lit(e,t,n,function(i,r){return i.push(r),i},[])}function cit(e,t){return Kwe(e,t,"post")}function uit(e,t){return Kwe(e,t,"pre")}function dit(e,t){let n=new au,i={},r=new Hwe,s;function a(c){let u=c.v===s?c.w:c.v,d=r.priority(u);if(d!==void 0){let f=t(c);f0;){if(s=r.removeMin(),s in i)n.setEdge(s,i[s]);else{if(l)throw new Error("Input graph is not connected: "+e);l=!0}e.nodeEdges(s).forEach(a)}return n}function fit(e,t,n,i){return hit(e,t,n,i??(r=>{let s=e.outEdges(r);return s??[]}))}function hit(e,t,n,i){if(n===void 0)return tN(e,t,n,i);let r=!1,s=e.nodes();for(let a=0;at.setNode(n,e.node(n))),e.edges().forEach(n=>{let i=t.edge(n.v,n.w)||{weight:0,minlen:1},r=e.edge(n);t.setEdge(n.v,n.w,{weight:i.weight+r.weight,minlen:Math.max(i.minlen,r.minlen)})}),t}function Xwe(e){let t=new au({multigraph:e.isMultigraph()}).setGraph(e.graph());return e.nodes().forEach(n=>{e.children(n).length||t.setNode(n,e.node(n))}),e.edges().forEach(n=>{t.setEdge(n,e.edge(n))}),t}function wK(e,t){let n=e.x,i=e.y,r=t.x-n,s=t.y-i,a=e.width/2,l=e.height/2;if(!r&&!s)throw new Error("Not possible to find intersection inside of the rectangle");let c,u;return Math.abs(s)*a>Math.abs(r)*l?(s<0&&(l=-l),c=l*r/s,u=l):(r<0&&(a=-a),c=a,u=a*s/r),{x:n+c,y:i+u}}function aE(e){let t=MS(Zwe(e)+1).map(()=>[]);return e.nodes().forEach(n=>{let i=e.node(n),r=i.rank;r!==void 0&&(t[r]||(t[r]=[]),t[r][i.order]=n)}),t}function mit(e){let t=e.nodes().map(i=>{let r=e.node(i).rank;return r===void 0?Number.MAX_VALUE:r}),n=Cd(Math.min,t);e.nodes().forEach(i=>{let r=e.node(i);Object.hasOwn(r,"rank")&&(r.rank-=n)})}function git(e){let t=e.nodes().map(a=>e.node(a).rank).filter(a=>a!==void 0),n=Cd(Math.min,t),i=[];e.nodes().forEach(a=>{let l=e.node(a).rank-n;i[l]||(i[l]=[]),i[l].push(a)});let r=0,s=e.graph().nodeRankFactor;Array.from(i).forEach((a,l)=>{a===void 0&&l%s!==0?--r:a!==void 0&&r&&a.forEach(c=>e.node(c).rank+=r)})}function OK(e,t,n,i){let r={width:0,height:0};return arguments.length>=4&&(r.rank=n,r.order=i),Fx(e,"border",r,t)}function bit(e,t=Ywe){let n=[];for(let i=0;iYwe){let n=bit(t);return e(...n.map(i=>e(...i)))}else return e(...t)}function Zwe(e){let t=e.nodes().map(n=>{let i=e.node(n).rank;return i===void 0?Number.MIN_VALUE:i});return Cd(Math.max,t)}function yit(e,t){let n={lhs:[],rhs:[]};return e.forEach(i=>{t(i)?n.lhs.push(i):n.rhs.push(i)}),n}function Jwe(e,t){let n=Date.now();try{return t()}finally{console.log(e+" time: "+(Date.now()-n)+"ms")}}function eOe(e,t){return t()}var vit=0;function bB(e){let t=++vit;return e+(""+t)}function MS(e,t,n=1){t==null&&(t=e,e=0);let i=s=>sti[t]:n=t,Object.entries(e).reduce((i,[r,s])=>(i[r]=n(s,r),i),{})}function xit(e,t){return e.reduce((n,i,r)=>(n[i]=t[r],n),{})}var UR="\0",wit="3.0.0",Oit=class{constructor(){znt(this,"_sentinel");let e={};e._next=e._prev=e,this._sentinel=e}dequeue(){let e=this._sentinel,t=e._prev;if(t!==e)return SK(t),t}enqueue(e){let t=this._sentinel;e._prev&&e._next&&SK(e),e._next=t._next,t._next._prev=e,t._next=e,e._prev=t}toString(){let e=[],t=this._sentinel,n=t._prev;for(;n!==t;)e.push(JSON.stringify(n,Sit)),n=n._prev;return"["+e.join(", ")+"]"}};function SK(e){e._prev._next=e._next,e._next._prev=e._prev,delete e._next,delete e._prev}function Sit(e,t){if(e!=="_next"&&e!=="_prev")return t}var kit=Oit,Eit=()=>1;function Cit(e,t){if(e.nodeCount()<=1)return[];let n=Ait(e,t||Eit);return Tit(n.graph,n.buckets,n.zeroIdx).flatMap(i=>e.outEdges(i.v,i.w)||[])}function Tit(e,t,n){var i;let r=[],s=t[t.length-1],a=t[0],l;for(;e.nodeCount();){for(;l=a.dequeue();)cM(e,t,n,l);for(;l=s.dequeue();)cM(e,t,n,l);if(e.nodeCount()){for(let c=t.length-2;c>0;--c)if(l=(i=t[c])==null?void 0:i.dequeue(),l){r=r.concat(cM(e,t,n,l,!0)||[]);break}}}return r}function cM(e,t,n,i,r){let s=[],a=r?s:void 0;return(e.inEdges(i.v)||[]).forEach(l=>{let c=e.edge(l),u=e.node(l.v);r&&s.push({v:l.v,w:l.w}),u.out-=c,h6(t,n,u)}),(e.outEdges(i.v)||[]).forEach(l=>{let c=e.edge(l),u=l.w,d=e.node(u);d.in-=c,h6(t,n,d)}),e.removeNode(i.v),a}function Ait(e,t){let n=new au,i=0,r=0;e.nodes().forEach(l=>{n.setNode(l,{v:l,in:0,out:0})}),e.edges().forEach(l=>{let c=n.edge(l.v,l.w)||0,u=t(l),d=c+u;n.setEdge(l.v,l.w,d);let f=n.node(l.v),h=n.node(l.w);r=Math.max(r,f.out+=u),i=Math.max(i,h.in+=u)});let s=_it(r+i+3).map(()=>new kit),a=i+1;return n.nodes().forEach(l=>{h6(s,a,n.node(l))}),{graph:n,buckets:s,zeroIdx:a}}function h6(e,t,n){var i,r,s;n.out?n.in?(s=e[n.out-n.in+t])==null||s.enqueue(n):(r=e[e.length-1])==null||r.enqueue(n):(i=e[0])==null||i.enqueue(n)}function _it(e){let t=[];for(let n=0;n{let i=e.edge(n);e.removeEdge(n),i.forwardName=n.name,i.reversed=!0,e.setEdge(n.w,n.v,i,bB("rev"))});function t(n){return i=>n.edge(i).weight}}function jit(e){let t=[],n={},i={};function r(s){Object.hasOwn(i,s)||(i[s]=!0,n[s]=!0,e.outEdges(s).forEach(a=>{Object.hasOwn(n,a.w)?t.push(a):r(a.w)}),delete n[s])}return e.nodes().forEach(r),t}function Rit(e){e.edges().forEach(t=>{let n=e.edge(t);if(n.reversed){e.removeEdge(t);let i=n.forwardName;delete n.reversed,delete n.forwardName,e.setEdge(t.w,t.v,n,i)}})}function Iit(e){e.graph().dummyChains=[],e.edges().forEach(t=>Pit(e,t))}function Pit(e,t){let n=t.v,i=e.node(n).rank,r=t.w,s=e.node(r).rank,a=t.name,l=e.edge(t),c=l.labelRank;if(s===i+1)return;e.removeEdge(t);let u,d,f;for(f=0,++i;i{let n=e.node(t),i=n.edgeLabel,r;for(e.setEdge(n.edgeObj,i);n.dummy;)r=e.successors(t)[0],e.removeNode(t),i.points.push({x:n.x,y:n.y}),n.dummy==="edge-label"&&(i.x=n.x,i.y=n.y,i.width=n.width,i.height=n.height),t=r,n=e.node(t)})}function yB(e){let t={};function n(i){let r=e.node(i);if(Object.hasOwn(t,i))return r.rank;t[i]=!0;let s=e.outEdges(i),a=s?s.map(c=>c==null?Number.POSITIVE_INFINITY:n(c.w)-e.edge(c).minlen):[],l=Cd(Math.min,a);return l===Number.POSITIVE_INFINITY&&(l=0),r.rank=l}e.sources().forEach(n)}function Kv(e,t){return e.node(t.w).rank-e.node(t.v).rank-e.edge(t).minlen}var tOe=Mit;function Mit(e){let t=new au({directed:!1}),n=e.nodes();if(n.length===0)throw new Error("Graph must have at least one node");let i=n[0],r=e.nodeCount();t.setNode(i,{});let s,a;for(;Lit(t,e){let a=s.v,l=i===a?s.w:a;!e.hasNode(l)&&!Kv(t,s)&&(e.setNode(l,{}),e.setEdge(i,l,{}),n(l))})}return e.nodes().forEach(n),e.nodeCount()}function $it(e,t){return t.edges().reduce((n,i)=>{let r=Number.POSITIVE_INFINITY;return e.hasNode(i.v)!==e.hasNode(i.w)&&(r=Kv(t,i)),rt.node(i).rank+=n)}var{preorder:Bit,postorder:Uit}=gB,Qit=Xb;Xb.initLowLimValues=xB;Xb.initCutValues=vB;Xb.calcCutValue=nOe;Xb.leaveEdge=rOe;Xb.enterEdge=sOe;Xb.exchangeEdges=aOe;function Xb(e){e=pit(e),yB(e);let t=tOe(e);xB(t),vB(t,e);let n,i;for(;n=rOe(t);)i=sOe(t,e,n),aOe(t,e,n,i)}function vB(e,t){let n=Uit(e,e.nodes());n=n.slice(0,n.length-1),n.forEach(i=>zit(e,t,i))}function zit(e,t,n){let i=e.node(n).parent,r=e.edge(n,i);r.cutvalue=nOe(e,t,n)}function nOe(e,t,n){let i=e.node(n).parent,r=!0,s=t.edge(n,i),a=0;s||(r=!1,s=t.edge(i,n)),a=s.weight;let l=t.nodeEdges(n);return l&&l.forEach(c=>{let u=c.v===n,d=u?c.w:c.v;if(d!==i){let f=u===r,h=t.edge(c).weight;if(a+=f?h:-h,Hit(e,n,d)){let m=e.edge(n,d).cutvalue;a+=f?-m:m}}}),a}function xB(e,t){arguments.length<2&&(t=e.nodes()[0]),iOe(e,{},1,t)}function iOe(e,t,n,i,r){let s=n,a=e.node(i);t[i]=!0;let l=e.neighbors(i);return l&&l.forEach(c=>{Object.hasOwn(t,c)||(n=iOe(e,t,n,c,i))}),a.low=s,a.lim=n++,r?a.parent=r:delete a.parent,n}function rOe(e){return e.edges().find(t=>e.edge(t).cutvalue<0)}function sOe(e,t,n){let i=n.v,r=n.w;t.hasEdge(i,r)||(i=n.w,r=n.v);let s=e.node(i),a=e.node(r),l=s,c=!1;return s.lim>a.lim&&(l=a,c=!0),t.edges().filter(u=>c===kK(e,e.node(u.v),l)&&c!==kK(e,e.node(u.w),l)).reduce((u,d)=>Kv(t,d)!e.node(r).parent);if(!n)return;let i=Bit(e,[n]);i=i.slice(1),i.forEach(r=>{let s=e.node(r).parent,a=t.edge(r,s),l=!1;a||(a=t.edge(s,r),l=!0),t.node(r).rank=t.node(s).rank+(l?a.minlen:-a.minlen)})}function Hit(e,t,n){return e.hasEdge(t,n)}function kK(e,t,n){return n.low<=t.lim&&t.lim<=n.lim}var qit=Wit;function Wit(e){let t=e.graph().ranker;if(typeof t=="function")return t(e);switch(t){case"network-simplex":EK(e);break;case"tight-tree":Kit(e);break;case"longest-path":Git(e);break;case"none":break;default:EK(e)}}var Git=yB;function Kit(e){yB(e),tOe(e)}function EK(e){Qit(e)}var Xit=Yit;function Yit(e){let t=Jit(e);e.graph().dummyChains.forEach(n=>{let i=e.node(n),r=i.edgeObj,s=Zit(e,t,r.v,r.w),a=s.path,l=s.lca,c=0,u=a[c],d=!0;for(;n!==r.w;){if(i=e.node(n),d){for(;(u=a[c])!==l&&e.node(u).maxRanka||l>t[c].lim));let u=c,d=i;for(;(d=e.parent(d))!==u;)s.push(d);return{path:r.concat(s.reverse()),lca:u}}function Jit(e){let t={},n=0;function i(r){let s=n;e.children(r).forEach(i),t[r]={low:s,lim:n++}}return e.children(UR).forEach(i),t}function ert(e){let t=Fx(e,"root",{},"_root"),n=trt(e),i=Object.values(n),r=Cd(Math.max,i)-1,s=2*r+1;e.graph().nestingRoot=t,e.edges().forEach(l=>e.edge(l).minlen*=s);let a=nrt(e)+1;e.children(UR).forEach(l=>oOe(e,t,s,a,r,n,l)),e.graph().nodeRankFactor=s}function oOe(e,t,n,i,r,s,a){var l;let c=e.children(a);if(!c.length){a!==t&&e.setEdge(t,a,{weight:0,minlen:n});return}let u=OK(e,"_bt"),d=OK(e,"_bb"),f=e.node(a);e.setParent(u,a),f.borderTop=u,e.setParent(d,a),f.borderBottom=d,c.forEach(h=>{var m;oOe(e,t,n,i,r,s,h);let g=e.node(h),b=g.borderTop?g.borderTop:h,v=g.borderBottom?g.borderBottom:h,y=g.borderTop?i:2*i,x=b!==v?1:r-((m=s[a])!=null?m:0)+1;e.setEdge(u,b,{weight:y,minlen:x,nestingEdge:!0}),e.setEdge(v,d,{weight:y,minlen:x,nestingEdge:!0})}),e.parent(a)||e.setEdge(t,u,{weight:0,minlen:r+((l=s[a])!=null?l:0)})}function trt(e){let t={};function n(i,r){let s=e.children(i);s&&s.length&&s.forEach(a=>n(a,r+1)),t[i]=r}return e.children(UR).forEach(i=>n(i,1)),t}function nrt(e){return e.edges().reduce((t,n)=>t+e.edge(n).weight,0)}function irt(e){let t=e.graph();e.removeNode(t.nestingRoot),delete t.nestingRoot,e.edges().forEach(n=>{e.edge(n).nestingEdge&&e.removeEdge(n)})}var rrt=srt;function srt(e){function t(n){let i=e.children(n),r=e.node(n);if(i.length&&i.forEach(t),Object.hasOwn(r,"minRank")){r.borderLeft=[],r.borderRight=[];for(let s=r.minRank,a=r.maxRank+1;sTK(e.node(t))),e.edges().forEach(t=>TK(e.edge(t)))}function TK(e){let t=e.width;e.width=e.height,e.height=t}function lrt(e){e.nodes().forEach(t=>uM(e.node(t))),e.edges().forEach(t=>{var n;let i=e.edge(t);(n=i.points)==null||n.forEach(uM),Object.hasOwn(i,"y")&&uM(i)})}function uM(e){e.y=-e.y}function crt(e){e.nodes().forEach(t=>dM(e.node(t))),e.edges().forEach(t=>{var n;let i=e.edge(t);(n=i.points)==null||n.forEach(dM),Object.hasOwn(i,"x")&&dM(i)})}function dM(e){let t=e.x;e.x=e.y,e.y=t}function urt(e){let t={},n=e.nodes().filter(l=>!e.children(l).length),i=n.map(l=>e.node(l).rank),r=Cd(Math.max,i),s=MS(r+1).map(()=>[]);function a(l){if(t[l])return;t[l]=!0;let c=e.node(l);s[c.rank].push(l);let u=e.successors(l);u&&u.forEach(a)}return n.sort((l,c)=>e.node(l).rank-e.node(c).rank).forEach(a),s}function drt(e,t){let n=0;for(let i=1;id)),r=t.flatMap(u=>{let d=e.outEdges(u);return d?d.map(f=>({pos:i[f.w],weight:e.edge(f).weight})).sort((f,h)=>f.pos-h.pos):[]}),s=1;for(;s{let d=u.pos+s;l[d]+=u.weight;let f=0;for(;d>0;)d%2&&(f+=l[d+1]),d=d-1>>1,l[d]+=u.weight;c+=u.weight*f}),c}function hrt(e,t=[]){return t.map(n=>{let i=e.inEdges(n);if(!i||!i.length)return{v:n};{let r=i.reduce((s,a)=>{let l=e.edge(a),c=e.node(a.v);return{sum:s.sum+l.weight*c.order,weight:s.weight+l.weight}},{sum:0,weight:0});return{v:n,barycenter:r.sum/r.weight,weight:r.weight}}})}function prt(e,t){let n={};e.forEach((r,s)=>{let a={indegree:0,in:[],out:[],vs:[r.v],i:s};r.barycenter!==void 0&&(a.barycenter=r.barycenter,a.weight=r.weight),n[r.v]=a}),t.edges().forEach(r=>{let s=n[r.v],a=n[r.w];s!==void 0&&a!==void 0&&(a.indegree++,s.out.push(a))});let i=Object.values(n).filter(r=>!r.indegree);return mrt(i)}function mrt(e){let t=[];function n(r){return s=>{s.merged||(s.barycenter===void 0||r.barycenter===void 0||s.barycenter>=r.barycenter)&&grt(r,s)}}function i(r){return s=>{s.in.push(r),--s.indegree===0&&e.push(s)}}for(;e.length;){let r=e.pop();t.push(r),r.in.reverse().forEach(n(r)),r.out.forEach(i(r))}return t.filter(r=>!r.merged).map(r=>iN(r,["vs","i","barycenter","weight"]))}function grt(e,t){let n=0,i=0;e.weight&&(n+=e.barycenter*e.weight,i+=e.weight),t.weight&&(n+=t.barycenter*t.weight,i+=t.weight),e.vs=t.vs.concat(e.vs),e.barycenter=n/i,e.weight=i,e.i=Math.min(t.i,e.i),t.merged=!0}function brt(e,t){let n=yit(e,d=>Object.hasOwn(d,"barycenter")),i=n.lhs,r=n.rhs.sort((d,f)=>f.i-d.i),s=[],a=0,l=0,c=0;i.sort(yrt(!!t)),c=AK(s,r,c),i.forEach(d=>{c+=d.vs.length,s.push(d.vs),a+=d.barycenter*d.weight,l+=d.weight,c=AK(s,r,c)});let u={vs:s.flat(1)};return l&&(u.barycenter=a/l,u.weight=l),u}function AK(e,t,n){let i;for(;t.length&&(i=t[t.length-1]).i<=n;)t.pop(),e.push(i.vs),n++;return n}function yrt(e){return(t,n)=>t.barycentern.barycenter?1:e?n.i-t.i:t.i-n.i}function cOe(e,t,n,i){let r=e.children(t),s=e.node(t),a=s?s.borderLeft:void 0,l=s?s.borderRight:void 0,c={};a&&(r=r.filter(h=>h!==a&&h!==l));let u=hrt(e,r);u.forEach(h=>{if(e.children(h.v).length){let m=cOe(e,h.v,n,i);c[h.v]=m,Object.hasOwn(m,"barycenter")&&xrt(h,m)}});let d=prt(u,n);vrt(d,c);let f=brt(d,i);if(a&&l){f.vs=[a,f.vs,l].flat(1);let h=e.predecessors(a);if(h&&h.length){let m=e.node(h[0]),g=e.predecessors(l),b=e.node(g[0]);Object.hasOwn(f,"barycenter")||(f.barycenter=0,f.weight=0),f.barycenter=(f.barycenter*f.weight+m.order+b.order)/(f.weight+2),f.weight+=2}}return f}function vrt(e,t){e.forEach(n=>{n.vs=n.vs.flatMap(i=>t[i]?t[i].vs:i)})}function xrt(e,t){e.barycenter!==void 0?(e.barycenter=(e.barycenter*e.weight+t.barycenter*t.weight)/(e.weight+t.weight),e.weight+=t.weight):(e.barycenter=t.barycenter,e.weight=t.weight)}function wrt(e,t,n,i){i||(i=e.nodes());let r=Ort(e),s=new au({compound:!0}).setGraph({root:r}).setDefaultNodeLabel(a=>e.node(a));return i.forEach(a=>{let l=e.node(a),c=e.parent(a);if(l.rank===t||l.minRank<=t&&t<=l.maxRank){s.setNode(a),s.setParent(a,c||r);let u=e[n](a);u&&u.forEach(d=>{let f=d.v===a?d.w:d.v,h=s.edge(f,a),m=h!==void 0?h.weight:0;s.setEdge(f,a,{weight:e.edge(d).weight+m})}),Object.hasOwn(l,"minRank")&&s.setNode(a,{borderLeft:l.borderLeft[t],borderRight:l.borderRight[t]})}}),s}function Ort(e){let t;for(;e.hasNode(t=bB("_root")););return t}function Srt(e,t,n){let i={},r;n.forEach(s=>{let a=e.parent(s),l,c;for(;a;){if(l=e.parent(a),l?(c=i[l],i[l]=a):(c=r,r=a),c&&c!==a){t.setEdge(c,a);return}a=l}})}function uOe(e,t={}){if(typeof t.customOrder=="function"){t.customOrder(e,uOe);return}let n=Zwe(e),i=_K(e,MS(1,n+1),"inEdges"),r=_K(e,MS(n-1,-1,-1),"outEdges"),s=urt(e);if(NK(e,s),t.disableOptimalOrderHeuristic)return;let a=Number.POSITIVE_INFINITY,l,c=t.constraints||[];for(let u=0,d=0;d<4;++u,++d){krt(u%2?i:r,u%4>=2,c),s=aE(e);let f=drt(e,s);f{i.has(s)||i.set(s,[]),i.get(s).push(a)};for(let s of e.nodes()){let a=e.node(s);if(typeof a.rank=="number"&&r(a.rank,s),typeof a.minRank=="number"&&typeof a.maxRank=="number")for(let l=a.minRank;l<=a.maxRank;l++)l!==a.rank&&r(l,s)}return t.map(function(s){return wrt(e,s,n,i.get(s)||[])})}function krt(e,t,n){let i=new au;e.forEach(function(r){n.forEach(l=>i.setEdge(l.left,l.right));let s=r.graph().root,a=cOe(r,s,i,t);a.vs.forEach((l,c)=>r.node(l).order=c),Srt(r,i,a.vs)})}function NK(e,t){Object.values(t).forEach(n=>n.forEach((i,r)=>e.node(i).order=r))}function Ert(e,t){let n={};function i(r,s){let a=0,l=0,c=r.length,u=s[s.length-1];return s.forEach((d,f)=>{let h=Trt(e,d),m=h?e.node(h).order:c;(h||d===u)&&(s.slice(l,f+1).forEach(g=>{let b=e.predecessors(g);b&&b.forEach(v=>{let y=e.node(v),x=y.order;(x{let f=s[d];if(f!==void 0&&e.node(f).dummy){let h=e.predecessors(f);h&&h.forEach(m=>{if(m===void 0)return;let g=e.node(m);g.dummy&&(g.orderu)&&dOe(n,m,f)})}})}function r(s,a){let l=-1,c=-1,u=0;return a.forEach((d,f)=>{if(e.node(d).dummy==="border"){let h=e.predecessors(d);if(h&&h.length){let m=h[0];if(m===void 0)return;c=e.node(m).order,i(a,u,f,l,c),u=f,l=c}}i(a,u,a.length,c,s.length)}),a}return t.length&&t.reduce(r),n}function Trt(e,t){if(e.node(t).dummy){let n=e.predecessors(t);if(n)return n.find(i=>e.node(i).dummy)}}function dOe(e,t,n){if(t>n){let r=t;t=n,n=r}let i=e[t];i||(e[t]=i={}),i[n]=!0}function Art(e,t,n){if(t>n){let r=t;t=n,n=r}let i=e[t];return i!==void 0&&Object.hasOwn(i,n)}function _rt(e,t,n,i){let r={},s={},a={};return t.forEach(l=>{l.forEach((c,u)=>{r[c]=c,s[c]=c,a[c]=u})}),t.forEach(l=>{let c=-1;l.forEach(u=>{let d=i(u);if(d&&d.length){let f=d.sort((m,g)=>{let b=a[m],v=a[g];return(b!==void 0?b:0)-(v!==void 0?v:0)}),h=(f.length-1)/2;for(let m=Math.floor(h),g=Math.ceil(h);m<=g;++m){let b=f[m];if(b===void 0)continue;let v=a[b];if(v!==void 0&&s[u]===u&&c{var y;let x=(y=s[v.v])!=null?y:0,O=a.edge(v);return Math.max(b,x+(O!==void 0?O:0))},0):s[m]=0}function d(m){let g=a.outEdges(m),b=Number.POSITIVE_INFINITY;g&&(b=g.reduce((y,x)=>{let O=s[x.w],w=a.edge(x);return Math.min(y,(O!==void 0?O:0)-(w!==void 0?w:0))},Number.POSITIVE_INFINITY));let v=e.node(m);b!==Number.POSITIVE_INFINITY&&v.borderType!==l&&(s[m]=Math.max(s[m]!==void 0?s[m]:0,b))}function f(m){return a.predecessors(m)||[]}function h(m){return a.successors(m)||[]}return c(u,f),c(d,h),Object.keys(i).forEach(m=>{var g;let b=n[m];b!==void 0&&(s[m]=(g=s[b])!=null?g:0)}),s}function jrt(e,t,n,i){let r=new au,s=e.graph(),a=Mrt(s.nodesep,s.edgesep,i);return t.forEach(l=>{let c;l.forEach(u=>{let d=n[u];if(d!==void 0){if(r.setNode(d),c!==void 0){let f=n[c];if(f!==void 0){let h=r.edge(f,d);r.setEdge(f,d,Math.max(a(e,u,c),h||0))}}c=u}})}),r}function Rrt(e,t){return Object.values(t).reduce((n,i)=>{let r=Number.NEGATIVE_INFINITY,s=Number.POSITIVE_INFINITY;Object.entries(i).forEach(([l,c])=>{let u=Lrt(e,l)/2;r=Math.max(c+u,r),s=Math.min(c-u,s)});let a=r-s;return a{["l","r"].forEach(a=>{let l=s+a,c=e[l];if(!c||c===t)return;let u=Object.values(c),d=i-Cd(Math.min,u);a!=="l"&&(d=r-Cd(Math.max,u)),d&&(e[l]=BR(c,f=>f+d))})})}function Prt(e,t=void 0){let n=e.ul;return n?BR(n,(i,r)=>{var s,a;if(t){let c=t.toLowerCase(),u=e[c];if(u&&u[r]!==void 0)return u[r]}let l=Object.values(e).map(c=>{let u=c[r];return u!==void 0?u:0}).sort((c,u)=>c-u);return(((s=l[1])!=null?s:0)+((a=l[2])!=null?a:0))/2}):{}}function Drt(e){let t=aE(e),n=Object.assign(Ert(e,t),Crt(e,t)),i={},r;["u","d"].forEach(a=>{r=a==="u"?t:Object.values(t).reverse(),["l","r"].forEach(l=>{l==="r"&&(r=r.map(d=>Object.values(d).reverse()));let c=_rt(e,r,n,d=>(a==="u"?e.predecessors(d):e.successors(d))||[]),u=Nrt(e,r,c.root,c.align,l==="r");l==="r"&&(u=BR(u,d=>-d)),i[a+l]=u})});let s=Rrt(e,i);return Irt(i,s),Prt(i,e.graph().align)}function Mrt(e,t,n){return(i,r,s)=>{let a=i.node(r),l=i.node(s),c=0,u;if(c+=a.width/2,Object.hasOwn(a,"labelpos"))switch(a.labelpos.toLowerCase()){case"l":u=-a.width/2;break;case"r":u=a.width/2;break}if(u&&(c+=n?u:-u),u=void 0,c+=(a.dummy?t:e)/2,c+=(l.dummy?t:e)/2,c+=l.width/2,Object.hasOwn(l,"labelpos"))switch(l.labelpos.toLowerCase()){case"l":u=l.width/2;break;case"r":u=-l.width/2;break}return u&&(c+=n?u:-u),c}}function Lrt(e,t){return e.node(t).width}function $rt(e){e=Xwe(e),Frt(e),Object.entries(Drt(e)).forEach(([t,n])=>e.node(t).x=n)}function Frt(e){let t=aE(e),n=e.graph(),i=n.ranksep,r=n.rankalign,s=0;t.forEach(a=>{let l=a.reduce((c,u)=>{var d;let f=(d=e.node(u).height)!=null?d:0;return c>f?c:f},0);a.forEach(c=>{let u=e.node(c);r==="top"?u.y=s+u.height/2:r==="bottom"?u.y=s+l-u.height/2:u.y=s+l/2}),s+=l+i})}function Brt(e,t={}){let n=t.debugTiming?Jwe:eOe;return n("layout",()=>{let i=n(" buildLayoutGraph",()=>Xrt(e));return n(" runLayout",()=>Urt(i,n,t)),n(" updateInputGraph",()=>Qrt(e,i)),i})}function Urt(e,t,n){t(" makeSpaceForEdgeLabels",()=>Yrt(e)),t(" removeSelfEdges",()=>ast(e)),t(" acyclic",()=>Nit(e)),t(" nestingGraph.run",()=>ert(e)),t(" rank",()=>qit(Xwe(e))),t(" injectEdgeLabelProxies",()=>Zrt(e)),t(" removeEmptyRanks",()=>git(e)),t(" nestingGraph.cleanup",()=>irt(e)),t(" normalizeRanks",()=>mit(e)),t(" assignRankMinMax",()=>Jrt(e)),t(" removeEdgeLabelProxies",()=>est(e)),t(" normalize.run",()=>Iit(e)),t(" parentDummyChains",()=>Xit(e)),t(" addBorderSegments",()=>rrt(e)),t(" order",()=>uOe(e,n)),t(" insertSelfEdges",()=>ost(e)),t(" adjustCoordinateSystem",()=>art(e)),t(" position",()=>$rt(e)),t(" positionSelfEdges",()=>lst(e)),t(" removeBorderNodes",()=>sst(e)),t(" normalize.undo",()=>Dit(e)),t(" fixupEdgeLabelCoords",()=>ist(e)),t(" undoCoordinateSystem",()=>ort(e)),t(" translateGraph",()=>tst(e)),t(" assignNodeIntersects",()=>nst(e)),t(" reversePoints",()=>rst(e)),t(" acyclic.undo",()=>Rit(e))}function Qrt(e,t){e.nodes().forEach(n=>{let i=e.node(n),r=t.node(n);i&&(i.x=r.x,i.y=r.y,i.order=r.order,i.rank=r.rank,t.children(n).length&&(i.width=r.width,i.height=r.height))}),e.edges().forEach(n=>{let i=e.edge(n),r=t.edge(n);i.points=r.points,Object.hasOwn(r,"x")&&(i.x=r.x,i.y=r.y)}),e.graph().width=t.graph().width,e.graph().height=t.graph().height}var zrt=["nodesep","edgesep","ranksep","marginx","marginy"],Vrt={ranksep:50,edgesep:20,nodesep:50,rankdir:"TB",rankalign:"center"},Hrt=["acyclicer","ranker","rankdir","align","rankalign"],qrt=["width","height","rank"],jK={width:0,height:0},Wrt=["minlen","weight","width","height","labeloffset"],Grt={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},Krt=["labelpos"];function Xrt(e){let t=new au({multigraph:!0,compound:!0}),n=hM(e.graph());return t.setGraph(Object.assign({},Vrt,fM(n,zrt),iN(n,Hrt))),e.nodes().forEach(i=>{let r=hM(e.node(i)),s=fM(r,qrt);Object.keys(jK).forEach(l=>{s[l]===void 0&&(s[l]=jK[l])}),t.setNode(i,s);let a=e.parent(i);a!==void 0&&t.setParent(i,a)}),e.edges().forEach(i=>{let r=hM(e.edge(i));t.setEdge(i,Object.assign({},Grt,fM(r,Wrt),iN(r,Krt)))}),t}function Yrt(e){let t=e.graph();t.ranksep/=2,e.edges().forEach(n=>{let i=e.edge(n);i.minlen*=2,i.labelpos.toLowerCase()!=="c"&&(t.rankdir==="TB"||t.rankdir==="BT"?i.width+=i.labeloffset:i.height+=i.labeloffset)})}function Zrt(e){e.edges().forEach(t=>{let n=e.edge(t);if(n.width&&n.height){let i=e.node(t.v),r={rank:(e.node(t.w).rank-i.rank)/2+i.rank,e:t};Fx(e,"edge-proxy",r,"_ep")}})}function Jrt(e){let t=0;e.nodes().forEach(n=>{let i=e.node(n);i.borderTop&&(i.minRank=e.node(i.borderTop).rank,i.maxRank=e.node(i.borderBottom).rank,t=Math.max(t,i.maxRank))}),e.graph().maxRank=t}function est(e){e.nodes().forEach(t=>{let n=e.node(t);if(n.dummy==="edge-proxy"){let i=n;e.edge(i.e).labelRank=n.rank,e.removeNode(t)}})}function tst(e){let t=Number.POSITIVE_INFINITY,n=0,i=Number.POSITIVE_INFINITY,r=0,s=e.graph(),a=s.marginx||0,l=s.marginy||0;function c(u){let d=u.x,f=u.y,h=u.width,m=u.height;t=Math.min(t,d-h/2),n=Math.max(n,d+h/2),i=Math.min(i,f-m/2),r=Math.max(r,f+m/2)}e.nodes().forEach(u=>c(e.node(u))),e.edges().forEach(u=>{let d=e.edge(u);Object.hasOwn(d,"x")&&c(d)}),t-=a,i-=l,e.nodes().forEach(u=>{let d=e.node(u);d.x-=t,d.y-=i}),e.edges().forEach(u=>{let d=e.edge(u);d.points.forEach(f=>{f.x-=t,f.y-=i}),Object.hasOwn(d,"x")&&(d.x-=t),Object.hasOwn(d,"y")&&(d.y-=i)}),s.width=n-t+a,s.height=r-i+l}function nst(e){e.edges().forEach(t=>{let n=e.edge(t),i=e.node(t.v),r=e.node(t.w),s,a;n.points?(s=n.points[0],a=n.points[n.points.length-1]):(n.points=[],s=r,a=i),n.points.unshift(wK(i,s)),n.points.push(wK(r,a))})}function ist(e){e.edges().forEach(t=>{let n=e.edge(t);if(Object.hasOwn(n,"x"))switch((n.labelpos==="l"||n.labelpos==="r")&&(n.width-=n.labeloffset),n.labelpos){case"l":n.x-=n.width/2+n.labeloffset;break;case"r":n.x+=n.width/2+n.labeloffset;break}})}function rst(e){e.edges().forEach(t=>{let n=e.edge(t);n.reversed&&n.points.reverse()})}function sst(e){e.nodes().forEach(t=>{if(e.children(t).length){let n=e.node(t),i=e.node(n.borderTop),r=e.node(n.borderBottom),s=e.node(n.borderLeft[n.borderLeft.length-1]),a=e.node(n.borderRight[n.borderRight.length-1]);n.width=Math.abs(a.x-s.x),n.height=Math.abs(r.y-i.y),n.x=s.x+n.width/2,n.y=i.y+n.height/2}}),e.nodes().forEach(t=>{e.node(t).dummy==="border"&&e.removeNode(t)})}function ast(e){e.edges().forEach(t=>{if(t.v===t.w){let n=e.node(t.v);n.selfEdges||(n.selfEdges=[]),n.selfEdges.push({e:t,label:e.edge(t)}),e.removeEdge(t)}})}function ost(e){aE(e).forEach(t=>{let n=0;t.forEach((i,r)=>{let s=e.node(i);s.order=r+n,(s.selfEdges||[]).forEach(a=>{Fx(e,"selfedge",{width:a.label.width,height:a.label.height,rank:s.rank,order:r+ ++n,e:a.e,label:a.label},"_se")}),delete s.selfEdges})})}function lst(e){e.nodes().forEach(t=>{let n=e.node(t);if(n.dummy==="selfedge"){let i=n,r=e.node(i.e.v),s=r.x+r.width/2,a=r.y,l=n.x-s,c=r.height/2;e.setEdge(i.e,i.label),e.removeNode(t),i.label.points=[{x:s+2*l/3,y:a-c},{x:s+5*l/6,y:a-c},{x:s+l,y:a},{x:s+5*l/6,y:a+c},{x:s+2*l/3,y:a+c}],i.label.x=n.x,i.label.y=n.y}})}function fM(e,t){return BR(iN(e,t),Number)}function hM(e){let t={};return e&&Object.entries(e).forEach(([n,i])=>{typeof n=="string"&&(n=n.toLowerCase()),t[n]=i}),t}function cst(e){let t=aE(e),n=new au({compound:!0,multigraph:!0}).setGraph({});return e.nodes().forEach(i=>{n.setNode(i,{label:i}),n.setParent(i,"layer"+e.node(i).rank)}),e.edges().forEach(i=>n.setEdge(i.v,i.w,{},i.name)),t.forEach((i,r)=>{let s="layer"+r;n.setNode(s,{rank:"same"}),i.reduce((a,l)=>(n.setEdge(a,l,{style:"invis"}),l))}),n}var ust={graphlib:Uwe,version:wit,layout:Brt,debug:cst,util:{time:Jwe,notime:eOe}},RK=ust;/*! For license information please see dagre.esm.js.LEGAL.txt */const Dw={llm:{labelKey:"buildCanvas.patterns.llm.label",descriptionKey:"buildCanvas.patterns.llm.description",icon:Ebe},sequential:{labelKey:"buildCanvas.patterns.sequential.label",descriptionKey:"buildCanvas.patterns.sequential.description",icon:k7e},parallel:{labelKey:"buildCanvas.patterns.parallel.label",descriptionKey:"buildCanvas.patterns.parallel.description",icon:r7e},loop:{labelKey:"buildCanvas.patterns.loop.label",descriptionKey:"buildCanvas.patterns.loop.description",icon:_be},a2a:{labelKey:"buildCanvas.patterns.a2a.label",descriptionKey:"buildCanvas.patterns.a2a.description",icon:Zj}},p6=220,m6=88,IK=96,PK=34,kO=64,pM=310,Ny=24,fOe=56,g6=40,DK=40,dst=18,fst=58,hst=!1,pst=e=>e==="sequential"||e==="parallel"||e==="loop";function b6(e,t){const n=e.agentType??"llm";return pst(n)||n==="llm"&&(t.length===0||e.subAgents.length>0)}function y6(e,t=[],n="horizontal",i=!1){const r=e.agentType??"llm";if(!b6(e,t))return{width:p6,height:m6};if(i&&e.subAgents.length===0)return{width:pM,height:kO};const s=e.subAgents.map((f,h)=>y6(f,[...t,h],n,i)),a=s.length?Math.max(...s.map(f=>f.width)):0,l=s.length?Math.max(...s.map(f=>f.height)):0,c=s.length&&r!=="parallel"?fOe:Ny,u=n==="horizontal"?r!=="parallel":r==="parallel",d=s.length?r==="parallel"?dst+DK:r==="loop"?fst:0:DK;return u?{width:Math.max(pM,s.reduce((f,h)=>f+h.width,0)+g6*Math.max(0,s.length-1)+c*2),height:kO+Ny+l+d+Ny}:{width:Math.max(pM,a+Ny*2),height:kO+c+s.reduce((f,h)=>f+h.height,0)+g6*Math.max(0,s.length-1)+d+c}}function B1(e){return e.length===0?"agent-root":`agent-${e.join("-")}`}function mst(e,t){return e.length===t.length&&e.every((n,i)=>n===t[i])}function MK(e){const t=n=>[n.agentType??"llm",n.subAgents.map(t)];return JSON.stringify(t(e))}function U1(e,t,n,i){const r=(i==null?void 0:i.tone)==="sequential"?"hsl(213 40% 40%)":(i==null?void 0:i.tone)==="loop"?"hsl(151 34% 34%)":"hsl(220 9% 38%)";return{id:`${e}-${t}${i!=null&&i.loop?"-loop":""}`,source:e,target:t,sourceHandle:i!=null&&i.loop?"loop-source":void 0,targetHandle:i!=null&&i.loop?"loop-target":void 0,label:n,type:"insertStep",data:i?{insert:i.insert,loop:i.loop,tone:i.tone}:void 0,animated:i==null?void 0:i.loop,markerEnd:{type:RS.ArrowClosed,width:16,height:16,color:r},style:{stroke:r,strokeWidth:1.5},labelStyle:{fill:"hsl(215 14% 42%)",fontSize:10,fontWeight:600},labelBgStyle:{fill:"hsl(var(--background))",fillOpacity:.92}}}function LK(e,t,n=!1,i){const r=[{id:"terminal-input",type:"terminal",position:{x:0,y:0},data:{kind:"terminal",title:i("buildCanvas.terminals.input")},selectable:!1,draggable:!1},{id:"terminal-output",type:"terminal",position:{x:0,y:0},data:{kind:"terminal",title:i("buildCanvas.terminals.output")},selectable:!1,draggable:!1}],s=[];function a(f,h,m,g,b){const v=f.agentType??"llm",y=B1(h);return b6(f,h)?(l(f,h,m,g,b),y):(r.push({id:y,type:"agent",parentId:m,extent:"parent",position:g,data:{kind:"agent",path:h,agent:f,title:v==="a2a"?i("buildCanvas.patterns.a2a.label"):f.name.trim()||(h.length===0?i("buildCanvas.rootAgent"):i("buildCanvas.unnamedStep")),pattern:v,description:f.description.trim()||i(Dw[v].descriptionKey),childCount:f.subAgents.length,containedIn:b}}),y)}function l(f,h,m,g={x:0,y:0},b){const v=f.agentType??"sequential",y=B1(h),x=y6(f,h,t,n);r.push({id:y,type:"group",parentId:m,extent:m?"parent":void 0,position:g,style:{width:x.width,height:x.height},data:{kind:"agent",path:h,agent:f,title:f.name.trim()||(h.length===0?i("buildCanvas.rootAgent"):i(Dw[v].labelKey)),pattern:v,description:f.description.trim()||i(Dw[v].descriptionKey),childCount:f.subAgents.length,containedIn:b,layoutWidth:x.width,layoutHeight:x.height,compactEmptyGroup:n&&f.subAgents.length===0}});const O=f.subAgents.map((C,N)=>y6(C,[...h,N],t,n)),w=O.length&&v!=="parallel"?fOe:Ny,k=t==="horizontal"?v!=="parallel":v==="parallel";let S=w;const E=f.subAgents.map((C,N)=>{const _=O[N],j=k?{x:S,y:kO+Ny}:{x:(x.width-_.width)/2,y:kO+S};return S+=(k?_.width:_.height)+g6,a(C,[...h,N],y,j,v)});if(v==="sequential"||v==="loop"){for(let C=0;C1&&s.push(U1(E[E.length-1],E[0],i("buildCanvas.edges.continueLoop"),{loop:!0,tone:"loop"}))}return y}const c=(f,h)=>{const m=f.agentType??"llm",g=B1(h);if(b6(f,h))return l(f,h),[g];if(r.push({id:g,type:"agent",position:{x:0,y:0},data:{kind:"agent",path:h,agent:f,title:m==="a2a"?i("buildCanvas.patterns.a2a.label"):f.name.trim()||(h.length===0?i("buildCanvas.rootAgent"):i("buildCanvas.unnamedStep")),pattern:m,description:f.description.trim()||i(Dw[m].descriptionKey),childCount:f.subAgents.length}}),f.subAgents.length===0)return[g];const b=[];return f.subAgents.forEach((v,y)=>{const x=[...h,y],O=B1(x);s.push(U1(g,O,i("buildCanvas.edges.call"),{insert:{parentPath:h,index:y}})),b.push(...c(v,x))}),b},u=B1([]),d=c(e,[]);return s.push(U1("terminal-input",u)),d.forEach(f=>s.push(U1(f,"terminal-output"))),gst(r,s,t)}function gst(e,t,n){const i=new RK.graphlib.Graph().setDefaultEdgeLabel(()=>({}));i.setGraph({rankdir:n==="vertical"?"TB":"LR",ranksep:50,nodesep:34,edgesep:14,marginx:24,marginy:24});const r=new Set(e.filter(s=>!s.parentId).map(s=>s.id));return e.filter(s=>!s.parentId).forEach(s=>{const a=s.data.kind==="terminal";i.setNode(s.id,{width:a?IK:s.data.layoutWidth??p6,height:a?PK:s.data.layoutHeight??m6})}),t.filter(s=>r.has(s.source)&&r.has(s.target)).forEach(s=>i.setEdge(s.source,s.target)),RK.layout(i),{nodes:e.map(s=>{if(s.parentId)return s;const a=i.node(s.id),l=s.data.kind==="terminal",c=l?IK:s.data.layoutWidth??p6,u=l?PK:s.data.layoutHeight??m6;return{...s,position:{x:a.x-c/2,y:a.y-u/2}}}),edges:t}}const QR=p.createContext(null),zR=p.createContext("horizontal");function bst({id:e,sourceX:t,sourceY:n,targetX:i,targetY:r,sourcePosition:s,targetPosition:a,markerEnd:l,style:c,label:u,data:d}){const{t:f}=Te("create"),h=p.useContext(QR),[m,g]=p.useState(!1),[b,v,y]=J_({sourceX:t,sourceY:n,targetX:i,targetY:r,sourcePosition:s,targetPosition:a,offset:d!=null&&d.loop?28:20});return o.jsxs(o.Fragment,{children:[o.jsx(sE,{id:e,path:b,markerEnd:l,style:c}),h&&(d==null?void 0:d.insert)&&o.jsx("path",{d:b,className:"abc-edge-hover-path",onPointerEnter:()=>g(!0),onPointerLeave:()=>g(!1)}),(u||h&&(d==null?void 0:d.insert))&&o.jsx(cnt,{children:o.jsxs("div",{className:`abc-edge-tools${h&&(d!=null&&d.insert)?" can-insert":""}${m?" is-visible":""}`,style:{transform:`translate(-50%, -50%) translate(${v}px, ${y}px)`},onPointerEnter:()=>g(!0),onPointerLeave:()=>g(!1),children:[u&&o.jsx("span",{className:"abc-edge-label",children:u}),h&&(d==null?void 0:d.insert)&&o.jsx("button",{type:"button",className:"abc-edge-add nodrag nopan","aria-label":f("buildCanvas.actions.insertHere"),title:f("buildCanvas.actions.insertHere"),onClick:x=>{x.stopPropagation(),h==null||h.onInsert(d.insert.parentPath,d.insert.index)},children:o.jsx(Fo,{})})]})})]})}function yst({data:e,selected:t}){const{t:n}=Te("create"),i=p.useContext(QR),r=p.useContext(zR),s=r==="vertical"?sn.Top:sn.Left,a=r==="vertical"?sn.Bottom:sn.Right,l=r==="vertical"?sn.Right:sn.Bottom,c=e.pattern??"llm",u=Dw[c],d=u.icon;return o.jsxs("div",{className:`abc-node is-${c}${e.containedIn?` is-contained-in-${e.containedIn}`:""}${t?" is-selected":""}`,children:[o.jsx(fl,{type:"target",position:s,className:"abc-handle"}),c!=="llm"&&o.jsx("span",{className:"abc-node-icon",children:o.jsx(d,{})}),o.jsxs("span",{className:"abc-node-copy",children:[o.jsx("span",{className:"abc-node-meta",children:o.jsx("span",{children:n(u.labelKey)})}),o.jsx("strong",{children:e.title}),o.jsx("small",{children:e.description})]}),i&&e.path!==void 0&&e.path.length>0&&o.jsx("button",{type:"button",className:"abc-node-delete nodrag nopan","aria-label":n("buildCanvas.actions.deleteNamed",{name:e.title}),title:n("buildCanvas.actions.deleteNode"),onClick:f=>{f.stopPropagation(),i==null||i.onDelete(e.path)},children:o.jsx(pm,{})}),o.jsx(fl,{type:"source",position:a,className:"abc-handle"}),e.containedIn==="loop"&&o.jsxs(o.Fragment,{children:[o.jsx(fl,{id:"loop-target",type:"target",position:l,className:"abc-handle abc-loop-handle"}),o.jsx(fl,{id:"loop-source",type:"source",position:l,className:"abc-handle abc-loop-handle"})]})]})}function vst({data:e,selected:t}){const{t:n}=Te("create"),i=p.useContext(QR),r=p.useContext(zR),s=r==="vertical"?sn.Top:sn.Left,a=r==="vertical"?sn.Bottom:sn.Right,l=r==="vertical"?sn.Right:sn.Bottom,c=e.pattern??"sequential",u=e.childCount??0,d=n(c==="llm"?"buildCanvas.actions.addSubagent":c==="parallel"?"buildCanvas.actions.addParallelStep":c==="loop"?"buildCanvas.actions.addLoopStep":"buildCanvas.actions.addNextStep");return o.jsxs("div",{className:`abc-group is-${c}${e.compactEmptyGroup?" is-compact-empty":""}${t?" is-selected":""}`,children:[o.jsx(fl,{type:"target",position:s,className:"abc-handle"}),o.jsx("header",{className:"abc-group-head",children:o.jsxs("span",{children:[o.jsx("strong",{title:e.title,children:e.title}),o.jsx("small",{children:e.description})]})}),i&&e.path!==void 0&&u>0&&c!=="parallel"&&o.jsxs("div",{className:"abc-group-boundary-actions",children:[o.jsx("button",{type:"button",className:"abc-group-boundary-add is-start nodrag nopan","aria-label":n("buildCanvas.actions.addFirst"),title:n("buildCanvas.actions.addFirst"),onClick:f=>{f.stopPropagation(),i.onInsert(e.path,0)},children:o.jsx(Fo,{})}),o.jsx("button",{type:"button",className:"abc-group-boundary-add is-end nodrag nopan","aria-label":n("buildCanvas.actions.addLast"),title:n("buildCanvas.actions.addLast"),onClick:f=>{f.stopPropagation(),i.onAdd(e.path)},children:o.jsx(Fo,{})})]}),i&&e.path!==void 0&&u>0&&c==="parallel"&&o.jsxs("button",{type:"button",className:"abc-group-add abc-group-add-bottom nodrag nopan",onClick:f=>{f.stopPropagation(),i.onAdd(e.path)},children:[o.jsx(Fo,{}),o.jsx("span",{children:d})]}),i&&e.path!==void 0&&u===0&&o.jsxs("button",{type:"button",className:"abc-group-add abc-group-add-empty nodrag nopan",onClick:f=>{f.stopPropagation(),i.onAdd(e.path)},children:[o.jsx(Fo,{}),o.jsx("span",{children:d})]}),i&&e.path!==void 0&&e.path.length>0&&o.jsx("button",{type:"button",className:"abc-node-delete nodrag nopan","aria-label":n("buildCanvas.actions.deleteNamed",{name:e.title}),title:n("buildCanvas.actions.deleteNode"),onClick:f=>{f.stopPropagation(),i==null||i.onDelete(e.path)},children:o.jsx(pm,{})}),o.jsx(fl,{type:"source",position:a,className:"abc-handle"}),e.containedIn==="loop"&&o.jsxs(o.Fragment,{children:[o.jsx(fl,{id:"loop-target",type:"target",position:l,className:"abc-handle abc-loop-handle"}),o.jsx(fl,{id:"loop-source",type:"source",position:l,className:"abc-handle abc-loop-handle"})]})]})}function xst({data:e}){const t=p.useContext(zR);return o.jsxs("div",{className:"abc-terminal",children:[o.jsx(fl,{type:"target",position:t==="vertical"?sn.Top:sn.Left,className:"abc-handle"}),o.jsx("span",{children:e.title}),o.jsx(fl,{type:"source",position:t==="vertical"?sn.Bottom:sn.Right,className:"abc-handle"})]})}const wst={agent:yst,group:vst,terminal:xst},Ost={insertStep:bst};function Sst({draft:e,selectedPath:t,onSelect:n,onAdd:i,onInsert:r,onDelete:s,readOnly:a=!1,interactivePreview:l=!1,direction:c="horizontal"}){const{t:u}=Te("create"),d=p.useMemo(()=>LK(e,c,a,u),[]),[f,h,m]=unt(d.nodes),[g,b,v]=dnt(d.edges),y=hnt(),x=p.useRef(`${c}:${a?"readonly":"editable"}:${MK(e)}`),O=p.useRef(null),{fitView:w}=$R(),k=p.useMemo(()=>LK(e,c,a,u),[c,e,a,u]),[S,E]=p.useState(()=>window.matchMedia("(max-width: 860px)").matches),C=p.useMemo(()=>a?{padding:.16,minZoom:.05,maxZoom:.9}:S?{padding:.08,minZoom:.35,maxZoom:.9}:{padding:.14,minZoom:.42,maxZoom:1.1},[S,a]),N=p.useCallback((j=0)=>{window.requestAnimationFrame(()=>{window.requestAnimationFrame(()=>{const A=O.current;if(A&&(A.clientWidth===0||A.clientHeight===0)&&j<8){N(j+1);return}w(C)})})},[C,w]);p.useEffect(()=>{const j=window.matchMedia("(max-width: 860px)"),A=F=>E(F.matches);return j.addEventListener("change",A),()=>j.removeEventListener("change",A)},[]),p.useEffect(()=>{const j=`${c}:${a?"readonly":"editable"}:${MK(e)}`,A=j!==x.current;x.current=j,b(k.edges),h(F=>{const T=new Map(F.map(P=>[P.id,P]));return k.nodes.map(P=>{const R=T.get(P.id);return{...P,measured:!A&&R&&R.type===P.type?R.measured:void 0,position:!A&&R?R.position:P.position,selected:P.data.kind==="agent"&&!!P.data.path&&mst(P.data.path,t)}})}),A&&N()},[k,e,N,t,b,h]),p.useEffect(()=>{N()},[S,N]),p.useEffect(()=>{y&&N()},[k,N,y]),p.useEffect(()=>{if(!a||!O.current)return;const j=new ResizeObserver(()=>N());return j.observe(O.current),N(),()=>j.disconnect()},[N,a]);const _=p.useMemo(()=>a?null:{onAdd:i,onInsert:r,onDelete:s},[i,s,r,a]);return o.jsx(zR.Provider,{value:c,children:o.jsx(QR.Provider,{value:_,children:o.jsx("section",{className:`abc-root is-${c}${a?" is-readonly":""}`,"aria-label":u(a?"buildCanvas.readOnlyLabel":"buildCanvas.label"),children:o.jsx("div",{ref:O,className:"abc-canvas",children:o.jsxs(ont,{nodes:f,edges:g,nodeTypes:wst,edgeTypes:Ost,onNodesChange:m,onEdgesChange:v,onNodeClick:(j,A)=>{!a&&A.data.kind==="agent"&&A.data.path&&n(A.data.path)},nodesDraggable:!a,nodesConnectable:!1,nodesFocusable:!a,elementsSelectable:!a,edgesFocusable:!1,edgesReconnectable:!1,panOnDrag:!a||l,zoomOnDoubleClick:l,zoomOnPinch:!a||l,zoomOnScroll:!a||l,fitView:!0,fitViewOptions:C,onInit:()=>N(),minZoom:a?.05:.35,maxZoom:1.6,proOptions:{hideAttribution:!0},ariaLabelConfig:{"controls.ariaLabel":u("buildCanvas.controls.ariaLabel"),"controls.zoomIn.ariaLabel":u("buildCanvas.controls.zoomIn"),"controls.zoomOut.ariaLabel":u("buildCanvas.controls.zoomOut"),"controls.fitView.ariaLabel":u("buildCanvas.controls.fitView")},children:[o.jsx(ynt,{gap:20,size:1.2,color:"hsl(34 20% 82%)"}),(!a||l)&&o.jsx(Ent,{showInteractive:!1}),hst]})})})})})}function LS(e){return o.jsx(Mwe,{children:o.jsx(Sst,{...e})})}an.hasResourceBundle("en-US","create")||an.addResourceBundle("en-US","create",xse,!0,!0);an.hasResourceBundle("zh-CN","create")||an.addResourceBundle("zh-CN","create",Lce,!0,!0);function $t(e,t={}){return an.t(e,{...t,ns:"create"})}function oE(e,t){return e.map(n=>({...n,get label(){return $t(`${t}.${n.id}.label`)},get desc(){return $t(`${t}.${n.id}.description`)}}))}function qc(e,t){const n={...e};for(const[i,r]of Object.entries(t))Object.defineProperty(n,i,{configurable:!0,enumerable:!0,get:()=>$t(r)});return n}const hOe="https://ark.cn-beijing.volces.com/api/v3/";qc({key:"MODEL_AGENT_NAME",required:!1,placeholder:"doubao-seed-1-6-250615"},{comment:"traditional.catalog.env.modelAgentName.comment"});const pA=[qc({key:"MODEL_EMBEDDING_NAME",required:!1,placeholder:"doubao-embedding-vision-250615"},{comment:"traditional.catalog.env.embeddingModelName.comment"}),{key:"MODEL_EMBEDDING_DIM",required:!1,placeholder:"2048"},{key:"MODEL_EMBEDDING_API_BASE",required:!1,placeholder:hOe}],rN=[],sN={get label(){return $t("traditional.catalog.links.console")},url:"https://console.volcengine.com/vikingdb/openviking"},kst={get label(){return $t("traditional.catalog.links.documentation")},url:"https://github.com/volcengine/OpenViking/blob/main/docs/zh/api/05-sessions.md"},pOe="https://api.vikingdb.cn-beijing.volces.com/openviking",Est=`{ +`)),d=u.reduce((f,h)=>f.concat(...h),[]);return[u,d]}return[[],[]]},[e]);return p.useEffect(()=>{const c=(t==null?void 0:t.target)??uG,u=(t==null?void 0:t.actInsideInputWithModifier)??!0;if(e!==null){const d=m=>{var v,y;if(r.current=m.ctrlKey||m.metaKey||m.shiftKey||m.altKey,(!r.current||r.current&&!u)&&Z1e(m))return!1;const b=fG(m.code,l);if(s.current.add(m[b]),dG(a,s.current,!1)){const x=((y=(v=m.composedPath)==null?void 0:v.call(m))==null?void 0:y[0])||m.target,O=(x==null?void 0:x.nodeName)==="BUTTON"||(x==null?void 0:x.nodeName)==="A";t.preventDefault!==!1&&(r.current||!O)&&m.preventDefault(),i(!0)}},f=m=>{const g=fG(m.code,l);dG(a,s.current,!0)?(i(!1),s.current.clear()):s.current.delete(m[g]),m.key==="Meta"&&s.current.clear(),r.current=!1},h=()=>{s.current.clear(),i(!1)};return c==null||c.addEventListener("keydown",d),c==null||c.addEventListener("keyup",f),window.addEventListener("blur",h),window.addEventListener("contextmenu",h),()=>{c==null||c.removeEventListener("keydown",d),c==null||c.removeEventListener("keyup",f),window.removeEventListener("blur",h),window.removeEventListener("contextmenu",h)}}},[e,i]),n}function dG(e,t,n){return e.filter(i=>n||i.length===t.size).some(i=>i.every(r=>t.has(r)))}function fG(e,t){return t.includes(e)?"code":"key"}const ett=()=>{const e=as();return p.useMemo(()=>({zoomIn:async t=>{const{panZoom:n}=e.getState();return n?n.scaleBy(1.2,t):!1},zoomOut:async t=>{const{panZoom:n}=e.getState();return n?n.scaleBy(1/1.2,t):!1},zoomTo:async(t,n)=>{const{panZoom:i}=e.getState();return i?i.scaleTo(t,n):!1},getZoom:()=>e.getState().transform[2],setViewport:async(t,n)=>{const{transform:[i,r,s],panZoom:a}=e.getState();return a?(await a.setViewport({x:t.x??i,y:t.y??r,zoom:t.zoom??s},n),!0):!1},getViewport:()=>{const[t,n,i]=e.getState().transform;return{x:t,y:n,zoom:i}},setCenter:async(t,n,i)=>e.getState().setCenter(t,n,i),fitBounds:async(t,n)=>{const{width:i,height:r,minZoom:s,maxZoom:a,panZoom:l}=e.getState(),c=fB(t,i,r,s,a,(n==null?void 0:n.padding)??.1);return l?(await l.setViewport(c,{duration:n==null?void 0:n.duration,ease:n==null?void 0:n.ease,interpolate:n==null?void 0:n.interpolate}),!0):!1},screenToFlowPosition:(t,n={})=>{const{transform:i,snapGrid:r,snapToGrid:s,domNode:a}=e.getState();if(!a)return t;const{x:l,y:c}=a.getBoundingClientRect(),u={x:t.x-l,y:t.y-c},d=n.snapGrid??r,f=n.snapToGrid??s;return zx(u,i,f,d)},flowToScreenPosition:t=>{const{transform:n,domNode:i}=e.getState();if(!i)return t;const{x:r,y:s}=i.getBoundingClientRect(),a=Zv(t,n);return{x:a.x+r,y:a.y+s}}}),[])};function Owe(e,t){const n=[],i=new Map,r=[];for(const s of e)if(s.type==="add"){r.push(s);continue}else if(s.type==="remove"||s.type==="replace")i.set(s.id,[s]);else{const a=i.get(s.id);a?a.push(s):i.set(s.id,[s])}for(const s of t){const a=i.get(s.id);if(!a){n.push(s);continue}if(a[0].type==="remove")continue;if(a[0].type==="replace"){n.push({...a[0].item});continue}const l={...s};for(const c of a)ttt(c,l);n.push(l)}return r.length&&r.forEach(s=>{s.index!==void 0?n.splice(s.index,0,{...s.item}):n.push({...s.item})}),n}function ttt(e,t){switch(e.type){case"select":{t.selected=e.selected;break}case"position":{typeof e.position<"u"&&(t.position=e.position),typeof e.dragging<"u"&&(t.dragging=e.dragging);break}case"dimensions":{typeof e.dimensions<"u"&&(t.measured={...e.dimensions},e.setAttributes&&((e.setAttributes===!0||e.setAttributes==="width")&&(t.width=e.dimensions.width),(e.setAttributes===!0||e.setAttributes==="height")&&(t.height=e.dimensions.height))),typeof e.resizing=="boolean"&&(t.resizing=e.resizing);break}}}function Swe(e,t){return Owe(e,t)}function kwe(e,t){return Owe(e,t)}function Tg(e,t){return{id:e,type:"select",selected:t}}function Py(e,t=new Set,n=!1){const i=[];for(const[r,s]of e){const a=t.has(r);!(s.selected===void 0&&!a)&&s.selected!==a&&(n&&(s.selected=a),i.push(Tg(s.id,a)))}return i}function hG({items:e=[],lookup:t}){var r;const n=[],i=new Map(e.map(s=>[s.id,s]));for(const[s,a]of e.entries()){const l=t.get(a.id),c=((r=l==null?void 0:l.internals)==null?void 0:r.userNode)??l;c!==void 0&&c!==a&&n.push({id:a.id,item:a,type:"replace"}),c===void 0&&n.push({item:a,type:"add",index:s})}for(const[s]of t)i.get(s)===void 0&&n.push({id:s,type:"remove"});return n}function pG(e){return{id:e.id,type:"remove"}}const ntt=G1e();function itt(e,t,n={}){return MJe(e,t,{...n,onError:n.onError??ntt})}const mG=e=>wJe(e),rtt=e=>H1e(e);function Ewe(e){return p.forwardRef(e)}const stt=typeof window<"u"?p.useLayoutEffect:p.useEffect;function gG(e){const[t,n]=p.useState(BigInt(0)),[i]=p.useState(()=>att(()=>n(r=>r+BigInt(1))));return stt(()=>{const r=i.get();r.length&&(e(r),i.reset())},[t]),i}function att(e){let t=[];return{get:()=>t,reset:()=>{t=[]},push:n=>{t.push(n),e()}}}const Cwe=p.createContext(null);function ott({children:e}){const t=as(),n=p.useCallback(l=>{const{nodes:c=[],setNodes:u,hasDefaultNodes:d,onNodesChange:f,nodeLookup:h,fitViewQueued:m,onNodesChangeMiddlewareMap:g}=t.getState();let b=c;for(const y of l)b=typeof y=="function"?y(b):y;let v=hG({items:b,lookup:h});for(const y of g.values())v=y(v);d&&u(b),v.length>0?f==null||f(v):m&&window.requestAnimationFrame(()=>{const{fitViewQueued:y,nodes:x,setNodes:O}=t.getState();y&&O(x)})},[]),i=gG(n),r=p.useCallback(l=>{const{edges:c=[],setEdges:u,hasDefaultEdges:d,onEdgesChange:f,edgeLookup:h}=t.getState();let m=c;for(const g of l)m=typeof g=="function"?g(m):g;d?u(m):f&&f(hG({items:m,lookup:h}))},[]),s=gG(r),a=p.useMemo(()=>({nodeQueue:i,edgeQueue:s}),[]);return o.jsx(Cwe.Provider,{value:a,children:e})}function ltt(){const e=p.useContext(Cwe);if(!e)throw new Error("useBatchContext must be used within a BatchProvider");return e}const ctt=e=>!!e.panZoom;function VR(){const e=ett(),t=as(),n=ltt(),i=Ii(ctt),r=p.useMemo(()=>{const s=f=>t.getState().nodeLookup.get(f),a=f=>{n.nodeQueue.push(f)},l=f=>{n.edgeQueue.push(f)},c=f=>{var y,x;const{nodeLookup:h,nodeOrigin:m}=t.getState(),g=mG(f)?f:h.get(f.id),b=g.parentId?X1e(g.position,g.measured,g.parentId,h,m):g.position,v={...g,position:b,width:((y=g.measured)==null?void 0:y.width)??g.width,height:((x=g.measured)==null?void 0:x.height)??g.height};return Yv(v)},u=(f,h,m={replace:!1})=>{a(g=>g.map(b=>{if(b.id===f){const v=typeof h=="function"?h(b):h;return m.replace&&mG(v)?v:{...b,...v}}return b}))},d=(f,h,m={replace:!1})=>{l(g=>g.map(b=>{if(b.id===f){const v=typeof h=="function"?h(b):h;return m.replace&&rtt(v)?v:{...b,...v}}return b}))};return{getNodes:()=>t.getState().nodes.map(f=>({...f})),getNode:f=>{var h;return(h=s(f))==null?void 0:h.internals.userNode},getInternalNode:s,getEdges:()=>{const{edges:f=[]}=t.getState();return f.map(h=>({...h}))},getEdge:f=>t.getState().edgeLookup.get(f),setNodes:a,setEdges:l,addNodes:f=>{const h=Array.isArray(f)?f:[f];n.nodeQueue.push(m=>[...m,...h])},addEdges:f=>{const h=Array.isArray(f)?f:[f];n.edgeQueue.push(m=>[...m,...h])},toObject:()=>{const{nodes:f=[],edges:h=[],transform:m}=t.getState(),[g,b,v]=m;return{nodes:f.map(y=>({...y})),edges:h.map(y=>({...y})),viewport:{x:g,y:b,zoom:v}}},deleteElements:async({nodes:f=[],edges:h=[]})=>{const{nodes:m,edges:g,onNodesDelete:b,onEdgesDelete:v,triggerNodeChanges:y,triggerEdgeChanges:x,onDelete:O,onBeforeDelete:w}=t.getState(),{nodes:k,edges:S}=await CJe({nodesToRemove:f,edgesToRemove:h,nodes:m,edges:g,onBeforeDelete:w}),E=S.length>0,C=k.length>0;if(E){const N=S.map(pG);v==null||v(S),x(N)}if(C){const N=k.map(pG);b==null||b(k),y(N)}return(C||E)&&(O==null||O({nodes:k,edges:S})),{deletedNodes:k,deletedEdges:S}},getIntersectingNodes:(f,h=!0,m)=>{const g=HK(f),b=g?f:c(f),v=m!==void 0;return b?(m||t.getState().nodes).filter(y=>{const x=t.getState().nodeLookup.get(y.id);if(x&&!g&&(y.id===f.id||!x.internals.positionAbsolute))return!1;const O=Yv(v?y:x),w=LS(O,b);return h&&w>0||w>=O.width*O.height||w>=b.width*b.height}):[]},isNodeIntersecting:(f,h,m=!0)=>{const b=HK(f)?f:c(f);if(!b)return!1;const v=LS(b,h);return m&&v>0||v>=h.width*h.height||v>=b.width*b.height},updateNode:u,updateNodeData:(f,h,m={replace:!1})=>{u(f,g=>{const b=typeof h=="function"?h(g):h;return m.replace?{...g,data:b}:{...g,data:{...g.data,...b}}},m)},updateEdge:d,updateEdgeData:(f,h,m={replace:!1})=>{d(f,g=>{const b=typeof h=="function"?h(g):h;return m.replace?{...g,data:b}:{...g,data:{...g.data,...b}}},m)},getNodesBounds:f=>{const{nodeLookup:h,nodeOrigin:m}=t.getState();return OJe(f,{nodeLookup:h,nodeOrigin:m})},getHandleConnections:({type:f,id:h,nodeId:m})=>{var g;return Array.from(((g=t.getState().connectionLookup.get(`${m}-${f}${h?`-${h}`:""}`))==null?void 0:g.values())??[])},getNodeConnections:({type:f,handleId:h,nodeId:m})=>{var g;return Array.from(((g=t.getState().connectionLookup.get(`${m}${f?h?`-${f}-${h}`:`-${f}`:""}`))==null?void 0:g.values())??[])},fitView:async f=>{const h=t.getState().fitViewResolver??_Je();return t.setState({fitViewQueued:!0,fitViewOptions:f,fitViewResolver:h}),n.nodeQueue.push(m=>[...m]),h.promise}}},[]);return p.useMemo(()=>({...r,...e,viewportInitialized:i}),[i])}const bG=e=>e.selected,utt=typeof window<"u"?window:void 0;function dtt({deleteKeyCode:e,multiSelectionKeyCode:t}){const n=as(),{deleteElements:i}=VR(),r=FS(e,{actInsideInputWithModifier:!1}),s=FS(t,{target:utt});p.useEffect(()=>{if(r){const{edges:a,nodes:l}=n.getState();i({nodes:l.filter(bG),edges:a.filter(bG)}),n.setState({nodesSelectionActive:!1})}},[r]),p.useEffect(()=>{n.setState({multiSelectionActive:s})},[s])}function ftt(e){const t=as();p.useEffect(()=>{const n=()=>{var r,s,a,l;if(!e.current||!(((s=(r=e.current).checkVisibility)==null?void 0:s.call(r))??!0))return!1;const i=pB(e.current);(i.height===0||i.width===0)&&((l=(a=t.getState()).onError)==null||l.call(a,"004",Bu.error004())),t.setState({width:i.width||500,height:i.height||500})};if(e.current){n(),window.addEventListener("resize",n);const i=new ResizeObserver(()=>n());return i.observe(e.current),()=>{window.removeEventListener("resize",n),i&&e.current&&i.unobserve(e.current)}}},[])}const HR={position:"absolute",width:"100%",height:"100%",top:0,left:0},htt=e=>({userSelectionActive:e.userSelectionActive,lib:e.lib,connectionInProgress:e.connection.inProgress});function ptt({onPaneContextMenu:e,zoomOnScroll:t=!0,zoomOnPinch:n=!0,panOnScroll:i=!1,panOnScrollSpeed:r=.5,panOnScrollMode:s=cb.Free,zoomOnDoubleClick:a=!0,panOnDrag:l=!0,defaultViewport:c,translateExtent:u,minZoom:d,maxZoom:f,zoomActivationKeyCode:h,preventScrolling:m=!0,children:g,noWheelClassName:b,noPanClassName:v,onViewportChange:y,isControlledViewport:x,paneClickDistance:O,selectionOnDrag:w}){const k=as(),S=p.useRef(null),{userSelectionActive:E,lib:C,connectionInProgress:N}=Ii(htt,ss),T=FS(h),j=p.useRef();ftt(S);const A=p.useCallback(L=>{y==null||y({x:L[0],y:L[1],zoom:L[2]}),x||k.setState({transform:L})},[y,x]);return p.useEffect(()=>{if(S.current){j.current=het({domNode:S.current,minZoom:d,maxZoom:f,translateExtent:u,viewport:c,onDraggingChange:I=>k.setState($=>$.paneDragging===I?$:{paneDragging:I}),onPanZoomStart:(I,$)=>{const{onViewportChangeStart:M,onMoveStart:B}=k.getState();B==null||B(I,$),M==null||M($)},onPanZoom:(I,$)=>{const{onViewportChange:M,onMove:B}=k.getState();B==null||B(I,$),M==null||M($)},onPanZoomEnd:(I,$)=>{const{onViewportChangeEnd:M,onMoveEnd:B}=k.getState();B==null||B(I,$),M==null||M($)}});const{x:L,y:_,zoom:P}=j.current.getViewport();return k.setState({panZoom:j.current,transform:[L,_,P],domNode:S.current.closest(".react-flow")}),()=>{var I;(I=j.current)==null||I.destroy()}}},[]),p.useEffect(()=>{var L;(L=j.current)==null||L.update({onPaneContextMenu:e,zoomOnScroll:t,zoomOnPinch:n,panOnScroll:i,panOnScrollSpeed:r,panOnScrollMode:s,zoomOnDoubleClick:a,panOnDrag:l,zoomActivationKeyPressed:T,preventScrolling:m,noPanClassName:v,userSelectionActive:E,noWheelClassName:b,lib:C,onTransformChange:A,connectionInProgress:N,selectionOnDrag:w,paneClickDistance:O})},[e,t,n,i,r,s,a,l,T,m,v,E,b,C,A,N,w,O]),o.jsx("div",{className:"react-flow__renderer",ref:S,style:HR,children:g})}const mtt=e=>({userSelectionActive:e.userSelectionActive,userSelectionRect:e.userSelectionRect});function gtt(){const{userSelectionActive:e,userSelectionRect:t}=Ii(mtt,ss);return e&&t?o.jsx("div",{className:"react-flow__selection react-flow__container",style:{width:t.width,height:t.height,transform:`translate(${t.x}px, ${t.y}px)`}}):null}const dM=(e,t)=>n=>{n.target===t.current&&(e==null||e(n))},btt=e=>({userSelectionActive:e.userSelectionActive,elementsSelectable:e.elementsSelectable,connectionInProgress:e.connection.inProgress,dragging:e.paneDragging,panBy:e.panBy,autoPanSpeed:e.autoPanSpeed});function ytt({isSelecting:e,selectionKeyPressed:t,selectionMode:n=DS.Full,panOnDrag:i,autoPanOnSelection:r,paneClickDistance:s,selectionOnDrag:a,onSelectionStart:l,onSelectionEnd:c,onPaneClick:u,onPaneContextMenu:d,onPaneScroll:f,onPaneMouseEnter:h,onPaneMouseMove:m,onPaneMouseLeave:g,children:b}){const v=p.useRef(0),y=as(),{userSelectionActive:x,elementsSelectable:O,dragging:w,connectionInProgress:k,panBy:S,autoPanSpeed:E}=Ii(btt,ss),C=O&&(e||x),N=p.useRef(null),T=p.useRef(),j=p.useRef(new Set),A=p.useRef(new Set),L=p.useRef(!1),_=p.useRef({x:0,y:0}),P=p.useRef(!1),I=re=>{if(L.current||k){L.current=!1;return}u==null||u(re),y.getState().resetSelectedElements(),y.setState({nodesSelectionActive:!1})},$=re=>{if(Array.isArray(i)&&(i!=null&&i.includes(2))){re.preventDefault();return}d==null||d(re)},M=f?re=>f(re):void 0,B=re=>{L.current&&(re.stopPropagation(),L.current=!1)},R=re=>{var Me,De;const{domNode:se,transform:me}=y.getState();if(T.current=se==null?void 0:se.getBoundingClientRect(),!T.current)return;const Z=re.target===N.current;if(!Z&&!!re.target.closest(".nokey")||!e||!(a&&Z||t)||re.button!==0||!re.isPrimary)return;(De=(Me=re.target)==null?void 0:Me.setPointerCapture)==null||De.call(Me,re.pointerId),L.current=!1;const{x:oe,y:Ee}=Nu(re.nativeEvent,T.current),he=zx({x:oe,y:Ee},me);y.setState({userSelectionRect:{width:0,height:0,startX:he.x,startY:he.y,x:oe,y:Ee}}),Z||(re.stopPropagation(),re.preventDefault())};function V(re,se){const{userSelectionRect:me}=y.getState();if(!me)return;const{transform:Z,nodeLookup:X,edgeLookup:J,connectionLookup:oe,triggerNodeChanges:Ee,triggerEdgeChanges:he,defaultEdgeOptions:Me}=y.getState(),De={x:me.startX,y:me.startY},{x:_e,y:Re}=Zv(De,Z),Xe={startX:De.x,startY:De.y,x:re<_e?re:_e,y:se$e.id)),A.current=new Set;const Oe=(Me==null?void 0:Me.selectable)??!0;for(const $e of j.current){const Y=oe.get($e);if(Y)for(const{edgeId:pe}of Y.values()){const Te=J.get(pe);Te&&(Te.selectable??Oe)&&A.current.add(pe)}}if(!qK(Ce,j.current)){const $e=Py(X,j.current,!0);Ee($e)}if(!qK(Fe,A.current)){const $e=Py(J,A.current);he($e)}y.setState({userSelectionRect:Xe,userSelectionActive:!0,nodesSelectionActive:!1})}function K(){if(!r||!T.current)return;const[re,se]=dB(_.current,T.current,E);S({x:re,y:se}).then(me=>{if(!L.current||!me){v.current=requestAnimationFrame(K);return}const{x:Z,y:X}=_.current;V(Z,X),v.current=requestAnimationFrame(K)})}const Q=()=>{cancelAnimationFrame(v.current),v.current=0,P.current=!1};p.useEffect(()=>()=>Q(),[]);const q=re=>{const{userSelectionRect:se,transform:me,resetSelectedElements:Z}=y.getState();if(!T.current||!se)return;const{x:X,y:J}=Nu(re.nativeEvent,T.current);_.current={x:X,y:J};const oe=Zv({x:se.startX,y:se.startY},me);if(!L.current){const Ee=t?0:s;if(Math.hypot(X-oe.x,J-oe.y)<=Ee)return;Z(),l==null||l(re)}L.current=!0,P.current||(K(),P.current=!0),V(X,J)},U=re=>{var se,me;re.button===0&&((me=(se=re.target)==null?void 0:se.releasePointerCapture)==null||me.call(se,re.pointerId),!x&&re.target===N.current&&y.getState().userSelectionRect&&(I==null||I(re)),y.setState({userSelectionActive:!1,userSelectionRect:null}),L.current&&(c==null||c(re),y.setState({nodesSelectionActive:j.current.size>0})),Q())},G=re=>{var se,me;(me=(se=re.target)==null?void 0:se.releasePointerCapture)==null||me.call(se,re.pointerId),Q()},ae=i===!0||Array.isArray(i)&&i.includes(0);return o.jsxs("div",{className:na(["react-flow__pane",{draggable:ae,dragging:w,selection:e}]),onClick:C?void 0:dM(I,N),onContextMenu:dM($,N),onWheel:dM(M,N),onPointerEnter:C?void 0:h,onPointerMove:C?q:m,onPointerUp:C?U:void 0,onPointerCancel:C?G:void 0,onPointerDownCapture:C?R:void 0,onClickCapture:C?B:void 0,onPointerLeave:g,ref:N,style:HR,children:[b,o.jsx(gtt,{})]})}function b6({id:e,store:t,unselect:n=!1,nodeRef:i}){const{addSelectedNodes:r,unselectNodesAndEdges:s,multiSelectionActive:a,nodeLookup:l,onError:c}=t.getState(),u=l.get(e);if(!u){c==null||c("012",Bu.error012(e));return}t.setState({nodesSelectionActive:!1}),u.selected?(n||u.selected&&a)&&(s({nodes:[u],edges:[]}),requestAnimationFrame(()=>{var d;return(d=i==null?void 0:i.current)==null?void 0:d.blur()})):r([e])}function Twe({nodeRef:e,disabled:t=!1,noDragClassName:n,handleSelector:i,nodeId:r,isSelectable:s,nodeClickDistance:a}){const l=as(),[c,u]=p.useState(!1),d=p.useRef();return p.useEffect(()=>{d.current=ZJe({getStoreItems:()=>l.getState(),onNodeMouseDown:f=>{b6({id:f,store:l,nodeRef:e})},onDragStart:()=>{u(!0)},onDragStop:()=>{u(!1)}})},[]),p.useEffect(()=>{if(!(t||!e.current||!d.current))return d.current.update({noDragClassName:n,handleSelector:i,domNode:e.current,isSelectable:s,nodeId:r,nodeClickDistance:a}),()=>{var f;(f=d.current)==null||f.destroy()}},[n,i,t,s,e,r,a]),c}const vtt=e=>t=>t.selected&&(t.draggable||e&&typeof t.draggable>"u");function Awe(){const e=as();return p.useCallback(n=>{const{nodeExtent:i,snapToGrid:r,snapGrid:s,nodesDraggable:a,onError:l,updateNodePositions:c,nodeLookup:u,nodeOrigin:d}=e.getState(),f=new Map,h=vtt(a),m=r?s[0]:5,g=r?s[1]:5,b=n.direction.x*m*n.factor,v=n.direction.y*g*n.factor;for(const[,y]of u){if(!h(y))continue;let x={x:y.internals.positionAbsolute.x+b,y:y.internals.positionAbsolute.y+v};r&&(x=lE(x,s));const{position:O,positionAbsolute:w}=q1e({nodeId:y.id,nextPosition:x,nodeLookup:u,nodeExtent:i,nodeOrigin:d,onError:l});y.position=O,y.internals.positionAbsolute=w,f.set(y.id,y)}c(f)},[])}const xB=p.createContext(null),xtt=xB.Provider;xB.Consumer;const _we=()=>p.useContext(xB),wtt=e=>({connectOnClick:e.connectOnClick,noPanClassName:e.noPanClassName,rfId:e.rfId}),Ott=(e,t,n)=>i=>{const{connectionClickStartHandle:r,connectionMode:s,connection:a}=i,{fromHandle:l,toHandle:c,isValid:u}=a,d=(c==null?void 0:c.nodeId)===e&&(c==null?void 0:c.id)===t&&(c==null?void 0:c.type)===n;return{connectingFrom:(l==null?void 0:l.nodeId)===e&&(l==null?void 0:l.id)===t&&(l==null?void 0:l.type)===n,connectingTo:d,clickConnecting:(r==null?void 0:r.nodeId)===e&&(r==null?void 0:r.id)===t&&(r==null?void 0:r.type)===n,isPossibleEndHandle:s===Gv.Strict?(l==null?void 0:l.type)!==n:e!==(l==null?void 0:l.nodeId)||t!==(l==null?void 0:l.id),connectionInProcess:!!l,clickConnectionInProcess:!!r,valid:d&&u}};function Stt({type:e="source",position:t=an.Top,isValidConnection:n,isConnectable:i=!0,isConnectableStart:r=!0,isConnectableEnd:s=!0,id:a,onConnect:l,children:c,className:u,onMouseDown:d,onTouchStart:f,...h},m){var P,I;const g=a||null,b=e==="target",v=as(),y=_we(),{connectOnClick:x,noPanClassName:O,rfId:w}=Ii(wtt,ss),{connectingFrom:k,connectingTo:S,clickConnecting:E,isPossibleEndHandle:C,connectionInProcess:N,clickConnectionInProcess:T,valid:j}=Ii(Ott(y,g,e),ss);y||(I=(P=v.getState()).onError)==null||I.call(P,"010",Bu.error010());const A=$=>{const{defaultEdgeOptions:M,onConnect:B,hasDefaultEdges:R}=v.getState(),V={...M,...$};if(R){const{edges:K,setEdges:Q,onError:q}=v.getState();Q(itt(V,K,{onError:q}))}B==null||B(V),l==null||l(V)},L=$=>{if(!y)return;const M=J1e($.nativeEvent);if(r&&(M&&$.button===0||!M)){const B=v.getState();g6.onPointerDown($.nativeEvent,{handleDomNode:$.currentTarget,autoPanOnConnect:B.autoPanOnConnect,connectionMode:B.connectionMode,connectionRadius:B.connectionRadius,domNode:B.domNode,nodeLookup:B.nodeLookup,lib:B.lib,isTarget:b,handleId:g,nodeId:y,flowId:B.rfId,panBy:B.panBy,cancelConnection:B.cancelConnection,onConnectStart:B.onConnectStart,onConnectEnd:(...R)=>{var V,K;return(K=(V=v.getState()).onConnectEnd)==null?void 0:K.call(V,...R)},updateConnection:B.updateConnection,onConnect:A,isValidConnection:n||((...R)=>{var V,K;return((K=(V=v.getState()).isValidConnection)==null?void 0:K.call(V,...R))??!0}),getTransform:()=>v.getState().transform,getFromHandle:()=>v.getState().connection.fromHandle,autoPanSpeed:B.autoPanSpeed,dragThreshold:B.connectionDragThreshold})}M?d==null||d($):f==null||f($)},_=$=>{const{onClickConnectStart:M,onClickConnectEnd:B,connectionClickStartHandle:R,connectionMode:V,isValidConnection:K,lib:Q,rfId:q,nodeLookup:U,connection:G}=v.getState();if(!y||!R&&!r)return;if(!R){M==null||M($.nativeEvent,{nodeId:y,handleId:g,handleType:e}),v.setState({connectionClickStartHandle:{nodeId:y,type:e,id:g}});return}const ae=Y1e($.target),re=n||K,{connection:se,isValid:me}=g6.isValid($.nativeEvent,{handle:{nodeId:y,id:g,type:e},connectionMode:V,fromNodeId:R.nodeId,fromHandleId:R.id||null,fromType:R.type,isValidConnection:re,flowId:q,doc:ae,lib:Q,nodeLookup:U});me&&se&&A(se);const Z=structuredClone(G);delete Z.inProgress,Z.toPosition=Z.toHandle?Z.toHandle.position:null,B==null||B($,Z),v.setState({connectionClickStartHandle:null})};return o.jsx("div",{"data-handleid":g,"data-nodeid":y,"data-handlepos":t,"data-id":`${w}-${y}-${g}-${e}`,className:na(["react-flow__handle",`react-flow__handle-${t}`,"nodrag",O,u,{source:!b,target:b,connectable:i,connectablestart:r,connectableend:s,clickconnecting:E,connectingfrom:k,connectingto:S,valid:j,connectionindicator:i&&(!N||C)&&(N||T?s:r)}]),onMouseDown:L,onTouchStart:L,onClick:x?_:void 0,ref:m,...h,children:c})}const pl=p.memo(Ewe(Stt));function ktt({data:e,isConnectable:t,sourcePosition:n=an.Bottom}){return o.jsxs(o.Fragment,{children:[e==null?void 0:e.label,o.jsx(pl,{type:"source",position:n,isConnectable:t})]})}function Ett({data:e,isConnectable:t,targetPosition:n=an.Top,sourcePosition:i=an.Bottom}){return o.jsxs(o.Fragment,{children:[o.jsx(pl,{type:"target",position:n,isConnectable:t}),e==null?void 0:e.label,o.jsx(pl,{type:"source",position:i,isConnectable:t})]})}function Ctt(){return null}function Ttt({data:e,isConnectable:t,targetPosition:n=an.Top}){return o.jsxs(o.Fragment,{children:[o.jsx(pl,{type:"target",position:n,isConnectable:t}),e==null?void 0:e.label]})}const sN={ArrowUp:{x:0,y:-1},ArrowDown:{x:0,y:1},ArrowLeft:{x:-1,y:0},ArrowRight:{x:1,y:0}},yG={input:ktt,default:Ett,output:Ttt,group:Ctt};function Att(e){var t,n,i,r;return e.internals.handleBounds===void 0?{width:e.width??e.initialWidth??((t=e.style)==null?void 0:t.width),height:e.height??e.initialHeight??((n=e.style)==null?void 0:n.height)}:{width:e.width??((i=e.style)==null?void 0:i.width),height:e.height??((r=e.style)==null?void 0:r.height)}}const _tt=e=>{const{width:t,height:n,x:i,y:r}=oE(e.nodeLookup,{filter:s=>!!s.selected});return{width:_u(t)?t:null,height:_u(n)?n:null,userSelectionActive:e.userSelectionActive,transformString:`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]}) translate(${i}px,${r}px)`}};function Ntt({onSelectionContextMenu:e,noPanClassName:t,disableKeyboardA11y:n}){const i=as(),{width:r,height:s,transformString:a,userSelectionActive:l}=Ii(_tt,ss),c=Awe(),u=p.useRef(null);p.useEffect(()=>{var m;n||(m=u.current)==null||m.focus({preventScroll:!0})},[n]);const d=!l&&r!==null&&s!==null;if(Twe({nodeRef:u,disabled:!d}),!d)return null;const f=e?m=>{const g=i.getState().nodes.filter(b=>b.selected);e(m,g)}:void 0,h=m=>{Object.prototype.hasOwnProperty.call(sN,m.key)&&(m.preventDefault(),c({direction:sN[m.key],factor:m.shiftKey?4:1}))};return o.jsx("div",{className:na(["react-flow__nodesselection","react-flow__container",t]),style:{transform:a},children:o.jsx("div",{ref:u,className:"react-flow__nodesselection-rect",onContextMenu:f,tabIndex:n?void 0:-1,onKeyDown:n?void 0:h,style:{width:r,height:s}})})}const vG=typeof window<"u"?window:void 0,jtt=e=>({nodesSelectionActive:e.nodesSelectionActive,userSelectionActive:e.userSelectionActive});function Nwe({children:e,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:i,onPaneMouseLeave:r,onPaneContextMenu:s,onPaneScroll:a,paneClickDistance:l,deleteKeyCode:c,selectionKeyCode:u,selectionOnDrag:d,selectionMode:f,onSelectionStart:h,onSelectionEnd:m,multiSelectionKeyCode:g,panActivationKeyCode:b,zoomActivationKeyCode:v,elementsSelectable:y,zoomOnScroll:x,zoomOnPinch:O,panOnScroll:w,panOnScrollSpeed:k,panOnScrollMode:S,zoomOnDoubleClick:E,panOnDrag:C,autoPanOnSelection:N,defaultViewport:T,translateExtent:j,minZoom:A,maxZoom:L,preventScrolling:_,onSelectionContextMenu:P,noWheelClassName:I,noPanClassName:$,disableKeyboardA11y:M,onViewportChange:B,isControlledViewport:R}){const{nodesSelectionActive:V,userSelectionActive:K}=Ii(jtt,ss),Q=FS(u,{target:vG}),q=FS(b,{target:vG}),U=q||C,G=q||w,ae=d&&U!==!0,re=Q||K||ae;return dtt({deleteKeyCode:c,multiSelectionKeyCode:g}),o.jsx(ptt,{onPaneContextMenu:s,elementsSelectable:y,zoomOnScroll:x,zoomOnPinch:O,panOnScroll:G,panOnScrollSpeed:k,panOnScrollMode:S,zoomOnDoubleClick:E,panOnDrag:!Q&&U,defaultViewport:T,translateExtent:j,minZoom:A,maxZoom:L,zoomActivationKeyCode:v,preventScrolling:_,noWheelClassName:I,noPanClassName:$,onViewportChange:B,isControlledViewport:R,paneClickDistance:l,selectionOnDrag:ae,children:o.jsxs(ytt,{onSelectionStart:h,onSelectionEnd:m,onPaneClick:t,onPaneMouseEnter:n,onPaneMouseMove:i,onPaneMouseLeave:r,onPaneContextMenu:s,onPaneScroll:a,panOnDrag:U,autoPanOnSelection:N,isSelecting:!!re,selectionMode:f,selectionKeyPressed:Q,paneClickDistance:l,selectionOnDrag:ae,children:[e,V&&o.jsx(Ntt,{onSelectionContextMenu:P,noPanClassName:$,disableKeyboardA11y:M})]})})}Nwe.displayName="FlowRenderer";const Rtt=p.memo(Nwe),Itt=e=>t=>e?uB(t.nodeLookup,{x:0,y:0,width:t.width,height:t.height},t.transform,!0).map(n=>n.id):Array.from(t.nodeLookup.keys());function Ptt(e){return Ii(p.useCallback(Itt(e),[e]),ss)}const Dtt=e=>e.updateNodeInternals;function Mtt(){const e=Ii(Dtt),[t]=p.useState(()=>typeof ResizeObserver>"u"?null:new ResizeObserver(n=>{const i=new Map;n.forEach(r=>{const s=r.target.getAttribute("data-id");i.set(s,{id:s,nodeElement:r.target,force:!0})}),e(i)}));return p.useEffect(()=>()=>{t==null||t.disconnect()},[t]),t}function Ltt({node:e,nodeType:t,hasDimensions:n,resizeObserver:i}){const r=as(),s=p.useRef(null),a=p.useRef(null),l=p.useRef(e.sourcePosition),c=p.useRef(e.targetPosition),u=p.useRef(t),d=n&&!!e.internals.handleBounds;return p.useEffect(()=>{s.current&&!e.hidden&&(!d||a.current!==s.current)&&(a.current&&(i==null||i.unobserve(a.current)),i==null||i.observe(s.current),a.current=s.current)},[d,e.hidden]),p.useEffect(()=>()=>{a.current&&(i==null||i.unobserve(a.current),a.current=null)},[]),p.useEffect(()=>{if(s.current){const f=u.current!==t,h=l.current!==e.sourcePosition,m=c.current!==e.targetPosition;(f||h||m)&&(u.current=t,l.current=e.sourcePosition,c.current=e.targetPosition,r.getState().updateNodeInternals(new Map([[e.id,{id:e.id,nodeElement:s.current,force:!0}]])))}},[e.id,t,e.sourcePosition,e.targetPosition]),s}function $tt({id:e,onClick:t,onMouseEnter:n,onMouseMove:i,onMouseLeave:r,onContextMenu:s,onDoubleClick:a,nodesDraggable:l,elementsSelectable:c,nodesConnectable:u,nodesFocusable:d,resizeObserver:f,noDragClassName:h,noPanClassName:m,disableKeyboardA11y:g,rfId:b,nodeTypes:v,nodeClickDistance:y,onError:x}){const{node:O,internals:w,isParent:k}=Ii(re=>{const se=re.nodeLookup.get(e),me=re.parentLookup.has(e);return{node:se,internals:se.internals,isParent:me}},ss);let S=O.type||"default",E=(v==null?void 0:v[S])||yG[S];E===void 0&&(x==null||x("003",Bu.error003(S)),S="default",E=(v==null?void 0:v.default)||yG.default);const C=!!(O.draggable||l&&typeof O.draggable>"u"),N=!!(O.selectable||c&&typeof O.selectable>"u"),T=!!(O.connectable||u&&typeof O.connectable>"u"),j=!!(O.focusable||d&&typeof O.focusable>"u"),A=as(),L=hB(O),_=Ltt({node:O,nodeType:S,hasDimensions:L,resizeObserver:f}),P=Twe({nodeRef:_,disabled:O.hidden||!C,noDragClassName:h,handleSelector:O.dragHandle,nodeId:e,isSelectable:N,nodeClickDistance:y}),I=Awe();if(O.hidden)return null;const $=$h(O),M=Att(O),B=N||C||t||n||i||r,R=n?re=>n(re,{...w.userNode}):void 0,V=i?re=>i(re,{...w.userNode}):void 0,K=r?re=>r(re,{...w.userNode}):void 0,Q=s?re=>s(re,{...w.userNode}):void 0,q=a?re=>a(re,{...w.userNode}):void 0,U=re=>{const{selectNodesOnDrag:se,nodeDragThreshold:me}=A.getState();N&&(!se||!C||me>0)&&b6({id:e,store:A,nodeRef:_}),t&&t(re,{...w.userNode})},G=re=>{if(!(Z1e(re.nativeEvent)||g)){if(U1e.includes(re.key)&&N){const se=re.key==="Escape";b6({id:e,store:A,unselect:se,nodeRef:_})}else if(C&&O.selected&&Object.prototype.hasOwnProperty.call(sN,re.key)){re.preventDefault();const{ariaLabelConfig:se}=A.getState();A.setState({ariaLiveMessage:se["node.a11yDescription.ariaLiveMessage"]({direction:re.key.replace("Arrow","").toLowerCase(),x:~~w.positionAbsolute.x,y:~~w.positionAbsolute.y})}),I({direction:sN[re.key],factor:re.shiftKey?4:1})}}},ae=()=>{var oe;if(g||!((oe=_.current)!=null&&oe.matches(":focus-visible")))return;const{transform:re,width:se,height:me,autoPanOnNodeFocus:Z,setCenter:X}=A.getState();if(!Z)return;uB(new Map([[e,O]]),{x:0,y:0,width:se,height:me},re,!0).length>0||X(O.position.x+$.width/2,O.position.y+$.height/2,{zoom:re[2]})};return o.jsx("div",{className:na(["react-flow__node",`react-flow__node-${S}`,{[m]:C},O.className,{selected:O.selected,selectable:N,parent:k,draggable:C,dragging:P}]),ref:_,style:{zIndex:w.z,transform:`translate(${w.positionAbsolute.x}px,${w.positionAbsolute.y}px)`,pointerEvents:B?"all":"none",visibility:L?"visible":"hidden",...O.style,...M},"data-id":e,"data-testid":`rf__node-${e}`,onMouseEnter:R,onMouseMove:V,onMouseLeave:K,onContextMenu:Q,onClick:U,onDoubleClick:q,onKeyDown:j?G:void 0,tabIndex:j?0:void 0,onFocus:j?ae:void 0,role:O.ariaRole??(j?"group":void 0),"aria-roledescription":"node","aria-describedby":g?void 0:`${vwe}-${b}`,"aria-label":O.ariaLabel,...O.domAttributes,children:o.jsx(xtt,{value:e,children:o.jsx(E,{id:e,data:O.data,type:S,positionAbsoluteX:w.positionAbsolute.x,positionAbsoluteY:w.positionAbsolute.y,selected:O.selected??!1,selectable:N,draggable:C,deletable:O.deletable??!0,isConnectable:T,sourcePosition:O.sourcePosition,targetPosition:O.targetPosition,dragging:P,dragHandle:O.dragHandle,zIndex:w.z,parentId:O.parentId,...$})})})}var Ftt=p.memo($tt);const Btt=e=>({nodesDraggable:e.nodesDraggable,nodesConnectable:e.nodesConnectable,nodesFocusable:e.nodesFocusable,elementsSelectable:e.elementsSelectable,onError:e.onError});function jwe(e){const{nodesDraggable:t,nodesConnectable:n,nodesFocusable:i,elementsSelectable:r,onError:s}=Ii(Btt,ss),a=Ptt(e.onlyRenderVisibleElements),l=Mtt();return o.jsx("div",{className:"react-flow__nodes",style:HR,children:a.map(c=>o.jsx(Ftt,{id:c,nodeTypes:e.nodeTypes,nodeExtent:e.nodeExtent,onClick:e.onNodeClick,onMouseEnter:e.onNodeMouseEnter,onMouseMove:e.onNodeMouseMove,onMouseLeave:e.onNodeMouseLeave,onContextMenu:e.onNodeContextMenu,onDoubleClick:e.onNodeDoubleClick,noDragClassName:e.noDragClassName,noPanClassName:e.noPanClassName,rfId:e.rfId,disableKeyboardA11y:e.disableKeyboardA11y,resizeObserver:l,nodesDraggable:t,nodesConnectable:n,nodesFocusable:i,elementsSelectable:r,nodeClickDistance:e.nodeClickDistance,onError:s},c))})}jwe.displayName="NodeRenderer";const Utt=p.memo(jwe);function Qtt(e){return Ii(p.useCallback(n=>{if(!e)return n.edges.map(r=>r.id);const i=[];if(n.width&&n.height)for(const r of n.edges){const s=n.nodeLookup.get(r.source),a=n.nodeLookup.get(r.target);s&&a&&IJe({sourceNode:s,targetNode:a,width:n.width,height:n.height,transform:n.transform})&&i.push(r.id)}return i},[e]),ss)}const ztt=({color:e="none",strokeWidth:t=1})=>{const n={strokeWidth:t,...e&&{stroke:e}};return o.jsx("polyline",{className:"arrow",style:n,strokeLinecap:"round",fill:"none",strokeLinejoin:"round",points:"-5,-4 0,0 -5,4"})},Vtt=({color:e="none",strokeWidth:t=1})=>{const n={strokeWidth:t,...e&&{stroke:e,fill:e}};return o.jsx("polyline",{className:"arrowclosed",style:n,strokeLinecap:"round",strokeLinejoin:"round",points:"-5,-4 0,0 -5,4 -5,-4"})},xG={[MS.Arrow]:ztt,[MS.ArrowClosed]:Vtt};function Htt(e){const t=as();return p.useMemo(()=>{var r,s;return Object.prototype.hasOwnProperty.call(xG,e)?xG[e]:((s=(r=t.getState()).onError)==null||s.call(r,"009",Bu.error009(e)),null)},[e])}const qtt=({id:e,type:t,color:n,width:i=12.5,height:r=12.5,markerUnits:s="strokeWidth",strokeWidth:a,orient:l="auto-start-reverse"})=>{const c=Htt(t);return c?o.jsx("marker",{className:"react-flow__arrowhead",id:e,markerWidth:`${i}`,markerHeight:`${r}`,viewBox:"-10 -10 20 20",markerUnits:s,orient:l,refX:"0",refY:"0",children:o.jsx(c,{color:n,strokeWidth:a})}):null},Rwe=({defaultColor:e,rfId:t})=>{const n=Ii(s=>s.edges),i=Ii(s=>s.defaultEdgeOptions),r=p.useMemo(()=>UJe(n,{id:t,defaultColor:e,defaultMarkerStart:i==null?void 0:i.markerStart,defaultMarkerEnd:i==null?void 0:i.markerEnd}),[n,i,t,e]);return r.length?o.jsx("svg",{className:"react-flow__marker","aria-hidden":"true",children:o.jsx("defs",{children:r.map(s=>o.jsx(qtt,{id:s.id,type:s.type,color:s.color,width:s.width,height:s.height,markerUnits:s.markerUnits,strokeWidth:s.strokeWidth,orient:s.orient},s.id))})}):null};Rwe.displayName="MarkerDefinitions";var Wtt=p.memo(Rwe);function Iwe({x:e,y:t,label:n,labelStyle:i,labelShowBg:r=!0,labelBgStyle:s,labelBgPadding:a=[2,4],labelBgBorderRadius:l=2,children:c,className:u,...d}){const[f,h]=p.useState({x:1,y:0,width:0,height:0}),m=na(["react-flow__edge-textwrapper",u]),g=p.useRef(null);return p.useEffect(()=>{if(g.current){const b=g.current.getBBox();h({x:b.x,y:b.y,width:b.width,height:b.height})}},[n]),n?o.jsxs("g",{transform:`translate(${e-f.width/2} ${t-f.height/2})`,className:m,visibility:f.width?"visible":"hidden",...d,children:[r&&o.jsx("rect",{width:f.width+2*a[0],x:-a[0],y:-a[1],height:f.height+2*a[1],className:"react-flow__edge-textbg",style:s,rx:l,ry:l}),o.jsx("text",{className:"react-flow__edge-text",y:f.height/2,dy:"0.3em",ref:g,style:i,children:n}),c]}):null}Iwe.displayName="EdgeText";const Ktt=p.memo(Iwe);function cE({path:e,labelX:t,labelY:n,label:i,labelStyle:r,labelShowBg:s,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c,interactionWidth:u=20,...d}){return o.jsxs(o.Fragment,{children:[o.jsx("path",{...d,d:e,fill:"none",className:na(["react-flow__edge-path",d.className])}),u?o.jsx("path",{d:e,fill:"none",strokeOpacity:0,strokeWidth:u,className:"react-flow__edge-interaction"}):null,i&&_u(t)&&_u(n)?o.jsx(Ktt,{x:t,y:n,label:i,labelStyle:r,labelShowBg:s,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c}):null]})}function wG({pos:e,x1:t,y1:n,x2:i,y2:r}){return e===an.Left||e===an.Right?[.5*(t+i),n]:[t,.5*(n+r)]}function Pwe({sourceX:e,sourceY:t,sourcePosition:n=an.Bottom,targetX:i,targetY:r,targetPosition:s=an.Top}){const[a,l]=wG({pos:n,x1:e,y1:t,x2:i,y2:r}),[c,u]=wG({pos:s,x1:i,y1:r,x2:e,y2:t}),[d,f,h,m]=ewe({sourceX:e,sourceY:t,targetX:i,targetY:r,sourceControlX:a,sourceControlY:l,targetControlX:c,targetControlY:u});return[`M${e},${t} C${a},${l} ${c},${u} ${i},${r}`,d,f,h,m]}function Dwe(e){return p.memo(({id:t,sourceX:n,sourceY:i,targetX:r,targetY:s,sourcePosition:a,targetPosition:l,label:c,labelStyle:u,labelShowBg:d,labelBgStyle:f,labelBgPadding:h,labelBgBorderRadius:m,style:g,markerEnd:b,markerStart:v,interactionWidth:y})=>{const[x,O,w]=Pwe({sourceX:n,sourceY:i,sourcePosition:a,targetX:r,targetY:s,targetPosition:l}),k=e.isInternal?void 0:t;return o.jsx(cE,{id:k,path:x,labelX:O,labelY:w,label:c,labelStyle:u,labelShowBg:d,labelBgStyle:f,labelBgPadding:h,labelBgBorderRadius:m,style:g,markerEnd:b,markerStart:v,interactionWidth:y})})}const Gtt=Dwe({isInternal:!1}),Mwe=Dwe({isInternal:!0});Gtt.displayName="SimpleBezierEdge";Mwe.displayName="SimpleBezierEdgeInternal";function Lwe(e){return p.memo(({id:t,sourceX:n,sourceY:i,targetX:r,targetY:s,label:a,labelStyle:l,labelShowBg:c,labelBgStyle:u,labelBgPadding:d,labelBgBorderRadius:f,style:h,sourcePosition:m=an.Bottom,targetPosition:g=an.Top,markerEnd:b,markerStart:v,pathOptions:y,interactionWidth:x})=>{const[O,w,k]=rN({sourceX:n,sourceY:i,sourcePosition:m,targetX:r,targetY:s,targetPosition:g,borderRadius:y==null?void 0:y.borderRadius,offset:y==null?void 0:y.offset,stepPosition:y==null?void 0:y.stepPosition}),S=e.isInternal?void 0:t;return o.jsx(cE,{id:S,path:O,labelX:w,labelY:k,label:a,labelStyle:l,labelShowBg:c,labelBgStyle:u,labelBgPadding:d,labelBgBorderRadius:f,style:h,markerEnd:b,markerStart:v,interactionWidth:x})})}const $we=Lwe({isInternal:!1}),Fwe=Lwe({isInternal:!0});$we.displayName="SmoothStepEdge";Fwe.displayName="SmoothStepEdgeInternal";function Bwe(e){return p.memo(({id:t,...n})=>{var r;const i=e.isInternal?void 0:t;return o.jsx($we,{...n,id:i,pathOptions:p.useMemo(()=>{var s;return{borderRadius:0,offset:(s=n.pathOptions)==null?void 0:s.offset}},[(r=n.pathOptions)==null?void 0:r.offset])})})}const Xtt=Bwe({isInternal:!1}),Uwe=Bwe({isInternal:!0});Xtt.displayName="StepEdge";Uwe.displayName="StepEdgeInternal";function Qwe(e){return p.memo(({id:t,sourceX:n,sourceY:i,targetX:r,targetY:s,label:a,labelStyle:l,labelShowBg:c,labelBgStyle:u,labelBgPadding:d,labelBgBorderRadius:f,style:h,markerEnd:m,markerStart:g,interactionWidth:b})=>{const[v,y,x]=iwe({sourceX:n,sourceY:i,targetX:r,targetY:s}),O=e.isInternal?void 0:t;return o.jsx(cE,{id:O,path:v,labelX:y,labelY:x,label:a,labelStyle:l,labelShowBg:c,labelBgStyle:u,labelBgPadding:d,labelBgBorderRadius:f,style:h,markerEnd:m,markerStart:g,interactionWidth:b})})}const Ytt=Qwe({isInternal:!1}),zwe=Qwe({isInternal:!0});Ytt.displayName="StraightEdge";zwe.displayName="StraightEdgeInternal";function Vwe(e){return p.memo(({id:t,sourceX:n,sourceY:i,targetX:r,targetY:s,sourcePosition:a=an.Bottom,targetPosition:l=an.Top,label:c,labelStyle:u,labelShowBg:d,labelBgStyle:f,labelBgPadding:h,labelBgBorderRadius:m,style:g,markerEnd:b,markerStart:v,pathOptions:y,interactionWidth:x})=>{const[O,w,k]=twe({sourceX:n,sourceY:i,sourcePosition:a,targetX:r,targetY:s,targetPosition:l,curvature:y==null?void 0:y.curvature}),S=e.isInternal?void 0:t;return o.jsx(cE,{id:S,path:O,labelX:w,labelY:k,label:c,labelStyle:u,labelShowBg:d,labelBgStyle:f,labelBgPadding:h,labelBgBorderRadius:m,style:g,markerEnd:b,markerStart:v,interactionWidth:x})})}const Ztt=Vwe({isInternal:!1}),Hwe=Vwe({isInternal:!0});Ztt.displayName="BezierEdge";Hwe.displayName="BezierEdgeInternal";const OG={default:Hwe,straight:zwe,step:Uwe,smoothstep:Fwe,simplebezier:Mwe},SG={sourceX:null,sourceY:null,targetX:null,targetY:null,sourcePosition:null,targetPosition:null},Jtt=(e,t,n)=>n===an.Left?e-t:n===an.Right?e+t:e,ent=(e,t,n)=>n===an.Top?e-t:n===an.Bottom?e+t:e,kG="react-flow__edgeupdater";function EG({position:e,centerX:t,centerY:n,radius:i=10,onMouseDown:r,onMouseEnter:s,onMouseOut:a,type:l}){return o.jsx("circle",{onMouseDown:r,onMouseEnter:s,onMouseOut:a,className:na([kG,`${kG}-${l}`]),cx:Jtt(t,i,e),cy:ent(n,i,e),r:i,stroke:"transparent",fill:"transparent"})}function tnt({isReconnectable:e,reconnectRadius:t,edge:n,sourceX:i,sourceY:r,targetX:s,targetY:a,sourcePosition:l,targetPosition:c,onReconnect:u,onReconnectStart:d,onReconnectEnd:f,setReconnecting:h,setUpdateHover:m}){const g=as(),b=(w,k)=>{if(w.button!==0)return;const{autoPanOnConnect:S,domNode:E,connectionMode:C,connectionRadius:N,lib:T,onConnectStart:j,cancelConnection:A,nodeLookup:L,rfId:_,panBy:P,updateConnection:I}=g.getState(),$=k.type==="target",M=(V,K)=>{h(!1),f==null||f(V,n,k.type,K)},B=V=>u==null?void 0:u(n,V),R=(V,K)=>{h(!0),d==null||d(w,n,k.type),j==null||j(V,K)};g6.onPointerDown(w.nativeEvent,{autoPanOnConnect:S,connectionMode:C,connectionRadius:N,domNode:E,handleId:k.id,nodeId:k.nodeId,nodeLookup:L,isTarget:$,edgeUpdaterType:k.type,lib:T,flowId:_,cancelConnection:A,panBy:P,isValidConnection:(...V)=>{var K,Q;return((Q=(K=g.getState()).isValidConnection)==null?void 0:Q.call(K,...V))??!0},onConnect:B,onConnectStart:R,onConnectEnd:(...V)=>{var K,Q;return(Q=(K=g.getState()).onConnectEnd)==null?void 0:Q.call(K,...V)},onReconnectEnd:M,updateConnection:I,getTransform:()=>g.getState().transform,getFromHandle:()=>g.getState().connection.fromHandle,dragThreshold:g.getState().connectionDragThreshold,handleDomNode:w.currentTarget})},v=w=>b(w,{nodeId:n.target,id:n.targetHandle??null,type:"target"}),y=w=>b(w,{nodeId:n.source,id:n.sourceHandle??null,type:"source"}),x=()=>m(!0),O=()=>m(!1);return o.jsxs(o.Fragment,{children:[(e===!0||e==="source")&&o.jsx(EG,{position:l,centerX:i,centerY:r,radius:t,onMouseDown:v,onMouseEnter:x,onMouseOut:O,type:"source"}),(e===!0||e==="target")&&o.jsx(EG,{position:c,centerX:s,centerY:a,radius:t,onMouseDown:y,onMouseEnter:x,onMouseOut:O,type:"target"})]})}function nnt({id:e,edgesFocusable:t,edgesReconnectable:n,elementsSelectable:i,onClick:r,onDoubleClick:s,onContextMenu:a,onMouseEnter:l,onMouseMove:c,onMouseLeave:u,reconnectRadius:d,onReconnect:f,onReconnectStart:h,onReconnectEnd:m,rfId:g,edgeTypes:b,noPanClassName:v,onError:y,disableKeyboardA11y:x}){let O=Ii(X=>X.edgeLookup.get(e));const w=Ii(X=>X.defaultEdgeOptions);O=w?{...w,...O}:O;let k=O.type||"default",S=(b==null?void 0:b[k])||OG[k];S===void 0&&(y==null||y("011",Bu.error011(k)),k="default",S=(b==null?void 0:b.default)||OG.default);const E=!!(O.focusable||t&&typeof O.focusable>"u"),C=typeof f<"u"&&(O.reconnectable||n&&typeof O.reconnectable>"u"),N=!!(O.selectable||i&&typeof O.selectable>"u"),T=p.useRef(null),[j,A]=p.useState(!1),[L,_]=p.useState(!1),P=as(),{zIndex:I,sourceX:$,sourceY:M,targetX:B,targetY:R,sourcePosition:V,targetPosition:K}=Ii(p.useCallback(X=>{const J=X.nodeLookup.get(O.source),oe=X.nodeLookup.get(O.target);if(!J||!oe)return{zIndex:O.zIndex,...SG};const Ee=BJe({id:e,sourceNode:J,targetNode:oe,sourceHandle:O.sourceHandle||null,targetHandle:O.targetHandle||null,connectionMode:X.connectionMode,onError:y});return{zIndex:RJe({selected:O.selected,zIndex:O.zIndex,sourceNode:J,targetNode:oe,elevateOnSelect:X.elevateEdgesOnSelect,zIndexMode:X.zIndexMode}),...Ee||SG}},[O.source,O.target,O.sourceHandle,O.targetHandle,O.selected,O.zIndex]),ss),Q=p.useMemo(()=>O.markerStart?`url('#${p6(O.markerStart,g)}')`:void 0,[O.markerStart,g]),q=p.useMemo(()=>O.markerEnd?`url('#${p6(O.markerEnd,g)}')`:void 0,[O.markerEnd,g]);if(O.hidden||$===null||M===null||B===null||R===null)return null;const U=X=>{var he;const{addSelectedEdges:J,unselectNodesAndEdges:oe,multiSelectionActive:Ee}=P.getState();N&&(P.setState({nodesSelectionActive:!1}),O.selected&&Ee?(oe({nodes:[],edges:[O]}),(he=T.current)==null||he.blur()):J([e])),r&&r(X,O)},G=s?X=>{s(X,{...O})}:void 0,ae=a?X=>{a(X,{...O})}:void 0,re=l?X=>{l(X,{...O})}:void 0,se=c?X=>{c(X,{...O})}:void 0,me=u?X=>{u(X,{...O})}:void 0,Z=X=>{var J;if(!x&&U1e.includes(X.key)&&N){const{unselectNodesAndEdges:oe,addSelectedEdges:Ee}=P.getState();X.key==="Escape"?((J=T.current)==null||J.blur(),oe({edges:[O]})):Ee([e])}};return o.jsx("svg",{style:{zIndex:I},children:o.jsxs("g",{className:na(["react-flow__edge",`react-flow__edge-${k}`,O.className,v,{selected:O.selected,animated:O.animated,inactive:!N&&!r,updating:j,selectable:N}]),onClick:U,onDoubleClick:G,onContextMenu:ae,onMouseEnter:re,onMouseMove:se,onMouseLeave:me,onKeyDown:E?Z:void 0,tabIndex:E?0:void 0,role:O.ariaRole??(E?"group":"img"),"aria-roledescription":"edge","data-id":e,"data-testid":`rf__edge-${e}`,"aria-label":O.ariaLabel===null?void 0:O.ariaLabel||`Edge from ${O.source} to ${O.target}`,"aria-describedby":E?`${xwe}-${g}`:void 0,ref:T,...O.domAttributes,children:[!L&&o.jsx(S,{id:e,source:O.source,target:O.target,type:O.type,selected:O.selected,animated:O.animated,selectable:N,deletable:O.deletable??!0,label:O.label,labelStyle:O.labelStyle,labelShowBg:O.labelShowBg,labelBgStyle:O.labelBgStyle,labelBgPadding:O.labelBgPadding,labelBgBorderRadius:O.labelBgBorderRadius,sourceX:$,sourceY:M,targetX:B,targetY:R,sourcePosition:V,targetPosition:K,data:O.data,style:O.style,sourceHandleId:O.sourceHandle,targetHandleId:O.targetHandle,markerStart:Q,markerEnd:q,pathOptions:"pathOptions"in O?O.pathOptions:void 0,interactionWidth:O.interactionWidth}),C&&o.jsx(tnt,{edge:O,isReconnectable:C,reconnectRadius:d,onReconnect:f,onReconnectStart:h,onReconnectEnd:m,sourceX:$,sourceY:M,targetX:B,targetY:R,sourcePosition:V,targetPosition:K,setUpdateHover:A,setReconnecting:_})]})})}var int=p.memo(nnt);const rnt=e=>({edgesFocusable:e.edgesFocusable,edgesReconnectable:e.edgesReconnectable,elementsSelectable:e.elementsSelectable,connectionMode:e.connectionMode,onError:e.onError});function qwe({defaultMarkerColor:e,onlyRenderVisibleElements:t,rfId:n,edgeTypes:i,noPanClassName:r,onReconnect:s,onEdgeContextMenu:a,onEdgeMouseEnter:l,onEdgeMouseMove:c,onEdgeMouseLeave:u,onEdgeClick:d,reconnectRadius:f,onEdgeDoubleClick:h,onReconnectStart:m,onReconnectEnd:g,disableKeyboardA11y:b}){const{edgesFocusable:v,edgesReconnectable:y,elementsSelectable:x,onError:O}=Ii(rnt,ss),w=Qtt(t);return o.jsxs("div",{className:"react-flow__edges",children:[o.jsx(Wtt,{defaultColor:e,rfId:n}),w.map(k=>o.jsx(int,{id:k,edgesFocusable:v,edgesReconnectable:y,elementsSelectable:x,noPanClassName:r,onReconnect:s,onContextMenu:a,onMouseEnter:l,onMouseMove:c,onMouseLeave:u,onClick:d,reconnectRadius:f,onDoubleClick:h,onReconnectStart:m,onReconnectEnd:g,rfId:n,onError:O,edgeTypes:i,disableKeyboardA11y:b},k))]})}qwe.displayName="EdgeRenderer";const snt=p.memo(qwe),ant=e=>`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]})`;function ont({children:e}){const t=Ii(ant);return o.jsx("div",{className:"react-flow__viewport xyflow__viewport react-flow__container",style:{transform:t},children:e})}function lnt(e){const t=VR(),n=p.useRef(!1);p.useEffect(()=>{!n.current&&t.viewportInitialized&&e&&(setTimeout(()=>e(t),1),n.current=!0)},[e,t.viewportInitialized])}const cnt=e=>{var t;return(t=e.panZoom)==null?void 0:t.syncViewport};function unt(e){const t=Ii(cnt),n=as();return p.useEffect(()=>{e&&(t==null||t(e),n.setState({transform:[e.x,e.y,e.zoom]}))},[e,t]),null}function dnt(e){return e.connection.inProgress?{...e.connection,to:zx(e.connection.to,e.transform)}:{...e.connection}}function fnt(e){return dnt}function hnt(e){const t=fnt();return Ii(t,ss)}const pnt=e=>({nodesConnectable:e.nodesConnectable,isValid:e.connection.isValid,inProgress:e.connection.inProgress,width:e.width,height:e.height});function mnt({containerStyle:e,style:t,type:n,component:i}){const{nodesConnectable:r,width:s,height:a,isValid:l,inProgress:c}=Ii(pnt,ss);return!(s&&r&&c)?null:o.jsx("svg",{style:e,width:s,height:a,className:"react-flow__connectionline react-flow__container",children:o.jsx("g",{className:na(["react-flow__connection",V1e(l)]),children:o.jsx(Wwe,{style:t,type:n,CustomComponent:i,isValid:l})})})}const Wwe=({style:e,type:t=Pp.Bezier,CustomComponent:n,isValid:i})=>{const{inProgress:r,from:s,fromNode:a,fromHandle:l,fromPosition:c,to:u,toNode:d,toHandle:f,toPosition:h,pointer:m}=hnt();if(!r)return;if(n)return o.jsx(n,{connectionLineType:t,connectionLineStyle:e,fromNode:a,fromHandle:l,fromX:s.x,fromY:s.y,toX:u.x,toY:u.y,fromPosition:c,toPosition:h,connectionStatus:V1e(i),toNode:d,toHandle:f,pointer:m});let g="";const b={sourceX:s.x,sourceY:s.y,sourcePosition:c,targetX:u.x,targetY:u.y,targetPosition:h};switch(t){case Pp.Bezier:[g]=twe(b);break;case Pp.SimpleBezier:[g]=Pwe(b);break;case Pp.Step:[g]=rN({...b,borderRadius:0});break;case Pp.SmoothStep:[g]=rN(b);break;default:[g]=iwe(b)}return o.jsx("path",{d:g,fill:"none",className:"react-flow__connection-path",style:e})};Wwe.displayName="ConnectionLine";const gnt={};function CG(e=gnt){p.useRef(e),as(),p.useEffect(()=>{},[e])}function bnt(){as(),p.useRef(!1),p.useEffect(()=>{},[])}function Kwe({nodeTypes:e,edgeTypes:t,onInit:n,onNodeClick:i,onEdgeClick:r,onNodeDoubleClick:s,onEdgeDoubleClick:a,onNodeMouseEnter:l,onNodeMouseMove:c,onNodeMouseLeave:u,onNodeContextMenu:d,onSelectionContextMenu:f,onSelectionStart:h,onSelectionEnd:m,connectionLineType:g,connectionLineStyle:b,connectionLineComponent:v,connectionLineContainerStyle:y,selectionKeyCode:x,selectionOnDrag:O,selectionMode:w,multiSelectionKeyCode:k,panActivationKeyCode:S,zoomActivationKeyCode:E,deleteKeyCode:C,onlyRenderVisibleElements:N,elementsSelectable:T,defaultViewport:j,translateExtent:A,minZoom:L,maxZoom:_,preventScrolling:P,defaultMarkerColor:I,zoomOnScroll:$,zoomOnPinch:M,panOnScroll:B,panOnScrollSpeed:R,panOnScrollMode:V,zoomOnDoubleClick:K,panOnDrag:Q,autoPanOnSelection:q,onPaneClick:U,onPaneMouseEnter:G,onPaneMouseMove:ae,onPaneMouseLeave:re,onPaneScroll:se,onPaneContextMenu:me,paneClickDistance:Z,nodeClickDistance:X,onEdgeContextMenu:J,onEdgeMouseEnter:oe,onEdgeMouseMove:Ee,onEdgeMouseLeave:he,reconnectRadius:Me,onReconnect:De,onReconnectStart:_e,onReconnectEnd:Re,noDragClassName:Xe,noWheelClassName:Ce,noPanClassName:Fe,disableKeyboardA11y:Oe,nodeExtent:$e,rfId:Y,viewport:pe,onViewportChange:Te}){return CG(e),CG(t),bnt(),lnt(n),unt(pe),o.jsx(Rtt,{onPaneClick:U,onPaneMouseEnter:G,onPaneMouseMove:ae,onPaneMouseLeave:re,onPaneContextMenu:me,onPaneScroll:se,paneClickDistance:Z,deleteKeyCode:C,selectionKeyCode:x,selectionOnDrag:O,selectionMode:w,onSelectionStart:h,onSelectionEnd:m,multiSelectionKeyCode:k,panActivationKeyCode:S,zoomActivationKeyCode:E,elementsSelectable:T,zoomOnScroll:$,zoomOnPinch:M,zoomOnDoubleClick:K,panOnScroll:B,panOnScrollSpeed:R,panOnScrollMode:V,panOnDrag:Q,autoPanOnSelection:q,defaultViewport:j,translateExtent:A,minZoom:L,maxZoom:_,onSelectionContextMenu:f,preventScrolling:P,noDragClassName:Xe,noWheelClassName:Ce,noPanClassName:Fe,disableKeyboardA11y:Oe,onViewportChange:Te,isControlledViewport:!!pe,children:o.jsxs(ont,{children:[o.jsx(snt,{edgeTypes:t,onEdgeClick:r,onEdgeDoubleClick:a,onReconnect:De,onReconnectStart:_e,onReconnectEnd:Re,onlyRenderVisibleElements:N,onEdgeContextMenu:J,onEdgeMouseEnter:oe,onEdgeMouseMove:Ee,onEdgeMouseLeave:he,reconnectRadius:Me,defaultMarkerColor:I,noPanClassName:Fe,disableKeyboardA11y:Oe,rfId:Y}),o.jsx(mnt,{style:b,type:g,component:v,containerStyle:y}),o.jsx("div",{className:"react-flow__edgelabel-renderer"}),o.jsx(Utt,{nodeTypes:e,onNodeClick:i,onNodeDoubleClick:s,onNodeMouseEnter:l,onNodeMouseMove:c,onNodeMouseLeave:u,onNodeContextMenu:d,nodeClickDistance:X,onlyRenderVisibleElements:N,noPanClassName:Fe,noDragClassName:Xe,disableKeyboardA11y:Oe,nodeExtent:$e,rfId:Y}),o.jsx("div",{className:"react-flow__viewport-portal"})]})})}Kwe.displayName="GraphView";const ynt=p.memo(Kwe),vnt=G1e(),TG=({nodes:e,edges:t,defaultNodes:n,defaultEdges:i,width:r,height:s,fitView:a,fitViewOptions:l,minZoom:c=.5,maxZoom:u=2,nodeOrigin:d,nodeExtent:f,zIndexMode:h="basic"}={})=>{const m=new Map,g=new Map,b=new Map,v=new Map,y=i??t??[],x=n??e??[],O=d??[0,0],w=f??PS;awe(b,v,y);const{nodesInitialized:k}=m6(x,m,g,{nodeOrigin:O,nodeExtent:w,zIndexMode:h});let S=[0,0,1];if(a&&r&&s){const E=oE(m,{filter:j=>!!((j.width||j.initialWidth)&&(j.height||j.initialHeight))}),{x:C,y:N,zoom:T}=fB(E,r,s,c,u,(l==null?void 0:l.padding)??.1);S=[C,N,T]}return{rfId:"1",width:r??0,height:s??0,transform:S,nodes:x,nodesInitialized:k,nodeLookup:m,parentLookup:g,edges:y,edgeLookup:v,connectionLookup:b,onNodesChange:null,onEdgesChange:null,hasDefaultNodes:n!==void 0,hasDefaultEdges:i!==void 0,panZoom:null,minZoom:c,maxZoom:u,translateExtent:PS,nodeExtent:w,nodesSelectionActive:!1,userSelectionActive:!1,userSelectionRect:null,connectionMode:Gv.Strict,domNode:null,paneDragging:!1,noPanClassName:"nopan",nodeOrigin:O,nodeDragThreshold:1,connectionDragThreshold:1,snapGrid:[15,15],snapToGrid:!1,nodesDraggable:!0,nodesConnectable:!0,nodesFocusable:!0,edgesFocusable:!0,edgesReconnectable:!0,elementsSelectable:!0,elevateNodesOnSelect:!0,elevateEdgesOnSelect:!0,selectNodesOnDrag:!0,multiSelectionActive:!1,fitViewQueued:a??!1,fitViewOptions:l,fitViewResolver:null,connection:{...z1e},connectionClickStartHandle:null,connectOnClick:!0,ariaLiveMessage:"",autoPanOnConnect:!0,autoPanOnNodeDrag:!0,autoPanOnNodeFocus:!0,autoPanSpeed:15,connectionRadius:20,onError:vnt,isValidConnection:void 0,onSelectionChangeHandlers:[],lib:"react",debug:!1,ariaLabelConfig:Q1e,zIndexMode:h,onNodesChangeMiddlewareMap:new Map,onEdgesChangeMiddlewareMap:new Map}},xnt=({nodes:e,edges:t,defaultNodes:n,defaultEdges:i,width:r,height:s,fitView:a,fitViewOptions:l,minZoom:c,maxZoom:u,nodeOrigin:d,nodeExtent:f,zIndexMode:h})=>Det((m,g)=>{async function b(){const{nodeLookup:v,panZoom:y,fitViewOptions:x,fitViewResolver:O,width:w,height:k,minZoom:S,maxZoom:E}=g();y&&(await EJe({nodes:v,width:w,height:k,panZoom:y,minZoom:S,maxZoom:E},x),O==null||O.resolve(!0),m({fitViewResolver:null}))}return{...TG({nodes:e,edges:t,width:r,height:s,fitView:a,fitViewOptions:l,minZoom:c,maxZoom:u,nodeOrigin:d,nodeExtent:f,defaultNodes:n,defaultEdges:i,zIndexMode:h}),setNodes:v=>{const{nodeLookup:y,parentLookup:x,nodeOrigin:O,elevateNodesOnSelect:w,fitViewQueued:k,zIndexMode:S,nodesSelectionActive:E}=g(),{nodesInitialized:C,hasSelectedNodes:N}=m6(v,y,x,{nodeOrigin:O,nodeExtent:f,elevateNodesOnSelect:w,checkEquality:!0,zIndexMode:S}),T=E&&N;k&&C?(b(),m({nodes:v,nodesInitialized:C,fitViewQueued:!1,fitViewOptions:void 0,nodesSelectionActive:T})):m({nodes:v,nodesInitialized:C,nodesSelectionActive:T})},setEdges:v=>{const{connectionLookup:y,edgeLookup:x}=g();awe(y,x,v),m({edges:v})},setDefaultNodesAndEdges:(v,y)=>{if(v){const{setNodes:x}=g();x(v),m({hasDefaultNodes:!0})}if(y){const{setEdges:x}=g();x(y),m({hasDefaultEdges:!0})}},updateNodeInternals:v=>{const{triggerNodeChanges:y,nodeLookup:x,parentLookup:O,domNode:w,nodeOrigin:k,nodeExtent:S,debug:E,fitViewQueued:C,zIndexMode:N}=g(),{changes:T,updatedInternals:j}=KJe(v,x,O,w,k,S,N);j&&(VJe(x,O,{nodeOrigin:k,nodeExtent:S,zIndexMode:N}),C?(b(),m({fitViewQueued:!1,fitViewOptions:void 0})):m({}),(T==null?void 0:T.length)>0&&(E&&console.log("React Flow: trigger node changes",T),y==null||y(T)))},updateNodePositions:(v,y=!1)=>{const x=[];let O=[];const{nodeLookup:w,triggerNodeChanges:k,connection:S,updateConnection:E,onNodesChangeMiddlewareMap:C}=g();for(const[N,T]of v){const j=w.get(N),A=!!(j!=null&&j.expandParent&&(j!=null&&j.parentId)&&(T!=null&&T.position)),L={id:N,type:"position",position:A?{x:Math.max(0,T.position.x),y:Math.max(0,T.position.y)}:T.position,dragging:y};if(j&&S.inProgress&&S.fromNode.id===j.id){const _=_b(j,S.fromHandle,an.Left,!0);E({...S,from:_})}A&&j.parentId&&x.push({id:N,parentId:j.parentId,rect:{...T.internals.positionAbsolute,width:T.measured.width??0,height:T.measured.height??0}}),O.push(L)}if(x.length>0){const{parentLookup:N,nodeOrigin:T}=g(),j=vB(x,w,N,T);O.push(...j)}for(const N of C.values())O=N(O);k(O)},triggerNodeChanges:v=>{const{onNodesChange:y,setNodes:x,nodes:O,hasDefaultNodes:w,debug:k}=g();if(v!=null&&v.length){if(w){const S=Swe(v,O);x(S)}k&&console.log("React Flow: trigger node changes",v),y==null||y(v)}},triggerEdgeChanges:v=>{const{onEdgesChange:y,setEdges:x,edges:O,hasDefaultEdges:w,debug:k}=g();if(v!=null&&v.length){if(w){const S=kwe(v,O);x(S)}k&&console.log("React Flow: trigger edge changes",v),y==null||y(v)}},addSelectedNodes:v=>{const{multiSelectionActive:y,edgeLookup:x,nodeLookup:O,triggerNodeChanges:w,triggerEdgeChanges:k}=g();if(y){const S=v.map(E=>Tg(E,!0));w(S);return}w(Py(O,new Set([...v]),!0)),k(Py(x))},addSelectedEdges:v=>{const{multiSelectionActive:y,edgeLookup:x,nodeLookup:O,triggerNodeChanges:w,triggerEdgeChanges:k}=g();if(y){const S=v.map(E=>Tg(E,!0));k(S);return}k(Py(x,new Set([...v]))),w(Py(O,new Set,!0))},unselectNodesAndEdges:({nodes:v,edges:y}={})=>{const{edges:x,nodes:O,nodeLookup:w,triggerNodeChanges:k,triggerEdgeChanges:S}=g(),E=v||O,C=y||x,N=[];for(const j of E){if(!j.selected)continue;const A=w.get(j.id);A&&(A.selected=!1),N.push(Tg(j.id,!1))}const T=[];for(const j of C)j.selected&&T.push(Tg(j.id,!1));k(N),S(T)},setMinZoom:v=>{const{panZoom:y,maxZoom:x}=g();y==null||y.setScaleExtent([v,x]),m({minZoom:v})},setMaxZoom:v=>{const{panZoom:y,minZoom:x}=g();y==null||y.setScaleExtent([x,v]),m({maxZoom:v})},setTranslateExtent:v=>{var y;(y=g().panZoom)==null||y.setTranslateExtent(v),m({translateExtent:v})},resetSelectedElements:()=>{const{edges:v,nodes:y,triggerNodeChanges:x,triggerEdgeChanges:O,elementsSelectable:w}=g();if(!w)return;const k=y.reduce((E,C)=>C.selected?[...E,Tg(C.id,!1)]:E,[]),S=v.reduce((E,C)=>C.selected?[...E,Tg(C.id,!1)]:E,[]);x(k),O(S)},setNodeExtent:v=>{const{nodes:y,nodeLookup:x,parentLookup:O,nodeOrigin:w,elevateNodesOnSelect:k,nodeExtent:S,zIndexMode:E}=g();v[0][0]===S[0][0]&&v[0][1]===S[0][1]&&v[1][0]===S[1][0]&&v[1][1]===S[1][1]||(m6(y,x,O,{nodeOrigin:w,nodeExtent:v,elevateNodesOnSelect:k,checkEquality:!1,zIndexMode:E}),m({nodeExtent:v}))},panBy:v=>{const{transform:y,width:x,height:O,panZoom:w,translateExtent:k}=g();return GJe({delta:v,panZoom:w,transform:y,translateExtent:k,width:x,height:O})},setCenter:async(v,y,x)=>{const{width:O,height:w,maxZoom:k,panZoom:S}=g();if(!S)return!1;const E=typeof(x==null?void 0:x.zoom)<"u"?x.zoom:k;return await S.setViewport({x:O/2-v*E,y:w/2-y*E,zoom:E},{duration:x==null?void 0:x.duration,ease:x==null?void 0:x.ease,interpolate:x==null?void 0:x.interpolate}),!0},cancelConnection:()=>{m({connection:{...z1e}})},updateConnection:v=>{m({connection:v})},reset:()=>m({...TG()})}},Object.is);function Gwe({initialNodes:e,initialEdges:t,defaultNodes:n,defaultEdges:i,initialWidth:r,initialHeight:s,initialMinZoom:a,initialMaxZoom:l,initialFitViewOptions:c,fitView:u,nodeOrigin:d,nodeExtent:f,zIndexMode:h,children:m}){const[g]=p.useState(()=>xnt({nodes:e,edges:t,defaultNodes:n,defaultEdges:i,width:r,height:s,fitView:u,minZoom:a,maxZoom:l,fitViewOptions:c,nodeOrigin:d,nodeExtent:f,zIndexMode:h}));return o.jsx(Met,{value:g,children:o.jsx(ott,{children:m})})}function wnt({children:e,nodes:t,edges:n,defaultNodes:i,defaultEdges:r,width:s,height:a,fitView:l,fitViewOptions:c,minZoom:u,maxZoom:d,nodeOrigin:f,nodeExtent:h,zIndexMode:m}){return p.useContext(QR)?o.jsx(o.Fragment,{children:e}):o.jsx(Gwe,{initialNodes:t,initialEdges:n,defaultNodes:i,defaultEdges:r,initialWidth:s,initialHeight:a,fitView:l,initialFitViewOptions:c,initialMinZoom:u,initialMaxZoom:d,nodeOrigin:f,nodeExtent:h,zIndexMode:m,children:e})}const Ont={width:"100%",height:"100%",overflow:"hidden",position:"relative",zIndex:0};function Snt({nodes:e,edges:t,defaultNodes:n,defaultEdges:i,className:r,nodeTypes:s,edgeTypes:a,onNodeClick:l,onEdgeClick:c,onInit:u,onMove:d,onMoveStart:f,onMoveEnd:h,onConnect:m,onConnectStart:g,onConnectEnd:b,onClickConnectStart:v,onClickConnectEnd:y,onNodeMouseEnter:x,onNodeMouseMove:O,onNodeMouseLeave:w,onNodeContextMenu:k,onNodeDoubleClick:S,onNodeDragStart:E,onNodeDrag:C,onNodeDragStop:N,onNodesDelete:T,onEdgesDelete:j,onDelete:A,onSelectionChange:L,onSelectionDragStart:_,onSelectionDrag:P,onSelectionDragStop:I,onSelectionContextMenu:$,onSelectionStart:M,onSelectionEnd:B,onBeforeDelete:R,connectionMode:V,connectionLineType:K=Pp.Bezier,connectionLineStyle:Q,connectionLineComponent:q,connectionLineContainerStyle:U,deleteKeyCode:G="Backspace",selectionKeyCode:ae="Shift",selectionOnDrag:re=!1,selectionMode:se=DS.Full,panActivationKeyCode:me="Space",multiSelectionKeyCode:Z=$S()?"Meta":"Control",zoomActivationKeyCode:X=$S()?"Meta":"Control",snapToGrid:J,snapGrid:oe,onlyRenderVisibleElements:Ee=!1,selectNodesOnDrag:he,nodesDraggable:Me,autoPanOnNodeFocus:De,nodesConnectable:_e,nodesFocusable:Re,nodeOrigin:Xe=wwe,edgesFocusable:Ce,edgesReconnectable:Fe,elementsSelectable:Oe=!0,defaultViewport:$e=Get,minZoom:Y=.5,maxZoom:pe=2,translateExtent:Te=PS,preventScrolling:We=!0,nodeExtent:nt,defaultMarkerColor:$t="#b1b1b7",zoomOnScroll:je=!0,zoomOnPinch:ve=!0,panOnScroll:ze=!1,panOnScrollSpeed:et=.5,panOnScrollMode:Se=cb.Free,zoomOnDoubleClick:Kt=!0,panOnDrag:en=!0,onPaneClick:cn,onPaneMouseEnter:kt,onPaneMouseMove:Pt,onPaneMouseLeave:ut,onPaneScroll:gt,onPaneContextMenu:Le,paneClickDistance:xt=1,nodeClickDistance:wt=0,children:Et,onReconnect:Qe,onReconnectStart:ye,onReconnectEnd:Ve,onEdgeContextMenu:Ye,onEdgeDoubleClick:ht,onEdgeMouseEnter:ct,onEdgeMouseMove:Gt,onEdgeMouseLeave:Rt,reconnectRadius:qt=10,onNodesChange:ue,onEdgesChange:_n,noDragClassName:He="nodrag",noWheelClassName:at="nowheel",noPanClassName:we="nopan",fitView:ke,fitViewOptions:Ge,connectOnClick:yt,attributionPosition:lt,proOptions:ci,defaultEdgeOptions:Ke,elevateNodesOnSelect:Dt=!0,elevateEdgesOnSelect:Mn=!1,disableKeyboardA11y:Ot=!1,autoPanOnConnect:nn,autoPanOnNodeDrag:wn,autoPanOnSelection:Nn=!0,autoPanSpeed:di,connectionRadius:Ei,isValidConnection:fi,onError:On,style:Ki,id:Ci,nodeDragThreshold:er,connectionDragThreshold:os,viewport:fr,onViewportChange:Or,width:ms,height:ls,colorMode:Fa="light",debug:As,onScroll:_s,ariaLabelConfig:ra,zIndexMode:hr="basic",...Ba},Ns){const gs=Ci||"1",Ua=Jet(Fa),sa=p.useCallback(bs=>{bs.currentTarget.scrollTo({top:0,left:0,behavior:"instant"}),_s==null||_s(bs)},[_s]);return o.jsx("div",{"data-testid":"rf__wrapper",...Ba,onScroll:sa,style:{...Ki,...Ont},ref:Ns,className:na(["react-flow",r,Ua]),id:Ci,role:"application",children:o.jsxs(wnt,{nodes:e,edges:t,width:ms,height:ls,fitView:ke,fitViewOptions:Ge,minZoom:Y,maxZoom:pe,nodeOrigin:Xe,nodeExtent:nt,zIndexMode:hr,children:[o.jsx(Zet,{nodes:e,edges:t,defaultNodes:n,defaultEdges:i,onConnect:m,onConnectStart:g,onConnectEnd:b,onClickConnectStart:v,onClickConnectEnd:y,nodesDraggable:Me,autoPanOnNodeFocus:De,nodesConnectable:_e,nodesFocusable:Re,edgesFocusable:Ce,edgesReconnectable:Fe,elementsSelectable:Oe,elevateNodesOnSelect:Dt,elevateEdgesOnSelect:Mn,minZoom:Y,maxZoom:pe,nodeExtent:nt,onNodesChange:ue,onEdgesChange:_n,snapToGrid:J,snapGrid:oe,connectionMode:V,translateExtent:Te,connectOnClick:yt,defaultEdgeOptions:Ke,fitView:ke,fitViewOptions:Ge,onNodesDelete:T,onEdgesDelete:j,onDelete:A,onNodeDragStart:E,onNodeDrag:C,onNodeDragStop:N,onSelectionDrag:P,onSelectionDragStart:_,onSelectionDragStop:I,onMove:d,onMoveStart:f,onMoveEnd:h,noPanClassName:we,nodeOrigin:Xe,rfId:gs,autoPanOnConnect:nn,autoPanOnNodeDrag:wn,autoPanSpeed:di,onError:On,connectionRadius:Ei,isValidConnection:fi,selectNodesOnDrag:he,nodeDragThreshold:er,connectionDragThreshold:os,onBeforeDelete:R,debug:As,ariaLabelConfig:ra,zIndexMode:hr}),o.jsx(ynt,{onInit:u,onNodeClick:l,onEdgeClick:c,onNodeMouseEnter:x,onNodeMouseMove:O,onNodeMouseLeave:w,onNodeContextMenu:k,onNodeDoubleClick:S,nodeTypes:s,edgeTypes:a,connectionLineType:K,connectionLineStyle:Q,connectionLineComponent:q,connectionLineContainerStyle:U,selectionKeyCode:ae,selectionOnDrag:re,selectionMode:se,deleteKeyCode:G,multiSelectionKeyCode:Z,panActivationKeyCode:me,zoomActivationKeyCode:X,onlyRenderVisibleElements:Ee,defaultViewport:$e,translateExtent:Te,minZoom:Y,maxZoom:pe,preventScrolling:We,zoomOnScroll:je,zoomOnPinch:ve,zoomOnDoubleClick:Kt,panOnScroll:ze,panOnScrollSpeed:et,panOnScrollMode:Se,panOnDrag:en,autoPanOnSelection:Nn,onPaneClick:cn,onPaneMouseEnter:kt,onPaneMouseMove:Pt,onPaneMouseLeave:ut,onPaneScroll:gt,onPaneContextMenu:Le,paneClickDistance:xt,nodeClickDistance:wt,onSelectionContextMenu:$,onSelectionStart:M,onSelectionEnd:B,onReconnect:Qe,onReconnectStart:ye,onReconnectEnd:Ve,onEdgeContextMenu:Ye,onEdgeDoubleClick:ht,onEdgeMouseEnter:ct,onEdgeMouseMove:Gt,onEdgeMouseLeave:Rt,reconnectRadius:qt,defaultMarkerColor:$t,noDragClassName:He,noWheelClassName:at,noPanClassName:we,rfId:gs,disableKeyboardA11y:Ot,nodeExtent:nt,viewport:fr,onViewportChange:Or}),o.jsx(Ket,{onSelectionChange:L}),Et,o.jsx(zet,{proOptions:ci,position:lt}),o.jsx(Qet,{rfId:gs,disableKeyboardA11y:Ot})]})})}var knt=Ewe(Snt);const Ent=e=>{var t;return(t=e.domNode)==null?void 0:t.querySelector(".react-flow__edgelabel-renderer")};function Cnt({children:e}){const t=Ii(Ent);return t?Fi.createPortal(e,t):null}function Tnt(e){const[t,n]=p.useState(e),i=p.useCallback(r=>n(s=>Swe(r,s)),[]);return[t,n,i]}function Ant(e){const[t,n]=p.useState(e),i=p.useCallback(r=>n(s=>kwe(r,s)),[]);return[t,n,i]}const _nt=e=>t=>{if(!e.includeHiddenNodes)return t.nodesInitialized;if(t.nodeLookup.size===0)return!1;for(const[,{internals:n}]of t.nodeLookup)if(n.handleBounds===void 0||!hB(n.userNode))return!1;return!0};function Nnt(e={includeHiddenNodes:!1}){return Ii(_nt(e))}function jnt({dimensions:e,lineWidth:t,variant:n,className:i}){return o.jsx("path",{strokeWidth:t,d:`M${e[0]/2} 0 V${e[1]} M0 ${e[1]/2} H${e[0]}`,className:na(["react-flow__background-pattern",n,i])})}function Rnt({radius:e,className:t}){return o.jsx("circle",{cx:e,cy:e,r:e,className:na(["react-flow__background-pattern","dots",t])})}var sm;(function(e){e.Lines="lines",e.Dots="dots",e.Cross="cross"})(sm||(sm={}));const Int={[sm.Dots]:1,[sm.Lines]:1,[sm.Cross]:6},Pnt=e=>({transform:e.transform,patternId:`pattern-${e.rfId}`});function Xwe({id:e,variant:t=sm.Dots,gap:n=20,size:i,lineWidth:r=1,offset:s=0,color:a,bgColor:l,style:c,className:u,patternClassName:d}){const f=p.useRef(null),{transform:h,patternId:m}=Ii(Pnt,ss),g=i||Int[t],b=t===sm.Dots,v=t===sm.Cross,y=Array.isArray(n)?n:[n,n],x=[y[0]*h[2]||1,y[1]*h[2]||1],O=g*h[2],w=Array.isArray(s)?s:[s,s],k=v?[O,O]:x,S=[w[0]*h[2]||1+k[0]/2,w[1]*h[2]||1+k[1]/2],E=`${m}${e||""}`;return o.jsxs("svg",{className:na(["react-flow__background",u]),style:{...c,...HR,"--xy-background-color-props":l,"--xy-background-pattern-color-props":a},ref:f,"data-testid":"rf__background",children:[o.jsx("pattern",{id:E,x:h[0]%x[0],y:h[1]%x[1],width:x[0],height:x[1],patternUnits:"userSpaceOnUse",patternTransform:`translate(-${S[0]},-${S[1]})`,children:b?o.jsx(Rnt,{radius:O/2,className:d}):o.jsx(jnt,{dimensions:k,lineWidth:r,variant:t,className:d})}),o.jsx("rect",{x:"0",y:"0",width:"100%",height:"100%",fill:`url(#${E})`})]})}Xwe.displayName="Background";const Dnt=p.memo(Xwe);function Mnt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",children:o.jsx("path",{d:"M32 18.133H18.133V32h-4.266V18.133H0v-4.266h13.867V0h4.266v13.867H32z"})})}function Lnt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 5",children:o.jsx("path",{d:"M0 0h32v4.2H0z"})})}function $nt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 30",children:o.jsx("path",{d:"M3.692 4.63c0-.53.4-.938.939-.938h5.215V0H4.708C2.13 0 0 2.054 0 4.63v5.216h3.692V4.631zM27.354 0h-5.2v3.692h5.17c.53 0 .984.4.984.939v5.215H32V4.631A4.624 4.624 0 0027.354 0zm.954 24.83c0 .532-.4.94-.939.94h-5.215v3.768h5.215c2.577 0 4.631-2.13 4.631-4.707v-5.139h-3.692v5.139zm-23.677.94c-.531 0-.939-.4-.939-.94v-5.138H0v5.139c0 2.577 2.13 4.707 4.708 4.707h5.138V25.77H4.631z"})})}function Fnt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 25 32",children:o.jsx("path",{d:"M21.333 10.667H19.81V7.619C19.81 3.429 16.38 0 12.19 0 8 0 4.571 3.429 4.571 7.619v3.048H3.048A3.056 3.056 0 000 13.714v15.238A3.056 3.056 0 003.048 32h18.285a3.056 3.056 0 003.048-3.048V13.714a3.056 3.056 0 00-3.048-3.047zM12.19 24.533a3.056 3.056 0 01-3.047-3.047 3.056 3.056 0 013.047-3.048 3.056 3.056 0 013.048 3.048 3.056 3.056 0 01-3.048 3.047zm4.724-13.866H7.467V7.619c0-2.59 2.133-4.724 4.723-4.724 2.591 0 4.724 2.133 4.724 4.724v3.048z"})})}function Bnt(){return o.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 25 32",children:o.jsx("path",{d:"M21.333 10.667H19.81V7.619C19.81 3.429 16.38 0 12.19 0c-4.114 1.828-1.37 2.133.305 2.438 1.676.305 4.42 2.59 4.42 5.181v3.048H3.047A3.056 3.056 0 000 13.714v15.238A3.056 3.056 0 003.048 32h18.285a3.056 3.056 0 003.048-3.048V13.714a3.056 3.056 0 00-3.048-3.047zM12.19 24.533a3.056 3.056 0 01-3.047-3.047 3.056 3.056 0 013.047-3.048 3.056 3.056 0 013.048 3.048 3.056 3.056 0 01-3.048 3.047z"})})}function OT({children:e,className:t,...n}){return o.jsx("button",{type:"button",className:na(["react-flow__controls-button",t]),...n,children:e})}const Unt=e=>({isInteractive:e.nodesDraggable||e.nodesConnectable||e.elementsSelectable,minZoomReached:e.transform[2]<=e.minZoom,maxZoomReached:e.transform[2]>=e.maxZoom,ariaLabelConfig:e.ariaLabelConfig});function Ywe({style:e,showZoom:t=!0,showFitView:n=!0,showInteractive:i=!0,fitViewOptions:r,onZoomIn:s,onZoomOut:a,onFitView:l,onInteractiveChange:c,className:u,children:d,position:f="bottom-left",orientation:h="vertical","aria-label":m}){const g=as(),{isInteractive:b,minZoomReached:v,maxZoomReached:y,ariaLabelConfig:x}=Ii(Unt,ss),{zoomIn:O,zoomOut:w,fitView:k}=VR(),S=()=>{O(),s==null||s()},E=()=>{w(),a==null||a()},C=()=>{k(r),l==null||l()},N=()=>{g.setState({nodesDraggable:!b,nodesConnectable:!b,elementsSelectable:!b}),c==null||c(!b)},T=h==="horizontal"?"horizontal":"vertical";return o.jsxs(zR,{className:na(["react-flow__controls",T,u]),position:f,style:e,"data-testid":"rf__controls","aria-label":m??x["controls.ariaLabel"],children:[t&&o.jsxs(o.Fragment,{children:[o.jsx(OT,{onClick:S,className:"react-flow__controls-zoomin",title:x["controls.zoomIn.ariaLabel"],"aria-label":x["controls.zoomIn.ariaLabel"],disabled:y,children:o.jsx(Mnt,{})}),o.jsx(OT,{onClick:E,className:"react-flow__controls-zoomout",title:x["controls.zoomOut.ariaLabel"],"aria-label":x["controls.zoomOut.ariaLabel"],disabled:v,children:o.jsx(Lnt,{})})]}),n&&o.jsx(OT,{className:"react-flow__controls-fitview",onClick:C,title:x["controls.fitView.ariaLabel"],"aria-label":x["controls.fitView.ariaLabel"],children:o.jsx($nt,{})}),i&&o.jsx(OT,{className:"react-flow__controls-interactive",onClick:N,title:x["controls.interactive.ariaLabel"],"aria-label":x["controls.interactive.ariaLabel"],children:b?o.jsx(Bnt,{}):o.jsx(Fnt,{})}),d]})}Ywe.displayName="Controls";const Qnt=p.memo(Ywe);function znt({id:e,x:t,y:n,width:i,height:r,style:s,color:a,strokeColor:l,strokeWidth:c,className:u,borderRadius:d,shapeRendering:f,selected:h,onClick:m}){const{background:g,backgroundColor:b}=s||{},v=a||g||b;return o.jsx("rect",{className:na(["react-flow__minimap-node",{selected:h},u]),x:t,y:n,rx:d,ry:d,width:i,height:r,style:{fill:v,stroke:l,strokeWidth:c},shapeRendering:f,onClick:m?y=>m(y,e):void 0})}const Vnt=p.memo(znt),Hnt=e=>e.nodes.map(t=>t.id),fM=e=>e instanceof Function?e:()=>e;function qnt({nodeStrokeColor:e,nodeColor:t,nodeClassName:n="",nodeBorderRadius:i=5,nodeStrokeWidth:r,nodeComponent:s=Vnt,onClick:a}){const l=Ii(Hnt,ss),c=fM(t),u=fM(e),d=fM(n),f=typeof window>"u"||window.chrome?"crispEdges":"geometricPrecision";return o.jsx(o.Fragment,{children:l.map(h=>o.jsx(Knt,{id:h,nodeColorFunc:c,nodeStrokeColorFunc:u,nodeClassNameFunc:d,nodeBorderRadius:i,nodeStrokeWidth:r,NodeComponent:s,onClick:a,shapeRendering:f},h))})}function Wnt({id:e,nodeColorFunc:t,nodeStrokeColorFunc:n,nodeClassNameFunc:i,nodeBorderRadius:r,nodeStrokeWidth:s,shapeRendering:a,NodeComponent:l,onClick:c}){const{node:u,x:d,y:f,width:h,height:m}=Ii(g=>{const b=g.nodeLookup.get(e);if(!b)return{node:void 0,x:0,y:0,width:0,height:0};const v=b.internals.userNode,{x:y,y:x}=b.internals.positionAbsolute,{width:O,height:w}=$h(v);return{node:v,x:y,y:x,width:O,height:w}},ss);return!u||u.hidden||!hB(u)?null:o.jsx(l,{x:d,y:f,width:h,height:m,style:u.style,selected:!!u.selected,className:i(u),color:t(u),borderRadius:r,strokeColor:n(u),strokeWidth:s,shapeRendering:a,onClick:c,id:u.id})}const Knt=p.memo(Wnt);var Gnt=p.memo(qnt);const Xnt=200,Ynt=150,Znt=e=>!e.hidden,Jnt=e=>{const t={x:-e.transform[0]/e.transform[2],y:-e.transform[1]/e.transform[2],width:e.width/e.transform[2],height:e.height/e.transform[2]};return{viewBB:t,boundingRect:e.nodeLookup.size>0?K1e(oE(e.nodeLookup,{filter:Znt}),t):t,rfId:e.rfId,panZoom:e.panZoom,translateExtent:e.translateExtent,flowWidth:e.width,flowHeight:e.height,ariaLabelConfig:e.ariaLabelConfig}},eit="react-flow__minimap-desc";function Zwe({style:e,className:t,nodeStrokeColor:n,nodeColor:i,nodeClassName:r="",nodeBorderRadius:s=5,nodeStrokeWidth:a,nodeComponent:l,bgColor:c,maskColor:u,maskStrokeColor:d,maskStrokeWidth:f,position:h="bottom-right",onClick:m,onNodeClick:g,pannable:b=!1,zoomable:v=!1,ariaLabel:y,inversePan:x,zoomStep:O=1,offsetScale:w=5}){const k=as(),S=p.useRef(null),{boundingRect:E,viewBB:C,rfId:N,panZoom:T,translateExtent:j,flowWidth:A,flowHeight:L,ariaLabelConfig:_}=Ii(Jnt,ss),P=(e==null?void 0:e.width)??Xnt,I=(e==null?void 0:e.height)??Ynt,$=E.width/P,M=E.height/I,B=Math.max($,M),R=B*P,V=B*I,K=w*B,Q=E.x-(R-E.width)/2-K,q=E.y-(V-E.height)/2-K,U=R+K*2,G=V+K*2,ae=`${eit}-${N}`,re=p.useRef(0),se=p.useRef();re.current=B,p.useEffect(()=>{if(S.current&&T)return se.current=ret({domNode:S.current,panZoom:T,getTransform:()=>k.getState().transform,getViewScale:()=>re.current}),()=>{var J;(J=se.current)==null||J.destroy()}},[T]),p.useEffect(()=>{var J;(J=se.current)==null||J.update({translateExtent:j,width:A,height:L,inversePan:x,pannable:b,zoomStep:O,zoomable:v})},[b,v,x,O,j,A,L]);const me=m?J=>{var he;const[oe,Ee]=((he=se.current)==null?void 0:he.pointer(J))||[0,0];m(J,{x:oe,y:Ee})}:void 0,Z=g?p.useCallback((J,oe)=>{const Ee=k.getState().nodeLookup.get(oe).internals.userNode;g(J,Ee)},[]):void 0,X=y??_["minimap.ariaLabel"];return o.jsx(zR,{position:h,style:{...e,"--xy-minimap-background-color-props":typeof c=="string"?c:void 0,"--xy-minimap-mask-background-color-props":typeof u=="string"?u:void 0,"--xy-minimap-mask-stroke-color-props":typeof d=="string"?d:void 0,"--xy-minimap-mask-stroke-width-props":typeof f=="number"?f*B:void 0,"--xy-minimap-node-background-color-props":typeof i=="string"?i:void 0,"--xy-minimap-node-stroke-color-props":typeof n=="string"?n:void 0,"--xy-minimap-node-stroke-width-props":typeof a=="number"?a:void 0},className:na(["react-flow__minimap",t]),"data-testid":"rf__minimap",children:o.jsxs("svg",{width:P,height:I,viewBox:`${Q} ${q} ${U} ${G}`,className:"react-flow__minimap-svg",role:"img","aria-labelledby":ae,ref:S,onClick:me,children:[X&&o.jsx("title",{id:ae,children:X}),o.jsx(Gnt,{onClick:Z,nodeColor:i,nodeStrokeColor:n,nodeBorderRadius:s,nodeClassName:r,nodeStrokeWidth:a,nodeComponent:l}),o.jsx("path",{className:"react-flow__minimap-mask",d:`M${Q-K},${q-K}h${U+K*2}v${G+K*2}h${-U-K*2}z + M${C.x},${C.y}h${C.width}v${C.height}h${-C.width}z`,fillRule:"evenodd",pointerEvents:"none"})]})})}Zwe.displayName="MiniMap";p.memo(Zwe);const tit=e=>t=>e?`${Math.max(1/t.transform[2],1)}`:void 0,nit={[Jv.Line]:"right",[Jv.Handle]:"bottom-right"};function iit({nodeId:e,position:t,variant:n=Jv.Handle,className:i,style:r=void 0,children:s,color:a,minWidth:l=10,minHeight:c=10,maxWidth:u=Number.MAX_VALUE,maxHeight:d=Number.MAX_VALUE,keepAspectRatio:f=!1,resizeDirection:h,autoScale:m=!0,shouldResize:g,onResizeStart:b,onResize:v,onResizeEnd:y}){const x=_we(),O=typeof e=="string"?e:x,w=as(),k=p.useRef(null),S=n===Jv.Handle,E=Ii(p.useCallback(tit(S&&m),[S,m]),ss),C=p.useRef(null),N=t??nit[n];p.useEffect(()=>{if(!(!k.current||!O))return C.current||(C.current=yet({domNode:k.current,nodeId:O,getStoreItems:()=>{const{nodeLookup:j,transform:A,snapGrid:L,snapToGrid:_,nodeOrigin:P,domNode:I}=w.getState();return{nodeLookup:j,transform:A,snapGrid:L,snapToGrid:_,nodeOrigin:P,paneDomNode:I}},onChange:(j,A)=>{const{triggerNodeChanges:L,nodeLookup:_,parentLookup:P,nodeOrigin:I}=w.getState(),$=[],M={x:j.x,y:j.y},B=_.get(O);if(B&&B.expandParent&&B.parentId){const R=B.origin??I,V=j.width??B.measured.width??0,K=j.height??B.measured.height??0,Q={id:B.id,parentId:B.parentId,rect:{width:V,height:K,...X1e({x:j.x??B.position.x,y:j.y??B.position.y},{width:V,height:K},B.parentId,_,R)}},q=vB([Q],_,P,I);$.push(...q),M.x=j.x?Math.max(R[0]*V,j.x):void 0,M.y=j.y?Math.max(R[1]*K,j.y):void 0}if(M.x!==void 0&&M.y!==void 0){const R={id:O,type:"position",position:{...M}};$.push(R)}if(j.width!==void 0&&j.height!==void 0){const V={id:O,type:"dimensions",resizing:!0,setAttributes:h?h==="horizontal"?"width":"height":!0,dimensions:{width:j.width,height:j.height}};$.push(V)}for(const R of A){const V={...R,type:"position"};$.push(V)}L($)},onEnd:({width:j,height:A})=>{const L={id:O,type:"dimensions",resizing:!1,dimensions:{width:j,height:A}};w.getState().triggerNodeChanges([L])}})),C.current.update({controlPosition:N,boundaries:{minWidth:l,minHeight:c,maxWidth:u,maxHeight:d},keepAspectRatio:f,resizeDirection:h,onResizeStart:b,onResize:v,onResizeEnd:y,shouldResize:g}),()=>{var j;(j=C.current)==null||j.destroy()}},[N,l,c,u,d,f,b,v,y,g]);const T=N.split("-");return o.jsx("div",{className:na(["react-flow__resize-control","nodrag",...T,n,i]),ref:k,style:{...r,scale:E,...a&&{[S?"backgroundColor":"borderColor"]:a}},children:s})}p.memo(iit);var Jwe=Object.defineProperty,rit=(e,t,n)=>t in e?Jwe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,sit=(e,t)=>{for(var n in t)Jwe(e,n,{get:t[n],enumerable:!0})},ait=(e,t,n)=>rit(e,t+"",n),eOe={};sit(eOe,{Graph:()=>ou,alg:()=>wB,json:()=>nOe,version:()=>cit});var oit=Object.defineProperty,tOe=(e,t)=>{for(var n in t)oit(e,n,{get:t[n],enumerable:!0})},ou=class{constructor(t){this._isDirected=!0,this._isMultigraph=!1,this._isCompound=!1,this._nodes={},this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={},this._nodeCount=0,this._edgeCount=0,this._defaultNodeLabelFn=()=>{},this._defaultEdgeLabelFn=()=>{},t&&(this._isDirected="directed"in t?t.directed:!0,this._isMultigraph="multigraph"in t?t.multigraph:!1,this._isCompound="compound"in t?t.compound:!1),this._isCompound&&(this._parent={},this._children={},this._children["\0"]={})}isDirected(){return this._isDirected}isMultigraph(){return this._isMultigraph}isCompound(){return this._isCompound}setGraph(t){return this._label=t,this}graph(){return this._label}setDefaultNodeLabel(t){return typeof t!="function"?this._defaultNodeLabelFn=()=>t:this._defaultNodeLabelFn=t,this}nodeCount(){return this._nodeCount}nodes(){return Object.keys(this._nodes)}sources(){return this.nodes().filter(t=>Object.keys(this._in[t]).length===0)}sinks(){return this.nodes().filter(t=>Object.keys(this._out[t]).length===0)}setNodes(t,n){return t.forEach(i=>{n!==void 0?this.setNode(i,n):this.setNode(i)}),this}setNode(t,n){return t in this._nodes?(arguments.length>1&&(this._nodes[t]=n),this):(this._nodes[t]=arguments.length>1?n:this._defaultNodeLabelFn(t),this._isCompound&&(this._parent[t]="\0",this._children[t]={},this._children["\0"][t]=!0),this._in[t]={},this._preds[t]={},this._out[t]={},this._sucs[t]={},++this._nodeCount,this)}node(t){return this._nodes[t]}hasNode(t){return t in this._nodes}removeNode(t){if(t in this._nodes){let n=i=>this.removeEdge(this._edgeObjs[i]);delete this._nodes[t],this._isCompound&&(this._removeFromParentsChildList(t),delete this._parent[t],this.children(t).forEach(i=>{this.setParent(i)}),delete this._children[t]),Object.keys(this._in[t]).forEach(n),delete this._in[t],delete this._preds[t],Object.keys(this._out[t]).forEach(n),delete this._out[t],delete this._sucs[t],--this._nodeCount}return this}setParent(t,n){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(n===void 0)n="\0";else{n+="";for(let i=n;i!==void 0;i=this.parent(i))if(i===t)throw new Error("Setting "+n+" as parent of "+t+" would create a cycle");this.setNode(n)}return this.setNode(t),this._removeFromParentsChildList(t),this._parent[t]=n,this._children[n][t]=!0,this}parent(t){if(this._isCompound){let n=this._parent[t];if(n!=="\0")return n}}children(t="\0"){if(this._isCompound){let n=this._children[t];if(n)return Object.keys(n)}else{if(t==="\0")return this.nodes();if(this.hasNode(t))return[]}return[]}predecessors(t){let n=this._preds[t];if(n)return Object.keys(n)}successors(t){let n=this._sucs[t];if(n)return Object.keys(n)}neighbors(t){let n=this.predecessors(t);if(n){let i=new Set(n);for(let r of this.successors(t))i.add(r);return Array.from(i.values())}}isLeaf(t){let n;return this.isDirected()?n=this.successors(t):n=this.neighbors(t),n.length===0}filterNodes(t){let n=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});n.setGraph(this.graph()),Object.entries(this._nodes).forEach(([s,a])=>{t(s)&&n.setNode(s,a)}),Object.values(this._edgeObjs).forEach(s=>{n.hasNode(s.v)&&n.hasNode(s.w)&&n.setEdge(s,this.edge(s))});let i={},r=s=>{let a=this.parent(s);return!a||n.hasNode(a)?(i[s]=a??void 0,a??void 0):a in i?i[a]:r(a)};return this._isCompound&&n.nodes().forEach(s=>n.setParent(s,r(s))),n}setDefaultEdgeLabel(t){return typeof t!="function"?this._defaultEdgeLabelFn=()=>t:this._defaultEdgeLabelFn=t,this}edgeCount(){return this._edgeCount}edges(){return Object.values(this._edgeObjs)}setPath(t,n){return t.reduce((i,r)=>(n!==void 0?this.setEdge(i,r,n):this.setEdge(i,r),r)),this}setEdge(t,n,i,r){let s,a,l,c,u=!1;typeof t=="object"&&t!==null&&"v"in t?(s=t.v,a=t.w,l=t.name,arguments.length===2&&(c=n,u=!0)):(s=t,a=n,l=r,arguments.length>2&&(c=i,u=!0)),s=""+s,a=""+a,l!==void 0&&(l=""+l);let d=$w(this._isDirected,s,a,l);if(d in this._edgeLabels)return u&&(this._edgeLabels[d]=c),this;if(l!==void 0&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(s),this.setNode(a),this._edgeLabels[d]=u?c:this._defaultEdgeLabelFn(s,a,l);let f=lit(this._isDirected,s,a,l);return s=f.v,a=f.w,Object.freeze(f),this._edgeObjs[d]=f,AG(this._preds[a],s),AG(this._sucs[s],a),this._in[a][d]=f,this._out[s][d]=f,this._edgeCount++,this}edge(t,n,i){let r=arguments.length===1?hM(this._isDirected,t):$w(this._isDirected,t,n,i);return this._edgeLabels[r]}edgeAsObj(t,n,i){let r=arguments.length===1?this.edge(t):this.edge(t,n,i);return typeof r!="object"?{label:r}:r}hasEdge(t,n,i){return(arguments.length===1?hM(this._isDirected,t):$w(this._isDirected,t,n,i))in this._edgeLabels}removeEdge(t,n,i){let r=arguments.length===1?hM(this._isDirected,t):$w(this._isDirected,t,n,i),s=this._edgeObjs[r];if(s){let a=s.v,l=s.w;delete this._edgeLabels[r],delete this._edgeObjs[r],_G(this._preds[l],a),_G(this._sucs[a],l),delete this._in[l][r],delete this._out[a][r],this._edgeCount--}return this}inEdges(t,n){return this.isDirected()?this.filterEdges(this._in[t],t,n):this.nodeEdges(t,n)}outEdges(t,n){return this.isDirected()?this.filterEdges(this._out[t],t,n):this.nodeEdges(t,n)}nodeEdges(t,n){if(t in this._nodes)return this.filterEdges({...this._in[t],...this._out[t]},t,n)}_removeFromParentsChildList(t){delete this._children[this._parent[t]][t]}filterEdges(t,n,i){if(!t)return;let r=Object.values(t);return i?r.filter(s=>s.v===n&&s.w===i||s.v===i&&s.w===n):r}};function AG(e,t){e[t]?e[t]++:e[t]=1}function _G(e,t){e[t]!==void 0&&!--e[t]&&delete e[t]}function $w(e,t,n,i){let r=""+t,s=""+n;if(!e&&r>s){let a=r;r=s,s=a}return r+""+s+""+(i===void 0?"\0":i)}function lit(e,t,n,i){let r=""+t,s=""+n;if(!e&&r>s){let l=r;r=s,s=l}let a={v:r,w:s};return i&&(a.name=i),a}function hM(e,t){return $w(e,t.v,t.w,t.name)}var cit="4.0.1",nOe={};tOe(nOe,{read:()=>hit,write:()=>uit});function uit(e){let t={options:{directed:e.isDirected(),multigraph:e.isMultigraph(),compound:e.isCompound()},nodes:dit(e),edges:fit(e)},n=e.graph();return n!==void 0&&(t.value=structuredClone(n)),t}function dit(e){return e.nodes().map(t=>{let n=e.node(t),i=e.parent(t),r={v:t};return n!==void 0&&(r.value=n),i!==void 0&&(r.parent=i),r})}function fit(e){return e.edges().map(t=>{let n=e.edge(t),i={v:t.v,w:t.w};return t.name!==void 0&&(i.name=t.name),n!==void 0&&(i.value=n),i})}function hit(e){let t=new ou(e.options);return e.value!==void 0&&t.setGraph(e.value),e.nodes.forEach(n=>{t.setNode(n.v,n.value),n.parent&&t.setParent(n.v,n.parent)}),e.edges.forEach(n=>{t.setEdge({v:n.v,w:n.w,name:n.name},n.value)}),t}var wB={};tOe(wB,{CycleException:()=>oN,bellmanFord:()=>iOe,components:()=>git,dijkstra:()=>aN,dijkstraAll:()=>vit,findCycles:()=>xit,floydWarshall:()=>Oit,isAcyclic:()=>kit,postorder:()=>Cit,preorder:()=>Tit,prim:()=>Ait,shortestPaths:()=>_it,tarjan:()=>sOe,topsort:()=>aOe});var pit=()=>1;function iOe(e,t,n,i){return mit(e,String(t),n||pit,i||function(r){return e.outEdges(r)})}function mit(e,t,n,i){let r={},s,a=0,l=e.nodes(),c=function(f){let h=n(f);r[f.v].distance+he.key)}has(e){return e in this._keyIndices}priority(e){let t=this._keyIndices[e];if(t!==void 0)return this._arr[t].priority}min(){if(this.size()===0)throw new Error("Queue underflow");return this._arr[0].key}add(e,t){let n=this._keyIndices,i=String(e);if(!(i in n)){let r=this._arr,s=r.length;return n[i]=s,r.push({key:i,priority:t}),this._decrease(s),!0}return!1}removeMin(){this._swap(0,this._arr.length-1);let e=this._arr.pop();return delete this._keyIndices[e.key],this._heapify(0),e.key}decrease(e,t){let n=this._keyIndices[e];if(n===void 0)throw new Error(`Key not found: ${e}`);let i=this._arr[n].priority;if(t>i)throw new Error(`New priority is greater than current priority. Key: ${e} Old: ${i} New: ${t}`);this._arr[n].priority=t,this._decrease(n)}_heapify(e){let t=this._arr,n=2*e,i=n+1,r=e;n>1,!(t[i].priority1;function aN(e,t,n,i){let r=function(s){return e.outEdges(s)};return yit(e,String(t),n||bit,i||r)}function yit(e,t,n,i){let r={},s=new rOe,a,l,c=function(u){let d=u.v!==a?u.v:u.w,f=r[d],h=n(u),m=l.distance+h;if(h<0)throw new Error("dijkstra does not allow negative edge weights. Bad edge: "+u+" Weight: "+h);m0&&(a=s.removeMin(),l=r[a],l.distance!==Number.POSITIVE_INFINITY);)i(a).forEach(c);return r}function vit(e,t,n){return e.nodes().reduce(function(i,r){return i[r]=aN(e,r,t,n),i},{})}function sOe(e){let t=0,n=[],i={},r=[];function s(a){let l=i[a]={onStack:!0,lowlink:t,index:t++};if(n.push(a),e.successors(a).forEach(function(c){c in i?i[c].onStack&&(l.lowlink=Math.min(l.lowlink,i[c].index)):(s(c),l.lowlink=Math.min(l.lowlink,i[c].lowlink))}),l.lowlink===l.index){let c=[],u;do u=n.pop(),i[u].onStack=!1,c.push(u);while(a!==u);r.push(c)}}return e.nodes().forEach(function(a){a in i||s(a)}),r}function xit(e){return sOe(e).filter(function(t){return t.length>1||t.length===1&&e.hasEdge(t[0],t[0])})}var wit=()=>1;function Oit(e,t,n){return Sit(e,t||wit,n||function(i){return e.outEdges(i)})}function Sit(e,t,n){let i={},r=e.nodes();return r.forEach(function(s){i[s]={},i[s][s]={distance:0,predecessor:""},r.forEach(function(a){s!==a&&(i[s][a]={distance:Number.POSITIVE_INFINITY,predecessor:""})}),n(s).forEach(function(a){let l=a.v===s?a.w:a.v,c=t(a);i[s][l]={distance:c,predecessor:s}})}),r.forEach(function(s){let a=i[s];r.forEach(function(l){let c=i[l];r.forEach(function(u){let d=c[s],f=a[u],h=c[u],m=d.distance+f.distance;m{var c;return(c=e.isDirected()?e.successors(l):e.neighbors(l))!=null?c:[]},a={};return t.forEach(function(l){if(!e.hasNode(l))throw new Error("Graph does not have node: "+l);r=oOe(e,l,n==="post",a,s,i,r)}),r}function oOe(e,t,n,i,r,s,a){return t in i||(i[t]=!0,n||(a=s(a,t)),r(t).forEach(function(l){a=oOe(e,l,n,i,r,s,a)}),n&&(a=s(a,t))),a}function lOe(e,t,n){return Eit(e,t,n,function(i,r){return i.push(r),i},[])}function Cit(e,t){return lOe(e,t,"post")}function Tit(e,t){return lOe(e,t,"pre")}function Ait(e,t){let n=new ou,i={},r=new rOe,s;function a(c){let u=c.v===s?c.w:c.v,d=r.priority(u);if(d!==void 0){let f=t(c);f0;){if(s=r.removeMin(),s in i)n.setEdge(s,i[s]);else{if(l)throw new Error("Input graph is not connected: "+e);l=!0}e.nodeEdges(s).forEach(a)}return n}function _it(e,t,n,i){return Nit(e,t,n,i??(r=>{let s=e.outEdges(r);return s??[]}))}function Nit(e,t,n,i){if(n===void 0)return aN(e,t,n,i);let r=!1,s=e.nodes();for(let a=0;at.setNode(n,e.node(n))),e.edges().forEach(n=>{let i=t.edge(n.v,n.w)||{weight:0,minlen:1},r=e.edge(n);t.setEdge(n.v,n.w,{weight:i.weight+r.weight,minlen:Math.max(i.minlen,r.minlen)})}),t}function cOe(e){let t=new ou({multigraph:e.isMultigraph()}).setGraph(e.graph());return e.nodes().forEach(n=>{e.children(n).length||t.setNode(n,e.node(n))}),e.edges().forEach(n=>{t.setEdge(n,e.edge(n))}),t}function NG(e,t){let n=e.x,i=e.y,r=t.x-n,s=t.y-i,a=e.width/2,l=e.height/2;if(!r&&!s)throw new Error("Not possible to find intersection inside of the rectangle");let c,u;return Math.abs(s)*a>Math.abs(r)*l?(s<0&&(l=-l),c=l*r/s,u=l):(r<0&&(a=-a),c=a,u=a*s/r),{x:n+c,y:i+u}}function uE(e){let t=BS(dOe(e)+1).map(()=>[]);return e.nodes().forEach(n=>{let i=e.node(n),r=i.rank;r!==void 0&&(t[r]||(t[r]=[]),t[r][i.order]=n)}),t}function Rit(e){let t=e.nodes().map(i=>{let r=e.node(i).rank;return r===void 0?Number.MAX_VALUE:r}),n=Ad(Math.min,t);e.nodes().forEach(i=>{let r=e.node(i);Object.hasOwn(r,"rank")&&(r.rank-=n)})}function Iit(e){let t=e.nodes().map(a=>e.node(a).rank).filter(a=>a!==void 0),n=Ad(Math.min,t),i=[];e.nodes().forEach(a=>{let l=e.node(a).rank-n;i[l]||(i[l]=[]),i[l].push(a)});let r=0,s=e.graph().nodeRankFactor;Array.from(i).forEach((a,l)=>{a===void 0&&l%s!==0?--r:a!==void 0&&r&&a.forEach(c=>e.node(c).rank+=r)})}function jG(e,t,n,i){let r={width:0,height:0};return arguments.length>=4&&(r.rank=n,r.order=i),Vx(e,"border",r,t)}function Pit(e,t=uOe){let n=[];for(let i=0;iuOe){let n=Pit(t);return e(...n.map(i=>e(...i)))}else return e(...t)}function dOe(e){let t=e.nodes().map(n=>{let i=e.node(n).rank;return i===void 0?Number.MIN_VALUE:i});return Ad(Math.max,t)}function Dit(e,t){let n={lhs:[],rhs:[]};return e.forEach(i=>{t(i)?n.lhs.push(i):n.rhs.push(i)}),n}function fOe(e,t){let n=Date.now();try{return t()}finally{console.log(e+" time: "+(Date.now()-n)+"ms")}}function hOe(e,t){return t()}var Mit=0;function OB(e){let t=++Mit;return e+(""+t)}function BS(e,t,n=1){t==null&&(t=e,e=0);let i=s=>sti[t]:n=t,Object.entries(e).reduce((i,[r,s])=>(i[r]=n(s,r),i),{})}function Lit(e,t){return e.reduce((n,i,r)=>(n[i]=t[r],n),{})}var WR="\0",$it="3.0.0",Fit=class{constructor(){ait(this,"_sentinel");let e={};e._next=e._prev=e,this._sentinel=e}dequeue(){let e=this._sentinel,t=e._prev;if(t!==e)return RG(t),t}enqueue(e){let t=this._sentinel;e._prev&&e._next&&RG(e),e._next=t._next,t._next._prev=e,t._next=e,e._prev=t}toString(){let e=[],t=this._sentinel,n=t._prev;for(;n!==t;)e.push(JSON.stringify(n,Bit)),n=n._prev;return"["+e.join(", ")+"]"}};function RG(e){e._prev._next=e._next,e._next._prev=e._prev,delete e._next,delete e._prev}function Bit(e,t){if(e!=="_next"&&e!=="_prev")return t}var Uit=Fit,Qit=()=>1;function zit(e,t){if(e.nodeCount()<=1)return[];let n=Hit(e,t||Qit);return Vit(n.graph,n.buckets,n.zeroIdx).flatMap(i=>e.outEdges(i.v,i.w)||[])}function Vit(e,t,n){var i;let r=[],s=t[t.length-1],a=t[0],l;for(;e.nodeCount();){for(;l=a.dequeue();)pM(e,t,n,l);for(;l=s.dequeue();)pM(e,t,n,l);if(e.nodeCount()){for(let c=t.length-2;c>0;--c)if(l=(i=t[c])==null?void 0:i.dequeue(),l){r=r.concat(pM(e,t,n,l,!0)||[]);break}}}return r}function pM(e,t,n,i,r){let s=[],a=r?s:void 0;return(e.inEdges(i.v)||[]).forEach(l=>{let c=e.edge(l),u=e.node(l.v);r&&s.push({v:l.v,w:l.w}),u.out-=c,y6(t,n,u)}),(e.outEdges(i.v)||[]).forEach(l=>{let c=e.edge(l),u=l.w,d=e.node(u);d.in-=c,y6(t,n,d)}),e.removeNode(i.v),a}function Hit(e,t){let n=new ou,i=0,r=0;e.nodes().forEach(l=>{n.setNode(l,{v:l,in:0,out:0})}),e.edges().forEach(l=>{let c=n.edge(l.v,l.w)||0,u=t(l),d=c+u;n.setEdge(l.v,l.w,d);let f=n.node(l.v),h=n.node(l.w);r=Math.max(r,f.out+=u),i=Math.max(i,h.in+=u)});let s=qit(r+i+3).map(()=>new Uit),a=i+1;return n.nodes().forEach(l=>{y6(s,a,n.node(l))}),{graph:n,buckets:s,zeroIdx:a}}function y6(e,t,n){var i,r,s;n.out?n.in?(s=e[n.out-n.in+t])==null||s.enqueue(n):(r=e[e.length-1])==null||r.enqueue(n):(i=e[0])==null||i.enqueue(n)}function qit(e){let t=[];for(let n=0;n{let i=e.edge(n);e.removeEdge(n),i.forwardName=n.name,i.reversed=!0,e.setEdge(n.w,n.v,i,OB("rev"))});function t(n){return i=>n.edge(i).weight}}function Kit(e){let t=[],n={},i={};function r(s){Object.hasOwn(i,s)||(i[s]=!0,n[s]=!0,e.outEdges(s).forEach(a=>{Object.hasOwn(n,a.w)?t.push(a):r(a.w)}),delete n[s])}return e.nodes().forEach(r),t}function Git(e){e.edges().forEach(t=>{let n=e.edge(t);if(n.reversed){e.removeEdge(t);let i=n.forwardName;delete n.reversed,delete n.forwardName,e.setEdge(t.w,t.v,n,i)}})}function Xit(e){e.graph().dummyChains=[],e.edges().forEach(t=>Yit(e,t))}function Yit(e,t){let n=t.v,i=e.node(n).rank,r=t.w,s=e.node(r).rank,a=t.name,l=e.edge(t),c=l.labelRank;if(s===i+1)return;e.removeEdge(t);let u,d,f;for(f=0,++i;i{let n=e.node(t),i=n.edgeLabel,r;for(e.setEdge(n.edgeObj,i);n.dummy;)r=e.successors(t)[0],e.removeNode(t),i.points.push({x:n.x,y:n.y}),n.dummy==="edge-label"&&(i.x=n.x,i.y=n.y,i.width=n.width,i.height=n.height),t=r,n=e.node(t)})}function SB(e){let t={};function n(i){let r=e.node(i);if(Object.hasOwn(t,i))return r.rank;t[i]=!0;let s=e.outEdges(i),a=s?s.map(c=>c==null?Number.POSITIVE_INFINITY:n(c.w)-e.edge(c).minlen):[],l=Ad(Math.min,a);return l===Number.POSITIVE_INFINITY&&(l=0),r.rank=l}e.sources().forEach(n)}function ex(e,t){return e.node(t.w).rank-e.node(t.v).rank-e.edge(t).minlen}var pOe=Jit;function Jit(e){let t=new ou({directed:!1}),n=e.nodes();if(n.length===0)throw new Error("Graph must have at least one node");let i=n[0],r=e.nodeCount();t.setNode(i,{});let s,a;for(;ert(t,e){let a=s.v,l=i===a?s.w:a;!e.hasNode(l)&&!ex(t,s)&&(e.setNode(l,{}),e.setEdge(i,l,{}),n(l))})}return e.nodes().forEach(n),e.nodeCount()}function trt(e,t){return t.edges().reduce((n,i)=>{let r=Number.POSITIVE_INFINITY;return e.hasNode(i.v)!==e.hasNode(i.w)&&(r=ex(t,i)),rt.node(i).rank+=n)}var{preorder:irt,postorder:rrt}=wB,srt=t0;t0.initLowLimValues=EB;t0.initCutValues=kB;t0.calcCutValue=mOe;t0.leaveEdge=bOe;t0.enterEdge=yOe;t0.exchangeEdges=vOe;function t0(e){e=jit(e),SB(e);let t=pOe(e);EB(t),kB(t,e);let n,i;for(;n=bOe(t);)i=yOe(t,e,n),vOe(t,e,n,i)}function kB(e,t){let n=rrt(e,e.nodes());n=n.slice(0,n.length-1),n.forEach(i=>art(e,t,i))}function art(e,t,n){let i=e.node(n).parent,r=e.edge(n,i);r.cutvalue=mOe(e,t,n)}function mOe(e,t,n){let i=e.node(n).parent,r=!0,s=t.edge(n,i),a=0;s||(r=!1,s=t.edge(i,n)),a=s.weight;let l=t.nodeEdges(n);return l&&l.forEach(c=>{let u=c.v===n,d=u?c.w:c.v;if(d!==i){let f=u===r,h=t.edge(c).weight;if(a+=f?h:-h,lrt(e,n,d)){let m=e.edge(n,d).cutvalue;a+=f?-m:m}}}),a}function EB(e,t){arguments.length<2&&(t=e.nodes()[0]),gOe(e,{},1,t)}function gOe(e,t,n,i,r){let s=n,a=e.node(i);t[i]=!0;let l=e.neighbors(i);return l&&l.forEach(c=>{Object.hasOwn(t,c)||(n=gOe(e,t,n,c,i))}),a.low=s,a.lim=n++,r?a.parent=r:delete a.parent,n}function bOe(e){return e.edges().find(t=>e.edge(t).cutvalue<0)}function yOe(e,t,n){let i=n.v,r=n.w;t.hasEdge(i,r)||(i=n.w,r=n.v);let s=e.node(i),a=e.node(r),l=s,c=!1;return s.lim>a.lim&&(l=a,c=!0),t.edges().filter(u=>c===IG(e,e.node(u.v),l)&&c!==IG(e,e.node(u.w),l)).reduce((u,d)=>ex(t,d)!e.node(r).parent);if(!n)return;let i=irt(e,[n]);i=i.slice(1),i.forEach(r=>{let s=e.node(r).parent,a=t.edge(r,s),l=!1;a||(a=t.edge(s,r),l=!0),t.node(r).rank=t.node(s).rank+(l?a.minlen:-a.minlen)})}function lrt(e,t,n){return e.hasEdge(t,n)}function IG(e,t,n){return n.low<=t.lim&&t.lim<=n.lim}var crt=urt;function urt(e){let t=e.graph().ranker;if(typeof t=="function")return t(e);switch(t){case"network-simplex":PG(e);break;case"tight-tree":frt(e);break;case"longest-path":drt(e);break;case"none":break;default:PG(e)}}var drt=SB;function frt(e){SB(e),pOe(e)}function PG(e){srt(e)}var hrt=prt;function prt(e){let t=grt(e);e.graph().dummyChains.forEach(n=>{let i=e.node(n),r=i.edgeObj,s=mrt(e,t,r.v,r.w),a=s.path,l=s.lca,c=0,u=a[c],d=!0;for(;n!==r.w;){if(i=e.node(n),d){for(;(u=a[c])!==l&&e.node(u).maxRanka||l>t[c].lim));let u=c,d=i;for(;(d=e.parent(d))!==u;)s.push(d);return{path:r.concat(s.reverse()),lca:u}}function grt(e){let t={},n=0;function i(r){let s=n;e.children(r).forEach(i),t[r]={low:s,lim:n++}}return e.children(WR).forEach(i),t}function brt(e){let t=Vx(e,"root",{},"_root"),n=yrt(e),i=Object.values(n),r=Ad(Math.max,i)-1,s=2*r+1;e.graph().nestingRoot=t,e.edges().forEach(l=>e.edge(l).minlen*=s);let a=vrt(e)+1;e.children(WR).forEach(l=>xOe(e,t,s,a,r,n,l)),e.graph().nodeRankFactor=s}function xOe(e,t,n,i,r,s,a){var l;let c=e.children(a);if(!c.length){a!==t&&e.setEdge(t,a,{weight:0,minlen:n});return}let u=jG(e,"_bt"),d=jG(e,"_bb"),f=e.node(a);e.setParent(u,a),f.borderTop=u,e.setParent(d,a),f.borderBottom=d,c.forEach(h=>{var m;xOe(e,t,n,i,r,s,h);let g=e.node(h),b=g.borderTop?g.borderTop:h,v=g.borderBottom?g.borderBottom:h,y=g.borderTop?i:2*i,x=b!==v?1:r-((m=s[a])!=null?m:0)+1;e.setEdge(u,b,{weight:y,minlen:x,nestingEdge:!0}),e.setEdge(v,d,{weight:y,minlen:x,nestingEdge:!0})}),e.parent(a)||e.setEdge(t,u,{weight:0,minlen:r+((l=s[a])!=null?l:0)})}function yrt(e){let t={};function n(i,r){let s=e.children(i);s&&s.length&&s.forEach(a=>n(a,r+1)),t[i]=r}return e.children(WR).forEach(i=>n(i,1)),t}function vrt(e){return e.edges().reduce((t,n)=>t+e.edge(n).weight,0)}function xrt(e){let t=e.graph();e.removeNode(t.nestingRoot),delete t.nestingRoot,e.edges().forEach(n=>{e.edge(n).nestingEdge&&e.removeEdge(n)})}var wrt=Ort;function Ort(e){function t(n){let i=e.children(n),r=e.node(n);if(i.length&&i.forEach(t),Object.hasOwn(r,"minRank")){r.borderLeft=[],r.borderRight=[];for(let s=r.minRank,a=r.maxRank+1;sMG(e.node(t))),e.edges().forEach(t=>MG(e.edge(t)))}function MG(e){let t=e.width;e.width=e.height,e.height=t}function Ert(e){e.nodes().forEach(t=>mM(e.node(t))),e.edges().forEach(t=>{var n;let i=e.edge(t);(n=i.points)==null||n.forEach(mM),Object.hasOwn(i,"y")&&mM(i)})}function mM(e){e.y=-e.y}function Crt(e){e.nodes().forEach(t=>gM(e.node(t))),e.edges().forEach(t=>{var n;let i=e.edge(t);(n=i.points)==null||n.forEach(gM),Object.hasOwn(i,"x")&&gM(i)})}function gM(e){let t=e.x;e.x=e.y,e.y=t}function Trt(e){let t={},n=e.nodes().filter(l=>!e.children(l).length),i=n.map(l=>e.node(l).rank),r=Ad(Math.max,i),s=BS(r+1).map(()=>[]);function a(l){if(t[l])return;t[l]=!0;let c=e.node(l);s[c.rank].push(l);let u=e.successors(l);u&&u.forEach(a)}return n.sort((l,c)=>e.node(l).rank-e.node(c).rank).forEach(a),s}function Art(e,t){let n=0;for(let i=1;id)),r=t.flatMap(u=>{let d=e.outEdges(u);return d?d.map(f=>({pos:i[f.w],weight:e.edge(f).weight})).sort((f,h)=>f.pos-h.pos):[]}),s=1;for(;s{let d=u.pos+s;l[d]+=u.weight;let f=0;for(;d>0;)d%2&&(f+=l[d+1]),d=d-1>>1,l[d]+=u.weight;c+=u.weight*f}),c}function Nrt(e,t=[]){return t.map(n=>{let i=e.inEdges(n);if(!i||!i.length)return{v:n};{let r=i.reduce((s,a)=>{let l=e.edge(a),c=e.node(a.v);return{sum:s.sum+l.weight*c.order,weight:s.weight+l.weight}},{sum:0,weight:0});return{v:n,barycenter:r.sum/r.weight,weight:r.weight}}})}function jrt(e,t){let n={};e.forEach((r,s)=>{let a={indegree:0,in:[],out:[],vs:[r.v],i:s};r.barycenter!==void 0&&(a.barycenter=r.barycenter,a.weight=r.weight),n[r.v]=a}),t.edges().forEach(r=>{let s=n[r.v],a=n[r.w];s!==void 0&&a!==void 0&&(a.indegree++,s.out.push(a))});let i=Object.values(n).filter(r=>!r.indegree);return Rrt(i)}function Rrt(e){let t=[];function n(r){return s=>{s.merged||(s.barycenter===void 0||r.barycenter===void 0||s.barycenter>=r.barycenter)&&Irt(r,s)}}function i(r){return s=>{s.in.push(r),--s.indegree===0&&e.push(s)}}for(;e.length;){let r=e.pop();t.push(r),r.in.reverse().forEach(n(r)),r.out.forEach(i(r))}return t.filter(r=>!r.merged).map(r=>lN(r,["vs","i","barycenter","weight"]))}function Irt(e,t){let n=0,i=0;e.weight&&(n+=e.barycenter*e.weight,i+=e.weight),t.weight&&(n+=t.barycenter*t.weight,i+=t.weight),e.vs=t.vs.concat(e.vs),e.barycenter=n/i,e.weight=i,e.i=Math.min(t.i,e.i),t.merged=!0}function Prt(e,t){let n=Dit(e,d=>Object.hasOwn(d,"barycenter")),i=n.lhs,r=n.rhs.sort((d,f)=>f.i-d.i),s=[],a=0,l=0,c=0;i.sort(Drt(!!t)),c=LG(s,r,c),i.forEach(d=>{c+=d.vs.length,s.push(d.vs),a+=d.barycenter*d.weight,l+=d.weight,c=LG(s,r,c)});let u={vs:s.flat(1)};return l&&(u.barycenter=a/l,u.weight=l),u}function LG(e,t,n){let i;for(;t.length&&(i=t[t.length-1]).i<=n;)t.pop(),e.push(i.vs),n++;return n}function Drt(e){return(t,n)=>t.barycentern.barycenter?1:e?n.i-t.i:t.i-n.i}function OOe(e,t,n,i){let r=e.children(t),s=e.node(t),a=s?s.borderLeft:void 0,l=s?s.borderRight:void 0,c={};a&&(r=r.filter(h=>h!==a&&h!==l));let u=Nrt(e,r);u.forEach(h=>{if(e.children(h.v).length){let m=OOe(e,h.v,n,i);c[h.v]=m,Object.hasOwn(m,"barycenter")&&Lrt(h,m)}});let d=jrt(u,n);Mrt(d,c);let f=Prt(d,i);if(a&&l){f.vs=[a,f.vs,l].flat(1);let h=e.predecessors(a);if(h&&h.length){let m=e.node(h[0]),g=e.predecessors(l),b=e.node(g[0]);Object.hasOwn(f,"barycenter")||(f.barycenter=0,f.weight=0),f.barycenter=(f.barycenter*f.weight+m.order+b.order)/(f.weight+2),f.weight+=2}}return f}function Mrt(e,t){e.forEach(n=>{n.vs=n.vs.flatMap(i=>t[i]?t[i].vs:i)})}function Lrt(e,t){e.barycenter!==void 0?(e.barycenter=(e.barycenter*e.weight+t.barycenter*t.weight)/(e.weight+t.weight),e.weight+=t.weight):(e.barycenter=t.barycenter,e.weight=t.weight)}function $rt(e,t,n,i){i||(i=e.nodes());let r=Frt(e),s=new ou({compound:!0}).setGraph({root:r}).setDefaultNodeLabel(a=>e.node(a));return i.forEach(a=>{let l=e.node(a),c=e.parent(a);if(l.rank===t||l.minRank<=t&&t<=l.maxRank){s.setNode(a),s.setParent(a,c||r);let u=e[n](a);u&&u.forEach(d=>{let f=d.v===a?d.w:d.v,h=s.edge(f,a),m=h!==void 0?h.weight:0;s.setEdge(f,a,{weight:e.edge(d).weight+m})}),Object.hasOwn(l,"minRank")&&s.setNode(a,{borderLeft:l.borderLeft[t],borderRight:l.borderRight[t]})}}),s}function Frt(e){let t;for(;e.hasNode(t=OB("_root")););return t}function Brt(e,t,n){let i={},r;n.forEach(s=>{let a=e.parent(s),l,c;for(;a;){if(l=e.parent(a),l?(c=i[l],i[l]=a):(c=r,r=a),c&&c!==a){t.setEdge(c,a);return}a=l}})}function SOe(e,t={}){if(typeof t.customOrder=="function"){t.customOrder(e,SOe);return}let n=dOe(e),i=$G(e,BS(1,n+1),"inEdges"),r=$G(e,BS(n-1,-1,-1),"outEdges"),s=Trt(e);if(FG(e,s),t.disableOptimalOrderHeuristic)return;let a=Number.POSITIVE_INFINITY,l,c=t.constraints||[];for(let u=0,d=0;d<4;++u,++d){Urt(u%2?i:r,u%4>=2,c),s=uE(e);let f=Art(e,s);f{i.has(s)||i.set(s,[]),i.get(s).push(a)};for(let s of e.nodes()){let a=e.node(s);if(typeof a.rank=="number"&&r(a.rank,s),typeof a.minRank=="number"&&typeof a.maxRank=="number")for(let l=a.minRank;l<=a.maxRank;l++)l!==a.rank&&r(l,s)}return t.map(function(s){return $rt(e,s,n,i.get(s)||[])})}function Urt(e,t,n){let i=new ou;e.forEach(function(r){n.forEach(l=>i.setEdge(l.left,l.right));let s=r.graph().root,a=OOe(r,s,i,t);a.vs.forEach((l,c)=>r.node(l).order=c),Brt(r,i,a.vs)})}function FG(e,t){Object.values(t).forEach(n=>n.forEach((i,r)=>e.node(i).order=r))}function Qrt(e,t){let n={};function i(r,s){let a=0,l=0,c=r.length,u=s[s.length-1];return s.forEach((d,f)=>{let h=Vrt(e,d),m=h?e.node(h).order:c;(h||d===u)&&(s.slice(l,f+1).forEach(g=>{let b=e.predecessors(g);b&&b.forEach(v=>{let y=e.node(v),x=y.order;(x{let f=s[d];if(f!==void 0&&e.node(f).dummy){let h=e.predecessors(f);h&&h.forEach(m=>{if(m===void 0)return;let g=e.node(m);g.dummy&&(g.orderu)&&kOe(n,m,f)})}})}function r(s,a){let l=-1,c=-1,u=0;return a.forEach((d,f)=>{if(e.node(d).dummy==="border"){let h=e.predecessors(d);if(h&&h.length){let m=h[0];if(m===void 0)return;c=e.node(m).order,i(a,u,f,l,c),u=f,l=c}}i(a,u,a.length,c,s.length)}),a}return t.length&&t.reduce(r),n}function Vrt(e,t){if(e.node(t).dummy){let n=e.predecessors(t);if(n)return n.find(i=>e.node(i).dummy)}}function kOe(e,t,n){if(t>n){let r=t;t=n,n=r}let i=e[t];i||(e[t]=i={}),i[n]=!0}function Hrt(e,t,n){if(t>n){let r=t;t=n,n=r}let i=e[t];return i!==void 0&&Object.hasOwn(i,n)}function qrt(e,t,n,i){let r={},s={},a={};return t.forEach(l=>{l.forEach((c,u)=>{r[c]=c,s[c]=c,a[c]=u})}),t.forEach(l=>{let c=-1;l.forEach(u=>{let d=i(u);if(d&&d.length){let f=d.sort((m,g)=>{let b=a[m],v=a[g];return(b!==void 0?b:0)-(v!==void 0?v:0)}),h=(f.length-1)/2;for(let m=Math.floor(h),g=Math.ceil(h);m<=g;++m){let b=f[m];if(b===void 0)continue;let v=a[b];if(v!==void 0&&s[u]===u&&c{var y;let x=(y=s[v.v])!=null?y:0,O=a.edge(v);return Math.max(b,x+(O!==void 0?O:0))},0):s[m]=0}function d(m){let g=a.outEdges(m),b=Number.POSITIVE_INFINITY;g&&(b=g.reduce((y,x)=>{let O=s[x.w],w=a.edge(x);return Math.min(y,(O!==void 0?O:0)-(w!==void 0?w:0))},Number.POSITIVE_INFINITY));let v=e.node(m);b!==Number.POSITIVE_INFINITY&&v.borderType!==l&&(s[m]=Math.max(s[m]!==void 0?s[m]:0,b))}function f(m){return a.predecessors(m)||[]}function h(m){return a.successors(m)||[]}return c(u,f),c(d,h),Object.keys(i).forEach(m=>{var g;let b=n[m];b!==void 0&&(s[m]=(g=s[b])!=null?g:0)}),s}function Krt(e,t,n,i){let r=new ou,s=e.graph(),a=Jrt(s.nodesep,s.edgesep,i);return t.forEach(l=>{let c;l.forEach(u=>{let d=n[u];if(d!==void 0){if(r.setNode(d),c!==void 0){let f=n[c];if(f!==void 0){let h=r.edge(f,d);r.setEdge(f,d,Math.max(a(e,u,c),h||0))}}c=u}})}),r}function Grt(e,t){return Object.values(t).reduce((n,i)=>{let r=Number.NEGATIVE_INFINITY,s=Number.POSITIVE_INFINITY;Object.entries(i).forEach(([l,c])=>{let u=est(e,l)/2;r=Math.max(c+u,r),s=Math.min(c-u,s)});let a=r-s;return a{["l","r"].forEach(a=>{let l=s+a,c=e[l];if(!c||c===t)return;let u=Object.values(c),d=i-Ad(Math.min,u);a!=="l"&&(d=r-Ad(Math.max,u)),d&&(e[l]=qR(c,f=>f+d))})})}function Yrt(e,t=void 0){let n=e.ul;return n?qR(n,(i,r)=>{var s,a;if(t){let c=t.toLowerCase(),u=e[c];if(u&&u[r]!==void 0)return u[r]}let l=Object.values(e).map(c=>{let u=c[r];return u!==void 0?u:0}).sort((c,u)=>c-u);return(((s=l[1])!=null?s:0)+((a=l[2])!=null?a:0))/2}):{}}function Zrt(e){let t=uE(e),n=Object.assign(Qrt(e,t),zrt(e,t)),i={},r;["u","d"].forEach(a=>{r=a==="u"?t:Object.values(t).reverse(),["l","r"].forEach(l=>{l==="r"&&(r=r.map(d=>Object.values(d).reverse()));let c=qrt(e,r,n,d=>(a==="u"?e.predecessors(d):e.successors(d))||[]),u=Wrt(e,r,c.root,c.align,l==="r");l==="r"&&(u=qR(u,d=>-d)),i[a+l]=u})});let s=Grt(e,i);return Xrt(i,s),Yrt(i,e.graph().align)}function Jrt(e,t,n){return(i,r,s)=>{let a=i.node(r),l=i.node(s),c=0,u;if(c+=a.width/2,Object.hasOwn(a,"labelpos"))switch(a.labelpos.toLowerCase()){case"l":u=-a.width/2;break;case"r":u=a.width/2;break}if(u&&(c+=n?u:-u),u=void 0,c+=(a.dummy?t:e)/2,c+=(l.dummy?t:e)/2,c+=l.width/2,Object.hasOwn(l,"labelpos"))switch(l.labelpos.toLowerCase()){case"l":u=l.width/2;break;case"r":u=-l.width/2;break}return u&&(c+=n?u:-u),c}}function est(e,t){return e.node(t).width}function tst(e){e=cOe(e),nst(e),Object.entries(Zrt(e)).forEach(([t,n])=>e.node(t).x=n)}function nst(e){let t=uE(e),n=e.graph(),i=n.ranksep,r=n.rankalign,s=0;t.forEach(a=>{let l=a.reduce((c,u)=>{var d;let f=(d=e.node(u).height)!=null?d:0;return c>f?c:f},0);a.forEach(c=>{let u=e.node(c);r==="top"?u.y=s+u.height/2:r==="bottom"?u.y=s+l-u.height/2:u.y=s+l/2}),s+=l+i})}function ist(e,t={}){let n=t.debugTiming?fOe:hOe;return n("layout",()=>{let i=n(" buildLayoutGraph",()=>hst(e));return n(" runLayout",()=>rst(i,n,t)),n(" updateInputGraph",()=>sst(e,i)),i})}function rst(e,t,n){t(" makeSpaceForEdgeLabels",()=>pst(e)),t(" removeSelfEdges",()=>Sst(e)),t(" acyclic",()=>Wit(e)),t(" nestingGraph.run",()=>brt(e)),t(" rank",()=>crt(cOe(e))),t(" injectEdgeLabelProxies",()=>mst(e)),t(" removeEmptyRanks",()=>Iit(e)),t(" nestingGraph.cleanup",()=>xrt(e)),t(" normalizeRanks",()=>Rit(e)),t(" assignRankMinMax",()=>gst(e)),t(" removeEdgeLabelProxies",()=>bst(e)),t(" normalize.run",()=>Xit(e)),t(" parentDummyChains",()=>hrt(e)),t(" addBorderSegments",()=>wrt(e)),t(" order",()=>SOe(e,n)),t(" insertSelfEdges",()=>kst(e)),t(" adjustCoordinateSystem",()=>Srt(e)),t(" position",()=>tst(e)),t(" positionSelfEdges",()=>Est(e)),t(" removeBorderNodes",()=>Ost(e)),t(" normalize.undo",()=>Zit(e)),t(" fixupEdgeLabelCoords",()=>xst(e)),t(" undoCoordinateSystem",()=>krt(e)),t(" translateGraph",()=>yst(e)),t(" assignNodeIntersects",()=>vst(e)),t(" reversePoints",()=>wst(e)),t(" acyclic.undo",()=>Git(e))}function sst(e,t){e.nodes().forEach(n=>{let i=e.node(n),r=t.node(n);i&&(i.x=r.x,i.y=r.y,i.order=r.order,i.rank=r.rank,t.children(n).length&&(i.width=r.width,i.height=r.height))}),e.edges().forEach(n=>{let i=e.edge(n),r=t.edge(n);i.points=r.points,Object.hasOwn(r,"x")&&(i.x=r.x,i.y=r.y)}),e.graph().width=t.graph().width,e.graph().height=t.graph().height}var ast=["nodesep","edgesep","ranksep","marginx","marginy"],ost={ranksep:50,edgesep:20,nodesep:50,rankdir:"TB",rankalign:"center"},lst=["acyclicer","ranker","rankdir","align","rankalign"],cst=["width","height","rank"],BG={width:0,height:0},ust=["minlen","weight","width","height","labeloffset"],dst={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},fst=["labelpos"];function hst(e){let t=new ou({multigraph:!0,compound:!0}),n=yM(e.graph());return t.setGraph(Object.assign({},ost,bM(n,ast),lN(n,lst))),e.nodes().forEach(i=>{let r=yM(e.node(i)),s=bM(r,cst);Object.keys(BG).forEach(l=>{s[l]===void 0&&(s[l]=BG[l])}),t.setNode(i,s);let a=e.parent(i);a!==void 0&&t.setParent(i,a)}),e.edges().forEach(i=>{let r=yM(e.edge(i));t.setEdge(i,Object.assign({},dst,bM(r,ust),lN(r,fst)))}),t}function pst(e){let t=e.graph();t.ranksep/=2,e.edges().forEach(n=>{let i=e.edge(n);i.minlen*=2,i.labelpos.toLowerCase()!=="c"&&(t.rankdir==="TB"||t.rankdir==="BT"?i.width+=i.labeloffset:i.height+=i.labeloffset)})}function mst(e){e.edges().forEach(t=>{let n=e.edge(t);if(n.width&&n.height){let i=e.node(t.v),r={rank:(e.node(t.w).rank-i.rank)/2+i.rank,e:t};Vx(e,"edge-proxy",r,"_ep")}})}function gst(e){let t=0;e.nodes().forEach(n=>{let i=e.node(n);i.borderTop&&(i.minRank=e.node(i.borderTop).rank,i.maxRank=e.node(i.borderBottom).rank,t=Math.max(t,i.maxRank))}),e.graph().maxRank=t}function bst(e){e.nodes().forEach(t=>{let n=e.node(t);if(n.dummy==="edge-proxy"){let i=n;e.edge(i.e).labelRank=n.rank,e.removeNode(t)}})}function yst(e){let t=Number.POSITIVE_INFINITY,n=0,i=Number.POSITIVE_INFINITY,r=0,s=e.graph(),a=s.marginx||0,l=s.marginy||0;function c(u){let d=u.x,f=u.y,h=u.width,m=u.height;t=Math.min(t,d-h/2),n=Math.max(n,d+h/2),i=Math.min(i,f-m/2),r=Math.max(r,f+m/2)}e.nodes().forEach(u=>c(e.node(u))),e.edges().forEach(u=>{let d=e.edge(u);Object.hasOwn(d,"x")&&c(d)}),t-=a,i-=l,e.nodes().forEach(u=>{let d=e.node(u);d.x-=t,d.y-=i}),e.edges().forEach(u=>{let d=e.edge(u);d.points.forEach(f=>{f.x-=t,f.y-=i}),Object.hasOwn(d,"x")&&(d.x-=t),Object.hasOwn(d,"y")&&(d.y-=i)}),s.width=n-t+a,s.height=r-i+l}function vst(e){e.edges().forEach(t=>{let n=e.edge(t),i=e.node(t.v),r=e.node(t.w),s,a;n.points?(s=n.points[0],a=n.points[n.points.length-1]):(n.points=[],s=r,a=i),n.points.unshift(NG(i,s)),n.points.push(NG(r,a))})}function xst(e){e.edges().forEach(t=>{let n=e.edge(t);if(Object.hasOwn(n,"x"))switch((n.labelpos==="l"||n.labelpos==="r")&&(n.width-=n.labeloffset),n.labelpos){case"l":n.x-=n.width/2+n.labeloffset;break;case"r":n.x+=n.width/2+n.labeloffset;break}})}function wst(e){e.edges().forEach(t=>{let n=e.edge(t);n.reversed&&n.points.reverse()})}function Ost(e){e.nodes().forEach(t=>{if(e.children(t).length){let n=e.node(t),i=e.node(n.borderTop),r=e.node(n.borderBottom),s=e.node(n.borderLeft[n.borderLeft.length-1]),a=e.node(n.borderRight[n.borderRight.length-1]);n.width=Math.abs(a.x-s.x),n.height=Math.abs(r.y-i.y),n.x=s.x+n.width/2,n.y=i.y+n.height/2}}),e.nodes().forEach(t=>{e.node(t).dummy==="border"&&e.removeNode(t)})}function Sst(e){e.edges().forEach(t=>{if(t.v===t.w){let n=e.node(t.v);n.selfEdges||(n.selfEdges=[]),n.selfEdges.push({e:t,label:e.edge(t)}),e.removeEdge(t)}})}function kst(e){uE(e).forEach(t=>{let n=0;t.forEach((i,r)=>{let s=e.node(i);s.order=r+n,(s.selfEdges||[]).forEach(a=>{Vx(e,"selfedge",{width:a.label.width,height:a.label.height,rank:s.rank,order:r+ ++n,e:a.e,label:a.label},"_se")}),delete s.selfEdges})})}function Est(e){e.nodes().forEach(t=>{let n=e.node(t);if(n.dummy==="selfedge"){let i=n,r=e.node(i.e.v),s=r.x+r.width/2,a=r.y,l=n.x-s,c=r.height/2;e.setEdge(i.e,i.label),e.removeNode(t),i.label.points=[{x:s+2*l/3,y:a-c},{x:s+5*l/6,y:a-c},{x:s+l,y:a},{x:s+5*l/6,y:a+c},{x:s+2*l/3,y:a+c}],i.label.x=n.x,i.label.y=n.y}})}function bM(e,t){return qR(lN(e,t),Number)}function yM(e){let t={};return e&&Object.entries(e).forEach(([n,i])=>{typeof n=="string"&&(n=n.toLowerCase()),t[n]=i}),t}function Cst(e){let t=uE(e),n=new ou({compound:!0,multigraph:!0}).setGraph({});return e.nodes().forEach(i=>{n.setNode(i,{label:i}),n.setParent(i,"layer"+e.node(i).rank)}),e.edges().forEach(i=>n.setEdge(i.v,i.w,{},i.name)),t.forEach((i,r)=>{let s="layer"+r;n.setNode(s,{rank:"same"}),i.reduce((a,l)=>(n.setEdge(a,l,{style:"invis"}),l))}),n}var Tst={graphlib:eOe,version:$it,layout:ist,debug:Cst,util:{time:fOe,notime:hOe}},UG=Tst;/*! For license information please see dagre.esm.js.LEGAL.txt */const Fw={llm:{labelKey:"buildCanvas.patterns.llm.label",descriptionKey:"buildCanvas.patterns.llm.description",icon:$be},sequential:{labelKey:"buildCanvas.patterns.sequential.label",descriptionKey:"buildCanvas.patterns.sequential.description",icon:U7e},parallel:{labelKey:"buildCanvas.patterns.parallel.label",descriptionKey:"buildCanvas.patterns.parallel.description",icon:w7e},loop:{labelKey:"buildCanvas.patterns.loop.label",descriptionKey:"buildCanvas.patterns.loop.description",icon:Qbe},a2a:{labelKey:"buildCanvas.patterns.a2a.label",descriptionKey:"buildCanvas.patterns.a2a.description",icon:rR}},v6=220,x6=88,QG=96,zG=34,AO=64,vM=310,Dy=24,EOe=56,w6=40,VG=40,Ast=18,_st=58,Nst=!1,jst=e=>e==="sequential"||e==="parallel"||e==="loop";function O6(e,t){const n=e.agentType??"llm";return jst(n)||n==="llm"&&(t.length===0||e.subAgents.length>0)}function S6(e,t=[],n="horizontal",i=!1){const r=e.agentType??"llm";if(!O6(e,t))return{width:v6,height:x6};if(i&&e.subAgents.length===0)return{width:vM,height:AO};const s=e.subAgents.map((f,h)=>S6(f,[...t,h],n,i)),a=s.length?Math.max(...s.map(f=>f.width)):0,l=s.length?Math.max(...s.map(f=>f.height)):0,c=s.length&&r!=="parallel"?EOe:Dy,u=n==="horizontal"?r!=="parallel":r==="parallel",d=s.length?r==="parallel"?Ast+VG:r==="loop"?_st:0:VG;return u?{width:Math.max(vM,s.reduce((f,h)=>f+h.width,0)+w6*Math.max(0,s.length-1)+c*2),height:AO+Dy+l+d+Dy}:{width:Math.max(vM,a+Dy*2),height:AO+c+s.reduce((f,h)=>f+h.height,0)+w6*Math.max(0,s.length-1)+d+c}}function V1(e){return e.length===0?"agent-root":`agent-${e.join("-")}`}function Rst(e,t){return e.length===t.length&&e.every((n,i)=>n===t[i])}function HG(e){const t=n=>[n.agentType??"llm",n.subAgents.map(t)];return JSON.stringify(t(e))}function H1(e,t,n,i){const r=(i==null?void 0:i.tone)==="sequential"?"hsl(213 40% 40%)":(i==null?void 0:i.tone)==="loop"?"hsl(151 34% 34%)":"hsl(220 9% 38%)";return{id:`${e}-${t}${i!=null&&i.loop?"-loop":""}`,source:e,target:t,sourceHandle:i!=null&&i.loop?"loop-source":void 0,targetHandle:i!=null&&i.loop?"loop-target":void 0,label:n,type:"insertStep",data:i?{insert:i.insert,loop:i.loop,tone:i.tone}:void 0,animated:i==null?void 0:i.loop,markerEnd:{type:MS.ArrowClosed,width:16,height:16,color:r},style:{stroke:r,strokeWidth:1.5},labelStyle:{fill:"hsl(215 14% 42%)",fontSize:10,fontWeight:600},labelBgStyle:{fill:"hsl(var(--background))",fillOpacity:.92}}}function qG(e,t,n=!1,i){const r=[{id:"terminal-input",type:"terminal",position:{x:0,y:0},data:{kind:"terminal",title:i("buildCanvas.terminals.input")},selectable:!1,draggable:!1},{id:"terminal-output",type:"terminal",position:{x:0,y:0},data:{kind:"terminal",title:i("buildCanvas.terminals.output")},selectable:!1,draggable:!1}],s=[];function a(f,h,m,g,b){const v=f.agentType??"llm",y=V1(h);return O6(f,h)?(l(f,h,m,g,b),y):(r.push({id:y,type:"agent",parentId:m,extent:"parent",position:g,data:{kind:"agent",path:h,agent:f,title:v==="a2a"?i("buildCanvas.patterns.a2a.label"):f.name.trim()||(h.length===0?i("buildCanvas.rootAgent"):i("buildCanvas.unnamedStep")),pattern:v,description:f.description.trim()||i(Fw[v].descriptionKey),childCount:f.subAgents.length,containedIn:b}}),y)}function l(f,h,m,g={x:0,y:0},b){const v=f.agentType??"sequential",y=V1(h),x=S6(f,h,t,n);r.push({id:y,type:"group",parentId:m,extent:m?"parent":void 0,position:g,style:{width:x.width,height:x.height},data:{kind:"agent",path:h,agent:f,title:f.name.trim()||(h.length===0?i("buildCanvas.rootAgent"):i(Fw[v].labelKey)),pattern:v,description:f.description.trim()||i(Fw[v].descriptionKey),childCount:f.subAgents.length,containedIn:b,layoutWidth:x.width,layoutHeight:x.height,compactEmptyGroup:n&&f.subAgents.length===0}});const O=f.subAgents.map((C,N)=>S6(C,[...h,N],t,n)),w=O.length&&v!=="parallel"?EOe:Dy,k=t==="horizontal"?v!=="parallel":v==="parallel";let S=w;const E=f.subAgents.map((C,N)=>{const T=O[N],j=k?{x:S,y:AO+Dy}:{x:(x.width-T.width)/2,y:AO+S};return S+=(k?T.width:T.height)+w6,a(C,[...h,N],y,j,v)});if(v==="sequential"||v==="loop"){for(let C=0;C1&&s.push(H1(E[E.length-1],E[0],i("buildCanvas.edges.continueLoop"),{loop:!0,tone:"loop"}))}return y}const c=(f,h)=>{const m=f.agentType??"llm",g=V1(h);if(O6(f,h))return l(f,h),[g];if(r.push({id:g,type:"agent",position:{x:0,y:0},data:{kind:"agent",path:h,agent:f,title:m==="a2a"?i("buildCanvas.patterns.a2a.label"):f.name.trim()||(h.length===0?i("buildCanvas.rootAgent"):i("buildCanvas.unnamedStep")),pattern:m,description:f.description.trim()||i(Fw[m].descriptionKey),childCount:f.subAgents.length}}),f.subAgents.length===0)return[g];const b=[];return f.subAgents.forEach((v,y)=>{const x=[...h,y],O=V1(x);s.push(H1(g,O,i("buildCanvas.edges.call"),{insert:{parentPath:h,index:y}})),b.push(...c(v,x))}),b},u=V1([]),d=c(e,[]);return s.push(H1("terminal-input",u)),d.forEach(f=>s.push(H1(f,"terminal-output"))),Ist(r,s,t)}function Ist(e,t,n){const i=new UG.graphlib.Graph().setDefaultEdgeLabel(()=>({}));i.setGraph({rankdir:n==="vertical"?"TB":"LR",ranksep:50,nodesep:34,edgesep:14,marginx:24,marginy:24});const r=new Set(e.filter(s=>!s.parentId).map(s=>s.id));return e.filter(s=>!s.parentId).forEach(s=>{const a=s.data.kind==="terminal";i.setNode(s.id,{width:a?QG:s.data.layoutWidth??v6,height:a?zG:s.data.layoutHeight??x6})}),t.filter(s=>r.has(s.source)&&r.has(s.target)).forEach(s=>i.setEdge(s.source,s.target)),UG.layout(i),{nodes:e.map(s=>{if(s.parentId)return s;const a=i.node(s.id),l=s.data.kind==="terminal",c=l?QG:s.data.layoutWidth??v6,u=l?zG:s.data.layoutHeight??x6;return{...s,position:{x:a.x-c/2,y:a.y-u/2}}}),edges:t}}const KR=p.createContext(null),GR=p.createContext("horizontal");function Pst({id:e,sourceX:t,sourceY:n,targetX:i,targetY:r,sourcePosition:s,targetPosition:a,markerEnd:l,style:c,label:u,data:d}){const{t:f}=Ae("create"),h=p.useContext(KR),[m,g]=p.useState(!1),[b,v,y]=rN({sourceX:t,sourceY:n,targetX:i,targetY:r,sourcePosition:s,targetPosition:a,offset:d!=null&&d.loop?28:20});return o.jsxs(o.Fragment,{children:[o.jsx(cE,{id:e,path:b,markerEnd:l,style:c}),h&&(d==null?void 0:d.insert)&&o.jsx("path",{d:b,className:"abc-edge-hover-path",onPointerEnter:()=>g(!0),onPointerLeave:()=>g(!1)}),(u||h&&(d==null?void 0:d.insert))&&o.jsx(Cnt,{children:o.jsxs("div",{className:`abc-edge-tools${h&&(d!=null&&d.insert)?" can-insert":""}${m?" is-visible":""}`,style:{transform:`translate(-50%, -50%) translate(${v}px, ${y}px)`},onPointerEnter:()=>g(!0),onPointerLeave:()=>g(!1),children:[u&&o.jsx("span",{className:"abc-edge-label",children:u}),h&&(d==null?void 0:d.insert)&&o.jsx("button",{type:"button",className:"abc-edge-add nodrag nopan","aria-label":f("buildCanvas.actions.insertHere"),title:f("buildCanvas.actions.insertHere"),onClick:x=>{x.stopPropagation(),h==null||h.onInsert(d.insert.parentPath,d.insert.index)},children:o.jsx(zo,{})})]})})]})}function Dst({data:e,selected:t}){const{t:n}=Ae("create"),i=p.useContext(KR),r=p.useContext(GR),s=r==="vertical"?an.Top:an.Left,a=r==="vertical"?an.Bottom:an.Right,l=r==="vertical"?an.Right:an.Bottom,c=e.pattern??"llm",u=Fw[c],d=u.icon;return o.jsxs("div",{className:`abc-node is-${c}${e.containedIn?` is-contained-in-${e.containedIn}`:""}${t?" is-selected":""}`,children:[o.jsx(pl,{type:"target",position:s,className:"abc-handle"}),c!=="llm"&&o.jsx("span",{className:"abc-node-icon",children:o.jsx(d,{})}),o.jsxs("span",{className:"abc-node-copy",children:[o.jsx("span",{className:"abc-node-meta",children:o.jsx("span",{children:n(u.labelKey)})}),o.jsx("strong",{children:e.title}),o.jsx("small",{children:e.description})]}),i&&e.path!==void 0&&e.path.length>0&&o.jsx("button",{type:"button",className:"abc-node-delete nodrag nopan","aria-label":n("buildCanvas.actions.deleteNamed",{name:e.title}),title:n("buildCanvas.actions.deleteNode"),onClick:f=>{f.stopPropagation(),i==null||i.onDelete(e.path)},children:o.jsx(ym,{})}),o.jsx(pl,{type:"source",position:a,className:"abc-handle"}),e.containedIn==="loop"&&o.jsxs(o.Fragment,{children:[o.jsx(pl,{id:"loop-target",type:"target",position:l,className:"abc-handle abc-loop-handle"}),o.jsx(pl,{id:"loop-source",type:"source",position:l,className:"abc-handle abc-loop-handle"})]})]})}function Mst({data:e,selected:t}){const{t:n}=Ae("create"),i=p.useContext(KR),r=p.useContext(GR),s=r==="vertical"?an.Top:an.Left,a=r==="vertical"?an.Bottom:an.Right,l=r==="vertical"?an.Right:an.Bottom,c=e.pattern??"sequential",u=e.childCount??0,d=n(c==="llm"?"buildCanvas.actions.addSubagent":c==="parallel"?"buildCanvas.actions.addParallelStep":c==="loop"?"buildCanvas.actions.addLoopStep":"buildCanvas.actions.addNextStep");return o.jsxs("div",{className:`abc-group is-${c}${e.compactEmptyGroup?" is-compact-empty":""}${t?" is-selected":""}`,children:[o.jsx(pl,{type:"target",position:s,className:"abc-handle"}),o.jsx("header",{className:"abc-group-head",children:o.jsxs("span",{children:[o.jsx("strong",{title:e.title,children:e.title}),o.jsx("small",{children:e.description})]})}),i&&e.path!==void 0&&u>0&&c!=="parallel"&&o.jsxs("div",{className:"abc-group-boundary-actions",children:[o.jsx("button",{type:"button",className:"abc-group-boundary-add is-start nodrag nopan","aria-label":n("buildCanvas.actions.addFirst"),title:n("buildCanvas.actions.addFirst"),onClick:f=>{f.stopPropagation(),i.onInsert(e.path,0)},children:o.jsx(zo,{})}),o.jsx("button",{type:"button",className:"abc-group-boundary-add is-end nodrag nopan","aria-label":n("buildCanvas.actions.addLast"),title:n("buildCanvas.actions.addLast"),onClick:f=>{f.stopPropagation(),i.onAdd(e.path)},children:o.jsx(zo,{})})]}),i&&e.path!==void 0&&u>0&&c==="parallel"&&o.jsxs("button",{type:"button",className:"abc-group-add abc-group-add-bottom nodrag nopan",onClick:f=>{f.stopPropagation(),i.onAdd(e.path)},children:[o.jsx(zo,{}),o.jsx("span",{children:d})]}),i&&e.path!==void 0&&u===0&&o.jsxs("button",{type:"button",className:"abc-group-add abc-group-add-empty nodrag nopan",onClick:f=>{f.stopPropagation(),i.onAdd(e.path)},children:[o.jsx(zo,{}),o.jsx("span",{children:d})]}),i&&e.path!==void 0&&e.path.length>0&&o.jsx("button",{type:"button",className:"abc-node-delete nodrag nopan","aria-label":n("buildCanvas.actions.deleteNamed",{name:e.title}),title:n("buildCanvas.actions.deleteNode"),onClick:f=>{f.stopPropagation(),i==null||i.onDelete(e.path)},children:o.jsx(ym,{})}),o.jsx(pl,{type:"source",position:a,className:"abc-handle"}),e.containedIn==="loop"&&o.jsxs(o.Fragment,{children:[o.jsx(pl,{id:"loop-target",type:"target",position:l,className:"abc-handle abc-loop-handle"}),o.jsx(pl,{id:"loop-source",type:"source",position:l,className:"abc-handle abc-loop-handle"})]})]})}function Lst({data:e}){const t=p.useContext(GR);return o.jsxs("div",{className:"abc-terminal",children:[o.jsx(pl,{type:"target",position:t==="vertical"?an.Top:an.Left,className:"abc-handle"}),o.jsx("span",{children:e.title}),o.jsx(pl,{type:"source",position:t==="vertical"?an.Bottom:an.Right,className:"abc-handle"})]})}const $st={agent:Dst,group:Mst,terminal:Lst},Fst={insertStep:Pst};function Bst({draft:e,selectedPath:t,onSelect:n,onAdd:i,onInsert:r,onDelete:s,readOnly:a=!1,interactivePreview:l=!1,direction:c="horizontal"}){const{t:u}=Ae("create"),d=p.useMemo(()=>qG(e,c,a,u),[]),[f,h,m]=Tnt(d.nodes),[g,b,v]=Ant(d.edges),y=Nnt(),x=p.useRef(`${c}:${a?"readonly":"editable"}:${HG(e)}`),O=p.useRef(null),{fitView:w}=VR(),k=p.useMemo(()=>qG(e,c,a,u),[c,e,a,u]),[S,E]=p.useState(()=>window.matchMedia("(max-width: 860px)").matches),C=p.useMemo(()=>a?{padding:.16,minZoom:.05,maxZoom:.9}:S?{padding:.08,minZoom:.35,maxZoom:.9}:{padding:.14,minZoom:.42,maxZoom:1.1},[S,a]),N=p.useCallback((j=0)=>{window.requestAnimationFrame(()=>{window.requestAnimationFrame(()=>{const A=O.current;if(A&&(A.clientWidth===0||A.clientHeight===0)&&j<8){N(j+1);return}w(C)})})},[C,w]);p.useEffect(()=>{const j=window.matchMedia("(max-width: 860px)"),A=L=>E(L.matches);return j.addEventListener("change",A),()=>j.removeEventListener("change",A)},[]),p.useEffect(()=>{const j=`${c}:${a?"readonly":"editable"}:${HG(e)}`,A=j!==x.current;x.current=j,b(k.edges),h(L=>{const _=new Map(L.map(P=>[P.id,P]));return k.nodes.map(P=>{const I=_.get(P.id);return{...P,measured:!A&&I&&I.type===P.type?I.measured:void 0,position:!A&&I?I.position:P.position,selected:P.data.kind==="agent"&&!!P.data.path&&Rst(P.data.path,t)}})}),A&&N()},[k,e,N,t,b,h]),p.useEffect(()=>{N()},[S,N]),p.useEffect(()=>{y&&N()},[k,N,y]),p.useEffect(()=>{if(!a||!O.current)return;const j=new ResizeObserver(()=>N());return j.observe(O.current),N(),()=>j.disconnect()},[N,a]);const T=p.useMemo(()=>a?null:{onAdd:i,onInsert:r,onDelete:s},[i,s,r,a]);return o.jsx(GR.Provider,{value:c,children:o.jsx(KR.Provider,{value:T,children:o.jsx("section",{className:`abc-root is-${c}${a?" is-readonly":""}`,"aria-label":u(a?"buildCanvas.readOnlyLabel":"buildCanvas.label"),children:o.jsx("div",{ref:O,className:"abc-canvas",children:o.jsxs(knt,{nodes:f,edges:g,nodeTypes:$st,edgeTypes:Fst,onNodesChange:m,onEdgesChange:v,onNodeClick:(j,A)=>{!a&&A.data.kind==="agent"&&A.data.path&&n(A.data.path)},nodesDraggable:!a,nodesConnectable:!1,nodesFocusable:!a,elementsSelectable:!a,edgesFocusable:!1,edgesReconnectable:!1,panOnDrag:!a||l,zoomOnDoubleClick:l,zoomOnPinch:!a||l,zoomOnScroll:!a||l,fitView:!0,fitViewOptions:C,onInit:()=>N(),minZoom:a?.05:.35,maxZoom:1.6,proOptions:{hideAttribution:!0},ariaLabelConfig:{"controls.ariaLabel":u("buildCanvas.controls.ariaLabel"),"controls.zoomIn.ariaLabel":u("buildCanvas.controls.zoomIn"),"controls.zoomOut.ariaLabel":u("buildCanvas.controls.zoomOut"),"controls.fitView.ariaLabel":u("buildCanvas.controls.fitView")},children:[o.jsx(Dnt,{gap:20,size:1.2,color:"hsl(34 20% 82%)"}),(!a||l)&&o.jsx(Qnt,{showInteractive:!1}),Nst]})})})})})}function US(e){return o.jsx(Gwe,{children:o.jsx(Bst,{...e})})}on.hasResourceBundle("en-US","create")||on.addResourceBundle("en-US","create",Ise,!0,!0);on.hasResourceBundle("zh-CN","create")||on.addResourceBundle("zh-CN","create",Xce,!0,!0);function Ft(e,t={}){return on.t(e,{...t,ns:"create"})}function dE(e,t){return e.map(n=>({...n,get label(){return Ft(`${t}.${n.id}.label`)},get desc(){return Ft(`${t}.${n.id}.description`)}}))}function Wc(e,t){const n={...e};for(const[i,r]of Object.entries(t))Object.defineProperty(n,i,{configurable:!0,enumerable:!0,get:()=>Ft(r)});return n}const COe="https://ark.cn-beijing.volces.com/api/v3/";Wc({key:"MODEL_AGENT_NAME",required:!1,placeholder:"doubao-seed-1-6-250615"},{comment:"traditional.catalog.env.modelAgentName.comment"});const v2=[Wc({key:"MODEL_EMBEDDING_NAME",required:!1,placeholder:"doubao-embedding-vision-250615"},{comment:"traditional.catalog.env.embeddingModelName.comment"}),{key:"MODEL_EMBEDDING_DIM",required:!1,placeholder:"2048"},{key:"MODEL_EMBEDDING_API_BASE",required:!1,placeholder:COe}],cN=[],uN={get label(){return Ft("traditional.catalog.links.console")},url:"https://console.volcengine.com/vikingdb/openviking"},Ust={get label(){return Ft("traditional.catalog.links.documentation")},url:"https://github.com/volcengine/OpenViking/blob/main/docs/zh/api/05-sessions.md"},TOe="https://api.vikingdb.cn-beijing.volces.com/openviking",Qst=`{ "self": {"enabled": true}, "peer": {"enabled": true}, "working_memory": {"enabled": true}, "memory_types": null -}`,Cst=[{key:"DATABASE_VIKING_PROJECT",required:!1,placeholder:"default"},{key:"DATABASE_VIKING_REGION",required:!1},{key:"DATABASE_VIKING_COLLECTION_KIND",required:!1},{key:"DATABASE_VIKING_RESOURCE_ID",required:!1}],Tst=[qc({key:"DATABASE_VIKINGMEM_PROJECT",required:!1,placeholder:"default",hidden:!0},{comment:"traditional.catalog.env.vikingMemoryProject.comment"}),qc({key:"DATABASE_VIKING_REGION",required:!1,hidden:!0},{comment:"traditional.catalog.env.vikingMemoryRegion.comment"}),qc({key:"DATABASE_VIKINGMEM_MEMORY_TYPE",required:!1,placeholder:"sys_event_v1,sys_profile_v1",hidden:!0},{comment:"traditional.catalog.env.vikingMemoryType.comment"})],Mw=[qc({key:"FEISHU_APP_ID",required:!0,placeholder:"cli_xxx"},{comment:"traditional.catalog.env.feishuAppId.comment"}),qc({key:"FEISHU_APP_SECRET",required:!0,secret:!0},{placeholder:"traditional.catalog.env.feishuAppSecret.placeholder",comment:"traditional.catalog.env.feishuAppSecret.comment"})],nv={topK:"3",region:"cn-beijing",endpoint:"https://open.volcengineapi.com/"};function VR(e){if(e==="byteplus"){const t="ap-southeast-1";return{topK:nv.topK,region:t,endpoint:`https://agentkit.${t}.byteplusapi.com/`}}return nv}const mOe=[qc({key:"REGISTRY_SPACE_ID",required:!0},{placeholder:"traditional.catalog.env.registrySpaceId.placeholder",comment:"traditional.catalog.env.registrySpaceId.comment"}),qc({key:"REGISTRY_TOP_K",required:!1,placeholder:nv.topK},{comment:"traditional.catalog.env.registryTopK.comment"}),qc({key:"REGISTRY_REGION",required:!1,placeholder:nv.region},{comment:"traditional.catalog.env.registryRegion.comment"}),qc({key:"REGISTRY_ENDPOINT",required:!1,placeholder:nv.endpoint},{comment:"traditional.catalog.env.registryEndpoint.comment"})],Bx=oE([{id:"web_search",importLine:"from veadk.tools.builtin_tools.web_search import web_search",toolNames:["web_search"],env:rN},{id:"parallel_web_search",importLine:"from veadk.tools.builtin_tools.parallel_web_search import parallel_web_search",toolNames:["parallel_web_search"],env:rN},{id:"link_reader",importLine:"from veadk.tools.builtin_tools.link_reader import link_reader",toolNames:["link_reader"],env:[]},{id:"web_scraper",importLine:"from veadk.tools.builtin_tools.web_scraper import web_scraper",toolNames:["web_scraper"],env:[{key:"TOOL_WEB_SCRAPER_ENDPOINT",required:!0},{key:"TOOL_WEB_SCRAPER_API_KEY",required:!0}]},{id:"image_generate",importLine:"from veadk.tools.builtin_tools.image_generate import image_generate",toolNames:["image_generate"],env:[{key:"MODEL_IMAGE_NAME",required:!1,placeholder:"doubao-seedream-5-0-260128"}]},{id:"image_edit",importLine:"from veadk.tools.builtin_tools.image_edit import image_edit",toolNames:["image_edit"],env:[{key:"MODEL_EDIT_NAME",required:!1,placeholder:"doubao-seededit-3-0-i2i-250628"}]},{id:"video_generate",importLine:"from veadk.tools.builtin_tools.video_generate import video_generate, video_task_query",toolNames:["video_generate","video_task_query"],env:[{key:"MODEL_VIDEO_NAME",required:!1,placeholder:"doubao-seedance-2-0-260128"}]},{id:"text_to_speech",importLine:"from veadk.tools.builtin_tools.tts import text_to_speech",toolNames:["text_to_speech"],env:[{key:"TOOL_VESPEECH_APP_ID",required:!0},{key:"TOOL_VESPEECH_SPEAKER",required:!1,placeholder:"zh_female_vv_uranus_bigtts"}]},{id:"run_code",importLine:"from veadk.tools.builtin_tools.run_code import run_code",toolNames:["run_code"],env:[{key:"AGENTKIT_TOOL_ID",required:!0,placeholder:"t-xxxx",get comment(){return $t("traditional.catalog.env.agentKitToolId.comment")}},{key:"AGENTKIT_TOOL_REGION",required:!1,placeholder:"cn-beijing",get comment(){return $t("traditional.catalog.env.agentKitToolRegion.comment")}}]},{id:"vesearch",importLine:"from veadk.tools.builtin_tools.vesearch import vesearch",toolNames:["vesearch"],env:[{key:"TOOL_VESEARCH_ENDPOINT",required:!0,comment:"VeSearch bot_id"}]}],"traditional.catalog"),Ast=new Set(["web_scraper","text_to_speech","vesearch"]),_st=new Set(["web_search","parallel_web_search"]),Nst=Bx.filter(e=>!Ast.has(e.id));function gOe(e="volcengine"){const t=e==="byteplus"?_st:new Set;return Nst.filter(n=>!t.has(n.id))}const iv=oE([{id:"local",env:[]},{id:"sqlite",extraArgs:'local_database_path="./short_term_memory.db"',env:[]},{id:"mysql",env:[{key:"DATABASE_MYSQL_HOST",required:!0},{key:"DATABASE_MYSQL_USER",required:!0},{key:"DATABASE_MYSQL_PASSWORD",required:!0},{key:"DATABASE_MYSQL_DATABASE",required:!0}]},{id:"postgresql",env:[{key:"DATABASE_POSTGRESQL_HOST",required:!0},{key:"DATABASE_POSTGRESQL_PORT",required:!1,placeholder:"5432"},{key:"DATABASE_POSTGRESQL_USER",required:!0},{key:"DATABASE_POSTGRESQL_PASSWORD",required:!0},{key:"DATABASE_POSTGRESQL_DATABASE",required:!0}]}],"traditional.backends.shortTerm"),v6=oE([{id:"local",env:pA,pipExtra:"extensions",needsEmbedding:!0},{id:"opensearch",env:[{key:"DATABASE_OPENSEARCH_HOST",required:!0},{key:"DATABASE_OPENSEARCH_PORT",required:!1,placeholder:"9200"},{key:"DATABASE_OPENSEARCH_USERNAME",required:!0},{key:"DATABASE_OPENSEARCH_PASSWORD",required:!0},...pA],pipExtra:"extensions",needsEmbedding:!0},{id:"redis",env:[{key:"DATABASE_REDIS_HOST",required:!0},{key:"DATABASE_REDIS_PORT",required:!1,placeholder:"6379"},{key:"DATABASE_REDIS_PASSWORD",required:!1},...pA],pipExtra:"extensions",needsEmbedding:!0},{id:"viking",env:Tst},{id:"openviking",env:[{key:"DATABASE_OPENVIKING_URL",required:!0,placeholder:pOe,get comment(){return $t("traditional.catalog.env.openVikingUrl.comment")},link:sN},{key:"DATABASE_OPENVIKING_API_KEY",required:!0,comment:"OpenViking API Key",link:sN},{key:"DATABASE_OPENVIKING_USER_ID",required:!1,placeholder:"default",get comment(){return $t("traditional.catalog.env.openVikingMemoryUserId.comment")},get help(){return $t("traditional.catalog.env.openVikingMemoryUserId.help")}},{key:"DATABASE_OPENVIKING_MEMORY_POLICY",required:!1,placeholder:Est,get comment(){return $t("traditional.catalog.env.openVikingMemoryPolicy.comment")},multiline:!0,format:"json",get help(){return $t("traditional.catalog.env.openVikingMemoryPolicy.help")},link:kst}]},{id:"mem0",env:[{key:"DATABASE_MEM0_API_KEY",required:!0},{key:"DATABASE_MEM0_BASE_URL",required:!1}],pipExtra:"database"}],"traditional.backends.longTerm"),nm="viking",x6=oE([{id:"viking",env:Cst},{id:"opensearch",env:[{key:"DATABASE_OPENSEARCH_HOST",required:!0},{key:"DATABASE_OPENSEARCH_PORT",required:!1,placeholder:"9200"},{key:"DATABASE_OPENSEARCH_USERNAME",required:!0},{key:"DATABASE_OPENSEARCH_PASSWORD",required:!0},...pA],pipExtra:"extensions",needsEmbedding:!0},{id:"context_search",env:[...rN,{key:"DATABASE_CONTEXT_SEARCH_ENGINE_ID",required:!0},{key:"DATABASE_CONTEXT_SEARCH_ENGINE_ENDPOINT",required:!0},{key:"DATABASE_CONTEXT_SEARCH_ENGINE_APIKEY",required:!0}]},{id:"openviking",env:[{key:"DATABASE_OPENVIKING_URL",required:!0,placeholder:pOe,get comment(){return $t("traditional.catalog.env.openVikingUrl.comment")},link:sN},{key:"DATABASE_OPENVIKING_API_KEY",required:!0,comment:"OpenViking API Key",link:sN},{key:"DATABASE_OPENVIKING_USER_ID",required:!1,placeholder:"default",get comment(){return $t("traditional.catalog.env.openVikingKnowledgeUserId.comment")},get help(){return $t("traditional.catalog.env.openVikingKnowledgeUserId.help")}},{key:"DATABASE_OPENVIKING_TARGET_URI",required:!1,placeholder:"viking://user/default/resources//",get comment(){return $t("traditional.catalog.env.openVikingTargetUri.comment")},get help(){return $t("traditional.catalog.env.openVikingTargetUri.help")}}]}],"traditional.backends.knowledge"),jst=oE([{id:"apmplus",enableFlag:"ENABLE_APMPLUS",env:[{key:"OBSERVABILITY_OPENTELEMETRY_APMPLUS_SERVICE_NAME",required:!1}]},{id:"cozeloop",enableFlag:"ENABLE_COZELOOP",env:[{key:"OBSERVABILITY_OPENTELEMETRY_COZELOOP_API_KEY",required:!0},{key:"OBSERVABILITY_OPENTELEMETRY_COZELOOP_SERVICE_NAME",required:!1,comment:"CozeLoop space_id"}]},{id:"tls",enableFlag:"ENABLE_TLS",env:[...rN,qc({key:"OBSERVABILITY_OPENTELEMETRY_TLS_SERVICE_NAME",required:!1},{comment:"traditional.catalog.env.tlsServiceName.comment"})]}],"traditional.exporters");function oc(e="volcengine"){return{name:"",description:$t("defaults.description"),instruction:$t("defaults.instruction"),dynamicAgentDelegation:!1,agentType:"llm",cloudProvider:e,maxIterations:3,a2aUrl:"",tools:[],skills:[],memory:{shortTerm:!1,longTerm:!1},knowledgebase:!1,tracing:!1,subAgents:[],builtinTools:[],customTools:[],mcpTools:[],a2aRegistry:{enabled:!1,registrySpaceId:"",registryTopK:"",registryRegion:"",registryEndpoint:""},modelName:wh(e),modelSource:"ark",modelProvider:"",modelApiBase:"",shortTermBackend:"local",longTermBackend:"local",longTermMemoryIndex:"",autoSaveSession:!1,knowledgebaseBackend:nm,knowledgebaseIndex:"",tracingExporters:[],selectedSkills:[],cloudEnvironment:{environmentId:"",environmentVersionId:""},deployment:{feishuEnabled:!1,modelApiKeyId:"",modelApiKeyName:""}}}function Q1(e){return{id:e,get displayName(){return $t(`traditional.optimization.options.${e}.label`)},get description(){return $t(`traditional.optimization.options.${e}.description`)}}}const wB=[Q1("context_engine"),Q1("compressor"),Q1("verifier"),Q1("long_run_control"),Q1("mcp_resilience")],Rst=[{id:"quality",get displayName(){return $t("traditional.optimization.groups.quality")},componentIds:["context_engine","verifier"]},{id:"cost",get displayName(){return $t("traditional.optimization.groups.cost")},componentIds:["compressor"]},{id:"stability",get displayName(){return $t("traditional.optimization.groups.stability")},componentIds:["long_run_control","mcp_resilience"]}],Ux=wB.map(e=>e.id);function Ist(e){return e==="byteplus"?$t("traditional.optimization.bytePlusUnavailable"):null}const bOe=["context_engine","compressor","verifier","long_run_control"],Pst=new Set(["1","true","yes","on"]),OB=[{id:"default",get displayName(){return $t("traditional.optimization.profiles.default.label")},get description(){return $t("traditional.optimization.profiles.default.description")},defaultComponents:[],autoAddedComponents:[]},{id:"ops",get displayName(){return $t("traditional.optimization.profiles.ops.label")},get description(){return $t("traditional.optimization.profiles.ops.description")},defaultComponents:["context_engine","verifier","long_run_control","mcp_resilience"],autoAddedComponents:["sql_readonly"]}];function mA(e){var t;return((t=wB.find(n=>n.id===e))==null?void 0:t.displayName)??e}function Dst(e){var t;return((t=OB.find(n=>n.id===e))==null?void 0:t.displayName)??e}function SB(e){const t=OB.find(n=>n.id===e);return t?[...t.defaultComponents]:[]}function Lg(e,t="default"){const n=new Set(e);return{enabled:n.size>0,profile:t,componentOverrides:Object.fromEntries(Ux.map(r=>[r,n.has(r)]))}}function kB(e){if(!e)return;const t=e.profile==="ops"?"ops":"default",n=t==="ops"?SB(t):Ux.filter(i=>{var r;return((r=e.componentOverrides)==null?void 0:r[i])===!0});return{...Lg(n,t),...e.catalogVersion?{catalogVersion:e.catalogVersion}:{},...e.planHash?{planHash:e.planHash}:{}}}function mM(e){return Pst.has((e==null?void 0:e.trim().toLowerCase())??"")}function Mst(e){if(!e)return null;try{const t=JSON.parse(e);return t&&typeof t=="object"&&!Array.isArray(t)?t:null}catch{return null}}function Lst(e){var a;const t=new Map((e==null?void 0:e.map(({key:l,value:c})=>[l,c]))??[]),n=t.get("HARNESS_SIDECAR_ENABLED");if(n===void 0)return null;const i=((a=t.get("HARNESS_PROFILE"))==null?void 0:a.trim())==="ops"?"ops":"default";if(!mM(n))return Lg([],i);const r=Mst(t.get("HARNESS_SIDECAR_COMPONENT_OVERRIDES"));if(r){const l={...Lg(Ux.filter(c=>r[c]===!0),i),enabled:!0};return i==="ops"?kB(l)??l:l}if(i==="ops")return Lg(SB(i),i);const s=[...mM(t.get("HARNESS_MODEL_PROXY_ENABLED"))?bOe:[],...mM(t.get("HARNESS_MCP_GATEWAY_ENABLED"))?["mcp_resilience"]:[]];return{...Lg(s,i),enabled:!0}}function $st(e,t){return{...e,modelName:t.modelName||e.modelName,description:t.description,instruction:t.instruction}}function Fst(e){var t;return((t=e.harnessSidecar)==null?void 0:t.profile)??"default"}function aN(e){var n;const t=(n=e.harnessSidecar)==null?void 0:n.componentOverrides;return t?Ux.filter(i=>t[i]):[]}function Bst(e){const t=new Set(aN(e));return bOe.filter(n=>t.has(n))}function Ust(e,t){const n=i=>({...i,mcpTools:(i.mcpTools??[]).map(r=>{var a,l;const s=!!(r.authTokenEnv&&(t.has(r.authTokenEnv)||r.authToken));return{...r,credentialConfigured:s,...s?{credentialSourceUrl:((a=r.url)==null?void 0:a.trim())??"",credentialSourceAuthTokenEnv:((l=r.authTokenEnv)==null?void 0:l.trim())??""}:{}}}),subAgents:i.subAgents.map(n),...i.workflow?{workflow:{...i.workflow,nodes:i.workflow.nodes.map(r=>({...r,agent:n(r.agent)}))}}:{}});return n(e)}function Yb(e){const t=(e==null?void 0:e.trim())??"",n=t.indexOf("/");return n<=0||n===t.length-1?{modelName:t,modelProvider:""}:{modelName:t.slice(n+1),modelProvider:t.slice(0,n)}}function EB(e){return Yb(e).modelName}function yOe(e,t,n,i=!1){var c,u,d,f;const r=Yb((t==null?void 0:t.model)||(n==null?void 0:n.model)),s=(t==null?void 0:t.children)??[],a=t==null?void 0:t.type,l=e.agentType==="a2a"&&((c=e.a2aRegistry)!=null&&c.enabled)&&a==="llm"?"a2a":a??e.agentType;return{...e,name:((u=t==null?void 0:t.name)==null?void 0:u.trim())||((d=n==null?void 0:n.name)==null?void 0:d.trim())||e.name,description:(t==null?void 0:t.description)??e.description,instruction:i?e.instruction:(t==null?void 0:t.instruction)??e.instruction,agentType:l,modelName:r.modelName||e.modelName,modelProvider:r.modelProvider||e.modelProvider,skills:((f=t==null?void 0:t.skills)==null?void 0:f.map(h=>h.name))??e.skills,subAgents:e.subAgents.map((h,m)=>yOe(h,s[m],void 0,i))}}function Qst(e,t){const n=new Map(t.map(({key:a,value:l})=>[a,l]));if(!["REGISTRY_SPACE_ID","REGISTRY_TOP_K","REGISTRY_REGION","REGISTRY_ENDPOINT"].some(a=>n.has(a)))return e;const r=(a,l)=>n.has(a)?n.get(a)??"":l??"",s=a=>{var l;return{...a,...(l=a.a2aRegistry)!=null&&l.enabled?{a2aRegistry:{...a.a2aRegistry,registrySpaceId:r("REGISTRY_SPACE_ID",a.a2aRegistry.registrySpaceId),registryTopK:r("REGISTRY_TOP_K",a.a2aRegistry.registryTopK),registryRegion:r("REGISTRY_REGION",a.a2aRegistry.registryRegion),registryEndpoint:r("REGISTRY_ENDPOINT",a.a2aRegistry.registryEndpoint)}}:{},subAgents:a.subAgents.map(s)}};return s(e)}function w6(e,t){var c,u,d;const n=e.cloudProvider??t,i=oc(n),r=e.deployment,s=r==null?void 0:r.network,a=e.cloudEnvironment,l=e.a2aRegistry;return{...i,...e,name:e.name??i.name,description:e.description??i.description,instruction:e.instruction??i.instruction,agentType:e.agentType??i.agentType,cloudProvider:n,maxIterations:e.maxIterations??i.maxIterations,a2aUrl:e.a2aUrl??i.a2aUrl,model:e.model??void 0,modelSource:e.modelSource==="ark"||e.modelSource==="custom"?e.modelSource:void 0,modelName:e.modelName??i.modelName,modelProvider:e.modelProvider??i.modelProvider,modelApiBase:e.modelApiBase??i.modelApiBase,memory:{shortTerm:((c=e.memory)==null?void 0:c.shortTerm)??i.memory.shortTerm,longTerm:((u=e.memory)==null?void 0:u.longTerm)??i.memory.longTerm},tools:[...e.tools??[]],skills:[...e.skills??[]],knowledgebase:e.knowledgebase??i.knowledgebase,tracing:e.tracing??i.tracing,harnessSidecar:kB(e.harnessSidecar),subAgents:(e.subAgents??[]).map(f=>w6(f,n)),builtinTools:[...e.builtinTools??[]],customTools:[...e.customTools??[]],mcpTools:[...e.mcpTools??[]],a2aRegistry:{...i.a2aRegistry,...l??{},enabled:(l==null?void 0:l.enabled)??!1,registrySpaceId:(l==null?void 0:l.registrySpaceId)??"",registryTopK:(l==null?void 0:l.registryTopK)??"",registryRegion:(l==null?void 0:l.registryRegion)??"",registryEndpoint:(l==null?void 0:l.registryEndpoint)??""},shortTermBackend:e.shortTermBackend??i.shortTermBackend,longTermBackend:e.longTermBackend??i.longTermBackend,longTermMemoryIndex:e.longTermMemoryIndex??i.longTermMemoryIndex,autoSaveSession:e.autoSaveSession??i.autoSaveSession,knowledgebaseBackend:e.knowledgebaseBackend??i.knowledgebaseBackend,knowledgebaseIndex:e.knowledgebaseIndex??i.knowledgebaseIndex,tracingExporters:[...e.tracingExporters??[]],selectedSkills:[...e.selectedSkills??[]],cloudEnvironment:{...i.cloudEnvironment,...a??{},cliTools:[...(a==null?void 0:a.cliTools)??[]],dockerfile:typeof(a==null?void 0:a.dockerfile)=="string"?a.dockerfile:void 0},deployment:{...i.deployment,...r??{},feishuEnabled:(r==null?void 0:r.feishuEnabled)??!1,runtimeName:(r==null?void 0:r.runtimeName)??void 0,runtimeNameCustomized:(r==null?void 0:r.runtimeNameCustomized)??((d=i.deployment)==null?void 0:d.runtimeNameCustomized),network:s?{...s,vpcId:s.vpcId??"",subnetIds:s.subnetIds??"",enableSharedInternetAccess:s.enableSharedInternetAccess??!1}:void 0,modelApiKeyId:(r==null?void 0:r.modelApiKeyId)??"",modelApiKeyName:(r==null?void 0:r.modelApiKeyName)??"",envValues:(r==null?void 0:r.envValues)??void 0},...e.workflow?{workflow:{...e.workflow,nodes:e.workflow.nodes.map(f=>({...f,agent:w6(f.agent,n)}))}}:{}}}const zst=["动态子智能体协作规则:","Dynamic sub-agent collaboration rules:"],Vst=["collect_resources","create_agents","handoff_to"];function Hst(e){return e.replace(/\\([\\`*_[\]{}()<>#+\-.!|])/g,"$1")}function qst(e){const t=zst.flatMap(i=>{const r=[];let s=0;for(;si-r),n=t.find((i,r)=>{const s=t[r+1]??e.length,a=Hst(e.slice(i,s));return Vst.every(l=>a.includes(l))});return n===void 0?e:e.slice(0,n).trimEnd()}function Wst(e){const t=n=>({...n,instruction:n.dynamicAgentDelegation===!0?qst(n.instruction):n.instruction,subAgents:n.subAgents.map(t),...n.workflow?{workflow:{...n.workflow,nodes:n.workflow.nodes.map(i=>({...i,agent:t(i.agent)}))}}:{}});return t(e)}function vOe(e,t){var l,c;const n=oc(t),i=[...e.tools??[]],r=Bx.filter(u=>u.toolNames.some(d=>i.includes(d))),s=new Set(r.flatMap(u=>u.toolNames)),a=Yb(e.model);return{...n,modelSource:void 0,name:((l=e.name)==null?void 0:l.trim())??"",description:e.description??"",instruction:e.instruction||n.instruction,agentType:e.type??"llm",modelName:a.modelName,modelProvider:a.modelProvider,tools:i.filter(u=>!s.has(u)),builtinTools:r.map(u=>u.id),skills:((c=e.skills)==null?void 0:c.map(u=>u.name))??[],subAgents:(e.children??[]).map(u=>vOe(u,t))}}function CB(e,t,n=[]){var l,c,u,d;const i=((l=e.draft)==null?void 0:l.cloudProvider)??t,r=Yb(e.model),s=e.draft?w6(e.draft,i):e.graph?vOe(e.graph,i):{...oc(i),modelSource:void 0,name:((c=e.name)==null?void 0:c.trim())||e.appName.trim(),description:e.description??"",instruction:e.instruction||oc(i).instruction,agentType:e.type??"llm",modelName:r.modelName,modelProvider:r.modelProvider,tools:[...e.tools??[]],skills:((u=e.skills)==null?void 0:u.map(f=>f.name))??[]},a=e.draft&&s.dynamicAgentDelegation===!0?Wst(s):s;return Ust(yOe(a,e.graph,{name:((d=e.name)==null?void 0:d.trim())||e.appName.trim(),model:e.model},!!e.draft),new Set(n))}function Gst(e,t){const n=i=>{var s;const r=((s=i.modelName)==null?void 0:s.trim())??"";return{...i,modelSource:i.agentType==="llm"||!i.agentType?t.has(r)?"ark":"custom":i.modelSource,subAgents:i.subAgents.map(n),...i.workflow?{workflow:{...i.workflow,nodes:i.workflow.nodes.map(a=>({...a,agent:n(a.agent)}))}}:{}}};return n(e)}function $K({className:e="icon"}){return o.jsxs("svg",{className:e,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,children:[o.jsx("path",{d:"M4.5 6.7h4.2M12.3 6.7h7.2"}),o.jsx("path",{d:"M4.5 12h8.2M16.3 12h3.2"}),o.jsx("path",{d:"M4.5 17.3h2.7M10.8 17.3h8.7"}),o.jsx("circle",{cx:"10.5",cy:"6.7",r:"1.8",fill:"currentColor",stroke:"none"}),o.jsx("circle",{cx:"14.5",cy:"12",r:"1.8",fill:"currentColor",stroke:"none"}),o.jsx("circle",{cx:"9",cy:"17.3",r:"1.8",fill:"currentColor",stroke:"none"})]})}const Kst={coding:"studioTools.labels.coding",get_city_weather:"studioTools.labels.get_city_weather",get_location_weather:"studioTools.labels.get_location_weather",web_fetch:"studioTools.labels.web_fetch"};function xOe(e,t){const n=Bx.find(r=>r.id===e||r.toolNames.includes(e)),i=Kst[e];return i?t(i):(n==null?void 0:n.label)??e}function Xst(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m7 7 10 10M17 7 7 17",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})})}function Yst(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:[o.jsx("circle",{cx:"10.8",cy:"10.8",r:"5.8",stroke:"currentColor",strokeWidth:"1.7"}),o.jsx("path",{d:"m15.2 15.2 4 4",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})]})}function Zst({agentName:e,tools:t,selectedIds:n,loading:i,disabled:r,unavailableReason:s,onChange:a,onClose:l}){const{t:c}=Te("workspaceTools"),[u,d]=p.useState(""),f=p.useMemo(()=>new Set(n),[n]),h=p.useRef(`studio-tool-${Math.random().toString(36).slice(2)}`),m=p.useMemo(()=>{const b=u.trim().toLowerCase();return b?t.filter(v=>`${v.name} ${v.id} ${v.description}`.toLowerCase().includes(b)):t},[u,t]);p.useEffect(()=>{const b=document.body.style.overflow;document.body.style.overflow="hidden";const v=y=>{y.key==="Escape"&&l()};return document.addEventListener("keydown",v),()=>{document.removeEventListener("keydown",v),document.body.style.overflow=b}},[l]);const g=b=>{const v=new Set(f);v.has(b)?v.delete(b):v.add(b),a([...v])};return Li.createPortal(o.jsxs("div",{className:"studio-tool-dialog-layer",children:[o.jsx("button",{type:"button",className:"studio-tool-dialog-scrim","aria-label":c("studioTools.closeDialog"),onClick:l}),o.jsxs("section",{className:"studio-tool-dialog",role:"dialog","aria-modal":"true","aria-labelledby":h.current,children:[o.jsxs("header",{className:"studio-tool-dialog-head",children:[o.jsx("span",{className:"studio-tool-dialog-mark",children:o.jsx($K,{})}),o.jsxs("div",{children:[o.jsx("h2",{id:h.current,children:c("studioTools.title")}),o.jsx("p",{children:c("studioTools.description",{agentName:e})})]}),o.jsx("button",{type:"button",className:"studio-tool-dialog-close","aria-label":c("studioTools.close"),onClick:l,children:o.jsx(Xst,{})})]}),o.jsxs("div",{className:"studio-tool-dialog-body",children:[o.jsxs("label",{className:"studio-tool-search",children:[o.jsx(Yst,{}),o.jsx("input",{value:u,"aria-label":c("studioTools.searchAria"),placeholder:c("studioTools.searchPlaceholder"),autoFocus:!0,onChange:b=>d(b.target.value)})]}),o.jsx("div",{className:"studio-tool-picker",role:"list","aria-label":c("studioTools.availableAria"),children:i?o.jsx("div",{className:"studio-tool-empty",children:c("studioTools.loading")}):s?o.jsx("div",{className:"studio-tool-empty",children:s}):m.length===0?o.jsx("div",{className:"studio-tool-empty",children:c("studioTools.noMatch")}):m.map(b=>{const v=f.has(b.id);return o.jsxs("article",{className:"studio-tool-option",role:"listitem",children:[o.jsx("span",{className:"studio-tool-option-icon",children:o.jsx($K,{})}),o.jsxs("span",{className:"studio-tool-option-copy",children:[o.jsx("strong",{children:b.name||xOe(b.id,c)}),o.jsx("code",{children:b.id}),o.jsx("span",{children:b.description})]}),o.jsx("button",{type:"button",disabled:r,"aria-pressed":v,onClick:()=>g(b.id),children:c(v?"studioTools.remove":"studioTools.add")})]},b.id)})})]})]})]}),document.body)}function xn({as:e="span",className:t="",duration:n=4,spread:i=20,children:r,style:s,...a}){const l=Math.min(Math.max(i,5),45);return o.jsx(e,{className:`text-shimmer${t?` ${t}`:""}`,style:{...s,backgroundImage:`linear-gradient(to right, hsl(var(--muted-foreground)) ${50-l}%, hsl(var(--foreground)) 50%, hsl(var(--muted-foreground)) ${50+l}%)`,animationDuration:`${n}s`},...a,children:r})}const oN=[{id:"ubuntu-22.04",label:"Ubuntu 22.04",image:"ubuntu:22.04"},{id:"ubuntu-24.04",label:"Ubuntu 24.04",image:"ubuntu:24.04"}],wOe=[{id:"aio-sandbox",label:"AIO Sandbox",description:"内置 Sandbox Shell 能力 · Ubuntu 22.04"},{id:"codex-sandbox",label:"Codex Sandbox",description:"内置 Codex CLI、浏览器与代码执行环境"},{id:"ubuntu",label:"Ubuntu",description:"标准 Linux 基础镜像"}],TB="agentkit-cli-2107625663-cn-beijing.cr.volces.com/agentkit/agent-native-requirements-aio:0.2.1-20260831",OOe={volcengine:"enterprise-public-cn-beijing.cr.volces.com/vefaas-public/codexenv:1.1.0",byteplus:"enterprise-public-ap-southeast-1.cr.volces.com/vefaas-public/codexenv:1.1.0"},SOe=[{id:"python-3.10",label:"Python 3.10"},{id:"python-3.12",label:"Python 3.12"}],Jst={"python-3.10":"3.10.18","python-3.12":"3.12.11"},AB=[{id:"tools",label:"工具",description:"常用 CLI 与内容处理工具",options:[{id:"lark-cli",label:"lark-cli",description:"飞书开放平台命令行工具",installer:"pip",packageName:"lark-cli"},{id:"pandoc",label:"pandoc",description:"文档格式转换工具",installer:"apt",packageName:"pandoc"},{id:"opencli",label:"opencli",description:"将网站与桌面应用转换为命令行工具",installer:"npm",packageName:"@jackwener/opencli@1.8.7"}]},{id:"productivity",label:"效率",description:"加速依赖安装、检索和协作",options:[{id:"uv",label:"uv",description:"快速 Python 包与项目管理器",installer:"pip",packageName:"uv"},{id:"ripgrep",label:"ripgrep",description:"高性能文本检索工具",installer:"apt",packageName:"ripgrep"},{id:"jq",label:"jq",description:"JSON 查询与转换工具",installer:"apt",packageName:"jq"},{id:"github-cli",label:"GitHub CLI",description:"在终端中管理 GitHub 工作流",installer:"apt",packageName:"gh"}]},{id:"browser",label:"浏览器自动化",description:"网页操作、测试与内容采集",options:[{id:"playwright",label:"Playwright",description:"浏览器自动化与端到端测试",installer:"pip",packageName:"playwright"},{id:"chromium",label:"Chromium",description:"无头浏览器运行时",installer:"apt",packageName:"chromium"}]},{id:"system",label:"系统与媒体",description:"基础开发、网络和媒体处理能力",options:[{id:"git",label:"Git",description:"代码版本管理",installer:"apt",packageName:"git"},{id:"curl",label:"curl",description:"网络请求与文件下载",installer:"apt",packageName:"curl"},{id:"ffmpeg",label:"FFmpeg",description:"音视频转码与处理",installer:"apt",packageName:"ffmpeg"},{id:"imagemagick",label:"ImageMagick",description:"图片转换与批处理",installer:"apt",packageName:"imagemagick"}]}],eat=AB.flatMap(e=>e.options),tat=["build-essential","curl","libbz2-dev","libffi-dev","libgdbm-dev","liblzma-dev","libncursesw5-dev","libreadline-dev","libsqlite3-dev","libssl-dev","tk-dev","uuid-dev","zlib1g-dev"],nat=["xvfb","fonts-noto-color-emoji","fonts-unifont","libfontconfig1","libfreetype6","xfonts-cyrillic","xfonts-scalable","fonts-liberation","fonts-ipafont-gothic","fonts-wqy-zenhei","fonts-tlwg-loma-otf","fonts-freefont-ttf"],iat={"ubuntu-22.04":["libasound2","libatk-bridge2.0-0","libatk1.0-0","libatspi2.0-0","libcairo2","libcups2","libdbus-1-3","libdrm2","libgbm1","libglib2.0-0","libnspr4","libnss3","libpango-1.0-0","libwayland-client0","libx11-6","libxcb1","libxcomposite1","libxdamage1","libxext6","libxfixes3","libxkbcommon0","libxrandr2"],"ubuntu-24.04":["libasound2t64","libatk-bridge2.0-0t64","libatk1.0-0t64","libatspi2.0-0t64","libcairo2","libcups2t64","libdbus-1-3","libdrm2","libgbm1","libglib2.0-0t64","libnspr4","libnss3","libpango-1.0-0","libx11-6","libxcb1","libxcomposite1","libxdamage1","libxext6","libxfixes3","libxkbcommon0","libxrandr2"]};function z1(e,t){for(const n of t)e.includes(n)||e.push(n)}function rat(e,t,n,i,r){const s=["ca-certificates"];r||z1(s,i?[`python${n}`,`python${n}-venv`]:tat);for(const a of t)a.id==="playwright"||a.id==="chromium"||(a.installer==="apt"&&z1(s,[a.packageName]),a.id==="opencli"&&z1(s,["curl","xz-utils"]));return e.optionIds.some(a=>a==="playwright"||a==="chromium")&&(z1(s,nat),z1(s,iat[e.operatingSystem])),s}const gM={name:"",description:"",baseEnvironment:"aio-sandbox",operatingSystem:"ubuntu-22.04",language:"python-3.12",optionIds:[],selectedSkills:[]};function oh(e){var t;return((t=SOe.find(n=>n.id===e))==null?void 0:t.label)??e}function O6(e){var t;return((t=oN.find(n=>n.id===e))==null?void 0:t.label)??e}function S6(e){var t;return((t=wOe.find(n=>n.id===e))==null?void 0:t.label)??e}function sat(e){var n;const t=((n=e.match(/^\s*FROM\s+(.+)$/im))==null?void 0:n[1])??"";return{baseEnvironment:/\/codexenv:/i.test(t)?"codex-sandbox":/aio\.sandbox/i.test(e)?"aio-sandbox":"ubuntu",operatingSystem:/ubuntu:24\.04/i.test(t)?"ubuntu-24.04":"ubuntu-22.04"}}function _B(e,t="volcengine"){const n=eat.filter(b=>e.optionIds.includes(b.id)),i=e.baseEnvironment==="aio-sandbox",r=e.baseEnvironment==="codex-sandbox",s=i||r,a=s?"python-3.12":e.language,l=a.replace("python-",""),c=Jst[a],u=oN.find(b=>b.id===e.operatingSystem)??oN[0],d=e.operatingSystem==="ubuntu-22.04"&&l==="3.10"||e.operatingSystem==="ubuntu-24.04"&&l==="3.12",f=rat(e,n,l,d,s),h=i?[`ARG AIO_BASE_IMAGE=${TB}`,"ARG AIO_BASE_PLATFORM=linux/amd64","",`# Base environment: AIO Sandbox (${u.label})`,"FROM --platform=${AIO_BASE_PLATFORM} ${AIO_BASE_IMAGE}"]:r?[`ARG CODEX_BASE_IMAGE=${OOe[t]}`,"ARG CODEX_BASE_PLATFORM=linux/amd64","","# Base environment: Codex Sandbox","FROM --platform=${CODEX_BASE_PLATFORM} ${CODEX_BASE_IMAGE}"]:[`# Operating system: ${u.label}`,`FROM ${u.image}`];h.push("","ARG DEBIAN_FRONTEND=noninteractive","ARG APT_MIRROR_URL=http://archive.ubuntu.com/ubuntu","ARG PIP_INDEX_URL=https://pypi.org/simple","ARG PYTHON_SOURCE_BASE_URL=https://www.python.org/ftp/python","ARG PLAYWRIGHT_DOWNLOAD_HOST=https://cdn.playwright.dev","ARG PIP_DEFAULT_TIMEOUT=300","ARG PIP_RETRIES=10","","# Install all system dependencies in one transaction from the provider-local mirror.","RUN set -eux; \\",' mirror="${APT_MIRROR_URL%/}"; \\'," for source_file in /etc/apt/sources.list /etc/apt/sources.list.d/*.sources; do \\",' [ -f "$source_file" ] || continue; \\',' sed -i -E "s#https?://(archive|security).ubuntu.com/ubuntu/?#${mirror}#g" "$source_file"; \\'," done; \\",` printf 'Acquire::Retries "5";\\nAcquire::ForceIPv4 "true";\\nAcquire::http::Timeout "60";\\nAcquire::https::Timeout "60";\\n' > /etc/apt/apt.conf.d/80-veadk-network; \\`," apt-get update; \\"," apt-get install -y --no-install-recommends \\",...f.map(b=>" "+b+" \\")," ; rm -rf /var/lib/apt/lists/*","","ENV PYTHONDONTWRITEBYTECODE=1 \\"," PYTHONUNBUFFERED=1 \\"," PIP_NO_CACHE_DIR=1","",`# Python ${l}`),i?h.push("# Keep Studio dependencies isolated from AIO's system interpreter.","RUN /opt/python3.12/bin/python -m venv /opt/veadk-environment/.venv","","ENV VIRTUAL_ENV=/opt/veadk-environment/.venv \\"," BASH_VENV_PATH=/opt/veadk-environment/.venv \\",' PATH="/opt/veadk-environment/.venv/bin:$PATH"'):r?h.push("# Keep Studio dependencies isolated from the Codex runtime.","RUN python3 -m venv /opt/veadk-environment/.venv","","ENV VIRTUAL_ENV=/opt/veadk-environment/.venv \\",' PATH="/opt/veadk-environment/.venv/bin:$PATH"'):d?h.push(`RUN python${l} -m venv /opt/venv`):h.push(`RUN curl --retry 5 --retry-all-errors --connect-timeout 30 -fsSL "\${PYTHON_SOURCE_BASE_URL}/${c}/Python-${c}.tgz" -o /tmp/python.tgz \\`," && mkdir -p /tmp/python-source \\"," && tar -xzf /tmp/python.tgz --strip-components=1 -C /tmp/python-source \\"," && cd /tmp/python-source \\"," && ./configure --prefix=/opt/python --with-ensurepip=install \\",' && make -j"$(nproc)" \\'," && make install \\",` && /opt/python/bin/python${l} -m venv /opt/venv \\`," && rm -rf /tmp/python-source /tmp/python.tgz"),s||h.push("",'ENV PATH="/opt/venv/bin:$PATH"');const m=new Set(e.optionIds);(m.has("playwright")||m.has("chromium"))&&h.push("","ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright \\"," PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT=300000"),h.push("","WORKDIR /workspace","","# VeADK","RUN python -m pip install --upgrade veadk-python");let g=!1;for(const b of n)h.push("",`# ${b.label}`),b.id==="opencli"?h.push('RUN node_arch="$(dpkg --print-architecture)" \\',' && case "$node_arch" in amd64) node_arch=x64 ;; arm64) node_arch=arm64 ;; *) echo "Unsupported architecture: $node_arch" >&2; exit 1 ;; esac \\',' && curl --retry 5 --connect-timeout 30 -fsSL "https://nodejs.org/dist/v22.18.0/node-v22.18.0-linux-${node_arch}.tar.xz" -o /tmp/node.tar.xz \\'," && tar -xJf /tmp/node.tar.xz -C /usr/local --strip-components=1 \\",` && npm install --global ${b.packageName} \\`," && npm cache clean --force \\"," && rm -f /tmp/node.tar.xz"):b.id==="playwright"||b.id==="chromium"?g||(h.push("RUN python -m pip install --upgrade playwright"),h.push("RUN python -m playwright install chromium"),g=!0):b.installer!=="apt"&&h.push(`RUN python -m pip install --upgrade ${b.packageName}`);return i?h.push("","# Keep AIO's inherited /opt/gem/run.sh startup chain and shell API.","EXPOSE 8080"):r||h.push("",'CMD ["/bin/bash"]'),h.join(` -`)}function aat(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m7 7 10 10M17 7 7 17",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})})}function oat(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:[o.jsx("circle",{cx:"10.8",cy:"10.8",r:"5.8",stroke:"currentColor",strokeWidth:"1.7"}),o.jsx("path",{d:"m15.2 15.2 4 4",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})]})}function k6(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:[o.jsx("path",{d:"M5 7.25A2.25 2.25 0 0 1 7.25 5h9.5A2.25 2.25 0 0 1 19 7.25v9.5A2.25 2.25 0 0 1 16.75 19h-9.5A2.25 2.25 0 0 1 5 16.75v-9.5Z",stroke:"currentColor",strokeWidth:"1.6"}),o.jsx("path",{d:"M8.5 9.25 11 12l-2.5 2.75M12.75 14.75h2.75",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"})]})}function kOe(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:[o.jsx("path",{d:"M4.75 7.25A2.25 2.25 0 0 1 7 5h3l1.5 2h5.5a2.25 2.25 0 0 1 2.25 2.25v7.5A2.25 2.25 0 0 1 17 19H7a2.25 2.25 0 0 1-2.25-2.25v-9.5Z",stroke:"currentColor",strokeWidth:"1.6",strokeLinejoin:"round"}),o.jsx("path",{d:"M8 11.25h8M8 14.75h5.5",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round"})]})}function lat(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"M12 6.5v11M6.5 12h11",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})})}function FK(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m7 7 10 10M17 7 7 17",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})})}function BK(){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m3.5 8.25 2.75 2.75 6.25-6.25",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round"})})}function rl(e){return`${e.environment_id}\0${e.environment_version_id}`}function EO(e){return e.latestVersion?{environment_id:e.id,environment_version_id:e.latestVersion.versionId}:null}function gA(e,t){return e.environmentIds.flatMap(n=>{const i=t.get(n),r=i?EO(i):null;return r?[r]:[]})}function cat({environments:e,workspaces:t,value:n,selectedWorkspaceIds:i,loading:r,error:s,onConfirm:a,onClose:l}){const{t:c}=Te("workspaceTools"),[u,d]=p.useState(""),[f,h]=p.useState(!1),[m,g]=p.useState(""),b=p.useId(),v=p.useMemo(()=>new Map(e.map(A=>[A.id,A])),[e]),[y,x]=p.useState(()=>new Set(i)),[O,w]=p.useState(()=>{const A=new Set(t.filter(F=>i.includes(F.id)).flatMap(F=>F.environmentIds));return new Set(n.filter(F=>!A.has(F.environment_id)).map(rl))}),k=p.useMemo(()=>new Set(t.filter(A=>y.has(A.id)).flatMap(A=>A.environmentIds)),[y,t]),S=p.useMemo(()=>{const A=new Set(O);for(const F of t)if(y.has(F.id))for(const T of gA(F,v))A.add(rl(T));return A},[O,y,v,t]),E=p.useMemo(()=>{const A=u.trim().toLocaleLowerCase();return A?e.filter(F=>`${F.name} ${F.description} ${oh(F.language)}`.toLocaleLowerCase().includes(A)):e},[e,u]),C=p.useMemo(()=>{const A=u.trim().toLocaleLowerCase();return A?t.filter(F=>{const T=F.environmentIds.map(P=>{var R;return((R=v.get(P))==null?void 0:R.name)??""}).join(" ");return`${F.name} ${F.description} ${T}`.toLocaleLowerCase().includes(A)}):t},[v,u,t]);p.useEffect(()=>{const A=document.body.style.overflow,F=T=>{T.key==="Escape"&&!f&&l()};return document.body.style.overflow="hidden",document.addEventListener("keydown",F),()=>{document.body.style.overflow=A,document.removeEventListener("keydown",F)}},[l,f]);const N=A=>{const F=EO(A);if(!F)return;const T=rl(F);k.has(A.id)||w(P=>{const R=new Set(P);return R.has(T)?R.delete(T):R.add(T),R})},_=A=>{const F=gA(A,v);F.length!==0&&(x(T=>{const P=new Set(T);return P.has(A.id)?P.delete(A.id):P.add(A.id),P}),w(T=>{const P=new Set(T);for(const R of F)P.delete(rl(R));return P}))},j=async()=>{const A=new Map(n.map(T=>[rl(T),T])),F=e.flatMap(T=>{const P=EO(T);if(!P||!S.has(rl(P)))return[];const R=A.get(rl(P));return[{...P,mount_instance_id:(R==null?void 0:R.mount_instance_id)||crypto.randomUUID()}]});h(!0),g("");try{await a(F,[...y]),l()}catch(T){g(T instanceof Error?T.message:c("sessionEnvironment.mountFailed"))}finally{h(!1)}};return Li.createPortal(o.jsxs("div",{className:"studio-tool-dialog-layer",children:[o.jsx("button",{type:"button",className:"studio-tool-dialog-scrim","aria-label":c("sessionEnvironment.closeDialog"),disabled:f,onClick:l}),o.jsxs("section",{className:"studio-tool-dialog session-environment-dialog",role:"dialog","aria-modal":"true","aria-labelledby":b,children:[o.jsxs("header",{className:"studio-tool-dialog-head",children:[o.jsx("span",{className:"studio-tool-dialog-mark",children:o.jsx(k6,{})}),o.jsxs("div",{children:[o.jsx("h2",{id:b,children:c("sessionEnvironment.addTitle")}),o.jsx("p",{children:c("sessionEnvironment.description")})]}),o.jsx("button",{type:"button",className:"studio-tool-dialog-close","aria-label":c("sessionEnvironment.closeAdd"),disabled:f,onClick:l,children:o.jsx(aat,{})})]}),o.jsxs("div",{className:"studio-tool-dialog-body",children:[o.jsxs("label",{className:"studio-tool-search",children:[o.jsx(oat,{}),o.jsx("input",{value:u,"aria-label":c("sessionEnvironment.searchAria"),placeholder:c("sessionEnvironment.searchPlaceholder"),autoFocus:!0,onChange:A=>d(A.target.value)})]}),o.jsx("div",{className:"studio-tool-picker session-environment-picker",role:"group","aria-label":c("sessionEnvironment.availableAria"),children:r?o.jsx("div",{className:"studio-tool-empty",children:c("sessionEnvironment.loading")}):s?o.jsx("div",{className:"studio-tool-empty",children:s}):E.length===0&&C.length===0?o.jsx("div",{className:"studio-tool-empty",children:c("sessionEnvironment.noMatch")}):o.jsxs(o.Fragment,{children:[C.length>0&&o.jsxs("section",{className:"session-environment-picker__group","aria-labelledby":`${b}-workspaces`,children:[o.jsx("h3",{id:`${b}-workspaces`,children:c("sessionEnvironment.workspaces")}),C.map(A=>{const F=gA(A,v),T=y.has(A.id),P=F.length===0;return o.jsxs("label",{className:`studio-tool-option session-environment-option is-workspace${T?" is-selected":""}${P?" is-disabled":""}`,children:[o.jsx("span",{className:"studio-tool-option-icon",children:o.jsx(kOe,{})}),o.jsxs("span",{className:"studio-tool-option-copy",children:[o.jsx("strong",{children:A.name}),o.jsx("span",{children:A.description||c("sessionEnvironment.reuseAll")}),o.jsx("small",{children:c("sessionEnvironment.availableEnvironmentCount",{count:F.length})})]}),o.jsx("input",{type:"checkbox",checked:T,disabled:P,"aria-label":c("sessionEnvironment.selectWorkspace",{name:A.name}),onChange:()=>_(A)}),o.jsx("span",{className:"session-environment-check","aria-hidden":"true",children:o.jsx(BK,{})})]},A.id)})]}),E.length>0&&o.jsxs("section",{className:"session-environment-picker__group","aria-labelledby":`${b}-environments`,children:[o.jsx("h3",{id:`${b}-environments`,children:c("sessionEnvironment.environments")}),E.map(A=>{const F=EO(A);if(!F)return null;const T=t.filter(L=>y.has(L.id)&&L.environmentIds.includes(A.id)),P=T.length>0,R=S.has(rl(F));return o.jsxs("label",{className:`studio-tool-option session-environment-option${R?" is-selected":""}${P?" is-covered":""}`,children:[o.jsx("span",{className:"studio-tool-option-icon",children:o.jsx(k6,{})}),o.jsxs("span",{className:"studio-tool-option-copy",children:[o.jsx("strong",{children:A.name}),o.jsx("span",{children:P?c("sessionEnvironment.includedByWorkspaces",{names:T.map(L=>L.name).join(c("sessionEnvironment.nameSeparator"))}):A.description||oh(A.language)}),o.jsxs("small",{children:[oh(A.language)," · ",F.environment_version_id]})]}),o.jsx("input",{type:"checkbox",checked:R,disabled:P,"aria-label":c("sessionEnvironment.selectEnvironment",{name:A.name}),onChange:()=>N(A)}),o.jsx("span",{className:"session-environment-check","aria-hidden":"true",children:o.jsx(BK,{})})]},rl(F))})]})]})})]}),o.jsxs("footer",{className:"session-environment-dialog__footer",children:[o.jsx("span",{className:m?"is-error":"",role:m?"alert":void 0,children:m||c("sessionEnvironment.selectionSummary",{workspaces:c("sessionEnvironment.selectedWorkspaceCount",{count:y.size}),environments:c("sessionEnvironment.coveredEnvironmentCount",{count:S.size})})}),o.jsxs("div",{children:[o.jsx("button",{type:"button",disabled:f,onClick:l,children:c("sessionEnvironment.cancel")}),o.jsx("button",{type:"button",className:"is-primary",disabled:r||f||!!s,onClick:()=>void j(),children:c(f?"sessionEnvironment.mounting":"sessionEnvironment.confirm")})]})]})]})]}),document.body)}function uat({environments:e,workspaces:t,value:n,selectedWorkspaceIds:i,loading:r,disabled:s=!1,error:a="",onChange:l,onRefresh:c}){const{t:u}=Te("workspaceTools"),[d,f]=p.useState(!1),[h,m]=p.useState(!1),[g,b]=p.useState(""),v=p.useRef(null),y=p.useMemo(()=>new Map(e.flatMap(C=>{const N=EO(C);return N?[[rl(N),C]]:[]})),[e]),x=p.useMemo(()=>new Map(e.map(C=>[C.id,C])),[e]),O=t.filter(C=>i.includes(C.id)),w=new Set(O.flatMap(C=>C.environmentIds)),k=n.filter(C=>!w.has(C.environment_id)),S=()=>{f(!1),requestAnimationFrame(()=>{var C;return(C=v.current)==null?void 0:C.focus()})},E=async(C,N)=>{if(l){m(!0),b("");try{await l(C,N)}catch(_){b(_ instanceof Error?_.message:u("sessionEnvironment.mountFailed"))}finally{m(!1)}}};return o.jsxs("div",{className:"session-environment-select",children:[n.length>0&&o.jsxs("div",{className:"session-environment-list",role:"list","aria-label":u("sessionEnvironment.mountedAria"),children:[O.map(C=>{const N=new Set(gA(C,x).map(_=>_.environment_id));return o.jsxs("div",{className:"session-environment-item is-workspace",role:"listitem",children:[o.jsx("span",{className:"session-environment-item__icon",children:o.jsx(kOe,{})}),o.jsxs("span",{className:"session-environment-item__copy",children:[o.jsx("strong",{children:C.name}),o.jsx("small",{children:u("sessionEnvironment.environmentCount",{count:N.size})})]}),l&&o.jsx("button",{type:"button",className:"topo-remove-capability","aria-label":u("sessionEnvironment.removeWorkspace",{name:C.name}),title:u("sessionEnvironment.remove"),disabled:s||h,onClick:()=>{const _=i.filter(A=>A!==C.id),j=new Set(t.filter(A=>_.includes(A.id)).flatMap(A=>A.environmentIds));E(n.filter(A=>!N.has(A.environment_id)||j.has(A.environment_id)),_)},children:o.jsx(FK,{})})]},`workspace:${C.id}`)}),k.map(C=>{const N=y.get(rl(C));return o.jsxs("div",{className:"session-environment-item",role:"listitem",children:[o.jsx("span",{className:"session-environment-item__icon",children:o.jsx(k6,{})}),o.jsxs("span",{className:"session-environment-item__copy",children:[o.jsx("strong",{children:(N==null?void 0:N.name)??C.environment_id}),o.jsx("small",{children:N?oh(N.language):C.environment_version_id})]}),l&&o.jsx("button",{type:"button",className:"topo-remove-capability","aria-label":u("sessionEnvironment.removeEnvironment",{name:(N==null?void 0:N.name)??C.environment_id}),title:u("sessionEnvironment.remove"),disabled:s||h,onClick:()=>void E(n.filter(_=>rl(_)!==rl(C)),[...i]),children:o.jsx(FK,{})})]},rl(C))})]}),l&&o.jsxs("button",{ref:v,type:"button",className:"topo-capability-add-slot","aria-label":u("sessionEnvironment.add"),disabled:s||r||h,onClick:()=>{b(""),f(!0),c==null||c()},children:[o.jsx(lat,{}),o.jsx("span",{children:n.length>0?u("sessionEnvironment.addMore"):u("sessionEnvironment.addForSession")})]}),g&&o.jsx("p",{className:"is-error",role:"alert",children:g}),(r||a||e.length===0)&&o.jsx("p",{className:a?"is-error":void 0,role:a?"alert":void 0,children:r?u("sessionEnvironment.loadingAvailable"):a||u("sessionEnvironment.empty")}),d&&o.jsx(cat,{environments:e,workspaces:t,value:n,selectedWorkspaceIds:i,loading:r,error:a,onConfirm:(C,N)=>l==null?void 0:l(C,N),onClose:S})]})}function EOe(e){return 1+e.children.reduce((t,n)=>t+EOe(n),0)}function COe(e){return e.id||e.name}function dat(e,t,n){const i=COe(e);if(e.id&&e.name&&e.name!==i)return e.name;if(t&&i==="agent")return n("agentTopology.mainAgent");const r=/^agent_sub_(\d+)$/.exec(i);return r?n("agentTopology.subAgent",{index:r[1]}):e.name||i}function TOe(e,t,n=!0){return{...e,id:COe(e),name:dat(e,n,t),children:e.children.map(i=>TOe(i,t,!1))}}function AOe(e){const t=oc(),n=Yb(e.model);return{...t,name:e.name,description:e.description,instruction:e.instruction||t.instruction,agentType:e.type,modelName:n.modelName,modelProvider:n.modelProvider,tools:e.tools??[],skills:(e.skills??[]).map(i=>i.name),subAgents:e.children.map(AOe)}}function fat(e){return[...new Set(e.map(t=>t.trim()).filter(Boolean))]}const hat=new Set(["StudioExternalToolset"]);function pat(e){return[...new Map(e.filter(t=>t.name.trim()).map(t=>[t.name.trim(),{...t,name:t.name.trim()}])).values()]}function xT({title:e,count:t}){const{t:n}=Te("workspaceTools");return o.jsxs("div",{className:"topo-module-title",children:[o.jsx("span",{className:"topo-module-label",title:e,children:e}),t!==void 0&&o.jsx("span",{className:"topo-section-count","aria-label":n("agentTopology.itemCount",{count:t}),children:t})]})}function mat({appName:e,info:t,loading:n,variant:i="rail",studioTools:r=[],selectedStudioToolIds:s=[],managedStudioToolIds:a=[],studioToolsLoading:l=!1,studioToolsDisabled:c=!1,studioToolsUnavailableReason:u="",onStudioToolsChange:d,environments:f=[],workspaces:h=[],selectedEnvironments:m=[],selectedEnvironmentWorkspaceIds:g=[],environmentsLoading:b=!1,environmentsDisabled:v=!1,environmentsError:y="",onEnvironmentsChange:x,onEnvironmentsRefresh:O}){const{t:w}=Te("workspaceTools"),[k,S]=p.useState(null),[E,C]=p.useState(!1),N=p.useRef(null),_=()=>{C(!1),window.requestAnimationFrame(()=>{var Q;return(Q=N.current)==null?void 0:Q.focus()})};if(p.useEffect(()=>{if(!E)return;const Q=document.body.style.overflow,q=B=>{B.key==="Escape"&&_()};return document.body.style.overflow="hidden",document.addEventListener("keydown",q),()=>{document.body.style.overflow=Q,document.removeEventListener("keydown",q)}},[E]),n&&!t)return o.jsx("aside",{className:`topo is-loading${i==="drawer"?" is-drawer":""}`,"aria-label":w("agentTopology.info"),"aria-live":"polite",children:o.jsx(xn,{as:"span",className:"topo-loading-label",duration:2.2,children:w("agentTopology.loadingInfo")})});if(!t)return null;const j=EB(t.model),A=TOe(t.graph??{id:t.name,name:t.name,description:t.description,type:t.type??"llm",model:j,tools:t.tools,skills:t.skills,path:[t.name],mentionable:!1,children:[]},w),F=fat(t.tools).filter(Q=>!hat.has(Q)).map(Q=>({id:`base:tool:${Q}`,name:Q,label:xOe(Q,w),custom:!1,removable:!1})),T=new Set(F.map(Q=>Q.name)),P=new Set(s),R=new Set(a),L=r.filter(Q=>P.has(Q.id)&&!T.has(Q.id)).map(Q=>({id:`studio:tool:${Q.id}`,name:Q.id,label:Q.name,custom:!0,removable:!R.has(Q.id)})),M=[...F,...L],U=pat(t.skills),I=!!d,H=AOe(A),K=Q=>o.jsx(LS,{draft:H,direction:"horizontal",selectedPath:[],onSelect:()=>{},onAdd:()=>{},onInsert:()=>{},onDelete:()=>{},readOnly:!0,interactivePreview:!0},Q);return o.jsxs(o.Fragment,{children:[o.jsxs("aside",{className:`topo${i==="drawer"?" is-drawer":""}`,"aria-label":w("agentTopology.infoAndTopology"),children:[o.jsxs("section",{className:"topo-agent-card","aria-label":w("agentTopology.info"),children:[o.jsxs("div",{className:"topo-agent-heading",children:[o.jsx("h2",{title:t.name,children:t.name||w("agentTopology.unnamedAgent")}),j&&o.jsx("span",{title:j,children:j})]}),t.description&&o.jsx("p",{className:"topo-description",title:t.description,children:t.description})]}),o.jsxs("div",{className:"topo-module-stack",children:[o.jsxs("section",{className:"topo-module-card topo-tools-card","aria-label":w("agentTopology.tools"),children:[o.jsx(xT,{title:w("agentTopology.tools"),count:M.length}),o.jsx("div",{className:"topo-module-scroll topo-tools-scroll",role:"region","aria-label":w("agentTopology.toolList"),tabIndex:0,children:M.length>0?o.jsx("div",{className:"topo-tool-list",children:M.map(Q=>o.jsxs("div",{className:"topo-tool",title:Q.name,children:[o.jsxs("span",{className:"topo-capability-title",children:[o.jsxs("span",{className:"topo-capability-copy",children:[o.jsx("span",{className:"topo-capability-name",children:Q.label}),o.jsx("code",{children:Q.name})]}),Q.custom&&o.jsx("span",{className:"topo-custom-badge",children:w("agentTopology.studioTool")})]}),Q.custom&&Q.removable&&o.jsx("button",{type:"button",className:"topo-remove-capability","aria-label":w("agentTopology.removeTool",{name:Q.name}),title:w("agentTopology.remove"),disabled:c,onClick:()=>d==null?void 0:d(s.filter(q=>q!==Q.name)),children:"×"})]},Q.id))}):o.jsx("div",{className:"topo-empty",children:w("agentTopology.notConfigured")})}),I&&o.jsx("div",{className:"topo-capability-add-dock",children:o.jsxs("button",{type:"button",className:"topo-capability-add-slot","aria-label":w("agentTopology.addStudioTool"),disabled:c,onClick:()=>S("tool"),children:[o.jsx("span",{"aria-hidden":"true",children:"+"}),o.jsx("span",{children:w("agentTopology.addStudioToolHere")})]})})]}),o.jsxs("section",{className:"topo-module-card topo-skills-card","aria-label":w("agentTopology.skills"),children:[o.jsx(xT,{title:w("agentTopology.skills"),count:t.skillsPreviewSupported?U.length:void 0}),o.jsx("div",{className:"topo-module-scroll topo-skills-scroll",role:"region","aria-label":w("agentTopology.skillList"),tabIndex:0,children:t.skillsPreviewSupported?U.length>0?o.jsx("div",{className:"topo-skill-list",children:U.map(Q=>o.jsxs("div",{className:"topo-skill",title:Q.description||Q.name,children:[o.jsx("div",{className:"topo-skill-title",children:o.jsx("span",{className:"topo-skill-name",children:Q.name})}),Q.description&&o.jsx("span",{className:"topo-skill-description",children:Q.description})]},`${Q.name}:${Q.description}`))}):o.jsx("div",{className:"topo-empty",children:w("agentTopology.notConfigured")}):o.jsx("div",{className:"topo-empty",children:w("agentTopology.previewUnsupported")})})]}),(x||m.length>0)&&o.jsxs("section",{className:"topo-module-card topo-environment-card","aria-label":w("agentTopology.sessionEnvironment"),children:[o.jsx(xT,{title:w("agentTopology.environment"),count:m.length}),o.jsx(uat,{environments:f,workspaces:h,value:m,selectedWorkspaceIds:g,loading:b,disabled:v,error:y,onChange:x,onRefresh:O})]}),o.jsxs("section",{className:"topo-module-card topo-topology","aria-label":w("agentTopology.agentCanvas"),children:[o.jsxs("div",{className:"topo-canvas-heading",children:[o.jsx(xT,{title:w("agentTopology.topology"),count:EOe(A)}),o.jsx("button",{ref:N,type:"button",className:"topo-canvas-expand","aria-label":w("agentTopology.viewCanvasFullscreen"),title:w("agentTopology.viewFullscreen"),onClick:()=>C(!0),children:o.jsx(Ky,{"aria-hidden":"true"})})]}),o.jsx("div",{className:"topo-canvas-preview",role:"region","aria-label":w("agentTopology.executionCanvas"),children:K(`conversation-canvas:${e}`)})]})]}),k==="tool"&&d&&o.jsx(Zst,{agentName:t.name,tools:r.filter(Q=>!T.has(Q.id)&&!R.has(Q.id)),selectedIds:s,loading:l,disabled:c,unavailableReason:u,onChange:d,onClose:()=>S(null)})]}),E&&Li.createPortal(o.jsxs("section",{className:"topo-canvas-dialog",role:"dialog","aria-modal":"true","aria-label":w("agentTopology.fullscreenExecutionCanvas"),children:[o.jsxs("header",{className:"topo-canvas-dialog-header",children:[o.jsxs("div",{children:[o.jsx("strong",{children:w("agentTopology.executionCanvas")}),o.jsx("span",{children:t.name})]}),o.jsx("button",{type:"button","aria-label":w("agentTopology.closeFullscreenCanvas"),title:w("agentTopology.close"),onClick:_,autoFocus:!0,children:o.jsx(Ba,{"aria-hidden":"true"})})]}),o.jsx("div",{className:"topo-canvas-dialog-body",children:K(`conversation-canvas-fullscreen:${e}`)})]}),document.body)]})}const lE={viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:1.75,strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0};function UK(e){return o.jsxs("svg",{...lE,...e,children:[o.jsx("rect",{x:"3.75",y:"5.25",width:"16.5",height:"13.5",rx:"2"}),o.jsx("path",{d:"m10.25 9 4.8 3-4.8 3V9Z"})]})}function gat(e){return o.jsxs("svg",{...lE,...e,children:[o.jsx("path",{d:"M12 3.75v10.5M8.4 10.8 12 14.4l3.6-3.6"}),o.jsx("path",{d:"M5 17.25v2h14v-2"})]})}function bat(e){return o.jsxs("svg",{...lE,...e,children:[o.jsx("path",{d:"M8.75 8.75 6.9 10.6a3.4 3.4 0 0 0 4.8 4.8l1.85-1.85"}),o.jsx("path",{d:"m15.25 15.25 1.85-1.85a3.4 3.4 0 0 0-4.8-4.8l-1.85 1.85"}),o.jsx("path",{d:"m9.4 14.6 5.2-5.2"})]})}function yat(e){return o.jsxs("svg",{...lE,...e,children:[o.jsx("path",{d:"M5 19h3.2L18.6 8.6a1.7 1.7 0 0 0 0-2.4l-.8-.8a1.7 1.7 0 0 0-2.4 0L5 15.8V19Z"}),o.jsx("path",{d:"m13.9 6.9 3.2 3.2M5 15.8 8.2 19"})]})}function _Oe(e){return o.jsx("svg",{...lE,...e,children:o.jsx("path",{d:"m6.5 6.5 11 11M17.5 6.5l-11 11"})})}const vat=180,QK=500,bM=10,zK=32;function xat(e){return Array.from(new Set(e.split(/[,,]/).map(t=>t.trim()).filter(Boolean)))}function wat({artifact:e,busy:t,error:n,onClose:i,onSave:r}){const{t:s}=Te("workspaceTools"),[a,l]=p.useState(e.name),[c,u]=p.useState(e.description??""),[d,f]=p.useState((e.tags??[]).join(",")),[h,m]=p.useState(""),g=p.useId(),b=p.useId(),v=p.useRef(null),y=p.useRef(null),x=p.useRef(t),O=p.useRef(i);p.useEffect(()=>{x.current=t,O.current=i},[t,i]),p.useEffect(()=>{var N,_;const S=document.body.style.overflow,E=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(N=y.current)==null||N.focus(),(_=y.current)==null||_.select();const C=j=>{if(j.key==="Escape"&&!x.current){j.preventDefault(),O.current();return}if(j.key!=="Tab")return;const A=v.current;if(!A)return;const F=Array.from(A.querySelectorAll('button:not([disabled]), input:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])')).filter(R=>R.getClientRects().length>0);if(F.length===0){j.preventDefault();return}const T=F[0],P=F[F.length-1];j.shiftKey&&document.activeElement===T?(j.preventDefault(),P.focus()):!j.shiftKey&&document.activeElement===P&&(j.preventDefault(),T.focus())};return window.addEventListener("keydown",C),()=>{window.removeEventListener("keydown",C),document.body.style.overflow=S,E!=null&&E.isConnected&&E.focus()}},[]);const w=S=>{var N;S.preventDefault();const E=a.trim(),C=xat(d);if(!E){m(s("artifactEdit.nameRequired")),(N=y.current)==null||N.focus();return}if(C.length>bM){m(s("artifactEdit.tooManyTags",{max:bM}));return}if(C.some(_=>_.length>zK)){m(s("artifactEdit.tagTooLong",{max:zK}));return}m(""),r({name:E,description:c.trim(),tags:C})},k=h||n;return Li.createPortal(o.jsx("div",{className:"artifact-edit-backdrop",onMouseDown:S=>{S.target===S.currentTarget&&!t&&i()},children:o.jsxs("section",{ref:v,className:"artifact-edit-dialog",role:"dialog","aria-modal":"true","aria-labelledby":g,"aria-describedby":b,"aria-busy":t||void 0,children:[o.jsxs("header",{className:"artifact-edit-dialog__header",children:[o.jsxs("div",{children:[o.jsx("h2",{id:g,children:s("artifactEdit.title")}),o.jsx("p",{id:b,children:s("artifactEdit.subtitle")})]}),o.jsx("button",{type:"button",onClick:i,disabled:t,"aria-label":s("artifactEdit.close"),children:o.jsx(_Oe,{})})]}),o.jsxs("form",{onSubmit:w,children:[o.jsxs("div",{className:"artifact-edit-dialog__body",children:[o.jsxs("label",{className:"artifact-edit-field",children:[o.jsx("span",{children:s("artifactEdit.name")}),o.jsx("input",{ref:y,value:a,maxLength:vat,disabled:t,"aria-invalid":!!k||void 0,onChange:S=>{l(S.target.value),m("")}})]}),o.jsxs("label",{className:"artifact-edit-field",children:[o.jsx("span",{children:s("artifactEdit.description")}),o.jsx("textarea",{value:c,maxLength:QK,disabled:t,rows:4,placeholder:s("artifactEdit.descriptionPlaceholder"),onChange:S=>u(S.target.value)}),o.jsxs("small",{children:[c.length,"/",QK]})]}),o.jsxs("label",{className:"artifact-edit-field",children:[o.jsx("span",{children:s("artifactEdit.tags")}),o.jsx("input",{value:d,disabled:t,placeholder:s("artifactEdit.tagsPlaceholder",{max:bM}),onChange:S=>{f(S.target.value),m("")}})]}),k?o.jsx("div",{className:"artifact-edit-error",role:"alert",children:k}):null]}),o.jsxs("footer",{className:"artifact-edit-dialog__actions",children:[o.jsx("button",{type:"button",onClick:i,disabled:t,children:s("artifactEdit.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:t,children:s(t?"artifactEdit.saving":"artifactEdit.save")})]})]})]})}),document.body)}function NOe({label:e,menuLabel:t,items:n,placement:i="bottom-end"}){return o.jsxs(vr,{children:[o.jsx(vr.Trigger,{children:o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"md",iconSize:"sm",uniform:!0,"aria-label":e,title:e,disabled:n.length===0,children:o.jsx($Fe,{"aria-hidden":"true"})})}),o.jsxs(vr.Content,{side:i==="top-end"?"top":"bottom",align:"end",minWidth:148,children:[o.jsx("span",{className:"sr-only",children:t}),n.map(r=>o.jsx(vr.Item,{disabled:r.disabled,onSelect:r.onSelect,children:o.jsx("span",{title:r.title,children:r.label})},r.label))]})]})}const Oat="_Alert_1tr02_1",Sat="_Content_1tr02_145",kat="_Indicator_1tr02_156",Eat="_Message_1tr02_159",Cat="_Title_1tr02_162",Tat="_Description_1tr02_168",Aat="_Actions_1tr02_173",ng={Alert:Oat,Content:Sat,Indicator:kat,Message:Eat,Title:Cat,Description:Tat,Actions:Aat},Eb=({color:e="primary",variant:t="outline",title:n,description:i,actions:r,actionsPlacement:s,indicator:a,className:l,actionsClassName:c,ref:u,...d})=>{const f=p.useRef(null),h=p.useRef(null),[m,g]=p.useState("end"),{width:b}=Eye({ref:f});return p.useEffect(()=>{var y;const v=((y=h.current)==null?void 0:y.clientWidth)??0;if(v&&b){const x=v>b/3?"bottom":"end";g(x)}},[b]),o.jsxs("div",{ref:Zk([u,f]),className:pi(ng.Alert,l),"data-variant":t,"data-color":e,role:e==="danger"?"alert":void 0,"data-actions-placement":s??m,...d,children:[a===!1?null:o.jsx("div",{className:ng.Indicator,children:a??o.jsx(_at,{color:e})}),o.jsxs("div",{className:ng.Content,children:[o.jsxs("div",{className:ng.Message,children:[n&&o.jsx("div",{className:ng.Title,children:n}),i&&o.jsx("div",{className:ng.Description,children:i})]}),r&&o.jsx("div",{className:pi(ng.Actions,c),ref:h,children:r})]})]})},_at=({color:e})=>{switch(e){case"warning":case"caution":case"danger":return o.jsx(wbe,{});case"success":return o.jsx(bbe,{});default:return o.jsx(ybe,{})}};function pc({title:e,description:t,error:n,confirmLabel:i,cancelLabel:r,closeLabel:s,variant:a="warning",busy:l=!1,onCancel:c,onConfirm:u}){const{t:d}=Te("shell"),f=r??d("confirm.cancel"),h=s??d("confirm.close"),m=p.useId(),g=p.useId(),b=p.useRef(null),v=p.useRef(l),y=p.useRef(c);return p.useEffect(()=>{v.current=l,y.current=c},[l,c]),p.useEffect(()=>{var k;const x=document.body.style.overflow,O=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(k=b.current)==null||k.focus();const w=S=>{S.key==="Escape"&&!v.current&&y.current()};return window.addEventListener("keydown",w),()=>{document.body.style.overflow=x,window.removeEventListener("keydown",w),O!=null&&O.isConnected&&O.focus()}},[]),Li.createPortal(o.jsx("div",{className:"studio-confirm-backdrop",onMouseDown:x=>{x.target===x.currentTarget&&!l&&c()},children:o.jsxs("section",{className:`studio-confirm-dialog studio-confirm-dialog--${a}`,role:"alertdialog","aria-modal":"true","aria-labelledby":m,"aria-describedby":g,"aria-busy":l||void 0,children:[o.jsxs("header",{className:"studio-confirm-head",children:[o.jsxs("div",{className:"studio-confirm-title-wrap",children:[o.jsx("span",{className:"studio-confirm-title-icon","aria-hidden":"true",children:o.jsx(wbe,{})}),o.jsx("h2",{id:m,children:e})]}),o.jsx(Ht,{type:"button",className:"studio-confirm-close",color:"secondary",variant:"ghost",size:"lg",uniform:!0,pill:!1,onClick:c,disabled:l,"aria-label":h,children:o.jsx(DF,{})})]}),o.jsxs("div",{className:"studio-confirm-body",children:[o.jsx("p",{id:g,children:t}),n?o.jsx(Eb,{className:"studio-confirm-error",color:"danger",variant:"soft",description:n}):null]}),o.jsxs("footer",{className:"studio-confirm-actions",children:[o.jsx(Ht,{ref:b,type:"button",color:"secondary",variant:"ghost",size:"lg",pill:!1,onClick:c,disabled:l,children:f}),o.jsx(Ht,{type:"button",className:"studio-confirm-primary",color:a==="danger"?"danger":"primary",size:"lg",pill:!1,loading:l,onClick:u,disabled:l,children:i})]})]})}),document.body)}const Nat="_Container_1a6nz_1",jat="_Input_1a6nz_229",VK={Container:Nat,Input:jat},qr=e=>{const t=p.useRef(null),i=`search-ui-input-${p.useId()}`,{id:r,name:s,type:a="text",variant:l="outline",size:c="md",gutterSize:u,className:d,autoComplete:f,disabled:h=!1,readOnly:m=!1,invalid:g=!1,allowAutofillExtensions:b=a==="password"||!!s||!!f&&f!=="off",onFocus:v,onBlur:y,onAnimationStart:x,onAutofill:O,autoSelect:w,startAdornment:k,endAdornment:S,pill:E,opticallyAlign:C,ref:N,..._}=e,j=P=>{const R=t.current;if(!P.target||!(P.target instanceof Element)||!R||R.contains(P.target)||P.target.closest("button, [type='button'], [role='button'], [role='menuitem']"))return;P.preventDefault(),document.activeElement!==R&&R.focus();const{left:L,top:M}=R.getBoundingClientRect(),{clientX:U,clientY:I}=P,H=I{var P;w&&((P=t.current)==null||P.select())},[w]);const T=P=>{x==null||x(P),P.animationName==="native-autofill-in"&&(O==null||O())};return o.jsxs("div",{className:pi(VK.Container,d),"data-variant":l,"data-size":c,"data-gutter-size":u,"data-focused":A,"data-disabled":h?"":void 0,"data-readonly":m?"":void 0,"data-invalid":g?"":void 0,"data-pill":E?"":void 0,"data-optically-align":C,"data-has-start-adornment":k?"":void 0,"data-has-end-adornment":S?"":void 0,onMouseDown:j,children:[k,o.jsx("input",{..._,ref:Zk([N,t]),id:r||(b?void 0:i),className:VK.Input,type:a,name:s,autoComplete:f,readOnly:m,disabled:h,onFocus:P=>{F(!0),v==null||v(P)},onBlur:P=>{F(!1),y==null||y(P)},onAnimationStart:T,"data-lpignore":b?void 0:!0,"data-1p-ignore":b?void 0:!0}),S]})},Rat="_SelectControl_1tyi7_1",Iat="_Clear_1tyi7_436",Pat="_DropdownIcon_1tyi7_437",Dat="_TriggerText_1tyi7_468",Mat="_IndicatorWrapper_1tyi7_476",Lat="_StartIcon_1tyi7_482",$at="_DropdownIconChevron_1tyi7_534",Fat="_LoadingIndicator_1tyi7_537",Mf={SelectControl:Rat,Clear:Iat,DropdownIcon:Pat,TriggerText:Dat,IndicatorWrapper:Mat,StartIcon:Lat,DropdownIconChevron:$at,LoadingIndicator:Fat},Bat=({ref:e,onPointerDown:t,onKeyDown:n,onPointerEnter:i,onInteract:r,invalid:s,disabled:a,children:l,className:c,variant:u="outline",size:d="md",block:f,opticallyAlign:h,pill:m=!0,loading:g,onClearClick:b,selected:v=!1,StartIcon:y,dropdownIconType:x="dropdown",...O})=>{const w=p.useRef(null),S=!!b&&v&&!g&&!a,E=x&&x!=="none"&&!g,C=S||g||E,N=!g&&!a,_=A=>{var F;switch(A.key){case"ArrowDown":case"ArrowUp":case" ":A.stopPropagation(),A.preventDefault(),r?r():(F=w.current)==null||F.dispatchEvent(new PointerEvent("pointerdown",{bubbles:!0,cancelable:!0,pointerType:"mouse"}));break;case"Enter":break;default:n==null||n(A)}},j=A=>{var F;A.button!==2&&(A.stopPropagation(),r?(A.preventDefault(),r()):(t==null||t(A),(F=O.onClick)==null||F.call(O,A)))};return o.jsxs("span",{ref:Zk([w,e]),className:pi(Mf.SelectControl,c),role:"button",tabIndex:a?-1:0,onPointerEnter:A=>{l7(A),i==null||i(A)},onPointerDown:N?j:void 0,onKeyDown:N?_:void 0,"data-variant":u,"data-block":f?"":void 0,"data-pill":m?"":void 0,"data-size":d,"data-optically-align":h,"aria-busy":g?"true":void 0,"data-selected":v,"data-loading":g?"":void 0,"data-invalid":s?"":void 0,"data-disabled":a?"":void 0,"aria-disabled":a,...O,onClick:void 0,children:[y&&o.jsx(y,{className:Mf.StartIcon}),o.jsx("span",{className:Mf.TriggerText,children:l}),C&&o.jsxs("div",{className:Mf.IndicatorWrapper,children:[S&&o.jsx(Ht,{"aria-label":"Clear current value",className:Mf.Clear,onPointerDown:A=>{A.stopPropagation()},onClick:A=>{A.stopPropagation(),A.preventDefault(),b()},color:"secondary",variant:E?"ghost":"solid",size:"3xs",uniform:!0,pill:m,"data-only-child":E?void 0:"",children:o.jsx(DF,{})}),g&&o.jsx(Hk,{className:Mf.LoadingIndicator}),E&&o.jsx(Uat,{iconType:x})]})]})},Uat=({iconType:e})=>e==="chevronDown"?o.jsx(IFe,{className:pi(Mf.DropdownIcon,Mf.DropdownIconChevron)}):o.jsx(FFe,{className:Mf.DropdownIcon}),Qat="_Menu_n4tw6_3",zat="_MenuList_n4tw6_5",Vat="_MenuInner_n4tw6_50",Hat="_OptionsList_n4tw6_64",qat="_Option_n4tw6_64",Wat="_PressableInner_n4tw6_111",Gat="_OptionInner_n4tw6_113",Kat="_OptionCheck_n4tw6_118",Xat="_OptionIndicatorSlot_n4tw6_123",Yat="_OptionGroupHeading_n4tw6_128",Zat="_OptionHardLimitHeading_n4tw6_140",Jat="_OptionsLimit_n4tw6_147",eot="_Action_n4tw6_152",tot="_ActionInner_n4tw6_218",not="_ActionsContainer_n4tw6_224",iot="_Search_n4tw6_244",rot="_SearchEmpty_n4tw6_247",Pr={Menu:Qat,MenuList:zat,MenuInner:Vat,OptionsList:Hat,Option:qat,PressableInner:Wat,OptionInner:Gat,OptionCheck:Kat,OptionIndicatorSlot:Xat,OptionGroupHeading:Yat,OptionHardLimitHeading:Zat,OptionsLimit:Jat,Action:eot,ActionInner:tot,ActionsContainer:not,Search:iot,SearchEmpty:rot},jOe=p.createContext(null),Bm=()=>{const e=p.use(jOe);if(!e)throw new Error("Select components must be wrapped in ");return e},Oot=({label:e})=>o.jsx(o.Fragment,{children:e}),Sot=({label:e})=>o.jsx(o.Fragment,{children:e}),kot=({values:e,selectedAll:t})=>{const n=t?"All selected":e.length===0?"Select...":e.length===1?e[0].label:`${e.length} selected`;return o.jsx(o.Fragment,{children:n})},Es=e=>{const{id:t,required:n,value:i,name:r,multiple:s,variant:a="outline",size:l="md",dropdownIconType:c="dropdown",loading:u=!1,clearable:d=!1,disabled:f=!1,placeholder:h="Select...",loadingPlaceholder:m="Loading...",pill:g=!0,listWidth:b,options:v,actions:y=[],side:x="bottom",avoidCollisions:O=!0,onChange:w,optionClassName:k,OptionView:S=Oot,TriggerStartIcon:E,triggerClassName:C,opticallyAlign:N,TriggerView:T,searchPlaceholder:j="",searchPredicate:A=Mot,searchEmptyMessage:L="No results found.",listMaxWidth:_="auto"}=e,P=e.block??a!=="ghost",I=e.align??(P?"center":"start"),$=e.alignOffset??(I==="center"?0:-5),M=e.listMinWidth??(P?"auto":300),B=km((me,Z)=>{if(s){if(!me.value){w([]);return}if(Z){const X=i.filter(oe=>oe!==me.value),J=N6(v,X);w(J)}else{const X=N6(v,i);w(X.concat(me))}}else w(me)}),R=p.useRef(A);R.current=A;const V=p.useMemo(()=>y,[y.length]),K=p.useRef(y);K.current=y;const Q=p.useCallback(me=>{var Z;(Z=K.current.find(X=>X.id===me))==null||Z.onSelect(me)},[]),q=p.useMemo(()=>DB(v)?v.reduce((me,Z)=>me+Z.options.length,0):v.length,[v]),G=`select-trigger-${p.useId()}`,ae=q>15,re=p.useMemo(()=>s?{multiple:!0,value:i,TriggerView:T??kot}:{multiple:!1,value:i,TriggerView:T??Sot},[s,i,T]),se=p.useMemo(()=>({...re,triggerId:G,id:t,name:r,required:n,options:v,placeholder:h,loadingPlaceholder:m,loading:u,clearable:d,variant:a,pill:g,size:l,dropdownIconType:c,block:P,align:I,alignOffset:$,side:x,avoidCollisions:O,listWidth:b,listMinWidth:M,listMaxWidth:_,searchPlaceholder:j,searchEmptyMessage:L,TriggerStartIcon:E,triggerClassName:C,opticallyAlign:N,optionClassName:k,OptionView:S,actions:V,onActionSelect:Q,onSelectRef:B,searchPredicateRef:R,searchable:ae,disabled:f}),[re,G,t,n,r,v,h,m,u,d,a,g,l,c,P,I,$,x,O,b,M,_,j,L,E,C,N,k,S,V,Q,B,ae,f]);return o.jsx(VOe.Provider,{value:se,children:o.jsx(Cot,{})})},Eot=e=>{const{triggerId:t,id:n,required:i,value:r,multiple:s,options:a,loading:l,disabled:c,clearable:u,name:d,variant:f,pill:h,size:m,dropdownIconType:g,placeholder:b,loadingPlaceholder:v,block:y,opticallyAlign:x,triggerClassName:O,TriggerStartIcon:w,TriggerView:k,onSelectRef:S}=Vm(),{onOpenChange:E,...C}=e,N=s?r[0]:r,T=l?v:b,j=p.useMemo(()=>$ot(a,N)||{value:"",label:T},[N,a,T]),A=s?r.length>0:!!r,L=l||!A,_=p.useMemo(()=>XOe(),[]),P=p.useMemo(()=>{if(!s)return{values:[],selectedAll:!1};const M=N6(a,r),B=a.flatMap(R=>"options"in R?R.options:R);return{values:M.length?M:[{value:"",label:T}],selectedAll:B.length<=r.length}},[s,a,r,T]),I=M=>{const B=M.key;if(!s&&YOe(B)){const R=_(B);M.stopPropagation();const V=ZOe(a,R,N);V&&S.current(V)}},$=()=>{S.current({value:"",label:""}),E==null||E(!1)};return o.jsxs(iot,{id:t,className:O,selected:!L,variant:f,pill:h,block:y,size:m,disabled:c,loading:l,StartIcon:w,opticallyAlign:x,dropdownIconType:g,onClearClick:u?$:void 0,onInteract:E,onKeyDown:I,...C,children:[s?o.jsx(k,{...P}):o.jsx(k,{...j}),(d||n)&&o.jsx("input",{id:n,name:d,value:N,tabIndex:-1,onFocus:()=>{var M;(M=document.getElementById(t))==null||M.focus()},onChange:()=>{},required:i,className:"sr-only w-full h-0 left-0 bottom-0 pointer-events-none","aria-hidden":"true"})]})},Cot=()=>{const{triggerId:e,loading:t,side:n,align:i,alignOffset:r,avoidCollisions:s,listWidth:a,listMinWidth:l,listMaxWidth:c}=Vm(),[u,d]=p.useState(!1),f=p.useRef(null),h=m=>{const g=m===void 0?!u:m;d(g),g||setTimeout(()=>{var v;if(!f.current)return;const b=document.activeElement;b&&!f.current.contains(b)||(v=document.getElementById(e))==null||v.focus()})};return tE(u,()=>{h(!1)}),o.jsxs(Cxe,{open:u,onOpenChange:m=>{t&&m||h(m)},modal:!1,children:[o.jsx(Txe,{asChild:!0,children:o.jsx(Eot,{onOpenChange:h})}),o.jsx(Axe,{forceMount:!0,children:o.jsx(Qx,{className:Br.Menu,enterDuration:350,exitDuration:200,disableAnimations:!0,children:u&&o.jsx(_xe,{ref:f,forceMount:!0,className:Br.MenuList,side:n,sideOffset:5,align:i,alignOffset:r,avoidCollisions:s,collisionPadding:{bottom:30,top:30},onOpenAutoFocus:nh,onCloseAutoFocus:nh,onEscapeKeyDown:nh,style:Zb({"select-list-width":a,"select-list-min-width":l,"select-list-max-width":c}),children:o.jsx(Tot,{onOpenChange:h})},"dropdown")})})]})},HOe=p.createContext(null),Wx=()=>{const e=p.use(HOe);if(!e)throw new Error("CustomSelectMenu components must be wrapped in ");return e},Tot=({onOpenChange:e})=>{const{multiple:t,value:n,options:i,searchable:r,searchPredicateRef:s}=Vm(),a=p.useRef(()=>e(!1)),l=p.useRef(null),c=p.useRef(null),u=p.useRef(null),[d,f]=p.useState(""),[h,m]=p.useState(()=>{var N;return((t?n[0]:n)||((N=kT(i))==null?void 0:N.value))??""}),g=p.useMemo(()=>XOe(),[]),v=`select-list-${p.useId()}`,y=p.useRef(t?"":n),x=p.useMemo(()=>d.trim().toLocaleLowerCase(),[d]),O=p.useMemo(()=>Lot(i,x,s.current),[i,x,s]),w=p.useMemo(()=>kT(O),[O]),k=p.useRef(!1),S=C=>{const N=C.key,T=t?n[0]:n,j=h||(w==null?void 0:w.value)||T,A=document.activeElement===u.current,L=l.current;if(!L)return;const _=()=>{const $=new PointerEvent("pointerup",{bubbles:!0,cancelable:!0,pointerType:"mouse"}),M=jf(h,L);M==null||M.dispatchEvent($)},P=($,M)=>{m($),M.scrollIntoView({block:"nearest"})},I=()=>{const $=t?n[0]:n;if($){const B=jf($,L);if(B){P($,B);return}}const M=kT(i);if(M){const B=jf(M.value,L);B&&P(M.value,B)}};switch(N){case"ArrowDown":{if(C.preventDefault(),!h||!jf(h,L)){I();return}const $=Fot(h,L),M=$==null?void 0:$.getAttribute("data-option-id");$&&M&&P(M,$);return}case"ArrowUp":{if(C.preventDefault(),!h||!jf(h,L)){I();return}const $=Bot(j,L),M=$==null?void 0:$.getAttribute("data-option-id");$&&M&&P(M,$);return}case"Enter":C.preventDefault(),_();return;case" ":if(x&&A)return;C.preventDefault(),_();return}if(YOe(N)){if(A)return;const $=g(N);C.stopPropagation();const M=ZOe(i,$,h);if(M){const B=jf(M.value,L);B&&(m(M.value),B.scrollIntoView({block:"nearest"}))}}},E=p.useMemo(()=>({valueRef:y,listId:v,highlightedValue:h,setHighlightedValue:m,requestCloseRef:a,searchTerm:d,setSearchTerm:f,searchInputRef:u,listRef:c}),[v,h,m,d,f]);return p.useEffect(()=>{V_(()=>{if(!l.current)return;const N=jf(h,l.current);N==null||N.scrollIntoView({block:"center"})});const C=u.current||l.current;return C==null||C.focus({preventScroll:!0}),()=>{k.current=!1}},[]),p.useLayoutEffect(()=>{if(!k.current){k.current=!0;return}if(!c.current)return;c.current.scrollTop=0;const C=kT(O);C&&m(C.value)},[O]),o.jsx(HOe,{value:E,children:o.jsxs("div",{id:v,className:Br.MenuInner,onKeyDown:S,ref:l,tabIndex:0,children:[r&&o.jsx(Aot,{value:d,onChange:f}),o.jsx(_ot,{filteredOptions:O}),o.jsx(Pot,{})]})})},Aot=({value:e,onChange:t})=>{const{searchPlaceholder:n}=Vm(),{listId:i,searchInputRef:r}=Wx(),s=a=>{t(a.target.value)};return o.jsx("div",{className:Br.Search,children:o.jsx(Kr,{startAdornment:o.jsx(f7e,{width:16,height:16,className:"fill-secondary"}),ref:r,value:e,placeholder:n,onChange:s,autoComplete:"off",autoCorrect:"off",spellCheck:!1,"aria-autocomplete":"list",role:"combobox","aria-controls":i,"aria-expanded":!0})})},hE=e=>"options"in e,DB=e=>e[0]&&hE(e[0]),cv=300,_ot=({filteredOptions:e})=>{const{searchEmptyMessage:t}=Vm(),{listRef:n}=Wx();if(!e.length)return typeof t=="string"?o.jsx("p",{className:Br.SearchEmpty,"data-text-only":!0,children:t}):o.jsx("div",{className:Br.SearchEmpty,children:t});const i=DB(e),r=!i&&e.length>cv,s=i?e.map(a=>o.jsx(jot,{...a},a.label)):e.slice(0,cv).map(a=>o.jsx(WOe,{...a},a.value));return o.jsxs("div",{className:Br.OptionsList,ref:n,children:[s,r&&o.jsx(qOe,{numHidden:e.length-cv})]})},Not={limit:100,label:"Show all"},jot=({label:e,options:t,optionsLimit:n=Not})=>{const i=p.useId(),{searchTerm:r,setHighlightedValue:s}=Wx(),[a,l]=p.useState(!1),c=n.limit{l(!0),s(t[n.limit].value)};return o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:Br.OptionGroupHeading,children:[o.jsx("div",{className:Br.OptionIndicatorSlot}),e]}),d.map(h=>o.jsx(WOe,{...h},h.value)),c&&o.jsx(Rot,{value:`group-limit-${i}`,label:n.label,onPointerUp:f}),u&&o.jsx(qOe,{numHidden:t.length-cv})]})},qOe=({numHidden:e})=>o.jsxs("div",{className:Br.OptionHardLimitHeading,children:[o.jsx("div",{className:Br.OptionIndicatorSlot}),`…and ${e.toLocaleString()} more options. Use search to refine results further.`]}),Rot=({value:e,label:t,onPointerUp:n})=>{const{highlightedValue:i,setHighlightedValue:r}=Wx(),s=e===i,a=()=>{s||r(e)},l=()=>{r(c=>c!==e?c:"")};return o.jsx("div",{className:yi(Br.Option,Br.OptionsLimit),"data-option-id":e,"data-highlight":s?"":void 0,role:"option","aria-selected":s,onPointerUp:n,onPointerMove:a,onPointerLeave:l,children:o.jsxs("div",{className:yi(Br.PressableInner,Br.OptionInner),children:[o.jsx("div",{className:Br.OptionIndicatorSlot}),t]})})},Iot="data-option-id",WOe=e=>{const{optionClassName:t,OptionView:n,value:i,multiple:r,onSelectRef:s}=Vm(),{valueRef:a,requestCloseRef:l,highlightedValue:c,setHighlightedValue:u}=Wx(),{value:d,disabled:f,tooltip:h}=e,m=a.current,g=r?i.includes(d):d===m,b=d===c,v=()=>{var O;r?s.current(e,g):(s.current(e),(O=l.current)==null||O.call(l))},y=()=>{b||u(d)},x=()=>{u(O=>O!==d?O:"")};return o.jsx("div",{className:yi(Br.Option,t),"data-highlight":b?"":void 0,role:"option","aria-selected":b,"data-selected":g?"":void 0,[Iot]:d,onPointerUp:f?void 0:v,onPointerMove:f?void 0:y,onPointerLeave:f?void 0:x,"aria-disabled":f,"data-disabled":f?"":void 0,children:o.jsxs("div",{className:Br.PressableInner,children:[o.jsxs("div",{className:Br.OptionInner,children:[o.jsx("div",{className:Br.OptionIndicatorSlot,children:g&&o.jsx(Qv,{className:Br.OptionCheck})}),o.jsx(n,{...e}),h&&o.jsx(vo,{content:h.content,maxWidth:h.maxWidth,side:"right",children:o.jsx(jbe,{})})]}),e.description&&o.jsxs("div",{className:Br.OptionInner,children:[o.jsx("div",{className:Br.OptionIndicatorSlot}),e.description]})]})})},Pot=()=>{const{actions:e}=Vm();return e.length===0?null:o.jsx("div",{className:Br.ActionsContainer,children:e.map(t=>o.jsx(Dot,{...t},t.id))})},Dot=({id:e,label:t,Icon:n,className:i})=>{const{onActionSelect:r}=Vm(),{requestCloseRef:s}=Wx(),a=c=>{switch(c.key){case"Tab":break;case"Enter":case" ":c.stopPropagation(),l();break;default:c.stopPropagation()}},l=()=>{var c;r(e),(c=s.current)==null||c.call(s)};return o.jsx("div",{className:Br.Action,onPointerUp:l,onKeyDown:a,tabIndex:0,children:o.jsxs("div",{className:yi(Br.ActionInner,i),children:[n&&o.jsx(n,{role:"presentation"}),t]})})},Mot=(e,t)=>e.label.toLowerCase().includes(t),Lot=(e,t,n)=>{const i=t.trim().toLocaleLowerCase();if(!i)return e;const r=s=>n(s,i);return DB(e)?e.reduce((s,a)=>{const l=a.options.filter(r);return l.length&&s.push({...a,options:l}),s},[]):e.reduce((s,a)=>(r(a)&&s.push(a),s),[])},kT=e=>{if(!e.length)return;let t;for(const n of e)if(hE(n)){const i=n.options.find(r=>!r.disabled);if(i){t=i;break}}else if(!n.disabled){t=n;break}return t},$ot=(e,t)=>{let n;for(const i of e)if(hE(i)){const r=i.options.find(s=>s.value===t);if(r){n=r;break}}else if(i.value===t){n=i;break}return n},N6=(e,t)=>{let n=[];const i=new Set(t);for(const r of e)if(hE(r)){const s=r.options.filter(a=>i.has(a.value));n=n.concat(s)}else i.has(r.value)&&n.push(r);return n},KOe=40,jf=(e,t)=>t.querySelector(`[data-option-id="${e}"]`),GOe=e=>e.matches("[data-option-id]:not([data-disabled])"),Fot=(e,t)=>{const n=jf(e,t);let i=n==null?void 0:n.nextElementSibling,r=0;for(;i&&r{const n=jf(e,t);let i=n==null?void 0:n.previousElementSibling,r=0;for(;i&&r{let e="",t;return n=>(n=n.toLowerCase(),e+=n,t&&clearTimeout(t),t=setTimeout(()=>{e=""},500),n.repeat(e.length)===e?n:e)},YOe=e=>/^[a-zA-Z0-9]$/.test(e),ZOe=(e,t,n)=>{if(!e.length)return;let i,r,s=!n;const a=({disabled:l,label:c,value:u})=>u===n?(s=!0,!1):!l&&c.toLowerCase().startsWith(t);for(const l of e)if(hE(l)){for(const c of l.options)if(a(c))if(s){r=c;break}else i=i||c}else if(a(l))if(s){r=l;break}else i=i||l;return r||i};function ia(...e){return e.filter(Boolean).join(" ")}const eX=[["14 90% 62%","28 96% 80%","3 44% 24%"],["198 72% 56%","217 88% 79%","189 42% 24%"],["263 66% 63%","291 72% 81%","242 39% 25%"],["146 49% 52%","169 66% 78%","158 38% 23%"],["334 72% 63%","15 87% 80%","350 41% 25%"]];function Uot(e){let t=2166136261;for(const a of e)t^=a.charCodeAt(0),t=Math.imul(t,16777619);const n=t>>>0,[i,r,s]=eX[n%eX.length];return{"--resource-identity-accent":i,"--resource-identity-glow":r,"--resource-identity-shadow":s,"--resource-identity-x":`${20+(n>>>7)%61}%`,"--resource-identity-y":`${18+(n>>>15)%57}%`}}function tx({seed:e,className:t}){return o.jsx("span",{className:ia("resource-card__identity-mark",t),style:Uot(e),"aria-hidden":"true"})}function Qot(e){return o.jsx("svg",{viewBox:"0 0 14 14",fill:"none","aria-hidden":"true",...e,children:o.jsxs("g",{transform:"translate(0.875 0.875)",children:[o.jsx("path",{d:"M5.869 10.719a4.849 4.849 0 1 0 0-9.698 4.849 4.849 0 0 0 0 9.698Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.jsx("path",{d:"m11.229 11.229-1.021-1.021",stroke:"currentColor",strokeWidth:"0.984375",strokeLinecap:"round",strokeLinejoin:"round"})]})})}function Ch({className:e,...t}){return o.jsx("section",{className:ia("resource-page",e),...t})}function Kx({title:e,description:t,className:n}){return o.jsxs("header",{className:ia("resource-page__header",n),children:[o.jsx("h1",{children:e}),t?o.jsx("p",{children:t}):null]})}function zot({className:e,...t}){return o.jsx("div",{className:ia("resource-detail",e),...t})}function Vot({className:e,...t}){return o.jsx("header",{className:ia("resource-detail__header",e),...t})}function Hot({title:e,description:t,identitySeed:n,meta:i,backLabel:r,onBack:s}){const{t:a}=Ae("ui"),l=r??a("resourceCollection.back");return o.jsxs("div",{className:"resource-detail__heading",children:[s?o.jsx("button",{type:"button",className:"resource-detail__back",onClick:s,"aria-label":l,title:l,children:o.jsx(C7e,{"aria-hidden":"true"})}):null,o.jsxs("div",{className:"resource-detail__heading-copy",children:[o.jsxs("div",{className:"resource-detail__title-row",children:[o.jsx("span",{className:"resource-detail__identity",children:o.jsx(tx,{seed:n})}),o.jsx("h1",{children:e}),i?o.jsx("div",{className:"resource-detail__meta",children:i}):null]}),t?o.jsx("p",{children:t}):null]})]})}function qot({className:e,...t}){return o.jsx("div",{className:ia("resource-detail__actions",e),...t})}function Wot({className:e,...t}){return o.jsx("div",{className:ia("resource-detail__body",e),...t})}function pE({title:e,description:t,identitySeed:n,meta:i,backLabel:r,onBack:s,actions:a,className:l,actionsClassName:c,bodyClassName:u,sections:d,activeSectionKey:f,navigationLabel:h,onSectionChange:m,children:g}){var O;const{t:b}=Ae("ui"),v=!!(d!=null&&d.length),y=(O=d==null?void 0:d.find(w=>w.key===f))==null?void 0:O.content,x=h??b("resourceCollection.detailNavigation");return o.jsxs(zot,{className:l,children:[o.jsxs(Vot,{children:[o.jsx(Hot,{title:e,description:t,identitySeed:n,meta:i,backLabel:r,onBack:s}),a?o.jsx(qot,{className:c,children:a}):null]}),o.jsx(Wot,{className:ia(v&&"is-split",u),children:v?o.jsxs(o.Fragment,{children:[o.jsx("nav",{className:"resource-detail__navigation","aria-label":x,children:d==null?void 0:d.map(w=>o.jsx(Ht,{type:"button",color:"secondary",variant:w.key===f?"soft":"ghost",size:"lg",pill:!1,block:!0,"aria-current":w.key===f?"page":void 0,disabled:w.disabled,onClick:()=>m==null?void 0:m(w.key),children:o.jsx("span",{className:"resource-detail__navigation-label",children:w.label})},w.key))}),o.jsx("div",{className:"resource-detail__content",children:y})]}):g})]})}function MB({className:e,...t}){return o.jsx("dl",{className:ia("resource-detail__summary",e),...t})}function JOe({title:e,description:t,actions:n,className:i}){return o.jsxs("header",{className:ia("resource-detail__section-header",i),children:[o.jsxs("div",{children:[o.jsx("h2",{children:e}),t?o.jsx("p",{children:t}):null]}),n]})}function Kot({rows:e,rowKey:t,rowLabel:n,columns:i,searchValue:r,onSearchChange:s,searchPlaceholder:a,searchLabel:l,primaryAction:c,rowActions:u,scrollRef:d,onScroll:f,busy:h,footer:m,emptyLabel:g}){const{t:b}=Ae("ui"),v=!!u,y=g??b("resourceCollection.noData");return o.jsxs("div",{className:"resource-data-table",children:[o.jsxs("div",{className:"resource-data-table__toolbar",children:[o.jsx("div",{className:"resource-data-table__search",children:o.jsx(Kr,{type:"search",value:r,onChange:x=>s(x.target.value),placeholder:a,"aria-label":l})}),c?o.jsx(Ht,{type:"button",color:"primary",disabled:c.disabled,title:c.title,onClick:c.onClick,children:c.label}):null]}),o.jsxs("div",{ref:d,className:"resource-data-table__frame","aria-busy":h||void 0,onScroll:f,children:[o.jsxs("table",{className:"resource-data-table__table",children:[o.jsx("thead",{children:o.jsxs("tr",{children:[i.map(x=>o.jsx("th",{scope:"col",className:x.className,children:x.header},x.key)),v?o.jsx("th",{scope:"col",className:"resource-data-table__actions-heading",children:o.jsx("span",{className:"sr-only",children:b("resourceCollection.actions")})}):null]})}),o.jsx("tbody",{children:e.length===0?o.jsx("tr",{children:o.jsx("td",{className:"resource-data-table__empty",colSpan:i.length+(v?1:0),children:y})}):e.map(x=>{const O=t(x),w=(n==null?void 0:n(x))??O;return o.jsxs("tr",{children:[i.map(k=>o.jsx("td",{className:k.className,children:k.render(x)},k.key)),u?o.jsx("td",{className:"resource-data-table__actions",children:o.jsx(zOe,{label:b("resourceCollection.moreActions",{label:w}),menuLabel:b("resourceCollection.actionsFor",{label:w}),items:u(x)})}):null]},O)})})]}),m]})]})}function i0({className:e,...t}){return o.jsx("div",{className:ia("resource-toolbar",e),...t})}function mE({items:e,value:t,onChange:n,ariaLabel:i,idPrefix:r,className:s}){const a=c=>{c.disabled||n(c.id)},l=(c,u)=>{var g;if(!["ArrowLeft","ArrowRight","Home","End"].includes(c.key))return;c.preventDefault();const d=e.filter(b=>!b.disabled),f=d.findIndex(b=>b.id===u.id),h=c.key==="Home"?0:c.key==="End"?d.length-1:(f+(c.key==="ArrowRight"?1:-1)+d.length)%d.length,m=d[h];m&&(n(m.id),(g=document.getElementById(`${r}-${m.id}-tab`))==null||g.focus())};return o.jsx("nav",{className:ia("resource-tabs",s),"aria-label":i,role:"tablist",children:e.map(c=>o.jsx("button",{type:"button",id:`${r}-${c.id}-tab`,className:t===c.id?"is-active":void 0,role:"tab","aria-selected":t===c.id,"aria-controls":c.panelId,tabIndex:t===c.id?0:-1,disabled:c.disabled,onClick:()=>a(c),onKeyDown:u=>l(u,c),children:c.label},c.id))})}function Em({className:e,...t}){return o.jsxs("label",{className:ia("resource-search",e),children:[o.jsx(Qot,{}),o.jsx("input",{type:"search",...t})]})}const Got=150,Xot=200;function tX(e){e.dispatchEvent(new PointerEvent("pointerdown",{bubbles:!0,cancelable:!0,pointerType:"mouse",button:0}))}function hN({id:e,ariaLabel:t,value:n,options:i,onChange:r,className:s,disabled:a=!1}){const l=p.useRef(null),c=p.useRef(null),u=p.useRef(null),d=p.useRef(!1),f=p.useCallback(()=>{c.current!==null&&(window.clearTimeout(c.current),c.current=null)},[]),h=p.useCallback(()=>{u.current!==null&&(window.clearTimeout(u.current),u.current=null)},[]),m=p.useCallback(()=>{var y;return((y=l.current)==null?void 0:y.querySelector(".resource-filter-select__trigger"))??null},[]),g=p.useCallback(()=>{h();const y=m();d.current&&(y==null?void 0:y.getAttribute("data-state"))==="open"&&tX(y),d.current=!1},[h,m]),b=p.useCallback(()=>{d.current&&(h(),u.current=window.setTimeout(g,Xot))},[h,g]),v=p.useCallback(y=>{var w;if(a||!window.matchMedia("(hover: hover) and (pointer: fine)").matches)return;h();const x=m();if(!x||x.getAttribute("data-state")==="open")return;const O=document.activeElement;O instanceof HTMLElement&&O!==x&&!((w=l.current)!=null&&w.contains(O))&&O.matches("input, textarea, [contenteditable='true']")||(f(),c.current=window.setTimeout(()=>{const k=m();!k||k.getAttribute("data-state")==="open"||(d.current=!0,tX(k))},Got))},[h,f,a,m]);return p.useEffect(()=>{const y=x=>{var E;if(!d.current)return;const O=m();if(!O||O.getAttribute("data-state")!=="open"){d.current=!1,h();return}const w=x.target;if(!(w instanceof Node))return;const k=O.getAttribute("aria-controls"),S=k?document.getElementById(k):null;if((E=l.current)!=null&&E.contains(w)||S!=null&&S.contains(w)){h();return}b()};return document.addEventListener("pointermove",y,{passive:!0}),()=>{document.removeEventListener("pointermove",y),f(),h()}},[h,f,m,b]),o.jsxs("div",{ref:l,className:ia("resource-filter-select",s),onMouseEnter:v,onMouseLeave:()=>{f(),b()},children:[o.jsx("label",{className:"sr-only",htmlFor:e,children:t}),o.jsx(Es,{id:e,value:n,options:i,size:"md",variant:"ghost",pill:!1,block:!1,align:"end",listMinWidth:160,disabled:a,triggerClassName:"resource-filter-select__trigger",onChange:y=>r(y.value)})]})}const r0=p.forwardRef(function({className:t,...n},i){return o.jsx("section",{ref:i,className:ia("resource-results",t),...n})});function zd(){const{t:e}=Ae("ui");return o.jsxs("div",{className:"resource-loading-state",role:"status","aria-live":"polite","aria-busy":"true",children:[o.jsx(Gk,{size:16}),o.jsx(kn,{as:"span",duration:2.4,children:e("resourceCollection.loading")})]})}function Gx({className:e,...t}){return o.jsx("div",{className:ia("resource-grid",e),...t})}function LB({className:e,footer:t,actions:n,activateLabel:i,onActivate:r,children:s,...a}){return o.jsxs("article",{className:ia("resource-card",r&&"is-interactive",e),...a,children:[r&&i?o.jsx("button",{type:"button",className:"resource-card__target","aria-label":i,title:i,onClick:r}):null,o.jsx("div",{className:"resource-card__content",children:s}),t||n?o.jsxs("footer",{className:"resource-card__footer",children:[t,n?o.jsx("div",{className:"resource-card__actions",children:n}):null]}):null]})}function j6({className:e,iconOnly:t=!1,tone:n="secondary",...i}){return o.jsx("button",{type:"button",className:ia("resource-card__action",`is-${n}`,t&&"is-icon-only",e),...i})}function R6({label:e,icon:t="arrow",tone:n="primary",className:i,children:r,title:s,...a}){const l=t==="play"?o.jsx(u7e,{}):t==="plus"?o.jsx(Ibe,{}):o.jsx(W9e,{});return o.jsx(j6,{className:i,iconOnly:!0,tone:n,"aria-label":e,title:s??e,...a,children:r??l})}function $B({leading:e,title:t,titleText:n,subtitle:i,status:r}){return o.jsxs("div",{className:"resource-card__header",children:[o.jsxs("div",{className:"resource-card__identity",children:[e,o.jsxs("div",{className:"resource-card__title-copy",children:[o.jsx("h3",{title:n,children:t}),i]})]}),r]})}function FB({children:e,title:t}){return o.jsx("p",{className:"resource-card__description",title:t,children:e})}function eSe({items:e,className:t}){return o.jsx("dl",{className:ia("resource-card__metadata",t),children:e.map((n,i)=>o.jsxs("div",{className:n.className,children:[o.jsx("dt",{className:n.hideLabel?"sr-only":void 0,children:n.label}),o.jsx("dd",{title:n.title,children:n.value})]},`${String(n.label)}:${i}`))})}function jb({className:e,icon:t,children:n,...i}){return o.jsxs("button",{type:"button",className:ia("resource-create-card",e),...i,children:[o.jsx("span",{className:"resource-create-card__icon","aria-hidden":"true",children:t}),o.jsx("span",{children:n})]})}const Yot=new Set(["avif","bmp","gif","heic","jpeg","jpg","png","svg","tif","tiff","webp"]),Zot=new Set(["avi","m4v","mkv","mov","mp4","mpeg","mpg","webm"]),Jot=new Set(["csv","htm","html","json","md","pdf","svg","txt","xml","yaml","yml"]);function tSe(e){const t=e.lastIndexOf(".");return t<0?"":e.slice(t+1).toLocaleLowerCase()}function pN(e,t){if(!Number.isFinite(e))return t;const n=e;return n>1e10?n:n*1e3}function elt(e){var t,n;return((t=e.actions)==null?void 0:t.artifactDelta)??((n=e.actions)==null?void 0:n.artifact_delta)}function tlt(e){return`${e.replace(/\.pptx$/i,"")}.preview.webp`}function nlt(e){var t;return(((t=e.content)==null?void 0:t.parts)??[]).map(n=>n.functionResponse??n.function_response).filter(n=>!!n)}function ilt(e){if(!e)return{};const t=e.result;return t&&typeof t=="object"&&!Array.isArray(t)?t:e}function nX(e,t,n){var i;if(/\.[A-Za-z0-9]{2,8}$/.test(e))return e;try{const r=new URL(t).pathname.split("/").filter(Boolean),a=((i=(r[r.length-1]??"").match(/\.[A-Za-z0-9]{2,8}$/))==null?void 0:i[0])??"";if(a)return`${e}${a}`}catch{}return`${e}.${n==="image"?"png":"mp4"}`}function rlt(e,t){const n=ilt(t),i=e==="image_generate"||e.endsWith("_image_generate"),r=["video_generate","video_task_query"].some(u=>e===u||e.endsWith(`_${u}`));if(!i&&!r)return[];const s=i?"image":"video",a=[],l=n.success_list;if(Array.isArray(l)){for(const u of l)if(!(!u||typeof u!="object"||Array.isArray(u)))for(const[d,f]of Object.entries(u))typeof f=="string"&&f.startsWith("https://")&&a.push({name:nX(d,f,s),url:f,type:s})}const c=n.video_url;if(r&&typeof c=="string"&&c.startsWith("https://")){const u=typeof n.task_id=="string"?n.task_id:void 0;a.push({name:nX(u||"generated-video",c,s),url:c,type:s,taskId:u})}return a}function iX(e,t){return new Date(pN(e,t)||Date.now()).toISOString()}function slt(e,t){var r;const n=[],i=new Set;for(const s of e)for(const a of s.sessions){const l=pN(a.lastUpdateTime,Date.now()),c=mR(a.events,t);for(const u of a.events??[])for(const d of nlt(u)){const f=(d==null?void 0:d.name)??"";for(const h of rlt(f,d==null?void 0:d.response)){const m=`${a.id}:${u.id??""}:${f}:${h.url}`;i.has(m)||(i.add(m),n.push({sourceUrl:h.url,name:h.name,mimeType:h.type==="image"?"image/png":"video/mp4",appName:s.appName,agentId:s.agentId,agentName:((r=s.agentName)==null?void 0:r.trim())||s.appName,sessionId:a.id,sessionTitle:c,sessionUpdatedAt:iX(a.lastUpdateTime,l),createdAt:iX(u.timestamp,l),origin:{runtimeId:s.runtimeId,region:s.region,eventId:u.id,invocationId:u.invocationId??u.invocation_id,toolName:f,taskId:h.taskId}}))}}}return n}function nSe(e){const t=tSe(e);return Yot.has(t)?"image":Zot.has(t)?"video":"document"}function alt(e){const t=nSe(e);return t==="image"?"image":t==="video"?"video":Jot.has(tSe(e))?"frame":"unavailable"}function olt(e,t,n="en-US"){var r;const i=[];for(const s of e)for(const a of s.sessions){const l=pN(a.lastUpdateTime,0),c=new Map;for(const u of a.events??[]){const d=elt(u);if(!d)continue;const f=pN(u.timestamp,l);for(const[h,m]of Object.entries(d)){if(!h||!Number.isFinite(m))continue;const g=c.get(h);(!g||m>=g.version)&&c.set(h,{filename:h,version:m,createdAt:f})}}for(const u of c.values()){if(/\.preview\.webp$/i.test(u.filename))continue;const d=c.get(tlt(u.filename)),f=d??u,h=d?"image":alt(u.filename);i.push({id:`${s.appName}:${a.id}:${u.filename}:${u.version}`,appName:s.appName,agentId:s.agentId,sessionId:a.id,sessionTitle:mR(a.events,t),agentName:((r=s.agentName)==null?void 0:r.trim())||s.appName,sessionUpdatedAt:l,name:u.filename,version:u.version,type:nSe(u.filename),createdAt:u.createdAt||l,origin:{runtimeId:s.runtimeId,region:s.region},preview:{filename:f.filename,version:f.version,mode:h}})}}return i.sort((s,a)=>a.createdAt-s.createdAt||s.name.localeCompare(a.name,n))}function iSe(e,t,n){if(!e)return n;const i=new Date(e);if(Number.isNaN(i.getTime()))return n;const r=new Date;return i.getFullYear()===r.getFullYear()&&i.getMonth()===r.getMonth()&&i.getDate()===r.getDate()?new Intl.DateTimeFormat(t,{hour:"2-digit",minute:"2-digit",hour12:!1}).format(i):new Intl.DateTimeFormat(t,{month:"numeric",day:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1}).format(i)}function rSe(e){return!e||e<=0?"":e<1024?`${e} B`:e<1024*1024?`${Math.round(e/1024)} KB`:e<1024*1024*1024?`${(e/(1024*1024)).toFixed(e<10*1024*1024?1:0)} MB`:`${(e/(1024*1024*1024)).toFixed(1)} GB`}const SM=40;function llt(e){return[{value:"all",label:e("artifactLibrary.types.all")},{value:"document",label:e("artifactLibrary.types.document")},{value:"image",label:e("artifactLibrary.types.image")},{value:"video",label:e("artifactLibrary.types.video")}]}function clt(e,t){return e(`artifactLibrary.types.${t}`)}function ET(e){return e instanceof Error?e.message:String(e)}function sSe({artifact:e,large:t=!1}){return o.jsx("div",{className:`library-artifact-preview library-artifact-preview--${e.type}${t?" is-large":""}`,children:e.thumbnailUrl?o.jsxs(o.Fragment,{children:[o.jsx("img",{className:"library-artifact-preview-media",src:e.thumbnailUrl,alt:"",loading:"lazy"}),e.type==="video"?o.jsx("span",{className:"artifact-video-play is-overlay","aria-hidden":"true",children:o.jsx(XG,{})}):null]}):e.type==="document"?o.jsxs("div",{className:"artifact-document-sheet","aria-hidden":"true",children:[o.jsx("span",{className:"is-title"}),o.jsx("span",{}),o.jsx("span",{}),o.jsx("span",{className:"is-short"})]}):e.type==="image"?o.jsxs("div",{className:"artifact-image-scene","aria-hidden":"true",children:[o.jsx("span",{className:"artifact-image-sun"}),o.jsx("span",{className:"artifact-image-plane artifact-image-plane--back"}),o.jsx("span",{className:"artifact-image-plane artifact-image-plane--front"})]}):o.jsxs("div",{className:"artifact-video-frame","aria-hidden":"true",children:[o.jsx("span",{className:"artifact-video-orbit"}),o.jsx("span",{className:"artifact-video-node artifact-video-node--one"}),o.jsx("span",{className:"artifact-video-node artifact-video-node--two"}),o.jsx("span",{className:"artifact-video-play",children:o.jsx(XG,{})})]})})}function ult({artifact:e,pendingAction:t,disabled:n,onPreview:i,onDownload:r,onEdit:s,onDelete:a,onOpenSource:l,t:c,locale:u}){const d=t===`download:${e.id}`;return o.jsxs("tr",{className:"library-artifact-row",children:[o.jsx("td",{className:"library-artifact-file",children:o.jsxs("button",{type:"button",className:"library-artifact-preview-trigger","aria-label":c("artifactLibrary.previewArtifact",{name:e.name}),disabled:n||!!t,onClick:()=>i(e),children:[o.jsx("div",{className:"library-artifact-thumbnail",children:o.jsx(sSe,{artifact:e})}),o.jsxs("div",{className:"library-artifact-row-title",children:[o.jsx("span",{className:"library-artifact-row-name",title:e.name,children:e.name}),o.jsx("span",{className:"library-artifact-row-size",children:rSe(e.sizeBytes)||"—"})]})]})}),o.jsx("td",{className:"library-artifact-source-cell",children:l?o.jsxs("button",{type:"button",className:"library-artifact-source-link",title:`${e.agentName} / ${e.sessionTitle}`,onClick:()=>l(e),children:[o.jsx("span",{children:e.agentName}),o.jsx("span",{"aria-hidden":"true",children:"/"}),o.jsx("span",{children:e.sessionTitle})]}):o.jsxs("span",{title:`${e.agentName} / ${e.sessionTitle}`,children:[e.agentName," / ",e.sessionTitle]})}),o.jsx("td",{className:"library-artifact-time",children:iSe(e.updatedAt??e.createdAt,u,c("artifactLibrary.unknownTime"))}),o.jsx("td",{className:"library-artifact-actions-cell",children:o.jsx("div",{className:"library-artifact-actions",children:o.jsx(zOe,{label:c("artifactLibrary.moreActions",{name:e.name}),menuLabel:c("artifactLibrary.actionMenu",{name:e.name}),placement:"bottom-end",items:[{label:c(d?"artifactLibrary.downloading":"artifactLibrary.download"),onSelect:()=>r(e),disabled:n||!!t},...s?[{label:c("artifactLibrary.edit"),onSelect:()=>s(e),disabled:n||!!t||e.canManage===!1}]:[],...a?[{label:c("artifactLibrary.delete"),onSelect:()=>a(e),disabled:n||!!t||e.canManage===!1,danger:!0}]:[]]})})})]})}function dlt({sources:e=[],items:t,userId:n="",active:i=!0,activationRevision:r=0,loading:s=!1,error:a="",onRetry:l,onEdit:c,onDelete:u,onDownload:d,onOpenSource:f,region:h,toolbarLeading:m,toolbarFilters:g}){var $t,je;const{t:b,i18n:v}=Ae("workspaceTools"),y=v.resolvedLanguage||v.language,[x,O]=p.useState("all"),[w,k]=p.useState(""),[S,E]=p.useState(null),[C,N]=p.useState(""),[T,j]=p.useState(""),[A,L]=p.useState(""),[_,P]=p.useState(""),[I,$]=p.useState({}),[M,B]=p.useState(()=>new Set),[R,V]=p.useState(null),[K,Q]=p.useState(!1),[q,U]=p.useState(""),[G,ae]=p.useState(null),[re,se]=p.useState(!1),[me,Z]=p.useState(SM),X=p.useRef(null),J=p.useRef(null),oe=p.useRef(0),Ee=p.useRef(null),he=p.useRef(null),Me=p.useRef(!1),De=p.useCallback(()=>{oe.current+=1,E(null),N(""),j("")},[]),_e=p.useMemo(()=>t?[...t]:olt(e,b("library.untitledSession"),y),[t,y,e,b]),Re=p.useMemo(()=>_e.filter(ve=>!M.has(ve.id)).map(ve=>I[ve.id]??ve),[_e,I,M]);p.useEffect(()=>()=>{oe.current+=1},[]),p.useEffect(()=>()=>{C&&URL.revokeObjectURL(C)},[C]),p.useEffect(()=>{var Se;if(!S)return;const ve=document.activeElement,ze=document.body.style.overflow;document.body.style.overflow="hidden",(Se=X.current)==null||Se.focus();const et=Kt=>{if(Kt.key==="Escape"){Kt.preventDefault(),De();return}if(Kt.key!=="Tab")return;const en=J.current;if(!en)return;const cn=Array.from(en.querySelectorAll('button:not([disabled]), video[controls], iframe, [tabindex]:not([tabindex="-1"])')).filter(ut=>ut.getClientRects().length>0);if(cn.length===0){Kt.preventDefault();return}const kt=cn[0],Pt=cn[cn.length-1];Kt.shiftKey&&document.activeElement===kt?(Kt.preventDefault(),Pt.focus()):!Kt.shiftKey&&document.activeElement===Pt&&(Kt.preventDefault(),kt.focus())};return document.addEventListener("keydown",et),()=>{document.removeEventListener("keydown",et),document.body.style.overflow=ze,ve!=null&&ve.isConnected&&ve.focus()}},[De,S]);const Xe=async ve=>{const ze=oe.current+1;if(oe.current=ze,L(""),N(""),E(ve),ve.preview.mode!=="unavailable"){if(ve.contentUrl){N(ve.contentUrl);return}j(`preview:${ve.id}`);try{const et=await t7(ve.appName,n,ve.sessionId,ve.preview.filename,ve.preview.version);if(oe.current!==ze){URL.revokeObjectURL(et);return}N(et)}catch(et){oe.current===ze&&L(b("artifactLibrary.previewFailed",{name:ve.name,message:ET(et)}))}finally{oe.current===ze&&j("")}}},Ce=async ve=>{L(""),j(`download:${ve.id}`);try{d?await d(ve):await e7(ve.appName,n,ve.sessionId,ve.name,ve.version),P(b("artifactLibrary.downloadStarted",{name:ve.name}))}catch(ze){L(b("artifactLibrary.downloadFailed",{name:ve.name,message:ET(ze)}))}finally{j("")}},Fe=async ve=>{if(!(!R||!c)){Q(!0),U("");try{const et=await c(R,ve)??{...R,...ve,updatedAt:Date.now()};$(Se=>({...Se,[R.id]:et})),P(b("artifactLibrary.updated",{name:et.name})),V(null)}catch(ze){U(ET(ze))}finally{Q(!1)}}},Oe=async()=>{if(!(!G||!u)){se(!0),L("");try{await u(G),B(ve=>new Set([...ve,G.id])),P(b("artifactLibrary.deleted",{name:G.name})),(S==null?void 0:S.id)===G.id&&De(),ae(null)}catch(ve){L(b("artifactLibrary.deleteFailed",{name:G.name,message:ET(ve)})),ae(null)}finally{se(!1)}}},$e=p.useMemo(()=>{const ve=w.trim().toLocaleLowerCase();return Re.filter(ze=>{var et;return(et=ze.origin)!=null&&et.region&&ze.origin.region!==h||x!=="all"&&ze.type!==x?!1:ve?[ze.name,ze.sessionTitle,ze.agentName].some(Se=>Se.toLocaleLowerCase().includes(ve)):!0})},[x,Re,w,h]),Y=p.useMemo(()=>$e.slice(0,me),[$e,me]),pe=me<$e.length,Te=p.useCallback(()=>{Me.current||(Me.current=!0,Z(ve=>ve+SM))},[]);p.useEffect(()=>{Z(SM)},[r,x,w,$e.length]),p.useEffect(()=>{Me.current=!1},[me]),p.useEffect(()=>{const ve=he.current,ze=Ee.current;if(!i||!ve||!ze||!pe)return;const et=new IntersectionObserver(([Se])=>{Se.isIntersecting&&Te()},{root:ze,rootMargin:"240px 0px",threshold:.01});return et.observe(ve),()=>et.disconnect()},[i,pe,Te,me]);const We=()=>{const ve=Ee.current;!i||!ve||!pe||ve.scrollHeight-ve.scrollTop-ve.clientHeight<=240&&Te()},nt=!!w.trim()||x!=="all"||Re.some(ve=>{var ze;return((ze=ve.origin)==null?void 0:ze.region)&&ve.origin.region!==h});return o.jsxs("div",{className:"artifact-library-page resource-collection",children:[o.jsxs(i0,{className:"artifact-library-toolbar library-resource-toolbar",children:[m,o.jsxs("div",{className:"resource-toolbar__actions",children:[o.jsx(hN,{id:"artifact-type-filter",ariaLabel:b("artifactLibrary.typeFilter"),value:x,options:llt(b),onChange:O}),g,o.jsx(Em,{"aria-label":b("artifactLibrary.searchAria"),value:w,onChange:ve=>k(ve.target.value),placeholder:b("artifactLibrary.searchPlaceholder")})]})]}),a&&Re.length>0?o.jsxs("div",{className:"artifact-library-banner",role:"alert",children:[o.jsx("span",{children:a}),l?o.jsx("button",{type:"button",onClick:l,children:b("artifactLibrary.retry")}):null]}):null,A?o.jsxs("div",{className:"artifact-library-banner",role:"alert",children:[o.jsx("span",{children:A}),o.jsx("button",{type:"button",onClick:()=>L(""),children:b("artifactLibrary.close")})]}):null,o.jsx(r0,{ref:Ee,className:"artifact-library-results","aria-label":b("artifactLibrary.listAria"),onScroll:We,children:o.jsxs("div",{className:"artifact-library-panel",children:[s&&Re.length===0?o.jsx(zd,{}):a&&Re.length===0?o.jsxs("div",{className:"artifact-library-empty is-error",role:"alert",children:[o.jsx("p",{children:b("artifactLibrary.loadFailed")}),o.jsx("span",{children:a}),l?o.jsx("button",{type:"button",onClick:l,children:b("artifactLibrary.reload")}):null]}):$e.length===0?o.jsxs("div",{className:"artifact-library-empty",children:[o.jsx("p",{children:b(nt?"artifactLibrary.noMatch":"artifactLibrary.noArtifacts")}),o.jsx("span",{children:b(nt?"artifactLibrary.searchHint":"artifactLibrary.emptyHint")})]}):o.jsx("div",{className:"artifact-library-list",children:o.jsxs("table",{className:"artifact-library-table",children:[o.jsxs("colgroup",{children:[o.jsx("col",{className:"artifact-library-table__file-column"}),o.jsx("col",{className:"artifact-library-table__source-column"}),o.jsx("col",{className:"artifact-library-table__time-column"}),o.jsx("col",{className:"artifact-library-table__actions-column"})]}),o.jsx("thead",{children:o.jsxs("tr",{children:[o.jsx("th",{scope:"col",children:b("artifactLibrary.columns.name")}),o.jsx("th",{scope:"col",children:b("artifactLibrary.columns.source")}),o.jsx("th",{scope:"col",children:b("artifactLibrary.columns.updatedAt")}),o.jsx("th",{scope:"col",className:"artifact-library-table__actions-heading",children:b("artifactLibrary.columns.actions")})]})}),o.jsx("tbody",{children:Y.map(ve=>o.jsx(ult,{artifact:ve,pendingAction:T,disabled:!n&&!t,onPreview:ze=>void Xe(ze),onDownload:ze=>void Ce(ze),onEdit:c?ze=>{U(""),V(ze)}:void 0,onDelete:u?ae:void 0,onOpenSource:f,t:b,locale:y},ve.id))})]})}),pe?o.jsx("div",{ref:he,className:"artifact-library-load-more",role:"status","aria-live":"polite",children:o.jsx(kn,{as:"span",duration:2.4,children:b("artifactLibrary.loadingMore")})}):null]})}),o.jsx("p",{className:"artifact-library-status","aria-live":"polite",children:_}),S?o.jsxs("div",{className:"artifact-library-preview-dialog",role:"dialog","aria-modal":"true","aria-labelledby":"artifact-library-preview-title",children:[o.jsx("button",{type:"button",className:"artifact-library-preview-backdrop","aria-label":b("artifactLibrary.preview.close"),onClick:De}),o.jsxs("div",{ref:J,className:"artifact-library-preview-panel",children:[o.jsxs("header",{children:[o.jsxs("div",{children:[o.jsx("h2",{id:"artifact-library-preview-title",children:S.name}),o.jsx("p",{children:b("artifactLibrary.preview.meta",{type:clt(b,S.type),version:S.version})})]}),o.jsx("button",{ref:X,type:"button","aria-label":b("artifactLibrary.preview.close"),onClick:De,children:o.jsx(QOe,{})})]}),o.jsxs("div",{className:"artifact-library-preview-content",children:[o.jsx("div",{className:"artifact-library-preview-canvas",children:T===`preview:${S.id}`?o.jsx(kn,{as:"span",duration:2.4,children:b("artifactLibrary.preview.loading")}):C&&S.preview.mode==="image"?o.jsx("img",{src:C,alt:b("artifactLibrary.preview.alt",{name:S.name})}):C&&S.preview.mode==="video"?o.jsx("video",{src:C,controls:!0,"aria-label":b("artifactLibrary.preview.alt",{name:S.name})}):C&&S.preview.mode==="frame"?o.jsx("iframe",{src:C,title:b("artifactLibrary.preview.alt",{name:S.name})}):o.jsxs("div",{className:"artifact-library-preview-unavailable",children:[o.jsx(sSe,{artifact:S,large:!0}),o.jsx("p",{children:b(A?"artifactLibrary.preview.loadFailed":"artifactLibrary.preview.unsupported")})]})}),o.jsxs("aside",{className:"artifact-library-preview-details","aria-label":b("artifactLibrary.preview.sourceAria"),children:[S.description?o.jsx("p",{className:"artifact-library-preview-description",children:S.description}):null,o.jsxs("dl",{children:[o.jsxs("div",{children:[o.jsx("dt",{children:b("artifactLibrary.preview.agent")}),o.jsx("dd",{title:S.agentName,children:S.agentName})]}),o.jsxs("div",{children:[o.jsx("dt",{children:b("artifactLibrary.preview.session")}),o.jsx("dd",{title:S.sessionTitle,children:S.sessionTitle})]}),($t=S.origin)!=null&&$t.toolName?o.jsxs("div",{children:[o.jsx("dt",{children:b("artifactLibrary.preview.tool")}),o.jsx("dd",{children:S.origin.toolName})]}):null,o.jsxs("div",{children:[o.jsx("dt",{children:b("artifactLibrary.preview.createdAt")}),o.jsx("dd",{children:iSe(S.createdAt,y,b("artifactLibrary.unknownTime"))})]}),S.sizeBytes?o.jsxs("div",{children:[o.jsx("dt",{children:b("artifactLibrary.preview.fileSize")}),o.jsx("dd",{children:rSe(S.sizeBytes)})]}):null]}),(je=S.tags)!=null&&je.length?o.jsx("div",{className:"artifact-library-preview-tags","aria-label":b("artifactLibrary.preview.tags"),children:S.tags.map(ve=>o.jsx("span",{children:ve},ve))}):null]})]}),o.jsxs("footer",{children:[o.jsxs("div",{className:"artifact-library-preview-footer-start",children:[f?o.jsxs("button",{type:"button",className:"is-secondary",onClick:()=>{const ve=S;De(),f(ve)},children:[o.jsx(Pat,{}),b("artifactLibrary.preview.viewSession")]}):null,c?o.jsxs("button",{type:"button",className:"is-secondary",disabled:S.canManage===!1,onClick:()=>{const ve=S;De(),U(""),V(ve)},children:[o.jsx(Dat,{}),b("artifactLibrary.edit")]}):null]}),o.jsxs("button",{type:"button",disabled:T.startsWith("download:")||!n&&!t,onClick:()=>void Ce(S),children:[o.jsx(Iat,{}),b("artifactLibrary.download")]})]})]})]}):null,R?o.jsx($at,{artifact:R,busy:K,error:q,onClose:()=>{K||V(null)},onSave:ve=>void Fe(ve)}):null,G?o.jsx(gc,{title:b("artifactLibrary.deleteDialog.title"),description:b("artifactLibrary.deleteDialog.description",{name:G.name}),confirmLabel:b(re?"artifactLibrary.deleteDialog.deleting":"artifactLibrary.deleteDialog.confirm"),closeLabel:b("artifactLibrary.deleteDialog.close"),variant:"danger",busy:re,onCancel:()=>{re||ae(null)},onConfirm:()=>void Oe()}):null]})}on.hasResourceBundle("en-US","workspaceTools")||on.addResourceBundle("en-US","workspaceTools",ble,!0,!0);on.hasResourceBundle("zh-CN","workspaceTools")||on.addResourceBundle("zh-CN","workspaceTools",Pfe,!0,!0);function Hm(e,t={}){return on.t(e,{...t,ns:"workspaceTools"})}function flt(e,t){if(e&&typeof e=="object"&&"detail"in e){const n=e.detail;if(typeof n=="string"&&n.trim())return n}return t}async function gE(e,t){if(e.ok)return e;let n;try{n=await e.json()}catch{n=void 0}throw new Error(flt(n,Hm("artifactLibrary.api.withStatus",{message:t,status:e.status})))}function kM(e){if(typeof e=="number")return e;if(typeof e!="string")return 0;const t=Date.parse(e);return Number.isFinite(t)?t:0}function aSe(e){const t=e;return{...t,createdAt:kM(t.createdAt),updatedAt:kM(t.updatedAt),sessionUpdatedAt:kM(t.sessionUpdatedAt)}}async function oSe(e){const t=await e.json();return Array.isArray(t.items)?t.items.map(aSe):[]}async function hlt(){const e=await gE(await Rn("/web/artifacts"),Hm("artifactLibrary.api.listFailed"));return oSe(e)}async function plt(e){if(e.length===0)return hlt();const t=await gE(await Rn("/web/artifacts/sync",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({candidates:e})},24e4),Hm("artifactLibrary.api.syncFailed"));return oSe(t)}async function mlt(e,t){const n=await gE(await Rn(`/web/artifacts/${encodeURIComponent(e.id)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)}),Hm("artifactLibrary.api.updateFailed"));return aSe(await n.json())}async function glt(e){await gE(await Rn(`/web/artifacts/${encodeURIComponent(e.id)}`,{method:"DELETE"}),Hm("artifactLibrary.api.deleteFailed"))}async function blt(e){const n=await(await gE(await Rn(`/web/artifacts/${encodeURIComponent(e.id)}/content?download=true`,{},24e4),Hm("artifactLibrary.api.downloadFailed"))).blob(),i=URL.createObjectURL(n),r=document.createElement("a");r.href=i,r.download=e.name,document.body.appendChild(r),r.click(),r.remove(),window.setTimeout(()=>URL.revokeObjectURL(i),0)}const lSe="KNOWLEDGE_PROVIDER_ASSOCIATION_INVALID";class YR extends Error{constructor(n,i,r={}){super(n);Ai(this,"status");Ai(this,"errorCode");Ai(this,"requestId");Ai(this,"diagnostics");Ai(this,"detail");Ai(this,"payload");Ai(this,"rawBody");this.name="KnowledgeRequestError",this.status=i;const s=typeof r=="string"?{errorCode:r}:r;this.errorCode=s.errorCode||"",this.requestId=s.requestId||"",this.diagnostics=s.diagnostics,this.detail=s.detail,this.payload=s.payload,this.rawBody=s.rawBody||""}}class cSe extends Error{constructor(n){super(n.map(({region:i,error:r})=>`${i}: ${r.message||H("knowledge.loadFailed")}`).join(` +`));Ai(this,"failures");this.name="KnowledgeRegionAggregateError",this.failures=n}}const ylt=new Set(["ak","apikey","sk","accesskey","accesskeyid","authorization","authkey","clientsecret","cookie","credential","credentials","password","passwd","privatekey","secret","secretaccesskey","secretkey","securitytoken","sessiontoken","setcookie","token"]),vlt=6,rX=50,uSe=4e3;function xlt(e){return e.toLowerCase().replace(/[^a-z0-9]/g,"")}function wlt(e){const t=xlt(e);return ylt.has(t)||t.endsWith("password")||t.endsWith("secret")||t.endsWith("token")||t.endsWith("credential")}function Olt(e){return/<\s*(?:!doctype|html|head|body|script|style)\b/i.test(e)}function Uw(e){if(Olt(e))return H("knowledge.htmlHidden");const t=H("knowledge.redacted");return e.replace(/\bBearer\s+[^\s,;]+/gi,`Bearer ${t}`).replace(/\b(?:set-)?cookie\s*:\s*[^\r\n]*/gi,`cookie: ${t}`).replace(/\bAKLT[A-Za-z0-9_-]{6,}\b/g,t).replace(/((?:access[_-]?key(?:[_-]?id)?|secret(?:[_-]?(?:access)?[_-]?key)?|session[_-]?token|security[_-]?token|client[_-]?secret|api[_-]?key|authorization|cookie|[a-z0-9_-]*(?:password|secret|token)|credential|ak|sk)\s*[:=]\s*)(?:"[^"]*"|'[^']*'|[^\s,;&]+)/gi,`$1${t}`).replace(/([?&](?:access[_-]?key|api[_-]?key|client[_-]?secret|security[_-]?token|session[_-]?token|secret|token|password|authorization|cookie|credential)=)[^&#\s]+/gi,`$1${t}`)}function I6(e,t=0,n=new WeakSet){if(e===null||typeof e=="number"||typeof e=="boolean")return e;if(typeof e=="string")return Uw(e).slice(0,uSe);if(typeof e!="object")return;if(t>=vlt)return H("knowledge.depthTruncated");if(n.has(e))return H("knowledge.circularReference");if(n.add(e),Array.isArray(e))return e.slice(0,rX).map(r=>I6(r,t+1,n));const i={};return Object.entries(e).slice(0,rX).forEach(([r,s])=>{i[r]=wlt(r)?H("knowledge.redacted"):I6(s,t+1,n)}),i}function sX(e){if(e===void 0)return"";const t=I6(e);if(typeof t=="string")return t;if(t===void 0)return"";try{return JSON.stringify(t).slice(0,uSe)}catch{return H("knowledge.diagnosticsUnavailable")}}function go(e,t){if(e instanceof cSe)return e.failures.map(({region:a,error:l})=>`${a} +${go(l,t)}`).join(` -`);if(!(e instanceof HR))return(e instanceof Error?Lw(e.message):"")||t;const n=Lw(e.message)||t,i=[Number.isFinite(e.status)?V("knowledge.statusCode",{status:e.status}):"",e.errorCode?V("knowledge.errorCode",{code:Lw(e.errorCode)}):"",e.requestId?V("knowledge.requestId",{requestId:Lw(e.requestId)}):""].filter(Boolean).join(" · "),r=XK(e.diagnostics),s=XK(e.detail);return[n,i,r?V("knowledge.diagnostics",{diagnostics:r}):"",s&&s!==n?V("knowledge.detail",{detail:s}):""].filter(Boolean).join(` -`)}function bA(...e){for(const t of e)if(typeof t=="string"&&t.trim())return t.trim();return""}function alt(e){return Array.isArray(e)?e.map(t=>{const n=iu(t),i=bA(n.msg,n.message);if(!i)return"";const r=Array.isArray(n.loc)?n.loc.filter(s=>typeof s=="string"||typeof s=="number").map(String).join("."):"";return r?`${r}: ${i}`:i}).filter(Boolean).join("; "):""}function olt(e,t=!0){const n=iu(e),i=Object.prototype.hasOwnProperty.call(n,"detail")?n.detail:typeof e=="string"?e:void 0,r=iu(i);return{message:typeof i=="string"?t?i.trim():"":bA(r.message,n.message,alt(i)),errorCode:bA(r.errorCode,n.errorCode),requestId:bA(r.requestId,r.request_id,r.RequestId,n.requestId,n.request_id),diagnostics:r.diagnostics??n.diagnostics,detail:i,payload:e}}function iu(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:{}}function Di(e){return typeof e=="string"?e:""}function $S(e,t){return typeof e=="number"&&Number.isFinite(e)?e:t}function DB(e){const t=iu(e);return{id:Di(t.id),name:Di(t.name),description:Di(t.description),providerType:Di(t.providerType),providerKnowledgeId:Di(t.providerKnowledgeId),projectName:Di(t.projectName),region:Di(t.region),status:Di(t.status),createdAt:Di(t.createdAt),updatedAt:Di(t.updatedAt),ownerId:Di(t.ownerId),ownerLabel:Di(t.ownerLabel),canManage:t.canManage===!0}}function hE(e){const t=iu(e);return{id:Di(t.id),name:Di(t.name),type:Di(t.type),sizeBytes:$S(t.sizeBytes,0),status:Di(t.status),url:Di(t.url),tosPath:Di(t.tosPath),metadata:iu(t.metadata),createdAt:Di(t.createdAt),updatedAt:Di(t.updatedAt),sourceMarkdown:Di(t.sourceMarkdown)}}function llt(e){const t=iu(e),n=t.attachment,i=iu(n);return{id:Di(t.id),title:Di(t.title),content:Di(t.content),attachmentUrl:Di(t.attachmentUrl)||Di(i.url)||Di(i.previewUrl),attachmentType:Di(t.attachmentType)||Di(i.type)||Di(i.mimeType),attachment:n,tableFields:t.tableFields}}async function Gu(e,t={},n=Wo){var f;const i=Hu(Dh(t.headers));i.set("accept","application/json"),t.body&&!(t.body instanceof FormData)&&i.set("content-type","application/json");const r=await fetch(e,{...t,headers:i,signal:Ol(t.signal,n)});if(r.ok)return r.status===204?void 0:r.json();const s=await r.text();let a=s,l=!1;if(s)try{a=JSON.parse(s),l=!0}catch{}const c=((f=r.headers.get("content-type"))==null?void 0:f.toLowerCase())||"",u=olt(a,l||c.startsWith("text/plain")),d=r.status===401?V("knowledge.signInRequired"):r.status===403?V("knowledge.forbidden"):r.status===404?V("knowledge.notFound"):r.status===409?V("knowledge.conflict"):V("knowledge.requestFailed",{status:r.status});throw new HR(u.message||d,r.status,{errorCode:u.errorCode,requestId:u.requestId,diagnostics:u.diagnostics,detail:u.detail,payload:u.payload,rawBody:s})}function e0(e){const t=new URLSearchParams;e.trim()&&t.set("region",e.trim());const n=t.toString();return n?`?${n}`:""}async function clt(e){var r;const t=new URLSearchParams({region:e.region,pageSize:String(e.pageSize??30)});(r=e.projectName)!=null&&r.trim()&&t.set("projectName",e.projectName.trim()),e.nextToken&&t.set("nextToken",e.nextToken);const n=await Gu(`/web/knowledge-bases?${t.toString()}`,{signal:e.signal}),i=iu(n);return{items:Array.isArray(i.items)?i.items.map(DB):[],nextToken:Di(i.nextToken)}}function ult(e){return`${e.region}\0${e.id}`}async function dlt(e){var l;const t=[...new Set(e.regions.map(c=>c.trim()).filter(Boolean))],n=e.nextTokens?t.filter(c=>{var u;return!!((u=e.nextTokens)!=null&&u[c])}):t;if(n.length===0)return{items:[],nextTokens:{},failures:[]};const i=await Promise.allSettled(n.map(async c=>{var u;return{region:c,page:await clt({region:c,projectName:e.projectName,nextToken:(u=e.nextTokens)==null?void 0:u[c],pageSize:e.pageSize,signal:e.signal})}}));if((l=e.signal)!=null&&l.aborted)throw new DOMException("Aborted","AbortError");const r=[],s={},a=new Map;if(i.forEach((c,u)=>{var f;const d=n[u];if(c.status==="rejected"){const h=(f=e.nextTokens)==null?void 0:f[d];h&&(s[d]=h),r.push({region:d,error:c.reason instanceof Error?c.reason:new Error(V("knowledge.loadFailed"))});return}c.value.page.nextToken&&(s[d]=c.value.page.nextToken),c.value.page.items.forEach(h=>{const m=h.region?h:{...h,region:d};a.set(ult(m),m)})}),r.length===n.length)throw new XOe(r);return{items:[...a.values()],nextTokens:s,failures:r}}function flt(e){return Gu("/web/knowledge-bases",{method:"POST",body:JSON.stringify(e)},is).then(DB)}function hlt(e,t,n){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}${e0(t)}`,{method:"PATCH",body:JSON.stringify(n)}).then(DB)}function plt(e,t){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}${e0(t)}`,{method:"DELETE"},is)}async function mlt(e,t){var s;const n=new URLSearchParams({region:t.region,offset:String(t.offset??0),limit:String(t.limit??30)});(s=t.documentType)!=null&&s.trim()&&n.set("documentType",t.documentType.trim());const i=await Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents?${n.toString()}`,{signal:t.signal}),r=iu(i);return{items:Array.isArray(r.items)?r.items.map(hE):[],offset:$S(r.offset,0),limit:$S(r.limit,t.limit??30),hasMore:r.hasMore===!0}}async function glt(e,t,n){const i=new URLSearchParams({region:n.region,offset:String(n.offset??0),limit:String(n.limit??20)}),r=await Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/${encodeURIComponent(t)}/preview?${i.toString()}`,{signal:n.signal}),s=iu(r);return{document:hE(s.document),chunks:Array.isArray(s.chunks)?s.chunks.map(llt):[],sourceMarkdown:Di(s.sourceMarkdown),offset:$S(s.offset,0),limit:$S(s.limit,n.limit??20),hasMore:s.hasMore===!0}}function blt(e,t,n){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents${e0(t)}`,{method:"POST",body:JSON.stringify(n)},is).then(hE)}async function ylt(e,t,n){const i=await Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/web-preview${e0(t)}`,{method:"POST",body:JSON.stringify({sourceType:"url",url:n.url})},is),r=iu(i);return{name:Di(r.name),url:Di(r.url),sourceMarkdown:Di(r.sourceMarkdown)}}function vlt(e,t,n){var r,s;const i=new FormData;return i.set("file",n.file),(r=n.name)!=null&&r.trim()&&i.set("name",n.name.trim()),(s=n.documentType)!=null&&s.trim()&&i.set("documentType",n.documentType.trim()),n.metadata&&i.set("metadata",JSON.stringify(n.metadata)),Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/upload${e0(t)}`,{method:"POST",body:i},is).then(hE)}function xlt(e,t,n,i){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/${encodeURIComponent(t)}${e0(n)}`,{method:"PATCH",body:JSON.stringify(i)}).then(hE)}function wlt(e,t,n){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/${encodeURIComponent(t)}${e0(n)}`,{method:"DELETE"},is)}function pE({className:e="",title:t,status:n,description:i,metadata:r,detailAction:s,action:a,auxiliaryAction:l}){return o.jsxs(RB,{className:`library-resource-card ${e}`.trim(),activateLabel:`${s.label} ${t}`,onActivate:s.disabled?void 0:s.onClick,footer:o.jsx(UOe,{items:r.map(c=>({label:c.label,value:c.value,title:c.title,hideLabel:!0}))}),actions:o.jsxs(o.Fragment,{children:[l?o.jsx(T6,{className:"library-resource-card__auxiliary-action",label:`${l.label} ${t}`,tone:"secondary",disabled:l.disabled,title:l.title??l.label,onClick:l.onClick,children:l.icon}):null,a?o.jsx(T6,{label:`${a.label} ${t}`,icon:a.icon,disabled:a.disabled,title:a.title,onClick:a.onClick}):null]}),children:[o.jsx(IB,{leading:o.jsx(Xv,{seed:t}),title:t,titleText:t,status:n}),o.jsx(PB,{title:i,children:i})]})}function oHt(){}function YK(e){const t=[],n=String(e||"");let i=n.indexOf(","),r=0,s=!1;for(;!s;){i===-1&&(i=n.length,s=!0);const a=n.slice(r,i).trim();(a||!s)&&t.push(a),r=i+1,i=n.indexOf(",",r)}return t}function ZOe(e,t){const n={};return(e[e.length-1]===""?[...e,""]:e).join((n.padRight?" ":"")+","+(n.padLeft===!1?"":" ")).trim()}const Olt=/[$_\p{ID_Start}]/u,Slt=/[$_\u{200C}\u{200D}\p{ID_Continue}]/u,klt=/[-$_\u{200C}\u{200D}\p{ID_Continue}]/u,Elt=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,Clt=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,JOe={};function lHt(e){return e?Olt.test(String.fromCodePoint(e)):!1}function cHt(e,t){const i=(t||JOe).jsx?klt:Slt;return e?i.test(String.fromCodePoint(e)):!1}function ZK(e,t){return(JOe.jsx?Clt:Elt).test(e)}const Tlt=/[ \t\n\f\r]/g;function Alt(e){return typeof e=="object"?e.type==="text"?JK(e.value):!1:JK(e)}function JK(e){return e.replace(Tlt,"")===""}let mE=class{constructor(t,n,i){this.normal=n,this.property=t,i&&(this.space=i)}};mE.prototype.normal={};mE.prototype.property={};mE.prototype.space=void 0;function eSe(e,t){const n={},i={};for(const r of e)Object.assign(n,r.property),Object.assign(i,r.normal);return new mE(n,i,t)}function FS(e){return e.toLowerCase()}class El{constructor(t,n){this.attribute=n,this.property=t}}El.prototype.attribute="";El.prototype.booleanish=!1;El.prototype.boolean=!1;El.prototype.commaOrSpaceSeparated=!1;El.prototype.commaSeparated=!1;El.prototype.defined=!1;El.prototype.mustUseProperty=!1;El.prototype.number=!1;El.prototype.overloadedBoolean=!1;El.prototype.property="";El.prototype.spaceSeparated=!1;El.prototype.space=void 0;let _lt=0;const ni=t0(),Gs=t0(),_6=t0(),At=t0(),Rr=t0(),sv=t0(),Ql=t0();function t0(){return 2**++_lt}const N6=Object.freeze(Object.defineProperty({__proto__:null,boolean:ni,booleanish:Gs,commaOrSpaceSeparated:Ql,commaSeparated:sv,number:At,overloadedBoolean:_6,spaceSeparated:Rr},Symbol.toStringTag,{value:"Module"})),xM=Object.keys(N6);class MB extends El{constructor(t,n,i,r){let s=-1;if(super(t,n),eX(this,"space",r),typeof i=="number")for(;++s4&&n.slice(0,4)==="data"&&Plt.test(t)){if(t.charAt(4)==="-"){const s=t.slice(5).replace(tX,Mlt);i="data"+s.charAt(0).toUpperCase()+s.slice(1)}else{const s=t.slice(4);if(!tX.test(s)){let a=s.replace(Ilt,Dlt);a.charAt(0)!=="-"&&(a="-"+a),t="data"+a}}r=MB}return new r(i,t)}function Dlt(e){return"-"+e.toLowerCase()}function Mlt(e){return e.charAt(1).toUpperCase()}const gE=eSe([tSe,Nlt,rSe,sSe,aSe],"html"),Qm=eSe([tSe,jlt,rSe,sSe,aSe],"svg");function nX(e){const t=String(e||"").trim();return t?t.split(/[ \t\n\r\f]+/g):[]}function oSe(e){return e.join(" ").trim()}var LB={},iX=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,Llt=/\n/g,$lt=/^\s*/,Flt=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,Blt=/^:\s*/,Ult=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,Qlt=/^[;\s]*/,zlt=/^\s+|\s+$/g,Vlt=` -`,rX="/",sX="*",Tg="",Hlt="comment",qlt="declaration";function Wlt(e,t){if(typeof e!="string")throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var n=1,i=1;function r(g){var b=g.match(Llt);b&&(n+=b.length);var v=g.lastIndexOf(Vlt);i=~v?g.length-v:i+g.length}function s(){var g={line:n,column:i};return function(b){return b.position=new a(g),u(),b}}function a(g){this.start=g,this.end={line:n,column:i},this.source=t.source}a.prototype.content=e;function l(g){var b=new Error(t.source+":"+n+":"+i+": "+g);if(b.reason=g,b.filename=t.source,b.line=n,b.column=i,b.source=e,!t.silent)throw b}function c(g){var b=g.exec(e);if(b){var v=b[0];return r(v),e=e.slice(v.length),b}}function u(){c($lt)}function d(g){var b;for(g=g||[];b=f();)b!==!1&&g.push(b);return g}function f(){var g=s();if(!(rX!=e.charAt(0)||sX!=e.charAt(1))){for(var b=2;Tg!=e.charAt(b)&&(sX!=e.charAt(b)||rX!=e.charAt(b+1));)++b;if(b+=2,Tg===e.charAt(b-1))return l("End of comment missing");var v=e.slice(2,b-2);return i+=2,r(v),e=e.slice(b),i+=2,g({type:Hlt,comment:v})}}function h(){var g=s(),b=c(Flt);if(b){if(f(),!c(Blt))return l("property missing ':'");var v=c(Ult),y=g({type:qlt,property:aX(b[0].replace(iX,Tg)),value:v?aX(v[0].replace(iX,Tg)):Tg});return c(Qlt),y}}function m(){var g=[];d(g);for(var b;b=h();)b!==!1&&(g.push(b),d(g));return g}return u(),m()}function aX(e){return e?e.replace(zlt,Tg):Tg}var Glt=Wlt,Klt=Ip&&Ip.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(LB,"__esModule",{value:!0});LB.default=Ylt;const Xlt=Klt(Glt);function Ylt(e,t){let n=null;if(!e||typeof e!="string")return n;const i=(0,Xlt.default)(e),r=typeof t=="function";return i.forEach(s=>{if(s.type!=="declaration")return;const{property:a,value:l}=s;r?t(a,l,s):l&&(n=n||{},n[a]=l)}),n}var WR={};Object.defineProperty(WR,"__esModule",{value:!0});WR.camelCase=void 0;var Zlt=/^--[a-zA-Z0-9_-]+$/,Jlt=/-([a-z])/g,ect=/^[^-]+$/,tct=/^-(webkit|moz|ms|o|khtml)-/,nct=/^-(ms)-/,ict=function(e){return!e||ect.test(e)||Zlt.test(e)},rct=function(e,t){return t.toUpperCase()},oX=function(e,t){return"".concat(t,"-")},sct=function(e,t){return t===void 0&&(t={}),ict(e)?e:(e=e.toLowerCase(),t.reactCompat?e=e.replace(nct,oX):e=e.replace(tct,oX),e.replace(Jlt,rct))};WR.camelCase=sct;var act=Ip&&Ip.__importDefault||function(e){return e&&e.__esModule?e:{default:e}},oct=act(LB),lct=WR;function j6(e,t){var n={};return!e||typeof e!="string"||(0,oct.default)(e,function(i,r){i&&r&&(n[(0,lct.camelCase)(i,t)]=r)}),n}j6.default=j6;var cct=j6;const uct=px(cct),GR=lSe("end"),Yd=lSe("start");function lSe(e){return t;function t(n){const i=n&&n.position&&n.position[e]||{};if(typeof i.line=="number"&&i.line>0&&typeof i.column=="number"&&i.column>0)return{line:i.line,column:i.column,offset:typeof i.offset=="number"&&i.offset>-1?i.offset:void 0}}}function dct(e){const t=Yd(e),n=GR(e);if(t&&n)return{start:t,end:n}}function CO(e){return!e||typeof e!="object"?"":"position"in e||"type"in e?lX(e.position):"start"in e||"end"in e?lX(e):"line"in e||"column"in e?R6(e):""}function R6(e){return cX(e&&e.line)+":"+cX(e&&e.column)}function lX(e){return R6(e&&e.start)+"-"+R6(e&&e.end)}function cX(e){return e&&typeof e=="number"?e:1}class Oo extends Error{constructor(t,n,i){super(),typeof n=="string"&&(i=n,n=void 0);let r="",s={},a=!1;if(n&&("line"in n&&"column"in n?s={place:n}:"start"in n&&"end"in n?s={place:n}:"type"in n?s={ancestors:[n],place:n.position}:s={...n}),typeof t=="string"?r=t:!s.cause&&t&&(a=!0,r=t.message,s.cause=t),!s.ruleId&&!s.source&&typeof i=="string"){const c=i.indexOf(":");c===-1?s.ruleId=i:(s.source=i.slice(0,c),s.ruleId=i.slice(c+1))}if(!s.place&&s.ancestors&&s.ancestors){const c=s.ancestors[s.ancestors.length-1];c&&(s.place=c.position)}const l=s.place&&"start"in s.place?s.place.start:s.place;this.ancestors=s.ancestors||void 0,this.cause=s.cause||void 0,this.column=l?l.column:void 0,this.fatal=void 0,this.file="",this.message=r,this.line=l?l.line:void 0,this.name=CO(s.place)||"1:1",this.place=s.place||void 0,this.reason=this.message,this.ruleId=s.ruleId||void 0,this.source=s.source||void 0,this.stack=a&&s.cause&&typeof s.cause.stack=="string"?s.cause.stack:"",this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}}Oo.prototype.file="";Oo.prototype.name="";Oo.prototype.reason="";Oo.prototype.message="";Oo.prototype.stack="";Oo.prototype.column=void 0;Oo.prototype.line=void 0;Oo.prototype.ancestors=void 0;Oo.prototype.cause=void 0;Oo.prototype.fatal=void 0;Oo.prototype.place=void 0;Oo.prototype.ruleId=void 0;Oo.prototype.source=void 0;const $B={}.hasOwnProperty,fct=new Map,hct=/[A-Z]/g,pct=new Set(["table","tbody","thead","tfoot","tr"]),mct=new Set(["td","th"]),cSe="https://github.com/syntax-tree/hast-util-to-jsx-runtime";function gct(e,t){if(!t||t.Fragment===void 0)throw new TypeError("Expected `Fragment` in options");const n=t.filePath||void 0;let i;if(t.development){if(typeof t.jsxDEV!="function")throw new TypeError("Expected `jsxDEV` in options when `development: true`");i=kct(n,t.jsxDEV)}else{if(typeof t.jsx!="function")throw new TypeError("Expected `jsx` in production options");if(typeof t.jsxs!="function")throw new TypeError("Expected `jsxs` in production options");i=Sct(n,t.jsx,t.jsxs)}const r={Fragment:t.Fragment,ancestors:[],components:t.components||{},create:i,elementAttributeNameCase:t.elementAttributeNameCase||"react",evaluater:t.createEvaluater?t.createEvaluater():void 0,filePath:n,ignoreInvalidStyle:t.ignoreInvalidStyle||!1,passKeys:t.passKeys!==!1,passNode:t.passNode||!1,schema:t.space==="svg"?Qm:gE,stylePropertyNameCase:t.stylePropertyNameCase||"dom",tableCellAlignToStyle:t.tableCellAlignToStyle!==!1},s=uSe(r,e,void 0);return s&&typeof s!="string"?s:r.create(e,r.Fragment,{children:s||void 0},void 0)}function uSe(e,t,n){if(t.type==="element")return bct(e,t,n);if(t.type==="mdxFlowExpression"||t.type==="mdxTextExpression")return yct(e,t);if(t.type==="mdxJsxFlowElement"||t.type==="mdxJsxTextElement")return xct(e,t,n);if(t.type==="mdxjsEsm")return vct(e,t);if(t.type==="root")return wct(e,t,n);if(t.type==="text")return Oct(e,t)}function bct(e,t,n){const i=e.schema;let r=i;t.tagName.toLowerCase()==="svg"&&i.space==="html"&&(r=Qm,e.schema=r),e.ancestors.push(t);const s=fSe(e,t.tagName,!1),a=Ect(e,t);let l=BB(e,t);return pct.has(t.tagName)&&(l=l.filter(function(c){return typeof c=="string"?!Alt(c):!0})),dSe(e,a,s,t),FB(a,l),e.ancestors.pop(),e.schema=i,e.create(t,s,a,n)}function yct(e,t){if(t.data&&t.data.estree&&e.evaluater){const i=t.data.estree.body[0];return i.type,e.evaluater.evaluateExpression(i.expression)}BS(e,t.position)}function vct(e,t){if(t.data&&t.data.estree&&e.evaluater)return e.evaluater.evaluateProgram(t.data.estree);BS(e,t.position)}function xct(e,t,n){const i=e.schema;let r=i;t.name==="svg"&&i.space==="html"&&(r=Qm,e.schema=r),e.ancestors.push(t);const s=t.name===null?e.Fragment:fSe(e,t.name,!0),a=Cct(e,t),l=BB(e,t);return dSe(e,a,s,t),FB(a,l),e.ancestors.pop(),e.schema=i,e.create(t,s,a,n)}function wct(e,t,n){const i={};return FB(i,BB(e,t)),e.create(t,e.Fragment,i,n)}function Oct(e,t){return t.value}function dSe(e,t,n,i){typeof n!="string"&&n!==e.Fragment&&e.passNode&&(t.node=i)}function FB(e,t){if(t.length>0){const n=t.length>1?t:t[0];n&&(e.children=n)}}function Sct(e,t,n){return i;function i(r,s,a,l){const u=Array.isArray(a.children)?n:t;return l?u(s,a,l):u(s,a)}}function kct(e,t){return n;function n(i,r,s,a){const l=Array.isArray(s.children),c=Yd(i);return t(r,s,a,l,{columnNumber:c?c.column-1:void 0,fileName:e,lineNumber:c?c.line:void 0},void 0)}}function Ect(e,t){const n={};let i,r;for(r in t.properties)if(r!=="children"&&$B.call(t.properties,r)){const s=Tct(e,r,t.properties[r]);if(s){const[a,l]=s;e.tableCellAlignToStyle&&a==="align"&&typeof l=="string"&&mct.has(t.tagName)?i=l:n[a]=l}}if(i){const s=n.style||(n.style={});s[e.stylePropertyNameCase==="css"?"text-align":"textAlign"]=i}return n}function Cct(e,t){const n={};for(const i of t.attributes)if(i.type==="mdxJsxExpressionAttribute")if(i.data&&i.data.estree&&e.evaluater){const s=i.data.estree.body[0];s.type;const a=s.expression;a.type;const l=a.properties[0];l.type,Object.assign(n,e.evaluater.evaluateExpression(l.argument))}else BS(e,t.position);else{const r=i.name;let s;if(i.value&&typeof i.value=="object")if(i.value.data&&i.value.data.estree&&e.evaluater){const l=i.value.data.estree.body[0];l.type,s=e.evaluater.evaluateExpression(l.expression)}else BS(e,t.position);else s=i.value===null?!0:i.value;n[r]=s}return n}function BB(e,t){const n=[];let i=-1;const r=e.passKeys?new Map:fct;for(;++ir?0:r+t:t=t>r?r:t,n=n>0?n:0,i.length<1e4)a=Array.from(i),a.unshift(t,n),e.splice(...a);else for(n&&e.splice(t,n);s0?(lc(e,e.length,0,t),e):t}const fX={}.hasOwnProperty;function pSe(e){const t={};let n=-1;for(;++n13&&n<32||n>126&&n<160||n>55295&&n<57344||n>64975&&n<65008||(n&65535)===65535||(n&65535)===65534||n>1114111?"�":String.fromCodePoint(n)}function Du(e){return e.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}const Mo=zm(/[A-Za-z]/),bo=zm(/[\dA-Za-z]/),Mct=zm(/[#-'*+\--9=?A-Z^-~]/);function uN(e){return e!==null&&(e<32||e===127)}const I6=zm(/\d/),Lct=zm(/[\dA-Fa-f]/),$ct=zm(/[!-/:-@[-`{-~]/);function Tn(e){return e!==null&&e<-2}function Ar(e){return e!==null&&(e<0||e===32)}function wi(e){return e===-2||e===-1||e===32}const KR=zm(new RegExp("\\p{P}|\\p{S}","u")),Tb=zm(/\s/);function zm(e){return t;function t(n){return n!==null&&n>-1&&e.test(String.fromCharCode(n))}}function qx(e){const t=[];let n=-1,i=0,r=0;for(;++n55295&&s<57344){const l=e.charCodeAt(n+1);s<56320&&l>56319&&l<57344?(a=String.fromCharCode(s,l),r=1):a="�"}else a=String.fromCharCode(s);a&&(t.push(e.slice(i,n),encodeURIComponent(a)),i=n+r+1,a=""),r&&(n+=r,r=0)}return t.join("")+e.slice(i)}function Ui(e,t,n,i){const r=i?i-1:Number.POSITIVE_INFINITY;let s=0;return a;function a(c){return wi(c)?(e.enter(n),l(c)):t(c)}function l(c){return wi(c)&&s++a))return;const E=t.events.length;let C=E,N,_;for(;C--;)if(t.events[C][0]==="exit"&&t.events[C][1].type==="chunkFlow"){if(N){_=t.events[C][1].end;break}N=!0}for(y(i),S=E;SO;){const k=n[w];t.containerState=k[1],k[0].exit.call(t,e)}n.length=O}function x(){r.write([null]),s=void 0,r=void 0,t.containerState._closeFlow=void 0}}function zct(e,t,n){return Ui(e,e.attempt(this.parser.constructs.document,t,n),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}function Yv(e){if(e===null||Ar(e)||Tb(e))return 1;if(KR(e))return 2}function XR(e,t,n){const i=[];let r=-1;for(;++r1&&e[n][1].end.offset-e[n][1].start.offset>1?2:1;const f={...e[i][1].end},h={...e[n][1].start};pX(f,-c),pX(h,c),a={type:c>1?"strongSequence":"emphasisSequence",start:f,end:{...e[i][1].end}},l={type:c>1?"strongSequence":"emphasisSequence",start:{...e[n][1].start},end:h},s={type:c>1?"strongText":"emphasisText",start:{...e[i][1].end},end:{...e[n][1].start}},r={type:c>1?"strong":"emphasis",start:{...a.start},end:{...l.end}},e[i][1].end={...a.start},e[n][1].start={...l.end},u=[],e[i][1].end.offset-e[i][1].start.offset&&(u=Lc(u,[["enter",e[i][1],t],["exit",e[i][1],t]])),u=Lc(u,[["enter",r,t],["enter",a,t],["exit",a,t],["enter",s,t]]),u=Lc(u,XR(t.parser.constructs.insideSpan.null,e.slice(i+1,n),t)),u=Lc(u,[["exit",s,t],["enter",l,t],["exit",l,t],["exit",r,t]]),e[n][1].end.offset-e[n][1].start.offset?(d=2,u=Lc(u,[["enter",e[n][1],t],["exit",e[n][1],t]])):d=0,lc(e,i-1,n-i+3,u),n=i+u.length-d-2;break}}for(n=-1;++n0&&wi(S)?Ui(e,x,"linePrefix",s+1)(S):x(S)}function x(S){return S===null||Tn(S)?e.check(mX,b,w)(S):(e.enter("codeFlowValue"),O(S))}function O(S){return S===null||Tn(S)?(e.exit("codeFlowValue"),x(S)):(e.consume(S),O)}function w(S){return e.exit("codeFenced"),t(S)}function k(S,E,C){let N=0;return _;function _(P){return S.enter("lineEnding"),S.consume(P),S.exit("lineEnding"),j}function j(P){return S.enter("codeFencedFence"),wi(P)?Ui(S,A,"linePrefix",i.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(P):A(P)}function A(P){return P===l?(S.enter("codeFencedFenceSequence"),F(P)):C(P)}function F(P){return P===l?(N++,S.consume(P),F):N>=a?(S.exit("codeFencedFenceSequence"),wi(P)?Ui(S,T,"whitespace")(P):T(P)):C(P)}function T(P){return P===null||Tn(P)?(S.exit("codeFencedFence"),E(P)):C(P)}}}function tut(e,t,n){const i=this;return r;function r(a){return a===null?n(a):(e.enter("lineEnding"),e.consume(a),e.exit("lineEnding"),s)}function s(a){return i.parser.lazy[i.now().line]?n(a):t(a)}}const OM={name:"codeIndented",tokenize:iut},nut={partial:!0,tokenize:rut};function iut(e,t,n){const i=this;return r;function r(u){return e.enter("codeIndented"),Ui(e,s,"linePrefix",5)(u)}function s(u){const d=i.events[i.events.length-1];return d&&d[1].type==="linePrefix"&&d[2].sliceSerialize(d[1],!0).length>=4?a(u):n(u)}function a(u){return u===null?c(u):Tn(u)?e.attempt(nut,a,c)(u):(e.enter("codeFlowValue"),l(u))}function l(u){return u===null||Tn(u)?(e.exit("codeFlowValue"),a(u)):(e.consume(u),l)}function c(u){return e.exit("codeIndented"),t(u)}}function rut(e,t,n){const i=this;return r;function r(a){return i.parser.lazy[i.now().line]?n(a):Tn(a)?(e.enter("lineEnding"),e.consume(a),e.exit("lineEnding"),r):Ui(e,s,"linePrefix",5)(a)}function s(a){const l=i.events[i.events.length-1];return l&&l[1].type==="linePrefix"&&l[2].sliceSerialize(l[1],!0).length>=4?t(a):Tn(a)?r(a):n(a)}}const sut={name:"codeText",previous:out,resolve:aut,tokenize:lut};function aut(e){let t=e.length-4,n=3,i,r;if((e[n][1].type==="lineEnding"||e[n][1].type==="space")&&(e[t][1].type==="lineEnding"||e[t][1].type==="space")){for(i=n;++i=this.left.length+this.right.length)throw new RangeError("Cannot access index `"+t+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return tthis.left.length?this.right.slice(this.right.length-i+this.left.length,this.right.length-t+this.left.length).reverse():this.left.slice(t).concat(this.right.slice(this.right.length-i+this.left.length).reverse())}splice(t,n,i){const r=n||0;this.setCursor(Math.trunc(t));const s=this.right.splice(this.right.length-r,Number.POSITIVE_INFINITY);return i&&V1(this.left,i),s.reverse()}pop(){return this.setCursor(Number.POSITIVE_INFINITY),this.left.pop()}push(t){this.setCursor(Number.POSITIVE_INFINITY),this.left.push(t)}pushMany(t){this.setCursor(Number.POSITIVE_INFINITY),V1(this.left,t)}unshift(t){this.setCursor(0),this.right.push(t)}unshiftMany(t){this.setCursor(0),V1(this.right,t.reverse())}setCursor(t){if(!(t===this.left.length||t>this.left.length&&this.right.length===0||t<0&&this.left.length===0))if(t=4?t(a):e.interrupt(i.parser.constructs.flow,n,t)(a)}}function xSe(e,t,n,i,r,s,a,l,c){const u=c||Number.POSITIVE_INFINITY;let d=0;return f;function f(y){return y===60?(e.enter(i),e.enter(r),e.enter(s),e.consume(y),e.exit(s),h):y===null||y===32||y===41||uN(y)?n(y):(e.enter(i),e.enter(a),e.enter(l),e.enter("chunkString",{contentType:"string"}),b(y))}function h(y){return y===62?(e.enter(s),e.consume(y),e.exit(s),e.exit(r),e.exit(i),t):(e.enter(l),e.enter("chunkString",{contentType:"string"}),m(y))}function m(y){return y===62?(e.exit("chunkString"),e.exit(l),h(y)):y===null||y===60||Tn(y)?n(y):(e.consume(y),y===92?g:m)}function g(y){return y===60||y===62||y===92?(e.consume(y),m):m(y)}function b(y){return!d&&(y===null||y===41||Ar(y))?(e.exit("chunkString"),e.exit(l),e.exit(a),e.exit(i),t(y)):d999||m===null||m===91||m===93&&!c||m===94&&!l&&"_hiddenFootnoteSupport"in a.parser.constructs?n(m):m===93?(e.exit(s),e.enter(r),e.consume(m),e.exit(r),e.exit(i),t):Tn(m)?(e.enter("lineEnding"),e.consume(m),e.exit("lineEnding"),d):(e.enter("chunkString",{contentType:"string"}),f(m))}function f(m){return m===null||m===91||m===93||Tn(m)||l++>999?(e.exit("chunkString"),d(m)):(e.consume(m),c||(c=!wi(m)),m===92?h:f)}function h(m){return m===91||m===92||m===93?(e.consume(m),l++,f):f(m)}}function OSe(e,t,n,i,r,s){let a;return l;function l(h){return h===34||h===39||h===40?(e.enter(i),e.enter(r),e.consume(h),e.exit(r),a=h===40?41:h,c):n(h)}function c(h){return h===a?(e.enter(r),e.consume(h),e.exit(r),e.exit(i),t):(e.enter(s),u(h))}function u(h){return h===a?(e.exit(s),c(a)):h===null?n(h):Tn(h)?(e.enter("lineEnding"),e.consume(h),e.exit("lineEnding"),Ui(e,u,"linePrefix")):(e.enter("chunkString",{contentType:"string"}),d(h))}function d(h){return h===a||h===null||Tn(h)?(e.exit("chunkString"),u(h)):(e.consume(h),h===92?f:d)}function f(h){return h===a||h===92?(e.consume(h),d):d(h)}}function TO(e,t){let n;return i;function i(r){return Tn(r)?(e.enter("lineEnding"),e.consume(r),e.exit("lineEnding"),n=!0,i):wi(r)?Ui(e,i,n?"linePrefix":"lineSuffix")(r):t(r)}}const gut={name:"definition",tokenize:yut},but={partial:!0,tokenize:vut};function yut(e,t,n){const i=this;let r;return s;function s(m){return e.enter("definition"),a(m)}function a(m){return wSe.call(i,e,l,n,"definitionLabel","definitionLabelMarker","definitionLabelString")(m)}function l(m){return r=Du(i.sliceSerialize(i.events[i.events.length-1][1]).slice(1,-1)),m===58?(e.enter("definitionMarker"),e.consume(m),e.exit("definitionMarker"),c):n(m)}function c(m){return Ar(m)?TO(e,u)(m):u(m)}function u(m){return xSe(e,d,n,"definitionDestination","definitionDestinationLiteral","definitionDestinationLiteralMarker","definitionDestinationRaw","definitionDestinationString")(m)}function d(m){return e.attempt(but,f,f)(m)}function f(m){return wi(m)?Ui(e,h,"whitespace")(m):h(m)}function h(m){return m===null||Tn(m)?(e.exit("definition"),i.parser.defined.push(r),t(m)):n(m)}}function vut(e,t,n){return i;function i(l){return Ar(l)?TO(e,r)(l):n(l)}function r(l){return OSe(e,s,n,"definitionTitle","definitionTitleMarker","definitionTitleString")(l)}function s(l){return wi(l)?Ui(e,a,"whitespace")(l):a(l)}function a(l){return l===null||Tn(l)?t(l):n(l)}}const xut={name:"hardBreakEscape",tokenize:wut};function wut(e,t,n){return i;function i(s){return e.enter("hardBreakEscape"),e.consume(s),r}function r(s){return Tn(s)?(e.exit("hardBreakEscape"),t(s)):n(s)}}const Out={name:"headingAtx",resolve:Sut,tokenize:kut};function Sut(e,t){let n=e.length-2,i=3,r,s;return e[i][1].type==="whitespace"&&(i+=2),n-2>i&&e[n][1].type==="whitespace"&&(n-=2),e[n][1].type==="atxHeadingSequence"&&(i===n-1||n-4>i&&e[n-2][1].type==="whitespace")&&(n-=i+1===n?2:4),n>i&&(r={type:"atxHeadingText",start:e[i][1].start,end:e[n][1].end},s={type:"chunkText",start:e[i][1].start,end:e[n][1].end,contentType:"text"},lc(e,i,n-i+1,[["enter",r,t],["enter",s,t],["exit",s,t],["exit",r,t]])),e}function kut(e,t,n){let i=0;return r;function r(d){return e.enter("atxHeading"),s(d)}function s(d){return e.enter("atxHeadingSequence"),a(d)}function a(d){return d===35&&i++<6?(e.consume(d),a):d===null||Ar(d)?(e.exit("atxHeadingSequence"),l(d)):n(d)}function l(d){return d===35?(e.enter("atxHeadingSequence"),c(d)):d===null||Tn(d)?(e.exit("atxHeading"),t(d)):wi(d)?Ui(e,l,"whitespace")(d):(e.enter("atxHeadingText"),u(d))}function c(d){return d===35?(e.consume(d),c):(e.exit("atxHeadingSequence"),l(d))}function u(d){return d===null||d===35||Ar(d)?(e.exit("atxHeadingText"),l(d)):(e.consume(d),u)}}const Eut=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],bX=["pre","script","style","textarea"],Cut={concrete:!0,name:"htmlFlow",resolveTo:_ut,tokenize:Nut},Tut={partial:!0,tokenize:Rut},Aut={partial:!0,tokenize:jut};function _ut(e){let t=e.length;for(;t--&&!(e[t][0]==="enter"&&e[t][1].type==="htmlFlow"););return t>1&&e[t-2][1].type==="linePrefix"&&(e[t][1].start=e[t-2][1].start,e[t+1][1].start=e[t-2][1].start,e.splice(t-2,2)),e}function Nut(e,t,n){const i=this;let r,s,a,l,c;return u;function u(Q){return d(Q)}function d(Q){return e.enter("htmlFlow"),e.enter("htmlFlowData"),e.consume(Q),f}function f(Q){return Q===33?(e.consume(Q),h):Q===47?(e.consume(Q),s=!0,b):Q===63?(e.consume(Q),r=3,i.interrupt?t:I):Mo(Q)?(e.consume(Q),a=String.fromCharCode(Q),v):n(Q)}function h(Q){return Q===45?(e.consume(Q),r=2,m):Q===91?(e.consume(Q),r=5,l=0,g):Mo(Q)?(e.consume(Q),r=4,i.interrupt?t:I):n(Q)}function m(Q){return Q===45?(e.consume(Q),i.interrupt?t:I):n(Q)}function g(Q){const q="CDATA[";return Q===q.charCodeAt(l++)?(e.consume(Q),l===q.length?i.interrupt?t:A:g):n(Q)}function b(Q){return Mo(Q)?(e.consume(Q),a=String.fromCharCode(Q),v):n(Q)}function v(Q){if(Q===null||Q===47||Q===62||Ar(Q)){const q=Q===47,B=a.toLowerCase();return!q&&!s&&bX.includes(B)?(r=1,i.interrupt?t(Q):A(Q)):Eut.includes(a.toLowerCase())?(r=6,q?(e.consume(Q),y):i.interrupt?t(Q):A(Q)):(r=7,i.interrupt&&!i.parser.lazy[i.now().line]?n(Q):s?x(Q):O(Q))}return Q===45||bo(Q)?(e.consume(Q),a+=String.fromCharCode(Q),v):n(Q)}function y(Q){return Q===62?(e.consume(Q),i.interrupt?t:A):n(Q)}function x(Q){return wi(Q)?(e.consume(Q),x):_(Q)}function O(Q){return Q===47?(e.consume(Q),_):Q===58||Q===95||Mo(Q)?(e.consume(Q),w):wi(Q)?(e.consume(Q),O):_(Q)}function w(Q){return Q===45||Q===46||Q===58||Q===95||bo(Q)?(e.consume(Q),w):k(Q)}function k(Q){return Q===61?(e.consume(Q),S):wi(Q)?(e.consume(Q),k):O(Q)}function S(Q){return Q===null||Q===60||Q===61||Q===62||Q===96?n(Q):Q===34||Q===39?(e.consume(Q),c=Q,E):wi(Q)?(e.consume(Q),S):C(Q)}function E(Q){return Q===c?(e.consume(Q),c=null,N):Q===null||Tn(Q)?n(Q):(e.consume(Q),E)}function C(Q){return Q===null||Q===34||Q===39||Q===47||Q===60||Q===61||Q===62||Q===96||Ar(Q)?k(Q):(e.consume(Q),C)}function N(Q){return Q===47||Q===62||wi(Q)?O(Q):n(Q)}function _(Q){return Q===62?(e.consume(Q),j):n(Q)}function j(Q){return Q===null||Tn(Q)?A(Q):wi(Q)?(e.consume(Q),j):n(Q)}function A(Q){return Q===45&&r===2?(e.consume(Q),R):Q===60&&r===1?(e.consume(Q),L):Q===62&&r===4?(e.consume(Q),H):Q===63&&r===3?(e.consume(Q),I):Q===93&&r===5?(e.consume(Q),U):Tn(Q)&&(r===6||r===7)?(e.exit("htmlFlowData"),e.check(Tut,K,F)(Q)):Q===null||Tn(Q)?(e.exit("htmlFlowData"),F(Q)):(e.consume(Q),A)}function F(Q){return e.check(Aut,T,K)(Q)}function T(Q){return e.enter("lineEnding"),e.consume(Q),e.exit("lineEnding"),P}function P(Q){return Q===null||Tn(Q)?F(Q):(e.enter("htmlFlowData"),A(Q))}function R(Q){return Q===45?(e.consume(Q),I):A(Q)}function L(Q){return Q===47?(e.consume(Q),a="",M):A(Q)}function M(Q){if(Q===62){const q=a.toLowerCase();return bX.includes(q)?(e.consume(Q),H):A(Q)}return Mo(Q)&&a.length<8?(e.consume(Q),a+=String.fromCharCode(Q),M):A(Q)}function U(Q){return Q===93?(e.consume(Q),I):A(Q)}function I(Q){return Q===62?(e.consume(Q),H):Q===45&&r===2?(e.consume(Q),I):A(Q)}function H(Q){return Q===null||Tn(Q)?(e.exit("htmlFlowData"),K(Q)):(e.consume(Q),H)}function K(Q){return e.exit("htmlFlow"),t(Q)}}function jut(e,t,n){const i=this;return r;function r(a){return Tn(a)?(e.enter("lineEnding"),e.consume(a),e.exit("lineEnding"),s):n(a)}function s(a){return i.parser.lazy[i.now().line]?n(a):t(a)}}function Rut(e,t,n){return i;function i(r){return e.enter("lineEnding"),e.consume(r),e.exit("lineEnding"),e.attempt(bE,t,n)}}const Iut={name:"htmlText",tokenize:Put};function Put(e,t,n){const i=this;let r,s,a;return l;function l(I){return e.enter("htmlText"),e.enter("htmlTextData"),e.consume(I),c}function c(I){return I===33?(e.consume(I),u):I===47?(e.consume(I),k):I===63?(e.consume(I),O):Mo(I)?(e.consume(I),C):n(I)}function u(I){return I===45?(e.consume(I),d):I===91?(e.consume(I),s=0,g):Mo(I)?(e.consume(I),x):n(I)}function d(I){return I===45?(e.consume(I),m):n(I)}function f(I){return I===null?n(I):I===45?(e.consume(I),h):Tn(I)?(a=f,L(I)):(e.consume(I),f)}function h(I){return I===45?(e.consume(I),m):f(I)}function m(I){return I===62?R(I):I===45?h(I):f(I)}function g(I){const H="CDATA[";return I===H.charCodeAt(s++)?(e.consume(I),s===H.length?b:g):n(I)}function b(I){return I===null?n(I):I===93?(e.consume(I),v):Tn(I)?(a=b,L(I)):(e.consume(I),b)}function v(I){return I===93?(e.consume(I),y):b(I)}function y(I){return I===62?R(I):I===93?(e.consume(I),y):b(I)}function x(I){return I===null||I===62?R(I):Tn(I)?(a=x,L(I)):(e.consume(I),x)}function O(I){return I===null?n(I):I===63?(e.consume(I),w):Tn(I)?(a=O,L(I)):(e.consume(I),O)}function w(I){return I===62?R(I):O(I)}function k(I){return Mo(I)?(e.consume(I),S):n(I)}function S(I){return I===45||bo(I)?(e.consume(I),S):E(I)}function E(I){return Tn(I)?(a=E,L(I)):wi(I)?(e.consume(I),E):R(I)}function C(I){return I===45||bo(I)?(e.consume(I),C):I===47||I===62||Ar(I)?N(I):n(I)}function N(I){return I===47?(e.consume(I),R):I===58||I===95||Mo(I)?(e.consume(I),_):Tn(I)?(a=N,L(I)):wi(I)?(e.consume(I),N):R(I)}function _(I){return I===45||I===46||I===58||I===95||bo(I)?(e.consume(I),_):j(I)}function j(I){return I===61?(e.consume(I),A):Tn(I)?(a=j,L(I)):wi(I)?(e.consume(I),j):N(I)}function A(I){return I===null||I===60||I===61||I===62||I===96?n(I):I===34||I===39?(e.consume(I),r=I,F):Tn(I)?(a=A,L(I)):wi(I)?(e.consume(I),A):(e.consume(I),T)}function F(I){return I===r?(e.consume(I),r=void 0,P):I===null?n(I):Tn(I)?(a=F,L(I)):(e.consume(I),F)}function T(I){return I===null||I===34||I===39||I===60||I===61||I===96?n(I):I===47||I===62||Ar(I)?N(I):(e.consume(I),T)}function P(I){return I===47||I===62||Ar(I)?N(I):n(I)}function R(I){return I===62?(e.consume(I),e.exit("htmlTextData"),e.exit("htmlText"),t):n(I)}function L(I){return e.exit("htmlTextData"),e.enter("lineEnding"),e.consume(I),e.exit("lineEnding"),M}function M(I){return wi(I)?Ui(e,U,"linePrefix",i.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(I):U(I)}function U(I){return e.enter("htmlTextData"),a(I)}}const zB={name:"labelEnd",resolveAll:$ut,resolveTo:Fut,tokenize:But},Dut={tokenize:Uut},Mut={tokenize:Qut},Lut={tokenize:zut};function $ut(e){let t=-1;const n=[];for(;++t=3&&(u===null||Tn(u))?(e.exit("thematicBreak"),t(u)):n(u)}function c(u){return u===r?(e.consume(u),i++,c):(e.exit("thematicBreakSequence"),wi(u)?Ui(e,l,"whitespace")(u):l(u))}}const tl={continuation:{tokenize:Jut},exit:tdt,name:"list",tokenize:Zut},Xut={partial:!0,tokenize:ndt},Yut={partial:!0,tokenize:edt};function Zut(e,t,n){const i=this,r=i.events[i.events.length-1];let s=r&&r[1].type==="linePrefix"?r[2].sliceSerialize(r[1],!0).length:0,a=0;return l;function l(m){const g=i.containerState.type||(m===42||m===43||m===45?"listUnordered":"listOrdered");if(g==="listUnordered"?!i.containerState.marker||m===i.containerState.marker:I6(m)){if(i.containerState.type||(i.containerState.type=g,e.enter(g,{_container:!0})),g==="listUnordered")return e.enter("listItemPrefix"),m===42||m===45?e.check(yA,n,u)(m):u(m);if(!i.interrupt||m===49)return e.enter("listItemPrefix"),e.enter("listItemValue"),c(m)}return n(m)}function c(m){return I6(m)&&++a<10?(e.consume(m),c):(!i.interrupt||a<2)&&(i.containerState.marker?m===i.containerState.marker:m===41||m===46)?(e.exit("listItemValue"),u(m)):n(m)}function u(m){return e.enter("listItemMarker"),e.consume(m),e.exit("listItemMarker"),i.containerState.marker=i.containerState.marker||m,e.check(bE,i.interrupt?n:d,e.attempt(Xut,h,f))}function d(m){return i.containerState.initialBlankLine=!0,s++,h(m)}function f(m){return wi(m)?(e.enter("listItemPrefixWhitespace"),e.consume(m),e.exit("listItemPrefixWhitespace"),h):n(m)}function h(m){return i.containerState.size=s+i.sliceSerialize(e.exit("listItemPrefix"),!0).length,t(m)}}function Jut(e,t,n){const i=this;return i.containerState._closeFlow=void 0,e.check(bE,r,s);function r(l){return i.containerState.furtherBlankLines=i.containerState.furtherBlankLines||i.containerState.initialBlankLine,Ui(e,t,"listItemIndent",i.containerState.size+1)(l)}function s(l){return i.containerState.furtherBlankLines||!wi(l)?(i.containerState.furtherBlankLines=void 0,i.containerState.initialBlankLine=void 0,a(l)):(i.containerState.furtherBlankLines=void 0,i.containerState.initialBlankLine=void 0,e.attempt(Yut,t,a)(l))}function a(l){return i.containerState._closeFlow=!0,i.interrupt=void 0,Ui(e,e.attempt(tl,t,n),"linePrefix",i.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(l)}}function edt(e,t,n){const i=this;return Ui(e,r,"listItemIndent",i.containerState.size+1);function r(s){const a=i.events[i.events.length-1];return a&&a[1].type==="listItemIndent"&&a[2].sliceSerialize(a[1],!0).length===i.containerState.size?t(s):n(s)}}function tdt(e){e.exit(this.containerState.type)}function ndt(e,t,n){const i=this;return Ui(e,r,"listItemPrefixWhitespace",i.parser.constructs.disable.null.includes("codeIndented")?void 0:5);function r(s){const a=i.events[i.events.length-1];return!wi(s)&&a&&a[1].type==="listItemPrefixWhitespace"?t(s):n(s)}}const yX={name:"setextUnderline",resolveTo:idt,tokenize:rdt};function idt(e,t){let n=e.length,i,r,s;for(;n--;)if(e[n][0]==="enter"){if(e[n][1].type==="content"){i=n;break}e[n][1].type==="paragraph"&&(r=n)}else e[n][1].type==="content"&&e.splice(n,1),!s&&e[n][1].type==="definition"&&(s=n);const a={type:"setextHeading",start:{...e[i][1].start},end:{...e[e.length-1][1].end}};return e[r][1].type="setextHeadingText",s?(e.splice(r,0,["enter",a,t]),e.splice(s+1,0,["exit",e[i][1],t]),e[i][1].end={...e[s][1].end}):e[i][1]=a,e.push(["exit",a,t]),e}function rdt(e,t,n){const i=this;let r;return s;function s(u){let d=i.events.length,f;for(;d--;)if(i.events[d][1].type!=="lineEnding"&&i.events[d][1].type!=="linePrefix"&&i.events[d][1].type!=="content"){f=i.events[d][1].type==="paragraph";break}return!i.parser.lazy[i.now().line]&&(i.interrupt||f)?(e.enter("setextHeadingLine"),r=u,a(u)):n(u)}function a(u){return e.enter("setextHeadingLineSequence"),l(u)}function l(u){return u===r?(e.consume(u),l):(e.exit("setextHeadingLineSequence"),wi(u)?Ui(e,c,"lineSuffix")(u):c(u))}function c(u){return u===null||Tn(u)?(e.exit("setextHeadingLine"),t(u)):n(u)}}const sdt={tokenize:adt};function adt(e){const t=this,n=e.attempt(bE,i,e.attempt(this.parser.constructs.flowInitial,r,Ui(e,e.attempt(this.parser.constructs.flow,r,e.attempt(dut,r)),"linePrefix")));return n;function i(s){if(s===null){e.consume(s);return}return e.enter("lineEndingBlank"),e.consume(s),e.exit("lineEndingBlank"),t.currentConstruct=void 0,n}function r(s){if(s===null){e.consume(s);return}return e.enter("lineEnding"),e.consume(s),e.exit("lineEnding"),t.currentConstruct=void 0,n}}const odt={resolveAll:kSe()},ldt=SSe("string"),cdt=SSe("text");function SSe(e){return{resolveAll:kSe(e==="text"?udt:void 0),tokenize:t};function t(n){const i=this,r=this.parser.constructs[e],s=n.attempt(r,a,l);return a;function a(d){return u(d)?s(d):l(d)}function l(d){if(d===null){n.consume(d);return}return n.enter("data"),n.consume(d),c}function c(d){return u(d)?(n.exit("data"),s(d)):(n.consume(d),c)}function u(d){if(d===null)return!0;const f=r[d];let h=-1;if(f)for(;++h-1){const l=a[0];typeof l=="string"?a[0]=l.slice(i):a.shift()}s>0&&a.push(e[r].slice(0,s))}return a}function Sdt(e,t){let n=-1;const i=[];let r;for(;++n{const n=ru(t),i=O2(n.msg,n.message);if(!i)return"";const r=Array.isArray(n.loc)?n.loc.filter(s=>typeof s=="string"||typeof s=="number").map(String).join("."):"";return r?`${r}: ${i}`:i}).filter(Boolean).join("; "):""}function klt(e,t=!0){const n=ru(e),i=Object.prototype.hasOwnProperty.call(n,"detail")?n.detail:typeof e=="string"?e:void 0,r=ru(i);return{message:typeof i=="string"?t?i.trim():"":O2(r.message,n.message,Slt(i)),errorCode:O2(r.errorCode,n.errorCode),requestId:O2(r.requestId,r.request_id,r.RequestId,n.requestId,n.request_id),diagnostics:r.diagnostics??n.diagnostics,detail:i,payload:e}}function ru(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:{}}function Li(e){return typeof e=="string"?e:""}function QS(e,t){return typeof e=="number"&&Number.isFinite(e)?e:t}function BB(e){const t=ru(e);return{id:Li(t.id),name:Li(t.name),description:Li(t.description),providerType:Li(t.providerType),providerKnowledgeId:Li(t.providerKnowledgeId),projectName:Li(t.projectName),region:Li(t.region),status:Li(t.status),createdAt:Li(t.createdAt),updatedAt:Li(t.updatedAt),ownerId:Li(t.ownerId),ownerLabel:Li(t.ownerLabel),canManage:t.canManage===!0}}function bE(e){const t=ru(e);return{id:Li(t.id),name:Li(t.name),type:Li(t.type),sizeBytes:QS(t.sizeBytes,0),status:Li(t.status),url:Li(t.url),tosPath:Li(t.tosPath),metadata:ru(t.metadata),createdAt:Li(t.createdAt),updatedAt:Li(t.updatedAt),sourceMarkdown:Li(t.sourceMarkdown)}}function Elt(e){const t=ru(e),n=t.attachment,i=ru(n);return{id:Li(t.id),title:Li(t.title),content:Li(t.content),attachmentUrl:Li(t.attachmentUrl)||Li(i.url)||Li(i.previewUrl),attachmentType:Li(t.attachmentType)||Li(i.type)||Li(i.mimeType),attachment:n,tableFields:t.tableFields}}async function Gu(e,t={},n=Yo){var f;const i=qu(Ph(t.headers));i.set("accept","application/json"),t.body&&!(t.body instanceof FormData)&&i.set("content-type","application/json");const r=await fetch(e,{...t,headers:i,signal:Sl(t.signal,n)});if(r.ok)return r.status===204?void 0:r.json();const s=await r.text();let a=s,l=!1;if(s)try{a=JSON.parse(s),l=!0}catch{}const c=((f=r.headers.get("content-type"))==null?void 0:f.toLowerCase())||"",u=klt(a,l||c.startsWith("text/plain")),d=r.status===401?H("knowledge.signInRequired"):r.status===403?H("knowledge.forbidden"):r.status===404?H("knowledge.notFound"):r.status===409?H("knowledge.conflict"):H("knowledge.requestFailed",{status:r.status});throw new YR(u.message||d,r.status,{errorCode:u.errorCode,requestId:u.requestId,diagnostics:u.diagnostics,detail:u.detail,payload:u.payload,rawBody:s})}function s0(e){const t=new URLSearchParams;e.trim()&&t.set("region",e.trim());const n=t.toString();return n?`?${n}`:""}async function Clt(e){var r;const t=new URLSearchParams({region:e.region,pageSize:String(e.pageSize??30)});(r=e.projectName)!=null&&r.trim()&&t.set("projectName",e.projectName.trim()),e.nextToken&&t.set("nextToken",e.nextToken);const n=await Gu(`/web/knowledge-bases?${t.toString()}`,{signal:e.signal}),i=ru(n);return{items:Array.isArray(i.items)?i.items.map(BB):[],nextToken:Li(i.nextToken)}}function Tlt(e){return`${e.region}\0${e.id}`}async function Alt(e){var l;const t=[...new Set(e.regions.map(c=>c.trim()).filter(Boolean))],n=e.nextTokens?t.filter(c=>{var u;return!!((u=e.nextTokens)!=null&&u[c])}):t;if(n.length===0)return{items:[],nextTokens:{},failures:[]};const i=await Promise.allSettled(n.map(async c=>{var u;return{region:c,page:await Clt({region:c,projectName:e.projectName,nextToken:(u=e.nextTokens)==null?void 0:u[c],pageSize:e.pageSize,signal:e.signal})}}));if((l=e.signal)!=null&&l.aborted)throw new DOMException("Aborted","AbortError");const r=[],s={},a=new Map;if(i.forEach((c,u)=>{var f;const d=n[u];if(c.status==="rejected"){const h=(f=e.nextTokens)==null?void 0:f[d];h&&(s[d]=h),r.push({region:d,error:c.reason instanceof Error?c.reason:new Error(H("knowledge.loadFailed"))});return}c.value.page.nextToken&&(s[d]=c.value.page.nextToken),c.value.page.items.forEach(h=>{const m=h.region?h:{...h,region:d};a.set(Tlt(m),m)})}),r.length===n.length)throw new cSe(r);return{items:[...a.values()],nextTokens:s,failures:r}}function _lt(e){return Gu("/web/knowledge-bases",{method:"POST",body:JSON.stringify(e)},rs).then(BB)}function Nlt(e,t,n){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}${s0(t)}`,{method:"PATCH",body:JSON.stringify(n)}).then(BB)}function jlt(e,t){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}${s0(t)}`,{method:"DELETE"},rs)}async function Rlt(e,t){var s;const n=new URLSearchParams({region:t.region,offset:String(t.offset??0),limit:String(t.limit??30)});(s=t.documentType)!=null&&s.trim()&&n.set("documentType",t.documentType.trim());const i=await Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents?${n.toString()}`,{signal:t.signal}),r=ru(i);return{items:Array.isArray(r.items)?r.items.map(bE):[],offset:QS(r.offset,0),limit:QS(r.limit,t.limit??30),hasMore:r.hasMore===!0}}async function Ilt(e,t,n){const i=new URLSearchParams({region:n.region,offset:String(n.offset??0),limit:String(n.limit??20)}),r=await Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/${encodeURIComponent(t)}/preview?${i.toString()}`,{signal:n.signal}),s=ru(r);return{document:bE(s.document),chunks:Array.isArray(s.chunks)?s.chunks.map(Elt):[],sourceMarkdown:Li(s.sourceMarkdown),offset:QS(s.offset,0),limit:QS(s.limit,n.limit??20),hasMore:s.hasMore===!0}}function Plt(e,t,n){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents${s0(t)}`,{method:"POST",body:JSON.stringify(n)},rs).then(bE)}async function Dlt(e,t,n){const i=await Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/web-preview${s0(t)}`,{method:"POST",body:JSON.stringify({sourceType:"url",url:n.url})},rs),r=ru(i);return{name:Li(r.name),url:Li(r.url),sourceMarkdown:Li(r.sourceMarkdown)}}function Mlt(e,t,n){var r,s;const i=new FormData;return i.set("file",n.file),(r=n.name)!=null&&r.trim()&&i.set("name",n.name.trim()),(s=n.documentType)!=null&&s.trim()&&i.set("documentType",n.documentType.trim()),n.metadata&&i.set("metadata",JSON.stringify(n.metadata)),Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/upload${s0(t)}`,{method:"POST",body:i},rs).then(bE)}function Llt(e,t,n,i){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/${encodeURIComponent(t)}${s0(n)}`,{method:"PATCH",body:JSON.stringify(i)}).then(bE)}function $lt(e,t,n){return Gu(`/web/knowledge-bases/${encodeURIComponent(e)}/documents/${encodeURIComponent(t)}${s0(n)}`,{method:"DELETE"},rs)}function yE({className:e="",title:t,status:n,description:i,metadata:r,detailAction:s,action:a,auxiliaryAction:l}){return o.jsxs(LB,{className:`library-resource-card ${e}`.trim(),activateLabel:`${s.label} ${t}`,onActivate:s.disabled?void 0:s.onClick,footer:o.jsx(eSe,{items:r.map(c=>({label:c.label,value:c.value,title:c.title,hideLabel:!0}))}),actions:o.jsxs(o.Fragment,{children:[l?o.jsx(R6,{className:"library-resource-card__auxiliary-action",label:`${l.label} ${t}`,tone:"secondary",disabled:l.disabled,title:l.title??l.label,onClick:l.onClick,children:l.icon}):null,a?o.jsx(R6,{label:`${a.label} ${t}`,icon:a.icon,disabled:a.disabled,title:a.title,onClick:a.onClick}):null]}),children:[o.jsx($B,{leading:o.jsx(tx,{seed:t}),title:t,titleText:t,status:n}),o.jsx(FB,{title:i,children:i})]})}function CHt(){}function aX(e){const t=[],n=String(e||"");let i=n.indexOf(","),r=0,s=!1;for(;!s;){i===-1&&(i=n.length,s=!0);const a=n.slice(r,i).trim();(a||!s)&&t.push(a),r=i+1,i=n.indexOf(",",r)}return t}function dSe(e,t){const n={};return(e[e.length-1]===""?[...e,""]:e).join((n.padRight?" ":"")+","+(n.padLeft===!1?"":" ")).trim()}const Flt=/[$_\p{ID_Start}]/u,Blt=/[$_\u{200C}\u{200D}\p{ID_Continue}]/u,Ult=/[-$_\u{200C}\u{200D}\p{ID_Continue}]/u,Qlt=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,zlt=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,fSe={};function THt(e){return e?Flt.test(String.fromCodePoint(e)):!1}function AHt(e,t){const i=(t||fSe).jsx?Ult:Blt;return e?i.test(String.fromCodePoint(e)):!1}function oX(e,t){return(fSe.jsx?zlt:Qlt).test(e)}const Vlt=/[ \t\n\f\r]/g;function Hlt(e){return typeof e=="object"?e.type==="text"?lX(e.value):!1:lX(e)}function lX(e){return e.replace(Vlt,"")===""}let vE=class{constructor(t,n,i){this.normal=n,this.property=t,i&&(this.space=i)}};vE.prototype.normal={};vE.prototype.property={};vE.prototype.space=void 0;function hSe(e,t){const n={},i={};for(const r of e)Object.assign(n,r.property),Object.assign(i,r.normal);return new vE(n,i,t)}function zS(e){return e.toLowerCase()}class Cl{constructor(t,n){this.attribute=n,this.property=t}}Cl.prototype.attribute="";Cl.prototype.booleanish=!1;Cl.prototype.boolean=!1;Cl.prototype.commaOrSpaceSeparated=!1;Cl.prototype.commaSeparated=!1;Cl.prototype.defined=!1;Cl.prototype.mustUseProperty=!1;Cl.prototype.number=!1;Cl.prototype.overloadedBoolean=!1;Cl.prototype.property="";Cl.prototype.spaceSeparated=!1;Cl.prototype.space=void 0;let qlt=0;const oi=a0(),Gs=a0(),P6=a0(),Nt=a0(),$r=a0(),uv=a0(),zl=a0();function a0(){return 2**++qlt}const D6=Object.freeze(Object.defineProperty({__proto__:null,boolean:oi,booleanish:Gs,commaOrSpaceSeparated:zl,commaSeparated:uv,number:Nt,overloadedBoolean:P6,spaceSeparated:$r},Symbol.toStringTag,{value:"Module"})),EM=Object.keys(D6);class UB extends Cl{constructor(t,n,i,r){let s=-1;if(super(t,n),cX(this,"space",r),typeof i=="number")for(;++s4&&n.slice(0,4)==="data"&&Ylt.test(t)){if(t.charAt(4)==="-"){const s=t.slice(5).replace(uX,Jlt);i="data"+s.charAt(0).toUpperCase()+s.slice(1)}else{const s=t.slice(4);if(!uX.test(s)){let a=s.replace(Xlt,Zlt);a.charAt(0)!=="-"&&(a="-"+a),t="data"+a}}r=UB}return new r(i,t)}function Zlt(e){return"-"+e.toLowerCase()}function Jlt(e){return e.charAt(1).toUpperCase()}const xE=hSe([pSe,Wlt,bSe,ySe,vSe],"html"),qm=hSe([pSe,Klt,bSe,ySe,vSe],"svg");function dX(e){const t=String(e||"").trim();return t?t.split(/[ \t\n\r\f]+/g):[]}function xSe(e){return e.join(" ").trim()}var QB={},fX=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,ect=/\n/g,tct=/^\s*/,nct=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,ict=/^:\s*/,rct=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,sct=/^[;\s]*/,act=/^\s+|\s+$/g,oct=` +`,hX="/",pX="*",Rg="",lct="comment",cct="declaration";function uct(e,t){if(typeof e!="string")throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var n=1,i=1;function r(g){var b=g.match(ect);b&&(n+=b.length);var v=g.lastIndexOf(oct);i=~v?g.length-v:i+g.length}function s(){var g={line:n,column:i};return function(b){return b.position=new a(g),u(),b}}function a(g){this.start=g,this.end={line:n,column:i},this.source=t.source}a.prototype.content=e;function l(g){var b=new Error(t.source+":"+n+":"+i+": "+g);if(b.reason=g,b.filename=t.source,b.line=n,b.column=i,b.source=e,!t.silent)throw b}function c(g){var b=g.exec(e);if(b){var v=b[0];return r(v),e=e.slice(v.length),b}}function u(){c(tct)}function d(g){var b;for(g=g||[];b=f();)b!==!1&&g.push(b);return g}function f(){var g=s();if(!(hX!=e.charAt(0)||pX!=e.charAt(1))){for(var b=2;Rg!=e.charAt(b)&&(pX!=e.charAt(b)||hX!=e.charAt(b+1));)++b;if(b+=2,Rg===e.charAt(b-1))return l("End of comment missing");var v=e.slice(2,b-2);return i+=2,r(v),e=e.slice(b),i+=2,g({type:lct,comment:v})}}function h(){var g=s(),b=c(nct);if(b){if(f(),!c(ict))return l("property missing ':'");var v=c(rct),y=g({type:cct,property:mX(b[0].replace(fX,Rg)),value:v?mX(v[0].replace(fX,Rg)):Rg});return c(sct),y}}function m(){var g=[];d(g);for(var b;b=h();)b!==!1&&(g.push(b),d(g));return g}return u(),m()}function mX(e){return e?e.replace(act,Rg):Rg}var dct=uct,fct=Lp&&Lp.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(QB,"__esModule",{value:!0});QB.default=pct;const hct=fct(dct);function pct(e,t){let n=null;if(!e||typeof e!="string")return n;const i=(0,hct.default)(e),r=typeof t=="function";return i.forEach(s=>{if(s.type!=="declaration")return;const{property:a,value:l}=s;r?t(a,l,s):l&&(n=n||{},n[a]=l)}),n}var JR={};Object.defineProperty(JR,"__esModule",{value:!0});JR.camelCase=void 0;var mct=/^--[a-zA-Z0-9_-]+$/,gct=/-([a-z])/g,bct=/^[^-]+$/,yct=/^-(webkit|moz|ms|o|khtml)-/,vct=/^-(ms)-/,xct=function(e){return!e||bct.test(e)||mct.test(e)},wct=function(e,t){return t.toUpperCase()},gX=function(e,t){return"".concat(t,"-")},Oct=function(e,t){return t===void 0&&(t={}),xct(e)?e:(e=e.toLowerCase(),t.reactCompat?e=e.replace(vct,gX):e=e.replace(yct,gX),e.replace(gct,wct))};JR.camelCase=Oct;var Sct=Lp&&Lp.__importDefault||function(e){return e&&e.__esModule?e:{default:e}},kct=Sct(QB),Ect=JR;function M6(e,t){var n={};return!e||typeof e!="string"||(0,kct.default)(e,function(i,r){i&&r&&(n[(0,Ect.camelCase)(i,t)]=r)}),n}M6.default=M6;var Cct=M6;const Tct=vx(Cct),eI=wSe("end"),Jd=wSe("start");function wSe(e){return t;function t(n){const i=n&&n.position&&n.position[e]||{};if(typeof i.line=="number"&&i.line>0&&typeof i.column=="number"&&i.column>0)return{line:i.line,column:i.column,offset:typeof i.offset=="number"&&i.offset>-1?i.offset:void 0}}}function Act(e){const t=Jd(e),n=eI(e);if(t&&n)return{start:t,end:n}}function NO(e){return!e||typeof e!="object"?"":"position"in e||"type"in e?bX(e.position):"start"in e||"end"in e?bX(e):"line"in e||"column"in e?L6(e):""}function L6(e){return yX(e&&e.line)+":"+yX(e&&e.column)}function bX(e){return L6(e&&e.start)+"-"+L6(e&&e.end)}function yX(e){return e&&typeof e=="number"?e:1}class Co extends Error{constructor(t,n,i){super(),typeof n=="string"&&(i=n,n=void 0);let r="",s={},a=!1;if(n&&("line"in n&&"column"in n?s={place:n}:"start"in n&&"end"in n?s={place:n}:"type"in n?s={ancestors:[n],place:n.position}:s={...n}),typeof t=="string"?r=t:!s.cause&&t&&(a=!0,r=t.message,s.cause=t),!s.ruleId&&!s.source&&typeof i=="string"){const c=i.indexOf(":");c===-1?s.ruleId=i:(s.source=i.slice(0,c),s.ruleId=i.slice(c+1))}if(!s.place&&s.ancestors&&s.ancestors){const c=s.ancestors[s.ancestors.length-1];c&&(s.place=c.position)}const l=s.place&&"start"in s.place?s.place.start:s.place;this.ancestors=s.ancestors||void 0,this.cause=s.cause||void 0,this.column=l?l.column:void 0,this.fatal=void 0,this.file="",this.message=r,this.line=l?l.line:void 0,this.name=NO(s.place)||"1:1",this.place=s.place||void 0,this.reason=this.message,this.ruleId=s.ruleId||void 0,this.source=s.source||void 0,this.stack=a&&s.cause&&typeof s.cause.stack=="string"?s.cause.stack:"",this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}}Co.prototype.file="";Co.prototype.name="";Co.prototype.reason="";Co.prototype.message="";Co.prototype.stack="";Co.prototype.column=void 0;Co.prototype.line=void 0;Co.prototype.ancestors=void 0;Co.prototype.cause=void 0;Co.prototype.fatal=void 0;Co.prototype.place=void 0;Co.prototype.ruleId=void 0;Co.prototype.source=void 0;const zB={}.hasOwnProperty,_ct=new Map,Nct=/[A-Z]/g,jct=new Set(["table","tbody","thead","tfoot","tr"]),Rct=new Set(["td","th"]),OSe="https://github.com/syntax-tree/hast-util-to-jsx-runtime";function Ict(e,t){if(!t||t.Fragment===void 0)throw new TypeError("Expected `Fragment` in options");const n=t.filePath||void 0;let i;if(t.development){if(typeof t.jsxDEV!="function")throw new TypeError("Expected `jsxDEV` in options when `development: true`");i=Uct(n,t.jsxDEV)}else{if(typeof t.jsx!="function")throw new TypeError("Expected `jsx` in production options");if(typeof t.jsxs!="function")throw new TypeError("Expected `jsxs` in production options");i=Bct(n,t.jsx,t.jsxs)}const r={Fragment:t.Fragment,ancestors:[],components:t.components||{},create:i,elementAttributeNameCase:t.elementAttributeNameCase||"react",evaluater:t.createEvaluater?t.createEvaluater():void 0,filePath:n,ignoreInvalidStyle:t.ignoreInvalidStyle||!1,passKeys:t.passKeys!==!1,passNode:t.passNode||!1,schema:t.space==="svg"?qm:xE,stylePropertyNameCase:t.stylePropertyNameCase||"dom",tableCellAlignToStyle:t.tableCellAlignToStyle!==!1},s=SSe(r,e,void 0);return s&&typeof s!="string"?s:r.create(e,r.Fragment,{children:s||void 0},void 0)}function SSe(e,t,n){if(t.type==="element")return Pct(e,t,n);if(t.type==="mdxFlowExpression"||t.type==="mdxTextExpression")return Dct(e,t);if(t.type==="mdxJsxFlowElement"||t.type==="mdxJsxTextElement")return Lct(e,t,n);if(t.type==="mdxjsEsm")return Mct(e,t);if(t.type==="root")return $ct(e,t,n);if(t.type==="text")return Fct(e,t)}function Pct(e,t,n){const i=e.schema;let r=i;t.tagName.toLowerCase()==="svg"&&i.space==="html"&&(r=qm,e.schema=r),e.ancestors.push(t);const s=ESe(e,t.tagName,!1),a=Qct(e,t);let l=HB(e,t);return jct.has(t.tagName)&&(l=l.filter(function(c){return typeof c=="string"?!Hlt(c):!0})),kSe(e,a,s,t),VB(a,l),e.ancestors.pop(),e.schema=i,e.create(t,s,a,n)}function Dct(e,t){if(t.data&&t.data.estree&&e.evaluater){const i=t.data.estree.body[0];return i.type,e.evaluater.evaluateExpression(i.expression)}VS(e,t.position)}function Mct(e,t){if(t.data&&t.data.estree&&e.evaluater)return e.evaluater.evaluateProgram(t.data.estree);VS(e,t.position)}function Lct(e,t,n){const i=e.schema;let r=i;t.name==="svg"&&i.space==="html"&&(r=qm,e.schema=r),e.ancestors.push(t);const s=t.name===null?e.Fragment:ESe(e,t.name,!0),a=zct(e,t),l=HB(e,t);return kSe(e,a,s,t),VB(a,l),e.ancestors.pop(),e.schema=i,e.create(t,s,a,n)}function $ct(e,t,n){const i={};return VB(i,HB(e,t)),e.create(t,e.Fragment,i,n)}function Fct(e,t){return t.value}function kSe(e,t,n,i){typeof n!="string"&&n!==e.Fragment&&e.passNode&&(t.node=i)}function VB(e,t){if(t.length>0){const n=t.length>1?t:t[0];n&&(e.children=n)}}function Bct(e,t,n){return i;function i(r,s,a,l){const u=Array.isArray(a.children)?n:t;return l?u(s,a,l):u(s,a)}}function Uct(e,t){return n;function n(i,r,s,a){const l=Array.isArray(s.children),c=Jd(i);return t(r,s,a,l,{columnNumber:c?c.column-1:void 0,fileName:e,lineNumber:c?c.line:void 0},void 0)}}function Qct(e,t){const n={};let i,r;for(r in t.properties)if(r!=="children"&&zB.call(t.properties,r)){const s=Vct(e,r,t.properties[r]);if(s){const[a,l]=s;e.tableCellAlignToStyle&&a==="align"&&typeof l=="string"&&Rct.has(t.tagName)?i=l:n[a]=l}}if(i){const s=n.style||(n.style={});s[e.stylePropertyNameCase==="css"?"text-align":"textAlign"]=i}return n}function zct(e,t){const n={};for(const i of t.attributes)if(i.type==="mdxJsxExpressionAttribute")if(i.data&&i.data.estree&&e.evaluater){const s=i.data.estree.body[0];s.type;const a=s.expression;a.type;const l=a.properties[0];l.type,Object.assign(n,e.evaluater.evaluateExpression(l.argument))}else VS(e,t.position);else{const r=i.name;let s;if(i.value&&typeof i.value=="object")if(i.value.data&&i.value.data.estree&&e.evaluater){const l=i.value.data.estree.body[0];l.type,s=e.evaluater.evaluateExpression(l.expression)}else VS(e,t.position);else s=i.value===null?!0:i.value;n[r]=s}return n}function HB(e,t){const n=[];let i=-1;const r=e.passKeys?new Map:_ct;for(;++ir?0:r+t:t=t>r?r:t,n=n>0?n:0,i.length<1e4)a=Array.from(i),a.unshift(t,n),e.splice(...a);else for(n&&e.splice(t,n);s0?(cc(e,e.length,0,t),e):t}const wX={}.hasOwnProperty;function TSe(e){const t={};let n=-1;for(;++n13&&n<32||n>126&&n<160||n>55295&&n<57344||n>64975&&n<65008||(n&65535)===65535||(n&65535)===65534||n>1114111?"�":String.fromCodePoint(n)}function Mu(e){return e.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}const Bo=Wm(/[A-Za-z]/),xo=Wm(/[\dA-Za-z]/),Jct=Wm(/[#-'*+\--9=?A-Z^-~]/);function mN(e){return e!==null&&(e<32||e===127)}const $6=Wm(/\d/),eut=Wm(/[\dA-Fa-f]/),tut=Wm(/[!-/:-@[-`{-~]/);function An(e){return e!==null&&e<-2}function Mr(e){return e!==null&&(e<0||e===32)}function ki(e){return e===-2||e===-1||e===32}const tI=Wm(new RegExp("\\p{P}|\\p{S}","u")),Rb=Wm(/\s/);function Wm(e){return t;function t(n){return n!==null&&n>-1&&e.test(String.fromCharCode(n))}}function Yx(e){const t=[];let n=-1,i=0,r=0;for(;++n55295&&s<57344){const l=e.charCodeAt(n+1);s<56320&&l>56319&&l<57344?(a=String.fromCharCode(s,l),r=1):a="�"}else a=String.fromCharCode(s);a&&(t.push(e.slice(i,n),encodeURIComponent(a)),i=n+r+1,a=""),r&&(n+=r,r=0)}return t.join("")+e.slice(i)}function Vi(e,t,n,i){const r=i?i-1:Number.POSITIVE_INFINITY;let s=0;return a;function a(c){return ki(c)?(e.enter(n),l(c)):t(c)}function l(c){return ki(c)&&s++a))return;const E=t.events.length;let C=E,N,T;for(;C--;)if(t.events[C][0]==="exit"&&t.events[C][1].type==="chunkFlow"){if(N){T=t.events[C][1].end;break}N=!0}for(y(i),S=E;SO;){const k=n[w];t.containerState=k[1],k[0].exit.call(t,e)}n.length=O}function x(){r.write([null]),s=void 0,r=void 0,t.containerState._closeFlow=void 0}}function aut(e,t,n){return Vi(e,e.attempt(this.parser.constructs.document,t,n),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}function nx(e){if(e===null||Mr(e)||Rb(e))return 1;if(tI(e))return 2}function nI(e,t,n){const i=[];let r=-1;for(;++r1&&e[n][1].end.offset-e[n][1].start.offset>1?2:1;const f={...e[i][1].end},h={...e[n][1].start};SX(f,-c),SX(h,c),a={type:c>1?"strongSequence":"emphasisSequence",start:f,end:{...e[i][1].end}},l={type:c>1?"strongSequence":"emphasisSequence",start:{...e[n][1].start},end:h},s={type:c>1?"strongText":"emphasisText",start:{...e[i][1].end},end:{...e[n][1].start}},r={type:c>1?"strong":"emphasis",start:{...a.start},end:{...l.end}},e[i][1].end={...a.start},e[n][1].start={...l.end},u=[],e[i][1].end.offset-e[i][1].start.offset&&(u=$c(u,[["enter",e[i][1],t],["exit",e[i][1],t]])),u=$c(u,[["enter",r,t],["enter",a,t],["exit",a,t],["enter",s,t]]),u=$c(u,nI(t.parser.constructs.insideSpan.null,e.slice(i+1,n),t)),u=$c(u,[["exit",s,t],["enter",l,t],["exit",l,t],["exit",r,t]]),e[n][1].end.offset-e[n][1].start.offset?(d=2,u=$c(u,[["enter",e[n][1],t],["exit",e[n][1],t]])):d=0,cc(e,i-1,n-i+3,u),n=i+u.length-d-2;break}}for(n=-1;++n0&&ki(S)?Vi(e,x,"linePrefix",s+1)(S):x(S)}function x(S){return S===null||An(S)?e.check(kX,b,w)(S):(e.enter("codeFlowValue"),O(S))}function O(S){return S===null||An(S)?(e.exit("codeFlowValue"),x(S)):(e.consume(S),O)}function w(S){return e.exit("codeFenced"),t(S)}function k(S,E,C){let N=0;return T;function T(P){return S.enter("lineEnding"),S.consume(P),S.exit("lineEnding"),j}function j(P){return S.enter("codeFencedFence"),ki(P)?Vi(S,A,"linePrefix",i.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(P):A(P)}function A(P){return P===l?(S.enter("codeFencedFenceSequence"),L(P)):C(P)}function L(P){return P===l?(N++,S.consume(P),L):N>=a?(S.exit("codeFencedFenceSequence"),ki(P)?Vi(S,_,"whitespace")(P):_(P)):C(P)}function _(P){return P===null||An(P)?(S.exit("codeFencedFence"),E(P)):C(P)}}}function yut(e,t,n){const i=this;return r;function r(a){return a===null?n(a):(e.enter("lineEnding"),e.consume(a),e.exit("lineEnding"),s)}function s(a){return i.parser.lazy[i.now().line]?n(a):t(a)}}const TM={name:"codeIndented",tokenize:xut},vut={partial:!0,tokenize:wut};function xut(e,t,n){const i=this;return r;function r(u){return e.enter("codeIndented"),Vi(e,s,"linePrefix",5)(u)}function s(u){const d=i.events[i.events.length-1];return d&&d[1].type==="linePrefix"&&d[2].sliceSerialize(d[1],!0).length>=4?a(u):n(u)}function a(u){return u===null?c(u):An(u)?e.attempt(vut,a,c)(u):(e.enter("codeFlowValue"),l(u))}function l(u){return u===null||An(u)?(e.exit("codeFlowValue"),a(u)):(e.consume(u),l)}function c(u){return e.exit("codeIndented"),t(u)}}function wut(e,t,n){const i=this;return r;function r(a){return i.parser.lazy[i.now().line]?n(a):An(a)?(e.enter("lineEnding"),e.consume(a),e.exit("lineEnding"),r):Vi(e,s,"linePrefix",5)(a)}function s(a){const l=i.events[i.events.length-1];return l&&l[1].type==="linePrefix"&&l[2].sliceSerialize(l[1],!0).length>=4?t(a):An(a)?r(a):n(a)}}const Out={name:"codeText",previous:kut,resolve:Sut,tokenize:Eut};function Sut(e){let t=e.length-4,n=3,i,r;if((e[n][1].type==="lineEnding"||e[n][1].type==="space")&&(e[t][1].type==="lineEnding"||e[t][1].type==="space")){for(i=n;++i=this.left.length+this.right.length)throw new RangeError("Cannot access index `"+t+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return tthis.left.length?this.right.slice(this.right.length-i+this.left.length,this.right.length-t+this.left.length).reverse():this.left.slice(t).concat(this.right.slice(this.right.length-i+this.left.length).reverse())}splice(t,n,i){const r=n||0;this.setCursor(Math.trunc(t));const s=this.right.splice(this.right.length-r,Number.POSITIVE_INFINITY);return i&&K1(this.left,i),s.reverse()}pop(){return this.setCursor(Number.POSITIVE_INFINITY),this.left.pop()}push(t){this.setCursor(Number.POSITIVE_INFINITY),this.left.push(t)}pushMany(t){this.setCursor(Number.POSITIVE_INFINITY),K1(this.left,t)}unshift(t){this.setCursor(0),this.right.push(t)}unshiftMany(t){this.setCursor(0),K1(this.right,t.reverse())}setCursor(t){if(!(t===this.left.length||t>this.left.length&&this.right.length===0||t<0&&this.left.length===0))if(t=4?t(a):e.interrupt(i.parser.constructs.flow,n,t)(a)}}function ISe(e,t,n,i,r,s,a,l,c){const u=c||Number.POSITIVE_INFINITY;let d=0;return f;function f(y){return y===60?(e.enter(i),e.enter(r),e.enter(s),e.consume(y),e.exit(s),h):y===null||y===32||y===41||mN(y)?n(y):(e.enter(i),e.enter(a),e.enter(l),e.enter("chunkString",{contentType:"string"}),b(y))}function h(y){return y===62?(e.enter(s),e.consume(y),e.exit(s),e.exit(r),e.exit(i),t):(e.enter(l),e.enter("chunkString",{contentType:"string"}),m(y))}function m(y){return y===62?(e.exit("chunkString"),e.exit(l),h(y)):y===null||y===60||An(y)?n(y):(e.consume(y),y===92?g:m)}function g(y){return y===60||y===62||y===92?(e.consume(y),m):m(y)}function b(y){return!d&&(y===null||y===41||Mr(y))?(e.exit("chunkString"),e.exit(l),e.exit(a),e.exit(i),t(y)):d999||m===null||m===91||m===93&&!c||m===94&&!l&&"_hiddenFootnoteSupport"in a.parser.constructs?n(m):m===93?(e.exit(s),e.enter(r),e.consume(m),e.exit(r),e.exit(i),t):An(m)?(e.enter("lineEnding"),e.consume(m),e.exit("lineEnding"),d):(e.enter("chunkString",{contentType:"string"}),f(m))}function f(m){return m===null||m===91||m===93||An(m)||l++>999?(e.exit("chunkString"),d(m)):(e.consume(m),c||(c=!ki(m)),m===92?h:f)}function h(m){return m===91||m===92||m===93?(e.consume(m),l++,f):f(m)}}function DSe(e,t,n,i,r,s){let a;return l;function l(h){return h===34||h===39||h===40?(e.enter(i),e.enter(r),e.consume(h),e.exit(r),a=h===40?41:h,c):n(h)}function c(h){return h===a?(e.enter(r),e.consume(h),e.exit(r),e.exit(i),t):(e.enter(s),u(h))}function u(h){return h===a?(e.exit(s),c(a)):h===null?n(h):An(h)?(e.enter("lineEnding"),e.consume(h),e.exit("lineEnding"),Vi(e,u,"linePrefix")):(e.enter("chunkString",{contentType:"string"}),d(h))}function d(h){return h===a||h===null||An(h)?(e.exit("chunkString"),u(h)):(e.consume(h),h===92?f:d)}function f(h){return h===a||h===92?(e.consume(h),d):d(h)}}function jO(e,t){let n;return i;function i(r){return An(r)?(e.enter("lineEnding"),e.consume(r),e.exit("lineEnding"),n=!0,i):ki(r)?Vi(e,i,n?"linePrefix":"lineSuffix")(r):t(r)}}const Iut={name:"definition",tokenize:Dut},Put={partial:!0,tokenize:Mut};function Dut(e,t,n){const i=this;let r;return s;function s(m){return e.enter("definition"),a(m)}function a(m){return PSe.call(i,e,l,n,"definitionLabel","definitionLabelMarker","definitionLabelString")(m)}function l(m){return r=Mu(i.sliceSerialize(i.events[i.events.length-1][1]).slice(1,-1)),m===58?(e.enter("definitionMarker"),e.consume(m),e.exit("definitionMarker"),c):n(m)}function c(m){return Mr(m)?jO(e,u)(m):u(m)}function u(m){return ISe(e,d,n,"definitionDestination","definitionDestinationLiteral","definitionDestinationLiteralMarker","definitionDestinationRaw","definitionDestinationString")(m)}function d(m){return e.attempt(Put,f,f)(m)}function f(m){return ki(m)?Vi(e,h,"whitespace")(m):h(m)}function h(m){return m===null||An(m)?(e.exit("definition"),i.parser.defined.push(r),t(m)):n(m)}}function Mut(e,t,n){return i;function i(l){return Mr(l)?jO(e,r)(l):n(l)}function r(l){return DSe(e,s,n,"definitionTitle","definitionTitleMarker","definitionTitleString")(l)}function s(l){return ki(l)?Vi(e,a,"whitespace")(l):a(l)}function a(l){return l===null||An(l)?t(l):n(l)}}const Lut={name:"hardBreakEscape",tokenize:$ut};function $ut(e,t,n){return i;function i(s){return e.enter("hardBreakEscape"),e.consume(s),r}function r(s){return An(s)?(e.exit("hardBreakEscape"),t(s)):n(s)}}const Fut={name:"headingAtx",resolve:But,tokenize:Uut};function But(e,t){let n=e.length-2,i=3,r,s;return e[i][1].type==="whitespace"&&(i+=2),n-2>i&&e[n][1].type==="whitespace"&&(n-=2),e[n][1].type==="atxHeadingSequence"&&(i===n-1||n-4>i&&e[n-2][1].type==="whitespace")&&(n-=i+1===n?2:4),n>i&&(r={type:"atxHeadingText",start:e[i][1].start,end:e[n][1].end},s={type:"chunkText",start:e[i][1].start,end:e[n][1].end,contentType:"text"},cc(e,i,n-i+1,[["enter",r,t],["enter",s,t],["exit",s,t],["exit",r,t]])),e}function Uut(e,t,n){let i=0;return r;function r(d){return e.enter("atxHeading"),s(d)}function s(d){return e.enter("atxHeadingSequence"),a(d)}function a(d){return d===35&&i++<6?(e.consume(d),a):d===null||Mr(d)?(e.exit("atxHeadingSequence"),l(d)):n(d)}function l(d){return d===35?(e.enter("atxHeadingSequence"),c(d)):d===null||An(d)?(e.exit("atxHeading"),t(d)):ki(d)?Vi(e,l,"whitespace")(d):(e.enter("atxHeadingText"),u(d))}function c(d){return d===35?(e.consume(d),c):(e.exit("atxHeadingSequence"),l(d))}function u(d){return d===null||d===35||Mr(d)?(e.exit("atxHeadingText"),l(d)):(e.consume(d),u)}}const Qut=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],CX=["pre","script","style","textarea"],zut={concrete:!0,name:"htmlFlow",resolveTo:qut,tokenize:Wut},Vut={partial:!0,tokenize:Gut},Hut={partial:!0,tokenize:Kut};function qut(e){let t=e.length;for(;t--&&!(e[t][0]==="enter"&&e[t][1].type==="htmlFlow"););return t>1&&e[t-2][1].type==="linePrefix"&&(e[t][1].start=e[t-2][1].start,e[t+1][1].start=e[t-2][1].start,e.splice(t-2,2)),e}function Wut(e,t,n){const i=this;let r,s,a,l,c;return u;function u(Q){return d(Q)}function d(Q){return e.enter("htmlFlow"),e.enter("htmlFlowData"),e.consume(Q),f}function f(Q){return Q===33?(e.consume(Q),h):Q===47?(e.consume(Q),s=!0,b):Q===63?(e.consume(Q),r=3,i.interrupt?t:R):Bo(Q)?(e.consume(Q),a=String.fromCharCode(Q),v):n(Q)}function h(Q){return Q===45?(e.consume(Q),r=2,m):Q===91?(e.consume(Q),r=5,l=0,g):Bo(Q)?(e.consume(Q),r=4,i.interrupt?t:R):n(Q)}function m(Q){return Q===45?(e.consume(Q),i.interrupt?t:R):n(Q)}function g(Q){const q="CDATA[";return Q===q.charCodeAt(l++)?(e.consume(Q),l===q.length?i.interrupt?t:A:g):n(Q)}function b(Q){return Bo(Q)?(e.consume(Q),a=String.fromCharCode(Q),v):n(Q)}function v(Q){if(Q===null||Q===47||Q===62||Mr(Q)){const q=Q===47,U=a.toLowerCase();return!q&&!s&&CX.includes(U)?(r=1,i.interrupt?t(Q):A(Q)):Qut.includes(a.toLowerCase())?(r=6,q?(e.consume(Q),y):i.interrupt?t(Q):A(Q)):(r=7,i.interrupt&&!i.parser.lazy[i.now().line]?n(Q):s?x(Q):O(Q))}return Q===45||xo(Q)?(e.consume(Q),a+=String.fromCharCode(Q),v):n(Q)}function y(Q){return Q===62?(e.consume(Q),i.interrupt?t:A):n(Q)}function x(Q){return ki(Q)?(e.consume(Q),x):T(Q)}function O(Q){return Q===47?(e.consume(Q),T):Q===58||Q===95||Bo(Q)?(e.consume(Q),w):ki(Q)?(e.consume(Q),O):T(Q)}function w(Q){return Q===45||Q===46||Q===58||Q===95||xo(Q)?(e.consume(Q),w):k(Q)}function k(Q){return Q===61?(e.consume(Q),S):ki(Q)?(e.consume(Q),k):O(Q)}function S(Q){return Q===null||Q===60||Q===61||Q===62||Q===96?n(Q):Q===34||Q===39?(e.consume(Q),c=Q,E):ki(Q)?(e.consume(Q),S):C(Q)}function E(Q){return Q===c?(e.consume(Q),c=null,N):Q===null||An(Q)?n(Q):(e.consume(Q),E)}function C(Q){return Q===null||Q===34||Q===39||Q===47||Q===60||Q===61||Q===62||Q===96||Mr(Q)?k(Q):(e.consume(Q),C)}function N(Q){return Q===47||Q===62||ki(Q)?O(Q):n(Q)}function T(Q){return Q===62?(e.consume(Q),j):n(Q)}function j(Q){return Q===null||An(Q)?A(Q):ki(Q)?(e.consume(Q),j):n(Q)}function A(Q){return Q===45&&r===2?(e.consume(Q),I):Q===60&&r===1?(e.consume(Q),$):Q===62&&r===4?(e.consume(Q),V):Q===63&&r===3?(e.consume(Q),R):Q===93&&r===5?(e.consume(Q),B):An(Q)&&(r===6||r===7)?(e.exit("htmlFlowData"),e.check(Vut,K,L)(Q)):Q===null||An(Q)?(e.exit("htmlFlowData"),L(Q)):(e.consume(Q),A)}function L(Q){return e.check(Hut,_,K)(Q)}function _(Q){return e.enter("lineEnding"),e.consume(Q),e.exit("lineEnding"),P}function P(Q){return Q===null||An(Q)?L(Q):(e.enter("htmlFlowData"),A(Q))}function I(Q){return Q===45?(e.consume(Q),R):A(Q)}function $(Q){return Q===47?(e.consume(Q),a="",M):A(Q)}function M(Q){if(Q===62){const q=a.toLowerCase();return CX.includes(q)?(e.consume(Q),V):A(Q)}return Bo(Q)&&a.length<8?(e.consume(Q),a+=String.fromCharCode(Q),M):A(Q)}function B(Q){return Q===93?(e.consume(Q),R):A(Q)}function R(Q){return Q===62?(e.consume(Q),V):Q===45&&r===2?(e.consume(Q),R):A(Q)}function V(Q){return Q===null||An(Q)?(e.exit("htmlFlowData"),K(Q)):(e.consume(Q),V)}function K(Q){return e.exit("htmlFlow"),t(Q)}}function Kut(e,t,n){const i=this;return r;function r(a){return An(a)?(e.enter("lineEnding"),e.consume(a),e.exit("lineEnding"),s):n(a)}function s(a){return i.parser.lazy[i.now().line]?n(a):t(a)}}function Gut(e,t,n){return i;function i(r){return e.enter("lineEnding"),e.consume(r),e.exit("lineEnding"),e.attempt(wE,t,n)}}const Xut={name:"htmlText",tokenize:Yut};function Yut(e,t,n){const i=this;let r,s,a;return l;function l(R){return e.enter("htmlText"),e.enter("htmlTextData"),e.consume(R),c}function c(R){return R===33?(e.consume(R),u):R===47?(e.consume(R),k):R===63?(e.consume(R),O):Bo(R)?(e.consume(R),C):n(R)}function u(R){return R===45?(e.consume(R),d):R===91?(e.consume(R),s=0,g):Bo(R)?(e.consume(R),x):n(R)}function d(R){return R===45?(e.consume(R),m):n(R)}function f(R){return R===null?n(R):R===45?(e.consume(R),h):An(R)?(a=f,$(R)):(e.consume(R),f)}function h(R){return R===45?(e.consume(R),m):f(R)}function m(R){return R===62?I(R):R===45?h(R):f(R)}function g(R){const V="CDATA[";return R===V.charCodeAt(s++)?(e.consume(R),s===V.length?b:g):n(R)}function b(R){return R===null?n(R):R===93?(e.consume(R),v):An(R)?(a=b,$(R)):(e.consume(R),b)}function v(R){return R===93?(e.consume(R),y):b(R)}function y(R){return R===62?I(R):R===93?(e.consume(R),y):b(R)}function x(R){return R===null||R===62?I(R):An(R)?(a=x,$(R)):(e.consume(R),x)}function O(R){return R===null?n(R):R===63?(e.consume(R),w):An(R)?(a=O,$(R)):(e.consume(R),O)}function w(R){return R===62?I(R):O(R)}function k(R){return Bo(R)?(e.consume(R),S):n(R)}function S(R){return R===45||xo(R)?(e.consume(R),S):E(R)}function E(R){return An(R)?(a=E,$(R)):ki(R)?(e.consume(R),E):I(R)}function C(R){return R===45||xo(R)?(e.consume(R),C):R===47||R===62||Mr(R)?N(R):n(R)}function N(R){return R===47?(e.consume(R),I):R===58||R===95||Bo(R)?(e.consume(R),T):An(R)?(a=N,$(R)):ki(R)?(e.consume(R),N):I(R)}function T(R){return R===45||R===46||R===58||R===95||xo(R)?(e.consume(R),T):j(R)}function j(R){return R===61?(e.consume(R),A):An(R)?(a=j,$(R)):ki(R)?(e.consume(R),j):N(R)}function A(R){return R===null||R===60||R===61||R===62||R===96?n(R):R===34||R===39?(e.consume(R),r=R,L):An(R)?(a=A,$(R)):ki(R)?(e.consume(R),A):(e.consume(R),_)}function L(R){return R===r?(e.consume(R),r=void 0,P):R===null?n(R):An(R)?(a=L,$(R)):(e.consume(R),L)}function _(R){return R===null||R===34||R===39||R===60||R===61||R===96?n(R):R===47||R===62||Mr(R)?N(R):(e.consume(R),_)}function P(R){return R===47||R===62||Mr(R)?N(R):n(R)}function I(R){return R===62?(e.consume(R),e.exit("htmlTextData"),e.exit("htmlText"),t):n(R)}function $(R){return e.exit("htmlTextData"),e.enter("lineEnding"),e.consume(R),e.exit("lineEnding"),M}function M(R){return ki(R)?Vi(e,B,"linePrefix",i.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(R):B(R)}function B(R){return e.enter("htmlTextData"),a(R)}}const KB={name:"labelEnd",resolveAll:tdt,resolveTo:ndt,tokenize:idt},Zut={tokenize:rdt},Jut={tokenize:sdt},edt={tokenize:adt};function tdt(e){let t=-1;const n=[];for(;++t=3&&(u===null||An(u))?(e.exit("thematicBreak"),t(u)):n(u)}function c(u){return u===r?(e.consume(u),i++,c):(e.exit("thematicBreakSequence"),ki(u)?Vi(e,l,"whitespace")(u):l(u))}}const il={continuation:{tokenize:gdt},exit:ydt,name:"list",tokenize:mdt},hdt={partial:!0,tokenize:vdt},pdt={partial:!0,tokenize:bdt};function mdt(e,t,n){const i=this,r=i.events[i.events.length-1];let s=r&&r[1].type==="linePrefix"?r[2].sliceSerialize(r[1],!0).length:0,a=0;return l;function l(m){const g=i.containerState.type||(m===42||m===43||m===45?"listUnordered":"listOrdered");if(g==="listUnordered"?!i.containerState.marker||m===i.containerState.marker:$6(m)){if(i.containerState.type||(i.containerState.type=g,e.enter(g,{_container:!0})),g==="listUnordered")return e.enter("listItemPrefix"),m===42||m===45?e.check(S2,n,u)(m):u(m);if(!i.interrupt||m===49)return e.enter("listItemPrefix"),e.enter("listItemValue"),c(m)}return n(m)}function c(m){return $6(m)&&++a<10?(e.consume(m),c):(!i.interrupt||a<2)&&(i.containerState.marker?m===i.containerState.marker:m===41||m===46)?(e.exit("listItemValue"),u(m)):n(m)}function u(m){return e.enter("listItemMarker"),e.consume(m),e.exit("listItemMarker"),i.containerState.marker=i.containerState.marker||m,e.check(wE,i.interrupt?n:d,e.attempt(hdt,h,f))}function d(m){return i.containerState.initialBlankLine=!0,s++,h(m)}function f(m){return ki(m)?(e.enter("listItemPrefixWhitespace"),e.consume(m),e.exit("listItemPrefixWhitespace"),h):n(m)}function h(m){return i.containerState.size=s+i.sliceSerialize(e.exit("listItemPrefix"),!0).length,t(m)}}function gdt(e,t,n){const i=this;return i.containerState._closeFlow=void 0,e.check(wE,r,s);function r(l){return i.containerState.furtherBlankLines=i.containerState.furtherBlankLines||i.containerState.initialBlankLine,Vi(e,t,"listItemIndent",i.containerState.size+1)(l)}function s(l){return i.containerState.furtherBlankLines||!ki(l)?(i.containerState.furtherBlankLines=void 0,i.containerState.initialBlankLine=void 0,a(l)):(i.containerState.furtherBlankLines=void 0,i.containerState.initialBlankLine=void 0,e.attempt(pdt,t,a)(l))}function a(l){return i.containerState._closeFlow=!0,i.interrupt=void 0,Vi(e,e.attempt(il,t,n),"linePrefix",i.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(l)}}function bdt(e,t,n){const i=this;return Vi(e,r,"listItemIndent",i.containerState.size+1);function r(s){const a=i.events[i.events.length-1];return a&&a[1].type==="listItemIndent"&&a[2].sliceSerialize(a[1],!0).length===i.containerState.size?t(s):n(s)}}function ydt(e){e.exit(this.containerState.type)}function vdt(e,t,n){const i=this;return Vi(e,r,"listItemPrefixWhitespace",i.parser.constructs.disable.null.includes("codeIndented")?void 0:5);function r(s){const a=i.events[i.events.length-1];return!ki(s)&&a&&a[1].type==="listItemPrefixWhitespace"?t(s):n(s)}}const TX={name:"setextUnderline",resolveTo:xdt,tokenize:wdt};function xdt(e,t){let n=e.length,i,r,s;for(;n--;)if(e[n][0]==="enter"){if(e[n][1].type==="content"){i=n;break}e[n][1].type==="paragraph"&&(r=n)}else e[n][1].type==="content"&&e.splice(n,1),!s&&e[n][1].type==="definition"&&(s=n);const a={type:"setextHeading",start:{...e[i][1].start},end:{...e[e.length-1][1].end}};return e[r][1].type="setextHeadingText",s?(e.splice(r,0,["enter",a,t]),e.splice(s+1,0,["exit",e[i][1],t]),e[i][1].end={...e[s][1].end}):e[i][1]=a,e.push(["exit",a,t]),e}function wdt(e,t,n){const i=this;let r;return s;function s(u){let d=i.events.length,f;for(;d--;)if(i.events[d][1].type!=="lineEnding"&&i.events[d][1].type!=="linePrefix"&&i.events[d][1].type!=="content"){f=i.events[d][1].type==="paragraph";break}return!i.parser.lazy[i.now().line]&&(i.interrupt||f)?(e.enter("setextHeadingLine"),r=u,a(u)):n(u)}function a(u){return e.enter("setextHeadingLineSequence"),l(u)}function l(u){return u===r?(e.consume(u),l):(e.exit("setextHeadingLineSequence"),ki(u)?Vi(e,c,"lineSuffix")(u):c(u))}function c(u){return u===null||An(u)?(e.exit("setextHeadingLine"),t(u)):n(u)}}const Odt={tokenize:Sdt};function Sdt(e){const t=this,n=e.attempt(wE,i,e.attempt(this.parser.constructs.flowInitial,r,Vi(e,e.attempt(this.parser.constructs.flow,r,e.attempt(Aut,r)),"linePrefix")));return n;function i(s){if(s===null){e.consume(s);return}return e.enter("lineEndingBlank"),e.consume(s),e.exit("lineEndingBlank"),t.currentConstruct=void 0,n}function r(s){if(s===null){e.consume(s);return}return e.enter("lineEnding"),e.consume(s),e.exit("lineEnding"),t.currentConstruct=void 0,n}}const kdt={resolveAll:LSe()},Edt=MSe("string"),Cdt=MSe("text");function MSe(e){return{resolveAll:LSe(e==="text"?Tdt:void 0),tokenize:t};function t(n){const i=this,r=this.parser.constructs[e],s=n.attempt(r,a,l);return a;function a(d){return u(d)?s(d):l(d)}function l(d){if(d===null){n.consume(d);return}return n.enter("data"),n.consume(d),c}function c(d){return u(d)?(n.exit("data"),s(d)):(n.consume(d),c)}function u(d){if(d===null)return!0;const f=r[d];let h=-1;if(f)for(;++h-1){const l=a[0];typeof l=="string"?a[0]=l.slice(i):a.shift()}s>0&&a.push(e[r].slice(0,s))}return a}function Bdt(e,t){let n=-1;const i=[];let r;for(;++n0){const wt=_e.tokenStack[_e.tokenStack.length-1];(wt[1]||xX).call(_e,void 0,wt[0])}for(he.position={start:up(J.length>0?J[0][1].start:{line:1,column:1,offset:0}),end:up(J.length>0?J[J.length-2][1].end:{line:1,column:1,offset:0})},at=-1;++at0&&(i.className=["language-"+r[0]]);let s={type:"element",tagName:"code",properties:i,children:[{type:"text",value:n}]};return t.meta&&(s.data={meta:t.meta}),e.patch(t,s),s=e.applyData(t,s),s={type:"element",tagName:"pre",properties:{},children:[s]},e.patch(t,s),s}function Ldt(e,t){const n={type:"element",tagName:"del",properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function $dt(e,t){const n={type:"element",tagName:"em",properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Fdt(e,t){const n=typeof e.options.clobberPrefix=="string"?e.options.clobberPrefix:"user-content-",i=String(t.identifier).toUpperCase(),r=qx(i.toLowerCase()),s=e.footnoteOrder.indexOf(i);let a,l=e.footnoteCounts.get(i);l===void 0?(l=0,e.footnoteOrder.push(i),a=e.footnoteOrder.length):a=s+1,l+=1,e.footnoteCounts.set(i,l);const c={type:"element",tagName:"a",properties:{href:"#"+n+"fn-"+r,id:n+"fnref-"+r+(l>1?"-"+l:""),dataFootnoteRef:!0,ariaDescribedBy:["footnote-label"]},children:[{type:"text",value:String(a)}]};e.patch(t,c);const u={type:"element",tagName:"sup",properties:{},children:[c]};return e.patch(t,u),e.applyData(t,u)}function Bdt(e,t){const n={type:"element",tagName:"h"+t.depth,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Udt(e,t){if(e.options.allowDangerousHtml){const n={type:"raw",value:t.value};return e.patch(t,n),e.applyData(t,n)}}function TSe(e,t){const n=t.referenceType;let i="]";if(n==="collapsed"?i+="[]":n==="full"&&(i+="["+(t.label||t.identifier)+"]"),t.type==="imageReference")return[{type:"text",value:"!["+t.alt+i}];const r=e.all(t),s=r[0];s&&s.type==="text"?s.value="["+s.value:r.unshift({type:"text",value:"["});const a=r[r.length-1];return a&&a.type==="text"?a.value+=i:r.push({type:"text",value:i}),r}function Qdt(e,t){const n=String(t.identifier).toUpperCase(),i=e.definitionById.get(n);if(!i)return TSe(e,t);const r={src:qx(i.url||""),alt:t.alt};i.title!==null&&i.title!==void 0&&(r.title=i.title);const s={type:"element",tagName:"img",properties:r,children:[]};return e.patch(t,s),e.applyData(t,s)}function zdt(e,t){const n={src:qx(t.url)};t.alt!==null&&t.alt!==void 0&&(n.alt=t.alt),t.title!==null&&t.title!==void 0&&(n.title=t.title);const i={type:"element",tagName:"img",properties:n,children:[]};return e.patch(t,i),e.applyData(t,i)}function Vdt(e,t){const n={type:"text",value:t.value.replace(/\r?\n|\r/g," ")};e.patch(t,n);const i={type:"element",tagName:"code",properties:{},children:[n]};return e.patch(t,i),e.applyData(t,i)}function Hdt(e,t){const n=String(t.identifier).toUpperCase(),i=e.definitionById.get(n);if(!i)return TSe(e,t);const r={href:qx(i.url||"")};i.title!==null&&i.title!==void 0&&(r.title=i.title);const s={type:"element",tagName:"a",properties:r,children:e.all(t)};return e.patch(t,s),e.applyData(t,s)}function qdt(e,t){const n={href:qx(t.url)};t.title!==null&&t.title!==void 0&&(n.title=t.title);const i={type:"element",tagName:"a",properties:n,children:e.all(t)};return e.patch(t,i),e.applyData(t,i)}function Wdt(e,t,n){const i=e.all(t),r=n?Gdt(n):ASe(t),s={},a=[];if(typeof t.checked=="boolean"){const d=i[0];let f;d&&d.type==="element"&&d.tagName==="p"?f=d:(f={type:"element",tagName:"p",properties:{},children:[]},i.unshift(f)),f.children.length>0&&f.children.unshift({type:"text",value:" "}),f.children.unshift({type:"element",tagName:"input",properties:{type:"checkbox",checked:t.checked,disabled:!0},children:[]}),s.className=["task-list-item"]}let l=-1;for(;++l0){const $t=Te.tokenStack[Te.tokenStack.length-1];($t[1]||_X).call(Te,void 0,$t[0])}for(pe.position={start:pp(Y.length>0?Y[0][1].start:{line:1,column:1,offset:0}),end:pp(Y.length>0?Y[Y.length-2][1].end:{line:1,column:1,offset:0})},nt=-1;++nt0&&(i.className=["language-"+r[0]]);let s={type:"element",tagName:"code",properties:i,children:[{type:"text",value:n}]};return t.meta&&(s.data={meta:t.meta}),e.patch(t,s),s=e.applyData(t,s),s={type:"element",tagName:"pre",properties:{},children:[s]},e.patch(t,s),s}function eft(e,t){const n={type:"element",tagName:"del",properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function tft(e,t){const n={type:"element",tagName:"em",properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function nft(e,t){const n=typeof e.options.clobberPrefix=="string"?e.options.clobberPrefix:"user-content-",i=String(t.identifier).toUpperCase(),r=Yx(i.toLowerCase()),s=e.footnoteOrder.indexOf(i);let a,l=e.footnoteCounts.get(i);l===void 0?(l=0,e.footnoteOrder.push(i),a=e.footnoteOrder.length):a=s+1,l+=1,e.footnoteCounts.set(i,l);const c={type:"element",tagName:"a",properties:{href:"#"+n+"fn-"+r,id:n+"fnref-"+r+(l>1?"-"+l:""),dataFootnoteRef:!0,ariaDescribedBy:["footnote-label"]},children:[{type:"text",value:String(a)}]};e.patch(t,c);const u={type:"element",tagName:"sup",properties:{},children:[c]};return e.patch(t,u),e.applyData(t,u)}function ift(e,t){const n={type:"element",tagName:"h"+t.depth,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function rft(e,t){if(e.options.allowDangerousHtml){const n={type:"raw",value:t.value};return e.patch(t,n),e.applyData(t,n)}}function BSe(e,t){const n=t.referenceType;let i="]";if(n==="collapsed"?i+="[]":n==="full"&&(i+="["+(t.label||t.identifier)+"]"),t.type==="imageReference")return[{type:"text",value:"!["+t.alt+i}];const r=e.all(t),s=r[0];s&&s.type==="text"?s.value="["+s.value:r.unshift({type:"text",value:"["});const a=r[r.length-1];return a&&a.type==="text"?a.value+=i:r.push({type:"text",value:i}),r}function sft(e,t){const n=String(t.identifier).toUpperCase(),i=e.definitionById.get(n);if(!i)return BSe(e,t);const r={src:Yx(i.url||""),alt:t.alt};i.title!==null&&i.title!==void 0&&(r.title=i.title);const s={type:"element",tagName:"img",properties:r,children:[]};return e.patch(t,s),e.applyData(t,s)}function aft(e,t){const n={src:Yx(t.url)};t.alt!==null&&t.alt!==void 0&&(n.alt=t.alt),t.title!==null&&t.title!==void 0&&(n.title=t.title);const i={type:"element",tagName:"img",properties:n,children:[]};return e.patch(t,i),e.applyData(t,i)}function oft(e,t){const n={type:"text",value:t.value.replace(/\r?\n|\r/g," ")};e.patch(t,n);const i={type:"element",tagName:"code",properties:{},children:[n]};return e.patch(t,i),e.applyData(t,i)}function lft(e,t){const n=String(t.identifier).toUpperCase(),i=e.definitionById.get(n);if(!i)return BSe(e,t);const r={href:Yx(i.url||"")};i.title!==null&&i.title!==void 0&&(r.title=i.title);const s={type:"element",tagName:"a",properties:r,children:e.all(t)};return e.patch(t,s),e.applyData(t,s)}function cft(e,t){const n={href:Yx(t.url)};t.title!==null&&t.title!==void 0&&(n.title=t.title);const i={type:"element",tagName:"a",properties:n,children:e.all(t)};return e.patch(t,i),e.applyData(t,i)}function uft(e,t,n){const i=e.all(t),r=n?dft(n):USe(t),s={},a=[];if(typeof t.checked=="boolean"){const d=i[0];let f;d&&d.type==="element"&&d.tagName==="p"?f=d:(f={type:"element",tagName:"p",properties:{},children:[]},i.unshift(f)),f.children.length>0&&f.children.unshift({type:"text",value:" "}),f.children.unshift({type:"element",tagName:"input",properties:{type:"checkbox",checked:t.checked,disabled:!0},children:[]}),s.className=["task-list-item"]}let l=-1;for(;++l1}function Kdt(e,t){const n={},i=e.all(t);let r=-1;for(typeof t.start=="number"&&t.start!==1&&(n.start=t.start);++r0){const a={type:"element",tagName:"tbody",properties:{},children:e.wrap(n,!0)},l=Yd(t.children[1]),c=GR(t.children[t.children.length-1]);l&&c&&(a.position={start:l,end:c}),r.push(a)}const s={type:"element",tagName:"table",properties:{},children:e.wrap(r,!0)};return e.patch(t,s),e.applyData(t,s)}function eft(e,t,n){const i=n?n.children:void 0,s=(i?i.indexOf(t):1)===0?"th":"td",a=n&&n.type==="table"?n.align:void 0,l=a?a.length:t.children.length;let c=-1;const u=[];for(;++c0,!0),i[0]),r=i.index+i[0].length,i=n.exec(t);return s.push(SX(t.slice(r),r>0,!1)),s.join("")}function SX(e,t,n){let i=0,r=e.length;if(t){let s=e.codePointAt(i);for(;s===wX||s===OX;)i++,s=e.codePointAt(i)}if(n){let s=e.codePointAt(r-1);for(;s===wX||s===OX;)r--,s=e.codePointAt(r-1)}return r>i?e.slice(i,r):""}function ift(e,t){const n={type:"text",value:nft(String(t.value))};return e.patch(t,n),e.applyData(t,n)}function rft(e,t){const n={type:"element",tagName:"hr",properties:{},children:[]};return e.patch(t,n),e.applyData(t,n)}const sft={blockquote:Pdt,break:Ddt,code:Mdt,delete:Ldt,emphasis:$dt,footnoteReference:Fdt,heading:Bdt,html:Udt,imageReference:Qdt,image:zdt,inlineCode:Vdt,linkReference:Hdt,link:qdt,listItem:Wdt,list:Kdt,paragraph:Xdt,root:Ydt,strong:Zdt,table:Jdt,tableCell:tft,tableRow:eft,text:ift,thematicBreak:rft,toml:ST,yaml:ST,definition:ST,footnoteDefinition:ST};function ST(){}const _Se=-1,YR=0,AO=1,dN=2,VB=3,HB=4,qB=5,WB=6,NSe=7,jSe=8,aft=typeof self=="object"?self:globalThis,kX=(e,t)=>{switch(e){case"Function":case"SharedWorker":case"Worker":case"eval":case"setInterval":case"setTimeout":throw new TypeError("unable to deserialize "+e)}return new aft[e](t)},oft=(e,t)=>{const n=(r,s)=>(e.set(s,r),r),i=r=>{if(e.has(r))return e.get(r);const[s,a]=t[r];switch(s){case YR:case _Se:return n(a,r);case AO:{const l=n([],r);for(const c of a)l.push(i(c));return l}case dN:{const l=n({},r);for(const[c,u]of a)l[i(c)]=i(u);return l}case VB:return n(new Date(a),r);case HB:{const{source:l,flags:c}=a;return n(new RegExp(l,c),r)}case qB:{const l=n(new Map,r);for(const[c,u]of a)l.set(i(c),i(u));return l}case WB:{const l=n(new Set,r);for(const c of a)l.add(i(c));return l}case NSe:{const{name:l,message:c}=a;return n(kX(l,c),r)}case jSe:return n(BigInt(a),r);case"BigInt":return n(Object(BigInt(a)),r);case"ArrayBuffer":return n(new Uint8Array(a).buffer,a);case"DataView":{const{buffer:l}=new Uint8Array(a);return n(new DataView(l),a)}}return n(kX(s,a),r)};return i},EX=e=>oft(new Map,e)(0),L0="",{toString:lft}={},{keys:cft}=Object,H1=e=>{const t=typeof e;if(t!=="object"||!e)return[YR,t];const n=lft.call(e).slice(8,-1);switch(n){case"Array":return[AO,L0];case"Object":return[dN,L0];case"Date":return[VB,L0];case"RegExp":return[HB,L0];case"Map":return[qB,L0];case"Set":return[WB,L0];case"DataView":return[AO,n]}return n.includes("Array")?[AO,n]:n.includes("Error")?[NSe,n]:[dN,n]},kT=([e,t])=>e===YR&&(t==="function"||t==="symbol"),uft=(e,t,n,i)=>{const r=(a,l)=>{const c=i.push(a)-1;return n.set(l,c),c},s=a=>{if(n.has(a))return n.get(a);let[l,c]=H1(a);switch(l){case YR:{let d=a;switch(c){case"bigint":l=jSe,d=a.toString();break;case"function":case"symbol":if(e)throw new TypeError("unable to serialize "+c);d=null;break;case"undefined":return r([_Se],a)}return r([l,d],a)}case AO:{if(c){let h=a;return c==="DataView"?h=new Uint8Array(a.buffer):c==="ArrayBuffer"&&(h=new Uint8Array(a)),r([c,[...h]],a)}const d=[],f=r([l,d],a);for(const h of a)d.push(s(h));return f}case dN:{if(c)switch(c){case"BigInt":return r([c,a.toString()],a);case"Boolean":case"Number":case"String":return r([c,a.valueOf()],a)}if(t&&"toJSON"in a)return s(a.toJSON());const d=[],f=r([l,d],a);for(const h of cft(a))(e||!kT(H1(a[h])))&&d.push([s(h),s(a[h])]);return f}case VB:return r([l,a.toISOString()],a);case HB:{const{source:d,flags:f}=a;return r([l,{source:d,flags:f}],a)}case qB:{const d=[],f=r([l,d],a);for(const[h,m]of a)(e||!(kT(H1(h))||kT(H1(m))))&&d.push([s(h),s(m)]);return f}case WB:{const d=[],f=r([l,d],a);for(const h of a)(e||!kT(H1(h)))&&d.push(s(h));return f}}const{message:u}=a;return r([l,{name:c,message:u}],a)};return s},CX=(e,{json:t,lossy:n}={})=>{const i=[];return uft(!(t||n),!!t,new Map,i)(e),i},Zv=typeof structuredClone=="function"?(e,t)=>t&&("json"in t||"lossy"in t)?EX(CX(e,t)):structuredClone(e):(e,t)=>EX(CX(e,t));function dft(e,t){const n=[{type:"text",value:"↩"}];return t>1&&n.push({type:"element",tagName:"sup",properties:{},children:[{type:"text",value:String(t)}]}),n}function fft(e,t){return"Back to reference "+(e+1)+(t>1?"-"+t:"")}function hft(e){const t=typeof e.options.clobberPrefix=="string"?e.options.clobberPrefix:"user-content-",n=e.options.footnoteBackContent||dft,i=e.options.footnoteBackLabel||fft,r=e.options.footnoteLabel||"Footnotes",s=e.options.footnoteLabelTagName||"h2",a=e.options.footnoteLabelProperties||{className:["sr-only"]},l=[];let c=-1;for(;++c0&&g.push({type:"text",value:" "});let x=typeof n=="string"?n:n(c,m);typeof x=="string"&&(x={type:"text",value:x}),g.push({type:"element",tagName:"a",properties:{href:"#"+t+"fnref-"+h+(m>1?"-"+m:""),dataFootnoteBackref:"",ariaLabel:typeof i=="string"?i:i(c,m),className:["data-footnote-backref"]},children:Array.isArray(x)?x:[x]})}const v=d[d.length-1];if(v&&v.type==="element"&&v.tagName==="p"){const x=v.children[v.children.length-1];x&&x.type==="text"?x.value+=" ":v.children.push({type:"text",value:" "}),v.children.push(...g)}else d.push(...g);const y={type:"element",tagName:"li",properties:{id:t+"fn-"+h},children:e.wrap(d,!0)};e.patch(u,y),l.push(y)}if(l.length!==0)return{type:"element",tagName:"section",properties:{dataFootnotes:!0,className:["footnotes"]},children:[{type:"element",tagName:s,properties:{...Zv(a),id:"footnote-label"},children:[{type:"text",value:r}]},{type:"text",value:` +`});const u={type:"element",tagName:"li",properties:s,children:a};return e.patch(t,u),e.applyData(t,u)}function dft(e){let t=!1;if(e.type==="list"){t=e.spread||!1;const n=e.children;let i=-1;for(;!t&&++i1}function fft(e,t){const n={},i=e.all(t);let r=-1;for(typeof t.start=="number"&&t.start!==1&&(n.start=t.start);++r0){const a={type:"element",tagName:"tbody",properties:{},children:e.wrap(n,!0)},l=Jd(t.children[1]),c=eI(t.children[t.children.length-1]);l&&c&&(a.position={start:l,end:c}),r.push(a)}const s={type:"element",tagName:"table",properties:{},children:e.wrap(r,!0)};return e.patch(t,s),e.applyData(t,s)}function bft(e,t,n){const i=n?n.children:void 0,s=(i?i.indexOf(t):1)===0?"th":"td",a=n&&n.type==="table"?n.align:void 0,l=a?a.length:t.children.length;let c=-1;const u=[];for(;++c0,!0),i[0]),r=i.index+i[0].length,i=n.exec(t);return s.push(RX(t.slice(r),r>0,!1)),s.join("")}function RX(e,t,n){let i=0,r=e.length;if(t){let s=e.codePointAt(i);for(;s===NX||s===jX;)i++,s=e.codePointAt(i)}if(n){let s=e.codePointAt(r-1);for(;s===NX||s===jX;)r--,s=e.codePointAt(r-1)}return r>i?e.slice(i,r):""}function xft(e,t){const n={type:"text",value:vft(String(t.value))};return e.patch(t,n),e.applyData(t,n)}function wft(e,t){const n={type:"element",tagName:"hr",properties:{},children:[]};return e.patch(t,n),e.applyData(t,n)}const Oft={blockquote:Ydt,break:Zdt,code:Jdt,delete:eft,emphasis:tft,footnoteReference:nft,heading:ift,html:rft,imageReference:sft,image:aft,inlineCode:oft,linkReference:lft,link:cft,listItem:uft,list:fft,paragraph:hft,root:pft,strong:mft,table:gft,tableCell:yft,tableRow:bft,text:xft,thematicBreak:wft,toml:CT,yaml:CT,definition:CT,footnoteDefinition:CT};function CT(){}const QSe=-1,iI=0,RO=1,gN=2,GB=3,XB=4,YB=5,ZB=6,zSe=7,VSe=8,Sft=typeof self=="object"?self:globalThis,IX=(e,t)=>{switch(e){case"Function":case"SharedWorker":case"Worker":case"eval":case"setInterval":case"setTimeout":throw new TypeError("unable to deserialize "+e)}return new Sft[e](t)},kft=(e,t)=>{const n=(r,s)=>(e.set(s,r),r),i=r=>{if(e.has(r))return e.get(r);const[s,a]=t[r];switch(s){case iI:case QSe:return n(a,r);case RO:{const l=n([],r);for(const c of a)l.push(i(c));return l}case gN:{const l=n({},r);for(const[c,u]of a)l[i(c)]=i(u);return l}case GB:return n(new Date(a),r);case XB:{const{source:l,flags:c}=a;return n(new RegExp(l,c),r)}case YB:{const l=n(new Map,r);for(const[c,u]of a)l.set(i(c),i(u));return l}case ZB:{const l=n(new Set,r);for(const c of a)l.add(i(c));return l}case zSe:{const{name:l,message:c}=a;return n(IX(l,c),r)}case VSe:return n(BigInt(a),r);case"BigInt":return n(Object(BigInt(a)),r);case"ArrayBuffer":return n(new Uint8Array(a).buffer,a);case"DataView":{const{buffer:l}=new Uint8Array(a);return n(new DataView(l),a)}}return n(IX(s,a),r)};return i},PX=e=>kft(new Map,e)(0),Q0="",{toString:Eft}={},{keys:Cft}=Object,G1=e=>{const t=typeof e;if(t!=="object"||!e)return[iI,t];const n=Eft.call(e).slice(8,-1);switch(n){case"Array":return[RO,Q0];case"Object":return[gN,Q0];case"Date":return[GB,Q0];case"RegExp":return[XB,Q0];case"Map":return[YB,Q0];case"Set":return[ZB,Q0];case"DataView":return[RO,n]}return n.includes("Array")?[RO,n]:n.includes("Error")?[zSe,n]:[gN,n]},TT=([e,t])=>e===iI&&(t==="function"||t==="symbol"),Tft=(e,t,n,i)=>{const r=(a,l)=>{const c=i.push(a)-1;return n.set(l,c),c},s=a=>{if(n.has(a))return n.get(a);let[l,c]=G1(a);switch(l){case iI:{let d=a;switch(c){case"bigint":l=VSe,d=a.toString();break;case"function":case"symbol":if(e)throw new TypeError("unable to serialize "+c);d=null;break;case"undefined":return r([QSe],a)}return r([l,d],a)}case RO:{if(c){let h=a;return c==="DataView"?h=new Uint8Array(a.buffer):c==="ArrayBuffer"&&(h=new Uint8Array(a)),r([c,[...h]],a)}const d=[],f=r([l,d],a);for(const h of a)d.push(s(h));return f}case gN:{if(c)switch(c){case"BigInt":return r([c,a.toString()],a);case"Boolean":case"Number":case"String":return r([c,a.valueOf()],a)}if(t&&"toJSON"in a)return s(a.toJSON());const d=[],f=r([l,d],a);for(const h of Cft(a))(e||!TT(G1(a[h])))&&d.push([s(h),s(a[h])]);return f}case GB:return r([l,a.toISOString()],a);case XB:{const{source:d,flags:f}=a;return r([l,{source:d,flags:f}],a)}case YB:{const d=[],f=r([l,d],a);for(const[h,m]of a)(e||!(TT(G1(h))||TT(G1(m))))&&d.push([s(h),s(m)]);return f}case ZB:{const d=[],f=r([l,d],a);for(const h of a)(e||!TT(G1(h)))&&d.push(s(h));return f}}const{message:u}=a;return r([l,{name:c,message:u}],a)};return s},DX=(e,{json:t,lossy:n}={})=>{const i=[];return Tft(!(t||n),!!t,new Map,i)(e),i},ix=typeof structuredClone=="function"?(e,t)=>t&&("json"in t||"lossy"in t)?PX(DX(e,t)):structuredClone(e):(e,t)=>PX(DX(e,t));function Aft(e,t){const n=[{type:"text",value:"↩"}];return t>1&&n.push({type:"element",tagName:"sup",properties:{},children:[{type:"text",value:String(t)}]}),n}function _ft(e,t){return"Back to reference "+(e+1)+(t>1?"-"+t:"")}function Nft(e){const t=typeof e.options.clobberPrefix=="string"?e.options.clobberPrefix:"user-content-",n=e.options.footnoteBackContent||Aft,i=e.options.footnoteBackLabel||_ft,r=e.options.footnoteLabel||"Footnotes",s=e.options.footnoteLabelTagName||"h2",a=e.options.footnoteLabelProperties||{className:["sr-only"]},l=[];let c=-1;for(;++c0&&g.push({type:"text",value:" "});let x=typeof n=="string"?n:n(c,m);typeof x=="string"&&(x={type:"text",value:x}),g.push({type:"element",tagName:"a",properties:{href:"#"+t+"fnref-"+h+(m>1?"-"+m:""),dataFootnoteBackref:"",ariaLabel:typeof i=="string"?i:i(c,m),className:["data-footnote-backref"]},children:Array.isArray(x)?x:[x]})}const v=d[d.length-1];if(v&&v.type==="element"&&v.tagName==="p"){const x=v.children[v.children.length-1];x&&x.type==="text"?x.value+=" ":v.children.push({type:"text",value:" "}),v.children.push(...g)}else d.push(...g);const y={type:"element",tagName:"li",properties:{id:t+"fn-"+h},children:e.wrap(d,!0)};e.patch(u,y),l.push(y)}if(l.length!==0)return{type:"element",tagName:"section",properties:{dataFootnotes:!0,className:["footnotes"]},children:[{type:"element",tagName:s,properties:{...ix(a),id:"footnote-label"},children:[{type:"text",value:r}]},{type:"text",value:` `},{type:"element",tagName:"ol",properties:{},children:e.wrap(l,!0)},{type:"text",value:` -`}]}}const yE=function(e){if(e==null)return bft;if(typeof e=="function")return ZR(e);if(typeof e=="object")return Array.isArray(e)?pft(e):mft(e);if(typeof e=="string")return gft(e);throw new Error("Expected function, string, or object as test")};function pft(e){const t=[];let n=-1;for(;++n":""))+")"})}return h;function h(){let m=RSe,g,b,v;if((!t||s(c,u,d[d.length-1]||void 0))&&(m=wft(n(c,d)),m[0]===D6))return m;if("children"in c&&c.children){const y=c;if(y.children&&m[0]!==xft)for(b=(i?y.children.length:-1)+a,v=d.concat(y);b>-1&&b":""))+")"})}return h;function h(){let m=HSe,g,b,v;if((!t||s(c,u,d[d.length-1]||void 0))&&(m=$ft(n(c,d)),m[0]===B6))return m;if("children"in c&&c.children){const y=c;if(y.children&&m[0]!==Lft)for(b=(i?y.children.length:-1)+a,v=d.concat(y);b>-1&&b0&&n.push({type:"text",value:` -`}),n}function TX(e){let t=0,n=e.charCodeAt(t);for(;n===9||n===32;)t++,n=e.charCodeAt(t);return e.slice(t)}function AX(e,t){const n=Sft(e,t),i=n.one(e,void 0),r=hft(n),s=Array.isArray(i)?{type:"root",children:i}:i||{type:"root",children:[]};return r&&s.children.push({type:"text",value:` -`},r),s}function Aft(e,t){return e&&"run"in e?async function(n,i){const r=AX(n,{file:i,...t});await e.run(r,i)}:function(n,i){return AX(n,{file:i,...e||t})}}function _X(e){if(e)throw e}var vA=Object.prototype.hasOwnProperty,PSe=Object.prototype.toString,NX=Object.defineProperty,jX=Object.getOwnPropertyDescriptor,RX=function(t){return typeof Array.isArray=="function"?Array.isArray(t):PSe.call(t)==="[object Array]"},IX=function(t){if(!t||PSe.call(t)!=="[object Object]")return!1;var n=vA.call(t,"constructor"),i=t.constructor&&t.constructor.prototype&&vA.call(t.constructor.prototype,"isPrototypeOf");if(t.constructor&&!n&&!i)return!1;var r;for(r in t);return typeof r>"u"||vA.call(t,r)},PX=function(t,n){NX&&n.name==="__proto__"?NX(t,n.name,{enumerable:!0,configurable:!0,value:n.newValue,writable:!0}):t[n.name]=n.newValue},DX=function(t,n){if(n==="__proto__")if(vA.call(t,n)){if(jX)return jX(t,n).value}else return;return t[n]},_ft=function e(){var t,n,i,r,s,a,l=arguments[0],c=1,u=arguments.length,d=!1;for(typeof l=="boolean"&&(d=l,l=arguments[1]||{},c=2),(l==null||typeof l!="object"&&typeof l!="function")&&(l={});ca.length;let c;l&&a.push(r);try{c=e.apply(this,a)}catch(u){const d=u;if(l&&n)throw d;return r(d)}l||(c&&c.then&&typeof c.then=="function"?c.then(s,r):c instanceof Error?r(c):s(c))}function r(a,...l){n||(n=!0,t(a,...l))}function s(a){r(null,a)}}const hd={basename:Rft,dirname:Ift,extname:Pft,join:Dft,sep:"/"};function Rft(e,t){if(t!==void 0&&typeof t!="string")throw new TypeError('"ext" argument must be a string');xE(e);let n=0,i=-1,r=e.length,s;if(t===void 0||t.length===0||t.length>e.length){for(;r--;)if(e.codePointAt(r)===47){if(s){n=r+1;break}}else i<0&&(s=!0,i=r+1);return i<0?"":e.slice(n,i)}if(t===e)return"";let a=-1,l=t.length-1;for(;r--;)if(e.codePointAt(r)===47){if(s){n=r+1;break}}else a<0&&(s=!0,a=r+1),l>-1&&(e.codePointAt(r)===t.codePointAt(l--)?l<0&&(i=r):(l=-1,i=a));return n===i?i=a:i<0&&(i=e.length),e.slice(n,i)}function Ift(e){if(xE(e),e.length===0)return".";let t=-1,n=e.length,i;for(;--n;)if(e.codePointAt(n)===47){if(i){t=n;break}}else i||(i=!0);return t<0?e.codePointAt(0)===47?"/":".":t===1&&e.codePointAt(0)===47?"//":e.slice(0,t)}function Pft(e){xE(e);let t=e.length,n=-1,i=0,r=-1,s=0,a;for(;t--;){const l=e.codePointAt(t);if(l===47){if(a){i=t+1;break}continue}n<0&&(a=!0,n=t+1),l===46?r<0?r=t:s!==1&&(s=1):r>-1&&(s=-1)}return r<0||n<0||s===0||s===1&&r===n-1&&r===i+1?"":e.slice(r,n)}function Dft(...e){let t=-1,n;for(;++t0&&e.codePointAt(e.length-1)===47&&(n+="/"),t?"/"+n:n}function Lft(e,t){let n="",i=0,r=-1,s=0,a=-1,l,c;for(;++a<=e.length;){if(a2){if(c=n.lastIndexOf("/"),c!==n.length-1){c<0?(n="",i=0):(n=n.slice(0,c),i=n.length-1-n.lastIndexOf("/")),r=a,s=0;continue}}else if(n.length>0){n="",i=0,r=a,s=0;continue}}t&&(n=n.length>0?n+"/..":"..",i=2)}else n.length>0?n+="/"+e.slice(r+1,a):n=e.slice(r+1,a),i=a-r-1;r=a,s=0}else l===46&&s>-1?s++:s=-1}return n}function xE(e){if(typeof e!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(e))}const $ft={cwd:Fft};function Fft(){return"/"}function $6(e){return!!(e!==null&&typeof e=="object"&&"href"in e&&e.href&&"protocol"in e&&e.protocol&&e.auth===void 0)}function Bft(e){if(typeof e=="string")e=new URL(e);else if(!$6(e)){const t=new TypeError('The "path" argument must be of type string or an instance of URL. Received `'+e+"`");throw t.code="ERR_INVALID_ARG_TYPE",t}if(e.protocol!=="file:"){const t=new TypeError("The URL must be of scheme file");throw t.code="ERR_INVALID_URL_SCHEME",t}return Uft(e)}function Uft(e){if(e.hostname!==""){const i=new TypeError('File URL host must be "localhost" or empty on darwin');throw i.code="ERR_INVALID_FILE_URL_HOST",i}const t=e.pathname;let n=-1;for(;++n0){let[m,...g]=d;const b=i[h][1];L6(b)&&L6(m)&&(m=kM(!0,b,m)),i[h]=[u,m,...g]}}}}const Hft=new GB().freeze();function AM(e,t){if(typeof t!="function")throw new TypeError("Cannot `"+e+"` without `parser`")}function _M(e,t){if(typeof t!="function")throw new TypeError("Cannot `"+e+"` without `compiler`")}function NM(e,t){if(t)throw new Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function LX(e){if(!L6(e)||typeof e.type!="string")throw new TypeError("Expected node, got `"+e+"`")}function $X(e,t,n){if(!n)throw new Error("`"+e+"` finished async. Use `"+t+"` instead")}function ET(e){return qft(e)?e:new DSe(e)}function qft(e){return!!(e&&typeof e=="object"&&"message"in e&&"messages"in e)}function Wft(e){return typeof e=="string"||Gft(e)}function Gft(e){return!!(e&&typeof e=="object"&&"byteLength"in e&&"byteOffset"in e)}const Kft="https://github.com/remarkjs/react-markdown/blob/main/changelog.md",FX=[],BX={allowDangerousHtml:!0},Xft=/^(https?|ircs?|mailto|xmpp)$/i,Yft=[{from:"astPlugins",id:"remove-buggy-html-in-markdown-parser"},{from:"allowDangerousHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"allowNode",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowElement"},{from:"allowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowedElements"},{from:"disallowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"disallowedElements"},{from:"escapeHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"includeElementIndex",id:"#remove-includeelementindex"},{from:"includeNodeIndex",id:"change-includenodeindex-to-includeelementindex"},{from:"linkTarget",id:"remove-linktarget"},{from:"plugins",id:"change-plugins-to-remarkplugins",to:"remarkPlugins"},{from:"rawSourcePos",id:"#remove-rawsourcepos"},{from:"renderers",id:"change-renderers-to-components",to:"components"},{from:"source",id:"change-source-to-children",to:"children"},{from:"sourcePos",id:"#remove-sourcepos"},{from:"transformImageUri",id:"#add-urltransform",to:"urlTransform"},{from:"transformLinkUri",id:"#add-urltransform",to:"urlTransform"}];function Zft(e){const t=Jft(e),n=eht(e);return tht(t.runSync(t.parse(n),n),e)}function Jft(e){const t=e.rehypePlugins||FX,n=e.remarkPlugins||FX,i=e.remarkRehypeOptions?{...e.remarkRehypeOptions,...BX}:BX;return Hft().use(Idt).use(n).use(Aft,i).use(t)}function eht(e){const t=e.children||"",n=new DSe;return typeof t=="string"&&(n.value=t),n}function tht(e,t){const n=t.allowedElements,i=t.allowElement,r=t.components,s=t.disallowedElements,a=t.skipHtml,l=t.unwrapDisallowed,c=t.urlTransform||nht;for(const d of Yft)Object.hasOwn(t,d.from)&&(""+d.from+(d.to?"use `"+d.to+"` instead":"remove it")+Kft+d.id,void 0);return t.className&&(e={type:"element",tagName:"div",properties:{className:t.className},children:e.type==="root"?e.children:[e]}),vE(e,u),gct(e,{Fragment:o.Fragment,components:r,ignoreInvalidStyle:!0,jsx:o.jsx,jsxs:o.jsxs,passKeys:!0,passNode:!0});function u(d,f,h){if(d.type==="raw"&&h&&typeof f=="number")return a?h.children.splice(f,1):h.children[f]={type:"text",value:d.value},f;if(d.type==="element"){let m;for(m in wM)if(Object.hasOwn(wM,m)&&Object.hasOwn(d.properties,m)){const g=d.properties[m],b=wM[m];(b===null||b.includes(d.tagName))&&(d.properties[m]=c(String(g||""),m,d))}}if(d.type==="element"){let m=n?!n.includes(d.tagName):s?s.includes(d.tagName):!1;if(!m&&i&&typeof f=="number"&&(m=!i(d,f,h)),m&&h&&typeof f=="number")return l&&d.children?h.children.splice(f,1,...d.children):h.children.splice(f,1),f}}}function nht(e){const t=e.indexOf(":"),n=e.indexOf("?"),i=e.indexOf("#"),r=e.indexOf("/");return t===-1||r!==-1&&t>r||n!==-1&&t>n||i!==-1&&t>i||Xft.test(e.slice(0,t))?e:""}function UX(e,t){const n=String(e);if(typeof t!="string")throw new TypeError("Expected character");let i=0,r=n.indexOf(t);for(;r!==-1;)i++,r=n.indexOf(t,r+t.length);return i}function iht(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}function rht(e,t,n){const r=yE((n||{}).ignore||[]),s=sht(t);let a=-1;for(;++a0?{type:"text",value:S}:void 0),S===!1?h.lastIndex=w+1:(g!==w&&x.push({type:"text",value:u.value.slice(g,w)}),Array.isArray(S)?x.push(...S):S&&x.push(S),g=w+O[0].length,y=!0),!h.global)break;O=h.exec(u.value)}return y?(g?\]}]+$/.exec(e);if(!t)return[e,void 0];e=e.slice(0,t.index);let n=t[0],i=n.indexOf(")");const r=UX(e,"(");let s=UX(e,")");for(;i!==-1&&r>s;)e+=n.slice(0,i+1),n=n.slice(i+1),i=n.indexOf(")"),s++;return[e,n]}function MSe(e,t){const n=e.input.charCodeAt(e.index-1);return(e.index===0||Tb(n)||KR(n))&&(!t||n!==47)}LSe.peek=Aht;function xht(){this.buffer()}function wht(e){this.enter({type:"footnoteReference",identifier:"",label:""},e)}function Oht(){this.buffer()}function Sht(e){this.enter({type:"footnoteDefinition",identifier:"",label:"",children:[]},e)}function kht(e){const t=this.resume(),n=this.stack[this.stack.length-1];n.type,n.identifier=Du(this.sliceSerialize(e)).toLowerCase(),n.label=t}function Eht(e){this.exit(e)}function Cht(e){const t=this.resume(),n=this.stack[this.stack.length-1];n.type,n.identifier=Du(this.sliceSerialize(e)).toLowerCase(),n.label=t}function Tht(e){this.exit(e)}function Aht(){return"["}function LSe(e,t,n,i){const r=n.createTracker(i);let s=r.move("[^");const a=n.enter("footnoteReference"),l=n.enter("reference");return s+=r.move(n.safe(n.associationId(e),{after:"]",before:s})),l(),a(),s+=r.move("]"),s}function _ht(){return{enter:{gfmFootnoteCallString:xht,gfmFootnoteCall:wht,gfmFootnoteDefinitionLabelString:Oht,gfmFootnoteDefinition:Sht},exit:{gfmFootnoteCallString:kht,gfmFootnoteCall:Eht,gfmFootnoteDefinitionLabelString:Cht,gfmFootnoteDefinition:Tht}}}function Nht(e){let t=!1;return e&&e.firstLineBlank&&(t=!0),{handlers:{footnoteDefinition:n,footnoteReference:LSe},unsafe:[{character:"[",inConstruct:["label","phrasing","reference"]}]};function n(i,r,s,a){const l=s.createTracker(a);let c=l.move("[^");const u=s.enter("footnoteDefinition"),d=s.enter("label");return c+=l.move(s.safe(s.associationId(i),{before:c,after:"]"})),d(),c+=l.move("]:"),i.children&&i.children.length>0&&(l.shift(4),c+=l.move((t?` -`:" ")+s.indentLines(s.containerFlow(i,l.current()),t?$Se:jht))),u(),c}}function jht(e,t,n){return t===0?e:$Se(e,t,n)}function $Se(e,t,n){return(n?"":" ")+e}const Rht=["autolink","destinationLiteral","destinationRaw","reference","titleQuote","titleApostrophe"];FSe.peek=Lht;function Iht(){return{canContainEols:["delete"],enter:{strikethrough:Dht},exit:{strikethrough:Mht}}}function Pht(){return{unsafe:[{character:"~",inConstruct:"phrasing",notInConstruct:Rht}],handlers:{delete:FSe}}}function Dht(e){this.enter({type:"delete",children:[]},e)}function Mht(e){this.exit(e)}function FSe(e,t,n,i){const r=n.createTracker(i),s=n.enter("strikethrough");let a=r.move("~~");return a+=n.containerPhrasing(e,{...r.current(),before:a,after:"~"}),a+=r.move("~~"),s(),a}function Lht(){return"~"}function $ht(e){return e.length}function Fht(e,t){const n=t||{},i=(n.align||[]).concat(),r=n.stringLength||$ht,s=[],a=[],l=[],c=[];let u=0,d=-1;for(;++du&&(u=e[d].length);++yc[y])&&(c[y]=O)}b.push(x)}a[d]=b,l[d]=v}let f=-1;if(typeof i=="object"&&"length"in i)for(;++fc[f]&&(c[f]=x),m[f]=x),h[f]=O}a.splice(1,0,h),l.splice(1,0,m),d=-1;const g=[];for(;++d "),s.shift(2);const a=n.indentLines(n.containerFlow(e,s.current()),Qht);return r(),a}function Qht(e,t,n){return">"+(n?"":" ")+e}function zht(e,t){return VX(e,t.inConstruct,!0)&&!VX(e,t.notInConstruct,!1)}function VX(e,t,n){if(typeof t=="string"&&(t=[t]),!t||t.length===0)return n;let i=-1;for(;++ia&&(a=s):s=1,r=i+t.length,i=n.indexOf(t,r);return a}function Hht(e,t){return!!(t.options.fences===!1&&e.value&&!e.lang&&/[^ \r\n]/.test(e.value)&&!/^[\t ]*(?:[\r\n]|$)|(?:^|[\r\n])[\t ]*$/.test(e.value))}function qht(e){const t=e.options.fence||"`";if(t!=="`"&&t!=="~")throw new Error("Cannot serialize code with `"+t+"` for `options.fence`, expected `` ` `` or `~`");return t}function Wht(e,t,n,i){const r=qht(n),s=e.value||"",a=r==="`"?"GraveAccent":"Tilde";if(Hht(e,n)){const f=n.enter("codeIndented"),h=n.indentLines(s,Ght);return f(),h}const l=n.createTracker(i),c=r.repeat(Math.max(Vht(s,r)+1,3)),u=n.enter("codeFenced");let d=l.move(c);if(e.lang){const f=n.enter(`codeFencedLang${a}`);d+=l.move(n.safe(e.lang,{before:d,after:" ",encode:["`"],...l.current()})),f()}if(e.lang&&e.meta){const f=n.enter(`codeFencedMeta${a}`);d+=l.move(" "),d+=l.move(n.safe(e.meta,{before:d,after:` +`}),n}function MX(e){let t=0,n=e.charCodeAt(t);for(;n===9||n===32;)t++,n=e.charCodeAt(t);return e.slice(t)}function LX(e,t){const n=Bft(e,t),i=n.one(e,void 0),r=Nft(n),s=Array.isArray(i)?{type:"root",children:i}:i||{type:"root",children:[]};return r&&s.children.push({type:"text",value:` +`},r),s}function Hft(e,t){return e&&"run"in e?async function(n,i){const r=LX(n,{file:i,...t});await e.run(r,i)}:function(n,i){return LX(n,{file:i,...e||t})}}function $X(e){if(e)throw e}var k2=Object.prototype.hasOwnProperty,WSe=Object.prototype.toString,FX=Object.defineProperty,BX=Object.getOwnPropertyDescriptor,UX=function(t){return typeof Array.isArray=="function"?Array.isArray(t):WSe.call(t)==="[object Array]"},QX=function(t){if(!t||WSe.call(t)!=="[object Object]")return!1;var n=k2.call(t,"constructor"),i=t.constructor&&t.constructor.prototype&&k2.call(t.constructor.prototype,"isPrototypeOf");if(t.constructor&&!n&&!i)return!1;var r;for(r in t);return typeof r>"u"||k2.call(t,r)},zX=function(t,n){FX&&n.name==="__proto__"?FX(t,n.name,{enumerable:!0,configurable:!0,value:n.newValue,writable:!0}):t[n.name]=n.newValue},VX=function(t,n){if(n==="__proto__")if(k2.call(t,n)){if(BX)return BX(t,n).value}else return;return t[n]},qft=function e(){var t,n,i,r,s,a,l=arguments[0],c=1,u=arguments.length,d=!1;for(typeof l=="boolean"&&(d=l,l=arguments[1]||{},c=2),(l==null||typeof l!="object"&&typeof l!="function")&&(l={});ca.length;let c;l&&a.push(r);try{c=e.apply(this,a)}catch(u){const d=u;if(l&&n)throw d;return r(d)}l||(c&&c.then&&typeof c.then=="function"?c.then(s,r):c instanceof Error?r(c):s(c))}function r(a,...l){n||(n=!0,t(a,...l))}function s(a){r(null,a)}}const pd={basename:Gft,dirname:Xft,extname:Yft,join:Zft,sep:"/"};function Gft(e,t){if(t!==void 0&&typeof t!="string")throw new TypeError('"ext" argument must be a string');kE(e);let n=0,i=-1,r=e.length,s;if(t===void 0||t.length===0||t.length>e.length){for(;r--;)if(e.codePointAt(r)===47){if(s){n=r+1;break}}else i<0&&(s=!0,i=r+1);return i<0?"":e.slice(n,i)}if(t===e)return"";let a=-1,l=t.length-1;for(;r--;)if(e.codePointAt(r)===47){if(s){n=r+1;break}}else a<0&&(s=!0,a=r+1),l>-1&&(e.codePointAt(r)===t.codePointAt(l--)?l<0&&(i=r):(l=-1,i=a));return n===i?i=a:i<0&&(i=e.length),e.slice(n,i)}function Xft(e){if(kE(e),e.length===0)return".";let t=-1,n=e.length,i;for(;--n;)if(e.codePointAt(n)===47){if(i){t=n;break}}else i||(i=!0);return t<0?e.codePointAt(0)===47?"/":".":t===1&&e.codePointAt(0)===47?"//":e.slice(0,t)}function Yft(e){kE(e);let t=e.length,n=-1,i=0,r=-1,s=0,a;for(;t--;){const l=e.codePointAt(t);if(l===47){if(a){i=t+1;break}continue}n<0&&(a=!0,n=t+1),l===46?r<0?r=t:s!==1&&(s=1):r>-1&&(s=-1)}return r<0||n<0||s===0||s===1&&r===n-1&&r===i+1?"":e.slice(r,n)}function Zft(...e){let t=-1,n;for(;++t0&&e.codePointAt(e.length-1)===47&&(n+="/"),t?"/"+n:n}function eht(e,t){let n="",i=0,r=-1,s=0,a=-1,l,c;for(;++a<=e.length;){if(a2){if(c=n.lastIndexOf("/"),c!==n.length-1){c<0?(n="",i=0):(n=n.slice(0,c),i=n.length-1-n.lastIndexOf("/")),r=a,s=0;continue}}else if(n.length>0){n="",i=0,r=a,s=0;continue}}t&&(n=n.length>0?n+"/..":"..",i=2)}else n.length>0?n+="/"+e.slice(r+1,a):n=e.slice(r+1,a),i=a-r-1;r=a,s=0}else l===46&&s>-1?s++:s=-1}return n}function kE(e){if(typeof e!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(e))}const tht={cwd:nht};function nht(){return"/"}function z6(e){return!!(e!==null&&typeof e=="object"&&"href"in e&&e.href&&"protocol"in e&&e.protocol&&e.auth===void 0)}function iht(e){if(typeof e=="string")e=new URL(e);else if(!z6(e)){const t=new TypeError('The "path" argument must be of type string or an instance of URL. Received `'+e+"`");throw t.code="ERR_INVALID_ARG_TYPE",t}if(e.protocol!=="file:"){const t=new TypeError("The URL must be of scheme file");throw t.code="ERR_INVALID_URL_SCHEME",t}return rht(e)}function rht(e){if(e.hostname!==""){const i=new TypeError('File URL host must be "localhost" or empty on darwin');throw i.code="ERR_INVALID_FILE_URL_HOST",i}const t=e.pathname;let n=-1;for(;++n0){let[m,...g]=d;const b=i[h][1];Q6(b)&&Q6(m)&&(m=_M(!0,b,m)),i[h]=[u,m,...g]}}}}const lht=new JB().freeze();function IM(e,t){if(typeof t!="function")throw new TypeError("Cannot `"+e+"` without `parser`")}function PM(e,t){if(typeof t!="function")throw new TypeError("Cannot `"+e+"` without `compiler`")}function DM(e,t){if(t)throw new Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function qX(e){if(!Q6(e)||typeof e.type!="string")throw new TypeError("Expected node, got `"+e+"`")}function WX(e,t,n){if(!n)throw new Error("`"+e+"` finished async. Use `"+t+"` instead")}function AT(e){return cht(e)?e:new KSe(e)}function cht(e){return!!(e&&typeof e=="object"&&"message"in e&&"messages"in e)}function uht(e){return typeof e=="string"||dht(e)}function dht(e){return!!(e&&typeof e=="object"&&"byteLength"in e&&"byteOffset"in e)}const fht="https://github.com/remarkjs/react-markdown/blob/main/changelog.md",KX=[],GX={allowDangerousHtml:!0},hht=/^(https?|ircs?|mailto|xmpp)$/i,pht=[{from:"astPlugins",id:"remove-buggy-html-in-markdown-parser"},{from:"allowDangerousHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"allowNode",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowElement"},{from:"allowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowedElements"},{from:"disallowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"disallowedElements"},{from:"escapeHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"includeElementIndex",id:"#remove-includeelementindex"},{from:"includeNodeIndex",id:"change-includenodeindex-to-includeelementindex"},{from:"linkTarget",id:"remove-linktarget"},{from:"plugins",id:"change-plugins-to-remarkplugins",to:"remarkPlugins"},{from:"rawSourcePos",id:"#remove-rawsourcepos"},{from:"renderers",id:"change-renderers-to-components",to:"components"},{from:"source",id:"change-source-to-children",to:"children"},{from:"sourcePos",id:"#remove-sourcepos"},{from:"transformImageUri",id:"#add-urltransform",to:"urlTransform"},{from:"transformLinkUri",id:"#add-urltransform",to:"urlTransform"}];function mht(e){const t=ght(e),n=bht(e);return yht(t.runSync(t.parse(n),n),e)}function ght(e){const t=e.rehypePlugins||KX,n=e.remarkPlugins||KX,i=e.remarkRehypeOptions?{...e.remarkRehypeOptions,...GX}:GX;return lht().use(Xdt).use(n).use(Hft,i).use(t)}function bht(e){const t=e.children||"",n=new KSe;return typeof t=="string"&&(n.value=t),n}function yht(e,t){const n=t.allowedElements,i=t.allowElement,r=t.components,s=t.disallowedElements,a=t.skipHtml,l=t.unwrapDisallowed,c=t.urlTransform||vht;for(const d of pht)Object.hasOwn(t,d.from)&&(""+d.from+(d.to?"use `"+d.to+"` instead":"remove it")+fht+d.id,void 0);return t.className&&(e={type:"element",tagName:"div",properties:{className:t.className},children:e.type==="root"?e.children:[e]}),SE(e,u),Ict(e,{Fragment:o.Fragment,components:r,ignoreInvalidStyle:!0,jsx:o.jsx,jsxs:o.jsxs,passKeys:!0,passNode:!0});function u(d,f,h){if(d.type==="raw"&&h&&typeof f=="number")return a?h.children.splice(f,1):h.children[f]={type:"text",value:d.value},f;if(d.type==="element"){let m;for(m in CM)if(Object.hasOwn(CM,m)&&Object.hasOwn(d.properties,m)){const g=d.properties[m],b=CM[m];(b===null||b.includes(d.tagName))&&(d.properties[m]=c(String(g||""),m,d))}}if(d.type==="element"){let m=n?!n.includes(d.tagName):s?s.includes(d.tagName):!1;if(!m&&i&&typeof f=="number"&&(m=!i(d,f,h)),m&&h&&typeof f=="number")return l&&d.children?h.children.splice(f,1,...d.children):h.children.splice(f,1),f}}}function vht(e){const t=e.indexOf(":"),n=e.indexOf("?"),i=e.indexOf("#"),r=e.indexOf("/");return t===-1||r!==-1&&t>r||n!==-1&&t>n||i!==-1&&t>i||hht.test(e.slice(0,t))?e:""}function XX(e,t){const n=String(e);if(typeof t!="string")throw new TypeError("Expected character");let i=0,r=n.indexOf(t);for(;r!==-1;)i++,r=n.indexOf(t,r+t.length);return i}function xht(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}function wht(e,t,n){const r=OE((n||{}).ignore||[]),s=Oht(t);let a=-1;for(;++a0?{type:"text",value:S}:void 0),S===!1?h.lastIndex=w+1:(g!==w&&x.push({type:"text",value:u.value.slice(g,w)}),Array.isArray(S)?x.push(...S):S&&x.push(S),g=w+O[0].length,y=!0),!h.global)break;O=h.exec(u.value)}return y?(g?\]}]+$/.exec(e);if(!t)return[e,void 0];e=e.slice(0,t.index);let n=t[0],i=n.indexOf(")");const r=XX(e,"(");let s=XX(e,")");for(;i!==-1&&r>s;)e+=n.slice(0,i+1),n=n.slice(i+1),i=n.indexOf(")"),s++;return[e,n]}function GSe(e,t){const n=e.input.charCodeAt(e.index-1);return(e.index===0||Rb(n)||tI(n))&&(!t||n!==47)}XSe.peek=Hht;function Lht(){this.buffer()}function $ht(e){this.enter({type:"footnoteReference",identifier:"",label:""},e)}function Fht(){this.buffer()}function Bht(e){this.enter({type:"footnoteDefinition",identifier:"",label:"",children:[]},e)}function Uht(e){const t=this.resume(),n=this.stack[this.stack.length-1];n.type,n.identifier=Mu(this.sliceSerialize(e)).toLowerCase(),n.label=t}function Qht(e){this.exit(e)}function zht(e){const t=this.resume(),n=this.stack[this.stack.length-1];n.type,n.identifier=Mu(this.sliceSerialize(e)).toLowerCase(),n.label=t}function Vht(e){this.exit(e)}function Hht(){return"["}function XSe(e,t,n,i){const r=n.createTracker(i);let s=r.move("[^");const a=n.enter("footnoteReference"),l=n.enter("reference");return s+=r.move(n.safe(n.associationId(e),{after:"]",before:s})),l(),a(),s+=r.move("]"),s}function qht(){return{enter:{gfmFootnoteCallString:Lht,gfmFootnoteCall:$ht,gfmFootnoteDefinitionLabelString:Fht,gfmFootnoteDefinition:Bht},exit:{gfmFootnoteCallString:Uht,gfmFootnoteCall:Qht,gfmFootnoteDefinitionLabelString:zht,gfmFootnoteDefinition:Vht}}}function Wht(e){let t=!1;return e&&e.firstLineBlank&&(t=!0),{handlers:{footnoteDefinition:n,footnoteReference:XSe},unsafe:[{character:"[",inConstruct:["label","phrasing","reference"]}]};function n(i,r,s,a){const l=s.createTracker(a);let c=l.move("[^");const u=s.enter("footnoteDefinition"),d=s.enter("label");return c+=l.move(s.safe(s.associationId(i),{before:c,after:"]"})),d(),c+=l.move("]:"),i.children&&i.children.length>0&&(l.shift(4),c+=l.move((t?` +`:" ")+s.indentLines(s.containerFlow(i,l.current()),t?YSe:Kht))),u(),c}}function Kht(e,t,n){return t===0?e:YSe(e,t,n)}function YSe(e,t,n){return(n?"":" ")+e}const Ght=["autolink","destinationLiteral","destinationRaw","reference","titleQuote","titleApostrophe"];ZSe.peek=ept;function Xht(){return{canContainEols:["delete"],enter:{strikethrough:Zht},exit:{strikethrough:Jht}}}function Yht(){return{unsafe:[{character:"~",inConstruct:"phrasing",notInConstruct:Ght}],handlers:{delete:ZSe}}}function Zht(e){this.enter({type:"delete",children:[]},e)}function Jht(e){this.exit(e)}function ZSe(e,t,n,i){const r=n.createTracker(i),s=n.enter("strikethrough");let a=r.move("~~");return a+=n.containerPhrasing(e,{...r.current(),before:a,after:"~"}),a+=r.move("~~"),s(),a}function ept(){return"~"}function tpt(e){return e.length}function npt(e,t){const n=t||{},i=(n.align||[]).concat(),r=n.stringLength||tpt,s=[],a=[],l=[],c=[];let u=0,d=-1;for(;++du&&(u=e[d].length);++yc[y])&&(c[y]=O)}b.push(x)}a[d]=b,l[d]=v}let f=-1;if(typeof i=="object"&&"length"in i)for(;++fc[f]&&(c[f]=x),m[f]=x),h[f]=O}a.splice(1,0,h),l.splice(1,0,m),d=-1;const g=[];for(;++d "),s.shift(2);const a=n.indentLines(n.containerFlow(e,s.current()),spt);return r(),a}function spt(e,t,n){return">"+(n?"":" ")+e}function apt(e,t){return JX(e,t.inConstruct,!0)&&!JX(e,t.notInConstruct,!1)}function JX(e,t,n){if(typeof t=="string"&&(t=[t]),!t||t.length===0)return n;let i=-1;for(;++ia&&(a=s):s=1,r=i+t.length,i=n.indexOf(t,r);return a}function lpt(e,t){return!!(t.options.fences===!1&&e.value&&!e.lang&&/[^ \r\n]/.test(e.value)&&!/^[\t ]*(?:[\r\n]|$)|(?:^|[\r\n])[\t ]*$/.test(e.value))}function cpt(e){const t=e.options.fence||"`";if(t!=="`"&&t!=="~")throw new Error("Cannot serialize code with `"+t+"` for `options.fence`, expected `` ` `` or `~`");return t}function upt(e,t,n,i){const r=cpt(n),s=e.value||"",a=r==="`"?"GraveAccent":"Tilde";if(lpt(e,n)){const f=n.enter("codeIndented"),h=n.indentLines(s,dpt);return f(),h}const l=n.createTracker(i),c=r.repeat(Math.max(opt(s,r)+1,3)),u=n.enter("codeFenced");let d=l.move(c);if(e.lang){const f=n.enter(`codeFencedLang${a}`);d+=l.move(n.safe(e.lang,{before:d,after:" ",encode:["`"],...l.current()})),f()}if(e.lang&&e.meta){const f=n.enter(`codeFencedMeta${a}`);d+=l.move(" "),d+=l.move(n.safe(e.meta,{before:d,after:` `,encode:["`"],...l.current()})),f()}return d+=l.move(` `),s&&(d+=l.move(s+` -`)),d+=l.move(c),u(),d}function Ght(e,t,n){return(n?"":" ")+e}function KB(e){const t=e.options.quote||'"';if(t!=='"'&&t!=="'")throw new Error("Cannot serialize title with `"+t+"` for `options.quote`, expected `\"`, or `'`");return t}function Kht(e,t,n,i){const r=KB(n),s=r==='"'?"Quote":"Apostrophe",a=n.enter("definition");let l=n.enter("label");const c=n.createTracker(i);let u=c.move("[");return u+=c.move(n.safe(n.associationId(e),{before:u,after:"]",...c.current()})),u+=c.move("]: "),l(),!e.url||/[\0- \u007F]/.test(e.url)?(l=n.enter("destinationLiteral"),u+=c.move("<"),u+=c.move(n.safe(e.url,{before:u,after:">",...c.current()})),u+=c.move(">")):(l=n.enter("destinationRaw"),u+=c.move(n.safe(e.url,{before:u,after:e.title?" ":` -`,...c.current()}))),l(),e.title&&(l=n.enter(`title${s}`),u+=c.move(" "+r),u+=c.move(n.safe(e.title,{before:u,after:r,...c.current()})),u+=c.move(r),l()),a(),u}function Xht(e){const t=e.options.emphasis||"*";if(t!=="*"&&t!=="_")throw new Error("Cannot serialize emphasis with `"+t+"` for `options.emphasis`, expected `*`, or `_`");return t}function US(e){return"&#x"+e.toString(16).toUpperCase()+";"}function fN(e,t,n){const i=Yv(e),r=Yv(t);return i===void 0?r===void 0?n==="_"?{inside:!0,outside:!0}:{inside:!1,outside:!1}:r===1?{inside:!0,outside:!0}:{inside:!1,outside:!0}:i===1?r===void 0?{inside:!1,outside:!1}:r===1?{inside:!0,outside:!0}:{inside:!1,outside:!1}:r===void 0?{inside:!1,outside:!1}:r===1?{inside:!0,outside:!1}:{inside:!1,outside:!1}}USe.peek=Yht;function USe(e,t,n,i){const r=Xht(n),s=n.enter("emphasis"),a=n.createTracker(i),l=a.move(r);let c=a.move(n.containerPhrasing(e,{after:r,before:l,...a.current()}));const u=c.charCodeAt(0),d=fN(i.before.charCodeAt(i.before.length-1),u,r);d.inside&&(c=US(u)+c.slice(1));const f=c.charCodeAt(c.length-1),h=fN(i.after.charCodeAt(0),f,r);h.inside&&(c=c.slice(0,-1)+US(f));const m=a.move(r);return s(),n.attentionEncodeSurroundingInfo={after:h.outside,before:d.outside},l+c+m}function Yht(e,t,n){return n.options.emphasis||"*"}function Zht(e,t){let n=!1;return vE(e,function(i){if("value"in i&&/\r?\n|\r/.test(i.value)||i.type==="break")return n=!0,D6}),!!((!e.depth||e.depth<3)&&UB(e)&&(t.options.setext||n))}function Jht(e,t,n,i){const r=Math.max(Math.min(6,e.depth||1),1),s=n.createTracker(i);if(Zht(e,n)){const d=n.enter("headingSetext"),f=n.enter("phrasing"),h=n.containerPhrasing(e,{...s.current(),before:` +`)),d+=l.move(c),u(),d}function dpt(e,t,n){return(n?"":" ")+e}function eU(e){const t=e.options.quote||'"';if(t!=='"'&&t!=="'")throw new Error("Cannot serialize title with `"+t+"` for `options.quote`, expected `\"`, or `'`");return t}function fpt(e,t,n,i){const r=eU(n),s=r==='"'?"Quote":"Apostrophe",a=n.enter("definition");let l=n.enter("label");const c=n.createTracker(i);let u=c.move("[");return u+=c.move(n.safe(n.associationId(e),{before:u,after:"]",...c.current()})),u+=c.move("]: "),l(),!e.url||/[\0- \u007F]/.test(e.url)?(l=n.enter("destinationLiteral"),u+=c.move("<"),u+=c.move(n.safe(e.url,{before:u,after:">",...c.current()})),u+=c.move(">")):(l=n.enter("destinationRaw"),u+=c.move(n.safe(e.url,{before:u,after:e.title?" ":` +`,...c.current()}))),l(),e.title&&(l=n.enter(`title${s}`),u+=c.move(" "+r),u+=c.move(n.safe(e.title,{before:u,after:r,...c.current()})),u+=c.move(r),l()),a(),u}function hpt(e){const t=e.options.emphasis||"*";if(t!=="*"&&t!=="_")throw new Error("Cannot serialize emphasis with `"+t+"` for `options.emphasis`, expected `*`, or `_`");return t}function HS(e){return"&#x"+e.toString(16).toUpperCase()+";"}function bN(e,t,n){const i=nx(e),r=nx(t);return i===void 0?r===void 0?n==="_"?{inside:!0,outside:!0}:{inside:!1,outside:!1}:r===1?{inside:!0,outside:!0}:{inside:!1,outside:!0}:i===1?r===void 0?{inside:!1,outside:!1}:r===1?{inside:!0,outside:!0}:{inside:!1,outside:!1}:r===void 0?{inside:!1,outside:!1}:r===1?{inside:!0,outside:!1}:{inside:!1,outside:!1}}eke.peek=ppt;function eke(e,t,n,i){const r=hpt(n),s=n.enter("emphasis"),a=n.createTracker(i),l=a.move(r);let c=a.move(n.containerPhrasing(e,{after:r,before:l,...a.current()}));const u=c.charCodeAt(0),d=bN(i.before.charCodeAt(i.before.length-1),u,r);d.inside&&(c=HS(u)+c.slice(1));const f=c.charCodeAt(c.length-1),h=bN(i.after.charCodeAt(0),f,r);h.inside&&(c=c.slice(0,-1)+HS(f));const m=a.move(r);return s(),n.attentionEncodeSurroundingInfo={after:h.outside,before:d.outside},l+c+m}function ppt(e,t,n){return n.options.emphasis||"*"}function mpt(e,t){let n=!1;return SE(e,function(i){if("value"in i&&/\r?\n|\r/.test(i.value)||i.type==="break")return n=!0,B6}),!!((!e.depth||e.depth<3)&&qB(e)&&(t.options.setext||n))}function gpt(e,t,n,i){const r=Math.max(Math.min(6,e.depth||1),1),s=n.createTracker(i);if(mpt(e,n)){const d=n.enter("headingSetext"),f=n.enter("phrasing"),h=n.containerPhrasing(e,{...s.current(),before:` `,after:` `});return f(),d(),h+` `+(r===1?"=":"-").repeat(h.length-(Math.max(h.lastIndexOf("\r"),h.lastIndexOf(` `))+1))}const a="#".repeat(r),l=n.enter("headingAtx"),c=n.enter("phrasing");s.move(a+" ");let u=n.containerPhrasing(e,{before:"# ",after:` -`,...s.current()});return/^[\t ]/.test(u)&&(u=US(u.charCodeAt(0))+u.slice(1)),u=u?a+" "+u:a,n.options.closeAtx&&(u+=" "+a),c(),l(),u}QSe.peek=ept;function QSe(e){return e.value||""}function ept(){return"<"}zSe.peek=tpt;function zSe(e,t,n,i){const r=KB(n),s=r==='"'?"Quote":"Apostrophe",a=n.enter("image");let l=n.enter("label");const c=n.createTracker(i);let u=c.move("![");return u+=c.move(n.safe(e.alt,{before:u,after:"]",...c.current()})),u+=c.move("]("),l(),!e.url&&e.title||/[\0- \u007F]/.test(e.url)?(l=n.enter("destinationLiteral"),u+=c.move("<"),u+=c.move(n.safe(e.url,{before:u,after:">",...c.current()})),u+=c.move(">")):(l=n.enter("destinationRaw"),u+=c.move(n.safe(e.url,{before:u,after:e.title?" ":")",...c.current()}))),l(),e.title&&(l=n.enter(`title${s}`),u+=c.move(" "+r),u+=c.move(n.safe(e.title,{before:u,after:r,...c.current()})),u+=c.move(r),l()),u+=c.move(")"),a(),u}function tpt(){return"!"}VSe.peek=npt;function VSe(e,t,n,i){const r=e.referenceType,s=n.enter("imageReference");let a=n.enter("label");const l=n.createTracker(i);let c=l.move("![");const u=n.safe(e.alt,{before:c,after:"]",...l.current()});c+=l.move(u+"]["),a();const d=n.stack;n.stack=[],a=n.enter("reference");const f=n.safe(n.associationId(e),{before:c,after:"]",...l.current()});return a(),n.stack=d,s(),r==="full"||!u||u!==f?c+=l.move(f+"]"):r==="shortcut"?c=c.slice(0,-1):c+=l.move("]"),c}function npt(){return"!"}HSe.peek=ipt;function HSe(e,t,n){let i=e.value||"",r="`",s=-1;for(;new RegExp("(^|[^`])"+r+"([^`]|$)").test(i);)r+="`";for(/[^ \r\n]/.test(i)&&(/^[ \r\n]/.test(i)&&/[ \r\n]$/.test(i)||/^`|`$/.test(i))&&(i=" "+i+" ");++s\u007F]/.test(e.url))}WSe.peek=rpt;function WSe(e,t,n,i){const r=KB(n),s=r==='"'?"Quote":"Apostrophe",a=n.createTracker(i);let l,c;if(qSe(e,n)){const d=n.stack;n.stack=[],l=n.enter("autolink");let f=a.move("<");return f+=a.move(n.containerPhrasing(e,{before:f,after:">",...a.current()})),f+=a.move(">"),l(),n.stack=d,f}l=n.enter("link"),c=n.enter("label");let u=a.move("[");return u+=a.move(n.containerPhrasing(e,{before:u,after:"](",...a.current()})),u+=a.move("]("),c(),!e.url&&e.title||/[\0- \u007F]/.test(e.url)?(c=n.enter("destinationLiteral"),u+=a.move("<"),u+=a.move(n.safe(e.url,{before:u,after:">",...a.current()})),u+=a.move(">")):(c=n.enter("destinationRaw"),u+=a.move(n.safe(e.url,{before:u,after:e.title?" ":")",...a.current()}))),c(),e.title&&(c=n.enter(`title${s}`),u+=a.move(" "+r),u+=a.move(n.safe(e.title,{before:u,after:r,...a.current()})),u+=a.move(r),c()),u+=a.move(")"),l(),u}function rpt(e,t,n){return qSe(e,n)?"<":"["}GSe.peek=spt;function GSe(e,t,n,i){const r=e.referenceType,s=n.enter("linkReference");let a=n.enter("label");const l=n.createTracker(i);let c=l.move("[");const u=n.containerPhrasing(e,{before:c,after:"]",...l.current()});c+=l.move(u+"]["),a();const d=n.stack;n.stack=[],a=n.enter("reference");const f=n.safe(n.associationId(e),{before:c,after:"]",...l.current()});return a(),n.stack=d,s(),r==="full"||!u||u!==f?c+=l.move(f+"]"):r==="shortcut"?c=c.slice(0,-1):c+=l.move("]"),c}function spt(){return"["}function XB(e){const t=e.options.bullet||"*";if(t!=="*"&&t!=="+"&&t!=="-")throw new Error("Cannot serialize items with `"+t+"` for `options.bullet`, expected `*`, `+`, or `-`");return t}function apt(e){const t=XB(e),n=e.options.bulletOther;if(!n)return t==="*"?"-":"*";if(n!=="*"&&n!=="+"&&n!=="-")throw new Error("Cannot serialize items with `"+n+"` for `options.bulletOther`, expected `*`, `+`, or `-`");if(n===t)throw new Error("Expected `bullet` (`"+t+"`) and `bulletOther` (`"+n+"`) to be different");return n}function opt(e){const t=e.options.bulletOrdered||".";if(t!=="."&&t!==")")throw new Error("Cannot serialize items with `"+t+"` for `options.bulletOrdered`, expected `.` or `)`");return t}function KSe(e){const t=e.options.rule||"*";if(t!=="*"&&t!=="-"&&t!=="_")throw new Error("Cannot serialize rules with `"+t+"` for `options.rule`, expected `*`, `-`, or `_`");return t}function lpt(e,t,n,i){const r=n.enter("list"),s=n.bulletCurrent;let a=e.ordered?opt(n):XB(n);const l=e.ordered?a==="."?")":".":apt(n);let c=t&&n.bulletLastUsed?a===n.bulletLastUsed:!1;if(!e.ordered){const d=e.children?e.children[0]:void 0;if((a==="*"||a==="-")&&d&&(!d.children||!d.children[0])&&n.stack[n.stack.length-1]==="list"&&n.stack[n.stack.length-2]==="listItem"&&n.stack[n.stack.length-3]==="list"&&n.stack[n.stack.length-4]==="listItem"&&n.indexStack[n.indexStack.length-1]===0&&n.indexStack[n.indexStack.length-2]===0&&n.indexStack[n.indexStack.length-3]===0&&(c=!0),KSe(n)===a&&d){let f=-1;for(;++f-1?t.start:1)+(n.options.incrementListMarker===!1?0:t.children.indexOf(e))+s);let a=s.length+1;(r==="tab"||r==="mixed"&&(t&&t.type==="list"&&t.spread||e.spread))&&(a=Math.ceil(a/4)*4);const l=n.createTracker(i);l.move(s+" ".repeat(a-s.length)),l.shift(a);const c=n.enter("listItem"),u=n.indentLines(n.containerFlow(e,l.current()),d);return c(),u;function d(f,h,m){return h?(m?"":" ".repeat(a))+f:(m?s:s+" ".repeat(a-s.length))+f}}function dpt(e,t,n,i){const r=n.enter("paragraph"),s=n.enter("phrasing"),a=n.containerPhrasing(e,i);return s(),r(),a}const fpt=yE(["break","delete","emphasis","footnote","footnoteReference","image","imageReference","inlineCode","inlineMath","link","linkReference","mdxJsxTextElement","mdxTextExpression","strong","text","textDirective"]);function hpt(e,t,n,i){return(e.children.some(function(a){return fpt(a)})?n.containerPhrasing:n.containerFlow).call(n,e,i)}function ppt(e){const t=e.options.strong||"*";if(t!=="*"&&t!=="_")throw new Error("Cannot serialize strong with `"+t+"` for `options.strong`, expected `*`, or `_`");return t}XSe.peek=mpt;function XSe(e,t,n,i){const r=ppt(n),s=n.enter("strong"),a=n.createTracker(i),l=a.move(r+r);let c=a.move(n.containerPhrasing(e,{after:r,before:l,...a.current()}));const u=c.charCodeAt(0),d=fN(i.before.charCodeAt(i.before.length-1),u,r);d.inside&&(c=US(u)+c.slice(1));const f=c.charCodeAt(c.length-1),h=fN(i.after.charCodeAt(0),f,r);h.inside&&(c=c.slice(0,-1)+US(f));const m=a.move(r+r);return s(),n.attentionEncodeSurroundingInfo={after:h.outside,before:d.outside},l+c+m}function mpt(e,t,n){return n.options.strong||"*"}function gpt(e,t,n,i){return n.safe(e.value,i)}function bpt(e){const t=e.options.ruleRepetition||3;if(t<3)throw new Error("Cannot serialize rules with repetition `"+t+"` for `options.ruleRepetition`, expected `3` or more");return t}function ypt(e,t,n){const i=(KSe(n)+(n.options.ruleSpaces?" ":"")).repeat(bpt(n));return n.options.ruleSpaces?i.slice(0,-1):i}const YSe={blockquote:Uht,break:HX,code:Wht,definition:Kht,emphasis:USe,hardBreak:HX,heading:Jht,html:QSe,image:zSe,imageReference:VSe,inlineCode:HSe,link:WSe,linkReference:GSe,list:lpt,listItem:upt,paragraph:dpt,root:hpt,strong:XSe,text:gpt,thematicBreak:ypt};function vpt(){return{enter:{table:xpt,tableData:qX,tableHeader:qX,tableRow:Opt},exit:{codeText:Spt,table:wpt,tableData:PM,tableHeader:PM,tableRow:PM}}}function xpt(e){const t=e._align;this.enter({type:"table",align:t.map(function(n){return n==="none"?null:n}),children:[]},e),this.data.inTable=!0}function wpt(e){this.exit(e),this.data.inTable=void 0}function Opt(e){this.enter({type:"tableRow",children:[]},e)}function PM(e){this.exit(e)}function qX(e){this.enter({type:"tableCell",children:[]},e)}function Spt(e){let t=this.resume();this.data.inTable&&(t=t.replace(/\\([\\|])/g,kpt));const n=this.stack[this.stack.length-1];n.type,n.value=t,this.exit(e)}function kpt(e,t){return t==="|"?t:e}function Ept(e){const t=e||{},n=t.tableCellPadding,i=t.tablePipeAlign,r=t.stringLength,s=n?" ":"|";return{unsafe:[{character:"\r",inConstruct:"tableCell"},{character:` +`,...s.current()});return/^[\t ]/.test(u)&&(u=HS(u.charCodeAt(0))+u.slice(1)),u=u?a+" "+u:a,n.options.closeAtx&&(u+=" "+a),c(),l(),u}tke.peek=bpt;function tke(e){return e.value||""}function bpt(){return"<"}nke.peek=ypt;function nke(e,t,n,i){const r=eU(n),s=r==='"'?"Quote":"Apostrophe",a=n.enter("image");let l=n.enter("label");const c=n.createTracker(i);let u=c.move("![");return u+=c.move(n.safe(e.alt,{before:u,after:"]",...c.current()})),u+=c.move("]("),l(),!e.url&&e.title||/[\0- \u007F]/.test(e.url)?(l=n.enter("destinationLiteral"),u+=c.move("<"),u+=c.move(n.safe(e.url,{before:u,after:">",...c.current()})),u+=c.move(">")):(l=n.enter("destinationRaw"),u+=c.move(n.safe(e.url,{before:u,after:e.title?" ":")",...c.current()}))),l(),e.title&&(l=n.enter(`title${s}`),u+=c.move(" "+r),u+=c.move(n.safe(e.title,{before:u,after:r,...c.current()})),u+=c.move(r),l()),u+=c.move(")"),a(),u}function ypt(){return"!"}ike.peek=vpt;function ike(e,t,n,i){const r=e.referenceType,s=n.enter("imageReference");let a=n.enter("label");const l=n.createTracker(i);let c=l.move("![");const u=n.safe(e.alt,{before:c,after:"]",...l.current()});c+=l.move(u+"]["),a();const d=n.stack;n.stack=[],a=n.enter("reference");const f=n.safe(n.associationId(e),{before:c,after:"]",...l.current()});return a(),n.stack=d,s(),r==="full"||!u||u!==f?c+=l.move(f+"]"):r==="shortcut"?c=c.slice(0,-1):c+=l.move("]"),c}function vpt(){return"!"}rke.peek=xpt;function rke(e,t,n){let i=e.value||"",r="`",s=-1;for(;new RegExp("(^|[^`])"+r+"([^`]|$)").test(i);)r+="`";for(/[^ \r\n]/.test(i)&&(/^[ \r\n]/.test(i)&&/[ \r\n]$/.test(i)||/^`|`$/.test(i))&&(i=" "+i+" ");++s\u007F]/.test(e.url))}ake.peek=wpt;function ake(e,t,n,i){const r=eU(n),s=r==='"'?"Quote":"Apostrophe",a=n.createTracker(i);let l,c;if(ske(e,n)){const d=n.stack;n.stack=[],l=n.enter("autolink");let f=a.move("<");return f+=a.move(n.containerPhrasing(e,{before:f,after:">",...a.current()})),f+=a.move(">"),l(),n.stack=d,f}l=n.enter("link"),c=n.enter("label");let u=a.move("[");return u+=a.move(n.containerPhrasing(e,{before:u,after:"](",...a.current()})),u+=a.move("]("),c(),!e.url&&e.title||/[\0- \u007F]/.test(e.url)?(c=n.enter("destinationLiteral"),u+=a.move("<"),u+=a.move(n.safe(e.url,{before:u,after:">",...a.current()})),u+=a.move(">")):(c=n.enter("destinationRaw"),u+=a.move(n.safe(e.url,{before:u,after:e.title?" ":")",...a.current()}))),c(),e.title&&(c=n.enter(`title${s}`),u+=a.move(" "+r),u+=a.move(n.safe(e.title,{before:u,after:r,...a.current()})),u+=a.move(r),c()),u+=a.move(")"),l(),u}function wpt(e,t,n){return ske(e,n)?"<":"["}oke.peek=Opt;function oke(e,t,n,i){const r=e.referenceType,s=n.enter("linkReference");let a=n.enter("label");const l=n.createTracker(i);let c=l.move("[");const u=n.containerPhrasing(e,{before:c,after:"]",...l.current()});c+=l.move(u+"]["),a();const d=n.stack;n.stack=[],a=n.enter("reference");const f=n.safe(n.associationId(e),{before:c,after:"]",...l.current()});return a(),n.stack=d,s(),r==="full"||!u||u!==f?c+=l.move(f+"]"):r==="shortcut"?c=c.slice(0,-1):c+=l.move("]"),c}function Opt(){return"["}function tU(e){const t=e.options.bullet||"*";if(t!=="*"&&t!=="+"&&t!=="-")throw new Error("Cannot serialize items with `"+t+"` for `options.bullet`, expected `*`, `+`, or `-`");return t}function Spt(e){const t=tU(e),n=e.options.bulletOther;if(!n)return t==="*"?"-":"*";if(n!=="*"&&n!=="+"&&n!=="-")throw new Error("Cannot serialize items with `"+n+"` for `options.bulletOther`, expected `*`, `+`, or `-`");if(n===t)throw new Error("Expected `bullet` (`"+t+"`) and `bulletOther` (`"+n+"`) to be different");return n}function kpt(e){const t=e.options.bulletOrdered||".";if(t!=="."&&t!==")")throw new Error("Cannot serialize items with `"+t+"` for `options.bulletOrdered`, expected `.` or `)`");return t}function lke(e){const t=e.options.rule||"*";if(t!=="*"&&t!=="-"&&t!=="_")throw new Error("Cannot serialize rules with `"+t+"` for `options.rule`, expected `*`, `-`, or `_`");return t}function Ept(e,t,n,i){const r=n.enter("list"),s=n.bulletCurrent;let a=e.ordered?kpt(n):tU(n);const l=e.ordered?a==="."?")":".":Spt(n);let c=t&&n.bulletLastUsed?a===n.bulletLastUsed:!1;if(!e.ordered){const d=e.children?e.children[0]:void 0;if((a==="*"||a==="-")&&d&&(!d.children||!d.children[0])&&n.stack[n.stack.length-1]==="list"&&n.stack[n.stack.length-2]==="listItem"&&n.stack[n.stack.length-3]==="list"&&n.stack[n.stack.length-4]==="listItem"&&n.indexStack[n.indexStack.length-1]===0&&n.indexStack[n.indexStack.length-2]===0&&n.indexStack[n.indexStack.length-3]===0&&(c=!0),lke(n)===a&&d){let f=-1;for(;++f-1?t.start:1)+(n.options.incrementListMarker===!1?0:t.children.indexOf(e))+s);let a=s.length+1;(r==="tab"||r==="mixed"&&(t&&t.type==="list"&&t.spread||e.spread))&&(a=Math.ceil(a/4)*4);const l=n.createTracker(i);l.move(s+" ".repeat(a-s.length)),l.shift(a);const c=n.enter("listItem"),u=n.indentLines(n.containerFlow(e,l.current()),d);return c(),u;function d(f,h,m){return h?(m?"":" ".repeat(a))+f:(m?s:s+" ".repeat(a-s.length))+f}}function Apt(e,t,n,i){const r=n.enter("paragraph"),s=n.enter("phrasing"),a=n.containerPhrasing(e,i);return s(),r(),a}const _pt=OE(["break","delete","emphasis","footnote","footnoteReference","image","imageReference","inlineCode","inlineMath","link","linkReference","mdxJsxTextElement","mdxTextExpression","strong","text","textDirective"]);function Npt(e,t,n,i){return(e.children.some(function(a){return _pt(a)})?n.containerPhrasing:n.containerFlow).call(n,e,i)}function jpt(e){const t=e.options.strong||"*";if(t!=="*"&&t!=="_")throw new Error("Cannot serialize strong with `"+t+"` for `options.strong`, expected `*`, or `_`");return t}cke.peek=Rpt;function cke(e,t,n,i){const r=jpt(n),s=n.enter("strong"),a=n.createTracker(i),l=a.move(r+r);let c=a.move(n.containerPhrasing(e,{after:r,before:l,...a.current()}));const u=c.charCodeAt(0),d=bN(i.before.charCodeAt(i.before.length-1),u,r);d.inside&&(c=HS(u)+c.slice(1));const f=c.charCodeAt(c.length-1),h=bN(i.after.charCodeAt(0),f,r);h.inside&&(c=c.slice(0,-1)+HS(f));const m=a.move(r+r);return s(),n.attentionEncodeSurroundingInfo={after:h.outside,before:d.outside},l+c+m}function Rpt(e,t,n){return n.options.strong||"*"}function Ipt(e,t,n,i){return n.safe(e.value,i)}function Ppt(e){const t=e.options.ruleRepetition||3;if(t<3)throw new Error("Cannot serialize rules with repetition `"+t+"` for `options.ruleRepetition`, expected `3` or more");return t}function Dpt(e,t,n){const i=(lke(n)+(n.options.ruleSpaces?" ":"")).repeat(Ppt(n));return n.options.ruleSpaces?i.slice(0,-1):i}const uke={blockquote:rpt,break:eY,code:upt,definition:fpt,emphasis:eke,hardBreak:eY,heading:gpt,html:tke,image:nke,imageReference:ike,inlineCode:rke,link:ake,linkReference:oke,list:Ept,listItem:Tpt,paragraph:Apt,root:Npt,strong:cke,text:Ipt,thematicBreak:Dpt};function Mpt(){return{enter:{table:Lpt,tableData:tY,tableHeader:tY,tableRow:Fpt},exit:{codeText:Bpt,table:$pt,tableData:FM,tableHeader:FM,tableRow:FM}}}function Lpt(e){const t=e._align;this.enter({type:"table",align:t.map(function(n){return n==="none"?null:n}),children:[]},e),this.data.inTable=!0}function $pt(e){this.exit(e),this.data.inTable=void 0}function Fpt(e){this.enter({type:"tableRow",children:[]},e)}function FM(e){this.exit(e)}function tY(e){this.enter({type:"tableCell",children:[]},e)}function Bpt(e){let t=this.resume();this.data.inTable&&(t=t.replace(/\\([\\|])/g,Upt));const n=this.stack[this.stack.length-1];n.type,n.value=t,this.exit(e)}function Upt(e,t){return t==="|"?t:e}function Qpt(e){const t=e||{},n=t.tableCellPadding,i=t.tablePipeAlign,r=t.stringLength,s=n?" ":"|";return{unsafe:[{character:"\r",inConstruct:"tableCell"},{character:` `,inConstruct:"tableCell"},{atBreak:!0,character:"|",after:"[ :-]"},{character:"|",inConstruct:"tableCell"},{atBreak:!0,character:":",after:"-"},{atBreak:!0,character:"-",after:"[:|-]"}],handlers:{inlineCode:h,table:a,tableCell:c,tableRow:l}};function a(m,g,b,v){return u(d(m,b,v),m.align)}function l(m,g,b,v){const y=f(m,b,v),x=u([y]);return x.slice(0,x.indexOf(` -`))}function c(m,g,b,v){const y=b.enter("tableCell"),x=b.enter("phrasing"),O=b.containerPhrasing(m,{...v,before:s,after:s});return x(),y(),O}function u(m,g){return Fht(m,{align:g,alignDelimiters:i,padding:n,stringLength:r})}function d(m,g,b){const v=m.children;let y=-1;const x=[],O=g.enter("table");for(;++y0&&!n&&(e[e.length-1][1]._gfmAutolinkLiteralWalkedInto=!0),n}const zpt={tokenize:Ypt,partial:!0};function Vpt(){return{document:{91:{name:"gfmFootnoteDefinition",tokenize:Gpt,continuation:{tokenize:Kpt},exit:Xpt}},text:{91:{name:"gfmFootnoteCall",tokenize:Wpt},93:{name:"gfmPotentialFootnoteCall",add:"after",tokenize:Hpt,resolveTo:qpt}}}}function Hpt(e,t,n){const i=this;let r=i.events.length;const s=i.parser.gfmFootnotes||(i.parser.gfmFootnotes=[]);let a;for(;r--;){const c=i.events[r][1];if(c.type==="labelImage"){a=c;break}if(c.type==="gfmFootnoteCall"||c.type==="labelLink"||c.type==="label"||c.type==="image"||c.type==="link")break}return l;function l(c){if(!a||!a._balanced)return n(c);const u=Du(i.sliceSerialize({start:a.end,end:i.now()}));return u.codePointAt(0)!==94||!s.includes(u.slice(1))?n(c):(e.enter("gfmFootnoteCallLabelMarker"),e.consume(c),e.exit("gfmFootnoteCallLabelMarker"),t(c))}}function qpt(e,t){let n=e.length;for(;n--;)if(e[n][1].type==="labelImage"&&e[n][0]==="enter"){e[n][1];break}e[n+1][1].type="data",e[n+3][1].type="gfmFootnoteCallLabelMarker";const i={type:"gfmFootnoteCall",start:Object.assign({},e[n+3][1].start),end:Object.assign({},e[e.length-1][1].end)},r={type:"gfmFootnoteCallMarker",start:Object.assign({},e[n+3][1].end),end:Object.assign({},e[n+3][1].end)};r.end.column++,r.end.offset++,r.end._bufferIndex++;const s={type:"gfmFootnoteCallString",start:Object.assign({},r.end),end:Object.assign({},e[e.length-1][1].start)},a={type:"chunkString",contentType:"string",start:Object.assign({},s.start),end:Object.assign({},s.end)},l=[e[n+1],e[n+2],["enter",i,t],e[n+3],e[n+4],["enter",r,t],["exit",r,t],["enter",s,t],["enter",a,t],["exit",a,t],["exit",s,t],e[e.length-2],e[e.length-1],["exit",i,t]];return e.splice(n,e.length-n+1,...l),e}function Wpt(e,t,n){const i=this,r=i.parser.gfmFootnotes||(i.parser.gfmFootnotes=[]);let s=0,a;return l;function l(f){return e.enter("gfmFootnoteCall"),e.enter("gfmFootnoteCallLabelMarker"),e.consume(f),e.exit("gfmFootnoteCallLabelMarker"),c}function c(f){return f!==94?n(f):(e.enter("gfmFootnoteCallMarker"),e.consume(f),e.exit("gfmFootnoteCallMarker"),e.enter("gfmFootnoteCallString"),e.enter("chunkString").contentType="string",u)}function u(f){if(s>999||f===93&&!a||f===null||f===91||Ar(f))return n(f);if(f===93){e.exit("chunkString");const h=e.exit("gfmFootnoteCallString");return r.includes(Du(i.sliceSerialize(h)))?(e.enter("gfmFootnoteCallLabelMarker"),e.consume(f),e.exit("gfmFootnoteCallLabelMarker"),e.exit("gfmFootnoteCall"),t):n(f)}return Ar(f)||(a=!0),s++,e.consume(f),f===92?d:u}function d(f){return f===91||f===92||f===93?(e.consume(f),s++,u):u(f)}}function Gpt(e,t,n){const i=this,r=i.parser.gfmFootnotes||(i.parser.gfmFootnotes=[]);let s,a=0,l;return c;function c(g){return e.enter("gfmFootnoteDefinition")._container=!0,e.enter("gfmFootnoteDefinitionLabel"),e.enter("gfmFootnoteDefinitionLabelMarker"),e.consume(g),e.exit("gfmFootnoteDefinitionLabelMarker"),u}function u(g){return g===94?(e.enter("gfmFootnoteDefinitionMarker"),e.consume(g),e.exit("gfmFootnoteDefinitionMarker"),e.enter("gfmFootnoteDefinitionLabelString"),e.enter("chunkString").contentType="string",d):n(g)}function d(g){if(a>999||g===93&&!l||g===null||g===91||Ar(g))return n(g);if(g===93){e.exit("chunkString");const b=e.exit("gfmFootnoteDefinitionLabelString");return s=Du(i.sliceSerialize(b)),e.enter("gfmFootnoteDefinitionLabelMarker"),e.consume(g),e.exit("gfmFootnoteDefinitionLabelMarker"),e.exit("gfmFootnoteDefinitionLabel"),h}return Ar(g)||(l=!0),a++,e.consume(g),g===92?f:d}function f(g){return g===91||g===92||g===93?(e.consume(g),a++,d):d(g)}function h(g){return g===58?(e.enter("definitionMarker"),e.consume(g),e.exit("definitionMarker"),r.includes(s)||r.push(s),Ui(e,m,"gfmFootnoteDefinitionWhitespace")):n(g)}function m(g){return t(g)}}function Kpt(e,t,n){return e.check(bE,t,e.attempt(zpt,t,n))}function Xpt(e){e.exit("gfmFootnoteDefinition")}function Ypt(e,t,n){const i=this;return Ui(e,r,"gfmFootnoteDefinitionIndent",5);function r(s){const a=i.events[i.events.length-1];return a&&a[1].type==="gfmFootnoteDefinitionIndent"&&a[2].sliceSerialize(a[1],!0).length===4?t(s):n(s)}}function Zpt(e){let n=(e||{}).singleTilde;const i={name:"strikethrough",tokenize:s,resolveAll:r};return n==null&&(n=!0),{text:{126:i},insideSpan:{null:[i]},attentionMarkers:{null:[126]}};function r(a,l){let c=-1;for(;++c1?c(g):(a.consume(g),f++,m);if(f<2&&!n)return c(g);const v=a.exit("strikethroughSequenceTemporary"),y=Yv(g);return v._open=!y||y===2&&!!b,v._close=!b||b===2&&!!y,l(g)}}}class Jpt{constructor(){this.map=[]}add(t,n,i){emt(this,t,n,i)}consume(t){if(this.map.sort(function(s,a){return s[0]-a[0]}),this.map.length===0)return;let n=this.map.length;const i=[];for(;n>0;)n-=1,i.push(t.slice(this.map[n][0]+this.map[n][1]),this.map[n][2]),t.length=this.map[n][0];i.push(t.slice()),t.length=0;let r=i.pop();for(;r;){for(const s of r)t.push(s);r=i.pop()}this.map.length=0}}function emt(e,t,n,i){let r=0;if(!(n===0&&i.length===0)){for(;r-1;){const T=i.events[j][1].type;if(T==="lineEnding"||T==="linePrefix")j--;else break}const A=j>-1?i.events[j][1].type:null,F=A==="tableHead"||A==="tableRow"?S:c;return F===S&&i.parser.lazy[i.now().line]?n(_):F(_)}function c(_){return e.enter("tableHead"),e.enter("tableRow"),u(_)}function u(_){return _===124||(a=!0,s+=1),d(_)}function d(_){return _===null?n(_):Tn(_)?s>1?(s=0,i.interrupt=!0,e.exit("tableRow"),e.enter("lineEnding"),e.consume(_),e.exit("lineEnding"),m):n(_):wi(_)?Ui(e,d,"whitespace")(_):(s+=1,a&&(a=!1,r+=1),_===124?(e.enter("tableCellDivider"),e.consume(_),e.exit("tableCellDivider"),a=!0,d):(e.enter("data"),f(_)))}function f(_){return _===null||_===124||Ar(_)?(e.exit("data"),d(_)):(e.consume(_),_===92?h:f)}function h(_){return _===92||_===124?(e.consume(_),f):f(_)}function m(_){return i.interrupt=!1,i.parser.lazy[i.now().line]?n(_):(e.enter("tableDelimiterRow"),a=!1,wi(_)?Ui(e,g,"linePrefix",i.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(_):g(_))}function g(_){return _===45||_===58?v(_):_===124?(a=!0,e.enter("tableCellDivider"),e.consume(_),e.exit("tableCellDivider"),b):k(_)}function b(_){return wi(_)?Ui(e,v,"whitespace")(_):v(_)}function v(_){return _===58?(s+=1,a=!0,e.enter("tableDelimiterMarker"),e.consume(_),e.exit("tableDelimiterMarker"),y):_===45?(s+=1,y(_)):_===null||Tn(_)?w(_):k(_)}function y(_){return _===45?(e.enter("tableDelimiterFiller"),x(_)):k(_)}function x(_){return _===45?(e.consume(_),x):_===58?(a=!0,e.exit("tableDelimiterFiller"),e.enter("tableDelimiterMarker"),e.consume(_),e.exit("tableDelimiterMarker"),O):(e.exit("tableDelimiterFiller"),O(_))}function O(_){return wi(_)?Ui(e,w,"whitespace")(_):w(_)}function w(_){return _===124?g(_):_===null||Tn(_)?!a||r!==s?k(_):(e.exit("tableDelimiterRow"),e.exit("tableHead"),t(_)):k(_)}function k(_){return n(_)}function S(_){return e.enter("tableRow"),E(_)}function E(_){return _===124?(e.enter("tableCellDivider"),e.consume(_),e.exit("tableCellDivider"),E):_===null||Tn(_)?(e.exit("tableRow"),t(_)):wi(_)?Ui(e,E,"whitespace")(_):(e.enter("data"),C(_))}function C(_){return _===null||_===124||Ar(_)?(e.exit("data"),E(_)):(e.consume(_),_===92?N:C)}function N(_){return _===92||_===124?(e.consume(_),C):C(_)}}function rmt(e,t){let n=-1,i=!0,r=0,s=[0,0,0,0],a=[0,0,0,0],l=!1,c=0,u,d,f;const h=new Jpt;for(;++nn[2]+1){const g=n[2]+1,b=n[3]-n[2]-1;e.add(g,b,[])}}e.add(n[3]+1,0,[["exit",f,t]])}return r!==void 0&&(s.end=Object.assign({},ny(t.events,r)),e.add(r,0,[["exit",s,t]]),s=void 0),s}function GX(e,t,n,i,r){const s=[],a=ny(t.events,n);r&&(r.end=Object.assign({},a),s.push(["exit",r,t])),i.end=Object.assign({},a),s.push(["exit",i,t]),e.add(n+1,0,s)}function ny(e,t){const n=e[t],i=n[0]==="enter"?"start":"end";return n[1][i]}const smt={name:"tasklistCheck",tokenize:omt};function amt(){return{text:{91:smt}}}function omt(e,t,n){const i=this;return r;function r(c){return i.previous!==null||!i._gfmTasklistFirstContentOfListItem?n(c):(e.enter("taskListCheck"),e.enter("taskListCheckMarker"),e.consume(c),e.exit("taskListCheckMarker"),s)}function s(c){return Ar(c)?(e.enter("taskListCheckValueUnchecked"),e.consume(c),e.exit("taskListCheckValueUnchecked"),a):c===88||c===120?(e.enter("taskListCheckValueChecked"),e.consume(c),e.exit("taskListCheckValueChecked"),a):n(c)}function a(c){return c===93?(e.enter("taskListCheckMarker"),e.consume(c),e.exit("taskListCheckMarker"),e.exit("taskListCheck"),l):n(c)}function l(c){return Tn(c)?t(c):wi(c)?e.check({tokenize:lmt},t,n)(c):n(c)}}function lmt(e,t,n){return Ui(e,i,"whitespace");function i(r){return r===null?n(r):t(r)}}function cmt(e){return pSe([Ppt(),Vpt(),Zpt(e),nmt(),amt()])}const umt={};function dmt(e){const t=this,n=e||umt,i=t.data(),r=i.micromarkExtensions||(i.micromarkExtensions=[]),s=i.fromMarkdownExtensions||(i.fromMarkdownExtensions=[]),a=i.toMarkdownExtensions||(i.toMarkdownExtensions=[]);r.push(cmt(n)),s.push(Npt()),a.push(jpt(n))}const KX=function(e,t,n){const i=yE(n);if(!e||!e.type||!e.children)throw new Error("Expected parent node");if(typeof t=="number"){if(t<0||t===Number.POSITIVE_INFINITY)throw new Error("Expected positive finite number as index")}else if(t=e.children.indexOf(t),t<0)throw new Error("Expected child node or index");for(;++tu&&(u=d):d&&(u!==void 0&&u>-1&&c.push(` -`.repeat(u)||" "),u=-1,c.push(d))}return c.join("")}function oke(e,t,n){return e.type==="element"?vmt(e,t,n):e.type==="text"?n.whitespace==="normal"?lke(e,n):xmt(e):[]}function vmt(e,t,n){const i=cke(e,n),r=e.children||[];let s=-1,a=[];if(bmt(e))return a;let l,c;for(B6(e)||JX(e)&&KX(t,e,JX)?c=` -`:gmt(e)?(l=2,c=2):ake(e)&&(l=1,c=1);++s]+>")+")",l={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{begin:"[+-]?(?:(?:[0-9](?:'?[0-9])*\\.(?:[0-9](?:'?[0-9])*)?|\\.[0-9](?:'?[0-9])*)(?:[Ee][+-]?[0-9](?:'?[0-9])*)?|[0-9](?:'?[0-9])*[Ee][+-]?[0-9](?:'?[0-9])*|0[Xx](?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*(?:\\.(?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)?)?|\\.[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)[Pp][+-]?[0-9](?:'?[0-9])*)(?:[Ff](?:16|32|64|128)?|(BF|bf)16|[Ll]|)"},{begin:"[+-]?\\b(?:0[Bb][01](?:'?[01])*|0[Xx][0-9A-Fa-f](?:'?[0-9A-Fa-f])*|0(?:'?[0-7])*|[1-9](?:'?[0-9])*)(?:[Uu](?:LL?|ll?)|[Uu][Zz]?|(?:LL?|ll?)[Uu]?|[Zz][Uu]|)"}],relevance:0},f={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},h={className:"title",begin:t.optional(r)+e.IDENT_RE,relevance:0},m=t.optional(r)+e.IDENT_RE+"\\s*\\(",g=["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],b=["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],v=["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","flat_map","flat_set","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"],y=["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"],w={type:b,keyword:g,literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],_type_hints:v},k={className:"function.dispatch",relevance:0,keywords:{_hint:y},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},S=[k,f,l,n,e.C_BLOCK_COMMENT_MODE,d,u],E={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:w,contains:S.concat([{begin:/\(/,end:/\)/,keywords:w,contains:S.concat(["self"]),relevance:0}]),relevance:0},C={className:"function",begin:"("+a+"[\\*&\\s]+)+"+m,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:w,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:i,keywords:w,relevance:0},{begin:m,returnBegin:!0,contains:[h],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[u,d]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:w,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,d,l,{begin:/\(/,end:/\)/,keywords:w,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,d,l]}]},l,n,e.C_BLOCK_COMMENT_MODE,f]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:w,illegal:"",keywords:w,contains:["self",l]},{begin:e.IDENT_RE+"::",keywords:w},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}}function Tmt(e){const t={type:["boolean","byte","word","String"],built_in:["KeyboardController","MouseController","SoftwareSerial","EthernetServer","EthernetClient","LiquidCrystal","RobotControl","GSMVoiceCall","EthernetUDP","EsploraTFT","HttpClient","RobotMotor","WiFiClient","GSMScanner","FileSystem","Scheduler","GSMServer","YunClient","YunServer","IPAddress","GSMClient","GSMModem","Keyboard","Ethernet","Console","GSMBand","Esplora","Stepper","Process","WiFiUDP","GSM_SMS","Mailbox","USBHost","Firmata","PImage","Client","Server","GSMPIN","FileIO","Bridge","Serial","EEPROM","Stream","Mouse","Audio","Servo","File","Task","GPRS","WiFi","Wire","TFT","GSM","SPI","SD"],_hints:["setup","loop","runShellCommandAsynchronously","analogWriteResolution","retrieveCallingNumber","printFirmwareVersion","analogReadResolution","sendDigitalPortPair","noListenOnLocalhost","readJoystickButton","setFirmwareVersion","readJoystickSwitch","scrollDisplayRight","getVoiceCallStatus","scrollDisplayLeft","writeMicroseconds","delayMicroseconds","beginTransmission","getSignalStrength","runAsynchronously","getAsynchronously","listenOnLocalhost","getCurrentCarrier","readAccelerometer","messageAvailable","sendDigitalPorts","lineFollowConfig","countryNameWrite","runShellCommand","readStringUntil","rewindDirectory","readTemperature","setClockDivider","readLightSensor","endTransmission","analogReference","detachInterrupt","countryNameRead","attachInterrupt","encryptionType","readBytesUntil","robotNameWrite","readMicrophone","robotNameRead","cityNameWrite","userNameWrite","readJoystickY","readJoystickX","mouseReleased","openNextFile","scanNetworks","noInterrupts","digitalWrite","beginSpeaker","mousePressed","isActionDone","mouseDragged","displayLogos","noAutoscroll","addParameter","remoteNumber","getModifiers","keyboardRead","userNameRead","waitContinue","processInput","parseCommand","printVersion","readNetworks","writeMessage","blinkVersion","cityNameRead","readMessage","setDataMode","parsePacket","isListening","setBitOrder","beginPacket","isDirectory","motorsWrite","drawCompass","digitalRead","clearScreen","serialEvent","rightToLeft","setTextSize","leftToRight","requestFrom","keyReleased","compassRead","analogWrite","interrupts","WiFiServer","disconnect","playMelody","parseFloat","autoscroll","getPINUsed","setPINUsed","setTimeout","sendAnalog","readSlider","analogRead","beginWrite","createChar","motorsStop","keyPressed","tempoWrite","readButton","subnetMask","debugPrint","macAddress","writeGreen","randomSeed","attachGPRS","readString","sendString","remotePort","releaseAll","mouseMoved","background","getXChange","getYChange","answerCall","getResult","voiceCall","endPacket","constrain","getSocket","writeJSON","getButton","available","connected","findUntil","readBytes","exitValue","readGreen","writeBlue","startLoop","IPAddress","isPressed","sendSysex","pauseMode","gatewayIP","setCursor","getOemKey","tuneWrite","noDisplay","loadImage","switchPIN","onRequest","onReceive","changePIN","playFile","noBuffer","parseInt","overflow","checkPIN","knobRead","beginTFT","bitClear","updateIR","bitWrite","position","writeRGB","highByte","writeRed","setSpeed","readBlue","noStroke","remoteIP","transfer","shutdown","hangCall","beginSMS","endWrite","attached","maintain","noCursor","checkReg","checkPUK","shiftOut","isValid","shiftIn","pulseIn","connect","println","localIP","pinMode","getIMEI","display","noBlink","process","getBand","running","beginSD","drawBMP","lowByte","setBand","release","bitRead","prepare","pointTo","readRed","setMode","noFill","remove","listen","stroke","detach","attach","noTone","exists","buffer","height","bitSet","circle","config","cursor","random","IRread","setDNS","endSMS","getKey","micros","millis","begin","print","write","ready","flush","width","isPIN","blink","clear","press","mkdir","rmdir","close","point","yield","image","BSSID","click","delay","read","text","move","peek","beep","rect","line","open","seek","fill","size","turn","stop","home","find","step","tone","sqrt","RSSI","SSID","end","bit","tan","cos","sin","pow","map","abs","max","min","get","run","put"],literal:["DIGITAL_MESSAGE","FIRMATA_STRING","ANALOG_MESSAGE","REPORT_DIGITAL","REPORT_ANALOG","INPUT_PULLUP","SET_PIN_MODE","INTERNAL2V56","SYSTEM_RESET","LED_BUILTIN","INTERNAL1V1","SYSEX_START","INTERNAL","EXTERNAL","DEFAULT","OUTPUT","INPUT","HIGH","LOW"]},n=Cmt(e),i=n.keywords;return i.type=[...i.type,...t.type],i.literal=[...i.literal,...t.literal],i.built_in=[...i.built_in,...t.built_in],i._hints=t._hints,n.name="Arduino",n.aliases=["ino"],n.supersetOf="cpp",n}function JB(e){const t=e.regex,n={},i={begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[n]}]};Object.assign(n,{className:"variable",variants:[{begin:t.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},i]});const r={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},s=e.inherit(e.COMMENT(),{match:[/(^|\s)/,/#.*$/],scope:{2:"comment"}}),a={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:"string"})]}},l={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,n,r]};r.contains.push(l);const c={match:/\\"/},u={className:"string",begin:/'/,end:/'/},d={match:/\\'/},f={begin:/\$?\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,n]},h=["fish","bash","zsh","sh","csh","ksh","tcsh","dash","scsh"],m=e.SHEBANG({binary:`(${h.join("|")})`,relevance:10}),g={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0},b=["if","then","else","elif","fi","time","for","while","until","in","do","done","case","esac","coproc","function","select"],v=["true","false"],y={match:/(\/[a-z._-]+)+/},x=["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset"],O=["alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","sudo","type","typeset","ulimit","unalias"],w=["autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp"],k=["chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"];return{name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,keyword:b,literal:v,built_in:[...x,...O,"set","shopt",...w,...k]},contains:[m,e.SHEBANG(),g,f,s,a,y,l,c,u,d,n]}}function Amt(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),i="decltype\\(auto\\)",r="[a-zA-Z_]\\w*::",a="("+i+"|"+t.optional(r)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",l={className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{match:/\batomic_[a-z]{3,6}\b/}]},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{match:/\b(0b[01']+)/},{match:/(-?)\b([\d']+(\.[\d']*)?|\.[\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)/},{match:/(-?)\b(0[xX][a-fA-F0-9]+(?:'[a-fA-F0-9]+)*(?:\.[a-fA-F0-9]*(?:'[a-fA-F0-9]*)*)?(?:[pP][-+]?[0-9]+)?(l|L)?(u|U)?)/},{match:/(-?)\b\d+(?:'\d+)*(?:\.\d*(?:'\d*)*)?(?:[eE][-+]?\d+)?/}],relevance:0},f={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef elifdef elifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},h={className:"title",begin:t.optional(r)+e.IDENT_RE,relevance:0},m=t.optional(r)+e.IDENT_RE+"\\s*\\(",v={keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","typeof","typeof_unqual","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_BitInt","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal96","_Decimal128","_Decimal64x","_Decimal128x","_Float16","_Float32","_Float64","_Float128","_Float32x","_Float64x","_Float128x","const","static","constexpr","complex","bool","imaginary"],literal:"true false NULL",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"},y=[f,l,n,e.C_BLOCK_COMMENT_MODE,d,u],x={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:v,contains:y.concat([{begin:/\(/,end:/\)/,keywords:v,contains:y.concat(["self"]),relevance:0}]),relevance:0},O={begin:"("+a+"[\\*&\\s]+)+"+m,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:v,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:i,keywords:v,relevance:0},{begin:m,returnBegin:!0,contains:[e.inherit(h,{className:"title.function"})],relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:v,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,d,l,{begin:/\(/,end:/\)/,keywords:v,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,d,l]}]},l,n,e.C_BLOCK_COMMENT_MODE,f]};return{name:"C",aliases:["h"],keywords:v,disableAutodetect:!0,illegal:"=]/,contains:[{beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:f,strings:u,keywords:v}}}function _mt(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),i="decltype\\(auto\\)",r="[a-zA-Z_]\\w*::",a="(?!struct)("+i+"|"+t.optional(r)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",l={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{begin:"[+-]?(?:(?:[0-9](?:'?[0-9])*\\.(?:[0-9](?:'?[0-9])*)?|\\.[0-9](?:'?[0-9])*)(?:[Ee][+-]?[0-9](?:'?[0-9])*)?|[0-9](?:'?[0-9])*[Ee][+-]?[0-9](?:'?[0-9])*|0[Xx](?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*(?:\\.(?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)?)?|\\.[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)[Pp][+-]?[0-9](?:'?[0-9])*)(?:[Ff](?:16|32|64|128)?|(BF|bf)16|[Ll]|)"},{begin:"[+-]?\\b(?:0[Bb][01](?:'?[01])*|0[Xx][0-9A-Fa-f](?:'?[0-9A-Fa-f])*|0(?:'?[0-7])*|[1-9](?:'?[0-9])*)(?:[Uu](?:LL?|ll?)|[Uu][Zz]?|(?:LL?|ll?)[Uu]?|[Zz][Uu]|)"}],relevance:0},f={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},h={className:"title",begin:t.optional(r)+e.IDENT_RE,relevance:0},m=t.optional(r)+e.IDENT_RE+"\\s*\\(",g=["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],b=["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],v=["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","flat_map","flat_set","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"],y=["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"],w={type:b,keyword:g,literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],_type_hints:v},k={className:"function.dispatch",relevance:0,keywords:{_hint:y},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},S=[k,f,l,n,e.C_BLOCK_COMMENT_MODE,d,u],E={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:w,contains:S.concat([{begin:/\(/,end:/\)/,keywords:w,contains:S.concat(["self"]),relevance:0}]),relevance:0},C={className:"function",begin:"("+a+"[\\*&\\s]+)+"+m,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:w,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:i,keywords:w,relevance:0},{begin:m,returnBegin:!0,contains:[h],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[u,d]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:w,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,d,l,{begin:/\(/,end:/\)/,keywords:w,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,d,l]}]},l,n,e.C_BLOCK_COMMENT_MODE,f]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:w,illegal:"",keywords:w,contains:["self",l]},{begin:e.IDENT_RE+"::",keywords:w},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}}function Nmt(e){const t=["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],n=["public","private","protected","static","internal","protected","abstract","async","extern","override","unsafe","virtual","new","sealed","partial"],i=["default","false","null","true"],r=["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","scoped","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"],s=["add","alias","and","ascending","args","async","await","by","descending","dynamic","equals","file","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","record","remove","required","scoped","select","set","unmanaged","value|0","var","when","where","with","yield"],a={keyword:r.concat(s),built_in:t,literal:i},l=e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),c={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},u={className:"string",begin:/"""("*)(?!")(.|\n)*?"""\1/,relevance:1},d={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},f=e.inherit(d,{illegal:/\n/}),h={className:"subst",begin:/\{/,end:/\}/,keywords:a},m=e.inherit(h,{illegal:/\n/}),g={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},e.BACKSLASH_ESCAPE,m]},b={className:"string",begin:/\$@"/,end:'"',contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},h]},v=e.inherit(b,{illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},m]});h.contains=[b,g,d,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,c,e.C_BLOCK_COMMENT_MODE],m.contains=[v,g,f,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,c,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];const y={variants:[u,b,g,d,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},x={begin:"<",end:">",contains:[{beginKeywords:"in out"},l]},O=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",w={begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:a,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:""},{begin:""}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{keyword:"if else elif endif define undef warning error line region endregion pragma checksum"}},y,c,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},l,x,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[l,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[l,x,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+O+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:a,contains:[{beginKeywords:n.join(" "),relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,contains:[e.TITLE_MODE,x],relevance:0},{match:/\(\)/},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:a,relevance:0,contains:[y,c,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},w]}}const jmt=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),Rmt=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","optgroup","option","p","picture","q","quote","samp","section","select","source","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],Imt=["defs","g","marker","mask","pattern","svg","switch","symbol","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feFlood","feGaussianBlur","feImage","feMerge","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","linearGradient","radialGradient","stop","circle","ellipse","image","line","path","polygon","polyline","rect","text","use","textPath","tspan","foreignObject","clipPath"],Pmt=[...Rmt,...Imt],Dmt=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"].sort().reverse(),Mmt=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"].sort().reverse(),Lmt=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"].sort().reverse(),$mt=["accent-color","align-content","align-items","align-self","alignment-baseline","all","anchor-name","animation","animation-composition","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-range","animation-range-end","animation-range-start","animation-timeline","animation-timing-function","appearance","aspect-ratio","backdrop-filter","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-position-x","background-position-y","background-repeat","background-size","baseline-shift","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-end-end-radius","border-end-start-radius","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-start-end-radius","border-start-start-radius","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-align","box-decoration-break","box-direction","box-flex","box-flex-group","box-lines","box-ordinal-group","box-orient","box-pack","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","color-scheme","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","contain-intrinsic-block-size","contain-intrinsic-height","contain-intrinsic-inline-size","contain-intrinsic-size","contain-intrinsic-width","container","container-name","container-type","content","content-visibility","counter-increment","counter-reset","counter-set","cue","cue-after","cue-before","cursor","cx","cy","direction","display","dominant-baseline","empty-cells","enable-background","field-sizing","fill","fill-opacity","fill-rule","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flood-color","flood-opacity","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-optical-sizing","font-palette","font-size","font-size-adjust","font-smooth","font-smoothing","font-stretch","font-style","font-synthesis","font-synthesis-position","font-synthesis-small-caps","font-synthesis-style","font-synthesis-weight","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-emoji","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","forced-color-adjust","gap","glyph-orientation-horizontal","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphenate-character","hyphenate-limit-chars","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","initial-letter","initial-letter-align","inline-size","inset","inset-area","inset-block","inset-block-end","inset-block-start","inset-inline","inset-inline-end","inset-inline-start","isolation","justify-content","justify-items","justify-self","kerning","left","letter-spacing","lighting-color","line-break","line-height","line-height-step","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","margin-trim","marker","marker-end","marker-mid","marker-start","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","masonry-auto-flow","math-depth","math-shift","math-style","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","offset","offset-anchor","offset-distance","offset-path","offset-position","offset-rotate","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-anchor","overflow-block","overflow-clip-margin","overflow-inline","overflow-wrap","overflow-x","overflow-y","overlay","overscroll-behavior","overscroll-behavior-block","overscroll-behavior-inline","overscroll-behavior-x","overscroll-behavior-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","paint-order","pause","pause-after","pause-before","perspective","perspective-origin","place-content","place-items","place-self","pointer-events","position","position-anchor","position-visibility","print-color-adjust","quotes","r","resize","rest","rest-after","rest-before","right","rotate","row-gap","ruby-align","ruby-position","scale","scroll-behavior","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scroll-timeline","scroll-timeline-axis","scroll-timeline-name","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","shape-rendering","speak","speak-as","src","stop-color","stop-opacity","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","tab-size","table-layout","text-align","text-align-all","text-align-last","text-anchor","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-skip-ink","text-decoration-style","text-decoration-thickness","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-size-adjust","text-transform","text-underline-offset","text-underline-position","text-wrap","text-wrap-mode","text-wrap-style","timeline-scope","top","touch-action","transform","transform-box","transform-origin","transform-style","transition","transition-behavior","transition-delay","transition-duration","transition-property","transition-timing-function","translate","unicode-bidi","user-modify","user-select","vector-effect","vertical-align","view-timeline","view-timeline-axis","view-timeline-inset","view-timeline-name","view-transition-name","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","white-space-collapse","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","x","y","z-index","zoom"].sort().reverse();function Fmt(e){const t=e.regex,n=jmt(e),i={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},r="and or not only",s=/@-?\w[\w]*(-\w+)*/,a="[a-zA-Z-][a-zA-Z0-9_-]*",l=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[n.BLOCK_COMMENT,i,n.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\."+a,relevance:0},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+Mmt.join("|")+")"},{begin:":(:)?("+Lmt.join("|")+")"}]},n.CSS_VARIABLE,{className:"attribute",begin:"\\b("+$mt.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[n.BLOCK_COMMENT,n.HEXCOLOR,n.IMPORTANT,n.CSS_NUMBER_MODE,...l,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[...l,{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},n.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:s},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:r,attribute:Dmt.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...l,n.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+Pmt.join("|")+")\\b"}]}}function Bmt(e){const t=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:t.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:t.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}function Umt(e){const s={keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"],type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"],literal:["true","false","iota","nil"],built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"]};return{name:"Go",aliases:["golang"],keywords:s,illegal:"dke(e,t,n-1))}function zmt(e){const t=e.regex,n="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",i=n+dke("(?:<"+n+"~~~(?:\\s*,\\s*"+n+"~~~)*>)?",/~~~/g,2),c={keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed","yield","permits","goto","when"],literal:["false","true","null"],type:["char","boolean","long","float","int","byte","short","double"],built_in:["super","this"]},u={className:"meta",begin:"@"+n,contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},d={className:"params",begin:/\(/,end:/\)/,keywords:c,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:"Java",aliases:["jsp"],keywords:c,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{begin:/import java\.[a-z]+\./,keywords:"import",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:"string",contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,n],className:{1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{begin:[t.concat(/(?!else)/,n),/\s+/,n,/\s+/,/=(?!=)/],className:{1:"type",3:"variable",5:"operator"}},{begin:[/record/,/\s+/,n],className:{1:"keyword",3:"title.class"},contains:[d,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"new throw return else",relevance:0},{begin:["(?:"+i+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:"title.function"},keywords:c,contains:[{className:"params",begin:/\(/,end:/\)/,keywords:c,relevance:0,contains:[u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,eY,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},eY,u]}}const tY="[A-Za-z$_][0-9A-Za-z$_]*",Vmt=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends","using"],Hmt=["true","false","null","undefined","NaN","Infinity"],fke=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],hke=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],pke=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],qmt=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],Wmt=[].concat(pke,fke,hke);function mke(e){const t=e.regex,n=(M,{after:U})=>{const I="",end:""},s=/<[A-Za-z0-9\\._:-]+\s*\/>/,a={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(M,U)=>{const I=M[0].length+M.index,H=M.input[I];if(H==="<"||H===","){U.ignoreMatch();return}H===">"&&(n(M,{after:I})||U.ignoreMatch());let K;const Q=M.input.substring(I);if(K=Q.match(/^\s*=/)){U.ignoreMatch();return}if((K=Q.match(/^\s+extends\s+/))&&K.index===0){U.ignoreMatch();return}}},l={$pattern:tY,keyword:Vmt,literal:Hmt,built_in:Wmt,"variable.language":qmt},c="[0-9](_?[0-9])*",u=`\\.(${c})`,d="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",f={className:"number",variants:[{begin:`(\\b(${d})((${u})|\\.)?|(${u}))[eE][+-]?(${c})\\b`},{begin:`\\b(${d})\\b((${u})\\b|\\.)?|(${u})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},h={className:"subst",begin:"\\$\\{",end:"\\}",keywords:l,contains:[]},m={begin:".?html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"xml"}},g={begin:".?css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"css"}},b={begin:".?gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"graphql"}},v={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,h]},x={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:i+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},O=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,g,b,v,{match:/\$\d+/},f];h.contains=O.concat({begin:/\{/,end:/\}/,keywords:l,contains:["self"].concat(O)});const w=[].concat(x,h.contains),k=w.concat([{begin:/(\s*)\(/,end:/\)/,keywords:l,contains:["self"].concat(w)}]),S={className:"params",begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:k},E={variants:[{match:[/class/,/\s+/,i,/\s+/,/extends/,/\s+/,t.concat(i,"(",t.concat(/\./,i),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,i],scope:{1:"keyword",3:"title.class"}}]},C={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...fke,...hke]}},N={label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},_={variants:[{match:[/function/,/\s+/,i,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[S],illegal:/%/},j={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"};function A(M){return t.concat("(?!",M.join("|"),")")}const F={match:t.concat(/\b/,A([...pke,"super","import"].map(M=>`${M}\\s*\\(`)),i,t.lookahead(/\s*\(/)),className:"title.function",relevance:0},T={begin:t.concat(/\./,t.lookahead(t.concat(i,/(?![0-9A-Za-z$_(])/))),end:i,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},P={match:[/get|set/,/\s+/,i,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},S]},R="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",L={match:[/const|var|let/,/\s+/,i,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(R)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[S]};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:l,exports:{PARAMS_CONTAINS:k,CLASS_REFERENCE:C},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),N,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,g,b,v,x,{match:/\$\d+/},f,C,{scope:"attr",match:i+t.lookahead(":"),relevance:0},L,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[x,e.REGEXP_MODE,{className:"function",begin:R,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:k}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:r.begin,end:r.end},{match:s},{begin:a.begin,"on:begin":a.isTrulyOpeningTag,end:a.end}],subLanguage:"xml",contains:[{begin:a.begin,end:a.end,skip:!0,contains:["self"]}]}]},_,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[S,e.inherit(e.TITLE_MODE,{begin:i,className:"title.function"})]},{match:/\.\.\./,relevance:0},T,{match:"\\$"+i,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[S]},F,j,E,P,{match:/\$[(.]/}]}}function gke(e){const t={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},n={match:/[{}[\],:]/,className:"punctuation",relevance:0},i=["true","false","null"],r={scope:"literal",beginKeywords:i.join(" ")};return{name:"JSON",aliases:["jsonc"],keywords:{literal:i},contains:[t,n,e.QUOTE_STRING_MODE,r,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}var ry="[0-9](_*[0-9])*",_T=`\\.(${ry})`,NT="[0-9a-fA-F](_*[0-9a-fA-F])*",Gmt={className:"number",variants:[{begin:`(\\b(${ry})((${_T})|\\.)?|(${_T}))[eE][+-]?(${ry})[fFdD]?\\b`},{begin:`\\b(${ry})((${_T})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${_T})[fFdD]?\\b`},{begin:`\\b(${ry})[fFdD]\\b`},{begin:`\\b0[xX]((${NT})\\.?|(${NT})?\\.(${NT}))[pP][+-]?(${ry})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${NT})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};function Kmt(e){const t={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},n={className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},i={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"},r={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},s={className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},a={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[s,r]},{begin:"'",end:"'",illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,s,r]}]};r.contains.push(a);const l={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"},c={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(a,{className:"string"}),"self"]}]},u=Gmt,d=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),f={variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},h=f;return h.variants[1].contains=[f],f.variants[1].contains=[h],{name:"Kotlin",aliases:["kt","kts"],keywords:t,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,d,n,i,l,c,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:t,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:t,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[f,e.C_LINE_COMMENT_MODE,d],relevance:0},e.C_LINE_COMMENT_MODE,d,l,c,a,e.C_NUMBER_MODE]},d]},{begin:[/class|interface|trait/,/\s+/,e.UNDERSCORE_IDENT_RE],beginScope:{3:"title.class"},keywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,){\s]|$/,excludeBegin:!0,returnEnd:!0},l,c]},a,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:` -`},u]}}const Xmt=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),Ymt=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","optgroup","option","p","picture","q","quote","samp","section","select","source","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],Zmt=["defs","g","marker","mask","pattern","svg","switch","symbol","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feFlood","feGaussianBlur","feImage","feMerge","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","linearGradient","radialGradient","stop","circle","ellipse","image","line","path","polygon","polyline","rect","text","use","textPath","tspan","foreignObject","clipPath"],Jmt=[...Ymt,...Zmt],egt=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"].sort().reverse(),bke=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"].sort().reverse(),yke=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"].sort().reverse(),tgt=["accent-color","align-content","align-items","align-self","alignment-baseline","all","anchor-name","animation","animation-composition","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-range","animation-range-end","animation-range-start","animation-timeline","animation-timing-function","appearance","aspect-ratio","backdrop-filter","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-position-x","background-position-y","background-repeat","background-size","baseline-shift","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-end-end-radius","border-end-start-radius","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-start-end-radius","border-start-start-radius","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-align","box-decoration-break","box-direction","box-flex","box-flex-group","box-lines","box-ordinal-group","box-orient","box-pack","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","color-scheme","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","contain-intrinsic-block-size","contain-intrinsic-height","contain-intrinsic-inline-size","contain-intrinsic-size","contain-intrinsic-width","container","container-name","container-type","content","content-visibility","counter-increment","counter-reset","counter-set","cue","cue-after","cue-before","cursor","cx","cy","direction","display","dominant-baseline","empty-cells","enable-background","field-sizing","fill","fill-opacity","fill-rule","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flood-color","flood-opacity","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-optical-sizing","font-palette","font-size","font-size-adjust","font-smooth","font-smoothing","font-stretch","font-style","font-synthesis","font-synthesis-position","font-synthesis-small-caps","font-synthesis-style","font-synthesis-weight","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-emoji","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","forced-color-adjust","gap","glyph-orientation-horizontal","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphenate-character","hyphenate-limit-chars","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","initial-letter","initial-letter-align","inline-size","inset","inset-area","inset-block","inset-block-end","inset-block-start","inset-inline","inset-inline-end","inset-inline-start","isolation","justify-content","justify-items","justify-self","kerning","left","letter-spacing","lighting-color","line-break","line-height","line-height-step","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","margin-trim","marker","marker-end","marker-mid","marker-start","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","masonry-auto-flow","math-depth","math-shift","math-style","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","offset","offset-anchor","offset-distance","offset-path","offset-position","offset-rotate","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-anchor","overflow-block","overflow-clip-margin","overflow-inline","overflow-wrap","overflow-x","overflow-y","overlay","overscroll-behavior","overscroll-behavior-block","overscroll-behavior-inline","overscroll-behavior-x","overscroll-behavior-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","paint-order","pause","pause-after","pause-before","perspective","perspective-origin","place-content","place-items","place-self","pointer-events","position","position-anchor","position-visibility","print-color-adjust","quotes","r","resize","rest","rest-after","rest-before","right","rotate","row-gap","ruby-align","ruby-position","scale","scroll-behavior","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scroll-timeline","scroll-timeline-axis","scroll-timeline-name","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","shape-rendering","speak","speak-as","src","stop-color","stop-opacity","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","tab-size","table-layout","text-align","text-align-all","text-align-last","text-anchor","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-skip-ink","text-decoration-style","text-decoration-thickness","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-size-adjust","text-transform","text-underline-offset","text-underline-position","text-wrap","text-wrap-mode","text-wrap-style","timeline-scope","top","touch-action","transform","transform-box","transform-origin","transform-style","transition","transition-behavior","transition-delay","transition-duration","transition-property","transition-timing-function","translate","unicode-bidi","user-modify","user-select","vector-effect","vertical-align","view-timeline","view-timeline-axis","view-timeline-inset","view-timeline-name","view-transition-name","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","white-space-collapse","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","x","y","z-index","zoom"].sort().reverse(),ngt=bke.concat(yke).sort().reverse();function igt(e){const t=Xmt(e),n=ngt,i="and or not only",r="[\\w-]+",s="("+r+"|@\\{"+r+"\\})",a=[],l=[],c=function(O){return{className:"string",begin:"~?"+O+".*?"+O}},u=function(O,w,k){return{className:O,begin:w,relevance:k}},d={$pattern:/[a-z-]+/,keyword:i,attribute:egt.join(" ")},f={begin:"\\(",end:"\\)",contains:l,keywords:d,relevance:0};l.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,c("'"),c('"'),t.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},t.HEXCOLOR,f,u("variable","@@?"+r,10),u("variable","@\\{"+r+"\\}"),u("built_in","~?`[^`]*?`"),{className:"attribute",begin:r+"\\s*:",end:":",returnBegin:!0,excludeEnd:!0},t.IMPORTANT,{beginKeywords:"and not"},t.FUNCTION_DISPATCH);const h=l.concat({begin:/\{/,end:/\}/,contains:a}),m={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(l)},g={begin:s+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+tgt.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:l}}]},b={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",keywords:d,returnEnd:!0,contains:l,relevance:0}},v={className:"variable",variants:[{begin:"@"+r+"\\s*:",relevance:15},{begin:"@"+r}],starts:{end:"[;}]",returnEnd:!0,contains:h}},y={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:s,end:/\{/}],returnBegin:!0,returnEnd:!0,illegal:`[<='$"]`,relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,m,u("keyword","all\\b"),u("variable","@\\{"+r+"\\}"),{begin:"\\b("+Jmt.join("|")+")\\b",className:"selector-tag"},t.CSS_NUMBER_MODE,u("selector-tag",s,0),u("selector-id","#"+s),u("selector-class","\\."+s,0),u("selector-tag","&",0),t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",begin:":("+bke.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+yke.join("|")+")"},{begin:/\(/,end:/\)/,relevance:0,contains:h},{begin:"!important"},t.FUNCTION_DISPATCH]},x={begin:r+`:(:)?(${n.join("|")})`,returnBegin:!0,contains:[y]};return a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,b,v,x,g,y,m,t.FUNCTION_DISPATCH),{name:"Less",case_insensitive:!0,illegal:`[=>'/<($"]`,contains:a}}function rgt(e){const t="\\[=*\\[",n="\\]=*\\]",i={begin:t,end:n,contains:["self"]},r=[e.COMMENT("--(?!"+t+")","$"),e.COMMENT("--"+t,n,{contains:[i],relevance:10})];return{name:"Lua",aliases:["pluto"],keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:r.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[e.inherit(e.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:r}].concat(r)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:t,end:n,contains:[i],relevance:5}])}}function vke(e){const t={className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%",subLanguage:"xml",relevance:0},i={begin:"^[-\\*]{3,}",end:"$"},r={className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},s={className:"bullet",begin:"^[ ]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},a={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]},l=/[A-Za-z][A-Za-z0-9+.-]*/,c={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:t.concat(/\[.+?\]\(/,l,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},u={className:"strong",contains:[],variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]},d={className:"emphasis",contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{begin:/_(?![_\s])/,end:/_/,relevance:0}]},f=e.inherit(u,{contains:[]}),h=e.inherit(d,{contains:[]});u.contains.push(h),d.contains.push(f);let m=[n,c];return[u,d,f,h].forEach(y=>{y.contains=y.contains.concat(m)}),m=m.concat(u,d),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:m},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:m}]}]},n,s,u,d,{className:"quote",begin:"^>\\s+",contains:m,end:"$"},r,i,c,a,{scope:"literal",match:/&([a-zA-Z0-9]+|#[0-9]{1,7}|#[Xx][0-9a-fA-F]{1,6});/}]}}function sgt(e){const t={className:"built_in",begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},n=/[a-zA-Z@][a-zA-Z0-9_]*/,l={"variable.language":["this","super"],$pattern:n,keyword:["while","export","sizeof","typedef","const","struct","for","union","volatile","static","mutable","if","do","return","goto","enum","else","break","extern","asm","case","default","register","explicit","typename","switch","continue","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"],literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"],built_in:["dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],type:["int","float","char","unsigned","signed","short","long","double","wchar_t","unichar","void","bool","BOOL","id|0","_Bool"]},c={$pattern:n,keyword:["@interface","@class","@protocol","@implementation"]};return{name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:l,illegal:"/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+c.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:c,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}function agt(e){const t=e.regex,n=["abs","accept","alarm","and","atan2","bind","binmode","bless","break","caller","chdir","chmod","chomp","chop","chown","chr","chroot","class","close","closedir","connect","continue","cos","crypt","dbmclose","dbmopen","defined","delete","die","do","dump","each","else","elsif","endgrent","endhostent","endnetent","endprotoent","endpwent","endservent","eof","eval","exec","exists","exit","exp","fcntl","field","fileno","flock","for","foreach","fork","format","formline","getc","getgrent","getgrgid","getgrnam","gethostbyaddr","gethostbyname","gethostent","getlogin","getnetbyaddr","getnetbyname","getnetent","getpeername","getpgrp","getpriority","getprotobyname","getprotobynumber","getprotoent","getpwent","getpwnam","getpwuid","getservbyname","getservbyport","getservent","getsockname","getsockopt","given","glob","gmtime","goto","grep","gt","hex","if","index","int","ioctl","join","keys","kill","last","lc","lcfirst","length","link","listen","local","localtime","log","lstat","lt","ma","map","method","mkdir","msgctl","msgget","msgrcv","msgsnd","my","ne","next","no","not","oct","open","opendir","or","ord","our","pack","package","pipe","pop","pos","print","printf","prototype","push","q|0","qq","quotemeta","qw","qx","rand","read","readdir","readline","readlink","readpipe","recv","redo","ref","rename","require","reset","return","reverse","rewinddir","rindex","rmdir","say","scalar","seek","seekdir","select","semctl","semget","semop","send","setgrent","sethostent","setnetent","setpgrp","setpriority","setprotoent","setpwent","setservent","setsockopt","shift","shmctl","shmget","shmread","shmwrite","shutdown","sin","sleep","socket","socketpair","sort","splice","split","sprintf","sqrt","srand","stat","state","study","sub","substr","symlink","syscall","sysopen","sysread","sysseek","system","syswrite","tell","telldir","tie","tied","time","times","tr","truncate","uc","ucfirst","umask","undef","unless","unlink","unpack","unshift","untie","until","use","utime","values","vec","wait","waitpid","wantarray","warn","when","while","write","x|0","xor","y|0"],i=/[dualxmsipngr]{0,12}/,r={$pattern:/[\w.]+/,keyword:n.join(" ")},s={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:r},a={begin:/->\{/,end:/\}/},l={scope:"attr",match:/\s+:\s*\w+(\s*\(.*?\))?/},c={scope:"variable",variants:[{begin:/\$\d/},{begin:t.concat(/[$%@](?!")(\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")},{begin:/[$%@](?!")[^\s\w{=]|\$=/,relevance:0}],contains:[l]},u={className:"number",variants:[{match:/0?\.[0-9][0-9_]+\b/},{match:/\bv?(0|[1-9][0-9_]*(\.[0-9_]+)?|[1-9][0-9_]*)\b/},{match:/\b0[0-7][0-7_]*\b/},{match:/\b0x[0-9a-fA-F][0-9a-fA-F_]*\b/},{match:/\b0b[0-1][0-1_]*\b/}],relevance:0},d=[e.BACKSLASH_ESCAPE,s,c],f=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],h=(b,v,y="\\1")=>{const x=y==="\\1"?y:t.concat(y,v);return t.concat(t.concat("(?:",b,")"),v,/(?:\\.|[^\\\/])*?/,x,/(?:\\.|[^\\\/])*?/,y,i)},m=(b,v,y)=>t.concat(t.concat("(?:",b,")"),v,/(?:\\.|[^\\\/])*?/,y,i),g=[c,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),a,{className:"string",contains:d,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:"-?\\w+\\s*=>",relevance:0}]},u,{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{begin:h("s|tr|y",t.either(...f,{capture:!0}))},{begin:h("s|tr|y","\\(","\\)")},{begin:h("s|tr|y","\\[","\\]")},{begin:h("s|tr|y","\\{","\\}")}],relevance:2},{className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:m("(?:m|qr)?",/\//,/\//)},{begin:m("m|qr",t.either(...f,{capture:!0}),/\1/)},{begin:m("m|qr",/\(/,/\)/)},{begin:m("m|qr",/\[/,/\]/)},{begin:m("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub method",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE,l]},{className:"class",beginKeywords:"class",end:"[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE,l,u]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return s.contains=g,a.contains=g,{name:"Perl",aliases:["pl","pm"],keywords:r,contains:g}}function ogt(e){const t=e.regex,n=/(?![A-Za-z0-9])(?![$])/,i=t.concat(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/,n),r=t.concat(/(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/,n),s=t.concat(/[A-Z]+/,n),a={scope:"variable",match:"\\$+"+i},l={scope:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?=/},{begin:/<\?/,relevance:.1},{begin:/\?>/}]},c={scope:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},u=e.inherit(e.APOS_STRING_MODE,{illegal:null}),d=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(c)}),f={begin:/<<<[ \t]*(?:(\w+)|"(\w+)")\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(c),"on:begin":(T,P)=>{P.data._beginMatch=T[1]||T[2]},"on:end":(T,P)=>{P.data._beginMatch!==T[1]&&P.ignoreMatch()}},h=e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*'(\w+)'\n/,end:/[ \t]*(\w+)\b/}),m=`[ -]`,g={scope:"string",variants:[d,u,f,h]},b={scope:"number",variants:[{begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{begin:"\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b"},{begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"}],relevance:0},v=["false","null","true"],y=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__LINE__","__METHOD__","__NAMESPACE__","__TRAIT__","die","echo","exit","include","include_once","print","require","require_once","array","abstract","and","as","binary","bool","boolean","break","callable","case","catch","class","clone","const","continue","declare","default","do","double","else","elseif","empty","enddeclare","endfor","endforeach","endif","endswitch","endwhile","enum","eval","extends","final","finally","float","for","foreach","from","global","goto","if","implements","instanceof","insteadof","int","integer","interface","isset","iterable","list","match|0","mixed","new","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],x=["Error|0","AppendIterator","ArgumentCountError","ArithmeticError","ArrayIterator","ArrayObject","AssertionError","BadFunctionCallException","BadMethodCallException","CachingIterator","CallbackFilterIterator","CompileError","Countable","DirectoryIterator","DivisionByZeroError","DomainException","EmptyIterator","ErrorException","Exception","FilesystemIterator","FilterIterator","GlobIterator","InfiniteIterator","InvalidArgumentException","IteratorIterator","LengthException","LimitIterator","LogicException","MultipleIterator","NoRewindIterator","OutOfBoundsException","OutOfRangeException","OuterIterator","OverflowException","ParentIterator","ParseError","RangeException","RecursiveArrayIterator","RecursiveCachingIterator","RecursiveCallbackFilterIterator","RecursiveDirectoryIterator","RecursiveFilterIterator","RecursiveIterator","RecursiveIteratorIterator","RecursiveRegexIterator","RecursiveTreeIterator","RegexIterator","RuntimeException","SeekableIterator","SplDoublyLinkedList","SplFileInfo","SplFileObject","SplFixedArray","SplHeap","SplMaxHeap","SplMinHeap","SplObjectStorage","SplObserver","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],w={keyword:y,literal:(T=>{const P=[];return T.forEach(R=>{P.push(R),R.toLowerCase()===R?P.push(R.toUpperCase()):P.push(R.toLowerCase())}),P})(v),built_in:x},k=T=>T.map(P=>P.replace(/\|\d+$/,"")),S={variants:[{match:[/new/,t.concat(m,"+"),t.concat("(?!",k(x).join("\\b|"),"\\b)"),r],scope:{1:"keyword",4:"title.class"}}]},E=t.concat(i,"\\b(?!\\()"),C={variants:[{match:[t.concat(/::/,t.lookahead(/(?!class\b)/)),E],scope:{2:"variable.constant"}},{match:[/::/,/class/],scope:{2:"variable.language"}},{match:[r,t.concat(/::/,t.lookahead(/(?!class\b)/)),E],scope:{1:"title.class",3:"variable.constant"}},{match:[r,t.concat("::",t.lookahead(/(?!class\b)/))],scope:{1:"title.class"}},{match:[r,/::/,/class/],scope:{1:"title.class",3:"variable.language"}}]},N={scope:"attr",match:t.concat(i,t.lookahead(":"),t.lookahead(/(?!::)/))},_={relevance:0,begin:/\(/,end:/\)/,keywords:w,contains:[N,a,C,e.C_BLOCK_COMMENT_MODE,g,b,S]},j={relevance:0,match:[/\b/,t.concat("(?!fn\\b|function\\b|",k(y).join("\\b|"),"|",k(x).join("\\b|"),"\\b)"),i,t.concat(m,"*"),t.lookahead(/(?=\()/)],scope:{3:"title.function.invoke"},contains:[_]};_.contains.push(j);const A=[N,C,e.C_BLOCK_COMMENT_MODE,g,b,S],F={begin:t.concat(/#\[\s*\\?/,t.either(r,s)),beginScope:"meta",end:/]/,endScope:"meta",keywords:{literal:v,keyword:["new","array"]},contains:[{begin:/\[/,end:/]/,keywords:{literal:v,keyword:["new","array"]},contains:["self",...A]},...A,{scope:"meta",variants:[{match:r},{match:s}]}]};return{case_insensitive:!1,keywords:w,contains:[F,e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{contains:[{scope:"doctag",match:"@[A-Za-z]+"}]}),{match:/__halt_compiler\(\);/,keywords:"__halt_compiler",starts:{scope:"comment",end:e.MATCH_NOTHING_RE,contains:[{match:/\?>/,scope:"meta",endsParent:!0}]}},l,{scope:"variable.language",match:/\$this\b/},a,j,C,{match:[/const/,/\s/,i],scope:{1:"keyword",3:"variable.constant"}},S,{scope:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{scope:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:w,contains:["self",F,a,C,e.C_BLOCK_COMMENT_MODE,g,b]}]},{scope:"class",variants:[{beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:"title.class"})]},{beginKeywords:"use",relevance:0,end:";",contains:[{match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},g,b]}}function lgt(e){return{name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}function cgt(e){return{name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}}function wke(e){const t=e.regex,n=new RegExp("[\\p{XID_Start}_]\\p{XID_Continue}*","u"),i=["and","as","assert","async","await","break","case","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","match","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],l={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:i,built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]},c={className:"meta",begin:/^(>>>|\.\.\.) /},u={className:"subst",begin:/\{/,end:/\}/,keywords:l,illegal:/#/},d={begin:/\{\{/,relevance:0},f={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,c],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,c],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,c,d,u]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,c,d,u]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,d,u]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,d,u]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},h="[0-9](_?[0-9])*",m=`(\\b(${h}))?\\.(${h})|\\b(${h})\\.`,g=`\\b|${i.join("|")}`,b={className:"number",relevance:0,variants:[{begin:`(\\b(${h})|(${m}))[eE][+-]?(${h})[jJ]?(?=${g})`},{begin:`(${m})[jJ]?`},{begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${g})`},{begin:`\\b0[bB](_?[01])+[lL]?(?=${g})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${g})`},{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${g})`},{begin:`\\b(${h})[jJ](?=${g})`}]},v={className:"comment",begin:t.lookahead(/# type:/),end:/$/,keywords:l,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},y={className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:["self",c,b,f,e.HASH_COMMENT_MODE]}]};return u.contains=[f,b,c],{name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:l,illegal:/(<\/|\?)|=>/,contains:[c,b,{scope:"variable.language",match:/\bself\b/},{beginKeywords:"if",relevance:0},{match:/\bor\b/,scope:"keyword"},f,v,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,n],scope:{1:"keyword",3:"title.function"},contains:[y]},{variants:[{match:[/\bclass/,/\s+/,n,/\s*/,/\(\s*/,n,/\s*\)/]},{match:[/\bclass/,/\s+/,n]}],scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[b,y,f]}]}}function ugt(e){return{aliases:["pycon"],contains:[{className:"meta.prompt",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}}function dgt(e){const t=e.regex,n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,i=t.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),r=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,s=t.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/);return{name:"R",keywords:{$pattern:n,keyword:"function if in break next repeat else for while",literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"},contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/,starts:{end:t.lookahead(t.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{scope:"variable",variants:[{match:n},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{1:"operator",2:"number"},match:[r,i]},{scope:{1:"operator",2:"number"},match:[/%[^%]*%/,i]},{scope:{1:"punctuation",2:"number"},match:[s,i]},{scope:{2:"number"},match:[/[^a-zA-Z0-9._]|^/,i]}]},{scope:{3:"operator"},match:[n,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:r},{match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:s},{begin:"`",end:"`",contains:[{begin:/\\./}]}]}}function fgt(e){const t=e.regex,n="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",i=t.either(/\b([A-Z]+[a-z0-9]+)+/,/\b([A-Z]+[a-z0-9]+)+[A-Z]+/),r=t.concat(i,/(::\w+)*/),a={"variable.constant":["__FILE__","__LINE__","__ENCODING__"],"variable.language":["self","super"],keyword:["alias","and","begin","BEGIN","break","case","class","defined","do","else","elsif","end","END","ensure","for","if","in","module","next","not","or","redo","require","rescue","retry","return","then","undef","unless","until","when","while","yield",...["include","extend","prepend","public","private","protected","raise","throw"]],built_in:["proc","lambda","attr_accessor","attr_reader","attr_writer","define_method","private_constant","module_function"],literal:["true","false","nil"]},l={className:"doctag",begin:"@[A-Za-z]+"},c={begin:"#<",end:">"},u=[e.COMMENT("#","$",{contains:[l]}),e.COMMENT("^=begin","^=end",{contains:[l],relevance:10}),e.COMMENT("^__END__",e.MATCH_NOTHING_RE)],d={className:"subst",begin:/#\{/,end:/\}/,keywords:a},f={className:"string",contains:[e.BACKSLASH_ESCAPE,d],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:t.concat(/<<[-~]?'?/,t.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,d]})]}]},h="[1-9](_?[0-9])*|0",m="[0-9](_?[0-9])*",g={className:"number",relevance:0,variants:[{begin:`\\b(${h})(\\.(${m}))?([eE][+-]?(${m})|r)?i?\\b`},{begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{begin:"\\b0(_?[0-7])+r?i?\\b"}]},b={variants:[{match:/\(\)/},{className:"params",begin:/\(/,end:/(?=\))/,excludeBegin:!0,endsParent:!0,keywords:a}]},S=[f,{variants:[{match:[/class\s+/,r,/\s+<\s+/,r]},{match:[/\b(class|module)\s+/,r]}],scope:{2:"title.class",4:"title.class.inherited"},keywords:a},{match:[/(include|extend)\s+/,r],scope:{2:"title.class"},keywords:a},{relevance:0,match:[r,/\.new[. (]/],scope:{1:"title.class"}},{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},{relevance:0,match:i,scope:"title.class"},{match:[/def/,/\s+/,n],scope:{1:"keyword",3:"title.function"},contains:[b]},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[f,{begin:n}],relevance:0},g,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{className:"params",begin:/\|(?!=)/,end:/\|/,excludeBegin:!0,excludeEnd:!0,relevance:0,keywords:a},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,d],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(c,u),relevance:0}].concat(c,u);d.contains=S,b.contains=S;const _=[{begin:/^\s*=>/,starts:{end:"$",contains:S}},{className:"meta.prompt",begin:"^("+"[>?]>"+"|"+"[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]"+"|"+"(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>"+")(?=[ ])",starts:{end:"$",keywords:a,contains:S}}];return u.unshift(c),{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:a,illegal:/\/\*/,contains:[e.SHEBANG({binary:"ruby"})].concat(_).concat(u).concat(S)}}function hgt(e){const t=e.regex,n=/(r#)?/,i=t.concat(n,e.UNDERSCORE_IDENT_RE),r=t.concat(n,e.IDENT_RE),s={className:"title.function.invoke",relevance:0,begin:t.concat(/\b/,/(?!let|for|while|if|else|match\b)/,r,t.lookahead(/\s*\(/))},a="([ui](8|16|32|64|128|size)|f(32|64))?",l=["abstract","as","async","await","become","box","break","const","continue","crate","do","dyn","else","enum","extern","false","final","fn","for","if","impl","in","let","loop","macro","match","mod","move","mut","override","priv","pub","ref","return","self","Self","static","struct","super","trait","true","try","type","typeof","union","unsafe","unsized","use","virtual","where","while","yield"],c=["true","false","Some","None","Ok","Err"],u=["drop ","Copy","Send","Sized","Sync","Drop","Fn","FnMut","FnOnce","ToOwned","Clone","Debug","PartialEq","PartialOrd","Eq","Ord","AsRef","AsMut","Into","From","Default","Iterator","Extend","IntoIterator","DoubleEndedIterator","ExactSizeIterator","SliceConcatExt","ToString","assert!","assert_eq!","bitflags!","bytes!","cfg!","col!","concat!","concat_idents!","debug_assert!","debug_assert_eq!","env!","eprintln!","panic!","file!","format!","format_args!","include_bytes!","include_str!","line!","local_data_key!","module_path!","option_env!","print!","println!","select!","stringify!","try!","unimplemented!","unreachable!","vec!","write!","writeln!","macro_rules!","assert_ne!","debug_assert_ne!"],d=["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"];return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",type:d,keyword:l,literal:c,built_in:u},illegal:""},s]}}const pgt=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),mgt=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","optgroup","option","p","picture","q","quote","samp","section","select","source","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],ggt=["defs","g","marker","mask","pattern","svg","switch","symbol","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feFlood","feGaussianBlur","feImage","feMerge","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","linearGradient","radialGradient","stop","circle","ellipse","image","line","path","polygon","polyline","rect","text","use","textPath","tspan","foreignObject","clipPath"],bgt=[...mgt,...ggt],ygt=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"].sort().reverse(),vgt=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"].sort().reverse(),xgt=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"].sort().reverse(),wgt=["accent-color","align-content","align-items","align-self","alignment-baseline","all","anchor-name","animation","animation-composition","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-range","animation-range-end","animation-range-start","animation-timeline","animation-timing-function","appearance","aspect-ratio","backdrop-filter","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-position-x","background-position-y","background-repeat","background-size","baseline-shift","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-end-end-radius","border-end-start-radius","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-start-end-radius","border-start-start-radius","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-align","box-decoration-break","box-direction","box-flex","box-flex-group","box-lines","box-ordinal-group","box-orient","box-pack","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","color-scheme","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","contain-intrinsic-block-size","contain-intrinsic-height","contain-intrinsic-inline-size","contain-intrinsic-size","contain-intrinsic-width","container","container-name","container-type","content","content-visibility","counter-increment","counter-reset","counter-set","cue","cue-after","cue-before","cursor","cx","cy","direction","display","dominant-baseline","empty-cells","enable-background","field-sizing","fill","fill-opacity","fill-rule","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flood-color","flood-opacity","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-optical-sizing","font-palette","font-size","font-size-adjust","font-smooth","font-smoothing","font-stretch","font-style","font-synthesis","font-synthesis-position","font-synthesis-small-caps","font-synthesis-style","font-synthesis-weight","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-emoji","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","forced-color-adjust","gap","glyph-orientation-horizontal","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphenate-character","hyphenate-limit-chars","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","initial-letter","initial-letter-align","inline-size","inset","inset-area","inset-block","inset-block-end","inset-block-start","inset-inline","inset-inline-end","inset-inline-start","isolation","justify-content","justify-items","justify-self","kerning","left","letter-spacing","lighting-color","line-break","line-height","line-height-step","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","margin-trim","marker","marker-end","marker-mid","marker-start","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","masonry-auto-flow","math-depth","math-shift","math-style","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","offset","offset-anchor","offset-distance","offset-path","offset-position","offset-rotate","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-anchor","overflow-block","overflow-clip-margin","overflow-inline","overflow-wrap","overflow-x","overflow-y","overlay","overscroll-behavior","overscroll-behavior-block","overscroll-behavior-inline","overscroll-behavior-x","overscroll-behavior-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","paint-order","pause","pause-after","pause-before","perspective","perspective-origin","place-content","place-items","place-self","pointer-events","position","position-anchor","position-visibility","print-color-adjust","quotes","r","resize","rest","rest-after","rest-before","right","rotate","row-gap","ruby-align","ruby-position","scale","scroll-behavior","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scroll-timeline","scroll-timeline-axis","scroll-timeline-name","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","shape-rendering","speak","speak-as","src","stop-color","stop-opacity","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","tab-size","table-layout","text-align","text-align-all","text-align-last","text-anchor","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-skip-ink","text-decoration-style","text-decoration-thickness","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-size-adjust","text-transform","text-underline-offset","text-underline-position","text-wrap","text-wrap-mode","text-wrap-style","timeline-scope","top","touch-action","transform","transform-box","transform-origin","transform-style","transition","transition-behavior","transition-delay","transition-duration","transition-property","transition-timing-function","translate","unicode-bidi","user-modify","user-select","vector-effect","vertical-align","view-timeline","view-timeline-axis","view-timeline-inset","view-timeline-name","view-transition-name","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","white-space-collapse","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","x","y","z-index","zoom"].sort().reverse();function Ogt(e){const t=pgt(e),n=xgt,i=vgt,r="@[a-z-]+",s="and or not only",l={className:"variable",begin:"(\\$"+"[a-zA-Z-][a-zA-Z0-9_-]*"+")\\b",relevance:0};return{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.CSS_NUMBER_MODE,{className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",begin:"\\b("+bgt.join("|")+")\\b",relevance:0},{className:"selector-pseudo",begin:":("+i.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+n.join("|")+")"},l,{begin:/\(/,end:/\)/,contains:[t.CSS_NUMBER_MODE]},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+wgt.join("|")+")\\b"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:/:/,end:/[;}{]/,relevance:0,contains:[t.BLOCK_COMMENT,l,t.HEXCOLOR,t.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT,t.FUNCTION_DISPATCH]},{begin:"@(page|font-face)",keywords:{$pattern:r,keyword:"@page @font-face"}},{begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:s,attribute:ygt.join(" ")},contains:[{begin:r,className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"},l,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,t.CSS_NUMBER_MODE]},t.FUNCTION_DISPATCH]}}function Sgt(e){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta.prompt",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}function kgt(e){const t=e.regex,n=e.COMMENT("--","$"),i={scope:"string",variants:[{begin:/'/,end:/'/,contains:[{match:/''/}]}]},r={begin:/"/,end:/"/,contains:[{match:/""/}]},s=["true","false","unknown"],a=["double precision","large object","with timezone","without timezone"],l=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],c=["add","asc","collation","desc","final","first","last","view"],u=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year"],d=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],f=["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"],h=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],m=d,g=[...u,...c].filter(k=>!d.includes(k)),b={scope:"variable",match:/@[a-z0-9][a-z0-9_]*/},v={scope:"operator",match:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0},y={match:t.concat(/\b/,t.either(...m),/\s*\(/),relevance:0,keywords:{built_in:m}};function x(k){return t.concat(/\b/,t.either(...k.map(S=>S.replace(/\s+/,"\\s+"))),/\b/)}const O={scope:"keyword",match:x(h),relevance:0};function w(k,{exceptions:S,when:E}={}){const C=E;return S=S||[],k.map(N=>N.match(/\|\d+$/)||S.includes(N)?N:C(N)?`${N}|0`:N)}return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,keyword:w(g,{when:k=>k.length<3}),literal:s,type:l,built_in:f},contains:[{scope:"type",match:x(a)},O,y,b,i,r,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,v]}}function Oke(e){return e?typeof e=="string"?e:e.source:null}function q1(e){return gr("(?=",e,")")}function gr(...e){return e.map(n=>Oke(n)).join("")}function Egt(e){const t=e[e.length-1];return typeof t=="object"&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function Io(...e){return"("+(Egt(e).capture?"":"?:")+e.map(i=>Oke(i)).join("|")+")"}const eU=e=>gr(/\b/,e,/\w$/.test(e)?/\b/:/\B/),Cgt=["Protocol","Type"].map(eU),nY=["init","self"].map(eU),Tgt=["Any","Self"],DM=["actor","any","associatedtype","async","await",/as\?/,/as!/,"as","borrowing","break","case","catch","class","consume","consuming","continue","convenience","copy","default","defer","deinit","didSet","distributed","do","dynamic","each","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","macro","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","package","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],iY=["false","nil","true"],Agt=["assignment","associativity","higherThan","left","lowerThan","none","right"],_gt=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warning"],rY=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],Ske=Io(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),kke=Io(Ske,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),MM=gr(Ske,kke,"*"),Eke=Io(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),hN=Io(Eke,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),dd=gr(Eke,hN,"*"),jT=gr(/[A-Z]/,hN,"*"),Ngt=["attached","autoclosure",gr(/convention\(/,Io("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","freestanding","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",gr(/objc\(/,dd,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","Sendable","testable","UIApplicationMain","unchecked","unknown","usableFromInline","warn_unqualified_access"],jgt=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function Rgt(e){const t={match:/\s+/,relevance:0},n=e.COMMENT("/\\*","\\*/",{contains:["self"]}),i=[e.C_LINE_COMMENT_MODE,n],r={match:[/\./,Io(...Cgt,...nY)],className:{2:"keyword"}},s={match:gr(/\./,Io(...DM)),relevance:0},a=DM.filter(ke=>typeof ke=="string").concat(["_|0"]),l=DM.filter(ke=>typeof ke!="string").concat(Tgt).map(eU),c={variants:[{className:"keyword",match:Io(...l,...nY)}]},u={$pattern:Io(/\b\w+/,/#\w+/),keyword:a.concat(_gt),literal:iY},d=[r,s,c],f={match:gr(/\./,Io(...rY)),relevance:0},h={className:"built_in",match:gr(/\b/,Io(...rY),/(?=\()/)},m=[f,h],g={match:/->/,relevance:0},b={className:"operator",relevance:0,variants:[{match:MM},{match:`\\.(\\.|${kke})+`}]},v=[g,b],y="([0-9]_*)+",x="([0-9a-fA-F]_*)+",O={className:"number",relevance:0,variants:[{match:`\\b(${y})(\\.(${y}))?([eE][+-]?(${y}))?\\b`},{match:`\\b0x(${x})(\\.(${x}))?([pP][+-]?(${y}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},w=(ke="")=>({className:"subst",variants:[{match:gr(/\\/,ke,/[0\\tnr"']/)},{match:gr(/\\/,ke,/u\{[0-9a-fA-F]{1,8}\}/)}]}),k=(ke="")=>({className:"subst",match:gr(/\\/,ke,/[\t ]*(?:[\r\n]|\r\n)/)}),S=(ke="")=>({className:"subst",label:"interpol",begin:gr(/\\/,ke,/\(/),end:/\)/}),E=(ke="")=>({begin:gr(ke,/"""/),end:gr(/"""/,ke),contains:[w(ke),k(ke),S(ke)]}),C=(ke="")=>({begin:gr(ke,/"/),end:gr(/"/,ke),contains:[w(ke),S(ke)]}),N={className:"string",variants:[E(),E("#"),E("##"),E("###"),C(),C("#"),C("##"),C("###")]},_=[e.BACKSLASH_ESCAPE,{begin:/\[/,end:/\]/,relevance:0,contains:[e.BACKSLASH_ESCAPE]}],j={begin:/\/[^\s](?=[^/\n]*\/)/,end:/\//,contains:_},A=ke=>{const st=gr(ke,/\//),Le=gr(/\//,ke);return{begin:st,end:Le,contains:[..._,{scope:"comment",begin:`#(?!.*${Le})`,end:/$/}]}},F={scope:"regexp",variants:[A("###"),A("##"),A("#"),j]},T={match:gr(/`/,dd,/`/)},P={className:"variable",match:/\$\d+/},R={className:"variable",match:`\\$${hN}+`},L=[T,P,R],M={match:/(@|#(un)?)available/,scope:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:jgt,contains:[...v,O,N]}]}},U={scope:"keyword",match:gr(/@/,Io(...Ngt),q1(Io(/\(/,/\s+/)))},I={scope:"meta",match:gr(/@/,dd)},H=[M,U,I],K={match:q1(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:gr(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,hN,"+")},{className:"type",match:jT,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:gr(/\s+&\s+/,q1(jT)),relevance:0}]},Q={begin://,keywords:u,contains:[...i,...d,...H,g,K]};K.contains.push(Q);const q={match:gr(dd,/\s*:/),keywords:"_|0",relevance:0},B={begin:/\(/,end:/\)/,relevance:0,keywords:u,contains:["self",q,...i,F,...d,...m,...v,O,N,...L,...H,K]},ee={begin://,keywords:"repeat each",contains:[...i,K]},le={begin:Io(q1(gr(dd,/\s*:/)),q1(gr(dd,/\s+/,dd,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:dd}]},se={begin:/\(/,end:/\)/,keywords:u,contains:[le,...i,...d,...v,O,N,...H,K,B],endsParent:!0,illegal:/["']/},re={match:[/(func|macro)/,/\s+/,Io(T.match,dd,MM)],className:{1:"keyword",3:"title.function"},contains:[ee,se,t],illegal:[/\[/,/%/]},ge={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[ee,se,t],illegal:/\[|%/},W={match:[/operator/,/\s+/,MM],className:{1:"keyword",3:"title"}},X={begin:[/precedencegroup/,/\s+/,jT],className:{1:"keyword",3:"title"},contains:[K],keywords:[...Agt,...iY],end:/}/},ae={match:[/class\b/,/\s+/,/func\b/,/\s+/,/\b[A-Za-z_][A-Za-z0-9_]*\b/],scope:{1:"keyword",3:"keyword",5:"title.function"}},ue={match:[/class\b/,/\s+/,/var\b/],scope:{1:"keyword",3:"keyword"}},Oe={begin:[/(struct|protocol|class|extension|enum|actor)/,/\s+/,dd,/\s*/],beginScope:{1:"keyword",3:"title.class"},keywords:u,contains:[ee,...d,{begin:/:/,end:/\{/,keywords:u,contains:[{scope:"title.class.inherited",match:jT},...d],relevance:0}]};for(const ke of N.variants){const st=ke.contains.find(Me=>Me.label==="interpol");st.keywords=u;const Le=[...d,...m,...v,O,N,...L];st.contains=[...Le,{begin:/\(/,end:/\)/,contains:["self",...Le]}]}return{name:"Swift",keywords:u,contains:[...i,re,ge,ae,ue,Oe,W,X,{beginKeywords:"import",end:/$/,contains:[...i],relevance:0},F,...d,...m,...v,O,N,...L,...H,K,B]}}const pN="[A-Za-z$_][0-9A-Za-z$_]*",Cke=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends","using"],Tke=["true","false","null","undefined","NaN","Infinity"],Ake=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],_ke=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Nke=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],jke=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],Rke=[].concat(Nke,Ake,_ke);function Igt(e){const t=e.regex,n=(M,{after:U})=>{const I="",end:""},s=/<[A-Za-z0-9\\._:-]+\s*\/>/,a={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(M,U)=>{const I=M[0].length+M.index,H=M.input[I];if(H==="<"||H===","){U.ignoreMatch();return}H===">"&&(n(M,{after:I})||U.ignoreMatch());let K;const Q=M.input.substring(I);if(K=Q.match(/^\s*=/)){U.ignoreMatch();return}if((K=Q.match(/^\s+extends\s+/))&&K.index===0){U.ignoreMatch();return}}},l={$pattern:pN,keyword:Cke,literal:Tke,built_in:Rke,"variable.language":jke},c="[0-9](_?[0-9])*",u=`\\.(${c})`,d="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",f={className:"number",variants:[{begin:`(\\b(${d})((${u})|\\.)?|(${u}))[eE][+-]?(${c})\\b`},{begin:`\\b(${d})\\b((${u})\\b|\\.)?|(${u})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},h={className:"subst",begin:"\\$\\{",end:"\\}",keywords:l,contains:[]},m={begin:".?html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"xml"}},g={begin:".?css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"css"}},b={begin:".?gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"graphql"}},v={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,h]},x={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:i+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},O=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,g,b,v,{match:/\$\d+/},f];h.contains=O.concat({begin:/\{/,end:/\}/,keywords:l,contains:["self"].concat(O)});const w=[].concat(x,h.contains),k=w.concat([{begin:/(\s*)\(/,end:/\)/,keywords:l,contains:["self"].concat(w)}]),S={className:"params",begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:k},E={variants:[{match:[/class/,/\s+/,i,/\s+/,/extends/,/\s+/,t.concat(i,"(",t.concat(/\./,i),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,i],scope:{1:"keyword",3:"title.class"}}]},C={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...Ake,..._ke]}},N={label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},_={variants:[{match:[/function/,/\s+/,i,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[S],illegal:/%/},j={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"};function A(M){return t.concat("(?!",M.join("|"),")")}const F={match:t.concat(/\b/,A([...Nke,"super","import"].map(M=>`${M}\\s*\\(`)),i,t.lookahead(/\s*\(/)),className:"title.function",relevance:0},T={begin:t.concat(/\./,t.lookahead(t.concat(i,/(?![0-9A-Za-z$_(])/))),end:i,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},P={match:[/get|set/,/\s+/,i,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},S]},R="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",L={match:[/const|var|let/,/\s+/,i,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(R)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[S]};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:l,exports:{PARAMS_CONTAINS:k,CLASS_REFERENCE:C},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),N,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,g,b,v,x,{match:/\$\d+/},f,C,{scope:"attr",match:i+t.lookahead(":"),relevance:0},L,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[x,e.REGEXP_MODE,{className:"function",begin:R,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:k}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:r.begin,end:r.end},{match:s},{begin:a.begin,"on:begin":a.isTrulyOpeningTag,end:a.end}],subLanguage:"xml",contains:[{begin:a.begin,end:a.end,skip:!0,contains:["self"]}]}]},_,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[S,e.inherit(e.TITLE_MODE,{begin:i,className:"title.function"})]},{match:/\.\.\./,relevance:0},T,{match:"\\$"+i,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[S]},F,j,E,P,{match:/\$[(.]/}]}}function Ike(e){const t=e.regex,n=Igt(e),i=pN,r=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],s={begin:[/namespace/,/\s+/,e.IDENT_RE],beginScope:{1:"keyword",3:"title.class"}},a={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:{keyword:"interface extends",built_in:r},contains:[n.exports.CLASS_REFERENCE]},l={className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/},c=["type","interface","public","private","protected","implements","declare","abstract","readonly","enum","override","satisfies"],u={$pattern:pN,keyword:Cke.concat(c),literal:Tke,built_in:Rke.concat(r),"variable.language":jke},d={className:"meta",begin:"@"+i},f=(b,v,y)=>{const x=b.contains.findIndex(O=>O.label===v);if(x===-1)throw new Error("can not find mode to replace");b.contains.splice(x,1,y)};Object.assign(n.keywords,u),n.exports.PARAMS_CONTAINS.push(d);const h=n.contains.find(b=>b.scope==="attr"),m=Object.assign({},h,{match:t.concat(i,t.lookahead(/\s*\?:/))});n.exports.PARAMS_CONTAINS.push([n.exports.CLASS_REFERENCE,h,m]),n.contains=n.contains.concat([d,s,a,m]),f(n,"shebang",e.SHEBANG()),f(n,"use_strict",l);const g=n.contains.find(b=>b.label==="func.def");return g.relevance=0,Object.assign(n,{name:"TypeScript",aliases:["ts","tsx","mts","cts"]}),n}function Pgt(e){const t=e.regex,n={className:"string",begin:/"(""|[^/n])"C\b/},i={className:"string",begin:/"/,end:/"/,illegal:/\n/,contains:[{begin:/""/}]},r=/\d{1,2}\/\d{1,2}\/\d{4}/,s=/\d{4}-\d{1,2}-\d{1,2}/,a=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,l=/\d{1,2}(:\d{1,2}){1,2}/,c={className:"literal",variants:[{begin:t.concat(/# */,t.either(s,r),/ *#/)},{begin:t.concat(/# */,l,/ *#/)},{begin:t.concat(/# */,a,/ *#/)},{begin:t.concat(/# */,t.either(s,r),/ +/,t.either(a,l),/ *#/)}]},u={className:"number",relevance:0,variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},d={className:"label",begin:/^\w+:/},f=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]}),h=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",literal:"true false nothing"},illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[n,i,c,u,d,f,h,{className:"meta",begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,end:/$/,keywords:{keyword:"const disable else elseif enable end externalsource if region then"},contains:[h]}]}}function Dgt(e){e.regex;const t=e.COMMENT(/\(;/,/;\)/);t.contains.push("self");const n=e.COMMENT(/;;/,/$/),i=["anyfunc","block","br","br_if","br_table","call","call_indirect","data","drop","elem","else","end","export","func","global.get","global.set","local.get","local.set","local.tee","get_global","get_local","global","if","import","local","loop","memory","memory.grow","memory.size","module","mut","nop","offset","param","result","return","select","set_global","set_local","start","table","tee_local","then","type","unreachable"],r={begin:[/(?:func|call|call_indirect)/,/\s+/,/\$[^\s)]+/],className:{1:"keyword",3:"title.function"}},s={className:"variable",begin:/\$[\w_]+/},a={match:/(\((?!;)|\))+/,className:"punctuation",relevance:0},l={className:"number",relevance:0,match:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/},c={match:/(i32|i64|f32|f64)(?!\.)/,className:"type"},u={className:"keyword",match:/\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/};return{name:"WebAssembly",keywords:{$pattern:/[\w.]+/,keyword:i},contains:[n,t,{match:[/(?:offset|align)/,/\s*/,/=/],className:{1:"keyword",3:"operator"}},s,a,r,e.QUOTE_STRING_MODE,c,u,l]}}function Mgt(e){const t=e.regex,n=t.concat(/[\p{L}_]/u,t.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),i=/[\p{L}0-9._:-]+/u,r={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},s={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},a=e.inherit(s,{begin:/\(/,end:/\)/}),l=e.inherit(e.APOS_STRING_MODE,{className:"string"}),c=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),u={endsWithParent:!0,illegal:/`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin://,relevance:10,contains:[s,c,l,a,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin://,contains:[s,a,c,l]}]}]},e.COMMENT(//,{relevance:10}),{begin://,relevance:10},r,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[c]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",begin:/)/,end:/>/,keywords:{name:"style"},contains:[u],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/)/,end:/>/,keywords:{name:"script"},contains:[u],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:t.concat(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:n,relevance:0,starts:u}]},{className:"tag",begin:t.concat(/<\//,t.lookahead(t.concat(n,/>/))),contains:[{className:"name",begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}function Pke(e){const t="true false yes no null",n="[\\w#;/?:@&=+$,.~*'()[\\]]+",i={className:"attr",variants:[{begin:/[\w*@][\w*@ :()\./-]*:(?=[ \t]|$)/},{begin:/"[\w*@][\w*@ :()\./-]*":(?=[ \t]|$)/},{begin:/'[\w*@][\w*@ :()\./-]*':(?=[ \t]|$)/}]},r={className:"template-variable",variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]},s={className:"string",relevance:0,begin:/'/,end:/'/,contains:[{match:/''/,scope:"char.escape",relevance:0}]},a={className:"string",relevance:0,variants:[{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,r]},l=e.inherit(a,{variants:[{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),h={className:"number",begin:"\\b"+"[0-9]{4}(-[0-9][0-9]){0,2}"+"([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?"+"(\\.[0-9]*)?"+"([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?"+"\\b"},m={end:",",endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},g={begin:/\{/,end:/\}/,contains:[m],illegal:"\\n",relevance:0},b={begin:"\\[",end:"\\]",contains:[m],illegal:"\\n",relevance:0},v=[i,{className:"meta",begin:"^---\\s*$",relevance:10},{className:"string",begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+n},{className:"type",begin:"!<"+n+">"},{className:"type",begin:"!"+n},{className:"type",begin:"!!"+n},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},h,{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},g,b,s,a],y=[...v];return y.pop(),y.push(l),m.contains=y,{name:"YAML",case_insensitive:!0,aliases:["yml"],contains:v}}const Lgt={arduino:Tmt,bash:JB,c:Amt,cpp:_mt,csharp:Nmt,css:Fmt,diff:Bmt,go:Umt,graphql:Qmt,ini:uke,java:zmt,javascript:mke,json:gke,kotlin:Kmt,less:igt,lua:rgt,makefile:vke,markdown:xke,objectivec:sgt,perl:agt,php:ogt,"php-template":lgt,plaintext:cgt,python:wke,"python-repl":ugt,r:dgt,ruby:fgt,rust:hgt,scss:Ogt,shell:Sgt,sql:kgt,swift:Rgt,typescript:Ike,vbnet:Pgt,wasm:Dgt,xml:Mgt,yaml:Pke};function Dke(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach(t=>{const n=e[t],i=typeof n;(i==="object"||i==="function")&&!Object.isFrozen(n)&&Dke(n)}),e}let sY=class{constructor(t){t.data===void 0&&(t.data={}),this.data=t.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}};function Mke(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function Bp(e,...t){const n=Object.create(null);for(const i in e)n[i]=e[i];return t.forEach(function(i){for(const r in i)n[r]=i[r]}),n}const $gt="",aY=e=>!!e.scope,Fgt=(e,{prefix:t})=>{if(e.startsWith("language:"))return e.replace("language:","language-");if(e.includes(".")){const n=e.split(".");return[`${t}${n.shift()}`,...n.map((i,r)=>`${i}${"_".repeat(r+1)}`)].join(" ")}return`${t}${e}`};class Bgt{constructor(t,n){this.buffer="",this.classPrefix=n.classPrefix,t.walk(this)}addText(t){this.buffer+=Mke(t)}openNode(t){if(!aY(t))return;const n=Fgt(t.scope,{prefix:this.classPrefix});this.span(n)}closeNode(t){aY(t)&&(this.buffer+=$gt)}value(){return this.buffer}span(t){this.buffer+=``}}const oY=(e={})=>{const t={children:[]};return Object.assign(t,e),t};class tU{constructor(){this.rootNode=oY(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(t){this.top.children.push(t)}openNode(t){const n=oY({scope:t});this.add(n),this.stack.push(n)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(t){return this.constructor._walk(t,this.rootNode)}static _walk(t,n){return typeof n=="string"?t.addText(n):n.children&&(t.openNode(n),n.children.forEach(i=>this._walk(t,i)),t.closeNode(n)),t}static _collapse(t){typeof t!="string"&&t.children&&(t.children.every(n=>typeof n=="string")?t.children=[t.children.join("")]:t.children.forEach(n=>{tU._collapse(n)}))}}class Ugt extends tU{constructor(t){super(),this.options=t}addText(t){t!==""&&this.add(t)}startScope(t){this.openNode(t)}endScope(){this.closeNode()}__addSublanguage(t,n){const i=t.root;n&&(i.scope=`language:${n}`),this.add(i)}toHTML(){return new Bgt(this,this.options).value()}finalize(){return this.closeAllNodes(),!0}}function QS(e){return e?typeof e=="string"?e:e.source:null}function Lke(e){return i0("(?=",e,")")}function Qgt(e){return i0("(?:",e,")*")}function zgt(e){return i0("(?:",e,")?")}function i0(...e){return e.map(n=>QS(n)).join("")}function Vgt(e){const t=e[e.length-1];return typeof t=="object"&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function nU(...e){return"("+(Vgt(e).capture?"":"?:")+e.map(i=>QS(i)).join("|")+")"}function $ke(e){return new RegExp(e.toString()+"|").exec("").length-1}function Hgt(e,t){const n=e&&e.exec(t);return n&&n.index===0}const qgt=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function iU(e,{joinWith:t}){let n=0;return e.map(i=>{n+=1;const r=n;let s=QS(i),a="";for(;s.length>0;){const l=qgt.exec(s);if(!l){a+=s;break}a+=s.substring(0,l.index),s=s.substring(l.index+l[0].length),l[0][0]==="\\"&&l[1]?a+="\\"+String(Number(l[1])+r):(a+=l[0],l[0]==="("&&n++)}return a}).map(i=>`(${i})`).join(t)}const Wgt=/\b\B/,Fke="[a-zA-Z]\\w*",rU="[a-zA-Z_]\\w*",Bke="\\b\\d+(\\.\\d+)?",Uke="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",Qke="\\b(0b[01]+)",Ggt="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",Kgt=(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=i0(t,/.*\b/,e.binary,/\b.*/)),Bp({scope:"meta",begin:t,end:/$/,relevance:0,"on:begin":(n,i)=>{n.index!==0&&i.ignoreMatch()}},e)},zS={begin:"\\\\[\\s\\S]",relevance:0},Xgt={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[zS]},Ygt={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[zS]},Zgt={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},JR=function(e,t,n={}){const i=Bp({scope:"comment",begin:e,end:t,contains:[]},n);i.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const r=nU("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return i.contains.push({begin:i0(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i},Jgt=JR("//","$"),ebt=JR("/\\*","\\*/"),tbt=JR("#","$"),nbt={scope:"number",begin:Bke,relevance:0},ibt={scope:"number",begin:Uke,relevance:0},rbt={scope:"number",begin:Qke,relevance:0},sbt={scope:"regexp",begin:/\/(?=[^/\n]*\/)/,end:/\/[gimuy]*/,contains:[zS,{begin:/\[/,end:/\]/,relevance:0,contains:[zS]}]},abt={scope:"title",begin:Fke,relevance:0},obt={scope:"title",begin:rU,relevance:0},lbt={begin:"\\.\\s*"+rU,relevance:0},cbt=function(e){return Object.assign(e,{"on:begin":(t,n)=>{n.data._beginMatch=t[1]},"on:end":(t,n)=>{n.data._beginMatch!==t[1]&&n.ignoreMatch()}})};var RT=Object.freeze({__proto__:null,APOS_STRING_MODE:Xgt,BACKSLASH_ESCAPE:zS,BINARY_NUMBER_MODE:rbt,BINARY_NUMBER_RE:Qke,COMMENT:JR,C_BLOCK_COMMENT_MODE:ebt,C_LINE_COMMENT_MODE:Jgt,C_NUMBER_MODE:ibt,C_NUMBER_RE:Uke,END_SAME_AS_BEGIN:cbt,HASH_COMMENT_MODE:tbt,IDENT_RE:Fke,MATCH_NOTHING_RE:Wgt,METHOD_GUARD:lbt,NUMBER_MODE:nbt,NUMBER_RE:Bke,PHRASAL_WORDS_MODE:Zgt,QUOTE_STRING_MODE:Ygt,REGEXP_MODE:sbt,RE_STARTERS_RE:Ggt,SHEBANG:Kgt,TITLE_MODE:abt,UNDERSCORE_IDENT_RE:rU,UNDERSCORE_TITLE_MODE:obt});function ubt(e,t){e.input[e.index-1]==="."&&t.ignoreMatch()}function dbt(e,t){e.className!==void 0&&(e.scope=e.className,delete e.className)}function fbt(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=ubt,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,e.relevance===void 0&&(e.relevance=0))}function hbt(e,t){Array.isArray(e.illegal)&&(e.illegal=nU(...e.illegal))}function pbt(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function mbt(e,t){e.relevance===void 0&&(e.relevance=1)}const gbt=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const n=Object.assign({},e);Object.keys(e).forEach(i=>{delete e[i]}),e.keywords=n.keywords,e.begin=i0(n.beforeMatch,Lke(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},bbt=["of","and","for","in","not","or","if","then","parent","list","value"],ybt="keyword";function zke(e,t,n=ybt){const i=Object.create(null);return typeof e=="string"?r(n,e.split(" ")):Array.isArray(e)?r(n,e):Object.keys(e).forEach(function(s){Object.assign(i,zke(e[s],t,s))}),i;function r(s,a){t&&(a=a.map(l=>l.toLowerCase())),a.forEach(function(l){const c=l.split("|");i[c[0]]=[s,vbt(c[0],c[1])]})}}function vbt(e,t){return t?Number(t):xbt(e)?0:1}function xbt(e){return bbt.includes(e.toLowerCase())}const lY={},sb=e=>{console.error(e)},cY=(e,...t)=>{console.log(`WARN: ${e}`,...t)},$0=(e,t)=>{lY[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),lY[`${e}/${t}`]=!0)},mN=new Error;function Vke(e,t,{key:n}){let i=0;const r=e[n],s={},a={};for(let l=1;l<=t.length;l++)a[l+i]=r[l],s[l+i]=!0,i+=$ke(t[l-1]);e[n]=a,e[n]._emit=s,e[n]._multi=!0}function wbt(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw sb("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),mN;if(typeof e.beginScope!="object"||e.beginScope===null)throw sb("beginScope must be object"),mN;Vke(e,e.begin,{key:"beginScope"}),e.begin=iU(e.begin,{joinWith:""})}}function Obt(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw sb("skip, excludeEnd, returnEnd not compatible with endScope: {}"),mN;if(typeof e.endScope!="object"||e.endScope===null)throw sb("endScope must be object"),mN;Vke(e,e.end,{key:"endScope"}),e.end=iU(e.end,{joinWith:""})}}function Sbt(e){e.scope&&typeof e.scope=="object"&&e.scope!==null&&(e.beginScope=e.scope,delete e.scope)}function kbt(e){Sbt(e),typeof e.beginScope=="string"&&(e.beginScope={_wrap:e.beginScope}),typeof e.endScope=="string"&&(e.endScope={_wrap:e.endScope}),wbt(e),Obt(e)}function Ebt(e){function t(a,l){return new RegExp(QS(a),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(l?"g":""))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(l,c){c.position=this.position++,this.matchIndexes[this.matchAt]=c,this.regexes.push([c,l]),this.matchAt+=$ke(l)+1}compile(){this.regexes.length===0&&(this.exec=()=>null);const l=this.regexes.map(c=>c[1]);this.matcherRe=t(iU(l,{joinWith:"|"}),!0),this.lastIndex=0}exec(l){this.matcherRe.lastIndex=this.lastIndex;const c=this.matcherRe.exec(l);if(!c)return null;const u=c.findIndex((f,h)=>h>0&&f!==void 0),d=this.matchIndexes[u];return c.splice(0,u),Object.assign(c,d)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(l){if(this.multiRegexes[l])return this.multiRegexes[l];const c=new n;return this.rules.slice(l).forEach(([u,d])=>c.addRule(u,d)),c.compile(),this.multiRegexes[l]=c,c}resumingScanAtSamePosition(){return this.regexIndex!==0}considerAll(){this.regexIndex=0}addRule(l,c){this.rules.push([l,c]),c.type==="begin"&&this.count++}exec(l){const c=this.getMatcher(this.regexIndex);c.lastIndex=this.lastIndex;let u=c.exec(l);if(this.resumingScanAtSamePosition()&&!(u&&u.index===this.lastIndex)){const d=this.getMatcher(0);d.lastIndex=this.lastIndex+1,u=d.exec(l)}return u&&(this.regexIndex+=u.position+1,this.regexIndex===this.count&&this.considerAll()),u}}function r(a){const l=new i;return a.contains.forEach(c=>l.addRule(c.begin,{rule:c,type:"begin"})),a.terminatorEnd&&l.addRule(a.terminatorEnd,{type:"end"}),a.illegal&&l.addRule(a.illegal,{type:"illegal"}),l}function s(a,l){const c=a;if(a.isCompiled)return c;[dbt,pbt,kbt,gbt].forEach(d=>d(a,l)),e.compilerExtensions.forEach(d=>d(a,l)),a.__beforeBegin=null,[fbt,hbt,mbt].forEach(d=>d(a,l)),a.isCompiled=!0;let u=null;return typeof a.keywords=="object"&&a.keywords.$pattern&&(a.keywords=Object.assign({},a.keywords),u=a.keywords.$pattern,delete a.keywords.$pattern),u=u||/\w+/,a.keywords&&(a.keywords=zke(a.keywords,e.case_insensitive)),c.keywordPatternRe=t(u,!0),l&&(a.begin||(a.begin=/\B|\b/),c.beginRe=t(c.begin),!a.end&&!a.endsWithParent&&(a.end=/\B|\b/),a.end&&(c.endRe=t(c.end)),c.terminatorEnd=QS(c.end)||"",a.endsWithParent&&l.terminatorEnd&&(c.terminatorEnd+=(a.end?"|":"")+l.terminatorEnd)),a.illegal&&(c.illegalRe=t(a.illegal)),a.contains||(a.contains=[]),a.contains=[].concat(...a.contains.map(function(d){return Cbt(d==="self"?a:d)})),a.contains.forEach(function(d){s(d,c)}),a.starts&&s(a.starts,l),c.matcher=r(c),c}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=Bp(e.classNameAliases||{}),s(e)}function Hke(e){return e?e.endsWithParent||Hke(e.starts):!1}function Cbt(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map(function(t){return Bp(e,{variants:null},t)})),e.cachedVariants?e.cachedVariants:Hke(e)?Bp(e,{starts:e.starts?Bp(e.starts):null}):Object.isFrozen(e)?Bp(e):e}var Tbt="11.11.1";class Abt extends Error{constructor(t,n){super(t),this.name="HTMLInjectionError",this.html=n}}const LM=Mke,uY=Bp,dY=Symbol("nomatch"),_bt=7,qke=function(e){const t=Object.create(null),n=Object.create(null),i=[];let r=!0;const s="Could not find the language '{}', did you forget to load/include a language module?",a={disableAutodetect:!0,name:"Plain text",contains:[]};let l={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:Ugt};function c(R){return l.noHighlightRe.test(R)}function u(R){let L=R.className+" ";L+=R.parentNode?R.parentNode.className:"";const M=l.languageDetectRe.exec(L);if(M){const U=C(M[1]);return U||(cY(s.replace("{}",M[1])),cY("Falling back to no-highlight mode for this block.",R)),U?M[1]:"no-highlight"}return L.split(/\s+/).find(U=>c(U)||C(U))}function d(R,L,M){let U="",I="";typeof L=="object"?(U=R,M=L.ignoreIllegals,I=L.language):($0("10.7.0","highlight(lang, code, ...args) has been deprecated."),$0("10.7.0",`Please use highlight(code, options) instead. -https://github.com/highlightjs/highlight.js/issues/2277`),I=R,U=L),M===void 0&&(M=!0);const H={code:U,language:I};T("before:highlight",H);const K=H.result?H.result:f(H.language,H.code,M);return K.code=H.code,T("after:highlight",K),K}function f(R,L,M,U){const I=Object.create(null);function H(J,he){return J.keywords[he]}function K(){if(!Le.keywords){Ie.addText(qe);return}let J=0;Le.keywordPatternRe.lastIndex=0;let he=Le.keywordPatternRe.exec(qe),_e="";for(;he;){_e+=qe.substring(J,he.index);const Ze=Oe.case_insensitive?he[0].toLowerCase():he[0],at=H(Le,Ze);if(at){const[wt,Se]=at;if(Ie.addText(_e),_e="",I[Ze]=(I[Ze]||0)+1,I[Ze]<=_bt&&(Ae+=Se),wt.startsWith("_"))_e+=he[0];else{const ve=Oe.classNameAliases[wt]||wt;B(he[0],ve)}}else _e+=he[0];J=Le.keywordPatternRe.lastIndex,he=Le.keywordPatternRe.exec(qe)}_e+=qe.substring(J),Ie.addText(_e)}function Q(){if(qe==="")return;let J=null;if(typeof Le.subLanguage=="string"){if(!t[Le.subLanguage]){Ie.addText(qe);return}J=f(Le.subLanguage,qe,!0,Me[Le.subLanguage]),Me[Le.subLanguage]=J._top}else J=m(qe,Le.subLanguage.length?Le.subLanguage:null);Le.relevance>0&&(Ae+=J.relevance),Ie.__addSublanguage(J._emitter,J.language)}function q(){Le.subLanguage!=null?Q():K(),qe=""}function B(J,he){J!==""&&(Ie.startScope(he),Ie.addText(J),Ie.endScope())}function ee(J,he){let _e=1;const Ze=he.length-1;for(;_e<=Ze;){if(!J._emit[_e]){_e++;continue}const at=Oe.classNameAliases[J[_e]]||J[_e],wt=he[_e];at?B(wt,at):(qe=wt,K(),qe=""),_e++}}function le(J,he){return J.scope&&typeof J.scope=="string"&&Ie.openNode(Oe.classNameAliases[J.scope]||J.scope),J.beginScope&&(J.beginScope._wrap?(B(qe,Oe.classNameAliases[J.beginScope._wrap]||J.beginScope._wrap),qe=""):J.beginScope._multi&&(ee(J.beginScope,he),qe="")),Le=Object.create(J,{parent:{value:Le}}),Le}function se(J,he,_e){let Ze=Hgt(J.endRe,_e);if(Ze){if(J["on:end"]){const at=new sY(J);J["on:end"](he,at),at.isMatchIgnored&&(Ze=!1)}if(Ze){for(;J.endsParent&&J.parent;)J=J.parent;return J}}if(J.endsWithParent)return se(J.parent,he,_e)}function re(J){return Le.matcher.regexIndex===0?(qe+=J[0],1):(De=!0,0)}function ge(J){const he=J[0],_e=J.rule,Ze=new sY(_e),at=[_e.__beforeBegin,_e["on:begin"]];for(const wt of at)if(wt&&(wt(J,Ze),Ze.isMatchIgnored))return re(he);return _e.skip?qe+=he:(_e.excludeBegin&&(qe+=he),q(),!_e.returnBegin&&!_e.excludeBegin&&(qe=he)),le(_e,J),_e.returnBegin?0:he.length}function W(J){const he=J[0],_e=L.substring(J.index),Ze=se(Le,J,_e);if(!Ze)return dY;const at=Le;Le.endScope&&Le.endScope._wrap?(q(),B(he,Le.endScope._wrap)):Le.endScope&&Le.endScope._multi?(q(),ee(Le.endScope,J)):at.skip?qe+=he:(at.returnEnd||at.excludeEnd||(qe+=he),q(),at.excludeEnd&&(qe=he));do Le.scope&&Ie.closeNode(),!Le.skip&&!Le.subLanguage&&(Ae+=Le.relevance),Le=Le.parent;while(Le!==Ze.parent);return Ze.starts&&le(Ze.starts,J),at.returnEnd?0:he.length}function X(){const J=[];for(let he=Le;he!==Oe;he=he.parent)he.scope&&J.unshift(he.scope);J.forEach(he=>Ie.openNode(he))}let ae={};function ue(J,he){const _e=he&&he[0];if(qe+=J,_e==null)return q(),0;if(ae.type==="begin"&&he.type==="end"&&ae.index===he.index&&_e===""){if(qe+=L.slice(he.index,he.index+1),!r){const Ze=new Error(`0 width match regex (${R})`);throw Ze.languageName=R,Ze.badRule=ae.rule,Ze}return 1}if(ae=he,he.type==="begin")return ge(he);if(he.type==="illegal"&&!M){const Ze=new Error('Illegal lexeme "'+_e+'" for mode "'+(Le.scope||"")+'"');throw Ze.mode=Le,Ze}else if(he.type==="end"){const Ze=W(he);if(Ze!==dY)return Ze}if(he.type==="illegal"&&_e==="")return qe+=` -`,1;if(Ee>1e5&&Ee>he.index*3)throw new Error("potential infinite loop, way more iterations than matches");return qe+=_e,_e.length}const Oe=C(R);if(!Oe)throw sb(s.replace("{}",R)),new Error('Unknown language: "'+R+'"');const ke=Ebt(Oe);let st="",Le=U||ke;const Me={},Ie=new l.__emitter(l);X();let qe="",Ae=0,ze=0,Ee=0,De=!1;try{if(Oe.__emitTokens)Oe.__emitTokens(L,Ie);else{for(Le.matcher.considerAll();;){Ee++,De?De=!1:Le.matcher.considerAll(),Le.matcher.lastIndex=ze;const J=Le.matcher.exec(L);if(!J)break;const he=L.substring(ze,J.index),_e=ue(he,J);ze=J.index+_e}ue(L.substring(ze))}return Ie.finalize(),st=Ie.toHTML(),{language:R,value:st,relevance:Ae,illegal:!1,_emitter:Ie,_top:Le}}catch(J){if(J.message&&J.message.includes("Illegal"))return{language:R,value:LM(L),illegal:!0,relevance:0,_illegalBy:{message:J.message,index:ze,context:L.slice(ze-100,ze+100),mode:J.mode,resultSoFar:st},_emitter:Ie};if(r)return{language:R,value:LM(L),illegal:!1,relevance:0,errorRaised:J,_emitter:Ie,_top:Le};throw J}}function h(R){const L={value:LM(R),illegal:!1,relevance:0,_top:a,_emitter:new l.__emitter(l)};return L._emitter.addText(R),L}function m(R,L){L=L||l.languages||Object.keys(t);const M=h(R),U=L.filter(C).filter(_).map(q=>f(q,R,!1));U.unshift(M);const I=U.sort((q,B)=>{if(q.relevance!==B.relevance)return B.relevance-q.relevance;if(q.language&&B.language){if(C(q.language).supersetOf===B.language)return 1;if(C(B.language).supersetOf===q.language)return-1}return 0}),[H,K]=I,Q=H;return Q.secondBest=K,Q}function g(R,L,M){const U=L&&n[L]||M;R.classList.add("hljs"),R.classList.add(`language-${U}`)}function b(R){let L=null;const M=u(R);if(c(M))return;if(T("before:highlightElement",{el:R,language:M}),R.dataset.highlighted){console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",R);return}if(R.children.length>0&&(l.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),console.warn("The element with unescaped HTML:"),console.warn(R)),l.throwUnescapedHTML))throw new Abt("One of your code blocks includes unescaped HTML.",R.innerHTML);L=R;const U=L.textContent,I=M?d(U,{language:M,ignoreIllegals:!0}):m(U);R.innerHTML=I.value,R.dataset.highlighted="yes",g(R,M,I.language),R.result={language:I.language,re:I.relevance,relevance:I.relevance},I.secondBest&&(R.secondBest={language:I.secondBest.language,relevance:I.secondBest.relevance}),T("after:highlightElement",{el:R,result:I,text:U})}function v(R){l=uY(l,R)}const y=()=>{w(),$0("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")};function x(){w(),$0("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")}let O=!1;function w(){function R(){w()}if(document.readyState==="loading"){O||window.addEventListener("DOMContentLoaded",R,!1),O=!0;return}document.querySelectorAll(l.cssSelector).forEach(b)}function k(R,L){let M=null;try{M=L(e)}catch(U){if(sb("Language definition for '{}' could not be registered.".replace("{}",R)),r)sb(U);else throw U;M=a}M.name||(M.name=R),t[R]=M,M.rawDefinition=L.bind(null,e),M.aliases&&N(M.aliases,{languageName:R})}function S(R){delete t[R];for(const L of Object.keys(n))n[L]===R&&delete n[L]}function E(){return Object.keys(t)}function C(R){return R=(R||"").toLowerCase(),t[R]||t[n[R]]}function N(R,{languageName:L}){typeof R=="string"&&(R=[R]),R.forEach(M=>{n[M.toLowerCase()]=L})}function _(R){const L=C(R);return L&&!L.disableAutodetect}function j(R){R["before:highlightBlock"]&&!R["before:highlightElement"]&&(R["before:highlightElement"]=L=>{R["before:highlightBlock"](Object.assign({block:L.el},L))}),R["after:highlightBlock"]&&!R["after:highlightElement"]&&(R["after:highlightElement"]=L=>{R["after:highlightBlock"](Object.assign({block:L.el},L))})}function A(R){j(R),i.push(R)}function F(R){const L=i.indexOf(R);L!==-1&&i.splice(L,1)}function T(R,L){const M=R;i.forEach(function(U){U[M]&&U[M](L)})}function P(R){return $0("10.7.0","highlightBlock will be removed entirely in v12.0"),$0("10.7.0","Please use highlightElement now."),b(R)}Object.assign(e,{highlight:d,highlightAuto:m,highlightAll:w,highlightElement:b,highlightBlock:P,configure:v,initHighlighting:y,initHighlightingOnLoad:x,registerLanguage:k,unregisterLanguage:S,listLanguages:E,getLanguage:C,registerAliases:N,autoDetection:_,inherit:uY,addPlugin:A,removePlugin:F}),e.debugMode=function(){r=!1},e.safeMode=function(){r=!0},e.versionString=Tbt,e.regex={concat:i0,lookahead:Lke,either:nU,optional:zgt,anyNumberOfTimes:Qgt};for(const R in RT)typeof RT[R]=="object"&&Dke(RT[R]);return Object.assign(e,RT),e},Jv=qke({});Jv.newInstance=()=>qke({});var Nbt=Jv;Jv.HighlightJS=Jv;Jv.default=Jv;const xo=px(Nbt),fY={},jbt="hljs-";function Rbt(e){const t=xo.newInstance();return e&&s(e),{highlight:n,highlightAuto:i,listLanguages:r,register:s,registerAlias:a,registered:l};function n(c,u,d){const f=d||fY,h=typeof f.prefix=="string"?f.prefix:jbt;if(!t.getLanguage(c))throw new Error("Unknown language: `"+c+"` is not registered");t.configure({__emitter:Ibt,classPrefix:h});const m=t.highlight(u,{ignoreIllegals:!0,language:c});if(m.errorRaised)throw new Error("Could not highlight with `Highlight.js`",{cause:m.errorRaised});const g=m._emitter.root,b=g.data;return b.language=m.language,b.relevance=m.relevance,g}function i(c,u){const f=(u||fY).subset||r();let h=-1,m=0,g;for(;++hm&&(m=v.data.relevance,g=v)}return g||{type:"root",children:[],data:{language:void 0,relevance:m}}}function r(){return t.listLanguages()}function s(c,u){if(typeof c=="string")t.registerLanguage(c,u);else{let d;for(d in c)Object.hasOwn(c,d)&&t.registerLanguage(d,c[d])}}function a(c,u){if(typeof c=="string")t.registerAliases(typeof u=="string"?u:[...u],{languageName:c});else{let d;for(d in c)if(Object.hasOwn(c,d)){const f=c[d];t.registerAliases(typeof f=="string"?f:[...f],{languageName:d})}}}function l(c){return!!t.getLanguage(c)}}class Ibt{constructor(t){this.options=t,this.root={type:"root",children:[],data:{language:void 0,relevance:0}},this.stack=[this.root]}addText(t){if(t==="")return;const n=this.stack[this.stack.length-1],i=n.children[n.children.length-1];i&&i.type==="text"?i.value+=t:n.children.push({type:"text",value:t})}startScope(t){this.openNode(String(t))}endScope(){this.closeNode()}__addSublanguage(t,n){const i=this.stack[this.stack.length-1],r=t.root.children;n?i.children.push({type:"element",tagName:"span",properties:{className:[n]},children:r}):i.children.push(...r)}openNode(t){const n=this,i=t.split(".").map(function(a,l){return l?a+"_".repeat(l):n.options.classPrefix+a}),r=this.stack[this.stack.length-1],s={type:"element",tagName:"span",properties:{className:i},children:[]};r.children.push(s),this.stack.push(s)}closeNode(){this.stack.pop()}finalize(){}toHTML(){return""}}const Pbt={};function hY(e){const t=e||Pbt,n=t.aliases,i=t.detect||!1,r=t.languages||Lgt,s=t.plainText,a=t.prefix,l=t.subset;let c="hljs";const u=Rbt(r);if(n&&u.registerAlias(n),a){const d=a.indexOf("-");c=d===-1?a:a.slice(0,d)}return function(d,f){vE(d,"element",function(h,m,g){if(h.tagName!=="code"||!g||g.type!=="element"||g.tagName!=="pre")return;const b=Dbt(h);if(b===!1||!b&&!i||b&&s&&s.includes(b))return;Array.isArray(h.properties.className)||(h.properties.className=[]),h.properties.className.includes(c)||h.properties.className.unshift(c);const v=ymt(h,{whitespace:"pre"});let y;try{y=b?u.highlight(b,v,{prefix:a}):u.highlightAuto(v,{prefix:a,subset:l})}catch(x){const O=x;if(b&&/Unknown language/.test(O.message)){f.message("Cannot highlight as `"+b+"`, it’s not registered",{ancestors:[g,h],cause:O,place:h.position,ruleId:"missing-language",source:"rehype-highlight"});return}throw O}!b&&y.data&&y.data.language&&h.properties.className.push("language-"+y.data.language),y.children.length>0&&(h.children=y.children)})}}function Dbt(e){const t=e.properties.className;let n=-1;if(!Array.isArray(t))return;let i;for(;++n-1&&s<=t.length){let a=0;for(;;){let l=n[a];if(l===void 0){const c=gY(t,n[a-1]);l=c===-1?t.length+1:c+1,n[a]=l}if(l>s)return{line:a+1,column:s-(a>0?n[a-1]:0)+1,offset:s};a++}}}function r(s){if(s&&typeof s.line=="number"&&typeof s.column=="number"&&!Number.isNaN(s.line)&&!Number.isNaN(s.column)){for(;n.length1?n[s.line-2]:0)+s.column-1;if(a=55296&&e<=57343}function o0t(e){return e>=56320&&e<=57343}function l0t(e,t){return(e-55296)*1024+9216+t}function Zke(e){return e!==32&&e!==10&&e!==13&&e!==9&&e!==12&&e>=1&&e<=31||e>=127&&e<=159}function Jke(e){return e>=64976&&e<=65007||a0t.has(e)}var et;(function(e){e.controlCharacterInInputStream="control-character-in-input-stream",e.noncharacterInInputStream="noncharacter-in-input-stream",e.surrogateInInputStream="surrogate-in-input-stream",e.nonVoidHtmlElementStartTagWithTrailingSolidus="non-void-html-element-start-tag-with-trailing-solidus",e.endTagWithAttributes="end-tag-with-attributes",e.endTagWithTrailingSolidus="end-tag-with-trailing-solidus",e.unexpectedSolidusInTag="unexpected-solidus-in-tag",e.unexpectedNullCharacter="unexpected-null-character",e.unexpectedQuestionMarkInsteadOfTagName="unexpected-question-mark-instead-of-tag-name",e.invalidFirstCharacterOfTagName="invalid-first-character-of-tag-name",e.unexpectedEqualsSignBeforeAttributeName="unexpected-equals-sign-before-attribute-name",e.missingEndTagName="missing-end-tag-name",e.unexpectedCharacterInAttributeName="unexpected-character-in-attribute-name",e.unknownNamedCharacterReference="unknown-named-character-reference",e.missingSemicolonAfterCharacterReference="missing-semicolon-after-character-reference",e.unexpectedCharacterAfterDoctypeSystemIdentifier="unexpected-character-after-doctype-system-identifier",e.unexpectedCharacterInUnquotedAttributeValue="unexpected-character-in-unquoted-attribute-value",e.eofBeforeTagName="eof-before-tag-name",e.eofInTag="eof-in-tag",e.missingAttributeValue="missing-attribute-value",e.missingWhitespaceBetweenAttributes="missing-whitespace-between-attributes",e.missingWhitespaceAfterDoctypePublicKeyword="missing-whitespace-after-doctype-public-keyword",e.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers="missing-whitespace-between-doctype-public-and-system-identifiers",e.missingWhitespaceAfterDoctypeSystemKeyword="missing-whitespace-after-doctype-system-keyword",e.missingQuoteBeforeDoctypePublicIdentifier="missing-quote-before-doctype-public-identifier",e.missingQuoteBeforeDoctypeSystemIdentifier="missing-quote-before-doctype-system-identifier",e.missingDoctypePublicIdentifier="missing-doctype-public-identifier",e.missingDoctypeSystemIdentifier="missing-doctype-system-identifier",e.abruptDoctypePublicIdentifier="abrupt-doctype-public-identifier",e.abruptDoctypeSystemIdentifier="abrupt-doctype-system-identifier",e.cdataInHtmlContent="cdata-in-html-content",e.incorrectlyOpenedComment="incorrectly-opened-comment",e.eofInScriptHtmlCommentLikeText="eof-in-script-html-comment-like-text",e.eofInDoctype="eof-in-doctype",e.nestedComment="nested-comment",e.abruptClosingOfEmptyComment="abrupt-closing-of-empty-comment",e.eofInComment="eof-in-comment",e.incorrectlyClosedComment="incorrectly-closed-comment",e.eofInCdata="eof-in-cdata",e.absenceOfDigitsInNumericCharacterReference="absence-of-digits-in-numeric-character-reference",e.nullCharacterReference="null-character-reference",e.surrogateCharacterReference="surrogate-character-reference",e.characterReferenceOutsideUnicodeRange="character-reference-outside-unicode-range",e.controlCharacterReference="control-character-reference",e.noncharacterCharacterReference="noncharacter-character-reference",e.missingWhitespaceBeforeDoctypeName="missing-whitespace-before-doctype-name",e.missingDoctypeName="missing-doctype-name",e.invalidCharacterSequenceAfterDoctypeName="invalid-character-sequence-after-doctype-name",e.duplicateAttribute="duplicate-attribute",e.nonConformingDoctype="non-conforming-doctype",e.missingDoctype="missing-doctype",e.misplacedDoctype="misplaced-doctype",e.endTagWithoutMatchingOpenElement="end-tag-without-matching-open-element",e.closingOfElementWithOpenChildElements="closing-of-element-with-open-child-elements",e.disallowedContentInNoscriptInHead="disallowed-content-in-noscript-in-head",e.openElementsLeftAfterEof="open-elements-left-after-eof",e.abandonedHeadElementChild="abandoned-head-element-child",e.misplacedStartTagForHeadElement="misplaced-start-tag-for-head-element",e.nestedNoscriptInHead="nested-noscript-in-head",e.eofInElementThatCanContainOnlyText="eof-in-element-that-can-contain-only-text"})(et||(et={}));const c0t=65536;class u0t{constructor(t){this.handler=t,this.html="",this.pos=-1,this.lastGapPos=-2,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=c0t,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.line=1,this.lastErrOffset=-1}get col(){return this.pos-this.lineStartPos+ +(this.lastGapPos!==this.pos)}get offset(){return this.droppedBufferSize+this.pos}getError(t,n){const{line:i,col:r,offset:s}=this,a=r+n,l=s+n;return{code:t,startLine:i,endLine:i,startCol:a,endCol:a,startOffset:l,endOffset:l}}_err(t){this.handler.onParseError&&this.lastErrOffset!==this.offset&&(this.lastErrOffset=this.offset,this.handler.onParseError(this.getError(t,0)))}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(t){if(this.pos!==this.html.length-1){const n=this.html.charCodeAt(this.pos+1);if(o0t(n))return this.pos++,this._addGap(),l0t(t,n)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,oe.EOF;return this._err(et.surrogateInInputStream),t}willDropParsedChunk(){return this.pos>this.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(t,n){this.html.length>0?this.html+=t:this.html=t,this.endOfChunkHit=!1,this.lastChunkWritten=n}insertHtmlAtCurrentPos(t){this.html=this.html.substring(0,this.pos+1)+t+this.html.substring(this.pos+1),this.endOfChunkHit=!1}startsWith(t,n){if(this.pos+t.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(n)return this.html.startsWith(t,this.pos);for(let i=0;i=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,oe.EOF;const i=this.html.charCodeAt(n);return i===oe.CARRIAGE_RETURN?oe.LINE_FEED:i}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,oe.EOF;let t=this.html.charCodeAt(this.pos);return t===oe.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,oe.LINE_FEED):t===oe.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,Yke(t)&&(t=this._processSurrogate(t)),this.handler.onParseError===null||t>31&&t<127||t===oe.LINE_FEED||t===oe.CARRIAGE_RETURN||t>159&&t<64976||this._checkForProblematicCharacters(t),t)}_checkForProblematicCharacters(t){Zke(t)?this._err(et.controlCharacterInInputStream):Jke(t)&&this._err(et.noncharacterInInputStream)}retreat(t){for(this.pos-=t;this.pos=0;n--)if(e.attrs[n].name===t)return e.attrs[n].value;return null}const d0t=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map(e=>e.charCodeAt(0))),f0t=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function h0t(e){var t;return e>=55296&&e<=57343||e>1114111?65533:(t=f0t.get(e))!==null&&t!==void 0?t:e}var Da;(function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"})(Da||(Da={}));const p0t=32;var Up;(function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"})(Up||(Up={}));function Q6(e){return e>=Da.ZERO&&e<=Da.NINE}function m0t(e){return e>=Da.UPPER_A&&e<=Da.UPPER_F||e>=Da.LOWER_A&&e<=Da.LOWER_F}function g0t(e){return e>=Da.UPPER_A&&e<=Da.UPPER_Z||e>=Da.LOWER_A&&e<=Da.LOWER_Z||Q6(e)}function b0t(e){return e===Da.EQUALS||g0t(e)}var Ta;(function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"})(Ta||(Ta={}));var Uf;(function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"})(Uf||(Uf={}));class y0t{constructor(t,n,i){this.decodeTree=t,this.emitCodePoint=n,this.errors=i,this.state=Ta.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=Uf.Strict}startEntity(t){this.decodeMode=t,this.state=Ta.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(t,n){switch(this.state){case Ta.EntityStart:return t.charCodeAt(n)===Da.NUM?(this.state=Ta.NumericStart,this.consumed+=1,this.stateNumericStart(t,n+1)):(this.state=Ta.NamedEntity,this.stateNamedEntity(t,n));case Ta.NumericStart:return this.stateNumericStart(t,n);case Ta.NumericDecimal:return this.stateNumericDecimal(t,n);case Ta.NumericHex:return this.stateNumericHex(t,n);case Ta.NamedEntity:return this.stateNamedEntity(t,n)}}stateNumericStart(t,n){return n>=t.length?-1:(t.charCodeAt(n)|p0t)===Da.LOWER_X?(this.state=Ta.NumericHex,this.consumed+=1,this.stateNumericHex(t,n+1)):(this.state=Ta.NumericDecimal,this.stateNumericDecimal(t,n))}addToNumericResult(t,n,i,r){if(n!==i){const s=i-n;this.result=this.result*Math.pow(r,s)+Number.parseInt(t.substr(n,s),r),this.consumed+=s}}stateNumericHex(t,n){const i=n;for(;n>14;for(;n>14,s!==0){if(a===Da.SEMI)return this.emitNamedEntityData(this.treeIndex,s,this.consumed+this.excess);this.decodeMode!==Uf.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var t;const{result:n,decodeTree:i}=this,r=(i[n]&Up.VALUE_LENGTH)>>14;return this.emitNamedEntityData(n,r,this.consumed),(t=this.errors)===null||t===void 0||t.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(t,n,i){const{decodeTree:r}=this;return this.emitCodePoint(n===1?r[t]&~Up.VALUE_LENGTH:r[t+1],i),n===3&&this.emitCodePoint(r[t+2],i),i}end(){var t;switch(this.state){case Ta.NamedEntity:return this.result!==0&&(this.decodeMode!==Uf.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case Ta.NumericDecimal:return this.emitNumericEntity(0,2);case Ta.NumericHex:return this.emitNumericEntity(0,3);case Ta.NumericStart:return(t=this.errors)===null||t===void 0||t.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case Ta.EntityStart:return 0}}}function v0t(e,t,n,i){const r=(t&Up.BRANCH_LENGTH)>>7,s=t&Up.JUMP_TABLE;if(r===0)return s!==0&&i===s?n:-1;if(s){const c=i-s;return c<0||c>=r?-1:e[n+c]-1}let a=n,l=a+r-1;for(;a<=l;){const c=a+l>>>1,u=e[c];if(ui)l=c-1;else return e[c+r]}return-1}var yt;(function(e){e.HTML="http://www.w3.org/1999/xhtml",e.MATHML="http://www.w3.org/1998/Math/MathML",e.SVG="http://www.w3.org/2000/svg",e.XLINK="http://www.w3.org/1999/xlink",e.XML="http://www.w3.org/XML/1998/namespace",e.XMLNS="http://www.w3.org/2000/xmlns/"})(yt||(yt={}));var ab;(function(e){e.TYPE="type",e.ACTION="action",e.ENCODING="encoding",e.PROMPT="prompt",e.NAME="name",e.COLOR="color",e.FACE="face",e.SIZE="size"})(ab||(ab={}));var $c;(function(e){e.NO_QUIRKS="no-quirks",e.QUIRKS="quirks",e.LIMITED_QUIRKS="limited-quirks"})($c||($c={}));var Be;(function(e){e.A="a",e.ADDRESS="address",e.ANNOTATION_XML="annotation-xml",e.APPLET="applet",e.AREA="area",e.ARTICLE="article",e.ASIDE="aside",e.B="b",e.BASE="base",e.BASEFONT="basefont",e.BGSOUND="bgsound",e.BIG="big",e.BLOCKQUOTE="blockquote",e.BODY="body",e.BR="br",e.BUTTON="button",e.CAPTION="caption",e.CENTER="center",e.CODE="code",e.COL="col",e.COLGROUP="colgroup",e.DD="dd",e.DESC="desc",e.DETAILS="details",e.DIALOG="dialog",e.DIR="dir",e.DIV="div",e.DL="dl",e.DT="dt",e.EM="em",e.EMBED="embed",e.FIELDSET="fieldset",e.FIGCAPTION="figcaption",e.FIGURE="figure",e.FONT="font",e.FOOTER="footer",e.FOREIGN_OBJECT="foreignObject",e.FORM="form",e.FRAME="frame",e.FRAMESET="frameset",e.H1="h1",e.H2="h2",e.H3="h3",e.H4="h4",e.H5="h5",e.H6="h6",e.HEAD="head",e.HEADER="header",e.HGROUP="hgroup",e.HR="hr",e.HTML="html",e.I="i",e.IMG="img",e.IMAGE="image",e.INPUT="input",e.IFRAME="iframe",e.KEYGEN="keygen",e.LABEL="label",e.LI="li",e.LINK="link",e.LISTING="listing",e.MAIN="main",e.MALIGNMARK="malignmark",e.MARQUEE="marquee",e.MATH="math",e.MENU="menu",e.META="meta",e.MGLYPH="mglyph",e.MI="mi",e.MO="mo",e.MN="mn",e.MS="ms",e.MTEXT="mtext",e.NAV="nav",e.NOBR="nobr",e.NOFRAMES="noframes",e.NOEMBED="noembed",e.NOSCRIPT="noscript",e.OBJECT="object",e.OL="ol",e.OPTGROUP="optgroup",e.OPTION="option",e.P="p",e.PARAM="param",e.PLAINTEXT="plaintext",e.PRE="pre",e.RB="rb",e.RP="rp",e.RT="rt",e.RTC="rtc",e.RUBY="ruby",e.S="s",e.SCRIPT="script",e.SEARCH="search",e.SECTION="section",e.SELECT="select",e.SOURCE="source",e.SMALL="small",e.SPAN="span",e.STRIKE="strike",e.STRONG="strong",e.STYLE="style",e.SUB="sub",e.SUMMARY="summary",e.SUP="sup",e.TABLE="table",e.TBODY="tbody",e.TEMPLATE="template",e.TEXTAREA="textarea",e.TFOOT="tfoot",e.TD="td",e.TH="th",e.THEAD="thead",e.TITLE="title",e.TR="tr",e.TRACK="track",e.TT="tt",e.U="u",e.UL="ul",e.SVG="svg",e.VAR="var",e.WBR="wbr",e.XMP="xmp"})(Be||(Be={}));var D;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.A=1]="A",e[e.ADDRESS=2]="ADDRESS",e[e.ANNOTATION_XML=3]="ANNOTATION_XML",e[e.APPLET=4]="APPLET",e[e.AREA=5]="AREA",e[e.ARTICLE=6]="ARTICLE",e[e.ASIDE=7]="ASIDE",e[e.B=8]="B",e[e.BASE=9]="BASE",e[e.BASEFONT=10]="BASEFONT",e[e.BGSOUND=11]="BGSOUND",e[e.BIG=12]="BIG",e[e.BLOCKQUOTE=13]="BLOCKQUOTE",e[e.BODY=14]="BODY",e[e.BR=15]="BR",e[e.BUTTON=16]="BUTTON",e[e.CAPTION=17]="CAPTION",e[e.CENTER=18]="CENTER",e[e.CODE=19]="CODE",e[e.COL=20]="COL",e[e.COLGROUP=21]="COLGROUP",e[e.DD=22]="DD",e[e.DESC=23]="DESC",e[e.DETAILS=24]="DETAILS",e[e.DIALOG=25]="DIALOG",e[e.DIR=26]="DIR",e[e.DIV=27]="DIV",e[e.DL=28]="DL",e[e.DT=29]="DT",e[e.EM=30]="EM",e[e.EMBED=31]="EMBED",e[e.FIELDSET=32]="FIELDSET",e[e.FIGCAPTION=33]="FIGCAPTION",e[e.FIGURE=34]="FIGURE",e[e.FONT=35]="FONT",e[e.FOOTER=36]="FOOTER",e[e.FOREIGN_OBJECT=37]="FOREIGN_OBJECT",e[e.FORM=38]="FORM",e[e.FRAME=39]="FRAME",e[e.FRAMESET=40]="FRAMESET",e[e.H1=41]="H1",e[e.H2=42]="H2",e[e.H3=43]="H3",e[e.H4=44]="H4",e[e.H5=45]="H5",e[e.H6=46]="H6",e[e.HEAD=47]="HEAD",e[e.HEADER=48]="HEADER",e[e.HGROUP=49]="HGROUP",e[e.HR=50]="HR",e[e.HTML=51]="HTML",e[e.I=52]="I",e[e.IMG=53]="IMG",e[e.IMAGE=54]="IMAGE",e[e.INPUT=55]="INPUT",e[e.IFRAME=56]="IFRAME",e[e.KEYGEN=57]="KEYGEN",e[e.LABEL=58]="LABEL",e[e.LI=59]="LI",e[e.LINK=60]="LINK",e[e.LISTING=61]="LISTING",e[e.MAIN=62]="MAIN",e[e.MALIGNMARK=63]="MALIGNMARK",e[e.MARQUEE=64]="MARQUEE",e[e.MATH=65]="MATH",e[e.MENU=66]="MENU",e[e.META=67]="META",e[e.MGLYPH=68]="MGLYPH",e[e.MI=69]="MI",e[e.MO=70]="MO",e[e.MN=71]="MN",e[e.MS=72]="MS",e[e.MTEXT=73]="MTEXT",e[e.NAV=74]="NAV",e[e.NOBR=75]="NOBR",e[e.NOFRAMES=76]="NOFRAMES",e[e.NOEMBED=77]="NOEMBED",e[e.NOSCRIPT=78]="NOSCRIPT",e[e.OBJECT=79]="OBJECT",e[e.OL=80]="OL",e[e.OPTGROUP=81]="OPTGROUP",e[e.OPTION=82]="OPTION",e[e.P=83]="P",e[e.PARAM=84]="PARAM",e[e.PLAINTEXT=85]="PLAINTEXT",e[e.PRE=86]="PRE",e[e.RB=87]="RB",e[e.RP=88]="RP",e[e.RT=89]="RT",e[e.RTC=90]="RTC",e[e.RUBY=91]="RUBY",e[e.S=92]="S",e[e.SCRIPT=93]="SCRIPT",e[e.SEARCH=94]="SEARCH",e[e.SECTION=95]="SECTION",e[e.SELECT=96]="SELECT",e[e.SOURCE=97]="SOURCE",e[e.SMALL=98]="SMALL",e[e.SPAN=99]="SPAN",e[e.STRIKE=100]="STRIKE",e[e.STRONG=101]="STRONG",e[e.STYLE=102]="STYLE",e[e.SUB=103]="SUB",e[e.SUMMARY=104]="SUMMARY",e[e.SUP=105]="SUP",e[e.TABLE=106]="TABLE",e[e.TBODY=107]="TBODY",e[e.TEMPLATE=108]="TEMPLATE",e[e.TEXTAREA=109]="TEXTAREA",e[e.TFOOT=110]="TFOOT",e[e.TD=111]="TD",e[e.TH=112]="TH",e[e.THEAD=113]="THEAD",e[e.TITLE=114]="TITLE",e[e.TR=115]="TR",e[e.TRACK=116]="TRACK",e[e.TT=117]="TT",e[e.U=118]="U",e[e.UL=119]="UL",e[e.SVG=120]="SVG",e[e.VAR=121]="VAR",e[e.WBR=122]="WBR",e[e.XMP=123]="XMP"})(D||(D={}));const x0t=new Map([[Be.A,D.A],[Be.ADDRESS,D.ADDRESS],[Be.ANNOTATION_XML,D.ANNOTATION_XML],[Be.APPLET,D.APPLET],[Be.AREA,D.AREA],[Be.ARTICLE,D.ARTICLE],[Be.ASIDE,D.ASIDE],[Be.B,D.B],[Be.BASE,D.BASE],[Be.BASEFONT,D.BASEFONT],[Be.BGSOUND,D.BGSOUND],[Be.BIG,D.BIG],[Be.BLOCKQUOTE,D.BLOCKQUOTE],[Be.BODY,D.BODY],[Be.BR,D.BR],[Be.BUTTON,D.BUTTON],[Be.CAPTION,D.CAPTION],[Be.CENTER,D.CENTER],[Be.CODE,D.CODE],[Be.COL,D.COL],[Be.COLGROUP,D.COLGROUP],[Be.DD,D.DD],[Be.DESC,D.DESC],[Be.DETAILS,D.DETAILS],[Be.DIALOG,D.DIALOG],[Be.DIR,D.DIR],[Be.DIV,D.DIV],[Be.DL,D.DL],[Be.DT,D.DT],[Be.EM,D.EM],[Be.EMBED,D.EMBED],[Be.FIELDSET,D.FIELDSET],[Be.FIGCAPTION,D.FIGCAPTION],[Be.FIGURE,D.FIGURE],[Be.FONT,D.FONT],[Be.FOOTER,D.FOOTER],[Be.FOREIGN_OBJECT,D.FOREIGN_OBJECT],[Be.FORM,D.FORM],[Be.FRAME,D.FRAME],[Be.FRAMESET,D.FRAMESET],[Be.H1,D.H1],[Be.H2,D.H2],[Be.H3,D.H3],[Be.H4,D.H4],[Be.H5,D.H5],[Be.H6,D.H6],[Be.HEAD,D.HEAD],[Be.HEADER,D.HEADER],[Be.HGROUP,D.HGROUP],[Be.HR,D.HR],[Be.HTML,D.HTML],[Be.I,D.I],[Be.IMG,D.IMG],[Be.IMAGE,D.IMAGE],[Be.INPUT,D.INPUT],[Be.IFRAME,D.IFRAME],[Be.KEYGEN,D.KEYGEN],[Be.LABEL,D.LABEL],[Be.LI,D.LI],[Be.LINK,D.LINK],[Be.LISTING,D.LISTING],[Be.MAIN,D.MAIN],[Be.MALIGNMARK,D.MALIGNMARK],[Be.MARQUEE,D.MARQUEE],[Be.MATH,D.MATH],[Be.MENU,D.MENU],[Be.META,D.META],[Be.MGLYPH,D.MGLYPH],[Be.MI,D.MI],[Be.MO,D.MO],[Be.MN,D.MN],[Be.MS,D.MS],[Be.MTEXT,D.MTEXT],[Be.NAV,D.NAV],[Be.NOBR,D.NOBR],[Be.NOFRAMES,D.NOFRAMES],[Be.NOEMBED,D.NOEMBED],[Be.NOSCRIPT,D.NOSCRIPT],[Be.OBJECT,D.OBJECT],[Be.OL,D.OL],[Be.OPTGROUP,D.OPTGROUP],[Be.OPTION,D.OPTION],[Be.P,D.P],[Be.PARAM,D.PARAM],[Be.PLAINTEXT,D.PLAINTEXT],[Be.PRE,D.PRE],[Be.RB,D.RB],[Be.RP,D.RP],[Be.RT,D.RT],[Be.RTC,D.RTC],[Be.RUBY,D.RUBY],[Be.S,D.S],[Be.SCRIPT,D.SCRIPT],[Be.SEARCH,D.SEARCH],[Be.SECTION,D.SECTION],[Be.SELECT,D.SELECT],[Be.SOURCE,D.SOURCE],[Be.SMALL,D.SMALL],[Be.SPAN,D.SPAN],[Be.STRIKE,D.STRIKE],[Be.STRONG,D.STRONG],[Be.STYLE,D.STYLE],[Be.SUB,D.SUB],[Be.SUMMARY,D.SUMMARY],[Be.SUP,D.SUP],[Be.TABLE,D.TABLE],[Be.TBODY,D.TBODY],[Be.TEMPLATE,D.TEMPLATE],[Be.TEXTAREA,D.TEXTAREA],[Be.TFOOT,D.TFOOT],[Be.TD,D.TD],[Be.TH,D.TH],[Be.THEAD,D.THEAD],[Be.TITLE,D.TITLE],[Be.TR,D.TR],[Be.TRACK,D.TRACK],[Be.TT,D.TT],[Be.U,D.U],[Be.UL,D.UL],[Be.SVG,D.SVG],[Be.VAR,D.VAR],[Be.WBR,D.WBR],[Be.XMP,D.XMP]]);function Gx(e){var t;return(t=x0t.get(e))!==null&&t!==void 0?t:D.UNKNOWN}const xt=D,w0t={[yt.HTML]:new Set([xt.ADDRESS,xt.APPLET,xt.AREA,xt.ARTICLE,xt.ASIDE,xt.BASE,xt.BASEFONT,xt.BGSOUND,xt.BLOCKQUOTE,xt.BODY,xt.BR,xt.BUTTON,xt.CAPTION,xt.CENTER,xt.COL,xt.COLGROUP,xt.DD,xt.DETAILS,xt.DIR,xt.DIV,xt.DL,xt.DT,xt.EMBED,xt.FIELDSET,xt.FIGCAPTION,xt.FIGURE,xt.FOOTER,xt.FORM,xt.FRAME,xt.FRAMESET,xt.H1,xt.H2,xt.H3,xt.H4,xt.H5,xt.H6,xt.HEAD,xt.HEADER,xt.HGROUP,xt.HR,xt.HTML,xt.IFRAME,xt.IMG,xt.INPUT,xt.LI,xt.LINK,xt.LISTING,xt.MAIN,xt.MARQUEE,xt.MENU,xt.META,xt.NAV,xt.NOEMBED,xt.NOFRAMES,xt.NOSCRIPT,xt.OBJECT,xt.OL,xt.P,xt.PARAM,xt.PLAINTEXT,xt.PRE,xt.SCRIPT,xt.SECTION,xt.SELECT,xt.SOURCE,xt.STYLE,xt.SUMMARY,xt.TABLE,xt.TBODY,xt.TD,xt.TEMPLATE,xt.TEXTAREA,xt.TFOOT,xt.TH,xt.THEAD,xt.TITLE,xt.TR,xt.TRACK,xt.UL,xt.WBR,xt.XMP]),[yt.MATHML]:new Set([xt.MI,xt.MO,xt.MN,xt.MS,xt.MTEXT,xt.ANNOTATION_XML]),[yt.SVG]:new Set([xt.TITLE,xt.FOREIGN_OBJECT,xt.DESC]),[yt.XLINK]:new Set,[yt.XML]:new Set,[yt.XMLNS]:new Set},z6=new Set([xt.H1,xt.H2,xt.H3,xt.H4,xt.H5,xt.H6]);Be.STYLE,Be.SCRIPT,Be.XMP,Be.IFRAME,Be.NOEMBED,Be.NOFRAMES,Be.PLAINTEXT;var de;(function(e){e[e.DATA=0]="DATA",e[e.RCDATA=1]="RCDATA",e[e.RAWTEXT=2]="RAWTEXT",e[e.SCRIPT_DATA=3]="SCRIPT_DATA",e[e.PLAINTEXT=4]="PLAINTEXT",e[e.TAG_OPEN=5]="TAG_OPEN",e[e.END_TAG_OPEN=6]="END_TAG_OPEN",e[e.TAG_NAME=7]="TAG_NAME",e[e.RCDATA_LESS_THAN_SIGN=8]="RCDATA_LESS_THAN_SIGN",e[e.RCDATA_END_TAG_OPEN=9]="RCDATA_END_TAG_OPEN",e[e.RCDATA_END_TAG_NAME=10]="RCDATA_END_TAG_NAME",e[e.RAWTEXT_LESS_THAN_SIGN=11]="RAWTEXT_LESS_THAN_SIGN",e[e.RAWTEXT_END_TAG_OPEN=12]="RAWTEXT_END_TAG_OPEN",e[e.RAWTEXT_END_TAG_NAME=13]="RAWTEXT_END_TAG_NAME",e[e.SCRIPT_DATA_LESS_THAN_SIGN=14]="SCRIPT_DATA_LESS_THAN_SIGN",e[e.SCRIPT_DATA_END_TAG_OPEN=15]="SCRIPT_DATA_END_TAG_OPEN",e[e.SCRIPT_DATA_END_TAG_NAME=16]="SCRIPT_DATA_END_TAG_NAME",e[e.SCRIPT_DATA_ESCAPE_START=17]="SCRIPT_DATA_ESCAPE_START",e[e.SCRIPT_DATA_ESCAPE_START_DASH=18]="SCRIPT_DATA_ESCAPE_START_DASH",e[e.SCRIPT_DATA_ESCAPED=19]="SCRIPT_DATA_ESCAPED",e[e.SCRIPT_DATA_ESCAPED_DASH=20]="SCRIPT_DATA_ESCAPED_DASH",e[e.SCRIPT_DATA_ESCAPED_DASH_DASH=21]="SCRIPT_DATA_ESCAPED_DASH_DASH",e[e.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN",e[e.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]="SCRIPT_DATA_ESCAPED_END_TAG_OPEN",e[e.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]="SCRIPT_DATA_ESCAPED_END_TAG_NAME",e[e.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]="SCRIPT_DATA_DOUBLE_ESCAPE_START",e[e.SCRIPT_DATA_DOUBLE_ESCAPED=26]="SCRIPT_DATA_DOUBLE_ESCAPED",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN",e[e.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]="SCRIPT_DATA_DOUBLE_ESCAPE_END",e[e.BEFORE_ATTRIBUTE_NAME=31]="BEFORE_ATTRIBUTE_NAME",e[e.ATTRIBUTE_NAME=32]="ATTRIBUTE_NAME",e[e.AFTER_ATTRIBUTE_NAME=33]="AFTER_ATTRIBUTE_NAME",e[e.BEFORE_ATTRIBUTE_VALUE=34]="BEFORE_ATTRIBUTE_VALUE",e[e.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]="ATTRIBUTE_VALUE_DOUBLE_QUOTED",e[e.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]="ATTRIBUTE_VALUE_SINGLE_QUOTED",e[e.ATTRIBUTE_VALUE_UNQUOTED=37]="ATTRIBUTE_VALUE_UNQUOTED",e[e.AFTER_ATTRIBUTE_VALUE_QUOTED=38]="AFTER_ATTRIBUTE_VALUE_QUOTED",e[e.SELF_CLOSING_START_TAG=39]="SELF_CLOSING_START_TAG",e[e.BOGUS_COMMENT=40]="BOGUS_COMMENT",e[e.MARKUP_DECLARATION_OPEN=41]="MARKUP_DECLARATION_OPEN",e[e.COMMENT_START=42]="COMMENT_START",e[e.COMMENT_START_DASH=43]="COMMENT_START_DASH",e[e.COMMENT=44]="COMMENT",e[e.COMMENT_LESS_THAN_SIGN=45]="COMMENT_LESS_THAN_SIGN",e[e.COMMENT_LESS_THAN_SIGN_BANG=46]="COMMENT_LESS_THAN_SIGN_BANG",e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]="COMMENT_LESS_THAN_SIGN_BANG_DASH",e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH",e[e.COMMENT_END_DASH=49]="COMMENT_END_DASH",e[e.COMMENT_END=50]="COMMENT_END",e[e.COMMENT_END_BANG=51]="COMMENT_END_BANG",e[e.DOCTYPE=52]="DOCTYPE",e[e.BEFORE_DOCTYPE_NAME=53]="BEFORE_DOCTYPE_NAME",e[e.DOCTYPE_NAME=54]="DOCTYPE_NAME",e[e.AFTER_DOCTYPE_NAME=55]="AFTER_DOCTYPE_NAME",e[e.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]="AFTER_DOCTYPE_PUBLIC_KEYWORD",e[e.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER",e[e.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED",e[e.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED",e[e.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]="AFTER_DOCTYPE_PUBLIC_IDENTIFIER",e[e.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS",e[e.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]="AFTER_DOCTYPE_SYSTEM_KEYWORD",e[e.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER",e[e.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED",e[e.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED",e[e.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]="AFTER_DOCTYPE_SYSTEM_IDENTIFIER",e[e.BOGUS_DOCTYPE=67]="BOGUS_DOCTYPE",e[e.CDATA_SECTION=68]="CDATA_SECTION",e[e.CDATA_SECTION_BRACKET=69]="CDATA_SECTION_BRACKET",e[e.CDATA_SECTION_END=70]="CDATA_SECTION_END",e[e.CHARACTER_REFERENCE=71]="CHARACTER_REFERENCE",e[e.AMBIGUOUS_AMPERSAND=72]="AMBIGUOUS_AMPERSAND"})(de||(de={}));const $s={DATA:de.DATA,RCDATA:de.RCDATA,RAWTEXT:de.RAWTEXT,SCRIPT_DATA:de.SCRIPT_DATA,PLAINTEXT:de.PLAINTEXT,CDATA_SECTION:de.CDATA_SECTION};function O0t(e){return e>=oe.DIGIT_0&&e<=oe.DIGIT_9}function $w(e){return e>=oe.LATIN_CAPITAL_A&&e<=oe.LATIN_CAPITAL_Z}function S0t(e){return e>=oe.LATIN_SMALL_A&&e<=oe.LATIN_SMALL_Z}function gp(e){return S0t(e)||$w(e)}function yY(e){return gp(e)||O0t(e)}function IT(e){return e+32}function tEe(e){return e===oe.SPACE||e===oe.LINE_FEED||e===oe.TABULATION||e===oe.FORM_FEED}function vY(e){return tEe(e)||e===oe.SOLIDUS||e===oe.GREATER_THAN_SIGN}function k0t(e){return e===oe.NULL?et.nullCharacterReference:e>1114111?et.characterReferenceOutsideUnicodeRange:Yke(e)?et.surrogateCharacterReference:Jke(e)?et.noncharacterCharacterReference:Zke(e)||e===oe.CARRIAGE_RETURN?et.controlCharacterReference:null}class E0t{constructor(t,n){this.options=t,this.handler=n,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName="",this.active=!1,this.state=de.DATA,this.returnState=de.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:"",value:""},this.preprocessor=new u0t(n),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new y0t(d0t,(i,r)=>{this.preprocessor.pos=this.entityStartPos+r-1,this._flushCodePointConsumedAsCharacterReference(i)},n.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(et.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:i=>{this._err(et.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+i)},validateNumericCharacterReference:i=>{const r=k0t(i);r&&this._err(r,1)}}:void 0)}_err(t,n=0){var i,r;(r=(i=this.handler).onParseError)===null||r===void 0||r.call(i,this.preprocessor.getError(t,n))}getCurrentLocation(t){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-t,startOffset:this.preprocessor.offset-t,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;const t=this._consume();this._ensureHibernation()||this._callState(t)}this.inLoop=!1}}pause(){this.paused=!0}resume(t){if(!this.paused)throw new Error("Parser was already resumed");this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||t==null||t())}write(t,n,i){this.active=!0,this.preprocessor.write(t,n),this._runParsingLoop(),this.paused||i==null||i()}insertHtmlAtCurrentPos(t){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(t),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(t){this.consumedAfterSnapshot+=t;for(let n=0;n0&&this._err(et.endTagWithAttributes),t.selfClosing&&this._err(et.endTagWithTrailingSolidus),this.handler.onEndTag(t)),this.preprocessor.dropParsedChunk()}emitCurrentComment(t){this.prepareToken(t),this.handler.onComment(t),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(t){this.prepareToken(t),this.handler.onDoctype(t),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(t){if(this.currentCharacterToken){switch(t&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=t.startLine,this.currentCharacterToken.location.endCol=t.startCol,this.currentCharacterToken.location.endOffset=t.startOffset),this.currentCharacterToken.type){case di.CHARACTER:{this.handler.onCharacter(this.currentCharacterToken);break}case di.NULL_CHARACTER:{this.handler.onNullCharacter(this.currentCharacterToken);break}case di.WHITESPACE_CHARACTER:{this.handler.onWhitespaceCharacter(this.currentCharacterToken);break}}this.currentCharacterToken=null}}_emitEOFToken(){const t=this.getCurrentLocation(0);t&&(t.endLine=t.startLine,t.endCol=t.startCol,t.endOffset=t.startOffset),this._emitCurrentCharacterToken(t),this.handler.onEof({type:di.EOF,location:t}),this.active=!1}_appendCharToCurrentCharacterToken(t,n){if(this.currentCharacterToken)if(this.currentCharacterToken.type===t){this.currentCharacterToken.chars+=n;return}else this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk();this._createCharacterToken(t,n)}_emitCodePoint(t){const n=tEe(t)?di.WHITESPACE_CHARACTER:t===oe.NULL?di.NULL_CHARACTER:di.CHARACTER;this._appendCharToCurrentCharacterToken(n,String.fromCodePoint(t))}_emitChars(t){this._appendCharToCurrentCharacterToken(di.CHARACTER,t)}_startCharacterReference(){this.returnState=this.state,this.state=de.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?Uf.Attribute:Uf.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===de.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===de.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===de.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(t){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(t):this._emitCodePoint(t)}_callState(t){switch(this.state){case de.DATA:{this._stateData(t);break}case de.RCDATA:{this._stateRcdata(t);break}case de.RAWTEXT:{this._stateRawtext(t);break}case de.SCRIPT_DATA:{this._stateScriptData(t);break}case de.PLAINTEXT:{this._statePlaintext(t);break}case de.TAG_OPEN:{this._stateTagOpen(t);break}case de.END_TAG_OPEN:{this._stateEndTagOpen(t);break}case de.TAG_NAME:{this._stateTagName(t);break}case de.RCDATA_LESS_THAN_SIGN:{this._stateRcdataLessThanSign(t);break}case de.RCDATA_END_TAG_OPEN:{this._stateRcdataEndTagOpen(t);break}case de.RCDATA_END_TAG_NAME:{this._stateRcdataEndTagName(t);break}case de.RAWTEXT_LESS_THAN_SIGN:{this._stateRawtextLessThanSign(t);break}case de.RAWTEXT_END_TAG_OPEN:{this._stateRawtextEndTagOpen(t);break}case de.RAWTEXT_END_TAG_NAME:{this._stateRawtextEndTagName(t);break}case de.SCRIPT_DATA_LESS_THAN_SIGN:{this._stateScriptDataLessThanSign(t);break}case de.SCRIPT_DATA_END_TAG_OPEN:{this._stateScriptDataEndTagOpen(t);break}case de.SCRIPT_DATA_END_TAG_NAME:{this._stateScriptDataEndTagName(t);break}case de.SCRIPT_DATA_ESCAPE_START:{this._stateScriptDataEscapeStart(t);break}case de.SCRIPT_DATA_ESCAPE_START_DASH:{this._stateScriptDataEscapeStartDash(t);break}case de.SCRIPT_DATA_ESCAPED:{this._stateScriptDataEscaped(t);break}case de.SCRIPT_DATA_ESCAPED_DASH:{this._stateScriptDataEscapedDash(t);break}case de.SCRIPT_DATA_ESCAPED_DASH_DASH:{this._stateScriptDataEscapedDashDash(t);break}case de.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataEscapedLessThanSign(t);break}case de.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:{this._stateScriptDataEscapedEndTagOpen(t);break}case de.SCRIPT_DATA_ESCAPED_END_TAG_NAME:{this._stateScriptDataEscapedEndTagName(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPE_START:{this._stateScriptDataDoubleEscapeStart(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPED:{this._stateScriptDataDoubleEscaped(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:{this._stateScriptDataDoubleEscapedDash(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:{this._stateScriptDataDoubleEscapedDashDash(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataDoubleEscapedLessThanSign(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPE_END:{this._stateScriptDataDoubleEscapeEnd(t);break}case de.BEFORE_ATTRIBUTE_NAME:{this._stateBeforeAttributeName(t);break}case de.ATTRIBUTE_NAME:{this._stateAttributeName(t);break}case de.AFTER_ATTRIBUTE_NAME:{this._stateAfterAttributeName(t);break}case de.BEFORE_ATTRIBUTE_VALUE:{this._stateBeforeAttributeValue(t);break}case de.ATTRIBUTE_VALUE_DOUBLE_QUOTED:{this._stateAttributeValueDoubleQuoted(t);break}case de.ATTRIBUTE_VALUE_SINGLE_QUOTED:{this._stateAttributeValueSingleQuoted(t);break}case de.ATTRIBUTE_VALUE_UNQUOTED:{this._stateAttributeValueUnquoted(t);break}case de.AFTER_ATTRIBUTE_VALUE_QUOTED:{this._stateAfterAttributeValueQuoted(t);break}case de.SELF_CLOSING_START_TAG:{this._stateSelfClosingStartTag(t);break}case de.BOGUS_COMMENT:{this._stateBogusComment(t);break}case de.MARKUP_DECLARATION_OPEN:{this._stateMarkupDeclarationOpen(t);break}case de.COMMENT_START:{this._stateCommentStart(t);break}case de.COMMENT_START_DASH:{this._stateCommentStartDash(t);break}case de.COMMENT:{this._stateComment(t);break}case de.COMMENT_LESS_THAN_SIGN:{this._stateCommentLessThanSign(t);break}case de.COMMENT_LESS_THAN_SIGN_BANG:{this._stateCommentLessThanSignBang(t);break}case de.COMMENT_LESS_THAN_SIGN_BANG_DASH:{this._stateCommentLessThanSignBangDash(t);break}case de.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:{this._stateCommentLessThanSignBangDashDash(t);break}case de.COMMENT_END_DASH:{this._stateCommentEndDash(t);break}case de.COMMENT_END:{this._stateCommentEnd(t);break}case de.COMMENT_END_BANG:{this._stateCommentEndBang(t);break}case de.DOCTYPE:{this._stateDoctype(t);break}case de.BEFORE_DOCTYPE_NAME:{this._stateBeforeDoctypeName(t);break}case de.DOCTYPE_NAME:{this._stateDoctypeName(t);break}case de.AFTER_DOCTYPE_NAME:{this._stateAfterDoctypeName(t);break}case de.AFTER_DOCTYPE_PUBLIC_KEYWORD:{this._stateAfterDoctypePublicKeyword(t);break}case de.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateBeforeDoctypePublicIdentifier(t);break}case de.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypePublicIdentifierDoubleQuoted(t);break}case de.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypePublicIdentifierSingleQuoted(t);break}case de.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateAfterDoctypePublicIdentifier(t);break}case de.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:{this._stateBetweenDoctypePublicAndSystemIdentifiers(t);break}case de.AFTER_DOCTYPE_SYSTEM_KEYWORD:{this._stateAfterDoctypeSystemKeyword(t);break}case de.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateBeforeDoctypeSystemIdentifier(t);break}case de.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypeSystemIdentifierDoubleQuoted(t);break}case de.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypeSystemIdentifierSingleQuoted(t);break}case de.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateAfterDoctypeSystemIdentifier(t);break}case de.BOGUS_DOCTYPE:{this._stateBogusDoctype(t);break}case de.CDATA_SECTION:{this._stateCdataSection(t);break}case de.CDATA_SECTION_BRACKET:{this._stateCdataSectionBracket(t);break}case de.CDATA_SECTION_END:{this._stateCdataSectionEnd(t);break}case de.CHARACTER_REFERENCE:{this._stateCharacterReference();break}case de.AMBIGUOUS_AMPERSAND:{this._stateAmbiguousAmpersand(t);break}default:throw new Error("Unknown state")}}_stateData(t){switch(t){case oe.LESS_THAN_SIGN:{this.state=de.TAG_OPEN;break}case oe.AMPERSAND:{this._startCharacterReference();break}case oe.NULL:{this._err(et.unexpectedNullCharacter),this._emitCodePoint(t);break}case oe.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateRcdata(t){switch(t){case oe.AMPERSAND:{this._startCharacterReference();break}case oe.LESS_THAN_SIGN:{this.state=de.RCDATA_LESS_THAN_SIGN;break}case oe.NULL:{this._err(et.unexpectedNullCharacter),this._emitChars(Zr);break}case oe.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateRawtext(t){switch(t){case oe.LESS_THAN_SIGN:{this.state=de.RAWTEXT_LESS_THAN_SIGN;break}case oe.NULL:{this._err(et.unexpectedNullCharacter),this._emitChars(Zr);break}case oe.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateScriptData(t){switch(t){case oe.LESS_THAN_SIGN:{this.state=de.SCRIPT_DATA_LESS_THAN_SIGN;break}case oe.NULL:{this._err(et.unexpectedNullCharacter),this._emitChars(Zr);break}case oe.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_statePlaintext(t){switch(t){case oe.NULL:{this._err(et.unexpectedNullCharacter),this._emitChars(Zr);break}case oe.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateTagOpen(t){if(gp(t))this._createStartTagToken(),this.state=de.TAG_NAME,this._stateTagName(t);else switch(t){case oe.EXCLAMATION_MARK:{this.state=de.MARKUP_DECLARATION_OPEN;break}case oe.SOLIDUS:{this.state=de.END_TAG_OPEN;break}case oe.QUESTION_MARK:{this._err(et.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=de.BOGUS_COMMENT,this._stateBogusComment(t);break}case oe.EOF:{this._err(et.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken();break}default:this._err(et.invalidFirstCharacterOfTagName),this._emitChars("<"),this.state=de.DATA,this._stateData(t)}}_stateEndTagOpen(t){if(gp(t))this._createEndTagToken(),this.state=de.TAG_NAME,this._stateTagName(t);else switch(t){case oe.GREATER_THAN_SIGN:{this._err(et.missingEndTagName),this.state=de.DATA;break}case oe.EOF:{this._err(et.eofBeforeTagName),this._emitChars("");break}case oe.NULL:{this._err(et.unexpectedNullCharacter),this.state=de.SCRIPT_DATA_ESCAPED,this._emitChars(Zr);break}case oe.EOF:{this._err(et.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=de.SCRIPT_DATA_ESCAPED,this._emitCodePoint(t)}}_stateScriptDataEscapedLessThanSign(t){t===oe.SOLIDUS?this.state=de.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:gp(t)?(this._emitChars("<"),this.state=de.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(t)):(this._emitChars("<"),this.state=de.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(t))}_stateScriptDataEscapedEndTagOpen(t){gp(t)?(this.state=de.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(t)):(this._emitChars("");break}case oe.NULL:{this._err(et.unexpectedNullCharacter),this.state=de.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(Zr);break}case oe.EOF:{this._err(et.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=de.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(t)}}_stateScriptDataDoubleEscapedLessThanSign(t){t===oe.SOLIDUS?(this.state=de.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars("/")):(this.state=de.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(t))}_stateScriptDataDoubleEscapeEnd(t){if(this.preprocessor.startsWith(el.SCRIPT,!1)&&vY(this.preprocessor.peek(el.SCRIPT.length))){this._emitCodePoint(t);for(let n=0;n0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,!0)}replace(t,n){const i=this._indexOf(t);this.items[i]=n,i===this.stackTop&&(this.current=n)}insertAfter(t,n,i){const r=this._indexOf(t)+1;this.items.splice(r,0,n),this.tagIDs.splice(r,0,i),this.stackTop++,r===this.stackTop&&this._updateCurrentElement(),this.current&&this.currentTagId!==void 0&&this.handler.onItemPush(this.current,this.currentTagId,r===this.stackTop)}popUntilTagNamePopped(t){let n=this.stackTop+1;do n=this.tagIDs.lastIndexOf(t,n-1);while(n>0&&this.treeAdapter.getNamespaceURI(this.items[n])!==yt.HTML);this.shortenToLength(Math.max(n,0))}shortenToLength(t){for(;this.stackTop>=t;){const n=this.current;this.tmplCount>0&&this._isInTemplate()&&(this.tmplCount-=1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(n,this.stackTop=0;i--)if(t.has(this.tagIDs[i])&&this.treeAdapter.getNamespaceURI(this.items[i])===n)return i;return-1}clearBackTo(t,n){const i=this._indexOfTagNames(t,n);this.shortenToLength(i+1)}clearBackToTableContext(){this.clearBackTo(N0t,yt.HTML)}clearBackToTableBodyContext(){this.clearBackTo(_0t,yt.HTML)}clearBackToTableRowContext(){this.clearBackTo(A0t,yt.HTML)}remove(t){const n=this._indexOf(t);n>=0&&(n===this.stackTop?this.pop():(this.items.splice(n,1),this.tagIDs.splice(n,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===D.BODY?this.items[1]:null}contains(t){return this._indexOf(t)>-1}getCommonAncestor(t){const n=this._indexOf(t)-1;return n>=0?this.items[n]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===D.HTML}hasInDynamicScope(t,n){for(let i=this.stackTop;i>=0;i--){const r=this.tagIDs[i];switch(this.treeAdapter.getNamespaceURI(this.items[i])){case yt.HTML:{if(r===t)return!0;if(n.has(r))return!1;break}case yt.SVG:{if(OY.has(r))return!1;break}case yt.MATHML:{if(wY.has(r))return!1;break}}}return!0}hasInScope(t){return this.hasInDynamicScope(t,gN)}hasInListItemScope(t){return this.hasInDynamicScope(t,C0t)}hasInButtonScope(t){return this.hasInDynamicScope(t,T0t)}hasNumberedHeaderInScope(){for(let t=this.stackTop;t>=0;t--){const n=this.tagIDs[t];switch(this.treeAdapter.getNamespaceURI(this.items[t])){case yt.HTML:{if(z6.has(n))return!0;if(gN.has(n))return!1;break}case yt.SVG:{if(OY.has(n))return!1;break}case yt.MATHML:{if(wY.has(n))return!1;break}}}return!0}hasInTableScope(t){for(let n=this.stackTop;n>=0;n--)if(this.treeAdapter.getNamespaceURI(this.items[n])===yt.HTML)switch(this.tagIDs[n]){case t:return!0;case D.TABLE:case D.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===yt.HTML)switch(this.tagIDs[t]){case D.TBODY:case D.THEAD:case D.TFOOT:return!0;case D.TABLE:case D.HTML:return!1}return!0}hasInSelectScope(t){for(let n=this.stackTop;n>=0;n--)if(this.treeAdapter.getNamespaceURI(this.items[n])===yt.HTML)switch(this.tagIDs[n]){case t:return!0;case D.OPTION:case D.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;this.currentTagId!==void 0&&nEe.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;this.currentTagId!==void 0&&xY.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(t){for(;this.currentTagId!==void 0&&this.currentTagId!==t&&xY.has(this.currentTagId);)this.pop()}}const $M=3;var md;(function(e){e[e.Marker=0]="Marker",e[e.Element=1]="Element"})(md||(md={}));const SY={type:md.Marker};class I0t{constructor(t){this.treeAdapter=t,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(t,n){const i=[],r=n.length,s=this.treeAdapter.getTagName(t),a=this.treeAdapter.getNamespaceURI(t);for(let l=0;l[a.name,a.value]));let s=0;for(let a=0;ar.get(c.name)===c.value)&&(s+=1,s>=$M&&this.entries.splice(l.idx,1))}}insertMarker(){this.entries.unshift(SY)}pushElement(t,n){this._ensureNoahArkCondition(t),this.entries.unshift({type:md.Element,element:t,token:n})}insertElementAfterBookmark(t,n){const i=this.entries.indexOf(this.bookmark);this.entries.splice(i,0,{type:md.Element,element:t,token:n})}removeEntry(t){const n=this.entries.indexOf(t);n!==-1&&this.entries.splice(n,1)}clearToLastMarker(){const t=this.entries.indexOf(SY);t===-1?this.entries.length=0:this.entries.splice(0,t+1)}getElementEntryInScopeWithTagName(t){const n=this.entries.find(i=>i.type===md.Marker||this.treeAdapter.getTagName(i.element)===t);return n&&n.type===md.Element?n:null}getElementEntry(t){return this.entries.find(n=>n.type===md.Element&&n.element===t)}}const bp={createDocument(){return{nodeName:"#document",mode:$c.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:"#document-fragment",childNodes:[]}},createElement(e,t,n){return{nodeName:e,tagName:e,attrs:n,namespaceURI:t,childNodes:[],parentNode:null}},createCommentNode(e){return{nodeName:"#comment",data:e,parentNode:null}},createTextNode(e){return{nodeName:"#text",value:e,parentNode:null}},appendChild(e,t){e.childNodes.push(t),t.parentNode=e},insertBefore(e,t,n){const i=e.childNodes.indexOf(n);e.childNodes.splice(i,0,t),t.parentNode=e},setTemplateContent(e,t){e.content=t},getTemplateContent(e){return e.content},setDocumentType(e,t,n,i){const r=e.childNodes.find(s=>s.nodeName==="#documentType");if(r)r.name=t,r.publicId=n,r.systemId=i;else{const s={nodeName:"#documentType",name:t,publicId:n,systemId:i,parentNode:null};bp.appendChild(e,s)}},setDocumentMode(e,t){e.mode=t},getDocumentMode(e){return e.mode},detachNode(e){if(e.parentNode){const t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null}},insertText(e,t){if(e.childNodes.length>0){const n=e.childNodes[e.childNodes.length-1];if(bp.isTextNode(n)){n.value+=t;return}}bp.appendChild(e,bp.createTextNode(t))},insertTextBefore(e,t,n){const i=e.childNodes[e.childNodes.indexOf(n)-1];i&&bp.isTextNode(i)?i.value+=t:bp.insertBefore(e,bp.createTextNode(t),n)},adoptAttributes(e,t){const n=new Set(e.attrs.map(i=>i.name));for(let i=0;ie.startsWith(n))}function F0t(e){return e.name===iEe&&e.publicId===null&&(e.systemId===null||e.systemId===P0t)}function B0t(e){if(e.name!==iEe)return $c.QUIRKS;const{systemId:t}=e;if(t&&t.toLowerCase()===D0t)return $c.QUIRKS;let{publicId:n}=e;if(n!==null){if(n=n.toLowerCase(),L0t.has(n))return $c.QUIRKS;let i=t===null?M0t:rEe;if(kY(n,i))return $c.QUIRKS;if(i=t===null?sEe:$0t,kY(n,i))return $c.LIMITED_QUIRKS}return $c.NO_QUIRKS}const EY={TEXT_HTML:"text/html",APPLICATION_XML:"application/xhtml+xml"},U0t="definitionurl",Q0t="definitionURL",z0t=new Map(["attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(e=>[e.toLowerCase(),e])),V0t=new Map([["xlink:actuate",{prefix:"xlink",name:"actuate",namespace:yt.XLINK}],["xlink:arcrole",{prefix:"xlink",name:"arcrole",namespace:yt.XLINK}],["xlink:href",{prefix:"xlink",name:"href",namespace:yt.XLINK}],["xlink:role",{prefix:"xlink",name:"role",namespace:yt.XLINK}],["xlink:show",{prefix:"xlink",name:"show",namespace:yt.XLINK}],["xlink:title",{prefix:"xlink",name:"title",namespace:yt.XLINK}],["xlink:type",{prefix:"xlink",name:"type",namespace:yt.XLINK}],["xml:lang",{prefix:"xml",name:"lang",namespace:yt.XML}],["xml:space",{prefix:"xml",name:"space",namespace:yt.XML}],["xmlns",{prefix:"",name:"xmlns",namespace:yt.XMLNS}],["xmlns:xlink",{prefix:"xmlns",name:"xlink",namespace:yt.XMLNS}]]),H0t=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(e=>[e.toLowerCase(),e])),q0t=new Set([D.B,D.BIG,D.BLOCKQUOTE,D.BODY,D.BR,D.CENTER,D.CODE,D.DD,D.DIV,D.DL,D.DT,D.EM,D.EMBED,D.H1,D.H2,D.H3,D.H4,D.H5,D.H6,D.HEAD,D.HR,D.I,D.IMG,D.LI,D.LISTING,D.MENU,D.META,D.NOBR,D.OL,D.P,D.PRE,D.RUBY,D.S,D.SMALL,D.SPAN,D.STRONG,D.STRIKE,D.SUB,D.SUP,D.TABLE,D.TT,D.U,D.UL,D.VAR]);function W0t(e){const t=e.tagID;return t===D.FONT&&e.attrs.some(({name:i})=>i===ab.COLOR||i===ab.SIZE||i===ab.FACE)||q0t.has(t)}function aEe(e){for(let t=0;t0&&this._setContextModes(t,n)}onItemPop(t,n){var i,r;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(t,this.currentToken),(r=(i=this.treeAdapter).onItemPop)===null||r===void 0||r.call(i,t,this.openElements.current),n){let s,a;this.openElements.stackTop===0&&this.fragmentContext?(s=this.fragmentContext,a=this.fragmentContextID):{current:s,currentTagId:a}=this.openElements,this._setContextModes(s,a)}}_setContextModes(t,n){const i=t===this.document||t&&this.treeAdapter.getNamespaceURI(t)===yt.HTML;this.currentNotInHTML=!i,this.tokenizer.inForeignNode=!i&&t!==void 0&&n!==void 0&&!this._isIntegrationPoint(n,t)}_switchToTextParsing(t,n){this._insertElement(t,yt.HTML),this.tokenizer.state=n,this.originalInsertionMode=this.insertionMode,this.insertionMode=me.TEXT}switchToPlaintextParsing(){this.insertionMode=me.TEXT,this.originalInsertionMode=me.IN_BODY,this.tokenizer.state=$s.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let t=this.fragmentContext;for(;t;){if(this.treeAdapter.getTagName(t)===Be.FORM){this.formElement=t;break}t=this.treeAdapter.getParentNode(t)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==yt.HTML))switch(this.fragmentContextID){case D.TITLE:case D.TEXTAREA:{this.tokenizer.state=$s.RCDATA;break}case D.STYLE:case D.XMP:case D.IFRAME:case D.NOEMBED:case D.NOFRAMES:case D.NOSCRIPT:{this.tokenizer.state=$s.RAWTEXT;break}case D.SCRIPT:{this.tokenizer.state=$s.SCRIPT_DATA;break}case D.PLAINTEXT:{this.tokenizer.state=$s.PLAINTEXT;break}}}_setDocumentType(t){const n=t.name||"",i=t.publicId||"",r=t.systemId||"";if(this.treeAdapter.setDocumentType(this.document,n,i,r),t.location){const a=this.treeAdapter.getChildNodes(this.document).find(l=>this.treeAdapter.isDocumentTypeNode(l));a&&this.treeAdapter.setNodeSourceCodeLocation(a,t.location)}}_attachElementToTree(t,n){if(this.options.sourceCodeLocationInfo){const i=n&&{...n,startTag:n};this.treeAdapter.setNodeSourceCodeLocation(t,i)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(t);else{const i=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(i??this.document,t)}}_appendElement(t,n){const i=this.treeAdapter.createElement(t.tagName,n,t.attrs);this._attachElementToTree(i,t.location)}_insertElement(t,n){const i=this.treeAdapter.createElement(t.tagName,n,t.attrs);this._attachElementToTree(i,t.location),this.openElements.push(i,t.tagID)}_insertFakeElement(t,n){const i=this.treeAdapter.createElement(t,yt.HTML,[]);this._attachElementToTree(i,null),this.openElements.push(i,n)}_insertTemplate(t){const n=this.treeAdapter.createElement(t.tagName,yt.HTML,t.attrs),i=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(n,i),this._attachElementToTree(n,t.location),this.openElements.push(n,t.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(i,null)}_insertFakeRootElement(){const t=this.treeAdapter.createElement(Be.HTML,yt.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(t,null),this.treeAdapter.appendChild(this.openElements.current,t),this.openElements.push(t,D.HTML)}_appendCommentNode(t,n){const i=this.treeAdapter.createCommentNode(t.data);this.treeAdapter.appendChild(n,i),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(i,t.location)}_insertCharacters(t){let n,i;if(this._shouldFosterParentOnInsertion()?({parent:n,beforeElement:i}=this._findFosterParentingLocation(),i?this.treeAdapter.insertTextBefore(n,t.chars,i):this.treeAdapter.insertText(n,t.chars)):(n=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(n,t.chars)),!t.location)return;const r=this.treeAdapter.getChildNodes(n),s=i?r.lastIndexOf(i):r.length,a=r[s-1];if(this.treeAdapter.getNodeSourceCodeLocation(a)){const{endLine:c,endCol:u,endOffset:d}=t.location;this.treeAdapter.updateNodeSourceCodeLocation(a,{endLine:c,endCol:u,endOffset:d})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(a,t.location)}_adoptNodes(t,n){for(let i=this.treeAdapter.getFirstChild(t);i;i=this.treeAdapter.getFirstChild(t))this.treeAdapter.detachNode(i),this.treeAdapter.appendChild(n,i)}_setEndLocation(t,n){if(this.treeAdapter.getNodeSourceCodeLocation(t)&&n.location){const i=n.location,r=this.treeAdapter.getTagName(t),s=n.type===di.END_TAG&&r===n.tagName?{endTag:{...i},endLine:i.endLine,endCol:i.endCol,endOffset:i.endOffset}:{endLine:i.startLine,endCol:i.startCol,endOffset:i.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(t,s)}}shouldProcessStartTagTokenInForeignContent(t){if(!this.currentNotInHTML)return!1;let n,i;return this.openElements.stackTop===0&&this.fragmentContext?(n=this.fragmentContext,i=this.fragmentContextID):{current:n,currentTagId:i}=this.openElements,t.tagID===D.SVG&&this.treeAdapter.getTagName(n)===Be.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(n)===yt.MATHML?!1:this.tokenizer.inForeignNode||(t.tagID===D.MGLYPH||t.tagID===D.MALIGNMARK)&&i!==void 0&&!this._isIntegrationPoint(i,n,yt.HTML)}_processToken(t){switch(t.type){case di.CHARACTER:{this.onCharacter(t);break}case di.NULL_CHARACTER:{this.onNullCharacter(t);break}case di.COMMENT:{this.onComment(t);break}case di.DOCTYPE:{this.onDoctype(t);break}case di.START_TAG:{this._processStartTag(t);break}case di.END_TAG:{this.onEndTag(t);break}case di.EOF:{this.onEof(t);break}case di.WHITESPACE_CHARACTER:{this.onWhitespaceCharacter(t);break}}}_isIntegrationPoint(t,n,i){const r=this.treeAdapter.getNamespaceURI(n),s=this.treeAdapter.getAttrList(n);return Y0t(t,r,s,i)}_reconstructActiveFormattingElements(){const t=this.activeFormattingElements.entries.length;if(t){const n=this.activeFormattingElements.entries.findIndex(r=>r.type===md.Marker||this.openElements.contains(r.element)),i=n===-1?t-1:n-1;for(let r=i;r>=0;r--){const s=this.activeFormattingElements.entries[r];this._insertElement(s.token,this.treeAdapter.getNamespaceURI(s.element)),s.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=me.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(D.P),this.openElements.popUntilTagNamePopped(D.P)}_resetInsertionMode(){for(let t=this.openElements.stackTop;t>=0;t--)switch(t===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[t]){case D.TR:{this.insertionMode=me.IN_ROW;return}case D.TBODY:case D.THEAD:case D.TFOOT:{this.insertionMode=me.IN_TABLE_BODY;return}case D.CAPTION:{this.insertionMode=me.IN_CAPTION;return}case D.COLGROUP:{this.insertionMode=me.IN_COLUMN_GROUP;return}case D.TABLE:{this.insertionMode=me.IN_TABLE;return}case D.BODY:{this.insertionMode=me.IN_BODY;return}case D.FRAMESET:{this.insertionMode=me.IN_FRAMESET;return}case D.SELECT:{this._resetInsertionModeForSelect(t);return}case D.TEMPLATE:{this.insertionMode=this.tmplInsertionModeStack[0];return}case D.HTML:{this.insertionMode=this.headElement?me.AFTER_HEAD:me.BEFORE_HEAD;return}case D.TD:case D.TH:{if(t>0){this.insertionMode=me.IN_CELL;return}break}case D.HEAD:{if(t>0){this.insertionMode=me.IN_HEAD;return}break}}this.insertionMode=me.IN_BODY}_resetInsertionModeForSelect(t){if(t>0)for(let n=t-1;n>0;n--){const i=this.openElements.tagIDs[n];if(i===D.TEMPLATE)break;if(i===D.TABLE){this.insertionMode=me.IN_SELECT_IN_TABLE;return}}this.insertionMode=me.IN_SELECT}_isElementCausesFosterParenting(t){return lEe.has(t)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this.openElements.currentTagId!==void 0&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let t=this.openElements.stackTop;t>=0;t--){const n=this.openElements.items[t];switch(this.openElements.tagIDs[t]){case D.TEMPLATE:{if(this.treeAdapter.getNamespaceURI(n)===yt.HTML)return{parent:this.treeAdapter.getTemplateContent(n),beforeElement:null};break}case D.TABLE:{const i=this.treeAdapter.getParentNode(n);return i?{parent:i,beforeElement:n}:{parent:this.openElements.items[t-1],beforeElement:null}}}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(t){const n=this._findFosterParentingLocation();n.beforeElement?this.treeAdapter.insertBefore(n.parent,t,n.beforeElement):this.treeAdapter.appendChild(n.parent,t)}_isSpecialElement(t,n){const i=this.treeAdapter.getNamespaceURI(t);return w0t[i].has(n)}onCharacter(t){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){jvt(this,t);return}switch(this.insertionMode){case me.INITIAL:{W1(this,t);break}case me.BEFORE_HTML:{_O(this,t);break}case me.BEFORE_HEAD:{NO(this,t);break}case me.IN_HEAD:{jO(this,t);break}case me.IN_HEAD_NO_SCRIPT:{RO(this,t);break}case me.AFTER_HEAD:{IO(this,t);break}case me.IN_BODY:case me.IN_CAPTION:case me.IN_CELL:case me.IN_TEMPLATE:{uEe(this,t);break}case me.TEXT:case me.IN_SELECT:case me.IN_SELECT_IN_TABLE:{this._insertCharacters(t);break}case me.IN_TABLE:case me.IN_TABLE_BODY:case me.IN_ROW:{FM(this,t);break}case me.IN_TABLE_TEXT:{gEe(this,t);break}case me.IN_COLUMN_GROUP:{bN(this,t);break}case me.AFTER_BODY:{yN(this,t);break}case me.AFTER_AFTER_BODY:{wA(this,t);break}}}onNullCharacter(t){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Nvt(this,t);return}switch(this.insertionMode){case me.INITIAL:{W1(this,t);break}case me.BEFORE_HTML:{_O(this,t);break}case me.BEFORE_HEAD:{NO(this,t);break}case me.IN_HEAD:{jO(this,t);break}case me.IN_HEAD_NO_SCRIPT:{RO(this,t);break}case me.AFTER_HEAD:{IO(this,t);break}case me.TEXT:{this._insertCharacters(t);break}case me.IN_TABLE:case me.IN_TABLE_BODY:case me.IN_ROW:{FM(this,t);break}case me.IN_COLUMN_GROUP:{bN(this,t);break}case me.AFTER_BODY:{yN(this,t);break}case me.AFTER_AFTER_BODY:{wA(this,t);break}}}onComment(t){if(this.skipNextNewLine=!1,this.currentNotInHTML){V6(this,t);return}switch(this.insertionMode){case me.INITIAL:case me.BEFORE_HTML:case me.BEFORE_HEAD:case me.IN_HEAD:case me.IN_HEAD_NO_SCRIPT:case me.AFTER_HEAD:case me.IN_BODY:case me.IN_TABLE:case me.IN_CAPTION:case me.IN_COLUMN_GROUP:case me.IN_TABLE_BODY:case me.IN_ROW:case me.IN_CELL:case me.IN_SELECT:case me.IN_SELECT_IN_TABLE:case me.IN_TEMPLATE:case me.IN_FRAMESET:case me.AFTER_FRAMESET:{V6(this,t);break}case me.IN_TABLE_TEXT:{G1(this,t);break}case me.AFTER_BODY:{lyt(this,t);break}case me.AFTER_AFTER_BODY:case me.AFTER_AFTER_FRAMESET:{cyt(this,t);break}}}onDoctype(t){switch(this.skipNextNewLine=!1,this.insertionMode){case me.INITIAL:{uyt(this,t);break}case me.BEFORE_HEAD:case me.IN_HEAD:case me.IN_HEAD_NO_SCRIPT:case me.AFTER_HEAD:{this._err(t,et.misplacedDoctype);break}case me.IN_TABLE_TEXT:{G1(this,t);break}}}onStartTag(t){this.skipNextNewLine=!1,this.currentToken=t,this._processStartTag(t),t.selfClosing&&!t.ackSelfClosing&&this._err(t,et.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(t){this.shouldProcessStartTagTokenInForeignContent(t)?Rvt(this,t):this._startTagOutsideForeignContent(t)}_startTagOutsideForeignContent(t){switch(this.insertionMode){case me.INITIAL:{W1(this,t);break}case me.BEFORE_HTML:{dyt(this,t);break}case me.BEFORE_HEAD:{hyt(this,t);break}case me.IN_HEAD:{Ku(this,t);break}case me.IN_HEAD_NO_SCRIPT:{gyt(this,t);break}case me.AFTER_HEAD:{yyt(this,t);break}case me.IN_BODY:{So(this,t);break}case me.IN_TABLE:{ex(this,t);break}case me.IN_TABLE_TEXT:{G1(this,t);break}case me.IN_CAPTION:{pvt(this,t);break}case me.IN_COLUMN_GROUP:{uU(this,t);break}case me.IN_TABLE_BODY:{nI(this,t);break}case me.IN_ROW:{iI(this,t);break}case me.IN_CELL:{bvt(this,t);break}case me.IN_SELECT:{vEe(this,t);break}case me.IN_SELECT_IN_TABLE:{vvt(this,t);break}case me.IN_TEMPLATE:{wvt(this,t);break}case me.AFTER_BODY:{Svt(this,t);break}case me.IN_FRAMESET:{kvt(this,t);break}case me.AFTER_FRAMESET:{Cvt(this,t);break}case me.AFTER_AFTER_BODY:{Avt(this,t);break}case me.AFTER_AFTER_FRAMESET:{_vt(this,t);break}}}onEndTag(t){this.skipNextNewLine=!1,this.currentToken=t,this.currentNotInHTML?Ivt(this,t):this._endTagOutsideForeignContent(t)}_endTagOutsideForeignContent(t){switch(this.insertionMode){case me.INITIAL:{W1(this,t);break}case me.BEFORE_HTML:{fyt(this,t);break}case me.BEFORE_HEAD:{pyt(this,t);break}case me.IN_HEAD:{myt(this,t);break}case me.IN_HEAD_NO_SCRIPT:{byt(this,t);break}case me.AFTER_HEAD:{vyt(this,t);break}case me.IN_BODY:{tI(this,t);break}case me.TEXT:{rvt(this,t);break}case me.IN_TABLE:{VS(this,t);break}case me.IN_TABLE_TEXT:{G1(this,t);break}case me.IN_CAPTION:{mvt(this,t);break}case me.IN_COLUMN_GROUP:{gvt(this,t);break}case me.IN_TABLE_BODY:{H6(this,t);break}case me.IN_ROW:{yEe(this,t);break}case me.IN_CELL:{yvt(this,t);break}case me.IN_SELECT:{xEe(this,t);break}case me.IN_SELECT_IN_TABLE:{xvt(this,t);break}case me.IN_TEMPLATE:{Ovt(this,t);break}case me.AFTER_BODY:{OEe(this,t);break}case me.IN_FRAMESET:{Evt(this,t);break}case me.AFTER_FRAMESET:{Tvt(this,t);break}case me.AFTER_AFTER_BODY:{wA(this,t);break}}}onEof(t){switch(this.insertionMode){case me.INITIAL:{W1(this,t);break}case me.BEFORE_HTML:{_O(this,t);break}case me.BEFORE_HEAD:{NO(this,t);break}case me.IN_HEAD:{jO(this,t);break}case me.IN_HEAD_NO_SCRIPT:{RO(this,t);break}case me.AFTER_HEAD:{IO(this,t);break}case me.IN_BODY:case me.IN_TABLE:case me.IN_CAPTION:case me.IN_COLUMN_GROUP:case me.IN_TABLE_BODY:case me.IN_ROW:case me.IN_CELL:case me.IN_SELECT:case me.IN_SELECT_IN_TABLE:{pEe(this,t);break}case me.TEXT:{svt(this,t);break}case me.IN_TABLE_TEXT:{G1(this,t);break}case me.IN_TEMPLATE:{wEe(this,t);break}case me.AFTER_BODY:case me.IN_FRAMESET:case me.AFTER_FRAMESET:case me.AFTER_AFTER_BODY:case me.AFTER_AFTER_FRAMESET:{cU(this,t);break}}}onWhitespaceCharacter(t){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,t.chars.charCodeAt(0)===oe.LINE_FEED)){if(t.chars.length===1)return;t.chars=t.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(t);return}switch(this.insertionMode){case me.IN_HEAD:case me.IN_HEAD_NO_SCRIPT:case me.AFTER_HEAD:case me.TEXT:case me.IN_COLUMN_GROUP:case me.IN_SELECT:case me.IN_SELECT_IN_TABLE:case me.IN_FRAMESET:case me.AFTER_FRAMESET:{this._insertCharacters(t);break}case me.IN_BODY:case me.IN_CAPTION:case me.IN_CELL:case me.IN_TEMPLATE:case me.AFTER_BODY:case me.AFTER_AFTER_BODY:case me.AFTER_AFTER_FRAMESET:{cEe(this,t);break}case me.IN_TABLE:case me.IN_TABLE_BODY:case me.IN_ROW:{FM(this,t);break}case me.IN_TABLE_TEXT:{mEe(this,t);break}}}};function nyt(e,t){let n=e.activeFormattingElements.getElementEntryInScopeWithTagName(t.tagName);return n?e.openElements.contains(n.element)?e.openElements.hasInScope(t.tagID)||(n=null):(e.activeFormattingElements.removeEntry(n),n=null):hEe(e,t),n}function iyt(e,t){let n=null,i=e.openElements.stackTop;for(;i>=0;i--){const r=e.openElements.items[i];if(r===t.element)break;e._isSpecialElement(r,e.openElements.tagIDs[i])&&(n=r)}return n||(e.openElements.shortenToLength(Math.max(i,0)),e.activeFormattingElements.removeEntry(t)),n}function ryt(e,t,n){let i=t,r=e.openElements.getCommonAncestor(t);for(let s=0,a=r;a!==n;s++,a=r){r=e.openElements.getCommonAncestor(a);const l=e.activeFormattingElements.getElementEntry(a),c=l&&s>=eyt;!l||c?(c&&e.activeFormattingElements.removeEntry(l),e.openElements.remove(a)):(a=syt(e,l),i===t&&(e.activeFormattingElements.bookmark=l),e.treeAdapter.detachNode(i),e.treeAdapter.appendChild(a,i),i=a)}return i}function syt(e,t){const n=e.treeAdapter.getNamespaceURI(t.element),i=e.treeAdapter.createElement(t.token.tagName,n,t.token.attrs);return e.openElements.replace(t.element,i),t.element=i,i}function ayt(e,t,n){const i=e.treeAdapter.getTagName(t),r=Gx(i);if(e._isElementCausesFosterParenting(r))e._fosterParentElement(n);else{const s=e.treeAdapter.getNamespaceURI(t);r===D.TEMPLATE&&s===yt.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,n)}}function oyt(e,t,n){const i=e.treeAdapter.getNamespaceURI(n.element),{token:r}=n,s=e.treeAdapter.createElement(r.tagName,i,r.attrs);e._adoptNodes(t,s),e.treeAdapter.appendChild(t,s),e.activeFormattingElements.insertElementAfterBookmark(s,r),e.activeFormattingElements.removeEntry(n),e.openElements.remove(n.element),e.openElements.insertAfter(t,s,r.tagID)}function lU(e,t){for(let n=0;n=n;i--)e._setEndLocation(e.openElements.items[i],t);if(!e.fragmentContext&&e.openElements.stackTop>=0){const i=e.openElements.items[0],r=e.treeAdapter.getNodeSourceCodeLocation(i);if(r&&!r.endTag&&(e._setEndLocation(i,t),e.openElements.stackTop>=1)){const s=e.openElements.items[1],a=e.treeAdapter.getNodeSourceCodeLocation(s);a&&!a.endTag&&e._setEndLocation(s,t)}}}}function uyt(e,t){e._setDocumentType(t);const n=t.forceQuirks?$c.QUIRKS:B0t(t);F0t(t)||e._err(t,et.nonConformingDoctype),e.treeAdapter.setDocumentMode(e.document,n),e.insertionMode=me.BEFORE_HTML}function W1(e,t){e._err(t,et.missingDoctype,!0),e.treeAdapter.setDocumentMode(e.document,$c.QUIRKS),e.insertionMode=me.BEFORE_HTML,e._processToken(t)}function dyt(e,t){t.tagID===D.HTML?(e._insertElement(t,yt.HTML),e.insertionMode=me.BEFORE_HEAD):_O(e,t)}function fyt(e,t){const n=t.tagID;(n===D.HTML||n===D.HEAD||n===D.BODY||n===D.BR)&&_O(e,t)}function _O(e,t){e._insertFakeRootElement(),e.insertionMode=me.BEFORE_HEAD,e._processToken(t)}function hyt(e,t){switch(t.tagID){case D.HTML:{So(e,t);break}case D.HEAD:{e._insertElement(t,yt.HTML),e.headElement=e.openElements.current,e.insertionMode=me.IN_HEAD;break}default:NO(e,t)}}function pyt(e,t){const n=t.tagID;n===D.HEAD||n===D.BODY||n===D.HTML||n===D.BR?NO(e,t):e._err(t,et.endTagWithoutMatchingOpenElement)}function NO(e,t){e._insertFakeElement(Be.HEAD,D.HEAD),e.headElement=e.openElements.current,e.insertionMode=me.IN_HEAD,e._processToken(t)}function Ku(e,t){switch(t.tagID){case D.HTML:{So(e,t);break}case D.BASE:case D.BASEFONT:case D.BGSOUND:case D.LINK:case D.META:{e._appendElement(t,yt.HTML),t.ackSelfClosing=!0;break}case D.TITLE:{e._switchToTextParsing(t,$s.RCDATA);break}case D.NOSCRIPT:{e.options.scriptingEnabled?e._switchToTextParsing(t,$s.RAWTEXT):(e._insertElement(t,yt.HTML),e.insertionMode=me.IN_HEAD_NO_SCRIPT);break}case D.NOFRAMES:case D.STYLE:{e._switchToTextParsing(t,$s.RAWTEXT);break}case D.SCRIPT:{e._switchToTextParsing(t,$s.SCRIPT_DATA);break}case D.TEMPLATE:{e._insertTemplate(t),e.activeFormattingElements.insertMarker(),e.framesetOk=!1,e.insertionMode=me.IN_TEMPLATE,e.tmplInsertionModeStack.unshift(me.IN_TEMPLATE);break}case D.HEAD:{e._err(t,et.misplacedStartTagForHeadElement);break}default:jO(e,t)}}function myt(e,t){switch(t.tagID){case D.HEAD:{e.openElements.pop(),e.insertionMode=me.AFTER_HEAD;break}case D.BODY:case D.BR:case D.HTML:{jO(e,t);break}case D.TEMPLATE:{r0(e,t);break}default:e._err(t,et.endTagWithoutMatchingOpenElement)}}function r0(e,t){e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagId!==D.TEMPLATE&&e._err(t,et.closingOfElementWithOpenChildElements),e.openElements.popUntilTagNamePopped(D.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode()):e._err(t,et.endTagWithoutMatchingOpenElement)}function jO(e,t){e.openElements.pop(),e.insertionMode=me.AFTER_HEAD,e._processToken(t)}function gyt(e,t){switch(t.tagID){case D.HTML:{So(e,t);break}case D.BASEFONT:case D.BGSOUND:case D.HEAD:case D.LINK:case D.META:case D.NOFRAMES:case D.STYLE:{Ku(e,t);break}case D.NOSCRIPT:{e._err(t,et.nestedNoscriptInHead);break}default:RO(e,t)}}function byt(e,t){switch(t.tagID){case D.NOSCRIPT:{e.openElements.pop(),e.insertionMode=me.IN_HEAD;break}case D.BR:{RO(e,t);break}default:e._err(t,et.endTagWithoutMatchingOpenElement)}}function RO(e,t){const n=t.type===di.EOF?et.openElementsLeftAfterEof:et.disallowedContentInNoscriptInHead;e._err(t,n),e.openElements.pop(),e.insertionMode=me.IN_HEAD,e._processToken(t)}function yyt(e,t){switch(t.tagID){case D.HTML:{So(e,t);break}case D.BODY:{e._insertElement(t,yt.HTML),e.framesetOk=!1,e.insertionMode=me.IN_BODY;break}case D.FRAMESET:{e._insertElement(t,yt.HTML),e.insertionMode=me.IN_FRAMESET;break}case D.BASE:case D.BASEFONT:case D.BGSOUND:case D.LINK:case D.META:case D.NOFRAMES:case D.SCRIPT:case D.STYLE:case D.TEMPLATE:case D.TITLE:{e._err(t,et.abandonedHeadElementChild),e.openElements.push(e.headElement,D.HEAD),Ku(e,t),e.openElements.remove(e.headElement);break}case D.HEAD:{e._err(t,et.misplacedStartTagForHeadElement);break}default:IO(e,t)}}function vyt(e,t){switch(t.tagID){case D.BODY:case D.HTML:case D.BR:{IO(e,t);break}case D.TEMPLATE:{r0(e,t);break}default:e._err(t,et.endTagWithoutMatchingOpenElement)}}function IO(e,t){e._insertFakeElement(Be.BODY,D.BODY),e.insertionMode=me.IN_BODY,eI(e,t)}function eI(e,t){switch(t.type){case di.CHARACTER:{uEe(e,t);break}case di.WHITESPACE_CHARACTER:{cEe(e,t);break}case di.COMMENT:{V6(e,t);break}case di.START_TAG:{So(e,t);break}case di.END_TAG:{tI(e,t);break}case di.EOF:{pEe(e,t);break}}}function cEe(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t)}function uEe(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1}function xyt(e,t){e.openElements.tmplCount===0&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs)}function wyt(e,t){const n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e.openElements.tmplCount===0&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(n,t.attrs))}function Oyt(e,t){const n=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&n&&(e.treeAdapter.detachNode(n),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,yt.HTML),e.insertionMode=me.IN_FRAMESET)}function Syt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,yt.HTML)}function kyt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e.openElements.currentTagId!==void 0&&z6.has(e.openElements.currentTagId)&&e.openElements.pop(),e._insertElement(t,yt.HTML)}function Eyt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,yt.HTML),e.skipNextNewLine=!0,e.framesetOk=!1}function Cyt(e,t){const n=e.openElements.tmplCount>0;(!e.formElement||n)&&(e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,yt.HTML),n||(e.formElement=e.openElements.current))}function Tyt(e,t){e.framesetOk=!1;const n=t.tagID;for(let i=e.openElements.stackTop;i>=0;i--){const r=e.openElements.tagIDs[i];if(n===D.LI&&r===D.LI||(n===D.DD||n===D.DT)&&(r===D.DD||r===D.DT)){e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.popUntilTagNamePopped(r);break}if(r!==D.ADDRESS&&r!==D.DIV&&r!==D.P&&e._isSpecialElement(e.openElements.items[i],r))break}e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,yt.HTML)}function Ayt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,yt.HTML),e.tokenizer.state=$s.PLAINTEXT}function _yt(e,t){e.openElements.hasInScope(D.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(D.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,yt.HTML),e.framesetOk=!1}function Nyt(e,t){const n=e.activeFormattingElements.getElementEntryInScopeWithTagName(Be.A);n&&(lU(e,t),e.openElements.remove(n.element),e.activeFormattingElements.removeEntry(n)),e._reconstructActiveFormattingElements(),e._insertElement(t,yt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function jyt(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,yt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Ryt(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(D.NOBR)&&(lU(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,yt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Iyt(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,yt.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1}function Pyt(e,t){e.treeAdapter.getDocumentMode(e.document)!==$c.QUIRKS&&e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,yt.HTML),e.framesetOk=!1,e.insertionMode=me.IN_TABLE}function dEe(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,yt.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function fEe(e){const t=eEe(e,ab.TYPE);return t!=null&&t.toLowerCase()===Z0t}function Dyt(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,yt.HTML),fEe(t)||(e.framesetOk=!1),t.ackSelfClosing=!0}function Myt(e,t){e._appendElement(t,yt.HTML),t.ackSelfClosing=!0}function Lyt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._appendElement(t,yt.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function $yt(e,t){t.tagName=Be.IMG,t.tagID=D.IMG,dEe(e,t)}function Fyt(e,t){e._insertElement(t,yt.HTML),e.skipNextNewLine=!0,e.tokenizer.state=$s.RCDATA,e.originalInsertionMode=e.insertionMode,e.framesetOk=!1,e.insertionMode=me.TEXT}function Byt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._reconstructActiveFormattingElements(),e.framesetOk=!1,e._switchToTextParsing(t,$s.RAWTEXT)}function Uyt(e,t){e.framesetOk=!1,e._switchToTextParsing(t,$s.RAWTEXT)}function AY(e,t){e._switchToTextParsing(t,$s.RAWTEXT)}function Qyt(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,yt.HTML),e.framesetOk=!1,e.insertionMode=e.insertionMode===me.IN_TABLE||e.insertionMode===me.IN_CAPTION||e.insertionMode===me.IN_TABLE_BODY||e.insertionMode===me.IN_ROW||e.insertionMode===me.IN_CELL?me.IN_SELECT_IN_TABLE:me.IN_SELECT}function zyt(e,t){e.openElements.currentTagId===D.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,yt.HTML)}function Vyt(e,t){e.openElements.hasInScope(D.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,yt.HTML)}function Hyt(e,t){e.openElements.hasInScope(D.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(D.RTC),e._insertElement(t,yt.HTML)}function qyt(e,t){e._reconstructActiveFormattingElements(),aEe(t),oU(t),t.selfClosing?e._appendElement(t,yt.MATHML):e._insertElement(t,yt.MATHML),t.ackSelfClosing=!0}function Wyt(e,t){e._reconstructActiveFormattingElements(),oEe(t),oU(t),t.selfClosing?e._appendElement(t,yt.SVG):e._insertElement(t,yt.SVG),t.ackSelfClosing=!0}function _Y(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,yt.HTML)}function So(e,t){switch(t.tagID){case D.I:case D.S:case D.B:case D.U:case D.EM:case D.TT:case D.BIG:case D.CODE:case D.FONT:case D.SMALL:case D.STRIKE:case D.STRONG:{jyt(e,t);break}case D.A:{Nyt(e,t);break}case D.H1:case D.H2:case D.H3:case D.H4:case D.H5:case D.H6:{kyt(e,t);break}case D.P:case D.DL:case D.OL:case D.UL:case D.DIV:case D.DIR:case D.NAV:case D.MAIN:case D.MENU:case D.ASIDE:case D.CENTER:case D.FIGURE:case D.FOOTER:case D.HEADER:case D.HGROUP:case D.DIALOG:case D.DETAILS:case D.ADDRESS:case D.ARTICLE:case D.SEARCH:case D.SECTION:case D.SUMMARY:case D.FIELDSET:case D.BLOCKQUOTE:case D.FIGCAPTION:{Syt(e,t);break}case D.LI:case D.DD:case D.DT:{Tyt(e,t);break}case D.BR:case D.IMG:case D.WBR:case D.AREA:case D.EMBED:case D.KEYGEN:{dEe(e,t);break}case D.HR:{Lyt(e,t);break}case D.RB:case D.RTC:{Vyt(e,t);break}case D.RT:case D.RP:{Hyt(e,t);break}case D.PRE:case D.LISTING:{Eyt(e,t);break}case D.XMP:{Byt(e,t);break}case D.SVG:{Wyt(e,t);break}case D.HTML:{xyt(e,t);break}case D.BASE:case D.LINK:case D.META:case D.STYLE:case D.TITLE:case D.SCRIPT:case D.BGSOUND:case D.BASEFONT:case D.TEMPLATE:{Ku(e,t);break}case D.BODY:{wyt(e,t);break}case D.FORM:{Cyt(e,t);break}case D.NOBR:{Ryt(e,t);break}case D.MATH:{qyt(e,t);break}case D.TABLE:{Pyt(e,t);break}case D.INPUT:{Dyt(e,t);break}case D.PARAM:case D.TRACK:case D.SOURCE:{Myt(e,t);break}case D.IMAGE:{$yt(e,t);break}case D.BUTTON:{_yt(e,t);break}case D.APPLET:case D.OBJECT:case D.MARQUEE:{Iyt(e,t);break}case D.IFRAME:{Uyt(e,t);break}case D.SELECT:{Qyt(e,t);break}case D.OPTION:case D.OPTGROUP:{zyt(e,t);break}case D.NOEMBED:case D.NOFRAMES:{AY(e,t);break}case D.FRAMESET:{Oyt(e,t);break}case D.TEXTAREA:{Fyt(e,t);break}case D.NOSCRIPT:{e.options.scriptingEnabled?AY(e,t):_Y(e,t);break}case D.PLAINTEXT:{Ayt(e,t);break}case D.COL:case D.TH:case D.TD:case D.TR:case D.HEAD:case D.FRAME:case D.TBODY:case D.TFOOT:case D.THEAD:case D.CAPTION:case D.COLGROUP:break;default:_Y(e,t)}}function Gyt(e,t){if(e.openElements.hasInScope(D.BODY)&&(e.insertionMode=me.AFTER_BODY,e.options.sourceCodeLocationInfo)){const n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e._setEndLocation(n,t)}}function Kyt(e,t){e.openElements.hasInScope(D.BODY)&&(e.insertionMode=me.AFTER_BODY,OEe(e,t))}function Xyt(e,t){const n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n))}function Yyt(e){const t=e.openElements.tmplCount>0,{formElement:n}=e;t||(e.formElement=null),(n||t)&&e.openElements.hasInScope(D.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(D.FORM):n&&e.openElements.remove(n))}function Zyt(e){e.openElements.hasInButtonScope(D.P)||e._insertFakeElement(Be.P,D.P),e._closePElement()}function Jyt(e){e.openElements.hasInListItemScope(D.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(D.LI),e.openElements.popUntilTagNamePopped(D.LI))}function evt(e,t){const n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilTagNamePopped(n))}function tvt(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped())}function nvt(e,t){const n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker())}function ivt(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(Be.BR,D.BR),e.openElements.pop(),e.framesetOk=!1}function hEe(e,t){const n=t.tagName,i=t.tagID;for(let r=e.openElements.stackTop;r>0;r--){const s=e.openElements.items[r],a=e.openElements.tagIDs[r];if(i===a&&(i!==D.UNKNOWN||e.treeAdapter.getTagName(s)===n)){e.openElements.generateImpliedEndTagsWithExclusion(i),e.openElements.stackTop>=r&&e.openElements.shortenToLength(r);break}if(e._isSpecialElement(s,a))break}}function tI(e,t){switch(t.tagID){case D.A:case D.B:case D.I:case D.S:case D.U:case D.EM:case D.TT:case D.BIG:case D.CODE:case D.FONT:case D.NOBR:case D.SMALL:case D.STRIKE:case D.STRONG:{lU(e,t);break}case D.P:{Zyt(e);break}case D.DL:case D.UL:case D.OL:case D.DIR:case D.DIV:case D.NAV:case D.PRE:case D.MAIN:case D.MENU:case D.ASIDE:case D.BUTTON:case D.CENTER:case D.FIGURE:case D.FOOTER:case D.HEADER:case D.HGROUP:case D.DIALOG:case D.ADDRESS:case D.ARTICLE:case D.DETAILS:case D.SEARCH:case D.SECTION:case D.SUMMARY:case D.LISTING:case D.FIELDSET:case D.BLOCKQUOTE:case D.FIGCAPTION:{Xyt(e,t);break}case D.LI:{Jyt(e);break}case D.DD:case D.DT:{evt(e,t);break}case D.H1:case D.H2:case D.H3:case D.H4:case D.H5:case D.H6:{tvt(e);break}case D.BR:{ivt(e);break}case D.BODY:{Gyt(e,t);break}case D.HTML:{Kyt(e,t);break}case D.FORM:{Yyt(e);break}case D.APPLET:case D.OBJECT:case D.MARQUEE:{nvt(e,t);break}case D.TEMPLATE:{r0(e,t);break}default:hEe(e,t)}}function pEe(e,t){e.tmplInsertionModeStack.length>0?wEe(e,t):cU(e,t)}function rvt(e,t){var n;t.tagID===D.SCRIPT&&((n=e.scriptHandler)===null||n===void 0||n.call(e,e.openElements.current)),e.openElements.pop(),e.insertionMode=e.originalInsertionMode}function svt(e,t){e._err(t,et.eofInElementThatCanContainOnlyText),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e.onEof(t)}function FM(e,t){if(e.openElements.currentTagId!==void 0&&lEe.has(e.openElements.currentTagId))switch(e.pendingCharacterTokens.length=0,e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=me.IN_TABLE_TEXT,t.type){case di.CHARACTER:{gEe(e,t);break}case di.WHITESPACE_CHARACTER:{mEe(e,t);break}}else wE(e,t)}function avt(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,yt.HTML),e.insertionMode=me.IN_CAPTION}function ovt(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,yt.HTML),e.insertionMode=me.IN_COLUMN_GROUP}function lvt(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(Be.COLGROUP,D.COLGROUP),e.insertionMode=me.IN_COLUMN_GROUP,uU(e,t)}function cvt(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,yt.HTML),e.insertionMode=me.IN_TABLE_BODY}function uvt(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(Be.TBODY,D.TBODY),e.insertionMode=me.IN_TABLE_BODY,nI(e,t)}function dvt(e,t){e.openElements.hasInTableScope(D.TABLE)&&(e.openElements.popUntilTagNamePopped(D.TABLE),e._resetInsertionMode(),e._processStartTag(t))}function fvt(e,t){fEe(t)?e._appendElement(t,yt.HTML):wE(e,t),t.ackSelfClosing=!0}function hvt(e,t){!e.formElement&&e.openElements.tmplCount===0&&(e._insertElement(t,yt.HTML),e.formElement=e.openElements.current,e.openElements.pop())}function ex(e,t){switch(t.tagID){case D.TD:case D.TH:case D.TR:{uvt(e,t);break}case D.STYLE:case D.SCRIPT:case D.TEMPLATE:{Ku(e,t);break}case D.COL:{lvt(e,t);break}case D.FORM:{hvt(e,t);break}case D.TABLE:{dvt(e,t);break}case D.TBODY:case D.TFOOT:case D.THEAD:{cvt(e,t);break}case D.INPUT:{fvt(e,t);break}case D.CAPTION:{avt(e,t);break}case D.COLGROUP:{ovt(e,t);break}default:wE(e,t)}}function VS(e,t){switch(t.tagID){case D.TABLE:{e.openElements.hasInTableScope(D.TABLE)&&(e.openElements.popUntilTagNamePopped(D.TABLE),e._resetInsertionMode());break}case D.TEMPLATE:{r0(e,t);break}case D.BODY:case D.CAPTION:case D.COL:case D.COLGROUP:case D.HTML:case D.TBODY:case D.TD:case D.TFOOT:case D.TH:case D.THEAD:case D.TR:break;default:wE(e,t)}}function wE(e,t){const n=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,eI(e,t),e.fosterParentingEnabled=n}function mEe(e,t){e.pendingCharacterTokens.push(t)}function gEe(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0}function G1(e,t){let n=0;if(e.hasNonWhitespacePendingCharacterToken)for(;n0&&e.openElements.currentTagId===D.OPTION&&e.openElements.tagIDs[e.openElements.stackTop-1]===D.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagId===D.OPTGROUP&&e.openElements.pop();break}case D.OPTION:{e.openElements.currentTagId===D.OPTION&&e.openElements.pop();break}case D.SELECT:{e.openElements.hasInSelectScope(D.SELECT)&&(e.openElements.popUntilTagNamePopped(D.SELECT),e._resetInsertionMode());break}case D.TEMPLATE:{r0(e,t);break}}}function vvt(e,t){const n=t.tagID;n===D.CAPTION||n===D.TABLE||n===D.TBODY||n===D.TFOOT||n===D.THEAD||n===D.TR||n===D.TD||n===D.TH?(e.openElements.popUntilTagNamePopped(D.SELECT),e._resetInsertionMode(),e._processStartTag(t)):vEe(e,t)}function xvt(e,t){const n=t.tagID;n===D.CAPTION||n===D.TABLE||n===D.TBODY||n===D.TFOOT||n===D.THEAD||n===D.TR||n===D.TD||n===D.TH?e.openElements.hasInTableScope(n)&&(e.openElements.popUntilTagNamePopped(D.SELECT),e._resetInsertionMode(),e.onEndTag(t)):xEe(e,t)}function wvt(e,t){switch(t.tagID){case D.BASE:case D.BASEFONT:case D.BGSOUND:case D.LINK:case D.META:case D.NOFRAMES:case D.SCRIPT:case D.STYLE:case D.TEMPLATE:case D.TITLE:{Ku(e,t);break}case D.CAPTION:case D.COLGROUP:case D.TBODY:case D.TFOOT:case D.THEAD:{e.tmplInsertionModeStack[0]=me.IN_TABLE,e.insertionMode=me.IN_TABLE,ex(e,t);break}case D.COL:{e.tmplInsertionModeStack[0]=me.IN_COLUMN_GROUP,e.insertionMode=me.IN_COLUMN_GROUP,uU(e,t);break}case D.TR:{e.tmplInsertionModeStack[0]=me.IN_TABLE_BODY,e.insertionMode=me.IN_TABLE_BODY,nI(e,t);break}case D.TD:case D.TH:{e.tmplInsertionModeStack[0]=me.IN_ROW,e.insertionMode=me.IN_ROW,iI(e,t);break}default:e.tmplInsertionModeStack[0]=me.IN_BODY,e.insertionMode=me.IN_BODY,So(e,t)}}function Ovt(e,t){t.tagID===D.TEMPLATE&&r0(e,t)}function wEe(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(D.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode(),e.onEof(t)):cU(e,t)}function Svt(e,t){t.tagID===D.HTML?So(e,t):yN(e,t)}function OEe(e,t){var n;if(t.tagID===D.HTML){if(e.fragmentContext||(e.insertionMode=me.AFTER_AFTER_BODY),e.options.sourceCodeLocationInfo&&e.openElements.tagIDs[0]===D.HTML){e._setEndLocation(e.openElements.items[0],t);const i=e.openElements.items[1];i&&!(!((n=e.treeAdapter.getNodeSourceCodeLocation(i))===null||n===void 0)&&n.endTag)&&e._setEndLocation(i,t)}}else yN(e,t)}function yN(e,t){e.insertionMode=me.IN_BODY,eI(e,t)}function kvt(e,t){switch(t.tagID){case D.HTML:{So(e,t);break}case D.FRAMESET:{e._insertElement(t,yt.HTML);break}case D.FRAME:{e._appendElement(t,yt.HTML),t.ackSelfClosing=!0;break}case D.NOFRAMES:{Ku(e,t);break}}}function Evt(e,t){t.tagID===D.FRAMESET&&!e.openElements.isRootHtmlElementCurrent()&&(e.openElements.pop(),!e.fragmentContext&&e.openElements.currentTagId!==D.FRAMESET&&(e.insertionMode=me.AFTER_FRAMESET))}function Cvt(e,t){switch(t.tagID){case D.HTML:{So(e,t);break}case D.NOFRAMES:{Ku(e,t);break}}}function Tvt(e,t){t.tagID===D.HTML&&(e.insertionMode=me.AFTER_AFTER_FRAMESET)}function Avt(e,t){t.tagID===D.HTML?So(e,t):wA(e,t)}function wA(e,t){e.insertionMode=me.IN_BODY,eI(e,t)}function _vt(e,t){switch(t.tagID){case D.HTML:{So(e,t);break}case D.NOFRAMES:{Ku(e,t);break}}}function Nvt(e,t){t.chars=Zr,e._insertCharacters(t)}function jvt(e,t){e._insertCharacters(t),e.framesetOk=!1}function SEe(e){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==yt.HTML&&e.openElements.currentTagId!==void 0&&!e._isIntegrationPoint(e.openElements.currentTagId,e.openElements.current);)e.openElements.pop()}function Rvt(e,t){if(W0t(t))SEe(e),e._startTagOutsideForeignContent(t);else{const n=e._getAdjustedCurrentElement(),i=e.treeAdapter.getNamespaceURI(n);i===yt.MATHML?aEe(t):i===yt.SVG&&(G0t(t),oEe(t)),oU(t),t.selfClosing?e._appendElement(t,i):e._insertElement(t,i),t.ackSelfClosing=!0}}function Ivt(e,t){if(t.tagID===D.P||t.tagID===D.BR){SEe(e),e._endTagOutsideForeignContent(t);return}for(let n=e.openElements.stackTop;n>0;n--){const i=e.openElements.items[n];if(e.treeAdapter.getNamespaceURI(i)===yt.HTML){e._endTagOutsideForeignContent(t);break}const r=e.treeAdapter.getTagName(i);if(r.toLowerCase()===t.tagName){t.tagName=r,e.openElements.shortenToLength(n);break}}}Be.AREA,Be.BASE,Be.BASEFONT,Be.BGSOUND,Be.BR,Be.COL,Be.EMBED,Be.FRAME,Be.HR,Be.IMG,Be.INPUT,Be.KEYGEN,Be.LINK,Be.META,Be.PARAM,Be.SOURCE,Be.TRACK,Be.WBR;const Pvt=/<(\/?)(iframe|noembed|noframes|plaintext|script|style|textarea|title|xmp)(?=[\t\n\f\r />])/gi,Dvt=new Set(["mdxFlowExpression","mdxJsxFlowElement","mdxJsxTextElement","mdxTextExpression","mdxjsEsm"]),NY={sourceCodeLocationInfo:!0,scriptingEnabled:!1};function kEe(e,t){const n=Hvt(e),i=BSe("type",{handlers:{root:Mvt,element:Lvt,text:$vt,comment:CEe,doctype:Fvt,raw:Uvt},unknown:Qvt}),r={parser:n?new TY(NY):TY.getFragmentParser(void 0,NY),handle(l){i(l,r)},stitches:!1,options:t||{}};i(e,r),Kx(r,Yd());const s=n?r.parser.document:r.parser.getFragment(),a=qbt(s,{file:r.options.file});return r.stitches&&vE(a,"comment",function(l,c,u){const d=l;if(d.value.stitch&&u&&c!==void 0){const f=u.children;return f[c]=d.value.stitch,c}}),a.type==="root"&&a.children.length===1&&a.children[0].type===e.type?a.children[0]:a}function EEe(e,t){let n=-1;if(e)for(;++n4&&(t.parser.tokenizer.state=0);const n={type:di.CHARACTER,chars:e.value,location:OE(e)};Kx(t,Yd(e)),t.parser.currentToken=n,t.parser._processToken(t.parser.currentToken)}function Fvt(e,t){const n={type:di.DOCTYPE,name:"html",forceQuirks:!1,publicId:"",systemId:"",location:OE(e)};Kx(t,Yd(e)),t.parser.currentToken=n,t.parser._processToken(t.parser.currentToken)}function Bvt(e,t){t.stitches=!0;const n=qvt(e);if("children"in e&&"children"in n){const i=kEe({type:"root",children:e.children},t.options);n.children=i.children}CEe({type:"comment",value:{stitch:n}},t)}function CEe(e,t){const n=e.value,i={type:di.COMMENT,data:n,location:OE(e)};Kx(t,Yd(e)),t.parser.currentToken=i,t.parser._processToken(t.parser.currentToken)}function Uvt(e,t){if(t.parser.tokenizer.preprocessor.html="",t.parser.tokenizer.preprocessor.pos=-1,t.parser.tokenizer.preprocessor.lastGapPos=-2,t.parser.tokenizer.preprocessor.gapStack=[],t.parser.tokenizer.preprocessor.skipNextNewLine=!1,t.parser.tokenizer.preprocessor.lastChunkWritten=!1,t.parser.tokenizer.preprocessor.endOfChunkHit=!1,t.parser.tokenizer.preprocessor.isEol=!1,TEe(t,Yd(e)),t.parser.tokenizer.write(t.options.tagfilter?e.value.replace(Pvt,"<$1$2"):e.value,!1),t.parser.tokenizer._runParsingLoop(),t.parser.tokenizer.state===72||t.parser.tokenizer.state===78){t.parser.tokenizer.preprocessor.lastChunkWritten=!0;const n=t.parser.tokenizer._consume();t.parser.tokenizer._callState(n)}}function Qvt(e,t){const n=e;if(t.options.passThrough&&t.options.passThrough.includes(n.type))Bvt(n,t);else{let i="";throw Dvt.has(n.type)&&(i=". It looks like you are using MDX nodes with `hast-util-raw` (or `rehype-raw`). If you use this because you are using remark or rehype plugins that inject `'html'` nodes, then please raise an issue with that plugin, as its a bad and slow idea. If you use this because you are using markdown syntax, then you have to configure this utility (or plugin) to pass through these nodes (see `passThrough` in docs), but you can also migrate to use the MDX syntax"),new Error("Cannot compile `"+n.type+"` node"+i)}}function Kx(e,t){TEe(e,t);const n=e.parser.tokenizer.currentCharacterToken;n&&n.location&&(n.location.endLine=e.parser.tokenizer.preprocessor.line,n.location.endCol=e.parser.tokenizer.preprocessor.col+1,n.location.endOffset=e.parser.tokenizer.preprocessor.offset+1,e.parser.currentToken=n,e.parser._processToken(e.parser.currentToken)),e.parser.tokenizer.paused=!1,e.parser.tokenizer.inLoop=!1,e.parser.tokenizer.active=!1,e.parser.tokenizer.returnState=$s.DATA,e.parser.tokenizer.charRefCode=-1,e.parser.tokenizer.consumedAfterSnapshot=-1,e.parser.tokenizer.currentLocation=null,e.parser.tokenizer.currentCharacterToken=null,e.parser.tokenizer.currentToken=null,e.parser.tokenizer.currentAttr={name:"",value:""}}function TEe(e,t){if(t&&t.offset!==void 0){const n={startLine:t.line,startCol:t.column,startOffset:t.offset,endLine:-1,endCol:-1,endOffset:-1};e.parser.tokenizer.preprocessor.lineStartPos=-t.column+1,e.parser.tokenizer.preprocessor.droppedBufferSize=t.offset,e.parser.tokenizer.preprocessor.line=t.line,e.parser.tokenizer.currentLocation=n}}function zvt(e,t){const n=e.tagName.toLowerCase();if(t.parser.tokenizer.state===$s.PLAINTEXT)return;Kx(t,Yd(e));const i=t.parser.openElements.current;let r="namespaceURI"in i?i.namespaceURI:$g.html;r===$g.html&&n==="svg"&&(r=$g.svg);const s=Ybt({...e,children:[]},{space:r===$g.svg?"svg":"html"}),a={type:di.START_TAG,tagName:n,tagID:Gx(n),selfClosing:!1,ackSelfClosing:!1,attrs:"attrs"in s?s.attrs:[],location:OE(e)};t.parser.currentToken=a,t.parser._processToken(t.parser.currentToken),t.parser.tokenizer.lastStartTagName=n}function Vvt(e,t){const n=e.tagName.toLowerCase();if(!t.parser.tokenizer.inForeignNode&&s0t.includes(n)||t.parser.tokenizer.state===$s.PLAINTEXT)return;Kx(t,GR(e));const i={type:di.END_TAG,tagName:n,tagID:Gx(n),selfClosing:!1,ackSelfClosing:!1,attrs:[],location:OE(e)};t.parser.currentToken=i,t.parser._processToken(t.parser.currentToken),n===t.parser.tokenizer.lastStartTagName&&(t.parser.tokenizer.state===$s.RCDATA||t.parser.tokenizer.state===$s.RAWTEXT||t.parser.tokenizer.state===$s.SCRIPT_DATA)&&(t.parser.tokenizer.state=$s.DATA)}function Hvt(e){const t=e.type==="root"?e.children[0]:e;return!!(t&&(t.type==="doctype"||t.type==="element"&&t.tagName.toLowerCase()==="html"))}function OE(e){const t=Yd(e)||{line:void 0,column:void 0,offset:void 0},n=GR(e)||{line:void 0,column:void 0,offset:void 0};return{startLine:t.line,startCol:t.column,startOffset:t.offset,endLine:n.line,endCol:n.column,endOffset:n.offset}}function qvt(e){return"children"in e?Zv({...e,children:[]}):Zv(e)}function Wvt(e){return function(t,n){return kEe(t,{...e,file:n})}}const Gvt="modulepreload",Kvt=function(e){return"/"+e},jY={},Md=function(t,n,i){let r=Promise.resolve();if(n&&n.length>0){document.getElementsByTagName("link");const a=document.querySelector("meta[property=csp-nonce]"),l=(a==null?void 0:a.nonce)||(a==null?void 0:a.getAttribute("nonce"));r=Promise.allSettled(n.map(c=>{if(c=Kvt(c),c in jY)return;jY[c]=!0;const u=c.endsWith(".css"),d=u?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${c}"]${d}`))return;const f=document.createElement("link");if(f.rel=u?"stylesheet":Gvt,u||(f.as="script"),f.crossOrigin="",f.href=c,l&&f.setAttribute("nonce",l),document.head.appendChild(f),u)return new Promise((h,m)=>{f.addEventListener("load",h),f.addEventListener("error",()=>m(new Error(`Unable to preload CSS for ${c}`)))})}))}function s(a){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=a,window.dispatchEvent(l),!l.defaultPrevented)throw a}return r.then(a=>{for(const l of a||[])l.status==="rejected"&&s(l.reason);return t().catch(s)})};var Xvt=/[\u1680\u2000-\u200A\u202F\u205F\u3000]/,Yvt=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/,Zvt=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF9\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDE00-\uDE3E\uDE47\uDE50-\uDE83\uDE86-\uDE99\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/,BM={Space_Separator:Xvt,ID_Start:Yvt,ID_Continue:Zvt},Is={isSpaceSeparator(e){return typeof e=="string"&&BM.Space_Separator.test(e)},isIdStartChar(e){return typeof e=="string"&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e==="$"||e==="_"||BM.ID_Start.test(e))},isIdContinueChar(e){return typeof e=="string"&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e>="0"&&e<="9"||e==="$"||e==="_"||e==="‌"||e==="‍"||BM.ID_Continue.test(e))},isDigit(e){return typeof e=="string"&&/[0-9]/.test(e)},isHexDigit(e){return typeof e=="string"&&/[0-9A-Fa-f]/.test(e)}};let q6,Lo,Qf,vN,Om,Mu,Aa,dU,PO;var Jvt=function(t,n){q6=String(t),Lo="start",Qf=[],vN=0,Om=1,Mu=0,Aa=void 0,dU=void 0,PO=void 0;do Aa=ext(),ixt[Lo]();while(Aa.type!=="eof");return typeof n=="function"?W6({"":PO},"",n):PO};function W6(e,t,n){const i=e[t];if(i!=null&&typeof i=="object")if(Array.isArray(i))for(let r=0;r0;){const n=lh();if(!Is.isHexDigit(n))throw Vr(pt());e+=pt()}return String.fromCodePoint(parseInt(e,16))}const ixt={start(){if(Aa.type==="eof")throw sg();UM()},beforePropertyName(){switch(Aa.type){case"identifier":case"string":dU=Aa.value,Lo="afterPropertyName";return;case"punctuator":PT();return;case"eof":throw sg()}},afterPropertyName(){if(Aa.type==="eof")throw sg();Lo="beforePropertyValue"},beforePropertyValue(){if(Aa.type==="eof")throw sg();UM()},beforeArrayValue(){if(Aa.type==="eof")throw sg();if(Aa.type==="punctuator"&&Aa.value==="]"){PT();return}UM()},afterPropertyValue(){if(Aa.type==="eof")throw sg();switch(Aa.value){case",":Lo="beforePropertyName";return;case"}":PT()}},afterArrayValue(){if(Aa.type==="eof")throw sg();switch(Aa.value){case",":Lo="beforeArrayValue";return;case"]":PT()}},end(){}};function UM(){let e;switch(Aa.type){case"punctuator":switch(Aa.value){case"{":e={};break;case"[":e=[];break}break;case"null":case"boolean":case"numeric":case"string":e=Aa.value;break}if(PO===void 0)PO=e;else{const t=Qf[Qf.length-1];Array.isArray(t)?t.push(e):Object.defineProperty(t,dU,{value:e,writable:!0,enumerable:!0,configurable:!0})}if(e!==null&&typeof e=="object")Qf.push(e),Array.isArray(e)?Lo="beforeArrayValue":Lo="beforePropertyName";else{const t=Qf[Qf.length-1];t==null?Lo="end":Array.isArray(t)?Lo="afterArrayValue":Lo="afterPropertyValue"}}function PT(){Qf.pop();const e=Qf[Qf.length-1];e==null?Lo="end":Array.isArray(e)?Lo="afterArrayValue":Lo="afterPropertyValue"}function Vr(e){return xN(e===void 0?`JSON5: invalid end of input at ${Om}:${Mu}`:`JSON5: invalid character '${_Ee(e)}' at ${Om}:${Mu}`)}function sg(){return xN(`JSON5: invalid end of input at ${Om}:${Mu}`)}function RY(){return Mu-=5,xN(`JSON5: invalid identifier character at ${Om}:${Mu}`)}function rxt(e){console.warn(`JSON5: '${_Ee(e)}' in strings is not valid ECMAScript; consider escaping`)}function _Ee(e){const t={"'":"\\'",'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r"," ":"\\t","\v":"\\v","\0":"\\0","\u2028":"\\u2028","\u2029":"\\u2029"};if(t[e])return t[e];if(e<" "){const n=e.charCodeAt(0).toString(16);return"\\x"+("00"+n).substring(n.length)}return e}function xN(e){const t=new SyntaxError(e);return t.lineNumber=Om,t.columnNumber=Mu,t}var sxt=function(t,n,i){const r=[];let s="",a,l,c="",u;if(n!=null&&typeof n=="object"&&!Array.isArray(n)&&(i=n.space,u=n.quote,n=n.replacer),typeof n=="function")l=n;else if(Array.isArray(n)){a=[];for(const b of n){let v;typeof b=="string"?v=b:(typeof b=="number"||b instanceof String||b instanceof Number)&&(v=String(b)),v!==void 0&&a.indexOf(v)<0&&a.push(v)}}return i instanceof Number?i=Number(i):i instanceof String&&(i=String(i)),typeof i=="number"?i>0&&(i=Math.min(10,Math.floor(i)),c=" ".substr(0,i)):typeof i=="string"&&(c=i.substr(0,10)),d("",{"":t});function d(b,v){let y=v[b];switch(y!=null&&(typeof y.toJSON5=="function"?y=y.toJSON5(b):typeof y.toJSON=="function"&&(y=y.toJSON(b))),l&&(y=l.call(v,b,y)),y instanceof Number?y=Number(y):y instanceof String?y=String(y):y instanceof Boolean&&(y=y.valueOf()),y){case null:return"null";case!0:return"true";case!1:return"false"}if(typeof y=="string")return f(y);if(typeof y=="number")return String(y);if(typeof y=="object")return Array.isArray(y)?g(y):h(y)}function f(b){const v={"'":.1,'"':.2},y={"'":"\\'",'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r"," ":"\\t","\v":"\\v","\0":"\\0","\u2028":"\\u2028","\u2029":"\\u2029"};let x="";for(let w=0;wv[w]=0)throw TypeError("Converting circular structure to JSON5");r.push(b);let v=s;s=s+c;let y=a||Object.keys(b),x=[];for(const w of y){const k=d(w,b);if(k!==void 0){let S=m(w)+":";c!==""&&(S+=" "),S+=k,x.push(S)}}let O;if(x.length===0)O="{}";else{let w;if(c==="")w=x.join(","),O="{"+w+"}";else{let k=`, +`))}function c(m,g,b,v){const y=b.enter("tableCell"),x=b.enter("phrasing"),O=b.containerPhrasing(m,{...v,before:s,after:s});return x(),y(),O}function u(m,g){return npt(m,{align:g,alignDelimiters:i,padding:n,stringLength:r})}function d(m,g,b){const v=m.children;let y=-1;const x=[],O=g.enter("table");for(;++y0&&!n&&(e[e.length-1][1]._gfmAutolinkLiteralWalkedInto=!0),n}const amt={tokenize:pmt,partial:!0};function omt(){return{document:{91:{name:"gfmFootnoteDefinition",tokenize:dmt,continuation:{tokenize:fmt},exit:hmt}},text:{91:{name:"gfmFootnoteCall",tokenize:umt},93:{name:"gfmPotentialFootnoteCall",add:"after",tokenize:lmt,resolveTo:cmt}}}}function lmt(e,t,n){const i=this;let r=i.events.length;const s=i.parser.gfmFootnotes||(i.parser.gfmFootnotes=[]);let a;for(;r--;){const c=i.events[r][1];if(c.type==="labelImage"){a=c;break}if(c.type==="gfmFootnoteCall"||c.type==="labelLink"||c.type==="label"||c.type==="image"||c.type==="link")break}return l;function l(c){if(!a||!a._balanced)return n(c);const u=Mu(i.sliceSerialize({start:a.end,end:i.now()}));return u.codePointAt(0)!==94||!s.includes(u.slice(1))?n(c):(e.enter("gfmFootnoteCallLabelMarker"),e.consume(c),e.exit("gfmFootnoteCallLabelMarker"),t(c))}}function cmt(e,t){let n=e.length;for(;n--;)if(e[n][1].type==="labelImage"&&e[n][0]==="enter"){e[n][1];break}e[n+1][1].type="data",e[n+3][1].type="gfmFootnoteCallLabelMarker";const i={type:"gfmFootnoteCall",start:Object.assign({},e[n+3][1].start),end:Object.assign({},e[e.length-1][1].end)},r={type:"gfmFootnoteCallMarker",start:Object.assign({},e[n+3][1].end),end:Object.assign({},e[n+3][1].end)};r.end.column++,r.end.offset++,r.end._bufferIndex++;const s={type:"gfmFootnoteCallString",start:Object.assign({},r.end),end:Object.assign({},e[e.length-1][1].start)},a={type:"chunkString",contentType:"string",start:Object.assign({},s.start),end:Object.assign({},s.end)},l=[e[n+1],e[n+2],["enter",i,t],e[n+3],e[n+4],["enter",r,t],["exit",r,t],["enter",s,t],["enter",a,t],["exit",a,t],["exit",s,t],e[e.length-2],e[e.length-1],["exit",i,t]];return e.splice(n,e.length-n+1,...l),e}function umt(e,t,n){const i=this,r=i.parser.gfmFootnotes||(i.parser.gfmFootnotes=[]);let s=0,a;return l;function l(f){return e.enter("gfmFootnoteCall"),e.enter("gfmFootnoteCallLabelMarker"),e.consume(f),e.exit("gfmFootnoteCallLabelMarker"),c}function c(f){return f!==94?n(f):(e.enter("gfmFootnoteCallMarker"),e.consume(f),e.exit("gfmFootnoteCallMarker"),e.enter("gfmFootnoteCallString"),e.enter("chunkString").contentType="string",u)}function u(f){if(s>999||f===93&&!a||f===null||f===91||Mr(f))return n(f);if(f===93){e.exit("chunkString");const h=e.exit("gfmFootnoteCallString");return r.includes(Mu(i.sliceSerialize(h)))?(e.enter("gfmFootnoteCallLabelMarker"),e.consume(f),e.exit("gfmFootnoteCallLabelMarker"),e.exit("gfmFootnoteCall"),t):n(f)}return Mr(f)||(a=!0),s++,e.consume(f),f===92?d:u}function d(f){return f===91||f===92||f===93?(e.consume(f),s++,u):u(f)}}function dmt(e,t,n){const i=this,r=i.parser.gfmFootnotes||(i.parser.gfmFootnotes=[]);let s,a=0,l;return c;function c(g){return e.enter("gfmFootnoteDefinition")._container=!0,e.enter("gfmFootnoteDefinitionLabel"),e.enter("gfmFootnoteDefinitionLabelMarker"),e.consume(g),e.exit("gfmFootnoteDefinitionLabelMarker"),u}function u(g){return g===94?(e.enter("gfmFootnoteDefinitionMarker"),e.consume(g),e.exit("gfmFootnoteDefinitionMarker"),e.enter("gfmFootnoteDefinitionLabelString"),e.enter("chunkString").contentType="string",d):n(g)}function d(g){if(a>999||g===93&&!l||g===null||g===91||Mr(g))return n(g);if(g===93){e.exit("chunkString");const b=e.exit("gfmFootnoteDefinitionLabelString");return s=Mu(i.sliceSerialize(b)),e.enter("gfmFootnoteDefinitionLabelMarker"),e.consume(g),e.exit("gfmFootnoteDefinitionLabelMarker"),e.exit("gfmFootnoteDefinitionLabel"),h}return Mr(g)||(l=!0),a++,e.consume(g),g===92?f:d}function f(g){return g===91||g===92||g===93?(e.consume(g),a++,d):d(g)}function h(g){return g===58?(e.enter("definitionMarker"),e.consume(g),e.exit("definitionMarker"),r.includes(s)||r.push(s),Vi(e,m,"gfmFootnoteDefinitionWhitespace")):n(g)}function m(g){return t(g)}}function fmt(e,t,n){return e.check(wE,t,e.attempt(amt,t,n))}function hmt(e){e.exit("gfmFootnoteDefinition")}function pmt(e,t,n){const i=this;return Vi(e,r,"gfmFootnoteDefinitionIndent",5);function r(s){const a=i.events[i.events.length-1];return a&&a[1].type==="gfmFootnoteDefinitionIndent"&&a[2].sliceSerialize(a[1],!0).length===4?t(s):n(s)}}function mmt(e){let n=(e||{}).singleTilde;const i={name:"strikethrough",tokenize:s,resolveAll:r};return n==null&&(n=!0),{text:{126:i},insideSpan:{null:[i]},attentionMarkers:{null:[126]}};function r(a,l){let c=-1;for(;++c1?c(g):(a.consume(g),f++,m);if(f<2&&!n)return c(g);const v=a.exit("strikethroughSequenceTemporary"),y=nx(g);return v._open=!y||y===2&&!!b,v._close=!b||b===2&&!!y,l(g)}}}class gmt{constructor(){this.map=[]}add(t,n,i){bmt(this,t,n,i)}consume(t){if(this.map.sort(function(s,a){return s[0]-a[0]}),this.map.length===0)return;let n=this.map.length;const i=[];for(;n>0;)n-=1,i.push(t.slice(this.map[n][0]+this.map[n][1]),this.map[n][2]),t.length=this.map[n][0];i.push(t.slice()),t.length=0;let r=i.pop();for(;r;){for(const s of r)t.push(s);r=i.pop()}this.map.length=0}}function bmt(e,t,n,i){let r=0;if(!(n===0&&i.length===0)){for(;r-1;){const _=i.events[j][1].type;if(_==="lineEnding"||_==="linePrefix")j--;else break}const A=j>-1?i.events[j][1].type:null,L=A==="tableHead"||A==="tableRow"?S:c;return L===S&&i.parser.lazy[i.now().line]?n(T):L(T)}function c(T){return e.enter("tableHead"),e.enter("tableRow"),u(T)}function u(T){return T===124||(a=!0,s+=1),d(T)}function d(T){return T===null?n(T):An(T)?s>1?(s=0,i.interrupt=!0,e.exit("tableRow"),e.enter("lineEnding"),e.consume(T),e.exit("lineEnding"),m):n(T):ki(T)?Vi(e,d,"whitespace")(T):(s+=1,a&&(a=!1,r+=1),T===124?(e.enter("tableCellDivider"),e.consume(T),e.exit("tableCellDivider"),a=!0,d):(e.enter("data"),f(T)))}function f(T){return T===null||T===124||Mr(T)?(e.exit("data"),d(T)):(e.consume(T),T===92?h:f)}function h(T){return T===92||T===124?(e.consume(T),f):f(T)}function m(T){return i.interrupt=!1,i.parser.lazy[i.now().line]?n(T):(e.enter("tableDelimiterRow"),a=!1,ki(T)?Vi(e,g,"linePrefix",i.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(T):g(T))}function g(T){return T===45||T===58?v(T):T===124?(a=!0,e.enter("tableCellDivider"),e.consume(T),e.exit("tableCellDivider"),b):k(T)}function b(T){return ki(T)?Vi(e,v,"whitespace")(T):v(T)}function v(T){return T===58?(s+=1,a=!0,e.enter("tableDelimiterMarker"),e.consume(T),e.exit("tableDelimiterMarker"),y):T===45?(s+=1,y(T)):T===null||An(T)?w(T):k(T)}function y(T){return T===45?(e.enter("tableDelimiterFiller"),x(T)):k(T)}function x(T){return T===45?(e.consume(T),x):T===58?(a=!0,e.exit("tableDelimiterFiller"),e.enter("tableDelimiterMarker"),e.consume(T),e.exit("tableDelimiterMarker"),O):(e.exit("tableDelimiterFiller"),O(T))}function O(T){return ki(T)?Vi(e,w,"whitespace")(T):w(T)}function w(T){return T===124?g(T):T===null||An(T)?!a||r!==s?k(T):(e.exit("tableDelimiterRow"),e.exit("tableHead"),t(T)):k(T)}function k(T){return n(T)}function S(T){return e.enter("tableRow"),E(T)}function E(T){return T===124?(e.enter("tableCellDivider"),e.consume(T),e.exit("tableCellDivider"),E):T===null||An(T)?(e.exit("tableRow"),t(T)):ki(T)?Vi(e,E,"whitespace")(T):(e.enter("data"),C(T))}function C(T){return T===null||T===124||Mr(T)?(e.exit("data"),E(T)):(e.consume(T),T===92?N:C)}function N(T){return T===92||T===124?(e.consume(T),C):C(T)}}function wmt(e,t){let n=-1,i=!0,r=0,s=[0,0,0,0],a=[0,0,0,0],l=!1,c=0,u,d,f;const h=new gmt;for(;++nn[2]+1){const g=n[2]+1,b=n[3]-n[2]-1;e.add(g,b,[])}}e.add(n[3]+1,0,[["exit",f,t]])}return r!==void 0&&(s.end=Object.assign({},oy(t.events,r)),e.add(r,0,[["exit",s,t]]),s=void 0),s}function iY(e,t,n,i,r){const s=[],a=oy(t.events,n);r&&(r.end=Object.assign({},a),s.push(["exit",r,t])),i.end=Object.assign({},a),s.push(["exit",i,t]),e.add(n+1,0,s)}function oy(e,t){const n=e[t],i=n[0]==="enter"?"start":"end";return n[1][i]}const Omt={name:"tasklistCheck",tokenize:kmt};function Smt(){return{text:{91:Omt}}}function kmt(e,t,n){const i=this;return r;function r(c){return i.previous!==null||!i._gfmTasklistFirstContentOfListItem?n(c):(e.enter("taskListCheck"),e.enter("taskListCheckMarker"),e.consume(c),e.exit("taskListCheckMarker"),s)}function s(c){return Mr(c)?(e.enter("taskListCheckValueUnchecked"),e.consume(c),e.exit("taskListCheckValueUnchecked"),a):c===88||c===120?(e.enter("taskListCheckValueChecked"),e.consume(c),e.exit("taskListCheckValueChecked"),a):n(c)}function a(c){return c===93?(e.enter("taskListCheckMarker"),e.consume(c),e.exit("taskListCheckMarker"),e.exit("taskListCheck"),l):n(c)}function l(c){return An(c)?t(c):ki(c)?e.check({tokenize:Emt},t,n)(c):n(c)}}function Emt(e,t,n){return Vi(e,i,"whitespace");function i(r){return r===null?n(r):t(r)}}function Cmt(e){return TSe([Ypt(),omt(),mmt(e),vmt(),Smt()])}const Tmt={};function Amt(e){const t=this,n=e||Tmt,i=t.data(),r=i.micromarkExtensions||(i.micromarkExtensions=[]),s=i.fromMarkdownExtensions||(i.fromMarkdownExtensions=[]),a=i.toMarkdownExtensions||(i.toMarkdownExtensions=[]);r.push(Cmt(n)),s.push(Wpt()),a.push(Kpt(n))}const rY=function(e,t,n){const i=OE(n);if(!e||!e.type||!e.children)throw new Error("Expected parent node");if(typeof t=="number"){if(t<0||t===Number.POSITIVE_INFINITY)throw new Error("Expected positive finite number as index")}else if(t=e.children.indexOf(t),t<0)throw new Error("Expected child node or index");for(;++tu&&(u=d):d&&(u!==void 0&&u>-1&&c.push(` +`.repeat(u)||" "),u=-1,c.push(d))}return c.join("")}function xke(e,t,n){return e.type==="element"?Mmt(e,t,n):e.type==="text"?n.whitespace==="normal"?wke(e,n):Lmt(e):[]}function Mmt(e,t,n){const i=Oke(e,n),r=e.children||[];let s=-1,a=[];if(Pmt(e))return a;let l,c;for(H6(e)||lY(e)&&rY(t,e,lY)?c=` +`:Imt(e)?(l=2,c=2):vke(e)&&(l=1,c=1);++s]+>")+")",l={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{begin:"[+-]?(?:(?:[0-9](?:'?[0-9])*\\.(?:[0-9](?:'?[0-9])*)?|\\.[0-9](?:'?[0-9])*)(?:[Ee][+-]?[0-9](?:'?[0-9])*)?|[0-9](?:'?[0-9])*[Ee][+-]?[0-9](?:'?[0-9])*|0[Xx](?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*(?:\\.(?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)?)?|\\.[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)[Pp][+-]?[0-9](?:'?[0-9])*)(?:[Ff](?:16|32|64|128)?|(BF|bf)16|[Ll]|)"},{begin:"[+-]?\\b(?:0[Bb][01](?:'?[01])*|0[Xx][0-9A-Fa-f](?:'?[0-9A-Fa-f])*|0(?:'?[0-7])*|[1-9](?:'?[0-9])*)(?:[Uu](?:LL?|ll?)|[Uu][Zz]?|(?:LL?|ll?)[Uu]?|[Zz][Uu]|)"}],relevance:0},f={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},h={className:"title",begin:t.optional(r)+e.IDENT_RE,relevance:0},m=t.optional(r)+e.IDENT_RE+"\\s*\\(",g=["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],b=["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],v=["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","flat_map","flat_set","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"],y=["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"],w={type:b,keyword:g,literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],_type_hints:v},k={className:"function.dispatch",relevance:0,keywords:{_hint:y},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},S=[k,f,l,n,e.C_BLOCK_COMMENT_MODE,d,u],E={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:w,contains:S.concat([{begin:/\(/,end:/\)/,keywords:w,contains:S.concat(["self"]),relevance:0}]),relevance:0},C={className:"function",begin:"("+a+"[\\*&\\s]+)+"+m,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:w,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:i,keywords:w,relevance:0},{begin:m,returnBegin:!0,contains:[h],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[u,d]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:w,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,d,l,{begin:/\(/,end:/\)/,keywords:w,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,d,l]}]},l,n,e.C_BLOCK_COMMENT_MODE,f]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:w,illegal:"",keywords:w,contains:["self",l]},{begin:e.IDENT_RE+"::",keywords:w},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}}function Vmt(e){const t={type:["boolean","byte","word","String"],built_in:["KeyboardController","MouseController","SoftwareSerial","EthernetServer","EthernetClient","LiquidCrystal","RobotControl","GSMVoiceCall","EthernetUDP","EsploraTFT","HttpClient","RobotMotor","WiFiClient","GSMScanner","FileSystem","Scheduler","GSMServer","YunClient","YunServer","IPAddress","GSMClient","GSMModem","Keyboard","Ethernet","Console","GSMBand","Esplora","Stepper","Process","WiFiUDP","GSM_SMS","Mailbox","USBHost","Firmata","PImage","Client","Server","GSMPIN","FileIO","Bridge","Serial","EEPROM","Stream","Mouse","Audio","Servo","File","Task","GPRS","WiFi","Wire","TFT","GSM","SPI","SD"],_hints:["setup","loop","runShellCommandAsynchronously","analogWriteResolution","retrieveCallingNumber","printFirmwareVersion","analogReadResolution","sendDigitalPortPair","noListenOnLocalhost","readJoystickButton","setFirmwareVersion","readJoystickSwitch","scrollDisplayRight","getVoiceCallStatus","scrollDisplayLeft","writeMicroseconds","delayMicroseconds","beginTransmission","getSignalStrength","runAsynchronously","getAsynchronously","listenOnLocalhost","getCurrentCarrier","readAccelerometer","messageAvailable","sendDigitalPorts","lineFollowConfig","countryNameWrite","runShellCommand","readStringUntil","rewindDirectory","readTemperature","setClockDivider","readLightSensor","endTransmission","analogReference","detachInterrupt","countryNameRead","attachInterrupt","encryptionType","readBytesUntil","robotNameWrite","readMicrophone","robotNameRead","cityNameWrite","userNameWrite","readJoystickY","readJoystickX","mouseReleased","openNextFile","scanNetworks","noInterrupts","digitalWrite","beginSpeaker","mousePressed","isActionDone","mouseDragged","displayLogos","noAutoscroll","addParameter","remoteNumber","getModifiers","keyboardRead","userNameRead","waitContinue","processInput","parseCommand","printVersion","readNetworks","writeMessage","blinkVersion","cityNameRead","readMessage","setDataMode","parsePacket","isListening","setBitOrder","beginPacket","isDirectory","motorsWrite","drawCompass","digitalRead","clearScreen","serialEvent","rightToLeft","setTextSize","leftToRight","requestFrom","keyReleased","compassRead","analogWrite","interrupts","WiFiServer","disconnect","playMelody","parseFloat","autoscroll","getPINUsed","setPINUsed","setTimeout","sendAnalog","readSlider","analogRead","beginWrite","createChar","motorsStop","keyPressed","tempoWrite","readButton","subnetMask","debugPrint","macAddress","writeGreen","randomSeed","attachGPRS","readString","sendString","remotePort","releaseAll","mouseMoved","background","getXChange","getYChange","answerCall","getResult","voiceCall","endPacket","constrain","getSocket","writeJSON","getButton","available","connected","findUntil","readBytes","exitValue","readGreen","writeBlue","startLoop","IPAddress","isPressed","sendSysex","pauseMode","gatewayIP","setCursor","getOemKey","tuneWrite","noDisplay","loadImage","switchPIN","onRequest","onReceive","changePIN","playFile","noBuffer","parseInt","overflow","checkPIN","knobRead","beginTFT","bitClear","updateIR","bitWrite","position","writeRGB","highByte","writeRed","setSpeed","readBlue","noStroke","remoteIP","transfer","shutdown","hangCall","beginSMS","endWrite","attached","maintain","noCursor","checkReg","checkPUK","shiftOut","isValid","shiftIn","pulseIn","connect","println","localIP","pinMode","getIMEI","display","noBlink","process","getBand","running","beginSD","drawBMP","lowByte","setBand","release","bitRead","prepare","pointTo","readRed","setMode","noFill","remove","listen","stroke","detach","attach","noTone","exists","buffer","height","bitSet","circle","config","cursor","random","IRread","setDNS","endSMS","getKey","micros","millis","begin","print","write","ready","flush","width","isPIN","blink","clear","press","mkdir","rmdir","close","point","yield","image","BSSID","click","delay","read","text","move","peek","beep","rect","line","open","seek","fill","size","turn","stop","home","find","step","tone","sqrt","RSSI","SSID","end","bit","tan","cos","sin","pow","map","abs","max","min","get","run","put"],literal:["DIGITAL_MESSAGE","FIRMATA_STRING","ANALOG_MESSAGE","REPORT_DIGITAL","REPORT_ANALOG","INPUT_PULLUP","SET_PIN_MODE","INTERNAL2V56","SYSTEM_RESET","LED_BUILTIN","INTERNAL1V1","SYSEX_START","INTERNAL","EXTERNAL","DEFAULT","OUTPUT","INPUT","HIGH","LOW"]},n=zmt(e),i=n.keywords;return i.type=[...i.type,...t.type],i.literal=[...i.literal,...t.literal],i.built_in=[...i.built_in,...t.built_in],i._hints=t._hints,n.name="Arduino",n.aliases=["ino"],n.supersetOf="cpp",n}function rU(e){const t=e.regex,n={},i={begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[n]}]};Object.assign(n,{className:"variable",variants:[{begin:t.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},i]});const r={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},s=e.inherit(e.COMMENT(),{match:[/(^|\s)/,/#.*$/],scope:{2:"comment"}}),a={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:"string"})]}},l={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,n,r]};r.contains.push(l);const c={match:/\\"/},u={className:"string",begin:/'/,end:/'/},d={match:/\\'/},f={begin:/\$?\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,n]},h=["fish","bash","zsh","sh","csh","ksh","tcsh","dash","scsh"],m=e.SHEBANG({binary:`(${h.join("|")})`,relevance:10}),g={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0},b=["if","then","else","elif","fi","time","for","while","until","in","do","done","case","esac","coproc","function","select"],v=["true","false"],y={match:/(\/[a-z._-]+)+/},x=["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset"],O=["alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","sudo","type","typeset","ulimit","unalias"],w=["autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp"],k=["chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"];return{name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,keyword:b,literal:v,built_in:[...x,...O,"set","shopt",...w,...k]},contains:[m,e.SHEBANG(),g,f,s,a,y,l,c,u,d,n]}}function Hmt(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),i="decltype\\(auto\\)",r="[a-zA-Z_]\\w*::",a="("+i+"|"+t.optional(r)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",l={className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{match:/\batomic_[a-z]{3,6}\b/}]},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{match:/\b(0b[01']+)/},{match:/(-?)\b([\d']+(\.[\d']*)?|\.[\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)/},{match:/(-?)\b(0[xX][a-fA-F0-9]+(?:'[a-fA-F0-9]+)*(?:\.[a-fA-F0-9]*(?:'[a-fA-F0-9]*)*)?(?:[pP][-+]?[0-9]+)?(l|L)?(u|U)?)/},{match:/(-?)\b\d+(?:'\d+)*(?:\.\d*(?:'\d*)*)?(?:[eE][-+]?\d+)?/}],relevance:0},f={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef elifdef elifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},h={className:"title",begin:t.optional(r)+e.IDENT_RE,relevance:0},m=t.optional(r)+e.IDENT_RE+"\\s*\\(",v={keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","typeof","typeof_unqual","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_BitInt","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal96","_Decimal128","_Decimal64x","_Decimal128x","_Float16","_Float32","_Float64","_Float128","_Float32x","_Float64x","_Float128x","const","static","constexpr","complex","bool","imaginary"],literal:"true false NULL",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"},y=[f,l,n,e.C_BLOCK_COMMENT_MODE,d,u],x={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:v,contains:y.concat([{begin:/\(/,end:/\)/,keywords:v,contains:y.concat(["self"]),relevance:0}]),relevance:0},O={begin:"("+a+"[\\*&\\s]+)+"+m,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:v,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:i,keywords:v,relevance:0},{begin:m,returnBegin:!0,contains:[e.inherit(h,{className:"title.function"})],relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:v,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,d,l,{begin:/\(/,end:/\)/,keywords:v,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,d,l]}]},l,n,e.C_BLOCK_COMMENT_MODE,f]};return{name:"C",aliases:["h"],keywords:v,disableAutodetect:!0,illegal:"=]/,contains:[{beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:f,strings:u,keywords:v}}}function qmt(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),i="decltype\\(auto\\)",r="[a-zA-Z_]\\w*::",a="(?!struct)("+i+"|"+t.optional(r)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",l={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{begin:"[+-]?(?:(?:[0-9](?:'?[0-9])*\\.(?:[0-9](?:'?[0-9])*)?|\\.[0-9](?:'?[0-9])*)(?:[Ee][+-]?[0-9](?:'?[0-9])*)?|[0-9](?:'?[0-9])*[Ee][+-]?[0-9](?:'?[0-9])*|0[Xx](?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*(?:\\.(?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)?)?|\\.[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)[Pp][+-]?[0-9](?:'?[0-9])*)(?:[Ff](?:16|32|64|128)?|(BF|bf)16|[Ll]|)"},{begin:"[+-]?\\b(?:0[Bb][01](?:'?[01])*|0[Xx][0-9A-Fa-f](?:'?[0-9A-Fa-f])*|0(?:'?[0-7])*|[1-9](?:'?[0-9])*)(?:[Uu](?:LL?|ll?)|[Uu][Zz]?|(?:LL?|ll?)[Uu]?|[Zz][Uu]|)"}],relevance:0},f={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},h={className:"title",begin:t.optional(r)+e.IDENT_RE,relevance:0},m=t.optional(r)+e.IDENT_RE+"\\s*\\(",g=["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],b=["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],v=["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","flat_map","flat_set","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"],y=["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"],w={type:b,keyword:g,literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],_type_hints:v},k={className:"function.dispatch",relevance:0,keywords:{_hint:y},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},S=[k,f,l,n,e.C_BLOCK_COMMENT_MODE,d,u],E={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:w,contains:S.concat([{begin:/\(/,end:/\)/,keywords:w,contains:S.concat(["self"]),relevance:0}]),relevance:0},C={className:"function",begin:"("+a+"[\\*&\\s]+)+"+m,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:w,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:i,keywords:w,relevance:0},{begin:m,returnBegin:!0,contains:[h],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[u,d]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:w,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,d,l,{begin:/\(/,end:/\)/,keywords:w,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,d,l]}]},l,n,e.C_BLOCK_COMMENT_MODE,f]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:w,illegal:"",keywords:w,contains:["self",l]},{begin:e.IDENT_RE+"::",keywords:w},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}}function Wmt(e){const t=["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],n=["public","private","protected","static","internal","protected","abstract","async","extern","override","unsafe","virtual","new","sealed","partial"],i=["default","false","null","true"],r=["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","scoped","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"],s=["add","alias","and","ascending","args","async","await","by","descending","dynamic","equals","file","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","record","remove","required","scoped","select","set","unmanaged","value|0","var","when","where","with","yield"],a={keyword:r.concat(s),built_in:t,literal:i},l=e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),c={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},u={className:"string",begin:/"""("*)(?!")(.|\n)*?"""\1/,relevance:1},d={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},f=e.inherit(d,{illegal:/\n/}),h={className:"subst",begin:/\{/,end:/\}/,keywords:a},m=e.inherit(h,{illegal:/\n/}),g={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},e.BACKSLASH_ESCAPE,m]},b={className:"string",begin:/\$@"/,end:'"',contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},h]},v=e.inherit(b,{illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},m]});h.contains=[b,g,d,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,c,e.C_BLOCK_COMMENT_MODE],m.contains=[v,g,f,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,c,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];const y={variants:[u,b,g,d,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},x={begin:"<",end:">",contains:[{beginKeywords:"in out"},l]},O=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",w={begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:a,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:""},{begin:""}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{keyword:"if else elif endif define undef warning error line region endregion pragma checksum"}},y,c,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},l,x,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[l,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[l,x,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+O+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:a,contains:[{beginKeywords:n.join(" "),relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,contains:[e.TITLE_MODE,x],relevance:0},{match:/\(\)/},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:a,relevance:0,contains:[y,c,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},w]}}const Kmt=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),Gmt=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","optgroup","option","p","picture","q","quote","samp","section","select","source","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],Xmt=["defs","g","marker","mask","pattern","svg","switch","symbol","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feFlood","feGaussianBlur","feImage","feMerge","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","linearGradient","radialGradient","stop","circle","ellipse","image","line","path","polygon","polyline","rect","text","use","textPath","tspan","foreignObject","clipPath"],Ymt=[...Gmt,...Xmt],Zmt=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"].sort().reverse(),Jmt=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"].sort().reverse(),egt=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"].sort().reverse(),tgt=["accent-color","align-content","align-items","align-self","alignment-baseline","all","anchor-name","animation","animation-composition","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-range","animation-range-end","animation-range-start","animation-timeline","animation-timing-function","appearance","aspect-ratio","backdrop-filter","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-position-x","background-position-y","background-repeat","background-size","baseline-shift","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-end-end-radius","border-end-start-radius","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-start-end-radius","border-start-start-radius","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-align","box-decoration-break","box-direction","box-flex","box-flex-group","box-lines","box-ordinal-group","box-orient","box-pack","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","color-scheme","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","contain-intrinsic-block-size","contain-intrinsic-height","contain-intrinsic-inline-size","contain-intrinsic-size","contain-intrinsic-width","container","container-name","container-type","content","content-visibility","counter-increment","counter-reset","counter-set","cue","cue-after","cue-before","cursor","cx","cy","direction","display","dominant-baseline","empty-cells","enable-background","field-sizing","fill","fill-opacity","fill-rule","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flood-color","flood-opacity","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-optical-sizing","font-palette","font-size","font-size-adjust","font-smooth","font-smoothing","font-stretch","font-style","font-synthesis","font-synthesis-position","font-synthesis-small-caps","font-synthesis-style","font-synthesis-weight","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-emoji","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","forced-color-adjust","gap","glyph-orientation-horizontal","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphenate-character","hyphenate-limit-chars","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","initial-letter","initial-letter-align","inline-size","inset","inset-area","inset-block","inset-block-end","inset-block-start","inset-inline","inset-inline-end","inset-inline-start","isolation","justify-content","justify-items","justify-self","kerning","left","letter-spacing","lighting-color","line-break","line-height","line-height-step","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","margin-trim","marker","marker-end","marker-mid","marker-start","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","masonry-auto-flow","math-depth","math-shift","math-style","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","offset","offset-anchor","offset-distance","offset-path","offset-position","offset-rotate","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-anchor","overflow-block","overflow-clip-margin","overflow-inline","overflow-wrap","overflow-x","overflow-y","overlay","overscroll-behavior","overscroll-behavior-block","overscroll-behavior-inline","overscroll-behavior-x","overscroll-behavior-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","paint-order","pause","pause-after","pause-before","perspective","perspective-origin","place-content","place-items","place-self","pointer-events","position","position-anchor","position-visibility","print-color-adjust","quotes","r","resize","rest","rest-after","rest-before","right","rotate","row-gap","ruby-align","ruby-position","scale","scroll-behavior","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scroll-timeline","scroll-timeline-axis","scroll-timeline-name","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","shape-rendering","speak","speak-as","src","stop-color","stop-opacity","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","tab-size","table-layout","text-align","text-align-all","text-align-last","text-anchor","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-skip-ink","text-decoration-style","text-decoration-thickness","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-size-adjust","text-transform","text-underline-offset","text-underline-position","text-wrap","text-wrap-mode","text-wrap-style","timeline-scope","top","touch-action","transform","transform-box","transform-origin","transform-style","transition","transition-behavior","transition-delay","transition-duration","transition-property","transition-timing-function","translate","unicode-bidi","user-modify","user-select","vector-effect","vertical-align","view-timeline","view-timeline-axis","view-timeline-inset","view-timeline-name","view-transition-name","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","white-space-collapse","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","x","y","z-index","zoom"].sort().reverse();function ngt(e){const t=e.regex,n=Kmt(e),i={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},r="and or not only",s=/@-?\w[\w]*(-\w+)*/,a="[a-zA-Z-][a-zA-Z0-9_-]*",l=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[n.BLOCK_COMMENT,i,n.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\."+a,relevance:0},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+Jmt.join("|")+")"},{begin:":(:)?("+egt.join("|")+")"}]},n.CSS_VARIABLE,{className:"attribute",begin:"\\b("+tgt.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[n.BLOCK_COMMENT,n.HEXCOLOR,n.IMPORTANT,n.CSS_NUMBER_MODE,...l,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[...l,{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},n.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:s},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:r,attribute:Zmt.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...l,n.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+Ymt.join("|")+")\\b"}]}}function igt(e){const t=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:t.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:t.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}function rgt(e){const s={keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"],type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"],literal:["true","false","iota","nil"],built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"]};return{name:"Go",aliases:["golang"],keywords:s,illegal:"kke(e,t,n-1))}function agt(e){const t=e.regex,n="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",i=n+kke("(?:<"+n+"~~~(?:\\s*,\\s*"+n+"~~~)*>)?",/~~~/g,2),c={keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed","yield","permits","goto","when"],literal:["false","true","null"],type:["char","boolean","long","float","int","byte","short","double"],built_in:["super","this"]},u={className:"meta",begin:"@"+n,contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},d={className:"params",begin:/\(/,end:/\)/,keywords:c,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:"Java",aliases:["jsp"],keywords:c,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{begin:/import java\.[a-z]+\./,keywords:"import",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:"string",contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,n],className:{1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{begin:[t.concat(/(?!else)/,n),/\s+/,n,/\s+/,/=(?!=)/],className:{1:"type",3:"variable",5:"operator"}},{begin:[/record/,/\s+/,n],className:{1:"keyword",3:"title.class"},contains:[d,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"new throw return else",relevance:0},{begin:["(?:"+i+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:"title.function"},keywords:c,contains:[{className:"params",begin:/\(/,end:/\)/,keywords:c,relevance:0,contains:[u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,cY,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},cY,u]}}const uY="[A-Za-z$_][0-9A-Za-z$_]*",ogt=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends","using"],lgt=["true","false","null","undefined","NaN","Infinity"],Eke=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],Cke=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Tke=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],cgt=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],ugt=[].concat(Tke,Eke,Cke);function Ake(e){const t=e.regex,n=(M,{after:B})=>{const R="",end:""},s=/<[A-Za-z0-9\\._:-]+\s*\/>/,a={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(M,B)=>{const R=M[0].length+M.index,V=M.input[R];if(V==="<"||V===","){B.ignoreMatch();return}V===">"&&(n(M,{after:R})||B.ignoreMatch());let K;const Q=M.input.substring(R);if(K=Q.match(/^\s*=/)){B.ignoreMatch();return}if((K=Q.match(/^\s+extends\s+/))&&K.index===0){B.ignoreMatch();return}}},l={$pattern:uY,keyword:ogt,literal:lgt,built_in:ugt,"variable.language":cgt},c="[0-9](_?[0-9])*",u=`\\.(${c})`,d="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",f={className:"number",variants:[{begin:`(\\b(${d})((${u})|\\.)?|(${u}))[eE][+-]?(${c})\\b`},{begin:`\\b(${d})\\b((${u})\\b|\\.)?|(${u})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},h={className:"subst",begin:"\\$\\{",end:"\\}",keywords:l,contains:[]},m={begin:".?html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"xml"}},g={begin:".?css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"css"}},b={begin:".?gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"graphql"}},v={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,h]},x={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:i+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},O=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,g,b,v,{match:/\$\d+/},f];h.contains=O.concat({begin:/\{/,end:/\}/,keywords:l,contains:["self"].concat(O)});const w=[].concat(x,h.contains),k=w.concat([{begin:/(\s*)\(/,end:/\)/,keywords:l,contains:["self"].concat(w)}]),S={className:"params",begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:k},E={variants:[{match:[/class/,/\s+/,i,/\s+/,/extends/,/\s+/,t.concat(i,"(",t.concat(/\./,i),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,i],scope:{1:"keyword",3:"title.class"}}]},C={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...Eke,...Cke]}},N={label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},T={variants:[{match:[/function/,/\s+/,i,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[S],illegal:/%/},j={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"};function A(M){return t.concat("(?!",M.join("|"),")")}const L={match:t.concat(/\b/,A([...Tke,"super","import"].map(M=>`${M}\\s*\\(`)),i,t.lookahead(/\s*\(/)),className:"title.function",relevance:0},_={begin:t.concat(/\./,t.lookahead(t.concat(i,/(?![0-9A-Za-z$_(])/))),end:i,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},P={match:[/get|set/,/\s+/,i,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},S]},I="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",$={match:[/const|var|let/,/\s+/,i,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(I)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[S]};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:l,exports:{PARAMS_CONTAINS:k,CLASS_REFERENCE:C},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),N,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,g,b,v,x,{match:/\$\d+/},f,C,{scope:"attr",match:i+t.lookahead(":"),relevance:0},$,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[x,e.REGEXP_MODE,{className:"function",begin:I,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:k}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:r.begin,end:r.end},{match:s},{begin:a.begin,"on:begin":a.isTrulyOpeningTag,end:a.end}],subLanguage:"xml",contains:[{begin:a.begin,end:a.end,skip:!0,contains:["self"]}]}]},T,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[S,e.inherit(e.TITLE_MODE,{begin:i,className:"title.function"})]},{match:/\.\.\./,relevance:0},_,{match:"\\$"+i,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[S]},L,j,E,P,{match:/\$[(.]/}]}}function _ke(e){const t={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},n={match:/[{}[\],:]/,className:"punctuation",relevance:0},i=["true","false","null"],r={scope:"literal",beginKeywords:i.join(" ")};return{name:"JSON",aliases:["jsonc"],keywords:{literal:i},contains:[t,n,e.QUOTE_STRING_MODE,r,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}var cy="[0-9](_*[0-9])*",RT=`\\.(${cy})`,IT="[0-9a-fA-F](_*[0-9a-fA-F])*",dgt={className:"number",variants:[{begin:`(\\b(${cy})((${RT})|\\.)?|(${RT}))[eE][+-]?(${cy})[fFdD]?\\b`},{begin:`\\b(${cy})((${RT})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${RT})[fFdD]?\\b`},{begin:`\\b(${cy})[fFdD]\\b`},{begin:`\\b0[xX]((${IT})\\.?|(${IT})?\\.(${IT}))[pP][+-]?(${cy})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${IT})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};function fgt(e){const t={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},n={className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},i={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"},r={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},s={className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},a={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[s,r]},{begin:"'",end:"'",illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,s,r]}]};r.contains.push(a);const l={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"},c={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(a,{className:"string"}),"self"]}]},u=dgt,d=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),f={variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},h=f;return h.variants[1].contains=[f],f.variants[1].contains=[h],{name:"Kotlin",aliases:["kt","kts"],keywords:t,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,d,n,i,l,c,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:t,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:t,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[f,e.C_LINE_COMMENT_MODE,d],relevance:0},e.C_LINE_COMMENT_MODE,d,l,c,a,e.C_NUMBER_MODE]},d]},{begin:[/class|interface|trait/,/\s+/,e.UNDERSCORE_IDENT_RE],beginScope:{3:"title.class"},keywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,){\s]|$/,excludeBegin:!0,returnEnd:!0},l,c]},a,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:` +`},u]}}const hgt=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),pgt=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","optgroup","option","p","picture","q","quote","samp","section","select","source","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],mgt=["defs","g","marker","mask","pattern","svg","switch","symbol","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feFlood","feGaussianBlur","feImage","feMerge","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","linearGradient","radialGradient","stop","circle","ellipse","image","line","path","polygon","polyline","rect","text","use","textPath","tspan","foreignObject","clipPath"],ggt=[...pgt,...mgt],bgt=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"].sort().reverse(),Nke=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"].sort().reverse(),jke=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"].sort().reverse(),ygt=["accent-color","align-content","align-items","align-self","alignment-baseline","all","anchor-name","animation","animation-composition","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-range","animation-range-end","animation-range-start","animation-timeline","animation-timing-function","appearance","aspect-ratio","backdrop-filter","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-position-x","background-position-y","background-repeat","background-size","baseline-shift","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-end-end-radius","border-end-start-radius","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-start-end-radius","border-start-start-radius","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-align","box-decoration-break","box-direction","box-flex","box-flex-group","box-lines","box-ordinal-group","box-orient","box-pack","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","color-scheme","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","contain-intrinsic-block-size","contain-intrinsic-height","contain-intrinsic-inline-size","contain-intrinsic-size","contain-intrinsic-width","container","container-name","container-type","content","content-visibility","counter-increment","counter-reset","counter-set","cue","cue-after","cue-before","cursor","cx","cy","direction","display","dominant-baseline","empty-cells","enable-background","field-sizing","fill","fill-opacity","fill-rule","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flood-color","flood-opacity","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-optical-sizing","font-palette","font-size","font-size-adjust","font-smooth","font-smoothing","font-stretch","font-style","font-synthesis","font-synthesis-position","font-synthesis-small-caps","font-synthesis-style","font-synthesis-weight","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-emoji","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","forced-color-adjust","gap","glyph-orientation-horizontal","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphenate-character","hyphenate-limit-chars","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","initial-letter","initial-letter-align","inline-size","inset","inset-area","inset-block","inset-block-end","inset-block-start","inset-inline","inset-inline-end","inset-inline-start","isolation","justify-content","justify-items","justify-self","kerning","left","letter-spacing","lighting-color","line-break","line-height","line-height-step","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","margin-trim","marker","marker-end","marker-mid","marker-start","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","masonry-auto-flow","math-depth","math-shift","math-style","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","offset","offset-anchor","offset-distance","offset-path","offset-position","offset-rotate","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-anchor","overflow-block","overflow-clip-margin","overflow-inline","overflow-wrap","overflow-x","overflow-y","overlay","overscroll-behavior","overscroll-behavior-block","overscroll-behavior-inline","overscroll-behavior-x","overscroll-behavior-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","paint-order","pause","pause-after","pause-before","perspective","perspective-origin","place-content","place-items","place-self","pointer-events","position","position-anchor","position-visibility","print-color-adjust","quotes","r","resize","rest","rest-after","rest-before","right","rotate","row-gap","ruby-align","ruby-position","scale","scroll-behavior","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scroll-timeline","scroll-timeline-axis","scroll-timeline-name","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","shape-rendering","speak","speak-as","src","stop-color","stop-opacity","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","tab-size","table-layout","text-align","text-align-all","text-align-last","text-anchor","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-skip-ink","text-decoration-style","text-decoration-thickness","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-size-adjust","text-transform","text-underline-offset","text-underline-position","text-wrap","text-wrap-mode","text-wrap-style","timeline-scope","top","touch-action","transform","transform-box","transform-origin","transform-style","transition","transition-behavior","transition-delay","transition-duration","transition-property","transition-timing-function","translate","unicode-bidi","user-modify","user-select","vector-effect","vertical-align","view-timeline","view-timeline-axis","view-timeline-inset","view-timeline-name","view-transition-name","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","white-space-collapse","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","x","y","z-index","zoom"].sort().reverse(),vgt=Nke.concat(jke).sort().reverse();function xgt(e){const t=hgt(e),n=vgt,i="and or not only",r="[\\w-]+",s="("+r+"|@\\{"+r+"\\})",a=[],l=[],c=function(O){return{className:"string",begin:"~?"+O+".*?"+O}},u=function(O,w,k){return{className:O,begin:w,relevance:k}},d={$pattern:/[a-z-]+/,keyword:i,attribute:bgt.join(" ")},f={begin:"\\(",end:"\\)",contains:l,keywords:d,relevance:0};l.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,c("'"),c('"'),t.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},t.HEXCOLOR,f,u("variable","@@?"+r,10),u("variable","@\\{"+r+"\\}"),u("built_in","~?`[^`]*?`"),{className:"attribute",begin:r+"\\s*:",end:":",returnBegin:!0,excludeEnd:!0},t.IMPORTANT,{beginKeywords:"and not"},t.FUNCTION_DISPATCH);const h=l.concat({begin:/\{/,end:/\}/,contains:a}),m={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(l)},g={begin:s+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+ygt.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:l}}]},b={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",keywords:d,returnEnd:!0,contains:l,relevance:0}},v={className:"variable",variants:[{begin:"@"+r+"\\s*:",relevance:15},{begin:"@"+r}],starts:{end:"[;}]",returnEnd:!0,contains:h}},y={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:s,end:/\{/}],returnBegin:!0,returnEnd:!0,illegal:`[<='$"]`,relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,m,u("keyword","all\\b"),u("variable","@\\{"+r+"\\}"),{begin:"\\b("+ggt.join("|")+")\\b",className:"selector-tag"},t.CSS_NUMBER_MODE,u("selector-tag",s,0),u("selector-id","#"+s),u("selector-class","\\."+s,0),u("selector-tag","&",0),t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",begin:":("+Nke.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+jke.join("|")+")"},{begin:/\(/,end:/\)/,relevance:0,contains:h},{begin:"!important"},t.FUNCTION_DISPATCH]},x={begin:r+`:(:)?(${n.join("|")})`,returnBegin:!0,contains:[y]};return a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,b,v,x,g,y,m,t.FUNCTION_DISPATCH),{name:"Less",case_insensitive:!0,illegal:`[=>'/<($"]`,contains:a}}function wgt(e){const t="\\[=*\\[",n="\\]=*\\]",i={begin:t,end:n,contains:["self"]},r=[e.COMMENT("--(?!"+t+")","$"),e.COMMENT("--"+t,n,{contains:[i],relevance:10})];return{name:"Lua",aliases:["pluto"],keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:r.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[e.inherit(e.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:r}].concat(r)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:t,end:n,contains:[i],relevance:5}])}}function Rke(e){const t={className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%",subLanguage:"xml",relevance:0},i={begin:"^[-\\*]{3,}",end:"$"},r={className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},s={className:"bullet",begin:"^[ ]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},a={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]},l=/[A-Za-z][A-Za-z0-9+.-]*/,c={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:t.concat(/\[.+?\]\(/,l,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},u={className:"strong",contains:[],variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]},d={className:"emphasis",contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{begin:/_(?![_\s])/,end:/_/,relevance:0}]},f=e.inherit(u,{contains:[]}),h=e.inherit(d,{contains:[]});u.contains.push(h),d.contains.push(f);let m=[n,c];return[u,d,f,h].forEach(y=>{y.contains=y.contains.concat(m)}),m=m.concat(u,d),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:m},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:m}]}]},n,s,u,d,{className:"quote",begin:"^>\\s+",contains:m,end:"$"},r,i,c,a,{scope:"literal",match:/&([a-zA-Z0-9]+|#[0-9]{1,7}|#[Xx][0-9a-fA-F]{1,6});/}]}}function Ogt(e){const t={className:"built_in",begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},n=/[a-zA-Z@][a-zA-Z0-9_]*/,l={"variable.language":["this","super"],$pattern:n,keyword:["while","export","sizeof","typedef","const","struct","for","union","volatile","static","mutable","if","do","return","goto","enum","else","break","extern","asm","case","default","register","explicit","typename","switch","continue","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"],literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"],built_in:["dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],type:["int","float","char","unsigned","signed","short","long","double","wchar_t","unichar","void","bool","BOOL","id|0","_Bool"]},c={$pattern:n,keyword:["@interface","@class","@protocol","@implementation"]};return{name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:l,illegal:"/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+c.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:c,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}function Sgt(e){const t=e.regex,n=["abs","accept","alarm","and","atan2","bind","binmode","bless","break","caller","chdir","chmod","chomp","chop","chown","chr","chroot","class","close","closedir","connect","continue","cos","crypt","dbmclose","dbmopen","defined","delete","die","do","dump","each","else","elsif","endgrent","endhostent","endnetent","endprotoent","endpwent","endservent","eof","eval","exec","exists","exit","exp","fcntl","field","fileno","flock","for","foreach","fork","format","formline","getc","getgrent","getgrgid","getgrnam","gethostbyaddr","gethostbyname","gethostent","getlogin","getnetbyaddr","getnetbyname","getnetent","getpeername","getpgrp","getpriority","getprotobyname","getprotobynumber","getprotoent","getpwent","getpwnam","getpwuid","getservbyname","getservbyport","getservent","getsockname","getsockopt","given","glob","gmtime","goto","grep","gt","hex","if","index","int","ioctl","join","keys","kill","last","lc","lcfirst","length","link","listen","local","localtime","log","lstat","lt","ma","map","method","mkdir","msgctl","msgget","msgrcv","msgsnd","my","ne","next","no","not","oct","open","opendir","or","ord","our","pack","package","pipe","pop","pos","print","printf","prototype","push","q|0","qq","quotemeta","qw","qx","rand","read","readdir","readline","readlink","readpipe","recv","redo","ref","rename","require","reset","return","reverse","rewinddir","rindex","rmdir","say","scalar","seek","seekdir","select","semctl","semget","semop","send","setgrent","sethostent","setnetent","setpgrp","setpriority","setprotoent","setpwent","setservent","setsockopt","shift","shmctl","shmget","shmread","shmwrite","shutdown","sin","sleep","socket","socketpair","sort","splice","split","sprintf","sqrt","srand","stat","state","study","sub","substr","symlink","syscall","sysopen","sysread","sysseek","system","syswrite","tell","telldir","tie","tied","time","times","tr","truncate","uc","ucfirst","umask","undef","unless","unlink","unpack","unshift","untie","until","use","utime","values","vec","wait","waitpid","wantarray","warn","when","while","write","x|0","xor","y|0"],i=/[dualxmsipngr]{0,12}/,r={$pattern:/[\w.]+/,keyword:n.join(" ")},s={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:r},a={begin:/->\{/,end:/\}/},l={scope:"attr",match:/\s+:\s*\w+(\s*\(.*?\))?/},c={scope:"variable",variants:[{begin:/\$\d/},{begin:t.concat(/[$%@](?!")(\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")},{begin:/[$%@](?!")[^\s\w{=]|\$=/,relevance:0}],contains:[l]},u={className:"number",variants:[{match:/0?\.[0-9][0-9_]+\b/},{match:/\bv?(0|[1-9][0-9_]*(\.[0-9_]+)?|[1-9][0-9_]*)\b/},{match:/\b0[0-7][0-7_]*\b/},{match:/\b0x[0-9a-fA-F][0-9a-fA-F_]*\b/},{match:/\b0b[0-1][0-1_]*\b/}],relevance:0},d=[e.BACKSLASH_ESCAPE,s,c],f=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],h=(b,v,y="\\1")=>{const x=y==="\\1"?y:t.concat(y,v);return t.concat(t.concat("(?:",b,")"),v,/(?:\\.|[^\\\/])*?/,x,/(?:\\.|[^\\\/])*?/,y,i)},m=(b,v,y)=>t.concat(t.concat("(?:",b,")"),v,/(?:\\.|[^\\\/])*?/,y,i),g=[c,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),a,{className:"string",contains:d,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:"-?\\w+\\s*=>",relevance:0}]},u,{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{begin:h("s|tr|y",t.either(...f,{capture:!0}))},{begin:h("s|tr|y","\\(","\\)")},{begin:h("s|tr|y","\\[","\\]")},{begin:h("s|tr|y","\\{","\\}")}],relevance:2},{className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:m("(?:m|qr)?",/\//,/\//)},{begin:m("m|qr",t.either(...f,{capture:!0}),/\1/)},{begin:m("m|qr",/\(/,/\)/)},{begin:m("m|qr",/\[/,/\]/)},{begin:m("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub method",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE,l]},{className:"class",beginKeywords:"class",end:"[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE,l,u]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return s.contains=g,a.contains=g,{name:"Perl",aliases:["pl","pm"],keywords:r,contains:g}}function kgt(e){const t=e.regex,n=/(?![A-Za-z0-9])(?![$])/,i=t.concat(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/,n),r=t.concat(/(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/,n),s=t.concat(/[A-Z]+/,n),a={scope:"variable",match:"\\$+"+i},l={scope:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?=/},{begin:/<\?/,relevance:.1},{begin:/\?>/}]},c={scope:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},u=e.inherit(e.APOS_STRING_MODE,{illegal:null}),d=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(c)}),f={begin:/<<<[ \t]*(?:(\w+)|"(\w+)")\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(c),"on:begin":(_,P)=>{P.data._beginMatch=_[1]||_[2]},"on:end":(_,P)=>{P.data._beginMatch!==_[1]&&P.ignoreMatch()}},h=e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*'(\w+)'\n/,end:/[ \t]*(\w+)\b/}),m=`[ +]`,g={scope:"string",variants:[d,u,f,h]},b={scope:"number",variants:[{begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{begin:"\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b"},{begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"}],relevance:0},v=["false","null","true"],y=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__LINE__","__METHOD__","__NAMESPACE__","__TRAIT__","die","echo","exit","include","include_once","print","require","require_once","array","abstract","and","as","binary","bool","boolean","break","callable","case","catch","class","clone","const","continue","declare","default","do","double","else","elseif","empty","enddeclare","endfor","endforeach","endif","endswitch","endwhile","enum","eval","extends","final","finally","float","for","foreach","from","global","goto","if","implements","instanceof","insteadof","int","integer","interface","isset","iterable","list","match|0","mixed","new","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],x=["Error|0","AppendIterator","ArgumentCountError","ArithmeticError","ArrayIterator","ArrayObject","AssertionError","BadFunctionCallException","BadMethodCallException","CachingIterator","CallbackFilterIterator","CompileError","Countable","DirectoryIterator","DivisionByZeroError","DomainException","EmptyIterator","ErrorException","Exception","FilesystemIterator","FilterIterator","GlobIterator","InfiniteIterator","InvalidArgumentException","IteratorIterator","LengthException","LimitIterator","LogicException","MultipleIterator","NoRewindIterator","OutOfBoundsException","OutOfRangeException","OuterIterator","OverflowException","ParentIterator","ParseError","RangeException","RecursiveArrayIterator","RecursiveCachingIterator","RecursiveCallbackFilterIterator","RecursiveDirectoryIterator","RecursiveFilterIterator","RecursiveIterator","RecursiveIteratorIterator","RecursiveRegexIterator","RecursiveTreeIterator","RegexIterator","RuntimeException","SeekableIterator","SplDoublyLinkedList","SplFileInfo","SplFileObject","SplFixedArray","SplHeap","SplMaxHeap","SplMinHeap","SplObjectStorage","SplObserver","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],w={keyword:y,literal:(_=>{const P=[];return _.forEach(I=>{P.push(I),I.toLowerCase()===I?P.push(I.toUpperCase()):P.push(I.toLowerCase())}),P})(v),built_in:x},k=_=>_.map(P=>P.replace(/\|\d+$/,"")),S={variants:[{match:[/new/,t.concat(m,"+"),t.concat("(?!",k(x).join("\\b|"),"\\b)"),r],scope:{1:"keyword",4:"title.class"}}]},E=t.concat(i,"\\b(?!\\()"),C={variants:[{match:[t.concat(/::/,t.lookahead(/(?!class\b)/)),E],scope:{2:"variable.constant"}},{match:[/::/,/class/],scope:{2:"variable.language"}},{match:[r,t.concat(/::/,t.lookahead(/(?!class\b)/)),E],scope:{1:"title.class",3:"variable.constant"}},{match:[r,t.concat("::",t.lookahead(/(?!class\b)/))],scope:{1:"title.class"}},{match:[r,/::/,/class/],scope:{1:"title.class",3:"variable.language"}}]},N={scope:"attr",match:t.concat(i,t.lookahead(":"),t.lookahead(/(?!::)/))},T={relevance:0,begin:/\(/,end:/\)/,keywords:w,contains:[N,a,C,e.C_BLOCK_COMMENT_MODE,g,b,S]},j={relevance:0,match:[/\b/,t.concat("(?!fn\\b|function\\b|",k(y).join("\\b|"),"|",k(x).join("\\b|"),"\\b)"),i,t.concat(m,"*"),t.lookahead(/(?=\()/)],scope:{3:"title.function.invoke"},contains:[T]};T.contains.push(j);const A=[N,C,e.C_BLOCK_COMMENT_MODE,g,b,S],L={begin:t.concat(/#\[\s*\\?/,t.either(r,s)),beginScope:"meta",end:/]/,endScope:"meta",keywords:{literal:v,keyword:["new","array"]},contains:[{begin:/\[/,end:/]/,keywords:{literal:v,keyword:["new","array"]},contains:["self",...A]},...A,{scope:"meta",variants:[{match:r},{match:s}]}]};return{case_insensitive:!1,keywords:w,contains:[L,e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{contains:[{scope:"doctag",match:"@[A-Za-z]+"}]}),{match:/__halt_compiler\(\);/,keywords:"__halt_compiler",starts:{scope:"comment",end:e.MATCH_NOTHING_RE,contains:[{match:/\?>/,scope:"meta",endsParent:!0}]}},l,{scope:"variable.language",match:/\$this\b/},a,j,C,{match:[/const/,/\s/,i],scope:{1:"keyword",3:"variable.constant"}},S,{scope:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{scope:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:w,contains:["self",L,a,C,e.C_BLOCK_COMMENT_MODE,g,b]}]},{scope:"class",variants:[{beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:"title.class"})]},{beginKeywords:"use",relevance:0,end:";",contains:[{match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},g,b]}}function Egt(e){return{name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}function Cgt(e){return{name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}}function Pke(e){const t=e.regex,n=new RegExp("[\\p{XID_Start}_]\\p{XID_Continue}*","u"),i=["and","as","assert","async","await","break","case","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","match","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],l={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:i,built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]},c={className:"meta",begin:/^(>>>|\.\.\.) /},u={className:"subst",begin:/\{/,end:/\}/,keywords:l,illegal:/#/},d={begin:/\{\{/,relevance:0},f={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,c],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,c],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,c,d,u]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,c,d,u]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,d,u]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,d,u]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},h="[0-9](_?[0-9])*",m=`(\\b(${h}))?\\.(${h})|\\b(${h})\\.`,g=`\\b|${i.join("|")}`,b={className:"number",relevance:0,variants:[{begin:`(\\b(${h})|(${m}))[eE][+-]?(${h})[jJ]?(?=${g})`},{begin:`(${m})[jJ]?`},{begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${g})`},{begin:`\\b0[bB](_?[01])+[lL]?(?=${g})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${g})`},{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${g})`},{begin:`\\b(${h})[jJ](?=${g})`}]},v={className:"comment",begin:t.lookahead(/# type:/),end:/$/,keywords:l,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},y={className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:["self",c,b,f,e.HASH_COMMENT_MODE]}]};return u.contains=[f,b,c],{name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:l,illegal:/(<\/|\?)|=>/,contains:[c,b,{scope:"variable.language",match:/\bself\b/},{beginKeywords:"if",relevance:0},{match:/\bor\b/,scope:"keyword"},f,v,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,n],scope:{1:"keyword",3:"title.function"},contains:[y]},{variants:[{match:[/\bclass/,/\s+/,n,/\s*/,/\(\s*/,n,/\s*\)/]},{match:[/\bclass/,/\s+/,n]}],scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[b,y,f]}]}}function Tgt(e){return{aliases:["pycon"],contains:[{className:"meta.prompt",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}}function Agt(e){const t=e.regex,n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,i=t.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),r=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,s=t.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/);return{name:"R",keywords:{$pattern:n,keyword:"function if in break next repeat else for while",literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"},contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/,starts:{end:t.lookahead(t.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{scope:"variable",variants:[{match:n},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{1:"operator",2:"number"},match:[r,i]},{scope:{1:"operator",2:"number"},match:[/%[^%]*%/,i]},{scope:{1:"punctuation",2:"number"},match:[s,i]},{scope:{2:"number"},match:[/[^a-zA-Z0-9._]|^/,i]}]},{scope:{3:"operator"},match:[n,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:r},{match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:s},{begin:"`",end:"`",contains:[{begin:/\\./}]}]}}function _gt(e){const t=e.regex,n="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",i=t.either(/\b([A-Z]+[a-z0-9]+)+/,/\b([A-Z]+[a-z0-9]+)+[A-Z]+/),r=t.concat(i,/(::\w+)*/),a={"variable.constant":["__FILE__","__LINE__","__ENCODING__"],"variable.language":["self","super"],keyword:["alias","and","begin","BEGIN","break","case","class","defined","do","else","elsif","end","END","ensure","for","if","in","module","next","not","or","redo","require","rescue","retry","return","then","undef","unless","until","when","while","yield",...["include","extend","prepend","public","private","protected","raise","throw"]],built_in:["proc","lambda","attr_accessor","attr_reader","attr_writer","define_method","private_constant","module_function"],literal:["true","false","nil"]},l={className:"doctag",begin:"@[A-Za-z]+"},c={begin:"#<",end:">"},u=[e.COMMENT("#","$",{contains:[l]}),e.COMMENT("^=begin","^=end",{contains:[l],relevance:10}),e.COMMENT("^__END__",e.MATCH_NOTHING_RE)],d={className:"subst",begin:/#\{/,end:/\}/,keywords:a},f={className:"string",contains:[e.BACKSLASH_ESCAPE,d],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:t.concat(/<<[-~]?'?/,t.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,d]})]}]},h="[1-9](_?[0-9])*|0",m="[0-9](_?[0-9])*",g={className:"number",relevance:0,variants:[{begin:`\\b(${h})(\\.(${m}))?([eE][+-]?(${m})|r)?i?\\b`},{begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{begin:"\\b0(_?[0-7])+r?i?\\b"}]},b={variants:[{match:/\(\)/},{className:"params",begin:/\(/,end:/(?=\))/,excludeBegin:!0,endsParent:!0,keywords:a}]},S=[f,{variants:[{match:[/class\s+/,r,/\s+<\s+/,r]},{match:[/\b(class|module)\s+/,r]}],scope:{2:"title.class",4:"title.class.inherited"},keywords:a},{match:[/(include|extend)\s+/,r],scope:{2:"title.class"},keywords:a},{relevance:0,match:[r,/\.new[. (]/],scope:{1:"title.class"}},{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},{relevance:0,match:i,scope:"title.class"},{match:[/def/,/\s+/,n],scope:{1:"keyword",3:"title.function"},contains:[b]},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[f,{begin:n}],relevance:0},g,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{className:"params",begin:/\|(?!=)/,end:/\|/,excludeBegin:!0,excludeEnd:!0,relevance:0,keywords:a},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,d],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(c,u),relevance:0}].concat(c,u);d.contains=S,b.contains=S;const T=[{begin:/^\s*=>/,starts:{end:"$",contains:S}},{className:"meta.prompt",begin:"^("+"[>?]>"+"|"+"[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]"+"|"+"(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>"+")(?=[ ])",starts:{end:"$",keywords:a,contains:S}}];return u.unshift(c),{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:a,illegal:/\/\*/,contains:[e.SHEBANG({binary:"ruby"})].concat(T).concat(u).concat(S)}}function Ngt(e){const t=e.regex,n=/(r#)?/,i=t.concat(n,e.UNDERSCORE_IDENT_RE),r=t.concat(n,e.IDENT_RE),s={className:"title.function.invoke",relevance:0,begin:t.concat(/\b/,/(?!let|for|while|if|else|match\b)/,r,t.lookahead(/\s*\(/))},a="([ui](8|16|32|64|128|size)|f(32|64))?",l=["abstract","as","async","await","become","box","break","const","continue","crate","do","dyn","else","enum","extern","false","final","fn","for","if","impl","in","let","loop","macro","match","mod","move","mut","override","priv","pub","ref","return","self","Self","static","struct","super","trait","true","try","type","typeof","union","unsafe","unsized","use","virtual","where","while","yield"],c=["true","false","Some","None","Ok","Err"],u=["drop ","Copy","Send","Sized","Sync","Drop","Fn","FnMut","FnOnce","ToOwned","Clone","Debug","PartialEq","PartialOrd","Eq","Ord","AsRef","AsMut","Into","From","Default","Iterator","Extend","IntoIterator","DoubleEndedIterator","ExactSizeIterator","SliceConcatExt","ToString","assert!","assert_eq!","bitflags!","bytes!","cfg!","col!","concat!","concat_idents!","debug_assert!","debug_assert_eq!","env!","eprintln!","panic!","file!","format!","format_args!","include_bytes!","include_str!","line!","local_data_key!","module_path!","option_env!","print!","println!","select!","stringify!","try!","unimplemented!","unreachable!","vec!","write!","writeln!","macro_rules!","assert_ne!","debug_assert_ne!"],d=["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"];return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",type:d,keyword:l,literal:c,built_in:u},illegal:""},s]}}const jgt=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}),Rgt=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","optgroup","option","p","picture","q","quote","samp","section","select","source","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],Igt=["defs","g","marker","mask","pattern","svg","switch","symbol","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feFlood","feGaussianBlur","feImage","feMerge","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","linearGradient","radialGradient","stop","circle","ellipse","image","line","path","polygon","polyline","rect","text","use","textPath","tspan","foreignObject","clipPath"],Pgt=[...Rgt,...Igt],Dgt=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"].sort().reverse(),Mgt=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"].sort().reverse(),Lgt=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"].sort().reverse(),$gt=["accent-color","align-content","align-items","align-self","alignment-baseline","all","anchor-name","animation","animation-composition","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-range","animation-range-end","animation-range-start","animation-timeline","animation-timing-function","appearance","aspect-ratio","backdrop-filter","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-position-x","background-position-y","background-repeat","background-size","baseline-shift","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-end-end-radius","border-end-start-radius","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-start-end-radius","border-start-start-radius","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-align","box-decoration-break","box-direction","box-flex","box-flex-group","box-lines","box-ordinal-group","box-orient","box-pack","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","color-scheme","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","contain-intrinsic-block-size","contain-intrinsic-height","contain-intrinsic-inline-size","contain-intrinsic-size","contain-intrinsic-width","container","container-name","container-type","content","content-visibility","counter-increment","counter-reset","counter-set","cue","cue-after","cue-before","cursor","cx","cy","direction","display","dominant-baseline","empty-cells","enable-background","field-sizing","fill","fill-opacity","fill-rule","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flood-color","flood-opacity","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-optical-sizing","font-palette","font-size","font-size-adjust","font-smooth","font-smoothing","font-stretch","font-style","font-synthesis","font-synthesis-position","font-synthesis-small-caps","font-synthesis-style","font-synthesis-weight","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-emoji","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","forced-color-adjust","gap","glyph-orientation-horizontal","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphenate-character","hyphenate-limit-chars","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","initial-letter","initial-letter-align","inline-size","inset","inset-area","inset-block","inset-block-end","inset-block-start","inset-inline","inset-inline-end","inset-inline-start","isolation","justify-content","justify-items","justify-self","kerning","left","letter-spacing","lighting-color","line-break","line-height","line-height-step","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","margin-trim","marker","marker-end","marker-mid","marker-start","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","masonry-auto-flow","math-depth","math-shift","math-style","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","offset","offset-anchor","offset-distance","offset-path","offset-position","offset-rotate","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-anchor","overflow-block","overflow-clip-margin","overflow-inline","overflow-wrap","overflow-x","overflow-y","overlay","overscroll-behavior","overscroll-behavior-block","overscroll-behavior-inline","overscroll-behavior-x","overscroll-behavior-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","paint-order","pause","pause-after","pause-before","perspective","perspective-origin","place-content","place-items","place-self","pointer-events","position","position-anchor","position-visibility","print-color-adjust","quotes","r","resize","rest","rest-after","rest-before","right","rotate","row-gap","ruby-align","ruby-position","scale","scroll-behavior","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scroll-timeline","scroll-timeline-axis","scroll-timeline-name","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","shape-rendering","speak","speak-as","src","stop-color","stop-opacity","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","tab-size","table-layout","text-align","text-align-all","text-align-last","text-anchor","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-skip-ink","text-decoration-style","text-decoration-thickness","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-size-adjust","text-transform","text-underline-offset","text-underline-position","text-wrap","text-wrap-mode","text-wrap-style","timeline-scope","top","touch-action","transform","transform-box","transform-origin","transform-style","transition","transition-behavior","transition-delay","transition-duration","transition-property","transition-timing-function","translate","unicode-bidi","user-modify","user-select","vector-effect","vertical-align","view-timeline","view-timeline-axis","view-timeline-inset","view-timeline-name","view-transition-name","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","white-space-collapse","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","x","y","z-index","zoom"].sort().reverse();function Fgt(e){const t=jgt(e),n=Lgt,i=Mgt,r="@[a-z-]+",s="and or not only",l={className:"variable",begin:"(\\$"+"[a-zA-Z-][a-zA-Z0-9_-]*"+")\\b",relevance:0};return{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.CSS_NUMBER_MODE,{className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",begin:"\\b("+Pgt.join("|")+")\\b",relevance:0},{className:"selector-pseudo",begin:":("+i.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+n.join("|")+")"},l,{begin:/\(/,end:/\)/,contains:[t.CSS_NUMBER_MODE]},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+$gt.join("|")+")\\b"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:/:/,end:/[;}{]/,relevance:0,contains:[t.BLOCK_COMMENT,l,t.HEXCOLOR,t.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT,t.FUNCTION_DISPATCH]},{begin:"@(page|font-face)",keywords:{$pattern:r,keyword:"@page @font-face"}},{begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:s,attribute:Dgt.join(" ")},contains:[{begin:r,className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"},l,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,t.CSS_NUMBER_MODE]},t.FUNCTION_DISPATCH]}}function Bgt(e){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta.prompt",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}function Ugt(e){const t=e.regex,n=e.COMMENT("--","$"),i={scope:"string",variants:[{begin:/'/,end:/'/,contains:[{match:/''/}]}]},r={begin:/"/,end:/"/,contains:[{match:/""/}]},s=["true","false","unknown"],a=["double precision","large object","with timezone","without timezone"],l=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],c=["add","asc","collation","desc","final","first","last","view"],u=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year"],d=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],f=["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"],h=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],m=d,g=[...u,...c].filter(k=>!d.includes(k)),b={scope:"variable",match:/@[a-z0-9][a-z0-9_]*/},v={scope:"operator",match:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0},y={match:t.concat(/\b/,t.either(...m),/\s*\(/),relevance:0,keywords:{built_in:m}};function x(k){return t.concat(/\b/,t.either(...k.map(S=>S.replace(/\s+/,"\\s+"))),/\b/)}const O={scope:"keyword",match:x(h),relevance:0};function w(k,{exceptions:S,when:E}={}){const C=E;return S=S||[],k.map(N=>N.match(/\|\d+$/)||S.includes(N)?N:C(N)?`${N}|0`:N)}return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,keyword:w(g,{when:k=>k.length<3}),literal:s,type:l,built_in:f},contains:[{scope:"type",match:x(a)},O,y,b,i,r,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,v]}}function Dke(e){return e?typeof e=="string"?e:e.source:null}function X1(e){return kr("(?=",e,")")}function kr(...e){return e.map(n=>Dke(n)).join("")}function Qgt(e){const t=e[e.length-1];return typeof t=="object"&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function Lo(...e){return"("+(Qgt(e).capture?"":"?:")+e.map(i=>Dke(i)).join("|")+")"}const sU=e=>kr(/\b/,e,/\w$/.test(e)?/\b/:/\B/),zgt=["Protocol","Type"].map(sU),dY=["init","self"].map(sU),Vgt=["Any","Self"],BM=["actor","any","associatedtype","async","await",/as\?/,/as!/,"as","borrowing","break","case","catch","class","consume","consuming","continue","convenience","copy","default","defer","deinit","didSet","distributed","do","dynamic","each","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","macro","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","package","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],fY=["false","nil","true"],Hgt=["assignment","associativity","higherThan","left","lowerThan","none","right"],qgt=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warning"],hY=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],Mke=Lo(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),Lke=Lo(Mke,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),UM=kr(Mke,Lke,"*"),$ke=Lo(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),yN=Lo($ke,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),fd=kr($ke,yN,"*"),PT=kr(/[A-Z]/,yN,"*"),Wgt=["attached","autoclosure",kr(/convention\(/,Lo("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","freestanding","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",kr(/objc\(/,fd,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","Sendable","testable","UIApplicationMain","unchecked","unknown","usableFromInline","warn_unqualified_access"],Kgt=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function Ggt(e){const t={match:/\s+/,relevance:0},n=e.COMMENT("/\\*","\\*/",{contains:["self"]}),i=[e.C_LINE_COMMENT_MODE,n],r={match:[/\./,Lo(...zgt,...dY)],className:{2:"keyword"}},s={match:kr(/\./,Lo(...BM)),relevance:0},a=BM.filter(he=>typeof he=="string").concat(["_|0"]),l=BM.filter(he=>typeof he!="string").concat(Vgt).map(sU),c={variants:[{className:"keyword",match:Lo(...l,...dY)}]},u={$pattern:Lo(/\b\w+/,/#\w+/),keyword:a.concat(qgt),literal:fY},d=[r,s,c],f={match:kr(/\./,Lo(...hY)),relevance:0},h={className:"built_in",match:kr(/\b/,Lo(...hY),/(?=\()/)},m=[f,h],g={match:/->/,relevance:0},b={className:"operator",relevance:0,variants:[{match:UM},{match:`\\.(\\.|${Lke})+`}]},v=[g,b],y="([0-9]_*)+",x="([0-9a-fA-F]_*)+",O={className:"number",relevance:0,variants:[{match:`\\b(${y})(\\.(${y}))?([eE][+-]?(${y}))?\\b`},{match:`\\b0x(${x})(\\.(${x}))?([pP][+-]?(${y}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},w=(he="")=>({className:"subst",variants:[{match:kr(/\\/,he,/[0\\tnr"']/)},{match:kr(/\\/,he,/u\{[0-9a-fA-F]{1,8}\}/)}]}),k=(he="")=>({className:"subst",match:kr(/\\/,he,/[\t ]*(?:[\r\n]|\r\n)/)}),S=(he="")=>({className:"subst",label:"interpol",begin:kr(/\\/,he,/\(/),end:/\)/}),E=(he="")=>({begin:kr(he,/"""/),end:kr(/"""/,he),contains:[w(he),k(he),S(he)]}),C=(he="")=>({begin:kr(he,/"/),end:kr(/"/,he),contains:[w(he),S(he)]}),N={className:"string",variants:[E(),E("#"),E("##"),E("###"),C(),C("#"),C("##"),C("###")]},T=[e.BACKSLASH_ESCAPE,{begin:/\[/,end:/\]/,relevance:0,contains:[e.BACKSLASH_ESCAPE]}],j={begin:/\/[^\s](?=[^/\n]*\/)/,end:/\//,contains:T},A=he=>{const Me=kr(he,/\//),De=kr(/\//,he);return{begin:Me,end:De,contains:[...T,{scope:"comment",begin:`#(?!.*${De})`,end:/$/}]}},L={scope:"regexp",variants:[A("###"),A("##"),A("#"),j]},_={match:kr(/`/,fd,/`/)},P={className:"variable",match:/\$\d+/},I={className:"variable",match:`\\$${yN}+`},$=[_,P,I],M={match:/(@|#(un)?)available/,scope:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:Kgt,contains:[...v,O,N]}]}},B={scope:"keyword",match:kr(/@/,Lo(...Wgt),X1(Lo(/\(/,/\s+/)))},R={scope:"meta",match:kr(/@/,fd)},V=[M,B,R],K={match:X1(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:kr(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,yN,"+")},{className:"type",match:PT,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:kr(/\s+&\s+/,X1(PT)),relevance:0}]},Q={begin://,keywords:u,contains:[...i,...d,...V,g,K]};K.contains.push(Q);const q={match:kr(fd,/\s*:/),keywords:"_|0",relevance:0},U={begin:/\(/,end:/\)/,relevance:0,keywords:u,contains:["self",q,...i,L,...d,...m,...v,O,N,...$,...V,K]},G={begin://,keywords:"repeat each",contains:[...i,K]},ae={begin:Lo(X1(kr(fd,/\s*:/)),X1(kr(fd,/\s+/,fd,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:fd}]},re={begin:/\(/,end:/\)/,keywords:u,contains:[ae,...i,...d,...v,O,N,...V,K,U],endsParent:!0,illegal:/["']/},se={match:[/(func|macro)/,/\s+/,Lo(_.match,fd,UM)],className:{1:"keyword",3:"title.function"},contains:[G,re,t],illegal:[/\[/,/%/]},me={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[G,re,t],illegal:/\[|%/},Z={match:[/operator/,/\s+/,UM],className:{1:"keyword",3:"title"}},X={begin:[/precedencegroup/,/\s+/,PT],className:{1:"keyword",3:"title"},contains:[K],keywords:[...Hgt,...fY],end:/}/},J={match:[/class\b/,/\s+/,/func\b/,/\s+/,/\b[A-Za-z_][A-Za-z0-9_]*\b/],scope:{1:"keyword",3:"keyword",5:"title.function"}},oe={match:[/class\b/,/\s+/,/var\b/],scope:{1:"keyword",3:"keyword"}},Ee={begin:[/(struct|protocol|class|extension|enum|actor)/,/\s+/,fd,/\s*/],beginScope:{1:"keyword",3:"title.class"},keywords:u,contains:[G,...d,{begin:/:/,end:/\{/,keywords:u,contains:[{scope:"title.class.inherited",match:PT},...d],relevance:0}]};for(const he of N.variants){const Me=he.contains.find(_e=>_e.label==="interpol");Me.keywords=u;const De=[...d,...m,...v,O,N,...$];Me.contains=[...De,{begin:/\(/,end:/\)/,contains:["self",...De]}]}return{name:"Swift",keywords:u,contains:[...i,se,me,J,oe,Ee,Z,X,{beginKeywords:"import",end:/$/,contains:[...i],relevance:0},L,...d,...m,...v,O,N,...$,...V,K,U]}}const vN="[A-Za-z$_][0-9A-Za-z$_]*",Fke=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends","using"],Bke=["true","false","null","undefined","NaN","Infinity"],Uke=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],Qke=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],zke=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],Vke=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],Hke=[].concat(zke,Uke,Qke);function Xgt(e){const t=e.regex,n=(M,{after:B})=>{const R="",end:""},s=/<[A-Za-z0-9\\._:-]+\s*\/>/,a={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(M,B)=>{const R=M[0].length+M.index,V=M.input[R];if(V==="<"||V===","){B.ignoreMatch();return}V===">"&&(n(M,{after:R})||B.ignoreMatch());let K;const Q=M.input.substring(R);if(K=Q.match(/^\s*=/)){B.ignoreMatch();return}if((K=Q.match(/^\s+extends\s+/))&&K.index===0){B.ignoreMatch();return}}},l={$pattern:vN,keyword:Fke,literal:Bke,built_in:Hke,"variable.language":Vke},c="[0-9](_?[0-9])*",u=`\\.(${c})`,d="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",f={className:"number",variants:[{begin:`(\\b(${d})((${u})|\\.)?|(${u}))[eE][+-]?(${c})\\b`},{begin:`\\b(${d})\\b((${u})\\b|\\.)?|(${u})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},h={className:"subst",begin:"\\$\\{",end:"\\}",keywords:l,contains:[]},m={begin:".?html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"xml"}},g={begin:".?css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"css"}},b={begin:".?gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"graphql"}},v={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,h]},x={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:i+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},O=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,g,b,v,{match:/\$\d+/},f];h.contains=O.concat({begin:/\{/,end:/\}/,keywords:l,contains:["self"].concat(O)});const w=[].concat(x,h.contains),k=w.concat([{begin:/(\s*)\(/,end:/\)/,keywords:l,contains:["self"].concat(w)}]),S={className:"params",begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:k},E={variants:[{match:[/class/,/\s+/,i,/\s+/,/extends/,/\s+/,t.concat(i,"(",t.concat(/\./,i),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,i],scope:{1:"keyword",3:"title.class"}}]},C={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...Uke,...Qke]}},N={label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},T={variants:[{match:[/function/,/\s+/,i,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[S],illegal:/%/},j={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"};function A(M){return t.concat("(?!",M.join("|"),")")}const L={match:t.concat(/\b/,A([...zke,"super","import"].map(M=>`${M}\\s*\\(`)),i,t.lookahead(/\s*\(/)),className:"title.function",relevance:0},_={begin:t.concat(/\./,t.lookahead(t.concat(i,/(?![0-9A-Za-z$_(])/))),end:i,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},P={match:[/get|set/,/\s+/,i,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},S]},I="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",$={match:[/const|var|let/,/\s+/,i,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(I)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[S]};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:l,exports:{PARAMS_CONTAINS:k,CLASS_REFERENCE:C},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),N,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,g,b,v,x,{match:/\$\d+/},f,C,{scope:"attr",match:i+t.lookahead(":"),relevance:0},$,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[x,e.REGEXP_MODE,{className:"function",begin:I,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:k}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:r.begin,end:r.end},{match:s},{begin:a.begin,"on:begin":a.isTrulyOpeningTag,end:a.end}],subLanguage:"xml",contains:[{begin:a.begin,end:a.end,skip:!0,contains:["self"]}]}]},T,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[S,e.inherit(e.TITLE_MODE,{begin:i,className:"title.function"})]},{match:/\.\.\./,relevance:0},_,{match:"\\$"+i,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[S]},L,j,E,P,{match:/\$[(.]/}]}}function qke(e){const t=e.regex,n=Xgt(e),i=vN,r=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],s={begin:[/namespace/,/\s+/,e.IDENT_RE],beginScope:{1:"keyword",3:"title.class"}},a={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:{keyword:"interface extends",built_in:r},contains:[n.exports.CLASS_REFERENCE]},l={className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/},c=["type","interface","public","private","protected","implements","declare","abstract","readonly","enum","override","satisfies"],u={$pattern:vN,keyword:Fke.concat(c),literal:Bke,built_in:Hke.concat(r),"variable.language":Vke},d={className:"meta",begin:"@"+i},f=(b,v,y)=>{const x=b.contains.findIndex(O=>O.label===v);if(x===-1)throw new Error("can not find mode to replace");b.contains.splice(x,1,y)};Object.assign(n.keywords,u),n.exports.PARAMS_CONTAINS.push(d);const h=n.contains.find(b=>b.scope==="attr"),m=Object.assign({},h,{match:t.concat(i,t.lookahead(/\s*\?:/))});n.exports.PARAMS_CONTAINS.push([n.exports.CLASS_REFERENCE,h,m]),n.contains=n.contains.concat([d,s,a,m]),f(n,"shebang",e.SHEBANG()),f(n,"use_strict",l);const g=n.contains.find(b=>b.label==="func.def");return g.relevance=0,Object.assign(n,{name:"TypeScript",aliases:["ts","tsx","mts","cts"]}),n}function Ygt(e){const t=e.regex,n={className:"string",begin:/"(""|[^/n])"C\b/},i={className:"string",begin:/"/,end:/"/,illegal:/\n/,contains:[{begin:/""/}]},r=/\d{1,2}\/\d{1,2}\/\d{4}/,s=/\d{4}-\d{1,2}-\d{1,2}/,a=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,l=/\d{1,2}(:\d{1,2}){1,2}/,c={className:"literal",variants:[{begin:t.concat(/# */,t.either(s,r),/ *#/)},{begin:t.concat(/# */,l,/ *#/)},{begin:t.concat(/# */,a,/ *#/)},{begin:t.concat(/# */,t.either(s,r),/ +/,t.either(a,l),/ *#/)}]},u={className:"number",relevance:0,variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},d={className:"label",begin:/^\w+:/},f=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]}),h=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",literal:"true false nothing"},illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[n,i,c,u,d,f,h,{className:"meta",begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,end:/$/,keywords:{keyword:"const disable else elseif enable end externalsource if region then"},contains:[h]}]}}function Zgt(e){e.regex;const t=e.COMMENT(/\(;/,/;\)/);t.contains.push("self");const n=e.COMMENT(/;;/,/$/),i=["anyfunc","block","br","br_if","br_table","call","call_indirect","data","drop","elem","else","end","export","func","global.get","global.set","local.get","local.set","local.tee","get_global","get_local","global","if","import","local","loop","memory","memory.grow","memory.size","module","mut","nop","offset","param","result","return","select","set_global","set_local","start","table","tee_local","then","type","unreachable"],r={begin:[/(?:func|call|call_indirect)/,/\s+/,/\$[^\s)]+/],className:{1:"keyword",3:"title.function"}},s={className:"variable",begin:/\$[\w_]+/},a={match:/(\((?!;)|\))+/,className:"punctuation",relevance:0},l={className:"number",relevance:0,match:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/},c={match:/(i32|i64|f32|f64)(?!\.)/,className:"type"},u={className:"keyword",match:/\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/};return{name:"WebAssembly",keywords:{$pattern:/[\w.]+/,keyword:i},contains:[n,t,{match:[/(?:offset|align)/,/\s*/,/=/],className:{1:"keyword",3:"operator"}},s,a,r,e.QUOTE_STRING_MODE,c,u,l]}}function Jgt(e){const t=e.regex,n=t.concat(/[\p{L}_]/u,t.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),i=/[\p{L}0-9._:-]+/u,r={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},s={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},a=e.inherit(s,{begin:/\(/,end:/\)/}),l=e.inherit(e.APOS_STRING_MODE,{className:"string"}),c=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),u={endsWithParent:!0,illegal:/`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin://,relevance:10,contains:[s,c,l,a,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin://,contains:[s,a,c,l]}]}]},e.COMMENT(//,{relevance:10}),{begin://,relevance:10},r,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[c]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",begin:/)/,end:/>/,keywords:{name:"style"},contains:[u],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/)/,end:/>/,keywords:{name:"script"},contains:[u],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:t.concat(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:n,relevance:0,starts:u}]},{className:"tag",begin:t.concat(/<\//,t.lookahead(t.concat(n,/>/))),contains:[{className:"name",begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}function Wke(e){const t="true false yes no null",n="[\\w#;/?:@&=+$,.~*'()[\\]]+",i={className:"attr",variants:[{begin:/[\w*@][\w*@ :()\./-]*:(?=[ \t]|$)/},{begin:/"[\w*@][\w*@ :()\./-]*":(?=[ \t]|$)/},{begin:/'[\w*@][\w*@ :()\./-]*':(?=[ \t]|$)/}]},r={className:"template-variable",variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]},s={className:"string",relevance:0,begin:/'/,end:/'/,contains:[{match:/''/,scope:"char.escape",relevance:0}]},a={className:"string",relevance:0,variants:[{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,r]},l=e.inherit(a,{variants:[{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),h={className:"number",begin:"\\b"+"[0-9]{4}(-[0-9][0-9]){0,2}"+"([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?"+"(\\.[0-9]*)?"+"([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?"+"\\b"},m={end:",",endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},g={begin:/\{/,end:/\}/,contains:[m],illegal:"\\n",relevance:0},b={begin:"\\[",end:"\\]",contains:[m],illegal:"\\n",relevance:0},v=[i,{className:"meta",begin:"^---\\s*$",relevance:10},{className:"string",begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+n},{className:"type",begin:"!<"+n+">"},{className:"type",begin:"!"+n},{className:"type",begin:"!!"+n},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},h,{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},g,b,s,a],y=[...v];return y.pop(),y.push(l),m.contains=y,{name:"YAML",case_insensitive:!0,aliases:["yml"],contains:v}}const ebt={arduino:Vmt,bash:rU,c:Hmt,cpp:qmt,csharp:Wmt,css:ngt,diff:igt,go:rgt,graphql:sgt,ini:Ske,java:agt,javascript:Ake,json:_ke,kotlin:fgt,less:xgt,lua:wgt,makefile:Rke,markdown:Ike,objectivec:Ogt,perl:Sgt,php:kgt,"php-template":Egt,plaintext:Cgt,python:Pke,"python-repl":Tgt,r:Agt,ruby:_gt,rust:Ngt,scss:Fgt,shell:Bgt,sql:Ugt,swift:Ggt,typescript:qke,vbnet:Ygt,wasm:Zgt,xml:Jgt,yaml:Wke};function Kke(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach(t=>{const n=e[t],i=typeof n;(i==="object"||i==="function")&&!Object.isFrozen(n)&&Kke(n)}),e}let pY=class{constructor(t){t.data===void 0&&(t.data={}),this.data=t.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}};function Gke(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function Vp(e,...t){const n=Object.create(null);for(const i in e)n[i]=e[i];return t.forEach(function(i){for(const r in i)n[r]=i[r]}),n}const tbt="",mY=e=>!!e.scope,nbt=(e,{prefix:t})=>{if(e.startsWith("language:"))return e.replace("language:","language-");if(e.includes(".")){const n=e.split(".");return[`${t}${n.shift()}`,...n.map((i,r)=>`${i}${"_".repeat(r+1)}`)].join(" ")}return`${t}${e}`};class ibt{constructor(t,n){this.buffer="",this.classPrefix=n.classPrefix,t.walk(this)}addText(t){this.buffer+=Gke(t)}openNode(t){if(!mY(t))return;const n=nbt(t.scope,{prefix:this.classPrefix});this.span(n)}closeNode(t){mY(t)&&(this.buffer+=tbt)}value(){return this.buffer}span(t){this.buffer+=``}}const gY=(e={})=>{const t={children:[]};return Object.assign(t,e),t};class aU{constructor(){this.rootNode=gY(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(t){this.top.children.push(t)}openNode(t){const n=gY({scope:t});this.add(n),this.stack.push(n)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(t){return this.constructor._walk(t,this.rootNode)}static _walk(t,n){return typeof n=="string"?t.addText(n):n.children&&(t.openNode(n),n.children.forEach(i=>this._walk(t,i)),t.closeNode(n)),t}static _collapse(t){typeof t!="string"&&t.children&&(t.children.every(n=>typeof n=="string")?t.children=[t.children.join("")]:t.children.forEach(n=>{aU._collapse(n)}))}}class rbt extends aU{constructor(t){super(),this.options=t}addText(t){t!==""&&this.add(t)}startScope(t){this.openNode(t)}endScope(){this.closeNode()}__addSublanguage(t,n){const i=t.root;n&&(i.scope=`language:${n}`),this.add(i)}toHTML(){return new ibt(this,this.options).value()}finalize(){return this.closeAllNodes(),!0}}function qS(e){return e?typeof e=="string"?e:e.source:null}function Xke(e){return l0("(?=",e,")")}function sbt(e){return l0("(?:",e,")*")}function abt(e){return l0("(?:",e,")?")}function l0(...e){return e.map(n=>qS(n)).join("")}function obt(e){const t=e[e.length-1];return typeof t=="object"&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function oU(...e){return"("+(obt(e).capture?"":"?:")+e.map(i=>qS(i)).join("|")+")"}function Yke(e){return new RegExp(e.toString()+"|").exec("").length-1}function lbt(e,t){const n=e&&e.exec(t);return n&&n.index===0}const cbt=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function lU(e,{joinWith:t}){let n=0;return e.map(i=>{n+=1;const r=n;let s=qS(i),a="";for(;s.length>0;){const l=cbt.exec(s);if(!l){a+=s;break}a+=s.substring(0,l.index),s=s.substring(l.index+l[0].length),l[0][0]==="\\"&&l[1]?a+="\\"+String(Number(l[1])+r):(a+=l[0],l[0]==="("&&n++)}return a}).map(i=>`(${i})`).join(t)}const ubt=/\b\B/,Zke="[a-zA-Z]\\w*",cU="[a-zA-Z_]\\w*",Jke="\\b\\d+(\\.\\d+)?",eEe="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",tEe="\\b(0b[01]+)",dbt="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",fbt=(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=l0(t,/.*\b/,e.binary,/\b.*/)),Vp({scope:"meta",begin:t,end:/$/,relevance:0,"on:begin":(n,i)=>{n.index!==0&&i.ignoreMatch()}},e)},WS={begin:"\\\\[\\s\\S]",relevance:0},hbt={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[WS]},pbt={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[WS]},mbt={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},sI=function(e,t,n={}){const i=Vp({scope:"comment",begin:e,end:t,contains:[]},n);i.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const r=oU("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return i.contains.push({begin:l0(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i},gbt=sI("//","$"),bbt=sI("/\\*","\\*/"),ybt=sI("#","$"),vbt={scope:"number",begin:Jke,relevance:0},xbt={scope:"number",begin:eEe,relevance:0},wbt={scope:"number",begin:tEe,relevance:0},Obt={scope:"regexp",begin:/\/(?=[^/\n]*\/)/,end:/\/[gimuy]*/,contains:[WS,{begin:/\[/,end:/\]/,relevance:0,contains:[WS]}]},Sbt={scope:"title",begin:Zke,relevance:0},kbt={scope:"title",begin:cU,relevance:0},Ebt={begin:"\\.\\s*"+cU,relevance:0},Cbt=function(e){return Object.assign(e,{"on:begin":(t,n)=>{n.data._beginMatch=t[1]},"on:end":(t,n)=>{n.data._beginMatch!==t[1]&&n.ignoreMatch()}})};var DT=Object.freeze({__proto__:null,APOS_STRING_MODE:hbt,BACKSLASH_ESCAPE:WS,BINARY_NUMBER_MODE:wbt,BINARY_NUMBER_RE:tEe,COMMENT:sI,C_BLOCK_COMMENT_MODE:bbt,C_LINE_COMMENT_MODE:gbt,C_NUMBER_MODE:xbt,C_NUMBER_RE:eEe,END_SAME_AS_BEGIN:Cbt,HASH_COMMENT_MODE:ybt,IDENT_RE:Zke,MATCH_NOTHING_RE:ubt,METHOD_GUARD:Ebt,NUMBER_MODE:vbt,NUMBER_RE:Jke,PHRASAL_WORDS_MODE:mbt,QUOTE_STRING_MODE:pbt,REGEXP_MODE:Obt,RE_STARTERS_RE:dbt,SHEBANG:fbt,TITLE_MODE:Sbt,UNDERSCORE_IDENT_RE:cU,UNDERSCORE_TITLE_MODE:kbt});function Tbt(e,t){e.input[e.index-1]==="."&&t.ignoreMatch()}function Abt(e,t){e.className!==void 0&&(e.scope=e.className,delete e.className)}function _bt(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=Tbt,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,e.relevance===void 0&&(e.relevance=0))}function Nbt(e,t){Array.isArray(e.illegal)&&(e.illegal=oU(...e.illegal))}function jbt(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function Rbt(e,t){e.relevance===void 0&&(e.relevance=1)}const Ibt=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const n=Object.assign({},e);Object.keys(e).forEach(i=>{delete e[i]}),e.keywords=n.keywords,e.begin=l0(n.beforeMatch,Xke(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},Pbt=["of","and","for","in","not","or","if","then","parent","list","value"],Dbt="keyword";function nEe(e,t,n=Dbt){const i=Object.create(null);return typeof e=="string"?r(n,e.split(" ")):Array.isArray(e)?r(n,e):Object.keys(e).forEach(function(s){Object.assign(i,nEe(e[s],t,s))}),i;function r(s,a){t&&(a=a.map(l=>l.toLowerCase())),a.forEach(function(l){const c=l.split("|");i[c[0]]=[s,Mbt(c[0],c[1])]})}}function Mbt(e,t){return t?Number(t):Lbt(e)?0:1}function Lbt(e){return Pbt.includes(e.toLowerCase())}const bY={},ub=e=>{console.error(e)},yY=(e,...t)=>{console.log(`WARN: ${e}`,...t)},z0=(e,t)=>{bY[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),bY[`${e}/${t}`]=!0)},xN=new Error;function iEe(e,t,{key:n}){let i=0;const r=e[n],s={},a={};for(let l=1;l<=t.length;l++)a[l+i]=r[l],s[l+i]=!0,i+=Yke(t[l-1]);e[n]=a,e[n]._emit=s,e[n]._multi=!0}function $bt(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw ub("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),xN;if(typeof e.beginScope!="object"||e.beginScope===null)throw ub("beginScope must be object"),xN;iEe(e,e.begin,{key:"beginScope"}),e.begin=lU(e.begin,{joinWith:""})}}function Fbt(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw ub("skip, excludeEnd, returnEnd not compatible with endScope: {}"),xN;if(typeof e.endScope!="object"||e.endScope===null)throw ub("endScope must be object"),xN;iEe(e,e.end,{key:"endScope"}),e.end=lU(e.end,{joinWith:""})}}function Bbt(e){e.scope&&typeof e.scope=="object"&&e.scope!==null&&(e.beginScope=e.scope,delete e.scope)}function Ubt(e){Bbt(e),typeof e.beginScope=="string"&&(e.beginScope={_wrap:e.beginScope}),typeof e.endScope=="string"&&(e.endScope={_wrap:e.endScope}),$bt(e),Fbt(e)}function Qbt(e){function t(a,l){return new RegExp(qS(a),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(l?"g":""))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(l,c){c.position=this.position++,this.matchIndexes[this.matchAt]=c,this.regexes.push([c,l]),this.matchAt+=Yke(l)+1}compile(){this.regexes.length===0&&(this.exec=()=>null);const l=this.regexes.map(c=>c[1]);this.matcherRe=t(lU(l,{joinWith:"|"}),!0),this.lastIndex=0}exec(l){this.matcherRe.lastIndex=this.lastIndex;const c=this.matcherRe.exec(l);if(!c)return null;const u=c.findIndex((f,h)=>h>0&&f!==void 0),d=this.matchIndexes[u];return c.splice(0,u),Object.assign(c,d)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(l){if(this.multiRegexes[l])return this.multiRegexes[l];const c=new n;return this.rules.slice(l).forEach(([u,d])=>c.addRule(u,d)),c.compile(),this.multiRegexes[l]=c,c}resumingScanAtSamePosition(){return this.regexIndex!==0}considerAll(){this.regexIndex=0}addRule(l,c){this.rules.push([l,c]),c.type==="begin"&&this.count++}exec(l){const c=this.getMatcher(this.regexIndex);c.lastIndex=this.lastIndex;let u=c.exec(l);if(this.resumingScanAtSamePosition()&&!(u&&u.index===this.lastIndex)){const d=this.getMatcher(0);d.lastIndex=this.lastIndex+1,u=d.exec(l)}return u&&(this.regexIndex+=u.position+1,this.regexIndex===this.count&&this.considerAll()),u}}function r(a){const l=new i;return a.contains.forEach(c=>l.addRule(c.begin,{rule:c,type:"begin"})),a.terminatorEnd&&l.addRule(a.terminatorEnd,{type:"end"}),a.illegal&&l.addRule(a.illegal,{type:"illegal"}),l}function s(a,l){const c=a;if(a.isCompiled)return c;[Abt,jbt,Ubt,Ibt].forEach(d=>d(a,l)),e.compilerExtensions.forEach(d=>d(a,l)),a.__beforeBegin=null,[_bt,Nbt,Rbt].forEach(d=>d(a,l)),a.isCompiled=!0;let u=null;return typeof a.keywords=="object"&&a.keywords.$pattern&&(a.keywords=Object.assign({},a.keywords),u=a.keywords.$pattern,delete a.keywords.$pattern),u=u||/\w+/,a.keywords&&(a.keywords=nEe(a.keywords,e.case_insensitive)),c.keywordPatternRe=t(u,!0),l&&(a.begin||(a.begin=/\B|\b/),c.beginRe=t(c.begin),!a.end&&!a.endsWithParent&&(a.end=/\B|\b/),a.end&&(c.endRe=t(c.end)),c.terminatorEnd=qS(c.end)||"",a.endsWithParent&&l.terminatorEnd&&(c.terminatorEnd+=(a.end?"|":"")+l.terminatorEnd)),a.illegal&&(c.illegalRe=t(a.illegal)),a.contains||(a.contains=[]),a.contains=[].concat(...a.contains.map(function(d){return zbt(d==="self"?a:d)})),a.contains.forEach(function(d){s(d,c)}),a.starts&&s(a.starts,l),c.matcher=r(c),c}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=Vp(e.classNameAliases||{}),s(e)}function rEe(e){return e?e.endsWithParent||rEe(e.starts):!1}function zbt(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map(function(t){return Vp(e,{variants:null},t)})),e.cachedVariants?e.cachedVariants:rEe(e)?Vp(e,{starts:e.starts?Vp(e.starts):null}):Object.isFrozen(e)?Vp(e):e}var Vbt="11.11.1";class Hbt extends Error{constructor(t,n){super(t),this.name="HTMLInjectionError",this.html=n}}const QM=Gke,vY=Vp,xY=Symbol("nomatch"),qbt=7,sEe=function(e){const t=Object.create(null),n=Object.create(null),i=[];let r=!0;const s="Could not find the language '{}', did you forget to load/include a language module?",a={disableAutodetect:!0,name:"Plain text",contains:[]};let l={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:rbt};function c(I){return l.noHighlightRe.test(I)}function u(I){let $=I.className+" ";$+=I.parentNode?I.parentNode.className:"";const M=l.languageDetectRe.exec($);if(M){const B=C(M[1]);return B||(yY(s.replace("{}",M[1])),yY("Falling back to no-highlight mode for this block.",I)),B?M[1]:"no-highlight"}return $.split(/\s+/).find(B=>c(B)||C(B))}function d(I,$,M){let B="",R="";typeof $=="object"?(B=I,M=$.ignoreIllegals,R=$.language):(z0("10.7.0","highlight(lang, code, ...args) has been deprecated."),z0("10.7.0",`Please use highlight(code, options) instead. +https://github.com/highlightjs/highlight.js/issues/2277`),R=I,B=$),M===void 0&&(M=!0);const V={code:B,language:R};_("before:highlight",V);const K=V.result?V.result:f(V.language,V.code,M);return K.code=V.code,_("after:highlight",K),K}function f(I,$,M,B){const R=Object.create(null);function V(Y,pe){return Y.keywords[pe]}function K(){if(!De.keywords){Re.addText(Xe);return}let Y=0;De.keywordPatternRe.lastIndex=0;let pe=De.keywordPatternRe.exec(Xe),Te="";for(;pe;){Te+=Xe.substring(Y,pe.index);const We=Ee.case_insensitive?pe[0].toLowerCase():pe[0],nt=V(De,We);if(nt){const[$t,je]=nt;if(Re.addText(Te),Te="",R[We]=(R[We]||0)+1,R[We]<=qbt&&(Ce+=je),$t.startsWith("_"))Te+=pe[0];else{const ve=Ee.classNameAliases[$t]||$t;U(pe[0],ve)}}else Te+=pe[0];Y=De.keywordPatternRe.lastIndex,pe=De.keywordPatternRe.exec(Xe)}Te+=Xe.substring(Y),Re.addText(Te)}function Q(){if(Xe==="")return;let Y=null;if(typeof De.subLanguage=="string"){if(!t[De.subLanguage]){Re.addText(Xe);return}Y=f(De.subLanguage,Xe,!0,_e[De.subLanguage]),_e[De.subLanguage]=Y._top}else Y=m(Xe,De.subLanguage.length?De.subLanguage:null);De.relevance>0&&(Ce+=Y.relevance),Re.__addSublanguage(Y._emitter,Y.language)}function q(){De.subLanguage!=null?Q():K(),Xe=""}function U(Y,pe){Y!==""&&(Re.startScope(pe),Re.addText(Y),Re.endScope())}function G(Y,pe){let Te=1;const We=pe.length-1;for(;Te<=We;){if(!Y._emit[Te]){Te++;continue}const nt=Ee.classNameAliases[Y[Te]]||Y[Te],$t=pe[Te];nt?U($t,nt):(Xe=$t,K(),Xe=""),Te++}}function ae(Y,pe){return Y.scope&&typeof Y.scope=="string"&&Re.openNode(Ee.classNameAliases[Y.scope]||Y.scope),Y.beginScope&&(Y.beginScope._wrap?(U(Xe,Ee.classNameAliases[Y.beginScope._wrap]||Y.beginScope._wrap),Xe=""):Y.beginScope._multi&&(G(Y.beginScope,pe),Xe="")),De=Object.create(Y,{parent:{value:De}}),De}function re(Y,pe,Te){let We=lbt(Y.endRe,Te);if(We){if(Y["on:end"]){const nt=new pY(Y);Y["on:end"](pe,nt),nt.isMatchIgnored&&(We=!1)}if(We){for(;Y.endsParent&&Y.parent;)Y=Y.parent;return Y}}if(Y.endsWithParent)return re(Y.parent,pe,Te)}function se(Y){return De.matcher.regexIndex===0?(Xe+=Y[0],1):($e=!0,0)}function me(Y){const pe=Y[0],Te=Y.rule,We=new pY(Te),nt=[Te.__beforeBegin,Te["on:begin"]];for(const $t of nt)if($t&&($t(Y,We),We.isMatchIgnored))return se(pe);return Te.skip?Xe+=pe:(Te.excludeBegin&&(Xe+=pe),q(),!Te.returnBegin&&!Te.excludeBegin&&(Xe=pe)),ae(Te,Y),Te.returnBegin?0:pe.length}function Z(Y){const pe=Y[0],Te=$.substring(Y.index),We=re(De,Y,Te);if(!We)return xY;const nt=De;De.endScope&&De.endScope._wrap?(q(),U(pe,De.endScope._wrap)):De.endScope&&De.endScope._multi?(q(),G(De.endScope,Y)):nt.skip?Xe+=pe:(nt.returnEnd||nt.excludeEnd||(Xe+=pe),q(),nt.excludeEnd&&(Xe=pe));do De.scope&&Re.closeNode(),!De.skip&&!De.subLanguage&&(Ce+=De.relevance),De=De.parent;while(De!==We.parent);return We.starts&&ae(We.starts,Y),nt.returnEnd?0:pe.length}function X(){const Y=[];for(let pe=De;pe!==Ee;pe=pe.parent)pe.scope&&Y.unshift(pe.scope);Y.forEach(pe=>Re.openNode(pe))}let J={};function oe(Y,pe){const Te=pe&&pe[0];if(Xe+=Y,Te==null)return q(),0;if(J.type==="begin"&&pe.type==="end"&&J.index===pe.index&&Te===""){if(Xe+=$.slice(pe.index,pe.index+1),!r){const We=new Error(`0 width match regex (${I})`);throw We.languageName=I,We.badRule=J.rule,We}return 1}if(J=pe,pe.type==="begin")return me(pe);if(pe.type==="illegal"&&!M){const We=new Error('Illegal lexeme "'+Te+'" for mode "'+(De.scope||"")+'"');throw We.mode=De,We}else if(pe.type==="end"){const We=Z(pe);if(We!==xY)return We}if(pe.type==="illegal"&&Te==="")return Xe+=` +`,1;if(Oe>1e5&&Oe>pe.index*3)throw new Error("potential infinite loop, way more iterations than matches");return Xe+=Te,Te.length}const Ee=C(I);if(!Ee)throw ub(s.replace("{}",I)),new Error('Unknown language: "'+I+'"');const he=Qbt(Ee);let Me="",De=B||he;const _e={},Re=new l.__emitter(l);X();let Xe="",Ce=0,Fe=0,Oe=0,$e=!1;try{if(Ee.__emitTokens)Ee.__emitTokens($,Re);else{for(De.matcher.considerAll();;){Oe++,$e?$e=!1:De.matcher.considerAll(),De.matcher.lastIndex=Fe;const Y=De.matcher.exec($);if(!Y)break;const pe=$.substring(Fe,Y.index),Te=oe(pe,Y);Fe=Y.index+Te}oe($.substring(Fe))}return Re.finalize(),Me=Re.toHTML(),{language:I,value:Me,relevance:Ce,illegal:!1,_emitter:Re,_top:De}}catch(Y){if(Y.message&&Y.message.includes("Illegal"))return{language:I,value:QM($),illegal:!0,relevance:0,_illegalBy:{message:Y.message,index:Fe,context:$.slice(Fe-100,Fe+100),mode:Y.mode,resultSoFar:Me},_emitter:Re};if(r)return{language:I,value:QM($),illegal:!1,relevance:0,errorRaised:Y,_emitter:Re,_top:De};throw Y}}function h(I){const $={value:QM(I),illegal:!1,relevance:0,_top:a,_emitter:new l.__emitter(l)};return $._emitter.addText(I),$}function m(I,$){$=$||l.languages||Object.keys(t);const M=h(I),B=$.filter(C).filter(T).map(q=>f(q,I,!1));B.unshift(M);const R=B.sort((q,U)=>{if(q.relevance!==U.relevance)return U.relevance-q.relevance;if(q.language&&U.language){if(C(q.language).supersetOf===U.language)return 1;if(C(U.language).supersetOf===q.language)return-1}return 0}),[V,K]=R,Q=V;return Q.secondBest=K,Q}function g(I,$,M){const B=$&&n[$]||M;I.classList.add("hljs"),I.classList.add(`language-${B}`)}function b(I){let $=null;const M=u(I);if(c(M))return;if(_("before:highlightElement",{el:I,language:M}),I.dataset.highlighted){console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",I);return}if(I.children.length>0&&(l.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),console.warn("The element with unescaped HTML:"),console.warn(I)),l.throwUnescapedHTML))throw new Hbt("One of your code blocks includes unescaped HTML.",I.innerHTML);$=I;const B=$.textContent,R=M?d(B,{language:M,ignoreIllegals:!0}):m(B);I.innerHTML=R.value,I.dataset.highlighted="yes",g(I,M,R.language),I.result={language:R.language,re:R.relevance,relevance:R.relevance},R.secondBest&&(I.secondBest={language:R.secondBest.language,relevance:R.secondBest.relevance}),_("after:highlightElement",{el:I,result:R,text:B})}function v(I){l=vY(l,I)}const y=()=>{w(),z0("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")};function x(){w(),z0("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")}let O=!1;function w(){function I(){w()}if(document.readyState==="loading"){O||window.addEventListener("DOMContentLoaded",I,!1),O=!0;return}document.querySelectorAll(l.cssSelector).forEach(b)}function k(I,$){let M=null;try{M=$(e)}catch(B){if(ub("Language definition for '{}' could not be registered.".replace("{}",I)),r)ub(B);else throw B;M=a}M.name||(M.name=I),t[I]=M,M.rawDefinition=$.bind(null,e),M.aliases&&N(M.aliases,{languageName:I})}function S(I){delete t[I];for(const $ of Object.keys(n))n[$]===I&&delete n[$]}function E(){return Object.keys(t)}function C(I){return I=(I||"").toLowerCase(),t[I]||t[n[I]]}function N(I,{languageName:$}){typeof I=="string"&&(I=[I]),I.forEach(M=>{n[M.toLowerCase()]=$})}function T(I){const $=C(I);return $&&!$.disableAutodetect}function j(I){I["before:highlightBlock"]&&!I["before:highlightElement"]&&(I["before:highlightElement"]=$=>{I["before:highlightBlock"](Object.assign({block:$.el},$))}),I["after:highlightBlock"]&&!I["after:highlightElement"]&&(I["after:highlightElement"]=$=>{I["after:highlightBlock"](Object.assign({block:$.el},$))})}function A(I){j(I),i.push(I)}function L(I){const $=i.indexOf(I);$!==-1&&i.splice($,1)}function _(I,$){const M=I;i.forEach(function(B){B[M]&&B[M]($)})}function P(I){return z0("10.7.0","highlightBlock will be removed entirely in v12.0"),z0("10.7.0","Please use highlightElement now."),b(I)}Object.assign(e,{highlight:d,highlightAuto:m,highlightAll:w,highlightElement:b,highlightBlock:P,configure:v,initHighlighting:y,initHighlightingOnLoad:x,registerLanguage:k,unregisterLanguage:S,listLanguages:E,getLanguage:C,registerAliases:N,autoDetection:T,inherit:vY,addPlugin:A,removePlugin:L}),e.debugMode=function(){r=!1},e.safeMode=function(){r=!0},e.versionString=Vbt,e.regex={concat:l0,lookahead:Xke,either:oU,optional:abt,anyNumberOfTimes:sbt};for(const I in DT)typeof DT[I]=="object"&&Kke(DT[I]);return Object.assign(e,DT),e},rx=sEe({});rx.newInstance=()=>sEe({});var Wbt=rx;rx.HighlightJS=rx;rx.default=rx;const So=vx(Wbt),wY={},Kbt="hljs-";function Gbt(e){const t=So.newInstance();return e&&s(e),{highlight:n,highlightAuto:i,listLanguages:r,register:s,registerAlias:a,registered:l};function n(c,u,d){const f=d||wY,h=typeof f.prefix=="string"?f.prefix:Kbt;if(!t.getLanguage(c))throw new Error("Unknown language: `"+c+"` is not registered");t.configure({__emitter:Xbt,classPrefix:h});const m=t.highlight(u,{ignoreIllegals:!0,language:c});if(m.errorRaised)throw new Error("Could not highlight with `Highlight.js`",{cause:m.errorRaised});const g=m._emitter.root,b=g.data;return b.language=m.language,b.relevance=m.relevance,g}function i(c,u){const f=(u||wY).subset||r();let h=-1,m=0,g;for(;++hm&&(m=v.data.relevance,g=v)}return g||{type:"root",children:[],data:{language:void 0,relevance:m}}}function r(){return t.listLanguages()}function s(c,u){if(typeof c=="string")t.registerLanguage(c,u);else{let d;for(d in c)Object.hasOwn(c,d)&&t.registerLanguage(d,c[d])}}function a(c,u){if(typeof c=="string")t.registerAliases(typeof u=="string"?u:[...u],{languageName:c});else{let d;for(d in c)if(Object.hasOwn(c,d)){const f=c[d];t.registerAliases(typeof f=="string"?f:[...f],{languageName:d})}}}function l(c){return!!t.getLanguage(c)}}class Xbt{constructor(t){this.options=t,this.root={type:"root",children:[],data:{language:void 0,relevance:0}},this.stack=[this.root]}addText(t){if(t==="")return;const n=this.stack[this.stack.length-1],i=n.children[n.children.length-1];i&&i.type==="text"?i.value+=t:n.children.push({type:"text",value:t})}startScope(t){this.openNode(String(t))}endScope(){this.closeNode()}__addSublanguage(t,n){const i=this.stack[this.stack.length-1],r=t.root.children;n?i.children.push({type:"element",tagName:"span",properties:{className:[n]},children:r}):i.children.push(...r)}openNode(t){const n=this,i=t.split(".").map(function(a,l){return l?a+"_".repeat(l):n.options.classPrefix+a}),r=this.stack[this.stack.length-1],s={type:"element",tagName:"span",properties:{className:i},children:[]};r.children.push(s),this.stack.push(s)}closeNode(){this.stack.pop()}finalize(){}toHTML(){return""}}const Ybt={};function OY(e){const t=e||Ybt,n=t.aliases,i=t.detect||!1,r=t.languages||ebt,s=t.plainText,a=t.prefix,l=t.subset;let c="hljs";const u=Gbt(r);if(n&&u.registerAlias(n),a){const d=a.indexOf("-");c=d===-1?a:a.slice(0,d)}return function(d,f){SE(d,"element",function(h,m,g){if(h.tagName!=="code"||!g||g.type!=="element"||g.tagName!=="pre")return;const b=Zbt(h);if(b===!1||!b&&!i||b&&s&&s.includes(b))return;Array.isArray(h.properties.className)||(h.properties.className=[]),h.properties.className.includes(c)||h.properties.className.unshift(c);const v=Dmt(h,{whitespace:"pre"});let y;try{y=b?u.highlight(b,v,{prefix:a}):u.highlightAuto(v,{prefix:a,subset:l})}catch(x){const O=x;if(b&&/Unknown language/.test(O.message)){f.message("Cannot highlight as `"+b+"`, it’s not registered",{ancestors:[g,h],cause:O,place:h.position,ruleId:"missing-language",source:"rehype-highlight"});return}throw O}!b&&y.data&&y.data.language&&h.properties.className.push("language-"+y.data.language),y.children.length>0&&(h.children=y.children)})}}function Zbt(e){const t=e.properties.className;let n=-1;if(!Array.isArray(t))return;let i;for(;++n-1&&s<=t.length){let a=0;for(;;){let l=n[a];if(l===void 0){const c=EY(t,n[a-1]);l=c===-1?t.length+1:c+1,n[a]=l}if(l>s)return{line:a+1,column:s-(a>0?n[a-1]:0)+1,offset:s};a++}}}function r(s){if(s&&typeof s.line=="number"&&typeof s.column=="number"&&!Number.isNaN(s.line)&&!Number.isNaN(s.column)){for(;n.length1?n[s.line-2]:0)+s.column-1;if(a=55296&&e<=57343}function k0t(e){return e>=56320&&e<=57343}function E0t(e,t){return(e-55296)*1024+9216+t}function dEe(e){return e!==32&&e!==10&&e!==13&&e!==9&&e!==12&&e>=1&&e<=31||e>=127&&e<=159}function fEe(e){return e>=64976&&e<=65007||S0t.has(e)}var tt;(function(e){e.controlCharacterInInputStream="control-character-in-input-stream",e.noncharacterInInputStream="noncharacter-in-input-stream",e.surrogateInInputStream="surrogate-in-input-stream",e.nonVoidHtmlElementStartTagWithTrailingSolidus="non-void-html-element-start-tag-with-trailing-solidus",e.endTagWithAttributes="end-tag-with-attributes",e.endTagWithTrailingSolidus="end-tag-with-trailing-solidus",e.unexpectedSolidusInTag="unexpected-solidus-in-tag",e.unexpectedNullCharacter="unexpected-null-character",e.unexpectedQuestionMarkInsteadOfTagName="unexpected-question-mark-instead-of-tag-name",e.invalidFirstCharacterOfTagName="invalid-first-character-of-tag-name",e.unexpectedEqualsSignBeforeAttributeName="unexpected-equals-sign-before-attribute-name",e.missingEndTagName="missing-end-tag-name",e.unexpectedCharacterInAttributeName="unexpected-character-in-attribute-name",e.unknownNamedCharacterReference="unknown-named-character-reference",e.missingSemicolonAfterCharacterReference="missing-semicolon-after-character-reference",e.unexpectedCharacterAfterDoctypeSystemIdentifier="unexpected-character-after-doctype-system-identifier",e.unexpectedCharacterInUnquotedAttributeValue="unexpected-character-in-unquoted-attribute-value",e.eofBeforeTagName="eof-before-tag-name",e.eofInTag="eof-in-tag",e.missingAttributeValue="missing-attribute-value",e.missingWhitespaceBetweenAttributes="missing-whitespace-between-attributes",e.missingWhitespaceAfterDoctypePublicKeyword="missing-whitespace-after-doctype-public-keyword",e.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers="missing-whitespace-between-doctype-public-and-system-identifiers",e.missingWhitespaceAfterDoctypeSystemKeyword="missing-whitespace-after-doctype-system-keyword",e.missingQuoteBeforeDoctypePublicIdentifier="missing-quote-before-doctype-public-identifier",e.missingQuoteBeforeDoctypeSystemIdentifier="missing-quote-before-doctype-system-identifier",e.missingDoctypePublicIdentifier="missing-doctype-public-identifier",e.missingDoctypeSystemIdentifier="missing-doctype-system-identifier",e.abruptDoctypePublicIdentifier="abrupt-doctype-public-identifier",e.abruptDoctypeSystemIdentifier="abrupt-doctype-system-identifier",e.cdataInHtmlContent="cdata-in-html-content",e.incorrectlyOpenedComment="incorrectly-opened-comment",e.eofInScriptHtmlCommentLikeText="eof-in-script-html-comment-like-text",e.eofInDoctype="eof-in-doctype",e.nestedComment="nested-comment",e.abruptClosingOfEmptyComment="abrupt-closing-of-empty-comment",e.eofInComment="eof-in-comment",e.incorrectlyClosedComment="incorrectly-closed-comment",e.eofInCdata="eof-in-cdata",e.absenceOfDigitsInNumericCharacterReference="absence-of-digits-in-numeric-character-reference",e.nullCharacterReference="null-character-reference",e.surrogateCharacterReference="surrogate-character-reference",e.characterReferenceOutsideUnicodeRange="character-reference-outside-unicode-range",e.controlCharacterReference="control-character-reference",e.noncharacterCharacterReference="noncharacter-character-reference",e.missingWhitespaceBeforeDoctypeName="missing-whitespace-before-doctype-name",e.missingDoctypeName="missing-doctype-name",e.invalidCharacterSequenceAfterDoctypeName="invalid-character-sequence-after-doctype-name",e.duplicateAttribute="duplicate-attribute",e.nonConformingDoctype="non-conforming-doctype",e.missingDoctype="missing-doctype",e.misplacedDoctype="misplaced-doctype",e.endTagWithoutMatchingOpenElement="end-tag-without-matching-open-element",e.closingOfElementWithOpenChildElements="closing-of-element-with-open-child-elements",e.disallowedContentInNoscriptInHead="disallowed-content-in-noscript-in-head",e.openElementsLeftAfterEof="open-elements-left-after-eof",e.abandonedHeadElementChild="abandoned-head-element-child",e.misplacedStartTagForHeadElement="misplaced-start-tag-for-head-element",e.nestedNoscriptInHead="nested-noscript-in-head",e.eofInElementThatCanContainOnlyText="eof-in-element-that-can-contain-only-text"})(tt||(tt={}));const C0t=65536;class T0t{constructor(t){this.handler=t,this.html="",this.pos=-1,this.lastGapPos=-2,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=C0t,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.line=1,this.lastErrOffset=-1}get col(){return this.pos-this.lineStartPos+ +(this.lastGapPos!==this.pos)}get offset(){return this.droppedBufferSize+this.pos}getError(t,n){const{line:i,col:r,offset:s}=this,a=r+n,l=s+n;return{code:t,startLine:i,endLine:i,startCol:a,endCol:a,startOffset:l,endOffset:l}}_err(t){this.handler.onParseError&&this.lastErrOffset!==this.offset&&(this.lastErrOffset=this.offset,this.handler.onParseError(this.getError(t,0)))}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(t){if(this.pos!==this.html.length-1){const n=this.html.charCodeAt(this.pos+1);if(k0t(n))return this.pos++,this._addGap(),E0t(t,n)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,le.EOF;return this._err(tt.surrogateInInputStream),t}willDropParsedChunk(){return this.pos>this.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(t,n){this.html.length>0?this.html+=t:this.html=t,this.endOfChunkHit=!1,this.lastChunkWritten=n}insertHtmlAtCurrentPos(t){this.html=this.html.substring(0,this.pos+1)+t+this.html.substring(this.pos+1),this.endOfChunkHit=!1}startsWith(t,n){if(this.pos+t.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(n)return this.html.startsWith(t,this.pos);for(let i=0;i=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,le.EOF;const i=this.html.charCodeAt(n);return i===le.CARRIAGE_RETURN?le.LINE_FEED:i}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,le.EOF;let t=this.html.charCodeAt(this.pos);return t===le.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,le.LINE_FEED):t===le.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,uEe(t)&&(t=this._processSurrogate(t)),this.handler.onParseError===null||t>31&&t<127||t===le.LINE_FEED||t===le.CARRIAGE_RETURN||t>159&&t<64976||this._checkForProblematicCharacters(t),t)}_checkForProblematicCharacters(t){dEe(t)?this._err(tt.controlCharacterInInputStream):fEe(t)&&this._err(tt.noncharacterInInputStream)}retreat(t){for(this.pos-=t;this.pos=0;n--)if(e.attrs[n].name===t)return e.attrs[n].value;return null}const A0t=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map(e=>e.charCodeAt(0))),_0t=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function N0t(e){var t;return e>=55296&&e<=57343||e>1114111?65533:(t=_0t.get(e))!==null&&t!==void 0?t:e}var Ia;(function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"})(Ia||(Ia={}));const j0t=32;var Hp;(function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"})(Hp||(Hp={}));function W6(e){return e>=Ia.ZERO&&e<=Ia.NINE}function R0t(e){return e>=Ia.UPPER_A&&e<=Ia.UPPER_F||e>=Ia.LOWER_A&&e<=Ia.LOWER_F}function I0t(e){return e>=Ia.UPPER_A&&e<=Ia.UPPER_Z||e>=Ia.LOWER_A&&e<=Ia.LOWER_Z||W6(e)}function P0t(e){return e===Ia.EQUALS||I0t(e)}var Ea;(function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"})(Ea||(Ea={}));var Bf;(function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"})(Bf||(Bf={}));class D0t{constructor(t,n,i){this.decodeTree=t,this.emitCodePoint=n,this.errors=i,this.state=Ea.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=Bf.Strict}startEntity(t){this.decodeMode=t,this.state=Ea.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(t,n){switch(this.state){case Ea.EntityStart:return t.charCodeAt(n)===Ia.NUM?(this.state=Ea.NumericStart,this.consumed+=1,this.stateNumericStart(t,n+1)):(this.state=Ea.NamedEntity,this.stateNamedEntity(t,n));case Ea.NumericStart:return this.stateNumericStart(t,n);case Ea.NumericDecimal:return this.stateNumericDecimal(t,n);case Ea.NumericHex:return this.stateNumericHex(t,n);case Ea.NamedEntity:return this.stateNamedEntity(t,n)}}stateNumericStart(t,n){return n>=t.length?-1:(t.charCodeAt(n)|j0t)===Ia.LOWER_X?(this.state=Ea.NumericHex,this.consumed+=1,this.stateNumericHex(t,n+1)):(this.state=Ea.NumericDecimal,this.stateNumericDecimal(t,n))}addToNumericResult(t,n,i,r){if(n!==i){const s=i-n;this.result=this.result*Math.pow(r,s)+Number.parseInt(t.substr(n,s),r),this.consumed+=s}}stateNumericHex(t,n){const i=n;for(;n>14;for(;n>14,s!==0){if(a===Ia.SEMI)return this.emitNamedEntityData(this.treeIndex,s,this.consumed+this.excess);this.decodeMode!==Bf.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var t;const{result:n,decodeTree:i}=this,r=(i[n]&Hp.VALUE_LENGTH)>>14;return this.emitNamedEntityData(n,r,this.consumed),(t=this.errors)===null||t===void 0||t.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(t,n,i){const{decodeTree:r}=this;return this.emitCodePoint(n===1?r[t]&~Hp.VALUE_LENGTH:r[t+1],i),n===3&&this.emitCodePoint(r[t+2],i),i}end(){var t;switch(this.state){case Ea.NamedEntity:return this.result!==0&&(this.decodeMode!==Bf.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case Ea.NumericDecimal:return this.emitNumericEntity(0,2);case Ea.NumericHex:return this.emitNumericEntity(0,3);case Ea.NumericStart:return(t=this.errors)===null||t===void 0||t.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case Ea.EntityStart:return 0}}}function M0t(e,t,n,i){const r=(t&Hp.BRANCH_LENGTH)>>7,s=t&Hp.JUMP_TABLE;if(r===0)return s!==0&&i===s?n:-1;if(s){const c=i-s;return c<0||c>=r?-1:e[n+c]-1}let a=n,l=a+r-1;for(;a<=l;){const c=a+l>>>1,u=e[c];if(ui)l=c-1;else return e[c+r]}return-1}var vt;(function(e){e.HTML="http://www.w3.org/1999/xhtml",e.MATHML="http://www.w3.org/1998/Math/MathML",e.SVG="http://www.w3.org/2000/svg",e.XLINK="http://www.w3.org/1999/xlink",e.XML="http://www.w3.org/XML/1998/namespace",e.XMLNS="http://www.w3.org/2000/xmlns/"})(vt||(vt={}));var db;(function(e){e.TYPE="type",e.ACTION="action",e.ENCODING="encoding",e.PROMPT="prompt",e.NAME="name",e.COLOR="color",e.FACE="face",e.SIZE="size"})(db||(db={}));var Fc;(function(e){e.NO_QUIRKS="no-quirks",e.QUIRKS="quirks",e.LIMITED_QUIRKS="limited-quirks"})(Fc||(Fc={}));var Ue;(function(e){e.A="a",e.ADDRESS="address",e.ANNOTATION_XML="annotation-xml",e.APPLET="applet",e.AREA="area",e.ARTICLE="article",e.ASIDE="aside",e.B="b",e.BASE="base",e.BASEFONT="basefont",e.BGSOUND="bgsound",e.BIG="big",e.BLOCKQUOTE="blockquote",e.BODY="body",e.BR="br",e.BUTTON="button",e.CAPTION="caption",e.CENTER="center",e.CODE="code",e.COL="col",e.COLGROUP="colgroup",e.DD="dd",e.DESC="desc",e.DETAILS="details",e.DIALOG="dialog",e.DIR="dir",e.DIV="div",e.DL="dl",e.DT="dt",e.EM="em",e.EMBED="embed",e.FIELDSET="fieldset",e.FIGCAPTION="figcaption",e.FIGURE="figure",e.FONT="font",e.FOOTER="footer",e.FOREIGN_OBJECT="foreignObject",e.FORM="form",e.FRAME="frame",e.FRAMESET="frameset",e.H1="h1",e.H2="h2",e.H3="h3",e.H4="h4",e.H5="h5",e.H6="h6",e.HEAD="head",e.HEADER="header",e.HGROUP="hgroup",e.HR="hr",e.HTML="html",e.I="i",e.IMG="img",e.IMAGE="image",e.INPUT="input",e.IFRAME="iframe",e.KEYGEN="keygen",e.LABEL="label",e.LI="li",e.LINK="link",e.LISTING="listing",e.MAIN="main",e.MALIGNMARK="malignmark",e.MARQUEE="marquee",e.MATH="math",e.MENU="menu",e.META="meta",e.MGLYPH="mglyph",e.MI="mi",e.MO="mo",e.MN="mn",e.MS="ms",e.MTEXT="mtext",e.NAV="nav",e.NOBR="nobr",e.NOFRAMES="noframes",e.NOEMBED="noembed",e.NOSCRIPT="noscript",e.OBJECT="object",e.OL="ol",e.OPTGROUP="optgroup",e.OPTION="option",e.P="p",e.PARAM="param",e.PLAINTEXT="plaintext",e.PRE="pre",e.RB="rb",e.RP="rp",e.RT="rt",e.RTC="rtc",e.RUBY="ruby",e.S="s",e.SCRIPT="script",e.SEARCH="search",e.SECTION="section",e.SELECT="select",e.SOURCE="source",e.SMALL="small",e.SPAN="span",e.STRIKE="strike",e.STRONG="strong",e.STYLE="style",e.SUB="sub",e.SUMMARY="summary",e.SUP="sup",e.TABLE="table",e.TBODY="tbody",e.TEMPLATE="template",e.TEXTAREA="textarea",e.TFOOT="tfoot",e.TD="td",e.TH="th",e.THEAD="thead",e.TITLE="title",e.TR="tr",e.TRACK="track",e.TT="tt",e.U="u",e.UL="ul",e.SVG="svg",e.VAR="var",e.WBR="wbr",e.XMP="xmp"})(Ue||(Ue={}));var D;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.A=1]="A",e[e.ADDRESS=2]="ADDRESS",e[e.ANNOTATION_XML=3]="ANNOTATION_XML",e[e.APPLET=4]="APPLET",e[e.AREA=5]="AREA",e[e.ARTICLE=6]="ARTICLE",e[e.ASIDE=7]="ASIDE",e[e.B=8]="B",e[e.BASE=9]="BASE",e[e.BASEFONT=10]="BASEFONT",e[e.BGSOUND=11]="BGSOUND",e[e.BIG=12]="BIG",e[e.BLOCKQUOTE=13]="BLOCKQUOTE",e[e.BODY=14]="BODY",e[e.BR=15]="BR",e[e.BUTTON=16]="BUTTON",e[e.CAPTION=17]="CAPTION",e[e.CENTER=18]="CENTER",e[e.CODE=19]="CODE",e[e.COL=20]="COL",e[e.COLGROUP=21]="COLGROUP",e[e.DD=22]="DD",e[e.DESC=23]="DESC",e[e.DETAILS=24]="DETAILS",e[e.DIALOG=25]="DIALOG",e[e.DIR=26]="DIR",e[e.DIV=27]="DIV",e[e.DL=28]="DL",e[e.DT=29]="DT",e[e.EM=30]="EM",e[e.EMBED=31]="EMBED",e[e.FIELDSET=32]="FIELDSET",e[e.FIGCAPTION=33]="FIGCAPTION",e[e.FIGURE=34]="FIGURE",e[e.FONT=35]="FONT",e[e.FOOTER=36]="FOOTER",e[e.FOREIGN_OBJECT=37]="FOREIGN_OBJECT",e[e.FORM=38]="FORM",e[e.FRAME=39]="FRAME",e[e.FRAMESET=40]="FRAMESET",e[e.H1=41]="H1",e[e.H2=42]="H2",e[e.H3=43]="H3",e[e.H4=44]="H4",e[e.H5=45]="H5",e[e.H6=46]="H6",e[e.HEAD=47]="HEAD",e[e.HEADER=48]="HEADER",e[e.HGROUP=49]="HGROUP",e[e.HR=50]="HR",e[e.HTML=51]="HTML",e[e.I=52]="I",e[e.IMG=53]="IMG",e[e.IMAGE=54]="IMAGE",e[e.INPUT=55]="INPUT",e[e.IFRAME=56]="IFRAME",e[e.KEYGEN=57]="KEYGEN",e[e.LABEL=58]="LABEL",e[e.LI=59]="LI",e[e.LINK=60]="LINK",e[e.LISTING=61]="LISTING",e[e.MAIN=62]="MAIN",e[e.MALIGNMARK=63]="MALIGNMARK",e[e.MARQUEE=64]="MARQUEE",e[e.MATH=65]="MATH",e[e.MENU=66]="MENU",e[e.META=67]="META",e[e.MGLYPH=68]="MGLYPH",e[e.MI=69]="MI",e[e.MO=70]="MO",e[e.MN=71]="MN",e[e.MS=72]="MS",e[e.MTEXT=73]="MTEXT",e[e.NAV=74]="NAV",e[e.NOBR=75]="NOBR",e[e.NOFRAMES=76]="NOFRAMES",e[e.NOEMBED=77]="NOEMBED",e[e.NOSCRIPT=78]="NOSCRIPT",e[e.OBJECT=79]="OBJECT",e[e.OL=80]="OL",e[e.OPTGROUP=81]="OPTGROUP",e[e.OPTION=82]="OPTION",e[e.P=83]="P",e[e.PARAM=84]="PARAM",e[e.PLAINTEXT=85]="PLAINTEXT",e[e.PRE=86]="PRE",e[e.RB=87]="RB",e[e.RP=88]="RP",e[e.RT=89]="RT",e[e.RTC=90]="RTC",e[e.RUBY=91]="RUBY",e[e.S=92]="S",e[e.SCRIPT=93]="SCRIPT",e[e.SEARCH=94]="SEARCH",e[e.SECTION=95]="SECTION",e[e.SELECT=96]="SELECT",e[e.SOURCE=97]="SOURCE",e[e.SMALL=98]="SMALL",e[e.SPAN=99]="SPAN",e[e.STRIKE=100]="STRIKE",e[e.STRONG=101]="STRONG",e[e.STYLE=102]="STYLE",e[e.SUB=103]="SUB",e[e.SUMMARY=104]="SUMMARY",e[e.SUP=105]="SUP",e[e.TABLE=106]="TABLE",e[e.TBODY=107]="TBODY",e[e.TEMPLATE=108]="TEMPLATE",e[e.TEXTAREA=109]="TEXTAREA",e[e.TFOOT=110]="TFOOT",e[e.TD=111]="TD",e[e.TH=112]="TH",e[e.THEAD=113]="THEAD",e[e.TITLE=114]="TITLE",e[e.TR=115]="TR",e[e.TRACK=116]="TRACK",e[e.TT=117]="TT",e[e.U=118]="U",e[e.UL=119]="UL",e[e.SVG=120]="SVG",e[e.VAR=121]="VAR",e[e.WBR=122]="WBR",e[e.XMP=123]="XMP"})(D||(D={}));const L0t=new Map([[Ue.A,D.A],[Ue.ADDRESS,D.ADDRESS],[Ue.ANNOTATION_XML,D.ANNOTATION_XML],[Ue.APPLET,D.APPLET],[Ue.AREA,D.AREA],[Ue.ARTICLE,D.ARTICLE],[Ue.ASIDE,D.ASIDE],[Ue.B,D.B],[Ue.BASE,D.BASE],[Ue.BASEFONT,D.BASEFONT],[Ue.BGSOUND,D.BGSOUND],[Ue.BIG,D.BIG],[Ue.BLOCKQUOTE,D.BLOCKQUOTE],[Ue.BODY,D.BODY],[Ue.BR,D.BR],[Ue.BUTTON,D.BUTTON],[Ue.CAPTION,D.CAPTION],[Ue.CENTER,D.CENTER],[Ue.CODE,D.CODE],[Ue.COL,D.COL],[Ue.COLGROUP,D.COLGROUP],[Ue.DD,D.DD],[Ue.DESC,D.DESC],[Ue.DETAILS,D.DETAILS],[Ue.DIALOG,D.DIALOG],[Ue.DIR,D.DIR],[Ue.DIV,D.DIV],[Ue.DL,D.DL],[Ue.DT,D.DT],[Ue.EM,D.EM],[Ue.EMBED,D.EMBED],[Ue.FIELDSET,D.FIELDSET],[Ue.FIGCAPTION,D.FIGCAPTION],[Ue.FIGURE,D.FIGURE],[Ue.FONT,D.FONT],[Ue.FOOTER,D.FOOTER],[Ue.FOREIGN_OBJECT,D.FOREIGN_OBJECT],[Ue.FORM,D.FORM],[Ue.FRAME,D.FRAME],[Ue.FRAMESET,D.FRAMESET],[Ue.H1,D.H1],[Ue.H2,D.H2],[Ue.H3,D.H3],[Ue.H4,D.H4],[Ue.H5,D.H5],[Ue.H6,D.H6],[Ue.HEAD,D.HEAD],[Ue.HEADER,D.HEADER],[Ue.HGROUP,D.HGROUP],[Ue.HR,D.HR],[Ue.HTML,D.HTML],[Ue.I,D.I],[Ue.IMG,D.IMG],[Ue.IMAGE,D.IMAGE],[Ue.INPUT,D.INPUT],[Ue.IFRAME,D.IFRAME],[Ue.KEYGEN,D.KEYGEN],[Ue.LABEL,D.LABEL],[Ue.LI,D.LI],[Ue.LINK,D.LINK],[Ue.LISTING,D.LISTING],[Ue.MAIN,D.MAIN],[Ue.MALIGNMARK,D.MALIGNMARK],[Ue.MARQUEE,D.MARQUEE],[Ue.MATH,D.MATH],[Ue.MENU,D.MENU],[Ue.META,D.META],[Ue.MGLYPH,D.MGLYPH],[Ue.MI,D.MI],[Ue.MO,D.MO],[Ue.MN,D.MN],[Ue.MS,D.MS],[Ue.MTEXT,D.MTEXT],[Ue.NAV,D.NAV],[Ue.NOBR,D.NOBR],[Ue.NOFRAMES,D.NOFRAMES],[Ue.NOEMBED,D.NOEMBED],[Ue.NOSCRIPT,D.NOSCRIPT],[Ue.OBJECT,D.OBJECT],[Ue.OL,D.OL],[Ue.OPTGROUP,D.OPTGROUP],[Ue.OPTION,D.OPTION],[Ue.P,D.P],[Ue.PARAM,D.PARAM],[Ue.PLAINTEXT,D.PLAINTEXT],[Ue.PRE,D.PRE],[Ue.RB,D.RB],[Ue.RP,D.RP],[Ue.RT,D.RT],[Ue.RTC,D.RTC],[Ue.RUBY,D.RUBY],[Ue.S,D.S],[Ue.SCRIPT,D.SCRIPT],[Ue.SEARCH,D.SEARCH],[Ue.SECTION,D.SECTION],[Ue.SELECT,D.SELECT],[Ue.SOURCE,D.SOURCE],[Ue.SMALL,D.SMALL],[Ue.SPAN,D.SPAN],[Ue.STRIKE,D.STRIKE],[Ue.STRONG,D.STRONG],[Ue.STYLE,D.STYLE],[Ue.SUB,D.SUB],[Ue.SUMMARY,D.SUMMARY],[Ue.SUP,D.SUP],[Ue.TABLE,D.TABLE],[Ue.TBODY,D.TBODY],[Ue.TEMPLATE,D.TEMPLATE],[Ue.TEXTAREA,D.TEXTAREA],[Ue.TFOOT,D.TFOOT],[Ue.TD,D.TD],[Ue.TH,D.TH],[Ue.THEAD,D.THEAD],[Ue.TITLE,D.TITLE],[Ue.TR,D.TR],[Ue.TRACK,D.TRACK],[Ue.TT,D.TT],[Ue.U,D.U],[Ue.UL,D.UL],[Ue.SVG,D.SVG],[Ue.VAR,D.VAR],[Ue.WBR,D.WBR],[Ue.XMP,D.XMP]]);function Jx(e){var t;return(t=L0t.get(e))!==null&&t!==void 0?t:D.UNKNOWN}const St=D,$0t={[vt.HTML]:new Set([St.ADDRESS,St.APPLET,St.AREA,St.ARTICLE,St.ASIDE,St.BASE,St.BASEFONT,St.BGSOUND,St.BLOCKQUOTE,St.BODY,St.BR,St.BUTTON,St.CAPTION,St.CENTER,St.COL,St.COLGROUP,St.DD,St.DETAILS,St.DIR,St.DIV,St.DL,St.DT,St.EMBED,St.FIELDSET,St.FIGCAPTION,St.FIGURE,St.FOOTER,St.FORM,St.FRAME,St.FRAMESET,St.H1,St.H2,St.H3,St.H4,St.H5,St.H6,St.HEAD,St.HEADER,St.HGROUP,St.HR,St.HTML,St.IFRAME,St.IMG,St.INPUT,St.LI,St.LINK,St.LISTING,St.MAIN,St.MARQUEE,St.MENU,St.META,St.NAV,St.NOEMBED,St.NOFRAMES,St.NOSCRIPT,St.OBJECT,St.OL,St.P,St.PARAM,St.PLAINTEXT,St.PRE,St.SCRIPT,St.SECTION,St.SELECT,St.SOURCE,St.STYLE,St.SUMMARY,St.TABLE,St.TBODY,St.TD,St.TEMPLATE,St.TEXTAREA,St.TFOOT,St.TH,St.THEAD,St.TITLE,St.TR,St.TRACK,St.UL,St.WBR,St.XMP]),[vt.MATHML]:new Set([St.MI,St.MO,St.MN,St.MS,St.MTEXT,St.ANNOTATION_XML]),[vt.SVG]:new Set([St.TITLE,St.FOREIGN_OBJECT,St.DESC]),[vt.XLINK]:new Set,[vt.XML]:new Set,[vt.XMLNS]:new Set},K6=new Set([St.H1,St.H2,St.H3,St.H4,St.H5,St.H6]);Ue.STYLE,Ue.SCRIPT,Ue.XMP,Ue.IFRAME,Ue.NOEMBED,Ue.NOFRAMES,Ue.PLAINTEXT;var de;(function(e){e[e.DATA=0]="DATA",e[e.RCDATA=1]="RCDATA",e[e.RAWTEXT=2]="RAWTEXT",e[e.SCRIPT_DATA=3]="SCRIPT_DATA",e[e.PLAINTEXT=4]="PLAINTEXT",e[e.TAG_OPEN=5]="TAG_OPEN",e[e.END_TAG_OPEN=6]="END_TAG_OPEN",e[e.TAG_NAME=7]="TAG_NAME",e[e.RCDATA_LESS_THAN_SIGN=8]="RCDATA_LESS_THAN_SIGN",e[e.RCDATA_END_TAG_OPEN=9]="RCDATA_END_TAG_OPEN",e[e.RCDATA_END_TAG_NAME=10]="RCDATA_END_TAG_NAME",e[e.RAWTEXT_LESS_THAN_SIGN=11]="RAWTEXT_LESS_THAN_SIGN",e[e.RAWTEXT_END_TAG_OPEN=12]="RAWTEXT_END_TAG_OPEN",e[e.RAWTEXT_END_TAG_NAME=13]="RAWTEXT_END_TAG_NAME",e[e.SCRIPT_DATA_LESS_THAN_SIGN=14]="SCRIPT_DATA_LESS_THAN_SIGN",e[e.SCRIPT_DATA_END_TAG_OPEN=15]="SCRIPT_DATA_END_TAG_OPEN",e[e.SCRIPT_DATA_END_TAG_NAME=16]="SCRIPT_DATA_END_TAG_NAME",e[e.SCRIPT_DATA_ESCAPE_START=17]="SCRIPT_DATA_ESCAPE_START",e[e.SCRIPT_DATA_ESCAPE_START_DASH=18]="SCRIPT_DATA_ESCAPE_START_DASH",e[e.SCRIPT_DATA_ESCAPED=19]="SCRIPT_DATA_ESCAPED",e[e.SCRIPT_DATA_ESCAPED_DASH=20]="SCRIPT_DATA_ESCAPED_DASH",e[e.SCRIPT_DATA_ESCAPED_DASH_DASH=21]="SCRIPT_DATA_ESCAPED_DASH_DASH",e[e.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN",e[e.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]="SCRIPT_DATA_ESCAPED_END_TAG_OPEN",e[e.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]="SCRIPT_DATA_ESCAPED_END_TAG_NAME",e[e.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]="SCRIPT_DATA_DOUBLE_ESCAPE_START",e[e.SCRIPT_DATA_DOUBLE_ESCAPED=26]="SCRIPT_DATA_DOUBLE_ESCAPED",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN",e[e.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]="SCRIPT_DATA_DOUBLE_ESCAPE_END",e[e.BEFORE_ATTRIBUTE_NAME=31]="BEFORE_ATTRIBUTE_NAME",e[e.ATTRIBUTE_NAME=32]="ATTRIBUTE_NAME",e[e.AFTER_ATTRIBUTE_NAME=33]="AFTER_ATTRIBUTE_NAME",e[e.BEFORE_ATTRIBUTE_VALUE=34]="BEFORE_ATTRIBUTE_VALUE",e[e.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]="ATTRIBUTE_VALUE_DOUBLE_QUOTED",e[e.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]="ATTRIBUTE_VALUE_SINGLE_QUOTED",e[e.ATTRIBUTE_VALUE_UNQUOTED=37]="ATTRIBUTE_VALUE_UNQUOTED",e[e.AFTER_ATTRIBUTE_VALUE_QUOTED=38]="AFTER_ATTRIBUTE_VALUE_QUOTED",e[e.SELF_CLOSING_START_TAG=39]="SELF_CLOSING_START_TAG",e[e.BOGUS_COMMENT=40]="BOGUS_COMMENT",e[e.MARKUP_DECLARATION_OPEN=41]="MARKUP_DECLARATION_OPEN",e[e.COMMENT_START=42]="COMMENT_START",e[e.COMMENT_START_DASH=43]="COMMENT_START_DASH",e[e.COMMENT=44]="COMMENT",e[e.COMMENT_LESS_THAN_SIGN=45]="COMMENT_LESS_THAN_SIGN",e[e.COMMENT_LESS_THAN_SIGN_BANG=46]="COMMENT_LESS_THAN_SIGN_BANG",e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]="COMMENT_LESS_THAN_SIGN_BANG_DASH",e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH",e[e.COMMENT_END_DASH=49]="COMMENT_END_DASH",e[e.COMMENT_END=50]="COMMENT_END",e[e.COMMENT_END_BANG=51]="COMMENT_END_BANG",e[e.DOCTYPE=52]="DOCTYPE",e[e.BEFORE_DOCTYPE_NAME=53]="BEFORE_DOCTYPE_NAME",e[e.DOCTYPE_NAME=54]="DOCTYPE_NAME",e[e.AFTER_DOCTYPE_NAME=55]="AFTER_DOCTYPE_NAME",e[e.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]="AFTER_DOCTYPE_PUBLIC_KEYWORD",e[e.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER",e[e.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED",e[e.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED",e[e.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]="AFTER_DOCTYPE_PUBLIC_IDENTIFIER",e[e.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS",e[e.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]="AFTER_DOCTYPE_SYSTEM_KEYWORD",e[e.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER",e[e.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED",e[e.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED",e[e.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]="AFTER_DOCTYPE_SYSTEM_IDENTIFIER",e[e.BOGUS_DOCTYPE=67]="BOGUS_DOCTYPE",e[e.CDATA_SECTION=68]="CDATA_SECTION",e[e.CDATA_SECTION_BRACKET=69]="CDATA_SECTION_BRACKET",e[e.CDATA_SECTION_END=70]="CDATA_SECTION_END",e[e.CHARACTER_REFERENCE=71]="CHARACTER_REFERENCE",e[e.AMBIGUOUS_AMPERSAND=72]="AMBIGUOUS_AMPERSAND"})(de||(de={}));const Bs={DATA:de.DATA,RCDATA:de.RCDATA,RAWTEXT:de.RAWTEXT,SCRIPT_DATA:de.SCRIPT_DATA,PLAINTEXT:de.PLAINTEXT,CDATA_SECTION:de.CDATA_SECTION};function F0t(e){return e>=le.DIGIT_0&&e<=le.DIGIT_9}function Qw(e){return e>=le.LATIN_CAPITAL_A&&e<=le.LATIN_CAPITAL_Z}function B0t(e){return e>=le.LATIN_SMALL_A&&e<=le.LATIN_SMALL_Z}function xp(e){return B0t(e)||Qw(e)}function TY(e){return xp(e)||F0t(e)}function MT(e){return e+32}function pEe(e){return e===le.SPACE||e===le.LINE_FEED||e===le.TABULATION||e===le.FORM_FEED}function AY(e){return pEe(e)||e===le.SOLIDUS||e===le.GREATER_THAN_SIGN}function U0t(e){return e===le.NULL?tt.nullCharacterReference:e>1114111?tt.characterReferenceOutsideUnicodeRange:uEe(e)?tt.surrogateCharacterReference:fEe(e)?tt.noncharacterCharacterReference:dEe(e)||e===le.CARRIAGE_RETURN?tt.controlCharacterReference:null}class Q0t{constructor(t,n){this.options=t,this.handler=n,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName="",this.active=!1,this.state=de.DATA,this.returnState=de.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:"",value:""},this.preprocessor=new T0t(n),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new D0t(A0t,(i,r)=>{this.preprocessor.pos=this.entityStartPos+r-1,this._flushCodePointConsumedAsCharacterReference(i)},n.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(tt.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:i=>{this._err(tt.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+i)},validateNumericCharacterReference:i=>{const r=U0t(i);r&&this._err(r,1)}}:void 0)}_err(t,n=0){var i,r;(r=(i=this.handler).onParseError)===null||r===void 0||r.call(i,this.preprocessor.getError(t,n))}getCurrentLocation(t){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-t,startOffset:this.preprocessor.offset-t,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;const t=this._consume();this._ensureHibernation()||this._callState(t)}this.inLoop=!1}}pause(){this.paused=!0}resume(t){if(!this.paused)throw new Error("Parser was already resumed");this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||t==null||t())}write(t,n,i){this.active=!0,this.preprocessor.write(t,n),this._runParsingLoop(),this.paused||i==null||i()}insertHtmlAtCurrentPos(t){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(t),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(t){this.consumedAfterSnapshot+=t;for(let n=0;n0&&this._err(tt.endTagWithAttributes),t.selfClosing&&this._err(tt.endTagWithTrailingSolidus),this.handler.onEndTag(t)),this.preprocessor.dropParsedChunk()}emitCurrentComment(t){this.prepareToken(t),this.handler.onComment(t),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(t){this.prepareToken(t),this.handler.onDoctype(t),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(t){if(this.currentCharacterToken){switch(t&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=t.startLine,this.currentCharacterToken.location.endCol=t.startCol,this.currentCharacterToken.location.endOffset=t.startOffset),this.currentCharacterToken.type){case mi.CHARACTER:{this.handler.onCharacter(this.currentCharacterToken);break}case mi.NULL_CHARACTER:{this.handler.onNullCharacter(this.currentCharacterToken);break}case mi.WHITESPACE_CHARACTER:{this.handler.onWhitespaceCharacter(this.currentCharacterToken);break}}this.currentCharacterToken=null}}_emitEOFToken(){const t=this.getCurrentLocation(0);t&&(t.endLine=t.startLine,t.endCol=t.startCol,t.endOffset=t.startOffset),this._emitCurrentCharacterToken(t),this.handler.onEof({type:mi.EOF,location:t}),this.active=!1}_appendCharToCurrentCharacterToken(t,n){if(this.currentCharacterToken)if(this.currentCharacterToken.type===t){this.currentCharacterToken.chars+=n;return}else this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk();this._createCharacterToken(t,n)}_emitCodePoint(t){const n=pEe(t)?mi.WHITESPACE_CHARACTER:t===le.NULL?mi.NULL_CHARACTER:mi.CHARACTER;this._appendCharToCurrentCharacterToken(n,String.fromCodePoint(t))}_emitChars(t){this._appendCharToCurrentCharacterToken(mi.CHARACTER,t)}_startCharacterReference(){this.returnState=this.state,this.state=de.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?Bf.Attribute:Bf.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===de.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===de.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===de.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(t){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(t):this._emitCodePoint(t)}_callState(t){switch(this.state){case de.DATA:{this._stateData(t);break}case de.RCDATA:{this._stateRcdata(t);break}case de.RAWTEXT:{this._stateRawtext(t);break}case de.SCRIPT_DATA:{this._stateScriptData(t);break}case de.PLAINTEXT:{this._statePlaintext(t);break}case de.TAG_OPEN:{this._stateTagOpen(t);break}case de.END_TAG_OPEN:{this._stateEndTagOpen(t);break}case de.TAG_NAME:{this._stateTagName(t);break}case de.RCDATA_LESS_THAN_SIGN:{this._stateRcdataLessThanSign(t);break}case de.RCDATA_END_TAG_OPEN:{this._stateRcdataEndTagOpen(t);break}case de.RCDATA_END_TAG_NAME:{this._stateRcdataEndTagName(t);break}case de.RAWTEXT_LESS_THAN_SIGN:{this._stateRawtextLessThanSign(t);break}case de.RAWTEXT_END_TAG_OPEN:{this._stateRawtextEndTagOpen(t);break}case de.RAWTEXT_END_TAG_NAME:{this._stateRawtextEndTagName(t);break}case de.SCRIPT_DATA_LESS_THAN_SIGN:{this._stateScriptDataLessThanSign(t);break}case de.SCRIPT_DATA_END_TAG_OPEN:{this._stateScriptDataEndTagOpen(t);break}case de.SCRIPT_DATA_END_TAG_NAME:{this._stateScriptDataEndTagName(t);break}case de.SCRIPT_DATA_ESCAPE_START:{this._stateScriptDataEscapeStart(t);break}case de.SCRIPT_DATA_ESCAPE_START_DASH:{this._stateScriptDataEscapeStartDash(t);break}case de.SCRIPT_DATA_ESCAPED:{this._stateScriptDataEscaped(t);break}case de.SCRIPT_DATA_ESCAPED_DASH:{this._stateScriptDataEscapedDash(t);break}case de.SCRIPT_DATA_ESCAPED_DASH_DASH:{this._stateScriptDataEscapedDashDash(t);break}case de.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataEscapedLessThanSign(t);break}case de.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:{this._stateScriptDataEscapedEndTagOpen(t);break}case de.SCRIPT_DATA_ESCAPED_END_TAG_NAME:{this._stateScriptDataEscapedEndTagName(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPE_START:{this._stateScriptDataDoubleEscapeStart(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPED:{this._stateScriptDataDoubleEscaped(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:{this._stateScriptDataDoubleEscapedDash(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:{this._stateScriptDataDoubleEscapedDashDash(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataDoubleEscapedLessThanSign(t);break}case de.SCRIPT_DATA_DOUBLE_ESCAPE_END:{this._stateScriptDataDoubleEscapeEnd(t);break}case de.BEFORE_ATTRIBUTE_NAME:{this._stateBeforeAttributeName(t);break}case de.ATTRIBUTE_NAME:{this._stateAttributeName(t);break}case de.AFTER_ATTRIBUTE_NAME:{this._stateAfterAttributeName(t);break}case de.BEFORE_ATTRIBUTE_VALUE:{this._stateBeforeAttributeValue(t);break}case de.ATTRIBUTE_VALUE_DOUBLE_QUOTED:{this._stateAttributeValueDoubleQuoted(t);break}case de.ATTRIBUTE_VALUE_SINGLE_QUOTED:{this._stateAttributeValueSingleQuoted(t);break}case de.ATTRIBUTE_VALUE_UNQUOTED:{this._stateAttributeValueUnquoted(t);break}case de.AFTER_ATTRIBUTE_VALUE_QUOTED:{this._stateAfterAttributeValueQuoted(t);break}case de.SELF_CLOSING_START_TAG:{this._stateSelfClosingStartTag(t);break}case de.BOGUS_COMMENT:{this._stateBogusComment(t);break}case de.MARKUP_DECLARATION_OPEN:{this._stateMarkupDeclarationOpen(t);break}case de.COMMENT_START:{this._stateCommentStart(t);break}case de.COMMENT_START_DASH:{this._stateCommentStartDash(t);break}case de.COMMENT:{this._stateComment(t);break}case de.COMMENT_LESS_THAN_SIGN:{this._stateCommentLessThanSign(t);break}case de.COMMENT_LESS_THAN_SIGN_BANG:{this._stateCommentLessThanSignBang(t);break}case de.COMMENT_LESS_THAN_SIGN_BANG_DASH:{this._stateCommentLessThanSignBangDash(t);break}case de.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:{this._stateCommentLessThanSignBangDashDash(t);break}case de.COMMENT_END_DASH:{this._stateCommentEndDash(t);break}case de.COMMENT_END:{this._stateCommentEnd(t);break}case de.COMMENT_END_BANG:{this._stateCommentEndBang(t);break}case de.DOCTYPE:{this._stateDoctype(t);break}case de.BEFORE_DOCTYPE_NAME:{this._stateBeforeDoctypeName(t);break}case de.DOCTYPE_NAME:{this._stateDoctypeName(t);break}case de.AFTER_DOCTYPE_NAME:{this._stateAfterDoctypeName(t);break}case de.AFTER_DOCTYPE_PUBLIC_KEYWORD:{this._stateAfterDoctypePublicKeyword(t);break}case de.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateBeforeDoctypePublicIdentifier(t);break}case de.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypePublicIdentifierDoubleQuoted(t);break}case de.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypePublicIdentifierSingleQuoted(t);break}case de.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateAfterDoctypePublicIdentifier(t);break}case de.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:{this._stateBetweenDoctypePublicAndSystemIdentifiers(t);break}case de.AFTER_DOCTYPE_SYSTEM_KEYWORD:{this._stateAfterDoctypeSystemKeyword(t);break}case de.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateBeforeDoctypeSystemIdentifier(t);break}case de.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypeSystemIdentifierDoubleQuoted(t);break}case de.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypeSystemIdentifierSingleQuoted(t);break}case de.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateAfterDoctypeSystemIdentifier(t);break}case de.BOGUS_DOCTYPE:{this._stateBogusDoctype(t);break}case de.CDATA_SECTION:{this._stateCdataSection(t);break}case de.CDATA_SECTION_BRACKET:{this._stateCdataSectionBracket(t);break}case de.CDATA_SECTION_END:{this._stateCdataSectionEnd(t);break}case de.CHARACTER_REFERENCE:{this._stateCharacterReference();break}case de.AMBIGUOUS_AMPERSAND:{this._stateAmbiguousAmpersand(t);break}default:throw new Error("Unknown state")}}_stateData(t){switch(t){case le.LESS_THAN_SIGN:{this.state=de.TAG_OPEN;break}case le.AMPERSAND:{this._startCharacterReference();break}case le.NULL:{this._err(tt.unexpectedNullCharacter),this._emitCodePoint(t);break}case le.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateRcdata(t){switch(t){case le.AMPERSAND:{this._startCharacterReference();break}case le.LESS_THAN_SIGN:{this.state=de.RCDATA_LESS_THAN_SIGN;break}case le.NULL:{this._err(tt.unexpectedNullCharacter),this._emitChars(Jr);break}case le.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateRawtext(t){switch(t){case le.LESS_THAN_SIGN:{this.state=de.RAWTEXT_LESS_THAN_SIGN;break}case le.NULL:{this._err(tt.unexpectedNullCharacter),this._emitChars(Jr);break}case le.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateScriptData(t){switch(t){case le.LESS_THAN_SIGN:{this.state=de.SCRIPT_DATA_LESS_THAN_SIGN;break}case le.NULL:{this._err(tt.unexpectedNullCharacter),this._emitChars(Jr);break}case le.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_statePlaintext(t){switch(t){case le.NULL:{this._err(tt.unexpectedNullCharacter),this._emitChars(Jr);break}case le.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateTagOpen(t){if(xp(t))this._createStartTagToken(),this.state=de.TAG_NAME,this._stateTagName(t);else switch(t){case le.EXCLAMATION_MARK:{this.state=de.MARKUP_DECLARATION_OPEN;break}case le.SOLIDUS:{this.state=de.END_TAG_OPEN;break}case le.QUESTION_MARK:{this._err(tt.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=de.BOGUS_COMMENT,this._stateBogusComment(t);break}case le.EOF:{this._err(tt.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken();break}default:this._err(tt.invalidFirstCharacterOfTagName),this._emitChars("<"),this.state=de.DATA,this._stateData(t)}}_stateEndTagOpen(t){if(xp(t))this._createEndTagToken(),this.state=de.TAG_NAME,this._stateTagName(t);else switch(t){case le.GREATER_THAN_SIGN:{this._err(tt.missingEndTagName),this.state=de.DATA;break}case le.EOF:{this._err(tt.eofBeforeTagName),this._emitChars("");break}case le.NULL:{this._err(tt.unexpectedNullCharacter),this.state=de.SCRIPT_DATA_ESCAPED,this._emitChars(Jr);break}case le.EOF:{this._err(tt.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=de.SCRIPT_DATA_ESCAPED,this._emitCodePoint(t)}}_stateScriptDataEscapedLessThanSign(t){t===le.SOLIDUS?this.state=de.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:xp(t)?(this._emitChars("<"),this.state=de.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(t)):(this._emitChars("<"),this.state=de.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(t))}_stateScriptDataEscapedEndTagOpen(t){xp(t)?(this.state=de.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(t)):(this._emitChars("");break}case le.NULL:{this._err(tt.unexpectedNullCharacter),this.state=de.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(Jr);break}case le.EOF:{this._err(tt.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=de.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(t)}}_stateScriptDataDoubleEscapedLessThanSign(t){t===le.SOLIDUS?(this.state=de.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars("/")):(this.state=de.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(t))}_stateScriptDataDoubleEscapeEnd(t){if(this.preprocessor.startsWith(nl.SCRIPT,!1)&&AY(this.preprocessor.peek(nl.SCRIPT.length))){this._emitCodePoint(t);for(let n=0;n0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,!0)}replace(t,n){const i=this._indexOf(t);this.items[i]=n,i===this.stackTop&&(this.current=n)}insertAfter(t,n,i){const r=this._indexOf(t)+1;this.items.splice(r,0,n),this.tagIDs.splice(r,0,i),this.stackTop++,r===this.stackTop&&this._updateCurrentElement(),this.current&&this.currentTagId!==void 0&&this.handler.onItemPush(this.current,this.currentTagId,r===this.stackTop)}popUntilTagNamePopped(t){let n=this.stackTop+1;do n=this.tagIDs.lastIndexOf(t,n-1);while(n>0&&this.treeAdapter.getNamespaceURI(this.items[n])!==vt.HTML);this.shortenToLength(Math.max(n,0))}shortenToLength(t){for(;this.stackTop>=t;){const n=this.current;this.tmplCount>0&&this._isInTemplate()&&(this.tmplCount-=1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(n,this.stackTop=0;i--)if(t.has(this.tagIDs[i])&&this.treeAdapter.getNamespaceURI(this.items[i])===n)return i;return-1}clearBackTo(t,n){const i=this._indexOfTagNames(t,n);this.shortenToLength(i+1)}clearBackToTableContext(){this.clearBackTo(W0t,vt.HTML)}clearBackToTableBodyContext(){this.clearBackTo(q0t,vt.HTML)}clearBackToTableRowContext(){this.clearBackTo(H0t,vt.HTML)}remove(t){const n=this._indexOf(t);n>=0&&(n===this.stackTop?this.pop():(this.items.splice(n,1),this.tagIDs.splice(n,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===D.BODY?this.items[1]:null}contains(t){return this._indexOf(t)>-1}getCommonAncestor(t){const n=this._indexOf(t)-1;return n>=0?this.items[n]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===D.HTML}hasInDynamicScope(t,n){for(let i=this.stackTop;i>=0;i--){const r=this.tagIDs[i];switch(this.treeAdapter.getNamespaceURI(this.items[i])){case vt.HTML:{if(r===t)return!0;if(n.has(r))return!1;break}case vt.SVG:{if(jY.has(r))return!1;break}case vt.MATHML:{if(NY.has(r))return!1;break}}}return!0}hasInScope(t){return this.hasInDynamicScope(t,wN)}hasInListItemScope(t){return this.hasInDynamicScope(t,z0t)}hasInButtonScope(t){return this.hasInDynamicScope(t,V0t)}hasNumberedHeaderInScope(){for(let t=this.stackTop;t>=0;t--){const n=this.tagIDs[t];switch(this.treeAdapter.getNamespaceURI(this.items[t])){case vt.HTML:{if(K6.has(n))return!0;if(wN.has(n))return!1;break}case vt.SVG:{if(jY.has(n))return!1;break}case vt.MATHML:{if(NY.has(n))return!1;break}}}return!0}hasInTableScope(t){for(let n=this.stackTop;n>=0;n--)if(this.treeAdapter.getNamespaceURI(this.items[n])===vt.HTML)switch(this.tagIDs[n]){case t:return!0;case D.TABLE:case D.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===vt.HTML)switch(this.tagIDs[t]){case D.TBODY:case D.THEAD:case D.TFOOT:return!0;case D.TABLE:case D.HTML:return!1}return!0}hasInSelectScope(t){for(let n=this.stackTop;n>=0;n--)if(this.treeAdapter.getNamespaceURI(this.items[n])===vt.HTML)switch(this.tagIDs[n]){case t:return!0;case D.OPTION:case D.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;this.currentTagId!==void 0&&mEe.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;this.currentTagId!==void 0&&_Y.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(t){for(;this.currentTagId!==void 0&&this.currentTagId!==t&&_Y.has(this.currentTagId);)this.pop()}}const zM=3;var gd;(function(e){e[e.Marker=0]="Marker",e[e.Element=1]="Element"})(gd||(gd={}));const RY={type:gd.Marker};class X0t{constructor(t){this.treeAdapter=t,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(t,n){const i=[],r=n.length,s=this.treeAdapter.getTagName(t),a=this.treeAdapter.getNamespaceURI(t);for(let l=0;l[a.name,a.value]));let s=0;for(let a=0;ar.get(c.name)===c.value)&&(s+=1,s>=zM&&this.entries.splice(l.idx,1))}}insertMarker(){this.entries.unshift(RY)}pushElement(t,n){this._ensureNoahArkCondition(t),this.entries.unshift({type:gd.Element,element:t,token:n})}insertElementAfterBookmark(t,n){const i=this.entries.indexOf(this.bookmark);this.entries.splice(i,0,{type:gd.Element,element:t,token:n})}removeEntry(t){const n=this.entries.indexOf(t);n!==-1&&this.entries.splice(n,1)}clearToLastMarker(){const t=this.entries.indexOf(RY);t===-1?this.entries.length=0:this.entries.splice(0,t+1)}getElementEntryInScopeWithTagName(t){const n=this.entries.find(i=>i.type===gd.Marker||this.treeAdapter.getTagName(i.element)===t);return n&&n.type===gd.Element?n:null}getElementEntry(t){return this.entries.find(n=>n.type===gd.Element&&n.element===t)}}const wp={createDocument(){return{nodeName:"#document",mode:Fc.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:"#document-fragment",childNodes:[]}},createElement(e,t,n){return{nodeName:e,tagName:e,attrs:n,namespaceURI:t,childNodes:[],parentNode:null}},createCommentNode(e){return{nodeName:"#comment",data:e,parentNode:null}},createTextNode(e){return{nodeName:"#text",value:e,parentNode:null}},appendChild(e,t){e.childNodes.push(t),t.parentNode=e},insertBefore(e,t,n){const i=e.childNodes.indexOf(n);e.childNodes.splice(i,0,t),t.parentNode=e},setTemplateContent(e,t){e.content=t},getTemplateContent(e){return e.content},setDocumentType(e,t,n,i){const r=e.childNodes.find(s=>s.nodeName==="#documentType");if(r)r.name=t,r.publicId=n,r.systemId=i;else{const s={nodeName:"#documentType",name:t,publicId:n,systemId:i,parentNode:null};wp.appendChild(e,s)}},setDocumentMode(e,t){e.mode=t},getDocumentMode(e){return e.mode},detachNode(e){if(e.parentNode){const t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null}},insertText(e,t){if(e.childNodes.length>0){const n=e.childNodes[e.childNodes.length-1];if(wp.isTextNode(n)){n.value+=t;return}}wp.appendChild(e,wp.createTextNode(t))},insertTextBefore(e,t,n){const i=e.childNodes[e.childNodes.indexOf(n)-1];i&&wp.isTextNode(i)?i.value+=t:wp.insertBefore(e,wp.createTextNode(t),n)},adoptAttributes(e,t){const n=new Set(e.attrs.map(i=>i.name));for(let i=0;ie.startsWith(n))}function nyt(e){return e.name===gEe&&e.publicId===null&&(e.systemId===null||e.systemId===Y0t)}function iyt(e){if(e.name!==gEe)return Fc.QUIRKS;const{systemId:t}=e;if(t&&t.toLowerCase()===Z0t)return Fc.QUIRKS;let{publicId:n}=e;if(n!==null){if(n=n.toLowerCase(),eyt.has(n))return Fc.QUIRKS;let i=t===null?J0t:bEe;if(IY(n,i))return Fc.QUIRKS;if(i=t===null?yEe:tyt,IY(n,i))return Fc.LIMITED_QUIRKS}return Fc.NO_QUIRKS}const PY={TEXT_HTML:"text/html",APPLICATION_XML:"application/xhtml+xml"},ryt="definitionurl",syt="definitionURL",ayt=new Map(["attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(e=>[e.toLowerCase(),e])),oyt=new Map([["xlink:actuate",{prefix:"xlink",name:"actuate",namespace:vt.XLINK}],["xlink:arcrole",{prefix:"xlink",name:"arcrole",namespace:vt.XLINK}],["xlink:href",{prefix:"xlink",name:"href",namespace:vt.XLINK}],["xlink:role",{prefix:"xlink",name:"role",namespace:vt.XLINK}],["xlink:show",{prefix:"xlink",name:"show",namespace:vt.XLINK}],["xlink:title",{prefix:"xlink",name:"title",namespace:vt.XLINK}],["xlink:type",{prefix:"xlink",name:"type",namespace:vt.XLINK}],["xml:lang",{prefix:"xml",name:"lang",namespace:vt.XML}],["xml:space",{prefix:"xml",name:"space",namespace:vt.XML}],["xmlns",{prefix:"",name:"xmlns",namespace:vt.XMLNS}],["xmlns:xlink",{prefix:"xmlns",name:"xlink",namespace:vt.XMLNS}]]),lyt=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(e=>[e.toLowerCase(),e])),cyt=new Set([D.B,D.BIG,D.BLOCKQUOTE,D.BODY,D.BR,D.CENTER,D.CODE,D.DD,D.DIV,D.DL,D.DT,D.EM,D.EMBED,D.H1,D.H2,D.H3,D.H4,D.H5,D.H6,D.HEAD,D.HR,D.I,D.IMG,D.LI,D.LISTING,D.MENU,D.META,D.NOBR,D.OL,D.P,D.PRE,D.RUBY,D.S,D.SMALL,D.SPAN,D.STRONG,D.STRIKE,D.SUB,D.SUP,D.TABLE,D.TT,D.U,D.UL,D.VAR]);function uyt(e){const t=e.tagID;return t===D.FONT&&e.attrs.some(({name:i})=>i===db.COLOR||i===db.SIZE||i===db.FACE)||cyt.has(t)}function vEe(e){for(let t=0;t0&&this._setContextModes(t,n)}onItemPop(t,n){var i,r;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(t,this.currentToken),(r=(i=this.treeAdapter).onItemPop)===null||r===void 0||r.call(i,t,this.openElements.current),n){let s,a;this.openElements.stackTop===0&&this.fragmentContext?(s=this.fragmentContext,a=this.fragmentContextID):{current:s,currentTagId:a}=this.openElements,this._setContextModes(s,a)}}_setContextModes(t,n){const i=t===this.document||t&&this.treeAdapter.getNamespaceURI(t)===vt.HTML;this.currentNotInHTML=!i,this.tokenizer.inForeignNode=!i&&t!==void 0&&n!==void 0&&!this._isIntegrationPoint(n,t)}_switchToTextParsing(t,n){this._insertElement(t,vt.HTML),this.tokenizer.state=n,this.originalInsertionMode=this.insertionMode,this.insertionMode=ge.TEXT}switchToPlaintextParsing(){this.insertionMode=ge.TEXT,this.originalInsertionMode=ge.IN_BODY,this.tokenizer.state=Bs.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let t=this.fragmentContext;for(;t;){if(this.treeAdapter.getTagName(t)===Ue.FORM){this.formElement=t;break}t=this.treeAdapter.getParentNode(t)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==vt.HTML))switch(this.fragmentContextID){case D.TITLE:case D.TEXTAREA:{this.tokenizer.state=Bs.RCDATA;break}case D.STYLE:case D.XMP:case D.IFRAME:case D.NOEMBED:case D.NOFRAMES:case D.NOSCRIPT:{this.tokenizer.state=Bs.RAWTEXT;break}case D.SCRIPT:{this.tokenizer.state=Bs.SCRIPT_DATA;break}case D.PLAINTEXT:{this.tokenizer.state=Bs.PLAINTEXT;break}}}_setDocumentType(t){const n=t.name||"",i=t.publicId||"",r=t.systemId||"";if(this.treeAdapter.setDocumentType(this.document,n,i,r),t.location){const a=this.treeAdapter.getChildNodes(this.document).find(l=>this.treeAdapter.isDocumentTypeNode(l));a&&this.treeAdapter.setNodeSourceCodeLocation(a,t.location)}}_attachElementToTree(t,n){if(this.options.sourceCodeLocationInfo){const i=n&&{...n,startTag:n};this.treeAdapter.setNodeSourceCodeLocation(t,i)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(t);else{const i=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(i??this.document,t)}}_appendElement(t,n){const i=this.treeAdapter.createElement(t.tagName,n,t.attrs);this._attachElementToTree(i,t.location)}_insertElement(t,n){const i=this.treeAdapter.createElement(t.tagName,n,t.attrs);this._attachElementToTree(i,t.location),this.openElements.push(i,t.tagID)}_insertFakeElement(t,n){const i=this.treeAdapter.createElement(t,vt.HTML,[]);this._attachElementToTree(i,null),this.openElements.push(i,n)}_insertTemplate(t){const n=this.treeAdapter.createElement(t.tagName,vt.HTML,t.attrs),i=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(n,i),this._attachElementToTree(n,t.location),this.openElements.push(n,t.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(i,null)}_insertFakeRootElement(){const t=this.treeAdapter.createElement(Ue.HTML,vt.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(t,null),this.treeAdapter.appendChild(this.openElements.current,t),this.openElements.push(t,D.HTML)}_appendCommentNode(t,n){const i=this.treeAdapter.createCommentNode(t.data);this.treeAdapter.appendChild(n,i),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(i,t.location)}_insertCharacters(t){let n,i;if(this._shouldFosterParentOnInsertion()?({parent:n,beforeElement:i}=this._findFosterParentingLocation(),i?this.treeAdapter.insertTextBefore(n,t.chars,i):this.treeAdapter.insertText(n,t.chars)):(n=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(n,t.chars)),!t.location)return;const r=this.treeAdapter.getChildNodes(n),s=i?r.lastIndexOf(i):r.length,a=r[s-1];if(this.treeAdapter.getNodeSourceCodeLocation(a)){const{endLine:c,endCol:u,endOffset:d}=t.location;this.treeAdapter.updateNodeSourceCodeLocation(a,{endLine:c,endCol:u,endOffset:d})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(a,t.location)}_adoptNodes(t,n){for(let i=this.treeAdapter.getFirstChild(t);i;i=this.treeAdapter.getFirstChild(t))this.treeAdapter.detachNode(i),this.treeAdapter.appendChild(n,i)}_setEndLocation(t,n){if(this.treeAdapter.getNodeSourceCodeLocation(t)&&n.location){const i=n.location,r=this.treeAdapter.getTagName(t),s=n.type===mi.END_TAG&&r===n.tagName?{endTag:{...i},endLine:i.endLine,endCol:i.endCol,endOffset:i.endOffset}:{endLine:i.startLine,endCol:i.startCol,endOffset:i.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(t,s)}}shouldProcessStartTagTokenInForeignContent(t){if(!this.currentNotInHTML)return!1;let n,i;return this.openElements.stackTop===0&&this.fragmentContext?(n=this.fragmentContext,i=this.fragmentContextID):{current:n,currentTagId:i}=this.openElements,t.tagID===D.SVG&&this.treeAdapter.getTagName(n)===Ue.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(n)===vt.MATHML?!1:this.tokenizer.inForeignNode||(t.tagID===D.MGLYPH||t.tagID===D.MALIGNMARK)&&i!==void 0&&!this._isIntegrationPoint(i,n,vt.HTML)}_processToken(t){switch(t.type){case mi.CHARACTER:{this.onCharacter(t);break}case mi.NULL_CHARACTER:{this.onNullCharacter(t);break}case mi.COMMENT:{this.onComment(t);break}case mi.DOCTYPE:{this.onDoctype(t);break}case mi.START_TAG:{this._processStartTag(t);break}case mi.END_TAG:{this.onEndTag(t);break}case mi.EOF:{this.onEof(t);break}case mi.WHITESPACE_CHARACTER:{this.onWhitespaceCharacter(t);break}}}_isIntegrationPoint(t,n,i){const r=this.treeAdapter.getNamespaceURI(n),s=this.treeAdapter.getAttrList(n);return pyt(t,r,s,i)}_reconstructActiveFormattingElements(){const t=this.activeFormattingElements.entries.length;if(t){const n=this.activeFormattingElements.entries.findIndex(r=>r.type===gd.Marker||this.openElements.contains(r.element)),i=n===-1?t-1:n-1;for(let r=i;r>=0;r--){const s=this.activeFormattingElements.entries[r];this._insertElement(s.token,this.treeAdapter.getNamespaceURI(s.element)),s.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=ge.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(D.P),this.openElements.popUntilTagNamePopped(D.P)}_resetInsertionMode(){for(let t=this.openElements.stackTop;t>=0;t--)switch(t===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[t]){case D.TR:{this.insertionMode=ge.IN_ROW;return}case D.TBODY:case D.THEAD:case D.TFOOT:{this.insertionMode=ge.IN_TABLE_BODY;return}case D.CAPTION:{this.insertionMode=ge.IN_CAPTION;return}case D.COLGROUP:{this.insertionMode=ge.IN_COLUMN_GROUP;return}case D.TABLE:{this.insertionMode=ge.IN_TABLE;return}case D.BODY:{this.insertionMode=ge.IN_BODY;return}case D.FRAMESET:{this.insertionMode=ge.IN_FRAMESET;return}case D.SELECT:{this._resetInsertionModeForSelect(t);return}case D.TEMPLATE:{this.insertionMode=this.tmplInsertionModeStack[0];return}case D.HTML:{this.insertionMode=this.headElement?ge.AFTER_HEAD:ge.BEFORE_HEAD;return}case D.TD:case D.TH:{if(t>0){this.insertionMode=ge.IN_CELL;return}break}case D.HEAD:{if(t>0){this.insertionMode=ge.IN_HEAD;return}break}}this.insertionMode=ge.IN_BODY}_resetInsertionModeForSelect(t){if(t>0)for(let n=t-1;n>0;n--){const i=this.openElements.tagIDs[n];if(i===D.TEMPLATE)break;if(i===D.TABLE){this.insertionMode=ge.IN_SELECT_IN_TABLE;return}}this.insertionMode=ge.IN_SELECT}_isElementCausesFosterParenting(t){return wEe.has(t)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this.openElements.currentTagId!==void 0&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let t=this.openElements.stackTop;t>=0;t--){const n=this.openElements.items[t];switch(this.openElements.tagIDs[t]){case D.TEMPLATE:{if(this.treeAdapter.getNamespaceURI(n)===vt.HTML)return{parent:this.treeAdapter.getTemplateContent(n),beforeElement:null};break}case D.TABLE:{const i=this.treeAdapter.getParentNode(n);return i?{parent:i,beforeElement:n}:{parent:this.openElements.items[t-1],beforeElement:null}}}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(t){const n=this._findFosterParentingLocation();n.beforeElement?this.treeAdapter.insertBefore(n.parent,t,n.beforeElement):this.treeAdapter.appendChild(n.parent,t)}_isSpecialElement(t,n){const i=this.treeAdapter.getNamespaceURI(t);return $0t[i].has(n)}onCharacter(t){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Kvt(this,t);return}switch(this.insertionMode){case ge.INITIAL:{Y1(this,t);break}case ge.BEFORE_HTML:{IO(this,t);break}case ge.BEFORE_HEAD:{PO(this,t);break}case ge.IN_HEAD:{DO(this,t);break}case ge.IN_HEAD_NO_SCRIPT:{MO(this,t);break}case ge.AFTER_HEAD:{LO(this,t);break}case ge.IN_BODY:case ge.IN_CAPTION:case ge.IN_CELL:case ge.IN_TEMPLATE:{SEe(this,t);break}case ge.TEXT:case ge.IN_SELECT:case ge.IN_SELECT_IN_TABLE:{this._insertCharacters(t);break}case ge.IN_TABLE:case ge.IN_TABLE_BODY:case ge.IN_ROW:{VM(this,t);break}case ge.IN_TABLE_TEXT:{_Ee(this,t);break}case ge.IN_COLUMN_GROUP:{ON(this,t);break}case ge.AFTER_BODY:{SN(this,t);break}case ge.AFTER_AFTER_BODY:{C2(this,t);break}}}onNullCharacter(t){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Wvt(this,t);return}switch(this.insertionMode){case ge.INITIAL:{Y1(this,t);break}case ge.BEFORE_HTML:{IO(this,t);break}case ge.BEFORE_HEAD:{PO(this,t);break}case ge.IN_HEAD:{DO(this,t);break}case ge.IN_HEAD_NO_SCRIPT:{MO(this,t);break}case ge.AFTER_HEAD:{LO(this,t);break}case ge.TEXT:{this._insertCharacters(t);break}case ge.IN_TABLE:case ge.IN_TABLE_BODY:case ge.IN_ROW:{VM(this,t);break}case ge.IN_COLUMN_GROUP:{ON(this,t);break}case ge.AFTER_BODY:{SN(this,t);break}case ge.AFTER_AFTER_BODY:{C2(this,t);break}}}onComment(t){if(this.skipNextNewLine=!1,this.currentNotInHTML){G6(this,t);return}switch(this.insertionMode){case ge.INITIAL:case ge.BEFORE_HTML:case ge.BEFORE_HEAD:case ge.IN_HEAD:case ge.IN_HEAD_NO_SCRIPT:case ge.AFTER_HEAD:case ge.IN_BODY:case ge.IN_TABLE:case ge.IN_CAPTION:case ge.IN_COLUMN_GROUP:case ge.IN_TABLE_BODY:case ge.IN_ROW:case ge.IN_CELL:case ge.IN_SELECT:case ge.IN_SELECT_IN_TABLE:case ge.IN_TEMPLATE:case ge.IN_FRAMESET:case ge.AFTER_FRAMESET:{G6(this,t);break}case ge.IN_TABLE_TEXT:{Z1(this,t);break}case ge.AFTER_BODY:{Eyt(this,t);break}case ge.AFTER_AFTER_BODY:case ge.AFTER_AFTER_FRAMESET:{Cyt(this,t);break}}}onDoctype(t){switch(this.skipNextNewLine=!1,this.insertionMode){case ge.INITIAL:{Tyt(this,t);break}case ge.BEFORE_HEAD:case ge.IN_HEAD:case ge.IN_HEAD_NO_SCRIPT:case ge.AFTER_HEAD:{this._err(t,tt.misplacedDoctype);break}case ge.IN_TABLE_TEXT:{Z1(this,t);break}}}onStartTag(t){this.skipNextNewLine=!1,this.currentToken=t,this._processStartTag(t),t.selfClosing&&!t.ackSelfClosing&&this._err(t,tt.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(t){this.shouldProcessStartTagTokenInForeignContent(t)?Gvt(this,t):this._startTagOutsideForeignContent(t)}_startTagOutsideForeignContent(t){switch(this.insertionMode){case ge.INITIAL:{Y1(this,t);break}case ge.BEFORE_HTML:{Ayt(this,t);break}case ge.BEFORE_HEAD:{Nyt(this,t);break}case ge.IN_HEAD:{Xu(this,t);break}case ge.IN_HEAD_NO_SCRIPT:{Iyt(this,t);break}case ge.AFTER_HEAD:{Dyt(this,t);break}case ge.IN_BODY:{To(this,t);break}case ge.IN_TABLE:{sx(this,t);break}case ge.IN_TABLE_TEXT:{Z1(this,t);break}case ge.IN_CAPTION:{jvt(this,t);break}case ge.IN_COLUMN_GROUP:{mU(this,t);break}case ge.IN_TABLE_BODY:{lI(this,t);break}case ge.IN_ROW:{cI(this,t);break}case ge.IN_CELL:{Pvt(this,t);break}case ge.IN_SELECT:{REe(this,t);break}case ge.IN_SELECT_IN_TABLE:{Mvt(this,t);break}case ge.IN_TEMPLATE:{$vt(this,t);break}case ge.AFTER_BODY:{Bvt(this,t);break}case ge.IN_FRAMESET:{Uvt(this,t);break}case ge.AFTER_FRAMESET:{zvt(this,t);break}case ge.AFTER_AFTER_BODY:{Hvt(this,t);break}case ge.AFTER_AFTER_FRAMESET:{qvt(this,t);break}}}onEndTag(t){this.skipNextNewLine=!1,this.currentToken=t,this.currentNotInHTML?Xvt(this,t):this._endTagOutsideForeignContent(t)}_endTagOutsideForeignContent(t){switch(this.insertionMode){case ge.INITIAL:{Y1(this,t);break}case ge.BEFORE_HTML:{_yt(this,t);break}case ge.BEFORE_HEAD:{jyt(this,t);break}case ge.IN_HEAD:{Ryt(this,t);break}case ge.IN_HEAD_NO_SCRIPT:{Pyt(this,t);break}case ge.AFTER_HEAD:{Myt(this,t);break}case ge.IN_BODY:{oI(this,t);break}case ge.TEXT:{wvt(this,t);break}case ge.IN_TABLE:{KS(this,t);break}case ge.IN_TABLE_TEXT:{Z1(this,t);break}case ge.IN_CAPTION:{Rvt(this,t);break}case ge.IN_COLUMN_GROUP:{Ivt(this,t);break}case ge.IN_TABLE_BODY:{X6(this,t);break}case ge.IN_ROW:{jEe(this,t);break}case ge.IN_CELL:{Dvt(this,t);break}case ge.IN_SELECT:{IEe(this,t);break}case ge.IN_SELECT_IN_TABLE:{Lvt(this,t);break}case ge.IN_TEMPLATE:{Fvt(this,t);break}case ge.AFTER_BODY:{DEe(this,t);break}case ge.IN_FRAMESET:{Qvt(this,t);break}case ge.AFTER_FRAMESET:{Vvt(this,t);break}case ge.AFTER_AFTER_BODY:{C2(this,t);break}}}onEof(t){switch(this.insertionMode){case ge.INITIAL:{Y1(this,t);break}case ge.BEFORE_HTML:{IO(this,t);break}case ge.BEFORE_HEAD:{PO(this,t);break}case ge.IN_HEAD:{DO(this,t);break}case ge.IN_HEAD_NO_SCRIPT:{MO(this,t);break}case ge.AFTER_HEAD:{LO(this,t);break}case ge.IN_BODY:case ge.IN_TABLE:case ge.IN_CAPTION:case ge.IN_COLUMN_GROUP:case ge.IN_TABLE_BODY:case ge.IN_ROW:case ge.IN_CELL:case ge.IN_SELECT:case ge.IN_SELECT_IN_TABLE:{TEe(this,t);break}case ge.TEXT:{Ovt(this,t);break}case ge.IN_TABLE_TEXT:{Z1(this,t);break}case ge.IN_TEMPLATE:{PEe(this,t);break}case ge.AFTER_BODY:case ge.IN_FRAMESET:case ge.AFTER_FRAMESET:case ge.AFTER_AFTER_BODY:case ge.AFTER_AFTER_FRAMESET:{pU(this,t);break}}}onWhitespaceCharacter(t){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,t.chars.charCodeAt(0)===le.LINE_FEED)){if(t.chars.length===1)return;t.chars=t.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(t);return}switch(this.insertionMode){case ge.IN_HEAD:case ge.IN_HEAD_NO_SCRIPT:case ge.AFTER_HEAD:case ge.TEXT:case ge.IN_COLUMN_GROUP:case ge.IN_SELECT:case ge.IN_SELECT_IN_TABLE:case ge.IN_FRAMESET:case ge.AFTER_FRAMESET:{this._insertCharacters(t);break}case ge.IN_BODY:case ge.IN_CAPTION:case ge.IN_CELL:case ge.IN_TEMPLATE:case ge.AFTER_BODY:case ge.AFTER_AFTER_BODY:case ge.AFTER_AFTER_FRAMESET:{OEe(this,t);break}case ge.IN_TABLE:case ge.IN_TABLE_BODY:case ge.IN_ROW:{VM(this,t);break}case ge.IN_TABLE_TEXT:{AEe(this,t);break}}}};function vyt(e,t){let n=e.activeFormattingElements.getElementEntryInScopeWithTagName(t.tagName);return n?e.openElements.contains(n.element)?e.openElements.hasInScope(t.tagID)||(n=null):(e.activeFormattingElements.removeEntry(n),n=null):CEe(e,t),n}function xyt(e,t){let n=null,i=e.openElements.stackTop;for(;i>=0;i--){const r=e.openElements.items[i];if(r===t.element)break;e._isSpecialElement(r,e.openElements.tagIDs[i])&&(n=r)}return n||(e.openElements.shortenToLength(Math.max(i,0)),e.activeFormattingElements.removeEntry(t)),n}function wyt(e,t,n){let i=t,r=e.openElements.getCommonAncestor(t);for(let s=0,a=r;a!==n;s++,a=r){r=e.openElements.getCommonAncestor(a);const l=e.activeFormattingElements.getElementEntry(a),c=l&&s>=byt;!l||c?(c&&e.activeFormattingElements.removeEntry(l),e.openElements.remove(a)):(a=Oyt(e,l),i===t&&(e.activeFormattingElements.bookmark=l),e.treeAdapter.detachNode(i),e.treeAdapter.appendChild(a,i),i=a)}return i}function Oyt(e,t){const n=e.treeAdapter.getNamespaceURI(t.element),i=e.treeAdapter.createElement(t.token.tagName,n,t.token.attrs);return e.openElements.replace(t.element,i),t.element=i,i}function Syt(e,t,n){const i=e.treeAdapter.getTagName(t),r=Jx(i);if(e._isElementCausesFosterParenting(r))e._fosterParentElement(n);else{const s=e.treeAdapter.getNamespaceURI(t);r===D.TEMPLATE&&s===vt.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,n)}}function kyt(e,t,n){const i=e.treeAdapter.getNamespaceURI(n.element),{token:r}=n,s=e.treeAdapter.createElement(r.tagName,i,r.attrs);e._adoptNodes(t,s),e.treeAdapter.appendChild(t,s),e.activeFormattingElements.insertElementAfterBookmark(s,r),e.activeFormattingElements.removeEntry(n),e.openElements.remove(n.element),e.openElements.insertAfter(t,s,r.tagID)}function hU(e,t){for(let n=0;n=n;i--)e._setEndLocation(e.openElements.items[i],t);if(!e.fragmentContext&&e.openElements.stackTop>=0){const i=e.openElements.items[0],r=e.treeAdapter.getNodeSourceCodeLocation(i);if(r&&!r.endTag&&(e._setEndLocation(i,t),e.openElements.stackTop>=1)){const s=e.openElements.items[1],a=e.treeAdapter.getNodeSourceCodeLocation(s);a&&!a.endTag&&e._setEndLocation(s,t)}}}}function Tyt(e,t){e._setDocumentType(t);const n=t.forceQuirks?Fc.QUIRKS:iyt(t);nyt(t)||e._err(t,tt.nonConformingDoctype),e.treeAdapter.setDocumentMode(e.document,n),e.insertionMode=ge.BEFORE_HTML}function Y1(e,t){e._err(t,tt.missingDoctype,!0),e.treeAdapter.setDocumentMode(e.document,Fc.QUIRKS),e.insertionMode=ge.BEFORE_HTML,e._processToken(t)}function Ayt(e,t){t.tagID===D.HTML?(e._insertElement(t,vt.HTML),e.insertionMode=ge.BEFORE_HEAD):IO(e,t)}function _yt(e,t){const n=t.tagID;(n===D.HTML||n===D.HEAD||n===D.BODY||n===D.BR)&&IO(e,t)}function IO(e,t){e._insertFakeRootElement(),e.insertionMode=ge.BEFORE_HEAD,e._processToken(t)}function Nyt(e,t){switch(t.tagID){case D.HTML:{To(e,t);break}case D.HEAD:{e._insertElement(t,vt.HTML),e.headElement=e.openElements.current,e.insertionMode=ge.IN_HEAD;break}default:PO(e,t)}}function jyt(e,t){const n=t.tagID;n===D.HEAD||n===D.BODY||n===D.HTML||n===D.BR?PO(e,t):e._err(t,tt.endTagWithoutMatchingOpenElement)}function PO(e,t){e._insertFakeElement(Ue.HEAD,D.HEAD),e.headElement=e.openElements.current,e.insertionMode=ge.IN_HEAD,e._processToken(t)}function Xu(e,t){switch(t.tagID){case D.HTML:{To(e,t);break}case D.BASE:case D.BASEFONT:case D.BGSOUND:case D.LINK:case D.META:{e._appendElement(t,vt.HTML),t.ackSelfClosing=!0;break}case D.TITLE:{e._switchToTextParsing(t,Bs.RCDATA);break}case D.NOSCRIPT:{e.options.scriptingEnabled?e._switchToTextParsing(t,Bs.RAWTEXT):(e._insertElement(t,vt.HTML),e.insertionMode=ge.IN_HEAD_NO_SCRIPT);break}case D.NOFRAMES:case D.STYLE:{e._switchToTextParsing(t,Bs.RAWTEXT);break}case D.SCRIPT:{e._switchToTextParsing(t,Bs.SCRIPT_DATA);break}case D.TEMPLATE:{e._insertTemplate(t),e.activeFormattingElements.insertMarker(),e.framesetOk=!1,e.insertionMode=ge.IN_TEMPLATE,e.tmplInsertionModeStack.unshift(ge.IN_TEMPLATE);break}case D.HEAD:{e._err(t,tt.misplacedStartTagForHeadElement);break}default:DO(e,t)}}function Ryt(e,t){switch(t.tagID){case D.HEAD:{e.openElements.pop(),e.insertionMode=ge.AFTER_HEAD;break}case D.BODY:case D.BR:case D.HTML:{DO(e,t);break}case D.TEMPLATE:{c0(e,t);break}default:e._err(t,tt.endTagWithoutMatchingOpenElement)}}function c0(e,t){e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagId!==D.TEMPLATE&&e._err(t,tt.closingOfElementWithOpenChildElements),e.openElements.popUntilTagNamePopped(D.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode()):e._err(t,tt.endTagWithoutMatchingOpenElement)}function DO(e,t){e.openElements.pop(),e.insertionMode=ge.AFTER_HEAD,e._processToken(t)}function Iyt(e,t){switch(t.tagID){case D.HTML:{To(e,t);break}case D.BASEFONT:case D.BGSOUND:case D.HEAD:case D.LINK:case D.META:case D.NOFRAMES:case D.STYLE:{Xu(e,t);break}case D.NOSCRIPT:{e._err(t,tt.nestedNoscriptInHead);break}default:MO(e,t)}}function Pyt(e,t){switch(t.tagID){case D.NOSCRIPT:{e.openElements.pop(),e.insertionMode=ge.IN_HEAD;break}case D.BR:{MO(e,t);break}default:e._err(t,tt.endTagWithoutMatchingOpenElement)}}function MO(e,t){const n=t.type===mi.EOF?tt.openElementsLeftAfterEof:tt.disallowedContentInNoscriptInHead;e._err(t,n),e.openElements.pop(),e.insertionMode=ge.IN_HEAD,e._processToken(t)}function Dyt(e,t){switch(t.tagID){case D.HTML:{To(e,t);break}case D.BODY:{e._insertElement(t,vt.HTML),e.framesetOk=!1,e.insertionMode=ge.IN_BODY;break}case D.FRAMESET:{e._insertElement(t,vt.HTML),e.insertionMode=ge.IN_FRAMESET;break}case D.BASE:case D.BASEFONT:case D.BGSOUND:case D.LINK:case D.META:case D.NOFRAMES:case D.SCRIPT:case D.STYLE:case D.TEMPLATE:case D.TITLE:{e._err(t,tt.abandonedHeadElementChild),e.openElements.push(e.headElement,D.HEAD),Xu(e,t),e.openElements.remove(e.headElement);break}case D.HEAD:{e._err(t,tt.misplacedStartTagForHeadElement);break}default:LO(e,t)}}function Myt(e,t){switch(t.tagID){case D.BODY:case D.HTML:case D.BR:{LO(e,t);break}case D.TEMPLATE:{c0(e,t);break}default:e._err(t,tt.endTagWithoutMatchingOpenElement)}}function LO(e,t){e._insertFakeElement(Ue.BODY,D.BODY),e.insertionMode=ge.IN_BODY,aI(e,t)}function aI(e,t){switch(t.type){case mi.CHARACTER:{SEe(e,t);break}case mi.WHITESPACE_CHARACTER:{OEe(e,t);break}case mi.COMMENT:{G6(e,t);break}case mi.START_TAG:{To(e,t);break}case mi.END_TAG:{oI(e,t);break}case mi.EOF:{TEe(e,t);break}}}function OEe(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t)}function SEe(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1}function Lyt(e,t){e.openElements.tmplCount===0&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs)}function $yt(e,t){const n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e.openElements.tmplCount===0&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(n,t.attrs))}function Fyt(e,t){const n=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&n&&(e.treeAdapter.detachNode(n),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,vt.HTML),e.insertionMode=ge.IN_FRAMESET)}function Byt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,vt.HTML)}function Uyt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e.openElements.currentTagId!==void 0&&K6.has(e.openElements.currentTagId)&&e.openElements.pop(),e._insertElement(t,vt.HTML)}function Qyt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,vt.HTML),e.skipNextNewLine=!0,e.framesetOk=!1}function zyt(e,t){const n=e.openElements.tmplCount>0;(!e.formElement||n)&&(e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,vt.HTML),n||(e.formElement=e.openElements.current))}function Vyt(e,t){e.framesetOk=!1;const n=t.tagID;for(let i=e.openElements.stackTop;i>=0;i--){const r=e.openElements.tagIDs[i];if(n===D.LI&&r===D.LI||(n===D.DD||n===D.DT)&&(r===D.DD||r===D.DT)){e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.popUntilTagNamePopped(r);break}if(r!==D.ADDRESS&&r!==D.DIV&&r!==D.P&&e._isSpecialElement(e.openElements.items[i],r))break}e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,vt.HTML)}function Hyt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,vt.HTML),e.tokenizer.state=Bs.PLAINTEXT}function qyt(e,t){e.openElements.hasInScope(D.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(D.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,vt.HTML),e.framesetOk=!1}function Wyt(e,t){const n=e.activeFormattingElements.getElementEntryInScopeWithTagName(Ue.A);n&&(hU(e,t),e.openElements.remove(n.element),e.activeFormattingElements.removeEntry(n)),e._reconstructActiveFormattingElements(),e._insertElement(t,vt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Kyt(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,vt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Gyt(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(D.NOBR)&&(hU(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,vt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Xyt(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,vt.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1}function Yyt(e,t){e.treeAdapter.getDocumentMode(e.document)!==Fc.QUIRKS&&e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._insertElement(t,vt.HTML),e.framesetOk=!1,e.insertionMode=ge.IN_TABLE}function kEe(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,vt.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function EEe(e){const t=hEe(e,db.TYPE);return t!=null&&t.toLowerCase()===myt}function Zyt(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,vt.HTML),EEe(t)||(e.framesetOk=!1),t.ackSelfClosing=!0}function Jyt(e,t){e._appendElement(t,vt.HTML),t.ackSelfClosing=!0}function evt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._appendElement(t,vt.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function tvt(e,t){t.tagName=Ue.IMG,t.tagID=D.IMG,kEe(e,t)}function nvt(e,t){e._insertElement(t,vt.HTML),e.skipNextNewLine=!0,e.tokenizer.state=Bs.RCDATA,e.originalInsertionMode=e.insertionMode,e.framesetOk=!1,e.insertionMode=ge.TEXT}function ivt(e,t){e.openElements.hasInButtonScope(D.P)&&e._closePElement(),e._reconstructActiveFormattingElements(),e.framesetOk=!1,e._switchToTextParsing(t,Bs.RAWTEXT)}function rvt(e,t){e.framesetOk=!1,e._switchToTextParsing(t,Bs.RAWTEXT)}function LY(e,t){e._switchToTextParsing(t,Bs.RAWTEXT)}function svt(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,vt.HTML),e.framesetOk=!1,e.insertionMode=e.insertionMode===ge.IN_TABLE||e.insertionMode===ge.IN_CAPTION||e.insertionMode===ge.IN_TABLE_BODY||e.insertionMode===ge.IN_ROW||e.insertionMode===ge.IN_CELL?ge.IN_SELECT_IN_TABLE:ge.IN_SELECT}function avt(e,t){e.openElements.currentTagId===D.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,vt.HTML)}function ovt(e,t){e.openElements.hasInScope(D.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,vt.HTML)}function lvt(e,t){e.openElements.hasInScope(D.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(D.RTC),e._insertElement(t,vt.HTML)}function cvt(e,t){e._reconstructActiveFormattingElements(),vEe(t),fU(t),t.selfClosing?e._appendElement(t,vt.MATHML):e._insertElement(t,vt.MATHML),t.ackSelfClosing=!0}function uvt(e,t){e._reconstructActiveFormattingElements(),xEe(t),fU(t),t.selfClosing?e._appendElement(t,vt.SVG):e._insertElement(t,vt.SVG),t.ackSelfClosing=!0}function $Y(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,vt.HTML)}function To(e,t){switch(t.tagID){case D.I:case D.S:case D.B:case D.U:case D.EM:case D.TT:case D.BIG:case D.CODE:case D.FONT:case D.SMALL:case D.STRIKE:case D.STRONG:{Kyt(e,t);break}case D.A:{Wyt(e,t);break}case D.H1:case D.H2:case D.H3:case D.H4:case D.H5:case D.H6:{Uyt(e,t);break}case D.P:case D.DL:case D.OL:case D.UL:case D.DIV:case D.DIR:case D.NAV:case D.MAIN:case D.MENU:case D.ASIDE:case D.CENTER:case D.FIGURE:case D.FOOTER:case D.HEADER:case D.HGROUP:case D.DIALOG:case D.DETAILS:case D.ADDRESS:case D.ARTICLE:case D.SEARCH:case D.SECTION:case D.SUMMARY:case D.FIELDSET:case D.BLOCKQUOTE:case D.FIGCAPTION:{Byt(e,t);break}case D.LI:case D.DD:case D.DT:{Vyt(e,t);break}case D.BR:case D.IMG:case D.WBR:case D.AREA:case D.EMBED:case D.KEYGEN:{kEe(e,t);break}case D.HR:{evt(e,t);break}case D.RB:case D.RTC:{ovt(e,t);break}case D.RT:case D.RP:{lvt(e,t);break}case D.PRE:case D.LISTING:{Qyt(e,t);break}case D.XMP:{ivt(e,t);break}case D.SVG:{uvt(e,t);break}case D.HTML:{Lyt(e,t);break}case D.BASE:case D.LINK:case D.META:case D.STYLE:case D.TITLE:case D.SCRIPT:case D.BGSOUND:case D.BASEFONT:case D.TEMPLATE:{Xu(e,t);break}case D.BODY:{$yt(e,t);break}case D.FORM:{zyt(e,t);break}case D.NOBR:{Gyt(e,t);break}case D.MATH:{cvt(e,t);break}case D.TABLE:{Yyt(e,t);break}case D.INPUT:{Zyt(e,t);break}case D.PARAM:case D.TRACK:case D.SOURCE:{Jyt(e,t);break}case D.IMAGE:{tvt(e,t);break}case D.BUTTON:{qyt(e,t);break}case D.APPLET:case D.OBJECT:case D.MARQUEE:{Xyt(e,t);break}case D.IFRAME:{rvt(e,t);break}case D.SELECT:{svt(e,t);break}case D.OPTION:case D.OPTGROUP:{avt(e,t);break}case D.NOEMBED:case D.NOFRAMES:{LY(e,t);break}case D.FRAMESET:{Fyt(e,t);break}case D.TEXTAREA:{nvt(e,t);break}case D.NOSCRIPT:{e.options.scriptingEnabled?LY(e,t):$Y(e,t);break}case D.PLAINTEXT:{Hyt(e,t);break}case D.COL:case D.TH:case D.TD:case D.TR:case D.HEAD:case D.FRAME:case D.TBODY:case D.TFOOT:case D.THEAD:case D.CAPTION:case D.COLGROUP:break;default:$Y(e,t)}}function dvt(e,t){if(e.openElements.hasInScope(D.BODY)&&(e.insertionMode=ge.AFTER_BODY,e.options.sourceCodeLocationInfo)){const n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e._setEndLocation(n,t)}}function fvt(e,t){e.openElements.hasInScope(D.BODY)&&(e.insertionMode=ge.AFTER_BODY,DEe(e,t))}function hvt(e,t){const n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n))}function pvt(e){const t=e.openElements.tmplCount>0,{formElement:n}=e;t||(e.formElement=null),(n||t)&&e.openElements.hasInScope(D.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(D.FORM):n&&e.openElements.remove(n))}function mvt(e){e.openElements.hasInButtonScope(D.P)||e._insertFakeElement(Ue.P,D.P),e._closePElement()}function gvt(e){e.openElements.hasInListItemScope(D.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(D.LI),e.openElements.popUntilTagNamePopped(D.LI))}function bvt(e,t){const n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilTagNamePopped(n))}function yvt(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped())}function vvt(e,t){const n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker())}function xvt(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(Ue.BR,D.BR),e.openElements.pop(),e.framesetOk=!1}function CEe(e,t){const n=t.tagName,i=t.tagID;for(let r=e.openElements.stackTop;r>0;r--){const s=e.openElements.items[r],a=e.openElements.tagIDs[r];if(i===a&&(i!==D.UNKNOWN||e.treeAdapter.getTagName(s)===n)){e.openElements.generateImpliedEndTagsWithExclusion(i),e.openElements.stackTop>=r&&e.openElements.shortenToLength(r);break}if(e._isSpecialElement(s,a))break}}function oI(e,t){switch(t.tagID){case D.A:case D.B:case D.I:case D.S:case D.U:case D.EM:case D.TT:case D.BIG:case D.CODE:case D.FONT:case D.NOBR:case D.SMALL:case D.STRIKE:case D.STRONG:{hU(e,t);break}case D.P:{mvt(e);break}case D.DL:case D.UL:case D.OL:case D.DIR:case D.DIV:case D.NAV:case D.PRE:case D.MAIN:case D.MENU:case D.ASIDE:case D.BUTTON:case D.CENTER:case D.FIGURE:case D.FOOTER:case D.HEADER:case D.HGROUP:case D.DIALOG:case D.ADDRESS:case D.ARTICLE:case D.DETAILS:case D.SEARCH:case D.SECTION:case D.SUMMARY:case D.LISTING:case D.FIELDSET:case D.BLOCKQUOTE:case D.FIGCAPTION:{hvt(e,t);break}case D.LI:{gvt(e);break}case D.DD:case D.DT:{bvt(e,t);break}case D.H1:case D.H2:case D.H3:case D.H4:case D.H5:case D.H6:{yvt(e);break}case D.BR:{xvt(e);break}case D.BODY:{dvt(e,t);break}case D.HTML:{fvt(e,t);break}case D.FORM:{pvt(e);break}case D.APPLET:case D.OBJECT:case D.MARQUEE:{vvt(e,t);break}case D.TEMPLATE:{c0(e,t);break}default:CEe(e,t)}}function TEe(e,t){e.tmplInsertionModeStack.length>0?PEe(e,t):pU(e,t)}function wvt(e,t){var n;t.tagID===D.SCRIPT&&((n=e.scriptHandler)===null||n===void 0||n.call(e,e.openElements.current)),e.openElements.pop(),e.insertionMode=e.originalInsertionMode}function Ovt(e,t){e._err(t,tt.eofInElementThatCanContainOnlyText),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e.onEof(t)}function VM(e,t){if(e.openElements.currentTagId!==void 0&&wEe.has(e.openElements.currentTagId))switch(e.pendingCharacterTokens.length=0,e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=ge.IN_TABLE_TEXT,t.type){case mi.CHARACTER:{_Ee(e,t);break}case mi.WHITESPACE_CHARACTER:{AEe(e,t);break}}else EE(e,t)}function Svt(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,vt.HTML),e.insertionMode=ge.IN_CAPTION}function kvt(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,vt.HTML),e.insertionMode=ge.IN_COLUMN_GROUP}function Evt(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(Ue.COLGROUP,D.COLGROUP),e.insertionMode=ge.IN_COLUMN_GROUP,mU(e,t)}function Cvt(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,vt.HTML),e.insertionMode=ge.IN_TABLE_BODY}function Tvt(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(Ue.TBODY,D.TBODY),e.insertionMode=ge.IN_TABLE_BODY,lI(e,t)}function Avt(e,t){e.openElements.hasInTableScope(D.TABLE)&&(e.openElements.popUntilTagNamePopped(D.TABLE),e._resetInsertionMode(),e._processStartTag(t))}function _vt(e,t){EEe(t)?e._appendElement(t,vt.HTML):EE(e,t),t.ackSelfClosing=!0}function Nvt(e,t){!e.formElement&&e.openElements.tmplCount===0&&(e._insertElement(t,vt.HTML),e.formElement=e.openElements.current,e.openElements.pop())}function sx(e,t){switch(t.tagID){case D.TD:case D.TH:case D.TR:{Tvt(e,t);break}case D.STYLE:case D.SCRIPT:case D.TEMPLATE:{Xu(e,t);break}case D.COL:{Evt(e,t);break}case D.FORM:{Nvt(e,t);break}case D.TABLE:{Avt(e,t);break}case D.TBODY:case D.TFOOT:case D.THEAD:{Cvt(e,t);break}case D.INPUT:{_vt(e,t);break}case D.CAPTION:{Svt(e,t);break}case D.COLGROUP:{kvt(e,t);break}default:EE(e,t)}}function KS(e,t){switch(t.tagID){case D.TABLE:{e.openElements.hasInTableScope(D.TABLE)&&(e.openElements.popUntilTagNamePopped(D.TABLE),e._resetInsertionMode());break}case D.TEMPLATE:{c0(e,t);break}case D.BODY:case D.CAPTION:case D.COL:case D.COLGROUP:case D.HTML:case D.TBODY:case D.TD:case D.TFOOT:case D.TH:case D.THEAD:case D.TR:break;default:EE(e,t)}}function EE(e,t){const n=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,aI(e,t),e.fosterParentingEnabled=n}function AEe(e,t){e.pendingCharacterTokens.push(t)}function _Ee(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0}function Z1(e,t){let n=0;if(e.hasNonWhitespacePendingCharacterToken)for(;n0&&e.openElements.currentTagId===D.OPTION&&e.openElements.tagIDs[e.openElements.stackTop-1]===D.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagId===D.OPTGROUP&&e.openElements.pop();break}case D.OPTION:{e.openElements.currentTagId===D.OPTION&&e.openElements.pop();break}case D.SELECT:{e.openElements.hasInSelectScope(D.SELECT)&&(e.openElements.popUntilTagNamePopped(D.SELECT),e._resetInsertionMode());break}case D.TEMPLATE:{c0(e,t);break}}}function Mvt(e,t){const n=t.tagID;n===D.CAPTION||n===D.TABLE||n===D.TBODY||n===D.TFOOT||n===D.THEAD||n===D.TR||n===D.TD||n===D.TH?(e.openElements.popUntilTagNamePopped(D.SELECT),e._resetInsertionMode(),e._processStartTag(t)):REe(e,t)}function Lvt(e,t){const n=t.tagID;n===D.CAPTION||n===D.TABLE||n===D.TBODY||n===D.TFOOT||n===D.THEAD||n===D.TR||n===D.TD||n===D.TH?e.openElements.hasInTableScope(n)&&(e.openElements.popUntilTagNamePopped(D.SELECT),e._resetInsertionMode(),e.onEndTag(t)):IEe(e,t)}function $vt(e,t){switch(t.tagID){case D.BASE:case D.BASEFONT:case D.BGSOUND:case D.LINK:case D.META:case D.NOFRAMES:case D.SCRIPT:case D.STYLE:case D.TEMPLATE:case D.TITLE:{Xu(e,t);break}case D.CAPTION:case D.COLGROUP:case D.TBODY:case D.TFOOT:case D.THEAD:{e.tmplInsertionModeStack[0]=ge.IN_TABLE,e.insertionMode=ge.IN_TABLE,sx(e,t);break}case D.COL:{e.tmplInsertionModeStack[0]=ge.IN_COLUMN_GROUP,e.insertionMode=ge.IN_COLUMN_GROUP,mU(e,t);break}case D.TR:{e.tmplInsertionModeStack[0]=ge.IN_TABLE_BODY,e.insertionMode=ge.IN_TABLE_BODY,lI(e,t);break}case D.TD:case D.TH:{e.tmplInsertionModeStack[0]=ge.IN_ROW,e.insertionMode=ge.IN_ROW,cI(e,t);break}default:e.tmplInsertionModeStack[0]=ge.IN_BODY,e.insertionMode=ge.IN_BODY,To(e,t)}}function Fvt(e,t){t.tagID===D.TEMPLATE&&c0(e,t)}function PEe(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(D.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode(),e.onEof(t)):pU(e,t)}function Bvt(e,t){t.tagID===D.HTML?To(e,t):SN(e,t)}function DEe(e,t){var n;if(t.tagID===D.HTML){if(e.fragmentContext||(e.insertionMode=ge.AFTER_AFTER_BODY),e.options.sourceCodeLocationInfo&&e.openElements.tagIDs[0]===D.HTML){e._setEndLocation(e.openElements.items[0],t);const i=e.openElements.items[1];i&&!(!((n=e.treeAdapter.getNodeSourceCodeLocation(i))===null||n===void 0)&&n.endTag)&&e._setEndLocation(i,t)}}else SN(e,t)}function SN(e,t){e.insertionMode=ge.IN_BODY,aI(e,t)}function Uvt(e,t){switch(t.tagID){case D.HTML:{To(e,t);break}case D.FRAMESET:{e._insertElement(t,vt.HTML);break}case D.FRAME:{e._appendElement(t,vt.HTML),t.ackSelfClosing=!0;break}case D.NOFRAMES:{Xu(e,t);break}}}function Qvt(e,t){t.tagID===D.FRAMESET&&!e.openElements.isRootHtmlElementCurrent()&&(e.openElements.pop(),!e.fragmentContext&&e.openElements.currentTagId!==D.FRAMESET&&(e.insertionMode=ge.AFTER_FRAMESET))}function zvt(e,t){switch(t.tagID){case D.HTML:{To(e,t);break}case D.NOFRAMES:{Xu(e,t);break}}}function Vvt(e,t){t.tagID===D.HTML&&(e.insertionMode=ge.AFTER_AFTER_FRAMESET)}function Hvt(e,t){t.tagID===D.HTML?To(e,t):C2(e,t)}function C2(e,t){e.insertionMode=ge.IN_BODY,aI(e,t)}function qvt(e,t){switch(t.tagID){case D.HTML:{To(e,t);break}case D.NOFRAMES:{Xu(e,t);break}}}function Wvt(e,t){t.chars=Jr,e._insertCharacters(t)}function Kvt(e,t){e._insertCharacters(t),e.framesetOk=!1}function MEe(e){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==vt.HTML&&e.openElements.currentTagId!==void 0&&!e._isIntegrationPoint(e.openElements.currentTagId,e.openElements.current);)e.openElements.pop()}function Gvt(e,t){if(uyt(t))MEe(e),e._startTagOutsideForeignContent(t);else{const n=e._getAdjustedCurrentElement(),i=e.treeAdapter.getNamespaceURI(n);i===vt.MATHML?vEe(t):i===vt.SVG&&(dyt(t),xEe(t)),fU(t),t.selfClosing?e._appendElement(t,i):e._insertElement(t,i),t.ackSelfClosing=!0}}function Xvt(e,t){if(t.tagID===D.P||t.tagID===D.BR){MEe(e),e._endTagOutsideForeignContent(t);return}for(let n=e.openElements.stackTop;n>0;n--){const i=e.openElements.items[n];if(e.treeAdapter.getNamespaceURI(i)===vt.HTML){e._endTagOutsideForeignContent(t);break}const r=e.treeAdapter.getTagName(i);if(r.toLowerCase()===t.tagName){t.tagName=r,e.openElements.shortenToLength(n);break}}}Ue.AREA,Ue.BASE,Ue.BASEFONT,Ue.BGSOUND,Ue.BR,Ue.COL,Ue.EMBED,Ue.FRAME,Ue.HR,Ue.IMG,Ue.INPUT,Ue.KEYGEN,Ue.LINK,Ue.META,Ue.PARAM,Ue.SOURCE,Ue.TRACK,Ue.WBR;const Yvt=/<(\/?)(iframe|noembed|noframes|plaintext|script|style|textarea|title|xmp)(?=[\t\n\f\r />])/gi,Zvt=new Set(["mdxFlowExpression","mdxJsxFlowElement","mdxJsxTextElement","mdxTextExpression","mdxjsEsm"]),FY={sourceCodeLocationInfo:!0,scriptingEnabled:!1};function LEe(e,t){const n=lxt(e),i=JSe("type",{handlers:{root:Jvt,element:ext,text:txt,comment:FEe,doctype:nxt,raw:rxt},unknown:sxt}),r={parser:n?new MY(FY):MY.getFragmentParser(void 0,FY),handle(l){i(l,r)},stitches:!1,options:t||{}};i(e,r),e1(r,Jd());const s=n?r.parser.document:r.parser.getFragment(),a=c0t(s,{file:r.options.file});return r.stitches&&SE(a,"comment",function(l,c,u){const d=l;if(d.value.stitch&&u&&c!==void 0){const f=u.children;return f[c]=d.value.stitch,c}}),a.type==="root"&&a.children.length===1&&a.children[0].type===e.type?a.children[0]:a}function $Ee(e,t){let n=-1;if(e)for(;++n4&&(t.parser.tokenizer.state=0);const n={type:mi.CHARACTER,chars:e.value,location:CE(e)};e1(t,Jd(e)),t.parser.currentToken=n,t.parser._processToken(t.parser.currentToken)}function nxt(e,t){const n={type:mi.DOCTYPE,name:"html",forceQuirks:!1,publicId:"",systemId:"",location:CE(e)};e1(t,Jd(e)),t.parser.currentToken=n,t.parser._processToken(t.parser.currentToken)}function ixt(e,t){t.stitches=!0;const n=cxt(e);if("children"in e&&"children"in n){const i=LEe({type:"root",children:e.children},t.options);n.children=i.children}FEe({type:"comment",value:{stitch:n}},t)}function FEe(e,t){const n=e.value,i={type:mi.COMMENT,data:n,location:CE(e)};e1(t,Jd(e)),t.parser.currentToken=i,t.parser._processToken(t.parser.currentToken)}function rxt(e,t){if(t.parser.tokenizer.preprocessor.html="",t.parser.tokenizer.preprocessor.pos=-1,t.parser.tokenizer.preprocessor.lastGapPos=-2,t.parser.tokenizer.preprocessor.gapStack=[],t.parser.tokenizer.preprocessor.skipNextNewLine=!1,t.parser.tokenizer.preprocessor.lastChunkWritten=!1,t.parser.tokenizer.preprocessor.endOfChunkHit=!1,t.parser.tokenizer.preprocessor.isEol=!1,BEe(t,Jd(e)),t.parser.tokenizer.write(t.options.tagfilter?e.value.replace(Yvt,"<$1$2"):e.value,!1),t.parser.tokenizer._runParsingLoop(),t.parser.tokenizer.state===72||t.parser.tokenizer.state===78){t.parser.tokenizer.preprocessor.lastChunkWritten=!0;const n=t.parser.tokenizer._consume();t.parser.tokenizer._callState(n)}}function sxt(e,t){const n=e;if(t.options.passThrough&&t.options.passThrough.includes(n.type))ixt(n,t);else{let i="";throw Zvt.has(n.type)&&(i=". It looks like you are using MDX nodes with `hast-util-raw` (or `rehype-raw`). If you use this because you are using remark or rehype plugins that inject `'html'` nodes, then please raise an issue with that plugin, as its a bad and slow idea. If you use this because you are using markdown syntax, then you have to configure this utility (or plugin) to pass through these nodes (see `passThrough` in docs), but you can also migrate to use the MDX syntax"),new Error("Cannot compile `"+n.type+"` node"+i)}}function e1(e,t){BEe(e,t);const n=e.parser.tokenizer.currentCharacterToken;n&&n.location&&(n.location.endLine=e.parser.tokenizer.preprocessor.line,n.location.endCol=e.parser.tokenizer.preprocessor.col+1,n.location.endOffset=e.parser.tokenizer.preprocessor.offset+1,e.parser.currentToken=n,e.parser._processToken(e.parser.currentToken)),e.parser.tokenizer.paused=!1,e.parser.tokenizer.inLoop=!1,e.parser.tokenizer.active=!1,e.parser.tokenizer.returnState=Bs.DATA,e.parser.tokenizer.charRefCode=-1,e.parser.tokenizer.consumedAfterSnapshot=-1,e.parser.tokenizer.currentLocation=null,e.parser.tokenizer.currentCharacterToken=null,e.parser.tokenizer.currentToken=null,e.parser.tokenizer.currentAttr={name:"",value:""}}function BEe(e,t){if(t&&t.offset!==void 0){const n={startLine:t.line,startCol:t.column,startOffset:t.offset,endLine:-1,endCol:-1,endOffset:-1};e.parser.tokenizer.preprocessor.lineStartPos=-t.column+1,e.parser.tokenizer.preprocessor.droppedBufferSize=t.offset,e.parser.tokenizer.preprocessor.line=t.line,e.parser.tokenizer.currentLocation=n}}function axt(e,t){const n=e.tagName.toLowerCase();if(t.parser.tokenizer.state===Bs.PLAINTEXT)return;e1(t,Jd(e));const i=t.parser.openElements.current;let r="namespaceURI"in i?i.namespaceURI:zg.html;r===zg.html&&n==="svg"&&(r=zg.svg);const s=p0t({...e,children:[]},{space:r===zg.svg?"svg":"html"}),a={type:mi.START_TAG,tagName:n,tagID:Jx(n),selfClosing:!1,ackSelfClosing:!1,attrs:"attrs"in s?s.attrs:[],location:CE(e)};t.parser.currentToken=a,t.parser._processToken(t.parser.currentToken),t.parser.tokenizer.lastStartTagName=n}function oxt(e,t){const n=e.tagName.toLowerCase();if(!t.parser.tokenizer.inForeignNode&&O0t.includes(n)||t.parser.tokenizer.state===Bs.PLAINTEXT)return;e1(t,eI(e));const i={type:mi.END_TAG,tagName:n,tagID:Jx(n),selfClosing:!1,ackSelfClosing:!1,attrs:[],location:CE(e)};t.parser.currentToken=i,t.parser._processToken(t.parser.currentToken),n===t.parser.tokenizer.lastStartTagName&&(t.parser.tokenizer.state===Bs.RCDATA||t.parser.tokenizer.state===Bs.RAWTEXT||t.parser.tokenizer.state===Bs.SCRIPT_DATA)&&(t.parser.tokenizer.state=Bs.DATA)}function lxt(e){const t=e.type==="root"?e.children[0]:e;return!!(t&&(t.type==="doctype"||t.type==="element"&&t.tagName.toLowerCase()==="html"))}function CE(e){const t=Jd(e)||{line:void 0,column:void 0,offset:void 0},n=eI(e)||{line:void 0,column:void 0,offset:void 0};return{startLine:t.line,startCol:t.column,startOffset:t.offset,endLine:n.line,endCol:n.column,endOffset:n.offset}}function cxt(e){return"children"in e?ix({...e,children:[]}):ix(e)}function uxt(e){return function(t,n){return LEe(t,{...e,file:n})}}const dxt="modulepreload",fxt=function(e){return"/"+e},BY={},$d=function(t,n,i){let r=Promise.resolve();if(n&&n.length>0){document.getElementsByTagName("link");const a=document.querySelector("meta[property=csp-nonce]"),l=(a==null?void 0:a.nonce)||(a==null?void 0:a.getAttribute("nonce"));r=Promise.allSettled(n.map(c=>{if(c=fxt(c),c in BY)return;BY[c]=!0;const u=c.endsWith(".css"),d=u?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${c}"]${d}`))return;const f=document.createElement("link");if(f.rel=u?"stylesheet":dxt,u||(f.as="script"),f.crossOrigin="",f.href=c,l&&f.setAttribute("nonce",l),document.head.appendChild(f),u)return new Promise((h,m)=>{f.addEventListener("load",h),f.addEventListener("error",()=>m(new Error(`Unable to preload CSS for ${c}`)))})}))}function s(a){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=a,window.dispatchEvent(l),!l.defaultPrevented)throw a}return r.then(a=>{for(const l of a||[])l.status==="rejected"&&s(l.reason);return t().catch(s)})};var hxt=/[\u1680\u2000-\u200A\u202F\u205F\u3000]/,pxt=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/,mxt=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF9\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDE00-\uDE3E\uDE47\uDE50-\uDE83\uDE86-\uDE99\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/,HM={Space_Separator:hxt,ID_Start:pxt,ID_Continue:mxt},Ms={isSpaceSeparator(e){return typeof e=="string"&&HM.Space_Separator.test(e)},isIdStartChar(e){return typeof e=="string"&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e==="$"||e==="_"||HM.ID_Start.test(e))},isIdContinueChar(e){return typeof e=="string"&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e>="0"&&e<="9"||e==="$"||e==="_"||e==="‌"||e==="‍"||HM.ID_Continue.test(e))},isDigit(e){return typeof e=="string"&&/[0-9]/.test(e)},isHexDigit(e){return typeof e=="string"&&/[0-9A-Fa-f]/.test(e)}};let Y6,Uo,Uf,kN,Cm,Lu,Ca,gU,$O;var gxt=function(t,n){Y6=String(t),Uo="start",Uf=[],kN=0,Cm=1,Lu=0,Ca=void 0,gU=void 0,$O=void 0;do Ca=bxt(),xxt[Uo]();while(Ca.type!=="eof");return typeof n=="function"?Z6({"":$O},"",n):$O};function Z6(e,t,n){const i=e[t];if(i!=null&&typeof i=="object")if(Array.isArray(i))for(let r=0;r0;){const n=oh();if(!Ms.isHexDigit(n))throw qr(mt());e+=mt()}return String.fromCodePoint(parseInt(e,16))}const xxt={start(){if(Ca.type==="eof")throw ug();qM()},beforePropertyName(){switch(Ca.type){case"identifier":case"string":gU=Ca.value,Uo="afterPropertyName";return;case"punctuator":LT();return;case"eof":throw ug()}},afterPropertyName(){if(Ca.type==="eof")throw ug();Uo="beforePropertyValue"},beforePropertyValue(){if(Ca.type==="eof")throw ug();qM()},beforeArrayValue(){if(Ca.type==="eof")throw ug();if(Ca.type==="punctuator"&&Ca.value==="]"){LT();return}qM()},afterPropertyValue(){if(Ca.type==="eof")throw ug();switch(Ca.value){case",":Uo="beforePropertyName";return;case"}":LT()}},afterArrayValue(){if(Ca.type==="eof")throw ug();switch(Ca.value){case",":Uo="beforeArrayValue";return;case"]":LT()}},end(){}};function qM(){let e;switch(Ca.type){case"punctuator":switch(Ca.value){case"{":e={};break;case"[":e=[];break}break;case"null":case"boolean":case"numeric":case"string":e=Ca.value;break}if($O===void 0)$O=e;else{const t=Uf[Uf.length-1];Array.isArray(t)?t.push(e):Object.defineProperty(t,gU,{value:e,writable:!0,enumerable:!0,configurable:!0})}if(e!==null&&typeof e=="object")Uf.push(e),Array.isArray(e)?Uo="beforeArrayValue":Uo="beforePropertyName";else{const t=Uf[Uf.length-1];t==null?Uo="end":Array.isArray(t)?Uo="afterArrayValue":Uo="afterPropertyValue"}}function LT(){Uf.pop();const e=Uf[Uf.length-1];e==null?Uo="end":Array.isArray(e)?Uo="afterArrayValue":Uo="afterPropertyValue"}function qr(e){return EN(e===void 0?`JSON5: invalid end of input at ${Cm}:${Lu}`:`JSON5: invalid character '${QEe(e)}' at ${Cm}:${Lu}`)}function ug(){return EN(`JSON5: invalid end of input at ${Cm}:${Lu}`)}function UY(){return Lu-=5,EN(`JSON5: invalid identifier character at ${Cm}:${Lu}`)}function wxt(e){console.warn(`JSON5: '${QEe(e)}' in strings is not valid ECMAScript; consider escaping`)}function QEe(e){const t={"'":"\\'",'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r"," ":"\\t","\v":"\\v","\0":"\\0","\u2028":"\\u2028","\u2029":"\\u2029"};if(t[e])return t[e];if(e<" "){const n=e.charCodeAt(0).toString(16);return"\\x"+("00"+n).substring(n.length)}return e}function EN(e){const t=new SyntaxError(e);return t.lineNumber=Cm,t.columnNumber=Lu,t}var Oxt=function(t,n,i){const r=[];let s="",a,l,c="",u;if(n!=null&&typeof n=="object"&&!Array.isArray(n)&&(i=n.space,u=n.quote,n=n.replacer),typeof n=="function")l=n;else if(Array.isArray(n)){a=[];for(const b of n){let v;typeof b=="string"?v=b:(typeof b=="number"||b instanceof String||b instanceof Number)&&(v=String(b)),v!==void 0&&a.indexOf(v)<0&&a.push(v)}}return i instanceof Number?i=Number(i):i instanceof String&&(i=String(i)),typeof i=="number"?i>0&&(i=Math.min(10,Math.floor(i)),c=" ".substr(0,i)):typeof i=="string"&&(c=i.substr(0,10)),d("",{"":t});function d(b,v){let y=v[b];switch(y!=null&&(typeof y.toJSON5=="function"?y=y.toJSON5(b):typeof y.toJSON=="function"&&(y=y.toJSON(b))),l&&(y=l.call(v,b,y)),y instanceof Number?y=Number(y):y instanceof String?y=String(y):y instanceof Boolean&&(y=y.valueOf()),y){case null:return"null";case!0:return"true";case!1:return"false"}if(typeof y=="string")return f(y);if(typeof y=="number")return String(y);if(typeof y=="object")return Array.isArray(y)?g(y):h(y)}function f(b){const v={"'":.1,'"':.2},y={"'":"\\'",'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r"," ":"\\t","\v":"\\v","\0":"\\0","\u2028":"\\u2028","\u2029":"\\u2029"};let x="";for(let w=0;wv[w]=0)throw TypeError("Converting circular structure to JSON5");r.push(b);let v=s;s=s+c;let y=a||Object.keys(b),x=[];for(const w of y){const k=d(w,b);if(k!==void 0){let S=m(w)+":";c!==""&&(S+=" "),S+=k,x.push(S)}}let O;if(x.length===0)O="{}";else{let w;if(c==="")w=x.join(","),O="{"+w+"}";else{let k=`, `+s;w=x.join(k),O=`{ `+s+w+`, -`+v+"}"}}return r.pop(),s=v,O}function m(b){if(b.length===0)return f(b);const v=String.fromCodePoint(b.codePointAt(0));if(!Is.isIdStartChar(v))return f(b);for(let y=v.length;y=0)throw TypeError("Converting circular structure to JSON5");r.push(b);let v=s;s=s+c;let y=[];for(let O=0;O=0)throw TypeError("Converting circular structure to JSON5");r.push(b);let v=s;s=s+c;let y=[];for(let O=0;O30)throw new Error("ECharts option nesting is too deep");if(typeof e=="number"&&!Number.isFinite(e))throw new Error("ECharts option contains a non-finite number");if(typeof e=="string"&&cxt.test(e.trim()))throw new Error("ECharts option contains an external resource");if(Array.isArray(e)){for(const n of e)wN(n,t+1);return}if(Bw(e))for(const[n,i]of Object.entries(e)){if(lxt.has(n))throw new Error("ECharts option contains an unsafe key");wN(i,t+1)}}function uxt(e){var i;const t=e.trim(),n=t.match(/^(?:(?:const|let|var)\s+)?option\s*=\s*([\s\S]*?)\s*;?$/);return((i=n==null?void 0:n[1])==null?void 0:i.trim())||t}function dxt(e,t){let n=1,i="",r=!1,s=!1,a=!1;for(let l=t+1;li+2)throw new Error("Invalid ECharts gradient argument count");const r=n.slice(0,i).map(fxt),s=n[i],a=n[i+1]??!1;if(!Array.isArray(s)||typeof a!="boolean")throw new Error("Invalid ECharts gradient data");return e==="linear"?{type:e,x:r[0],y:r[1],x2:r[2],y2:r[3],colorStops:s,global:a}:{type:e,x:r[0],y:r[1],r:r[2],colorStops:s,global:a}}function pxt(e,t){const n=/^(?:new\s+)?echarts\.graphic\.(LinearGradient|RadialGradient)\s*\(/;let i="",r=!1,s=!1,a=!1;for(let l=t;loxt)throw new Error("ECharts option is too large");const n=mxt(uxt(e));let i;try{i=NEe.parse(n)}catch(a){throw/\bfunction\s*\(|=>/.test(n)?new Error("ECharts function callbacks are not supported"):a}if(!Bw(i))throw new Error("ECharts option must be a data object");wN(i);const r={...i};r.aria={...Bw(r.aria)?r.aria:{},enabled:!0};const s=r.tooltip;return Bw(s)?r.tooltip={...s,renderMode:"richText"}:Array.isArray(s)&&(r.tooltip=s.map(a=>Bw(a)?{...a,renderMode:"richText"}:a)),t&&(r.animation=!1),r}let QM;function bxt(){return QM??(QM=Md(()=>import("../visualizations/echarts/index-CGT341lL.js"),[]).catch(e=>{throw QM=void 0,e})),QM}function yxt({source:e}){const{t}=Te("conversation"),n=p.useRef(null),[i,r]=p.useState(!1),[s,a]=p.useState("");return p.useEffect(()=>{let l=!1,c,u,d;r(!1);try{d=gxt(e,window.matchMedia("(prefers-reduced-motion: reduce)").matches),a("")}catch{a("invalid");return}return bxt().then(f=>{const h=n.current;l||!h||(c=f.init(h,void 0,{renderer:"svg"}),c.setOption(d,{notMerge:!0}),typeof ResizeObserver<"u"&&(u=new ResizeObserver(()=>c==null?void 0:c.resize()),u.observe(h)),r(!0))}).catch(()=>{c==null||c.dispose(),c=void 0,l||a("render")}),()=>{l=!0,u==null||u.disconnect(),c==null||c.dispose()}},[e]),o.jsxs("div",{className:`echarts-diagram${s?" echarts-diagram--error":""}`,role:"img","aria-label":t("visualization.echartsAria"),"aria-busy":!i&&!s,children:[o.jsx("div",{ref:n,className:"echarts-diagram__canvas",hidden:!!s}),!i&&!s?o.jsx("div",{className:"echarts-diagram__state","aria-live":"polite",children:o.jsx(xn,{duration:2.2,spread:15,children:t("visualization.rendering")})}):null,s?o.jsx("p",{className:"echarts-diagram__error",role:"alert",children:t(s==="invalid"?"visualization.invalidEcharts":"visualization.renderFailed")}):null]})}const vxt=p.memo(yxt);let IY,PY=Promise.resolve(),xxt=0;function wxt(){return IY??(IY=Md(async()=>{const{default:e}=await import("../visualizations/mermaid/mermaid.core-o4kwdQTf.js").then(t=>t.ay);return{default:e}},__vite__mapDeps([0,1])).then(({default:e})=>(e.initialize({startOnLoad:!1,securityLevel:"strict",suppressErrorRendering:!0,theme:"neutral"}),e))),IY}function Oxt(e){const t=PY.then(async()=>{const n=await wxt(),i=`mermaid-diagram-${xxt+=1}`;return n.render(i,e)});return PY=t.then(()=>{},()=>{}),t}function Sxt({source:e}){const{t}=Te("conversation"),n=p.useRef(null),[i,r]=p.useState(null),[s,a]=p.useState(!1);return p.useEffect(()=>{let l=!1;return r(null),a(!1),Oxt(e).then(c=>{l||r(c)}).catch(()=>{l||a(!0)}),()=>{l=!0}},[e]),p.useEffect(()=>{!(i!=null&&i.bindFunctions)||!n.current||i.bindFunctions(n.current)},[i]),s?o.jsx("div",{className:"mermaid-diagram mermaid-diagram--error",children:o.jsx("p",{className:"mermaid-diagram__error",role:"alert",children:t("visualization.mermaidFailed")})}):i?o.jsx("div",{ref:n,className:"mermaid-diagram",role:"img","aria-label":t("visualization.mermaidAria"),dangerouslySetInnerHTML:{__html:i.svg}}):o.jsx("div",{className:"mermaid-diagram mermaid-diagram--loading","aria-live":"polite",children:o.jsx(xn,{duration:2.2,spread:15,children:t("visualization.rendering")})})}const kxt=p.memo(Sxt),Ext="_SegmentedControl_1sl7d_1",Cxt="_SegmentedControlOption_1sl7d_140",Txt="_SegmentedControlThumb_1sl7d_219",K6={SegmentedControl:Ext,SegmentedControlOption:Cxt,SegmentedControlThumb:Txt},zc=({value:e,onChange:t,children:n,block:i,pill:r=!0,size:s="md",gutterSize:a,className:l,onClick:c,...u})=>{const d=p.useRef(null),f=p.useRef(null),h=p.useCallback(g=>{const b=d.current,v=f.current;if(!b||!v)return;const y=b==null?void 0:b.querySelector('[data-state="on"]');if(!y)return;const x=b.clientWidth;let O=Math.floor(y.clientWidth);const w=y.offsetLeft;if(x-(O+w)<2&&(O=O-1),v.style.width=`${Math.floor(O)}px`,v.style.transform=`translateX(${w}px)`,b.scrollWidth>x){const k=x*.15,S=b.scrollLeft,E=y.offsetLeft,C=E+O;(ES+x-k)&&g&&y.scrollIntoView({block:"nearest",inline:"center",behavior:"smooth"})}},[]);Eye({ref:d,onResize:()=>{const g=f.current;if(!g)return;const b=g.style.transition;g.style.transition="",h(!1),g.style.transition=b}}),p.useLayoutEffect(()=>{const g=d.current,b=f.current;!g||!b||(h(!!b.style.transition),b.style.transition||F_(()=>{b.style.transition="width 300ms var(--cubic-enter), transform 300ms var(--cubic-enter)"}))},[h,e,s,a,r]);const m=g=>{g&&t&&t(g)};return o.jsxs(EWe,{ref:d,className:pi(K6.SegmentedControl,l),type:"single",value:e,loop:!1,onValueChange:m,onClick:c,"data-block":i?"":void 0,"data-pill":r?"":void 0,"data-size":s,"data-gutter-size":a,...u,children:[o.jsx("div",{className:K6.SegmentedControlThumb,ref:f}),n]})},Axt=({children:e,...t})=>o.jsx(NWe,{className:K6.SegmentedControlOption,...t,onPointerEnter:l7,children:o.jsx("span",{className:"relative",children:e})});zc.Option=Axt;function _xt({children:e,label:t,language:n,source:i,streaming:r=!1}){const{t:s}=Te("conversation"),[a,l]=p.useState("preview"),c=r?"code":a;return o.jsxs("section",{className:"visualization-card","aria-label":s("visualization.cardAria",{label:t}),children:[o.jsx("div",{className:"visualization-card__toolbar",children:o.jsxs(zc,{className:"visualization-card__tabs",value:c,size:"sm",gutterSize:"sm",pill:!1,"aria-label":s("visualization.viewAria",{label:t}),onChange:u=>{r||l(u)},children:[o.jsx(zc.Option,{value:"preview",disabled:r,children:s("visualization.preview")}),o.jsx(zc.Option,{value:"code",children:s("visualization.code")})]})}),o.jsx("div",{className:"visualization-card__body",children:c==="code"?o.jsx("pre",{className:"visualization-card__code",children:o.jsx("code",{className:`language-${n}`,children:i})}):e})]})}const Nxt=p.memo(_xt);function jxt(e){const t=e==null?void 0:e.trim().toLowerCase();if(t==="mermaid")return"mermaid";if(t==="echart"||t==="echarts")return"echarts"}const jEe=[".mp4",".webm",".mov",".m4v",".ogg",".avi"];function X6(e){return typeof e=="string"||typeof e=="number"?String(e):Array.isArray(e)?e.map(X6).join(""):p.isValidElement(e)?X6(e.props.children):""}function Rxt(e){var i;const t=p.Children.toArray(e)[0];if(!p.isValidElement(t))return;const n=(i=t.props.className)==null?void 0:i.split(/\s+/).find(r=>r.startsWith("language-"));return jxt(n==null?void 0:n.slice(9))}function REe(e){if(!e)return!1;try{const t=e.toLowerCase();return jEe.some(n=>t.includes(n))}catch{return!1}}function Ixt(e){var i;const t=(i=e==null?void 0:e.properties)==null?void 0:i.href;if(!t)return!1;if(REe(t))return!0;const n=e==null?void 0:e.children;if(n&&Array.isArray(n)){const r=n.map(s=>(s==null?void 0:s.value)||"").join("").toLowerCase();return jEe.some(s=>r.includes(s))}return!1}function Pxt({text:e,className:t,allowRawHtml:n=!0,streaming:i=!1}){const{t:r}=Te("conversation"),[s,a]=p.useState(null),l=(d,f)=>{if(d.src)return d.src;if(f){const h=g=>{var b;if(!g)return null;if(g.type==="source"&&((b=g.properties)!=null&&b.src))return g.properties.src;if(g.children)for(const v of g.children){const y=h(v);if(y)return y}return null},m=h({children:f});if(m)return m}return""},c=d=>{try{const h=new URL(d).pathname.split("/");return h[h.length-1]||"video.mp4"}catch{return"video.mp4"}},u=d=>d?Array.isArray(d)?d.map(f=>(f==null?void 0:f.value)||"").join("")||"video":(d==null?void 0:d.value)||"video":"video";return o.jsxs("div",{className:t?`md ${t}`:"md",children:[o.jsx(Zft,{remarkPlugins:[dmt],rehypePlugins:n?[Wvt,hY]:[hY],components:{pre:({node:d,children:f,...h})=>{const m=Rxt(f);if(m==="mermaid"||m==="echarts"){const g=X6(f).replace(/\n$/,"");return o.jsx(Nxt,{label:m==="mermaid"?"Mermaid":"ECharts",language:m,source:g,streaming:i,children:m==="mermaid"?o.jsx(kxt,{source:g}):o.jsx(vxt,{source:g})})}return o.jsx("pre",{...h,children:f})},a:({node:d,...f})=>{const h=f.href;if(h&&(REe(h)||Ixt(d))){const m=h,g=u(d==null?void 0:d.children);return o.jsxs("div",{className:"video-container",children:[o.jsxs("button",{type:"button",className:"video-preview-trigger","aria-label":r("markdown.playVideo",{name:g}),onClick:()=>a({src:m,title:g}),children:[o.jsx("video",{src:m,playsInline:!0,className:"video-thumbnail",preload:"metadata"}),o.jsx("span",{className:"video-preview-hint","aria-hidden":"true",children:o.jsx(Ky,{})})]}),o.jsx("div",{className:"video-caption",children:o.jsx("a",{href:m,target:"_blank",rel:"noopener noreferrer",className:"video-link-text",children:g})})]})}return o.jsx("a",{...f,target:"_blank",rel:"noopener noreferrer"})},img:({node:d,src:f,alt:h,...m})=>{const g=o.jsx("img",{...m,src:f,alt:h??"",loading:"lazy"});return f?o.jsx(gbe,{src:f,children:o.jsxs("button",{type:"button",className:"image-preview-trigger","aria-label":r("markdown.enlargeImage",{name:h||r("markdown.image")}),children:[g,o.jsx("span",{className:"image-preview-hint","aria-hidden":"true",children:o.jsx(Ky,{})})]})}):g},video:({node:d,src:f,children:h,...m})=>{const g=l({src:f},h);return g?o.jsx("div",{className:"video-container",children:o.jsxs("button",{type:"button",className:"video-preview-trigger","aria-label":r("markdown.enlargeVideo"),onClick:()=>a({src:g}),children:[o.jsx("video",{src:g,...m,playsInline:!0,className:"video-thumbnail",children:h}),o.jsx("span",{className:"video-preview-hint","aria-hidden":"true",children:o.jsx(Ky,{})})]})}):o.jsx("video",{src:f,controls:!0,playsInline:!0,className:"video-inline",...m,children:h})}},children:e}),s&&o.jsx("div",{className:"video-viewer-backdrop",role:"dialog","aria-modal":"true","aria-label":r("markdown.videoPreview"),onClick:()=>a(null),children:o.jsxs("div",{className:"video-viewer",onClick:d=>d.stopPropagation(),children:[o.jsxs("div",{className:"video-viewer-header",children:[o.jsx("div",{className:"video-viewer-title",children:s.title||c(s.src)}),o.jsxs("nav",{className:"video-viewer-nav",children:[o.jsx("a",{href:s.src,download:s.title||c(s.src),"aria-label":r("markdown.downloadVideo"),title:r("markdown.downloadVideo"),className:"video-viewer-download",children:o.jsx(Yj,{})}),o.jsx("button",{type:"button",className:"video-viewer-close","aria-label":r("markdown.close"),onClick:()=>a(null),children:o.jsx(Ba,{})})]})]}),o.jsx("div",{className:"video-viewer-body",children:o.jsx("video",{src:s.src,controls:!0,autoPlay:!0,playsInline:!0,className:"video-fullscreen"})})]})})]})}const Bu=p.memo(Pxt);function zM(e){return(e==null?void 0:e.trim())||Um("resourceMetadata.unknownSource")}function IEe(e){return(e==null?void 0:e.trim())||Um("resourceMetadata.unknownCreator")}function Dxt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5 5.5A2.5 2.5 0 0 1 7.5 3H19v16H7.5A2.5 2.5 0 0 0 5 21.5v-16Z"}),o.jsx("path",{d:"M5 18.5A2.5 2.5 0 0 1 7.5 16H19"}),o.jsx("path",{d:"M9 7h6M9 10h4"})]})}function Mxt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M6 3h8l4 4v14H6V3Z"}),o.jsx("path",{d:"M14 3v5h5M9 12h6M9 16h6"})]})}function Lxt(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m7 7 10 10M17 7 7 17"})})}function $xt(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"M12 5v14M5 12h14"})})}function SE({title:e,children:t,onClose:n,busy:i=!1,className:r=""}){const{t:s}=Te("ui"),a=p.useId(),l=p.useRef(null),c=p.useRef(null),u=p.useRef(i),d=p.useRef(n);return p.useEffect(()=>{u.current=i,d.current=n},[i,n]),p.useEffect(()=>{var g;const f=document.activeElement instanceof HTMLElement?document.activeElement:null,h=document.body.style.overflow;document.body.style.overflow="hidden",(g=l.current)==null||g.focus();const m=b=>{if(b.key==="Escape"&&!u.current){d.current();return}if(b.key!=="Tab")return;const v=c.current;if(!v)return;const y=Array.from(v.querySelectorAll('button:not([disabled]), input:not([disabled]), textarea:not([disabled]), select:not([disabled]), a[href], audio[controls], video[controls], iframe, [tabindex]:not([tabindex="-1"])')).filter(w=>w.getClientRects().length>0);if(y.length===0){b.preventDefault();return}const x=y[0],O=y[y.length-1];b.shiftKey&&(document.activeElement===x||!v.contains(document.activeElement))?(b.preventDefault(),O.focus()):!b.shiftKey&&(document.activeElement===O||!v.contains(document.activeElement))&&(b.preventDefault(),x.focus())};return window.addEventListener("keydown",m),()=>{window.removeEventListener("keydown",m),document.body.style.overflow=h,f!=null&&f.isConnected&&f.focus()}},[]),Li.createPortal(o.jsx("div",{className:"knowledge-dialog-backdrop",onMouseDown:f=>{f.target===f.currentTarget&&!i&&n()},children:o.jsxs("section",{ref:c,className:`knowledge-dialog${r?` ${r}`:""}`,role:"dialog","aria-modal":"true","aria-labelledby":a,"aria-busy":i||void 0,children:[o.jsxs("header",{className:"knowledge-dialog__header",children:[o.jsx("h2",{id:a,children:e}),o.jsx("button",{ref:l,type:"button",onClick:n,disabled:i,"aria-label":s("common.close"),children:o.jsx(Lxt,{})})]}),t]})}),document.body)}function HS({message:e}){return e?o.jsx("div",{className:"knowledge-form-error",role:"alert",children:e}):null}function Y6(e){return e instanceof DOMException&&e.name==="AbortError"}function Fxt(e,t){if(!e)return"";const n=Date.parse(e);return Number.isFinite(n)?new Intl.DateTimeFormat(t,{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"}).format(n):e}const PEe=[".jpg",".jpeg",".png"].join(","),Bxt=new Set(PEe.split(",")),DEe=[".pdf",".pptx",".docx",".xlsx",".txt"].join(","),Uxt=new Set(DEe.split(",")),Qxt=200*1024*1024;function Z6(e){const t=e.lastIndexOf(".");return t<0?"":e.slice(t).toLocaleLowerCase()}function zxt(e,t,n){return e.size>Qxt?n("knowledge.errors.fileTooLarge"):t==="image"?Bxt.has(Z6(e.name))?"":n("knowledge.errors.invalidImageType"):Uxt.has(Z6(e.name))?"":n("knowledge.errors.invalidDocumentType")}function fU(e){return e<=0?"-":e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`}function J6(e){var r;const t=e.type.trim().replace(/^\./,"");if(t)return t.toUpperCase();const n=e.name.trim(),i=n.includes(".")?(r=n.split(".").pop())==null?void 0:r.trim():"";return i?i.toUpperCase():"-"}function Vxt({region:e,onClose:t,onCreated:n}){const{t:i}=Te("ui"),[r,s]=p.useState(""),[a,l]=p.useState(""),[c,u]=p.useState(!1),[d,f]=p.useState(!1),[h,m]=p.useState(""),g=r.trim(),b=!!(g&&!/^[A-Za-z][A-Za-z0-9_]{0,47}$/.test(g)),v=async y=>{if(y.preventDefault(),u(!0),!g||b)return;f(!0),m("");const x={name:g,description:a.trim()||void 0,region:e};try{n(await flt(x))}catch(O){m(ho(O,i("knowledge.errors.createBase")))}finally{f(!1)}};return o.jsx(SE,{title:i("knowledge.createBase"),onClose:t,busy:d,children:o.jsxs("form",{onSubmit:y=>void v(y),children:[o.jsxs("div",{className:"knowledge-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:i("common.name")}),o.jsx("input",{autoFocus:!0,value:r,maxLength:48,"aria-invalid":c&&b||void 0,"aria-describedby":"knowledge-name-help",onBlur:()=>u(!0),onChange:y=>s(y.target.value)})]}),o.jsx("p",{id:"knowledge-name-help",className:`knowledge-dialog__note${c&&b?" is-error":""}`,role:c&&b?"alert":void 0,children:i(c&&b?"knowledge.invalidName":"knowledge.nameHelp")}),o.jsxs("label",{children:[o.jsx("span",{children:i("knowledge.optionalDescription")}),o.jsx("textarea",{value:a,maxLength:80,onChange:y=>l(y.target.value)})]}),o.jsx(HS,{message:h})]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",onClick:t,disabled:d,children:i("common.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:d||!g||b,children:i(d?"common.creating":"common.create")})]})]})})}function Hxt({item:e,onClose:t,onUpdated:n}){const{t:i}=Te("ui"),[r,s]=p.useState(e.description),[a,l]=p.useState(!1),[c,u]=p.useState(""),d=async f=>{f.preventDefault(),l(!0),u("");try{n(await hlt(e.id,e.region,{description:r.trim()}))}catch(h){u(ho(h,i("knowledge.errors.updateBase")))}finally{l(!1)}};return o.jsx(SE,{title:i("knowledge.editBase"),onClose:t,busy:a,children:o.jsxs("form",{onSubmit:f=>void d(f),children:[o.jsxs("div",{className:"knowledge-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:i("common.name")}),o.jsx("input",{value:e.name,disabled:!0})]}),o.jsxs("label",{children:[o.jsx("span",{children:i("common.description")}),o.jsx("textarea",{autoFocus:!0,value:r,maxLength:80,onChange:f=>s(f.target.value)})]}),o.jsx("p",{className:"knowledge-dialog__note",children:i("knowledge.descriptionOnly")}),o.jsx(HS,{message:c})]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",onClick:t,disabled:a,children:i("common.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:a,children:i(a?"common.saving":"common.save")})]})]})})}function MEe(e,t){if(!e.trim())return{};const n=JSON.parse(e);if(!n||Array.isArray(n)||typeof n!="object")throw new Error(t);return n}function qxt({base:e,onClose:t,onCreated:n,onAssociationInvalid:i}){const{t:r}=Te("ui"),[s,a]=p.useState("document"),[l,c]=p.useState(""),[u,d]=p.useState(""),[f,h]=p.useState(""),[m,g]=p.useState(null),[b,v]=p.useState(!1),[y,x]=p.useState("{}"),[O,w]=p.useState(""),[k,S]=p.useState(""),[E,C]=p.useState(null),N=p.useRef(null),_=p.useRef(null),j=p.useRef(null),A=p.useRef(0),F=!!O;p.useEffect(()=>{var M;E&&!F&&((M=j.current)==null||M.focus())},[F,E]);const T=M=>{F||M===s||(a(M),g(null),h(""),c(""),d(""),S(""),C(null),v(!1),A.current=0,N.current&&(N.current.value=""))},P=M=>{if(!M||s==="web")return;const U=zxt(M,s,r);if(U){g(null),c(""),d(""),S(U);return}g(M),S(""),c(M.name.replace(/\.[^.]+$/,"")),d(Z6(M.name).slice(1))},R=async M=>{if(M.preventDefault(),s==="web"?!f.trim():!m)return;let U;try{U=MEe(y,r("knowledge.errors.metadataObject"))}catch(I){S(ho(I,r("knowledge.errors.metadataFormat")));return}w(s==="web"?E?"save":"preview":"upload"),S("");try{if(s==="web")if(E){const I={sourceType:"url",metadata:E.metadata,url:E.preview.url,sourceTitle:E.preview.name,sourceMarkdown:E.preview.sourceMarkdown};await blt(e.id,e.region,I),n()}else{const I=await ylt(e.id,e.region,{url:f.trim()});if(!I.sourceMarkdown.trim())throw new Error(r("knowledge.errors.noWebPreview"));C({preview:I,metadata:U})}else m&&(await vlt(e.id,e.region,{file:m,name:l.trim()||void 0,documentType:u.trim()||void 0,metadata:U}),n())}catch(I){I instanceof HR&&I.errorCode===KOe?i(I):S(ho(I,r(s==="web"?E?"knowledge.errors.addWeb":"knowledge.errors.previewWeb":"knowledge.errors.uploadFile")))}finally{w("")}},L=()=>{F||(C(null),S(""),requestAnimationFrame(()=>{var M;return(M=_.current)==null?void 0:M.focus()}))};return o.jsx(SE,{title:r(E?"knowledge.previewWeb":"knowledge.addData"),onClose:t,busy:F,className:E?"knowledge-dialog--preview knowledge-dialog--web-confirm":"",children:o.jsx("form",{onSubmit:M=>void R(M),children:E?o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:"knowledge-preview knowledge-web-preview",children:[o.jsxs("div",{className:"knowledge-preview__meta",children:[o.jsx("strong",{title:E.preview.name,children:E.preview.name}),o.jsx("a",{href:E.preview.url,target:"_blank",rel:"noopener noreferrer",children:r("knowledge.openOriginalWeb")})]}),o.jsx("div",{className:"knowledge-preview__body","aria-live":"polite",children:o.jsx("div",{className:"knowledge-preview__markdown-shell",children:o.jsx(Bu,{text:E.preview.sourceMarkdown,allowRawHtml:!1,className:"knowledge-preview__markdown"})})}),k?o.jsx("div",{className:"knowledge-web-preview__error",children:o.jsx(HS,{message:k})}):null]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",className:"is-back",onClick:L,disabled:F,children:r("knowledge.backToEdit")}),o.jsx("button",{type:"button",onClick:t,disabled:F,children:r("common.cancel")}),o.jsx("button",{ref:j,type:"submit",className:"is-primary",disabled:F,children:r(O==="save"?"common.adding":"knowledge.confirmAdd")})]})]}):o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:"knowledge-dialog__body",children:[o.jsx("div",{className:"knowledge-source-tabs",role:"tablist","aria-label":r("knowledge.source"),children:[["image",r("knowledge.image")],["document",r("knowledge.documentFile")],["web",r("knowledge.webPage")]].map(([M,U])=>o.jsx("button",{type:"button",role:"tab",id:`knowledge-source-${M}-tab`,"aria-controls":`knowledge-source-${M}-panel`,"aria-selected":s===M,tabIndex:s===M?0:-1,className:s===M?"is-active":"",disabled:F,onClick:()=>T(M),onKeyDown:I=>{const H=["image","document","web"];if(!["ArrowLeft","ArrowRight","Home","End"].includes(I.key))return;I.preventDefault();const K=H.indexOf(M),Q=I.key==="Home"?H[0]:I.key==="End"?H[H.length-1]:H[(K+(I.key==="ArrowRight"?1:-1)+H.length)%H.length];T(Q),requestAnimationFrame(()=>{var q;return(q=document.getElementById(`knowledge-source-${Q}-tab`))==null?void 0:q.focus()})},children:U},M))}),o.jsx("div",{id:`knowledge-source-${s}-panel`,className:"knowledge-source-panel",role:"tabpanel","aria-labelledby":`knowledge-source-${s}-tab`,children:s==="web"?o.jsxs(o.Fragment,{children:[o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.webUrl")}),o.jsx("input",{ref:_,autoFocus:!0,type:"url",value:f,disabled:F,onChange:M=>{h(M.target.value),S("")},placeholder:"https://example.com/article"})]}),o.jsx("div",{className:"knowledge-upload-status",role:"status","aria-live":"polite",children:O==="preview"?o.jsx(xn,{children:r("knowledge.generatingWebPreview")}):null})]}):o.jsxs(o.Fragment,{children:[o.jsx("input",{ref:N,className:"knowledge-upload-input",type:"file","aria-label":r("knowledge.selectFile"),accept:s==="image"?PEe:DEe,disabled:F,onChange:M=>{var U;P(((U=M.currentTarget.files)==null?void 0:U[0])??null),M.currentTarget.value=""}}),o.jsxs("button",{type:"button",className:`knowledge-upload-dropzone${b?" is-dragging":""}${m?" is-ready":""}`,disabled:F,onClick:()=>{var M;return(M=N.current)==null?void 0:M.click()},onDragEnter:M=>{M.preventDefault(),!F&&(A.current+=1,v(!0))},onDragOver:M=>{M.preventDefault(),F||(M.dataTransfer.dropEffect="copy")},onDragLeave:M=>{M.preventDefault(),A.current=Math.max(0,A.current-1),A.current===0&&v(!1)},onDrop:M=>{var U;M.preventDefault(),A.current=0,v(!1),F||P(((U=M.dataTransfer.files)==null?void 0:U[0])??null)},children:[o.jsx("strong",{children:m?m.name:r("knowledge.selectOrDropFile")}),o.jsx("span",{children:m?r("knowledge.selectedFile",{size:fU(m.size)}):r(s==="image"?"knowledge.imageFileHelp":"knowledge.documentFileHelp")})]}),o.jsx("div",{className:"knowledge-upload-status",role:"status","aria-live":"polite",children:F?o.jsx(xn,{children:r("knowledge.uploadingFile")}):null})]})}),s!=="web"?o.jsxs("div",{className:"knowledge-dialog__fields",children:[o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.optionalName")}),o.jsx("input",{value:l,disabled:F,maxLength:256,onChange:M=>c(M.target.value)})]}),o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.optionalType")}),o.jsx("input",{value:u,disabled:F,maxLength:64,onChange:M=>d(M.target.value),placeholder:"pdf, docx, png"})]})]}):null,o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.metadataJson")}),o.jsx("textarea",{className:"is-code",value:y,disabled:F,onChange:M=>x(M.target.value),spellCheck:!1})]}),o.jsx(HS,{message:k})]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",onClick:t,disabled:F,children:r("common.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:F||(s==="web"?!f.trim():!m),children:r(F?s==="web"?"common.generating":"common.uploading":s==="web"?"knowledge.generatePreview":"knowledge.uploadFile")})]})]})})})}function Wxt({base:e,item:t,onClose:n,onUpdated:i}){const{t:r}=Te("ui"),[s,a]=p.useState(()=>JSON.stringify(t.metadata??{},null,2)),[l,c]=p.useState(!1),[u,d]=p.useState(""),f=async h=>{h.preventDefault();let m;try{m=MEe(s,r("knowledge.errors.metadataObject"))}catch(g){d(ho(g,r("knowledge.errors.metadataFormat")));return}c(!0),d("");try{i(await xlt(e.id,t.id,e.region,{metadata:m}))}catch(g){d(ho(g,r("knowledge.errors.updateDocument")))}finally{c(!1)}};return o.jsx(SE,{title:r("knowledge.editMetadata"),onClose:n,busy:l,children:o.jsxs("form",{onSubmit:h=>void f(h),children:[o.jsxs("div",{className:"knowledge-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.knowledge")}),o.jsx("input",{value:t.name||t.id,disabled:!0})]}),o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.metadataJson")}),o.jsx("textarea",{autoFocus:!0,className:"is-code knowledge-metadata-editor",value:s,onChange:h=>a(h.target.value),spellCheck:!1})]}),o.jsx(HS,{message:u})]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",onClick:n,disabled:l,children:r("common.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:l,children:r(l?"common.saving":"common.save")})]})]})})}const LEe=new Set(["avif","bmp","gif","jpeg","jpg","png","svg","webp"]),$Ee=new Set(["aac","flac","m4a","mp3","ogg","wav","webm"]),FEe=new Set(["m4v","mov","mp4","mpeg","mpg","ogg","webm"]),Gxt=new Set(["pdf"]),Kxt=new Set(["doc","docx","ppt","pptx","xls","xlsx"]),Xxt=new Set(["creating","indexing","pending","processing","queued","submitted"]),Yxt=new Set(["error","failed","unavailable"]);function DY(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:{}}function DT(e){if(e==null||e==="")return"-";if(["string","number","boolean"].includes(typeof e))return String(e);try{return JSON.stringify(e)}catch{return String(e)}}function Zxt(e,t){if(Array.isArray(e)){if(e.length===0)return null;const r=e.map(DY);if(r.some(s=>Object.keys(s).length>0)){const s=[...new Set(r.flatMap(a=>Object.keys(a)))];return{columns:s,rows:r.map(a=>s.map(l=>DT(a[l])))}}return{columns:[t("knowledge.value")],rows:e.map(s=>[DT(s)])}}const n=DY(e),i=Object.entries(n);if(i.length===0)return null;if(i.every(([,r])=>Array.isArray(r))){const r=i.map(([a])=>a),s=Math.max(...i.map(([,a])=>a.length));return{columns:r,rows:Array.from({length:s},(a,l)=>i.map(([,c])=>DT(c[l])))}}return{columns:[t("knowledge.field"),t("knowledge.value")],rows:i.map(([r,s])=>[r,DT(s)])}}function BEe(e){const t=e.trim();if(!t||t.startsWith("//"))return"";if(t.startsWith("/"))return t;try{const n=new URL(t);return["http:","https:"].includes(n.protocol)?n.href:""}catch{return""}}function Jxt(e){const t=BEe(e);return t.startsWith("http://")||t.startsWith("https://")?t:""}function e1t(e){var r;const t=e.attachmentType.trim().toLocaleLowerCase();if(t==="image"||t==="doc-image"||t.startsWith("image/"))return"image";if(t==="audio"||t.startsWith("audio/"))return"audio";if(t==="video"||t.startsWith("video/"))return"video";if(t==="pdf"||t==="application/pdf")return"pdf";const n=e.attachmentUrl.split(/[?#]/,1)[0],i=n.includes(".")?((r=n.split(".").pop())==null?void 0:r.toLocaleLowerCase())??"":"";return LEe.has(i)?"image":$Ee.has(i)?"audio":FEe.has(i)?"video":Gxt.has(i)?"pdf":t||i?"file":"none"}function t1t(e,t){const n=e.status.trim().toLocaleLowerCase();if(Xxt.has(n))return{title:t("knowledge.preview.processingTitle"),detail:t("knowledge.preview.processingDetail")};if(Yxt.has(n))return{title:t("knowledge.preview.failedTitle"),detail:t("knowledge.preview.failedDetail")};const i=J6(e).toLocaleLowerCase();return i==="pdf"||Kxt.has(i)?{title:t("knowledge.preview.noParsedTitle"),detail:t("knowledge.preview.noParsedDetail")}:LEe.has(i)||$Ee.has(i)||FEe.has(i)?{title:t("knowledge.preview.noMediaTitle"),detail:t("knowledge.preview.noMediaDetail")}:{title:t("knowledge.preview.noDataTitle"),detail:t("knowledge.preview.noDataDetail")}}function n1t({chunk:e}){const{t}=Te("ui"),[n,i]=p.useState(!1),r=BEe(e.attachmentUrl),s=e1t(e);return!r||s==="none"?null:n?o.jsx("div",{className:"knowledge-preview__attachment-error",children:t("knowledge.preview.attachmentError")}):s==="image"?o.jsx("img",{className:"knowledge-preview__image",src:r,alt:e.title||t("knowledge.preview.imageAlt"),loading:"lazy",onError:()=>i(!0)}):s==="audio"?o.jsx("audio",{className:"knowledge-preview__audio",src:r,controls:!0,preload:"metadata",onError:()=>i(!0),children:t("knowledge.preview.audioUnsupported")}):s==="video"?o.jsx("video",{className:"knowledge-preview__video",src:r,controls:!0,playsInline:!0,preload:"metadata",onError:()=>i(!0),children:t("knowledge.preview.videoUnsupported")}):s==="pdf"?o.jsxs("div",{className:"knowledge-preview__pdf",children:[o.jsx("iframe",{src:r,title:e.title?t("knowledge.preview.namedPdf",{name:e.title}):t("knowledge.preview.pdf"),sandbox:"",referrerPolicy:"no-referrer",onError:()=>i(!0)}),o.jsx("a",{href:r,target:"_blank",rel:"noopener noreferrer",children:t("knowledge.preview.openPdf")})]}):o.jsxs("div",{className:"knowledge-preview__file-fallback",children:[o.jsx("p",{children:t("knowledge.preview.fileUnsupported")}),o.jsx("a",{href:r,target:"_blank",rel:"noopener noreferrer",children:t("knowledge.preview.openOriginalFile")})]})}function i1t({base:e,item:t,onClose:n}){const{t:i}=Te("ui"),[r,s]=p.useState([]),[a,l]=p.useState(t),[c,u]=p.useState(""),[d,f]=p.useState(!0),[h,m]=p.useState(!1),[g,b]=p.useState(!1),[v,y]=p.useState(""),x=p.useRef(0),O=p.useRef(null),w=p.useCallback(async(C=0)=>{var j;(j=O.current)==null||j.abort();const N=new AbortController;O.current=N;const _=x.current+1;x.current=_,C>0?m(!0):f(!0),y(""),C===0&&(s([]),b(!1));try{const A=await glt(e.id,t.id,{region:e.region,offset:C,signal:N.signal});if(x.current!==_)return;l(A.document.id?A.document:t),u(A.sourceMarkdown||A.document.sourceMarkdown),s(F=>C>0?[...F,...A.chunks]:A.chunks),b(A.hasMore)}catch(A){!Y6(A)&&x.current===_&&y(ho(A,i("knowledge.errors.loadPreview")))}finally{x.current===_&&(f(!1),m(!1))}},[e.id,e.region,t,i]);p.useEffect(()=>(w(),()=>{var C;(C=O.current)==null||C.abort(),x.current+=1}),[w]);const k=Jxt(a.url||t.url),S=t1t(a,i),E=a.metadata._veadk_content_format==="markdown";return o.jsx(SE,{title:a.name||t.name||t.id,onClose:n,className:"knowledge-dialog--preview",children:o.jsxs("div",{className:"knowledge-preview",children:[a.sizeBytes>0||k?o.jsxs("div",{className:"knowledge-preview__meta",children:[a.sizeBytes>0?o.jsx("span",{children:fU(a.sizeBytes)}):null,k?o.jsx("a",{href:k,target:"_blank",rel:"noopener noreferrer",children:i("knowledge.openOriginalWeb")}):null]}):null,o.jsx("div",{className:"knowledge-preview__body","aria-live":"polite",children:c?o.jsx("div",{className:"knowledge-preview__markdown-shell",children:o.jsx(Bu,{text:c,allowRawHtml:!1,className:"knowledge-preview__markdown"})}):d?o.jsx("div",{className:"knowledge-preview__state",role:"status",children:o.jsx(xn,{as:"span",duration:2.4,children:i("knowledge.preview.loading")})}):v&&r.length===0?o.jsxs("div",{className:"knowledge-preview__state is-error",role:"alert",children:[o.jsx("p",{children:v}),o.jsx("button",{type:"button",onClick:()=>void w(),children:i("common.retry")})]}):r.length===0?o.jsxs("div",{className:"knowledge-preview__state",children:[o.jsx("p",{children:S.title}),o.jsx("span",{children:k?i("knowledge.preview.openOriginalHint"):S.detail}),o.jsx("button",{type:"button",onClick:()=>void w(),children:i("common.reload")})]}):o.jsxs("div",{className:"knowledge-preview__chunks",children:[r.map((C,N)=>{const _=Zxt(C.tableFields,i),j=C.id||`${N}:${C.title}`;return o.jsxs("article",{className:"knowledge-preview__chunk",children:[o.jsx("header",{children:o.jsx("h3",{children:C.title||i("knowledge.preview.chunk",{index:N+1})})}),C.content?E?o.jsx(Bu,{text:C.content,allowRawHtml:!1,className:"knowledge-preview__markdown"}):o.jsx("p",{className:"knowledge-preview__content",children:C.content}):null,_?o.jsx("div",{className:"knowledge-preview__table-wrap",children:o.jsxs("table",{children:[o.jsx("thead",{children:o.jsx("tr",{children:_.columns.map((A,F)=>o.jsx("th",{scope:"col",children:A},`${A}:${F}`))})}),o.jsx("tbody",{children:_.rows.map((A,F)=>o.jsx("tr",{children:A.map((T,P)=>o.jsx("td",{children:T},P))},F))})]})}):null,o.jsx(n1t,{chunk:C})]},j)}),v?o.jsx("div",{className:"knowledge-preview__more-error",role:"alert",children:v}):null,g?o.jsx("button",{type:"button",className:"knowledge-preview__load-more",disabled:h,onClick:()=>void w(r.length),children:h?o.jsx(xn,{as:"span",duration:2.4,children:i("knowledge.preview.loadingMore")}):i("knowledge.preview.loadMore")}):null]})})]})})}function r1t({cloudProvider:e,region:t,active:n=!0,activationRevision:i=0,onDetailChange:r,toolbarLeading:s,toolbarFilters:a}){const{t:l,i18n:c}=Te("ui"),[u,d]=p.useState([]),[f,h]=p.useState({}),[m,g]=p.useState([]),[b,v]=p.useState(""),[y,x]=p.useState("overview"),[O,w]=p.useState(""),[k,S]=p.useState(""),[E,C]=p.useState(!0),[N,_]=p.useState(!1),[j,A]=p.useState(""),[F,T]=p.useState([]),[P,R]=p.useState(!1),[L,M]=p.useState(""),[U,I]=p.useState(""),[H,K]=p.useState(""),[Q,q]=p.useState(!1),[B,ee]=p.useState(!1),[le,se]=p.useState(!1),[re,ge]=p.useState(null),[W,X]=p.useState(null),[ae,ue]=p.useState(null),[Oe,ke]=p.useState(null),[st,Le]=p.useState(null),[Me,Ie]=p.useState(!1),qe=p.useRef(0),Ae=p.useRef(0),ze=p.useRef([]),Ee=p.useRef(!1),De=p.useRef(!1),J=p.useRef(null),he=p.useRef(null),_e=p.useRef({}),Ze=p.useRef(!1),at=p.useRef(null),wt=p.useRef(null),Se=p.useRef(null),ve=p.useRef(null),He=p.useMemo(()=>[t],[t]),Je=p.useCallback(ye=>`${ye.region}\0${ye.id}`,[]),Ce=u.find(ye=>Je(ye)===b)??null,Wt=!!(Ce&&H===Je(Ce));p.useEffect(()=>{r==null||r(!!Ce)},[r,Ce]),p.useEffect(()=>{x("overview"),S("")},[b]);const ln=p.useMemo(()=>{const ye=O.trim().toLocaleLowerCase();return ye?u.filter(Ue=>[Ue.name,Ue.description,Ue.ownerLabel,Ue.providerKnowledgeId].some(Ke=>Ke.toLocaleLowerCase().includes(ye))):u},[u,O]),cn=p.useMemo(()=>{const ye=k.trim().toLocaleLowerCase();return ye?F.filter(Ue=>[Ue.name,Ue.id,J6(Ue)].some(Ke=>Ke.toLocaleLowerCase().includes(ye))):F},[k,F]);p.useEffect(()=>{X(null)},[Ce==null?void 0:Ce.id,Ce==null?void 0:Ce.region]);const Ot=p.useCallback(async(ye=!1)=>{var ft;if(ye&&(Ze.current||Object.keys(_e.current).length===0))return;(ft=J.current)==null||ft.abort();const Ue=new AbortController;J.current=Ue;const Ke=qe.current+1;qe.current=Ke,Ze.current=!0,ye?_(!0):C(!0),A(""),ye||g([]);try{const ut=await dlt({regions:He,nextTokens:ye?_e.current:void 0,signal:Ue.signal});if(qe.current!==Ke)return;d(Rt=>ye?[...Rt,...ut.items.filter(zt=>!Rt.some(Z=>Je(Z)===Je(zt)))]:ut.items),_e.current=ut.nextTokens,h(ut.nextTokens);const Gt=ut.failures.map(({region:Rt,error:zt})=>`${xh(Rt,e)}: ${ho(zt,l("common.loadFailed"))}`);g(Rt=>ye?[...new Set([...Rt,...Gt])]:Gt),ye||v(Rt=>ut.items.some(zt=>Je(zt)===Rt)?Rt:"")}catch(ut){if(Y6(ut))return;qe.current===Ke&&(ye?g(Gt=>[...new Set([...Gt,ho(ut,l("knowledge.errors.loadMoreBases"))])]):A(ho(ut,l("knowledge.errors.loadBases"))))}finally{qe.current===Ke&&(Ze.current=!1,C(!1),_(!1))}},[Je,e,He,l]),jt=p.useCallback(async(ye,Ue=!1)=>{var ut;if(Ue&&Ee.current)return;(ut=he.current)==null||ut.abort();const Ke=new AbortController;he.current=Ke;const ft=Ae.current+1;Ae.current=ft,Ue||(ze.current=[],De.current=!1,T([]),q(!1),I("")),Ee.current=!0,R(!0),Ue?I(""):M("");try{const Gt=await mlt(ye.id,{region:ye.region,offset:Ue?ze.current.length:0,signal:Ke.signal});if(Ae.current!==ft)return;K(Bt=>Bt===Je(ye)?"":Bt);const Rt=ze.current,zt=Ue?[...Rt,...Gt.items.filter(Bt=>!Bt.id||!Rt.some(Qe=>Qe.id===Bt.id))]:Gt.items,Z=Gt.hasMore&&(!Ue||zt.length>Rt.length);ze.current=zt,De.current=Z,T(zt),q(Z)}catch(Gt){if(Y6(Gt))return;Ae.current===ft&&(Gt instanceof HR&&Gt.errorCode===KOe&&(K(Je(ye)),ge(zt=>zt&&Je(zt)===Je(ye)?null:zt)),Ue?I(ho(Gt,l("knowledge.errors.loadMoreData"))):M(ho(Gt,l("knowledge.errors.loadData"))))}finally{Ae.current===ft&&(Ee.current=!1,R(!1))}},[Je,l]);p.useEffect(()=>{var ye;(ye=J.current)==null||ye.abort(),qe.current+=1,Ze.current=!1,_e.current={},d([]),h({}),g([]),v(""),K(""),A(""),C(!0)},[e]),p.useEffect(()=>{if(n)return Ot(),()=>{var ye;(ye=J.current)==null||ye.abort(),qe.current+=1,Ze.current=!1}},[n,i,Ot]),p.useEffect(()=>{var ye,Ue;if(!n){(ye=he.current)==null||ye.abort(),Ae.current+=1,Ee.current=!1;return}if(!Ce){(Ue=he.current)==null||Ue.abort(),Ae.current+=1,ze.current=[],Ee.current=!1,De.current=!1,T([]),q(!1),I("");return}return jt(Ce),()=>{var Ke;(Ke=he.current)==null||Ke.abort(),Ae.current+=1,Ee.current=!1}},[n,i,Ce==null?void 0:Ce.id,Ce==null?void 0:Ce.region]);const ot=n&&!Ce&&!O.trim()&&!E&&!N&&!j&&Object.keys(f).length>0;p.useEffect(()=>{const ye=wt.current,Ue=at.current;if(!ye||!Ue||!ot)return;const Ke=new IntersectionObserver(([ft])=>{ft.isIntersecting&&Ot(!0)},{root:Ue,rootMargin:"240px 0px",threshold:.01});return Ke.observe(ye),()=>Ke.disconnect()},[ot,Ot]);const gt=()=>{const ye=at.current;!ye||!ot||ye.scrollHeight-ye.scrollTop-ye.clientHeight<=240&&Ot(!0)},Pe=!!(Ce&&F.length>0&&Q&&!P&&!U);p.useEffect(()=>{const ye=ve.current,Ue=Se.current;if(!Ce||!ye||!Ue||!Pe)return;const Ke=new IntersectionObserver(([ft])=>{ft.isIntersecting&&jt(Ce,!0)},{root:Se.current,rootMargin:"240px 0px",threshold:.01});return Ke.observe(ye),()=>Ke.disconnect()},[Pe,jt,Ce==null?void 0:Ce.id,Ce==null?void 0:Ce.region]);const Et=()=>{const ye=Se.current;if(!Ce||!ye||!De.current||Ee.current||U)return;const{scrollHeight:Ue,scrollTop:Ke,clientHeight:ft}=ye;Ue-Ke-ft<=240&&jt(Ce,!0)},bt=ye=>{d(Ue=>Ue.map(Ke=>Je(Ke)===Je(ye)?ye:Ke))},Mt=async()=>{if(Oe){Ie(!0);try{await plt(Oe.id,Oe.region),d(ye=>ye.filter(Ue=>Je(Ue)!==Je(Oe))),K(ye=>ye===Je(Oe)?"":ye),b===Je(Oe)&&v(""),ke(null)}catch(ye){A(ho(ye,l("knowledge.errors.deleteBase"))),ke(null)}finally{Ie(!1)}}},$e=async()=>{if(!(!Ce||!st)){Ie(!0);try{await wlt(Ce.id,st.id,Ce.region);const ye=ze.current.filter(Ue=>Ue.id!==st.id);ze.current=ye,T(ye),Le(null)}catch(ye){M(ho(ye,l("knowledge.errors.deleteDocument"))),Le(null)}finally{Ie(!1)}}};return o.jsxs("section",{className:`knowledge-library${Ce?" is-detail":" resource-collection"}`,"aria-label":l("knowledge.library"),children:[Ce?o.jsx(uE,{className:"knowledge-library__detail",title:Ce.name,description:Ce.description||l("common.noDescription"),identitySeed:Ce.name,backLabel:l("knowledge.backToList"),onBack:()=>v(""),sections:[{key:"overview",label:l("skillCenter.overview"),content:o.jsx("section",{className:"knowledge-overview",children:o.jsxs(jB,{className:"knowledge-overview__summary",children:[o.jsxs("div",{children:[o.jsx("dt",{children:l("knowledge.provider")}),o.jsx("dd",{children:Ce.providerType||"-"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:l("knowledge.knowledgeId")}),o.jsx("dd",{className:"knowledge-keyboard-reveal",tabIndex:0,title:Ce.providerKnowledgeId,children:Ce.providerKnowledgeId||"-"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:l("knowledge.project")}),o.jsx("dd",{children:Ce.projectName||"default"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:l("knowledge.creator")}),o.jsx("dd",{children:zM(Ce.ownerLabel)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:l("skillCenter.updatedAt")}),o.jsx("dd",{children:Fxt(Ce.updatedAt,c.resolvedLanguage??c.language)||"-"})]})]})})},{key:"data",label:l("knowledge.data"),content:o.jsx("section",{className:"knowledge-documents",children:o.jsx("div",{className:`knowledge-documents__body${F.length>0?" is-table":""}`,"aria-live":"polite",children:P&&F.length===0?o.jsx(Ud,{}):L&&F.length===0?o.jsxs("div",{className:"knowledge-library__state is-error",role:"alert",children:[o.jsx("p",{children:L}),Wt&&Ce.canManage?o.jsx("button",{type:"button",onClick:()=>ke(Ce),children:l("knowledge.deleteInvalidAssociation")}):o.jsx("button",{type:"button",onClick:()=>void jt(Ce),children:l("common.retry")})]}):F.length===0?o.jsxs("div",{className:"knowledge-library__state",children:[o.jsx(Mxt,{}),o.jsx("p",{children:l("knowledge.noData")}),Ce.canManage&&o.jsx("button",{type:"button",onClick:()=>ge(Ce),children:l("knowledge.addFirstData")})]}):o.jsx(jot,{rows:cn,rowKey:ye=>ye.id,rowLabel:ye=>ye.name||ye.id,columns:[{key:"name",header:l("common.name"),className:"is-primary-column",render:ye=>o.jsx("span",{title:ye.name||ye.id,children:ye.name||ye.id})},{key:"format",header:l("knowledge.format"),className:"is-compact-column",render:ye=>J6(ye)},{key:"size",header:l("knowledge.size"),className:"is-compact-column",render:ye=>fU(ye.sizeBytes)}],searchValue:k,onSearchChange:S,searchPlaceholder:l("knowledge.searchData"),searchLabel:l("knowledge.searchLibraryData"),primaryAction:Ce.canManage?{label:l(Wt?"knowledge.associationInvalid":"knowledge.addData"),disabled:Wt,title:Wt?l("knowledge.providerMissing"):void 0,onClick:()=>ge(Ce)}:void 0,rowActions:ye=>[{label:l("common.preview"),onSelect:()=>X(ye)},...Ce.canManage?[{label:l("common.edit"),onSelect:()=>ue(ye)},{label:l("common.delete"),onSelect:()=>Le(ye),danger:!0}]:[]],scrollRef:Se,onScroll:Et,busy:P,emptyLabel:l("knowledge.noMatchingData"),footer:P?o.jsxs("div",{className:"knowledge-document-pagination",role:"status","aria-live":"polite",children:[o.jsx("span",{className:"my-agent-loading-mark","aria-hidden":"true"}),o.jsx("span",{children:l("knowledge.loadingMoreData")})]}):U?o.jsxs("div",{className:"knowledge-document-pagination is-error",role:"alert",children:[o.jsx("span",{children:U}),o.jsx("button",{type:"button",onClick:()=>void jt(Ce,!0),children:l("knowledge.retryLoading")})]}):Q?o.jsx("div",{ref:ve,className:"knowledge-document-pagination",role:"status","aria-live":"polite",children:l("skillCenter.scrollForMore")}):null})})})}],activeSectionKey:y,navigationLabel:l("knowledge.details"),onSectionChange:x,actions:Ce.canManage?o.jsxs(o.Fragment,{children:[o.jsx(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,onClick:()=>ke(Ce),children:l("common.delete")}),o.jsx(Ht,{type:"button",color:"primary",size:"lg",pill:!1,onClick:()=>se(!0),children:l("common.edit")})]}):void 0}):o.jsxs(o.Fragment,{children:[o.jsxs(Zb,{className:"knowledge-library__toolbar library-resource-toolbar",children:[s,o.jsxs("div",{className:"resource-toolbar__actions",children:[a,o.jsx(wm,{value:O,onChange:ye=>w(ye.target.value),placeholder:l("knowledge.searchBases"),"aria-label":l("knowledge.searchBases")})]})]}),o.jsxs(Jb,{ref:at,"aria-live":"polite",onScroll:gt,children:[m.length>0&&!E&&o.jsxs("div",{className:"knowledge-region-warning",role:"status",children:[o.jsx("span",{children:l("knowledge.someBasesFailed")}),o.jsx("button",{type:"button",onClick:()=>void Ot(),children:l("common.retry")})]}),E&&u.length===0?o.jsx(Ud,{}):j?o.jsxs("div",{className:"knowledge-library__state is-error",role:"alert",children:[o.jsx("p",{children:j}),o.jsx("button",{type:"button",onClick:()=>void Ot(),children:l("common.retry")})]}):ln.length===0&&O.trim()?o.jsxs("div",{className:"knowledge-library__state",children:[o.jsx(Dxt,{}),o.jsx("p",{children:l("knowledge.noMatchingBases")})]}):o.jsxs(Vx,{children:[O.trim()?null:o.jsx(Cb,{"aria-label":l("knowledge.createBase"),icon:o.jsx($xt,{}),onClick:()=>ee(!0),children:l("knowledge.createBase")}),ln.map(ye=>o.jsx(pE,{className:"knowledge-card",title:ye.name,description:ye.description||l("common.noDescription"),metadata:[{label:l("knowledge.creator"),value:zM(ye.ownerLabel),title:zM(ye.ownerLabel)},{label:l("knowledge.project"),value:ye.projectName||"default",title:ye.projectName||"default"}],action:{label:H===Je(ye)?l("knowledge.associationInvalid"):l("knowledge.addData"),icon:"plus",disabled:!ye.canManage||H===Je(ye),title:ye.canManage?H===Je(ye)?l("knowledge.providerMissing"):void 0:l("knowledge.noManagePermission"),onClick:()=>ge(ye)},detailAction:{label:l("common.viewDetails"),onClick:()=>v(Je(ye))}},Je(ye)))]}),ot||N?o.jsx("div",{ref:wt,className:"my-agent-load-more",role:"status","aria-live":"polite",children:N?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"my-agent-loading-mark","aria-hidden":"true"}),o.jsx("span",{children:l("knowledge.loadingMoreBases")})]}):ot?o.jsx("span",{children:l("skillCenter.scrollForMore")}):null}):null]})]}),B&&o.jsx(Vxt,{region:t,onClose:()=>ee(!1),onCreated:ye=>{d(Ue=>[ye,...Ue]),v(Je(ye)),ee(!1)}}),Ce&&le&&o.jsx(Hxt,{item:Ce,onClose:()=>se(!1),onUpdated:ye=>{bt(ye),se(!1)}}),Ce&&W&&o.jsx(i1t,{base:Ce,item:W,onClose:()=>X(null)}),re&&o.jsx(qxt,{base:re,onClose:()=>ge(null),onAssociationInvalid:ye=>{K(Je(re)),Ce&&Je(Ce)===Je(re)&&M(ho(ye,l("knowledge.associationInvalid"))),ge(null)},onCreated:()=>{Ce&&Je(Ce)===Je(re)&&jt(Ce),ge(null)}}),Ce&&ae&&o.jsx(Wxt,{base:Ce,item:ae,onClose:()=>ue(null),onUpdated:ye=>{const Ue=ze.current.map(Ke=>Ke.id===ye.id?ye:Ke);ze.current=Ue,T(Ue),ue(null)}}),Oe&&o.jsx(pc,{title:l("knowledge.deleteBaseTitle"),description:l("knowledge.deleteBaseDescription",{name:Oe.name}),confirmLabel:l(Me?"common.deleting":"common.delete"),variant:"danger",busy:Me,onCancel:()=>ke(null),onConfirm:()=>void Mt()}),st&&o.jsx(pc,{title:l("knowledge.deleteDocumentTitle"),description:l("knowledge.deleteDocumentDescription",{name:st.name||st.id}),confirmLabel:l(Me?"common.deleting":"common.delete"),variant:"danger",busy:Me,onCancel:()=>Le(null),onConfirm:()=>void $e()})]})}const s1t="_EmptyMessage_1r5gu_1",a1t="_IconBadge_1r5gu_16",o1t="_Title_1r5gu_54",l1t="_Description_1r5gu_69",c1t="_ActionRow_1r5gu_77",kE={EmptyMessage:s1t,IconBadge:a1t,Title:o1t,Description:l1t,ActionRow:c1t},Cn=({children:e,className:t,fill:n="static"})=>o.jsx("div",{className:pi(kE.EmptyMessage,t),"data-fill":n,children:e}),u1t=({size:e="md",color:t="secondary",children:n,className:i})=>o.jsx("div",{className:pi(kE.IconBadge,i),"data-size":e,"data-color":t,children:n}),d1t=({children:e,className:t,color:n="secondary"})=>o.jsx("div",{className:pi(kE.Title,t),"data-color":n,children:e}),f1t=({children:e,className:t})=>o.jsx("div",{className:pi(kE.Description,t),children:e}),h1t=({children:e,className:t})=>o.jsx("div",{className:pi(kE.ActionRow,t),children:e});Cn.Icon=u1t;Cn.Title=d1t;Cn.Description=f1t;Cn.ActionRow=h1t;const p1t="/web/skill-management";class m1t extends Error{constructor(t,n,i="SKILL_MANAGEMENT_ERROR",r="",s,a=""){super(t),this.status=n,this.code=i,this.statusText=r,this.originalError=s,this.rawResponse=a,this.name="SkillManagementApiError"}}async function Uh(e,t={},n=Wo){return fetch(Uo(`${p1t}${e}`),{...t,headers:Hu(Dh(t.headers)),signal:Ol(t.signal,n)})}async function UEe(e,t){let n=t,i="SKILL_MANAGEMENT_ERROR",r;const s=await e.text().catch(()=>"");try{const a=JSON.parse(s);typeof a.detail=="string"?n=a.detail:a.detail&&(n=a.detail.message||t,i=a.detail.code||i,r=a.detail.originalError)}catch{s.trim()&&(n=V("common.fallbackWithDetail",{fallback:t,detail:s.trim()}))}return new m1t(n,e.status,i,e.statusText,r,s)}async function Qh(e,t){if(!e.ok)throw await UEe(e,t);return e.json()}async function g1t(e){const t=new URLSearchParams({region:e.region,page:String(e.page),page_size:String(e.pageSize)});return e.project&&t.set("project",e.project),Qh(await Uh(`/spaces?${t}`,{signal:e.signal}),V("skills.listSpacesFailed"))}async function b1t(e){return Qh(await Uh("/spaces",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)}),V("skills.createSpaceFailed"))}async function y1t(e){return Qh(await Uh(`/spaces/${encodeURIComponent(e.spaceId)}`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:e.name,description:e.description,region:e.region})}),V("skills.updateSpaceFailed"))}async function v1t(e){const t=new URLSearchParams({region:e.region});await Qh(await Uh(`/spaces/${encodeURIComponent(e.spaceId)}?${t}`,{method:"DELETE"}),V("skills.deleteSpaceFailed"))}async function x1t(e){const t=new URLSearchParams({region:e.region});return e.project&&t.set("project",e.project),Qh(await Uh(`/spaces/${encodeURIComponent(e.spaceId)}/skills?${t}`,{method:"POST",headers:{"Content-Type":"application/zip"},body:e.file},is),V("skills.uploadFailed"))}async function w1t(e){return Qh(await Uh("/validate",{method:"POST",headers:{"Content-Type":"application/zip"},body:e},is),V("skills.validateFailed"))}async function O1t(e){const t=new URLSearchParams({region:e.region});await Qh(await Uh(`/spaces/${encodeURIComponent(e.spaceId)}/skills/${encodeURIComponent(e.skillId)}?${t}`,{method:"DELETE"}),V("skills.deleteFailed"))}async function S1t(e){const t=new URLSearchParams({region:e.region});e.version&&t.set("version",e.version),e.skillSpaceName&&t.set("skill_space_name",e.skillSpaceName),e.skillName&&t.set("skill_name",e.skillName);const n=await Qh(await Uh(`/spaces/${encodeURIComponent(e.spaceId)}/skills/${encodeURIComponent(e.skillId)}/files?${t}`),V("skills.listFilesFailed"));return Array.isArray(n.files)?n.files:[]}async function k1t(e){var l;const t=new URLSearchParams({region:e.region});e.version&&t.set("version",e.version),e.skillSpaceName&&t.set("skill_space_name",e.skillSpaceName),e.skillName&&t.set("skill_name",e.skillName);const n=await Uh(`/spaces/${encodeURIComponent(e.spaceId)}/skills/${encodeURIComponent(e.skillId)}/archive?${t}`,{},is);n.ok||await Qh(n,V("skills.downloadFailed"));const r=((l=(n.headers.get("content-disposition")||"").match(/filename="([^"]+)"/))==null?void 0:l[1])||`${e.fallbackName}.zip`,s=URL.createObjectURL(await n.blob()),a=document.createElement("a");a.href=s,a.download=r,a.click(),URL.revokeObjectURL(s)}async function rI(e){const t=await fetch(e,{headers:{accept:"application/json"},signal:Ol(void 0,Wo)});if(!t.ok)throw await UEe(t,$t("helpers.skills.agentKitRequestFailed"));return t.json()}async function QEe(){return(await rI("/web/skill-spaces")).items||[]}async function zEe(e,t){const n=t?`?region=${encodeURIComponent(t)}`:"";return(await rI(`/web/skill-spaces/${encodeURIComponent(e)}/skills${n}`)).items||[]}async function E1t(e,t){const n=new URLSearchParams({region:t.region,page:String(t.page),page_size:String(t.pageSize)});return t.project&&n.set("project",t.project),rI(`/web/skill-spaces/${encodeURIComponent(e)}/skills?${n.toString()}`)}async function C1t(e,t,n,i,r,s,a){const l=[];n&&l.push(`version=${encodeURIComponent(n)}`),i&&l.push(`region=${encodeURIComponent(i)}`),r&&l.push(`project=${encodeURIComponent(r)}`),s&&l.push(`skill_name=${encodeURIComponent(s)}`),a&&l.push(`skill_space_name=${encodeURIComponent(a)}`);const c=l.length>0?`?${l.join("&")}`:"";return rI(`/web/skill-spaces/${encodeURIComponent(e)}/skills/${encodeURIComponent(t)}${c}`)}function T1t(e,t){const n=Fg(t);return{source:"skillspace",id:`ss:${e.id}/${n}/${t.version}`,name:t.skillName,description:t.skillDescription,folder:t.skillName,skillSpaceId:e.id,skillSpaceName:e.name,skillSpaceRegion:e.region,skillId:n,version:t.version}}function Fg(e){return e.skillId||e.skillName}function A1t(e,t,n="volcengine"){return n==="byteplus"?"":`https://console.volcengine.com/agentkit/${(t||"cn-beijing")==="cn-beijing"?"cn":"cn-shanghai"}/skillspace/detail/${encodeURIComponent(e)}`}an.hasResourceBundle("en-US","skills")||an.addResourceBundle("en-US","skills",Jae,!0,!0);an.hasResourceBundle("zh-CN","skills")||an.addResourceBundle("zh-CN","skills",gde,!0,!0);function Ut(e,t={}){return an.t(e,{...t,ns:"skills"})}const _1t="/web/skill-workbench";class e$ extends Error{constructor(t,n,i="SKILL_WORKBENCH_ERROR",r=!1,s="",a,l=""){super(t),this.status=n,this.code=i,this.retryable=r,this.statusText=s,this.originalError=a,this.rawResponse=l,this.name="SkillWorkbenchApiError"}}function eu(e,t){if(!e||typeof e!="object"||Array.isArray(e))throw new Error(Ut("api.invalidFormat",{label:t}));return e}function MY(e,t){if(e!=null){if(typeof e!="string"||!e.trim()||e.trim().length>256)throw new Error(Ut("api.invalidFormat",{label:t}));return e.trim()}}function N1t(e){if(e!=null){if(e==="pending"||e==="ready"||e==="failed"||e==="unknown")return e;throw new Error(Ut("api.invalidFormat",{label:Ut("api.recoveryStatus")}))}}async function Qd(e,t={},n=Wo){return fetch(Uo(`${_1t}${e}`),{...t,headers:Dh(t.headers),signal:Ol(t.signal,n)})}async function hU(e,t){var i;const n=await e.text().catch(()=>"");try{const r=eu(JSON.parse(n),Ut("api.errorResponse")),s=r.detail&&typeof r.detail=="object"?eu(r.detail,Ut("api.errorDetails")):r;return new e$(typeof s.message=="string"?s.message:t,e.status,typeof s.code=="string"?s.code:"SKILL_WORKBENCH_ERROR",s.retryable===!0,e.statusText,s.originalError&&typeof s.originalError=="object"?s.originalError:void 0,n)}catch{const r=((i=e.headers.get("content-type"))==null?void 0:i.split(";",1)[0])||Ut("api.missingContentType");return new e$(Ut("api.gatewayError",{fallback:t,status:e.status,contentType:r}),e.status,"SKILL_WORKBENCH_ERROR",!1,e.statusText,void 0,n)}}async function Sm(e,t){if(!e.ok)throw await hU(e,t);const n=e.headers.get("content-type")??"";if(!n.includes("application/json")){const i=n.split(";",1)[0]||Ut("api.missingContentType");throw new Error(Ut("api.nonJson",{fallback:t,status:e.status,contentType:i}))}return e.json()}function j1t(e){return Array.isArray(e)?e.map(t=>{const n=eu(t,Ut("api.activity")),i=n.kind,r=n.status;if(typeof n.id!="string"||!["status","thinking","message","tool"].includes(String(i))||!["running","done"].includes(String(r)))throw new Error(Ut("api.invalidActivity"));if(i==="tool"){if(typeof n.name!="string")throw new Error(Ut("api.invalidToolActivity"));return{id:n.id,kind:i,status:r,name:n.name,...n.input!==void 0?{args:n.input}:{},...n.output!==void 0?{response:n.output}:{}}}if(typeof n.text!="string")throw new Error(Ut("api.invalidTextActivity"));return{id:n.id,kind:i,status:r,text:n.text}}):[]}function R1t(e){if(e==null)return;const t=eu(e,Ut("api.publication"));if(typeof t.revision!="number"||typeof t.skillId!="string"||typeof t.version!="string"||!Array.isArray(t.skillSpaceIds)||!t.skillSpaceIds.every(n=>typeof n=="string")||t.disposition!=="create-new"&&t.disposition!=="update-source"||!tR(t.region)||typeof t.projectName!="string")throw new Error(Ut("api.invalidFormat",{label:Ut("api.publication")}));return{revision:t.revision,skillId:t.skillId,version:t.version,skillSpaceIds:t.skillSpaceIds,disposition:t.disposition,region:t.region,projectName:t.projectName}}function qS(e){const t=eu(e,Ut("api.task"));if(typeof t.jobId!="string"||t.operation!=="create"&&t.operation!=="optimize"||typeof t.intent!="string"||typeof t.revision!="number"||typeof t.state!="string")throw new Error(Ut("api.invalidFormat",{label:Ut("api.task")}));const n=Array.isArray(t.files)?t.files.flatMap(l=>{const c=eu(l,Ut("api.file"));return typeof c.path=="string"&&typeof c.size=="number"?[{path:c.path,size:c.size}]:[]}):[];if(!["running","ready","failed","cancelled","expired","published"].includes(t.state))throw new Error(Ut("api.unknownTaskState"));const r=MY(t.toolId,"Tool ID"),s=MY(t.sessionId,"Session ID"),a=N1t(t.recoveryStatus);return{jobId:t.jobId,operation:t.operation,intent:t.intent,...typeof t.model=="string"?{model:t.model}:{},...typeof t.style=="string"?{style:t.style}:{},...typeof t.requestedName=="string"?{requestedName:t.requestedName}:{},revision:t.revision,...r?{toolId:r}:{},...s?{sessionId:s}:{},...typeof t.sessionTtlSeconds=="number"?{sessionTtlSeconds:t.sessionTtlSeconds}:{},...typeof t.expiresAt=="string"?{expiresAt:t.expiresAt}:{},...typeof t.recoveryAvailable=="boolean"?{recoveryAvailable:t.recoveryAvailable}:{},...a?{recoveryStatus:a}:{},...typeof t.recoveredFromSnapshot=="boolean"?{recoveredFromSnapshot:t.recoveredFromSnapshot}:{},state:t.state,stage:typeof t.stage=="string"?t.stage:"generating",activities:j1t(t.activities),files:n,...t.source&&typeof t.source=="object"?{source:t.source}:{},...typeof t.name=="string"?{name:t.name}:{},...typeof t.description=="string"?{description:t.description}:{},...typeof t.skillMd=="string"?{skillMd:t.skillMd}:{},...typeof t.error=="string"?{error:t.error}:{},...t.validation&&typeof t.validation=="object"?{validation:t.validation}:{},...t.publication?{publication:R1t(t.publication)}:{}}}async function sI(e){const t=eu(await Sm(await Qd("/capabilities",{signal:e}),Ut("api.loadCapability")),Ut("api.capability"));return{enabled:t.enabled===!0,reason:typeof t.reason=="string"?t.reason:"",operations:Array.isArray(t.operations)?t.operations.filter(n=>n==="create"||n==="optimize"):[],models:Array.isArray(t.models)?t.models.flatMap(n=>{if(!n||typeof n!="object")return[];const i=n;return typeof i.id=="string"&&typeof i.label=="string"?[{id:i.id,label:i.label}]:[]}):[],styles:t.styles&&typeof t.styles=="object"&&!Array.isArray(t.styles)?Object.fromEntries(Object.entries(t.styles).filter(n=>typeof n[1]=="string")):{},...typeof t.maxUploadBytes=="number"?{maxUploadBytes:t.maxUploadBytes}:{}}}async function I1t(e){if(e.file){const n=new URLSearchParams({operation:"optimize",intent:e.intent});e.jobId&&n.set("job_id",e.jobId),e.model&&n.set("model",e.model),e.style&&n.set("style",e.style),e.name&&n.set("name",e.name);const i=await Qd(`/tasks/from-upload?${n}`,{method:"POST",body:e.file,headers:{"Content-Type":"application/zip"},signal:e.signal},is);return qS(await Sm(i,Ut("api.startOptimization")))}const t=await Qd("/tasks",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({operation:e.operation,intent:e.intent,...e.model?{model:e.model}:{},...e.style?{style:e.style}:{},...e.name?{name:e.name}:{},...e.jobId?{jobId:e.jobId}:{},...e.source?{source:{kind:"skill-center",skillId:e.source.skillId,skillName:e.source.name,version:e.source.version,region:e.source.region,projectName:e.source.projectName,skillSpaceId:e.source.skillSpaceId,skillSpaceName:e.source.skillSpaceName}}:{}}),signal:e.signal},is);return qS(await Sm(t,Ut("api.startTask")))}async function P1t(e,t){return qS(await Sm(await Qd(`/tasks/${encodeURIComponent(e)}`,{signal:t}),Ut("api.loadTask")))}async function VM(e,t,n){const i=new URLSearchParams;i.set("expected_revision",String(t));const r=eu(await Sm(await Qd(`/tasks/${encodeURIComponent(e)}/artifact?${i.toString()}`,{signal:n}),Ut("api.loadArtifact")),Ut("api.artifact"));if(r.jobId!==e||r.revision!==t||!Number.isSafeInteger(r.revision)||r.revision<1||typeof r.sha256!="string"||!/^[0-9a-f]{64}$/.test(r.sha256)||typeof r.name!="string"||typeof r.description!="string"||!Array.isArray(r.files))throw new Error(Ut("api.invalidFormat",{label:Ut("api.artifact")}));const s=r.files.map(a=>{const l=eu(a,Ut("api.artifactFile"));if(typeof l.path!="string"||typeof l.size!="number"||typeof l.content!="string")throw new Error(Ut("api.invalidFormat",{label:Ut("api.artifactFile")}));return{path:l.path,size:l.size,content:l.content}});return{jobId:r.jobId,revision:r.revision,sha256:r.sha256,name:r.name,description:r.description,files:s}}async function HM(e){const t=await Qd(`/tasks/${encodeURIComponent(e.jobId)}/refinements`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({intent:e.intent,expectedRevision:e.expectedRevision})},is);return qS(await Sm(t,Ut("api.refine")))}async function D1t(e){const t=await Qd(`/tasks/${encodeURIComponent(e.jobId)}/stop`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({expectedRevision:e.expectedRevision})});return qS(await Sm(t,Ut("api.stop")))}async function M1t(e){const t=await Qd(`/tasks/${encodeURIComponent(e.jobId)}/publish-stream`,{method:"POST",headers:{"Content-Type":"application/json",Accept:"application/x-ndjson"},body:JSON.stringify({disposition:e.disposition,expectedRevision:e.expectedRevision,expectedArtifactSha256:e.expectedArtifactSha256,skillSpaceIds:e.skillSpaceIds??[],projectName:e.projectName,region:e.region}),signal:e.signal},0);if(!t.ok)throw await hU(t,Ut("api.publish"));if(!(t.headers.get("content-type")??"").includes("application/x-ndjson"))throw new Error(Ut("api.nonNdjson"));if(!t.body)throw new Error(Ut("api.missingStream"));const i=new Set(["preparing","uploading","registering","activating","publishing"]);let r=null,s="";const a=new TextDecoder,l=t.body.getReader(),c=u=>{var h;if(!u.trim())return;const d=eu(JSON.parse(u),Ut("api.publishProgress"));if(d.type==="progress"){if(typeof d.phase!="string"||!i.has(d.phase)||typeof d.message!="string")throw new Error(Ut("api.invalidPublishProgress"));(h=e.onProgress)==null||h.call(e,{phase:d.phase,message:d.message});return}if(d.type==="error"){const m=eu(d.error,Ut("api.publishError"));throw new e$(typeof m.message=="string"?m.message:Ut("api.publish"),500,typeof m.code=="string"?m.code:"SKILL_PUBLISH_FAILED",m.retryable===!0,"",m.originalError&&typeof m.originalError=="object"?m.originalError:void 0,JSON.stringify(d.error))}if(d.type!=="complete")throw new Error(Ut("api.unknownPublishEvent"));const f=eu(d.result,Ut("api.publishResult"));if(typeof f.skillId!="string"||typeof f.version!="string"||!Array.isArray(f.skillSpaceIds)||!f.skillSpaceIds.every(m=>typeof m=="string")||f.disposition!=="create-new"&&f.disposition!=="update-source"||!tR(f.region)||typeof f.projectName!="string")throw new Error(Ut("api.invalidFormat",{label:Ut("api.publishResult")}));r={skillId:f.skillId,version:f.version,skillSpaceIds:f.skillSpaceIds,disposition:f.disposition,region:f.region,projectName:f.projectName}};for(;;){const{value:u,done:d}=await l.read();s+=a.decode(u,{stream:!d});const f=s.split(` -`);if(s=f.pop()??"",f.forEach(c),d)break}if(c(s),!r)throw new Error(Ut("api.streamEnded"));return r}async function L1t(e){await Sm(await Qd(`/tasks/${encodeURIComponent(e)}`,{method:"DELETE"}),Ut("api.deleteTask"))}async function $1t(e,t,n){var c;const i=new URLSearchParams;i.set("expected_revision",String(t)),i.set("expected_sha256",n);const r=await Qd(`/tasks/${encodeURIComponent(e)}/download?${i.toString()}`,{},is);if(!r.ok)throw await hU(r,Ut("api.download"));const a=((c=(r.headers.get("content-disposition")??"").match(/filename="([^"]+)"/))==null?void 0:c[1])??"skill.zip",l=URL.createObjectURL(await r.blob());try{const u=document.createElement("a");u.href=l,u.download=a,u.click()}finally{URL.revokeObjectURL(l)}}const F1t={formatDate(e){const t=e.value??e.date??e.timestamp;if(t==null)return"";const n=new Date(t);return isNaN(n.getTime())?String(t):n.toLocaleString()}};function B1t(e,t){if(!t||t==="/")return e;const n=t.replace(/^\//,"").split("/").map(r=>r.replace(/~1/g,"/").replace(/~0/g,"~"));let i=e;for(const r of n){if(i==null||typeof i!="object")return;i=i[r]}return i}function U1t(e){return typeof e=="object"&&e!==null&&typeof e.path=="string"}function Q1t(e){return typeof e=="object"&&e!==null&&typeof e.call=="string"}function pU(e,t){if(U1t(e))return B1t(t,e.path);if(Q1t(e)){const n=F1t[e.call],i={};for(const[r,s]of Object.entries(e.args??{}))i[r]=pU(s,t);return n?n(i):`[unknown fn: ${e.call}]`}return e}function z1t(e,t){const n=pU(e,t);return n==null?"":typeof n=="string"?n:String(n)}const VEe=new Map;function s0(e,t){VEe.set(e,t)}function V1t(e){return VEe.get(e)}function H1t(e,t,n){const i=t.replace(/^\//,"").split("/").map(s=>s.replace(/~1/g,"/").replace(/~0/g,"~"));let r=e;for(let s=0;spU(i,e.dataModel),resolveString:i=>z1t(i,e.dataModel),dispatchAction:t,render:i=>{if(!i)return null;const r=e.components[i];if(!r)return null;const s=V1t(r.component)??q1t;return o.jsx(s,{node:r,ctx:n},i)}};return o.jsx("div",{className:"a2ui-surface","data-a2ui-surface":e.surfaceId,children:n.render(e.rootId)})}function qEe(e){const t=p.useRef(null),n=p.useRef(!0),i=28,r=p.useCallback(()=>{const s=t.current;s&&(n.current=s.scrollHeight-s.scrollTop-s.clientHeight{const s=t.current;s&&n.current&&(s.scrollTop=s.scrollHeight)},[e]),{ref:t,onScroll:r}}function aI({value:e,skillPrefix:t="/",onRemoveSkill:n,onRemoveAgent:i}){const{t:r}=Te("conversation");return e.skills.length===0&&!e.targetAgent?null:o.jsxs("div",{className:"invocation-chips","aria-label":r("invocation.ariaLabel"),children:[e.skills.map(s=>o.jsxs("span",{className:"invocation-chip invocation-chip--skill",title:s.description,children:[o.jsx(mS,{"aria-hidden":!0}),o.jsxs("span",{children:[t,s.name]}),n?o.jsx("button",{type:"button",onClick:()=>n(s.name),"aria-label":r("invocation.removeSkill",{name:s.name}),children:o.jsx(Ba,{})}):null]},s.name)),e.targetAgent?o.jsxs("span",{className:"invocation-chip invocation-chip--agent",title:e.targetAgent.description,children:[o.jsx(kbe,{"aria-hidden":!0}),o.jsx("span",{children:e.targetAgent.name}),i?o.jsx("button",{type:"button",onClick:i,"aria-label":r("invocation.removeAgent",{name:e.targetAgent.name}),children:o.jsx(Ba,{})}):null]}):null]})}function mU(e=""){return e.startsWith("image/")?"image":e.startsWith("video/")?"video":e==="application/pdf"?"pdf":e==="text/markdown"?"markdown":"text"}function WEe(e){var n,i,r,s;const t=mU(e.mimeType);return t==="pdf"?"PDF":t==="markdown"?"MD":t==="video"?((i=(n=e.mimeType)==null?void 0:n.split("/")[1])==null?void 0:i.toUpperCase())??"VIDEO":t==="image"?((s=(r=e.mimeType)==null?void 0:r.split("/")[1])==null?void 0:s.toUpperCase())??"IMAGE":"TXT"}function GEe(e){return e?e<1024?`${e} B`:e<1024*1024?`${Math.round(e/1024)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`:""}function KEe(e,t){return e.previewUrl?e.previewUrl:e.data?`data:${e.mimeType??"application/octet-stream"};base64,${e.data}`:e.uri?e0e(t,e.uri):""}function G1t({kind:e}){return e==="image"?o.jsx($F,{}):e==="video"?o.jsx(Cbe,{}):e==="pdf"?o.jsx(y7e,{}):o.jsx(MF,{})}function oI({appName:e,items:t,compact:n=!1,onRemove:i}){const{t:r}=Te("conversation"),[s,a]=p.useState(null);return o.jsxs(o.Fragment,{children:[o.jsx("div",{className:`media-grid${n?" media-grid--compact":""}`,children:t.map(l=>{const c=mU(l.mimeType),u=KEe(l,e),d=l.status==="uploading"||l.status==="error"||!u,f=o.jsxs("button",{type:"button",className:"media-card-main",disabled:d,onClick:c==="image"?void 0:()=>a(l),"aria-label":r("media.preview",{name:l.name??r("media.attachment")}),children:[c==="image"&&u?o.jsx("img",{className:"media-card-image",src:u,alt:l.name??r("media.image"),loading:"lazy"}):c==="video"&&u?o.jsxs("div",{className:"media-card-video-container",children:[o.jsx("video",{className:"media-card-video",src:u,muted:!0,playsInline:!0,preload:"metadata","aria-hidden":"true"}),o.jsx("span",{className:"media-card-video-play",children:o.jsx(N7e,{})})]}):o.jsx("span",{className:"media-card-icon",children:o.jsx(G1t,{kind:c})}),o.jsxs("span",{className:"media-card-copy",children:[o.jsx("span",{className:"media-card-name",children:l.name??r("media.attachment")}),o.jsxs("span",{className:"media-card-meta",children:[o.jsx("span",{className:"media-card-type",children:WEe(l)}),l.status==="uploading"?o.jsxs(o.Fragment,{children:[o.jsx(fi,{className:"media-card-spinner"})," ",r("media.uploading")]}):l.status==="error"?l.error??r("media.uploadFailed"):GEe(l.sizeBytes)]})]}),!n&&l.status!=="uploading"&&l.status!=="error"?o.jsx(Ky,{className:"media-card-open"}):null]});return o.jsxs(pr.div,{className:`media-card media-card--${c}${l.status==="error"?" media-card--error":""}`,layout:!0,initial:{opacity:0,scale:.985,y:4},animate:{opacity:1,scale:1,y:0},children:[c==="image"&&!d?o.jsx(gbe,{src:u,children:f}):f,i?o.jsx("button",{type:"button",className:"media-card-remove","aria-label":r("media.remove",{name:l.name??r("media.attachment")}),onClick:()=>i(l.id),children:o.jsx(Ba,{})}):null]},l.id)})}),o.jsx(Ru,{children:s?o.jsx(K1t,{appName:e,item:s,onClose:()=>a(null)}):null})]})}function K1t({appName:e,item:t,onClose:n}){const{t:i}=Te("conversation"),r=p.useMemo(()=>KEe(t,e),[e,t]),s=mU(t.mimeType),[a,l]=p.useState(""),[c,u]=p.useState(s==="text"||s==="markdown"),[d,f]=p.useState("");return p.useEffect(()=>{const h=m=>{m.key==="Escape"&&n()};return window.addEventListener("keydown",h),()=>window.removeEventListener("keydown",h)},[n]),p.useEffect(()=>{if(s!=="text"&&s!=="markdown")return;const h=new AbortController;return u(!0),f(""),fetch(r,{signal:h.signal}).then(m=>{if(!m.ok)throw new Error(`HTTP ${m.status}`);return m.text()}).then(l).catch(m=>{h.signal.aborted||f(m instanceof Error?m.message:String(m))}).finally(()=>{h.signal.aborted||u(!1)}),()=>h.abort()},[s,r]),o.jsx(pr.div,{className:"media-viewer-backdrop",role:"dialog","aria-modal":"true","aria-label":i("media.previewDialog",{name:t.name??i("media.attachment")}),initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},onMouseDown:h=>{h.target===h.currentTarget&&n()},children:o.jsxs(pr.div,{className:"media-viewer",initial:{opacity:0,y:18,scale:.985},animate:{opacity:1,y:0,scale:1},exit:{opacity:0,y:10,scale:.99},transition:{type:"spring",stiffness:420,damping:30},children:[o.jsxs("header",{className:"media-viewer-header",children:[o.jsxs("div",{children:[o.jsx("strong",{children:t.name??i("media.attachment")}),o.jsxs("span",{children:[WEe(t),t.sizeBytes?` · ${GEe(t.sizeBytes)}`:""]})]}),o.jsxs("nav",{children:[o.jsx("a",{href:r,download:t.name,"aria-label":i("media.download"),children:o.jsx(Yj,{})}),o.jsx("button",{type:"button",onClick:n,"aria-label":i("media.close"),children:o.jsx(Ba,{})})]})]}),o.jsxs("div",{className:`media-viewer-body media-viewer-body--${s}`,children:[s==="image"?o.jsx("img",{src:r,alt:t.name??i("media.image")}):null,s==="video"?o.jsx("div",{className:"media-viewer-video-wrapper",children:o.jsx("video",{src:r,controls:!0,autoPlay:!0,playsInline:!0,preload:"auto",className:"media-viewer-video"})}):null,s==="pdf"?o.jsx("iframe",{src:r,title:t.name??"PDF"}):null,c?o.jsxs("div",{className:"media-viewer-loading",children:[o.jsx(fi,{})," ",i("media.reading")]}):null,!c&&d?o.jsx("div",{className:"media-viewer-loading",children:i("media.loadFailed",{error:d})}):null,!c&&s==="markdown"?o.jsx("div",{className:"media-document",children:o.jsx(Bu,{text:a})}):null,!c&&s==="text"?o.jsx("pre",{className:"media-document media-document--plain",children:a}):null]})]})})}function LY(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"10.25",cy:"10.25",r:"6.25"}),o.jsx("path",{d:"M4.15 10.25h12.2M10.25 4c1.65 1.72 2.5 3.8 2.5 6.25s-.85 4.53-2.5 6.25M10.25 4c-1.65 1.72-2.5 3.8-2.5 6.25s.85 4.53 2.5 6.25M14.8 14.8 20 20"})]})}function X1t(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"3.25",y:"5.25",width:"15.5",height:"13.5",rx:"2.25"}),o.jsx("circle",{cx:"8.1",cy:"9.3",r:"1.35"}),o.jsx("path",{d:"m4.7 16.5 3.65-3.7 2.45 2.25 2.2-2.2 4.35 4.1"}),o.jsx("path",{d:"m19.4 2.75.48 1.37 1.37.48-1.37.48-.48 1.37-.48-1.37-1.37-.48 1.37-.48.48-1.37Z",fill:"currentColor",stroke:"none"})]})}function gU(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{className:"video-generate-icon__body",d:"M3.25 9h17.5v7.35a2.4 2.4 0 0 1-2.4 2.4H5.65a2.4 2.4 0 0 1-2.4-2.4V9Z"}),o.jsxs("g",{className:"video-generate-icon__clapper",children:[o.jsx("path",{d:"M3.25 9V7.65a2.4 2.4 0 0 1 2.4-2.4h12.7a2.4 2.4 0 0 1 2.4 2.4V9H3.25Z"}),o.jsx("path",{d:"M6.75 5.25 9.3 9M12 5.25 14.55 9M17.25 5.25 19.8 9"})]}),o.jsx("path",{d:"m10.25 11.45 4 2.55-4 2.55v-5.1Z"})]})}function Y1t(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M4.25 5.25h15.5v10.5H4.25zM8.25 19.75h7.5M12 15.75v4"}),o.jsx("path",{d:"m7.25 12.75 2.35-2.4 2.15 1.65 3.4-3.6 1.6 1.55"}),o.jsx("circle",{cx:"7.25",cy:"8.4",r:".7",fill:"currentColor",stroke:"none"})]})}function Z1t(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5 7.4c0-1.55 3.13-2.8 7-2.8s7 1.25 7 2.8-3.13 2.8-7 2.8-7-1.25-7-2.8Z"}),o.jsx("path",{d:"M5 7.4v4.55c0 1.55 3.13 2.8 7 2.8s7-1.25 7-2.8V7.4M5 11.95v4.55c0 1.55 3.13 2.8 7 2.8s7-1.25 7-2.8v-4.55"}),o.jsx("path",{d:"M8.2 12.25h.01M8.2 16.8h.01"})]})}function J1t(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M4.25 4.25h4.5v15.5h-4.5zM8.75 5.75h5v14h-5zM13.75 4.25h4.1v10.25h-4.1z"}),o.jsx("path",{d:"M5.75 7h1.5M10.25 8.25h2M10.25 11h2M15.15 7h1.3"}),o.jsx("circle",{cx:"17.45",cy:"17.35",r:"2.45"}),o.jsx("path",{d:"m19.25 19.15 1.55 1.55"})]})}function ewt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M4.25 6.25h6.25c1 0 1.5.55 1.5 1.45v11.05c0-.9-.5-1.45-1.5-1.45H4.25V6.25Z"}),o.jsx("path",{d:"M19.75 9.1v8.2H13.5c-1 0-1.5.55-1.5 1.45V7.7c0-.9.5-1.45 1.5-1.45h2.15"}),o.jsx("path",{d:"m19 3.2.58 1.62 1.62.58-1.62.58L19 7.6l-.58-1.62-1.62-.58 1.62-.58L19 3.2Z",fill:"currentColor",stroke:"none"})]})}function twt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"m4.2 8.4 1.15 10.2h13.3L19.8 8.4"}),o.jsx("path",{d:"M4.2 8.4h15.6L17.9 5H6.1L4.2 8.4Z"}),o.jsx("path",{d:"M7.2 12.2c1.1-1 2.25 1.25 3.4.25 1.05-.9 2.15 1.3 3.3.25"}),o.jsx("path",{d:"m8.2 15.1 1.45 1.35 1.45-1.35M13.55 16.45h2.35"})]})}function nwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"6",cy:"6.25",r:"2.25"}),o.jsx("circle",{cx:"18",cy:"6.25",r:"2.25"}),o.jsx("circle",{cx:"12",cy:"17.75",r:"2.25"}),o.jsx("path",{d:"m7.7 7.75 2.7 7.55M16.3 7.75l-2.7 7.55M8.25 6.25h7.5"})]})}function $Y(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"9",cy:"8",r:"3"}),o.jsx("path",{d:"M3.75 18.75c.45-3.05 2.2-4.65 5.25-4.65s4.8 1.6 5.25 4.65"}),o.jsx("path",{d:"M17.75 4.25v5.5M15 7h5.5M16 13.25h4.25M18.125 11.125v4.25"})]})}function iwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"4",y:"4.25",width:"16",height:"5",rx:"1.5"}),o.jsx("rect",{x:"4",y:"14.75",width:"16",height:"5",rx:"1.5"}),o.jsx("path",{d:"M7.25 6.75h.01M7.25 17.25h.01M10 6.75h6.5M10 17.25h6.5"})]})}function rwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M6 3.75h8l4 4v12.5H6V3.75Z"}),o.jsx("path",{d:"M14 3.75v4h4M8.75 11h6.5M8.75 14.25h6.5M8.75 17.5h4"})]})}function FY(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"3.75",y:"4.5",width:"16.5",height:"15",rx:"2.5"}),o.jsx("path",{d:"m7.5 9 2.75 2.5L7.5 14M12.5 14h4"}),o.jsx("path",{d:"M3.75 7.5h16.5",opacity:".62"})]})}function bU(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m6 3.25 4.5 4.75L6 12.75"})})}function swt({definition:e,label:t,done:n,open:i,onToggle:r}){const{t:s}=Te("conversation"),a=e.icon,l=n?e.doneLabel:e.runningLabel,c=t??s(`blocks.tools.${e.name}.${n?"done":"running"}`,{defaultValue:l});return o.jsxs("button",{type:"button",className:`builtin-tool-head${n?" is-done":" is-running"}`,"data-tool-tone":e.tone,onClick:r,"aria-expanded":i,children:[o.jsx("span",{className:"builtin-tool-icon","aria-hidden":"true",children:o.jsx(a,{})}),n?o.jsx("span",{className:"builtin-tool-label",children:c}):o.jsx(xn,{className:"builtin-tool-label",duration:2.4,spread:18,"aria-live":"polite",children:c}),o.jsx(bU,{className:`builtin-tool-chevron${i?" is-open":""}`})]})}function cc(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:void 0}function kn(e){return typeof e=="string"?e:""}function BY(e){return typeof e=="number"&&Number.isFinite(e)?e:0}function Vc(e){return Array.isArray(e)?e:[]}function t$(e){let t=e;if(typeof t=="string")try{t=JSON.parse(t)}catch{return{}}const n=cc(t)??{};return cc(n.result)??n}function lI(e){if(typeof e=="string")try{return lI(JSON.parse(e))}catch{return e}const t=cc(e);if(!t)return"";const n=cc(t.result);return kn(t.error)||kn(t.message)||kn(n==null?void 0:n.error)||kn(n==null?void 0:n.message)}function awt(e){if(e.kind==="tool")return"tool";if(e.kind==="knowledge_base")return"knowledge_base";const t=cc(e.metadata),n=kn(t==null?void 0:t.source_type).toLowerCase(),i=kn(e.source).toLowerCase();return n==="skillhub"||i.startsWith("skill_hub:")?"skill_hub":"skill_space"}const XEe={tool:"Tools",knowledge:"AgentKit Knowledge Base",skillCenter:"AgentKit Skill Center",unknownSource:"Unknown source",unnamedResource:"Unnamed resource",unnamedAgent:"Unnamed agent"};function owt(e,t){return e==="veadk_builtin_tools"?t.tool:e==="agentkit_knowledge"?t.knowledge:e.startsWith("skill_hub:")?`Skill Hub ${e.slice(10)}`:e.startsWith("skill_space:")?`${t.skillCenter} ${e.slice(12)}`:e||t.unknownSource}function lwt(e){return e==="veadk_builtin_tools"?"tool":e==="agentkit_knowledge"?"knowledge_base":e.startsWith("skill_hub:")?"skill_hub":"skill_space"}function cwt(e,t=XEe){const n=t$(e),i=cc(n.capabilities)??{},r=Vc(n.resources).flatMap(a=>{const l=cc(a);if(!l)return[];const c=l.kind==="tool"?"tool":l.kind==="knowledge_base"?"knowledge_base":"skill";return[{ref:kn(l.ref),kind:c,category:awt(l),name:kn(l.name)||kn(l.ref)||t.unnamedResource,description:kn(l.description),source:kn(l.source),version:kn(l.version)}]}),s=Vc(n.sources).flatMap(a=>{const l=cc(a);if(!l)return[];const c=kn(l.source),u=kn(l.status),d=u==="error"?"error":u==="skipped"?"skipped":"ok";return[{source:c,category:lwt(c),label:owt(c,t),status:d,count:BY(l.count),message:kn(l.message),searchKeywords:Vc(l.search_keywords).map(kn).filter(Boolean)}]});return{collectionId:kn(n.collection_id),capabilities:{googleAdkVersion:kn(i.google_adk_version),agentTypes:Vc(i.agent_types).map(kn).filter(Boolean),maxOrchestrationDepth:BY(i.max_orchestration_depth)},resources:r,sources:s,counts:{all:r.length,skill_hub:r.filter(a=>a.category==="skill_hub").length,skill_space:r.filter(a=>a.category==="skill_space").length,knowledge_base:r.filter(a=>a.category==="knowledge_base").length,tool:r.filter(a=>a.category==="tool").length}}}function uwt(e,t){return{resources:e.resources.filter(n=>n.category===t),sources:e.sources.filter(n=>n.category===t)}}function YEe(e,t,n=XEe){const i=t$(e),r=t$(t),s=new Map(Vc(r.results).flatMap(d=>{const f=cc(d),h=kn(f==null?void 0:f.name);return f&&h?[[h,f]]:[]})),a=Vc(i.agents).flatMap(d=>{const f=cc(d),h=kn(f==null?void 0:f.name);return f&&h?[f]:[]}),l=new Set(a.map(d=>kn(d.name))),c=[...s.entries()].filter(([d])=>!l.has(d)).map(([d])=>({name:d})),u=[...a,...c].map(d=>{const f=kn(d.name),h=Vc(d.nodes).flatMap(E=>{const C=cc(E);return C?[C]:[]}),m=kn(d.root_node),g=h.find(E=>kn(E.id)===m),b=h.filter(E=>kn(E.id)!==m).map(E=>({id:kn(E.id)||n.unnamedAgent,type:kn(E.type)||"llm",description:kn(E.description)})),v=s.get(f),y=kn(v==null?void 0:v.status),x=y==="failed"?"failed":y==="completed"?"completed":"running",O=UY(v==null?void 0:v.resources),w=O.length>0?O:UY(h.flatMap(E=>Vc(E.resources))),k=QY(v==null?void 0:v.python_tools),S=k.length>0?k:QY(h.flatMap(E=>Vc(E.python_tools)));return{name:f,description:kn(v==null?void 0:v.description)||kn(g==null?void 0:g.description)||kn(d.task),task:kn(d.task),rootType:kn(v==null?void 0:v.root_type)||kn(g==null?void 0:g.type)||"llm",nodeCount:h.length,subAgentCount:b.length,resourceCount:w.length,pythonToolCount:S.length,skills:w.filter(E=>E.kind==="skill"),knowledgeBases:w.filter(E=>E.kind==="knowledge_base"),builtinTools:w.filter(E=>E.kind==="tool"),pythonTools:S,subAgents:b,status:x,output:kn(v==null?void 0:v.output),error:kn(v==null?void 0:v.error)}});return{collectionId:kn(r.collection_id)||kn(i.collection_id),agents:u,completedCount:u.filter(d=>d.status==="completed").length,failedCount:u.filter(d=>d.status==="failed").length,runningCount:u.filter(d=>d.status==="running").length}}function dwt(e,t){return!!lI(t)||YEe(e,t).failedCount>0}function UY(e){const t=new Set;return Vc(e).flatMap(n=>{const i=cc(n),r=kn(i?i.ref:n);if(!r||t.has(r))return[];t.add(r);const s=kn(i==null?void 0:i.kind),a=s==="tool"||r.startsWith("veadk_tool:")?"tool":s==="knowledge_base"||r.startsWith("agentkit_kb:")?"knowledge_base":"skill",l=r.split(":");return[{ref:r,kind:a,name:kn(i==null?void 0:i.name)||l[l.length-1]||r,description:kn(i==null?void 0:i.description),version:kn(i==null?void 0:i.version),source:kn(i==null?void 0:i.source)}]})}function QY(e){const t=new Set;return Vc(e).flatMap(n=>{const i=cc(n),r=kn(i==null?void 0:i.name),s=kn(i==null?void 0:i.code),a=`${r}\0${s}`;return!i||!r||t.has(a)?[]:(t.add(a),[{name:r,description:kn(i.description),code:s,entrypoint:kn(i.entrypoint)||r,dependencies:Vc(i.dependencies).map(kn).filter(Boolean)}])})}function fwt({branch:e}){return o.jsxs("div",{className:`branch-compare__body${e.status==="running"?" is-streaming":""}`,"aria-live":"polite",children:[e.content?o.jsx(Bu,{text:e.content,streaming:e.status==="running"}):null,e.status==="running"?o.jsx("span",{className:"branch-compare__caret","aria-hidden":"true"}):null,e.error?o.jsx("p",{className:"branch-compare__error",children:e.error}):null]})}function hwt({args:e,response:t,status:n,onBranchSelect:i}){const{t:r}=Te("conversation"),s=p.useMemo(()=>mye(e,t,n),[e,t,n]),[a,l]=p.useState(0);return o.jsxs("section",{className:"branch-compare","aria-label":r("blocks.branchCompare.ariaLabel"),children:[o.jsx("div",{className:"branch-compare__tabs",role:"tablist","aria-label":r("blocks.branchCompare.selectDirection"),children:s.branches.map((c,u)=>o.jsx("button",{className:`branch-compare__tab${a===u?" is-active":""}`,type:"button",role:"tab","aria-selected":a===u,"aria-controls":`branch-compare-panel-${u}`,onClick:()=>l(u),children:o.jsx(ba,{color:"info",size:"sm",variant:"soft",children:c.label})},`${c.label}:${u}`))}),o.jsx("div",{className:"branch-compare__branches",children:s.branches.map((c,u)=>o.jsxs("article",{className:`branch-compare__branch${a===u?" is-active":""}`,id:`branch-compare-panel-${u}`,role:"tabpanel",children:[o.jsx("header",{className:"branch-compare__head",children:o.jsx(ba,{color:"info",size:"sm",variant:"soft",children:c.label})}),o.jsx(fwt,{branch:c}),o.jsx("footer",{className:"branch-compare__footer",children:o.jsx(Ht,{type:"button",color:"info",variant:"ghost",size:"sm",pill:!1,disabled:c.status!=="completed",onClick:()=>i==null?void 0:i(c),children:r("blocks.branchCompare.continue")})})]},`${c.label}:${u}`))})]})}function ZEe({controlled:e,default:t,name:n,state:i="value"}){const{current:r}=p.useRef(e!==void 0),[s,a]=p.useState(t),l=r?e:s,c=p.useCallback(u=>{r||a(u)},[]);return[l,c]}const yU={...Fb},zY={};function Ab(e,t){const n=p.useRef(zY);return n.current===zY&&(n.current=e(t)),n}const qM=yU.useInsertionEffect,pwt=qM&&qM!==yU.useLayoutEffect?qM:e=>e();function Xa(e){const t=Ab(mwt).current;return t.next=e,pwt(t.effect),t.trampoline}function mwt(){const e={next:void 0,callback:gwt,trampoline:(...t)=>{var n;return(n=e.callback)==null?void 0:n.call(e,...t)},effect:()=>{e.callback=e.next}};return e}function gwt(){}const bwt=()=>{},bl=typeof document<"u"?p.useLayoutEffect:bwt,JEe=p.createContext({register:()=>{},unregister:()=>{},subscribeMapChange:()=>()=>{},nextIndexRef:{current:0}});function ywt(){return p.useContext(JEe)}function vwt(e){const{children:t,elementsRef:n,labelsRef:i,onMapChange:r}=e,s=Xa(r),[,a]=p.useState(!1),l=Ab(wwt).current,c=Ab(xwt).current,u=p.useRef(0),d=p.useRef(!0),f=p.useRef([]),h=p.useRef(null),m=Xa(()=>{d.current||(d.current=!0,a(k=>!k))}),g=Xa((k,S)=>{c.set(k,S),m()}),b=Xa(k=>{c.delete(k),m()}),v=Xa(k=>{const S=new Map;return n.current.length=0,i&&(i.current.length=0),k.forEach(E=>{var C,N;S.set(E.element,{...E.registration.metadata??{},index:E.index}),n.current[E.index]=E.element,i&&(i.current[E.index]=E.registration.label!==void 0?E.registration.label:((N=(C=E.registration.textRef)==null?void 0:C.current)==null?void 0:N.textContent)??E.element.textContent)}),u.current=n.current.length,S});function y(k){var C;if((C=h.current)==null||C.disconnect(),h.current=null,typeof MutationObserver!="function"||k.length<2)return;const S=new MutationObserver(N=>{if(!kwt(N))return;let _=null;for(const j of k)if(j.isConnected){if(_&&eCe(_,j)>0){S.disconnect(),m();return}_=j}});h.current=S;const E=new Set;for(let N=1;NS.observe(N,{childList:!0}))}const x=Xa(()=>{const[k,S]=Owt(c),E=v(k);y(S),f.current=k,d.current=!1,l.forEach(C=>C(E)),s(E)});bl(()=>(d.current||v(f.current),()=>{n.current=[],i&&(i.current=[])}),[n,i,v]),bl(()=>{d.current&&x()}),bl(()=>()=>{var k;(k=h.current)==null||k.disconnect(),d.current=!0},[]);const O=Xa(k=>(l.add(k),()=>{l.delete(k)})),w=p.useMemo(()=>({register:g,unregister:b,subscribeMapChange:O,nextIndexRef:u}),[g,b,O,u]);return o.jsx(JEe.Provider,{value:w,children:t})}function xwt(){return new Map}function wwt(){return new Set}function Owt(e){const t=new Set,n=[],i=[];e.forEach((s,a)=>{if(!a.isConnected)return;const l=s.index,c={index:l??-1,element:a,registration:s};l===null?i.push(c):l>=0&&(t.add(l),n.push(c))});let r=0;return i.sort((s,a)=>eCe(s.element,a.element)),i.forEach(s=>{for(;t.has(r);)r+=1;s.index=r,n.push(s),r+=1}),t.size>0&&n.sort((s,a)=>s.index-a.index),[n,i.map(s=>s.element)]}function Swt(e,t){let n=e.parentElement;for(;n&&!n.contains(t);)n=n.parentElement;return n}function kwt(e){for(const t of e)for(let n=0;ns.searchParams.append("args[]",a)),`${t} error #${i}; visit ${s} for the full message.`}}const EE=Ewt("https://base-ui.com/production-error","Base UI"),tCe=p.createContext(void 0);function nCe(){const e=p.useContext(tCe);if(e===void 0)throw new Error(EE(10));return e}function ON(e,t,n,i){const r=Ab(iCe).current;return Twt(r,e,t,n,i)&&rCe(r,[e,t,n,i]),r.callback}function Cwt(e){const t=Ab(iCe).current;return Awt(t,e)&&rCe(t,e),t.callback}function iCe(){return{callback:null,cleanup:null,refs:[]}}function Twt(e,t,n,i,r){return e.refs[0]!==t||e.refs[1]!==n||e.refs[2]!==i||e.refs[3]!==r}function Awt(e,t){return e.refs.length!==t.length||e.refs.some((n,i)=>n!==t[i])}function rCe(e,t){if(e.refs=t,t.every(n=>n==null)){e.callback=null;return}e.callback=n=>{if(e.cleanup&&(e.cleanup(),e.cleanup=null),n!=null){const i=Array(t.length).fill(null);for(let r=0;r{for(let r=0;r=e}function VY(e){if(!p.isValidElement(e))return null;const t=e,n=t.props;return(Nwt(19)?n==null?void 0:n.ref:t.ref)??null}function n$(e,t){if(e&&!t)return e;if(!e&&t)return t;if(e||t)return{...e,...t}}const jwt=Object.freeze([]),Ry=Object.freeze({});function Rwt(e,t){const n={};for(const i in e){const r=e[i];if(t!=null&&t.hasOwnProperty(i)){const s=t[i](r);s!=null&&Object.assign(n,s);continue}r===!0?n[`data-${i.toLowerCase()}`]="":r&&(n[`data-${i.toLowerCase()}`]=r.toString())}return n}function Iwt(e,t){return typeof e=="function"?e(t):e}function sCe(e,t){return typeof e=="function"?e(t):e}const vU={};function xU(e,t,n,i,r){if(!n&&!i&&!e)return SN(t);let s=SN(e);return t&&(s=OA(s,t)),n&&(s=OA(s,n)),i&&(s=OA(s,i)),s}function Pwt(e){if(e.length===0)return vU;if(e.length===1)return SN(e[0]);let t=SN(e[0]);for(let n=1;n=65&&r<=90&&(typeof t=="function"||typeof t>"u")}function wU(e){return typeof e=="function"}function oCe(e,t){return wU(e)?e(t):e??vU}function Lwt(e,t){return t?e?(...n)=>{const i=n[0];if(uCe(i)){const s=i;kN(s);const a=t(...n);return s.baseUIHandlerPrevented||e==null||e(...n),a}const r=t(...n);return e==null||e(...n),r}:lCe(t):e}function lCe(e){return e&&((...t)=>{const n=t[0];return uCe(n)&&kN(n),e(...t)})}function kN(e){return e.preventBaseUIHandler=()=>{e.baseUIHandlerPrevented=!0},e}function cCe(e,t){return t?e?t+" "+e:t:e}function uCe(e){return e!=null&&typeof e=="object"&&"nativeEvent"in e}function CE(e,t,n={}){const i=t.render,r=$wt(t,n);if(n.enabled===!1)return null;const s=n.state??Ry;return Uwt(e,i,r,s)}function $wt(e,t={}){const{className:n,style:i,render:r}=e,{state:s=Ry,ref:a,props:l,stateAttributesMapping:c,enabled:u=!0}=t,d=u?Iwt(n,s):void 0,f=u?sCe(i,s):void 0,h=u?Rwt(s,c):Ry,m=u&&l?Fwt(l):void 0,g=u?n$(h,m)??{}:Ry;return typeof document<"u"&&(u?Array.isArray(a)?g.ref=Cwt([g.ref,VY(r),...a]):g.ref=ON(g.ref,VY(r),a):ON(null,null)),u?(d!==void 0&&(g.className=cCe(g.className,d)),f!==void 0&&(g.style=n$(g.style,f)),g):Ry}function Fwt(e){return Array.isArray(e)?Pwt(e):xU(void 0,e)}const Bwt=Symbol.for("react.lazy");function Uwt(e,t,n,i){if(t){if(typeof t=="function")return t(n,i);const r=xU(n,t.props);r.ref=n.ref;let s=t;return(s==null?void 0:s.$$typeof)===Bwt&&(s=p.Children.toArray(t)[0]),p.cloneElement(s,r)}if(e&&typeof e=="string")return Qwt(e,n);throw new Error(EE(8))}function Qwt(e,t){return e==="button"?p.createElement("button",{type:"button",...t,key:t.key}):e==="img"?p.createElement("img",{alt:"",...t,key:t.key}):p.createElement(e,t)}const zwt={value:()=>null},dCe=p.forwardRef(function(t,n){const{render:i,className:r,disabled:s=!1,hiddenUntilFound:a,keepMounted:l,loopFocus:c,onValueChange:u,multiple:d=!1,orientation:f="vertical",value:h,defaultValue:m,style:g,...b}=t,v=p.useMemo(()=>{if(h===void 0)return m??[]},[h,m]),y=p.useRef([]),[x,O]=ZEe({controlled:h,default:v,name:"Accordion",state:"value"}),w=Xa((C,N,_)=>{if(d)if(N){const j=x.slice();if(j.push(C),u==null||u(j,_),_.isCanceled)return;O(j)}else{const j=x.filter(A=>A!==C);if(u==null||u(j,_),_.isCanceled)return;O(j)}else{const j=x[0]===C?[]:[C];if(u==null||u(j,_),_.isCanceled)return;O(j)}}),k=p.useMemo(()=>({value:x,disabled:s,orientation:f}),[x,s,f]),S=p.useMemo(()=>({disabled:s,handleValueChange:w,hiddenUntilFound:a??!1,keepMounted:l??!1,state:k,value:x}),[s,w,a,l,k,x]),E=CE("div",t,{state:k,ref:n,props:b,stateAttributesMapping:zwt});return o.jsx(tCe.Provider,{value:S,children:o.jsx(vwt,{elementsRef:y,children:E})})});let HY=0;function Vwt(e,t="mui"){const[n,i]=p.useState(e),r=e||n;return p.useEffect(()=>{n==null&&(HY+=1,i(`${t}-${HY}`))},[n,t]),r}const qY=yU.useId;function Hwt(e,t){if(qY!==void 0){const n=qY();return`${t}-${n}`}return Vwt(e,t)}function i$(e){return Hwt(e,"base-ui")}const qwt="none",Wwt="trigger-press";function fCe(e,t,n,i){let r=!1,s=!1;const a=Ry;return{reason:e,event:t??new Event("base-ui"),cancel(){r=!0},allowPropagation(){s=!0},get isCanceled(){return r},get isPropagationAllowed(){return s},trigger:n,...a}}function Gwt(e){p.useEffect(e,jwt)}const MT=null;let Kwt=class{constructor(){ki(this,"callbacks",[]);ki(this,"callbacksCount",0);ki(this,"nextId",1);ki(this,"startId",1);ki(this,"isScheduled",!1);ki(this,"tick",t=>{var r;this.isScheduled=!1;const n=this.callbacks,i=this.callbacksCount;if(this.callbacks=[],this.callbacksCount=0,this.startId=this.nextId,i>0)for(let s=0;s=this.callbacks.length||(this.callbacks[n]=null,this.callbacksCount-=1)}},LT=new Kwt;class Kl{constructor(){ki(this,"currentId",MT);ki(this,"cancel",()=>{this.currentId!==MT&&(LT.cancel(this.currentId),this.currentId=MT)});ki(this,"disposeEffect",()=>this.cancel)}static create(){return new Kl}static request(t){return LT.request(t)}static cancel(t){return LT.cancel(t)}request(t){this.cancel(),this.currentId=LT.request(()=>{this.currentId=MT,t()})}}function Xwt(){const e=Ab(Kl.create).current;return Gwt(e.disposeEffect),e}function Ywt(e,t=!1,n=!1){const[i,r]=p.useState(e&&t?"idle":void 0),[s,a]=p.useState(e);return e&&!s&&(a(!0),r("starting")),!e&&s&&i!=="ending"&&!n&&r("ending"),!e&&!s&&i==="ending"&&r(void 0),bl(()=>{if(!e&&s&&i!=="ending"&&n){const l=Kl.request(()=>{r("ending")});return()=>{Kl.cancel(l)}}},[e,s,i,n]),bl(()=>{if(!e||t)return;const l=Kl.request(()=>{r(void 0)});return()=>{Kl.cancel(l)}},[t,e]),bl(()=>{if(!e||!t)return;e&&s&&i!=="idle"&&r("starting");const l=Kl.request(()=>{r("idle")});return()=>{Kl.cancel(l)}},[t,e,s,i]),{mounted:s,setMounted:a,transitionStatus:i}}function Zwt(e){const{open:t,defaultOpen:n,onOpenChange:i,disabled:r}=e,[s,a]=ZEe({controlled:t,default:n,name:"Collapsible",state:"open"}),{mounted:l,setMounted:c,transitionStatus:u}=Ywt(s,!0,!0),d=i$(),[f,h]=p.useState(),m=f===null?void 0:f??d,g=Xa(b=>{const v=!s,y=fCe(Wwt,b.nativeEvent);i(v,y),!y.isCanceled&&a(v)});return p.useMemo(()=>({defaultPanelId:d,disabled:r,handleTrigger:g,mounted:l,open:s,panelId:m,setMounted:c,setOpen:a,setPanelIdState:h,transitionStatus:u}),[d,r,g,l,s,m,c,a,h,u])}const hCe=p.createContext(void 0);function pCe(){const e=p.useContext(hCe);if(e===void 0)throw new Error(EE(15));return e}function Jwt(e={}){const{guess:t,label:n,metadata:i,textRef:r,index:s}=e,{register:a,unregister:l,subscribeMapChange:c,nextIndexRef:u}=ywt(),d=p.useRef(-1),[f,h]=p.useState(s==null&&t?()=>{if(d.current===-1){const v=u.current;u.current+=1,d.current=v}return d.current}:-1),m=s??f,g=p.useRef(null),b=p.useCallback(v=>{const y=g.current;y&&l(y),g.current=v,v&&a(v,{metadata:i??null,index:s??null,label:n,textRef:r})},[s,a,l,i,n,r]);return bl(()=>{if(s==null)return c(v=>{var x;const y=g.current?(x=v.get(g.current))==null?void 0:x.index:null;y!=null&&h(y)})},[s,c]),{ref:b,index:m}}const mCe=p.createContext(void 0);function OU(){const e=p.useContext(mCe);if(e===void 0)throw new Error(EE(9));return e}let WY=function(e){return e.startingStyle="data-starting-style",e.endingStyle="data-ending-style",e}({});const eOt={"data-starting-style":""},tOt={"data-ending-style":""},nOt={transitionStatus(e){return e==="starting"?eOt:e==="ending"?tOt:null}};let SU=function(e){return e.open="data-open",e.closed="data-closed",e[e.startingStyle=WY.startingStyle]="startingStyle",e[e.endingStyle=WY.endingStyle]="endingStyle",e}({}),iOt=function(e){return e.panelOpen="data-panel-open",e}({});const rOt={[SU.open]:""},sOt={[SU.closed]:""},aOt={open(e){return e?{[iOt.panelOpen]:""}:null}},oOt={open(e){return e?rOt:sOt}};let lOt=function(e){return e.index="data-index",e.disabled="data-disabled",e.open="data-open",e}({});const kU={...oOt,index:e=>({[lOt.index]:String(e)}),...nOt,value:()=>null},gCe=p.forwardRef(function(t,n){const{className:i,disabled:r=!1,onOpenChange:s,render:a,value:l,style:c,...u}=t,{ref:d,index:f}=Jwt(),h=ON(n,d),{disabled:m,handleValueChange:g,state:b,value:v}=nCe(),y=i$(),x=l??y,O=r||m,w=v.indexOf(x)!==-1,k=Xa((R,L)=>{s==null||s(R,L),!L.isCanceled&&g(x,R,L)}),S=Zwt({open:w,onOpenChange:k,disabled:O}),E=p.useMemo(()=>({open:S.open,disabled:S.disabled,transitionStatus:S.transitionStatus}),[S.open,S.disabled,S.transitionStatus]),C=p.useMemo(()=>({...S,onOpenChange:k,state:E}),[S,E,k]),N=p.useMemo(()=>({...b,hidden:!w&&!S.mounted,index:f,disabled:O,open:w}),[S.mounted,O,f,w,b]),_=i$(),[j,A]=p.useState(),F=j===null?void 0:j??_,T=p.useMemo(()=>({defaultTriggerId:_,open:w,state:N,setTriggerId:A,triggerId:F}),[_,w,N,A,F]),P=CE("div",t,{state:N,ref:h,props:u,stateAttributesMapping:kU});return o.jsx(hCe.Provider,{value:C,children:o.jsx(mCe.Provider,{value:T,children:P})})}),bCe=p.forwardRef(function(t,n){const{render:i,className:r,style:s,...a}=t,{state:l}=OU();return CE("h3",t,{state:l,ref:n,props:a,stateAttributesMapping:kU})}),cOt=p.createContext(void 0);function uOt(e=!1){const t=p.useContext(cOt);if(t===void 0&&!e)throw new Error(EE(16));return t}function dOt(e){const{focusableWhenDisabled:t,disabled:n,composite:i=!1,tabIndex:r=0,isNativeButton:s}=e,a=i&&t!==!1,l=i&&t===!1;return{props:p.useMemo(()=>{const u={onKeyDown(d){n&&t&&d.key!=="Tab"&&d.preventDefault()}};return i||(u.tabIndex=r,!s&&n&&(u.tabIndex=t?r:-1)),(s&&(t||a)||!s&&n)&&(u["aria-disabled"]=n),s&&(!t||l)&&(u.disabled=n),u},[i,n,t,a,l,s,r])}}function WM(e,t,{detail:n=0}={}){e.dispatchEvent(new(yo(e)).PointerEvent("click",{bubbles:!0,cancelable:!0,composed:!0,detail:n,shiftKey:t.shiftKey,ctrlKey:t.ctrlKey,altKey:t.altKey,metaKey:t.metaKey}))}function fOt(e={}){const{disabled:t=!1,focusableWhenDisabled:n,tabIndex:i=0,native:r=!0,composite:s}=e,a=p.useRef(null),l=uOt(!0),c=s??l!==void 0,{props:u}=dOt({focusableWhenDisabled:n,disabled:t,composite:c,tabIndex:i,isNativeButton:r}),d=p.useCallback(()=>{const m=a.current;GM(m)&&c&&t&&u.disabled===void 0&&m.disabled&&(m.disabled=!1)},[t,u.disabled,c]);bl(d,[d]);const f=p.useCallback((m={})=>{const{onClick:g,onMouseDown:b,onKeyUp:v,onKeyDown:y,onPointerDown:x,...O}=m;return xU({onClick(w){if(t){w.preventDefault();return}g==null||g(w)},onMouseDown(w){t||b==null||b(w)},onKeyDown(w){if(t||(kN(w),y==null||y(w),w.baseUIHandlerPrevented))return;const k=w.target===w.currentTarget,S=w.currentTarget,E=GM(S),C=!r&&hOt(S),N=k&&(r?E:!C),_=w.key==="Enter",j=w.key===" ",A=S.getAttribute("role"),F=(A==null?void 0:A.startsWith("menuitem"))||A==="option"||A==="gridcell";if(k&&c&&j){if(w.defaultPrevented&&F)return;w.preventDefault(),(!r||E)&&(w.preventBaseUIHandler(),WM(S,w));return}if(!N||r||!j&&!_){k&&C&&j&&w.preventDefault();return}w.defaultPrevented||(w.preventDefault(),_&&(w.preventBaseUIHandler(),WM(S,w)))},onKeyUp(w){if(!t){if(kN(w),v==null||v(w),w.target===w.currentTarget&&r&&c&&GM(w.currentTarget)&&w.key===" "){w.preventDefault();return}w.baseUIHandlerPrevented||w.target===w.currentTarget&&!r&&!c&&!w.defaultPrevented&&w.key===" "&&(w.preventBaseUIHandler(),WM(w.currentTarget,w))}},onPointerDown(w){if(t){w.preventDefault();return}x==null||x(w)}},r?{type:"button"}:{role:"button"},u,O)},[t,u,c,r]),h=Xa(m=>{a.current=m,d()});return{getButtonProps:f,buttonRef:h}}function GM(e){return Kd(e)&&e.tagName==="BUTTON"}function hOt(e){return Kd(e)&&e.tagName==="A"&&!!e.href}const yCe=p.forwardRef(function(t,n){const{disabled:i,className:r,id:s,render:a,nativeButton:l=!0,style:c,...u}=t,{panelId:d,open:f,handleTrigger:h,disabled:m}=pCe(),g=i||m,{getButtonProps:b,buttonRef:v}=fOt({disabled:g,focusableWhenDisabled:!0,native:l}),{defaultTriggerId:y,state:x,setTriggerId:O}=OU(),w=s||void 0,k=w??y;return bl(()=>(O(C=>w??(C===null?void 0:C)),()=>{O(C=>C===w?null:C)}),[w,O]),CE("button",t,{state:x,ref:[n,v],props:[{"aria-controls":f?d:void 0,"aria-expanded":f,id:k,onClick:h},u,b],stateAttributesMapping:aOt})});function pOt(e,t,n,i){return e.addEventListener(t,n,i),()=>{e.removeEventListener(t,n,i)}}function mOt(e){const t=Ab(gOt,e).current;return t.next=e,bl(t.effect),t}function gOt(e){const t={current:e,next:e,effect:()=>{t.current=t.next}};return t}function bOt(e){return e==null?e:"current"in e?e.current:e}function vCe(e,t=!1){const n=Xwt();return Xa((i,r=null)=>{n.cancel();const s=bOt(e);if(s==null)return;const a=s,l=()=>{Li.flushSync(i)};if(typeof a.getAnimations!="function"||globalThis.BASE_UI_ANIMATIONS_DISABLED){i();return}function c(){Promise.all(a.getAnimations().map(u=>u.finished)).then(()=>{r!=null&&r.aborted||l()},()=>{if(r!=null&&r.aborted)return;if(a.getAnimations().some(d=>d.pending||d.playState!=="finished")){c();return}l()})}if(t){const u="data-starting-style";if(!a.hasAttribute(u)){n.request(c);return}const d=new MutationObserver(()=>{a.hasAttribute(u)||(d.disconnect(),c())});d.observe(a,{attributes:!0,attributeFilter:[u]}),r==null||r.addEventListener("abort",()=>d.disconnect(),{once:!0});return}n.request(c)})}function yOt(e){const{enabled:t=!0,open:n,ref:i,onComplete:r}=e,s=Xa(r),a=vCe(i,n);p.useEffect(()=>{if(!t)return;const l=new AbortController;return a(s,l.signal),()=>{l.abort()}},[t,n,s,a])}const K1={height:void 0,width:void 0};function vOt(e){const{externalRef:t,hiddenUntilFound:n,id:i,keepMounted:r,mounted:s,onOpenChange:a,open:l,setMounted:c,setOpen:u,transitionStatus:d}=e,f=p.useRef(null),h=p.useRef(null),[m,g]=p.useState(K1),b=p.useRef(K1),v=p.useRef(!1),y=p.useRef(l),x=p.useRef(!1),[O,w]=p.useState(!1),k=p.useRef(null),S=ON(t,f),E=mOt(l),C=vCe(f),N=!l&&!s,_=O?"idle":d,j=l&&(y.current||x.current),A=!l&&s&&h.current==="css-animation"&&m.height===void 0&&m.width===void 0?b.current:m,F=n&&N&&h.current!=="css-animation",T=Xa((U,I=!0)=>{I&&(b.current=U),g(U)}),P=Xa(()=>{var U;(U=k.current)==null||U.call(k),k.current=null}),R=Xa(U=>{P(),k.current=()=>{k.current=null,U()}}),L=Xa(()=>{l&&s&&h.current==="css-animation"&&(x.current=!0)});bl(()=>{!O||d==="starting"||w(!1)},[O,d]),p.useEffect(()=>()=>{L(),P()},[L,P]),bl(()=>{const U=f.current;if(!U)return;!l&&k.current&&P();const I=xOt(U,j);if(h.current=I,l&&d==="idle"&&y.current&&I==="css-animation"){b.current=F0(U);return}if(l&&d==="starting"){const Q=v.current;if(v.current=!1,I==="none"){T(F0(U)),w(!0);return}if(I==="css-transition"){const ee=wOt(U);if(T(F0(U)),!Q)return ee;const le=$T(U,"transition-duration","0s");return R(le),w(!0),ee}T(F0(U));const q=$T(U,"animation-name","none");if(!Q){q();return}const B=$T(U,"animation-duration","0s");q(),R(B),w(!0);return}if(!l&&s&&(d==="idle"||d==="starting")){if(y.current=!1,x.current=!1,I==="none"){T(K1,!1),c(!1);return}T(F0(U));return}if(d!=="ending")return;if(I==="none"){c(!1);return}const H=F0(U);if(!(H.height>0||H.width>0)){c(!1);return}T(H),I==="css-animation"&&$T(U,"animation-name","none")()},[s,l,P,T,c,R,j,d]),yOt({enabled:l&&s&&_==="idle",open:!0,ref:f,onComplete(){l&&T(K1,!1)}}),p.useEffect(()=>{if(l||!s||_!=="ending"||!f.current)return;const I=new AbortController;let H=-1;function K(){E.current||(c(!1),T(K1,!1))}return H=Kl.request(()=>{C(K,I.signal)}),()=>{Kl.cancel(H),I.abort()}},[E,s,l,_,C,T,c]),bl(()=>{const U=f.current;!U||!n||!N||U.setAttribute("hidden","until-found")},[N,n]),p.useEffect(function(){const I=f.current;if(!I)return;function H(K){const Q=fCe(qwt,K);a(!0,Q),!Q.isCanceled&&(v.current=!0,u(!0))}return pOt(I,"beforematch",H)},[a,u]);const M=r||n||s||l;return{height:A.height,props:{...F?{[SU.startingStyle]:""}:void 0,hidden:N,id:i},ref:S,shouldPreventOpenAnimation:j,shouldRender:M,transitionStatus:_,width:A.width}}function F0(e){return{height:e.scrollHeight,width:e.scrollWidth}}function xOt(e,t){const n=yo(e).getComputedStyle(e),i=(n.animationName.split(",").map(s=>s.trim()).some(s=>s!==""&&s!=="none")||t)&&GY(n.animationDuration),r=GY(n.transitionDuration);return i&&r||r?"css-transition":i?"css-animation":"none"}function GY(e){return e.split(",").map(t=>t.trim()).some(t=>t!==""&&Number.parseFloat(t)>0)}function $T(e,t,n){const i=e.style.getPropertyValue(t),r=e.style.getPropertyPriority(t);return e.style.setProperty(t,n),()=>{if(i===""){e.style.removeProperty(t);return}e.style.setProperty(t,i,r)}}function wOt(e){const t={"justify-content":e.style.justifyContent,"align-items":e.style.alignItems,"align-content":e.style.alignContent,"justify-items":e.style.justifyItems};Object.keys(t).forEach(r=>{e.style.setProperty(r,"initial","important")});function n(){Object.entries(t).forEach(([r,s])=>{if(s===""){e.style.removeProperty(r);return}e.style.setProperty(r,s)})}const i=Kl.request(n);return()=>{Kl.cancel(i),n()}}let KY=function(e){return e.accordionPanelHeight="--accordion-panel-height",e.accordionPanelWidth="--accordion-panel-width",e}({});const xCe=p.forwardRef(function(t,n){const{className:i,hiddenUntilFound:r,keepMounted:s,id:a,render:l,style:c,...u}=t,{hiddenUntilFound:d,keepMounted:f}=nCe(),{defaultPanelId:h,mounted:m,onOpenChange:g,open:b,setMounted:v,setOpen:y,setPanelIdState:x,transitionStatus:O}=pCe(),w=r??d,k=s??f,S=a||void 0,E=a??h;bl(()=>(x(I=>S??(I===null?void 0:I)),()=>{x(I=>I===S?null:I)}),[S,x]);const{height:C,props:N,ref:_,shouldPreventOpenAnimation:j,shouldRender:A,transitionStatus:F,width:T}=vOt({externalRef:n,hiddenUntilFound:w,id:E,keepMounted:k,mounted:m,onOpenChange:g,open:b,setMounted:v,setOpen:y,transitionStatus:O}),{state:P,triggerId:R}=OU(),L={...P,transitionStatus:F},M=sCe(c,L),U=CE("div",{...t,style:void 0},{state:L,ref:_,props:[N,{"aria-labelledby":R,role:"region",style:{[KY.accordionPanelHeight]:C===void 0?"auto":`${C}px`,[KY.accordionPanelWidth]:T===void 0?"auto":`${T}px`}},u,M?{style:M}:void 0,j?{style:{animationName:"none"}}:void 0],stateAttributesMapping:kU});return A?U:null}),OOt=(e,t)=>{const n=e.currentTarget,i={x:e.clientX,y:e.clientY},r=SOt(i,n.getBoundingClientRect()),s=kOt(i,r),a=EOt(t.getBoundingClientRect());return TOt([...s,...a])};function SOt(e,t){const n=Math.abs(t.top-e.y),i=Math.abs(t.bottom-e.y),r=Math.abs(t.right-e.x),s=Math.abs(t.left-e.x);switch(Math.min(n,i,r,s)){case s:return"left";case r:return"right";case n:return"top";case i:return"bottom";default:throw new Error("unreachable")}}function kOt(e,t,n=5){const i=[];switch(t){case"top":i.push({x:e.x-n,y:e.y+n},{x:e.x+n,y:e.y+n});break;case"bottom":i.push({x:e.x-n,y:e.y-n},{x:e.x+n,y:e.y-n});break;case"left":i.push({x:e.x+n,y:e.y-n},{x:e.x+n,y:e.y+n});break;case"right":i.push({x:e.x-n,y:e.y-n},{x:e.x-n,y:e.y+n});break}return i}function EOt(e){const{top:t,right:n,bottom:i,left:r}=e;return[{x:r,y:t},{x:n,y:t},{x:n,y:i},{x:r,y:i}]}function COt(e,t){const{x:n,y:i}=e;let r=!1;for(let s=0,a=t.length-1;si!=h>i&&n<(f-u)*(i-d)/(h-d)+u&&(r=!r)}return r}function TOt(e){const t=e.slice();return t.sort((n,i)=>n.xi.x?1:n.yi.y?1:0),AOt(t)}function AOt(e){if(e.length<=1)return e.slice();const t=[];for(let i=0;i=2;){const s=t[t.length-1],a=t[t.length-2];if((s.x-a.x)*(r.y-a.y)>=(s.y-a.y)*(r.x-a.x))t.pop();else break}t.push(r)}t.pop();const n=[];for(let i=e.length-1;i>=0;i--){const r=e[i];for(;n.length>=2;){const s=n[n.length-1],a=n[n.length-2];if((s.x-a.x)*(r.y-a.y)>=(s.y-a.y)*(r.x-a.x))n.pop();else break}n.push(r)}return n.pop(),t.length===1&&n.length===1&&t[0].x===n[0].x&&t[0].y===n[0].y?t:t.concat(n)}const _Ot="_Transition_1wdpp_1",NOt="_Popover_1wdpp_3",wCe={Transition:_Ot,Popover:NOt},OCe=p.createContext(null),cI=()=>{const e=p.use(OCe);if(!e)throw new Error("Popover components must be wrapped in ");return e},im=({open:e,onOpenChange:t,showOnHover:n=!1,hoverOpenDelay:i=150,children:r})=>{const[s,a]=p.useState(!1),[l,c]=p.useState(!1),u=p.useRef(null),d=p.useRef(null),f=p.useRef(void 0),h=p.useRef(!1),m=p.useRef(!1),g=e??s,[b,v]=p.useState(!1);o7(()=>v(!1),b?500:null);const y=xm(t),x=xm(E=>{var C,N;clearTimeout(f.current),g!==E&&(E||(c(!1),n&&h.current&&((C=u.current)==null||C.focus()),h.current=!1),(N=y.current)==null||N.call(y,E),a(E),n&&v(E))}),O=p.useCallback(E=>{x.current(E)},[x]),w=p.useCallback(()=>{f.current=setTimeout(()=>O(!0),i)},[O,i]),k=p.useCallback(()=>{clearTimeout(f.current)},[]);p.useEffect(()=>()=>{clearTimeout(f.current)},[]);const S=p.useMemo(()=>({open:g,setOpen:O,shake:l,setShake:c,showOnHover:n,temporarilyPreventClickToClose:b,onTriggerEnter:w,onTriggerLeave:k,isPointerInTransitRef:m,triggerRef:u,contentRef:d,hoverOpenFocusedWithTab:h}),[g,O,l,c,n,b,h,m,w,k]);return o.jsx(OCe,{value:S,children:o.jsx(hxe,{open:g,onOpenChange:O,modal:!1,children:r})})},jOt=({children:e,onPointerDown:t,onClick:n})=>{const{setOpen:i,showOnHover:r,temporarilyPreventClickToClose:s,onTriggerEnter:a,onTriggerLeave:l,isPointerInTransitRef:c,triggerRef:u,contentRef:d}=cI(),f=p.useRef(!1),h=b=>{!(b.currentTarget.nodeName.toLocaleLowerCase()==="a")&&s&&(b.preventDefault(),b.stopPropagation())},m=b=>{b.pointerType!=="touch"&&!f.current&&!c.current&&(a(),f.current=!0)},g=()=>{f.current&&(l(),f.current=!1)};return o.jsx(pxe,{asChild:!0,ref:u,onPointerDown:b=>{h(b),t==null||t(b)},onClick:b=>{h(b),n==null||n(b)},onPointerMove:r?m:void 0,onPointerLeave:r?g:void 0,onFocus:r?()=>i(!0):void 0,onBlur:r?()=>{setTimeout(()=>{var b;(b=d.current)!=null&&b.contains(document.activeElement)||i(!1)},50)}:void 0,children:e})},SCe=({children:e,avoidCollisions:t,width:n,minWidth:i,maxWidth:r,side:s,sideOffset:a=8,align:l,alignOffset:c,translucent:u,className:d,autoFocus:f=!0})=>{const{showOnHover:h,shake:m,contentRef:g}=cI(),b=v=>{const y=g.current;if(y&&v.target===y&&v.key==="Tab"&&v.shiftKey){v.preventDefault(),v.stopPropagation();const x=Aye(y),O=x[x.length-1];O==null||O.focus()}};return p.useEffect(()=>{const v=g.current;!v||!f||v!=null&&v.contains(document.activeElement)||h||v.focus({preventScroll:!0})},[g,h,f]),o.jsx(gxe,{forceMount:!0,ref:g,className:pi(wCe.Popover,d),style:Wb({"popover-width":n,"popover-min-width":i,"popover-max-width":r}),onCloseAutoFocus:h?ih:void 0,"data-animate":m?"shake":void 0,"data-translucent":u?"true":void 0,side:s,sideOffset:a,align:l,alignOffset:c??(l==="center"?0:-5),avoidCollisions:t??!0,hideWhenDetached:!0,collisionPadding:20,onOpenAutoFocus:ih,onEscapeKeyDown:ih,onKeyDown:b,children:e})},ROt=e=>{const{setOpen:t,triggerRef:n,contentRef:i,isPointerInTransitRef:r,hoverOpenFocusedWithTab:s}=cI(),[a,l]=p.useState(null),c=p.useCallback(()=>{l(null),r.current=!1},[r]),u=p.useCallback((d,f)=>{const h=OOt(d,f);l(h),r.current=!0},[r]);return p.useEffect(()=>()=>c(),[c]),p.useEffect(()=>{const d=n.current,f=i.current;if(!d||!f)return;const h=g=>u(g,f),m=g=>u(g,d);return d.addEventListener("pointerleave",h),f.addEventListener("pointerleave",m),()=>{d.removeEventListener("pointerleave",h),f.removeEventListener("pointerleave",m)}},[i,n,u,c]),p.useEffect(()=>{if(!a)return;const d=f=>{const h=n.current,m=i.current,g=f.target,b={x:f.clientX,y:f.clientY},v=(h==null?void 0:h.contains(g))||(m==null?void 0:m.contains(g)),y=!COt(b,a),x=g.hasAttribute("aria-haspopup");v?c():(y||x)&&(c(),t(!1))};return document.addEventListener("pointermove",d),()=>document.removeEventListener("pointermove",d)},[a,t,c,n,i]),p.useEffect(()=>{const d=f=>{if(i.current&&f.key==="Tab"&&!f.shiftKey){const[h]=Aye(i.current);h&&(f.preventDefault(),h.focus(),s.current=!0,document.removeEventListener("keydown",d))}};return document.addEventListener("keydown",d),()=>{document.removeEventListener("keydown",d)}},[i,s]),o.jsx(SCe,{...e})},IOt=e=>{const{open:t,showOnHover:n,setOpen:i}=cI();return Yk(t,()=>{i(!1)}),o.jsx(mxe,{forceMount:!0,children:o.jsx(Lx,{enterDuration:600,exitDuration:300,className:wCe.Transition,disableAnimations:!0,children:t&&(n?o.jsx(ROt,{...e},"popover-hover"):o.jsx(SCe,{...e},"popover"))})})};im.Trigger=jOt;im.Content=IOt;const POt=["skill_hub","skill_space","knowledge_base","tool"];function kCe(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m4 6 4 4 4-4"})})}function ECe({label:e}){return o.jsx("div",{className:"create-agent-card__loading",role:"status","aria-label":e,children:[0,1,2].map(t=>o.jsxs("div",{className:"create-agent-card__skeleton-row","aria-hidden":"true",children:[o.jsx("span",{}),o.jsx("span",{})]},t))})}function DOt(e,t){return e.kind==="tool"?t("blocks.createAgents.builtinTool"):e.kind==="knowledge_base"?t("blocks.createAgents.knowledgeBase"):e.source.startsWith("skill_hub:")?"Skill Hub":e.source.startsWith("skill_space:")?t("blocks.createAgents.skillCenter"):"Skill"}function KM({label:e,resources:t}){const{t:n}=Te("conversation");return t.length===0?null:o.jsxs("section",{className:"create-agent-card__popover-section",children:[o.jsx("h4",{children:e}),o.jsx("div",{className:"create-agent-card__popover-list",children:t.map(i=>o.jsxs("div",{className:"create-agent-card__popover-item",children:[o.jsxs("div",{className:"create-agent-card__popover-item-heading",children:[o.jsx("strong",{children:i.name}),o.jsx(ba,{color:"secondary",size:"sm",variant:"soft",children:DOt(i,n)})]}),i.description?o.jsx("p",{children:i.description}):null]},i.ref))})]})}function MOt({tools:e}){const{t}=Te("conversation");return e.length===0?null:o.jsxs("section",{className:"create-agent-card__popover-section",children:[o.jsx("h4",{children:t("blocks.createAgents.selfAuthoredTools")}),o.jsx(dCe,{children:e.map((n,i)=>o.jsxs(gCe,{className:"create-agent-card__python-tool",value:`${n.name}:${i}`,children:[o.jsx(bCe,{className:"create-agent-card__python-tool-header",children:o.jsxs(yCe,{className:"create-agent-card__python-tool-trigger",children:[o.jsxs("span",{children:[o.jsx("strong",{children:n.name}),n.description?o.jsx("small",{children:n.description}):null]}),o.jsxs("span",{className:"create-agent-card__python-tool-meta",children:[o.jsx(ba,{color:"secondary",size:"sm",variant:"soft",children:t("blocks.createAgents.selfAuthoredTools")}),o.jsx(kCe,{className:"create-agent-card__python-tool-chevron"})]})]})}),o.jsxs(xCe,{className:"create-agent-card__python-tool-panel",children:[n.dependencies.length>0?o.jsx("div",{className:"create-agent-card__python-tool-dependencies",children:t("blocks.createAgents.dependencies",{items:n.dependencies.join(", ")})}):null,o.jsx("pre",{tabIndex:0,"aria-label":t("blocks.createAgents.fullCode",{name:n.name}),children:o.jsx("code",{children:n.code})})]})]},`${n.name}:${i}`))})]})}function LOt({agents:e}){const{t}=Te("conversation");return e.length===0?null:o.jsxs("section",{className:"create-agent-card__popover-section",children:[o.jsx("h4",{children:t("blocks.createAgents.subAgents")}),o.jsx("div",{className:"create-agent-card__popover-list",children:e.map(n=>o.jsxs("div",{className:"create-agent-card__popover-item",children:[o.jsxs("div",{className:"create-agent-card__popover-item-heading",children:[o.jsx("strong",{children:n.id}),o.jsx(ba,{color:"secondary",size:"sm",variant:"soft",children:t(`blocks.createAgents.agentTypes.${n.type}`,{defaultValue:n.type})})]}),n.description?o.jsx("p",{children:n.description}):null]},n.id))})]})}function FT({label:e,count:t,icon:n,children:i}){const{t:r}=Te("conversation"),s=o.jsxs("button",{className:"create-agent-card__resource-metric",type:"button",disabled:t===0,"aria-label":r("blocks.createAgents.itemCount",{label:e,count:t}),children:[n,o.jsx("span",{children:t})]});return t===0?s:o.jsxs(im,{showOnHover:!0,hoverOpenDelay:120,children:[o.jsx(im.Trigger,{children:s}),o.jsx(im.Content,{side:"top",align:"start",minWidth:"auto",maxWidth:360,className:"create-agent-card__resource-popover",children:i})]})}function $Ot({response:e,status:t}){const{t:n}=Te("conversation"),i=p.useMemo(()=>({tool:n("blocks.createAgents.sourceLabels.tool"),knowledge:n("blocks.createAgents.sourceLabels.knowledge"),skillCenter:n("blocks.createAgents.sourceLabels.skillCenter"),unknownSource:n("blocks.createAgents.sourceLabels.unknown"),unnamedResource:n("blocks.createAgents.unnamedResource"),unnamedAgent:n("blocks.createAgents.unnamedAgent")}),[n]),r=p.useMemo(()=>cwt(e,i),[i,e]),s=p.useMemo(()=>POt.map(c=>{const u=uwt(r,c);return{value:c,label:n(`blocks.createAgents.categories.${c}`),...u,searchKeywords:[...new Set(u.sources.flatMap(d=>d.searchKeywords))]}}),[r,n]),a=t==="failed",l=a?lI(e):"";return o.jsx("section",{className:"create-agent-tool-card","aria-label":n("blocks.createAgents.collectionAria"),children:t==="running"?o.jsx(ECe,{label:n("blocks.createAgents.retrieving")}):a?o.jsxs("div",{className:"create-agent-card__message is-error",role:"alert",children:[o.jsx("span",{className:"create-agent-card__message-title",children:n("blocks.createAgents.retrievalFailed")}),o.jsx("span",{children:l||n("blocks.createAgents.checkConfig")})]}):o.jsx(dCe,{className:"create-agent-card__accordion",children:s.map(c=>o.jsxs(gCe,{className:"create-agent-card__accordion-item",value:c.value,children:[o.jsx(bCe,{className:"create-agent-card__accordion-header",children:o.jsxs(yCe,{className:"create-agent-card__accordion-trigger",children:[o.jsx("span",{children:c.label}),o.jsxs("span",{className:"create-agent-card__accordion-meta",children:[o.jsx(ba,{color:"secondary",size:"sm",variant:"soft",children:c.sources.length===0?c.value==="skill_hub"?n("blocks.createAgents.notSearched"):n("blocks.createAgents.notConfigured"):c.resources.length}),o.jsx(kCe,{className:"create-agent-card__accordion-chevron"})]})]})}),o.jsx(xCe,{className:"create-agent-card__accordion-content",children:o.jsxs("div",{className:"create-agent-card__accordion-scroll",role:"region","aria-label":n("blocks.createAgents.resourceList",{label:c.label}),tabIndex:0,children:[c.value==="skill_hub"&&c.searchKeywords.length>0?o.jsxs("div",{className:"create-agent-card__search-keywords",children:[o.jsx("span",{children:n("blocks.createAgents.searchKeywords")}),o.jsx("span",{children:c.searchKeywords.join("、")})]}):null,c.resources.length>0?o.jsx("div",{className:"create-agent-card__resource-list",children:c.resources.map(u=>o.jsx("div",{className:"create-agent-card__resource",children:o.jsxs("div",{className:"create-agent-card__resource-main",children:[o.jsxs("div",{className:"create-agent-card__resource-title",children:[o.jsx("span",{className:"create-agent-card__resource-name",children:u.name}),u.version?o.jsx(ba,{className:"create-agent-card__resource-version",color:"secondary",size:"sm",variant:"soft",children:u.version}):null]}),u.description?o.jsx("p",{children:u.description}):null]})},u.ref))}):o.jsxs("div",{className:"create-agent-card__empty-category",children:[o.jsx("p",{children:c.sources.length===0?c.value==="skill_hub"?n("blocks.createAgents.skillHubSkipped"):n("blocks.createAgents.sourceSkipped",{label:c.label}):n("blocks.createAgents.noResources")}),c.sources.filter(u=>u.message).map(u=>o.jsx("p",{className:"create-agent-card__raw-source-error",children:u.message},u.source))]})]})})]},c.value))},r.collectionId||"collected-resources")})}function FOt({args:e,response:t,status:n}){const{t:i}=Te("conversation"),r=p.useMemo(()=>({tool:i("blocks.createAgents.sourceLabels.tool"),knowledge:i("blocks.createAgents.sourceLabels.knowledge"),skillCenter:i("blocks.createAgents.sourceLabels.skillCenter"),unknownSource:i("blocks.createAgents.sourceLabels.unknown"),unnamedResource:i("blocks.createAgents.unnamedResource"),unnamedAgent:i("blocks.createAgents.unnamedAgent")}),[i]),s=p.useMemo(()=>YEe(e,t,r),[e,r,t]),a=n==="failed"?lI(t):"";return o.jsxs("section",{className:"create-agent-tool-card is-agent-results","aria-label":i("blocks.createAgents.resultAria"),children:[a?o.jsxs("div",{className:"create-agent-card__message is-error",role:"alert",children:[o.jsx("span",{className:"create-agent-card__message-title",children:i("blocks.createAgents.creationFailed")}),o.jsx("span",{children:a})]}):null,s.agents.length>0?o.jsx("div",{className:"create-agent-card__agent-grid",children:s.agents.map(l=>{const c=n==="failed"?"failed":l.status,u=l.error||c==="failed"&&a,d=l.builtinTools.length+l.pythonTools.length;return o.jsxs(RB,{className:`create-agent-card__agent-card${u?" is-error":""}`,children:[o.jsx(IB,{leading:o.jsx(Xv,{seed:l.name}),title:l.name,titleText:l.name,status:o.jsx(ba,{color:"secondary",size:"sm",variant:"soft",children:i(`blocks.createAgents.agentTypes.${l.rootType}`,{defaultValue:l.rootType})})}),l.description?o.jsx(PB,{children:l.description}):null,u?o.jsx("div",{className:"create-agent-card__agent-result is-error",role:"alert",children:u}):null,o.jsxs("div",{className:"create-agent-card__agent-resources","aria-label":i("blocks.createAgents.agentResources",{name:l.name}),children:[o.jsx(FT,{label:i("blocks.createAgents.skill"),count:l.skills.length,icon:o.jsx(K2,{"aria-hidden":"true"}),children:o.jsx(KM,{label:i("blocks.createAgents.skill"),resources:l.skills})}),o.jsx(FT,{label:i("blocks.createAgents.knowledgeBase"),count:l.knowledgeBases.length,icon:o.jsx(Kxe,{"aria-hidden":"true"}),children:o.jsx(KM,{label:i("blocks.createAgents.knowledgeBase"),resources:l.knowledgeBases})}),o.jsxs(FT,{label:i("blocks.createAgents.toolsLabel"),count:d,icon:o.jsx(ZFe,{"aria-hidden":"true"}),children:[o.jsx(KM,{label:i("blocks.createAgents.builtinTool"),resources:l.builtinTools}),o.jsx(MOt,{tools:l.pythonTools})]}),o.jsx(FT,{label:i("blocks.createAgents.subAgents"),count:l.subAgentCount,icon:o.jsx(e7e,{"aria-hidden":"true"}),children:o.jsx(LOt,{agents:l.subAgents})})]})]},l.name)})}):n==="running"?o.jsx(ECe,{label:i("blocks.createAgents.creating")}):o.jsxs("div",{className:"create-agent-card__message",children:[o.jsx("span",{className:"create-agent-card__message-title",children:i("blocks.createAgents.noAgents")}),o.jsx("span",{children:i("blocks.createAgents.noAgentResult")})]})]})}const BOt={web_search:{name:"web_search",runningLabel:"Searching the web",doneLabel:"Web search complete",tone:"search",icon:LY},link_reader:{name:"link_reader",runningLabel:"Reading webpage",doneLabel:"Webpage read complete",tone:"search",icon:LY},run_code:{name:"run_code",runningLabel:"Running code in the AgentKit sandbox",doneLabel:"Code execution completed in the AgentKit sandbox",tone:"sandbox",icon:twt},list_envs:{name:"list_envs",runningLabel:"Checking available environments",doneLabel:"Available environments loaded",tone:"resources",icon:iwt},get_env_manifest:{name:"get_env_manifest",runningLabel:"Loading the environment manifest",doneLabel:"Environment manifest loaded",tone:"knowledge",icon:rwt},execute_in_sandbox:{name:"execute_in_sandbox",runningLabel:"Running a command in the environment",doneLabel:"Command completed in the environment",tone:"sandbox",icon:FY},delegate_to_codex_sandbox:{name:"delegate_to_codex_sandbox",runningLabel:"Codex Sandbox is running",doneLabel:"Codex Sandbox completed",failedLabel:"Codex Sandbox failed",tone:"sandbox",icon:FY},image_generate:{name:"image_generate",runningLabel:"Generating image",doneLabel:"Image generated",tone:"image",icon:X1t},video_generate:{name:"video_generate",runningLabel:"Generating video",doneLabel:"Video generated",tone:"video",icon:gU},ppt_generate:{name:"ppt_generate",runningLabel:"Generating presentation",doneLabel:"Presentation generated",tone:"presentation",icon:Y1t},load_memory:{name:"load_memory",runningLabel:"Searching long-term memory",doneLabel:"Memory search complete",tone:"memory",icon:Z1t},load_knowledgebase:{name:"load_knowledgebase",runningLabel:"Searching the knowledge base",doneLabel:"Knowledge base search complete",tone:"knowledge",icon:J1t},load_skill:{name:"load_skill",runningLabel:"Loading skill",doneLabel:"Skill loaded",tone:"skill",icon:ewt},collect_resources:{name:"collect_resources",runningLabel:"Collecting available resources",doneLabel:"Resource collection complete",failedLabel:"Resource collection failed",tone:"resources",icon:nwt,detailRenderer:$Ot},create_agents:{name:"create_agents",runningLabel:"Creating and running agents",doneLabel:"Agent creation complete",failedLabel:"Agent creation failed",tone:"agent",icon:$Y,detailRenderer:FOt},branch_compare:{name:"branch_compare",runningLabel:"",doneLabel:"",failedLabel:"",tone:"search",icon:$Y,detailRenderer:hwt,hideHeader:!0}};function UOt(e){return BOt[e]}function CCe(e){return o.jsx("svg",{viewBox:"0 0 111 117",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M0 5.6016C7.82288e-05 0.621244 6.02226 -1.87314 9.54395 1.64847L40.1289 32.2334L68.5732 3.7891C69.5834 2.77903 70.9533 2.21099 72.3818 2.21097H82.7031C82.7917 2.20658 82.8806 2.20414 82.9697 2.20414H104.775C109.574 2.20427 111.977 8.00691 108.584 11.4004L64.916 55.0664C64.3075 55.8528 63.9436 56.7647 63.8242 57.6993C63.7142 56.4884 63.1964 55.3069 62.2695 54.3799L45.4082 37.5186H45.4072L40.124 32.2354L17.832 54.5284C16.7671 55.5933 16.2416 56.993 16.2549 58.3887C16.2417 59.7843 16.7672 61.1842 17.832 62.2491L39.9287 84.3467L9.54395 114.733C6.0223 118.255 0.000223474 115.761 0 110.78V5.6016ZM63.8018 58.8702C63.8962 59.9086 64.2936 60.9229 64.9961 61.7735L108.591 105.368C111.984 108.762 109.58 114.564 104.781 114.564H94.4336C94.3543 114.568 94.274 114.569 94.1934 114.569H72.3877C70.9592 114.569 69.5892 114.002 68.5791 112.992L39.9336 84.3467L58.4531 65.8282L58.4453 65.8203L62.2695 61.9981C63.1476 61.12 63.6567 60.0136 63.8018 58.8702Z",fill:"currentColor"})})}function QOt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M6 3h8l4 4v14H6Z"}),o.jsx("path",{d:"M14 3v5h5"}),o.jsx("path",{d:"m10 12-2 2 2 2M14 12l2 2-2 2"})]})}function zOt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M12 3 19 6v5c0 4.6-2.8 7.8-7 10-4.2-2.2-7-5.4-7-10V6l7-3Z"}),o.jsx("path",{d:"m9 12 2 2 4-4"})]})}function VOt(e,t){const n=new Map(e.map(a=>[a.path,a.content])),i=new Map(t.map(a=>[a.path,a.content])),r=new Set([...n.keys(),...i.keys()]),s=[];for(const a of[...r].sort((l,c)=>l.localeCompare(c))){const l=n.get(a),c=i.get(a);l!==c&&s.push({path:a,status:l===void 0?"added":c===void 0?"deleted":"modified",before:l??"",after:c??""})}return s}function Vm(e){return{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:1.75,strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,...e}}function TCe(e){return o.jsx("svg",{...Vm(e),children:o.jsx("path",{d:"m9 7-5 5 5 5M15 7l5 5-5 5M13.5 4l-3 16"})})}function XM(e){return o.jsx("svg",{...Vm(e),children:o.jsx("path",{d:"M6.5 3.75h7l4 4V20.25h-11zM13.5 3.75v4h4M9 12h6M9 15.5h4.5"})})}function HOt(e){return o.jsx("svg",{...Vm(e),children:o.jsx("path",{d:"M3.75 7.25h6l1.75 2h8.75v9.25H3.75zM3.75 7.25V5.5h5l1.5 1.75"})})}function qOt(e){return o.jsx("svg",{...Vm(e),children:o.jsx("path",{d:"m9 5 7 7-7 7"})})}function ACe(e){return o.jsx("svg",{...Vm(e),children:o.jsx("path",{d:"m6.5 6.5 11 11M17.5 6.5l-11 11"})})}function WOt(e){return o.jsxs("svg",{...Vm(e),children:[o.jsx("circle",{cx:"12",cy:"12",r:"3.25"}),o.jsx("path",{d:"M12 2.75v2M12 19.25v2M2.75 12h2M19.25 12h2M5.45 5.45l1.4 1.4M17.15 17.15l1.4 1.4M18.55 5.45l-1.4 1.4M6.85 17.15l-1.4 1.4"})]})}function GOt(e){return o.jsx("svg",{...Vm(e),children:o.jsx("path",{d:"M19.25 15.25A8 8 0 0 1 8.75 4.75a8 8 0 1 0 10.5 10.5Z"})})}function KOt(e){return o.jsxs("svg",{...Vm(e),children:[o.jsx("path",{d:"M19.25 8.25V4.5l-1.8 1.8a7.5 7.5 0 1 0 1.8 7.65"}),o.jsx("path",{d:"M19.25 4.5H15.5"})]})}const XOt=p.lazy(()=>Md(()=>Promise.resolve().then(()=>rje),void 0)),YOt=p.lazy(()=>Md(()=>import("../chunks/CodeDiffEditor-CswQsFp-.js"),[])),_Ce="veadk-code-workspace-theme";function ZOt(e){const t={name:"",children:new Map};for(const n of e){const i=n.path.split("/").filter(Boolean);let r=t;i.forEach((s,a)=>{let l=r.children.get(s);l||(l={name:s,children:new Map},r.children.set(s,l)),a===i.length-1&&(l.path=n.path),r=l})}return t}function JOt(e,t=!1){return[...e.children.values()].sort((n,i)=>{const r=n.children.size>0&&n.path===void 0,s=i.children.size>0&&i.path===void 0;return r!==s?t?r?1:-1:r?-1:1:n.name.localeCompare(i.name)})}function eSt(){if(typeof window>"u")return"light";try{return window.localStorage.getItem(_Ce)==="dark"?"dark":"light"}catch{return"light"}}function tSt(e){return e===""?0:e.split(` -`).length}function WS({project:e,open:t,onClose:n,onChange:i,readOnly:r=!1,comparison:s}){var F;const{t:a}=Te("workspaceTools"),l=p.useId(),c=p.useRef(null),u=p.useRef(null),d=p.useRef(n),[f,h]=p.useState(eSt),m=p.useMemo(()=>s?VOt(s.baseProject.files,e.files):[],[s,e.files]),g=p.useMemo(()=>s?m.map(T=>({path:T.path,content:T.status==="deleted"?T.before:T.after})):e.files,[m,s,e.files]),b=p.useMemo(()=>new Map(m.map(T=>[T.path,T.status])),[m]),[v,y]=p.useState(((F=g[0])==null?void 0:F.path)??null),[x,O]=p.useState(new Set),w=p.useMemo(()=>ZOt(g),[g]),k=g.find(T=>T.path===v)??null,S=m.find(T=>T.path===v)??null;if(d.current=n,p.useEffect(()=>{try{window.localStorage.setItem(_Ce,f)}catch{}},[f]),p.useEffect(()=>{var L;if(!t)return;const T=document.body.style.overflow,P=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(L=u.current)==null||L.focus();const R=M=>{if(M.key==="Escape"){M.preventDefault(),d.current();return}if(M.key!=="Tab"||!c.current)return;const U=[...c.current.querySelectorAll('button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])')].filter(K=>K.offsetParent!==null);if(U.length===0)return;const I=U[0],H=U[U.length-1];M.shiftKey&&document.activeElement===I?(M.preventDefault(),H.focus()):!M.shiftKey&&document.activeElement===H&&(M.preventDefault(),I.focus())};return window.addEventListener("keydown",R),()=>{document.body.style.overflow=T,window.removeEventListener("keydown",R),P!=null&&P.isConnected&&P.focus()}},[t]),p.useEffect(()=>{k||g.length===0||y(g[0].path)},[g,k]),!t)return null;function E(T){O(P=>{const R=new Set(P);return R.has(T)?R.delete(T):R.add(T),R})}function C(T){return T?o.jsx("span",{className:`code-browser-change is-${T}`,children:a(`codeBrowser.change.${T}`)}):null}function N(T,P,R){return JOt(T,P===0).map(L=>{const M=R?`${R}/${L.name}`:L.name;if(!(L.children.size>0&&L.path===void 0)&&L.path){const H=b.get(L.path);return o.jsxs("button",{type:"button",className:`code-browser-file${v===L.path?" is-active":""}`,style:{paddingLeft:`${12+P*16}px`},onClick:()=>y(L.path??null),title:L.path,"aria-pressed":v===L.path,children:[o.jsx(XM,{}),o.jsx("span",{children:L.name}),C(H)]},M)}const I=x.has(M);return o.jsxs("div",{children:[o.jsxs("button",{type:"button",className:"code-browser-folder",style:{paddingLeft:`${10+P*16}px`},onClick:()=>E(M),"aria-expanded":!I,children:[o.jsx(qOt,{className:I?"":"is-open"}),o.jsx(HOt,{}),o.jsx("span",{children:L.name})]}),!I&&N(L,P+1,M)]},M)})}function _(T){!k||s||i({...e,files:e.files.map(P=>P.path===k.path?{...P,content:T}:P)})}const j=f==="light"?"dark":"light",A=a(s?"codeBrowser.noChanges":"codeBrowser.chooseFile");return Li.createPortal(o.jsx("div",{className:"code-browser-backdrop",onMouseDown:T=>{T.target===T.currentTarget&&n()},children:o.jsxs("section",{ref:c,className:`code-browser-dialog is-${f}`,role:"dialog","aria-modal":"true","aria-labelledby":l,children:[o.jsxs("header",{className:"code-browser-head",children:[o.jsxs("div",{className:"code-browser-title-wrap",children:[o.jsx("span",{className:"code-browser-title-icon",children:o.jsx(TCe,{})}),o.jsxs("div",{children:[o.jsx("h2",{id:l,children:a(s?"codeBrowser.compareTitle":"codeBrowser.workspaceTitle")}),o.jsx("p",{title:e.name,children:e.name||a("codeBrowser.projectFallback")})]})]}),o.jsxs("div",{className:"code-browser-head-actions",children:[o.jsx("button",{type:"button",className:"code-browser-icon-button",onClick:()=>h(j),"aria-label":a("codeBrowser.switchTheme"),title:a("codeBrowser.switchThemeTitle",{theme:a(`codeBrowser.themes.${j}`)}),children:f==="light"?o.jsx(GOt,{}):o.jsx(WOt,{})}),o.jsx("button",{ref:u,type:"button",className:"code-browser-icon-button",onClick:n,"aria-label":a("codeBrowser.closeWorkspace"),title:a("codeBrowser.close"),children:o.jsx(ACe,{})})]})]}),o.jsxs("div",{className:"code-browser-workspace",children:[o.jsxs("aside",{className:"code-browser-sidebar","aria-label":a(s?"codeBrowser.changedFiles":"codeBrowser.projectFiles"),children:[o.jsxs("div",{className:"code-browser-sidebar-head",children:[o.jsx("span",{children:a(s?"codeBrowser.changes":"codeBrowser.files")}),o.jsx("span",{children:g.length})]}),o.jsx("div",{className:"code-browser-tree",children:g.length>0?N(w,0,""):o.jsx("div",{className:"code-browser-empty",children:A})})]}),o.jsxs("main",{className:"code-browser-main",children:[o.jsx("div",{className:"code-browser-tabs",role:"tablist","aria-label":a("codeBrowser.openFiles"),children:k?o.jsxs("div",{className:"code-browser-tab",role:"tab","aria-selected":"true",children:[o.jsx(XM,{}),o.jsx("span",{children:k.path.split("/").pop()}),C(S==null?void 0:S.status)]}):null}),o.jsxs("div",{className:"code-browser-path",children:[o.jsx(XM,{}),o.jsx("span",{children:(k==null?void 0:k.path)??a("codeBrowser.noFileSelected")})]}),s?o.jsxs("div",{className:"code-browser-diff-labels","aria-label":a("codeBrowser.comparisonDirection"),children:[o.jsx("span",{children:s.baseLabel??a("codeBrowser.before")}),o.jsx("span",{children:s.targetLabel??a("codeBrowser.after")})]}):null,o.jsx("div",{className:"code-browser-editor",children:k?o.jsx(p.Suspense,{fallback:o.jsx("div",{className:"code-browser-empty",children:a("codeBrowser.loadingEditor")}),children:S?o.jsx(YOt,{before:S.before,after:S.after,path:S.path,theme:f}):o.jsx(XOt,{value:k.content,path:k.path,onChange:_,readOnly:r,theme:f})}):o.jsx("div",{className:"code-browser-empty",children:A})}),o.jsxs("footer",{className:"code-browser-statusbar",children:[o.jsx("span",{children:s?a("codeBrowser.changedFileCount",{count:m.length}):a("codeBrowser.fileCount",{count:e.files.length})}),o.jsx("span",{children:k?a("codeBrowser.lineCount",{count:tSt(k.content)}):"UTF-8"})]})]})]})]})}),document.body)}function nSt({project:e,onChange:t,className:n="",label:i}){const{t:r}=Te("workspaceTools"),[s,a]=p.useState(!1),l=i??r("codeBrowser.viewSource");return o.jsxs(o.Fragment,{children:[o.jsxs("button",{type:"button",className:`code-browser-trigger ${n}`.trim(),onClick:()=>a(!0),"aria-label":r("codeBrowser.viewSourceAria"),title:l,children:[o.jsx(TCe,{}),o.jsx("span",{children:l})]}),o.jsx(WS,{project:e,open:s,onClose:()=>a(!1),onChange:t})]})}const NCe="send_a2ui_json_to_client",iSt=28,rSt=3e3;function sSt(e,t,n){let i=t;for(let r=0;r65535?2:1}return i}function aSt(e){return e<=4?1:Math.min(18,Math.max(2,Math.ceil(e/6)))}function jCe(e,t,n,i){const[r,s]=p.useState(()=>t?"":e),a=p.useRef(r),l=p.useRef(e),c=p.useRef(null),u=p.useRef(0),d=p.useRef(n);return l.current=e,d.current=n,p.useEffect(()=>{const f=a.current,h=window.matchMedia("(prefers-reduced-motion: reduce)").matches;if(!t||h||!e.startsWith(f)){c.current!==null&&window.cancelAnimationFrame(c.current),c.current=null,f!==e&&(a.current=e,s(e));return}if(f===e||c.current!==null)return;const m=g=>{const b=l.current,v=a.current;if(!b.startsWith(v)){a.current=b,s(b),c.current=null;return}if(g-u.current{var f;(f=d.current)==null||f.call(d)},[r]),p.useEffect(()=>{r===e&&(i==null||i())},[r,i,e]),p.useEffect(()=>()=>{c.current!==null&&(window.cancelAnimationFrame(c.current),c.current=null)},[]),r}function oSt(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:o.jsx("path",{d:"M14.3 5.25a4.6 4.6 0 0 0-5.55 5.55L3.6 15.95a1.8 1.8 0 0 0 0 2.55l1.9 1.9a1.8 1.8 0 0 0 2.55 0l5.15-5.15a4.6 4.6 0 0 0 5.55-5.55l-2.9 2.9-2.45-.55-.55-2.45 2.9-2.9a4.6 4.6 0 0 0-1.45-1.45Z"})})}function lSt(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"m4.5 7 1.8 1.8L9.5 5.5"}),o.jsx("path",{d:"M12 7h7.5"}),o.jsx("path",{d:"m4.5 13 1.8 1.8 3.2-3.3"}),o.jsx("path",{d:"M12 13h7.5"}),o.jsx("path",{d:"M5 19h4"}),o.jsx("path",{d:"M12 19h7.5"})]})}function cSt(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"M5 5v7.25A3.75 3.75 0 0 0 8.75 16H19"}),o.jsx("path",{d:"m15.5 12.5 3.5 3.5-3.5 3.5"})]})}function uSt({activity:e}){const{t}=Te("conversation"),n=[["Agent Session",e.agentSessionId],["Sandbox Session",e.sandboxSessionId],["Codex Thread",e.threadId]].filter(i=>!!i[1]);return n.length?o.jsx("dl",{className:"codex-sandbox-run__identity","aria-label":t("blocks.sandboxIdentity"),children:n.map(([i,r])=>o.jsxs("div",{children:[o.jsx("dt",{children:i}),o.jsx("dd",{title:r,children:r})]},i))}):null}function dSt(e,t,n){if(e!=="load_skill"||t==null||typeof t!="object"||Array.isArray(t))return;const i=t.skill_name;if(!(typeof i!="string"||!i.trim()))return n("blocks.useSkill",{name:i.trim()})}function RCe({text:e,done:t,answerStarted:n=!1,streaming:i=!1,onStreamFrame:r}){const{t:s}=Te("conversation"),[a,l]=p.useState(!(t||n)),c=p.useRef(!1);p.useEffect(()=>{c.current||l(!(t||n))},[n,t]);const u=()=>{c.current=!0,l(g=>!g)},d=e.replace(/\r\n?/g,` +`+v+"]"}return r.pop(),s=v,x}};const Sxt={parse:gxt,stringify:Oxt};var zEe=Sxt;const kxt=2e5,Ext=new Set(["__proto__","constructor","prototype"]),Cxt=/^(?:https?:|data:|blob:|file:|javascript:|image:\/\/)/i;function Vw(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}function CN(e,t=0){if(t>30)throw new Error("ECharts option nesting is too deep");if(typeof e=="number"&&!Number.isFinite(e))throw new Error("ECharts option contains a non-finite number");if(typeof e=="string"&&Cxt.test(e.trim()))throw new Error("ECharts option contains an external resource");if(Array.isArray(e)){for(const n of e)CN(n,t+1);return}if(Vw(e))for(const[n,i]of Object.entries(e)){if(Ext.has(n))throw new Error("ECharts option contains an unsafe key");CN(i,t+1)}}function Txt(e){var i;const t=e.trim(),n=t.match(/^(?:(?:const|let|var)\s+)?option\s*=\s*([\s\S]*?)\s*;?$/);return((i=n==null?void 0:n[1])==null?void 0:i.trim())||t}function Axt(e,t){let n=1,i="",r=!1,s=!1,a=!1;for(let l=t+1;li+2)throw new Error("Invalid ECharts gradient argument count");const r=n.slice(0,i).map(_xt),s=n[i],a=n[i+1]??!1;if(!Array.isArray(s)||typeof a!="boolean")throw new Error("Invalid ECharts gradient data");return e==="linear"?{type:e,x:r[0],y:r[1],x2:r[2],y2:r[3],colorStops:s,global:a}:{type:e,x:r[0],y:r[1],r:r[2],colorStops:s,global:a}}function jxt(e,t){const n=/^(?:new\s+)?echarts\.graphic\.(LinearGradient|RadialGradient)\s*\(/;let i="",r=!1,s=!1,a=!1;for(let l=t;lkxt)throw new Error("ECharts option is too large");const n=Rxt(Txt(e));let i;try{i=zEe.parse(n)}catch(a){throw/\bfunction\s*\(|=>/.test(n)?new Error("ECharts function callbacks are not supported"):a}if(!Vw(i))throw new Error("ECharts option must be a data object");CN(i);const r={...i};r.aria={...Vw(r.aria)?r.aria:{},enabled:!0};const s=r.tooltip;return Vw(s)?r.tooltip={...s,renderMode:"richText"}:Array.isArray(s)&&(r.tooltip=s.map(a=>Vw(a)?{...a,renderMode:"richText"}:a)),t&&(r.animation=!1),r}let WM;function Pxt(){return WM??(WM=$d(()=>import("../visualizations/echarts/index-CGT341lL.js"),[]).catch(e=>{throw WM=void 0,e})),WM}function Dxt({source:e}){const{t}=Ae("conversation"),n=p.useRef(null),[i,r]=p.useState(!1),[s,a]=p.useState("");return p.useEffect(()=>{let l=!1,c,u,d;r(!1);try{d=Ixt(e,window.matchMedia("(prefers-reduced-motion: reduce)").matches),a("")}catch{a("invalid");return}return Pxt().then(f=>{const h=n.current;l||!h||(c=f.init(h,void 0,{renderer:"svg"}),c.setOption(d,{notMerge:!0}),typeof ResizeObserver<"u"&&(u=new ResizeObserver(()=>c==null?void 0:c.resize()),u.observe(h)),r(!0))}).catch(()=>{c==null||c.dispose(),c=void 0,l||a("render")}),()=>{l=!0,u==null||u.disconnect(),c==null||c.dispose()}},[e]),o.jsxs("div",{className:`echarts-diagram${s?" echarts-diagram--error":""}`,role:"img","aria-label":t("visualization.echartsAria"),"aria-busy":!i&&!s,children:[o.jsx("div",{ref:n,className:"echarts-diagram__canvas",hidden:!!s}),!i&&!s?o.jsx("div",{className:"echarts-diagram__state","aria-live":"polite",children:o.jsx(kn,{duration:2.2,spread:15,children:t("visualization.rendering")})}):null,s?o.jsx("p",{className:"echarts-diagram__error",role:"alert",children:t(s==="invalid"?"visualization.invalidEcharts":"visualization.renderFailed")}):null]})}const Mxt=p.memo(Dxt);let QY,zY=Promise.resolve(),Lxt=0;function $xt(){return QY??(QY=$d(async()=>{const{default:e}=await import("../visualizations/mermaid/mermaid.core-BqSuc9Qx.js").then(t=>t.ay);return{default:e}},__vite__mapDeps([0,1])).then(({default:e})=>(e.initialize({startOnLoad:!1,securityLevel:"strict",suppressErrorRendering:!0,theme:"neutral"}),e))),QY}function Fxt(e){const t=zY.then(async()=>{const n=await $xt(),i=`mermaid-diagram-${Lxt+=1}`;return n.render(i,e)});return zY=t.then(()=>{},()=>{}),t}function Bxt({source:e}){const{t}=Ae("conversation"),n=p.useRef(null),[i,r]=p.useState(null),[s,a]=p.useState(!1);return p.useEffect(()=>{let l=!1;return r(null),a(!1),Fxt(e).then(c=>{l||r(c)}).catch(()=>{l||a(!0)}),()=>{l=!0}},[e]),p.useEffect(()=>{!(i!=null&&i.bindFunctions)||!n.current||i.bindFunctions(n.current)},[i]),s?o.jsx("div",{className:"mermaid-diagram mermaid-diagram--error",children:o.jsx("p",{className:"mermaid-diagram__error",role:"alert",children:t("visualization.mermaidFailed")})}):i?o.jsx("div",{ref:n,className:"mermaid-diagram",role:"img","aria-label":t("visualization.mermaidAria"),dangerouslySetInnerHTML:{__html:i.svg}}):o.jsx("div",{className:"mermaid-diagram mermaid-diagram--loading","aria-live":"polite",children:o.jsx(kn,{duration:2.2,spread:15,children:t("visualization.rendering")})})}const Uxt=p.memo(Bxt),Qxt="_SegmentedControl_1sl7d_1",zxt="_SegmentedControlOption_1sl7d_140",Vxt="_SegmentedControlThumb_1sl7d_219",e$={SegmentedControl:Qxt,SegmentedControlOption:zxt,SegmentedControlThumb:Vxt},Vc=({value:e,onChange:t,children:n,block:i,pill:r=!0,size:s="md",gutterSize:a,className:l,onClick:c,...u})=>{const d=p.useRef(null),f=p.useRef(null),h=p.useCallback(g=>{const b=d.current,v=f.current;if(!b||!v)return;const y=b==null?void 0:b.querySelector('[data-state="on"]');if(!y)return;const x=b.clientWidth;let O=Math.floor(y.clientWidth);const w=y.offsetLeft;if(x-(O+w)<2&&(O=O-1),v.style.width=`${Math.floor(O)}px`,v.style.transform=`translateX(${w}px)`,b.scrollWidth>x){const k=x*.15,S=b.scrollLeft,E=y.offsetLeft,C=E+O;(ES+x-k)&&g&&y.scrollIntoView({block:"nearest",inline:"center",behavior:"smooth"})}},[]);$ye({ref:d,onResize:()=>{const g=f.current;if(!g)return;const b=g.style.transition;g.style.transition="",h(!1),g.style.transition=b}}),p.useLayoutEffect(()=>{const g=d.current,b=f.current;!g||!b||(h(!!b.style.transition),b.style.transition||V_(()=>{b.style.transition="width 300ms var(--cubic-enter), transform 300ms var(--cubic-enter)"}))},[h,e,s,a,r]);const m=g=>{g&&t&&t(g)};return o.jsxs(QWe,{ref:d,className:yi(e$.SegmentedControl,l),type:"single",value:e,loop:!1,onValueChange:m,onClick:c,"data-block":i?"":void 0,"data-pill":r?"":void 0,"data-size":s,"data-gutter-size":a,...u,children:[o.jsx("div",{className:e$.SegmentedControlThumb,ref:f}),n]})},Hxt=({children:e,...t})=>o.jsx(WWe,{className:e$.SegmentedControlOption,...t,onPointerEnter:h7,children:o.jsx("span",{className:"relative",children:e})});Vc.Option=Hxt;function qxt({children:e,label:t,language:n,source:i,streaming:r=!1}){const{t:s}=Ae("conversation"),[a,l]=p.useState("preview"),c=r?"code":a;return o.jsxs("section",{className:"visualization-card","aria-label":s("visualization.cardAria",{label:t}),children:[o.jsx("div",{className:"visualization-card__toolbar",children:o.jsxs(Vc,{className:"visualization-card__tabs",value:c,size:"sm",gutterSize:"sm",pill:!1,"aria-label":s("visualization.viewAria",{label:t}),onChange:u=>{r||l(u)},children:[o.jsx(Vc.Option,{value:"preview",disabled:r,children:s("visualization.preview")}),o.jsx(Vc.Option,{value:"code",children:s("visualization.code")})]})}),o.jsx("div",{className:"visualization-card__body",children:c==="code"?o.jsx("pre",{className:"visualization-card__code",children:o.jsx("code",{className:`language-${n}`,children:i})}):e})]})}const Wxt=p.memo(qxt);function Kxt(e){const t=e==null?void 0:e.trim().toLowerCase();if(t==="mermaid")return"mermaid";if(t==="echart"||t==="echarts")return"echarts"}const VEe=[".mp4",".webm",".mov",".m4v",".ogg",".avi"];function t$(e){return typeof e=="string"||typeof e=="number"?String(e):Array.isArray(e)?e.map(t$).join(""):p.isValidElement(e)?t$(e.props.children):""}function Gxt(e){var i;const t=p.Children.toArray(e)[0];if(!p.isValidElement(t))return;const n=(i=t.props.className)==null?void 0:i.split(/\s+/).find(r=>r.startsWith("language-"));return Kxt(n==null?void 0:n.slice(9))}function HEe(e){if(!e)return!1;try{const t=e.toLowerCase();return VEe.some(n=>t.includes(n))}catch{return!1}}function Xxt(e){var i;const t=(i=e==null?void 0:e.properties)==null?void 0:i.href;if(!t)return!1;if(HEe(t))return!0;const n=e==null?void 0:e.children;if(n&&Array.isArray(n)){const r=n.map(s=>(s==null?void 0:s.value)||"").join("").toLowerCase();return VEe.some(s=>r.includes(s))}return!1}function Yxt({text:e,className:t,allowRawHtml:n=!0,streaming:i=!1}){const{t:r}=Ae("conversation"),[s,a]=p.useState(null),l=(d,f)=>{if(d.src)return d.src;if(f){const h=g=>{var b;if(!g)return null;if(g.type==="source"&&((b=g.properties)!=null&&b.src))return g.properties.src;if(g.children)for(const v of g.children){const y=h(v);if(y)return y}return null},m=h({children:f});if(m)return m}return""},c=d=>{try{const h=new URL(d).pathname.split("/");return h[h.length-1]||"video.mp4"}catch{return"video.mp4"}},u=d=>d?Array.isArray(d)?d.map(f=>(f==null?void 0:f.value)||"").join("")||"video":(d==null?void 0:d.value)||"video":"video";return o.jsxs("div",{className:t?`md ${t}`:"md",children:[o.jsx(mht,{remarkPlugins:[Amt],rehypePlugins:n?[uxt,OY]:[OY],components:{pre:({node:d,children:f,...h})=>{const m=Gxt(f);if(m==="mermaid"||m==="echarts"){const g=t$(f).replace(/\n$/,"");return o.jsx(Wxt,{label:m==="mermaid"?"Mermaid":"ECharts",language:m,source:g,streaming:i,children:m==="mermaid"?o.jsx(Uxt,{source:g}):o.jsx(Mxt,{source:g})})}return o.jsx("pre",{...h,children:f})},a:({node:d,...f})=>{const h=f.href;if(h&&(HEe(h)||Xxt(d))){const m=h,g=u(d==null?void 0:d.children);return o.jsxs("div",{className:"video-container",children:[o.jsxs("button",{type:"button",className:"video-preview-trigger","aria-label":r("markdown.playVideo",{name:g}),onClick:()=>a({src:m,title:g}),children:[o.jsx("video",{src:m,playsInline:!0,className:"video-thumbnail",preload:"metadata"}),o.jsx("span",{className:"video-preview-hint","aria-hidden":"true",children:o.jsx(ev,{})})]}),o.jsx("div",{className:"video-caption",children:o.jsx("a",{href:m,target:"_blank",rel:"noopener noreferrer",className:"video-link-text",children:g})})]})}return o.jsx("a",{...f,target:"_blank",rel:"noopener noreferrer"})},img:({node:d,src:f,alt:h,...m})=>{const g=o.jsx("img",{...m,src:f,alt:h??"",loading:"lazy"});return f?o.jsx(_be,{src:f,children:o.jsxs("button",{type:"button",className:"image-preview-trigger","aria-label":r("markdown.enlargeImage",{name:h||r("markdown.image")}),children:[g,o.jsx("span",{className:"image-preview-hint","aria-hidden":"true",children:o.jsx(ev,{})})]})}):g},video:({node:d,src:f,children:h,...m})=>{const g=l({src:f},h);return g?o.jsx("div",{className:"video-container",children:o.jsxs("button",{type:"button",className:"video-preview-trigger","aria-label":r("markdown.enlargeVideo"),onClick:()=>a({src:g}),children:[o.jsx("video",{src:g,...m,playsInline:!0,className:"video-thumbnail",children:h}),o.jsx("span",{className:"video-preview-hint","aria-hidden":"true",children:o.jsx(ev,{})})]})}):o.jsx("video",{src:f,controls:!0,playsInline:!0,className:"video-inline",...m,children:h})}},children:e}),s&&o.jsx("div",{className:"video-viewer-backdrop",role:"dialog","aria-modal":"true","aria-label":r("markdown.videoPreview"),onClick:()=>a(null),children:o.jsxs("div",{className:"video-viewer",onClick:d=>d.stopPropagation(),children:[o.jsxs("div",{className:"video-viewer-header",children:[o.jsx("div",{className:"video-viewer-title",children:s.title||c(s.src)}),o.jsxs("nav",{className:"video-viewer-nav",children:[o.jsx("a",{href:s.src,download:s.title||c(s.src),"aria-label":r("markdown.downloadVideo"),title:r("markdown.downloadVideo"),className:"video-viewer-download",children:o.jsx(iR,{})}),o.jsx("button",{type:"button",className:"video-viewer-close","aria-label":r("markdown.close"),onClick:()=>a(null),children:o.jsx($a,{})})]})]}),o.jsx("div",{className:"video-viewer-body",children:o.jsx("video",{src:s.src,controls:!0,autoPlay:!0,playsInline:!0,className:"video-fullscreen"})})]})})]})}const Uu=p.memo(Yxt);function KM(e){return(e==null?void 0:e.trim())||Hm("resourceMetadata.unknownSource")}function qEe(e){return(e==null?void 0:e.trim())||Hm("resourceMetadata.unknownCreator")}function Zxt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5 5.5A2.5 2.5 0 0 1 7.5 3H19v16H7.5A2.5 2.5 0 0 0 5 21.5v-16Z"}),o.jsx("path",{d:"M5 18.5A2.5 2.5 0 0 1 7.5 16H19"}),o.jsx("path",{d:"M9 7h6M9 10h4"})]})}function Jxt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M6 3h8l4 4v14H6V3Z"}),o.jsx("path",{d:"M14 3v5h5M9 12h6M9 16h6"})]})}function e1t(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m7 7 10 10M17 7 7 17"})})}function t1t(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"M12 5v14M5 12h14"})})}function TE({title:e,children:t,onClose:n,busy:i=!1,className:r=""}){const{t:s}=Ae("ui"),a=p.useId(),l=p.useRef(null),c=p.useRef(null),u=p.useRef(i),d=p.useRef(n);return p.useEffect(()=>{u.current=i,d.current=n},[i,n]),p.useEffect(()=>{var g;const f=document.activeElement instanceof HTMLElement?document.activeElement:null,h=document.body.style.overflow;document.body.style.overflow="hidden",(g=l.current)==null||g.focus();const m=b=>{if(b.key==="Escape"&&!u.current){d.current();return}if(b.key!=="Tab")return;const v=c.current;if(!v)return;const y=Array.from(v.querySelectorAll('button:not([disabled]), input:not([disabled]), textarea:not([disabled]), select:not([disabled]), a[href], audio[controls], video[controls], iframe, [tabindex]:not([tabindex="-1"])')).filter(w=>w.getClientRects().length>0);if(y.length===0){b.preventDefault();return}const x=y[0],O=y[y.length-1];b.shiftKey&&(document.activeElement===x||!v.contains(document.activeElement))?(b.preventDefault(),O.focus()):!b.shiftKey&&(document.activeElement===O||!v.contains(document.activeElement))&&(b.preventDefault(),x.focus())};return window.addEventListener("keydown",m),()=>{window.removeEventListener("keydown",m),document.body.style.overflow=h,f!=null&&f.isConnected&&f.focus()}},[]),Fi.createPortal(o.jsx("div",{className:"knowledge-dialog-backdrop",onMouseDown:f=>{f.target===f.currentTarget&&!i&&n()},children:o.jsxs("section",{ref:c,className:`knowledge-dialog${r?` ${r}`:""}`,role:"dialog","aria-modal":"true","aria-labelledby":a,"aria-busy":i||void 0,children:[o.jsxs("header",{className:"knowledge-dialog__header",children:[o.jsx("h2",{id:a,children:e}),o.jsx("button",{ref:l,type:"button",onClick:n,disabled:i,"aria-label":s("common.close"),children:o.jsx(e1t,{})})]}),t]})}),document.body)}function GS({message:e}){return e?o.jsx("div",{className:"knowledge-form-error",role:"alert",children:e}):null}function n$(e){return e instanceof DOMException&&e.name==="AbortError"}function n1t(e,t){if(!e)return"";const n=Date.parse(e);return Number.isFinite(n)?new Intl.DateTimeFormat(t,{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"}).format(n):e}const WEe=[".jpg",".jpeg",".png"].join(","),i1t=new Set(WEe.split(",")),KEe=[".pdf",".pptx",".docx",".xlsx",".txt"].join(","),r1t=new Set(KEe.split(",")),s1t=200*1024*1024;function i$(e){const t=e.lastIndexOf(".");return t<0?"":e.slice(t).toLocaleLowerCase()}function a1t(e,t,n){return e.size>s1t?n("knowledge.errors.fileTooLarge"):t==="image"?i1t.has(i$(e.name))?"":n("knowledge.errors.invalidImageType"):r1t.has(i$(e.name))?"":n("knowledge.errors.invalidDocumentType")}function bU(e){return e<=0?"-":e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`}function r$(e){var r;const t=e.type.trim().replace(/^\./,"");if(t)return t.toUpperCase();const n=e.name.trim(),i=n.includes(".")?(r=n.split(".").pop())==null?void 0:r.trim():"";return i?i.toUpperCase():"-"}function o1t({region:e,onClose:t,onCreated:n}){const{t:i}=Ae("ui"),[r,s]=p.useState(""),[a,l]=p.useState(""),[c,u]=p.useState(!1),[d,f]=p.useState(!1),[h,m]=p.useState(""),g=r.trim(),b=!!(g&&!/^[A-Za-z][A-Za-z0-9_]{0,47}$/.test(g)),v=async y=>{if(y.preventDefault(),u(!0),!g||b)return;f(!0),m("");const x={name:g,description:a.trim()||void 0,region:e};try{n(await _lt(x))}catch(O){m(go(O,i("knowledge.errors.createBase")))}finally{f(!1)}};return o.jsx(TE,{title:i("knowledge.createBase"),onClose:t,busy:d,children:o.jsxs("form",{onSubmit:y=>void v(y),children:[o.jsxs("div",{className:"knowledge-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:i("common.name")}),o.jsx("input",{autoFocus:!0,value:r,maxLength:48,"aria-invalid":c&&b||void 0,"aria-describedby":"knowledge-name-help",onBlur:()=>u(!0),onChange:y=>s(y.target.value)})]}),o.jsx("p",{id:"knowledge-name-help",className:`knowledge-dialog__note${c&&b?" is-error":""}`,role:c&&b?"alert":void 0,children:i(c&&b?"knowledge.invalidName":"knowledge.nameHelp")}),o.jsxs("label",{children:[o.jsx("span",{children:i("knowledge.optionalDescription")}),o.jsx("textarea",{value:a,maxLength:80,onChange:y=>l(y.target.value)})]}),o.jsx(GS,{message:h})]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",onClick:t,disabled:d,children:i("common.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:d||!g||b,children:i(d?"common.creating":"common.create")})]})]})})}function l1t({item:e,onClose:t,onUpdated:n}){const{t:i}=Ae("ui"),[r,s]=p.useState(e.description),[a,l]=p.useState(!1),[c,u]=p.useState(""),d=async f=>{f.preventDefault(),l(!0),u("");try{n(await Nlt(e.id,e.region,{description:r.trim()}))}catch(h){u(go(h,i("knowledge.errors.updateBase")))}finally{l(!1)}};return o.jsx(TE,{title:i("knowledge.editBase"),onClose:t,busy:a,children:o.jsxs("form",{onSubmit:f=>void d(f),children:[o.jsxs("div",{className:"knowledge-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:i("common.name")}),o.jsx("input",{value:e.name,disabled:!0})]}),o.jsxs("label",{children:[o.jsx("span",{children:i("common.description")}),o.jsx("textarea",{autoFocus:!0,value:r,maxLength:80,onChange:f=>s(f.target.value)})]}),o.jsx("p",{className:"knowledge-dialog__note",children:i("knowledge.descriptionOnly")}),o.jsx(GS,{message:c})]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",onClick:t,disabled:a,children:i("common.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:a,children:i(a?"common.saving":"common.save")})]})]})})}function GEe(e,t){if(!e.trim())return{};const n=JSON.parse(e);if(!n||Array.isArray(n)||typeof n!="object")throw new Error(t);return n}function c1t({base:e,onClose:t,onCreated:n,onAssociationInvalid:i}){const{t:r}=Ae("ui"),[s,a]=p.useState("document"),[l,c]=p.useState(""),[u,d]=p.useState(""),[f,h]=p.useState(""),[m,g]=p.useState(null),[b,v]=p.useState(!1),[y,x]=p.useState("{}"),[O,w]=p.useState(""),[k,S]=p.useState(""),[E,C]=p.useState(null),N=p.useRef(null),T=p.useRef(null),j=p.useRef(null),A=p.useRef(0),L=!!O;p.useEffect(()=>{var M;E&&!L&&((M=j.current)==null||M.focus())},[L,E]);const _=M=>{L||M===s||(a(M),g(null),h(""),c(""),d(""),S(""),C(null),v(!1),A.current=0,N.current&&(N.current.value=""))},P=M=>{if(!M||s==="web")return;const B=a1t(M,s,r);if(B){g(null),c(""),d(""),S(B);return}g(M),S(""),c(M.name.replace(/\.[^.]+$/,"")),d(i$(M.name).slice(1))},I=async M=>{if(M.preventDefault(),s==="web"?!f.trim():!m)return;let B;try{B=GEe(y,r("knowledge.errors.metadataObject"))}catch(R){S(go(R,r("knowledge.errors.metadataFormat")));return}w(s==="web"?E?"save":"preview":"upload"),S("");try{if(s==="web")if(E){const R={sourceType:"url",metadata:E.metadata,url:E.preview.url,sourceTitle:E.preview.name,sourceMarkdown:E.preview.sourceMarkdown};await Plt(e.id,e.region,R),n()}else{const R=await Dlt(e.id,e.region,{url:f.trim()});if(!R.sourceMarkdown.trim())throw new Error(r("knowledge.errors.noWebPreview"));C({preview:R,metadata:B})}else m&&(await Mlt(e.id,e.region,{file:m,name:l.trim()||void 0,documentType:u.trim()||void 0,metadata:B}),n())}catch(R){R instanceof YR&&R.errorCode===lSe?i(R):S(go(R,r(s==="web"?E?"knowledge.errors.addWeb":"knowledge.errors.previewWeb":"knowledge.errors.uploadFile")))}finally{w("")}},$=()=>{L||(C(null),S(""),requestAnimationFrame(()=>{var M;return(M=T.current)==null?void 0:M.focus()}))};return o.jsx(TE,{title:r(E?"knowledge.previewWeb":"knowledge.addData"),onClose:t,busy:L,className:E?"knowledge-dialog--preview knowledge-dialog--web-confirm":"",children:o.jsx("form",{onSubmit:M=>void I(M),children:E?o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:"knowledge-preview knowledge-web-preview",children:[o.jsxs("div",{className:"knowledge-preview__meta",children:[o.jsx("strong",{title:E.preview.name,children:E.preview.name}),o.jsx("a",{href:E.preview.url,target:"_blank",rel:"noopener noreferrer",children:r("knowledge.openOriginalWeb")})]}),o.jsx("div",{className:"knowledge-preview__body","aria-live":"polite",children:o.jsx("div",{className:"knowledge-preview__markdown-shell",children:o.jsx(Uu,{text:E.preview.sourceMarkdown,allowRawHtml:!1,className:"knowledge-preview__markdown"})})}),k?o.jsx("div",{className:"knowledge-web-preview__error",children:o.jsx(GS,{message:k})}):null]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",className:"is-back",onClick:$,disabled:L,children:r("knowledge.backToEdit")}),o.jsx("button",{type:"button",onClick:t,disabled:L,children:r("common.cancel")}),o.jsx("button",{ref:j,type:"submit",className:"is-primary",disabled:L,children:r(O==="save"?"common.adding":"knowledge.confirmAdd")})]})]}):o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:"knowledge-dialog__body",children:[o.jsx("div",{className:"knowledge-source-tabs",role:"tablist","aria-label":r("knowledge.source"),children:[["image",r("knowledge.image")],["document",r("knowledge.documentFile")],["web",r("knowledge.webPage")]].map(([M,B])=>o.jsx("button",{type:"button",role:"tab",id:`knowledge-source-${M}-tab`,"aria-controls":`knowledge-source-${M}-panel`,"aria-selected":s===M,tabIndex:s===M?0:-1,className:s===M?"is-active":"",disabled:L,onClick:()=>_(M),onKeyDown:R=>{const V=["image","document","web"];if(!["ArrowLeft","ArrowRight","Home","End"].includes(R.key))return;R.preventDefault();const K=V.indexOf(M),Q=R.key==="Home"?V[0]:R.key==="End"?V[V.length-1]:V[(K+(R.key==="ArrowRight"?1:-1)+V.length)%V.length];_(Q),requestAnimationFrame(()=>{var q;return(q=document.getElementById(`knowledge-source-${Q}-tab`))==null?void 0:q.focus()})},children:B},M))}),o.jsx("div",{id:`knowledge-source-${s}-panel`,className:"knowledge-source-panel",role:"tabpanel","aria-labelledby":`knowledge-source-${s}-tab`,children:s==="web"?o.jsxs(o.Fragment,{children:[o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.webUrl")}),o.jsx("input",{ref:T,autoFocus:!0,type:"url",value:f,disabled:L,onChange:M=>{h(M.target.value),S("")},placeholder:"https://example.com/article"})]}),o.jsx("div",{className:"knowledge-upload-status",role:"status","aria-live":"polite",children:O==="preview"?o.jsx(kn,{children:r("knowledge.generatingWebPreview")}):null})]}):o.jsxs(o.Fragment,{children:[o.jsx("input",{ref:N,className:"knowledge-upload-input",type:"file","aria-label":r("knowledge.selectFile"),accept:s==="image"?WEe:KEe,disabled:L,onChange:M=>{var B;P(((B=M.currentTarget.files)==null?void 0:B[0])??null),M.currentTarget.value=""}}),o.jsxs("button",{type:"button",className:`knowledge-upload-dropzone${b?" is-dragging":""}${m?" is-ready":""}`,disabled:L,onClick:()=>{var M;return(M=N.current)==null?void 0:M.click()},onDragEnter:M=>{M.preventDefault(),!L&&(A.current+=1,v(!0))},onDragOver:M=>{M.preventDefault(),L||(M.dataTransfer.dropEffect="copy")},onDragLeave:M=>{M.preventDefault(),A.current=Math.max(0,A.current-1),A.current===0&&v(!1)},onDrop:M=>{var B;M.preventDefault(),A.current=0,v(!1),L||P(((B=M.dataTransfer.files)==null?void 0:B[0])??null)},children:[o.jsx("strong",{children:m?m.name:r("knowledge.selectOrDropFile")}),o.jsx("span",{children:m?r("knowledge.selectedFile",{size:bU(m.size)}):r(s==="image"?"knowledge.imageFileHelp":"knowledge.documentFileHelp")})]}),o.jsx("div",{className:"knowledge-upload-status",role:"status","aria-live":"polite",children:L?o.jsx(kn,{children:r("knowledge.uploadingFile")}):null})]})}),s!=="web"?o.jsxs("div",{className:"knowledge-dialog__fields",children:[o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.optionalName")}),o.jsx("input",{value:l,disabled:L,maxLength:256,onChange:M=>c(M.target.value)})]}),o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.optionalType")}),o.jsx("input",{value:u,disabled:L,maxLength:64,onChange:M=>d(M.target.value),placeholder:"pdf, docx, png"})]})]}):null,o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.metadataJson")}),o.jsx("textarea",{className:"is-code",value:y,disabled:L,onChange:M=>x(M.target.value),spellCheck:!1})]}),o.jsx(GS,{message:k})]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",onClick:t,disabled:L,children:r("common.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:L||(s==="web"?!f.trim():!m),children:r(L?s==="web"?"common.generating":"common.uploading":s==="web"?"knowledge.generatePreview":"knowledge.uploadFile")})]})]})})})}function u1t({base:e,item:t,onClose:n,onUpdated:i}){const{t:r}=Ae("ui"),[s,a]=p.useState(()=>JSON.stringify(t.metadata??{},null,2)),[l,c]=p.useState(!1),[u,d]=p.useState(""),f=async h=>{h.preventDefault();let m;try{m=GEe(s,r("knowledge.errors.metadataObject"))}catch(g){d(go(g,r("knowledge.errors.metadataFormat")));return}c(!0),d("");try{i(await Llt(e.id,t.id,e.region,{metadata:m}))}catch(g){d(go(g,r("knowledge.errors.updateDocument")))}finally{c(!1)}};return o.jsx(TE,{title:r("knowledge.editMetadata"),onClose:n,busy:l,children:o.jsxs("form",{onSubmit:h=>void f(h),children:[o.jsxs("div",{className:"knowledge-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.knowledge")}),o.jsx("input",{value:t.name||t.id,disabled:!0})]}),o.jsxs("label",{children:[o.jsx("span",{children:r("knowledge.metadataJson")}),o.jsx("textarea",{autoFocus:!0,className:"is-code knowledge-metadata-editor",value:s,onChange:h=>a(h.target.value),spellCheck:!1})]}),o.jsx(GS,{message:u})]}),o.jsxs("footer",{className:"knowledge-dialog__actions",children:[o.jsx("button",{type:"button",onClick:n,disabled:l,children:r("common.cancel")}),o.jsx("button",{type:"submit",className:"is-primary",disabled:l,children:r(l?"common.saving":"common.save")})]})]})})}const XEe=new Set(["avif","bmp","gif","jpeg","jpg","png","svg","webp"]),YEe=new Set(["aac","flac","m4a","mp3","ogg","wav","webm"]),ZEe=new Set(["m4v","mov","mp4","mpeg","mpg","ogg","webm"]),d1t=new Set(["pdf"]),f1t=new Set(["doc","docx","ppt","pptx","xls","xlsx"]),h1t=new Set(["creating","indexing","pending","processing","queued","submitted"]),p1t=new Set(["error","failed","unavailable"]);function VY(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:{}}function $T(e){if(e==null||e==="")return"-";if(["string","number","boolean"].includes(typeof e))return String(e);try{return JSON.stringify(e)}catch{return String(e)}}function m1t(e,t){if(Array.isArray(e)){if(e.length===0)return null;const r=e.map(VY);if(r.some(s=>Object.keys(s).length>0)){const s=[...new Set(r.flatMap(a=>Object.keys(a)))];return{columns:s,rows:r.map(a=>s.map(l=>$T(a[l])))}}return{columns:[t("knowledge.value")],rows:e.map(s=>[$T(s)])}}const n=VY(e),i=Object.entries(n);if(i.length===0)return null;if(i.every(([,r])=>Array.isArray(r))){const r=i.map(([a])=>a),s=Math.max(...i.map(([,a])=>a.length));return{columns:r,rows:Array.from({length:s},(a,l)=>i.map(([,c])=>$T(c[l])))}}return{columns:[t("knowledge.field"),t("knowledge.value")],rows:i.map(([r,s])=>[r,$T(s)])}}function JEe(e){const t=e.trim();if(!t||t.startsWith("//"))return"";if(t.startsWith("/"))return t;try{const n=new URL(t);return["http:","https:"].includes(n.protocol)?n.href:""}catch{return""}}function g1t(e){const t=JEe(e);return t.startsWith("http://")||t.startsWith("https://")?t:""}function b1t(e){var r;const t=e.attachmentType.trim().toLocaleLowerCase();if(t==="image"||t==="doc-image"||t.startsWith("image/"))return"image";if(t==="audio"||t.startsWith("audio/"))return"audio";if(t==="video"||t.startsWith("video/"))return"video";if(t==="pdf"||t==="application/pdf")return"pdf";const n=e.attachmentUrl.split(/[?#]/,1)[0],i=n.includes(".")?((r=n.split(".").pop())==null?void 0:r.toLocaleLowerCase())??"":"";return XEe.has(i)?"image":YEe.has(i)?"audio":ZEe.has(i)?"video":d1t.has(i)?"pdf":t||i?"file":"none"}function y1t(e,t){const n=e.status.trim().toLocaleLowerCase();if(h1t.has(n))return{title:t("knowledge.preview.processingTitle"),detail:t("knowledge.preview.processingDetail")};if(p1t.has(n))return{title:t("knowledge.preview.failedTitle"),detail:t("knowledge.preview.failedDetail")};const i=r$(e).toLocaleLowerCase();return i==="pdf"||f1t.has(i)?{title:t("knowledge.preview.noParsedTitle"),detail:t("knowledge.preview.noParsedDetail")}:XEe.has(i)||YEe.has(i)||ZEe.has(i)?{title:t("knowledge.preview.noMediaTitle"),detail:t("knowledge.preview.noMediaDetail")}:{title:t("knowledge.preview.noDataTitle"),detail:t("knowledge.preview.noDataDetail")}}function v1t({chunk:e}){const{t}=Ae("ui"),[n,i]=p.useState(!1),r=JEe(e.attachmentUrl),s=b1t(e);return!r||s==="none"?null:n?o.jsx("div",{className:"knowledge-preview__attachment-error",children:t("knowledge.preview.attachmentError")}):s==="image"?o.jsx("img",{className:"knowledge-preview__image",src:r,alt:e.title||t("knowledge.preview.imageAlt"),loading:"lazy",onError:()=>i(!0)}):s==="audio"?o.jsx("audio",{className:"knowledge-preview__audio",src:r,controls:!0,preload:"metadata",onError:()=>i(!0),children:t("knowledge.preview.audioUnsupported")}):s==="video"?o.jsx("video",{className:"knowledge-preview__video",src:r,controls:!0,playsInline:!0,preload:"metadata",onError:()=>i(!0),children:t("knowledge.preview.videoUnsupported")}):s==="pdf"?o.jsxs("div",{className:"knowledge-preview__pdf",children:[o.jsx("iframe",{src:r,title:e.title?t("knowledge.preview.namedPdf",{name:e.title}):t("knowledge.preview.pdf"),sandbox:"",referrerPolicy:"no-referrer",onError:()=>i(!0)}),o.jsx("a",{href:r,target:"_blank",rel:"noopener noreferrer",children:t("knowledge.preview.openPdf")})]}):o.jsxs("div",{className:"knowledge-preview__file-fallback",children:[o.jsx("p",{children:t("knowledge.preview.fileUnsupported")}),o.jsx("a",{href:r,target:"_blank",rel:"noopener noreferrer",children:t("knowledge.preview.openOriginalFile")})]})}function x1t({base:e,item:t,onClose:n}){const{t:i}=Ae("ui"),[r,s]=p.useState([]),[a,l]=p.useState(t),[c,u]=p.useState(""),[d,f]=p.useState(!0),[h,m]=p.useState(!1),[g,b]=p.useState(!1),[v,y]=p.useState(""),x=p.useRef(0),O=p.useRef(null),w=p.useCallback(async(C=0)=>{var j;(j=O.current)==null||j.abort();const N=new AbortController;O.current=N;const T=x.current+1;x.current=T,C>0?m(!0):f(!0),y(""),C===0&&(s([]),b(!1));try{const A=await Ilt(e.id,t.id,{region:e.region,offset:C,signal:N.signal});if(x.current!==T)return;l(A.document.id?A.document:t),u(A.sourceMarkdown||A.document.sourceMarkdown),s(L=>C>0?[...L,...A.chunks]:A.chunks),b(A.hasMore)}catch(A){!n$(A)&&x.current===T&&y(go(A,i("knowledge.errors.loadPreview")))}finally{x.current===T&&(f(!1),m(!1))}},[e.id,e.region,t,i]);p.useEffect(()=>(w(),()=>{var C;(C=O.current)==null||C.abort(),x.current+=1}),[w]);const k=g1t(a.url||t.url),S=y1t(a,i),E=a.metadata._veadk_content_format==="markdown";return o.jsx(TE,{title:a.name||t.name||t.id,onClose:n,className:"knowledge-dialog--preview",children:o.jsxs("div",{className:"knowledge-preview",children:[a.sizeBytes>0||k?o.jsxs("div",{className:"knowledge-preview__meta",children:[a.sizeBytes>0?o.jsx("span",{children:bU(a.sizeBytes)}):null,k?o.jsx("a",{href:k,target:"_blank",rel:"noopener noreferrer",children:i("knowledge.openOriginalWeb")}):null]}):null,o.jsx("div",{className:"knowledge-preview__body","aria-live":"polite",children:c?o.jsx("div",{className:"knowledge-preview__markdown-shell",children:o.jsx(Uu,{text:c,allowRawHtml:!1,className:"knowledge-preview__markdown"})}):d?o.jsx("div",{className:"knowledge-preview__state",role:"status",children:o.jsx(kn,{as:"span",duration:2.4,children:i("knowledge.preview.loading")})}):v&&r.length===0?o.jsxs("div",{className:"knowledge-preview__state is-error",role:"alert",children:[o.jsx("p",{children:v}),o.jsx("button",{type:"button",onClick:()=>void w(),children:i("common.retry")})]}):r.length===0?o.jsxs("div",{className:"knowledge-preview__state",children:[o.jsx("p",{children:S.title}),o.jsx("span",{children:k?i("knowledge.preview.openOriginalHint"):S.detail}),o.jsx("button",{type:"button",onClick:()=>void w(),children:i("common.reload")})]}):o.jsxs("div",{className:"knowledge-preview__chunks",children:[r.map((C,N)=>{const T=m1t(C.tableFields,i),j=C.id||`${N}:${C.title}`;return o.jsxs("article",{className:"knowledge-preview__chunk",children:[o.jsx("header",{children:o.jsx("h3",{children:C.title||i("knowledge.preview.chunk",{index:N+1})})}),C.content?E?o.jsx(Uu,{text:C.content,allowRawHtml:!1,className:"knowledge-preview__markdown"}):o.jsx("p",{className:"knowledge-preview__content",children:C.content}):null,T?o.jsx("div",{className:"knowledge-preview__table-wrap",children:o.jsxs("table",{children:[o.jsx("thead",{children:o.jsx("tr",{children:T.columns.map((A,L)=>o.jsx("th",{scope:"col",children:A},`${A}:${L}`))})}),o.jsx("tbody",{children:T.rows.map((A,L)=>o.jsx("tr",{children:A.map((_,P)=>o.jsx("td",{children:_},P))},L))})]})}):null,o.jsx(v1t,{chunk:C})]},j)}),v?o.jsx("div",{className:"knowledge-preview__more-error",role:"alert",children:v}):null,g?o.jsx("button",{type:"button",className:"knowledge-preview__load-more",disabled:h,onClick:()=>void w(r.length),children:h?o.jsx(kn,{as:"span",duration:2.4,children:i("knowledge.preview.loadingMore")}):i("knowledge.preview.loadMore")}):null]})})]})})}function w1t({cloudProvider:e,region:t,active:n=!0,activationRevision:i=0,onDetailChange:r,toolbarLeading:s,toolbarFilters:a}){const{t:l,i18n:c}=Ae("ui"),[u,d]=p.useState([]),[f,h]=p.useState({}),[m,g]=p.useState([]),[b,v]=p.useState(""),[y,x]=p.useState("overview"),[O,w]=p.useState(""),[k,S]=p.useState(""),[E,C]=p.useState(!0),[N,T]=p.useState(!1),[j,A]=p.useState(""),[L,_]=p.useState([]),[P,I]=p.useState(!1),[$,M]=p.useState(""),[B,R]=p.useState(""),[V,K]=p.useState(""),[Q,q]=p.useState(!1),[U,G]=p.useState(!1),[ae,re]=p.useState(!1),[se,me]=p.useState(null),[Z,X]=p.useState(null),[J,oe]=p.useState(null),[Ee,he]=p.useState(null),[Me,De]=p.useState(null),[_e,Re]=p.useState(!1),Xe=p.useRef(0),Ce=p.useRef(0),Fe=p.useRef([]),Oe=p.useRef(!1),$e=p.useRef(!1),Y=p.useRef(null),pe=p.useRef(null),Te=p.useRef({}),We=p.useRef(!1),nt=p.useRef(null),$t=p.useRef(null),je=p.useRef(null),ve=p.useRef(null),ze=p.useMemo(()=>[t],[t]),et=p.useCallback(ye=>`${ye.region}\0${ye.id}`,[]),Se=u.find(ye=>et(ye)===b)??null,Kt=!!(Se&&V===et(Se));p.useEffect(()=>{r==null||r(!!Se)},[r,Se]),p.useEffect(()=>{x("overview"),S("")},[b]);const en=p.useMemo(()=>{const ye=O.trim().toLocaleLowerCase();return ye?u.filter(Ve=>[Ve.name,Ve.description,Ve.ownerLabel,Ve.providerKnowledgeId].some(Ye=>Ye.toLocaleLowerCase().includes(ye))):u},[u,O]),cn=p.useMemo(()=>{const ye=k.trim().toLocaleLowerCase();return ye?L.filter(Ve=>[Ve.name,Ve.id,r$(Ve)].some(Ye=>Ye.toLocaleLowerCase().includes(ye))):L},[k,L]);p.useEffect(()=>{X(null)},[Se==null?void 0:Se.id,Se==null?void 0:Se.region]);const kt=p.useCallback(async(ye=!1)=>{var ht;if(ye&&(We.current||Object.keys(Te.current).length===0))return;(ht=Y.current)==null||ht.abort();const Ve=new AbortController;Y.current=Ve;const Ye=Xe.current+1;Xe.current=Ye,We.current=!0,ye?T(!0):C(!0),A(""),ye||g([]);try{const ct=await Alt({regions:ze,nextTokens:ye?Te.current:void 0,signal:Ve.signal});if(Xe.current!==Ye)return;d(Rt=>ye?[...Rt,...ct.items.filter(qt=>!Rt.some(ue=>et(ue)===et(qt)))]:ct.items),Te.current=ct.nextTokens,h(ct.nextTokens);const Gt=ct.failures.map(({region:Rt,error:qt})=>`${vh(Rt,e)}: ${go(qt,l("common.loadFailed"))}`);g(Rt=>ye?[...new Set([...Rt,...Gt])]:Gt),ye||v(Rt=>ct.items.some(qt=>et(qt)===Rt)?Rt:"")}catch(ct){if(n$(ct))return;Xe.current===Ye&&(ye?g(Gt=>[...new Set([...Gt,go(ct,l("knowledge.errors.loadMoreBases"))])]):A(go(ct,l("knowledge.errors.loadBases"))))}finally{Xe.current===Ye&&(We.current=!1,C(!1),T(!1))}},[et,e,ze,l]),Pt=p.useCallback(async(ye,Ve=!1)=>{var ct;if(Ve&&Oe.current)return;(ct=pe.current)==null||ct.abort();const Ye=new AbortController;pe.current=Ye;const ht=Ce.current+1;Ce.current=ht,Ve||(Fe.current=[],$e.current=!1,_([]),q(!1),R("")),Oe.current=!0,I(!0),Ve?R(""):M("");try{const Gt=await Rlt(ye.id,{region:ye.region,offset:Ve?Fe.current.length:0,signal:Ye.signal});if(Ce.current!==ht)return;K(_n=>_n===et(ye)?"":_n);const Rt=Fe.current,qt=Ve?[...Rt,...Gt.items.filter(_n=>!_n.id||!Rt.some(He=>He.id===_n.id))]:Gt.items,ue=Gt.hasMore&&(!Ve||qt.length>Rt.length);Fe.current=qt,$e.current=ue,_(qt),q(ue)}catch(Gt){if(n$(Gt))return;Ce.current===ht&&(Gt instanceof YR&&Gt.errorCode===lSe&&(K(et(ye)),me(qt=>qt&&et(qt)===et(ye)?null:qt)),Ve?R(go(Gt,l("knowledge.errors.loadMoreData"))):M(go(Gt,l("knowledge.errors.loadData"))))}finally{Ce.current===ht&&(Oe.current=!1,I(!1))}},[et,l]);p.useEffect(()=>{var ye;(ye=Y.current)==null||ye.abort(),Xe.current+=1,We.current=!1,Te.current={},d([]),h({}),g([]),v(""),K(""),A(""),C(!0)},[e]),p.useEffect(()=>{if(n)return kt(),()=>{var ye;(ye=Y.current)==null||ye.abort(),Xe.current+=1,We.current=!1}},[n,i,kt]),p.useEffect(()=>{var ye,Ve;if(!n){(ye=pe.current)==null||ye.abort(),Ce.current+=1,Oe.current=!1;return}if(!Se){(Ve=pe.current)==null||Ve.abort(),Ce.current+=1,Fe.current=[],Oe.current=!1,$e.current=!1,_([]),q(!1),R("");return}return Pt(Se),()=>{var Ye;(Ye=pe.current)==null||Ye.abort(),Ce.current+=1,Oe.current=!1}},[n,i,Se==null?void 0:Se.id,Se==null?void 0:Se.region]);const ut=n&&!Se&&!O.trim()&&!E&&!N&&!j&&Object.keys(f).length>0;p.useEffect(()=>{const ye=$t.current,Ve=nt.current;if(!ye||!Ve||!ut)return;const Ye=new IntersectionObserver(([ht])=>{ht.isIntersecting&&kt(!0)},{root:Ve,rootMargin:"240px 0px",threshold:.01});return Ye.observe(ye),()=>Ye.disconnect()},[ut,kt]);const gt=()=>{const ye=nt.current;!ye||!ut||ye.scrollHeight-ye.scrollTop-ye.clientHeight<=240&&kt(!0)},Le=!!(Se&&L.length>0&&Q&&!P&&!B);p.useEffect(()=>{const ye=ve.current,Ve=je.current;if(!Se||!ye||!Ve||!Le)return;const Ye=new IntersectionObserver(([ht])=>{ht.isIntersecting&&Pt(Se,!0)},{root:je.current,rootMargin:"240px 0px",threshold:.01});return Ye.observe(ye),()=>Ye.disconnect()},[Le,Pt,Se==null?void 0:Se.id,Se==null?void 0:Se.region]);const xt=()=>{const ye=je.current;if(!Se||!ye||!$e.current||Oe.current||B)return;const{scrollHeight:Ve,scrollTop:Ye,clientHeight:ht}=ye;Ve-Ye-ht<=240&&Pt(Se,!0)},wt=ye=>{d(Ve=>Ve.map(Ye=>et(Ye)===et(ye)?ye:Ye))},Et=async()=>{if(Ee){Re(!0);try{await jlt(Ee.id,Ee.region),d(ye=>ye.filter(Ve=>et(Ve)!==et(Ee))),K(ye=>ye===et(Ee)?"":ye),b===et(Ee)&&v(""),he(null)}catch(ye){A(go(ye,l("knowledge.errors.deleteBase"))),he(null)}finally{Re(!1)}}},Qe=async()=>{if(!(!Se||!Me)){Re(!0);try{await $lt(Se.id,Me.id,Se.region);const ye=Fe.current.filter(Ve=>Ve.id!==Me.id);Fe.current=ye,_(ye),De(null)}catch(ye){M(go(ye,l("knowledge.errors.deleteDocument"))),De(null)}finally{Re(!1)}}};return o.jsxs("section",{className:`knowledge-library${Se?" is-detail":" resource-collection"}`,"aria-label":l("knowledge.library"),children:[Se?o.jsx(pE,{className:"knowledge-library__detail",title:Se.name,description:Se.description||l("common.noDescription"),identitySeed:Se.name,backLabel:l("knowledge.backToList"),onBack:()=>v(""),sections:[{key:"overview",label:l("skillCenter.overview"),content:o.jsx("section",{className:"knowledge-overview",children:o.jsxs(MB,{className:"knowledge-overview__summary",children:[o.jsxs("div",{children:[o.jsx("dt",{children:l("knowledge.provider")}),o.jsx("dd",{children:Se.providerType||"-"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:l("knowledge.knowledgeId")}),o.jsx("dd",{className:"knowledge-keyboard-reveal",tabIndex:0,title:Se.providerKnowledgeId,children:Se.providerKnowledgeId||"-"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:l("knowledge.project")}),o.jsx("dd",{children:Se.projectName||"default"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:l("knowledge.creator")}),o.jsx("dd",{children:KM(Se.ownerLabel)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:l("skillCenter.updatedAt")}),o.jsx("dd",{children:n1t(Se.updatedAt,c.resolvedLanguage??c.language)||"-"})]})]})})},{key:"data",label:l("knowledge.data"),content:o.jsx("section",{className:"knowledge-documents",children:o.jsx("div",{className:`knowledge-documents__body${L.length>0?" is-table":""}`,"aria-live":"polite",children:P&&L.length===0?o.jsx(zd,{}):$&&L.length===0?o.jsxs("div",{className:"knowledge-library__state is-error",role:"alert",children:[o.jsx("p",{children:$}),Kt&&Se.canManage?o.jsx("button",{type:"button",onClick:()=>he(Se),children:l("knowledge.deleteInvalidAssociation")}):o.jsx("button",{type:"button",onClick:()=>void Pt(Se),children:l("common.retry")})]}):L.length===0?o.jsxs("div",{className:"knowledge-library__state",children:[o.jsx(Jxt,{}),o.jsx("p",{children:l("knowledge.noData")}),Se.canManage&&o.jsx("button",{type:"button",onClick:()=>me(Se),children:l("knowledge.addFirstData")})]}):o.jsx(Kot,{rows:cn,rowKey:ye=>ye.id,rowLabel:ye=>ye.name||ye.id,columns:[{key:"name",header:l("common.name"),className:"is-primary-column",render:ye=>o.jsx("span",{title:ye.name||ye.id,children:ye.name||ye.id})},{key:"format",header:l("knowledge.format"),className:"is-compact-column",render:ye=>r$(ye)},{key:"size",header:l("knowledge.size"),className:"is-compact-column",render:ye=>bU(ye.sizeBytes)}],searchValue:k,onSearchChange:S,searchPlaceholder:l("knowledge.searchData"),searchLabel:l("knowledge.searchLibraryData"),primaryAction:Se.canManage?{label:l(Kt?"knowledge.associationInvalid":"knowledge.addData"),disabled:Kt,title:Kt?l("knowledge.providerMissing"):void 0,onClick:()=>me(Se)}:void 0,rowActions:ye=>[{label:l("common.preview"),onSelect:()=>X(ye)},...Se.canManage?[{label:l("common.edit"),onSelect:()=>oe(ye)},{label:l("common.delete"),onSelect:()=>De(ye),danger:!0}]:[]],scrollRef:je,onScroll:xt,busy:P,emptyLabel:l("knowledge.noMatchingData"),footer:P?o.jsxs("div",{className:"knowledge-document-pagination",role:"status","aria-live":"polite",children:[o.jsx("span",{className:"my-agent-loading-mark","aria-hidden":"true"}),o.jsx("span",{children:l("knowledge.loadingMoreData")})]}):B?o.jsxs("div",{className:"knowledge-document-pagination is-error",role:"alert",children:[o.jsx("span",{children:B}),o.jsx("button",{type:"button",onClick:()=>void Pt(Se,!0),children:l("knowledge.retryLoading")})]}):Q?o.jsx("div",{ref:ve,className:"knowledge-document-pagination",role:"status","aria-live":"polite",children:l("skillCenter.scrollForMore")}):null})})})}],activeSectionKey:y,navigationLabel:l("knowledge.details"),onSectionChange:x,actions:Se.canManage?o.jsxs(o.Fragment,{children:[o.jsx(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,onClick:()=>he(Se),children:l("common.delete")}),o.jsx(Ht,{type:"button",color:"primary",size:"lg",pill:!1,onClick:()=>re(!0),children:l("common.edit")})]}):void 0}):o.jsxs(o.Fragment,{children:[o.jsxs(i0,{className:"knowledge-library__toolbar library-resource-toolbar",children:[s,o.jsxs("div",{className:"resource-toolbar__actions",children:[a,o.jsx(Em,{value:O,onChange:ye=>w(ye.target.value),placeholder:l("knowledge.searchBases"),"aria-label":l("knowledge.searchBases")})]})]}),o.jsxs(r0,{ref:nt,"aria-live":"polite",onScroll:gt,children:[m.length>0&&!E&&o.jsxs("div",{className:"knowledge-region-warning",role:"status",children:[o.jsx("span",{children:l("knowledge.someBasesFailed")}),o.jsx("button",{type:"button",onClick:()=>void kt(),children:l("common.retry")})]}),E&&u.length===0?o.jsx(zd,{}):j?o.jsxs("div",{className:"knowledge-library__state is-error",role:"alert",children:[o.jsx("p",{children:j}),o.jsx("button",{type:"button",onClick:()=>void kt(),children:l("common.retry")})]}):en.length===0&&O.trim()?o.jsxs("div",{className:"knowledge-library__state",children:[o.jsx(Zxt,{}),o.jsx("p",{children:l("knowledge.noMatchingBases")})]}):o.jsxs(Gx,{children:[O.trim()?null:o.jsx(jb,{"aria-label":l("knowledge.createBase"),icon:o.jsx(t1t,{}),onClick:()=>G(!0),children:l("knowledge.createBase")}),en.map(ye=>o.jsx(yE,{className:"knowledge-card",title:ye.name,description:ye.description||l("common.noDescription"),metadata:[{label:l("knowledge.creator"),value:KM(ye.ownerLabel),title:KM(ye.ownerLabel)},{label:l("knowledge.project"),value:ye.projectName||"default",title:ye.projectName||"default"}],action:{label:V===et(ye)?l("knowledge.associationInvalid"):l("knowledge.addData"),icon:"plus",disabled:!ye.canManage||V===et(ye),title:ye.canManage?V===et(ye)?l("knowledge.providerMissing"):void 0:l("knowledge.noManagePermission"),onClick:()=>me(ye)},detailAction:{label:l("common.viewDetails"),onClick:()=>v(et(ye))}},et(ye)))]}),ut||N?o.jsx("div",{ref:$t,className:"my-agent-load-more",role:"status","aria-live":"polite",children:N?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"my-agent-loading-mark","aria-hidden":"true"}),o.jsx("span",{children:l("knowledge.loadingMoreBases")})]}):ut?o.jsx("span",{children:l("skillCenter.scrollForMore")}):null}):null]})]}),U&&o.jsx(o1t,{region:t,onClose:()=>G(!1),onCreated:ye=>{d(Ve=>[ye,...Ve]),v(et(ye)),G(!1)}}),Se&&ae&&o.jsx(l1t,{item:Se,onClose:()=>re(!1),onUpdated:ye=>{wt(ye),re(!1)}}),Se&&Z&&o.jsx(x1t,{base:Se,item:Z,onClose:()=>X(null)}),se&&o.jsx(c1t,{base:se,onClose:()=>me(null),onAssociationInvalid:ye=>{K(et(se)),Se&&et(Se)===et(se)&&M(go(ye,l("knowledge.associationInvalid"))),me(null)},onCreated:()=>{Se&&et(Se)===et(se)&&Pt(Se),me(null)}}),Se&&J&&o.jsx(u1t,{base:Se,item:J,onClose:()=>oe(null),onUpdated:ye=>{const Ve=Fe.current.map(Ye=>Ye.id===ye.id?ye:Ye);Fe.current=Ve,_(Ve),oe(null)}}),Ee&&o.jsx(gc,{title:l("knowledge.deleteBaseTitle"),description:l("knowledge.deleteBaseDescription",{name:Ee.name}),confirmLabel:l(_e?"common.deleting":"common.delete"),variant:"danger",busy:_e,onCancel:()=>he(null),onConfirm:()=>void Et()}),Me&&o.jsx(gc,{title:l("knowledge.deleteDocumentTitle"),description:l("knowledge.deleteDocumentDescription",{name:Me.name||Me.id}),confirmLabel:l(_e?"common.deleting":"common.delete"),variant:"danger",busy:_e,onCancel:()=>De(null),onConfirm:()=>void Qe()})]})}const O1t="_EmptyMessage_1r5gu_1",S1t="_IconBadge_1r5gu_16",k1t="_Title_1r5gu_54",E1t="_Description_1r5gu_69",C1t="_ActionRow_1r5gu_77",AE={EmptyMessage:O1t,IconBadge:S1t,Title:k1t,Description:E1t,ActionRow:C1t},Tn=({children:e,className:t,fill:n="static"})=>o.jsx("div",{className:yi(AE.EmptyMessage,t),"data-fill":n,children:e}),T1t=({size:e="md",color:t="secondary",children:n,className:i})=>o.jsx("div",{className:yi(AE.IconBadge,i),"data-size":e,"data-color":t,children:n}),A1t=({children:e,className:t,color:n="secondary"})=>o.jsx("div",{className:yi(AE.Title,t),"data-color":n,children:e}),_1t=({children:e,className:t})=>o.jsx("div",{className:yi(AE.Description,t),children:e}),N1t=({children:e,className:t})=>o.jsx("div",{className:yi(AE.ActionRow,t),children:e});Tn.Icon=T1t;Tn.Title=A1t;Tn.Description=_1t;Tn.ActionRow=N1t;const j1t="/web/skill-management";class R1t extends Error{constructor(t,n,i="SKILL_MANAGEMENT_ERROR",r="",s,a=""){super(t),this.status=n,this.code=i,this.statusText=r,this.originalError=s,this.rawResponse=a,this.name="SkillManagementApiError"}}async function Bh(e,t={},n=Yo){return fetch(Ho(`${j1t}${e}`),{...t,headers:qu(Ph(t.headers)),signal:Sl(t.signal,n)})}async function eCe(e,t){let n=t,i="SKILL_MANAGEMENT_ERROR",r;const s=await e.text().catch(()=>"");try{const a=JSON.parse(s);typeof a.detail=="string"?n=a.detail:a.detail&&(n=a.detail.message||t,i=a.detail.code||i,r=a.detail.originalError)}catch{s.trim()&&(n=H("common.fallbackWithDetail",{fallback:t,detail:s.trim()}))}return new R1t(n,e.status,i,e.statusText,r,s)}async function Uh(e,t){if(!e.ok)throw await eCe(e,t);return e.json()}async function I1t(e){const t=new URLSearchParams({region:e.region,page:String(e.page),page_size:String(e.pageSize)});return e.project&&t.set("project",e.project),Uh(await Bh(`/spaces?${t}`,{signal:e.signal}),H("skills.listSpacesFailed"))}async function P1t(e){return Uh(await Bh("/spaces",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)}),H("skills.createSpaceFailed"))}async function D1t(e){return Uh(await Bh(`/spaces/${encodeURIComponent(e.spaceId)}`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:e.name,description:e.description,region:e.region})}),H("skills.updateSpaceFailed"))}async function M1t(e){const t=new URLSearchParams({region:e.region});await Uh(await Bh(`/spaces/${encodeURIComponent(e.spaceId)}?${t}`,{method:"DELETE"}),H("skills.deleteSpaceFailed"))}async function L1t(e){const t=new URLSearchParams({region:e.region});return e.project&&t.set("project",e.project),Uh(await Bh(`/spaces/${encodeURIComponent(e.spaceId)}/skills?${t}`,{method:"POST",headers:{"Content-Type":"application/zip"},body:e.file},rs),H("skills.uploadFailed"))}async function $1t(e){return Uh(await Bh("/validate",{method:"POST",headers:{"Content-Type":"application/zip"},body:e},rs),H("skills.validateFailed"))}async function F1t(e){const t=new URLSearchParams({region:e.region});await Uh(await Bh(`/spaces/${encodeURIComponent(e.spaceId)}/skills/${encodeURIComponent(e.skillId)}?${t}`,{method:"DELETE"}),H("skills.deleteFailed"))}async function B1t(e){const t=new URLSearchParams({region:e.region});e.version&&t.set("version",e.version),e.skillSpaceName&&t.set("skill_space_name",e.skillSpaceName),e.skillName&&t.set("skill_name",e.skillName);const n=await Uh(await Bh(`/spaces/${encodeURIComponent(e.spaceId)}/skills/${encodeURIComponent(e.skillId)}/files?${t}`),H("skills.listFilesFailed"));return Array.isArray(n.files)?n.files:[]}async function U1t(e){var l;const t=new URLSearchParams({region:e.region});e.version&&t.set("version",e.version),e.skillSpaceName&&t.set("skill_space_name",e.skillSpaceName),e.skillName&&t.set("skill_name",e.skillName);const n=await Bh(`/spaces/${encodeURIComponent(e.spaceId)}/skills/${encodeURIComponent(e.skillId)}/archive?${t}`,{},rs);n.ok||await Uh(n,H("skills.downloadFailed"));const r=((l=(n.headers.get("content-disposition")||"").match(/filename="([^"]+)"/))==null?void 0:l[1])||`${e.fallbackName}.zip`,s=URL.createObjectURL(await n.blob()),a=document.createElement("a");a.href=s,a.download=r,a.click(),URL.revokeObjectURL(s)}async function uI(e){const t=await fetch(e,{headers:{accept:"application/json"},signal:Sl(void 0,Yo)});if(!t.ok)throw await eCe(t,Ft("helpers.skills.agentKitRequestFailed"));return t.json()}async function tCe(){return(await uI("/web/skill-spaces")).items||[]}async function nCe(e,t){const n=t?`?region=${encodeURIComponent(t)}`:"";return(await uI(`/web/skill-spaces/${encodeURIComponent(e)}/skills${n}`)).items||[]}async function Q1t(e,t){const n=new URLSearchParams({region:t.region,page:String(t.page),page_size:String(t.pageSize)});return t.project&&n.set("project",t.project),uI(`/web/skill-spaces/${encodeURIComponent(e)}/skills?${n.toString()}`)}async function z1t(e,t,n,i,r,s,a){const l=[];n&&l.push(`version=${encodeURIComponent(n)}`),i&&l.push(`region=${encodeURIComponent(i)}`),r&&l.push(`project=${encodeURIComponent(r)}`),s&&l.push(`skill_name=${encodeURIComponent(s)}`),a&&l.push(`skill_space_name=${encodeURIComponent(a)}`);const c=l.length>0?`?${l.join("&")}`:"";return uI(`/web/skill-spaces/${encodeURIComponent(e)}/skills/${encodeURIComponent(t)}${c}`)}function V1t(e,t){const n=Vg(t);return{source:"skillspace",id:`ss:${e.id}/${n}/${t.version}`,name:t.skillName,description:t.skillDescription,folder:t.skillName,skillSpaceId:e.id,skillSpaceName:e.name,skillSpaceRegion:e.region,skillId:n,version:t.version}}function Vg(e){return e.skillId||e.skillName}function H1t(e,t,n="volcengine"){return n==="byteplus"?"":`https://console.volcengine.com/agentkit/${(t||"cn-beijing")==="cn-beijing"?"cn":"cn-shanghai"}/skillspace/detail/${encodeURIComponent(e)}`}on.hasResourceBundle("en-US","skills")||on.addResourceBundle("en-US","skills",foe,!0,!0);on.hasResourceBundle("zh-CN","skills")||on.addResourceBundle("zh-CN","skills",_de,!0,!0);function zt(e,t={}){return on.t(e,{...t,ns:"skills"})}const q1t="/web/skill-workbench";class s$ extends Error{constructor(t,n,i="SKILL_WORKBENCH_ERROR",r=!1,s="",a,l=""){super(t),this.status=n,this.code=i,this.retryable=r,this.statusText=s,this.originalError=a,this.rawResponse=l,this.name="SkillWorkbenchApiError"}}function tu(e,t){if(!e||typeof e!="object"||Array.isArray(e))throw new Error(zt("api.invalidFormat",{label:t}));return e}function HY(e,t){if(e!=null){if(typeof e!="string"||!e.trim()||e.trim().length>256)throw new Error(zt("api.invalidFormat",{label:t}));return e.trim()}}function W1t(e){if(e!=null){if(e==="pending"||e==="ready"||e==="failed"||e==="unknown")return e;throw new Error(zt("api.invalidFormat",{label:zt("api.recoveryStatus")}))}}async function Vd(e,t={},n=Yo){return fetch(Ho(`${q1t}${e}`),{...t,headers:Ph(t.headers),signal:Sl(t.signal,n)})}async function yU(e,t){var i;const n=await e.text().catch(()=>"");try{const r=tu(JSON.parse(n),zt("api.errorResponse")),s=r.detail&&typeof r.detail=="object"?tu(r.detail,zt("api.errorDetails")):r;return new s$(typeof s.message=="string"?s.message:t,e.status,typeof s.code=="string"?s.code:"SKILL_WORKBENCH_ERROR",s.retryable===!0,e.statusText,s.originalError&&typeof s.originalError=="object"?s.originalError:void 0,n)}catch{const r=((i=e.headers.get("content-type"))==null?void 0:i.split(";",1)[0])||zt("api.missingContentType");return new s$(zt("api.gatewayError",{fallback:t,status:e.status,contentType:r}),e.status,"SKILL_WORKBENCH_ERROR",!1,e.statusText,void 0,n)}}async function Tm(e,t){if(!e.ok)throw await yU(e,t);const n=e.headers.get("content-type")??"";if(!n.includes("application/json")){const i=n.split(";",1)[0]||zt("api.missingContentType");throw new Error(zt("api.nonJson",{fallback:t,status:e.status,contentType:i}))}return e.json()}function K1t(e){return Array.isArray(e)?e.map(t=>{const n=tu(t,zt("api.activity")),i=n.kind,r=n.status;if(typeof n.id!="string"||!["status","thinking","message","tool"].includes(String(i))||!["running","done"].includes(String(r)))throw new Error(zt("api.invalidActivity"));if(i==="tool"){if(typeof n.name!="string")throw new Error(zt("api.invalidToolActivity"));return{id:n.id,kind:i,status:r,name:n.name,...n.input!==void 0?{args:n.input}:{},...n.output!==void 0?{response:n.output}:{}}}if(typeof n.text!="string")throw new Error(zt("api.invalidTextActivity"));return{id:n.id,kind:i,status:r,text:n.text}}):[]}function G1t(e){if(e==null)return;const t=tu(e,zt("api.publication"));if(typeof t.revision!="number"||typeof t.skillId!="string"||typeof t.version!="string"||!Array.isArray(t.skillSpaceIds)||!t.skillSpaceIds.every(n=>typeof n=="string")||t.disposition!=="create-new"&&t.disposition!=="update-source"||!oR(t.region)||typeof t.projectName!="string")throw new Error(zt("api.invalidFormat",{label:zt("api.publication")}));return{revision:t.revision,skillId:t.skillId,version:t.version,skillSpaceIds:t.skillSpaceIds,disposition:t.disposition,region:t.region,projectName:t.projectName}}function XS(e){const t=tu(e,zt("api.task"));if(typeof t.jobId!="string"||t.operation!=="create"&&t.operation!=="optimize"||typeof t.intent!="string"||typeof t.revision!="number"||typeof t.state!="string")throw new Error(zt("api.invalidFormat",{label:zt("api.task")}));const n=Array.isArray(t.files)?t.files.flatMap(l=>{const c=tu(l,zt("api.file"));return typeof c.path=="string"&&typeof c.size=="number"?[{path:c.path,size:c.size}]:[]}):[];if(!["running","ready","failed","cancelled","expired","published"].includes(t.state))throw new Error(zt("api.unknownTaskState"));const r=HY(t.toolId,"Tool ID"),s=HY(t.sessionId,"Session ID"),a=W1t(t.recoveryStatus);return{jobId:t.jobId,operation:t.operation,intent:t.intent,...typeof t.model=="string"?{model:t.model}:{},...typeof t.style=="string"?{style:t.style}:{},...typeof t.requestedName=="string"?{requestedName:t.requestedName}:{},revision:t.revision,...r?{toolId:r}:{},...s?{sessionId:s}:{},...typeof t.sessionTtlSeconds=="number"?{sessionTtlSeconds:t.sessionTtlSeconds}:{},...typeof t.expiresAt=="string"?{expiresAt:t.expiresAt}:{},...typeof t.recoveryAvailable=="boolean"?{recoveryAvailable:t.recoveryAvailable}:{},...a?{recoveryStatus:a}:{},...typeof t.recoveredFromSnapshot=="boolean"?{recoveredFromSnapshot:t.recoveredFromSnapshot}:{},state:t.state,stage:typeof t.stage=="string"?t.stage:"generating",activities:K1t(t.activities),files:n,...t.source&&typeof t.source=="object"?{source:t.source}:{},...typeof t.name=="string"?{name:t.name}:{},...typeof t.description=="string"?{description:t.description}:{},...typeof t.skillMd=="string"?{skillMd:t.skillMd}:{},...typeof t.error=="string"?{error:t.error}:{},...t.validation&&typeof t.validation=="object"?{validation:t.validation}:{},...t.publication?{publication:G1t(t.publication)}:{}}}async function dI(e){const t=tu(await Tm(await Vd("/capabilities",{signal:e}),zt("api.loadCapability")),zt("api.capability"));return{enabled:t.enabled===!0,reason:typeof t.reason=="string"?t.reason:"",operations:Array.isArray(t.operations)?t.operations.filter(n=>n==="create"||n==="optimize"):[],models:Array.isArray(t.models)?t.models.flatMap(n=>{if(!n||typeof n!="object")return[];const i=n;return typeof i.id=="string"&&typeof i.label=="string"?[{id:i.id,label:i.label}]:[]}):[],styles:t.styles&&typeof t.styles=="object"&&!Array.isArray(t.styles)?Object.fromEntries(Object.entries(t.styles).filter(n=>typeof n[1]=="string")):{},...typeof t.maxUploadBytes=="number"?{maxUploadBytes:t.maxUploadBytes}:{}}}async function X1t(e){if(e.file){const n=new URLSearchParams({operation:"optimize",intent:e.intent});e.jobId&&n.set("job_id",e.jobId),e.model&&n.set("model",e.model),e.style&&n.set("style",e.style),e.name&&n.set("name",e.name);const i=await Vd(`/tasks/from-upload?${n}`,{method:"POST",body:e.file,headers:{"Content-Type":"application/zip"},signal:e.signal},rs);return XS(await Tm(i,zt("api.startOptimization")))}const t=await Vd("/tasks",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({operation:e.operation,intent:e.intent,...e.model?{model:e.model}:{},...e.style?{style:e.style}:{},...e.name?{name:e.name}:{},...e.jobId?{jobId:e.jobId}:{},...e.source?{source:{kind:"skill-center",skillId:e.source.skillId,skillName:e.source.name,version:e.source.version,region:e.source.region,projectName:e.source.projectName,skillSpaceId:e.source.skillSpaceId,skillSpaceName:e.source.skillSpaceName}}:{}}),signal:e.signal},rs);return XS(await Tm(t,zt("api.startTask")))}async function Y1t(e,t){return XS(await Tm(await Vd(`/tasks/${encodeURIComponent(e)}`,{signal:t}),zt("api.loadTask")))}async function GM(e,t,n){const i=new URLSearchParams;i.set("expected_revision",String(t));const r=tu(await Tm(await Vd(`/tasks/${encodeURIComponent(e)}/artifact?${i.toString()}`,{signal:n}),zt("api.loadArtifact")),zt("api.artifact"));if(r.jobId!==e||r.revision!==t||!Number.isSafeInteger(r.revision)||r.revision<1||typeof r.sha256!="string"||!/^[0-9a-f]{64}$/.test(r.sha256)||typeof r.name!="string"||typeof r.description!="string"||!Array.isArray(r.files))throw new Error(zt("api.invalidFormat",{label:zt("api.artifact")}));const s=r.files.map(a=>{const l=tu(a,zt("api.artifactFile"));if(typeof l.path!="string"||typeof l.size!="number"||typeof l.content!="string")throw new Error(zt("api.invalidFormat",{label:zt("api.artifactFile")}));return{path:l.path,size:l.size,content:l.content}});return{jobId:r.jobId,revision:r.revision,sha256:r.sha256,name:r.name,description:r.description,files:s}}async function XM(e){const t=await Vd(`/tasks/${encodeURIComponent(e.jobId)}/refinements`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({intent:e.intent,expectedRevision:e.expectedRevision})},rs);return XS(await Tm(t,zt("api.refine")))}async function Z1t(e){const t=await Vd(`/tasks/${encodeURIComponent(e.jobId)}/stop`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({expectedRevision:e.expectedRevision})});return XS(await Tm(t,zt("api.stop")))}async function J1t(e){const t=await Vd(`/tasks/${encodeURIComponent(e.jobId)}/publish-stream`,{method:"POST",headers:{"Content-Type":"application/json",Accept:"application/x-ndjson"},body:JSON.stringify({disposition:e.disposition,expectedRevision:e.expectedRevision,expectedArtifactSha256:e.expectedArtifactSha256,skillSpaceIds:e.skillSpaceIds??[],projectName:e.projectName,region:e.region}),signal:e.signal},0);if(!t.ok)throw await yU(t,zt("api.publish"));if(!(t.headers.get("content-type")??"").includes("application/x-ndjson"))throw new Error(zt("api.nonNdjson"));if(!t.body)throw new Error(zt("api.missingStream"));const i=new Set(["preparing","uploading","registering","activating","publishing"]);let r=null,s="";const a=new TextDecoder,l=t.body.getReader(),c=u=>{var h;if(!u.trim())return;const d=tu(JSON.parse(u),zt("api.publishProgress"));if(d.type==="progress"){if(typeof d.phase!="string"||!i.has(d.phase)||typeof d.message!="string")throw new Error(zt("api.invalidPublishProgress"));(h=e.onProgress)==null||h.call(e,{phase:d.phase,message:d.message});return}if(d.type==="error"){const m=tu(d.error,zt("api.publishError"));throw new s$(typeof m.message=="string"?m.message:zt("api.publish"),500,typeof m.code=="string"?m.code:"SKILL_PUBLISH_FAILED",m.retryable===!0,"",m.originalError&&typeof m.originalError=="object"?m.originalError:void 0,JSON.stringify(d.error))}if(d.type!=="complete")throw new Error(zt("api.unknownPublishEvent"));const f=tu(d.result,zt("api.publishResult"));if(typeof f.skillId!="string"||typeof f.version!="string"||!Array.isArray(f.skillSpaceIds)||!f.skillSpaceIds.every(m=>typeof m=="string")||f.disposition!=="create-new"&&f.disposition!=="update-source"||!oR(f.region)||typeof f.projectName!="string")throw new Error(zt("api.invalidFormat",{label:zt("api.publishResult")}));r={skillId:f.skillId,version:f.version,skillSpaceIds:f.skillSpaceIds,disposition:f.disposition,region:f.region,projectName:f.projectName}};for(;;){const{value:u,done:d}=await l.read();s+=a.decode(u,{stream:!d});const f=s.split(` +`);if(s=f.pop()??"",f.forEach(c),d)break}if(c(s),!r)throw new Error(zt("api.streamEnded"));return r}async function ewt(e){await Tm(await Vd(`/tasks/${encodeURIComponent(e)}`,{method:"DELETE"}),zt("api.deleteTask"))}async function twt(e,t,n){var c;const i=new URLSearchParams;i.set("expected_revision",String(t)),i.set("expected_sha256",n);const r=await Vd(`/tasks/${encodeURIComponent(e)}/download?${i.toString()}`,{},rs);if(!r.ok)throw await yU(r,zt("api.download"));const a=((c=(r.headers.get("content-disposition")??"").match(/filename="([^"]+)"/))==null?void 0:c[1])??"skill.zip",l=URL.createObjectURL(await r.blob());try{const u=document.createElement("a");u.href=l,u.download=a,u.click()}finally{URL.revokeObjectURL(l)}}const nwt={formatDate(e){const t=e.value??e.date??e.timestamp;if(t==null)return"";const n=new Date(t);return isNaN(n.getTime())?String(t):n.toLocaleString()}};function iwt(e,t){if(!t||t==="/")return e;const n=t.replace(/^\//,"").split("/").map(r=>r.replace(/~1/g,"/").replace(/~0/g,"~"));let i=e;for(const r of n){if(i==null||typeof i!="object")return;i=i[r]}return i}function rwt(e){return typeof e=="object"&&e!==null&&typeof e.path=="string"}function swt(e){return typeof e=="object"&&e!==null&&typeof e.call=="string"}function vU(e,t){if(rwt(e))return iwt(t,e.path);if(swt(e)){const n=nwt[e.call],i={};for(const[r,s]of Object.entries(e.args??{}))i[r]=vU(s,t);return n?n(i):`[unknown fn: ${e.call}]`}return e}function awt(e,t){const n=vU(e,t);return n==null?"":typeof n=="string"?n:String(n)}const iCe=new Map;function u0(e,t){iCe.set(e,t)}function owt(e){return iCe.get(e)}function lwt(e,t,n){const i=t.replace(/^\//,"").split("/").map(s=>s.replace(/~1/g,"/").replace(/~0/g,"~"));let r=e;for(let s=0;svU(i,e.dataModel),resolveString:i=>awt(i,e.dataModel),dispatchAction:t,render:i=>{if(!i)return null;const r=e.components[i];if(!r)return null;const s=owt(r.component)??cwt;return o.jsx(s,{node:r,ctx:n},i)}};return o.jsx("div",{className:"a2ui-surface","data-a2ui-surface":e.surfaceId,children:n.render(e.rootId)})}function sCe(e){const t=p.useRef(null),n=p.useRef(!0),i=28,r=p.useCallback(()=>{const s=t.current;s&&(n.current=s.scrollHeight-s.scrollTop-s.clientHeight{const s=t.current;s&&n.current&&(s.scrollTop=s.scrollHeight)},[e]),{ref:t,onScroll:r}}function fI({value:e,skillPrefix:t="/",onRemoveSkill:n,onRemoveAgent:i}){const{t:r}=Ae("conversation");return e.skills.length===0&&!e.targetAgent?null:o.jsxs("div",{className:"invocation-chips","aria-label":r("invocation.ariaLabel"),children:[e.skills.map(s=>o.jsxs("span",{className:"invocation-chip invocation-chip--skill",title:s.description,children:[o.jsx(vS,{"aria-hidden":!0}),o.jsxs("span",{children:[t,s.name]}),n?o.jsx("button",{type:"button",onClick:()=>n(s.name),"aria-label":r("invocation.removeSkill",{name:s.name}),children:o.jsx($a,{})}):null]},s.name)),e.targetAgent?o.jsxs("span",{className:"invocation-chip invocation-chip--agent",title:e.targetAgent.description,children:[o.jsx(Lbe,{"aria-hidden":!0}),o.jsx("span",{children:e.targetAgent.name}),i?o.jsx("button",{type:"button",onClick:i,"aria-label":r("invocation.removeAgent",{name:e.targetAgent.name}),children:o.jsx($a,{})}):null]}):null]})}function xU(e=""){return e.startsWith("image/")?"image":e.startsWith("video/")?"video":e==="application/pdf"?"pdf":e==="text/markdown"?"markdown":"text"}function aCe(e){var n,i,r,s;const t=xU(e.mimeType);return t==="pdf"?"PDF":t==="markdown"?"MD":t==="video"?((i=(n=e.mimeType)==null?void 0:n.split("/")[1])==null?void 0:i.toUpperCase())??"VIDEO":t==="image"?((s=(r=e.mimeType)==null?void 0:r.split("/")[1])==null?void 0:s.toUpperCase())??"IMAGE":"TXT"}function oCe(e){return e?e<1024?`${e} B`:e<1024*1024?`${Math.round(e/1024)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`:""}function lCe(e,t){return e.previewUrl?e.previewUrl:e.data?`data:${e.mimeType??"application/octet-stream"};base64,${e.data}`:e.uri?h0e(t,e.uri):""}function dwt({kind:e}){return e==="image"?o.jsx(z9,{}):e==="video"?o.jsx(Fbe,{}):e==="pdf"?o.jsx(D7e,{}):o.jsx(U9,{})}function hI({appName:e,items:t,compact:n=!1,onRemove:i}){const{t:r}=Ae("conversation"),[s,a]=p.useState(null);return o.jsxs(o.Fragment,{children:[o.jsx("div",{className:`media-grid${n?" media-grid--compact":""}`,children:t.map(l=>{const c=xU(l.mimeType),u=lCe(l,e),d=l.status==="uploading"||l.status==="error"||!u,f=o.jsxs("button",{type:"button",className:"media-card-main",disabled:d,onClick:c==="image"?void 0:()=>a(l),"aria-label":r("media.preview",{name:l.name??r("media.attachment")}),children:[c==="image"&&u?o.jsx("img",{className:"media-card-image",src:u,alt:l.name??r("media.image"),loading:"lazy"}):c==="video"&&u?o.jsxs("div",{className:"media-card-video-container",children:[o.jsx("video",{className:"media-card-video",src:u,muted:!0,playsInline:!0,preload:"metadata","aria-hidden":"true"}),o.jsx("span",{className:"media-card-video-play",children:o.jsx(W7e,{})})]}):o.jsx("span",{className:"media-card-icon",children:o.jsx(dwt,{kind:c})}),o.jsxs("span",{className:"media-card-copy",children:[o.jsx("span",{className:"media-card-name",children:l.name??r("media.attachment")}),o.jsxs("span",{className:"media-card-meta",children:[o.jsx("span",{className:"media-card-type",children:aCe(l)}),l.status==="uploading"?o.jsxs(o.Fragment,{children:[o.jsx(gi,{className:"media-card-spinner"})," ",r("media.uploading")]}):l.status==="error"?l.error??r("media.uploadFailed"):oCe(l.sizeBytes)]})]}),!n&&l.status!=="uploading"&&l.status!=="error"?o.jsx(ev,{className:"media-card-open"}):null]});return o.jsxs(wr.div,{className:`media-card media-card--${c}${l.status==="error"?" media-card--error":""}`,layout:!0,initial:{opacity:0,scale:.985,y:4},animate:{opacity:1,scale:1,y:0},children:[c==="image"&&!d?o.jsx(_be,{src:u,children:f}):f,i?o.jsx("button",{type:"button",className:"media-card-remove","aria-label":r("media.remove",{name:l.name??r("media.attachment")}),onClick:()=>i(l.id),children:o.jsx($a,{})}):null]},l.id)})}),o.jsx(Iu,{children:s?o.jsx(fwt,{appName:e,item:s,onClose:()=>a(null)}):null})]})}function fwt({appName:e,item:t,onClose:n}){const{t:i}=Ae("conversation"),r=p.useMemo(()=>lCe(t,e),[e,t]),s=xU(t.mimeType),[a,l]=p.useState(""),[c,u]=p.useState(s==="text"||s==="markdown"),[d,f]=p.useState("");return p.useEffect(()=>{const h=m=>{m.key==="Escape"&&n()};return window.addEventListener("keydown",h),()=>window.removeEventListener("keydown",h)},[n]),p.useEffect(()=>{if(s!=="text"&&s!=="markdown")return;const h=new AbortController;return u(!0),f(""),fetch(r,{signal:h.signal}).then(m=>{if(!m.ok)throw new Error(`HTTP ${m.status}`);return m.text()}).then(l).catch(m=>{h.signal.aborted||f(m instanceof Error?m.message:String(m))}).finally(()=>{h.signal.aborted||u(!1)}),()=>h.abort()},[s,r]),o.jsx(wr.div,{className:"media-viewer-backdrop",role:"dialog","aria-modal":"true","aria-label":i("media.previewDialog",{name:t.name??i("media.attachment")}),initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},onMouseDown:h=>{h.target===h.currentTarget&&n()},children:o.jsxs(wr.div,{className:"media-viewer",initial:{opacity:0,y:18,scale:.985},animate:{opacity:1,y:0,scale:1},exit:{opacity:0,y:10,scale:.99},transition:{type:"spring",stiffness:420,damping:30},children:[o.jsxs("header",{className:"media-viewer-header",children:[o.jsxs("div",{children:[o.jsx("strong",{children:t.name??i("media.attachment")}),o.jsxs("span",{children:[aCe(t),t.sizeBytes?` · ${oCe(t.sizeBytes)}`:""]})]}),o.jsxs("nav",{children:[o.jsx("a",{href:r,download:t.name,"aria-label":i("media.download"),children:o.jsx(iR,{})}),o.jsx("button",{type:"button",onClick:n,"aria-label":i("media.close"),children:o.jsx($a,{})})]})]}),o.jsxs("div",{className:`media-viewer-body media-viewer-body--${s}`,children:[s==="image"?o.jsx("img",{src:r,alt:t.name??i("media.image")}):null,s==="video"?o.jsx("div",{className:"media-viewer-video-wrapper",children:o.jsx("video",{src:r,controls:!0,autoPlay:!0,playsInline:!0,preload:"auto",className:"media-viewer-video"})}):null,s==="pdf"?o.jsx("iframe",{src:r,title:t.name??"PDF"}):null,c?o.jsxs("div",{className:"media-viewer-loading",children:[o.jsx(gi,{})," ",i("media.reading")]}):null,!c&&d?o.jsx("div",{className:"media-viewer-loading",children:i("media.loadFailed",{error:d})}):null,!c&&s==="markdown"?o.jsx("div",{className:"media-document",children:o.jsx(Uu,{text:a})}):null,!c&&s==="text"?o.jsx("pre",{className:"media-document media-document--plain",children:a}):null]})]})})}function qY(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"10.25",cy:"10.25",r:"6.25"}),o.jsx("path",{d:"M4.15 10.25h12.2M10.25 4c1.65 1.72 2.5 3.8 2.5 6.25s-.85 4.53-2.5 6.25M10.25 4c-1.65 1.72-2.5 3.8-2.5 6.25s.85 4.53 2.5 6.25M14.8 14.8 20 20"})]})}function hwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"3.25",y:"5.25",width:"15.5",height:"13.5",rx:"2.25"}),o.jsx("circle",{cx:"8.1",cy:"9.3",r:"1.35"}),o.jsx("path",{d:"m4.7 16.5 3.65-3.7 2.45 2.25 2.2-2.2 4.35 4.1"}),o.jsx("path",{d:"m19.4 2.75.48 1.37 1.37.48-1.37.48-.48 1.37-.48-1.37-1.37-.48 1.37-.48.48-1.37Z",fill:"currentColor",stroke:"none"})]})}function wU(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{className:"video-generate-icon__body",d:"M3.25 9h17.5v7.35a2.4 2.4 0 0 1-2.4 2.4H5.65a2.4 2.4 0 0 1-2.4-2.4V9Z"}),o.jsxs("g",{className:"video-generate-icon__clapper",children:[o.jsx("path",{d:"M3.25 9V7.65a2.4 2.4 0 0 1 2.4-2.4h12.7a2.4 2.4 0 0 1 2.4 2.4V9H3.25Z"}),o.jsx("path",{d:"M6.75 5.25 9.3 9M12 5.25 14.55 9M17.25 5.25 19.8 9"})]}),o.jsx("path",{d:"m10.25 11.45 4 2.55-4 2.55v-5.1Z"})]})}function pwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M4.25 5.25h15.5v10.5H4.25zM8.25 19.75h7.5M12 15.75v4"}),o.jsx("path",{d:"m7.25 12.75 2.35-2.4 2.15 1.65 3.4-3.6 1.6 1.55"}),o.jsx("circle",{cx:"7.25",cy:"8.4",r:".7",fill:"currentColor",stroke:"none"})]})}function mwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5 7.4c0-1.55 3.13-2.8 7-2.8s7 1.25 7 2.8-3.13 2.8-7 2.8-7-1.25-7-2.8Z"}),o.jsx("path",{d:"M5 7.4v4.55c0 1.55 3.13 2.8 7 2.8s7-1.25 7-2.8V7.4M5 11.95v4.55c0 1.55 3.13 2.8 7 2.8s7-1.25 7-2.8v-4.55"}),o.jsx("path",{d:"M8.2 12.25h.01M8.2 16.8h.01"})]})}function gwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M4.25 4.25h4.5v15.5h-4.5zM8.75 5.75h5v14h-5zM13.75 4.25h4.1v10.25h-4.1z"}),o.jsx("path",{d:"M5.75 7h1.5M10.25 8.25h2M10.25 11h2M15.15 7h1.3"}),o.jsx("circle",{cx:"17.45",cy:"17.35",r:"2.45"}),o.jsx("path",{d:"m19.25 19.15 1.55 1.55"})]})}function bwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M4.25 6.25h6.25c1 0 1.5.55 1.5 1.45v11.05c0-.9-.5-1.45-1.5-1.45H4.25V6.25Z"}),o.jsx("path",{d:"M19.75 9.1v8.2H13.5c-1 0-1.5.55-1.5 1.45V7.7c0-.9.5-1.45 1.5-1.45h2.15"}),o.jsx("path",{d:"m19 3.2.58 1.62 1.62.58-1.62.58L19 7.6l-.58-1.62-1.62-.58 1.62-.58L19 3.2Z",fill:"currentColor",stroke:"none"})]})}function ywt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"m4.2 8.4 1.15 10.2h13.3L19.8 8.4"}),o.jsx("path",{d:"M4.2 8.4h15.6L17.9 5H6.1L4.2 8.4Z"}),o.jsx("path",{d:"M7.2 12.2c1.1-1 2.25 1.25 3.4.25 1.05-.9 2.15 1.3 3.3.25"}),o.jsx("path",{d:"m8.2 15.1 1.45 1.35 1.45-1.35M13.55 16.45h2.35"})]})}function vwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"6",cy:"6.25",r:"2.25"}),o.jsx("circle",{cx:"18",cy:"6.25",r:"2.25"}),o.jsx("circle",{cx:"12",cy:"17.75",r:"2.25"}),o.jsx("path",{d:"m7.7 7.75 2.7 7.55M16.3 7.75l-2.7 7.55M8.25 6.25h7.5"})]})}function WY(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"9",cy:"8",r:"3"}),o.jsx("path",{d:"M3.75 18.75c.45-3.05 2.2-4.65 5.25-4.65s4.8 1.6 5.25 4.65"}),o.jsx("path",{d:"M17.75 4.25v5.5M15 7h5.5M16 13.25h4.25M18.125 11.125v4.25"})]})}function xwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"4",y:"4.25",width:"16",height:"5",rx:"1.5"}),o.jsx("rect",{x:"4",y:"14.75",width:"16",height:"5",rx:"1.5"}),o.jsx("path",{d:"M7.25 6.75h.01M7.25 17.25h.01M10 6.75h6.5M10 17.25h6.5"})]})}function wwt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M6 3.75h8l4 4v12.5H6V3.75Z"}),o.jsx("path",{d:"M14 3.75v4h4M8.75 11h6.5M8.75 14.25h6.5M8.75 17.5h4"})]})}function KY(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"3.75",y:"4.5",width:"16.5",height:"15",rx:"2.5"}),o.jsx("path",{d:"m7.5 9 2.75 2.5L7.5 14M12.5 14h4"}),o.jsx("path",{d:"M3.75 7.5h16.5",opacity:".62"})]})}function OU(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m6 3.25 4.5 4.75L6 12.75"})})}function Owt({definition:e,label:t,done:n,open:i,onToggle:r}){const{t:s}=Ae("conversation"),a=e.icon,l=n?e.doneLabel:e.runningLabel,c=t??s(`blocks.tools.${e.name}.${n?"done":"running"}`,{defaultValue:l});return o.jsxs("button",{type:"button",className:`builtin-tool-head${n?" is-done":" is-running"}`,"data-tool-tone":e.tone,onClick:r,"aria-expanded":i,children:[o.jsx("span",{className:"builtin-tool-icon","aria-hidden":"true",children:o.jsx(a,{})}),n?o.jsx("span",{className:"builtin-tool-label",children:c}):o.jsx(kn,{className:"builtin-tool-label",duration:2.4,spread:18,"aria-live":"polite",children:c}),o.jsx(OU,{className:`builtin-tool-chevron${i?" is-open":""}`})]})}function uc(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)?e:void 0}function Cn(e){return typeof e=="string"?e:""}function GY(e){return typeof e=="number"&&Number.isFinite(e)?e:0}function Hc(e){return Array.isArray(e)?e:[]}function a$(e){let t=e;if(typeof t=="string")try{t=JSON.parse(t)}catch{return{}}const n=uc(t)??{};return uc(n.result)??n}function pI(e){if(typeof e=="string")try{return pI(JSON.parse(e))}catch{return e}const t=uc(e);if(!t)return"";const n=uc(t.result);return Cn(t.error)||Cn(t.message)||Cn(n==null?void 0:n.error)||Cn(n==null?void 0:n.message)}function Swt(e){if(e.kind==="tool")return"tool";if(e.kind==="knowledge_base")return"knowledge_base";const t=uc(e.metadata),n=Cn(t==null?void 0:t.source_type).toLowerCase(),i=Cn(e.source).toLowerCase();return n==="skillhub"||i.startsWith("skill_hub:")?"skill_hub":"skill_space"}const cCe={tool:"Tools",knowledge:"AgentKit Knowledge Base",skillCenter:"AgentKit Skill Center",unknownSource:"Unknown source",unnamedResource:"Unnamed resource",unnamedAgent:"Unnamed agent"};function kwt(e,t){return e==="veadk_builtin_tools"?t.tool:e==="agentkit_knowledge"?t.knowledge:e.startsWith("skill_hub:")?`Skill Hub ${e.slice(10)}`:e.startsWith("skill_space:")?`${t.skillCenter} ${e.slice(12)}`:e||t.unknownSource}function Ewt(e){return e==="veadk_builtin_tools"?"tool":e==="agentkit_knowledge"?"knowledge_base":e.startsWith("skill_hub:")?"skill_hub":"skill_space"}function Cwt(e,t=cCe){const n=a$(e),i=uc(n.capabilities)??{},r=Hc(n.resources).flatMap(a=>{const l=uc(a);if(!l)return[];const c=l.kind==="tool"?"tool":l.kind==="knowledge_base"?"knowledge_base":"skill";return[{ref:Cn(l.ref),kind:c,category:Swt(l),name:Cn(l.name)||Cn(l.ref)||t.unnamedResource,description:Cn(l.description),source:Cn(l.source),version:Cn(l.version)}]}),s=Hc(n.sources).flatMap(a=>{const l=uc(a);if(!l)return[];const c=Cn(l.source),u=Cn(l.status),d=u==="error"?"error":u==="skipped"?"skipped":"ok";return[{source:c,category:Ewt(c),label:kwt(c,t),status:d,count:GY(l.count),message:Cn(l.message),searchKeywords:Hc(l.search_keywords).map(Cn).filter(Boolean)}]});return{collectionId:Cn(n.collection_id),capabilities:{googleAdkVersion:Cn(i.google_adk_version),agentTypes:Hc(i.agent_types).map(Cn).filter(Boolean),maxOrchestrationDepth:GY(i.max_orchestration_depth)},resources:r,sources:s,counts:{all:r.length,skill_hub:r.filter(a=>a.category==="skill_hub").length,skill_space:r.filter(a=>a.category==="skill_space").length,knowledge_base:r.filter(a=>a.category==="knowledge_base").length,tool:r.filter(a=>a.category==="tool").length}}}function Twt(e,t){return{resources:e.resources.filter(n=>n.category===t),sources:e.sources.filter(n=>n.category===t)}}function uCe(e,t,n=cCe){const i=a$(e),r=a$(t),s=new Map(Hc(r.results).flatMap(d=>{const f=uc(d),h=Cn(f==null?void 0:f.name);return f&&h?[[h,f]]:[]})),a=Hc(i.agents).flatMap(d=>{const f=uc(d),h=Cn(f==null?void 0:f.name);return f&&h?[f]:[]}),l=new Set(a.map(d=>Cn(d.name))),c=[...s.entries()].filter(([d])=>!l.has(d)).map(([d])=>({name:d})),u=[...a,...c].map(d=>{const f=Cn(d.name),h=Hc(d.nodes).flatMap(E=>{const C=uc(E);return C?[C]:[]}),m=Cn(d.root_node),g=h.find(E=>Cn(E.id)===m),b=h.filter(E=>Cn(E.id)!==m).map(E=>({id:Cn(E.id)||n.unnamedAgent,type:Cn(E.type)||"llm",description:Cn(E.description)})),v=s.get(f),y=Cn(v==null?void 0:v.status),x=y==="failed"?"failed":y==="completed"?"completed":"running",O=XY(v==null?void 0:v.resources),w=O.length>0?O:XY(h.flatMap(E=>Hc(E.resources))),k=YY(v==null?void 0:v.python_tools),S=k.length>0?k:YY(h.flatMap(E=>Hc(E.python_tools)));return{name:f,description:Cn(v==null?void 0:v.description)||Cn(g==null?void 0:g.description)||Cn(d.task),task:Cn(d.task),rootType:Cn(v==null?void 0:v.root_type)||Cn(g==null?void 0:g.type)||"llm",nodeCount:h.length,subAgentCount:b.length,resourceCount:w.length,pythonToolCount:S.length,skills:w.filter(E=>E.kind==="skill"),knowledgeBases:w.filter(E=>E.kind==="knowledge_base"),builtinTools:w.filter(E=>E.kind==="tool"),pythonTools:S,subAgents:b,status:x,output:Cn(v==null?void 0:v.output),error:Cn(v==null?void 0:v.error)}});return{collectionId:Cn(r.collection_id)||Cn(i.collection_id),agents:u,completedCount:u.filter(d=>d.status==="completed").length,failedCount:u.filter(d=>d.status==="failed").length,runningCount:u.filter(d=>d.status==="running").length}}function Awt(e,t){return!!pI(t)||uCe(e,t).failedCount>0}function XY(e){const t=new Set;return Hc(e).flatMap(n=>{const i=uc(n),r=Cn(i?i.ref:n);if(!r||t.has(r))return[];t.add(r);const s=Cn(i==null?void 0:i.kind),a=s==="tool"||r.startsWith("veadk_tool:")?"tool":s==="knowledge_base"||r.startsWith("agentkit_kb:")?"knowledge_base":"skill",l=r.split(":");return[{ref:r,kind:a,name:Cn(i==null?void 0:i.name)||l[l.length-1]||r,description:Cn(i==null?void 0:i.description),version:Cn(i==null?void 0:i.version),source:Cn(i==null?void 0:i.source)}]})}function YY(e){const t=new Set;return Hc(e).flatMap(n=>{const i=uc(n),r=Cn(i==null?void 0:i.name),s=Cn(i==null?void 0:i.code),a=`${r}\0${s}`;return!i||!r||t.has(a)?[]:(t.add(a),[{name:r,description:Cn(i.description),code:s,entrypoint:Cn(i.entrypoint)||r,dependencies:Hc(i.dependencies).map(Cn).filter(Boolean)}])})}function _wt({branch:e}){return o.jsxs("div",{className:`branch-compare__body${e.status==="running"?" is-streaming":""}`,"aria-live":"polite",children:[e.content?o.jsx(Uu,{text:e.content,streaming:e.status==="running"}):null,e.status==="running"?o.jsx("span",{className:"branch-compare__caret","aria-hidden":"true"}):null,e.error?o.jsx("p",{className:"branch-compare__error",children:e.error}):null]})}function Nwt({args:e,response:t,status:n,onBranchSelect:i}){const{t:r}=Ae("conversation"),s=p.useMemo(()=>Aye(e,t,n),[e,t,n]),[a,l]=p.useState(0);return o.jsxs("section",{className:"branch-compare","aria-label":r("blocks.branchCompare.ariaLabel"),children:[o.jsx("div",{className:"branch-compare__tabs",role:"tablist","aria-label":r("blocks.branchCompare.selectDirection"),children:s.branches.map((c,u)=>o.jsx("button",{className:`branch-compare__tab${a===u?" is-active":""}`,type:"button",role:"tab","aria-selected":a===u,"aria-controls":`branch-compare-panel-${u}`,onClick:()=>l(u),children:o.jsx(ya,{color:"info",size:"sm",variant:"soft",children:c.label})},`${c.label}:${u}`))}),o.jsx("div",{className:"branch-compare__branches",children:s.branches.map((c,u)=>o.jsxs("article",{className:`branch-compare__branch${a===u?" is-active":""}`,id:`branch-compare-panel-${u}`,role:"tabpanel",children:[o.jsx("header",{className:"branch-compare__head",children:o.jsx(ya,{color:"info",size:"sm",variant:"soft",children:c.label})}),o.jsx(_wt,{branch:c}),o.jsx("footer",{className:"branch-compare__footer",children:o.jsx(Ht,{type:"button",color:"info",variant:"ghost",size:"sm",pill:!1,disabled:c.status!=="completed",onClick:()=>i==null?void 0:i(c),children:r("blocks.branchCompare.continue")})})]},`${c.label}:${u}`))})]})}function dCe({controlled:e,default:t,name:n,state:i="value"}){const{current:r}=p.useRef(e!==void 0),[s,a]=p.useState(t),l=r?e:s,c=p.useCallback(u=>{r||a(u)},[]);return[l,c]}const SU={...Vb},ZY={};function Ib(e,t){const n=p.useRef(ZY);return n.current===ZY&&(n.current=e(t)),n}const YM=SU.useInsertionEffect,jwt=YM&&YM!==SU.useLayoutEffect?YM:e=>e();function Ya(e){const t=Ib(Rwt).current;return t.next=e,jwt(t.effect),t.trampoline}function Rwt(){const e={next:void 0,callback:Iwt,trampoline:(...t)=>{var n;return(n=e.callback)==null?void 0:n.call(e,...t)},effect:()=>{e.callback=e.next}};return e}function Iwt(){}const Pwt=()=>{},vl=typeof document<"u"?p.useLayoutEffect:Pwt,fCe=p.createContext({register:()=>{},unregister:()=>{},subscribeMapChange:()=>()=>{},nextIndexRef:{current:0}});function Dwt(){return p.useContext(fCe)}function Mwt(e){const{children:t,elementsRef:n,labelsRef:i,onMapChange:r}=e,s=Ya(r),[,a]=p.useState(!1),l=Ib($wt).current,c=Ib(Lwt).current,u=p.useRef(0),d=p.useRef(!0),f=p.useRef([]),h=p.useRef(null),m=Ya(()=>{d.current||(d.current=!0,a(k=>!k))}),g=Ya((k,S)=>{c.set(k,S),m()}),b=Ya(k=>{c.delete(k),m()}),v=Ya(k=>{const S=new Map;return n.current.length=0,i&&(i.current.length=0),k.forEach(E=>{var C,N;S.set(E.element,{...E.registration.metadata??{},index:E.index}),n.current[E.index]=E.element,i&&(i.current[E.index]=E.registration.label!==void 0?E.registration.label:((N=(C=E.registration.textRef)==null?void 0:C.current)==null?void 0:N.textContent)??E.element.textContent)}),u.current=n.current.length,S});function y(k){var C;if((C=h.current)==null||C.disconnect(),h.current=null,typeof MutationObserver!="function"||k.length<2)return;const S=new MutationObserver(N=>{if(!Uwt(N))return;let T=null;for(const j of k)if(j.isConnected){if(T&&hCe(T,j)>0){S.disconnect(),m();return}T=j}});h.current=S;const E=new Set;for(let N=1;NS.observe(N,{childList:!0}))}const x=Ya(()=>{const[k,S]=Fwt(c),E=v(k);y(S),f.current=k,d.current=!1,l.forEach(C=>C(E)),s(E)});vl(()=>(d.current||v(f.current),()=>{n.current=[],i&&(i.current=[])}),[n,i,v]),vl(()=>{d.current&&x()}),vl(()=>()=>{var k;(k=h.current)==null||k.disconnect(),d.current=!0},[]);const O=Ya(k=>(l.add(k),()=>{l.delete(k)})),w=p.useMemo(()=>({register:g,unregister:b,subscribeMapChange:O,nextIndexRef:u}),[g,b,O,u]);return o.jsx(fCe.Provider,{value:w,children:t})}function Lwt(){return new Map}function $wt(){return new Set}function Fwt(e){const t=new Set,n=[],i=[];e.forEach((s,a)=>{if(!a.isConnected)return;const l=s.index,c={index:l??-1,element:a,registration:s};l===null?i.push(c):l>=0&&(t.add(l),n.push(c))});let r=0;return i.sort((s,a)=>hCe(s.element,a.element)),i.forEach(s=>{for(;t.has(r);)r+=1;s.index=r,n.push(s),r+=1}),t.size>0&&n.sort((s,a)=>s.index-a.index),[n,i.map(s=>s.element)]}function Bwt(e,t){let n=e.parentElement;for(;n&&!n.contains(t);)n=n.parentElement;return n}function Uwt(e){for(const t of e)for(let n=0;ns.searchParams.append("args[]",a)),`${t} error #${i}; visit ${s} for the full message.`}}const _E=Qwt("https://base-ui.com/production-error","Base UI"),pCe=p.createContext(void 0);function mCe(){const e=p.useContext(pCe);if(e===void 0)throw new Error(_E(10));return e}function TN(e,t,n,i){const r=Ib(gCe).current;return Vwt(r,e,t,n,i)&&bCe(r,[e,t,n,i]),r.callback}function zwt(e){const t=Ib(gCe).current;return Hwt(t,e)&&bCe(t,e),t.callback}function gCe(){return{callback:null,cleanup:null,refs:[]}}function Vwt(e,t,n,i,r){return e.refs[0]!==t||e.refs[1]!==n||e.refs[2]!==i||e.refs[3]!==r}function Hwt(e,t){return e.refs.length!==t.length||e.refs.some((n,i)=>n!==t[i])}function bCe(e,t){if(e.refs=t,t.every(n=>n==null)){e.callback=null;return}e.callback=n=>{if(e.cleanup&&(e.cleanup(),e.cleanup=null),n!=null){const i=Array(t.length).fill(null);for(let r=0;r{for(let r=0;r=e}function JY(e){if(!p.isValidElement(e))return null;const t=e,n=t.props;return(Wwt(19)?n==null?void 0:n.ref:t.ref)??null}function o$(e,t){if(e&&!t)return e;if(!e&&t)return t;if(e||t)return{...e,...t}}const Kwt=Object.freeze([]),Ly=Object.freeze({});function Gwt(e,t){const n={};for(const i in e){const r=e[i];if(t!=null&&t.hasOwnProperty(i)){const s=t[i](r);s!=null&&Object.assign(n,s);continue}r===!0?n[`data-${i.toLowerCase()}`]="":r&&(n[`data-${i.toLowerCase()}`]=r.toString())}return n}function Xwt(e,t){return typeof e=="function"?e(t):e}function yCe(e,t){return typeof e=="function"?e(t):e}const kU={};function EU(e,t,n,i,r){if(!n&&!i&&!e)return AN(t);let s=AN(e);return t&&(s=T2(s,t)),n&&(s=T2(s,n)),i&&(s=T2(s,i)),s}function Ywt(e){if(e.length===0)return kU;if(e.length===1)return AN(e[0]);let t=AN(e[0]);for(let n=1;n=65&&r<=90&&(typeof t=="function"||typeof t>"u")}function CU(e){return typeof e=="function"}function xCe(e,t){return CU(e)?e(t):e??kU}function eOt(e,t){return t?e?(...n)=>{const i=n[0];if(SCe(i)){const s=i;_N(s);const a=t(...n);return s.baseUIHandlerPrevented||e==null||e(...n),a}const r=t(...n);return e==null||e(...n),r}:wCe(t):e}function wCe(e){return e&&((...t)=>{const n=t[0];return SCe(n)&&_N(n),e(...t)})}function _N(e){return e.preventBaseUIHandler=()=>{e.baseUIHandlerPrevented=!0},e}function OCe(e,t){return t?e?t+" "+e:t:e}function SCe(e){return e!=null&&typeof e=="object"&&"nativeEvent"in e}function NE(e,t,n={}){const i=t.render,r=tOt(t,n);if(n.enabled===!1)return null;const s=n.state??Ly;return rOt(e,i,r,s)}function tOt(e,t={}){const{className:n,style:i,render:r}=e,{state:s=Ly,ref:a,props:l,stateAttributesMapping:c,enabled:u=!0}=t,d=u?Xwt(n,s):void 0,f=u?yCe(i,s):void 0,h=u?Gwt(s,c):Ly,m=u&&l?nOt(l):void 0,g=u?o$(h,m)??{}:Ly;return typeof document<"u"&&(u?Array.isArray(a)?g.ref=zwt([g.ref,JY(r),...a]):g.ref=TN(g.ref,JY(r),a):TN(null,null)),u?(d!==void 0&&(g.className=OCe(g.className,d)),f!==void 0&&(g.style=o$(g.style,f)),g):Ly}function nOt(e){return Array.isArray(e)?Ywt(e):EU(void 0,e)}const iOt=Symbol.for("react.lazy");function rOt(e,t,n,i){if(t){if(typeof t=="function")return t(n,i);const r=EU(n,t.props);r.ref=n.ref;let s=t;return(s==null?void 0:s.$$typeof)===iOt&&(s=p.Children.toArray(t)[0]),p.cloneElement(s,r)}if(e&&typeof e=="string")return sOt(e,n);throw new Error(_E(8))}function sOt(e,t){return e==="button"?p.createElement("button",{type:"button",...t,key:t.key}):e==="img"?p.createElement("img",{alt:"",...t,key:t.key}):p.createElement(e,t)}const aOt={value:()=>null},kCe=p.forwardRef(function(t,n){const{render:i,className:r,disabled:s=!1,hiddenUntilFound:a,keepMounted:l,loopFocus:c,onValueChange:u,multiple:d=!1,orientation:f="vertical",value:h,defaultValue:m,style:g,...b}=t,v=p.useMemo(()=>{if(h===void 0)return m??[]},[h,m]),y=p.useRef([]),[x,O]=dCe({controlled:h,default:v,name:"Accordion",state:"value"}),w=Ya((C,N,T)=>{if(d)if(N){const j=x.slice();if(j.push(C),u==null||u(j,T),T.isCanceled)return;O(j)}else{const j=x.filter(A=>A!==C);if(u==null||u(j,T),T.isCanceled)return;O(j)}else{const j=x[0]===C?[]:[C];if(u==null||u(j,T),T.isCanceled)return;O(j)}}),k=p.useMemo(()=>({value:x,disabled:s,orientation:f}),[x,s,f]),S=p.useMemo(()=>({disabled:s,handleValueChange:w,hiddenUntilFound:a??!1,keepMounted:l??!1,state:k,value:x}),[s,w,a,l,k,x]),E=NE("div",t,{state:k,ref:n,props:b,stateAttributesMapping:aOt});return o.jsx(pCe.Provider,{value:S,children:o.jsx(Mwt,{elementsRef:y,children:E})})});let eZ=0;function oOt(e,t="mui"){const[n,i]=p.useState(e),r=e||n;return p.useEffect(()=>{n==null&&(eZ+=1,i(`${t}-${eZ}`))},[n,t]),r}const tZ=SU.useId;function lOt(e,t){if(tZ!==void 0){const n=tZ();return`${t}-${n}`}return oOt(e,t)}function l$(e){return lOt(e,"base-ui")}const cOt="none",uOt="trigger-press";function ECe(e,t,n,i){let r=!1,s=!1;const a=Ly;return{reason:e,event:t??new Event("base-ui"),cancel(){r=!0},allowPropagation(){s=!0},get isCanceled(){return r},get isPropagationAllowed(){return s},trigger:n,...a}}function dOt(e){p.useEffect(e,Kwt)}const FT=null;let fOt=class{constructor(){Ai(this,"callbacks",[]);Ai(this,"callbacksCount",0);Ai(this,"nextId",1);Ai(this,"startId",1);Ai(this,"isScheduled",!1);Ai(this,"tick",t=>{var r;this.isScheduled=!1;const n=this.callbacks,i=this.callbacksCount;if(this.callbacks=[],this.callbacksCount=0,this.startId=this.nextId,i>0)for(let s=0;s=this.callbacks.length||(this.callbacks[n]=null,this.callbacksCount-=1)}},BT=new fOt;class Xl{constructor(){Ai(this,"currentId",FT);Ai(this,"cancel",()=>{this.currentId!==FT&&(BT.cancel(this.currentId),this.currentId=FT)});Ai(this,"disposeEffect",()=>this.cancel)}static create(){return new Xl}static request(t){return BT.request(t)}static cancel(t){return BT.cancel(t)}request(t){this.cancel(),this.currentId=BT.request(()=>{this.currentId=FT,t()})}}function hOt(){const e=Ib(Xl.create).current;return dOt(e.disposeEffect),e}function pOt(e,t=!1,n=!1){const[i,r]=p.useState(e&&t?"idle":void 0),[s,a]=p.useState(e);return e&&!s&&(a(!0),r("starting")),!e&&s&&i!=="ending"&&!n&&r("ending"),!e&&!s&&i==="ending"&&r(void 0),vl(()=>{if(!e&&s&&i!=="ending"&&n){const l=Xl.request(()=>{r("ending")});return()=>{Xl.cancel(l)}}},[e,s,i,n]),vl(()=>{if(!e||t)return;const l=Xl.request(()=>{r(void 0)});return()=>{Xl.cancel(l)}},[t,e]),vl(()=>{if(!e||!t)return;e&&s&&i!=="idle"&&r("starting");const l=Xl.request(()=>{r("idle")});return()=>{Xl.cancel(l)}},[t,e,s,i]),{mounted:s,setMounted:a,transitionStatus:i}}function mOt(e){const{open:t,defaultOpen:n,onOpenChange:i,disabled:r}=e,[s,a]=dCe({controlled:t,default:n,name:"Collapsible",state:"open"}),{mounted:l,setMounted:c,transitionStatus:u}=pOt(s,!0,!0),d=l$(),[f,h]=p.useState(),m=f===null?void 0:f??d,g=Ya(b=>{const v=!s,y=ECe(uOt,b.nativeEvent);i(v,y),!y.isCanceled&&a(v)});return p.useMemo(()=>({defaultPanelId:d,disabled:r,handleTrigger:g,mounted:l,open:s,panelId:m,setMounted:c,setOpen:a,setPanelIdState:h,transitionStatus:u}),[d,r,g,l,s,m,c,a,h,u])}const CCe=p.createContext(void 0);function TCe(){const e=p.useContext(CCe);if(e===void 0)throw new Error(_E(15));return e}function gOt(e={}){const{guess:t,label:n,metadata:i,textRef:r,index:s}=e,{register:a,unregister:l,subscribeMapChange:c,nextIndexRef:u}=Dwt(),d=p.useRef(-1),[f,h]=p.useState(s==null&&t?()=>{if(d.current===-1){const v=u.current;u.current+=1,d.current=v}return d.current}:-1),m=s??f,g=p.useRef(null),b=p.useCallback(v=>{const y=g.current;y&&l(y),g.current=v,v&&a(v,{metadata:i??null,index:s??null,label:n,textRef:r})},[s,a,l,i,n,r]);return vl(()=>{if(s==null)return c(v=>{var x;const y=g.current?(x=v.get(g.current))==null?void 0:x.index:null;y!=null&&h(y)})},[s,c]),{ref:b,index:m}}const ACe=p.createContext(void 0);function TU(){const e=p.useContext(ACe);if(e===void 0)throw new Error(_E(9));return e}let nZ=function(e){return e.startingStyle="data-starting-style",e.endingStyle="data-ending-style",e}({});const bOt={"data-starting-style":""},yOt={"data-ending-style":""},vOt={transitionStatus(e){return e==="starting"?bOt:e==="ending"?yOt:null}};let AU=function(e){return e.open="data-open",e.closed="data-closed",e[e.startingStyle=nZ.startingStyle]="startingStyle",e[e.endingStyle=nZ.endingStyle]="endingStyle",e}({}),xOt=function(e){return e.panelOpen="data-panel-open",e}({});const wOt={[AU.open]:""},OOt={[AU.closed]:""},SOt={open(e){return e?{[xOt.panelOpen]:""}:null}},kOt={open(e){return e?wOt:OOt}};let EOt=function(e){return e.index="data-index",e.disabled="data-disabled",e.open="data-open",e}({});const _U={...kOt,index:e=>({[EOt.index]:String(e)}),...vOt,value:()=>null},_Ce=p.forwardRef(function(t,n){const{className:i,disabled:r=!1,onOpenChange:s,render:a,value:l,style:c,...u}=t,{ref:d,index:f}=gOt(),h=TN(n,d),{disabled:m,handleValueChange:g,state:b,value:v}=mCe(),y=l$(),x=l??y,O=r||m,w=v.indexOf(x)!==-1,k=Ya((I,$)=>{s==null||s(I,$),!$.isCanceled&&g(x,I,$)}),S=mOt({open:w,onOpenChange:k,disabled:O}),E=p.useMemo(()=>({open:S.open,disabled:S.disabled,transitionStatus:S.transitionStatus}),[S.open,S.disabled,S.transitionStatus]),C=p.useMemo(()=>({...S,onOpenChange:k,state:E}),[S,E,k]),N=p.useMemo(()=>({...b,hidden:!w&&!S.mounted,index:f,disabled:O,open:w}),[S.mounted,O,f,w,b]),T=l$(),[j,A]=p.useState(),L=j===null?void 0:j??T,_=p.useMemo(()=>({defaultTriggerId:T,open:w,state:N,setTriggerId:A,triggerId:L}),[T,w,N,A,L]),P=NE("div",t,{state:N,ref:h,props:u,stateAttributesMapping:_U});return o.jsx(CCe.Provider,{value:C,children:o.jsx(ACe.Provider,{value:_,children:P})})}),NCe=p.forwardRef(function(t,n){const{render:i,className:r,style:s,...a}=t,{state:l}=TU();return NE("h3",t,{state:l,ref:n,props:a,stateAttributesMapping:_U})}),COt=p.createContext(void 0);function TOt(e=!1){const t=p.useContext(COt);if(t===void 0&&!e)throw new Error(_E(16));return t}function AOt(e){const{focusableWhenDisabled:t,disabled:n,composite:i=!1,tabIndex:r=0,isNativeButton:s}=e,a=i&&t!==!1,l=i&&t===!1;return{props:p.useMemo(()=>{const u={onKeyDown(d){n&&t&&d.key!=="Tab"&&d.preventDefault()}};return i||(u.tabIndex=r,!s&&n&&(u.tabIndex=t?r:-1)),(s&&(t||a)||!s&&n)&&(u["aria-disabled"]=n),s&&(!t||l)&&(u.disabled=n),u},[i,n,t,a,l,s,r])}}function ZM(e,t,{detail:n=0}={}){e.dispatchEvent(new(wo(e)).PointerEvent("click",{bubbles:!0,cancelable:!0,composed:!0,detail:n,shiftKey:t.shiftKey,ctrlKey:t.ctrlKey,altKey:t.altKey,metaKey:t.metaKey}))}function _Ot(e={}){const{disabled:t=!1,focusableWhenDisabled:n,tabIndex:i=0,native:r=!0,composite:s}=e,a=p.useRef(null),l=TOt(!0),c=s??l!==void 0,{props:u}=AOt({focusableWhenDisabled:n,disabled:t,composite:c,tabIndex:i,isNativeButton:r}),d=p.useCallback(()=>{const m=a.current;JM(m)&&c&&t&&u.disabled===void 0&&m.disabled&&(m.disabled=!1)},[t,u.disabled,c]);vl(d,[d]);const f=p.useCallback((m={})=>{const{onClick:g,onMouseDown:b,onKeyUp:v,onKeyDown:y,onPointerDown:x,...O}=m;return EU({onClick(w){if(t){w.preventDefault();return}g==null||g(w)},onMouseDown(w){t||b==null||b(w)},onKeyDown(w){if(t||(_N(w),y==null||y(w),w.baseUIHandlerPrevented))return;const k=w.target===w.currentTarget,S=w.currentTarget,E=JM(S),C=!r&&NOt(S),N=k&&(r?E:!C),T=w.key==="Enter",j=w.key===" ",A=S.getAttribute("role"),L=(A==null?void 0:A.startsWith("menuitem"))||A==="option"||A==="gridcell";if(k&&c&&j){if(w.defaultPrevented&&L)return;w.preventDefault(),(!r||E)&&(w.preventBaseUIHandler(),ZM(S,w));return}if(!N||r||!j&&!T){k&&C&&j&&w.preventDefault();return}w.defaultPrevented||(w.preventDefault(),T&&(w.preventBaseUIHandler(),ZM(S,w)))},onKeyUp(w){if(!t){if(_N(w),v==null||v(w),w.target===w.currentTarget&&r&&c&&JM(w.currentTarget)&&w.key===" "){w.preventDefault();return}w.baseUIHandlerPrevented||w.target===w.currentTarget&&!r&&!c&&!w.defaultPrevented&&w.key===" "&&(w.preventBaseUIHandler(),ZM(w.currentTarget,w))}},onPointerDown(w){if(t){w.preventDefault();return}x==null||x(w)}},r?{type:"button"}:{role:"button"},u,O)},[t,u,c,r]),h=Ya(m=>{a.current=m,d()});return{getButtonProps:f,buttonRef:h}}function JM(e){return Yd(e)&&e.tagName==="BUTTON"}function NOt(e){return Yd(e)&&e.tagName==="A"&&!!e.href}const jCe=p.forwardRef(function(t,n){const{disabled:i,className:r,id:s,render:a,nativeButton:l=!0,style:c,...u}=t,{panelId:d,open:f,handleTrigger:h,disabled:m}=TCe(),g=i||m,{getButtonProps:b,buttonRef:v}=_Ot({disabled:g,focusableWhenDisabled:!0,native:l}),{defaultTriggerId:y,state:x,setTriggerId:O}=TU(),w=s||void 0,k=w??y;return vl(()=>(O(C=>w??(C===null?void 0:C)),()=>{O(C=>C===w?null:C)}),[w,O]),NE("button",t,{state:x,ref:[n,v],props:[{"aria-controls":f?d:void 0,"aria-expanded":f,id:k,onClick:h},u,b],stateAttributesMapping:SOt})});function jOt(e,t,n,i){return e.addEventListener(t,n,i),()=>{e.removeEventListener(t,n,i)}}function ROt(e){const t=Ib(IOt,e).current;return t.next=e,vl(t.effect),t}function IOt(e){const t={current:e,next:e,effect:()=>{t.current=t.next}};return t}function POt(e){return e==null?e:"current"in e?e.current:e}function RCe(e,t=!1){const n=hOt();return Ya((i,r=null)=>{n.cancel();const s=POt(e);if(s==null)return;const a=s,l=()=>{Fi.flushSync(i)};if(typeof a.getAnimations!="function"||globalThis.BASE_UI_ANIMATIONS_DISABLED){i();return}function c(){Promise.all(a.getAnimations().map(u=>u.finished)).then(()=>{r!=null&&r.aborted||l()},()=>{if(r!=null&&r.aborted)return;if(a.getAnimations().some(d=>d.pending||d.playState!=="finished")){c();return}l()})}if(t){const u="data-starting-style";if(!a.hasAttribute(u)){n.request(c);return}const d=new MutationObserver(()=>{a.hasAttribute(u)||(d.disconnect(),c())});d.observe(a,{attributes:!0,attributeFilter:[u]}),r==null||r.addEventListener("abort",()=>d.disconnect(),{once:!0});return}n.request(c)})}function DOt(e){const{enabled:t=!0,open:n,ref:i,onComplete:r}=e,s=Ya(r),a=RCe(i,n);p.useEffect(()=>{if(!t)return;const l=new AbortController;return a(s,l.signal),()=>{l.abort()}},[t,n,s,a])}const J1={height:void 0,width:void 0};function MOt(e){const{externalRef:t,hiddenUntilFound:n,id:i,keepMounted:r,mounted:s,onOpenChange:a,open:l,setMounted:c,setOpen:u,transitionStatus:d}=e,f=p.useRef(null),h=p.useRef(null),[m,g]=p.useState(J1),b=p.useRef(J1),v=p.useRef(!1),y=p.useRef(l),x=p.useRef(!1),[O,w]=p.useState(!1),k=p.useRef(null),S=TN(t,f),E=ROt(l),C=RCe(f),N=!l&&!s,T=O?"idle":d,j=l&&(y.current||x.current),A=!l&&s&&h.current==="css-animation"&&m.height===void 0&&m.width===void 0?b.current:m,L=n&&N&&h.current!=="css-animation",_=Ya((B,R=!0)=>{R&&(b.current=B),g(B)}),P=Ya(()=>{var B;(B=k.current)==null||B.call(k),k.current=null}),I=Ya(B=>{P(),k.current=()=>{k.current=null,B()}}),$=Ya(()=>{l&&s&&h.current==="css-animation"&&(x.current=!0)});vl(()=>{!O||d==="starting"||w(!1)},[O,d]),p.useEffect(()=>()=>{$(),P()},[$,P]),vl(()=>{const B=f.current;if(!B)return;!l&&k.current&&P();const R=LOt(B,j);if(h.current=R,l&&d==="idle"&&y.current&&R==="css-animation"){b.current=V0(B);return}if(l&&d==="starting"){const Q=v.current;if(v.current=!1,R==="none"){_(V0(B)),w(!0);return}if(R==="css-transition"){const G=$Ot(B);if(_(V0(B)),!Q)return G;const ae=UT(B,"transition-duration","0s");return I(ae),w(!0),G}_(V0(B));const q=UT(B,"animation-name","none");if(!Q){q();return}const U=UT(B,"animation-duration","0s");q(),I(U),w(!0);return}if(!l&&s&&(d==="idle"||d==="starting")){if(y.current=!1,x.current=!1,R==="none"){_(J1,!1),c(!1);return}_(V0(B));return}if(d!=="ending")return;if(R==="none"){c(!1);return}const V=V0(B);if(!(V.height>0||V.width>0)){c(!1);return}_(V),R==="css-animation"&&UT(B,"animation-name","none")()},[s,l,P,_,c,I,j,d]),DOt({enabled:l&&s&&T==="idle",open:!0,ref:f,onComplete(){l&&_(J1,!1)}}),p.useEffect(()=>{if(l||!s||T!=="ending"||!f.current)return;const R=new AbortController;let V=-1;function K(){E.current||(c(!1),_(J1,!1))}return V=Xl.request(()=>{C(K,R.signal)}),()=>{Xl.cancel(V),R.abort()}},[E,s,l,T,C,_,c]),vl(()=>{const B=f.current;!B||!n||!N||B.setAttribute("hidden","until-found")},[N,n]),p.useEffect(function(){const R=f.current;if(!R)return;function V(K){const Q=ECe(cOt,K);a(!0,Q),!Q.isCanceled&&(v.current=!0,u(!0))}return jOt(R,"beforematch",V)},[a,u]);const M=r||n||s||l;return{height:A.height,props:{...L?{[AU.startingStyle]:""}:void 0,hidden:N,id:i},ref:S,shouldPreventOpenAnimation:j,shouldRender:M,transitionStatus:T,width:A.width}}function V0(e){return{height:e.scrollHeight,width:e.scrollWidth}}function LOt(e,t){const n=wo(e).getComputedStyle(e),i=(n.animationName.split(",").map(s=>s.trim()).some(s=>s!==""&&s!=="none")||t)&&iZ(n.animationDuration),r=iZ(n.transitionDuration);return i&&r||r?"css-transition":i?"css-animation":"none"}function iZ(e){return e.split(",").map(t=>t.trim()).some(t=>t!==""&&Number.parseFloat(t)>0)}function UT(e,t,n){const i=e.style.getPropertyValue(t),r=e.style.getPropertyPriority(t);return e.style.setProperty(t,n),()=>{if(i===""){e.style.removeProperty(t);return}e.style.setProperty(t,i,r)}}function $Ot(e){const t={"justify-content":e.style.justifyContent,"align-items":e.style.alignItems,"align-content":e.style.alignContent,"justify-items":e.style.justifyItems};Object.keys(t).forEach(r=>{e.style.setProperty(r,"initial","important")});function n(){Object.entries(t).forEach(([r,s])=>{if(s===""){e.style.removeProperty(r);return}e.style.setProperty(r,s)})}const i=Xl.request(n);return()=>{Xl.cancel(i),n()}}let rZ=function(e){return e.accordionPanelHeight="--accordion-panel-height",e.accordionPanelWidth="--accordion-panel-width",e}({});const ICe=p.forwardRef(function(t,n){const{className:i,hiddenUntilFound:r,keepMounted:s,id:a,render:l,style:c,...u}=t,{hiddenUntilFound:d,keepMounted:f}=mCe(),{defaultPanelId:h,mounted:m,onOpenChange:g,open:b,setMounted:v,setOpen:y,setPanelIdState:x,transitionStatus:O}=TCe(),w=r??d,k=s??f,S=a||void 0,E=a??h;vl(()=>(x(R=>S??(R===null?void 0:R)),()=>{x(R=>R===S?null:R)}),[S,x]);const{height:C,props:N,ref:T,shouldPreventOpenAnimation:j,shouldRender:A,transitionStatus:L,width:_}=MOt({externalRef:n,hiddenUntilFound:w,id:E,keepMounted:k,mounted:m,onOpenChange:g,open:b,setMounted:v,setOpen:y,transitionStatus:O}),{state:P,triggerId:I}=TU(),$={...P,transitionStatus:L},M=yCe(c,$),B=NE("div",{...t,style:void 0},{state:$,ref:T,props:[N,{"aria-labelledby":I,role:"region",style:{[rZ.accordionPanelHeight]:C===void 0?"auto":`${C}px`,[rZ.accordionPanelWidth]:_===void 0?"auto":`${_}px`}},u,M?{style:M}:void 0,j?{style:{animationName:"none"}}:void 0],stateAttributesMapping:_U});return A?B:null}),FOt=(e,t)=>{const n=e.currentTarget,i={x:e.clientX,y:e.clientY},r=BOt(i,n.getBoundingClientRect()),s=UOt(i,r),a=QOt(t.getBoundingClientRect());return VOt([...s,...a])};function BOt(e,t){const n=Math.abs(t.top-e.y),i=Math.abs(t.bottom-e.y),r=Math.abs(t.right-e.x),s=Math.abs(t.left-e.x);switch(Math.min(n,i,r,s)){case s:return"left";case r:return"right";case n:return"top";case i:return"bottom";default:throw new Error("unreachable")}}function UOt(e,t,n=5){const i=[];switch(t){case"top":i.push({x:e.x-n,y:e.y+n},{x:e.x+n,y:e.y+n});break;case"bottom":i.push({x:e.x-n,y:e.y-n},{x:e.x+n,y:e.y-n});break;case"left":i.push({x:e.x+n,y:e.y-n},{x:e.x+n,y:e.y+n});break;case"right":i.push({x:e.x-n,y:e.y-n},{x:e.x-n,y:e.y+n});break}return i}function QOt(e){const{top:t,right:n,bottom:i,left:r}=e;return[{x:r,y:t},{x:n,y:t},{x:n,y:i},{x:r,y:i}]}function zOt(e,t){const{x:n,y:i}=e;let r=!1;for(let s=0,a=t.length-1;si!=h>i&&n<(f-u)*(i-d)/(h-d)+u&&(r=!r)}return r}function VOt(e){const t=e.slice();return t.sort((n,i)=>n.xi.x?1:n.yi.y?1:0),HOt(t)}function HOt(e){if(e.length<=1)return e.slice();const t=[];for(let i=0;i=2;){const s=t[t.length-1],a=t[t.length-2];if((s.x-a.x)*(r.y-a.y)>=(s.y-a.y)*(r.x-a.x))t.pop();else break}t.push(r)}t.pop();const n=[];for(let i=e.length-1;i>=0;i--){const r=e[i];for(;n.length>=2;){const s=n[n.length-1],a=n[n.length-2];if((s.x-a.x)*(r.y-a.y)>=(s.y-a.y)*(r.x-a.x))n.pop();else break}n.push(r)}return n.pop(),t.length===1&&n.length===1&&t[0].x===n[0].x&&t[0].y===n[0].y?t:t.concat(n)}const qOt="_Transition_1wdpp_1",WOt="_Popover_1wdpp_3",PCe={Transition:qOt,Popover:WOt},DCe=p.createContext(null),mI=()=>{const e=p.use(DCe);if(!e)throw new Error("Popover components must be wrapped in ");return e},om=({open:e,onOpenChange:t,showOnHover:n=!1,hoverOpenDelay:i=150,children:r})=>{const[s,a]=p.useState(!1),[l,c]=p.useState(!1),u=p.useRef(null),d=p.useRef(null),f=p.useRef(void 0),h=p.useRef(!1),m=p.useRef(!1),g=e??s,[b,v]=p.useState(!1);f7(()=>v(!1),b?500:null);const y=km(t),x=km(E=>{var C,N;clearTimeout(f.current),g!==E&&(E||(c(!1),n&&h.current&&((C=u.current)==null||C.focus()),h.current=!1),(N=y.current)==null||N.call(y,E),a(E),n&&v(E))}),O=p.useCallback(E=>{x.current(E)},[x]),w=p.useCallback(()=>{f.current=setTimeout(()=>O(!0),i)},[O,i]),k=p.useCallback(()=>{clearTimeout(f.current)},[]);p.useEffect(()=>()=>{clearTimeout(f.current)},[]);const S=p.useMemo(()=>({open:g,setOpen:O,shake:l,setShake:c,showOnHover:n,temporarilyPreventClickToClose:b,onTriggerEnter:w,onTriggerLeave:k,isPointerInTransitRef:m,triggerRef:u,contentRef:d,hoverOpenFocusedWithTab:h}),[g,O,l,c,n,b,h,m,w,k]);return o.jsx(DCe,{value:S,children:o.jsx(Cxe,{open:g,onOpenChange:O,modal:!1,children:r})})},KOt=({children:e,onPointerDown:t,onClick:n})=>{const{setOpen:i,showOnHover:r,temporarilyPreventClickToClose:s,onTriggerEnter:a,onTriggerLeave:l,isPointerInTransitRef:c,triggerRef:u,contentRef:d}=mI(),f=p.useRef(!1),h=b=>{!(b.currentTarget.nodeName.toLocaleLowerCase()==="a")&&s&&(b.preventDefault(),b.stopPropagation())},m=b=>{b.pointerType!=="touch"&&!f.current&&!c.current&&(a(),f.current=!0)},g=()=>{f.current&&(l(),f.current=!1)};return o.jsx(Txe,{asChild:!0,ref:u,onPointerDown:b=>{h(b),t==null||t(b)},onClick:b=>{h(b),n==null||n(b)},onPointerMove:r?m:void 0,onPointerLeave:r?g:void 0,onFocus:r?()=>i(!0):void 0,onBlur:r?()=>{setTimeout(()=>{var b;(b=d.current)!=null&&b.contains(document.activeElement)||i(!1)},50)}:void 0,children:e})},MCe=({children:e,avoidCollisions:t,width:n,minWidth:i,maxWidth:r,side:s,sideOffset:a=8,align:l,alignOffset:c,translucent:u,className:d,autoFocus:f=!0})=>{const{showOnHover:h,shake:m,contentRef:g}=mI(),b=v=>{const y=g.current;if(y&&v.target===y&&v.key==="Tab"&&v.shiftKey){v.preventDefault(),v.stopPropagation();const x=Uye(y),O=x[x.length-1];O==null||O.focus()}};return p.useEffect(()=>{const v=g.current;!v||!f||v!=null&&v.contains(document.activeElement)||h||v.focus({preventScroll:!0})},[g,h,f]),o.jsx(_xe,{forceMount:!0,ref:g,className:yi(PCe.Popover,d),style:Zb({"popover-width":n,"popover-min-width":i,"popover-max-width":r}),onCloseAutoFocus:h?nh:void 0,"data-animate":m?"shake":void 0,"data-translucent":u?"true":void 0,side:s,sideOffset:a,align:l,alignOffset:c??(l==="center"?0:-5),avoidCollisions:t??!0,hideWhenDetached:!0,collisionPadding:20,onOpenAutoFocus:nh,onEscapeKeyDown:nh,onKeyDown:b,children:e})},GOt=e=>{const{setOpen:t,triggerRef:n,contentRef:i,isPointerInTransitRef:r,hoverOpenFocusedWithTab:s}=mI(),[a,l]=p.useState(null),c=p.useCallback(()=>{l(null),r.current=!1},[r]),u=p.useCallback((d,f)=>{const h=FOt(d,f);l(h),r.current=!0},[r]);return p.useEffect(()=>()=>c(),[c]),p.useEffect(()=>{const d=n.current,f=i.current;if(!d||!f)return;const h=g=>u(g,f),m=g=>u(g,d);return d.addEventListener("pointerleave",h),f.addEventListener("pointerleave",m),()=>{d.removeEventListener("pointerleave",h),f.removeEventListener("pointerleave",m)}},[i,n,u,c]),p.useEffect(()=>{if(!a)return;const d=f=>{const h=n.current,m=i.current,g=f.target,b={x:f.clientX,y:f.clientY},v=(h==null?void 0:h.contains(g))||(m==null?void 0:m.contains(g)),y=!zOt(b,a),x=g.hasAttribute("aria-haspopup");v?c():(y||x)&&(c(),t(!1))};return document.addEventListener("pointermove",d),()=>document.removeEventListener("pointermove",d)},[a,t,c,n,i]),p.useEffect(()=>{const d=f=>{if(i.current&&f.key==="Tab"&&!f.shiftKey){const[h]=Uye(i.current);h&&(f.preventDefault(),h.focus(),s.current=!0,document.removeEventListener("keydown",d))}};return document.addEventListener("keydown",d),()=>{document.removeEventListener("keydown",d)}},[i,s]),o.jsx(MCe,{...e})},XOt=e=>{const{open:t,showOnHover:n,setOpen:i}=mI();return tE(t,()=>{i(!1)}),o.jsx(Axe,{forceMount:!0,children:o.jsx(Qx,{enterDuration:600,exitDuration:300,className:PCe.Transition,disableAnimations:!0,children:t&&(n?o.jsx(GOt,{...e},"popover-hover"):o.jsx(MCe,{...e},"popover"))})})};om.Trigger=KOt;om.Content=XOt;const YOt=["skill_hub","skill_space","knowledge_base","tool"];function LCe(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m4 6 4 4 4-4"})})}function $Ce({label:e}){return o.jsx("div",{className:"create-agent-card__loading",role:"status","aria-label":e,children:[0,1,2].map(t=>o.jsxs("div",{className:"create-agent-card__skeleton-row","aria-hidden":"true",children:[o.jsx("span",{}),o.jsx("span",{})]},t))})}function ZOt(e,t){return e.kind==="tool"?t("blocks.createAgents.builtinTool"):e.kind==="knowledge_base"?t("blocks.createAgents.knowledgeBase"):e.source.startsWith("skill_hub:")?"Skill Hub":e.source.startsWith("skill_space:")?t("blocks.createAgents.skillCenter"):"Skill"}function e5({label:e,resources:t}){const{t:n}=Ae("conversation");return t.length===0?null:o.jsxs("section",{className:"create-agent-card__popover-section",children:[o.jsx("h4",{children:e}),o.jsx("div",{className:"create-agent-card__popover-list",children:t.map(i=>o.jsxs("div",{className:"create-agent-card__popover-item",children:[o.jsxs("div",{className:"create-agent-card__popover-item-heading",children:[o.jsx("strong",{children:i.name}),o.jsx(ya,{color:"secondary",size:"sm",variant:"soft",children:ZOt(i,n)})]}),i.description?o.jsx("p",{children:i.description}):null]},i.ref))})]})}function JOt({tools:e}){const{t}=Ae("conversation");return e.length===0?null:o.jsxs("section",{className:"create-agent-card__popover-section",children:[o.jsx("h4",{children:t("blocks.createAgents.selfAuthoredTools")}),o.jsx(kCe,{children:e.map((n,i)=>o.jsxs(_Ce,{className:"create-agent-card__python-tool",value:`${n.name}:${i}`,children:[o.jsx(NCe,{className:"create-agent-card__python-tool-header",children:o.jsxs(jCe,{className:"create-agent-card__python-tool-trigger",children:[o.jsxs("span",{children:[o.jsx("strong",{children:n.name}),n.description?o.jsx("small",{children:n.description}):null]}),o.jsxs("span",{className:"create-agent-card__python-tool-meta",children:[o.jsx(ya,{color:"secondary",size:"sm",variant:"soft",children:t("blocks.createAgents.selfAuthoredTools")}),o.jsx(LCe,{className:"create-agent-card__python-tool-chevron"})]})]})}),o.jsxs(ICe,{className:"create-agent-card__python-tool-panel",children:[n.dependencies.length>0?o.jsx("div",{className:"create-agent-card__python-tool-dependencies",children:t("blocks.createAgents.dependencies",{items:n.dependencies.join(", ")})}):null,o.jsx("pre",{tabIndex:0,"aria-label":t("blocks.createAgents.fullCode",{name:n.name}),children:o.jsx("code",{children:n.code})})]})]},`${n.name}:${i}`))})]})}function eSt({agents:e}){const{t}=Ae("conversation");return e.length===0?null:o.jsxs("section",{className:"create-agent-card__popover-section",children:[o.jsx("h4",{children:t("blocks.createAgents.subAgents")}),o.jsx("div",{className:"create-agent-card__popover-list",children:e.map(n=>o.jsxs("div",{className:"create-agent-card__popover-item",children:[o.jsxs("div",{className:"create-agent-card__popover-item-heading",children:[o.jsx("strong",{children:n.id}),o.jsx(ya,{color:"secondary",size:"sm",variant:"soft",children:t(`blocks.createAgents.agentTypes.${n.type}`,{defaultValue:n.type})})]}),n.description?o.jsx("p",{children:n.description}):null]},n.id))})]})}function QT({label:e,count:t,icon:n,children:i}){const{t:r}=Ae("conversation"),s=o.jsxs("button",{className:"create-agent-card__resource-metric",type:"button",disabled:t===0,"aria-label":r("blocks.createAgents.itemCount",{label:e,count:t}),children:[n,o.jsx("span",{children:t})]});return t===0?s:o.jsxs(om,{showOnHover:!0,hoverOpenDelay:120,children:[o.jsx(om.Trigger,{children:s}),o.jsx(om.Content,{side:"top",align:"start",minWidth:"auto",maxWidth:360,className:"create-agent-card__resource-popover",children:i})]})}function tSt({response:e,status:t}){const{t:n}=Ae("conversation"),i=p.useMemo(()=>({tool:n("blocks.createAgents.sourceLabels.tool"),knowledge:n("blocks.createAgents.sourceLabels.knowledge"),skillCenter:n("blocks.createAgents.sourceLabels.skillCenter"),unknownSource:n("blocks.createAgents.sourceLabels.unknown"),unnamedResource:n("blocks.createAgents.unnamedResource"),unnamedAgent:n("blocks.createAgents.unnamedAgent")}),[n]),r=p.useMemo(()=>Cwt(e,i),[i,e]),s=p.useMemo(()=>YOt.map(c=>{const u=Twt(r,c);return{value:c,label:n(`blocks.createAgents.categories.${c}`),...u,searchKeywords:[...new Set(u.sources.flatMap(d=>d.searchKeywords))]}}),[r,n]),a=t==="failed",l=a?pI(e):"";return o.jsx("section",{className:"create-agent-tool-card","aria-label":n("blocks.createAgents.collectionAria"),children:t==="running"?o.jsx($Ce,{label:n("blocks.createAgents.retrieving")}):a?o.jsxs("div",{className:"create-agent-card__message is-error",role:"alert",children:[o.jsx("span",{className:"create-agent-card__message-title",children:n("blocks.createAgents.retrievalFailed")}),o.jsx("span",{children:l||n("blocks.createAgents.checkConfig")})]}):o.jsx(kCe,{className:"create-agent-card__accordion",children:s.map(c=>o.jsxs(_Ce,{className:"create-agent-card__accordion-item",value:c.value,children:[o.jsx(NCe,{className:"create-agent-card__accordion-header",children:o.jsxs(jCe,{className:"create-agent-card__accordion-trigger",children:[o.jsx("span",{children:c.label}),o.jsxs("span",{className:"create-agent-card__accordion-meta",children:[o.jsx(ya,{color:"secondary",size:"sm",variant:"soft",children:c.sources.length===0?c.value==="skill_hub"?n("blocks.createAgents.notSearched"):n("blocks.createAgents.notConfigured"):c.resources.length}),o.jsx(LCe,{className:"create-agent-card__accordion-chevron"})]})]})}),o.jsx(ICe,{className:"create-agent-card__accordion-content",children:o.jsxs("div",{className:"create-agent-card__accordion-scroll",role:"region","aria-label":n("blocks.createAgents.resourceList",{label:c.label}),tabIndex:0,children:[c.value==="skill_hub"&&c.searchKeywords.length>0?o.jsxs("div",{className:"create-agent-card__search-keywords",children:[o.jsx("span",{children:n("blocks.createAgents.searchKeywords")}),o.jsx("span",{children:c.searchKeywords.join("、")})]}):null,c.resources.length>0?o.jsx("div",{className:"create-agent-card__resource-list",children:c.resources.map(u=>o.jsx("div",{className:"create-agent-card__resource",children:o.jsxs("div",{className:"create-agent-card__resource-main",children:[o.jsxs("div",{className:"create-agent-card__resource-title",children:[o.jsx("span",{className:"create-agent-card__resource-name",children:u.name}),u.version?o.jsx(ya,{className:"create-agent-card__resource-version",color:"secondary",size:"sm",variant:"soft",children:u.version}):null]}),u.description?o.jsx("p",{children:u.description}):null]})},u.ref))}):o.jsxs("div",{className:"create-agent-card__empty-category",children:[o.jsx("p",{children:c.sources.length===0?c.value==="skill_hub"?n("blocks.createAgents.skillHubSkipped"):n("blocks.createAgents.sourceSkipped",{label:c.label}):n("blocks.createAgents.noResources")}),c.sources.filter(u=>u.message).map(u=>o.jsx("p",{className:"create-agent-card__raw-source-error",children:u.message},u.source))]})]})})]},c.value))},r.collectionId||"collected-resources")})}function nSt({args:e,response:t,status:n}){const{t:i}=Ae("conversation"),r=p.useMemo(()=>({tool:i("blocks.createAgents.sourceLabels.tool"),knowledge:i("blocks.createAgents.sourceLabels.knowledge"),skillCenter:i("blocks.createAgents.sourceLabels.skillCenter"),unknownSource:i("blocks.createAgents.sourceLabels.unknown"),unnamedResource:i("blocks.createAgents.unnamedResource"),unnamedAgent:i("blocks.createAgents.unnamedAgent")}),[i]),s=p.useMemo(()=>uCe(e,t,r),[e,r,t]),a=n==="failed"?pI(t):"";return o.jsxs("section",{className:"create-agent-tool-card is-agent-results","aria-label":i("blocks.createAgents.resultAria"),children:[a?o.jsxs("div",{className:"create-agent-card__message is-error",role:"alert",children:[o.jsx("span",{className:"create-agent-card__message-title",children:i("blocks.createAgents.creationFailed")}),o.jsx("span",{children:a})]}):null,s.agents.length>0?o.jsx("div",{className:"create-agent-card__agent-grid",children:s.agents.map(l=>{const c=n==="failed"?"failed":l.status,u=l.error||c==="failed"&&a,d=l.builtinTools.length+l.pythonTools.length;return o.jsxs(LB,{className:`create-agent-card__agent-card${u?" is-error":""}`,children:[o.jsx($B,{leading:o.jsx(tx,{seed:l.name}),title:l.name,titleText:l.name,status:o.jsx(ya,{color:"secondary",size:"sm",variant:"soft",children:i(`blocks.createAgents.agentTypes.${l.rootType}`,{defaultValue:l.rootType})})}),l.description?o.jsx(FB,{children:l.description}):null,u?o.jsx("div",{className:"create-agent-card__agent-result is-error",role:"alert",children:u}):null,o.jsxs("div",{className:"create-agent-card__agent-resources","aria-label":i("blocks.createAgents.agentResources",{name:l.name}),children:[o.jsx(QT,{label:i("blocks.createAgents.skill"),count:l.skills.length,icon:o.jsx(e2,{"aria-hidden":"true"}),children:o.jsx(e5,{label:i("blocks.createAgents.skill"),resources:l.skills})}),o.jsx(QT,{label:i("blocks.createAgents.knowledgeBase"),count:l.knowledgeBases.length,icon:o.jsx(l1e,{"aria-hidden":"true"}),children:o.jsx(e5,{label:i("blocks.createAgents.knowledgeBase"),resources:l.knowledgeBases})}),o.jsxs(QT,{label:i("blocks.createAgents.toolsLabel"),count:d,icon:o.jsx(m7e,{"aria-hidden":"true"}),children:[o.jsx(e5,{label:i("blocks.createAgents.builtinTool"),resources:l.builtinTools}),o.jsx(JOt,{tools:l.pythonTools})]}),o.jsx(QT,{label:i("blocks.createAgents.subAgents"),count:l.subAgentCount,icon:o.jsx(b7e,{"aria-hidden":"true"}),children:o.jsx(eSt,{agents:l.subAgents})})]})]},l.name)})}):n==="running"?o.jsx($Ce,{label:i("blocks.createAgents.creating")}):o.jsxs("div",{className:"create-agent-card__message",children:[o.jsx("span",{className:"create-agent-card__message-title",children:i("blocks.createAgents.noAgents")}),o.jsx("span",{children:i("blocks.createAgents.noAgentResult")})]})]})}const iSt={web_search:{name:"web_search",runningLabel:"Searching the web",doneLabel:"Web search complete",tone:"search",icon:qY},link_reader:{name:"link_reader",runningLabel:"Reading webpage",doneLabel:"Webpage read complete",tone:"search",icon:qY},run_code:{name:"run_code",runningLabel:"Running code in the AgentKit sandbox",doneLabel:"Code execution completed in the AgentKit sandbox",tone:"sandbox",icon:ywt},list_envs:{name:"list_envs",runningLabel:"Checking available environments",doneLabel:"Available environments loaded",tone:"resources",icon:xwt},get_env_manifest:{name:"get_env_manifest",runningLabel:"Loading the environment manifest",doneLabel:"Environment manifest loaded",tone:"knowledge",icon:wwt},execute_in_sandbox:{name:"execute_in_sandbox",runningLabel:"Running a command in the environment",doneLabel:"Command completed in the environment",tone:"sandbox",icon:KY},delegate_to_codex_sandbox:{name:"delegate_to_codex_sandbox",runningLabel:"Codex Sandbox is running",doneLabel:"Codex Sandbox completed",failedLabel:"Codex Sandbox failed",tone:"sandbox",icon:KY},image_generate:{name:"image_generate",runningLabel:"Generating image",doneLabel:"Image generated",tone:"image",icon:hwt},video_generate:{name:"video_generate",runningLabel:"Generating video",doneLabel:"Video generated",tone:"video",icon:wU},ppt_generate:{name:"ppt_generate",runningLabel:"Generating presentation",doneLabel:"Presentation generated",tone:"presentation",icon:pwt},load_memory:{name:"load_memory",runningLabel:"Searching long-term memory",doneLabel:"Memory search complete",tone:"memory",icon:mwt},load_knowledgebase:{name:"load_knowledgebase",runningLabel:"Searching the knowledge base",doneLabel:"Knowledge base search complete",tone:"knowledge",icon:gwt},load_skill:{name:"load_skill",runningLabel:"Loading skill",doneLabel:"Skill loaded",tone:"skill",icon:bwt},collect_resources:{name:"collect_resources",runningLabel:"Collecting available resources",doneLabel:"Resource collection complete",failedLabel:"Resource collection failed",tone:"resources",icon:vwt,detailRenderer:tSt},create_agents:{name:"create_agents",runningLabel:"Creating and running agents",doneLabel:"Agent creation complete",failedLabel:"Agent creation failed",tone:"agent",icon:WY,detailRenderer:nSt},branch_compare:{name:"branch_compare",runningLabel:"",doneLabel:"",failedLabel:"",tone:"search",icon:WY,detailRenderer:Nwt,hideHeader:!0}};function rSt(e){return iSt[e]}function FCe(e){return o.jsx("svg",{viewBox:"0 0 111 117",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M0 5.6016C7.82288e-05 0.621244 6.02226 -1.87314 9.54395 1.64847L40.1289 32.2334L68.5732 3.7891C69.5834 2.77903 70.9533 2.21099 72.3818 2.21097H82.7031C82.7917 2.20658 82.8806 2.20414 82.9697 2.20414H104.775C109.574 2.20427 111.977 8.00691 108.584 11.4004L64.916 55.0664C64.3075 55.8528 63.9436 56.7647 63.8242 57.6993C63.7142 56.4884 63.1964 55.3069 62.2695 54.3799L45.4082 37.5186H45.4072L40.124 32.2354L17.832 54.5284C16.7671 55.5933 16.2416 56.993 16.2549 58.3887C16.2417 59.7843 16.7672 61.1842 17.832 62.2491L39.9287 84.3467L9.54395 114.733C6.0223 118.255 0.000223474 115.761 0 110.78V5.6016ZM63.8018 58.8702C63.8962 59.9086 64.2936 60.9229 64.9961 61.7735L108.591 105.368C111.984 108.762 109.58 114.564 104.781 114.564H94.4336C94.3543 114.568 94.274 114.569 94.1934 114.569H72.3877C70.9592 114.569 69.5892 114.002 68.5791 112.992L39.9336 84.3467L58.4531 65.8282L58.4453 65.8203L62.2695 61.9981C63.1476 61.12 63.6567 60.0136 63.8018 58.8702Z",fill:"currentColor"})})}function sSt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M6 3h8l4 4v14H6Z"}),o.jsx("path",{d:"M14 3v5h5"}),o.jsx("path",{d:"m10 12-2 2 2 2M14 12l2 2-2 2"})]})}function aSt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M12 3 19 6v5c0 4.6-2.8 7.8-7 10-4.2-2.2-7-5.4-7-10V6l7-3Z"}),o.jsx("path",{d:"m9 12 2 2 4-4"})]})}function oSt(e,t){const n=new Map(e.map(a=>[a.path,a.content])),i=new Map(t.map(a=>[a.path,a.content])),r=new Set([...n.keys(),...i.keys()]),s=[];for(const a of[...r].sort((l,c)=>l.localeCompare(c))){const l=n.get(a),c=i.get(a);l!==c&&s.push({path:a,status:l===void 0?"added":c===void 0?"deleted":"modified",before:l??"",after:c??""})}return s}function Km(e){return{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:1.75,strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":!0,...e}}function BCe(e){return o.jsx("svg",{...Km(e),children:o.jsx("path",{d:"m9 7-5 5 5 5M15 7l5 5-5 5M13.5 4l-3 16"})})}function t5(e){return o.jsx("svg",{...Km(e),children:o.jsx("path",{d:"M6.5 3.75h7l4 4V20.25h-11zM13.5 3.75v4h4M9 12h6M9 15.5h4.5"})})}function lSt(e){return o.jsx("svg",{...Km(e),children:o.jsx("path",{d:"M3.75 7.25h6l1.75 2h8.75v9.25H3.75zM3.75 7.25V5.5h5l1.5 1.75"})})}function cSt(e){return o.jsx("svg",{...Km(e),children:o.jsx("path",{d:"m9 5 7 7-7 7"})})}function UCe(e){return o.jsx("svg",{...Km(e),children:o.jsx("path",{d:"m6.5 6.5 11 11M17.5 6.5l-11 11"})})}function uSt(e){return o.jsxs("svg",{...Km(e),children:[o.jsx("circle",{cx:"12",cy:"12",r:"3.25"}),o.jsx("path",{d:"M12 2.75v2M12 19.25v2M2.75 12h2M19.25 12h2M5.45 5.45l1.4 1.4M17.15 17.15l1.4 1.4M18.55 5.45l-1.4 1.4M6.85 17.15l-1.4 1.4"})]})}function dSt(e){return o.jsx("svg",{...Km(e),children:o.jsx("path",{d:"M19.25 15.25A8 8 0 0 1 8.75 4.75a8 8 0 1 0 10.5 10.5Z"})})}function fSt(e){return o.jsxs("svg",{...Km(e),children:[o.jsx("path",{d:"M19.25 8.25V4.5l-1.8 1.8a7.5 7.5 0 1 0 1.8 7.65"}),o.jsx("path",{d:"M19.25 4.5H15.5"})]})}const hSt=p.lazy(()=>$d(()=>Promise.resolve().then(()=>bje),void 0)),pSt=p.lazy(()=>$d(()=>import("../chunks/CodeDiffEditor-mJae63d0.js"),[])),QCe="veadk-code-workspace-theme";function mSt(e){const t={name:"",children:new Map};for(const n of e){const i=n.path.split("/").filter(Boolean);let r=t;i.forEach((s,a)=>{let l=r.children.get(s);l||(l={name:s,children:new Map},r.children.set(s,l)),a===i.length-1&&(l.path=n.path),r=l})}return t}function gSt(e,t=!1){return[...e.children.values()].sort((n,i)=>{const r=n.children.size>0&&n.path===void 0,s=i.children.size>0&&i.path===void 0;return r!==s?t?r?1:-1:r?-1:1:n.name.localeCompare(i.name)})}function bSt(){if(typeof window>"u")return"light";try{return window.localStorage.getItem(QCe)==="dark"?"dark":"light"}catch{return"light"}}function ySt(e){return e===""?0:e.split(` +`).length}function YS({project:e,open:t,onClose:n,onChange:i,readOnly:r=!1,comparison:s}){var L;const{t:a}=Ae("workspaceTools"),l=p.useId(),c=p.useRef(null),u=p.useRef(null),d=p.useRef(n),[f,h]=p.useState(bSt),m=p.useMemo(()=>s?oSt(s.baseProject.files,e.files):[],[s,e.files]),g=p.useMemo(()=>s?m.map(_=>({path:_.path,content:_.status==="deleted"?_.before:_.after})):e.files,[m,s,e.files]),b=p.useMemo(()=>new Map(m.map(_=>[_.path,_.status])),[m]),[v,y]=p.useState(((L=g[0])==null?void 0:L.path)??null),[x,O]=p.useState(new Set),w=p.useMemo(()=>mSt(g),[g]),k=g.find(_=>_.path===v)??null,S=m.find(_=>_.path===v)??null;if(d.current=n,p.useEffect(()=>{try{window.localStorage.setItem(QCe,f)}catch{}},[f]),p.useEffect(()=>{var $;if(!t)return;const _=document.body.style.overflow,P=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",($=u.current)==null||$.focus();const I=M=>{if(M.key==="Escape"){M.preventDefault(),d.current();return}if(M.key!=="Tab"||!c.current)return;const B=[...c.current.querySelectorAll('button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])')].filter(K=>K.offsetParent!==null);if(B.length===0)return;const R=B[0],V=B[B.length-1];M.shiftKey&&document.activeElement===R?(M.preventDefault(),V.focus()):!M.shiftKey&&document.activeElement===V&&(M.preventDefault(),R.focus())};return window.addEventListener("keydown",I),()=>{document.body.style.overflow=_,window.removeEventListener("keydown",I),P!=null&&P.isConnected&&P.focus()}},[t]),p.useEffect(()=>{k||g.length===0||y(g[0].path)},[g,k]),!t)return null;function E(_){O(P=>{const I=new Set(P);return I.has(_)?I.delete(_):I.add(_),I})}function C(_){return _?o.jsx("span",{className:`code-browser-change is-${_}`,children:a(`codeBrowser.change.${_}`)}):null}function N(_,P,I){return gSt(_,P===0).map($=>{const M=I?`${I}/${$.name}`:$.name;if(!($.children.size>0&&$.path===void 0)&&$.path){const V=b.get($.path);return o.jsxs("button",{type:"button",className:`code-browser-file${v===$.path?" is-active":""}`,style:{paddingLeft:`${12+P*16}px`},onClick:()=>y($.path??null),title:$.path,"aria-pressed":v===$.path,children:[o.jsx(t5,{}),o.jsx("span",{children:$.name}),C(V)]},M)}const R=x.has(M);return o.jsxs("div",{children:[o.jsxs("button",{type:"button",className:"code-browser-folder",style:{paddingLeft:`${10+P*16}px`},onClick:()=>E(M),"aria-expanded":!R,children:[o.jsx(cSt,{className:R?"":"is-open"}),o.jsx(lSt,{}),o.jsx("span",{children:$.name})]}),!R&&N($,P+1,M)]},M)})}function T(_){!k||s||i({...e,files:e.files.map(P=>P.path===k.path?{...P,content:_}:P)})}const j=f==="light"?"dark":"light",A=a(s?"codeBrowser.noChanges":"codeBrowser.chooseFile");return Fi.createPortal(o.jsx("div",{className:"code-browser-backdrop",onMouseDown:_=>{_.target===_.currentTarget&&n()},children:o.jsxs("section",{ref:c,className:`code-browser-dialog is-${f}`,role:"dialog","aria-modal":"true","aria-labelledby":l,children:[o.jsxs("header",{className:"code-browser-head",children:[o.jsxs("div",{className:"code-browser-title-wrap",children:[o.jsx("span",{className:"code-browser-title-icon",children:o.jsx(BCe,{})}),o.jsxs("div",{children:[o.jsx("h2",{id:l,children:a(s?"codeBrowser.compareTitle":"codeBrowser.workspaceTitle")}),o.jsx("p",{title:e.name,children:e.name||a("codeBrowser.projectFallback")})]})]}),o.jsxs("div",{className:"code-browser-head-actions",children:[o.jsx("button",{type:"button",className:"code-browser-icon-button",onClick:()=>h(j),"aria-label":a("codeBrowser.switchTheme"),title:a("codeBrowser.switchThemeTitle",{theme:a(`codeBrowser.themes.${j}`)}),children:f==="light"?o.jsx(dSt,{}):o.jsx(uSt,{})}),o.jsx("button",{ref:u,type:"button",className:"code-browser-icon-button",onClick:n,"aria-label":a("codeBrowser.closeWorkspace"),title:a("codeBrowser.close"),children:o.jsx(UCe,{})})]})]}),o.jsxs("div",{className:"code-browser-workspace",children:[o.jsxs("aside",{className:"code-browser-sidebar","aria-label":a(s?"codeBrowser.changedFiles":"codeBrowser.projectFiles"),children:[o.jsxs("div",{className:"code-browser-sidebar-head",children:[o.jsx("span",{children:a(s?"codeBrowser.changes":"codeBrowser.files")}),o.jsx("span",{children:g.length})]}),o.jsx("div",{className:"code-browser-tree",children:g.length>0?N(w,0,""):o.jsx("div",{className:"code-browser-empty",children:A})})]}),o.jsxs("main",{className:"code-browser-main",children:[o.jsx("div",{className:"code-browser-tabs",role:"tablist","aria-label":a("codeBrowser.openFiles"),children:k?o.jsxs("div",{className:"code-browser-tab",role:"tab","aria-selected":"true",children:[o.jsx(t5,{}),o.jsx("span",{children:k.path.split("/").pop()}),C(S==null?void 0:S.status)]}):null}),o.jsxs("div",{className:"code-browser-path",children:[o.jsx(t5,{}),o.jsx("span",{children:(k==null?void 0:k.path)??a("codeBrowser.noFileSelected")})]}),s?o.jsxs("div",{className:"code-browser-diff-labels","aria-label":a("codeBrowser.comparisonDirection"),children:[o.jsx("span",{children:s.baseLabel??a("codeBrowser.before")}),o.jsx("span",{children:s.targetLabel??a("codeBrowser.after")})]}):null,o.jsx("div",{className:"code-browser-editor",children:k?o.jsx(p.Suspense,{fallback:o.jsx("div",{className:"code-browser-empty",children:a("codeBrowser.loadingEditor")}),children:S?o.jsx(pSt,{before:S.before,after:S.after,path:S.path,theme:f}):o.jsx(hSt,{value:k.content,path:k.path,onChange:T,readOnly:r,theme:f})}):o.jsx("div",{className:"code-browser-empty",children:A})}),o.jsxs("footer",{className:"code-browser-statusbar",children:[o.jsx("span",{children:s?a("codeBrowser.changedFileCount",{count:m.length}):a("codeBrowser.fileCount",{count:e.files.length})}),o.jsx("span",{children:k?a("codeBrowser.lineCount",{count:ySt(k.content)}):"UTF-8"})]})]})]})]})}),document.body)}function vSt({project:e,onChange:t,className:n="",label:i}){const{t:r}=Ae("workspaceTools"),[s,a]=p.useState(!1),l=i??r("codeBrowser.viewSource");return o.jsxs(o.Fragment,{children:[o.jsxs("button",{type:"button",className:`code-browser-trigger ${n}`.trim(),onClick:()=>a(!0),"aria-label":r("codeBrowser.viewSourceAria"),title:l,children:[o.jsx(BCe,{}),o.jsx("span",{children:l})]}),o.jsx(YS,{project:e,open:s,onClose:()=>a(!1),onChange:t})]})}const zCe="send_a2ui_json_to_client",xSt=28,wSt=3e3;function OSt(e,t,n){let i=t;for(let r=0;r65535?2:1}return i}function SSt(e){return e<=4?1:Math.min(18,Math.max(2,Math.ceil(e/6)))}function VCe(e,t,n,i){const[r,s]=p.useState(()=>t?"":e),a=p.useRef(r),l=p.useRef(e),c=p.useRef(null),u=p.useRef(0),d=p.useRef(n);return l.current=e,d.current=n,p.useEffect(()=>{const f=a.current,h=window.matchMedia("(prefers-reduced-motion: reduce)").matches;if(!t||h||!e.startsWith(f)){c.current!==null&&window.cancelAnimationFrame(c.current),c.current=null,f!==e&&(a.current=e,s(e));return}if(f===e||c.current!==null)return;const m=g=>{const b=l.current,v=a.current;if(!b.startsWith(v)){a.current=b,s(b),c.current=null;return}if(g-u.current{var f;(f=d.current)==null||f.call(d)},[r]),p.useEffect(()=>{r===e&&(i==null||i())},[r,i,e]),p.useEffect(()=>()=>{c.current!==null&&(window.cancelAnimationFrame(c.current),c.current=null)},[]),r}function kSt(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:o.jsx("path",{d:"M14.3 5.25a4.6 4.6 0 0 0-5.55 5.55L3.6 15.95a1.8 1.8 0 0 0 0 2.55l1.9 1.9a1.8 1.8 0 0 0 2.55 0l5.15-5.15a4.6 4.6 0 0 0 5.55-5.55l-2.9 2.9-2.45-.55-.55-2.45 2.9-2.9a4.6 4.6 0 0 0-1.45-1.45Z"})})}function ESt(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"m4.5 7 1.8 1.8L9.5 5.5"}),o.jsx("path",{d:"M12 7h7.5"}),o.jsx("path",{d:"m4.5 13 1.8 1.8 3.2-3.3"}),o.jsx("path",{d:"M12 13h7.5"}),o.jsx("path",{d:"M5 19h4"}),o.jsx("path",{d:"M12 19h7.5"})]})}function CSt(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"M5 5v7.25A3.75 3.75 0 0 0 8.75 16H19"}),o.jsx("path",{d:"m15.5 12.5 3.5 3.5-3.5 3.5"})]})}function TSt({activity:e}){const{t}=Ae("conversation"),n=[["Agent Session",e.agentSessionId],["Sandbox Session",e.sandboxSessionId],["Codex Thread",e.threadId]].filter(i=>!!i[1]);return n.length?o.jsx("dl",{className:"codex-sandbox-run__identity","aria-label":t("blocks.sandboxIdentity"),children:n.map(([i,r])=>o.jsxs("div",{children:[o.jsx("dt",{children:i}),o.jsx("dd",{title:r,children:r})]},i))}):null}function ASt(e,t,n){if(e!=="load_skill"||t==null||typeof t!="object"||Array.isArray(t))return;const i=t.skill_name;if(!(typeof i!="string"||!i.trim()))return n("blocks.useSkill",{name:i.trim()})}function HCe({text:e,done:t,answerStarted:n=!1,streaming:i=!1,onStreamFrame:r}){const{t:s}=Ae("conversation"),[a,l]=p.useState(!(t||n)),c=p.useRef(!1);p.useEffect(()=>{c.current||l(!(t||n))},[n,t]);const u=()=>{c.current=!0,l(g=>!g)},d=e.replace(/\r\n?/g,` `).trimStart().split(/\n{2,}/).map(g=>g.replace(/[^\S\n]*\n[^\S\n]*/g,(b,v,y)=>{const x=y[v-1]??"",O=y[v+b.length]??"";return!x||!O||new RegExp("\\p{Script=Han}","u").test(x)&&new RegExp("\\p{Script=Han}","u").test(O)||/[(\[{“‘/]/u.test(x)||/[),.\]},。!?;:、”’]/u.test(O)?"":" "})).join(` -`),f=jCe(d,!t||i,r),{ref:h,onScroll:m}=qEe(f);return o.jsxs("div",{className:"block-thinking",children:[o.jsxs("button",{className:"think-head",onClick:u,type:"button",children:[o.jsx("span",{className:"think-icon","aria-hidden":"true",children:o.jsx(CCe,{className:`thinking-logo ${t?"":"is-active"}`})}),t?o.jsx("span",{className:"think-label think-label--done",children:s("blocks.thinkingDone")}):o.jsx(xn,{className:"think-label",duration:2.4,spread:18,children:s("blocks.thinking")}),o.jsx(Uk,{className:`chev ${a?"open":""}`})]}),o.jsx("div",{className:`think-collapse ${a&&f?"open":""}`,children:o.jsx("div",{className:"think-collapse-inner",children:o.jsx("div",{className:"think-body scroll",ref:h,onScroll:m,children:f})})})]})}function fSt({text:e}){return o.jsx("div",{className:"block-progress",role:"status","aria-live":"polite","aria-atomic":"true",children:o.jsxs("div",{className:"think-head progress-head",children:[o.jsx("span",{className:"think-icon","aria-hidden":"true",children:o.jsx(CCe,{className:"thinking-logo is-active"})}),o.jsx(xn,{className:"think-label",duration:2.4,spread:18,children:e})]})})}function hSt({value:e,onResolve:t,onResolveComparison:n,onDownload:i,onDeploy:r}){const{t:s,i18n:a}=Te("conversation"),[l,c]=p.useState(e.files?e:null),[u,d]=p.useState(!1),[f,h]=p.useState(!1),[m,g]=p.useState(null),[b,v]=p.useState(null),[y,x]=p.useState(""),[O,w]=p.useState(null),k=new Date(e.validatedAt),S=e.validatedAt?Number.isNaN(k.getTime())?e.validatedAt:k.toLocaleString(a.resolvedLanguage??a.language,{hour12:!1}):s("blocks.justNow");p.useEffect(()=>{if(!O)return;const A=window.setTimeout(()=>w(null),rSt);return()=>window.clearTimeout(A)},[O]);async function E(){if(l)return l;if(!t)throw new Error(s("blocks.sourceUnavailable"));const A=await t(e);return c(A),A}async function C(){v("source"),x(""),w(null);try{await E(),d(!0)}catch(A){x(A instanceof Error?A.message:String(A))}finally{v(null)}}async function N(){if(i){v("download"),x(""),w(null);try{await i(e),w({message:s("blocks.downloadStarted")})}catch(A){x(A instanceof Error?A.message:String(A))}finally{v(null)}}}async function _(){if(n){v("compare"),x(""),w(null);try{const A=m??await n(e);g(A),h(!0)}catch(A){x(A instanceof Error?A.message:String(A))}finally{v(null)}}}async function j(){v("deploy"),x(""),w(null);try{r==null||r(await E())}catch(A){x(A instanceof Error?A.message:String(A))}finally{v(null)}}return o.jsxs(o.Fragment,{children:[o.jsxs("section",{className:`delivery-card${e.verified?" is-verified":" is-unverified"}`,"aria-label":e.verified?s("blocks.verifiedDelivery"):s("blocks.generatedSource"),children:[o.jsxs("header",{className:"delivery-card-header",children:[o.jsx("span",{className:"delivery-card-icon",children:e.verified?o.jsx(zOt,{}):o.jsx(QOt,{})}),o.jsxs("div",{children:[o.jsx("strong",{children:e.verified?s("blocks.verifiedDelivery"):s("blocks.generatedSource")}),o.jsx("span",{children:e.agentName})]})]}),o.jsxs("dl",{className:"delivery-card-grid",children:[o.jsxs("div",{children:[o.jsx("dt",{children:s("blocks.entryPoint")}),o.jsx("dd",{children:o.jsx("code",{children:e.entryPoint})})]}),o.jsxs("div",{children:[o.jsx("dt",{children:s("blocks.fileCount")}),o.jsx("dd",{children:e.fileCount})]}),o.jsxs("div",{children:[o.jsx("dt",{children:s("blocks.size")}),o.jsxs("dd",{children:[(e.artifactSize/1024).toFixed(1)," KiB"]})]}),o.jsxs("div",{children:[o.jsx("dt",{children:e.verified?s("blocks.validationTime"):s("blocks.generationTime")}),o.jsx("dd",{children:S})]})]}),o.jsxs("p",{className:"delivery-card-gates",children:[e.verified?s("blocks.checksPassed",{count:e.gateSummary.length}):s("blocks.sourceReady")," ","· ",o.jsx("code",{children:e.artifactSha256.slice(0,12)})]}),e.verified?null:o.jsx("p",{className:"delivery-card-guidance",children:s("blocks.sourceGuidance")}),o.jsxs("div",{className:"delivery-card-actions",children:[o.jsxs("button",{type:"button",className:"delivery-card-secondary",onClick:()=>void C(),disabled:!t||b!==null,children:[b==="source"?o.jsx(fi,{className:"spin","aria-hidden":"true"}):null,s("blocks.viewSource")]}),e.projectId&&e.versionId&&e.parentVersionId?o.jsxs("button",{type:"button",className:"delivery-card-secondary",onClick:()=>void _(),disabled:!n||b!==null,children:[b==="compare"?o.jsx(fi,{className:"spin","aria-hidden":"true"}):null,s(b==="compare"?"blocks.preparing":"blocks.viewChanges")]}):null,o.jsxs("button",{type:"button",className:"delivery-card-secondary",onClick:()=>void N(),disabled:!i||b!==null,"aria-busy":b==="download",children:[b==="download"?o.jsx(fi,{className:"spin","aria-hidden":"true"}):null,s(b==="download"?"blocks.preparing":"blocks.downloadSource")]}),o.jsxs("button",{type:"button",onClick:()=>void j(),disabled:!e.deployable||!r||!t||b!==null,title:e.deployable?void 0:s("blocks.sourceNotReady"),children:[b==="deploy"?o.jsx(fi,{className:"spin","aria-hidden":"true"}):null,s("blocks.manualDeploy")]})]}),y?o.jsx("p",{className:"delivery-card-error",role:"alert",children:y}):null,O?o.jsx("p",{className:"delivery-card-status",role:"status","aria-live":"polite",children:O.message}):null]}),o.jsx(WS,{project:{name:e.agentName,files:(l==null?void 0:l.files)??[]},open:u,onClose:()=>d(!1),onChange:()=>{},readOnly:!0}),o.jsx(WS,{project:{name:(m==null?void 0:m.target.agentName)??e.agentName,files:(m==null?void 0:m.target.files)??[]},comparison:m?{baseProject:{name:m.base.agentName,files:m.base.files??[]},baseLabel:s("blocks.beforeOptimization"),targetLabel:s("blocks.afterOptimization")}:void 0,open:f,onClose:()=>h(!1),onChange:()=>{},readOnly:!0})]})}function ICe(){return o.jsx(RCe,{text:"",done:!1})}const pSt=p.memo(function({text:t,streaming:n,onStreamFrame:i,onStreamComplete:r}){const s=jCe(t,n,i,r);return s?o.jsx("div",{className:"bubble",children:o.jsx(Bu,{text:s,streaming:n})}):null});function mSt({title:e,summary:t,items:n,done:i}){const{t:r}=Te("conversation"),[s,a]=p.useState(!i),l=p.useRef(!1);p.useEffect(()=>{l.current||a(!i)},[i]);const c=()=>{l.current=!0,a(u=>!u)};return o.jsxs("div",{className:"block-plan",children:[o.jsxs("button",{className:"plan-head",type:"button",onClick:c,"aria-expanded":n.length>0?s:void 0,disabled:n.length===0,children:[o.jsx("span",{className:"plan-icon","aria-hidden":"true",children:o.jsx(lSt,{})}),i?o.jsx("span",{className:"plan-title",children:e}):o.jsx(xn,{className:"plan-title",duration:2.2,spread:15,children:e}),t?o.jsx("span",{className:"plan-summary",children:t}):null,n.length>0?o.jsx(bU,{className:`plan-chevron${s?" is-open":""}`}):null]}),o.jsx("div",{className:`think-collapse ${s&&n.length>0?"open":""}`,children:o.jsx("div",{className:"think-collapse-inner",children:n.length>0?o.jsx("ol",{className:"plan-items",children:n.map((u,d)=>o.jsxs("li",{"data-status":u.status,children:[o.jsx("span",{className:"plan-item-marker","aria-hidden":"true"}),o.jsx("span",{className:"plan-item-text",children:u.text}),o.jsx("small",{children:r(`blocks.planStatuses.${u.status}`)})]},`${d}:${u.text}`))}):null})})]})}function gSt(e){if(!e||typeof e!="object")return[];const t=e,n=t.result;let i=[];if(Array.isArray(t.studio_artifacts))i=t.studio_artifacts;else if(n&&typeof n=="object"){const r=n.studio_artifacts;Array.isArray(r)&&(i=r)}return i.flatMap(r=>{if(!r||typeof r!="object")return[];const s=r;return typeof s.name=="string"&&typeof s.contentUrl=="string"?[{name:s.name,contentUrl:s.contentUrl}]:[]})}function bSt({name:e,args:t,response:n,done:i,status:r,defaultOpen:s=!1,retrying:a=!1,codexActivity:l,onBranchSelect:c,onAction:u}){const{t:d}=Te("conversation"),h=e==="create_agents"&&i&&dwt(t,n)?"failed":r??(i?"completed":"running"),m=e==="create_agents"&&h==="failed"&&a,g=UOt(e),b=g==null?void 0:g.detailRenderer,v=(g==null?void 0:g.hideHeader)===!0,y=v||s||!!b||!!l,[x,O]=p.useState(y),w=p.useRef(!1);p.useEffect(()=>{!w.current&&y&&O(!0)},[y]);const k=()=>{w.current=!0,O(_=>!_)},S=e===NCe?d("blocks.renderUi"):e,E=gSt(n),C=n==null?null:typeof n=="string"?n:JSON.stringify(n,null,2),N=C&&C.length>2e3?`${C.slice(0,2e3)} -${d("blocks.truncated")}`:C;return o.jsxs(pr.div,{className:`block-tool${g?" block-tool--builtin":""}`,"data-status":h,initial:{opacity:0,y:4},animate:{opacity:1,y:0},transition:{duration:.2,ease:"easeOut"},children:[g&&!v?o.jsx(swt,{definition:g,label:m?d("blocks.agentAdjusting"):h==="failed"?d(`blocks.tools.${g.name}.failed`,{defaultValue:g.failedLabel??g.doneLabel}):dSt(e,t,d),done:i,open:x,onToggle:k}):g?null:o.jsxs("button",{className:"tool-head tool-head--generic",onClick:k,type:"button","aria-expanded":x,children:[o.jsx("span",{className:"tool-icon tool-icon--generic","aria-hidden":"true",children:o.jsx(oSt,{})}),i?o.jsx("span",{className:"tool-name",children:S}):o.jsx(xn,{className:"tool-name",duration:2.2,spread:15,children:S}),o.jsx(bU,{className:`tool-chevron${x?" is-open":""}`})]}),o.jsx("div",{className:`${v?"":"think-collapse "}${x?"open":""}`,children:o.jsxs("div",{className:"think-collapse-inner",children:[l?o.jsxs("section",{className:"codex-sandbox-run","aria-label":d("blocks.sandboxDetails"),children:[o.jsxs("div",{className:"codex-sandbox-run__label",children:[o.jsxs("span",{className:"codex-sandbox-run__badge",children:[o.jsx(cSt,{}),o.jsx("span",{children:"Codex Sandbox"})]}),o.jsx("span",{className:"codex-sandbox-run__title",children:l.title})]}),o.jsx(uSt,{activity:l}),o.jsx("div",{className:"codex-sandbox-run__stream",children:l.items.length>0?o.jsx(TE,{blocks:l.items.map(_=>_.block),streaming:!i,onAction:u}):o.jsx(xn,{className:"codex-sandbox-run__empty",children:d("blocks.waitingCodex")})})]}):null,b?o.jsx(b,{args:t,response:n,status:h,onBranchSelect:c}):l?null:o.jsxs("div",{className:"tool-detail",children:[t!=null&&o.jsxs("div",{className:"tool-section",children:[o.jsx("div",{className:"tool-section-label",children:d("blocks.arguments")}),o.jsx("pre",{className:"tool-args",children:JSON.stringify(t,null,2)})]}),N!=null&&o.jsxs("div",{className:"tool-section",children:[o.jsx("div",{className:"tool-section-label",children:d("blocks.result")}),o.jsx("pre",{className:"tool-args tool-result",children:N})]}),E.length>0&&o.jsxs("div",{className:"tool-section",children:[o.jsx("div",{className:"tool-section-label",children:d("blocks.artifacts")}),o.jsx("div",{className:"studio-tool-artifacts",children:E.map(_=>o.jsx("a",{href:_.contentUrl,download:_.name,children:d("blocks.downloadNamed",{name:_.name})},`${_.contentUrl}:${_.name}`))})]})]})]})})]})}function ySt({block:e,onDownload:t,onPreview:n}){const{t:i}=Te("conversation"),[r,s]=p.useState(""),[a,l]=p.useState(""),[c,u]=p.useState(null);p.useEffect(()=>()=>{c&&URL.revokeObjectURL(c.url)},[c]);const d=()=>u(null),f=async(g,b)=>{if(t){s(`download:${g}`),l("");try{await t(g,b)}catch(v){l(v instanceof Error?v.message:String(v))}finally{s("")}}},h=async(g,b,v)=>{if(n){s(`preview:${v}`),l("");try{const y=await n(g,b);u({name:v,url:y})}catch(y){l(y instanceof Error?y.message:String(y))}finally{s("")}}},m=e.files.filter(g=>!g.filename.endsWith(".preview.webp"));return o.jsxs("div",{className:"artifact-list",children:[m.map(g=>{const b=`${g.filename.replace(/\.pptx$/i,"")}.preview.webp`,v=e.files.find(y=>y.filename===b);return o.jsxs("div",{className:"artifact-card",children:[o.jsx("span",{className:"artifact-card__icon","aria-hidden":"true",children:o.jsx(MF,{})}),o.jsxs("span",{className:"artifact-card__copy",children:[o.jsx("span",{className:"artifact-card__name",children:g.filename}),o.jsx("span",{className:"artifact-card__hint",children:i("blocks.powerpoint")})]}),o.jsxs("span",{className:"artifact-card__actions",children:[v&&o.jsxs("button",{className:"artifact-card__action",type:"button",disabled:!n||r!=="",onClick:()=>void h(v.filename,v.version,g.filename),children:[r===`preview:${g.filename}`?o.jsx(fi,{className:"spin"}):o.jsx(m7e,{}),i("blocks.preview")]}),o.jsxs("button",{className:"artifact-card__action artifact-card__action--primary",type:"button",disabled:!t||r!=="",onClick:()=>void f(g.filename,g.version),children:[r===`download:${g.filename}`?o.jsx(fi,{className:"spin"}):o.jsx(Yj,{}),i("blocks.download")]})]})]},`${g.filename}:${g.version}`)}),a&&o.jsx("div",{className:"artifact-card__error",children:a}),c&&o.jsxs("div",{className:"artifact-preview",role:"dialog","aria-modal":"true","aria-label":i("blocks.previewDialog",{name:c.name}),children:[o.jsx("button",{className:"artifact-preview__backdrop",type:"button","aria-label":i("blocks.closePreview"),onClick:d}),o.jsxs("div",{className:"artifact-preview__panel",children:[o.jsxs("div",{className:"artifact-preview__header",children:[o.jsx("span",{children:c.name}),o.jsx("button",{type:"button","aria-label":i("blocks.closePreview"),onClick:d,children:o.jsx(Ba,{})})]}),o.jsx("div",{className:"artifact-preview__canvas",children:o.jsx("img",{src:c.url,alt:i("blocks.slidePreview",{name:c.name})})})]})]})]})}function vSt({block:e,onAuth:t}){const{t:n}=Te("conversation"),[i,r]=p.useState(e.done?"done":"idle"),[s,a]=p.useState(""),l=e.label||n("blocks.mcpToolset"),c=(()=>{try{return e.authUri?new URL(e.authUri).host:""}catch{return""}})(),u=async()=>{if(t){a(""),r("authorizing");try{await t(e),r("done")}catch(f){a(f instanceof Error?f.message:String(f)),r("idle")}}};return e.done||i==="done"?o.jsxs(pr.div,{className:"auth-card-collapsed",initial:{opacity:0},animate:{opacity:1},transition:{duration:.2},children:[o.jsx(wW,{className:"auth-card-icon auth-card-icon--done"}),o.jsx("span",{children:n("blocks.authorized",{tool:l})})]}):o.jsxs(pr.div,{className:"auth-card",initial:{opacity:0,y:6},animate:{opacity:1,y:0},transition:{duration:.2,ease:"easeOut"},children:[o.jsxs("div",{className:"auth-card-head",children:[o.jsx(wW,{className:"auth-card-icon"}),o.jsx("span",{className:"auth-card-title",children:n("blocks.authorizationRequired",{tool:l})})]}),o.jsxs("p",{className:"auth-card-desc",children:[o.jsx(KA,{t:n,i18nKey:"blocks.oauthDescription",values:{tool:l},components:{code:o.jsx("code",{className:"auth-card-code"})}}),c&&o.jsxs(o.Fragment,{children:[" ",o.jsx(KA,{t:n,i18nKey:"blocks.oauthProvider",values:{provider:c},components:{code:o.jsx("code",{className:"auth-card-code"})}})," "]}),n("blocks.oauthContinue")]}),o.jsx("button",{className:"auth-card-btn",onClick:u,disabled:i==="authorizing"||!e.authUri,children:i==="authorizing"?o.jsxs(o.Fragment,{children:[o.jsx(fi,{className:"cw-i spin"})," ",n("blocks.waitingAuthorization")]}):o.jsx(o.Fragment,{children:n("blocks.authorize")})}),!e.authUri&&o.jsx("div",{className:"auth-card-err",children:n("blocks.missingAuthorizationUrl")}),s&&o.jsx("div",{className:"auth-card-err",children:s})]})}function TE({blocks:e,appName:t="",streaming:n=!1,onStreamFrame:i,onStreamComplete:r,onAction:s,onAuth:a,onArtifactDownload:l,onArtifactPreview:c,onResolveDelivery:u,onResolveDeliveryComparison:d,onDownloadDelivery:f,onDeployDelivery:h,onBranchSelect:m}){const g=e.reduce((b,v,y)=>v.kind==="text"?y:b,-1);return o.jsx(o.Fragment,{children:e.map((b,v)=>{switch(b.kind){case"progress":return o.jsx(fSt,{text:b.text},"build-progress");case"thinking":{const y=e.slice(v+1).some(x=>x.kind==="text"&&!!x.text.trim());return o.jsx(RCe,{text:b.text,done:b.done,answerStarted:y,streaming:n,onStreamFrame:i},v)}case"text":{const y=b.text.replace(/^\s+/,"");return y?o.jsx(pSt,{text:y,streaming:n,onStreamFrame:i,onStreamComplete:v===g?r:void 0},v):null}case"plan":return o.jsx(mSt,{title:b.title,summary:b.summary,items:b.items,done:b.done},v);case"attachment":return o.jsx(oI,{appName:t,items:b.files},v);case"artifact":return o.jsx(ySt,{block:b,onDownload:l,onPreview:c},v);case"delivery":return o.jsx(hSt,{value:b.value,onResolve:u,onResolveComparison:d,onDownload:f,onDeploy:h},v);case"invocation":return o.jsx(aI,{value:b.value},v);case"tool":{if(b.name===NCe&&b.done)return null;const y=b.name==="create_agents"&&e.slice(v+1).some(x=>x.kind==="tool"&&x.name==="create_agents");return o.jsx(bSt,{name:b.name,args:b.args,response:b.response,done:b.done,status:b.status,defaultOpen:b.defaultOpen,retrying:b.name==="create_agents"&&(n||y),codexActivity:b.codexActivity,onBranchSelect:m,onAction:s},v)}case"agent-transfer":return null;case"auth":return o.jsx(vSt,{block:b,onAuth:a},v);case"a2ui":return HEe(b.messages).filter(y=>y.components[y.rootId]).map(y=>o.jsx(pr.div,{initial:{opacity:0,y:8,scale:.985},animate:{opacity:1,y:0,scale:1},transition:{type:"spring",stiffness:380,damping:30},children:o.jsx(W1t,{surface:y,onAction:s})},`${v}-${y.surfaceId}`));default:return null}})})}const xSt=()=>{};function wSt(e){if(e.kind==="message")return{kind:"text",text:e.text};if(e.kind==="thinking")return{kind:"thinking",text:e.text,done:e.status==="done"};if(e.kind==="tool")return{kind:"tool",name:e.name,args:e.args,response:e.response,done:e.status==="done"};throw new Error(Ut("conversation.unsupportedActivity"))}function OSt({activities:e}){const{t}=Te("skills"),n=p.useMemo(()=>e.filter(i=>i.kind!=="status").map(wSt),[e]);return n.length===0?null:o.jsx("div",{className:"skill-conversation","aria-label":t("conversation.ariaLabel"),"aria-live":"polite",children:o.jsx(TE,{blocks:n,onAction:xSt})})}function XY(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m7 9 5 5 5-5",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round"})})}function SA({label:e,value:t,options:n,onChange:i,disabled:r=!1,allowCustom:s=!1,required:a=!1,placeholder:l,error:c}){const{t:u}=Te("skills"),d=l??u("configSelect.placeholder"),f=p.useId(),h=p.useId(),m=p.useId(),g=p.useRef(null),b=p.useRef(null),v=p.useRef(null),y=p.useRef(null),x=p.useRef([]),O=n.findIndex(P=>P.value===t),w=t.trim().toLocaleLowerCase(),k=s&&w?n.filter(P=>P.value.toLocaleLowerCase().includes(w)||P.label.toLocaleLowerCase().includes(w)):n,[S,E]=p.useState(!1),[C,N]=p.useState(Math.max(0,O)),_=O>=0?n[O]:void 0,j=r||!s&&n.length===0,A=(P=!1)=>{E(!1),P&&window.requestAnimationFrame(()=>{var R,L;return s?(R=v.current)==null?void 0:R.focus():(L=b.current)==null?void 0:L.focus()})},F=P=>{j||k.length!==0&&(N(Math.min(Math.max(P,0),k.length-1)),E(!0))};p.useEffect(()=>{if(!S)return;const P=y.current,R=s?void 0:window.requestAnimationFrame(()=>{var I;(I=x.current[C])==null||I.focus()}),L=I=>{if(!P)return;const H=P.scrollTop<=0,K=P.scrollTop+P.clientHeight>=P.scrollHeight-1;(P.scrollHeight<=P.clientHeight||I.deltaY<0&&H||I.deltaY>0&&K)&&I.preventDefault(),I.stopPropagation()},M=I=>{var H;I.target instanceof Node&&!((H=g.current)!=null&&H.contains(I.target))&&A()},U=I=>{I.key==="Escape"&&A(!0)};return P==null||P.addEventListener("wheel",L,{passive:!1}),window.addEventListener("pointerdown",M),window.addEventListener("keydown",U),()=>{R!==void 0&&window.cancelAnimationFrame(R),P==null||P.removeEventListener("wheel",L),window.removeEventListener("pointerdown",M),window.removeEventListener("keydown",U)}},[C,s,S]);const T=P=>{var L;if(k.length===0)return;const R=(P+k.length)%k.length;N(R),(L=x.current[R])==null||L.focus()};return o.jsxs("div",{ref:g,className:`skill-config-select${S?" is-open":""}`,onBlur:P=>{var R;(!P.relatedTarget||!((R=g.current)!=null&&R.contains(P.relatedTarget)))&&A()},children:[o.jsxs("span",{id:h,className:"skill-config-select__label",children:[e,a?o.jsx("span",{className:"skill-required-mark","aria-hidden":"true",children:"*"}):null]}),s?o.jsxs("div",{className:`skill-config-select__trigger is-editable${r?" is-disabled":""}`,"aria-expanded":S,children:[o.jsx("input",{ref:v,value:t,disabled:r,role:"combobox","aria-autocomplete":"list","aria-expanded":S,"aria-controls":S?f:void 0,"aria-labelledby":h,"aria-required":a,"aria-invalid":!!c,"aria-describedby":c?m:void 0,placeholder:d,onChange:P=>{i(P.target.value),N(0),n.length>0&&E(!0)},onClick:()=>{!S&&k.length>0&&F(0)},onKeyDown:P=>{var R,L;if(!(P.nativeEvent.isComposing||P.keyCode===229))if(P.key==="ArrowDown")P.preventDefault(),S?(R=x.current[C])==null||R.focus():F(0);else if(P.key==="ArrowUp")P.preventDefault(),S?(L=x.current[k.length-1])==null||L.focus():F(k.length-1);else if(P.key==="Enter"&&S){P.preventDefault();const M=k[C];M&&i(M.value),A()}else P.key==="Escape"&&(P.preventDefault(),A())}}),o.jsx("button",{type:"button",className:"skill-config-select__toggle",disabled:r||n.length===0,"aria-label":u(S?"configSelect.collapseOptions":"configSelect.expandOptions"),onClick:()=>{S?A():F(0)},children:o.jsx(XY,{})})]}):o.jsxs("button",{ref:b,type:"button",className:"skill-config-select__trigger",disabled:j,"aria-haspopup":"listbox","aria-expanded":S,"aria-controls":S?f:void 0,"aria-labelledby":h,"aria-required":a,onClick:()=>{S?A():F(O>=0?O:0)},onKeyDown:P=>{P.key==="ArrowDown"?(P.preventDefault(),F(O>=0?O:0)):P.key==="ArrowUp"&&(P.preventDefault(),F(O>=0?O:n.length-1))},children:[o.jsx("span",{className:_?void 0:"is-placeholder",title:_==null?void 0:_.label,children:(_==null?void 0:_.label)||(n.length===0?u("configSelect.noOptions"):d)}),o.jsx(XY,{})]}),S?o.jsxs("div",{ref:y,id:f,className:"skill-config-select__menu",role:"listbox","aria-labelledby":h,children:[k.length===0?o.jsx("div",{className:"skill-config-select__empty",role:"status",children:u("configSelect.noMatches")}):null,k.map((P,R)=>{const L=P.value===t;return o.jsx("button",{ref:M=>{x.current[R]=M},type:"button",role:"option","aria-selected":L,tabIndex:R===C?0:-1,className:`skill-config-select__option${L?" is-selected":""}`,title:P.label,onFocus:()=>N(R),onClick:()=>{i(P.value),A(!0)},onKeyDown:M=>{M.key==="Enter"||M.key===" "?(M.preventDefault(),i(P.value),A(!0)):M.key==="ArrowDown"?(M.preventDefault(),T(R+1)):M.key==="ArrowUp"?(M.preventDefault(),T(R-1)):M.key==="Home"?(M.preventDefault(),T(0)):M.key==="End"&&(M.preventDefault(),T(n.length-1))},children:P.label},P.value)})]}):null,c?o.jsx("span",{id:m,className:"skill-config-select__error",role:"alert",children:c}):null]})}function ja(e,t){return e instanceof Error?e:typeof e=="string"&&e.trim()?new Error(e.trim()):new Error(t)}function cl({error:e}){var s,a,l,c,u;const{t}=Te("skills"),n=e,i=(a=(s=n.originalError)==null?void 0:s.message)==null?void 0:a.trim(),r=[typeof n.status=="number"?`HTTP ${n.status}${n.statusText?` ${n.statusText}`:""}`:"",n.code?t("errorDetails.code",{code:n.code}):"",(l=n.originalError)!=null&&l.type?t("errorDetails.type",{type:n.originalError.type}):"",(c=n.originalError)!=null&&c.repr&&n.originalError.repr!==i?t("errorDetails.representation",{value:n.originalError.repr}):"",(u=n.rawResponse)!=null&&u.trim()?t("errorDetails.rawResponse",{value:n.rawResponse.trim()}):""].filter(Boolean);return o.jsxs("div",{className:"skill-error-details",children:[o.jsx("div",{className:"skill-error-details__summary",children:e.message}),i?o.jsx("div",{className:"skill-error-details__original",children:t("errorDetails.original",{message:i})}):null,r.length>0?o.jsxs("details",{children:[o.jsx("summary",{children:t("errorDetails.details")}),o.jsx("pre",{children:r.join(` -`)})]}):null]})}const EU=Symbol.for("yaml.alias"),r$=Symbol.for("yaml.document"),rm=Symbol.for("yaml.map"),PCe=Symbol.for("yaml.pair"),zd=Symbol.for("yaml.scalar"),Xx=Symbol.for("yaml.seq"),ru=Symbol.for("yaml.node.type"),Yx=e=>!!e&&typeof e=="object"&&e[ru]===EU,AE=e=>!!e&&typeof e=="object"&&e[ru]===r$,_E=e=>!!e&&typeof e=="object"&&e[ru]===rm,Qs=e=>!!e&&typeof e=="object"&&e[ru]===PCe,Mr=e=>!!e&&typeof e=="object"&&e[ru]===zd,NE=e=>!!e&&typeof e=="object"&&e[ru]===Xx;function Fs(e){if(e&&typeof e=="object")switch(e[ru]){case rm:case Xx:return!0}return!1}function Us(e){if(e&&typeof e=="object")switch(e[ru]){case EU:case rm:case zd:case Xx:return!0}return!1}const DCe=e=>(Mr(e)||Fs(e))&&!!e.anchor,Sg=Symbol("break visit"),SSt=Symbol("skip children"),DO=Symbol("remove node");function Zx(e,t){const n=kSt(t);AE(e)?Iy(null,e.contents,n,Object.freeze([e]))===DO&&(e.contents=null):Iy(null,e,n,Object.freeze([]))}Zx.BREAK=Sg;Zx.SKIP=SSt;Zx.REMOVE=DO;function Iy(e,t,n,i){const r=ESt(e,t,n,i);if(Us(r)||Qs(r))return CSt(e,i,r),Iy(e,r,n,i);if(typeof r!="symbol"){if(Fs(t)){i=Object.freeze(i.concat(t));for(let s=0;se.replace(/[!,[\]{}]/g,t=>TSt[t]);class Po{constructor(t,n){this.docStart=null,this.docEnd=!1,this.yaml=Object.assign({},Po.defaultYaml,t),this.tags=Object.assign({},Po.defaultTags,n)}clone(){const t=new Po(this.yaml,this.tags);return t.docStart=this.docStart,t}atDocument(){const t=new Po(this.yaml,this.tags);switch(this.yaml.version){case"1.1":this.atNextDocument=!0;break;case"1.2":this.atNextDocument=!1,this.yaml={explicit:Po.defaultYaml.explicit,version:"1.2"},this.tags=Object.assign({},Po.defaultTags);break}return t}add(t,n){this.atNextDocument&&(this.yaml={explicit:Po.defaultYaml.explicit,version:"1.1"},this.tags=Object.assign({},Po.defaultTags),this.atNextDocument=!1);const i=t.trim().split(/[ \t]+/),r=i.shift();switch(r){case"%TAG":{if(i.length!==2&&(n(0,"%TAG directive should contain exactly two parts"),i.length<2))return!1;const[s,a]=i;return this.tags[s]=a,!0}case"%YAML":{if(this.yaml.explicit=!0,i.length!==1)return n(0,"%YAML directive should contain exactly one part"),!1;const[s]=i;if(s==="1.1"||s==="1.2")return this.yaml.version=s,!0;{const a=/^\d+\.\d+$/.test(s);return n(6,`Unsupported YAML version ${s}`,a),!1}}default:return n(0,`Unknown directive ${r}`,!0),!1}}tagName(t,n){if(t==="!")return"!";if(t[0]!=="!")return n(`Not a valid tag: ${t}`),null;if(t[1]==="<"){const a=t.slice(2,-1);return a==="!"||a==="!!"?(n(`Verbatim tags aren't resolved, so ${t} is invalid.`),null):(t[t.length-1]!==">"&&n("Verbatim tags must end with a >"),a)}const[,i,r]=t.match(/^(.*!)([^!]*)$/s);r||n(`The ${t} tag has no suffix`);const s=this.tags[i];if(s)try{return s+decodeURIComponent(r)}catch(a){return n(String(a)),null}return i==="!"?t:(n(`Could not resolve tag: ${t}`),null)}tagString(t){for(const[n,i]of Object.entries(this.tags))if(t.startsWith(i))return n+ASt(t.substring(i.length));return t[0]==="!"?t:`!<${t}>`}toString(t){const n=this.yaml.explicit?[`%YAML ${this.yaml.version||"1.2"}`]:[],i=Object.entries(this.tags);let r;if(t&&i.length>0&&Us(t.contents)){const s={};Zx(t.contents,(a,l)=>{Us(l)&&l.tag&&(s[l.tag]=!0)}),r=Object.keys(s)}else r=[];for(const[s,a]of i)s==="!!"&&a==="tag:yaml.org,2002:"||(!t||r.some(l=>l.startsWith(a)))&&n.push(`%TAG ${s} ${a}`);return n.join(` -`)}}Po.defaultYaml={explicit:!1,version:"1.2"};Po.defaultTags={"!!":"tag:yaml.org,2002:"};function MCe(e){if(/[\x00-\x19\s,[\]{}]/.test(e)){const n=`Anchor must not contain whitespace or control characters: ${JSON.stringify(e)}`;throw new Error(n)}return!0}function LCe(e){const t=new Set;return Zx(e,{Value(n,i){i.anchor&&t.add(i.anchor)}}),t}function $Ce(e,t){for(let n=1;;++n){const i=`${e}${n}`;if(!t.has(i))return i}}function _St(e,t){const n=[],i=new Map;let r=null;return{onAnchor:s=>{n.push(s),r??(r=LCe(e));const a=$Ce(t,r);return r.add(a),a},setAnchors:()=>{for(const s of n){const a=i.get(s);if(typeof a=="object"&&a.anchor&&(Mr(a.node)||Fs(a.node)))a.node.anchor=a.anchor;else{const l=new Error("Failed to resolve repeated object (this should not happen)");throw l.source=s,l}}},sourceObjects:i}}function Py(e,t,n,i){if(i&&typeof i=="object")if(Array.isArray(i))for(let r=0,s=i.length;rtu(i,String(r),n));if(e&&typeof e.toJSON=="function"){if(!n||!DCe(e))return e.toJSON(t,n);const i={aliasCount:0,count:1,res:void 0};n.anchors.set(e,i),n.onCreate=s=>{i.res=s,delete n.onCreate};const r=e.toJSON(t,n);return n.onCreate&&n.onCreate(r),r}return typeof e=="bigint"&&!(n!=null&&n.keep)?Number(e):e}class CU{constructor(t){Object.defineProperty(this,ru,{value:t})}clone(){const t=Object.create(Object.getPrototypeOf(this),Object.getOwnPropertyDescriptors(this));return this.range&&(t.range=this.range.slice()),t}toJS(t,{mapAsMap:n,maxAliasCount:i,onAnchor:r,reviver:s}={}){if(!AE(t))throw new TypeError("A document argument is required");const a={anchors:new Map,doc:t,keep:!0,mapAsMap:n===!0,mapKeyWarned:!1,maxAliasCount:typeof i=="number"?i:100},l=tu(this,"",a);if(typeof r=="function")for(const{count:c,res:u}of a.anchors.values())r(u,c);return typeof s=="function"?Py(s,{"":l},"",l):l}}let TU=class extends CU{constructor(t){super(EU),this.source=t,Object.defineProperty(this,"tag",{set(){throw new Error("Alias nodes cannot have tags")}})}resolve(t,n){if((n==null?void 0:n.maxAliasCount)===0)throw new ReferenceError("Alias resolution is disabled");let i;n!=null&&n.aliasResolveCache?i=n.aliasResolveCache:(i=[],Zx(t,{Node:(s,a)=>{(Yx(a)||DCe(a))&&i.push(a)}}),n&&(n.aliasResolveCache=i));let r;for(const s of i){if(s===this)break;s.anchor===this.source&&(r=s)}return r}toJSON(t,n){if(!n)return{source:this.source};const{anchors:i,doc:r,maxAliasCount:s}=n,a=this.resolve(r,n);if(!a){const c=`Unresolved alias (the anchor must be set before the alias): ${this.source}`;throw new ReferenceError(c)}let l=i.get(a);if(l||(tu(a,null,n),l=i.get(a)),(l==null?void 0:l.res)===void 0){const c="This should not happen: Alias anchor was not resolved?";throw new ReferenceError(c)}if(s>=0&&(l.count+=1,l.aliasCount===0&&(l.aliasCount=kA(r,a,i)),l.count*l.aliasCount>s)){const c="Excessive alias count indicates a resource exhaustion attack";throw new ReferenceError(c)}return l.res}toString(t,n,i){const r=`*${this.source}`;if(t){if(MCe(this.source),t.options.verifyAliasOrder&&!t.anchors.has(this.source)){const s=`Unresolved alias (the anchor must be set before the alias): ${this.source}`;throw new Error(s)}if(t.implicitKey)return`${r} `}return r}};function kA(e,t,n){if(Yx(t)){const i=t.resolve(e),r=n&&i&&n.get(i);return r?r.count*r.aliasCount:0}else if(Fs(t)){let i=0;for(const r of t.items){const s=kA(e,r,n);s>i&&(i=s)}return i}else if(Qs(t)){const i=kA(e,t.key,n),r=kA(e,t.value,n);return Math.max(i,r)}return 1}const FCe=e=>!e||typeof e!="function"&&typeof e!="object";class Wn extends CU{constructor(t){super(zd),this.value=t}toJSON(t,n){return n!=null&&n.keep?this.value:tu(this.value,t,n)}toString(){return String(this.value)}}Wn.BLOCK_FOLDED="BLOCK_FOLDED";Wn.BLOCK_LITERAL="BLOCK_LITERAL";Wn.PLAIN="PLAIN";Wn.QUOTE_DOUBLE="QUOTE_DOUBLE";Wn.QUOTE_SINGLE="QUOTE_SINGLE";const NSt="tag:yaml.org,2002:";function jSt(e,t,n){if(t){const i=n.filter(s=>s.tag===t),r=i.find(s=>!s.format)??i[0];if(!r)throw new Error(`Tag ${t} not found`);return r}return n.find(i=>{var r;return((r=i.identify)==null?void 0:r.call(i,e))&&!i.format})}function GS(e,t,n){var f,h,m;if(AE(e)&&(e=e.contents),Us(e))return e;if(Qs(e)){const g=(h=(f=n.schema[rm]).createNode)==null?void 0:h.call(f,n.schema,null,n);return g.items.push(e),g}(e instanceof String||e instanceof Number||e instanceof Boolean||typeof BigInt<"u"&&e instanceof BigInt)&&(e=e.valueOf());const{aliasDuplicateObjects:i,onAnchor:r,onTagObj:s,schema:a,sourceObjects:l}=n;let c;if(i&&e&&typeof e=="object"){if(c=l.get(e),c)return c.anchor??(c.anchor=r(e)),new TU(c.anchor);c={anchor:null,node:null},l.set(e,c)}t!=null&&t.startsWith("!!")&&(t=NSt+t.slice(2));let u=jSt(e,t,a.tags);if(!u){if(e&&typeof e.toJSON=="function"&&(e=e.toJSON()),!e||typeof e!="object"){const g=new Wn(e);return c&&(c.node=g),g}u=e instanceof Map?a[rm]:Symbol.iterator in Object(e)?a[Xx]:a[rm]}s&&(s(u),delete n.onTagObj);const d=u!=null&&u.createNode?u.createNode(n.schema,e,n):typeof((m=u==null?void 0:u.nodeClass)==null?void 0:m.from)=="function"?u.nodeClass.from(n.schema,e,n):new Wn(e);return t?d.tag=t:u.default||(d.tag=u.tag),c&&(c.node=d),d}function EN(e,t,n){let i=n;for(let r=t.length-1;r>=0;--r){const s=t[r];if(typeof s=="number"&&Number.isInteger(s)&&s>=0){const a=[];a[s]=i,i=a}else i=new Map([[s,i]])}return GS(i,void 0,{aliasDuplicateObjects:!1,keepUndefined:!1,onAnchor:()=>{throw new Error("This should not happen, please report a bug.")},schema:e,sourceObjects:new Map})}const Uw=e=>e==null||typeof e=="object"&&!!e[Symbol.iterator]().next().done;class BCe extends CU{constructor(t,n){super(t),Object.defineProperty(this,"schema",{value:n,configurable:!0,enumerable:!1,writable:!0})}clone(t){const n=Object.create(Object.getPrototypeOf(this),Object.getOwnPropertyDescriptors(this));return t&&(n.schema=t),n.items=n.items.map(i=>Us(i)||Qs(i)?i.clone(t):i),this.range&&(n.range=this.range.slice()),n}addIn(t,n){if(Uw(t))this.add(n);else{const[i,...r]=t,s=this.get(i,!0);if(Fs(s))s.addIn(r,n);else if(s===void 0&&this.schema)this.set(i,EN(this.schema,r,n));else throw new Error(`Expected YAML collection at ${i}. Remaining path: ${r}`)}}deleteIn(t){const[n,...i]=t;if(i.length===0)return this.delete(n);const r=this.get(n,!0);if(Fs(r))return r.deleteIn(i);throw new Error(`Expected YAML collection at ${n}. Remaining path: ${i}`)}getIn(t,n){const[i,...r]=t,s=this.get(i,!0);return r.length===0?!n&&Mr(s)?s.value:s:Fs(s)?s.getIn(r,n):void 0}hasAllNullValues(t){return this.items.every(n=>{if(!Qs(n))return!1;const i=n.value;return i==null||t&&Mr(i)&&i.value==null&&!i.commentBefore&&!i.comment&&!i.tag})}hasIn(t){const[n,...i]=t;if(i.length===0)return this.has(n);const r=this.get(n,!0);return Fs(r)?r.hasIn(i):!1}setIn(t,n){const[i,...r]=t;if(r.length===0)this.set(i,n);else{const s=this.get(i,!0);if(Fs(s))s.setIn(r,n);else if(s===void 0&&this.schema)this.set(i,EN(this.schema,r,n));else throw new Error(`Expected YAML collection at ${i}. Remaining path: ${r}`)}}}const RSt=e=>e.replace(/^(?!$)(?: $)?/gm,"#");function Xf(e,t){return/^\n+$/.test(e)?e.substring(1):t?e.replace(/^(?! *$)/gm,t):e}const Bg=(e,t,n)=>e.endsWith(` -`)?Xf(n,t):n.includes(` +`),f=VCe(d,!t||i,r),{ref:h,onScroll:m}=sCe(f);return o.jsxs("div",{className:"block-thinking",children:[o.jsxs("button",{className:"think-head",onClick:u,type:"button",children:[o.jsx("span",{className:"think-icon","aria-hidden":"true",children:o.jsx(FCe,{className:`thinking-logo ${t?"":"is-active"}`})}),t?o.jsx("span",{className:"think-label think-label--done",children:s("blocks.thinkingDone")}):o.jsx(kn,{className:"think-label",duration:2.4,spread:18,children:s("blocks.thinking")}),o.jsx(Hk,{className:`chev ${a?"open":""}`})]}),o.jsx("div",{className:`think-collapse ${a&&f?"open":""}`,children:o.jsx("div",{className:"think-collapse-inner",children:o.jsx("div",{className:"think-body scroll",ref:h,onScroll:m,children:f})})})]})}function _St({text:e}){return o.jsx("div",{className:"block-progress",role:"status","aria-live":"polite","aria-atomic":"true",children:o.jsxs("div",{className:"think-head progress-head",children:[o.jsx("span",{className:"think-icon","aria-hidden":"true",children:o.jsx(FCe,{className:"thinking-logo is-active"})}),o.jsx(kn,{className:"think-label",duration:2.4,spread:18,children:e})]})})}function NSt({value:e,onResolve:t,onResolveComparison:n,onDownload:i,onDeploy:r}){const{t:s,i18n:a}=Ae("conversation"),[l,c]=p.useState(e.files?e:null),[u,d]=p.useState(!1),[f,h]=p.useState(!1),[m,g]=p.useState(null),[b,v]=p.useState(null),[y,x]=p.useState(""),[O,w]=p.useState(null),k=new Date(e.validatedAt),S=e.validatedAt?Number.isNaN(k.getTime())?e.validatedAt:k.toLocaleString(a.resolvedLanguage??a.language,{hour12:!1}):s("blocks.justNow");p.useEffect(()=>{if(!O)return;const A=window.setTimeout(()=>w(null),wSt);return()=>window.clearTimeout(A)},[O]);async function E(){if(l)return l;if(!t)throw new Error(s("blocks.sourceUnavailable"));const A=await t(e);return c(A),A}async function C(){v("source"),x(""),w(null);try{await E(),d(!0)}catch(A){x(A instanceof Error?A.message:String(A))}finally{v(null)}}async function N(){if(i){v("download"),x(""),w(null);try{await i(e),w({message:s("blocks.downloadStarted")})}catch(A){x(A instanceof Error?A.message:String(A))}finally{v(null)}}}async function T(){if(n){v("compare"),x(""),w(null);try{const A=m??await n(e);g(A),h(!0)}catch(A){x(A instanceof Error?A.message:String(A))}finally{v(null)}}}async function j(){v("deploy"),x(""),w(null);try{r==null||r(await E())}catch(A){x(A instanceof Error?A.message:String(A))}finally{v(null)}}return o.jsxs(o.Fragment,{children:[o.jsxs("section",{className:`delivery-card${e.verified?" is-verified":" is-unverified"}`,"aria-label":e.verified?s("blocks.verifiedDelivery"):s("blocks.generatedSource"),children:[o.jsxs("header",{className:"delivery-card-header",children:[o.jsx("span",{className:"delivery-card-icon",children:e.verified?o.jsx(aSt,{}):o.jsx(sSt,{})}),o.jsxs("div",{children:[o.jsx("strong",{children:e.verified?s("blocks.verifiedDelivery"):s("blocks.generatedSource")}),o.jsx("span",{children:e.agentName})]})]}),o.jsxs("dl",{className:"delivery-card-grid",children:[o.jsxs("div",{children:[o.jsx("dt",{children:s("blocks.entryPoint")}),o.jsx("dd",{children:o.jsx("code",{children:e.entryPoint})})]}),o.jsxs("div",{children:[o.jsx("dt",{children:s("blocks.fileCount")}),o.jsx("dd",{children:e.fileCount})]}),o.jsxs("div",{children:[o.jsx("dt",{children:s("blocks.size")}),o.jsxs("dd",{children:[(e.artifactSize/1024).toFixed(1)," KiB"]})]}),o.jsxs("div",{children:[o.jsx("dt",{children:e.verified?s("blocks.validationTime"):s("blocks.generationTime")}),o.jsx("dd",{children:S})]})]}),o.jsxs("p",{className:"delivery-card-gates",children:[e.verified?s("blocks.checksPassed",{count:e.gateSummary.length}):s("blocks.sourceReady")," ","· ",o.jsx("code",{children:e.artifactSha256.slice(0,12)})]}),e.verified?null:o.jsx("p",{className:"delivery-card-guidance",children:s("blocks.sourceGuidance")}),o.jsxs("div",{className:"delivery-card-actions",children:[o.jsxs("button",{type:"button",className:"delivery-card-secondary",onClick:()=>void C(),disabled:!t||b!==null,children:[b==="source"?o.jsx(gi,{className:"spin","aria-hidden":"true"}):null,s("blocks.viewSource")]}),e.projectId&&e.versionId&&e.parentVersionId?o.jsxs("button",{type:"button",className:"delivery-card-secondary",onClick:()=>void T(),disabled:!n||b!==null,children:[b==="compare"?o.jsx(gi,{className:"spin","aria-hidden":"true"}):null,s(b==="compare"?"blocks.preparing":"blocks.viewChanges")]}):null,o.jsxs("button",{type:"button",className:"delivery-card-secondary",onClick:()=>void N(),disabled:!i||b!==null,"aria-busy":b==="download",children:[b==="download"?o.jsx(gi,{className:"spin","aria-hidden":"true"}):null,s(b==="download"?"blocks.preparing":"blocks.downloadSource")]}),o.jsxs("button",{type:"button",onClick:()=>void j(),disabled:!e.deployable||!r||!t||b!==null,title:e.deployable?void 0:s("blocks.sourceNotReady"),children:[b==="deploy"?o.jsx(gi,{className:"spin","aria-hidden":"true"}):null,s("blocks.manualDeploy")]})]}),y?o.jsx("p",{className:"delivery-card-error",role:"alert",children:y}):null,O?o.jsx("p",{className:"delivery-card-status",role:"status","aria-live":"polite",children:O.message}):null]}),o.jsx(YS,{project:{name:e.agentName,files:(l==null?void 0:l.files)??[]},open:u,onClose:()=>d(!1),onChange:()=>{},readOnly:!0}),o.jsx(YS,{project:{name:(m==null?void 0:m.target.agentName)??e.agentName,files:(m==null?void 0:m.target.files)??[]},comparison:m?{baseProject:{name:m.base.agentName,files:m.base.files??[]},baseLabel:s("blocks.beforeOptimization"),targetLabel:s("blocks.afterOptimization")}:void 0,open:f,onClose:()=>h(!1),onChange:()=>{},readOnly:!0})]})}function qCe(){return o.jsx(HCe,{text:"",done:!1})}const jSt=p.memo(function({text:t,streaming:n,onStreamFrame:i,onStreamComplete:r}){const s=VCe(t,n,i,r);return s?o.jsx("div",{className:"bubble",children:o.jsx(Uu,{text:s,streaming:n})}):null});function RSt({title:e,summary:t,items:n,done:i}){const{t:r}=Ae("conversation"),[s,a]=p.useState(!i),l=p.useRef(!1);p.useEffect(()=>{l.current||a(!i)},[i]);const c=()=>{l.current=!0,a(u=>!u)};return o.jsxs("div",{className:"block-plan",children:[o.jsxs("button",{className:"plan-head",type:"button",onClick:c,"aria-expanded":n.length>0?s:void 0,disabled:n.length===0,children:[o.jsx("span",{className:"plan-icon","aria-hidden":"true",children:o.jsx(ESt,{})}),i?o.jsx("span",{className:"plan-title",children:e}):o.jsx(kn,{className:"plan-title",duration:2.2,spread:15,children:e}),t?o.jsx("span",{className:"plan-summary",children:t}):null,n.length>0?o.jsx(OU,{className:`plan-chevron${s?" is-open":""}`}):null]}),o.jsx("div",{className:`think-collapse ${s&&n.length>0?"open":""}`,children:o.jsx("div",{className:"think-collapse-inner",children:n.length>0?o.jsx("ol",{className:"plan-items",children:n.map((u,d)=>o.jsxs("li",{"data-status":u.status,children:[o.jsx("span",{className:"plan-item-marker","aria-hidden":"true"}),o.jsx("span",{className:"plan-item-text",children:u.text}),o.jsx("small",{children:r(`blocks.planStatuses.${u.status}`)})]},`${d}:${u.text}`))}):null})})]})}function ISt(e){if(!e||typeof e!="object")return[];const t=e,n=t.result;let i=[];if(Array.isArray(t.studio_artifacts))i=t.studio_artifacts;else if(n&&typeof n=="object"){const r=n.studio_artifacts;Array.isArray(r)&&(i=r)}return i.flatMap(r=>{if(!r||typeof r!="object")return[];const s=r;return typeof s.name=="string"&&typeof s.contentUrl=="string"?[{name:s.name,contentUrl:s.contentUrl}]:[]})}function PSt({name:e,args:t,response:n,done:i,status:r,defaultOpen:s=!1,retrying:a=!1,codexActivity:l,onBranchSelect:c,onAction:u}){const{t:d}=Ae("conversation"),h=e==="create_agents"&&i&&Awt(t,n)?"failed":r??(i?"completed":"running"),m=e==="create_agents"&&h==="failed"&&a,g=rSt(e),b=g==null?void 0:g.detailRenderer,v=(g==null?void 0:g.hideHeader)===!0,y=v||s||!!b||!!l,[x,O]=p.useState(y),w=p.useRef(!1);p.useEffect(()=>{!w.current&&y&&O(!0)},[y]);const k=()=>{w.current=!0,O(T=>!T)},S=e===zCe?d("blocks.renderUi"):e,E=ISt(n),C=n==null?null:typeof n=="string"?n:JSON.stringify(n,null,2),N=C&&C.length>2e3?`${C.slice(0,2e3)} +${d("blocks.truncated")}`:C;return o.jsxs(wr.div,{className:`block-tool${g?" block-tool--builtin":""}`,"data-status":h,initial:{opacity:0,y:4},animate:{opacity:1,y:0},transition:{duration:.2,ease:"easeOut"},children:[g&&!v?o.jsx(Owt,{definition:g,label:m?d("blocks.agentAdjusting"):h==="failed"?d(`blocks.tools.${g.name}.failed`,{defaultValue:g.failedLabel??g.doneLabel}):ASt(e,t,d),done:i,open:x,onToggle:k}):g?null:o.jsxs("button",{className:"tool-head tool-head--generic",onClick:k,type:"button","aria-expanded":x,children:[o.jsx("span",{className:"tool-icon tool-icon--generic","aria-hidden":"true",children:o.jsx(kSt,{})}),i?o.jsx("span",{className:"tool-name",children:S}):o.jsx(kn,{className:"tool-name",duration:2.2,spread:15,children:S}),o.jsx(OU,{className:`tool-chevron${x?" is-open":""}`})]}),o.jsx("div",{className:`${v?"":"think-collapse "}${x?"open":""}`,children:o.jsxs("div",{className:"think-collapse-inner",children:[l?o.jsxs("section",{className:"codex-sandbox-run","aria-label":d("blocks.sandboxDetails"),children:[o.jsxs("div",{className:"codex-sandbox-run__label",children:[o.jsxs("span",{className:"codex-sandbox-run__badge",children:[o.jsx(CSt,{}),o.jsx("span",{children:"Codex Sandbox"})]}),o.jsx("span",{className:"codex-sandbox-run__title",children:l.title})]}),o.jsx(TSt,{activity:l}),o.jsx("div",{className:"codex-sandbox-run__stream",children:l.items.length>0?o.jsx(jE,{blocks:l.items.map(T=>T.block),streaming:!i,onAction:u}):o.jsx(kn,{className:"codex-sandbox-run__empty",children:d("blocks.waitingCodex")})})]}):null,b?o.jsx(b,{args:t,response:n,status:h,onBranchSelect:c}):l?null:o.jsxs("div",{className:"tool-detail",children:[t!=null&&o.jsxs("div",{className:"tool-section",children:[o.jsx("div",{className:"tool-section-label",children:d("blocks.arguments")}),o.jsx("pre",{className:"tool-args",children:JSON.stringify(t,null,2)})]}),N!=null&&o.jsxs("div",{className:"tool-section",children:[o.jsx("div",{className:"tool-section-label",children:d("blocks.result")}),o.jsx("pre",{className:"tool-args tool-result",children:N})]}),E.length>0&&o.jsxs("div",{className:"tool-section",children:[o.jsx("div",{className:"tool-section-label",children:d("blocks.artifacts")}),o.jsx("div",{className:"studio-tool-artifacts",children:E.map(T=>o.jsx("a",{href:T.contentUrl,download:T.name,children:d("blocks.downloadNamed",{name:T.name})},`${T.contentUrl}:${T.name}`))})]})]})]})})]})}function DSt({block:e,onDownload:t,onPreview:n}){const{t:i}=Ae("conversation"),[r,s]=p.useState(""),[a,l]=p.useState(""),[c,u]=p.useState(null);p.useEffect(()=>()=>{c&&URL.revokeObjectURL(c.url)},[c]);const d=()=>u(null),f=async(g,b)=>{if(t){s(`download:${g}`),l("");try{await t(g,b)}catch(v){l(v instanceof Error?v.message:String(v))}finally{s("")}}},h=async(g,b,v)=>{if(n){s(`preview:${v}`),l("");try{const y=await n(g,b);u({name:v,url:y})}catch(y){l(y instanceof Error?y.message:String(y))}finally{s("")}}},m=e.files.filter(g=>!g.filename.endsWith(".preview.webp"));return o.jsxs("div",{className:"artifact-list",children:[m.map(g=>{const b=`${g.filename.replace(/\.pptx$/i,"")}.preview.webp`,v=e.files.find(y=>y.filename===b);return o.jsxs("div",{className:"artifact-card",children:[o.jsx("span",{className:"artifact-card__icon","aria-hidden":"true",children:o.jsx(U9,{})}),o.jsxs("span",{className:"artifact-card__copy",children:[o.jsx("span",{className:"artifact-card__name",children:g.filename}),o.jsx("span",{className:"artifact-card__hint",children:i("blocks.powerpoint")})]}),o.jsxs("span",{className:"artifact-card__actions",children:[v&&o.jsxs("button",{className:"artifact-card__action",type:"button",disabled:!n||r!=="",onClick:()=>void h(v.filename,v.version,g.filename),children:[r===`preview:${g.filename}`?o.jsx(gi,{className:"spin"}):o.jsx(R7e,{}),i("blocks.preview")]}),o.jsxs("button",{className:"artifact-card__action artifact-card__action--primary",type:"button",disabled:!t||r!=="",onClick:()=>void f(g.filename,g.version),children:[r===`download:${g.filename}`?o.jsx(gi,{className:"spin"}):o.jsx(iR,{}),i("blocks.download")]})]})]},`${g.filename}:${g.version}`)}),a&&o.jsx("div",{className:"artifact-card__error",children:a}),c&&o.jsxs("div",{className:"artifact-preview",role:"dialog","aria-modal":"true","aria-label":i("blocks.previewDialog",{name:c.name}),children:[o.jsx("button",{className:"artifact-preview__backdrop",type:"button","aria-label":i("blocks.closePreview"),onClick:d}),o.jsxs("div",{className:"artifact-preview__panel",children:[o.jsxs("div",{className:"artifact-preview__header",children:[o.jsx("span",{children:c.name}),o.jsx("button",{type:"button","aria-label":i("blocks.closePreview"),onClick:d,children:o.jsx($a,{})})]}),o.jsx("div",{className:"artifact-preview__canvas",children:o.jsx("img",{src:c.url,alt:i("blocks.slidePreview",{name:c.name})})})]})]})]})}function MSt({block:e,onAuth:t}){const{t:n}=Ae("conversation"),[i,r]=p.useState(e.done?"done":"idle"),[s,a]=p.useState(""),l=e.label||n("blocks.mcpToolset"),c=(()=>{try{return e.authUri?new URL(e.authUri).host:""}catch{return""}})(),u=async()=>{if(t){a(""),r("authorizing");try{await t(e),r("done")}catch(f){a(f instanceof Error?f.message:String(f)),r("idle")}}};return e.done||i==="done"?o.jsxs(wr.div,{className:"auth-card-collapsed",initial:{opacity:0},animate:{opacity:1},transition:{duration:.2},children:[o.jsx(NW,{className:"auth-card-icon auth-card-icon--done"}),o.jsx("span",{children:n("blocks.authorized",{tool:l})})]}):o.jsxs(wr.div,{className:"auth-card",initial:{opacity:0,y:6},animate:{opacity:1,y:0},transition:{duration:.2,ease:"easeOut"},children:[o.jsxs("div",{className:"auth-card-head",children:[o.jsx(NW,{className:"auth-card-icon"}),o.jsx("span",{className:"auth-card-title",children:n("blocks.authorizationRequired",{tool:l})})]}),o.jsxs("p",{className:"auth-card-desc",children:[o.jsx(e_,{t:n,i18nKey:"blocks.oauthDescription",values:{tool:l},components:{code:o.jsx("code",{className:"auth-card-code"})}}),c&&o.jsxs(o.Fragment,{children:[" ",o.jsx(e_,{t:n,i18nKey:"blocks.oauthProvider",values:{provider:c},components:{code:o.jsx("code",{className:"auth-card-code"})}})," "]}),n("blocks.oauthContinue")]}),o.jsx("button",{className:"auth-card-btn",onClick:u,disabled:i==="authorizing"||!e.authUri,children:i==="authorizing"?o.jsxs(o.Fragment,{children:[o.jsx(gi,{className:"cw-i spin"})," ",n("blocks.waitingAuthorization")]}):o.jsx(o.Fragment,{children:n("blocks.authorize")})}),!e.authUri&&o.jsx("div",{className:"auth-card-err",children:n("blocks.missingAuthorizationUrl")}),s&&o.jsx("div",{className:"auth-card-err",children:s})]})}function jE({blocks:e,appName:t="",streaming:n=!1,onStreamFrame:i,onStreamComplete:r,onAction:s,onAuth:a,onArtifactDownload:l,onArtifactPreview:c,onResolveDelivery:u,onResolveDeliveryComparison:d,onDownloadDelivery:f,onDeployDelivery:h,onBranchSelect:m}){const g=e.reduce((b,v,y)=>v.kind==="text"?y:b,-1);return o.jsx(o.Fragment,{children:e.map((b,v)=>{switch(b.kind){case"progress":return o.jsx(_St,{text:b.text},"build-progress");case"thinking":{const y=e.slice(v+1).some(x=>x.kind==="text"&&!!x.text.trim());return o.jsx(HCe,{text:b.text,done:b.done,answerStarted:y,streaming:n,onStreamFrame:i},v)}case"text":{const y=b.text.replace(/^\s+/,"");return y?o.jsx(jSt,{text:y,streaming:n,onStreamFrame:i,onStreamComplete:v===g?r:void 0},v):null}case"plan":return o.jsx(RSt,{title:b.title,summary:b.summary,items:b.items,done:b.done},v);case"attachment":return o.jsx(hI,{appName:t,items:b.files},v);case"artifact":return o.jsx(DSt,{block:b,onDownload:l,onPreview:c},v);case"delivery":return o.jsx(NSt,{value:b.value,onResolve:u,onResolveComparison:d,onDownload:f,onDeploy:h},v);case"invocation":return o.jsx(fI,{value:b.value},v);case"tool":{if(b.name===zCe&&b.done)return null;const y=b.name==="create_agents"&&e.slice(v+1).some(x=>x.kind==="tool"&&x.name==="create_agents");return o.jsx(PSt,{name:b.name,args:b.args,response:b.response,done:b.done,status:b.status,defaultOpen:b.defaultOpen,retrying:b.name==="create_agents"&&(n||y),codexActivity:b.codexActivity,onBranchSelect:m,onAction:s},v)}case"agent-transfer":return null;case"auth":return o.jsx(MSt,{block:b,onAuth:a},v);case"a2ui":return rCe(b.messages).filter(y=>y.components[y.rootId]).map(y=>o.jsx(wr.div,{initial:{opacity:0,y:8,scale:.985},animate:{opacity:1,y:0,scale:1},transition:{type:"spring",stiffness:380,damping:30},children:o.jsx(uwt,{surface:y,onAction:s})},`${v}-${y.surfaceId}`));default:return null}})})}const LSt=()=>{};function $St(e){if(e.kind==="message")return{kind:"text",text:e.text};if(e.kind==="thinking")return{kind:"thinking",text:e.text,done:e.status==="done"};if(e.kind==="tool")return{kind:"tool",name:e.name,args:e.args,response:e.response,done:e.status==="done"};throw new Error(zt("conversation.unsupportedActivity"))}function FSt({activities:e}){const{t}=Ae("skills"),n=p.useMemo(()=>e.filter(i=>i.kind!=="status").map($St),[e]);return n.length===0?null:o.jsx("div",{className:"skill-conversation","aria-label":t("conversation.ariaLabel"),"aria-live":"polite",children:o.jsx(jE,{blocks:n,onAction:LSt})})}function sZ(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m7 9 5 5 5-5",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round"})})}function A2({label:e,value:t,options:n,onChange:i,disabled:r=!1,allowCustom:s=!1,required:a=!1,placeholder:l,error:c}){const{t:u}=Ae("skills"),d=l??u("configSelect.placeholder"),f=p.useId(),h=p.useId(),m=p.useId(),g=p.useRef(null),b=p.useRef(null),v=p.useRef(null),y=p.useRef(null),x=p.useRef([]),O=n.findIndex(P=>P.value===t),w=t.trim().toLocaleLowerCase(),k=s&&w?n.filter(P=>P.value.toLocaleLowerCase().includes(w)||P.label.toLocaleLowerCase().includes(w)):n,[S,E]=p.useState(!1),[C,N]=p.useState(Math.max(0,O)),T=O>=0?n[O]:void 0,j=r||!s&&n.length===0,A=(P=!1)=>{E(!1),P&&window.requestAnimationFrame(()=>{var I,$;return s?(I=v.current)==null?void 0:I.focus():($=b.current)==null?void 0:$.focus()})},L=P=>{j||k.length!==0&&(N(Math.min(Math.max(P,0),k.length-1)),E(!0))};p.useEffect(()=>{if(!S)return;const P=y.current,I=s?void 0:window.requestAnimationFrame(()=>{var R;(R=x.current[C])==null||R.focus()}),$=R=>{if(!P)return;const V=P.scrollTop<=0,K=P.scrollTop+P.clientHeight>=P.scrollHeight-1;(P.scrollHeight<=P.clientHeight||R.deltaY<0&&V||R.deltaY>0&&K)&&R.preventDefault(),R.stopPropagation()},M=R=>{var V;R.target instanceof Node&&!((V=g.current)!=null&&V.contains(R.target))&&A()},B=R=>{R.key==="Escape"&&A(!0)};return P==null||P.addEventListener("wheel",$,{passive:!1}),window.addEventListener("pointerdown",M),window.addEventListener("keydown",B),()=>{I!==void 0&&window.cancelAnimationFrame(I),P==null||P.removeEventListener("wheel",$),window.removeEventListener("pointerdown",M),window.removeEventListener("keydown",B)}},[C,s,S]);const _=P=>{var $;if(k.length===0)return;const I=(P+k.length)%k.length;N(I),($=x.current[I])==null||$.focus()};return o.jsxs("div",{ref:g,className:`skill-config-select${S?" is-open":""}`,onBlur:P=>{var I;(!P.relatedTarget||!((I=g.current)!=null&&I.contains(P.relatedTarget)))&&A()},children:[o.jsxs("span",{id:h,className:"skill-config-select__label",children:[e,a?o.jsx("span",{className:"skill-required-mark","aria-hidden":"true",children:"*"}):null]}),s?o.jsxs("div",{className:`skill-config-select__trigger is-editable${r?" is-disabled":""}`,"aria-expanded":S,children:[o.jsx("input",{ref:v,value:t,disabled:r,role:"combobox","aria-autocomplete":"list","aria-expanded":S,"aria-controls":S?f:void 0,"aria-labelledby":h,"aria-required":a,"aria-invalid":!!c,"aria-describedby":c?m:void 0,placeholder:d,onChange:P=>{i(P.target.value),N(0),n.length>0&&E(!0)},onClick:()=>{!S&&k.length>0&&L(0)},onKeyDown:P=>{var I,$;if(!(P.nativeEvent.isComposing||P.keyCode===229))if(P.key==="ArrowDown")P.preventDefault(),S?(I=x.current[C])==null||I.focus():L(0);else if(P.key==="ArrowUp")P.preventDefault(),S?($=x.current[k.length-1])==null||$.focus():L(k.length-1);else if(P.key==="Enter"&&S){P.preventDefault();const M=k[C];M&&i(M.value),A()}else P.key==="Escape"&&(P.preventDefault(),A())}}),o.jsx("button",{type:"button",className:"skill-config-select__toggle",disabled:r||n.length===0,"aria-label":u(S?"configSelect.collapseOptions":"configSelect.expandOptions"),onClick:()=>{S?A():L(0)},children:o.jsx(sZ,{})})]}):o.jsxs("button",{ref:b,type:"button",className:"skill-config-select__trigger",disabled:j,"aria-haspopup":"listbox","aria-expanded":S,"aria-controls":S?f:void 0,"aria-labelledby":h,"aria-required":a,onClick:()=>{S?A():L(O>=0?O:0)},onKeyDown:P=>{P.key==="ArrowDown"?(P.preventDefault(),L(O>=0?O:0)):P.key==="ArrowUp"&&(P.preventDefault(),L(O>=0?O:n.length-1))},children:[o.jsx("span",{className:T?void 0:"is-placeholder",title:T==null?void 0:T.label,children:(T==null?void 0:T.label)||(n.length===0?u("configSelect.noOptions"):d)}),o.jsx(sZ,{})]}),S?o.jsxs("div",{ref:y,id:f,className:"skill-config-select__menu",role:"listbox","aria-labelledby":h,children:[k.length===0?o.jsx("div",{className:"skill-config-select__empty",role:"status",children:u("configSelect.noMatches")}):null,k.map((P,I)=>{const $=P.value===t;return o.jsx("button",{ref:M=>{x.current[I]=M},type:"button",role:"option","aria-selected":$,tabIndex:I===C?0:-1,className:`skill-config-select__option${$?" is-selected":""}`,title:P.label,onFocus:()=>N(I),onClick:()=>{i(P.value),A(!0)},onKeyDown:M=>{M.key==="Enter"||M.key===" "?(M.preventDefault(),i(P.value),A(!0)):M.key==="ArrowDown"?(M.preventDefault(),_(I+1)):M.key==="ArrowUp"?(M.preventDefault(),_(I-1)):M.key==="Home"?(M.preventDefault(),_(0)):M.key==="End"&&(M.preventDefault(),_(n.length-1))},children:P.label},P.value)})]}):null,c?o.jsx("span",{id:m,className:"skill-config-select__error",role:"alert",children:c}):null]})}function _a(e,t){return e instanceof Error?e:typeof e=="string"&&e.trim()?new Error(e.trim()):new Error(t)}function dl({error:e}){var s,a,l,c,u;const{t}=Ae("skills"),n=e,i=(a=(s=n.originalError)==null?void 0:s.message)==null?void 0:a.trim(),r=[typeof n.status=="number"?`HTTP ${n.status}${n.statusText?` ${n.statusText}`:""}`:"",n.code?t("errorDetails.code",{code:n.code}):"",(l=n.originalError)!=null&&l.type?t("errorDetails.type",{type:n.originalError.type}):"",(c=n.originalError)!=null&&c.repr&&n.originalError.repr!==i?t("errorDetails.representation",{value:n.originalError.repr}):"",(u=n.rawResponse)!=null&&u.trim()?t("errorDetails.rawResponse",{value:n.rawResponse.trim()}):""].filter(Boolean);return o.jsxs("div",{className:"skill-error-details",children:[o.jsx("div",{className:"skill-error-details__summary",children:e.message}),i?o.jsx("div",{className:"skill-error-details__original",children:t("errorDetails.original",{message:i})}):null,r.length>0?o.jsxs("details",{children:[o.jsx("summary",{children:t("errorDetails.details")}),o.jsx("pre",{children:r.join(` +`)})]}):null]})}const NU=Symbol.for("yaml.alias"),c$=Symbol.for("yaml.document"),lm=Symbol.for("yaml.map"),WCe=Symbol.for("yaml.pair"),Hd=Symbol.for("yaml.scalar"),t1=Symbol.for("yaml.seq"),su=Symbol.for("yaml.node.type"),n1=e=>!!e&&typeof e=="object"&&e[su]===NU,RE=e=>!!e&&typeof e=="object"&&e[su]===c$,IE=e=>!!e&&typeof e=="object"&&e[su]===lm,Vs=e=>!!e&&typeof e=="object"&&e[su]===WCe,Qr=e=>!!e&&typeof e=="object"&&e[su]===Hd,PE=e=>!!e&&typeof e=="object"&&e[su]===t1;function Us(e){if(e&&typeof e=="object")switch(e[su]){case lm:case t1:return!0}return!1}function zs(e){if(e&&typeof e=="object")switch(e[su]){case NU:case lm:case Hd:case t1:return!0}return!1}const KCe=e=>(Qr(e)||Us(e))&&!!e.anchor,Ag=Symbol("break visit"),BSt=Symbol("skip children"),FO=Symbol("remove node");function i1(e,t){const n=USt(t);RE(e)?$y(null,e.contents,n,Object.freeze([e]))===FO&&(e.contents=null):$y(null,e,n,Object.freeze([]))}i1.BREAK=Ag;i1.SKIP=BSt;i1.REMOVE=FO;function $y(e,t,n,i){const r=QSt(e,t,n,i);if(zs(r)||Vs(r))return zSt(e,i,r),$y(e,r,n,i);if(typeof r!="symbol"){if(Us(t)){i=Object.freeze(i.concat(t));for(let s=0;se.replace(/[!,[\]{}]/g,t=>VSt[t]);class $o{constructor(t,n){this.docStart=null,this.docEnd=!1,this.yaml=Object.assign({},$o.defaultYaml,t),this.tags=Object.assign({},$o.defaultTags,n)}clone(){const t=new $o(this.yaml,this.tags);return t.docStart=this.docStart,t}atDocument(){const t=new $o(this.yaml,this.tags);switch(this.yaml.version){case"1.1":this.atNextDocument=!0;break;case"1.2":this.atNextDocument=!1,this.yaml={explicit:$o.defaultYaml.explicit,version:"1.2"},this.tags=Object.assign({},$o.defaultTags);break}return t}add(t,n){this.atNextDocument&&(this.yaml={explicit:$o.defaultYaml.explicit,version:"1.1"},this.tags=Object.assign({},$o.defaultTags),this.atNextDocument=!1);const i=t.trim().split(/[ \t]+/),r=i.shift();switch(r){case"%TAG":{if(i.length!==2&&(n(0,"%TAG directive should contain exactly two parts"),i.length<2))return!1;const[s,a]=i;return this.tags[s]=a,!0}case"%YAML":{if(this.yaml.explicit=!0,i.length!==1)return n(0,"%YAML directive should contain exactly one part"),!1;const[s]=i;if(s==="1.1"||s==="1.2")return this.yaml.version=s,!0;{const a=/^\d+\.\d+$/.test(s);return n(6,`Unsupported YAML version ${s}`,a),!1}}default:return n(0,`Unknown directive ${r}`,!0),!1}}tagName(t,n){if(t==="!")return"!";if(t[0]!=="!")return n(`Not a valid tag: ${t}`),null;if(t[1]==="<"){const a=t.slice(2,-1);return a==="!"||a==="!!"?(n(`Verbatim tags aren't resolved, so ${t} is invalid.`),null):(t[t.length-1]!==">"&&n("Verbatim tags must end with a >"),a)}const[,i,r]=t.match(/^(.*!)([^!]*)$/s);r||n(`The ${t} tag has no suffix`);const s=this.tags[i];if(s)try{return s+decodeURIComponent(r)}catch(a){return n(String(a)),null}return i==="!"?t:(n(`Could not resolve tag: ${t}`),null)}tagString(t){for(const[n,i]of Object.entries(this.tags))if(t.startsWith(i))return n+HSt(t.substring(i.length));return t[0]==="!"?t:`!<${t}>`}toString(t){const n=this.yaml.explicit?[`%YAML ${this.yaml.version||"1.2"}`]:[],i=Object.entries(this.tags);let r;if(t&&i.length>0&&zs(t.contents)){const s={};i1(t.contents,(a,l)=>{zs(l)&&l.tag&&(s[l.tag]=!0)}),r=Object.keys(s)}else r=[];for(const[s,a]of i)s==="!!"&&a==="tag:yaml.org,2002:"||(!t||r.some(l=>l.startsWith(a)))&&n.push(`%TAG ${s} ${a}`);return n.join(` +`)}}$o.defaultYaml={explicit:!1,version:"1.2"};$o.defaultTags={"!!":"tag:yaml.org,2002:"};function GCe(e){if(/[\x00-\x19\s,[\]{}]/.test(e)){const n=`Anchor must not contain whitespace or control characters: ${JSON.stringify(e)}`;throw new Error(n)}return!0}function XCe(e){const t=new Set;return i1(e,{Value(n,i){i.anchor&&t.add(i.anchor)}}),t}function YCe(e,t){for(let n=1;;++n){const i=`${e}${n}`;if(!t.has(i))return i}}function qSt(e,t){const n=[],i=new Map;let r=null;return{onAnchor:s=>{n.push(s),r??(r=XCe(e));const a=YCe(t,r);return r.add(a),a},setAnchors:()=>{for(const s of n){const a=i.get(s);if(typeof a=="object"&&a.anchor&&(Qr(a.node)||Us(a.node)))a.node.anchor=a.anchor;else{const l=new Error("Failed to resolve repeated object (this should not happen)");throw l.source=s,l}}},sourceObjects:i}}function Fy(e,t,n,i){if(i&&typeof i=="object")if(Array.isArray(i))for(let r=0,s=i.length;rnu(i,String(r),n));if(e&&typeof e.toJSON=="function"){if(!n||!KCe(e))return e.toJSON(t,n);const i={aliasCount:0,count:1,res:void 0};n.anchors.set(e,i),n.onCreate=s=>{i.res=s,delete n.onCreate};const r=e.toJSON(t,n);return n.onCreate&&n.onCreate(r),r}return typeof e=="bigint"&&!(n!=null&&n.keep)?Number(e):e}class jU{constructor(t){Object.defineProperty(this,su,{value:t})}clone(){const t=Object.create(Object.getPrototypeOf(this),Object.getOwnPropertyDescriptors(this));return this.range&&(t.range=this.range.slice()),t}toJS(t,{mapAsMap:n,maxAliasCount:i,onAnchor:r,reviver:s}={}){if(!RE(t))throw new TypeError("A document argument is required");const a={anchors:new Map,doc:t,keep:!0,mapAsMap:n===!0,mapKeyWarned:!1,maxAliasCount:typeof i=="number"?i:100},l=nu(this,"",a);if(typeof r=="function")for(const{count:c,res:u}of a.anchors.values())r(u,c);return typeof s=="function"?Fy(s,{"":l},"",l):l}}let RU=class extends jU{constructor(t){super(NU),this.source=t,Object.defineProperty(this,"tag",{set(){throw new Error("Alias nodes cannot have tags")}})}resolve(t,n){if((n==null?void 0:n.maxAliasCount)===0)throw new ReferenceError("Alias resolution is disabled");let i;n!=null&&n.aliasResolveCache?i=n.aliasResolveCache:(i=[],i1(t,{Node:(s,a)=>{(n1(a)||KCe(a))&&i.push(a)}}),n&&(n.aliasResolveCache=i));let r;for(const s of i){if(s===this)break;s.anchor===this.source&&(r=s)}return r}toJSON(t,n){if(!n)return{source:this.source};const{anchors:i,doc:r,maxAliasCount:s}=n,a=this.resolve(r,n);if(!a){const c=`Unresolved alias (the anchor must be set before the alias): ${this.source}`;throw new ReferenceError(c)}let l=i.get(a);if(l||(nu(a,null,n),l=i.get(a)),(l==null?void 0:l.res)===void 0){const c="This should not happen: Alias anchor was not resolved?";throw new ReferenceError(c)}if(s>=0&&(l.count+=1,l.aliasCount===0&&(l.aliasCount=_2(r,a,i)),l.count*l.aliasCount>s)){const c="Excessive alias count indicates a resource exhaustion attack";throw new ReferenceError(c)}return l.res}toString(t,n,i){const r=`*${this.source}`;if(t){if(GCe(this.source),t.options.verifyAliasOrder&&!t.anchors.has(this.source)){const s=`Unresolved alias (the anchor must be set before the alias): ${this.source}`;throw new Error(s)}if(t.implicitKey)return`${r} `}return r}};function _2(e,t,n){if(n1(t)){const i=t.resolve(e),r=n&&i&&n.get(i);return r?r.count*r.aliasCount:0}else if(Us(t)){let i=0;for(const r of t.items){const s=_2(e,r,n);s>i&&(i=s)}return i}else if(Vs(t)){const i=_2(e,t.key,n),r=_2(e,t.value,n);return Math.max(i,r)}return 1}const ZCe=e=>!e||typeof e!="function"&&typeof e!="object";class Zn extends jU{constructor(t){super(Hd),this.value=t}toJSON(t,n){return n!=null&&n.keep?this.value:nu(this.value,t,n)}toString(){return String(this.value)}}Zn.BLOCK_FOLDED="BLOCK_FOLDED";Zn.BLOCK_LITERAL="BLOCK_LITERAL";Zn.PLAIN="PLAIN";Zn.QUOTE_DOUBLE="QUOTE_DOUBLE";Zn.QUOTE_SINGLE="QUOTE_SINGLE";const WSt="tag:yaml.org,2002:";function KSt(e,t,n){if(t){const i=n.filter(s=>s.tag===t),r=i.find(s=>!s.format)??i[0];if(!r)throw new Error(`Tag ${t} not found`);return r}return n.find(i=>{var r;return((r=i.identify)==null?void 0:r.call(i,e))&&!i.format})}function ZS(e,t,n){var f,h,m;if(RE(e)&&(e=e.contents),zs(e))return e;if(Vs(e)){const g=(h=(f=n.schema[lm]).createNode)==null?void 0:h.call(f,n.schema,null,n);return g.items.push(e),g}(e instanceof String||e instanceof Number||e instanceof Boolean||typeof BigInt<"u"&&e instanceof BigInt)&&(e=e.valueOf());const{aliasDuplicateObjects:i,onAnchor:r,onTagObj:s,schema:a,sourceObjects:l}=n;let c;if(i&&e&&typeof e=="object"){if(c=l.get(e),c)return c.anchor??(c.anchor=r(e)),new RU(c.anchor);c={anchor:null,node:null},l.set(e,c)}t!=null&&t.startsWith("!!")&&(t=WSt+t.slice(2));let u=KSt(e,t,a.tags);if(!u){if(e&&typeof e.toJSON=="function"&&(e=e.toJSON()),!e||typeof e!="object"){const g=new Zn(e);return c&&(c.node=g),g}u=e instanceof Map?a[lm]:Symbol.iterator in Object(e)?a[t1]:a[lm]}s&&(s(u),delete n.onTagObj);const d=u!=null&&u.createNode?u.createNode(n.schema,e,n):typeof((m=u==null?void 0:u.nodeClass)==null?void 0:m.from)=="function"?u.nodeClass.from(n.schema,e,n):new Zn(e);return t?d.tag=t:u.default||(d.tag=u.tag),c&&(c.node=d),d}function NN(e,t,n){let i=n;for(let r=t.length-1;r>=0;--r){const s=t[r];if(typeof s=="number"&&Number.isInteger(s)&&s>=0){const a=[];a[s]=i,i=a}else i=new Map([[s,i]])}return ZS(i,void 0,{aliasDuplicateObjects:!1,keepUndefined:!1,onAnchor:()=>{throw new Error("This should not happen, please report a bug.")},schema:e,sourceObjects:new Map})}const Hw=e=>e==null||typeof e=="object"&&!!e[Symbol.iterator]().next().done;class JCe extends jU{constructor(t,n){super(t),Object.defineProperty(this,"schema",{value:n,configurable:!0,enumerable:!1,writable:!0})}clone(t){const n=Object.create(Object.getPrototypeOf(this),Object.getOwnPropertyDescriptors(this));return t&&(n.schema=t),n.items=n.items.map(i=>zs(i)||Vs(i)?i.clone(t):i),this.range&&(n.range=this.range.slice()),n}addIn(t,n){if(Hw(t))this.add(n);else{const[i,...r]=t,s=this.get(i,!0);if(Us(s))s.addIn(r,n);else if(s===void 0&&this.schema)this.set(i,NN(this.schema,r,n));else throw new Error(`Expected YAML collection at ${i}. Remaining path: ${r}`)}}deleteIn(t){const[n,...i]=t;if(i.length===0)return this.delete(n);const r=this.get(n,!0);if(Us(r))return r.deleteIn(i);throw new Error(`Expected YAML collection at ${n}. Remaining path: ${i}`)}getIn(t,n){const[i,...r]=t,s=this.get(i,!0);return r.length===0?!n&&Qr(s)?s.value:s:Us(s)?s.getIn(r,n):void 0}hasAllNullValues(t){return this.items.every(n=>{if(!Vs(n))return!1;const i=n.value;return i==null||t&&Qr(i)&&i.value==null&&!i.commentBefore&&!i.comment&&!i.tag})}hasIn(t){const[n,...i]=t;if(i.length===0)return this.has(n);const r=this.get(n,!0);return Us(r)?r.hasIn(i):!1}setIn(t,n){const[i,...r]=t;if(r.length===0)this.set(i,n);else{const s=this.get(i,!0);if(Us(s))s.setIn(r,n);else if(s===void 0&&this.schema)this.set(i,NN(this.schema,r,n));else throw new Error(`Expected YAML collection at ${i}. Remaining path: ${r}`)}}}const GSt=e=>e.replace(/^(?!$)(?: $)?/gm,"#");function Gf(e,t){return/^\n+$/.test(e)?e.substring(1):t?e.replace(/^(?! *$)/gm,t):e}const Hg=(e,t,n)=>e.endsWith(` +`)?Gf(n,t):n.includes(` `)?` -`+Xf(n,t):(e.endsWith(" ")?"":" ")+n,UCe="flow",s$="block",EA="quoted";function uI(e,t,n="flow",{indentAtStart:i,lineWidth:r=80,minContentWidth:s=20,onFold:a,onOverflow:l}={}){if(!r||r<0)return e;rr-Math.max(2,s)?u.push(0):f=r-i);let h,m,g=!1,b=-1,v=-1,y=-1;n===s$&&(b=YY(e,b,t.length),b!==-1&&(f=b+c));for(let O;O=e[b+=1];){if(n===EA&&O==="\\"){switch(v=b,e[b+1]){case"x":b+=3;break;case"u":b+=5;break;case"U":b+=9;break;default:b+=1}y=b}if(O===` -`)n===s$&&(b=YY(e,b,t.length)),f=b+t.length+c,h=void 0;else{if(O===" "&&m&&m!==" "&&m!==` +`+Gf(n,t):(e.endsWith(" ")?"":" ")+n,eTe="flow",u$="block",N2="quoted";function gI(e,t,n="flow",{indentAtStart:i,lineWidth:r=80,minContentWidth:s=20,onFold:a,onOverflow:l}={}){if(!r||r<0)return e;rr-Math.max(2,s)?u.push(0):f=r-i);let h,m,g=!1,b=-1,v=-1,y=-1;n===u$&&(b=aZ(e,b,t.length),b!==-1&&(f=b+c));for(let O;O=e[b+=1];){if(n===N2&&O==="\\"){switch(v=b,e[b+1]){case"x":b+=3;break;case"u":b+=5;break;case"U":b+=9;break;default:b+=1}y=b}if(O===` +`)n===u$&&(b=aZ(e,b,t.length)),f=b+t.length+c,h=void 0;else{if(O===" "&&m&&m!==" "&&m!==` `&&m!==" "){const w=e[b+1];w&&w!==" "&&w!==` -`&&w!==" "&&(h=b)}if(b>=f)if(h)u.push(h),f=h+c,h=void 0;else if(n===EA){for(;m===" "||m===" ";)m=O,O=e[b+=1],g=!0;const w=b>y+1?b-2:v-1;if(d[w])return e;u.push(w),d[w]=!0,f=w+c,h=void 0}else g=!0}m=O}if(g&&l&&l(),u.length===0)return e;a&&a();let x=e.slice(0,u[0]);for(let O=0;O({indentAtStart:t?e.indent.length:e.indentAtStart,lineWidth:e.options.lineWidth,minContentWidth:e.options.minContentWidth}),fI=e=>/^(%|---|\.\.\.)/m.test(e);function ISt(e,t,n){if(!t||t<0)return!1;const i=t-n,r=e.length;if(r<=i)return!1;for(let s=0,a=0;si)return!0;if(a=s+1,r-a<=i)return!1}return!0}function MO(e,t){const n=JSON.stringify(e);if(t.options.doubleQuotedAsJSON)return n;const{implicitKey:i}=t,r=t.options.doubleQuotedMinMultiLineLength,s=t.indent||(fI(e)?" ":"");let a="",l=0;for(let c=0,u=n[c];u;u=n[++c])if(u===" "&&n[c+1]==="\\"&&n[c+2]==="n"&&(a+=n.slice(l,c)+"\\ ",c+=1,l=c,u="\\"),u==="\\")switch(n[c+1]){case"u":{a+=n.slice(l,c);const d=n.substr(c+2,4);switch(d){case"0000":a+="\\0";break;case"0007":a+="\\a";break;case"000b":a+="\\v";break;case"001b":a+="\\e";break;case"0085":a+="\\N";break;case"00a0":a+="\\_";break;case"2028":a+="\\L";break;case"2029":a+="\\P";break;default:d.substr(0,2)==="00"?a+="\\x"+d.substr(2):a+=n.substr(c,6)}c+=5,l=c+1}break;case"n":if(i||n[c+2]==='"'||n.length=f)if(h)u.push(h),f=h+c,h=void 0;else if(n===N2){for(;m===" "||m===" ";)m=O,O=e[b+=1],g=!0;const w=b>y+1?b-2:v-1;if(d[w])return e;u.push(w),d[w]=!0,f=w+c,h=void 0}else g=!0}m=O}if(g&&l&&l(),u.length===0)return e;a&&a();let x=e.slice(0,u[0]);for(let O=0;O({indentAtStart:t?e.indent.length:e.indentAtStart,lineWidth:e.options.lineWidth,minContentWidth:e.options.minContentWidth}),yI=e=>/^(%|---|\.\.\.)/m.test(e);function XSt(e,t,n){if(!t||t<0)return!1;const i=t-n,r=e.length;if(r<=i)return!1;for(let s=0,a=0;si)return!0;if(a=s+1,r-a<=i)return!1}return!0}function BO(e,t){const n=JSON.stringify(e);if(t.options.doubleQuotedAsJSON)return n;const{implicitKey:i}=t,r=t.options.doubleQuotedMinMultiLineLength,s=t.indent||(yI(e)?" ":"");let a="",l=0;for(let c=0,u=n[c];u;u=n[++c])if(u===" "&&n[c+1]==="\\"&&n[c+2]==="n"&&(a+=n.slice(l,c)+"\\ ",c+=1,l=c,u="\\"),u==="\\")switch(n[c+1]){case"u":{a+=n.slice(l,c);const d=n.substr(c+2,4);switch(d){case"0000":a+="\\0";break;case"0007":a+="\\a";break;case"000b":a+="\\v";break;case"001b":a+="\\e";break;case"0085":a+="\\N";break;case"00a0":a+="\\_";break;case"2028":a+="\\L";break;case"2029":a+="\\P";break;default:d.substr(0,2)==="00"?a+="\\x"+d.substr(2):a+=n.substr(c,6)}c+=5,l=c+1}break;case"n":if(i||n[c+2]==='"'||n.length `;let f,h;for(h=n.length;h>0;--h){const k=n[h-1];if(k!==` `&&k!==" "&&k!==" ")break}let m=n.substring(h);const g=m.indexOf(` `);g===-1?f="-":n===m||g!==m.length-1?(f="+",s&&s()):f="",m&&(n=n.slice(0,-m.length),m[m.length-1]===` -`&&(m=m.slice(0,-1)),m=m.replace(o$,`$&${u}`));let b=!1,v,y=-1;for(v=0;v{S=!0});const C=uI(`${x}${k}${m}`,u,s$,E);if(!S)return`>${w} +$&`).replace(/(?:^|\n)([\t ].*)(?:([\n\t ]*)\n(?![\n\t ]))?/g,"$1$2").replace(/\n+/g,`$&${u}`);let S=!1;const E=bI(i,!0);a!=="folded"&&t!==Zn.BLOCK_FOLDED&&(E.onOverflow=()=>{S=!0});const C=gI(`${x}${k}${m}`,u,u$,E);if(!S)return`>${w} ${u}${C}`}return n=n.replace(/\n+/g,`$&${u}`),`|${w} -${u}${x}${n}${m}`}function PSt(e,t,n,i){const{type:r,value:s}=e,{actualString:a,implicitKey:l,indent:c,indentStep:u,inFlow:d}=t;if(l&&s.includes(` -`)||d&&/[[\]{},]/.test(s))return Dy(s,t);if(/^[\n\t ,[\]{}#&*!|>'"%@`]|^[?-]$|^[?-][ \t]|[\n:][ \t]|[ \t]\n|[\n\t ]#|[\n\t :]$/.test(s))return l||d||!s.includes(` -`)?Dy(s,t):CA(e,t,n,i);if(!l&&!d&&r!==Wn.PLAIN&&s.includes(` -`))return CA(e,t,n,i);if(fI(s)){if(c==="")return t.forceBlockIndent=!0,CA(e,t,n,i);if(l&&c===u)return Dy(s,t)}const f=s.replace(/\n+/g,`$& -${c}`);if(a){const h=b=>{var v;return b.default&&b.tag!=="tag:yaml.org,2002:str"&&((v=b.test)==null?void 0:v.test(f))},{compat:m,tags:g}=t.doc.schema;if(g.some(h)||m!=null&&m.some(h))return Dy(s,t)}return l?f:uI(f,c,UCe,dI(t,!1))}function AU(e,t,n,i){const{implicitKey:r,inFlow:s}=t,a=typeof e.value=="string"?e:Object.assign({},e,{value:String(e.value)});let{type:l}=e;l!==Wn.QUOTE_DOUBLE&&/[\x00-\x08\x0b-\x1f\x7f-\x9f\u{D800}-\u{DFFF}]/u.test(a.value)&&(l=Wn.QUOTE_DOUBLE);const c=d=>{switch(d){case Wn.BLOCK_FOLDED:case Wn.BLOCK_LITERAL:return r||s?Dy(a.value,t):CA(a,t,n,i);case Wn.QUOTE_DOUBLE:return MO(a.value,t);case Wn.QUOTE_SINGLE:return a$(a.value,t);case Wn.PLAIN:return PSt(a,t,n,i);default:return null}};let u=c(l);if(u===null){const{defaultKeyType:d,defaultStringType:f}=t.options,h=r&&d||f;if(u=c(h),u===null)throw new Error(`Unsupported default string type ${h}`)}return u}function QCe(e,t){const n=Object.assign({blockQuote:!0,commentString:RSt,defaultKeyType:null,defaultStringType:"PLAIN",directives:null,doubleQuotedAsJSON:!1,doubleQuotedMinMultiLineLength:40,falseStr:"false",flowCollectionPadding:!0,indentSeq:!0,lineWidth:80,minContentWidth:20,nullStr:"null",simpleKeys:!1,singleQuote:null,trailingComma:!1,trueStr:"true",verifyAliasOrder:!0},e.schema.toStringOptions,t);let i;switch(n.collectionStyle){case"block":i=!1;break;case"flow":i=!0;break;default:i=null}return{anchors:new Set,doc:e,flowCollectionPadding:n.flowCollectionPadding?" ":"",indent:"",indentStep:typeof n.indent=="number"?" ".repeat(n.indent):" ",inFlow:i,options:n}}function DSt(e,t){var r;if(t.tag){const s=e.filter(a=>a.tag===t.tag);if(s.length>0)return s.find(a=>a.format===t.format)??s[0]}let n,i;if(Mr(t)){i=t.value;let s=e.filter(a=>{var l;return(l=a.identify)==null?void 0:l.call(a,i)});if(s.length>1){const a=s.filter(l=>l.test);a.length>0&&(s=a)}n=s.find(a=>a.format===t.format)??s.find(a=>!a.format)}else i=t,n=e.find(s=>s.nodeClass&&i instanceof s.nodeClass);if(!n){const s=((r=i==null?void 0:i.constructor)==null?void 0:r.name)??(i===null?"null":typeof i);throw new Error(`Tag not resolved for ${s} value`)}return n}function MSt(e,t,{anchors:n,doc:i}){if(!i.directives)return"";const r=[],s=(Mr(e)||Fs(e))&&e.anchor;s&&MCe(s)&&(n.add(s),r.push(`&${s}`));const a=e.tag??(t.default?null:t.tag);return a&&r.push(i.directives.tagString(a)),r.join(" ")}function tx(e,t,n,i){var c;if(Qs(e))return e.toString(t,n,i);if(Yx(e)){if(t.doc.directives)return e.toString(t);if((c=t.resolvedAliases)!=null&&c.has(e))throw new TypeError("Cannot stringify circular structure without alias nodes");t.resolvedAliases?t.resolvedAliases.add(e):t.resolvedAliases=new Set([e]),e=e.resolve(t.doc)}let r;const s=Us(e)?e:t.doc.createNode(e,{onTagObj:u=>r=u});r??(r=DSt(t.doc.schema.tags,s));const a=MSt(s,r,t);a.length>0&&(t.indentAtStart=(t.indentAtStart??0)+a.length+1);const l=typeof r.stringify=="function"?r.stringify(s,t,n,i):Mr(s)?AU(s,t,n,i):s.toString(t,n,i);return a?Mr(s)||l[0]==="{"||l[0]==="["?`${a} ${l}`:`${a} -${t.indent}${l}`:l}function LSt({key:e,value:t},n,i,r){const{allNullValues:s,doc:a,indent:l,indentStep:c,options:{commentString:u,indentSeq:d,simpleKeys:f}}=n;let h=Us(e)&&e.comment||null;if(f){if(h)throw new Error("With simple keys, key nodes cannot have comments");if(Fs(e)||!Us(e)&&typeof e=="object"){const E="With simple keys, collection cannot be used as a key value";throw new Error(E)}}let m=!f&&(!e||h&&t==null&&!n.inFlow||Fs(e)||(Mr(e)?e.type===Wn.BLOCK_FOLDED||e.type===Wn.BLOCK_LITERAL:typeof e=="object"));n=Object.assign({},n,{allNullValues:!1,implicitKey:!m&&(f||!s),indent:l+c});let g=!1,b=!1,v=tx(e,n,()=>g=!0,()=>b=!0);if(!m&&!n.inFlow&&v.length>1024){if(f)throw new Error("With simple keys, single line scalar must not span more than 1024 characters");m=!0}if(n.inFlow){if(s||t==null)return g&&i&&i(),v===""?"?":m?`? ${v}`:v}else if(s&&!f||t==null&&m)return v=`? ${v}`,h&&!g?v+=Bg(v,n.indent,u(h)):b&&r&&r(),v;g&&(h=null),m?(h&&(v+=Bg(v,n.indent,u(h))),v=`? ${v} -${l}:`):(v=`${v}:`,h&&(v+=Bg(v,n.indent,u(h))));let y,x,O;Us(t)?(y=!!t.spaceBefore,x=t.commentBefore,O=t.comment):(y=!1,x=null,O=null,t&&typeof t=="object"&&(t=a.createNode(t))),n.implicitKey=!1,!m&&!h&&Mr(t)&&(n.indentAtStart=v.length+1),b=!1,!d&&c.length>=2&&!n.inFlow&&!m&&NE(t)&&!t.flow&&!t.tag&&!t.anchor&&(n.indent=n.indent.substring(2));let w=!1;const k=tx(t,n,()=>w=!0,()=>b=!0);let S=" ";if(h||y||x){if(S=y?` +${u}${x}${n}${m}`}function YSt(e,t,n,i){const{type:r,value:s}=e,{actualString:a,implicitKey:l,indent:c,indentStep:u,inFlow:d}=t;if(l&&s.includes(` +`)||d&&/[[\]{},]/.test(s))return By(s,t);if(/^[\n\t ,[\]{}#&*!|>'"%@`]|^[?-]$|^[?-][ \t]|[\n:][ \t]|[ \t]\n|[\n\t ]#|[\n\t :]$/.test(s))return l||d||!s.includes(` +`)?By(s,t):j2(e,t,n,i);if(!l&&!d&&r!==Zn.PLAIN&&s.includes(` +`))return j2(e,t,n,i);if(yI(s)){if(c==="")return t.forceBlockIndent=!0,j2(e,t,n,i);if(l&&c===u)return By(s,t)}const f=s.replace(/\n+/g,`$& +${c}`);if(a){const h=b=>{var v;return b.default&&b.tag!=="tag:yaml.org,2002:str"&&((v=b.test)==null?void 0:v.test(f))},{compat:m,tags:g}=t.doc.schema;if(g.some(h)||m!=null&&m.some(h))return By(s,t)}return l?f:gI(f,c,eTe,bI(t,!1))}function IU(e,t,n,i){const{implicitKey:r,inFlow:s}=t,a=typeof e.value=="string"?e:Object.assign({},e,{value:String(e.value)});let{type:l}=e;l!==Zn.QUOTE_DOUBLE&&/[\x00-\x08\x0b-\x1f\x7f-\x9f\u{D800}-\u{DFFF}]/u.test(a.value)&&(l=Zn.QUOTE_DOUBLE);const c=d=>{switch(d){case Zn.BLOCK_FOLDED:case Zn.BLOCK_LITERAL:return r||s?By(a.value,t):j2(a,t,n,i);case Zn.QUOTE_DOUBLE:return BO(a.value,t);case Zn.QUOTE_SINGLE:return d$(a.value,t);case Zn.PLAIN:return YSt(a,t,n,i);default:return null}};let u=c(l);if(u===null){const{defaultKeyType:d,defaultStringType:f}=t.options,h=r&&d||f;if(u=c(h),u===null)throw new Error(`Unsupported default string type ${h}`)}return u}function tTe(e,t){const n=Object.assign({blockQuote:!0,commentString:GSt,defaultKeyType:null,defaultStringType:"PLAIN",directives:null,doubleQuotedAsJSON:!1,doubleQuotedMinMultiLineLength:40,falseStr:"false",flowCollectionPadding:!0,indentSeq:!0,lineWidth:80,minContentWidth:20,nullStr:"null",simpleKeys:!1,singleQuote:null,trailingComma:!1,trueStr:"true",verifyAliasOrder:!0},e.schema.toStringOptions,t);let i;switch(n.collectionStyle){case"block":i=!1;break;case"flow":i=!0;break;default:i=null}return{anchors:new Set,doc:e,flowCollectionPadding:n.flowCollectionPadding?" ":"",indent:"",indentStep:typeof n.indent=="number"?" ".repeat(n.indent):" ",inFlow:i,options:n}}function ZSt(e,t){var r;if(t.tag){const s=e.filter(a=>a.tag===t.tag);if(s.length>0)return s.find(a=>a.format===t.format)??s[0]}let n,i;if(Qr(t)){i=t.value;let s=e.filter(a=>{var l;return(l=a.identify)==null?void 0:l.call(a,i)});if(s.length>1){const a=s.filter(l=>l.test);a.length>0&&(s=a)}n=s.find(a=>a.format===t.format)??s.find(a=>!a.format)}else i=t,n=e.find(s=>s.nodeClass&&i instanceof s.nodeClass);if(!n){const s=((r=i==null?void 0:i.constructor)==null?void 0:r.name)??(i===null?"null":typeof i);throw new Error(`Tag not resolved for ${s} value`)}return n}function JSt(e,t,{anchors:n,doc:i}){if(!i.directives)return"";const r=[],s=(Qr(e)||Us(e))&&e.anchor;s&&GCe(s)&&(n.add(s),r.push(`&${s}`));const a=e.tag??(t.default?null:t.tag);return a&&r.push(i.directives.tagString(a)),r.join(" ")}function ax(e,t,n,i){var c;if(Vs(e))return e.toString(t,n,i);if(n1(e)){if(t.doc.directives)return e.toString(t);if((c=t.resolvedAliases)!=null&&c.has(e))throw new TypeError("Cannot stringify circular structure without alias nodes");t.resolvedAliases?t.resolvedAliases.add(e):t.resolvedAliases=new Set([e]),e=e.resolve(t.doc)}let r;const s=zs(e)?e:t.doc.createNode(e,{onTagObj:u=>r=u});r??(r=ZSt(t.doc.schema.tags,s));const a=JSt(s,r,t);a.length>0&&(t.indentAtStart=(t.indentAtStart??0)+a.length+1);const l=typeof r.stringify=="function"?r.stringify(s,t,n,i):Qr(s)?IU(s,t,n,i):s.toString(t,n,i);return a?Qr(s)||l[0]==="{"||l[0]==="["?`${a} ${l}`:`${a} +${t.indent}${l}`:l}function ekt({key:e,value:t},n,i,r){const{allNullValues:s,doc:a,indent:l,indentStep:c,options:{commentString:u,indentSeq:d,simpleKeys:f}}=n;let h=zs(e)&&e.comment||null;if(f){if(h)throw new Error("With simple keys, key nodes cannot have comments");if(Us(e)||!zs(e)&&typeof e=="object"){const E="With simple keys, collection cannot be used as a key value";throw new Error(E)}}let m=!f&&(!e||h&&t==null&&!n.inFlow||Us(e)||(Qr(e)?e.type===Zn.BLOCK_FOLDED||e.type===Zn.BLOCK_LITERAL:typeof e=="object"));n=Object.assign({},n,{allNullValues:!1,implicitKey:!m&&(f||!s),indent:l+c});let g=!1,b=!1,v=ax(e,n,()=>g=!0,()=>b=!0);if(!m&&!n.inFlow&&v.length>1024){if(f)throw new Error("With simple keys, single line scalar must not span more than 1024 characters");m=!0}if(n.inFlow){if(s||t==null)return g&&i&&i(),v===""?"?":m?`? ${v}`:v}else if(s&&!f||t==null&&m)return v=`? ${v}`,h&&!g?v+=Hg(v,n.indent,u(h)):b&&r&&r(),v;g&&(h=null),m?(h&&(v+=Hg(v,n.indent,u(h))),v=`? ${v} +${l}:`):(v=`${v}:`,h&&(v+=Hg(v,n.indent,u(h))));let y,x,O;zs(t)?(y=!!t.spaceBefore,x=t.commentBefore,O=t.comment):(y=!1,x=null,O=null,t&&typeof t=="object"&&(t=a.createNode(t))),n.implicitKey=!1,!m&&!h&&Qr(t)&&(n.indentAtStart=v.length+1),b=!1,!d&&c.length>=2&&!n.inFlow&&!m&&PE(t)&&!t.flow&&!t.tag&&!t.anchor&&(n.indent=n.indent.substring(2));let w=!1;const k=ax(t,n,()=>w=!0,()=>b=!0);let S=" ";if(h||y||x){if(S=y?` `:"",x){const E=u(x);S+=` -${Xf(E,n.indent)}`}k===""&&!n.inFlow?S===` +${Gf(E,n.indent)}`}k===""&&!n.inFlow?S===` `&&O&&(S=` `):S+=` -${n.indent}`}else if(!m&&Fs(t)){const E=k[0],C=k.indexOf(` -`),N=C!==-1,_=n.inFlow??t.flow??t.items.length===0;if(N||!_){let j=!1;if(N&&(E==="&"||E==="!")){let A=k.indexOf(" ");E==="&"&&A!==-1&&Ae===BT||typeof e=="symbol"&&e.description===BT,default:"key",tag:"tag:yaml.org,2002:merge",test:/^<<$/,resolve:()=>Object.assign(new Wn(Symbol(BT)),{addToJSMap:VCe}),stringify:()=>BT},$St=(e,t)=>(ch.identify(t)||Mr(t)&&(!t.type||t.type===Wn.PLAIN)&&ch.identify(t.value))&&(e==null?void 0:e.doc.schema.tags.some(n=>n.tag===ch.tag&&n.default));function VCe(e,t,n){const i=HCe(e,n);if(NE(i))for(const r of i.items)YM(e,t,r);else if(Array.isArray(i))for(const r of i)YM(e,t,r);else YM(e,t,i)}function YM(e,t,n){const i=HCe(e,n);if(!_E(i))throw new Error("Merge sources must be maps or map aliases");const r=i.toJSON(null,e,Map);for(const[s,a]of r)t instanceof Map?t.has(s)||t.set(s,a):t instanceof Set?t.add(s):Object.prototype.hasOwnProperty.call(t,s)||Object.defineProperty(t,s,{value:a,writable:!0,enumerable:!0,configurable:!0});return t}function HCe(e,t){return e&&Yx(t)?t.resolve(e.doc,e):t}function qCe(e,t,{key:n,value:i}){if(Us(n)&&n.addToJSMap)n.addToJSMap(e,t,i);else if($St(e,n))VCe(e,t,i);else{const r=tu(n,"",e);if(t instanceof Map)t.set(r,tu(i,r,e));else if(t instanceof Set)t.add(r);else{const s=FSt(n,r,e),a=tu(i,s,e);s in t?Object.defineProperty(t,s,{value:a,writable:!0,enumerable:!0,configurable:!0}):t[s]=a}}return t}function FSt(e,t,n){if(t===null)return"";if(typeof t!="object")return String(t);if(Us(e)&&(n!=null&&n.doc)){const i=QCe(n.doc,{});i.anchors=new Set;for(const s of n.anchors.keys())i.anchors.add(s.anchor);i.inFlow=!0,i.inStringifyKey=!0;const r=e.toString(i);if(!n.mapKeyWarned){let s=JSON.stringify(r);s.length>40&&(s=s.substring(0,36)+'..."'),zCe(n.doc.options.logLevel,`Keys with collection values will be stringified due to JS Object restrictions: ${s}. Set mapAsMap: true to use object keys.`),n.mapKeyWarned=!0}return r}return JSON.stringify(t)}function _U(e,t,n){const i=GS(e,void 0,n),r=GS(t,void 0,n);return new Qo(i,r)}class Qo{constructor(t,n=null){Object.defineProperty(this,ru,{value:PCe}),this.key=t,this.value=n}clone(t){let{key:n,value:i}=this;return Us(n)&&(n=n.clone(t)),Us(i)&&(i=i.clone(t)),new Qo(n,i)}toJSON(t,n){const i=n!=null&&n.mapAsMap?new Map:{};return qCe(n,i,this)}toString(t,n,i){return t!=null&&t.doc?LSt(this,t,n,i):JSON.stringify(this)}}function WCe(e,t,n){return(t.inFlow??e.flow?USt:BSt)(e,t,n)}function BSt({comment:e,items:t},n,{blockItemPrefix:i,flowChars:r,itemIndent:s,onChompKeep:a,onComment:l}){const{indent:c,options:{commentString:u}}=n,d=Object.assign({},n,{indent:s,type:null});let f=!1;const h=[];for(let g=0;gv=null,()=>f=!0);v&&(y+=Bg(y,s,u(v))),f&&v&&(f=!1),h.push(i+y)}let m;if(h.length===0)m=r.start+r.end;else{m=h[0];for(let g=1;ge===zT||typeof e=="symbol"&&e.description===zT,default:"key",tag:"tag:yaml.org,2002:merge",test:/^<<$/,resolve:()=>Object.assign(new Zn(Symbol(zT)),{addToJSMap:iTe}),stringify:()=>zT},tkt=(e,t)=>(lh.identify(t)||Qr(t)&&(!t.type||t.type===Zn.PLAIN)&&lh.identify(t.value))&&(e==null?void 0:e.doc.schema.tags.some(n=>n.tag===lh.tag&&n.default));function iTe(e,t,n){const i=rTe(e,n);if(PE(i))for(const r of i.items)n5(e,t,r);else if(Array.isArray(i))for(const r of i)n5(e,t,r);else n5(e,t,i)}function n5(e,t,n){const i=rTe(e,n);if(!IE(i))throw new Error("Merge sources must be maps or map aliases");const r=i.toJSON(null,e,Map);for(const[s,a]of r)t instanceof Map?t.has(s)||t.set(s,a):t instanceof Set?t.add(s):Object.prototype.hasOwnProperty.call(t,s)||Object.defineProperty(t,s,{value:a,writable:!0,enumerable:!0,configurable:!0});return t}function rTe(e,t){return e&&n1(t)?t.resolve(e.doc,e):t}function sTe(e,t,{key:n,value:i}){if(zs(n)&&n.addToJSMap)n.addToJSMap(e,t,i);else if(tkt(e,n))iTe(e,t,i);else{const r=nu(n,"",e);if(t instanceof Map)t.set(r,nu(i,r,e));else if(t instanceof Set)t.add(r);else{const s=nkt(n,r,e),a=nu(i,s,e);s in t?Object.defineProperty(t,s,{value:a,writable:!0,enumerable:!0,configurable:!0}):t[s]=a}}return t}function nkt(e,t,n){if(t===null)return"";if(typeof t!="object")return String(t);if(zs(e)&&(n!=null&&n.doc)){const i=tTe(n.doc,{});i.anchors=new Set;for(const s of n.anchors.keys())i.anchors.add(s.anchor);i.inFlow=!0,i.inStringifyKey=!0;const r=e.toString(i);if(!n.mapKeyWarned){let s=JSON.stringify(r);s.length>40&&(s=s.substring(0,36)+'..."'),nTe(n.doc.options.logLevel,`Keys with collection values will be stringified due to JS Object restrictions: ${s}. Set mapAsMap: true to use object keys.`),n.mapKeyWarned=!0}return r}return JSON.stringify(t)}function PU(e,t,n){const i=ZS(e,void 0,n),r=ZS(t,void 0,n);return new qo(i,r)}class qo{constructor(t,n=null){Object.defineProperty(this,su,{value:WCe}),this.key=t,this.value=n}clone(t){let{key:n,value:i}=this;return zs(n)&&(n=n.clone(t)),zs(i)&&(i=i.clone(t)),new qo(n,i)}toJSON(t,n){const i=n!=null&&n.mapAsMap?new Map:{};return sTe(n,i,this)}toString(t,n,i){return t!=null&&t.doc?ekt(this,t,n,i):JSON.stringify(this)}}function aTe(e,t,n){return(t.inFlow??e.flow?rkt:ikt)(e,t,n)}function ikt({comment:e,items:t},n,{blockItemPrefix:i,flowChars:r,itemIndent:s,onChompKeep:a,onComment:l}){const{indent:c,options:{commentString:u}}=n,d=Object.assign({},n,{indent:s,type:null});let f=!1;const h=[];for(let g=0;gv=null,()=>f=!0);v&&(y+=Hg(y,s,u(v))),f&&v&&(f=!1),h.push(i+y)}let m;if(h.length===0)m=r.start+r.end;else{m=h[0];for(let g=1;gv=null);u||(u=f.length>d||y.includes(` -`)),g0&&(u||(u=f.reduce((x,O)=>x+O.length+2,2)+(y.length+2)>t.options.lineWidth)),u&&(y+=",")),v&&(y+=Bg(y,i,l(v))),f.push(y),d=f.length}const{start:h,end:m}=n;if(f.length===0)return h+m;if(!u){const g=f.reduce((b,v)=>b+v.length+2,2);u=t.options.lineWidth>0&&g>t.options.lineWidth}if(u){let g=h;for(const b of f)g+=b?` +`+Gf(u(e),c),l&&l()):f&&a&&a(),m}function rkt({items:e},t,{flowChars:n,itemIndent:i}){const{indent:r,indentStep:s,flowCollectionPadding:a,options:{commentString:l}}=t;i+=s;const c=Object.assign({},t,{indent:i,inFlow:!0,type:null});let u=!1,d=0;const f=[];for(let g=0;gv=null);u||(u=f.length>d||y.includes(` +`)),g0&&(u||(u=f.reduce((x,O)=>x+O.length+2,2)+(y.length+2)>t.options.lineWidth)),u&&(y+=",")),v&&(y+=Hg(y,i,l(v))),f.push(y),d=f.length}const{start:h,end:m}=n;if(f.length===0)return h+m;if(!u){const g=f.reduce((b,v)=>b+v.length+2,2);u=t.options.lineWidth>0&&g>t.options.lineWidth}if(u){let g=h;for(const b of f)g+=b?` ${s}${r}${b}`:` `;return`${g} -${r}${m}`}else return`${h}${a}${f.join(" ")}${a}${m}`}function CN({indent:e,options:{commentString:t}},n,i,r){if(i&&r&&(i=i.replace(/^\n+/,"")),i){const s=Xf(t(i),e);n.push(s.trimStart())}}function Ug(e,t){const n=Mr(t)?t.value:t;for(const i of e)if(Qs(i)&&(i.key===t||i.key===n||Mr(i.key)&&i.key.value===n))return i}class Hc extends BCe{static get tagName(){return"tag:yaml.org,2002:map"}constructor(t){super(rm,t),this.items=[]}static from(t,n,i){const{keepUndefined:r,replacer:s}=i,a=new this(t),l=(c,u)=>{if(typeof s=="function")u=s.call(n,c,u);else if(Array.isArray(s)&&!s.includes(c))return;(u!==void 0||r)&&a.items.push(_U(c,u,i))};if(n instanceof Map)for(const[c,u]of n)l(c,u);else if(n&&typeof n=="object")for(const c of Object.keys(n))l(c,n[c]);return typeof t.sortMapEntries=="function"&&a.items.sort(t.sortMapEntries),a}add(t,n){var a;let i;Qs(t)?i=t:!t||typeof t!="object"||!("key"in t)?i=new Qo(t,t==null?void 0:t.value):i=new Qo(t.key,t.value);const r=Ug(this.items,i.key),s=(a=this.schema)==null?void 0:a.sortMapEntries;if(r){if(!n)throw new Error(`Key ${i.key} already set`);Mr(r.value)&&FCe(i.value)?r.value.value=i.value:r.value=i.value}else if(s){const l=this.items.findIndex(c=>s(i,c)<0);l===-1?this.items.push(i):this.items.splice(l,0,i)}else this.items.push(i)}delete(t){const n=Ug(this.items,t);return n?this.items.splice(this.items.indexOf(n),1).length>0:!1}get(t,n){const i=Ug(this.items,t),r=i==null?void 0:i.value;return(!n&&Mr(r)?r.value:r)??void 0}has(t){return!!Ug(this.items,t)}set(t,n){this.add(new Qo(t,n),!0)}toJSON(t,n,i){const r=i?new i:n!=null&&n.mapAsMap?new Map:{};n!=null&&n.onCreate&&n.onCreate(r);for(const s of this.items)qCe(n,r,s);return r}toString(t,n,i){if(!t)return JSON.stringify(this);for(const r of this.items)if(!Qs(r))throw new Error(`Map items must all be pairs; found ${JSON.stringify(r)} instead`);return!t.allNullValues&&this.hasAllNullValues(!1)&&(t=Object.assign({},t,{allNullValues:!0})),WCe(this,t,{blockItemPrefix:"",flowChars:{start:"{",end:"}"},itemIndent:t.indent||"",onChompKeep:i,onComment:n})}}const Jx={collection:"map",default:!0,nodeClass:Hc,tag:"tag:yaml.org,2002:map",resolve(e,t){return _E(e)||t("Expected a mapping for this tag"),e},createNode:(e,t,n)=>Hc.from(e,t,n)};class _b extends BCe{static get tagName(){return"tag:yaml.org,2002:seq"}constructor(t){super(Xx,t),this.items=[]}add(t){this.items.push(t)}delete(t){const n=UT(t);return typeof n!="number"?!1:this.items.splice(n,1).length>0}get(t,n){const i=UT(t);if(typeof i!="number")return;const r=this.items[i];return!n&&Mr(r)?r.value:r}has(t){const n=UT(t);return typeof n=="number"&&n=0?t:null}const e1={collection:"seq",default:!0,nodeClass:_b,tag:"tag:yaml.org,2002:seq",resolve(e,t){return NE(e)||t("Expected a sequence for this tag"),e},createNode:(e,t,n)=>_b.from(e,t,n)},hI={identify:e=>typeof e=="string",default:!0,tag:"tag:yaml.org,2002:str",resolve:e=>e,stringify(e,t,n,i){return t=Object.assign({actualString:!0},t),AU(e,t,n,i)}},pI={identify:e=>e==null,createNode:()=>new Wn(null),default:!0,tag:"tag:yaml.org,2002:null",test:/^(?:~|[Nn]ull|NULL)?$/,resolve:()=>new Wn(null),stringify:({source:e},t)=>typeof e=="string"&&pI.test.test(e)?e:t.options.nullStr},NU={identify:e=>typeof e=="boolean",default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:[Tt]rue|TRUE|[Ff]alse|FALSE)$/,resolve:e=>new Wn(e[0]==="t"||e[0]==="T"),stringify({source:e,value:t},n){if(e&&NU.test.test(e)){const i=e[0]==="t"||e[0]==="T";if(t===i)return e}return t?n.options.trueStr:n.options.falseStr}};function Xu({format:e,minFractionDigits:t,tag:n,value:i}){if(typeof i=="bigint")return String(i);const r=typeof i=="number"?i:Number(i);if(!isFinite(r))return isNaN(r)?".nan":r<0?"-.inf":".inf";let s=Object.is(i,-0)?"-0":JSON.stringify(i);if(!e&&t&&(!n||n==="tag:yaml.org,2002:float")&&/^-?\d/.test(s)&&!s.includes("e")){let a=s.indexOf(".");a<0&&(a=s.length,s+=".");let l=t-(s.length-a-1);for(;l-- >0;)s+="0"}return s}const GCe={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,resolve:e=>e.slice(-3).toLowerCase()==="nan"?NaN:e[0]==="-"?Number.NEGATIVE_INFINITY:Number.POSITIVE_INFINITY,stringify:Xu},KCe={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"EXP",test:/^[-+]?(?:\.[0-9]+|[0-9]+(?:\.[0-9]*)?)[eE][-+]?[0-9]+$/,resolve:e=>parseFloat(e),stringify(e){const t=Number(e.value);return isFinite(t)?t.toExponential():Xu(e)}},XCe={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^[-+]?(?:\.[0-9]+|[0-9]+\.[0-9]*)$/,resolve(e){const t=new Wn(parseFloat(e)),n=e.indexOf(".");return n!==-1&&e[e.length-1]==="0"&&(t.minFractionDigits=e.length-n-1),t},stringify:Xu},mI=e=>typeof e=="bigint"||Number.isInteger(e),jU=(e,t,n,{intAsBigInt:i})=>i?BigInt(e):parseInt(e.substring(t),n);function YCe(e,t,n){const{value:i}=e;return mI(i)&&i>=0?n+i.toString(t):Xu(e)}const ZCe={identify:e=>mI(e)&&e>=0,default:!0,tag:"tag:yaml.org,2002:int",format:"OCT",test:/^0o[0-7]+$/,resolve:(e,t,n)=>jU(e,2,8,n),stringify:e=>YCe(e,8,"0o")},JCe={identify:mI,default:!0,tag:"tag:yaml.org,2002:int",test:/^[-+]?[0-9]+$/,resolve:(e,t,n)=>jU(e,0,10,n),stringify:Xu},eTe={identify:e=>mI(e)&&e>=0,default:!0,tag:"tag:yaml.org,2002:int",format:"HEX",test:/^0x[0-9a-fA-F]+$/,resolve:(e,t,n)=>jU(e,2,16,n),stringify:e=>YCe(e,16,"0x")},QSt=[Jx,e1,hI,pI,NU,ZCe,JCe,eTe,GCe,KCe,XCe];function ZY(e){return typeof e=="bigint"||Number.isInteger(e)}const QT=({value:e})=>JSON.stringify(e),zSt=[{identify:e=>typeof e=="string",default:!0,tag:"tag:yaml.org,2002:str",resolve:e=>e,stringify:QT},{identify:e=>e==null,createNode:()=>new Wn(null),default:!0,tag:"tag:yaml.org,2002:null",test:/^null$/,resolve:()=>null,stringify:QT},{identify:e=>typeof e=="boolean",default:!0,tag:"tag:yaml.org,2002:bool",test:/^true$|^false$/,resolve:e=>e==="true",stringify:QT},{identify:ZY,default:!0,tag:"tag:yaml.org,2002:int",test:/^-?(?:0|[1-9][0-9]*)$/,resolve:(e,t,{intAsBigInt:n})=>n?BigInt(e):parseInt(e,10),stringify:({value:e})=>ZY(e)?e.toString():JSON.stringify(e)},{identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^-?(?:0|[1-9][0-9]*)(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?$/,resolve:e=>parseFloat(e),stringify:QT}],VSt={default:!0,tag:"",test:/^/,resolve(e,t){return t(`Unresolved plain scalar ${JSON.stringify(e)}`),e}},HSt=[Jx,e1].concat(zSt,VSt),RU={identify:e=>e instanceof Uint8Array,default:!1,tag:"tag:yaml.org,2002:binary",resolve(e,t){if(typeof atob=="function"){const n=atob(e.replace(/[\n\r]/g,"")),i=new Uint8Array(n.length);for(let r=0;r1&&t("Each pair must have its own sequence indicator");const r=i.items[0]||new Qo(new Wn(null));if(i.commentBefore&&(r.key.commentBefore=r.key.commentBefore?`${i.commentBefore} +${r}${m}`}else return`${h}${a}${f.join(" ")}${a}${m}`}function jN({indent:e,options:{commentString:t}},n,i,r){if(i&&r&&(i=i.replace(/^\n+/,"")),i){const s=Gf(t(i),e);n.push(s.trimStart())}}function qg(e,t){const n=Qr(t)?t.value:t;for(const i of e)if(Vs(i)&&(i.key===t||i.key===n||Qr(i.key)&&i.key.value===n))return i}class qc extends JCe{static get tagName(){return"tag:yaml.org,2002:map"}constructor(t){super(lm,t),this.items=[]}static from(t,n,i){const{keepUndefined:r,replacer:s}=i,a=new this(t),l=(c,u)=>{if(typeof s=="function")u=s.call(n,c,u);else if(Array.isArray(s)&&!s.includes(c))return;(u!==void 0||r)&&a.items.push(PU(c,u,i))};if(n instanceof Map)for(const[c,u]of n)l(c,u);else if(n&&typeof n=="object")for(const c of Object.keys(n))l(c,n[c]);return typeof t.sortMapEntries=="function"&&a.items.sort(t.sortMapEntries),a}add(t,n){var a;let i;Vs(t)?i=t:!t||typeof t!="object"||!("key"in t)?i=new qo(t,t==null?void 0:t.value):i=new qo(t.key,t.value);const r=qg(this.items,i.key),s=(a=this.schema)==null?void 0:a.sortMapEntries;if(r){if(!n)throw new Error(`Key ${i.key} already set`);Qr(r.value)&&ZCe(i.value)?r.value.value=i.value:r.value=i.value}else if(s){const l=this.items.findIndex(c=>s(i,c)<0);l===-1?this.items.push(i):this.items.splice(l,0,i)}else this.items.push(i)}delete(t){const n=qg(this.items,t);return n?this.items.splice(this.items.indexOf(n),1).length>0:!1}get(t,n){const i=qg(this.items,t),r=i==null?void 0:i.value;return(!n&&Qr(r)?r.value:r)??void 0}has(t){return!!qg(this.items,t)}set(t,n){this.add(new qo(t,n),!0)}toJSON(t,n,i){const r=i?new i:n!=null&&n.mapAsMap?new Map:{};n!=null&&n.onCreate&&n.onCreate(r);for(const s of this.items)sTe(n,r,s);return r}toString(t,n,i){if(!t)return JSON.stringify(this);for(const r of this.items)if(!Vs(r))throw new Error(`Map items must all be pairs; found ${JSON.stringify(r)} instead`);return!t.allNullValues&&this.hasAllNullValues(!1)&&(t=Object.assign({},t,{allNullValues:!0})),aTe(this,t,{blockItemPrefix:"",flowChars:{start:"{",end:"}"},itemIndent:t.indent||"",onChompKeep:i,onComment:n})}}const r1={collection:"map",default:!0,nodeClass:qc,tag:"tag:yaml.org,2002:map",resolve(e,t){return IE(e)||t("Expected a mapping for this tag"),e},createNode:(e,t,n)=>qc.from(e,t,n)};class Pb extends JCe{static get tagName(){return"tag:yaml.org,2002:seq"}constructor(t){super(t1,t),this.items=[]}add(t){this.items.push(t)}delete(t){const n=VT(t);return typeof n!="number"?!1:this.items.splice(n,1).length>0}get(t,n){const i=VT(t);if(typeof i!="number")return;const r=this.items[i];return!n&&Qr(r)?r.value:r}has(t){const n=VT(t);return typeof n=="number"&&n=0?t:null}const s1={collection:"seq",default:!0,nodeClass:Pb,tag:"tag:yaml.org,2002:seq",resolve(e,t){return PE(e)||t("Expected a sequence for this tag"),e},createNode:(e,t,n)=>Pb.from(e,t,n)},vI={identify:e=>typeof e=="string",default:!0,tag:"tag:yaml.org,2002:str",resolve:e=>e,stringify(e,t,n,i){return t=Object.assign({actualString:!0},t),IU(e,t,n,i)}},xI={identify:e=>e==null,createNode:()=>new Zn(null),default:!0,tag:"tag:yaml.org,2002:null",test:/^(?:~|[Nn]ull|NULL)?$/,resolve:()=>new Zn(null),stringify:({source:e},t)=>typeof e=="string"&&xI.test.test(e)?e:t.options.nullStr},DU={identify:e=>typeof e=="boolean",default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:[Tt]rue|TRUE|[Ff]alse|FALSE)$/,resolve:e=>new Zn(e[0]==="t"||e[0]==="T"),stringify({source:e,value:t},n){if(e&&DU.test.test(e)){const i=e[0]==="t"||e[0]==="T";if(t===i)return e}return t?n.options.trueStr:n.options.falseStr}};function Yu({format:e,minFractionDigits:t,tag:n,value:i}){if(typeof i=="bigint")return String(i);const r=typeof i=="number"?i:Number(i);if(!isFinite(r))return isNaN(r)?".nan":r<0?"-.inf":".inf";let s=Object.is(i,-0)?"-0":JSON.stringify(i);if(!e&&t&&(!n||n==="tag:yaml.org,2002:float")&&/^-?\d/.test(s)&&!s.includes("e")){let a=s.indexOf(".");a<0&&(a=s.length,s+=".");let l=t-(s.length-a-1);for(;l-- >0;)s+="0"}return s}const oTe={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,resolve:e=>e.slice(-3).toLowerCase()==="nan"?NaN:e[0]==="-"?Number.NEGATIVE_INFINITY:Number.POSITIVE_INFINITY,stringify:Yu},lTe={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"EXP",test:/^[-+]?(?:\.[0-9]+|[0-9]+(?:\.[0-9]*)?)[eE][-+]?[0-9]+$/,resolve:e=>parseFloat(e),stringify(e){const t=Number(e.value);return isFinite(t)?t.toExponential():Yu(e)}},cTe={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^[-+]?(?:\.[0-9]+|[0-9]+\.[0-9]*)$/,resolve(e){const t=new Zn(parseFloat(e)),n=e.indexOf(".");return n!==-1&&e[e.length-1]==="0"&&(t.minFractionDigits=e.length-n-1),t},stringify:Yu},wI=e=>typeof e=="bigint"||Number.isInteger(e),MU=(e,t,n,{intAsBigInt:i})=>i?BigInt(e):parseInt(e.substring(t),n);function uTe(e,t,n){const{value:i}=e;return wI(i)&&i>=0?n+i.toString(t):Yu(e)}const dTe={identify:e=>wI(e)&&e>=0,default:!0,tag:"tag:yaml.org,2002:int",format:"OCT",test:/^0o[0-7]+$/,resolve:(e,t,n)=>MU(e,2,8,n),stringify:e=>uTe(e,8,"0o")},fTe={identify:wI,default:!0,tag:"tag:yaml.org,2002:int",test:/^[-+]?[0-9]+$/,resolve:(e,t,n)=>MU(e,0,10,n),stringify:Yu},hTe={identify:e=>wI(e)&&e>=0,default:!0,tag:"tag:yaml.org,2002:int",format:"HEX",test:/^0x[0-9a-fA-F]+$/,resolve:(e,t,n)=>MU(e,2,16,n),stringify:e=>uTe(e,16,"0x")},skt=[r1,s1,vI,xI,DU,dTe,fTe,hTe,oTe,lTe,cTe];function oZ(e){return typeof e=="bigint"||Number.isInteger(e)}const HT=({value:e})=>JSON.stringify(e),akt=[{identify:e=>typeof e=="string",default:!0,tag:"tag:yaml.org,2002:str",resolve:e=>e,stringify:HT},{identify:e=>e==null,createNode:()=>new Zn(null),default:!0,tag:"tag:yaml.org,2002:null",test:/^null$/,resolve:()=>null,stringify:HT},{identify:e=>typeof e=="boolean",default:!0,tag:"tag:yaml.org,2002:bool",test:/^true$|^false$/,resolve:e=>e==="true",stringify:HT},{identify:oZ,default:!0,tag:"tag:yaml.org,2002:int",test:/^-?(?:0|[1-9][0-9]*)$/,resolve:(e,t,{intAsBigInt:n})=>n?BigInt(e):parseInt(e,10),stringify:({value:e})=>oZ(e)?e.toString():JSON.stringify(e)},{identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^-?(?:0|[1-9][0-9]*)(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?$/,resolve:e=>parseFloat(e),stringify:HT}],okt={default:!0,tag:"",test:/^/,resolve(e,t){return t(`Unresolved plain scalar ${JSON.stringify(e)}`),e}},lkt=[r1,s1].concat(akt,okt),LU={identify:e=>e instanceof Uint8Array,default:!1,tag:"tag:yaml.org,2002:binary",resolve(e,t){if(typeof atob=="function"){const n=atob(e.replace(/[\n\r]/g,"")),i=new Uint8Array(n.length);for(let r=0;r1&&t("Each pair must have its own sequence indicator");const r=i.items[0]||new qo(new Zn(null));if(i.commentBefore&&(r.key.commentBefore=r.key.commentBefore?`${i.commentBefore} ${r.key.commentBefore}`:i.commentBefore),i.comment){const s=r.value??r.key;s.comment=s.comment?`${i.comment} -${s.comment}`:i.comment}i=r}e.items[n]=Qs(i)?i:new Qo(i)}}else t("Expected a sequence for this tag");return e}function nTe(e,t,n){const{replacer:i}=n,r=new _b(e);r.tag="tag:yaml.org,2002:pairs";let s=0;if(t&&Symbol.iterator in Object(t))for(let a of t){typeof i=="function"&&(a=i.call(t,String(s++),a));let l,c;if(Array.isArray(a))if(a.length===2)l=a[0],c=a[1];else throw new TypeError(`Expected [key, value] tuple: ${a}`);else if(a&&a instanceof Object){const u=Object.keys(a);if(u.length===1)l=u[0],c=a[l];else throw new TypeError(`Expected tuple with one key, not ${u.length} keys`)}else l=a;r.items.push(_U(l,c,n))}return r}const IU={collection:"seq",default:!1,tag:"tag:yaml.org,2002:pairs",resolve:tTe,createNode:nTe};class av extends _b{constructor(){super(),this.add=Hc.prototype.add.bind(this),this.delete=Hc.prototype.delete.bind(this),this.get=Hc.prototype.get.bind(this),this.has=Hc.prototype.has.bind(this),this.set=Hc.prototype.set.bind(this),this.tag=av.tag}toJSON(t,n){if(!n)return super.toJSON(t);const i=new Map;n!=null&&n.onCreate&&n.onCreate(i);for(const r of this.items){let s,a;if(Qs(r)?(s=tu(r.key,"",n),a=tu(r.value,s,n)):s=tu(r,"",n),i.has(s))throw new Error("Ordered maps must not include duplicate keys");i.set(s,a)}return i}static from(t,n,i){const r=nTe(t,n,i),s=new this;return s.items=r.items,s}}av.tag="tag:yaml.org,2002:omap";const PU={collection:"seq",identify:e=>e instanceof Map,nodeClass:av,default:!1,tag:"tag:yaml.org,2002:omap",resolve(e,t){const n=tTe(e,t),i=[];for(const{key:r}of n.items)Mr(r)&&(i.includes(r.value)?t(`Ordered maps must not include duplicate keys: ${r.value}`):i.push(r.value));return Object.assign(new av,n)},createNode:(e,t,n)=>av.from(e,t,n)};function iTe({value:e,source:t},n){return t&&(e?rTe:sTe).test.test(t)?t:e?n.options.trueStr:n.options.falseStr}const rTe={identify:e=>e===!0,default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:Y|y|[Yy]es|YES|[Tt]rue|TRUE|[Oo]n|ON)$/,resolve:()=>new Wn(!0),stringify:iTe},sTe={identify:e=>e===!1,default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/,resolve:()=>new Wn(!1),stringify:iTe},qSt={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,resolve:e=>e.slice(-3).toLowerCase()==="nan"?NaN:e[0]==="-"?Number.NEGATIVE_INFINITY:Number.POSITIVE_INFINITY,stringify:Xu},WSt={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"EXP",test:/^[-+]?(?:[0-9][0-9_]*)?(?:\.[0-9_]*)?[eE][-+]?[0-9]+$/,resolve:e=>parseFloat(e.replace(/_/g,"")),stringify(e){const t=Number(e.value);return isFinite(t)?t.toExponential():Xu(e)}},GSt={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^[-+]?(?:[0-9][0-9_]*)?\.[0-9_]*$/,resolve(e){const t=new Wn(parseFloat(e.replace(/_/g,""))),n=e.indexOf(".");if(n!==-1){const i=e.substring(n+1).replace(/_/g,"");i[i.length-1]==="0"&&(t.minFractionDigits=i.length)}return t},stringify:Xu},jE=e=>typeof e=="bigint"||Number.isInteger(e);function gI(e,t,n,{intAsBigInt:i}){const r=e[0];if((r==="-"||r==="+")&&(t+=1),e=e.substring(t).replace(/_/g,""),i){switch(n){case 2:e=`0b${e}`;break;case 8:e=`0o${e}`;break;case 16:e=`0x${e}`;break}const a=BigInt(e);return r==="-"?BigInt(-1)*a:a}const s=parseInt(e,n);return r==="-"?-1*s:s}function DU(e,t,n){const{value:i}=e;if(jE(i)){const r=i.toString(t);return i<0?"-"+n+r.substr(1):n+r}return Xu(e)}const KSt={identify:jE,default:!0,tag:"tag:yaml.org,2002:int",format:"BIN",test:/^[-+]?0b[0-1_]+$/,resolve:(e,t,n)=>gI(e,2,2,n),stringify:e=>DU(e,2,"0b")},XSt={identify:jE,default:!0,tag:"tag:yaml.org,2002:int",format:"OCT",test:/^[-+]?0[0-7_]+$/,resolve:(e,t,n)=>gI(e,1,8,n),stringify:e=>DU(e,8,"0")},YSt={identify:jE,default:!0,tag:"tag:yaml.org,2002:int",test:/^[-+]?[0-9][0-9_]*$/,resolve:(e,t,n)=>gI(e,0,10,n),stringify:Xu},ZSt={identify:jE,default:!0,tag:"tag:yaml.org,2002:int",format:"HEX",test:/^[-+]?0x[0-9a-fA-F_]+$/,resolve:(e,t,n)=>gI(e,2,16,n),stringify:e=>DU(e,16,"0x")};class ov extends Hc{constructor(t){super(t),this.tag=ov.tag}add(t){let n;Qs(t)?n=t:t&&typeof t=="object"&&"key"in t&&"value"in t&&t.value===null?n=new Qo(t.key,null):n=new Qo(t,null),Ug(this.items,n.key)||this.items.push(n)}get(t,n){const i=Ug(this.items,t);return!n&&Qs(i)?Mr(i.key)?i.key.value:i.key:i}set(t,n){if(typeof n!="boolean")throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof n}`);const i=Ug(this.items,t);i&&!n?this.items.splice(this.items.indexOf(i),1):!i&&n&&this.items.push(new Qo(t))}toJSON(t,n){return super.toJSON(t,n,Set)}toString(t,n,i){if(!t)return JSON.stringify(this);if(this.hasAllNullValues(!0))return super.toString(Object.assign({},t,{allNullValues:!0}),n,i);throw new Error("Set items must all have null values")}static from(t,n,i){const{replacer:r}=i,s=new this(t);if(n&&Symbol.iterator in Object(n))for(let a of n)typeof r=="function"&&(a=r.call(n,a,a)),s.items.push(_U(a,null,i));return s}}ov.tag="tag:yaml.org,2002:set";const MU={collection:"map",identify:e=>e instanceof Set,nodeClass:ov,default:!1,tag:"tag:yaml.org,2002:set",createNode:(e,t,n)=>ov.from(e,t,n),resolve(e,t){if(_E(e)){if(e.hasAllNullValues(!0))return Object.assign(new ov,e);t("Set items must all have null values")}else t("Expected a mapping for this tag");return e}};function LU(e,t){const n=e[0],i=n==="-"||n==="+"?e.substring(1):e,r=a=>t?BigInt(a):Number(a),s=i.replace(/_/g,"").split(":").reduce((a,l)=>a*r(60)+r(l),r(0));return n==="-"?r(-1)*s:s}function aTe(e){let{value:t}=e,n=a=>a;if(typeof t=="bigint")n=a=>BigInt(a);else if(isNaN(t)||!isFinite(t))return Xu(e);let i="";t<0&&(i="-",t*=n(-1));const r=n(60),s=[t%r];return t<60?s.unshift(0):(t=(t-s[0])/r,s.unshift(t%r),t>=60&&(t=(t-s[0])/r,s.unshift(t))),i+s.map(a=>String(a).padStart(2,"0")).join(":").replace(/000000\d*$/,"")}const oTe={identify:e=>typeof e=="bigint"||Number.isInteger(e),default:!0,tag:"tag:yaml.org,2002:int",format:"TIME",test:/^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+$/,resolve:(e,t,{intAsBigInt:n})=>LU(e,n),stringify:aTe},lTe={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"TIME",test:/^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*$/,resolve:e=>LU(e,!1),stringify:aTe},bI={identify:e=>e instanceof Date,default:!0,tag:"tag:yaml.org,2002:timestamp",test:RegExp("^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})(?:(?:t|T|[ \\t]+)([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}(\\.[0-9]+)?)(?:[ \\t]*(Z|[-+][012]?[0-9](?::[0-9]{2})?))?)?$"),resolve(e){const t=e.match(bI.test);if(!t)throw new Error("!!timestamp expects a date, starting with yyyy-mm-dd");const[,n,i,r,s,a,l]=t.map(Number),c=t[7]?Number((t[7]+"00").substr(1,3)):0;let u=Date.UTC(n,i-1,r,s||0,a||0,l||0,c);const d=t[8];if(d&&d!=="Z"){let f=LU(d,!1);Math.abs(f)<30&&(f*=60),u-=6e4*f}return new Date(u)},stringify:({value:e})=>(e==null?void 0:e.toISOString().replace(/(T00:00:00)?\.000Z$/,""))??""},JY=[Jx,e1,hI,pI,rTe,sTe,KSt,XSt,YSt,ZSt,qSt,WSt,GSt,RU,ch,PU,IU,MU,oTe,lTe,bI],eZ=new Map([["core",QSt],["failsafe",[Jx,e1,hI]],["json",HSt],["yaml11",JY],["yaml-1.1",JY]]),tZ={binary:RU,bool:NU,float:XCe,floatExp:KCe,floatNaN:GCe,floatTime:lTe,int:JCe,intHex:eTe,intOct:ZCe,intTime:oTe,map:Jx,merge:ch,null:pI,omap:PU,pairs:IU,seq:e1,set:MU,timestamp:bI},JSt={"tag:yaml.org,2002:binary":RU,"tag:yaml.org,2002:merge":ch,"tag:yaml.org,2002:omap":PU,"tag:yaml.org,2002:pairs":IU,"tag:yaml.org,2002:set":MU,"tag:yaml.org,2002:timestamp":bI};function ZM(e,t,n){const i=eZ.get(t);if(i&&!e)return n&&!i.includes(ch)?i.concat(ch):i.slice();let r=i;if(!r)if(Array.isArray(e))r=[];else{const s=Array.from(eZ.keys()).filter(a=>a!=="yaml11").map(a=>JSON.stringify(a)).join(", ");throw new Error(`Unknown schema "${t}"; use one of ${s} or define customTags array`)}if(Array.isArray(e))for(const s of e)r=r.concat(s);else typeof e=="function"&&(r=e(r.slice()));return n&&(r=r.concat(ch)),r.reduce((s,a)=>{const l=typeof a=="string"?tZ[a]:a;if(!l){const c=JSON.stringify(a),u=Object.keys(tZ).map(d=>JSON.stringify(d)).join(", ");throw new Error(`Unknown custom tag ${c}; use one of ${u}`)}return s.includes(l)||s.push(l),s},[])}const ekt=(e,t)=>e.keyt.key?1:0;let tkt=class cTe{constructor({compat:t,customTags:n,merge:i,resolveKnownTags:r,schema:s,sortMapEntries:a,toStringDefaults:l}){this.compat=Array.isArray(t)?ZM(t,"compat"):t?ZM(null,t):null,this.name=typeof s=="string"&&s||"core",this.knownTags=r?JSt:{},this.tags=ZM(n,this.name,i),this.toStringOptions=l??null,Object.defineProperty(this,rm,{value:Jx}),Object.defineProperty(this,zd,{value:hI}),Object.defineProperty(this,Xx,{value:e1}),this.sortMapEntries=typeof a=="function"?a:a===!0?ekt:null}clone(){const t=Object.create(cTe.prototype,Object.getOwnPropertyDescriptors(this));return t.tags=this.tags.slice(),t}};function nkt(e,t){var c;const n=[];let i=t.directives===!0;if(t.directives!==!1&&e.directives){const u=e.directives.toString(e);u?(n.push(u),i=!0):e.directives.docStart&&(i=!0)}i&&n.push("---");const r=QCe(e,t),{commentString:s}=r.options;if(e.commentBefore){n.length!==1&&n.unshift("");const u=s(e.commentBefore);n.unshift(Xf(u,""))}let a=!1,l=null;if(e.contents){if(Us(e.contents)){if(e.contents.spaceBefore&&i&&n.push(""),e.contents.commentBefore){const f=s(e.contents.commentBefore);n.push(Xf(f,""))}r.forceBlockIndent=!!e.comment,l=e.contents.comment}const u=l?void 0:()=>a=!0;let d=tx(e.contents,r,()=>l=null,u);l&&(d+=Bg(d,"",s(l))),(d[0]==="|"||d[0]===">")&&n[n.length-1]==="---"?n[n.length-1]=`--- ${d}`:n.push(d)}else n.push(tx(e.contents,r));if((c=e.directives)!=null&&c.docEnd)if(e.comment){const u=s(e.comment);u.includes(` -`)?(n.push("..."),n.push(Xf(u,""))):n.push(`... ${u}`)}else n.push("...");else{let u=e.comment;u&&a&&(u=u.replace(/^\n+/,"")),u&&((!a||l)&&n[n.length-1]!==""&&n.push(""),n.push(Xf(s(u),"")))}return n.join(` +${s.comment}`:i.comment}i=r}e.items[n]=Vs(i)?i:new qo(i)}}else t("Expected a sequence for this tag");return e}function mTe(e,t,n){const{replacer:i}=n,r=new Pb(e);r.tag="tag:yaml.org,2002:pairs";let s=0;if(t&&Symbol.iterator in Object(t))for(let a of t){typeof i=="function"&&(a=i.call(t,String(s++),a));let l,c;if(Array.isArray(a))if(a.length===2)l=a[0],c=a[1];else throw new TypeError(`Expected [key, value] tuple: ${a}`);else if(a&&a instanceof Object){const u=Object.keys(a);if(u.length===1)l=u[0],c=a[l];else throw new TypeError(`Expected tuple with one key, not ${u.length} keys`)}else l=a;r.items.push(PU(l,c,n))}return r}const $U={collection:"seq",default:!1,tag:"tag:yaml.org,2002:pairs",resolve:pTe,createNode:mTe};class dv extends Pb{constructor(){super(),this.add=qc.prototype.add.bind(this),this.delete=qc.prototype.delete.bind(this),this.get=qc.prototype.get.bind(this),this.has=qc.prototype.has.bind(this),this.set=qc.prototype.set.bind(this),this.tag=dv.tag}toJSON(t,n){if(!n)return super.toJSON(t);const i=new Map;n!=null&&n.onCreate&&n.onCreate(i);for(const r of this.items){let s,a;if(Vs(r)?(s=nu(r.key,"",n),a=nu(r.value,s,n)):s=nu(r,"",n),i.has(s))throw new Error("Ordered maps must not include duplicate keys");i.set(s,a)}return i}static from(t,n,i){const r=mTe(t,n,i),s=new this;return s.items=r.items,s}}dv.tag="tag:yaml.org,2002:omap";const FU={collection:"seq",identify:e=>e instanceof Map,nodeClass:dv,default:!1,tag:"tag:yaml.org,2002:omap",resolve(e,t){const n=pTe(e,t),i=[];for(const{key:r}of n.items)Qr(r)&&(i.includes(r.value)?t(`Ordered maps must not include duplicate keys: ${r.value}`):i.push(r.value));return Object.assign(new dv,n)},createNode:(e,t,n)=>dv.from(e,t,n)};function gTe({value:e,source:t},n){return t&&(e?bTe:yTe).test.test(t)?t:e?n.options.trueStr:n.options.falseStr}const bTe={identify:e=>e===!0,default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:Y|y|[Yy]es|YES|[Tt]rue|TRUE|[Oo]n|ON)$/,resolve:()=>new Zn(!0),stringify:gTe},yTe={identify:e=>e===!1,default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/,resolve:()=>new Zn(!1),stringify:gTe},ckt={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,resolve:e=>e.slice(-3).toLowerCase()==="nan"?NaN:e[0]==="-"?Number.NEGATIVE_INFINITY:Number.POSITIVE_INFINITY,stringify:Yu},ukt={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"EXP",test:/^[-+]?(?:[0-9][0-9_]*)?(?:\.[0-9_]*)?[eE][-+]?[0-9]+$/,resolve:e=>parseFloat(e.replace(/_/g,"")),stringify(e){const t=Number(e.value);return isFinite(t)?t.toExponential():Yu(e)}},dkt={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^[-+]?(?:[0-9][0-9_]*)?\.[0-9_]*$/,resolve(e){const t=new Zn(parseFloat(e.replace(/_/g,""))),n=e.indexOf(".");if(n!==-1){const i=e.substring(n+1).replace(/_/g,"");i[i.length-1]==="0"&&(t.minFractionDigits=i.length)}return t},stringify:Yu},DE=e=>typeof e=="bigint"||Number.isInteger(e);function OI(e,t,n,{intAsBigInt:i}){const r=e[0];if((r==="-"||r==="+")&&(t+=1),e=e.substring(t).replace(/_/g,""),i){switch(n){case 2:e=`0b${e}`;break;case 8:e=`0o${e}`;break;case 16:e=`0x${e}`;break}const a=BigInt(e);return r==="-"?BigInt(-1)*a:a}const s=parseInt(e,n);return r==="-"?-1*s:s}function BU(e,t,n){const{value:i}=e;if(DE(i)){const r=i.toString(t);return i<0?"-"+n+r.substr(1):n+r}return Yu(e)}const fkt={identify:DE,default:!0,tag:"tag:yaml.org,2002:int",format:"BIN",test:/^[-+]?0b[0-1_]+$/,resolve:(e,t,n)=>OI(e,2,2,n),stringify:e=>BU(e,2,"0b")},hkt={identify:DE,default:!0,tag:"tag:yaml.org,2002:int",format:"OCT",test:/^[-+]?0[0-7_]+$/,resolve:(e,t,n)=>OI(e,1,8,n),stringify:e=>BU(e,8,"0")},pkt={identify:DE,default:!0,tag:"tag:yaml.org,2002:int",test:/^[-+]?[0-9][0-9_]*$/,resolve:(e,t,n)=>OI(e,0,10,n),stringify:Yu},mkt={identify:DE,default:!0,tag:"tag:yaml.org,2002:int",format:"HEX",test:/^[-+]?0x[0-9a-fA-F_]+$/,resolve:(e,t,n)=>OI(e,2,16,n),stringify:e=>BU(e,16,"0x")};class fv extends qc{constructor(t){super(t),this.tag=fv.tag}add(t){let n;Vs(t)?n=t:t&&typeof t=="object"&&"key"in t&&"value"in t&&t.value===null?n=new qo(t.key,null):n=new qo(t,null),qg(this.items,n.key)||this.items.push(n)}get(t,n){const i=qg(this.items,t);return!n&&Vs(i)?Qr(i.key)?i.key.value:i.key:i}set(t,n){if(typeof n!="boolean")throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof n}`);const i=qg(this.items,t);i&&!n?this.items.splice(this.items.indexOf(i),1):!i&&n&&this.items.push(new qo(t))}toJSON(t,n){return super.toJSON(t,n,Set)}toString(t,n,i){if(!t)return JSON.stringify(this);if(this.hasAllNullValues(!0))return super.toString(Object.assign({},t,{allNullValues:!0}),n,i);throw new Error("Set items must all have null values")}static from(t,n,i){const{replacer:r}=i,s=new this(t);if(n&&Symbol.iterator in Object(n))for(let a of n)typeof r=="function"&&(a=r.call(n,a,a)),s.items.push(PU(a,null,i));return s}}fv.tag="tag:yaml.org,2002:set";const UU={collection:"map",identify:e=>e instanceof Set,nodeClass:fv,default:!1,tag:"tag:yaml.org,2002:set",createNode:(e,t,n)=>fv.from(e,t,n),resolve(e,t){if(IE(e)){if(e.hasAllNullValues(!0))return Object.assign(new fv,e);t("Set items must all have null values")}else t("Expected a mapping for this tag");return e}};function QU(e,t){const n=e[0],i=n==="-"||n==="+"?e.substring(1):e,r=a=>t?BigInt(a):Number(a),s=i.replace(/_/g,"").split(":").reduce((a,l)=>a*r(60)+r(l),r(0));return n==="-"?r(-1)*s:s}function vTe(e){let{value:t}=e,n=a=>a;if(typeof t=="bigint")n=a=>BigInt(a);else if(isNaN(t)||!isFinite(t))return Yu(e);let i="";t<0&&(i="-",t*=n(-1));const r=n(60),s=[t%r];return t<60?s.unshift(0):(t=(t-s[0])/r,s.unshift(t%r),t>=60&&(t=(t-s[0])/r,s.unshift(t))),i+s.map(a=>String(a).padStart(2,"0")).join(":").replace(/000000\d*$/,"")}const xTe={identify:e=>typeof e=="bigint"||Number.isInteger(e),default:!0,tag:"tag:yaml.org,2002:int",format:"TIME",test:/^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+$/,resolve:(e,t,{intAsBigInt:n})=>QU(e,n),stringify:vTe},wTe={identify:e=>typeof e=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"TIME",test:/^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*$/,resolve:e=>QU(e,!1),stringify:vTe},SI={identify:e=>e instanceof Date,default:!0,tag:"tag:yaml.org,2002:timestamp",test:RegExp("^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})(?:(?:t|T|[ \\t]+)([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}(\\.[0-9]+)?)(?:[ \\t]*(Z|[-+][012]?[0-9](?::[0-9]{2})?))?)?$"),resolve(e){const t=e.match(SI.test);if(!t)throw new Error("!!timestamp expects a date, starting with yyyy-mm-dd");const[,n,i,r,s,a,l]=t.map(Number),c=t[7]?Number((t[7]+"00").substr(1,3)):0;let u=Date.UTC(n,i-1,r,s||0,a||0,l||0,c);const d=t[8];if(d&&d!=="Z"){let f=QU(d,!1);Math.abs(f)<30&&(f*=60),u-=6e4*f}return new Date(u)},stringify:({value:e})=>(e==null?void 0:e.toISOString().replace(/(T00:00:00)?\.000Z$/,""))??""},lZ=[r1,s1,vI,xI,bTe,yTe,fkt,hkt,pkt,mkt,ckt,ukt,dkt,LU,lh,FU,$U,UU,xTe,wTe,SI],cZ=new Map([["core",skt],["failsafe",[r1,s1,vI]],["json",lkt],["yaml11",lZ],["yaml-1.1",lZ]]),uZ={binary:LU,bool:DU,float:cTe,floatExp:lTe,floatNaN:oTe,floatTime:wTe,int:fTe,intHex:hTe,intOct:dTe,intTime:xTe,map:r1,merge:lh,null:xI,omap:FU,pairs:$U,seq:s1,set:UU,timestamp:SI},gkt={"tag:yaml.org,2002:binary":LU,"tag:yaml.org,2002:merge":lh,"tag:yaml.org,2002:omap":FU,"tag:yaml.org,2002:pairs":$U,"tag:yaml.org,2002:set":UU,"tag:yaml.org,2002:timestamp":SI};function i5(e,t,n){const i=cZ.get(t);if(i&&!e)return n&&!i.includes(lh)?i.concat(lh):i.slice();let r=i;if(!r)if(Array.isArray(e))r=[];else{const s=Array.from(cZ.keys()).filter(a=>a!=="yaml11").map(a=>JSON.stringify(a)).join(", ");throw new Error(`Unknown schema "${t}"; use one of ${s} or define customTags array`)}if(Array.isArray(e))for(const s of e)r=r.concat(s);else typeof e=="function"&&(r=e(r.slice()));return n&&(r=r.concat(lh)),r.reduce((s,a)=>{const l=typeof a=="string"?uZ[a]:a;if(!l){const c=JSON.stringify(a),u=Object.keys(uZ).map(d=>JSON.stringify(d)).join(", ");throw new Error(`Unknown custom tag ${c}; use one of ${u}`)}return s.includes(l)||s.push(l),s},[])}const bkt=(e,t)=>e.keyt.key?1:0;let ykt=class OTe{constructor({compat:t,customTags:n,merge:i,resolveKnownTags:r,schema:s,sortMapEntries:a,toStringDefaults:l}){this.compat=Array.isArray(t)?i5(t,"compat"):t?i5(null,t):null,this.name=typeof s=="string"&&s||"core",this.knownTags=r?gkt:{},this.tags=i5(n,this.name,i),this.toStringOptions=l??null,Object.defineProperty(this,lm,{value:r1}),Object.defineProperty(this,Hd,{value:vI}),Object.defineProperty(this,t1,{value:s1}),this.sortMapEntries=typeof a=="function"?a:a===!0?bkt:null}clone(){const t=Object.create(OTe.prototype,Object.getOwnPropertyDescriptors(this));return t.tags=this.tags.slice(),t}};function vkt(e,t){var c;const n=[];let i=t.directives===!0;if(t.directives!==!1&&e.directives){const u=e.directives.toString(e);u?(n.push(u),i=!0):e.directives.docStart&&(i=!0)}i&&n.push("---");const r=tTe(e,t),{commentString:s}=r.options;if(e.commentBefore){n.length!==1&&n.unshift("");const u=s(e.commentBefore);n.unshift(Gf(u,""))}let a=!1,l=null;if(e.contents){if(zs(e.contents)){if(e.contents.spaceBefore&&i&&n.push(""),e.contents.commentBefore){const f=s(e.contents.commentBefore);n.push(Gf(f,""))}r.forceBlockIndent=!!e.comment,l=e.contents.comment}const u=l?void 0:()=>a=!0;let d=ax(e.contents,r,()=>l=null,u);l&&(d+=Hg(d,"",s(l))),(d[0]==="|"||d[0]===">")&&n[n.length-1]==="---"?n[n.length-1]=`--- ${d}`:n.push(d)}else n.push(ax(e.contents,r));if((c=e.directives)!=null&&c.docEnd)if(e.comment){const u=s(e.comment);u.includes(` +`)?(n.push("..."),n.push(Gf(u,""))):n.push(`... ${u}`)}else n.push("...");else{let u=e.comment;u&&a&&(u=u.replace(/^\n+/,"")),u&&((!a||l)&&n[n.length-1]!==""&&n.push(""),n.push(Gf(s(u),"")))}return n.join(` `)+` -`}class RE{constructor(t,n,i){this.commentBefore=null,this.comment=null,this.errors=[],this.warnings=[],Object.defineProperty(this,ru,{value:r$});let r=null;typeof n=="function"||Array.isArray(n)?r=n:i===void 0&&n&&(i=n,n=void 0);const s=Object.assign({intAsBigInt:!1,keepSourceTokens:!1,logLevel:"warn",prettyErrors:!0,strict:!0,stringKeys:!1,uniqueKeys:!0,version:"1.2"},i);this.options=s;let{version:a}=s;i!=null&&i._directives?(this.directives=i._directives.atDocument(),this.directives.yaml.explicit&&(a=this.directives.yaml.version)):this.directives=new Po({version:a}),this.setSchema(a,i),this.contents=t===void 0?null:this.createNode(t,r,i)}clone(){const t=Object.create(RE.prototype,{[ru]:{value:r$}});return t.commentBefore=this.commentBefore,t.comment=this.comment,t.errors=this.errors.slice(),t.warnings=this.warnings.slice(),t.options=Object.assign({},this.options),this.directives&&(t.directives=this.directives.clone()),t.schema=this.schema.clone(),t.contents=Us(this.contents)?this.contents.clone(t.schema):this.contents,this.range&&(t.range=this.range.slice()),t}add(t){B0(this.contents)&&this.contents.add(t)}addIn(t,n){B0(this.contents)&&this.contents.addIn(t,n)}createAlias(t,n){if(!t.anchor){const i=LCe(this);t.anchor=!n||i.has(n)?$Ce(n||"a",i):n}return new TU(t.anchor)}createNode(t,n,i){let r;if(typeof n=="function")t=n.call({"":t},"",t),r=n;else if(Array.isArray(n)){const v=x=>typeof x=="number"||x instanceof String||x instanceof Number,y=n.filter(v).map(String);y.length>0&&(n=n.concat(y)),r=n}else i===void 0&&n&&(i=n,n=void 0);const{aliasDuplicateObjects:s,anchorPrefix:a,flow:l,keepUndefined:c,onTagObj:u,tag:d}=i??{},{onAnchor:f,setAnchors:h,sourceObjects:m}=_St(this,a||"a"),g={aliasDuplicateObjects:s??!0,keepUndefined:c??!1,onAnchor:f,onTagObj:u,replacer:r,schema:this.schema,sourceObjects:m},b=GS(t,d,g);return l&&Fs(b)&&(b.flow=!0),h(),b}createPair(t,n,i={}){const r=this.createNode(t,null,i),s=this.createNode(n,null,i);return new Qo(r,s)}delete(t){return B0(this.contents)?this.contents.delete(t):!1}deleteIn(t){return Uw(t)?this.contents==null?!1:(this.contents=null,!0):B0(this.contents)?this.contents.deleteIn(t):!1}get(t,n){return Fs(this.contents)?this.contents.get(t,n):void 0}getIn(t,n){return Uw(t)?!n&&Mr(this.contents)?this.contents.value:this.contents:Fs(this.contents)?this.contents.getIn(t,n):void 0}has(t){return Fs(this.contents)?this.contents.has(t):!1}hasIn(t){return Uw(t)?this.contents!==void 0:Fs(this.contents)?this.contents.hasIn(t):!1}set(t,n){this.contents==null?this.contents=EN(this.schema,[t],n):B0(this.contents)&&this.contents.set(t,n)}setIn(t,n){Uw(t)?this.contents=n:this.contents==null?this.contents=EN(this.schema,Array.from(t),n):B0(this.contents)&&this.contents.setIn(t,n)}setSchema(t,n={}){typeof t=="number"&&(t=String(t));let i;switch(t){case"1.1":this.directives?this.directives.yaml.version="1.1":this.directives=new Po({version:"1.1"}),i={resolveKnownTags:!1,schema:"yaml-1.1"};break;case"1.2":case"next":this.directives?this.directives.yaml.version=t:this.directives=new Po({version:t}),i={resolveKnownTags:!0,schema:"core"};break;case null:this.directives&&delete this.directives,i=null;break;default:{const r=JSON.stringify(t);throw new Error(`Expected '1.1', '1.2' or null as first argument, but found: ${r}`)}}if(n.schema instanceof Object)this.schema=n.schema;else if(i)this.schema=new tkt(Object.assign(i,n));else throw new Error("With a null YAML version, the { schema: Schema } option is required")}toJS({json:t,jsonArg:n,mapAsMap:i,maxAliasCount:r,onAnchor:s,reviver:a}={}){const l={anchors:new Map,doc:this,keep:!t,mapAsMap:i===!0,mapKeyWarned:!1,maxAliasCount:typeof r=="number"?r:100},c=tu(this.contents,n??"",l);if(typeof s=="function")for(const{count:u,res:d}of l.anchors.values())s(d,u);return typeof a=="function"?Py(a,{"":c},"",c):c}toJSON(t,n){return this.toJS({json:!0,jsonArg:t,mapAsMap:!1,onAnchor:n})}toString(t={}){if(this.errors.length>0)throw new Error("Document with errors cannot be stringified");if("indent"in t&&(!Number.isInteger(t.indent)||Number(t.indent)<=0)){const n=JSON.stringify(t.indent);throw new Error(`"indent" option must be a positive integer, not ${n}`)}return nkt(this,t)}}function B0(e){if(Fs(e))return!0;throw new Error("Expected a YAML collection as document contents")}class uTe extends Error{constructor(t,n,i,r){super(),this.name=t,this.code=i,this.message=r,this.pos=n}}class Qw extends uTe{constructor(t,n,i){super("YAMLParseError",t,n,i)}}class ikt extends uTe{constructor(t,n,i){super("YAMLWarning",t,n,i)}}const nZ=(e,t)=>n=>{if(n.pos[0]===-1)return;n.linePos=n.pos.map(l=>t.linePos(l));const{line:i,col:r}=n.linePos[0];n.message+=` at line ${i}, column ${r}`;let s=r-1,a=e.substring(t.lineStarts[i-1],t.lineStarts[i]).replace(/[\n\r]+$/,"");if(s>=60&&a.length>80){const l=Math.min(s-39,a.length-79);a="…"+a.substring(l),s-=l-1}if(a.length>80&&(a=a.substring(0,79)+"…"),i>1&&/^ *$/.test(a.substring(0,s))){let l=e.substring(t.lineStarts[i-2],t.lineStarts[i-1]);l.length>80&&(l=l.substring(0,79)+`… +`}class ME{constructor(t,n,i){this.commentBefore=null,this.comment=null,this.errors=[],this.warnings=[],Object.defineProperty(this,su,{value:c$});let r=null;typeof n=="function"||Array.isArray(n)?r=n:i===void 0&&n&&(i=n,n=void 0);const s=Object.assign({intAsBigInt:!1,keepSourceTokens:!1,logLevel:"warn",prettyErrors:!0,strict:!0,stringKeys:!1,uniqueKeys:!0,version:"1.2"},i);this.options=s;let{version:a}=s;i!=null&&i._directives?(this.directives=i._directives.atDocument(),this.directives.yaml.explicit&&(a=this.directives.yaml.version)):this.directives=new $o({version:a}),this.setSchema(a,i),this.contents=t===void 0?null:this.createNode(t,r,i)}clone(){const t=Object.create(ME.prototype,{[su]:{value:c$}});return t.commentBefore=this.commentBefore,t.comment=this.comment,t.errors=this.errors.slice(),t.warnings=this.warnings.slice(),t.options=Object.assign({},this.options),this.directives&&(t.directives=this.directives.clone()),t.schema=this.schema.clone(),t.contents=zs(this.contents)?this.contents.clone(t.schema):this.contents,this.range&&(t.range=this.range.slice()),t}add(t){H0(this.contents)&&this.contents.add(t)}addIn(t,n){H0(this.contents)&&this.contents.addIn(t,n)}createAlias(t,n){if(!t.anchor){const i=XCe(this);t.anchor=!n||i.has(n)?YCe(n||"a",i):n}return new RU(t.anchor)}createNode(t,n,i){let r;if(typeof n=="function")t=n.call({"":t},"",t),r=n;else if(Array.isArray(n)){const v=x=>typeof x=="number"||x instanceof String||x instanceof Number,y=n.filter(v).map(String);y.length>0&&(n=n.concat(y)),r=n}else i===void 0&&n&&(i=n,n=void 0);const{aliasDuplicateObjects:s,anchorPrefix:a,flow:l,keepUndefined:c,onTagObj:u,tag:d}=i??{},{onAnchor:f,setAnchors:h,sourceObjects:m}=qSt(this,a||"a"),g={aliasDuplicateObjects:s??!0,keepUndefined:c??!1,onAnchor:f,onTagObj:u,replacer:r,schema:this.schema,sourceObjects:m},b=ZS(t,d,g);return l&&Us(b)&&(b.flow=!0),h(),b}createPair(t,n,i={}){const r=this.createNode(t,null,i),s=this.createNode(n,null,i);return new qo(r,s)}delete(t){return H0(this.contents)?this.contents.delete(t):!1}deleteIn(t){return Hw(t)?this.contents==null?!1:(this.contents=null,!0):H0(this.contents)?this.contents.deleteIn(t):!1}get(t,n){return Us(this.contents)?this.contents.get(t,n):void 0}getIn(t,n){return Hw(t)?!n&&Qr(this.contents)?this.contents.value:this.contents:Us(this.contents)?this.contents.getIn(t,n):void 0}has(t){return Us(this.contents)?this.contents.has(t):!1}hasIn(t){return Hw(t)?this.contents!==void 0:Us(this.contents)?this.contents.hasIn(t):!1}set(t,n){this.contents==null?this.contents=NN(this.schema,[t],n):H0(this.contents)&&this.contents.set(t,n)}setIn(t,n){Hw(t)?this.contents=n:this.contents==null?this.contents=NN(this.schema,Array.from(t),n):H0(this.contents)&&this.contents.setIn(t,n)}setSchema(t,n={}){typeof t=="number"&&(t=String(t));let i;switch(t){case"1.1":this.directives?this.directives.yaml.version="1.1":this.directives=new $o({version:"1.1"}),i={resolveKnownTags:!1,schema:"yaml-1.1"};break;case"1.2":case"next":this.directives?this.directives.yaml.version=t:this.directives=new $o({version:t}),i={resolveKnownTags:!0,schema:"core"};break;case null:this.directives&&delete this.directives,i=null;break;default:{const r=JSON.stringify(t);throw new Error(`Expected '1.1', '1.2' or null as first argument, but found: ${r}`)}}if(n.schema instanceof Object)this.schema=n.schema;else if(i)this.schema=new ykt(Object.assign(i,n));else throw new Error("With a null YAML version, the { schema: Schema } option is required")}toJS({json:t,jsonArg:n,mapAsMap:i,maxAliasCount:r,onAnchor:s,reviver:a}={}){const l={anchors:new Map,doc:this,keep:!t,mapAsMap:i===!0,mapKeyWarned:!1,maxAliasCount:typeof r=="number"?r:100},c=nu(this.contents,n??"",l);if(typeof s=="function")for(const{count:u,res:d}of l.anchors.values())s(d,u);return typeof a=="function"?Fy(a,{"":c},"",c):c}toJSON(t,n){return this.toJS({json:!0,jsonArg:t,mapAsMap:!1,onAnchor:n})}toString(t={}){if(this.errors.length>0)throw new Error("Document with errors cannot be stringified");if("indent"in t&&(!Number.isInteger(t.indent)||Number(t.indent)<=0)){const n=JSON.stringify(t.indent);throw new Error(`"indent" option must be a positive integer, not ${n}`)}return vkt(this,t)}}function H0(e){if(Us(e))return!0;throw new Error("Expected a YAML collection as document contents")}class STe extends Error{constructor(t,n,i,r){super(),this.name=t,this.code=i,this.message=r,this.pos=n}}class qw extends STe{constructor(t,n,i){super("YAMLParseError",t,n,i)}}class xkt extends STe{constructor(t,n,i){super("YAMLWarning",t,n,i)}}const dZ=(e,t)=>n=>{if(n.pos[0]===-1)return;n.linePos=n.pos.map(l=>t.linePos(l));const{line:i,col:r}=n.linePos[0];n.message+=` at line ${i}, column ${r}`;let s=r-1,a=e.substring(t.lineStarts[i-1],t.lineStarts[i]).replace(/[\n\r]+$/,"");if(s>=60&&a.length>80){const l=Math.min(s-39,a.length-79);a="…"+a.substring(l),s-=l-1}if(a.length>80&&(a=a.substring(0,79)+"…"),i>1&&/^ *$/.test(a.substring(0,s))){let l=e.substring(t.lineStarts[i-2],t.lineStarts[i-1]);l.length>80&&(l=l.substring(0,79)+`… `),a=l+a}if(/[^ ]/.test(a)){let l=1;const c=n.linePos[1];(c==null?void 0:c.line)===i&&c.col>r&&(l=Math.max(1,Math.min(c.col-r,80-s)));const u=" ".repeat(s)+"^".repeat(l);n.message+=`: ${a} ${u} -`}};function nx(e,{flow:t,indicator:n,next:i,offset:r,onError:s,parentIndent:a,startOnNewline:l}){let c=!1,u=l,d=l,f="",h="",m=!1,g=!1,b=null,v=null,y=null,x=null,O=null,w=null,k=null;for(const C of e)switch(g&&(C.type!=="space"&&C.type!=="newline"&&C.type!=="comma"&&s(C.offset,"MISSING_CHAR","Tags and anchors must be separated from the next token by white space"),g=!1),b&&(u&&C.type!=="comment"&&C.type!=="newline"&&s(b,"TAB_AS_INDENT","Tabs are not allowed as indentation"),b=null),C.type){case"space":!t&&(n!=="doc-start"||(i==null?void 0:i.type)!=="flow-collection")&&C.source.includes(" ")&&(b=C),d=!0;break;case"comment":{d||s(C,"MISSING_CHAR","Comments must be separated from other tokens by white space characters");const N=C.source.substring(1)||" ";f?f+=h+N:f=N,h="",u=!1;break}case"newline":u?f?f+=C.source:(!w||n!=="seq-item-ind")&&(c=!0):h+=C.source,u=!0,m=!0,(v||y)&&(x=C),d=!0;break;case"anchor":v&&s(C,"MULTIPLE_ANCHORS","A node can have at most one anchor"),C.source.endsWith(":")&&s(C.offset+C.source.length-1,"BAD_ALIAS","Anchor ending in : is ambiguous",!0),v=C,k??(k=C.offset),u=!1,d=!1,g=!0;break;case"tag":{y&&s(C,"MULTIPLE_TAGS","A node can have at most one tag"),y=C,k??(k=C.offset),u=!1,d=!1,g=!0;break}case n:(v||y)&&s(C,"BAD_PROP_ORDER",`Anchors and tags must be after the ${C.source} indicator`),w&&s(C,"UNEXPECTED_TOKEN",`Unexpected ${C.source} in ${t??"collection"}`),w=C,u=n==="seq-item-ind"||n==="explicit-key-ind",d=!1;break;case"comma":if(t){O&&s(C,"UNEXPECTED_TOKEN",`Unexpected , in ${t}`),O=C,u=!1,d=!1;break}default:s(C,"UNEXPECTED_TOKEN",`Unexpected ${C.type} token`),u=!1,d=!1}const S=e[e.length-1],E=S?S.offset+S.source.length:r;return g&&i&&i.type!=="space"&&i.type!=="newline"&&i.type!=="comma"&&(i.type!=="scalar"||i.source!=="")&&s(i.offset,"MISSING_CHAR","Tags and anchors must be separated from the next token by white space"),b&&(u&&b.indent<=a||(i==null?void 0:i.type)==="block-map"||(i==null?void 0:i.type)==="block-seq")&&s(b,"TAB_AS_INDENT","Tabs are not allowed as indentation"),{comma:O,found:w,spaceBefore:c,comment:f,hasNewline:m,anchor:v,tag:y,newlineAfterProp:x,end:E,start:k??E}}function KS(e){if(!e)return null;switch(e.type){case"alias":case"scalar":case"double-quoted-scalar":case"single-quoted-scalar":if(e.source.includes(` -`))return!0;if(e.end){for(const t of e.end)if(t.type==="newline")return!0}return!1;case"flow-collection":for(const t of e.items){for(const n of t.start)if(n.type==="newline")return!0;if(t.sep){for(const n of t.sep)if(n.type==="newline")return!0}if(KS(t.key)||KS(t.value))return!0}return!1;default:return!0}}function l$(e,t,n){if((t==null?void 0:t.type)==="flow-collection"){const i=t.end[0];i.indent===e&&(i.source==="]"||i.source==="}")&&KS(t)&&n(i,"BAD_INDENT","Flow end indicator should be more indented than parent",!0)}}function dTe(e,t,n){const{uniqueKeys:i}=e.options;if(i===!1)return!1;const r=typeof i=="function"?i:(s,a)=>s===a||Mr(s)&&Mr(a)&&s.value===a.value;return t.some(s=>r(s.key,n))}const iZ="All mapping items must start at the same column";function rkt({composeNode:e,composeEmptyNode:t},n,i,r,s){var d;const a=(s==null?void 0:s.nodeClass)??Hc,l=new a(n.schema);n.atRoot&&(n.atRoot=!1);let c=i.offset,u=null;for(const f of i.items){const{start:h,key:m,sep:g,value:b}=f,v=nx(h,{indicator:"explicit-key-ind",next:m??(g==null?void 0:g[0]),offset:c,onError:r,parentIndent:i.indent,startOnNewline:!0}),y=!v.found;if(y){if(m&&(m.type==="block-seq"?r(c,"BLOCK_AS_IMPLICIT_KEY","A block sequence may not be used as an implicit map key"):"indent"in m&&m.indent!==i.indent&&r(c,"BAD_INDENT",iZ)),!v.anchor&&!v.tag&&!g){u=v.end,v.comment&&(l.comment?l.comment+=` -`+v.comment:l.comment=v.comment);continue}(v.newlineAfterProp||KS(m))&&r(m??h[h.length-1],"MULTILINE_IMPLICIT_KEY","Implicit keys need to be on a single line")}else((d=v.found)==null?void 0:d.indent)!==i.indent&&r(c,"BAD_INDENT",iZ);n.atKey=!0;const x=v.end,O=m?e(n,m,v,r):t(n,x,h,null,v,r);n.schema.compat&&l$(i.indent,m,r),n.atKey=!1,dTe(n,l.items,O)&&r(x,"DUPLICATE_KEY","Map keys must be unique");const w=nx(g??[],{indicator:"map-value-ind",next:b,offset:O.range[2],onError:r,parentIndent:i.indent,startOnNewline:!m||m.type==="block-scalar"});if(c=w.end,w.found){y&&((b==null?void 0:b.type)==="block-map"&&!w.hasNewline&&r(c,"BLOCK_AS_IMPLICIT_KEY","Nested mappings are not allowed in compact mappings"),n.options.strict&&v.starte&&(e.type==="block-map"||e.type==="block-seq");function akt({composeNode:e,composeEmptyNode:t},n,i,r,s){var v;const a=i.start.source==="{",l=a?"flow map":"flow sequence",c=(s==null?void 0:s.nodeClass)??(a?Hc:_b),u=new c(n.schema);u.flow=!0;const d=n.atRoot;d&&(n.atRoot=!1),n.atKey&&(n.atKey=!1);let f=i.offset+i.start.source.length;for(let y=0;y0){const y=IE(g,b,n.options.strict,r);y.comment&&(u.comment?u.comment+=` -`+y.comment:u.comment=y.comment),u.range=[i.offset,b,y.offset]}else u.range=[i.offset,b,b];return u}function t5(e,t,n,i,r,s){const a=n.type==="block-map"?rkt(e,t,n,i,s):n.type==="block-seq"?skt(e,t,n,i,s):akt(e,t,n,i,s),l=a.constructor;return r==="!"||r===l.tagName?(a.tag=l.tagName,a):(r&&(a.tag=r),a)}function okt(e,t,n,i,r){var h;const s=i.tag,a=s?t.directives.tagName(s.source,m=>r(s,"TAG_RESOLVE_FAILED",m)):null;if(n.type==="block-seq"){const{anchor:m,newlineAfterProp:g}=i,b=m&&s?m.offset>s.offset?m:s:m??s;b&&(!g||g.offsetm.tag===a&&m.collection===l);if(!c){const m=t.schema.knownTags[a];if((m==null?void 0:m.collection)===l)t.schema.tags.push(Object.assign({},m,{default:!1})),c=m;else return m?r(s,"BAD_COLLECTION_TYPE",`${m.tag} used for ${l} collection, but expects ${m.collection??"scalar"}`,!0):r(s,"TAG_RESOLVE_FAILED",`Unresolved tag: ${a}`,!0),t5(e,t,n,r,a)}const u=t5(e,t,n,r,a,c),d=((h=c.resolve)==null?void 0:h.call(c,u,m=>r(s,"TAG_RESOLVE_FAILED",m),t.options))??u,f=Us(d)?d:new Wn(d);return f.range=u.range,f.tag=a,c!=null&&c.format&&(f.format=c.format),f}function lkt(e,t,n){const i=t.offset,r=ckt(t,e.options.strict,n);if(!r)return{value:"",type:null,comment:"",range:[i,i,i]};const s=r.mode===">"?Wn.BLOCK_FOLDED:Wn.BLOCK_LITERAL,a=t.source?ukt(t.source):[];let l=a.length;for(let b=a.length-1;b>=0;--b){const v=a[b][1];if(v===""||v==="\r")l=b;else break}if(l===0){const b=r.chomp==="+"&&a.length>0?` +`}};function ox(e,{flow:t,indicator:n,next:i,offset:r,onError:s,parentIndent:a,startOnNewline:l}){let c=!1,u=l,d=l,f="",h="",m=!1,g=!1,b=null,v=null,y=null,x=null,O=null,w=null,k=null;for(const C of e)switch(g&&(C.type!=="space"&&C.type!=="newline"&&C.type!=="comma"&&s(C.offset,"MISSING_CHAR","Tags and anchors must be separated from the next token by white space"),g=!1),b&&(u&&C.type!=="comment"&&C.type!=="newline"&&s(b,"TAB_AS_INDENT","Tabs are not allowed as indentation"),b=null),C.type){case"space":!t&&(n!=="doc-start"||(i==null?void 0:i.type)!=="flow-collection")&&C.source.includes(" ")&&(b=C),d=!0;break;case"comment":{d||s(C,"MISSING_CHAR","Comments must be separated from other tokens by white space characters");const N=C.source.substring(1)||" ";f?f+=h+N:f=N,h="",u=!1;break}case"newline":u?f?f+=C.source:(!w||n!=="seq-item-ind")&&(c=!0):h+=C.source,u=!0,m=!0,(v||y)&&(x=C),d=!0;break;case"anchor":v&&s(C,"MULTIPLE_ANCHORS","A node can have at most one anchor"),C.source.endsWith(":")&&s(C.offset+C.source.length-1,"BAD_ALIAS","Anchor ending in : is ambiguous",!0),v=C,k??(k=C.offset),u=!1,d=!1,g=!0;break;case"tag":{y&&s(C,"MULTIPLE_TAGS","A node can have at most one tag"),y=C,k??(k=C.offset),u=!1,d=!1,g=!0;break}case n:(v||y)&&s(C,"BAD_PROP_ORDER",`Anchors and tags must be after the ${C.source} indicator`),w&&s(C,"UNEXPECTED_TOKEN",`Unexpected ${C.source} in ${t??"collection"}`),w=C,u=n==="seq-item-ind"||n==="explicit-key-ind",d=!1;break;case"comma":if(t){O&&s(C,"UNEXPECTED_TOKEN",`Unexpected , in ${t}`),O=C,u=!1,d=!1;break}default:s(C,"UNEXPECTED_TOKEN",`Unexpected ${C.type} token`),u=!1,d=!1}const S=e[e.length-1],E=S?S.offset+S.source.length:r;return g&&i&&i.type!=="space"&&i.type!=="newline"&&i.type!=="comma"&&(i.type!=="scalar"||i.source!=="")&&s(i.offset,"MISSING_CHAR","Tags and anchors must be separated from the next token by white space"),b&&(u&&b.indent<=a||(i==null?void 0:i.type)==="block-map"||(i==null?void 0:i.type)==="block-seq")&&s(b,"TAB_AS_INDENT","Tabs are not allowed as indentation"),{comma:O,found:w,spaceBefore:c,comment:f,hasNewline:m,anchor:v,tag:y,newlineAfterProp:x,end:E,start:k??E}}function JS(e){if(!e)return null;switch(e.type){case"alias":case"scalar":case"double-quoted-scalar":case"single-quoted-scalar":if(e.source.includes(` +`))return!0;if(e.end){for(const t of e.end)if(t.type==="newline")return!0}return!1;case"flow-collection":for(const t of e.items){for(const n of t.start)if(n.type==="newline")return!0;if(t.sep){for(const n of t.sep)if(n.type==="newline")return!0}if(JS(t.key)||JS(t.value))return!0}return!1;default:return!0}}function h$(e,t,n){if((t==null?void 0:t.type)==="flow-collection"){const i=t.end[0];i.indent===e&&(i.source==="]"||i.source==="}")&&JS(t)&&n(i,"BAD_INDENT","Flow end indicator should be more indented than parent",!0)}}function kTe(e,t,n){const{uniqueKeys:i}=e.options;if(i===!1)return!1;const r=typeof i=="function"?i:(s,a)=>s===a||Qr(s)&&Qr(a)&&s.value===a.value;return t.some(s=>r(s.key,n))}const fZ="All mapping items must start at the same column";function wkt({composeNode:e,composeEmptyNode:t},n,i,r,s){var d;const a=(s==null?void 0:s.nodeClass)??qc,l=new a(n.schema);n.atRoot&&(n.atRoot=!1);let c=i.offset,u=null;for(const f of i.items){const{start:h,key:m,sep:g,value:b}=f,v=ox(h,{indicator:"explicit-key-ind",next:m??(g==null?void 0:g[0]),offset:c,onError:r,parentIndent:i.indent,startOnNewline:!0}),y=!v.found;if(y){if(m&&(m.type==="block-seq"?r(c,"BLOCK_AS_IMPLICIT_KEY","A block sequence may not be used as an implicit map key"):"indent"in m&&m.indent!==i.indent&&r(c,"BAD_INDENT",fZ)),!v.anchor&&!v.tag&&!g){u=v.end,v.comment&&(l.comment?l.comment+=` +`+v.comment:l.comment=v.comment);continue}(v.newlineAfterProp||JS(m))&&r(m??h[h.length-1],"MULTILINE_IMPLICIT_KEY","Implicit keys need to be on a single line")}else((d=v.found)==null?void 0:d.indent)!==i.indent&&r(c,"BAD_INDENT",fZ);n.atKey=!0;const x=v.end,O=m?e(n,m,v,r):t(n,x,h,null,v,r);n.schema.compat&&h$(i.indent,m,r),n.atKey=!1,kTe(n,l.items,O)&&r(x,"DUPLICATE_KEY","Map keys must be unique");const w=ox(g??[],{indicator:"map-value-ind",next:b,offset:O.range[2],onError:r,parentIndent:i.indent,startOnNewline:!m||m.type==="block-scalar"});if(c=w.end,w.found){y&&((b==null?void 0:b.type)==="block-map"&&!w.hasNewline&&r(c,"BLOCK_AS_IMPLICIT_KEY","Nested mappings are not allowed in compact mappings"),n.options.strict&&v.starte&&(e.type==="block-map"||e.type==="block-seq");function Skt({composeNode:e,composeEmptyNode:t},n,i,r,s){var v;const a=i.start.source==="{",l=a?"flow map":"flow sequence",c=(s==null?void 0:s.nodeClass)??(a?qc:Pb),u=new c(n.schema);u.flow=!0;const d=n.atRoot;d&&(n.atRoot=!1),n.atKey&&(n.atKey=!1);let f=i.offset+i.start.source.length;for(let y=0;y0){const y=LE(g,b,n.options.strict,r);y.comment&&(u.comment?u.comment+=` +`+y.comment:u.comment=y.comment),u.range=[i.offset,b,y.offset]}else u.range=[i.offset,b,b];return u}function a5(e,t,n,i,r,s){const a=n.type==="block-map"?wkt(e,t,n,i,s):n.type==="block-seq"?Okt(e,t,n,i,s):Skt(e,t,n,i,s),l=a.constructor;return r==="!"||r===l.tagName?(a.tag=l.tagName,a):(r&&(a.tag=r),a)}function kkt(e,t,n,i,r){var h;const s=i.tag,a=s?t.directives.tagName(s.source,m=>r(s,"TAG_RESOLVE_FAILED",m)):null;if(n.type==="block-seq"){const{anchor:m,newlineAfterProp:g}=i,b=m&&s?m.offset>s.offset?m:s:m??s;b&&(!g||g.offsetm.tag===a&&m.collection===l);if(!c){const m=t.schema.knownTags[a];if((m==null?void 0:m.collection)===l)t.schema.tags.push(Object.assign({},m,{default:!1})),c=m;else return m?r(s,"BAD_COLLECTION_TYPE",`${m.tag} used for ${l} collection, but expects ${m.collection??"scalar"}`,!0):r(s,"TAG_RESOLVE_FAILED",`Unresolved tag: ${a}`,!0),a5(e,t,n,r,a)}const u=a5(e,t,n,r,a,c),d=((h=c.resolve)==null?void 0:h.call(c,u,m=>r(s,"TAG_RESOLVE_FAILED",m),t.options))??u,f=zs(d)?d:new Zn(d);return f.range=u.range,f.tag=a,c!=null&&c.format&&(f.format=c.format),f}function Ekt(e,t,n){const i=t.offset,r=Ckt(t,e.options.strict,n);if(!r)return{value:"",type:null,comment:"",range:[i,i,i]};const s=r.mode===">"?Zn.BLOCK_FOLDED:Zn.BLOCK_LITERAL,a=t.source?Tkt(t.source):[];let l=a.length;for(let b=a.length-1;b>=0;--b){const v=a[b][1];if(v===""||v==="\r")l=b;else break}if(l===0){const b=r.chomp==="+"&&a.length>0?` `.repeat(Math.max(1,a.length-1)):"";let v=i+r.length;return t.source&&(v+=t.source.length),{value:b,type:s,comment:r.comment,range:[i,v,v]}}let c=t.indent+r.indent,u=t.offset+r.length,d=0;for(let b=0;bc&&(c=v.length);else{v.length=l;--b)a[b][0].length>c&&(l=b+1);let f="",h="",m=!1;for(let b=0;bc||y[0]===" "?(h===" "?h=` `:!m&&h===` `&&(h=` @@ -653,107 +653,107 @@ ${u} `+a[b][0].slice(c);f[f.length-1]!==` `&&(f+=` `);break;default:f+=` -`}const g=i+r.length+t.source.length;return{value:f,type:s,comment:r.comment,range:[i,g,g]}}function ckt({offset:e,props:t},n,i){if(t[0].type!=="block-scalar-header")return i(t[0],"IMPOSSIBLE","Block scalar header not found"),null;const{source:r}=t[0],s=r[0];let a=0,l="",c=-1;for(let h=1;hn(i+h,m,g);switch(r){case"scalar":l=Wn.PLAIN,c=fkt(s,u);break;case"single-quoted-scalar":l=Wn.QUOTE_SINGLE,c=hkt(s,u);break;case"double-quoted-scalar":l=Wn.QUOTE_DOUBLE,c=pkt(s,u);break;default:return n(e,"UNEXPECTED_TOKEN",`Expected a flow scalar value, but found: ${r}`),{value:"",type:null,comment:"",range:[i,i+s.length,i+s.length]}}const d=i+s.length,f=IE(a,d,t,n);return{value:c,type:l,comment:f.comment,range:[i,d,f.offset]}}function fkt(e,t){let n="";switch(e[0]){case" ":n="a tab character";break;case",":n="flow indicator character ,";break;case"%":n="directive indicator character %";break;case"|":case">":{n=`block scalar indicator ${e[0]}`;break}case"@":case"`":{n=`reserved character ${e[0]}`;break}}return n&&t(0,"BAD_SCALAR_START",`Plain value cannot start with ${n}`),fTe(e)}function hkt(e,t){return(e[e.length-1]!=="'"||e.length===1)&&t(e.length,"MISSING_CHAR","Missing closing 'quote"),fTe(e.slice(1,-1)).replace(/''/g,"'")}function fTe(e){let t,n;try{t=new RegExp(`(.*?)(?n(i+h,m,g);switch(r){case"scalar":l=Zn.PLAIN,c=_kt(s,u);break;case"single-quoted-scalar":l=Zn.QUOTE_SINGLE,c=Nkt(s,u);break;case"double-quoted-scalar":l=Zn.QUOTE_DOUBLE,c=jkt(s,u);break;default:return n(e,"UNEXPECTED_TOKEN",`Expected a flow scalar value, but found: ${r}`),{value:"",type:null,comment:"",range:[i,i+s.length,i+s.length]}}const d=i+s.length,f=LE(a,d,t,n);return{value:c,type:l,comment:f.comment,range:[i,d,f.offset]}}function _kt(e,t){let n="";switch(e[0]){case" ":n="a tab character";break;case",":n="flow indicator character ,";break;case"%":n="directive indicator character %";break;case"|":case">":{n=`block scalar indicator ${e[0]}`;break}case"@":case"`":{n=`reserved character ${e[0]}`;break}}return n&&t(0,"BAD_SCALAR_START",`Plain value cannot start with ${n}`),ETe(e)}function Nkt(e,t){return(e[e.length-1]!=="'"||e.length===1)&&t(e.length,"MISSING_CHAR","Missing closing 'quote"),ETe(e.slice(1,-1)).replace(/''/g,"'")}function ETe(e){let t,n;try{t=new RegExp(`(.*?)(?s?e.slice(s,i+1):r)}else n+=r}return(e[e.length-1]!=='"'||e.length===1)&&t(e.length,"MISSING_CHAR",'Missing closing "quote'),n}function mkt(e,t){let n="",i=e[t+1];for(;(i===" "||i===" "||i===` +`)&&(n+=i>s?e.slice(s,i+1):r)}else n+=r}return(e[e.length-1]!=='"'||e.length===1)&&t(e.length,"MISSING_CHAR",'Missing closing "quote'),n}function Rkt(e,t){let n="",i=e[t+1];for(;(i===" "||i===" "||i===` `||i==="\r")&&!(i==="\r"&&e[t+2]!==` `);)i===` `&&(n+=` -`),t+=1,i=e[t+1];return n||(n=" "),{fold:n,offset:t}}const gkt={0:"\0",a:"\x07",b:"\b",e:"\x1B",f:"\f",n:` -`,r:"\r",t:" ",v:"\v",N:"…",_:" ",L:"\u2028",P:"\u2029"," ":" ",'"':'"',"/":"/","\\":"\\"," ":" "};function bkt(e,t,n,i){const r=e.substr(t,n),a=r.length===n&&/^[0-9a-fA-F]+$/.test(r)?parseInt(r,16):NaN;try{return String.fromCodePoint(a)}catch{const l=e.substr(t-2,n+2);return i(t-2,"BAD_DQ_ESCAPE",`Invalid escape sequence ${l}`),l}}function hTe(e,t,n,i){const{value:r,type:s,comment:a,range:l}=t.type==="block-scalar"?lkt(e,t,i):dkt(t,e.options.strict,i),c=n?e.directives.tagName(n.source,f=>i(n,"TAG_RESOLVE_FAILED",f)):null;let u;e.options.stringKeys&&e.atKey?u=e.schema[zd]:c?u=ykt(e.schema,r,c,n,i):t.type==="scalar"?u=vkt(e,r,t,i):u=e.schema[zd];let d;try{const f=u.resolve(r,h=>i(n??t,"TAG_RESOLVE_FAILED",h),e.options);d=Mr(f)?f:new Wn(f)}catch(f){const h=f instanceof Error?f.message:String(f);i(n??t,"TAG_RESOLVE_FAILED",h),d=new Wn(r)}return d.range=l,d.source=r,s&&(d.type=s),c&&(d.tag=c),u.format&&(d.format=u.format),a&&(d.comment=a),d}function ykt(e,t,n,i,r){var l;if(n==="!")return e[zd];const s=[];for(const c of e.tags)if(!c.collection&&c.tag===n)if(c.default&&c.test)s.push(c);else return c;for(const c of s)if((l=c.test)!=null&&l.test(t))return c;const a=e.knownTags[n];return a&&!a.collection?(e.tags.push(Object.assign({},a,{default:!1,test:void 0})),a):(r(i,"TAG_RESOLVE_FAILED",`Unresolved tag: ${n}`,n!=="tag:yaml.org,2002:str"),e[zd])}function vkt({atKey:e,directives:t,schema:n},i,r,s){const a=n.tags.find(l=>{var c;return(l.default===!0||e&&l.default==="key")&&((c=l.test)==null?void 0:c.test(i))})||n[zd];if(n.compat){const l=n.compat.find(c=>{var u;return c.default&&((u=c.test)==null?void 0:u.test(i))})??n[zd];if(a.tag!==l.tag){const c=t.tagString(a.tag),u=t.tagString(l.tag),d=`Value may be parsed as either ${c} or ${u}`;s(r,"TAG_RESOLVE_FAILED",d,!0)}}return a}function xkt(e,t,n){if(t){n??(n=t.length);for(let i=n-1;i>=0;--i){let r=t[i];switch(r.type){case"space":case"comment":case"newline":e-=r.source.length;continue}for(r=t[++i];(r==null?void 0:r.type)==="space";)e+=r.source.length,r=t[++i];break}}return e}const wkt={composeNode:pTe,composeEmptyNode:$U};function pTe(e,t,n,i){const r=e.atKey,{spaceBefore:s,comment:a,anchor:l,tag:c}=n;let u,d=!0;switch(t.type){case"alias":u=Okt(e,t,i),(l||c)&&i(t,"ALIAS_PROPS","An alias node must not specify any properties");break;case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":case"block-scalar":u=hTe(e,t,c,i),l&&(u.anchor=l.source.substring(1));break;case"block-map":case"block-seq":case"flow-collection":try{u=okt(wkt,e,t,n,i),l&&(u.anchor=l.source.substring(1))}catch(f){const h=f instanceof Error?f.message:String(f);i(t,"RESOURCE_EXHAUSTION",h)}break;default:{const f=t.type==="error"?t.message:`Unsupported token (type: ${t.type})`;i(t,"UNEXPECTED_TOKEN",f),d=!1}}return u??(u=$U(e,t.offset,void 0,null,n,i)),l&&u.anchor===""&&i(l,"BAD_ALIAS","Anchor cannot be an empty string"),r&&e.options.stringKeys&&(!Mr(u)||typeof u.value!="string"||u.tag&&u.tag!=="tag:yaml.org,2002:str")&&i(c??t,"NON_STRING_KEY","With stringKeys, all keys must be strings"),s&&(u.spaceBefore=!0),a&&(t.type==="scalar"&&t.source===""?u.comment=a:u.commentBefore=a),e.options.keepSourceTokens&&d&&(u.srcToken=t),u}function $U(e,t,n,i,{spaceBefore:r,comment:s,anchor:a,tag:l,end:c},u){const d={type:"scalar",offset:xkt(t,n,i),indent:-1,source:""},f=hTe(e,d,l,u);return a&&(f.anchor=a.source.substring(1),f.anchor===""&&u(a,"BAD_ALIAS","Anchor cannot be an empty string")),r&&(f.spaceBefore=!0),s&&(f.comment=s,f.range[2]=c),f}function Okt({options:e},{offset:t,source:n,end:i},r){const s=new TU(n.substring(1));s.source===""&&r(t,"BAD_ALIAS","Alias cannot be an empty string"),s.source.endsWith(":")&&r(t+n.length-1,"BAD_ALIAS","Alias ending in : is ambiguous",!0);const a=t+n.length,l=IE(i,a,e.strict,r);return s.range=[t,a,l.offset],l.comment&&(s.comment=l.comment),s}function Skt(e,t,{offset:n,start:i,value:r,end:s},a){const l=Object.assign({_directives:t},e),c=new RE(void 0,l),u={atKey:!1,atRoot:!0,directives:c.directives,options:c.options,schema:c.schema},d=nx(i,{indicator:"doc-start",next:r??(s==null?void 0:s[0]),offset:n,onError:a,parentIndent:0,startOnNewline:!0});d.found&&(c.directives.docStart=!0,r&&(r.type==="block-map"||r.type==="block-seq")&&!d.hasNewline&&a(d.end,"MISSING_CHAR","Block collection cannot start on same line with directives-end marker")),c.contents=r?pTe(u,r,d,a):$U(u,d.end,i,null,d,a);const f=c.contents.range[2],h=IE(s,f,!1,a);return h.comment&&(c.comment=h.comment),c.range=[n,f,h.offset],c}function X1(e){if(typeof e=="number")return[e,e+1];if(Array.isArray(e))return e.length===2?e:[e[0],e[1]];const{offset:t,source:n}=e;return[t,t+(typeof n=="string"?n.length:1)]}function rZ(e){var r;let t="",n=!1,i=!1;for(let s=0;si(n,"TAG_RESOLVE_FAILED",f)):null;let u;e.options.stringKeys&&e.atKey?u=e.schema[Hd]:c?u=Dkt(e.schema,r,c,n,i):t.type==="scalar"?u=Mkt(e,r,t,i):u=e.schema[Hd];let d;try{const f=u.resolve(r,h=>i(n??t,"TAG_RESOLVE_FAILED",h),e.options);d=Qr(f)?f:new Zn(f)}catch(f){const h=f instanceof Error?f.message:String(f);i(n??t,"TAG_RESOLVE_FAILED",h),d=new Zn(r)}return d.range=l,d.source=r,s&&(d.type=s),c&&(d.tag=c),u.format&&(d.format=u.format),a&&(d.comment=a),d}function Dkt(e,t,n,i,r){var l;if(n==="!")return e[Hd];const s=[];for(const c of e.tags)if(!c.collection&&c.tag===n)if(c.default&&c.test)s.push(c);else return c;for(const c of s)if((l=c.test)!=null&&l.test(t))return c;const a=e.knownTags[n];return a&&!a.collection?(e.tags.push(Object.assign({},a,{default:!1,test:void 0})),a):(r(i,"TAG_RESOLVE_FAILED",`Unresolved tag: ${n}`,n!=="tag:yaml.org,2002:str"),e[Hd])}function Mkt({atKey:e,directives:t,schema:n},i,r,s){const a=n.tags.find(l=>{var c;return(l.default===!0||e&&l.default==="key")&&((c=l.test)==null?void 0:c.test(i))})||n[Hd];if(n.compat){const l=n.compat.find(c=>{var u;return c.default&&((u=c.test)==null?void 0:u.test(i))})??n[Hd];if(a.tag!==l.tag){const c=t.tagString(a.tag),u=t.tagString(l.tag),d=`Value may be parsed as either ${c} or ${u}`;s(r,"TAG_RESOLVE_FAILED",d,!0)}}return a}function Lkt(e,t,n){if(t){n??(n=t.length);for(let i=n-1;i>=0;--i){let r=t[i];switch(r.type){case"space":case"comment":case"newline":e-=r.source.length;continue}for(r=t[++i];(r==null?void 0:r.type)==="space";)e+=r.source.length,r=t[++i];break}}return e}const $kt={composeNode:TTe,composeEmptyNode:zU};function TTe(e,t,n,i){const r=e.atKey,{spaceBefore:s,comment:a,anchor:l,tag:c}=n;let u,d=!0;switch(t.type){case"alias":u=Fkt(e,t,i),(l||c)&&i(t,"ALIAS_PROPS","An alias node must not specify any properties");break;case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":case"block-scalar":u=CTe(e,t,c,i),l&&(u.anchor=l.source.substring(1));break;case"block-map":case"block-seq":case"flow-collection":try{u=kkt($kt,e,t,n,i),l&&(u.anchor=l.source.substring(1))}catch(f){const h=f instanceof Error?f.message:String(f);i(t,"RESOURCE_EXHAUSTION",h)}break;default:{const f=t.type==="error"?t.message:`Unsupported token (type: ${t.type})`;i(t,"UNEXPECTED_TOKEN",f),d=!1}}return u??(u=zU(e,t.offset,void 0,null,n,i)),l&&u.anchor===""&&i(l,"BAD_ALIAS","Anchor cannot be an empty string"),r&&e.options.stringKeys&&(!Qr(u)||typeof u.value!="string"||u.tag&&u.tag!=="tag:yaml.org,2002:str")&&i(c??t,"NON_STRING_KEY","With stringKeys, all keys must be strings"),s&&(u.spaceBefore=!0),a&&(t.type==="scalar"&&t.source===""?u.comment=a:u.commentBefore=a),e.options.keepSourceTokens&&d&&(u.srcToken=t),u}function zU(e,t,n,i,{spaceBefore:r,comment:s,anchor:a,tag:l,end:c},u){const d={type:"scalar",offset:Lkt(t,n,i),indent:-1,source:""},f=CTe(e,d,l,u);return a&&(f.anchor=a.source.substring(1),f.anchor===""&&u(a,"BAD_ALIAS","Anchor cannot be an empty string")),r&&(f.spaceBefore=!0),s&&(f.comment=s,f.range[2]=c),f}function Fkt({options:e},{offset:t,source:n,end:i},r){const s=new RU(n.substring(1));s.source===""&&r(t,"BAD_ALIAS","Alias cannot be an empty string"),s.source.endsWith(":")&&r(t+n.length-1,"BAD_ALIAS","Alias ending in : is ambiguous",!0);const a=t+n.length,l=LE(i,a,e.strict,r);return s.range=[t,a,l.offset],l.comment&&(s.comment=l.comment),s}function Bkt(e,t,{offset:n,start:i,value:r,end:s},a){const l=Object.assign({_directives:t},e),c=new ME(void 0,l),u={atKey:!1,atRoot:!0,directives:c.directives,options:c.options,schema:c.schema},d=ox(i,{indicator:"doc-start",next:r??(s==null?void 0:s[0]),offset:n,onError:a,parentIndent:0,startOnNewline:!0});d.found&&(c.directives.docStart=!0,r&&(r.type==="block-map"||r.type==="block-seq")&&!d.hasNewline&&a(d.end,"MISSING_CHAR","Block collection cannot start on same line with directives-end marker")),c.contents=r?TTe(u,r,d,a):zU(u,d.end,i,null,d,a);const f=c.contents.range[2],h=LE(s,f,!1,a);return h.comment&&(c.comment=h.comment),c.range=[n,f,h.offset],c}function ew(e){if(typeof e=="number")return[e,e+1];if(Array.isArray(e))return e.length===2?e:[e[0],e[1]];const{offset:t,source:n}=e;return[t,t+(typeof n=="string"?n.length:1)]}function hZ(e){var r;let t="",n=!1,i=!1;for(let s=0;s{const a=X1(n);s?this.warnings.push(new ikt(a,i,r)):this.errors.push(new Qw(a,i,r))},this.directives=new Po({version:t.version||"1.2"}),this.options=t}decorate(t,n){const{comment:i,afterEmptyLine:r}=rZ(this.prelude);if(i){const s=t.contents;if(n)t.comment=t.comment?`${t.comment} -${i}`:i;else if(r||t.directives.docStart||!s)t.commentBefore=i;else if(Fs(s)&&!s.flow&&s.items.length>0){let a=s.items[0];Qs(a)&&(a=a.key);const l=a.commentBefore;a.commentBefore=l?`${i} +`)+(a.substring(1)||" "),n=!0,i=!1;break;case"%":((r=e[s+1])==null?void 0:r[0])!=="#"&&(s+=1),n=!1;break;default:n||(i=!0),n=!1}}return{comment:t,afterEmptyLine:i}}let Ukt=class{constructor(t={}){this.doc=null,this.atDirectives=!1,this.prelude=[],this.errors=[],this.warnings=[],this.onError=(n,i,r,s)=>{const a=ew(n);s?this.warnings.push(new xkt(a,i,r)):this.errors.push(new qw(a,i,r))},this.directives=new $o({version:t.version||"1.2"}),this.options=t}decorate(t,n){const{comment:i,afterEmptyLine:r}=hZ(this.prelude);if(i){const s=t.contents;if(n)t.comment=t.comment?`${t.comment} +${i}`:i;else if(r||t.directives.docStart||!s)t.commentBefore=i;else if(Us(s)&&!s.flow&&s.items.length>0){let a=s.items[0];Vs(a)&&(a=a.key);const l=a.commentBefore;a.commentBefore=l?`${i} ${l}`:i}else{const a=s.commentBefore;s.commentBefore=a?`${i} -${a}`:i}}if(n){for(let s=0;s{const s=X1(t);s[0]+=n,this.onError(s,"BAD_DIRECTIVE",i,r)}),this.prelude.push(t.source),this.atDirectives=!0;break;case"document":{const n=Skt(this.options,this.directives,t,this.onError);this.atDirectives&&!n.directives.docStart&&this.onError(t,"MISSING_CHAR","Missing directives-end/doc-start indicator line"),this.decorate(n,!1),this.doc&&(yield this.doc),this.doc=n,this.atDirectives=!1;break}case"byte-order-mark":case"space":break;case"comment":case"newline":this.prelude.push(t.source);break;case"error":{const n=t.source?`${t.message}: ${JSON.stringify(t.source)}`:t.message,i=new Qw(X1(t),"UNEXPECTED_TOKEN",n);this.atDirectives||!this.doc?this.errors.push(i):this.doc.errors.push(i);break}case"doc-end":{if(!this.doc){const i="Unexpected doc-end without preceding document";this.errors.push(new Qw(X1(t),"UNEXPECTED_TOKEN",i));break}this.doc.directives.docEnd=!0;const n=IE(t.end,t.offset+t.source.length,this.doc.options.strict,this.onError);if(this.decorate(this.doc,!0),n.comment){const i=this.doc.comment;this.doc.comment=i?`${i} -${n.comment}`:n.comment}this.doc.range[2]=n.offset;break}default:this.errors.push(new Qw(X1(t),"UNEXPECTED_TOKEN",`Unsupported token ${t.type}`))}}*end(t=!1,n=-1){if(this.doc)this.decorate(this.doc,!0),yield this.doc,this.doc=null;else if(t){const i=Object.assign({_directives:this.directives},this.options),r=new RE(void 0,i);this.atDirectives&&this.onError(n,"MISSING_CHAR","Missing directives-end indicator line"),r.range=[0,n,n],this.decorate(r,!1),yield r}}};const mTe="\uFEFF",gTe="",bTe="",c$="";function Ekt(e){switch(e){case mTe:return"byte-order-mark";case gTe:return"doc-mode";case bTe:return"flow-error-end";case c$:return"scalar";case"---":return"doc-start";case"...":return"doc-end";case"":case` +${a}`:i}}if(n){for(let s=0;s{const s=ew(t);s[0]+=n,this.onError(s,"BAD_DIRECTIVE",i,r)}),this.prelude.push(t.source),this.atDirectives=!0;break;case"document":{const n=Bkt(this.options,this.directives,t,this.onError);this.atDirectives&&!n.directives.docStart&&this.onError(t,"MISSING_CHAR","Missing directives-end/doc-start indicator line"),this.decorate(n,!1),this.doc&&(yield this.doc),this.doc=n,this.atDirectives=!1;break}case"byte-order-mark":case"space":break;case"comment":case"newline":this.prelude.push(t.source);break;case"error":{const n=t.source?`${t.message}: ${JSON.stringify(t.source)}`:t.message,i=new qw(ew(t),"UNEXPECTED_TOKEN",n);this.atDirectives||!this.doc?this.errors.push(i):this.doc.errors.push(i);break}case"doc-end":{if(!this.doc){const i="Unexpected doc-end without preceding document";this.errors.push(new qw(ew(t),"UNEXPECTED_TOKEN",i));break}this.doc.directives.docEnd=!0;const n=LE(t.end,t.offset+t.source.length,this.doc.options.strict,this.onError);if(this.decorate(this.doc,!0),n.comment){const i=this.doc.comment;this.doc.comment=i?`${i} +${n.comment}`:n.comment}this.doc.range[2]=n.offset;break}default:this.errors.push(new qw(ew(t),"UNEXPECTED_TOKEN",`Unsupported token ${t.type}`))}}*end(t=!1,n=-1){if(this.doc)this.decorate(this.doc,!0),yield this.doc,this.doc=null;else if(t){const i=Object.assign({_directives:this.directives},this.options),r=new ME(void 0,i);this.atDirectives&&this.onError(n,"MISSING_CHAR","Missing directives-end indicator line"),r.range=[0,n,n],this.decorate(r,!1),yield r}}};const ATe="\uFEFF",_Te="",NTe="",p$="";function Qkt(e){switch(e){case ATe:return"byte-order-mark";case _Te:return"doc-mode";case NTe:return"flow-error-end";case p$:return"scalar";case"---":return"doc-start";case"...":return"doc-end";case"":case` `:case`\r -`:return"newline";case"-":return"seq-item-ind";case"?":return"explicit-key-ind";case":":return"map-value-ind";case"{":return"flow-map-start";case"}":return"flow-map-end";case"[":return"flow-seq-start";case"]":return"flow-seq-end";case",":return"comma"}switch(e[0]){case" ":case" ":return"space";case"#":return"comment";case"%":return"directive-line";case"*":return"alias";case"&":return"anchor";case"!":return"tag";case"'":return"single-quoted-scalar";case'"':return"double-quoted-scalar";case"|":case">":return"block-scalar-header"}return null}function gu(e){switch(e){case void 0:case" ":case` -`:case"\r":case" ":return!0;default:return!1}}const sZ=new Set("0123456789ABCDEFabcdef"),Ckt=new Set("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-#;/?:@&=+$_.!~*'()"),zT=new Set(",[]{}"),Tkt=new Set(` ,[]{} -\r `),n5=e=>!e||Tkt.has(e);class Akt{constructor(){this.atEnd=!1,this.blockScalarIndent=-1,this.blockScalarKeep=!1,this.buffer="",this.flowKey=!1,this.flowLevel=0,this.indentNext=0,this.indentValue=0,this.lineEndPos=null,this.next=null,this.pos=0}*lex(t,n=!1){if(t){if(typeof t!="string")throw TypeError("source is not a string");this.buffer=this.buffer?this.buffer+t:t,this.lineEndPos=null}this.atEnd=!n;let i=this.next??"stream";for(;i&&(n||this.hasChars(1));)i=yield*this.parseNext(i)}atLineEnd(){let t=this.pos,n=this.buffer[t];for(;n===" "||n===" ";)n=this.buffer[++t];return!n||n==="#"||n===` +`:return"newline";case"-":return"seq-item-ind";case"?":return"explicit-key-ind";case":":return"map-value-ind";case"{":return"flow-map-start";case"}":return"flow-map-end";case"[":return"flow-seq-start";case"]":return"flow-seq-end";case",":return"comma"}switch(e[0]){case" ":case" ":return"space";case"#":return"comment";case"%":return"directive-line";case"*":return"alias";case"&":return"anchor";case"!":return"tag";case"'":return"single-quoted-scalar";case'"':return"double-quoted-scalar";case"|":case">":return"block-scalar-header"}return null}function bu(e){switch(e){case void 0:case" ":case` +`:case"\r":case" ":return!0;default:return!1}}const pZ=new Set("0123456789ABCDEFabcdef"),zkt=new Set("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-#;/?:@&=+$_.!~*'()"),qT=new Set(",[]{}"),Vkt=new Set(` ,[]{} +\r `),o5=e=>!e||Vkt.has(e);class Hkt{constructor(){this.atEnd=!1,this.blockScalarIndent=-1,this.blockScalarKeep=!1,this.buffer="",this.flowKey=!1,this.flowLevel=0,this.indentNext=0,this.indentValue=0,this.lineEndPos=null,this.next=null,this.pos=0}*lex(t,n=!1){if(t){if(typeof t!="string")throw TypeError("source is not a string");this.buffer=this.buffer?this.buffer+t:t,this.lineEndPos=null}this.atEnd=!n;let i=this.next??"stream";for(;i&&(n||this.hasChars(1));)i=yield*this.parseNext(i)}atLineEnd(){let t=this.pos,n=this.buffer[t];for(;n===" "||n===" ";)n=this.buffer[++t];return!n||n==="#"||n===` `?!0:n==="\r"?this.buffer[t+1]===` `:!1}charAt(t){return this.buffer[this.pos+t]}continueScalar(t){let n=this.buffer[t];if(this.indentNext>0){let i=0;for(;n===" ";)n=this.buffer[++i+t];if(n==="\r"){const r=this.buffer[i+t+1];if(r===` `||!r&&!this.atEnd)return t+i+1}return n===` -`||i>=this.indentNext||!n&&!this.atEnd?t+i:-1}if(n==="-"||n==="."){const i=this.buffer.substr(t,3);if((i==="---"||i==="...")&&gu(this.buffer[t+3]))return-1}return t}getLine(){let t=this.lineEndPos;return(typeof t!="number"||t!==-1&&tthis.indentValue&&!gu(this.charAt(1))&&(this.indentNext=this.indentValue),yield*this.parseBlockStart()}*parseBlockStart(){const[t,n]=this.peek(2);if(!n&&!this.atEnd)return this.setNext("block-start");if((t==="-"||t==="?"||t===":")&&gu(n)){const i=(yield*this.pushCount(1))+(yield*this.pushSpaces(!0));return this.indentNext=this.indentValue+1,this.indentValue+=i,"block-start"}return"doc"}*parseDocument(){yield*this.pushSpaces(!0);const t=this.getLine();if(t===null)return this.setNext("doc");let n=yield*this.pushIndicators();switch(t[n]){case"#":yield*this.pushCount(t.length-n);case void 0:return yield*this.pushNewline(),yield*this.parseLineStart();case"{":case"[":return yield*this.pushCount(1),this.flowKey=!1,this.flowLevel=1,"flow";case"}":case"]":return yield*this.pushCount(1),"doc";case"*":return yield*this.pushUntil(n5),"doc";case'"':case"'":return yield*this.parseQuotedScalar();case"|":case">":return n+=yield*this.parseBlockScalarHeader(),n+=yield*this.pushSpaces(!0),yield*this.pushCount(t.length-n),yield*this.pushNewline(),yield*this.parseBlockScalar();default:return yield*this.parsePlainScalar()}}*parseFlowCollection(){let t,n,i=-1;do t=yield*this.pushNewline(),t>0?(n=yield*this.pushSpaces(!1),this.indentValue=i=n):n=0,n+=yield*this.pushSpaces(!0);while(t+n>0);const r=this.getLine();if(r===null)return this.setNext("flow");if((i!==-1&&i=this.indentNext||!n&&!this.atEnd?t+i:-1}if(n==="-"||n==="."){const i=this.buffer.substr(t,3);if((i==="---"||i==="...")&&bu(this.buffer[t+3]))return-1}return t}getLine(){let t=this.lineEndPos;return(typeof t!="number"||t!==-1&&tthis.indentValue&&!bu(this.charAt(1))&&(this.indentNext=this.indentValue),yield*this.parseBlockStart()}*parseBlockStart(){const[t,n]=this.peek(2);if(!n&&!this.atEnd)return this.setNext("block-start");if((t==="-"||t==="?"||t===":")&&bu(n)){const i=(yield*this.pushCount(1))+(yield*this.pushSpaces(!0));return this.indentNext=this.indentValue+1,this.indentValue+=i,"block-start"}return"doc"}*parseDocument(){yield*this.pushSpaces(!0);const t=this.getLine();if(t===null)return this.setNext("doc");let n=yield*this.pushIndicators();switch(t[n]){case"#":yield*this.pushCount(t.length-n);case void 0:return yield*this.pushNewline(),yield*this.parseLineStart();case"{":case"[":return yield*this.pushCount(1),this.flowKey=!1,this.flowLevel=1,"flow";case"}":case"]":return yield*this.pushCount(1),"doc";case"*":return yield*this.pushUntil(o5),"doc";case'"':case"'":return yield*this.parseQuotedScalar();case"|":case">":return n+=yield*this.parseBlockScalarHeader(),n+=yield*this.pushSpaces(!0),yield*this.pushCount(t.length-n),yield*this.pushNewline(),yield*this.parseBlockScalar();default:return yield*this.parsePlainScalar()}}*parseFlowCollection(){let t,n,i=-1;do t=yield*this.pushNewline(),t>0?(n=yield*this.pushSpaces(!1),this.indentValue=i=n):n=0,n+=yield*this.pushSpaces(!0);while(t+n>0);const r=this.getLine();if(r===null)return this.setNext("flow");if((i!==-1&&i"0"&&n<="9")this.blockScalarIndent=Number(n)-1;else if(n!=="-")break}return yield*this.pushUntil(n=>gu(n)||n==="#")}*parseBlockScalar(){let t=this.pos-1,n=0,i;e:for(let s=this.pos;i=this.buffer[s];++s)switch(i){case" ":n+=1;break;case` +`,s)}r!==-1&&(n=r-(i[r-1]==="\r"?2:1))}if(n===-1){if(!this.atEnd)return this.setNext("quoted-scalar");n=this.buffer.length}return yield*this.pushToIndex(n+1,!1),this.flowLevel?"flow":"doc"}*parseBlockScalarHeader(){this.blockScalarIndent=-1,this.blockScalarKeep=!1;let t=this.pos;for(;;){const n=this.buffer[++t];if(n==="+")this.blockScalarKeep=!0;else if(n>"0"&&n<="9")this.blockScalarIndent=Number(n)-1;else if(n!=="-")break}return yield*this.pushUntil(n=>bu(n)||n==="#")}*parseBlockScalar(){let t=this.pos-1,n=0,i;e:for(let s=this.pos;i=this.buffer[s];++s)switch(i){case" ":n+=1;break;case` `:t=s,n=0;break;case"\r":{const a=this.buffer[s+1];if(!a&&!this.atEnd)return this.setNext("block-scalar");if(a===` `)break}default:break e}if(!i&&!this.atEnd)return this.setNext("block-scalar");if(n>=this.indentNext){this.blockScalarIndent===-1?this.indentNext=n:this.indentNext=this.blockScalarIndent+(this.indentNext===0?1:this.indentNext);do{const s=this.continueScalar(t+1);if(s===-1)break;t=this.buffer.indexOf(` `,s)}while(t!==-1);if(t===-1){if(!this.atEnd)return this.setNext("block-scalar");t=this.buffer.length}}let r=t+1;for(i=this.buffer[r];i===" ";)i=this.buffer[++r];if(i===" "){for(;i===" "||i===" "||i==="\r"||i===` `;)i=this.buffer[++r];t=r-1}else if(!this.blockScalarKeep)do{let s=t-1,a=this.buffer[s];a==="\r"&&(a=this.buffer[--s]);const l=s;for(;a===" ";)a=this.buffer[--s];if(a===` -`&&s>=this.pos&&s+1+n>l)t=s;else break}while(!0);return yield c$,yield*this.pushToIndex(t+1,!0),yield*this.parseLineStart()}*parsePlainScalar(){const t=this.flowLevel>0;let n=this.pos-1,i=this.pos-1,r;for(;r=this.buffer[++i];)if(r===":"){const s=this.buffer[i+1];if(gu(s)||t&&zT.has(s))break;n=i}else if(gu(r)){let s=this.buffer[i+1];if(r==="\r"&&(s===` +`&&s>=this.pos&&s+1+n>l)t=s;else break}while(!0);return yield p$,yield*this.pushToIndex(t+1,!0),yield*this.parseLineStart()}*parsePlainScalar(){const t=this.flowLevel>0;let n=this.pos-1,i=this.pos-1,r;for(;r=this.buffer[++i];)if(r===":"){const s=this.buffer[i+1];if(bu(s)||t&&qT.has(s))break;n=i}else if(bu(r)){let s=this.buffer[i+1];if(r==="\r"&&(s===` `?(i+=1,r=` -`,s=this.buffer[i+1]):n=i),s==="#"||t&&zT.has(s))break;if(r===` -`){const a=this.continueScalar(i+1);if(a===-1)break;i=Math.max(i,a-2)}}else{if(t&&zT.has(r))break;n=i}return!r&&!this.atEnd?this.setNext("plain-scalar"):(yield c$,yield*this.pushToIndex(n+1,!0),t?"flow":"doc")}*pushCount(t){return t>0?(yield this.buffer.substr(this.pos,t),this.pos+=t,t):0}*pushToIndex(t,n){const i=this.buffer.slice(this.pos,t);return i?(yield i,this.pos+=i.length,i.length):(n&&(yield""),0)}*pushIndicators(){let t=0;e:for(;;){switch(this.charAt(0)){case"!":t+=yield*this.pushTag(),t+=yield*this.pushSpaces(!0);continue e;case"&":t+=yield*this.pushUntil(n5),t+=yield*this.pushSpaces(!0);continue e;case"-":case"?":case":":{const n=this.flowLevel>0,i=this.charAt(1);if(gu(i)||n&&zT.has(i)){n?this.flowKey&&(this.flowKey=!1):this.indentNext=this.indentValue+1,t+=yield*this.pushCount(1),t+=yield*this.pushSpaces(!0);continue e}}}break e}return t}*pushTag(){if(this.charAt(1)==="<"){let t=this.pos+2,n=this.buffer[t];for(;!gu(n)&&n!==">";)n=this.buffer[++t];return yield*this.pushToIndex(n===">"?t+1:t,!1)}else{let t=this.pos+1,n=this.buffer[t];for(;n;)if(Ckt.has(n))n=this.buffer[++t];else if(n==="%"&&sZ.has(this.buffer[t+1])&&sZ.has(this.buffer[t+2]))n=this.buffer[t+=3];else break;return yield*this.pushToIndex(t,!1)}}*pushNewline(){const t=this.buffer[this.pos];return t===` +`,s=this.buffer[i+1]):n=i),s==="#"||t&&qT.has(s))break;if(r===` +`){const a=this.continueScalar(i+1);if(a===-1)break;i=Math.max(i,a-2)}}else{if(t&&qT.has(r))break;n=i}return!r&&!this.atEnd?this.setNext("plain-scalar"):(yield p$,yield*this.pushToIndex(n+1,!0),t?"flow":"doc")}*pushCount(t){return t>0?(yield this.buffer.substr(this.pos,t),this.pos+=t,t):0}*pushToIndex(t,n){const i=this.buffer.slice(this.pos,t);return i?(yield i,this.pos+=i.length,i.length):(n&&(yield""),0)}*pushIndicators(){let t=0;e:for(;;){switch(this.charAt(0)){case"!":t+=yield*this.pushTag(),t+=yield*this.pushSpaces(!0);continue e;case"&":t+=yield*this.pushUntil(o5),t+=yield*this.pushSpaces(!0);continue e;case"-":case"?":case":":{const n=this.flowLevel>0,i=this.charAt(1);if(bu(i)||n&&qT.has(i)){n?this.flowKey&&(this.flowKey=!1):this.indentNext=this.indentValue+1,t+=yield*this.pushCount(1),t+=yield*this.pushSpaces(!0);continue e}}}break e}return t}*pushTag(){if(this.charAt(1)==="<"){let t=this.pos+2,n=this.buffer[t];for(;!bu(n)&&n!==">";)n=this.buffer[++t];return yield*this.pushToIndex(n===">"?t+1:t,!1)}else{let t=this.pos+1,n=this.buffer[t];for(;n;)if(zkt.has(n))n=this.buffer[++t];else if(n==="%"&&pZ.has(this.buffer[t+1])&&pZ.has(this.buffer[t+2]))n=this.buffer[t+=3];else break;return yield*this.pushToIndex(t,!1)}}*pushNewline(){const t=this.buffer[this.pos];return t===` `?yield*this.pushCount(1):t==="\r"&&this.charAt(1)===` -`?yield*this.pushCount(2):0}*pushSpaces(t){let n=this.pos-1,i;do i=this.buffer[++n];while(i===" "||t&&i===" ");const r=n-this.pos;return r>0&&(yield this.buffer.substr(this.pos,r),this.pos=n),r}*pushUntil(t){let n=this.pos,i=this.buffer[n];for(;!t(i);)i=this.buffer[++n];return yield*this.pushToIndex(n,!1)}}class _kt{constructor(){this.lineStarts=[],this.addNewLine=t=>this.lineStarts.push(t),this.linePos=t=>{let n=0,i=this.lineStarts.length;for(;n>1;this.lineStarts[s]=0;)switch(e[t].type){case"doc-start":case"explicit-key-ind":case"map-value-ind":case"seq-item-ind":case"newline":break e}for(;((n=e[++t])==null?void 0:n.type)==="space";);return e.splice(t,e.length)}function TN(e,t){if(t.length<1e5)Array.prototype.push.apply(e,t);else for(let n=0;n0;)yield*this.pop()}get sourceToken(){return{type:this.type,offset:this.offset,indent:this.indent,source:this.source}}*step(){const t=this.peek(1);if(this.type==="doc-end"&&(t==null?void 0:t.type)!=="doc-end"){for(;this.stack.length>0;)yield*this.pop();this.stack.push({type:"doc-end",offset:this.offset,source:this.source});return}if(!t)return yield*this.stream();switch(t.type){case"document":return yield*this.document(t);case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return yield*this.scalar(t);case"block-scalar":return yield*this.blockScalar(t);case"block-map":return yield*this.blockMap(t);case"block-seq":return yield*this.blockSequence(t);case"flow-collection":return yield*this.flowCollection(t);case"doc-end":return yield*this.documentEnd(t)}yield*this.pop()}peek(t){return this.stack[this.stack.length-t]}*pop(t){const n=t??this.stack.pop();if(!n)yield{type:"error",offset:this.offset,source:"",message:"Tried to pop an empty stack"};else if(this.stack.length===0)yield n;else{const i=this.peek(1);switch(n.type==="block-scalar"?n.indent="indent"in i?i.indent:0:n.type==="flow-collection"&&i.type==="document"&&(n.indent=0),n.type==="flow-collection"&&oZ(n),i.type){case"document":i.value=n;break;case"block-scalar":i.props.push(n);break;case"block-map":{const r=i.items[i.items.length-1];if(r.value){i.items.push({start:[],key:n,sep:[]}),this.onKeyLine=!0;return}else if(r.sep)r.value=n;else{Object.assign(r,{key:n,sep:[]}),this.onKeyLine=!r.explicitKey;return}break}case"block-seq":{const r=i.items[i.items.length-1];r.value?i.items.push({start:[],value:n}):r.value=n;break}case"flow-collection":{const r=i.items[i.items.length-1];!r||r.value?i.items.push({start:[],key:n,sep:[]}):r.sep?r.value=n:Object.assign(r,{key:n,sep:[]});return}default:yield*this.pop(),yield*this.pop(n)}if((i.type==="document"||i.type==="block-map"||i.type==="block-seq")&&(n.type==="block-map"||n.type==="block-seq")){const r=n.items[n.items.length-1];r&&!r.sep&&!r.value&&r.start.length>0&&aZ(r.start)===-1&&(n.indent===0||r.start.every(s=>s.type!=="comment"||s.indent0&&(yield this.buffer.substr(this.pos,r),this.pos=n),r}*pushUntil(t){let n=this.pos,i=this.buffer[n];for(;!t(i);)i=this.buffer[++n];return yield*this.pushToIndex(n,!1)}}class qkt{constructor(){this.lineStarts=[],this.addNewLine=t=>this.lineStarts.push(t),this.linePos=t=>{let n=0,i=this.lineStarts.length;for(;n>1;this.lineStarts[s]=0;)switch(e[t].type){case"doc-start":case"explicit-key-ind":case"map-value-ind":case"seq-item-ind":case"newline":break e}for(;((n=e[++t])==null?void 0:n.type)==="space";);return e.splice(t,e.length)}function RN(e,t){if(t.length<1e5)Array.prototype.push.apply(e,t);else for(let n=0;n0;)yield*this.pop()}get sourceToken(){return{type:this.type,offset:this.offset,indent:this.indent,source:this.source}}*step(){const t=this.peek(1);if(this.type==="doc-end"&&(t==null?void 0:t.type)!=="doc-end"){for(;this.stack.length>0;)yield*this.pop();this.stack.push({type:"doc-end",offset:this.offset,source:this.source});return}if(!t)return yield*this.stream();switch(t.type){case"document":return yield*this.document(t);case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return yield*this.scalar(t);case"block-scalar":return yield*this.blockScalar(t);case"block-map":return yield*this.blockMap(t);case"block-seq":return yield*this.blockSequence(t);case"flow-collection":return yield*this.flowCollection(t);case"doc-end":return yield*this.documentEnd(t)}yield*this.pop()}peek(t){return this.stack[this.stack.length-t]}*pop(t){const n=t??this.stack.pop();if(!n)yield{type:"error",offset:this.offset,source:"",message:"Tried to pop an empty stack"};else if(this.stack.length===0)yield n;else{const i=this.peek(1);switch(n.type==="block-scalar"?n.indent="indent"in i?i.indent:0:n.type==="flow-collection"&&i.type==="document"&&(n.indent=0),n.type==="flow-collection"&&gZ(n),i.type){case"document":i.value=n;break;case"block-scalar":i.props.push(n);break;case"block-map":{const r=i.items[i.items.length-1];if(r.value){i.items.push({start:[],key:n,sep:[]}),this.onKeyLine=!0;return}else if(r.sep)r.value=n;else{Object.assign(r,{key:n,sep:[]}),this.onKeyLine=!r.explicitKey;return}break}case"block-seq":{const r=i.items[i.items.length-1];r.value?i.items.push({start:[],value:n}):r.value=n;break}case"flow-collection":{const r=i.items[i.items.length-1];!r||r.value?i.items.push({start:[],key:n,sep:[]}):r.sep?r.value=n:Object.assign(r,{key:n,sep:[]});return}default:yield*this.pop(),yield*this.pop(n)}if((i.type==="document"||i.type==="block-map"||i.type==="block-seq")&&(n.type==="block-map"||n.type==="block-seq")){const r=n.items[n.items.length-1];r&&!r.sep&&!r.value&&r.start.length>0&&mZ(r.start)===-1&&(n.indent===0||r.start.every(s=>s.type!=="comment"||s.indent=t.indent){const r=!this.onKeyLine&&this.indent===t.indent,s=r&&(n.sep||n.explicitKey)&&this.type!=="seq-item-ind";let a=[];if(s&&n.sep&&!n.value){const l=[];for(let c=0;ct.indent&&(l.length=0);break;default:l.length=0}}l.length>=2&&(a=n.sep.splice(l[1]))}switch(this.type){case"anchor":case"tag":s||n.value?(a.push(this.sourceToken),t.items.push({start:a}),this.onKeyLine=!0):n.sep?n.sep.push(this.sourceToken):n.start.push(this.sourceToken);return;case"explicit-key-ind":!n.sep&&!n.explicitKey?(n.start.push(this.sourceToken),n.explicitKey=!0):s||n.value?(a.push(this.sourceToken),t.items.push({start:a,explicitKey:!0})):this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:[this.sourceToken],explicitKey:!0}]}),this.onKeyLine=!0;return;case"map-value-ind":if(n.explicitKey)if(n.sep)if(n.value)t.items.push({start:[],key:null,sep:[this.sourceToken]});else if(Op(n.sep,"map-value-ind"))this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:a,key:null,sep:[this.sourceToken]}]});else if(yTe(n.key)&&!Op(n.sep,"newline")){const l=U0(n.start),c=n.key,u=n.sep;u.push(this.sourceToken),delete n.key,delete n.sep,this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:l,key:c,sep:u}]})}else a.length>0?n.sep=n.sep.concat(a,this.sourceToken):n.sep.push(this.sourceToken);else if(Op(n.start,"newline"))Object.assign(n,{key:null,sep:[this.sourceToken]});else{const l=U0(n.start);this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:l,key:null,sep:[this.sourceToken]}]})}else n.sep?n.value||s?t.items.push({start:a,key:null,sep:[this.sourceToken]}):Op(n.sep,"map-value-ind")?this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:[],key:null,sep:[this.sourceToken]}]}):n.sep.push(this.sourceToken):Object.assign(n,{key:null,sep:[this.sourceToken]});this.onKeyLine=!0;return;case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":{const l=this.flowScalar(this.type);s||n.value?(t.items.push({start:a,key:l,sep:[]}),this.onKeyLine=!0):n.sep?this.stack.push(l):(Object.assign(n,{key:l,sep:[]}),this.onKeyLine=!0);return}default:{const l=this.startBlockValue(t);if(l){if(l.type==="block-seq"){if(!n.explicitKey&&n.sep&&!Op(n.sep,"newline")){yield*this.pop({type:"error",offset:this.offset,message:"Unexpected block-seq-ind on same line with key",source:this.source});return}}else r&&t.items.push({start:a});this.stack.push(l);return}}}}yield*this.pop(),yield*this.step()}*blockSequence(t){var i;const n=t.items[t.items.length-1];switch(this.type){case"newline":if(n.value){const r="end"in n.value?n.value.end:void 0,s=Array.isArray(r)?r[r.length-1]:void 0;(s==null?void 0:s.type)==="comment"?r==null||r.push(this.sourceToken):t.items.push({start:[this.sourceToken]})}else n.start.push(this.sourceToken);return;case"space":case"comment":if(n.value)t.items.push({start:[this.sourceToken]});else{if(this.atIndentedComment(n.start,t.indent)){const r=t.items[t.items.length-2],s=(i=r==null?void 0:r.value)==null?void 0:i.end;if(Array.isArray(s)){TN(s,n.start),s.push(this.sourceToken),t.items.pop();return}}n.start.push(this.sourceToken)}return;case"anchor":case"tag":if(n.value||this.indent<=t.indent)break;n.start.push(this.sourceToken);return;case"seq-item-ind":if(this.indent!==t.indent)break;n.value||Op(n.start,"seq-item-ind")?t.items.push({start:[this.sourceToken]}):n.start.push(this.sourceToken);return}if(this.indent>t.indent){const r=this.startBlockValue(t);if(r){this.stack.push(r);return}}yield*this.pop(),yield*this.step()}*flowCollection(t){const n=t.items[t.items.length-1];if(this.type==="flow-error-end"){let i;do yield*this.pop(),i=this.peek(1);while((i==null?void 0:i.type)==="flow-collection")}else if(t.end.length===0){switch(this.type){case"comma":case"explicit-key-ind":!n||n.sep?t.items.push({start:[this.sourceToken]}):n.start.push(this.sourceToken);return;case"map-value-ind":!n||n.value?t.items.push({start:[],key:null,sep:[this.sourceToken]}):n.sep?n.sep.push(this.sourceToken):Object.assign(n,{key:null,sep:[this.sourceToken]});return;case"space":case"comment":case"newline":case"anchor":case"tag":!n||n.value?t.items.push({start:[this.sourceToken]}):n.sep?n.sep.push(this.sourceToken):n.start.push(this.sourceToken);return;case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":{const r=this.flowScalar(this.type);!n||n.value?t.items.push({start:[],key:r,sep:[]}):n.sep?this.stack.push(r):Object.assign(n,{key:r,sep:[]});return}case"flow-map-end":case"flow-seq-end":t.end.push(this.sourceToken);return}const i=this.startBlockValue(t);i?this.stack.push(i):(yield*this.pop(),yield*this.step())}else{const i=this.peek(2);if(i.type==="block-map"&&(this.type==="map-value-ind"&&i.indent===t.indent||this.type==="newline"&&!i.items[i.items.length-1].sep))yield*this.pop(),yield*this.step();else if(this.type==="map-value-ind"&&i.type!=="flow-collection"){const r=VT(i),s=U0(r);oZ(t);const a=t.end.splice(1,t.end.length);a.push(this.sourceToken);const l={type:"block-map",offset:t.offset,indent:t.indent,items:[{start:s,key:t,sep:a}]};this.onKeyLine=!0,this.stack[this.stack.length-1]=l}else yield*this.lineEnd(t)}}flowScalar(t){if(this.onNewLine){let n=this.source.indexOf(` +`,n)+1}yield*this.pop();break;default:yield*this.pop(),yield*this.step()}}*blockMap(t){var i;const n=t.items[t.items.length-1];switch(this.type){case"newline":if(this.onKeyLine=!1,n.value){const r="end"in n.value?n.value.end:void 0,s=Array.isArray(r)?r[r.length-1]:void 0;(s==null?void 0:s.type)==="comment"?r==null||r.push(this.sourceToken):t.items.push({start:[this.sourceToken]})}else n.sep?n.sep.push(this.sourceToken):n.start.push(this.sourceToken);return;case"space":case"comment":if(n.value)t.items.push({start:[this.sourceToken]});else if(n.sep)n.sep.push(this.sourceToken);else{if(this.atIndentedComment(n.start,t.indent)){const r=t.items[t.items.length-2],s=(i=r==null?void 0:r.value)==null?void 0:i.end;if(Array.isArray(s)){RN(s,n.start),s.push(this.sourceToken),t.items.pop();return}}n.start.push(this.sourceToken)}return}if(this.indent>=t.indent){const r=!this.onKeyLine&&this.indent===t.indent,s=r&&(n.sep||n.explicitKey)&&this.type!=="seq-item-ind";let a=[];if(s&&n.sep&&!n.value){const l=[];for(let c=0;ct.indent&&(l.length=0);break;default:l.length=0}}l.length>=2&&(a=n.sep.splice(l[1]))}switch(this.type){case"anchor":case"tag":s||n.value?(a.push(this.sourceToken),t.items.push({start:a}),this.onKeyLine=!0):n.sep?n.sep.push(this.sourceToken):n.start.push(this.sourceToken);return;case"explicit-key-ind":!n.sep&&!n.explicitKey?(n.start.push(this.sourceToken),n.explicitKey=!0):s||n.value?(a.push(this.sourceToken),t.items.push({start:a,explicitKey:!0})):this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:[this.sourceToken],explicitKey:!0}]}),this.onKeyLine=!0;return;case"map-value-ind":if(n.explicitKey)if(n.sep)if(n.value)t.items.push({start:[],key:null,sep:[this.sourceToken]});else if(Cp(n.sep,"map-value-ind"))this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:a,key:null,sep:[this.sourceToken]}]});else if(jTe(n.key)&&!Cp(n.sep,"newline")){const l=q0(n.start),c=n.key,u=n.sep;u.push(this.sourceToken),delete n.key,delete n.sep,this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:l,key:c,sep:u}]})}else a.length>0?n.sep=n.sep.concat(a,this.sourceToken):n.sep.push(this.sourceToken);else if(Cp(n.start,"newline"))Object.assign(n,{key:null,sep:[this.sourceToken]});else{const l=q0(n.start);this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:l,key:null,sep:[this.sourceToken]}]})}else n.sep?n.value||s?t.items.push({start:a,key:null,sep:[this.sourceToken]}):Cp(n.sep,"map-value-ind")?this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:[],key:null,sep:[this.sourceToken]}]}):n.sep.push(this.sourceToken):Object.assign(n,{key:null,sep:[this.sourceToken]});this.onKeyLine=!0;return;case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":{const l=this.flowScalar(this.type);s||n.value?(t.items.push({start:a,key:l,sep:[]}),this.onKeyLine=!0):n.sep?this.stack.push(l):(Object.assign(n,{key:l,sep:[]}),this.onKeyLine=!0);return}default:{const l=this.startBlockValue(t);if(l){if(l.type==="block-seq"){if(!n.explicitKey&&n.sep&&!Cp(n.sep,"newline")){yield*this.pop({type:"error",offset:this.offset,message:"Unexpected block-seq-ind on same line with key",source:this.source});return}}else r&&t.items.push({start:a});this.stack.push(l);return}}}}yield*this.pop(),yield*this.step()}*blockSequence(t){var i;const n=t.items[t.items.length-1];switch(this.type){case"newline":if(n.value){const r="end"in n.value?n.value.end:void 0,s=Array.isArray(r)?r[r.length-1]:void 0;(s==null?void 0:s.type)==="comment"?r==null||r.push(this.sourceToken):t.items.push({start:[this.sourceToken]})}else n.start.push(this.sourceToken);return;case"space":case"comment":if(n.value)t.items.push({start:[this.sourceToken]});else{if(this.atIndentedComment(n.start,t.indent)){const r=t.items[t.items.length-2],s=(i=r==null?void 0:r.value)==null?void 0:i.end;if(Array.isArray(s)){RN(s,n.start),s.push(this.sourceToken),t.items.pop();return}}n.start.push(this.sourceToken)}return;case"anchor":case"tag":if(n.value||this.indent<=t.indent)break;n.start.push(this.sourceToken);return;case"seq-item-ind":if(this.indent!==t.indent)break;n.value||Cp(n.start,"seq-item-ind")?t.items.push({start:[this.sourceToken]}):n.start.push(this.sourceToken);return}if(this.indent>t.indent){const r=this.startBlockValue(t);if(r){this.stack.push(r);return}}yield*this.pop(),yield*this.step()}*flowCollection(t){const n=t.items[t.items.length-1];if(this.type==="flow-error-end"){let i;do yield*this.pop(),i=this.peek(1);while((i==null?void 0:i.type)==="flow-collection")}else if(t.end.length===0){switch(this.type){case"comma":case"explicit-key-ind":!n||n.sep?t.items.push({start:[this.sourceToken]}):n.start.push(this.sourceToken);return;case"map-value-ind":!n||n.value?t.items.push({start:[],key:null,sep:[this.sourceToken]}):n.sep?n.sep.push(this.sourceToken):Object.assign(n,{key:null,sep:[this.sourceToken]});return;case"space":case"comment":case"newline":case"anchor":case"tag":!n||n.value?t.items.push({start:[this.sourceToken]}):n.sep?n.sep.push(this.sourceToken):n.start.push(this.sourceToken);return;case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":{const r=this.flowScalar(this.type);!n||n.value?t.items.push({start:[],key:r,sep:[]}):n.sep?this.stack.push(r):Object.assign(n,{key:r,sep:[]});return}case"flow-map-end":case"flow-seq-end":t.end.push(this.sourceToken);return}const i=this.startBlockValue(t);i?this.stack.push(i):(yield*this.pop(),yield*this.step())}else{const i=this.peek(2);if(i.type==="block-map"&&(this.type==="map-value-ind"&&i.indent===t.indent||this.type==="newline"&&!i.items[i.items.length-1].sep))yield*this.pop(),yield*this.step();else if(this.type==="map-value-ind"&&i.type!=="flow-collection"){const r=WT(i),s=q0(r);gZ(t);const a=t.end.splice(1,t.end.length);a.push(this.sourceToken);const l={type:"block-map",offset:t.offset,indent:t.indent,items:[{start:s,key:t,sep:a}]};this.onKeyLine=!0,this.stack[this.stack.length-1]=l}else yield*this.lineEnd(t)}}flowScalar(t){if(this.onNewLine){let n=this.source.indexOf(` `)+1;for(;n!==0;)this.onNewLine(this.offset+n),n=this.source.indexOf(` -`,n)+1}return{type:t,offset:this.offset,indent:this.indent,source:this.source}}startBlockValue(t){switch(this.type){case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return this.flowScalar(this.type);case"block-scalar-header":return{type:"block-scalar",offset:this.offset,indent:this.indent,props:[this.sourceToken],source:""};case"flow-map-start":case"flow-seq-start":return{type:"flow-collection",offset:this.offset,indent:this.indent,start:this.sourceToken,items:[],end:[]};case"seq-item-ind":return{type:"block-seq",offset:this.offset,indent:this.indent,items:[{start:[this.sourceToken]}]};case"explicit-key-ind":{this.onKeyLine=!0;const n=VT(t),i=U0(n);return i.push(this.sourceToken),{type:"block-map",offset:this.offset,indent:this.indent,items:[{start:i,explicitKey:!0}]}}case"map-value-ind":{this.onKeyLine=!0;const n=VT(t),i=U0(n);return{type:"block-map",offset:this.offset,indent:this.indent,items:[{start:i,key:null,sep:[this.sourceToken]}]}}}return null}atIndentedComment(t,n){return this.type!=="comment"||this.indent<=n?!1:t.every(i=>i.type==="newline"||i.type==="space")}*documentEnd(t){this.type!=="doc-mode"&&(t.end?t.end.push(this.sourceToken):t.end=[this.sourceToken],this.type==="newline"&&(yield*this.pop()))}*lineEnd(t){switch(this.type){case"comma":case"doc-start":case"doc-end":case"flow-seq-end":case"flow-map-end":case"map-value-ind":yield*this.pop(),yield*this.step();break;case"newline":this.onKeyLine=!1;case"space":case"comment":default:t.end?t.end.push(this.sourceToken):t.end=[this.sourceToken],this.type==="newline"&&(yield*this.pop())}}};function jkt(e){const t=e.prettyErrors!==!1;return{lineCounter:e.lineCounter||t&&new _kt||null,prettyErrors:t}}function vTe(e,t={}){const{lineCounter:n,prettyErrors:i}=jkt(t),r=new Nkt(n==null?void 0:n.addNewLine),s=new kkt(t);let a=null;for(const l of s.compose(r.parse(e),!0,e.length))if(!a)a=l;else if(a.options.logLevel!=="silent"){a.errors.push(new Qw(l.range.slice(0,2),"MULTIPLE_DOCS","Source contains multiple documents; please use YAML.parseAllDocuments()"));break}return i&&n&&(a.errors.forEach(nZ(e,n)),a.warnings.forEach(nZ(e,n))),a}function Rkt(e,t,n){let i;const r=vTe(e,n);if(!r)return null;if(r.warnings.forEach(s=>zCe(r.options.logLevel,s)),r.errors.length>0){if(r.options.logLevel!=="silent")throw r.errors[0];r.errors=[]}return r.toJS(Object.assign({reviver:i},n))}function FU(e,t,n){let i=null;if(typeof t=="function"||Array.isArray(t)?i=t:n===void 0&&t&&(n=t),typeof n=="string"&&(n=n.length),typeof n=="number"){const r=Math.round(n);n=r<1?void 0:r>8?{indent:8}:{indent:r}}if(e===void 0){const{keepUndefined:r}=n??t??{};if(!r)return}return AE(e)&&!i?e.toString(n):new RE(e,i,n).toString(n)}const xTe=1024;let Ikt=0,Wc=class{constructor(t,n){this.from=t,this.to=n}};class Ln{constructor(t={}){this.id=Ikt++,this.perNode=!!t.perNode,this.deserialize=t.deserialize||(()=>{throw new Error("This node type doesn't define a deserialize function")}),this.combine=t.combine||null}add(t){if(this.perNode)throw new RangeError("Can't add per-node props to node types");return typeof t!="function"&&(t=ea.match(t)),n=>{let i=t(n);return i===void 0?null:[this,i]}}}Ln.closedBy=new Ln({deserialize:e=>e.split(" ")});Ln.openedBy=new Ln({deserialize:e=>e.split(" ")});Ln.group=new Ln({deserialize:e=>e.split(" ")});Ln.isolate=new Ln({deserialize:e=>{if(e&&e!="rtl"&&e!="ltr"&&e!="auto")throw new RangeError("Invalid value for isolate: "+e);return e||"auto"}});Ln.contextHash=new Ln({perNode:!0});Ln.lookAhead=new Ln({perNode:!0});Ln.mounted=new Ln({perNode:!0});class lv{constructor(t,n,i,r=!1){this.tree=t,this.overlay=n,this.parser=i,this.bracketed=r}static get(t){return t&&t.props&&t.props[Ln.mounted.id]}}const Pkt=Object.create(null);class ea{constructor(t,n,i,r=0){this.name=t,this.props=n,this.id=i,this.flags=r}static define(t){let n=t.props&&t.props.length?Object.create(null):Pkt,i=(t.top?1:0)|(t.skipped?2:0)|(t.error?4:0)|(t.name==null?8:0),r=new ea(t.name||"",n,t.id,i);if(t.props){for(let s of t.props)if(Array.isArray(s)||(s=s(r)),s){if(s[0].perNode)throw new RangeError("Can't store a per-node prop on a node type");n[s[0].id]=s[1]}}return r}prop(t){return this.props[t.id]}get isTop(){return(this.flags&1)>0}get isSkipped(){return(this.flags&2)>0}get isError(){return(this.flags&4)>0}get isAnonymous(){return(this.flags&8)>0}is(t){if(typeof t=="string"){if(this.name==t)return!0;let n=this.prop(Ln.group);return n?n.indexOf(t)>-1:!1}return this.id==t}static match(t){let n=Object.create(null);for(let i in t)for(let r of i.split(" "))n[r]=t[i];return i=>{for(let r=i.prop(Ln.group),s=-1;s<(r?r.length:0);s++){let a=n[s<0?i.name:r[s]];if(a)return a}}}}ea.none=new ea("",Object.create(null),0,8);class t1{constructor(t){this.types=t;for(let n=0;n0;for(let c=this.cursor(a|er.IncludeAnonymous);;){let u=!1;if(c.from<=s&&c.to>=r&&(!l&&c.type.isAnonymous||n(c)!==!1)){if(c.firstChild())continue;u=!0}for(;u&&i&&(l||!c.type.isAnonymous)&&i(c),!c.nextSibling();){if(!c.parent())return;u=!0}}}prop(t){return t.perNode?this.props?this.props[t.id]:void 0:this.type.prop(t)}get propValues(){let t=[];if(this.props)for(let n in this.props)t.push([+n,this.props[n]]);return t}balance(t={}){return this.children.length<=8?this:QU(ea.none,this.children,this.positions,0,this.children.length,0,this.length,(n,i,r)=>new hi(this.type,n,i,r,this.propValues),t.makeTree||((n,i,r)=>new hi(ea.none,n,i,r)))}static build(t){return $kt(t)}}hi.empty=new hi(ea.none,[],[],0);class BU{constructor(t,n){this.buffer=t,this.index=n}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new BU(this.buffer,this.index)}}class km{constructor(t,n,i){this.buffer=t,this.length=n,this.set=i}get type(){return ea.none}toString(){let t=[];for(let n=0;n0));c=a[c+3]);return l}slice(t,n,i){let r=this.buffer,s=new Uint16Array(n-t),a=0;for(let l=t,c=0;l=t&&nt;case 1:return n<=t&&i>t;case 2:return i>t;case 4:return!0}}function XS(e,t,n,i){for(var r;e.from==e.to||(n<1?e.from>=t:e.from>t)||(n>-1?e.to<=t:e.to0?l.length:-1;t!=u;t+=n){let d=l[t],f=c[t]+a.from,h;if(!(!(s&er.EnterBracketed&&d instanceof hi&&(h=lv.get(d))&&!h.overlay&&h.bracketed&&i>=f&&i<=f+d.length)&&!wTe(r,i,f,f+d.length))){if(d instanceof km){if(s&er.ExcludeBuffers)continue;let m=d.findChild(0,d.buffer.length,n,i-f,r);if(m>-1)return new Td(new Dkt(a,d,t,f),null,m)}else if(s&er.IncludeAnonymous||!d.type.isAnonymous||UU(d)){let m;if(!(s&er.IgnoreMounts)&&(m=lv.get(d))&&!m.overlay)return new wo(m.tree,f,t,a);let g=new wo(d,f,t,a);return s&er.IncludeAnonymous||!g.type.isAnonymous?g:g.nextChild(n<0?d.children.length-1:0,n,i,r,s)}}}if(s&er.IncludeAnonymous||!a.type.isAnonymous||(a.index>=0?t=a.index+n:t=n<0?-1:a._parent._tree.children.length,a=a._parent,!a))return null}}get firstChild(){return this.nextChild(0,1,0,4)}get lastChild(){return this.nextChild(this._tree.children.length-1,-1,0,4)}childAfter(t){return this.nextChild(0,1,t,2)}childBefore(t){return this.nextChild(this._tree.children.length-1,-1,t,-2)}prop(t){return this._tree.prop(t)}enter(t,n,i=0){let r;if(!(i&er.IgnoreOverlays)&&(r=lv.get(this._tree))&&r.overlay){let s=t-this.from,a=i&er.EnterBracketed&&r.bracketed;for(let{from:l,to:c}of r.overlay)if((n>0||a?l<=s:l=s:c>s))return new wo(r.tree,r.overlay[0].from+this.from,-1,this)}return this.nextChild(0,1,t,n,i)}nextSignificantParent(){let t=this;for(;t.type.isAnonymous&&t._parent;)t=t._parent;return t}get parent(){return this._parent?this._parent.nextSignificantParent():null}get nextSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index+1,1,0,4):null}get prevSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index-1,-1,0,4):null}get tree(){return this._tree}toTree(){return this._tree}toString(){return this._tree.toString()}}function cZ(e,t,n,i){let r=e.cursor(),s=[];if(!r.firstChild())return s;if(n!=null){for(let a=!1;!a;)if(a=r.type.is(n),!r.nextSibling())return s}for(;;){if(i!=null&&r.type.is(i))return s;if(r.type.is(t)&&s.push(r.node),!r.nextSibling())return i==null?s:[]}}function u$(e,t,n=t.length-1){for(let i=e;n>=0;i=i.parent){if(!i)return!1;if(!i.type.isAnonymous){if(t[n]&&t[n]!=i.name)return!1;n--}}return!0}class Dkt{constructor(t,n,i,r){this.parent=t,this.buffer=n,this.index=i,this.start=r}}class Td extends OTe{get name(){return this.type.name}get from(){return this.context.start+this.context.buffer.buffer[this.index+1]}get to(){return this.context.start+this.context.buffer.buffer[this.index+2]}constructor(t,n,i){super(),this.context=t,this._parent=n,this.index=i,this.type=t.buffer.set.types[t.buffer.buffer[i]]}child(t,n,i){let{buffer:r}=this.context,s=r.findChild(this.index+4,r.buffer[this.index+3],t,n-this.context.start,i);return s<0?null:new Td(this.context,this,s)}get firstChild(){return this.child(1,0,4)}get lastChild(){return this.child(-1,0,4)}childAfter(t){return this.child(1,t,2)}childBefore(t){return this.child(-1,t,-2)}prop(t){return this.type.prop(t)}enter(t,n,i=0){if(i&er.ExcludeBuffers)return null;let{buffer:r}=this.context,s=r.findChild(this.index+4,r.buffer[this.index+3],n>0?1:-1,t-this.context.start,n);return s<0?null:new Td(this.context,this,s)}get parent(){return this._parent||this.context.parent.nextSignificantParent()}externalSibling(t){return this._parent?null:this.context.parent.nextChild(this.context.index+t,t,0,4)}get nextSibling(){let{buffer:t}=this.context,n=t.buffer[this.index+3];return n<(this._parent?t.buffer[this._parent.index+3]:t.buffer.length)?new Td(this.context,this._parent,n):this.externalSibling(1)}get prevSibling(){let{buffer:t}=this.context,n=this._parent?this._parent.index+4:0;return this.index==n?this.externalSibling(-1):new Td(this.context,this._parent,t.findChild(n,this.index,-1,0,4))}get tree(){return null}toTree(){let t=[],n=[],{buffer:i}=this.context,r=this.index+4,s=i.buffer[this.index+3];if(s>r){let a=i.buffer[this.index+1];t.push(i.slice(r,s,a)),n.push(0)}return new hi(this.type,t,n,this.to-this.from)}toString(){return this.context.buffer.childString(this.index)}}function STe(e){if(!e.length)return null;let t=0,n=e[0];for(let s=1;sn.from||a.to=t){let l=new wo(a.tree,a.overlay[0].from+s.from,-1,s);(r||(r=[i])).push(XS(l,t,n,!1))}}return r?STe(r):i}class AN{get name(){return this.type.name}constructor(t,n=0){if(this.buffer=null,this.stack=[],this.index=0,this.bufferNode=null,this.mode=n&~er.EnterBracketed,t instanceof wo)this.yieldNode(t);else{this._tree=t.context.parent,this.buffer=t.context;for(let i=t._parent;i;i=i._parent)this.stack.unshift(i.index);this.bufferNode=t,this.yieldBuf(t.index)}}yieldNode(t){return t?(this._tree=t,this.type=t.type,this.from=t.from,this.to=t.to,!0):!1}yieldBuf(t,n){this.index=t;let{start:i,buffer:r}=this.buffer;return this.type=n||r.set.types[r.buffer[t]],this.from=i+r.buffer[t+1],this.to=i+r.buffer[t+2],!0}yield(t){return t?t instanceof wo?(this.buffer=null,this.yieldNode(t)):(this.buffer=t.context,this.yieldBuf(t.index,t.type)):!1}toString(){return this.buffer?this.buffer.buffer.childString(this.index):this._tree.toString()}enterChild(t,n,i){if(!this.buffer)return this.yield(this._tree.nextChild(t<0?this._tree._tree.children.length-1:0,t,n,i,this.mode));let{buffer:r}=this.buffer,s=r.findChild(this.index+4,r.buffer[this.index+3],t,n-this.buffer.start,i);return s<0?!1:(this.stack.push(this.index),this.yieldBuf(s))}firstChild(){return this.enterChild(1,0,4)}lastChild(){return this.enterChild(-1,0,4)}childAfter(t){return this.enterChild(1,t,2)}childBefore(t){return this.enterChild(-1,t,-2)}enter(t,n,i=this.mode){return this.buffer?i&er.ExcludeBuffers?!1:this.enterChild(1,t,n):this.yield(this._tree.enter(t,n,i))}parent(){if(!this.buffer)return this.yieldNode(this.mode&er.IncludeAnonymous?this._tree._parent:this._tree.parent);if(this.stack.length)return this.yieldBuf(this.stack.pop());let t=this.mode&er.IncludeAnonymous?this.buffer.parent:this.buffer.parent.nextSignificantParent();return this.buffer=null,this.yieldNode(t)}sibling(t){if(!this.buffer)return this._tree._parent?this.yield(this._tree.index<0?null:this._tree._parent.nextChild(this._tree.index+t,t,0,4,this.mode)):!1;let{buffer:n}=this.buffer,i=this.stack.length-1;if(t<0){let r=i<0?0:this.stack[i]+4;if(this.index!=r)return this.yieldBuf(n.findChild(r,this.index,-1,0,4))}else{let r=n.buffer[this.index+3];if(r<(i<0?n.buffer.length:n.buffer[this.stack[i]+3]))return this.yieldBuf(r)}return i<0?this.yield(this.buffer.parent.nextChild(this.buffer.index+t,t,0,4,this.mode)):!1}nextSibling(){return this.sibling(1)}prevSibling(){return this.sibling(-1)}atLastNode(t){let n,i,{buffer:r}=this;if(r){if(t>0){if(this.index-1)for(let s=n+t,a=t<0?-1:i._tree.children.length;s!=a;s+=t){let l=i._tree.children[s];if(this.mode&er.IncludeAnonymous||l instanceof km||!l.type.isAnonymous||UU(l))return!1}return!0}move(t,n){if(n&&this.enterChild(t,0,4))return!0;for(;;){if(this.sibling(t))return!0;if(this.atLastNode(t)||!this.parent())return!1}}next(t=!0){return this.move(1,t)}prev(t=!0){return this.move(-1,t)}moveTo(t,n=0){for(;(this.from==this.to||(n<1?this.from>=t:this.from>t)||(n>-1?this.to<=t:this.to=0;){for(let a=t;a;a=a._parent)if(a.index==r){if(r==this.index)return a;n=a,i=s+1;break e}r=this.stack[--s]}for(let r=i;r=0;s--){if(s<0)return u$(this._tree,t,r);let a=i[n.buffer[this.stack[s]]];if(!a.isAnonymous){if(t[r]&&t[r]!=a.name)return!1;r--}}return!0}}function UU(e){return e.children.some(t=>t instanceof km||!t.type.isAnonymous||UU(t))}function $kt(e){var t;let{buffer:n,nodeSet:i,maxBufferLength:r=xTe,reused:s=[],minRepeatType:a=i.types.length}=e,l=Array.isArray(n)?new BU(n,n.length):n,c=i.types,u=0,d=0;function f(k,S,E,C,N,_){let{id:j,start:A,end:F,size:T}=l,P=d,R=u;if(T<0)if(l.next(),T==-1){let H=s[j];E.push(H),C.push(A-k);return}else if(T==-3){u=j;return}else if(T==-4){d=j;return}else throw new RangeError(`Unrecognized record size: ${T}`);let L=c[j],M,U,I=A-k;if(F-A<=r&&(U=v(l.pos-S,N))){let H=new Uint16Array(U.size-U.skip),K=l.pos-U.size,Q=H.length;for(;l.pos>K;)Q=y(U.start,H,Q);M=new km(H,F-U.start,i),I=U.start-k}else{let H=l.pos-T;l.next();let K=[],Q=[],q=j>=a?j:-1,B=0,ee=F;for(;l.pos>H;)q>=0&&l.id==q&&l.size>=0?(l.end<=ee-r&&(g(K,Q,A,B,l.end,ee,q,P,R),B=K.length,ee=l.end),l.next()):_>2500?h(A,H,K,Q):f(A,H,K,Q,q,_+1);if(q>=0&&B>0&&B-1&&B>0){let le=m(L,R);M=QU(L,K,Q,0,K.length,0,F-A,le,le)}else M=b(L,K,Q,F-A,P-F,R)}E.push(M),C.push(I)}function h(k,S,E,C){let N=[],_=0,j=-1;for(;l.pos>S;){let{id:A,start:F,end:T,size:P}=l;if(P>4)l.next();else{if(j>-1&&F=0;T-=3)A[P++]=N[T],A[P++]=N[T+1]-F,A[P++]=N[T+2]-F,A[P++]=P;E.push(new km(A,N[2]-F,i)),C.push(F-k)}}function m(k,S){return(E,C,N)=>{let _=0,j=E.length-1,A,F;if(j>=0&&(A=E[j])instanceof hi){if(!j&&A.type==k&&A.length==N)return A;(F=A.prop(Ln.lookAhead))&&(_=C[j]+A.length+F)}return b(k,E,C,N,_,S)}}function g(k,S,E,C,N,_,j,A,F){let T=[],P=[];for(;k.length>C;)T.push(k.pop()),P.push(S.pop()+E-N);k.push(b(i.types[j],T,P,_-N,A-_,F)),S.push(N-E)}function b(k,S,E,C,N,_,j){if(_){let A=[Ln.contextHash,_];j=j?[A].concat(j):[A]}if(N>25){let A=[Ln.lookAhead,N];j=j?[A].concat(j):[A]}return new hi(k,S,E,C,j)}function v(k,S){let E=l.fork(),C=0,N=0,_=0,j=E.end-r,A={size:0,start:0,skip:0};e:for(let F=E.pos-k;E.pos>F;){let T=E.size;if(E.id==S&&T>=0){A.size=C,A.start=N,A.skip=_,_+=4,C+=4,E.next();continue}let P=E.pos-T;if(T<0||P=a?4:0,L=E.start;for(E.next();E.pos>P;){if(E.size<0)if(E.size==-3||E.size==-4)R+=4;else break e;else E.id>=a&&(R+=4);E.next()}N=L,C+=T,_+=R}return(S<0||C==k)&&(A.size=C,A.start=N,A.skip=_),A.size>4?A:void 0}function y(k,S,E){let{id:C,start:N,end:_,size:j}=l;if(l.next(),j>=0&&C4){let F=l.pos-(j-4);for(;l.pos>F;)E=y(k,S,E)}S[--E]=A,S[--E]=_-k,S[--E]=N-k,S[--E]=C}else j==-3?u=C:j==-4&&(d=C);return E}let x=[],O=[];for(;l.pos>0;)f(e.start||0,e.bufferStart||0,x,O,-1,0);let w=(t=e.length)!==null&&t!==void 0?t:x.length?O[0]+x[0].length:0;return new hi(c[e.topID],x.reverse(),O.reverse(),w)}const uZ=new WeakMap;function TA(e,t){if(!e.isAnonymous||t instanceof km||t.type!=e)return 1;let n=uZ.get(t);if(n==null){n=1;for(let i of t.children){if(i.type!=e||!(i instanceof hi)){n=1;break}n+=TA(e,i)}uZ.set(t,n)}return n}function QU(e,t,n,i,r,s,a,l,c){let u=0;for(let g=i;g=d)break;S+=E}if(O==w+1){if(S>d){let E=g[w];m(E.children,E.positions,0,E.children.length,b[w]+x);continue}f.push(g[w])}else{let E=b[O-1]+g[O-1].length-k;f.push(QU(e,g,b,w,O,k,E,null,c))}h.push(k+x-s)}}return m(t,n,i,r,0),(l||c)(f,h,a)}class zU{constructor(){this.map=new WeakMap}setBuffer(t,n,i){let r=this.map.get(t);r||this.map.set(t,r=new Map),r.set(n,i)}getBuffer(t,n){let i=this.map.get(t);return i&&i.get(n)}set(t,n){t instanceof Td?this.setBuffer(t.context.buffer,t.index,n):t instanceof wo&&this.map.set(t.tree,n)}get(t){return t instanceof Td?this.getBuffer(t.context.buffer,t.index):t instanceof wo?this.map.get(t.tree):void 0}cursorSet(t,n){t.buffer?this.setBuffer(t.buffer.buffer,t.index,n):this.map.set(t.tree,n)}cursorGet(t){return t.buffer?this.getBuffer(t.buffer.buffer,t.index):this.map.get(t.tree)}}class uh{constructor(t,n,i,r,s=!1,a=!1){this.from=t,this.to=n,this.tree=i,this.offset=r,this.open=(s?1:0)|(a?2:0)}get openStart(){return(this.open&1)>0}get openEnd(){return(this.open&2)>0}static addTree(t,n=[],i=!1){let r=[new uh(0,t.length,t,0,!1,i)];for(let s of n)s.to>t.length&&r.push(s);return r}static applyChanges(t,n,i=128){if(!n.length)return t;let r=[],s=1,a=t.length?t[0]:null;for(let l=0,c=0,u=0;;l++){let d=l=i)for(;a&&a.from=h.from||f<=h.to||u){let m=Math.max(h.from,c)-u,g=Math.min(h.to,f)-u;h=m>=g?null:new uh(m,g,h.tree,h.offset+u,l>0,!!d)}if(h&&r.push(h),a.to>f)break;a=snew Wc(r.from,r.to)):[new Wc(0,0)]:[new Wc(0,t.length)],this.createParse(t,n||[],i)}parse(t,n,i){let r=this.startParse(t,n,i);for(;;){let s=r.advance();if(s)return s}}}class Fkt{constructor(t){this.string=t}get length(){return this.string.length}chunk(t){return this.string.slice(t)}get lineChunks(){return!1}read(t,n){return this.string.slice(t,n)}}function kTe(e){return(t,n,i,r)=>new Ukt(t,e,n,i,r)}class dZ{constructor(t,n,i,r,s,a){this.parser=t,this.parse=n,this.overlay=i,this.bracketed=r,this.target=s,this.from=a}}function fZ(e){if(!e.length||e.some(t=>t.from>=t.to))throw new RangeError("Invalid inner parse ranges given: "+JSON.stringify(e))}class Bkt{constructor(t,n,i,r,s,a,l,c){this.parser=t,this.predicate=n,this.mounts=i,this.index=r,this.start=s,this.bracketed=a,this.target=l,this.prev=c,this.depth=0,this.ranges=[]}}const d$=new Ln({perNode:!0});class Ukt{constructor(t,n,i,r,s){this.nest=n,this.input=i,this.fragments=r,this.ranges=s,this.inner=[],this.innerDone=0,this.baseTree=null,this.stoppedAt=null,this.baseParse=t}advance(){if(this.baseParse){let i=this.baseParse.advance();if(!i)return null;if(this.baseParse=null,this.baseTree=i,this.startInner(),this.stoppedAt!=null)for(let r of this.inner)r.parse.stopAt(this.stoppedAt)}if(this.innerDone==this.inner.length){let i=this.baseTree;return this.stoppedAt!=null&&(i=new hi(i.type,i.children,i.positions,i.length,i.propValues.concat([[d$,this.stoppedAt]]))),i}let t=this.inner[this.innerDone],n=t.parse.advance();if(n){this.innerDone++;let i=Object.assign(Object.create(null),t.target.props);i[Ln.mounted.id]=new lv(n,t.overlay,t.parser,t.bracketed),t.target.props=i}return null}get parsedPos(){if(this.baseParse)return 0;let t=this.input.length;for(let n=this.innerDone;n=this.stoppedAt)l=!1;else if(t.hasNode(r)){if(n){let u=n.mounts.find(d=>d.frag.from<=r.from&&d.frag.to>=r.to&&d.mount.overlay);if(u)for(let d of u.mount.overlay){let f=d.from+u.pos,h=d.to+u.pos;f>=r.from&&h<=r.to&&!n.ranges.some(m=>m.fromf)&&n.ranges.push({from:f,to:h})}}l=!1}else if(i&&(a=Qkt(i.ranges,r.from,r.to)))l=a!=2;else if(!r.type.isAnonymous&&(s=this.nest(r,this.input))&&(r.fromnew Wc(f.from-r.from,f.to-r.from)):null,!!s.bracketed,r.tree,d.length?d[0].from:r.from)),s.overlay?d.length&&(i={ranges:d,depth:0,prev:i}):l=!1}}else if(n&&(c=n.predicate(r))&&(c===!0&&(c=new Wc(r.from,r.to)),c.from=0&&n.ranges[u].to==c.from?n.ranges[u]={from:n.ranges[u].from,to:c.to}:n.ranges.push(c)}if(l&&r.firstChild())n&&n.depth++,i&&i.depth++;else for(;!r.nextSibling();){if(!r.parent())break e;if(n&&!--n.depth){let u=mZ(this.ranges,n.ranges);u.length&&(fZ(u),this.inner.splice(n.index,0,new dZ(n.parser,n.parser.startParse(this.input,gZ(n.mounts,u),u),n.ranges.map(d=>new Wc(d.from-n.start,d.to-n.start)),n.bracketed,n.target,u[0].from))),n=n.prev}i&&!--i.depth&&(i=i.prev)}}}}function Qkt(e,t,n){for(let i of e){if(i.from>=n)break;if(i.to>t)return i.from<=t&&i.to>=n?2:1}return 0}function hZ(e,t,n,i,r,s){if(t=t&&n.enter(i,1,er.IgnoreOverlays|er.ExcludeBuffers)))if(n.to<=t)n.next(!1)||(this.done=!0);else break}hasNode(t){if(this.moveTo(t.from),!this.done&&this.cursor.from+this.offset==t.from&&this.cursor.tree)for(let n=this.cursor.tree;;){if(n==t.tree)return!0;if(n.children.length&&n.positions[0]==0&&n.children[0]instanceof hi)n=n.children[0];else break}return!1}}let Vkt=class{constructor(t){var n;if(this.fragments=t,this.curTo=0,this.fragI=0,t.length){let i=this.curFrag=t[0];this.curTo=(n=i.tree.prop(d$))!==null&&n!==void 0?n:i.to,this.inner=new pZ(i.tree,-i.offset)}else this.curFrag=this.inner=null}hasNode(t){for(;this.curFrag&&t.from>=this.curTo;)this.nextFrag();return this.curFrag&&this.curFrag.from<=t.from&&this.curTo>=t.to&&this.inner.hasNode(t)}nextFrag(){var t;if(this.fragI++,this.fragI==this.fragments.length)this.curFrag=this.inner=null;else{let n=this.curFrag=this.fragments[this.fragI];this.curTo=(t=n.tree.prop(d$))!==null&&t!==void 0?t:n.to,this.inner=new pZ(n.tree,-n.offset)}}findMounts(t,n){var i;let r=[];if(this.inner){this.inner.cursor.moveTo(t,1);for(let s=this.inner.cursor.node;s;s=s.parent){let a=(i=s.tree)===null||i===void 0?void 0:i.prop(Ln.mounted);if(a&&a.parser==n)for(let l=this.fragI;l=s.to)break;c.tree==this.curFrag.tree&&r.push({frag:c,pos:s.from-c.offset,mount:a})}}}return r}};function mZ(e,t){let n=null,i=t;for(let r=1,s=0;r=l)break;c.to<=a||(n||(i=n=t.slice()),c.froml&&n.splice(s+1,0,new Wc(l,c.to))):c.to>l?n[s--]=new Wc(l,c.to):n.splice(s--,1))}}return i}function Hkt(e,t,n,i){let r=0,s=0,a=!1,l=!1,c=-1e9,u=[];for(;;){let d=r==e.length?1e9:a?e[r].to:e[r].from,f=s==t.length?1e9:l?t[s].to:t[s].from;if(a!=l){let h=Math.max(c,n),m=Math.min(d,f,i);hnew Wc(h.from+i,h.to+i)),f=Hkt(t,d,c,u);for(let h=0,m=c;;h++){let g=h==f.length,b=g?u:f[h].from;if(b>m&&n.push(new uh(m,b,r.tree,-a,s.from>=m||s.openStart,s.to<=b||s.openEnd)),g)break;m=f[h].to}}else n.push(new uh(c,u,r.tree,-a,s.from>=a||s.openStart,s.to<=l||s.openEnd))}return n}let f$=[],ETe=[];(()=>{let e="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map(t=>t?parseInt(t,36):1);for(let t=0,n=0;t>1;if(e=ETe[i])t=i+1;else return!0;if(t==n)return!1}}function bZ(e){return e>=127462&&e<=127487}const yZ=8205;function Wkt(e,t,n=!0,i=!0){return(n?CTe:Gkt)(e,t,i)}function CTe(e,t,n){if(t==e.length)return t;t&&TTe(e.charCodeAt(t))&&ATe(e.charCodeAt(t-1))&&t--;let i=i5(e,t);for(t+=vZ(i);t=0&&bZ(i5(e,a));)s++,a-=2;if(s%2==0)break;t+=2}else break}return t}function Gkt(e,t,n){for(;t>1;){let i=CTe(e,t-2,n);if(i=56320&&e<57344}function ATe(e){return e>=55296&&e<56320}function vZ(e){return e<65536?1:2}let Gi=class _Te{lineAt(t){if(t<0||t>this.length)throw new RangeError(`Invalid position ${t} in document of length ${this.length}`);return this.lineInner(t,!1,1,0)}line(t){if(t<1||t>this.lines)throw new RangeError(`Invalid line number ${t} in ${this.lines}-line document`);return this.lineInner(t,!0,1,0)}replace(t,n,i){[t,n]=ix(this,t,n);let r=[];return this.decompose(0,t,r,2),i.length&&i.decompose(0,i.length,r,3),this.decompose(n,this.length,r,1),yd.from(r,this.length-(n-t)+i.length)}append(t){return this.replace(this.length,this.length,t)}slice(t,n=this.length){[t,n]=ix(this,t,n);let i=[];return this.decompose(t,n,i,0),yd.from(i,n-t)}eq(t){if(t==this)return!0;if(t.length!=this.length||t.lines!=this.lines)return!1;let n=this.scanIdentical(t,1),i=this.length-this.scanIdentical(t,-1),r=new LO(this),s=new LO(t);for(let a=n,l=n;;){if(r.next(a),s.next(a),a=0,r.lineBreak!=s.lineBreak||r.done!=s.done||r.value!=s.value)return!1;if(l+=r.value.length,r.done||l>=i)return!0}}iter(t=1){return new LO(this,t)}iterRange(t,n=this.length){return new NTe(this,t,n)}iterLines(t,n){let i;if(t==null)i=this.iter();else{n==null&&(n=this.lines+1);let r=this.line(t).from;i=this.iterRange(r,Math.max(r,n==this.lines+1?this.length:n<=1?0:this.line(n-1).to))}return new jTe(i)}toString(){return this.sliceString(0)}toJSON(){let t=[];return this.flatten(t),t}constructor(){}static of(t){if(t.length==0)throw new RangeError("A document must have at least one line");return t.length==1&&!t[0]?_Te.empty:t.length<=32?new Ps(t):yd.from(Ps.split(t,[]))}};class Ps extends Gi{constructor(t,n=Kkt(t)){super(),this.text=t,this.length=n}get lines(){return this.text.length}get children(){return null}lineInner(t,n,i,r){for(let s=0;;s++){let a=this.text[s],l=r+a.length;if((n?i:l)>=t)return new Xkt(r,l,i,a);r=l+1,i++}}decompose(t,n,i,r){let s=t<=0&&n>=this.length?this:new Ps(xZ(this.text,t,n),Math.min(n,this.length)-Math.max(0,t));if(r&1){let a=i.pop(),l=AA(s.text,a.text.slice(),0,s.length);if(l.length<=32)i.push(new Ps(l,a.length+s.length));else{let c=l.length>>1;i.push(new Ps(l.slice(0,c)),new Ps(l.slice(c)))}}else i.push(s)}replace(t,n,i){if(!(i instanceof Ps))return super.replace(t,n,i);[t,n]=ix(this,t,n);let r=AA(this.text,AA(i.text,xZ(this.text,0,t)),n),s=this.length+i.length-(n-t);return r.length<=32?new Ps(r,s):yd.from(Ps.split(r,[]),s)}sliceString(t,n=this.length,i=` -`){[t,n]=ix(this,t,n);let r="";for(let s=0,a=0;s<=n&&at&&a&&(r+=i),ts&&(r+=l.slice(Math.max(0,t-s),n-s)),s=c+1}return r}flatten(t){for(let n of this.text)t.push(n)}scanIdentical(){return 0}static split(t,n){let i=[],r=-1;for(let s of t)i.push(s),r+=s.length+1,i.length==32&&(n.push(new Ps(i,r)),i=[],r=-1);return r>-1&&n.push(new Ps(i,r)),n}}class yd extends Gi{constructor(t,n){super(),this.children=t,this.length=n,this.lines=0;for(let i of t)this.lines+=i.lines}lineInner(t,n,i,r){for(let s=0;;s++){let a=this.children[s],l=r+a.length,c=i+a.lines-1;if((n?c:l)>=t)return a.lineInner(t,n,i,r);r=l+1,i=c+1}}decompose(t,n,i,r){for(let s=0,a=0;a<=n&&s=a){let u=r&((a<=t?1:0)|(c>=n?2:0));a>=t&&c<=n&&!u?i.push(l):l.decompose(t-a,n-a,i,u)}a=c+1}}replace(t,n,i){if([t,n]=ix(this,t,n),i.lines=s&&n<=l){let c=a.replace(t-s,n-s,i),u=this.lines-a.lines+c.lines;if(c.lines>4&&c.lines>u>>6){let d=this.children.slice();return d[r]=c,new yd(d,this.length-(n-t)+i.length)}return super.replace(s,l,c)}s=l+1}return super.replace(t,n,i)}sliceString(t,n=this.length,i=` -`){[t,n]=ix(this,t,n);let r="";for(let s=0,a=0;st&&s&&(r+=i),ta&&(r+=l.sliceString(t-a,n-a,i)),a=c+1}return r}flatten(t){for(let n of this.children)n.flatten(t)}scanIdentical(t,n){if(!(t instanceof yd))return 0;let i=0,[r,s,a,l]=n>0?[0,0,this.children.length,t.children.length]:[this.children.length-1,t.children.length-1,-1,-1];for(;;r+=n,s+=n){if(r==a||s==l)return i;let c=this.children[r],u=t.children[s];if(c!=u)return i+c.scanIdentical(u,n);i+=c.length+1}}static from(t,n=t.reduce((i,r)=>i+r.length+1,-1)){let i=0;for(let m of t)i+=m.lines;if(i<32){let m=[];for(let g of t)g.flatten(m);return new Ps(m,n)}let r=Math.max(32,i>>5),s=r<<1,a=r>>1,l=[],c=0,u=-1,d=[];function f(m){let g;if(m.lines>s&&m instanceof yd)for(let b of m.children)f(b);else m.lines>a&&(c>a||!c)?(h(),l.push(m)):m instanceof Ps&&c&&(g=d[d.length-1])instanceof Ps&&m.lines+g.lines<=32?(c+=m.lines,u+=m.length+1,d[d.length-1]=new Ps(g.text.concat(m.text),g.length+1+m.length)):(c+m.lines>r&&h(),c+=m.lines,u+=m.length+1,d.push(m))}function h(){c!=0&&(l.push(d.length==1?d[0]:yd.from(d,u)),u=-1,c=d.length=0)}for(let m of t)f(m);return h(),l.length==1?l[0]:new yd(l,n)}}Gi.empty=new Ps([""],0);function Kkt(e){let t=-1;for(let n of e)t+=n.length+1;return t}function AA(e,t,n=0,i=1e9){for(let r=0,s=0,a=!0;s=n&&(c>i&&(l=l.slice(0,i-r)),r0?1:(t instanceof Ps?t.text.length:t.children.length)<<1]}nextInner(t,n){for(this.done=this.lineBreak=!1;;){let i=this.nodes.length-1,r=this.nodes[i],s=this.offsets[i],a=s>>1,l=r instanceof Ps?r.text.length:r.children.length;if(a==(n>0?l:0)){if(i==0)return this.done=!0,this.value="",this;n>0&&this.offsets[i-1]++,this.nodes.pop(),this.offsets.pop()}else if((s&1)==(n>0?0:1)){if(this.offsets[i]+=n,t==0)return this.lineBreak=!0,this.value=` -`,this;t--}else if(r instanceof Ps){let c=r.text[a+(n<0?-1:0)];if(this.offsets[i]+=n,c.length>Math.max(0,t))return this.value=t==0?c:n>0?c.slice(t):c.slice(0,c.length-t),this;t-=c.length}else{let c=r.children[a+(n<0?-1:0)];t>c.length?(t-=c.length,this.offsets[i]+=n):(n<0&&this.offsets[i]--,this.nodes.push(c),this.offsets.push(n>0?1:(c instanceof Ps?c.text.length:c.children.length)<<1))}}}next(t=0){return t<0&&(this.nextInner(-t,-this.dir),t=this.value.length),this.nextInner(t,this.dir)}}class NTe{constructor(t,n,i){this.value="",this.done=!1,this.cursor=new LO(t,n>i?-1:1),this.pos=n>i?t.length:0,this.from=Math.min(n,i),this.to=Math.max(n,i)}nextInner(t,n){if(n<0?this.pos<=this.from:this.pos>=this.to)return this.value="",this.done=!0,this;t+=Math.max(0,n<0?this.pos-this.to:this.from-this.pos);let i=n<0?this.pos-this.from:this.to-this.pos;t>i&&(t=i),i-=t;let{value:r}=this.cursor.next(t);return this.pos+=(r.length+t)*n,this.value=r.length<=i?r:n<0?r.slice(r.length-i):r.slice(0,i),this.done=!this.value,this}next(t=0){return t<0?t=Math.max(t,this.from-this.pos):t>0&&(t=Math.min(t,this.to-this.pos)),this.nextInner(t,this.cursor.dir)}get lineBreak(){return this.cursor.lineBreak&&this.value!=""}}class jTe{constructor(t){this.inner=t,this.afterBreak=!0,this.value="",this.done=!1}next(t=0){let{done:n,lineBreak:i,value:r}=this.inner.next(t);return n&&this.afterBreak?(this.value="",this.afterBreak=!1):n?(this.done=!0,this.value=""):i?this.afterBreak?this.value="":(this.afterBreak=!0,this.next()):(this.value=r,this.afterBreak=!1),this}get lineBreak(){return!1}}typeof Symbol<"u"&&(Gi.prototype[Symbol.iterator]=function(){return this.iter()},LO.prototype[Symbol.iterator]=NTe.prototype[Symbol.iterator]=jTe.prototype[Symbol.iterator]=function(){return this});let Xkt=class{constructor(t,n,i,r){this.from=t,this.to=n,this.number=i,this.text=r}get length(){return this.to-this.from}};function ix(e,t,n){return t=Math.max(0,Math.min(e.length,t)),[t,Math.max(t,Math.min(e.length,n))]}function $a(e,t,n=!0,i=!0){return Wkt(e,t,n,i)}function Ykt(e){return e>=56320&&e<57344}function Zkt(e){return e>=55296&&e<56320}function ol(e,t){let n=e.charCodeAt(t);if(!Zkt(n)||t+1==e.length)return n;let i=e.charCodeAt(t+1);return Ykt(i)?(n-55296<<10)+(i-56320)+65536:n}function VU(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode((e>>10)+55296,(e&1023)+56320))}function vd(e){return e<65536?1:2}const h$=/\r\n?|\n/;var eo=function(e){return e[e.Simple=0]="Simple",e[e.TrackDel=1]="TrackDel",e[e.TrackBefore=2]="TrackBefore",e[e.TrackAfter=3]="TrackAfter",e}(eo||(eo={}));class Ld{constructor(t){this.sections=t}get length(){let t=0;for(let n=0;nt)return s+(t-r);s+=l}else{if(i!=eo.Simple&&u>=t&&(i==eo.TrackDel&&rt||i==eo.TrackBefore&&rt))return null;if(u>t||u==t&&n<0&&!l)return t==r||n<0?s:s+c;s+=c}r=u}if(t>r)throw new RangeError(`Position ${t} is out of range for changeset of length ${r}`);return s}touchesRange(t,n=t){for(let i=0,r=0;i=0&&r<=n&&l>=t)return rn?"cover":!0;r=l}return!1}toString(){let t="";for(let n=0;n=0?":"+r:"")}return t}toJSON(){return this.sections}static fromJSON(t){if(!Array.isArray(t)||t.length%2||t.some(n=>typeof n!="number"))throw new RangeError("Invalid JSON representation of ChangeDesc");return new Ld(t)}static create(t){return new Ld(t)}}class ma extends Ld{constructor(t,n){super(t),this.inserted=n}apply(t){if(this.length!=t.length)throw new RangeError("Applying change set to a document with the wrong length");return p$(this,(n,i,r,s,a)=>t=t.replace(r,r+(i-n),a),!1),t}mapDesc(t,n=!1){return m$(this,t,n,!0)}invert(t){let n=this.sections.slice(),i=[];for(let r=0,s=0;r=0){n[r]=l,n[r+1]=a;let c=r>>1;for(;i.length0&&Qp(i,n,s.text),s.forward(d),l+=d}let u=t[a++];for(;l>1].toJSON()))}return t}static of(t,n,i){let r=[],s=[],a=0,l=null;function c(d=!1){if(!d&&!r.length)return;ah||f<0||h>n)throw new RangeError(`Invalid change range ${f} to ${h} (in doc of length ${n})`);let g=m?typeof m=="string"?Gi.of(m.split(i||h$)):m:Gi.empty,b=g.length;if(f==h&&b==0)return;fa&&po(r,f-a,-1),po(r,h-f,b),Qp(s,r,g),a=h}}return u(t),c(!l),l}static empty(t){return new ma(t?[t,-1]:[],[])}static fromJSON(t){if(!Array.isArray(t))throw new RangeError("Invalid JSON representation of ChangeSet");let n=[],i=[];for(let r=0;rl&&typeof a!="string"))throw new RangeError("Invalid JSON representation of ChangeSet");if(s.length==1)n.push(s[0],0);else{for(;i.length=0&&n<=0&&n==e[r+1]?e[r]+=t:r>=0&&t==0&&e[r]==0?e[r+1]+=n:i?(e[r]+=t,e[r+1]+=n):e.push(t,n)}function Qp(e,t,n){if(n.length==0)return;let i=t.length-2>>1;if(i>1])),!(n||a==e.sections.length||e.sections[a+1]<0);)l=e.sections[a++],c=e.sections[a++];t(r,u,s,d,f),r=u,s=d}}}function m$(e,t,n,i=!1){let r=[],s=i?[]:null,a=new YS(e),l=new YS(t);for(let c=-1;;){if(a.done&&l.len||l.done&&a.len)throw new Error("Mismatched change set lengths");if(a.ins==-1&&l.ins==-1){let u=Math.min(a.len,l.len);po(r,u,-1),a.forward(u),l.forward(u)}else if(l.ins>=0&&(a.ins<0||c==a.i||a.off==0&&(l.len=0&&c=0){let u=0,d=a.len;for(;d;)if(l.ins==-1){let f=Math.min(d,l.len);u+=f,d-=f,l.forward(f)}else if(l.ins==0&&l.lenc||a.ins>=0&&a.len>c)&&(l||i.length>u),s.forward2(c),a.forward(c)}}}}class YS{constructor(t){this.set=t,this.i=0,this.next()}next(){let{sections:t}=this.set;this.i>1;return n>=t.length?Gi.empty:t[n]}textBit(t){let{inserted:n}=this.set,i=this.i-2>>1;return i>=n.length&&!t?Gi.empty:n[i].slice(this.off,t==null?void 0:this.off+t)}forward(t){t==this.len?this.next():(this.len-=t,this.off+=t)}forward2(t){this.ins==-1?this.forward(t):t==this.ins?this.next():(this.ins-=t,this.off+=t)}}class jp{constructor(t,n,i,r){this.from=t,this.to=n,this.flags=i,this.goalColumn=r}get anchor(){return this.flags&32?this.to:this.from}get head(){return this.flags&32?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return this.flags&8?-1:this.flags&16?1:0}get undirectional(){return(this.flags&64)>0}get bidiLevel(){let t=this.flags&7;return t==7?null:t}map(t,n=-1){let i,r;return this.empty?i=r=t.mapPos(this.from,n):(i=t.mapPos(this.from,1),r=t.mapPos(this.to,-1)),i==this.from&&r==this.to?this:new jp(i,r,this.flags,this.goalColumn)}extend(t,n=t,i=0){if(t<=this.anchor&&n>=this.anchor)return it.range(t,n,void 0,void 0,i);let r=Math.abs(t-this.anchor)>Math.abs(n-this.anchor)?t:n;return it.range(this.anchor,r,void 0,void 0,i)}eq(t,n=!1){return this.anchor==t.anchor&&this.head==t.head&&this.goalColumn==t.goalColumn&&(!n||!this.empty||this.assoc==t.assoc)}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(t){if(!t||typeof t.anchor!="number"||typeof t.head!="number")throw new RangeError("Invalid JSON representation for SelectionRange");return it.range(t.anchor,t.head)}static create(t,n,i,r){return new jp(t,n,i,r)}}class it{constructor(t,n){this.ranges=t,this.mainIndex=n}map(t,n=-1){return t.empty?this:it.create(this.ranges.map(i=>i.map(t,n)),this.mainIndex)}eq(t,n=!1){if(this.ranges.length!=t.ranges.length||this.mainIndex!=t.mainIndex)return!1;for(let i=0;it.toJSON()),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||typeof t.main!="number"||t.main>=t.ranges.length)throw new RangeError("Invalid JSON representation for EditorSelection");return new it(t.ranges.map(n=>jp.fromJSON(n)),t.main)}static single(t,n=t){return new it([it.range(t,n)],0)}static create(t,n=0){if(t.length==0)throw new RangeError("A selection needs at least one range");for(let i=0,r=0;rr.from-s.from),n=t.indexOf(i);for(let r=1;rs.head?it.range(c,l):it.range(l,c))}}return new it(t,n)}}function ITe(e,t){for(let n of e.ranges)if(n.to>t)throw new RangeError("Selection points outside of document")}let HU=0;class Zt{constructor(t,n,i,r,s){this.combine=t,this.compareInput=n,this.compare=i,this.isStatic=r,this.id=HU++,this.default=t([]),this.extensions=typeof s=="function"?s(this):s}get reader(){return this}static define(t={}){return new Zt(t.combine||(n=>n),t.compareInput||((n,i)=>n===i),t.compare||(t.combine?(n,i)=>n===i:qU),!!t.static,t.enables)}of(t){return new _A([],this,0,t)}compute(t,n){if(this.isStatic)throw new Error("Can't compute a static facet");return new _A(t,this,1,n)}computeN(t,n){if(this.isStatic)throw new Error("Can't compute a static facet");return new _A(t,this,2,n)}from(t,n){return n||(n=i=>i),this.compute([t],i=>n(i.field(t)))}}function qU(e,t){return e==t||e.length==t.length&&e.every((n,i)=>n===t[i])}class _A{constructor(t,n,i,r){this.dependencies=t,this.facet=n,this.type=i,this.value=r,this.id=HU++}dynamicSlot(t){var n;let i=this.value,r=this.facet.compareInput,s=this.id,a=t[s]>>1,l=this.type==2,c=!1,u=!1,d=[];for(let f of this.dependencies)f=="doc"?c=!0:f=="selection"?u=!0:((n=t[f.id])!==null&&n!==void 0?n:1)&1||d.push(t[f.id]);return{create(f){return f.values[a]=i(f),1},update(f,h){if(c&&h.docChanged||u&&(h.docChanged||h.selection)||g$(f,d)){let m=i(f);if(l?!wZ(m,f.values[a],r):!r(m,f.values[a]))return f.values[a]=m,1}return 0},reconfigure:(f,h)=>{let m,g=h.config.address[s];if(g!=null){let b=NN(h,g);if(this.dependencies.every(v=>v instanceof Zt?h.facet(v)===f.facet(v):v instanceof ro?h.field(v,!1)==f.field(v,!1):!0)||(l?wZ(m=i(f),b,r):r(m=i(f),b)))return f.values[a]=b,0}else m=i(f);return f.values[a]=m,1}}}get extension(){return this}}function wZ(e,t,n){if(e.length!=t.length)return!1;for(let i=0;ie[c.id]),r=n.map(c=>c.type),s=i.filter(c=>!(c&1)),a=e[t.id]>>1;function l(c){let u=[];for(let d=0;di===r),t);return t.provide&&(n.provides=t.provide(n)),n}create(t){let n=t.facet(qT).find(i=>i.field==this);return((n==null?void 0:n.create)||this.createF)(t)}slot(t){let n=t[this.id]>>1;return{create:i=>(i.values[n]=this.create(i),1),update:(i,r)=>{let s=i.values[n],a=this.updateF(s,r);return this.compareF(s,a)?0:(i.values[n]=a,1)},reconfigure:(i,r)=>{let s=i.facet(qT),a=r.facet(qT),l;return(l=s.find(c=>c.field==this))&&l!=a.find(c=>c.field==this)?(i.values[n]=l.create(i),1):r.config.address[this.id]!=null?(i.values[n]=r.field(this),0):(i.values[n]=this.create(i),1)}}}init(t){return[this,qT.of({field:this,create:t})]}get extension(){return this}}const Ag={lowest:4,low:3,default:2,high:1,highest:0};function Y1(e){return t=>new PTe(t,e)}const zh={highest:Y1(Ag.highest),high:Y1(Ag.high),default:Y1(Ag.default),low:Y1(Ag.low),lowest:Y1(Ag.lowest)};class PTe{constructor(t,n){this.inner=t,this.prec=n}get extension(){return this}}class vI{of(t){return new b$(this,t)}reconfigure(t){return vI.reconfigure.of({compartment:this,extension:t})}get(t){return t.config.compartments.get(this)}}class b${constructor(t,n){this.compartment=t,this.inner=n}get extension(){return this}}class _N{constructor(t,n,i,r,s,a){for(this.base=t,this.compartments=n,this.dynamicSlots=i,this.address=r,this.staticValues=s,this.facets=a,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,n,i){let r=[],s=Object.create(null),a=new Map;for(let h of eEt(t,n,a))h instanceof ro?r.push(h):(s[h.facet.id]||(s[h.facet.id]=[])).push(h);let l=Object.create(null),c=[],u=[];for(let h of r)l[h.id]=u.length<<1,u.push(m=>h.slot(m));let d=i==null?void 0:i.config.facets;for(let h in s){let m=s[h],g=m[0].facet,b=d&&d[h]||[];if(m.every(v=>v.type==0))if(l[g.id]=c.length<<1|1,qU(b,m))c.push(i.facet(g));else{let v=g.combine(m.map(y=>y.value));c.push(i&&g.compare(v,i.facet(g))?i.facet(g):v)}else{for(let v of m)v.type==0?(l[v.id]=c.length<<1|1,c.push(v.value)):(l[v.id]=u.length<<1,u.push(y=>v.dynamicSlot(y)));l[g.id]=u.length<<1,u.push(v=>Jkt(v,g,m))}}let f=u.map(h=>h(l));return new _N(t,a,f,l,c,s)}}function eEt(e,t,n){let i=[[],[],[],[],[]],r=new Map;function s(a,l){let c=r.get(a);if(c!=null){if(c<=l)return;let u=i[c].indexOf(a);u>-1&&i[c].splice(u,1),a instanceof b$&&n.delete(a.compartment)}if(r.set(a,l),Array.isArray(a))for(let u of a)s(u,l);else if(a instanceof b$){if(n.has(a.compartment))throw new RangeError("Duplicate use of compartment in extensions");let u=t.get(a.compartment)||a.inner;n.set(a.compartment,u),s(u,l)}else if(a instanceof PTe)s(a.inner,a.prec);else if(a instanceof ro)i[l].push(a),a.provides&&s(a.provides,l);else if(a instanceof _A)i[l].push(a),a.facet.extensions&&s(a.facet.extensions,Ag.default);else{let u=a.extension;if(!u)throw new Error(`Unrecognized extension value in extension set (${a}).`);if(u==a)throw new Error(`Unrecognized extension value in extension set (${a}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);s(u,l)}}return s(e,Ag.default),i.reduce((a,l)=>a.concat(l))}function $O(e,t){if(t&1)return 2;let n=t>>1,i=e.status[n];if(i==4)throw new Error("Cyclic dependency between fields and/or facets");if(i&2)return i;e.status[n]=4;let r=e.computeSlot(e,e.config.dynamicSlots[n]);return e.status[n]=2|r}function NN(e,t){return t&1?e.config.staticValues[t>>1]:e.values[t>>1]}const DTe=Zt.define(),y$=Zt.define({combine:e=>e.some(t=>t),static:!0}),MTe=Zt.define({combine:e=>e.length?e[0]:void 0,static:!0}),LTe=Zt.define(),$Te=Zt.define(),FTe=Zt.define(),BTe=Zt.define({combine:e=>e.length?e[0]:!1});class Jd{constructor(t,n){this.type=t,this.value=n}static define(){return new tEt}}class tEt{of(t){return new Jd(this,t)}}class nEt{constructor(t){this.map=t}of(t){return new Fn(this,t)}}class Fn{constructor(t,n){this.type=t,this.value=n}map(t){let n=this.type.map(this.value,t);return n===void 0?void 0:n==this.value?this:new Fn(this.type,n)}is(t){return this.type==t}static define(t={}){return new nEt(t.map||(n=>n))}static mapEffects(t,n){if(!t.length)return t;let i=[];for(let r of t){let s=r.map(n);s&&i.push(s)}return i}}Fn.reconfigure=Fn.define();Fn.appendConfig=Fn.define();class Js{constructor(t,n,i,r,s,a){this.startState=t,this.changes=n,this.selection=i,this.effects=r,this.annotations=s,this.scrollIntoView=a,this._doc=null,this._state=null,i&&ITe(i,n.newLength),s.some(l=>l.type==Js.time)||(this.annotations=s.concat(Js.time.of(Date.now())))}static create(t,n,i,r,s,a){return new Js(t,n,i,r,s,a)}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(t){for(let n of this.annotations)if(n.type==t)return n.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}isUserEvent(t){let n=this.annotation(Js.userEvent);return!!(n&&(n==t||n.length>t.length&&n.slice(0,t.length)==t&&n[t.length]=="."))}}Js.time=Jd.define();Js.userEvent=Jd.define();Js.addToHistory=Jd.define();Js.remote=Jd.define();function iEt(e,t){let n=[];for(let i=0,r=0;;){let s,a;if(i=e[i]))s=e[i++],a=e[i++];else if(r=0;r--){let s=i[r](e);s instanceof Js?e=s:Array.isArray(s)&&s.length==1&&s[0]instanceof Js?e=s[0]:e=QTe(t,cv(s),!1)}return e}function sEt(e){let t=e.startState,n=t.facet(FTe),i=e;for(let r=n.length-1;r>=0;r--){let s=n[r](e);s&&Object.keys(s).length&&(i=UTe(i,v$(t,s,e.changes.newLength),!0))}return i==e?e:Js.create(t,e.changes,e.selection,i.effects,i.annotations,i.scrollIntoView)}const aEt=[];function cv(e){return e==null?aEt:Array.isArray(e)?e:[e]}var ns=function(e){return e[e.Word=0]="Word",e[e.Space=1]="Space",e[e.Other=2]="Other",e}(ns||(ns={}));const oEt=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;let x$;try{x$=new RegExp("[\\p{Alphabetic}\\p{Number}_]","u")}catch{}function lEt(e){if(x$)return x$.test(e);for(let t=0;t"€"&&(n.toUpperCase()!=n.toLowerCase()||oEt.test(n)))return!0}return!1}function cEt(e){return t=>{if(!/\S/.test(t))return ns.Space;if(lEt(t))return ns.Word;for(let n=0;n-1)return ns.Word;return ns.Other}}class Ti{constructor(t,n,i,r,s,a){this.config=t,this.doc=n,this.selection=i,this.values=r,this.status=t.statusTemplate.slice(),this.computeSlot=s,a&&(a._state=this);for(let l=0;lr.set(u,c)),n=null),r.set(l.value.compartment,l.value.extension)):l.is(Fn.reconfigure)?(n=null,i=l.value):l.is(Fn.appendConfig)&&(n=null,i=cv(i).concat(l.value));let s;n?s=t.startState.values.slice():(n=_N.resolve(i,r,this),s=new Ti(n,this.doc,this.selection,n.dynamicSlots.map(()=>null),(c,u)=>u.reconfigure(c,this),null).values);let a=t.startState.facet(y$)?t.newSelection:t.newSelection.asSingle();new Ti(n,t.newDoc,a,s,(l,c)=>c.update(l,t),t)}replaceSelection(t){return typeof t=="string"&&(t=this.toText(t)),this.changeByRange(n=>({changes:{from:n.from,to:n.to,insert:t},range:it.cursor(n.from+t.length)}))}changeByRange(t){let n=this.selection,i=t(n.ranges[0]),r=this.changes(i.changes),s=[i.range],a=cv(i.effects);for(let l=1;la.spec.fromJSON(l,c)))}}return Ti.create({doc:t.doc,selection:it.fromJSON(t.selection),extensions:n.extensions?r.concat([n.extensions]):r})}static create(t={}){let n=_N.resolve(t.extensions||[],new Map),i=t.doc instanceof Gi?t.doc:Gi.of((t.doc||"").split(n.staticFacet(Ti.lineSeparator)||h$)),r=t.selection?t.selection instanceof it?t.selection:it.single(t.selection.anchor,t.selection.head):it.single(0);return ITe(r,i.length),n.staticFacet(y$)||(r=r.asSingle()),new Ti(n,i,r,n.dynamicSlots.map(()=>null),(s,a)=>a.create(s),null)}get tabSize(){return this.facet(Ti.tabSize)}get lineBreak(){return this.facet(Ti.lineSeparator)||` -`}get readOnly(){return this.facet(BTe)}phrase(t,...n){for(let i of this.facet(Ti.phrases))if(Object.prototype.hasOwnProperty.call(i,t)){t=i[t];break}return n.length&&(t=t.replace(/\$(\$|\d*)/g,(i,r)=>{if(r=="$")return"$";let s=+(r||1);return!s||s>n.length?i:n[s-1]})),t}languageDataAt(t,n,i=-1){let r=[];for(let s of this.facet(DTe))for(let a of s(this,n,i))Object.prototype.hasOwnProperty.call(a,t)&&r.push(a[t]);return r}charCategorizer(t){let n=this.languageDataAt("wordChars",t);return cEt(n.length?n[0]:"")}wordAt(t){let{text:n,from:i,length:r}=this.doc.lineAt(t),s=this.charCategorizer(t),a=t-i,l=t-i;for(;a>0;){let c=$a(n,a,!1);if(s(n.slice(c,a))!=ns.Word)break;a=c}for(;le.length?e[0]:4});Ti.lineSeparator=MTe;Ti.readOnly=BTe;Ti.phrases=Zt.define({compare(e,t){let n=Object.keys(e),i=Object.keys(t);return n.length==i.length&&n.every(r=>e[r]==t[r])}});Ti.languageData=DTe;Ti.changeFilter=LTe;Ti.transactionFilter=$Te;Ti.transactionExtender=FTe;vI.reconfigure=Fn.define();function ef(e,t,n={}){let i={};for(let r of e)for(let s of Object.keys(r)){let a=r[s],l=i[s];if(l===void 0)i[s]=a;else if(!(l===a||a===void 0))if(Object.hasOwnProperty.call(n,s))i[s]=n[s](l,a);else throw new Error("Config merge conflict for field "+s)}for(let r in t)i[r]===void 0&&(i[r]=t[r]);return i}class Em{eq(t){return this==t}range(t,n=t){return ZS.create(t,n,this)}}Em.prototype.startSide=Em.prototype.endSide=0;Em.prototype.point=!1;Em.prototype.mapMode=eo.TrackDel;function WU(e,t){return e==t||e.constructor==t.constructor&&e.eq(t)}class ZS{constructor(t,n,i){this.from=t,this.to=n,this.value=i}static create(t,n,i){return new ZS(t,n,i)}}function w$(e,t){return e.from-t.from||e.value.startSide-t.value.startSide}class GU{constructor(t,n,i,r){this.from=t,this.to=n,this.value=i,this.maxPoint=r}get length(){return this.to[this.to.length-1]}findIndex(t,n,i,r=0){let s=i?this.to:this.from;for(let a=r,l=s.length;;){if(a==l)return a;let c=a+l>>1,u=s[c]-t||(i?this.value[c].endSide:this.value[c].startSide)-n;if(c==a)return u>=0?a:l;u>=0?l=c:a=c+1}}between(t,n,i,r){for(let s=this.findIndex(n,-1e9,!0),a=this.findIndex(i,1e9,!1,s);sm||h==m&&u.startSide>0&&u.endSide<=0)continue;(m-h||u.endSide-u.startSide)<0||(a<0&&(a=h),u.point&&(l=Math.max(l,m-h)),i.push(u),r.push(h-a),s.push(m-a))}return{mapped:i.length?new GU(r,s,i,l):null,pos:a}}}class xi{constructor(t,n,i,r){this.chunkPos=t,this.chunk=n,this.nextLayer=i,this.maxPoint=r}static create(t,n,i,r){return new xi(t,n,i,r)}get length(){let t=this.chunk.length-1;return t<0?0:Math.max(this.chunkEnd(t),this.nextLayer.length)}get size(){if(this.isEmpty)return 0;let t=this.nextLayer.size;for(let n of this.chunk)t+=n.value.length;return t}chunkEnd(t){return this.chunkPos[t]+this.chunk[t].length}update(t){let{add:n=[],sort:i=!1,filterFrom:r=0,filterTo:s=this.length}=t,a=t.filter;if(n.length==0&&!a)return this;if(i&&(n=n.slice().sort(w$)),this.isEmpty)return n.length?xi.of(n):this;let l=new zTe(this,null,-1).goto(0),c=0,u=[],d=new Ah;for(;l.value||c=0){let f=n[c++];d.addInner(f.from,f.to,f.value)||u.push(f)}else l.rangeIndex==1&&l.chunkIndexthis.chunkEnd(l.chunkIndex)||sl.to||s=s&&t<=s+a.length&&a.between(s,t-s,n-s,i)===!1)return}this.nextLayer.between(t,n,i)}}iter(t=0){return JS.from([this]).goto(t)}get isEmpty(){return this.nextLayer==this}static iter(t,n=0){return JS.from(t).goto(n)}static compare(t,n,i,r,s=-1){let a=t.filter(f=>f.maxPoint>0||!f.isEmpty&&f.maxPoint>=s),l=n.filter(f=>f.maxPoint>0||!f.isEmpty&&f.maxPoint>=s),c=OZ(a,l,i),u=new Z1(a,c,s),d=new Z1(l,c,s);i.iterGaps((f,h,m)=>SZ(u,f,d,h,m,r)),i.empty&&i.length==0&&SZ(u,0,d,0,0,r)}static eq(t,n,i=0,r){r==null&&(r=999999999);let s=t.filter(d=>!d.isEmpty&&n.indexOf(d)<0),a=n.filter(d=>!d.isEmpty&&t.indexOf(d)<0);if(s.length!=a.length)return!1;if(!s.length)return!0;let l=OZ(s,a),c=new Z1(s,l,0).goto(i),u=new Z1(a,l,0).goto(i);for(;;){if(c.to!=u.to||!O$(c.active,u.active)||c.point&&(!u.point||!WU(c.point,u.point)))return!1;if(c.to>r)return!0;c.next(),u.next()}}static spans(t,n,i,r,s=-1){let a=new Z1(t,null,s).goto(n),l=n,c=a.openStart;for(;;){let u=Math.min(a.to,i);if(a.point){let d=a.activeForPoint(a.to),f=a.pointFroml&&(r.span(l,u,a.active,c),c=a.openEnd(u));if(a.to>i)return c+(a.point&&a.to>i?1:0);l=a.to,a.next()}}static of(t,n=!1){let i=new Ah;for(let r of t instanceof ZS?[t]:n?uEt(t):t)i.add(r.from,r.to,r.value);return i.finish()}static join(t){if(!t.length)return xi.empty;let n=t[t.length-1];for(let i=t.length-2;i>=0;i--)for(let r=t[i];r!=xi.empty;r=r.nextLayer)n=new xi(r.chunkPos,r.chunk,n,Math.max(r.maxPoint,n.maxPoint));return n}}xi.empty=new xi([],[],null,-1);function uEt(e){if(e.length>1)for(let t=e[0],n=1;n0)return e.slice().sort(w$);t=i}return e}xi.empty.nextLayer=xi.empty;class Ah{finishChunk(t){this.chunks.push(new GU(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,t&&(this.from=[],this.to=[],this.value=[])}constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}add(t,n,i){this.addInner(t,n,i)||(this.nextLayer||(this.nextLayer=new Ah)).add(t,n,i)}addInner(t,n,i){let r=t-this.lastTo||i.startSide-this.last.endSide;if(r<=0&&(t-this.lastFrom||i.startSide-this.last.startSide)<0)throw new Error("Ranges must be added sorted by `from` position and `startSide`");return r<0?!1:(this.from.length==250&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=t),this.from.push(t-this.chunkStart),this.to.push(n-this.chunkStart),this.last=i,this.lastFrom=t,this.lastTo=n,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,n-t)),!0)}addChunk(t,n){if((t-this.lastTo||n.value[0].startSide-this.last.endSide)<0)return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,n.maxPoint),this.chunks.push(n),this.chunkPos.push(t);let i=n.value.length-1;return this.last=n.value[i],this.lastFrom=n.from[i]+t,this.lastTo=n.to[i]+t,!0}finish(){return this.finishInner(xi.empty)}finishInner(t){if(this.from.length&&this.finishChunk(!1),this.chunks.length==0)return t;let n=xi.create(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(t):t,this.setMaxPoint);return this.from=null,n}}function OZ(e,t,n){let i=new Map;for(let s of e)for(let a=0;a=this.minPoint)break}}setRangeIndex(t){if(t==this.layer.chunk[this.chunkIndex].value.length){if(this.chunkIndex++,this.skip)for(;this.chunkIndex=i&&r.push(new zTe(a,n,i,s));return r.length==1?r[0]:new JS(r)}get startSide(){return this.value?this.value.startSide:0}goto(t,n=-1e9){for(let i of this.heap)i.goto(t,n);for(let i=this.heap.length>>1;i>=0;i--)r5(this.heap,i);return this.next(),this}forward(t,n){for(let i of this.heap)i.forward(t,n);for(let i=this.heap.length>>1;i>=0;i--)r5(this.heap,i);(this.to-t||this.value.endSide-n)<0&&this.next()}next(){if(this.heap.length==0)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let t=this.heap[0];this.from=t.from,this.to=t.to,this.value=t.value,this.rank=t.rank,t.value&&t.next(),r5(this.heap,0)}}}function r5(e,t){for(let n=e[t];;){let i=(t<<1)+1;if(i>=e.length)break;let r=e[i];if(i+1=0&&(r=e[i+1],i++),n.compare(r)<0)break;e[i]=n,e[t]=r,t=i}}class Z1{constructor(t,n,i){this.minPoint=i,this.active=[],this.activeTo=[],this.activeRank=[],this.minActive=-1,this.point=null,this.pointFrom=0,this.pointRank=0,this.to=-1e9,this.endSide=0,this.openStart=-1,this.cursor=JS.from(t,n,i)}goto(t,n=-1e9){return this.cursor.goto(t,n),this.active.length=this.activeTo.length=this.activeRank.length=0,this.minActive=-1,this.to=t,this.endSide=n,this.openStart=-1,this.next(),this}forward(t,n){for(;this.minActive>-1&&(this.activeTo[this.minActive]-t||this.active[this.minActive].endSide-n)<0;)this.removeActive(this.minActive);this.cursor.forward(t,n)}removeActive(t){WT(this.active,t),WT(this.activeTo,t),WT(this.activeRank,t),this.minActive=kZ(this.active,this.activeTo)}addActive(t){let n=0,{value:i,to:r,rank:s}=this.cursor;for(;n0;)n++;GT(this.active,n,i),GT(this.activeTo,n,r),GT(this.activeRank,n,s),t&>(t,n,this.cursor.from),this.minActive=kZ(this.active,this.activeTo)}next(){let t=this.to,n=this.point;this.point=null;let i=this.openStart<0?[]:null;for(;;){let r=this.minActive;if(r>-1&&(this.activeTo[r]-this.cursor.from||this.active[r].endSide-this.cursor.startSide)<0){if(this.activeTo[r]>t){this.to=this.activeTo[r],this.endSide=this.active[r].endSide;break}this.removeActive(r),i&&WT(i,r)}else if(this.cursor.value)if(this.cursor.from>t){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}else{let s=this.cursor.value;if(!s.point)this.addActive(i),this.cursor.next();else if(n&&this.cursor.to==this.to&&this.cursor.from=0&&i[r]=0&&!(this.activeRank[i]t||this.activeTo[i]==t&&this.active[i].endSide>=this.point.endSide)&&n.push(this.active[i]);return n.reverse()}openEnd(t){let n=0;for(let i=this.activeTo.length-1;i>=0&&this.activeTo[i]>t;i--)n++;return n}}function SZ(e,t,n,i,r,s){e.goto(t),n.goto(i);let a=i+r,l=i,c=i-t,u=!!s.boundChange;for(let d=!1;;){let f=e.to+c-n.to,h=f||e.endSide-n.endSide,m=h<0?e.to+c:n.to,g=Math.min(m,a);if(e.point||n.point?(e.point&&n.point&&WU(e.point,n.point)&&O$(e.activeForPoint(e.to),n.activeForPoint(n.to))||s.comparePoint(l,g,e.point,n.point),d=!1):(d&&s.boundChange(l),g>l&&!O$(e.active,n.active)&&s.compareRange(l,g,e.active,n.active),u&&ga)break;l=m,h<=0&&e.next(),h>=0&&n.next()}}function O$(e,t){if(e.length!=t.length)return!1;for(let n=0;n=t;i--)e[i+1]=e[i];e[t]=n}function kZ(e,t){let n=-1,i=1e9;for(let r=0;r=t)return r;if(r==e.length)break;s+=e.charCodeAt(r)==9?n-s%n:1,r=$a(e,r)}return i===!0?-1:e.length}const k$="ͼ",EZ=typeof Symbol>"u"?"__"+k$:Symbol.for(k$),E$=typeof Symbol>"u"?"__styleSet"+Math.floor(Math.random()*1e8):Symbol("styleSet"),CZ=typeof globalThis<"u"?globalThis:typeof window<"u"?window:{};class Cm{constructor(t,n){this.rules=[];let{finish:i}=n||{};function r(a){return/^@/.test(a)?[a]:a.split(/,\s*/)}function s(a,l,c,u){let d=[],f=/^@(\w+)\b/.exec(a[0]),h=f&&f[1]=="keyframes";if(f&&l==null)return c.push(a[0]+";");for(let m in l){let g=l[m];if(/&/.test(m))s(m.split(/,\s*/).map(b=>a.map(v=>b.replace(/&/,v))).reduce((b,v)=>b.concat(v)),g,c);else if(g&&typeof g=="object"){if(!f)throw new RangeError("The value of a property ("+m+") should be a primitive value.");s(r(m),g,d,h)}else g!=null&&d.push(m.replace(/_.*/,"").replace(/[A-Z]/g,b=>"-"+b.toLowerCase())+": "+g+";")}(d.length||h)&&c.push((i&&!f&&!u?a.map(i):a).join(", ")+" {"+d.join(" ")+"}")}for(let a in t)s(r(a),t[a],this.rules)}getRules(){return this.rules.join(` -`)}static newName(){let t=CZ[EZ]||1;return CZ[EZ]=t+1,k$+t.toString(36)}static mount(t,n,i){let r=t[E$],s=i&&i.nonce;r?s&&r.setNonce(s):r=new dEt(t,s),r.mount(Array.isArray(n)?n:[n],t)}}let TZ=new Map;class dEt{constructor(t,n){let i=t.ownerDocument||t,r=i.defaultView;if(!t.head&&t.adoptedStyleSheets&&r.CSSStyleSheet){let s=TZ.get(i);if(s)return t[E$]=s;this.sheet=new r.CSSStyleSheet,TZ.set(i,this)}else this.styleTag=i.createElement("style"),n&&this.styleTag.setAttribute("nonce",n);this.modules=[],t[E$]=this}mount(t,n){let i=this.sheet,r=0,s=0;for(let a=0;a-1&&(this.modules.splice(c,1),s--,c=-1),c==-1){if(this.modules.splice(s++,0,l),i)for(let u=0;u",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},fEt=typeof navigator<"u"&&/Mac/.test(navigator.platform),hEt=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(var Ya=0;Ya<10;Ya++)Tm[48+Ya]=Tm[96+Ya]=String(Ya);for(var Ya=1;Ya<=24;Ya++)Tm[Ya+111]="F"+Ya;for(var Ya=65;Ya<=90;Ya++)Tm[Ya]=String.fromCharCode(Ya+32),ek[Ya]=String.fromCharCode(Ya);for(var s5 in Tm)ek.hasOwnProperty(s5)||(ek[s5]=Tm[s5]);function pEt(e){var t=fEt&&e.metaKey&&e.shiftKey&&!e.ctrlKey&&!e.altKey||hEt&&e.shiftKey&&e.key&&e.key.length==1||e.key=="Unidentified",n=!t&&e.key||(e.shiftKey?ek:Tm)[e.keyCode]||e.key||"Unidentified";return n=="Esc"&&(n="Escape"),n=="Del"&&(n="Delete"),n=="Left"&&(n="ArrowLeft"),n=="Up"&&(n="ArrowUp"),n=="Right"&&(n="ArrowRight"),n=="Down"&&(n="ArrowDown"),n}function yr(){var e=arguments[0];typeof e=="string"&&(e=document.createElement(e));var t=1,n=arguments[1];if(n&&typeof n=="object"&&n.nodeType==null&&!Array.isArray(n)){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var r=n[i];typeof r=="string"?e.setAttribute(i,r):r!=null&&(e[i]=r)}t++}for(;t2);var Xt={mac:NZ||/Mac/.test(Do.platform),windows:/Win/.test(Do.platform),linux:/Linux|X11/.test(Do.platform),ie:xI,ie_version:HTe?C$.documentMode||6:A$?+A$[1]:T$?+T$[1]:0,gecko:AZ,gecko_version:AZ?+(/Firefox\/(\d+)/.exec(Do.userAgent)||[0,0])[1]:0,chrome:!!a5,chrome_version:a5?+a5[1]:0,ios:NZ,android:/Android\b/.test(Do.userAgent),webkit:_Z,webkit_version:_Z?+(/\bAppleWebKit\/(\d+)/.exec(Do.userAgent)||[0,0])[1]:0,safari:_$,safari_version:_$?+(/\bVersion\/(\d+(\.\d+)?)/.exec(Do.userAgent)||[0,0])[1]:0,tabSize:C$.documentElement.style.tabSize!=null?"tab-size":"-moz-tab-size"};function KU(e,t){for(let n in e)n=="class"&&t.class?t.class+=" "+e.class:n=="style"&&t.style?t.style+=";"+e.style:t[n]=e[n];return t}const jN=Object.create(null);function XU(e,t,n){if(e==t)return!0;e||(e=jN),t||(t=jN);let i=Object.keys(e),r=Object.keys(t);if(i.length-0!=r.length-0)return!1;for(let s of i)if(s!=n&&(r.indexOf(s)==-1||e[s]!==t[s]))return!1;return!0}function mEt(e,t){for(let n=e.attributes.length-1;n>=0;n--){let i=e.attributes[n].name;t[i]==null&&e.removeAttribute(i)}for(let n in t){let i=t[n];n=="style"?e.style.cssText=i:e.getAttribute(n)!=i&&e.setAttribute(n,i)}}function jZ(e,t,n){let i=!1;if(t)for(let r in t)n&&r in n||(i=!0,r=="style"?e.style.cssText="":e.removeAttribute(r));if(n)for(let r in n)t&&t[r]==n[r]||(i=!0,r=="style"?e.style.cssText=n[r]:e.setAttribute(r,n[r]));return i}function gEt(e){let t=Object.create(null);for(let n=0;n0?3e8:-4e8:n>0?1e8:-1e8,new Nb(t,n,n,i,t.widget||null,!1)}static replace(t){let n=!!t.block,i,r;if(t.isBlockGap)i=-5e8,r=4e8;else{let{start:s,end:a}=qTe(t,n);i=(s?n?-3e8:-1:5e8)-1,r=(a?n?2e8:1:-6e8)+1}return new Nb(t,i,r,n,t.widget||null,!0)}static line(t){return new DE(t)}static set(t,n=!1){return xi.of(t,n)}hasHeight(){return this.widget?this.widget.estimatedHeight>-1:!1}}gn.none=xi.empty;class PE extends gn{constructor(t){let{start:n,end:i}=qTe(t);super(n?-1:5e8,i?1:-6e8,null,t),this.tagName=t.tagName||"span",this.attrs=t.class&&t.attributes?KU(t.attributes,{class:t.class}):t.class?{class:t.class}:t.attributes||jN}eq(t){return this==t||t instanceof PE&&this.tagName==t.tagName&&XU(this.attrs,t.attrs)}range(t,n=t){if(t>=n)throw new RangeError("Mark decorations may not be empty");return super.range(t,n)}}PE.prototype.point=!1;class DE extends gn{constructor(t){super(-2e8,-2e8,null,t)}eq(t){return t instanceof DE&&this.spec.class==t.spec.class&&XU(this.spec.attributes,t.spec.attributes)}range(t,n=t){if(n!=t)throw new RangeError("Line decoration ranges must be zero-length");return super.range(t,n)}}DE.prototype.mapMode=eo.TrackBefore;DE.prototype.point=!0;class Nb extends gn{constructor(t,n,i,r,s,a){super(n,i,s,t),this.block=r,this.isReplace=a,this.mapMode=r?n<=0?eo.TrackBefore:eo.TrackAfter:eo.TrackDel}get type(){return this.startSide!=this.endSide?io.WidgetRange:this.startSide<=0?io.WidgetBefore:io.WidgetAfter}get heightRelevant(){return this.block||!!this.widget&&(this.widget.estimatedHeight>=5||this.widget.lineBreaks>0)}eq(t){return t instanceof Nb&&bEt(this.widget,t.widget)&&this.block==t.block&&this.startSide==t.startSide&&this.endSide==t.endSide}range(t,n=t){if(this.isReplace&&(t>n||t==n&&this.startSide>0&&this.endSide<=0))throw new RangeError("Invalid range for replacement decoration");if(!this.isReplace&&n!=t)throw new RangeError("Widget decorations can only have zero-length ranges");return super.range(t,n)}}Nb.prototype.point=!0;function qTe(e,t=!1){let{inclusiveStart:n,inclusiveEnd:i}=e;return n==null&&(n=e.inclusive),i==null&&(i=e.inclusive),{start:n??t,end:i??t}}function bEt(e,t){return e==t||!!(e&&t&&e.compare(t))}function uv(e,t,n,i=0){let r=n.length-1;r>=0&&n[r]+i>=e?n[r]=Math.max(n[r],t):n.push(e,t)}class tk extends Em{constructor(t,n,i){super(),this.tagName=t,this.attributes=n,this.rank=i}eq(t){return t==this||t instanceof tk&&this.tagName==t.tagName&&XU(this.attributes,t.attributes)}static create(t){return new tk(t.tagName,t.attributes||jN,t.rank==null?50:Math.max(0,Math.min(t.rank,100)))}static set(t,n=!1){return xi.of(t,n)}}tk.prototype.startSide=tk.prototype.endSide=-1;function nk(e){let t;return e.nodeType==11?t=e.getSelection?e:e.ownerDocument:t=e,t.getSelection()}function N$(e,t){return t?e==t||e.contains(t.nodeType!=1?t.parentNode:t):!1}function FO(e,t){if(!t.anchorNode)return!1;try{return N$(e,t.anchorNode)}catch{return!1}}function BO(e){return e.nodeType==3?rk(e,0,e.nodeValue.length).getClientRects():e.nodeType==1?e.getClientRects():[]}function UO(e,t,n,i){return n?RZ(e,t,n,i,-1)||RZ(e,t,n,i,1):!1}function Am(e){for(var t=0;;t++)if(e=e.previousSibling,!e)return t}function RN(e){return e.nodeType==1&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(e.nodeName)}function RZ(e,t,n,i,r){for(;;){if(e==n&&t==i)return!0;if(t==(r<0?0:_h(e))){if(e.nodeName=="DIV")return!1;let s=e.parentNode;if(!s||s.nodeType!=1)return!1;t=Am(e)+(r<0?0:1),e=s}else if(e.nodeType==1){if(e=e.childNodes[t+(r<0?-1:0)],e.nodeType==1&&e.contentEditable=="false")return!1;t=r<0?_h(e):0}else return!1}}function _h(e){return e.nodeType==3?e.nodeValue.length:e.childNodes.length}function ik(e,t){let{left:n,right:i}=e;if(n==i)return e;let r=t?n:i;return{left:r,right:r,top:e.top,bottom:e.bottom}}function yEt(e){let t=e.visualViewport;return t?{left:0,right:t.width,top:0,bottom:t.height}:{left:0,right:e.innerWidth,top:0,bottom:e.innerHeight}}function WTe(e,t){let n=t.width/e.offsetWidth,i=t.height/e.offsetHeight;return(n>.995&&n<1.005||!isFinite(n)||Math.abs(t.width-e.offsetWidth)<1)&&(n=1),(i>.995&&i<1.005||!isFinite(i)||Math.abs(t.height-e.offsetHeight)<1)&&(i=1),{scaleX:n,scaleY:i}}function vEt(e,t,n,i,r,s,a,l){let c=e.ownerDocument,u=c.defaultView||window;for(let d=e,f=!1;d&&!f;)if(d.nodeType==1){let h,m=d==c.body,g=1,b=1;if(m)h=yEt(u);else{if(/^(fixed|sticky)$/.test(getComputedStyle(d).position)&&(f=!0),d.scrollHeight<=d.clientHeight&&d.scrollWidth<=d.clientWidth){d=d.assignedSlot||d.parentNode;continue}let x=d.getBoundingClientRect();({scaleX:g,scaleY:b}=WTe(d,x)),h={left:x.left,right:x.left+d.clientWidth*g,top:x.top,bottom:x.top+d.clientHeight*b}}let v=0,y=0;if(r=="nearest")t.top0&&t.bottom>h.bottom+y&&(y=t.bottom-h.bottom+a)):t.bottom>h.bottom-a&&(y=t.bottom-h.bottom+a,n<0&&t.top-y0&&t.right>h.right+v&&(v=t.right-h.right+s)):t.right>h.right-s&&(v=t.right-h.right+s,n<0&&t.lefth.bottom||t.lefth.right)&&(t={left:Math.max(t.left,h.left),right:Math.min(t.right,h.right),top:Math.max(t.top,h.top),bottom:Math.min(t.bottom,h.bottom)}),d=d.assignedSlot||d.parentNode}else if(d.nodeType==11)d=d.host;else break}function GTe(e,t=!0){let n=e.ownerDocument,i=null,r=null;for(let s=e.parentNode;s&&!(s==n.body||(!t||i)&&r);)if(s.nodeType==1)!r&&s.scrollHeight>s.clientHeight&&(r=s),t&&!i&&s.scrollWidth>s.clientWidth&&(i=s),s=s.assignedSlot||s.parentNode;else if(s.nodeType==11)s=s.host;else break;return{x:i,y:r}}class xEt{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}eq(t){return this.anchorNode==t.anchorNode&&this.anchorOffset==t.anchorOffset&&this.focusNode==t.focusNode&&this.focusOffset==t.focusOffset}setRange(t){let{anchorNode:n,focusNode:i}=t;this.set(n,Math.min(t.anchorOffset,n?_h(n):0),i,Math.min(t.focusOffset,i?_h(i):0))}set(t,n,i,r){this.anchorNode=t,this.anchorOffset=n,this.focusNode=i,this.focusOffset=r}}let kg=null;Xt.safari&&Xt.safari_version>=26&&(kg=!1);function KTe(e){if(e.setActive)return e.setActive();if(kg)return e.focus(kg);let t=[];for(let n=e;n&&(t.push(n,n.scrollTop,n.scrollLeft),n!=n.ownerDocument);n=n.parentNode);if(e.focus(kg==null?{get preventScroll(){return kg={preventScroll:!0},!0}}:void 0),!kg){kg=!1;for(let n=0;nMath.max(0,e.document.documentElement.scrollHeight-e.innerHeight-4):e.scrollTop>Math.max(1,e.scrollHeight-e.clientHeight-4)}function YTe(e,t){for(let n=e,i=t;;){if(n.nodeType==3&&i>0)return{node:n,offset:i};if(n.nodeType==1&&i>0){if(n.contentEditable=="false")return null;n=n.childNodes[i-1],i=_h(n)}else if(n.parentNode&&!RN(n))i=Am(n),n=n.parentNode;else return null}}function ZTe(e,t){for(let n=e,i=t;;){if(n.nodeType==3&&i=n){if(l.level==i)return a;(s<0||(r!=0?r<0?l.fromn:t[s].level>l.level))&&(s=a)}}if(s<0)throw new RangeError("Index out of range");return s}}function t2e(e,t){if(e.length!=t.length)return!1;for(let n=0;n=0;b-=3)if(od[b+1]==-m){let v=od[b+2],y=v&2?r:v&4?v&1?s:r:0;y&&(Er[f]=Er[od[b]]=y),l=b;break}}else{if(od.length==189)break;od[l++]=f,od[l++]=h,od[l++]=c}else if((g=Er[f])==2||g==1){let b=g==r;c=b?0:1;for(let v=l-3;v>=0;v-=3){let y=od[v+2];if(y&2)break;if(b)od[v+2]|=2;else{if(y&4)break;od[v+2]|=4}}}}}function AEt(e,t,n,i){for(let r=0,s=i;r<=n.length;r++){let a=r?n[r-1].to:e,l=rc;)g==v&&(g=n[--b].from,v=b?n[b-1].to:e),Er[--g]=m;c=d}else s=u,c++}}}function R$(e,t,n,i,r,s,a){let l=i%2?2:1;if(i%2==r%2)for(let c=t,u=0;cc&&a.push(new Ad(c,b.from,m));let v=b.direction==jb!=!(m%2);I$(e,v?i+1:i,r,b.inner,b.from,b.to,a),c=b.to}g=b.to}else{if(g==n||(d?Er[g]!=l:Er[g]==l))break;g++}h?R$(e,c,g,i+1,r,h,a):ct;){let d=!0,f=!1;if(!u||c>s[u-1].to){let b=Er[c-1];b!=l&&(d=!1,f=b==16)}let h=!d&&l==1?[]:null,m=d?i:i+1,g=c;e:for(;;)if(u&&g==s[u-1].to){if(f)break e;let b=s[--u];if(!d)for(let v=b.from,y=u;;){if(v==t)break e;if(y&&s[y-1].to==v)v=s[--y].from;else{if(Er[v-1]==l)break e;break}}if(h)h.push(b);else{b.toEr.length;)Er[Er.length]=256;let i=[],r=t==jb?0:1;return I$(e,r,r,n,0,e.length,i),i}function n2e(e){return[new Ad(0,e,0)]}let i2e="";function NEt(e,t,n,i,r){var s;let a=i.head-e.from,l=Ad.find(t,a,(s=i.bidiLevel)!==null&&s!==void 0?s:-1,i.assoc),c=t[l],u=c.side(r,n);if(a==u){let h=l+=r?1:-1;if(h<0||h>=t.length)return null;c=t[l=h],a=c.side(!r,n),u=c.side(r,n)}let d=$a(e.text,a,c.forward(r,n));(dc.to)&&(d=u),i2e=e.text.slice(Math.min(a,d),Math.max(a,d));let f=l==(r?t.length-1:0)?null:t[l+(r?1:-1)];return f&&d==u&&f.level+(r?0:1)e.some(t=>t)}),d2e=Zt.define({combine:e=>e.some(t=>t)}),f2e=Zt.define();class fv{constructor(t,n,i,r,s,a=!1){this.range=t,this.y=n,this.x=i,this.yMargin=r,this.xMargin=s,this.isSnapshot=a}map(t){return t.empty?this:new fv(this.range.map(t),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}clip(t){return this.range.to<=t.doc.length?this:new fv(it.cursor(t.doc.length),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}}const KT=Fn.define({map:(e,t)=>e.map(t)}),h2e=Fn.define();function hl(e,t,n){let i=e.facet(o2e);i.length?i[0](t):window.onerror&&window.onerror(String(t),n,void 0,void 0,t)||(n?console.error(n+":",t):console.error(t))}const zf=Zt.define({combine:e=>e.length?e[0]:!0});let REt=0;const My=Zt.define({combine(e){return e.filter((t,n)=>{for(let i=0;i{let c=[];return a&&c.push(wI.of(u=>{let d=u.plugin(l);return d?a(d):gn.none})),s&&c.push(s(l)),c})}static fromClass(t,n){return Ts.define((i,r)=>new t(i,r),n)}}class o5{constructor(t){this.spec=t,this.mustUpdate=null,this.value=null}get plugin(){return this.spec&&this.spec.plugin}update(t){if(this.value){if(this.mustUpdate){let n=this.mustUpdate;if(this.mustUpdate=null,this.value.update)try{this.value.update(n)}catch(i){if(hl(n.state,i,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch{}this.deactivate()}}}else if(this.spec)try{this.value=this.spec.plugin.create(t,this.spec.arg)}catch(n){hl(t.state,n,"CodeMirror plugin crashed"),this.deactivate()}return this}destroy(t){var n;if(!((n=this.value)===null||n===void 0)&&n.destroy)try{this.value.destroy()}catch(i){hl(t.state,i,"CodeMirror plugin crashed")}}deactivate(){this.spec=this.value=null}}const p2e=Zt.define(),eQ=Zt.define(),wI=Zt.define(),m2e=Zt.define(),tQ=Zt.define(),ME=Zt.define(),g2e=Zt.define();function PZ(e,t){let n=e.state.facet(g2e);if(!n.length)return n;let i=n.map(s=>s instanceof Function?s(e):s),r=[];return xi.spans(i,t.from,t.to,{point(){},span(s,a,l,c){let u=s-t.from,d=a-t.from,f=r;for(let h=l.length-1;h>=0;h--,c--){let m=l[h].spec.bidiIsolate,g;if(m==null&&(m=jEt(t.text,u,d)),c>0&&f.length&&(g=f[f.length-1]).to==u&&g.direction==m)g.to=d,f=g.inner;else{let b={from:u,to:d,direction:m,inner:[]};f.push(b),f=b.inner}}}}),r}const b2e=Zt.define();function nQ(e){let t=0,n=0,i=0,r=0;for(let s of e.state.facet(b2e)){let a=s(e);a&&(a.left!=null&&(t=Math.max(t,a.left)),a.right!=null&&(n=Math.max(n,a.right)),a.top!=null&&(i=Math.max(i,a.top)),a.bottom!=null&&(r=Math.max(r,a.bottom)))}return{left:t,right:n,top:i,bottom:r}}const zw=Zt.define();class Gc{constructor(t,n,i,r){this.fromA=t,this.toA=n,this.fromB=i,this.toB=r}join(t){return new Gc(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(t){let n=t.length,i=this;for(;n>0;n--){let r=t[n-1];if(!(r.fromA>i.toA)){if(r.toAr.push(new Gc(s,a,l,c))),this.changedRanges=r}static create(t,n,i){return new IN(t,n,i)}get viewportChanged(){return(this.flags&4)>0}get viewportMoved(){return(this.flags&8)>0}get heightChanged(){return(this.flags&2)>0}get geometryChanged(){return this.docChanged||(this.flags&18)>0}get focusChanged(){return(this.flags&1)>0}get docChanged(){return!this.changes.empty}get selectionSet(){return this.transactions.some(t=>t.selection)}get empty(){return this.flags==0&&this.transactions.length==0}}const IEt=[];class Cs{constructor(t,n,i=0){this.dom=t,this.length=n,this.flags=i,this.parent=null,t.cmTile=this}get breakAfter(){return this.flags&1}get children(){return IEt}isWidget(){return!1}get isHidden(){return!1}isComposite(){return!1}isLine(){return!1}isText(){return!1}isBlock(){return!1}get domAttrs(){return null}sync(t){if(this.flags|=2,this.flags&4){this.flags&=-5;let n=this.domAttrs;n&&mEt(this.dom,n)}}toString(){return this.constructor.name+(this.children.length?`(${this.children})`:"")+(this.breakAfter?"#":"")}destroy(){this.parent=null}setDOM(t){this.dom=t,t.cmTile=this}get posAtStart(){return this.parent?this.parent.posBefore(this):0}get posAtEnd(){return this.posAtStart+this.length}posBefore(t,n=this.posAtStart){let i=n;for(let r of this.children){if(r==t)return i;i+=r.length+r.breakAfter}throw new RangeError("Invalid child in posBefore")}posAfter(t){return this.posBefore(t)+t.length}covers(t){return!0}coordsIn(t,n,i){return null}domPosFor(t,n){let i=Am(this.dom),r=this.length?t>0:n>0;return new Nu(this.parent.dom,i+(r?1:0),t==0||t==this.length)}markDirty(t){this.flags&=-3,t&&(this.flags|=4),this.parent&&this.parent.flags&2&&this.parent.markDirty(!1)}get overrideDOMText(){return null}get root(){for(let t=this;t;t=t.parent)if(t instanceof SI)return t;return null}static get(t){return t.cmTile}}class OI extends Cs{constructor(t){super(t,0),this._children=[]}isComposite(){return!0}get children(){return this._children}get lastChild(){return this.children.length?this.children[this.children.length-1]:null}append(t){this.children.push(t),t.parent=this}sync(t){if(this.flags&2)return;super.sync(t);let n=this.dom,i=null,r,s=(t==null?void 0:t.node)==n?t:null,a=0;for(let l of this.children){if(l.sync(t),a+=l.length+l.breakAfter,r=i?i.nextSibling:n.firstChild,s&&r!=l.dom&&(s.written=!0),l.dom.parentNode==n)for(;r&&r!=l.dom;)r=DZ(r);else n.insertBefore(l.dom,r);i=l.dom}for(r=i?i.nextSibling:n.firstChild,s&&r&&(s.written=!0);r;)r=DZ(r);this.length=a}}function DZ(e){let t=e.nextSibling;return e.parentNode.removeChild(e),t}class SI extends OI{constructor(t,n){super(n),this.view=t}owns(t){for(;t;t=t.parent)if(t==this)return!0;return!1}isBlock(){return!0}nearest(t){for(;;){if(!t)return null;let n=Cs.get(t);if(n&&this.owns(n))return n;t=t.parentNode}}blockTiles(t){for(let n=[],i=this,r=0,s=0;;)if(r==i.children.length){if(!n.length)return;i=i.parent,i.breakAfter&&s++,r=n.pop()}else{let a=i.children[r++];if(a instanceof dh)n.push(r),i=a,r=0;else{let l=s+a.length,c=t(a,s);if(c!==void 0)return c;s=l+a.breakAfter}}}resolveBlock(t,n){let i,r=-1,s,a=-1;if(this.blockTiles((l,c)=>{let u=c+l.length;if(t>=c&&t<=u){if(l.isWidget()&&n>=-1&&n<=1){if(l.flags&32)return!0;l.flags&16&&(i=void 0)}(ct||t==c&&(n>1?l.length:l.covers(-1)))&&(!s||!l.isWidget()&&s.isWidget())&&(s=l,a=t-c)}}),!i&&!s)throw new Error("No tile at position "+t);return i&&n<0||!s?{tile:i,offset:r}:{tile:s,offset:a}}}class dh extends OI{constructor(t,n){super(t),this.wrapper=n}isBlock(){return!0}covers(t){return this.children.length?t<0?this.children[0].covers(-1):this.lastChild.covers(1):!1}get domAttrs(){return this.wrapper.attributes}static of(t,n){let i=new dh(n||document.createElement(t.tagName),t);return n||(i.flags|=4),i}}class rx extends OI{constructor(t,n){super(t),this.attrs=n}isLine(){return!0}static start(t,n,i){let r=new rx(n||document.createElement("div"),t);return(!n||!i)&&(r.flags|=4),r}get domAttrs(){return this.attrs}resolveInline(t,n,i){let r=null,s=-1,a=null,l=-1;function c(d,f){for(let h=0,m=0;h=f&&(g.isComposite()?c(g,f-m):(!a||a.isHidden&&(n>0&&!(a.flags&32)||i&&DEt(a,g)))&&(b>f||g.flags&32)?(a=g,l=f-m):(mr&&(t=r);let s=t,a=t,l=0;t==0&&n<0||t==r&&n>=0?Xt.chrome||Xt.gecko||(t?(s--,l=1):a=0)?0:c.length-1];return Xt.safari&&!l&&u.width==0&&(u=Array.prototype.find.call(c,d=>d.width)||u),i==null?u:ik(u,(l?l>0:n<0)==i)}static of(t,n){let i=new Qg(n||document.createTextNode(t),t);return n||(i.flags|=2),i}}class Rb extends Cs{constructor(t,n,i,r){super(t,n,r),this.widget=i}isWidget(){return!0}get isHidden(){return this.widget.isHidden}covers(t){return this.flags&48?!1:(this.flags&(t<0?64:128))>0}coordsIn(t,n){return this.coordsInWidget(t,n,!1)}coordsInWidget(t,n,i){let r=this.widget.coordsAt(this.dom,t,n);if(r)return r;if(i)return ik(this.dom.getBoundingClientRect(),this.length?t==0:n<=0);{let s=this.dom.getClientRects(),a=null;if(!s.length)return null;let l=this.flags&16?!0:this.flags&32?!1:t>0;for(let c=l?s.length-1:0;a=s[c],!(t>0?c==0:c==s.length-1||a.top0==i)}}class MEt{constructor(t){this.index=0,this.beforeBreak=!1,this.parents=[],this.tile=t}advance(t,n,i){let{tile:r,index:s,beforeBreak:a,parents:l}=this;for(;t||n>0;)if(r.isComposite())if(a){if(!t)break;i&&i.break(),t--,a=!1}else if(s==r.children.length){if(!t&&!l.length)break;i&&i.leave(r),a=!!r.breakAfter,{tile:r,index:s}=l.pop(),s++}else{let c=r.children[s],u=c.breakAfter;(n>0?c.length<=t:c.length=0;l--){let c=n.marks[l],u=r.lastChild;if(u instanceof ul&&u.mark.eq(c.mark))u.dom!=c.dom&&u.setDOM(l5(c.dom)),r=u;else{if(this.cache.reused.get(c)){let f=Cs.get(c.dom);f&&f.setDOM(l5(c.dom))}let d=ul.of(c.mark,c.dom);r.append(d),r=d}this.cache.reused.set(c,2)}let s=Cs.get(t.text);s&&this.cache.reused.set(s,2);let a=new Qg(t.text,t.text.nodeValue);a.flags|=8,this.pos=t.range.toB,r.append(a)}addInlineWidget(t,n,i){let r=this.afterWidget&&t.flags&48&&(this.afterWidget.flags&48)==(t.flags&48);r||this.flushBuffer();let s=this.ensureMarks(n,i);!r&&!(t.flags&16)&&s.append(this.getBuffer(1)),s.append(t),this.pos+=t.length,this.afterWidget=t}addMark(t,n,i){this.flushBuffer(),this.ensureMarks(n,i).append(t),this.pos+=t.length,this.afterWidget=null}addBlockWidget(t){this.getBlockPos().append(t),this.pos+=t.length,this.lastBlock=t,this.endLine()}continueWidget(t){let n=this.afterWidget||this.lastBlock;n.length+=t,this.pos+=t}addLineStart(t,n){var i;t||(t=y2e);let r=rx.start(t,n||((i=this.cache.find(rx))===null||i===void 0?void 0:i.dom),!!n);this.getBlockPos().append(this.lastBlock=this.curLine=r)}addLine(t){this.getBlockPos().append(t),this.pos+=t.length,this.lastBlock=t,this.endLine()}addBreak(){this.lastBlock.flags|=1,this.endLine(),this.pos++}addLineStartIfNotCovered(t){this.blockPosCovered()||this.addLineStart(t)}ensureLine(t){this.curLine||this.addLineStart(t)}ensureMarks(t,n){var i;let r=this.curLine;for(let s=t.length-1;s>=0;s--){let a=t[s],l;if(n>0&&(l=r.lastChild)&&l instanceof ul&&l.mark.eq(a))r=l,n--;else{let c=ul.of(a,(i=this.cache.find(ul,u=>u.mark.eq(a)))===null||i===void 0?void 0:i.dom);r.append(c),r=c,n=0}}return r}endLine(){if(this.curLine){this.flushBuffer();let t=this.curLine.lastChild;(!t||!MZ(this.curLine,!1)||t.dom.nodeName!="BR"&&t.isWidget()&&!(Xt.ios&&MZ(this.curLine,!0)))&&this.curLine.append(this.cache.findWidget(c5,0,32)||new Rb(c5.toDOM(),0,c5,32)),this.curLine=this.afterWidget=null}}updateBlockWrappers(){this.wrapperPos>this.pos+1e4&&(this.blockWrappers.goto(this.pos),this.wrappers.length=0);for(let t=this.wrappers.length-1;t>=0;t--)this.wrappers[t].to=this.pos){let n=t.rank*102+t.value.rank,i=new LEt(t.from,t.to,t.value,n),r=this.wrappers.length;for(;r>0&&(this.wrappers[r-1].rank-i.rank||this.wrappers[r-1].to-i.to)<0;)r--;this.wrappers.splice(r,0,i)}this.wrapperPos=this.pos}getBlockPos(){var t;this.updateBlockWrappers();let n=this.root;for(let i of this.wrappers){let r=n.lastChild;if(i.froma.wrapper.eq(i.wrapper)))===null||t===void 0?void 0:t.dom);n.append(s),n=s}}return n}blockPosCovered(){let t=this.lastBlock;return t!=null&&!t.breakAfter&&(!t.isWidget()||(t.flags&160)>0)}getBuffer(t){let n=2|(t<0?16:32),i=this.cache.find(PN,void 0,1);return i&&(i.flags=n),i||new PN(n)}flushBuffer(){this.afterWidget&&!(this.afterWidget.flags&32)&&(this.afterWidget.parent.append(this.getBuffer(-1)),this.afterWidget=null)}}class FEt{constructor(t){this.skipCount=0,this.text="",this.textOff=0,this.cursor=t.iter()}skip(t){this.textOff+t<=this.text.length?this.textOff+=t:(this.skipCount+=t-(this.text.length-this.textOff),this.text="",this.textOff=0)}next(t){if(this.textOff==this.text.length){let{value:r,lineBreak:s,done:a}=this.cursor.next(this.skipCount);if(this.skipCount=0,a)throw new Error("Ran out of text content when drawing inline views");this.text=r;let l=this.textOff=Math.min(t,r.length);return s?null:r.slice(0,l)}let n=Math.min(this.text.length,this.textOff+t),i=this.text.slice(this.textOff,n);return this.textOff=n,i}}const DN=[Rb,rx,Qg,ul,PN,dh,SI];for(let e=0;e[]),this.index=DN.map(()=>0),this.reused=new Map}add(t){let n=t.constructor.bucket,i=this.buckets[n];i.length<6?i.push(t):i[this.index[n]=(this.index[n]+1)%6]=t}find(t,n,i=2){let r=t.bucket,s=this.buckets[r],a=this.index[r];for(let l=0;l{if(this.cache.add(a),a.isComposite())return!1},enter:a=>this.cache.add(a),leave:()=>{},break:()=>{}}}run(t,n){let i=n&&this.getCompositionContext(n.text);for(let r=0,s=0,a=0;;){let l=ar){let u=c-r;this.preserve(u,!a,!l),r=c,s+=u}if(!l)break;n&&l.fromA<=n.range.fromA&&l.toA>=n.range.toA?(this.forward(l.fromA,n.range.fromA,n.range.fromA{if(a.isWidget())if(this.openWidget)this.builder.continueWidget(c-l);else{let u=c>0||l{a.isLine()?this.builder.addLineStart(a.attrs,this.cache.maybeReuse(a)):(this.cache.add(a),a instanceof ul&&r.unshift(a.mark)),this.openWidget=!1},leave:a=>{a.isLine()?r.length&&(r.length=s=0):a instanceof ul&&(r.shift(),s=Math.min(s,r.length))},break:()=>{this.builder.addBreak(),this.openWidget=!1}}),this.text.skip(t)}emit(t,n){let i=null,r=this.builder,s=-1,a=xi.spans(this.decorations,t,n,{point:(l,c,u,d,f,h)=>{if(u instanceof Nb){if(this.disallowBlockEffectsFor[h]){if(u.block)throw new RangeError("Block decorations may not be specified via plugins");if(c>this.view.state.doc.lineAt(l).to)throw new RangeError("Decorations that replace line breaks may not be specified via plugins")}if(s=d.length,f>d.length)r.continueWidget(c-l);else{let m=u.widget||(u.block?sx.block:sx.inline),g=QEt(u),b=this.cache.findWidget(m,c-l,g)||Rb.of(m,this.view,c-l,g);u.block?(u.startSide>0&&r.addLineStartIfNotCovered(i),r.addBlockWidget(b)):(r.ensureLine(i),r.addInlineWidget(b,d,f))}i=null}else i=zEt(i,u);c>l&&this.text.skip(c-l)},span:(l,c,u,d)=>{for(let f=l;f-1&&(this.openWidget=a>s),this.openWidget||r.addLineStartIfNotCovered(i),this.openMarks=a}forward(t,n,i=1){n-t<=10?this.old.advance(n-t,i,this.reuseWalker):(this.old.advance(5,-1,this.reuseWalker),this.old.advance(n-t-10,-1),this.old.advance(5,i,this.reuseWalker))}getCompositionContext(t){let n=[],i=null;for(let r=t.parentNode;;r=r.parentNode){let s=Cs.get(r);if(r==this.view.contentDOM)break;s instanceof ul?n.push(s):s!=null&&s.isLine()?i=s:s instanceof dh||(r.nodeName=="DIV"&&!i&&r!=this.view.contentDOM?i=new rx(r,y2e):i||n.push(ul.of(new PE({tagName:r.nodeName.toLowerCase(),attributes:gEt(r)}),r)))}return{line:i,marks:n}}}function MZ(e,t){let n=i=>{for(let r of i.children)if((t?r.isText():r.length)||n(r))return!0;return!1};return n(e)}function QEt(e){let t=e.isReplace?(e.startSide<0?64:0)|(e.endSide>0?128:0):e.startSide>0?32:16;return e.block&&(t|=256),t}const y2e={class:"cm-line"};function zEt(e,t){let n=t.spec.attributes,i=t.spec.class;return!n&&!i||(e||(e={class:"cm-line"}),n&&KU(n,e),i&&(e.class+=" "+i)),e}function VEt(e){let t=[];for(let n=e.parents.length;n>1;n--){let i=n==e.parents.length?e.tile:e.parents[n].tile;i instanceof ul&&t.push(i.mark)}return t}function l5(e){let t=Cs.get(e);return t&&t.setDOM(e.cloneNode()),e}class sx extends Yu{constructor(t){super(),this.tag=t}eq(t){return t.tag==this.tag}toDOM(){return document.createElement(this.tag)}updateDOM(t){return t.nodeName.toLowerCase()==this.tag}get isHidden(){return!0}}sx.inline=new sx("span");sx.block=new sx("div");const c5=new class extends Yu{toDOM(){return document.createElement("br")}get isHidden(){return!0}get editable(){return!0}};class LZ{constructor(t){this.view=t,this.decorations=[],this.blockWrappers=[],this.dynamicDecorationMap=[!1],this.domChanged=null,this.hasComposition=null,this.editContextFormatting=gn.none,this.lastCompositionAfterCursor=!1,this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.forceSelection=!1,this.lastUpdate=Date.now(),this.updateDeco(),this.tile=new SI(t,t.contentDOM),this.updateInner([new Gc(0,0,0,t.state.doc.length)],null)}update(t){var n;let i=t.changedRanges;this.minWidth>0&&i.length&&(i.every(({fromA:d,toA:f})=>fthis.minWidthTo)?(this.minWidthFrom=t.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=t.changes.mapPos(this.minWidthTo,1)):this.minWidth=this.minWidthFrom=this.minWidthTo=0),this.updateEditContextFormatting(t);let r=-1;this.view.inputState.composing>=0&&!this.view.observer.editContext&&(!((n=this.domChanged)===null||n===void 0)&&n.newSel?r=this.domChanged.newSel.head:!JEt(t.changes,this.hasComposition)&&!t.selectionSet&&(r=t.state.selection.main.head));let s=r>-1?qEt(this.view,t.changes,r):null;if(this.domChanged=null,this.hasComposition){let{from:d,to:f}=this.hasComposition;i=new Gc(d,f,t.changes.mapPos(d,-1),t.changes.mapPos(f,1)).addToSet(i.slice())}this.hasComposition=s?{from:s.range.fromB,to:s.range.toB}:null,(Xt.ie||Xt.chrome)&&!s&&t&&t.state.doc.lines!=t.startState.doc.lines&&(this.forceSelection=!0);let a=this.decorations,l=this.blockWrappers;this.updateDeco();let c=KEt(a,this.decorations,t.changes);c.length&&(i=Gc.extendWithRanges(i,c));let u=YEt(l,this.blockWrappers,t.changes);return u.length&&(i=Gc.extendWithRanges(i,u)),s&&!i.some(d=>d.fromA<=s.range.fromA&&d.toA>=s.range.toA)&&(i=s.range.addToSet(i.slice())),this.tile.flags&2&&i.length==0?!1:(this.updateInner(i,s),t.transactions.length&&(this.lastUpdate=Date.now()),!0)}updateInner(t,n){this.view.viewState.mustMeasureContent=!0;let{observer:i}=this.view;i.ignore(()=>{if(n||t.length){let a=this.tile,l=new UEt(this.view,a,this.blockWrappers,this.decorations,this.dynamicDecorationMap);n&&Cs.get(n.text)&&l.cache.reused.set(Cs.get(n.text),2),this.tile=l.run(t,n),D$(a,l.cache.reused)}this.tile.dom.style.height=this.view.viewState.contentHeight/this.view.scaleY+"px",this.tile.dom.style.flexBasis=this.minWidth?this.minWidth+"px":"";let s=Xt.chrome||Xt.ios?{node:i.selectionRange.focusNode,written:!1}:void 0;this.tile.sync(s),s&&(s.written||i.selectionRange.focusNode!=s.node||!this.tile.dom.contains(s.node))&&(this.forceSelection=!0),this.tile.dom.style.height=""});let r=[];if(this.view.viewport.from||this.view.viewport.to-1)&&FO(i,this.view.observer.selectionRange)&&!(r&&i.contains(r));if(!(s||n||a))return;let l=this.forceSelection;this.forceSelection=!1;let c=this.view.state.selection.main,u,d;if(c.empty?d=u=this.inlineDOMNearPos(c.anchor,c.assoc||1):(d=this.inlineDOMNearPos(c.head,c.head==c.from?1:-1),u=this.inlineDOMNearPos(c.anchor,c.anchor==c.from?1:-1)),Xt.gecko&&c.empty&&!this.hasComposition&&HEt(u)){let h=document.createTextNode("");this.view.observer.ignore(()=>u.node.insertBefore(h,u.node.childNodes[u.offset]||null)),u=d=new Nu(h,0),l=!0}let f=this.view.observer.selectionRange;(l||!f.focusNode||(!UO(u.node,u.offset,f.anchorNode,f.anchorOffset)||!UO(d.node,d.offset,f.focusNode,f.focusOffset))&&!this.suppressWidgetCursorChange(f,c))&&(this.view.observer.ignore(()=>{Xt.android&&Xt.chrome&&i.contains(f.focusNode)&&ZEt(f.focusNode,i)&&(i.blur(),i.focus({preventScroll:!0}));let h=nk(this.view.root);if(h)if(c.empty){if(Xt.gecko){let m=WEt(u.node,u.offset);if(m&&m!=3){let g=(m==1?YTe:ZTe)(u.node,u.offset);g&&(u=new Nu(g.node,g.offset))}}h.collapse(u.node,u.offset),c.bidiLevel!=null&&h.caretBidiLevel!==void 0&&(h.caretBidiLevel=c.bidiLevel)}else if(h.extend){h.collapse(u.node,u.offset);try{h.extend(d.node,d.offset)}catch{}}else{let m=document.createRange();c.anchor>c.head&&([u,d]=[d,u]),m.setEnd(d.node,d.offset),m.setStart(u.node,u.offset),h.removeAllRanges(),h.addRange(m)}a&&this.view.root.activeElement==i&&(i.blur(),r&&r.focus())}),this.view.observer.setSelectionRange(u,d)),this.impreciseAnchor=u.precise?null:new Nu(f.anchorNode,f.anchorOffset),this.impreciseHead=d.precise?null:new Nu(f.focusNode,f.focusOffset)}suppressWidgetCursorChange(t,n){return this.hasComposition&&n.empty&&UO(t.focusNode,t.focusOffset,t.anchorNode,t.anchorOffset)&&this.posFromDOM(t.focusNode,t.focusOffset)==n.head}enforceCursorAssoc(){if(this.hasComposition)return;let{view:t}=this,n=t.state.selection.main,i=nk(t.root),{anchorNode:r,anchorOffset:s}=t.observer.selectionRange;if(!i||!n.empty||!n.assoc||!i.modify)return;let a=this.lineAt(n.head,n.assoc);if(!a)return;let l=a.posAtStart;if(n.head==l||n.head==l+a.length)return;let c=this.coordsAt(n.head,-1),u=this.coordsAt(n.head,1);if(!c||!u||c.bottom>u.top)return;let d=this.domAtPos(n.head+n.assoc,n.assoc);i.collapse(d.node,d.offset),i.modify("move",n.assoc<0?"forward":"backward","lineboundary"),t.observer.readSelectionRange();let f=t.observer.selectionRange;t.docView.posFromDOM(f.anchorNode,f.anchorOffset)!=n.from&&i.collapse(r,s)}posFromDOM(t,n){let i=this.tile.nearest(t);if(!i)return this.tile.dom.compareDocumentPosition(t)&2?0:this.view.state.doc.length;let r=i.posAtStart;if(i.isComposite()){let s;if(t==i.dom)s=i.dom.childNodes[n];else{let a=_h(t)==0?0:n==0?-1:1;for(;;){let l=t.parentNode;if(l==i.dom)break;a==0&&l.firstChild!=l.lastChild&&(t==l.firstChild?a=-1:a=1),t=l}a<0?s=t:s=t.nextSibling}if(s==i.dom.firstChild)return r;for(;s&&!Cs.get(s);)s=s.nextSibling;if(!s)return r+i.length;for(let a=0,l=r;;a++){let c=i.children[a];if(c.dom==s)return l;l+=c.length+c.breakAfter}}else return i.isText()?t==i.dom?r+n:r+(n?i.length:0):r}domAtPos(t,n){let{tile:i,offset:r}=this.tile.resolveBlock(t,n);return i.isWidget()?i.domPosFor(r,n):i.domIn(r,n)}inlineDOMNearPos(t,n){let i,r=-1,s=!1,a,l=-1,c=!1;return this.tile.blockTiles((u,d)=>{if(u.isWidget()){if(u.flags&32&&d>=t)return!0;u.flags&16&&(s=!0)}else{let f=d+u.length;if(d<=t&&(i=u,r=t-d,s=f=t&&!a&&(a=u,l=t-d,c=d>t),d>t&&a)return!0}}),!i&&!a?this.domAtPos(t,n):(s&&a?i=null:c&&i&&(a=null),i&&n<0||!a?i.domIn(r,n):a.domIn(l,n))}coordsAt(t,n,i){let{tile:r,offset:s}=this.tile.resolveBlock(t,n);return r.isWidget()?r.widget instanceof u5?null:r.coordsInWidget(s,n,!0):r.coordsIn(s,n,i)}lineAt(t,n){let{tile:i}=this.tile.resolveBlock(t,n);return i.isLine()?i:null}coordsForChar(t){let{tile:n,offset:i}=this.tile.resolveBlock(t,1);if(!n.isLine())return null;function r(s,a){if(s.isComposite())for(let l of s.children){if(l.length>=a){let c=r(l,a);if(c)return c}if(a-=l.length,a<0)break}else if(s.isText()&&aMath.max(this.view.scrollDOM.clientWidth,this.minWidth)+1,l=-1,c=this.view.textDirection==Cr.LTR,u=0,d=(f,h,m)=>{for(let g=0;gr);g++){let b=f.children[g],v=h+b.length,y=b.dom.getBoundingClientRect(),{height:x}=y;if(m&&!g&&(u+=y.top-m.top),b instanceof dh)v>i&&d(b,h,y);else if(h>=i&&(u>0&&n.push(-u),n.push(x+u),u=0,a)){let O=b.dom.lastChild,w=O?BO(O):[];if(w.length){let k=w[w.length-1],S=c?k.right-y.left:y.right-k.left;S>l&&(l=S,this.minWidth=s,this.minWidthFrom=h,this.minWidthTo=v)}}m&&g==f.children.length-1&&(u+=m.bottom-y.bottom),h=v+b.breakAfter}};return d(this.tile,0,null),n}textDirectionAt(t){let{tile:n}=this.tile.resolveBlock(t,1);return getComputedStyle(n.dom).direction=="rtl"?Cr.RTL:Cr.LTR}measureTextSize(){let t=this.tile.blockTiles(a=>{if(a.isLine()&&a.children.length&&a.length<=20){let l=0,c;for(let u of a.children){if(!u.isText()||/[^ -~]/.test(u.text))return;let d=BO(u.dom);if(d.length!=1)return;l+=d[0].width,c=d[0].height}if(l)return{lineHeight:a.dom.getBoundingClientRect().height,charWidth:l/a.length,textHeight:c}}});if(t)return t;let n=document.createElement("div"),i,r,s;return n.className="cm-line",n.style.width="99999px",n.style.position="absolute",n.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore(()=>{this.tile.dom.appendChild(n);let a=BO(n.firstChild)[0];i=n.getBoundingClientRect().height,r=a&&a.width?a.width/27:7,s=a&&a.height?a.height:i,n.remove()}),{lineHeight:i,charWidth:r,textHeight:s}}computeBlockGapDeco(){let t=[],n=this.view.viewState;for(let i=0,r=0;;r++){let s=r==n.viewports.length?null:n.viewports[r],a=s?s.from-1:this.view.state.doc.length;if(a>i){let l=(n.lineBlockAt(a).bottom-n.lineBlockAt(i).top)/this.view.scaleY;t.push(gn.replace({widget:new u5(l),block:!0,inclusive:!0,isBlockGap:!0}).range(i,a))}if(!s)break;i=s.to+1}return gn.set(t)}updateDeco(){let t=1,n=this.view.state.facet(wI).map(s=>(this.dynamicDecorationMap[t++]=typeof s=="function")?s(this.view):s),i=!1,r=this.view.state.facet(tQ).map((s,a)=>{let l=typeof s=="function";return l&&(i=!0),l?s(this.view):s});for(r.length&&(this.dynamicDecorationMap[t++]=i,n.push(xi.join(r))),this.decorations=[this.editContextFormatting,...n,this.computeBlockGapDeco(),this.view.viewState.lineGapDeco];ttypeof s=="function"?s(this.view):s)}scrollIntoView(t){if(t.isSnapshot){let u=this.view.viewState.lineBlockAt(t.range.head);this.view.scrollDOM.scrollTop=u.top-t.yMargin,this.view.scrollDOM.scrollLeft=t.xMargin;return}for(let u of this.view.state.facet(f2e))try{if(u(this.view,t.range,t))return!0}catch(d){hl(this.view.state,d,"scroll handler")}let{range:n}=t,i=this.coordsAt(n.head,n.assoc||(n.head>n.anchor?-1:1)),r;if(!i)return;!n.empty&&(r=this.coordsAt(n.anchor,n.anchor>n.head?-1:1))&&(i={left:Math.min(i.left,r.left),top:Math.min(i.top,r.top),right:Math.max(i.right,r.right),bottom:Math.max(i.bottom,r.bottom)});let s=nQ(this.view),a={left:i.left-s.left,top:i.top-s.top,right:i.right+s.right,bottom:i.bottom+s.bottom},{offsetWidth:l,offsetHeight:c}=this.view.scrollDOM;if(vEt(this.view.scrollDOM,a,n.head1&&(i.top>window.pageYOffset+window.visualViewport.offsetTop+window.visualViewport.height||i.bottomi.isWidget()||i.children.some(n);return n(this.tile.resolveBlock(t,1).tile)}destroy(){D$(this.tile)}}function D$(e,t){let n=t==null?void 0:t.get(e);if(n!=1){n==null&&e.destroy();for(let i of e.children)D$(i,t)}}function HEt(e){return e.node.nodeType==1&&e.node.firstChild&&(e.offset==0||e.node.childNodes[e.offset-1].contentEditable=="false")&&(e.offset==e.node.childNodes.length||e.node.childNodes[e.offset].contentEditable=="false")}function v2e(e,t){let n=e.observer.selectionRange;if(!n.focusNode)return null;let i=YTe(n.focusNode,n.focusOffset),r=ZTe(n.focusNode,n.focusOffset),s=i||r;if(r&&i&&r.node!=i.node){let l=Cs.get(r.node);if(!l||l.isText()&&l.text!=r.node.nodeValue)s=r;else if(e.docView.lastCompositionAfterCursor){let c=Cs.get(i.node);!c||c.isText()&&c.text!=i.node.nodeValue||(s=r)}}if(e.docView.lastCompositionAfterCursor=s!=i,!s)return null;let a=t-s.offset;return{from:a,to:a+s.node.nodeValue.length,node:s.node}}function qEt(e,t,n){let i=v2e(e,n);if(!i)return null;let{node:r,from:s,to:a}=i,l=r.nodeValue;if(/[\n\r]/.test(l)||e.state.doc.sliceString(i.from,i.to)!=l)return null;let c=t.invertedDesc;return{range:new Gc(c.mapPos(s),c.mapPos(a),s,a),text:r}}function WEt(e,t){return e.nodeType!=1?0:(t&&e.childNodes[t-1].contentEditable=="false"?1:0)|(t{it.from&&(n=!0)}),n}class u5 extends Yu{constructor(t){super(),this.height=t}toDOM(){let t=document.createElement("div");return t.className="cm-gap",this.updateDOM(t),t}eq(t){return t.height==this.height}updateDOM(t){return t.style.height=this.height+"px",!0}get editable(){return!0}get estimatedHeight(){return this.height}ignoreEvent(){return!1}}function eCt(e,t,n=1){let i=e.charCategorizer(t),r=e.doc.lineAt(t),s=t-r.from;if(r.length==0)return it.cursor(t);s==0?n=1:s==r.length&&(n=-1);let a=s,l=s;n<0?a=$a(r.text,s,!1):l=$a(r.text,s);let c=i(r.text.slice(a,l));for(;a>0;){let u=$a(r.text,a,!1);if(i(r.text.slice(u,a))!=c)break;a=u}for(;le.defaultLineHeight*1.5){let l=e.viewState.heightOracle.textHeight,c=Math.floor((r-n.top-(e.defaultLineHeight-l)*.5)/l);s+=c*e.viewState.heightOracle.lineLength}let a=e.state.sliceDoc(n.from,n.to);return n.from+S$(a,s,e.state.tabSize)}function M$(e,t,n){let i=e.lineBlockAt(t);if(Array.isArray(i.type)){let r;for(let s of i.type){if(s.from>t)break;if(!(s.tot)return s;(!r||s.type==io.Text&&(r.type!=s.type||(n<0?s.fromt)))&&(r=s)}}return r||i}return i}function nCt(e,t,n,i){let r=M$(e,t.head,t.assoc||-1),s=!i||r.type!=io.Text||!(e.lineWrapping||r.widgetLineBreaks)?null:e.coordsAtPos(t.assoc<0&&t.head>r.from?t.head-1:t.head);if(s){let a=e.dom.getBoundingClientRect(),l=e.textDirectionAt(r.from),c=e.posAtCoords({x:n==(l==Cr.LTR)?a.right-1:a.left+1,y:(s.top+s.bottom)/2});if(c!=null)return it.cursor(c,n?-1:1)}return it.cursor(n?r.to:r.from,n?-1:1)}function $Z(e,t,n,i){let r=e.state.doc.lineAt(t.head),s=e.bidiSpans(r),a=e.textDirectionAt(r.from);for(let l=t,c=null;;){let u=NEt(r,s,a,l,n),d=i2e;if(!u){if(r.number==(n?e.state.doc.lines:1))return l;d=` -`,r=e.state.doc.line(r.number+(n?1:-1)),s=e.bidiSpans(r),u=e.visualLineSide(r,!n)}if(c){if(!c(d))return l}else{if(!i)return u;c=i(d)}l=u}}function iCt(e,t,n){let i=e.state.charCategorizer(t),r=i(n);return s=>{let a=i(s);return r==ns.Space&&(r=a),r==a}}function rCt(e,t,n,i){let r=t.head,s=n?1:-1;if(r==(n?e.state.doc.length:0))return it.cursor(r,t.assoc);let a=t.goalColumn,l,c=e.contentDOM.getBoundingClientRect(),u=e.coordsAtPos(r,t.assoc||((t.empty?n:t.head==t.from)?1:-1)),d=e.documentTop;if(u)a==null&&(a=u.left-c.left),l=s<0?u.top:u.bottom;else{let g=e.viewState.lineBlockAt(r);a==null&&(a=Math.min(c.right-c.left,e.defaultCharacterWidth*(r-g.from))),l=(s<0?g.top:g.bottom)+d}let f=c.left+a,h=e.viewState.heightOracle.textHeight>>1,m=i??h;for(let g=0;;g+=h){let b=l+(m+g)*s,v=L$(e,{x:f,y:b},!1,s);if(n?b>c.bottom:bl:x{if(t>s&&tr(e)),n.from,t.head>n.from?-1:1);return i==n.from?n:it.cursor(i,ie.viewState.docHeight)return new xd(e.state.doc.length,-1);if(u=e.elementAtHeight(c),i==null)break;if(u.type==io.Text){if(i<0?u.toe.viewport.to)break;let h=e.docView.coordsAt(i<0?u.from:u.to,i>0?-1:1);if(h&&(i<0?h.top<=c+s:h.bottom>=c+s))break}let f=e.viewState.heightOracle.textHeight/2;c=i>0?u.bottom+f:u.top-f}if(e.viewport.from>=u.to||e.viewport.to<=u.from){if(n)return null;if(u.type==io.Text){let f=tCt(e,r,u,a,l);return new xd(f,f==u.from?1:-1)}}if(u.type!=io.Text)return c<(u.top+u.bottom)/2?new xd(u.from,1):new xd(u.to,-1);let d=e.docView.lineAt(u.from,2);return(!d||d.length!=u.length)&&(d=e.docView.lineAt(u.from,-2)),new sCt(e,a,l,e.textDirectionAt(u.from)).scanTile(d,u.from)}class sCt{constructor(t,n,i,r){this.view=t,this.x=n,this.y=i,this.baseDir=r,this.line=null,this.spans=null}bidiSpansAt(t){return(!this.line||this.line.from>t||this.line.to1||i.length&&(i[0].level!=this.baseDir||i[0].to+r.from>1;t:if(a.has(b)){let y=r+Math.floor(Math.random()*g);for(let x=0;x1)){if(x.bottomthis.y)(!u||u.top>x.top)&&(u=x),O=-1;else{let w=x.left>this.x?this.x-x.left:x.right(g+g+b)/3)return this.y=c.bottom-1,this.scan(t,n,!0);if(u&&u.top<(g+b+b)/3)return this.y=u.top+1,this.scan(t,n,!0)}let m=(l?this.dirAt(t[d],1):this.baseDir)==Cr.LTR;return{i:d,after:this.x>(h.left+h.right)/2==m}}scanText(t,n){let i=[];for(let s=0;s{let a=i[s]-n,l=i[s+1]-n;return rk(t.dom,a,l).getClientRects()});return r.after?new xd(i[r.i+1],-1):new xd(i[r.i],1)}scanTile(t,n){if(!t.length)return new xd(n,1);if(t.children.length==1){let l=t.children[0];if(l.isText())return this.scanText(l,n);if(l.isComposite())return this.scanTile(l,n)}let i=[n];for(let l=0,c=n;l{let c=t.children[l];return c.flags&48?null:(c.dom.nodeType==1?c.dom:rk(c.dom,0,c.length)).getClientRects()}),s=t.children[r.i],a=i[r.i];return s.isText()?this.scanText(s,a):s.isComposite()?this.scanTile(s,a):r.after?new xd(i[r.i+1],-1):new xd(a,1)}}const sy="￿";class aCt{constructor(t,n){this.points=t,this.view=n,this.text="",this.lineSeparator=n.state.facet(Ti.lineSeparator)}append(t){this.text+=t}lineBreak(){this.text+=sy}readRange(t,n){if(!t)return this;let i=t.parentNode;for(let r=t;;){this.findPointBefore(i,r);let s=this.text.length;this.readNode(r);let a=Cs.get(r),l=r.nextSibling;if(l==n){a!=null&&a.breakAfter&&!l&&i!=this.view.contentDOM&&this.lineBreak();break}let c=Cs.get(l);(a&&c?a.breakAfter:(a?a.breakAfter:RN(r))||RN(l)&&(r.nodeName!="BR"||a!=null&&a.isWidget())&&this.text.length>s)&&!lCt(l,n)&&this.lineBreak(),r=l}return this.findPointBefore(i,n),this}readTextNode(t){let n=t.nodeValue;for(let i of this.points)i.node==t&&(i.pos=this.text.length+Math.min(i.offset,n.length));for(let i=0,r=this.lineSeparator?null:/\r\n?|\n/g;;){let s=-1,a=1,l;if(this.lineSeparator?(s=n.indexOf(this.lineSeparator,i),a=this.lineSeparator.length):(l=r.exec(n))&&(s=l.index,a=l[0].length),this.append(n.slice(i,s<0?n.length:s)),s<0)break;if(this.lineBreak(),a>1)for(let c of this.points)c.node==t&&c.pos>this.text.length&&(c.pos-=a-1);i=s+a}}readNode(t){let n=Cs.get(t),i=n&&n.overrideDOMText;if(i!=null){this.findPointInside(t,i.length);for(let r=i.iter();!r.next().done;)r.lineBreak?this.lineBreak():this.append(r.value)}else t.nodeType==3?this.readTextNode(t):t.nodeName=="BR"?t.nextSibling&&this.lineBreak():t.nodeType==1&&this.readRange(t.firstChild,null)}findPointBefore(t,n){for(let i of this.points)i.node==t&&t.childNodes[i.offset]==n&&(i.pos=this.text.length)}findPointInside(t,n){for(let i of this.points)(t.nodeType==3?i.node==t:t.contains(i.node))&&(i.pos=this.text.length+(oCt(t,i.node,i.offset)?n:0))}}function oCt(e,t,n){for(;;){if(!t||n<_h(t))return!1;if(t==e)return!0;n=Am(t)+1,t=t.parentNode}}function lCt(e,t){let n;for(;!(e==t||!e);e=e.nextSibling){let i=Cs.get(e);if(!(i!=null&&i.isWidget()))return!1;i&&(n||(n=[])).push(i)}if(n)for(let i of n){let r=i.overrideDOMText;if(r!=null&&r.length)return!1}return!0}class FZ{constructor(t,n){this.node=t,this.offset=n,this.pos=-1}}class cCt{constructor(t,n,i,r){this.typeOver=r,this.bounds=null,this.text="",this.domChanged=n>-1;let{impreciseHead:s,impreciseAnchor:a}=t.docView,l=t.state.selection;if(t.state.readOnly&&n>-1)this.newSel=null;else if(n>-1&&(this.bounds=w2e(t.docView.tile,n,i,0))){let c=s||a?[]:dCt(t),u=new aCt(c,t);u.readRange(this.bounds.startDOM,this.bounds.endDOM),this.text=u.text,this.newSel=fCt(c,this.bounds.from)}else{let c=t.observer.selectionRange,u=s&&s.node==c.focusNode&&s.offset==c.focusOffset||!N$(t.contentDOM,c.focusNode)?l.main.head:t.docView.posFromDOM(c.focusNode,c.focusOffset),d=a&&a.node==c.anchorNode&&a.offset==c.anchorOffset||!N$(t.contentDOM,c.anchorNode)?l.main.anchor:t.docView.posFromDOM(c.anchorNode,c.anchorOffset),f=t.viewport;if((Xt.ios||Xt.chrome)&&u!=d&&Math.min(u,d)<=l.main.from&&Math.max(u,d)>=l.main.to&&(f.from>0||f.to-1&&l.ranges.length>1)this.newSel=l.replaceRange(it.range(d,u));else if(t.lineWrapping&&d==u&&!(l.main.empty&&l.main.head==u)&&t.inputState.lastTouchTime>Date.now()-100){let h=t.coordsAtPos(u,-1),m=0;h&&(m=t.inputState.lastTouchY<=h.bottom?-1:1),this.newSel=it.create([it.cursor(u,m)])}else this.newSel=it.single(d,u)}}}function w2e(e,t,n,i){if(e.isComposite()){let r=-1,s=-1,a=-1,l=-1;for(let c=0,u=i,d=i;cn)return w2e(f,t,n,u);if(h>=t&&r==-1&&(r=c,s=u),u>n&&f.dom.parentNode==e.dom){a=c,l=d;break}d=h,u=h+f.breakAfter}return{from:s,to:l<0?i+e.length:l,startDOM:(r?e.children[r-1].dom.nextSibling:null)||e.dom.firstChild,endDOM:a=0?e.children[a].dom:null}}else return e.isText()?{from:i,to:i+e.length,startDOM:e.dom,endDOM:e.dom.nextSibling}:null}function O2e(e,t){let n,{newSel:i}=t,{state:r}=e,s=r.selection.main,a=e.inputState.lastKeyTime>Date.now()-100?e.inputState.lastKeyCode:-1;if(t.bounds){let{from:l,to:c}=t.bounds,u=s.from,d=null;(a===8||Xt.android&&t.text.length=l&&s.to<=c&&(t.typeOver||f!=t.text)&&f.slice(0,s.from-l)==t.text.slice(0,s.from-l)&&f.slice(s.to-l)==t.text.slice(h=t.text.length-(f.length-(s.to-l)))?n={from:s.from,to:s.to,insert:Gi.of(t.text.slice(s.from-l,h).split(sy))}:(m=S2e(f,t.text,u-l,d))&&(Xt.chrome&&a==13&&m.toB==m.from+2&&t.text.slice(m.from,m.toB)==sy+sy&&m.toB--,n={from:l+m.from,to:l+m.toA,insert:Gi.of(t.text.slice(m.from,m.toB).split(sy))})}else i&&(!e.hasFocus&&r.facet(zf)||MN(i,s))&&(i=null);if(!n&&!i)return!1;if((Xt.mac||Xt.android)&&n&&n.from==n.to&&n.from==s.head-1&&/^\. ?$/.test(n.insert.toString())&&e.contentDOM.getAttribute("autocorrect")=="off"?(i&&n.insert.length==2&&(i=it.single(i.main.anchor-1,i.main.head-1)),n={from:n.from,to:n.to,insert:Gi.of([n.insert.toString().replace("."," ")])}):r.doc.lineAt(s.from).toDate.now()-50?n={from:s.from,to:s.to,insert:r.toText(e.inputState.insertingText)}:Xt.chrome&&n&&n.from==n.to&&n.from==s.head&&n.insert.toString()==` - `&&e.lineWrapping&&(i&&(i=it.single(i.main.anchor-1,i.main.head-1)),n={from:s.from,to:s.to,insert:Gi.of([" "])}),n)return iQ(e,n,i,a);if(i&&!MN(i,s)){let l=!1,c="select";return e.inputState.lastSelectionTime>Date.now()-50&&(e.inputState.lastSelectionOrigin=="select"&&(l=!0),c=e.inputState.lastSelectionOrigin,c=="select.pointer"&&(i=x2e(r.facet(ME).map(u=>u(e)),i))),e.dispatch({selection:i,scrollIntoView:l,userEvent:c}),!0}else return!1}function iQ(e,t,n,i=-1){if(Xt.ios&&e.inputState.flushIOSKey(t))return!0;let r=e.state.selection.main;if(Xt.android&&(t.to==r.to&&(t.from==r.from||t.from==r.from-1&&e.state.sliceDoc(t.from,r.from)==" ")&&t.insert.length==1&&t.insert.lines==2&&dv(e.contentDOM,"Enter",13)||(t.from==r.from-1&&t.to==r.to&&t.insert.length==0||i==8&&t.insert.lengthr.head)&&dv(e.contentDOM,"Backspace",8)||t.from==r.from&&t.to==r.to+1&&t.insert.length==0&&dv(e.contentDOM,"Delete",46)))return!0;let s=t.insert.toString();e.inputState.composing>=0&&e.inputState.composing++;let a,l=()=>a||(a=uCt(e,t,n));return e.state.facet(l2e).some(c=>c(e,t.from,t.to,s,l))||e.dispatch(l()),!0}function uCt(e,t,n){let i,r=e.state,s=r.selection.main,a=-1;if(t.from==t.to&&t.froms.to){let c=t.fromf(e)),u,c);t.from==d&&(a=d)}if(a>-1)i={changes:t,selection:it.cursor(t.from+t.insert.length,-1)};else if(t.from>=s.from&&t.to<=s.to&&t.to-t.from>=(s.to-s.from)/3&&(!n||n.main.empty&&n.main.from==t.from+t.insert.length)&&e.inputState.composing<0){let c=s.fromt.to?r.sliceDoc(t.to,s.to):"";i=r.replaceSelection(e.state.toText(c+t.insert.sliceString(0,void 0,e.state.lineBreak)+u))}else{let c=r.changes(t),u=n&&n.main.to<=c.newLength?n.main:void 0;if(r.selection.ranges.length>1&&(e.inputState.composing>=0||e.inputState.compositionPendingChange)&&t.to<=s.to+10&&t.to>=s.to-10){let d=e.state.sliceDoc(t.from,t.to),f,h=n&&v2e(e,n.main.head);if(h){let g=t.insert.length-(t.to-t.from);f={from:h.from,to:h.to-g}}else f=e.state.doc.lineAt(s.head);let m=s.to-t.to;i=r.changeByRange(g=>{if(g.from==s.from&&g.to==s.to)return{changes:c,range:u||g.map(c)};let b=g.to-m,v=b-d.length;if(e.state.sliceDoc(v,b)!=d||b>=f.from&&v<=f.to)return{range:g};let y=r.changes({from:v,to:b,insert:t.insert}),x=g.to-s.to;return{changes:y,range:u?it.range(Math.max(0,u.anchor+x),Math.max(0,u.head+x)):g.map(y)}})}else i={changes:c,selection:u&&r.selection.replaceRange(u)}}let l="input.type";return(e.composing||e.inputState.compositionPendingChange&&e.inputState.compositionEndedAt>Date.now()-50)&&(e.inputState.compositionPendingChange=!1,l+=".compose",e.inputState.compositionFirstChange&&(l+=".start",e.inputState.compositionFirstChange=!1)),r.update(i,{userEvent:l,scrollIntoView:!0})}function S2e(e,t,n,i){let r=Math.min(e.length,t.length),s=0;for(;s0&&l>0&&e.charCodeAt(a-1)==t.charCodeAt(l-1);)a--,l--;if(i=="end"){let c=Math.max(0,s-Math.min(a,l));n-=a+c-s}if(a=a?s-n:0;s-=c,l=s+(l-a),a=s}else if(l=l?s-n:0;s-=c,a=s+(a-l),l=s}return{from:s,toA:a,toB:l}}function dCt(e){let t=[];if(e.root.activeElement!=e.contentDOM)return t;let{anchorNode:n,anchorOffset:i,focusNode:r,focusOffset:s}=e.observer.selectionRange;return n&&(t.push(new FZ(n,i)),(r!=n||s!=i)&&t.push(new FZ(r,s))),t}function fCt(e,t){if(e.length==0)return null;let n=e[0].pos,i=e.length==2?e[1].pos:n;return n>-1&&i>-1?it.single(n+t,i+t):null}function MN(e,t){return t.head==e.main.head&&t.anchor==e.main.anchor}class hCt{setSelectionOrigin(t){this.lastSelectionOrigin=t,this.lastSelectionTime=Date.now()}constructor(t){this.view=t,this.lastKeyCode=0,this.lastKeyTime=0,this.touchActive=!1,this.lastTouchTime=0,this.lastTouchX=0,this.lastTouchY=0,this.lastFocusTime=0,this.lastScrollTop=0,this.lastScrollLeft=0,this.lastWheelEvent=0,this.pendingIOSKey=void 0,this.lastIOSMomentumScroll=0,this.tabFocusMode=-1,this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastContextMenu=0,this.scrollHandlers=[],this.handlers=Object.create(null),this.composing=-1,this.compositionFirstChange=null,this.compositionEndedAt=0,this.compositionPendingKey=!1,this.compositionPendingChange=!1,this.insertingText="",this.insertingTextAt=0,this.mouseSelection=null,this.draggedContent=null,this.handleEvent=this.handleEvent.bind(this),this.notifiedFocused=t.hasFocus,Xt.safari&&t.contentDOM.addEventListener("input",()=>null),Xt.gecko&&_Ct(t.contentDOM.ownerDocument)}handleEvent(t){!OCt(this.view,t)||this.ignoreDuringComposition(t)||t.type=="keydown"&&this.keydown(t)||(this.view.updateState!=0?Promise.resolve().then(()=>this.runHandlers(t.type,t)):this.runHandlers(t.type,t))}runHandlers(t,n){let i=this.handlers[t];if(i){for(let r of i.observers)r(this.view,n);for(let r of i.handlers){if(n.defaultPrevented)break;if(r(this.view,n)){n.preventDefault();break}}}}ensureHandlers(t){let n=mCt(t),i=this.handlers,r=this.view.contentDOM;for(let s in n)if(s!="scroll"){let a=!n[s].handlers.length,l=i[s];l&&a!=!l.handlers.length&&(r.removeEventListener(s,this.handleEvent),l=null),l||r.addEventListener(s,this.handleEvent,{passive:a})}for(let s in i)s!="scroll"&&!n[s]&&r.removeEventListener(s,this.handleEvent);this.handlers=n}keydown(t){if(this.lastKeyCode=t.keyCode,this.lastKeyTime=Date.now(),t.keyCode==9&&this.tabFocusMode>-1&&(!this.tabFocusMode||Date.now()<=this.tabFocusMode))return!0;if(this.tabFocusMode>0&&t.keyCode!=27&&E2e.indexOf(t.keyCode)<0&&(this.tabFocusMode=-1),Xt.android&&Xt.chrome&&!t.synthetic&&(t.keyCode==13||t.keyCode==8))return this.view.observer.delayAndroidKey(t.key,t.keyCode),!0;if(Xt.ios&&!t.synthetic&&!t.altKey&&!t.metaKey&&(k2e.some(n=>n.keyCode==t.keyCode)&&!t.ctrlKey||gCt.indexOf(t.key)>-1&&t.ctrlKey)){let n={ctrlKey:t.ctrlKey,altKey:t.altKey,metaKey:t.metaKey,shiftKey:t.shiftKey};return n.shiftKey&&Xt.ios&&!/^(off|none)$/.test(this.view.contentDOM.autocapitalize)&&pCt(this.view.win)&&(n.shiftKey=!1),this.pendingIOSKey={key:t.key,keyCode:t.keyCode,mods:n},setTimeout(()=>this.flushIOSKey(),250),!0}return t.keyCode!=229&&this.view.observer.forceFlush(),!1}flushIOSKey(t){let n=this.pendingIOSKey;return!n||n.key=="Enter"&&t&&t.from0?!0:Xt.safari&&!Xt.ios&&this.compositionPendingKey&&Date.now()-this.compositionEndedAt<100?(this.compositionPendingKey=!1,!0):!1}startMouseSelection(t){this.mouseSelection&&this.mouseSelection.destroy(),this.mouseSelection=t}update(t){this.view.observer.update(t),this.mouseSelection&&this.mouseSelection.update(t),this.draggedContent&&t.docChanged&&(this.draggedContent=this.draggedContent.map(t.changes)),t.transactions.length&&(this.lastKeyCode=this.lastSelectionTime=0)}destroy(){this.mouseSelection&&this.mouseSelection.destroy()}}function pCt(e){return e.visualViewport?e.visualViewport.height*e.visualViewport.scale/e.document.documentElement.clientHeight<.85:!1}function BZ(e,t){return(n,i)=>{try{return t.call(e,i,n)}catch(r){hl(n.state,r)}}}function mCt(e){let t=Object.create(null);function n(i){return t[i]||(t[i]={observers:[],handlers:[]})}for(let i of e){let r=i.spec,s=r&&r.plugin.domEventHandlers,a=r&&r.plugin.domEventObservers;if(s)for(let l in s){let c=s[l];c&&n(l).handlers.push(BZ(i.value,c))}if(a)for(let l in a){let c=a[l];c&&n(l).observers.push(BZ(i.value,c))}}for(let i in Qu)n(i).handlers.push(Qu[i]);for(let i in Vo)n(i).observers.push(Vo[i]);return t}const k2e=[{key:"Backspace",keyCode:8,inputType:"deleteContentBackward"},{key:"Enter",keyCode:13,inputType:"insertParagraph"},{key:"Enter",keyCode:13,inputType:"insertLineBreak"},{key:"Delete",keyCode:46,inputType:"deleteContentForward"}],gCt="dthko",E2e=[16,17,18,20,91,92,224,225],XT=6;function YT(e){return Math.max(0,e)*.7+8}function bCt(e,t){return Math.max(Math.abs(e.clientX-t.clientX),Math.abs(e.clientY-t.clientY))}class yCt{constructor(t,n,i,r){this.view=t,this.startEvent=n,this.style=i,this.mustSelect=r,this.scrollSpeed={x:0,y:0},this.scrolling=-1,this.lastEvent=n,this.scrollParents=GTe(t.contentDOM),this.atoms=t.state.facet(ME).map(a=>a(t));let s=t.contentDOM.ownerDocument;s.addEventListener("mousemove",this.move=this.move.bind(this)),s.addEventListener("mouseup",this.up=this.up.bind(this)),this.extend=n.shiftKey,this.multiple=t.state.facet(Ti.allowMultipleSelections)&&vCt(t,n),this.dragging=wCt(t,n)&&A2e(n)==1?null:!1}start(t){this.dragging===!1&&this.select(t)}move(t){if(t.buttons==0)return this.destroy();if(this.dragging||this.dragging==null&&bCt(this.startEvent,t)<10)return;this.select(this.lastEvent=t);let n=0,i=0,r=0,s=0,a=this.view.win.innerWidth,l=this.view.win.innerHeight;this.scrollParents.x&&({left:r,right:a}=this.scrollParents.x.getBoundingClientRect()),this.scrollParents.y&&({top:s,bottom:l}=this.scrollParents.y.getBoundingClientRect());let c=nQ(this.view);t.clientX-c.left<=r+XT?n=-YT(r-t.clientX):t.clientX+c.right>=a-XT&&(n=YT(t.clientX-a)),t.clientY-c.top<=s+XT?i=-YT(s-t.clientY):t.clientY+c.bottom>=l-XT&&(i=YT(t.clientY-l)),this.setScrollSpeed(n,i)}up(t){this.dragging==null&&this.select(this.lastEvent),this.dragging||t.preventDefault(),this.destroy()}destroy(){this.setScrollSpeed(0,0);let t=this.view.contentDOM.ownerDocument;t.removeEventListener("mousemove",this.move),t.removeEventListener("mouseup",this.up),this.view.inputState.mouseSelection=this.view.inputState.draggedContent=null}setScrollSpeed(t,n){this.scrollSpeed={x:t,y:n},t||n?this.scrolling<0&&(this.scrolling=setInterval(()=>this.scroll(),50)):this.scrolling>-1&&(clearInterval(this.scrolling),this.scrolling=-1)}scroll(){let{x:t,y:n}=this.scrollSpeed;t&&this.scrollParents.x&&(this.scrollParents.x.scrollLeft+=t,t=0),n&&this.scrollParents.y&&(this.scrollParents.y.scrollTop+=n,n=0),(t||n)&&this.view.win.scrollBy(t,n),this.dragging===!1&&this.select(this.lastEvent)}select(t){let{view:n}=this,i=x2e(this.atoms,this.style.get(t,this.extend,this.multiple));(this.mustSelect||!i.eq(n.state.selection,this.dragging===!1))&&this.view.dispatch({selection:i,userEvent:"select.pointer"}),this.mustSelect=!1}update(t){t.transactions.some(n=>n.isUserEvent("input.type"))?this.destroy():this.style.update(t)&&setTimeout(()=>this.select(this.lastEvent),20)}}function vCt(e,t){let n=e.state.facet(r2e);return n.length?n[0](t):Xt.mac?t.metaKey:t.ctrlKey}function xCt(e,t){let n=e.state.facet(s2e);return n.length?n[0](t):Xt.mac?!t.altKey:!t.ctrlKey}function wCt(e,t){let{main:n}=e.state.selection;if(n.empty)return!1;let i=nk(e.root);if(!i||i.rangeCount==0)return!0;let r=i.getRangeAt(0).getClientRects();for(let s=0;s=t.clientX&&a.top<=t.clientY&&a.bottom>=t.clientY)return!0}return!1}function OCt(e,t){if(!t.bubbles)return!0;if(t.defaultPrevented)return!1;for(let n=t.target,i;n!=e.contentDOM;n=n.parentNode)if(!n||n.nodeType==11||(i=Cs.get(n))&&i.isWidget()&&!i.isHidden&&i.widget.ignoreEvent(t))return!1;return!0}const Qu=Object.create(null),Vo=Object.create(null),C2e=Xt.ie&&Xt.ie_version<15||Xt.ios&&Xt.webkit_version<604;function SCt(e){let t=e.dom.parentNode;if(!t)return;let n=t.appendChild(document.createElement("textarea"));n.style.cssText="position: fixed; left: -10000px; top: 10px",n.focus(),setTimeout(()=>{e.focus(),n.remove(),T2e(e,n.value)},50)}function kI(e,t,n){for(let i of e.facet(t))n=i(n,e);return n}function T2e(e,t){t=kI(e.state,ZU,t);let{state:n}=e,i,r=1,s=n.toText(t),a=s.lines==n.selection.ranges.length;if($$!=null&&n.selection.ranges.every(c=>c.empty)&&$$==s.toString()){let c=-1;i=n.changeByRange(u=>{let d=n.doc.lineAt(u.from);if(d.from==c)return{range:u};c=d.from;let f=n.toText((a?s.line(r++).text:t)+n.lineBreak);return{changes:{from:d.from,insert:f},range:it.cursor(u.from+f.length)}})}else a?i=n.changeByRange(c=>{let u=s.line(r++);return{changes:{from:c.from,to:c.to,insert:u.text},range:it.cursor(c.from+u.length)}}):i=n.replaceSelection(s);e.dispatch(i,{userEvent:"input.paste",scrollIntoView:!0})}Vo.scroll=e=>{let t=e.inputState;t.lastScrollTop=e.scrollDOM.scrollTop,t.lastScrollLeft=e.scrollDOM.scrollLeft,Xt.ios&&!t.touchActive&&(t.lastIOSMomentumScroll=Date.now())};Vo.wheel=Vo.mousewheel=e=>{e.inputState.lastWheelEvent=Date.now()};Qu.keydown=(e,t)=>(e.inputState.setSelectionOrigin("select"),t.keyCode==27&&e.inputState.tabFocusMode!=0&&(e.inputState.tabFocusMode=Date.now()+2e3),!1);Vo.touchstart=(e,t)=>{let n=e.inputState,i=t.targetTouches[0];n.touchActive=!0,n.lastTouchTime=Date.now(),i&&(n.lastTouchX=i.clientX,n.lastTouchY=i.clientY),n.setSelectionOrigin("select.pointer")};Vo.touchmove=e=>{e.inputState.setSelectionOrigin("select.pointer")};Vo.touchend=(e,t)=>{e.inputState.touchActive=!1};Qu.mousedown=(e,t)=>{if(e.observer.flush(),e.inputState.lastTouchTime>Date.now()-2e3)return!1;let n=null;for(let i of e.state.facet(a2e))if(n=i(e,t),n)break;if(!n&&t.button==0&&(n=ECt(e,t)),n){let i=!e.hasFocus;e.inputState.startMouseSelection(new yCt(e,t,n,i)),i&&e.observer.ignore(()=>{KTe(e.contentDOM);let s=e.root.activeElement;s&&!s.contains(e.contentDOM)&&s.blur()});let r=e.inputState.mouseSelection;if(r)return r.start(t),r.dragging===!1}else e.inputState.setSelectionOrigin("select.pointer");return!1};function UZ(e,t,n,i){if(i==1)return it.cursor(t,n);if(i==2)return eCt(e.state,t,n);{let r=e.docView.lineAt(t,n),s=e.state.doc.lineAt(r?r.posAtEnd:t),a=r?r.posAtStart:s.from,l=r?r.posAtEnd:s.to;return lDate.now()-400&&Math.abs(t.clientX-e.clientX)<2&&Math.abs(t.clientY-e.clientY)<2?(zZ+1)%3:1}function ECt(e,t){let n=e.posAndSideAtCoords({x:t.clientX,y:t.clientY},!1),i=A2e(t),r=e.state.selection;return{update(s){s.docChanged&&(n.pos=s.changes.mapPos(n.pos),r=r.map(s.changes))},get(s,a,l){let c=e.posAndSideAtCoords({x:s.clientX,y:s.clientY},!1),u,d=UZ(e,c.pos,c.assoc,i);if(n.pos!=c.pos&&!a){let f=UZ(e,n.pos,n.assoc,i),h=Math.min(f.from,d.from),m=Math.max(f.to,d.to);d=h1&&(u=CCt(r,c.pos))?u:l?r.addRange(d):it.create([d])}}}function CCt(e,t){for(let n=0;n=t)return it.create(e.ranges.slice(0,n).concat(e.ranges.slice(n+1)),e.mainIndex==n?0:e.mainIndex-(e.mainIndex>n?1:0))}return null}Qu.dragstart=(e,t)=>{let{selection:{main:n}}=e.state;if(t.target.draggable){let r=e.docView.tile.nearest(t.target);if(r&&r.isWidget()){let s=r.posAtStart,a=s+r.length;(s>=n.to||a<=n.from)&&(n=it.undirectionalRange(s,a))}}let{inputState:i}=e;return i.mouseSelection&&(i.mouseSelection.dragging=!0),i.draggedContent=n,t.dataTransfer&&(t.dataTransfer.setData("Text",kI(e.state,JU,e.state.sliceDoc(n.from,n.to))),t.dataTransfer.effectAllowed="copyMove"),!1};Qu.dragend=e=>(e.inputState.draggedContent=null,!1);function HZ(e,t,n,i){if(n=kI(e.state,ZU,n),!n)return;let r=e.posAtCoords({x:t.clientX,y:t.clientY},!1),{draggedContent:s}=e.inputState,a=i&&s&&xCt(e,t)?{from:s.from,to:s.to}:null,l={from:r,insert:n},c=e.state.changes(a?[a,l]:l);e.focus(),e.dispatch({changes:c,selection:{anchor:c.mapPos(r,-1),head:c.mapPos(r,1)},userEvent:a?"move.drop":"input.drop"}),e.inputState.draggedContent=null}Qu.drop=(e,t)=>{if(!t.dataTransfer)return!1;if(e.state.readOnly)return!0;let n=t.dataTransfer.files;if(n&&n.length){let i=Array(n.length),r=0,s=()=>{++r==n.length&&HZ(e,t,i.filter(a=>a!=null).join(e.state.lineBreak),!1)};for(let a=0;a{/[\x00-\x08\x0e-\x1f]{2}/.test(l.result)||(i[a]=l.result),s()},l.readAsText(n[a])}return!0}else{let i=t.dataTransfer.getData("Text");if(i)return HZ(e,t,i,!0),!0}return!1};Qu.paste=(e,t)=>{if(e.state.readOnly)return!0;e.observer.flush();let n=C2e?null:t.clipboardData;return n?(T2e(e,n.getData("text/plain")||n.getData("text/uri-list")),!0):(SCt(e),!1)};function TCt(e,t){let n=e.dom.parentNode;if(!n)return;let i=n.appendChild(document.createElement("textarea"));i.style.cssText="position: fixed; left: -10000px; top: 10px",i.value=t,i.focus(),i.selectionEnd=t.length,i.selectionStart=0,setTimeout(()=>{i.remove(),e.focus()},50)}function ACt(e){let t=[],n=[],i=!1;for(let r of e.selection.ranges)r.empty||(t.push(e.sliceDoc(r.from,r.to)),n.push(r));if(!t.length){let r=-1;for(let{from:s}of e.selection.ranges){let a=e.doc.lineAt(s);a.number>r&&(t.push(a.text),n.push({from:a.from,to:Math.min(e.doc.length,a.to+1)})),r=a.number}i=!0}return{text:kI(e,JU,t.join(e.lineBreak)),ranges:n,linewise:i}}let $$=null;Qu.copy=Qu.cut=(e,t)=>{if(!FO(e.contentDOM,e.observer.selectionRange))return!1;let{text:n,ranges:i,linewise:r}=ACt(e.state);if(!n&&!r)return!1;$$=r?n:null,t.type=="cut"&&!e.state.readOnly&&e.dispatch({changes:i,scrollIntoView:!0,userEvent:"delete.cut"});let s=C2e?null:t.clipboardData;return s?(s.clearData(),s.setData("text/plain",n),!0):(TCt(e,n),!1)};const _2e=Jd.define();function N2e(e,t){let n=[];for(let i of e.facet(c2e)){let r=i(e,t);r&&n.push(r)}return n.length?e.update({effects:n,annotations:_2e.of(!0)}):null}function j2e(e){setTimeout(()=>{let t=e.hasFocus;if(t!=e.inputState.notifiedFocused){let n=N2e(e.state,t);n?e.dispatch(n):e.update([])}},10)}Vo.focus=e=>{e.inputState.lastFocusTime=Date.now(),!e.scrollDOM.scrollTop&&(e.inputState.lastScrollTop||e.inputState.lastScrollLeft)&&(e.scrollDOM.scrollTop=e.inputState.lastScrollTop,e.scrollDOM.scrollLeft=e.inputState.lastScrollLeft),j2e(e)};Vo.blur=e=>{e.observer.clearSelectionRange(),j2e(e)};Vo.compositionstart=Vo.compositionupdate=e=>{e.observer.editContext||(e.inputState.compositionFirstChange==null&&(e.inputState.compositionFirstChange=!0),e.inputState.composing<0&&(e.inputState.composing=0))};Vo.compositionend=e=>{e.observer.editContext||(e.inputState.composing=-1,e.inputState.compositionEndedAt=Date.now(),e.inputState.compositionPendingKey=!0,e.inputState.compositionPendingChange=e.observer.pendingRecords().length>0,e.inputState.compositionFirstChange=null,Xt.chrome&&Xt.android?e.observer.flushSoon():e.inputState.compositionPendingChange?Promise.resolve().then(()=>e.observer.flush()):setTimeout(()=>{e.inputState.composing<0&&e.docView.hasComposition&&e.update([])},50))};Vo.contextmenu=e=>{e.inputState.lastContextMenu=Date.now()};Qu.beforeinput=(e,t)=>{var n,i;if((t.inputType=="insertText"||t.inputType=="insertCompositionText")&&(e.inputState.insertingText=t.data,e.inputState.insertingTextAt=Date.now()),t.inputType=="insertReplacementText"&&e.observer.editContext){let s=(n=t.dataTransfer)===null||n===void 0?void 0:n.getData("text/plain"),a=t.getTargetRanges();if(s&&a.length){let l=a[0],c=e.posAtDOM(l.startContainer,l.startOffset),u=e.posAtDOM(l.endContainer,l.endOffset);return iQ(e,{from:c,to:u,insert:e.state.toText(s)},null),!0}}let r;if(Xt.chrome&&Xt.android&&(r=k2e.find(s=>s.inputType==t.inputType))&&(e.observer.delayAndroidKey(r.key,r.keyCode),r.key=="Backspace"||r.key=="Delete")){let s=((i=window.visualViewport)===null||i===void 0?void 0:i.height)||0;setTimeout(()=>{var a;(((a=window.visualViewport)===null||a===void 0?void 0:a.height)||0)>s+10&&e.hasFocus&&(e.contentDOM.blur(),e.focus())},100)}return Xt.ios&&t.inputType=="deleteContentForward"&&e.observer.flushSoon(),Xt.safari&&t.inputType=="insertText"&&e.inputState.composing>=0&&setTimeout(()=>Vo.compositionend(e,t),20),!1};const qZ=new Set;function _Ct(e){qZ.has(e)||(qZ.add(e),e.addEventListener("copy",()=>{}),e.addEventListener("cut",()=>{}))}const WZ=["pre-wrap","normal","pre-line","break-spaces"];let ax=!1;function GZ(){ax=!1}class NCt{constructor(t){this.lineWrapping=t,this.doc=Gi.empty,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.textHeight=14,this.lineLength=30}heightForGap(t,n){let i=this.doc.lineAt(n).number-this.doc.lineAt(t).number+1;return this.lineWrapping&&(i+=Math.max(0,Math.ceil((n-t-i*this.lineLength*.5)/this.lineLength))),this.lineHeight*i}heightForLine(t){return this.lineWrapping?(1+Math.max(0,Math.ceil((t-this.lineLength)/Math.max(1,this.lineLength-5))))*this.lineHeight:this.lineHeight}setDoc(t){return this.doc=t,this}mustRefreshForWrapping(t){return WZ.indexOf(t)>-1!=this.lineWrapping}mustRefreshForHeights(t){let n=!1;for(let i=0;i-1,c=Math.abs(n-this.lineHeight)>.3||this.lineWrapping!=l;if(this.lineWrapping=l,this.lineHeight=n,this.charWidth=i,this.textHeight=r,this.lineLength=s,c){this.heightSamples={};for(let u=0;u0}set outdated(t){this.flags=(t?2:0)|this.flags&-3}setHeight(t){this.height!=t&&(Math.abs(this.height-t)>NA&&(ax=!0),this.height=t)}replace(t,n,i){return zo.of(i)}decomposeLeft(t,n){n.push(this)}decomposeRight(t,n){n.push(this)}applyChanges(t,n,i,r){let s=this,a=i.doc;for(let l=r.length-1;l>=0;l--){let{fromA:c,toA:u,fromB:d,toB:f}=r[l],h=s.lineAt(c,Ir.ByPosNoHeight,i.setDoc(n),0,0),m=h.to>=u?h:s.lineAt(u,Ir.ByPosNoHeight,i,0,0);for(f+=m.to-u,u=m.to;l>0&&h.from<=r[l-1].toA;)c=r[l-1].fromA,d=r[l-1].fromB,l--,cs*2){let l=t[n-1];l.break?t.splice(--n,1,l.left,null,l.right):t.splice(--n,1,l.left,l.right),i+=1+l.break,r-=l.size}else if(s>r*2){let l=t[i];l.break?t.splice(i,1,l.left,null,l.right):t.splice(i,1,l.left,l.right),i+=2+l.break,s-=l.size}else break;else if(r=s&&a(this.lineAt(0,Ir.ByPos,i,r,s))}setMeasuredHeight(t){let n=t.heights[t.index++];n<0?(this.spaceAbove=-n,n=t.heights[t.index++]):this.spaceAbove=0,this.setHeight(n)}updateHeight(t,n=0,i=!1,r){return r&&r.from<=n&&r.more&&this.setMeasuredHeight(r),this.outdated=!1,this}toString(){return`block(${this.length})`}}class Hl extends R2e{constructor(t,n,i){super(t,n,null),this.collapsed=0,this.widgetHeight=0,this.breaks=0,this.spaceAbove=i}mainBlock(t,n){return new Tu(n,this.length,t+this.spaceAbove,this.height-this.spaceAbove,this.breaks)}replace(t,n,i){let r=i[0];return i.length==1&&(r instanceof Hl||r instanceof Ka&&r.flags&4)&&Math.abs(this.length-r.length)<10?(r instanceof Ka?r=new Hl(r.length,this.height,this.spaceAbove):r.height=this.height,this.outdated||(r.outdated=!1),r):zo.of(i)}updateHeight(t,n=0,i=!1,r){return r&&r.from<=n&&r.more?this.setMeasuredHeight(r):(i||this.outdated)&&(this.spaceAbove=0,this.setHeight(Math.max(this.widgetHeight,t.heightForLine(this.length-this.collapsed))+this.breaks*t.lineHeight)),this.outdated=!1,this}toString(){return`line(${this.length}${this.collapsed?-this.collapsed:""}${this.widgetHeight?":"+this.widgetHeight:""})`}}class Ka extends zo{constructor(t){super(t,0)}heightMetrics(t,n){let i=t.doc.lineAt(n).number,r=t.doc.lineAt(n+this.length).number,s=r-i+1,a,l=0;if(t.lineWrapping){let c=Math.min(this.height,t.lineHeight*s);a=c/s,this.length>s+1&&(l=(this.height-c)/(this.length-s-1))}else a=this.height/s;return{firstLine:i,lastLine:r,perLine:a,perChar:l}}blockAt(t,n,i,r){let{firstLine:s,lastLine:a,perLine:l,perChar:c}=this.heightMetrics(n,r);if(n.lineWrapping){let u=r+(t0){let s=i[i.length-1];s instanceof Ka?i[i.length-1]=new Ka(s.length+r):i.push(null,new Ka(r-1))}if(t>0){let s=i[0];s instanceof Ka?i[0]=new Ka(t+s.length):i.unshift(new Ka(t-1),null)}return zo.of(i)}decomposeLeft(t,n){n.push(new Ka(t-1),null)}decomposeRight(t,n){n.push(null,new Ka(this.length-t-1))}updateHeight(t,n=0,i=!1,r){let s=n+this.length;if(r&&r.from<=n+this.length&&r.more){let a=[],l=Math.max(n,r.from),c=-1;for(r.from>n&&a.push(new Ka(r.from-n-1).updateHeight(t,n));l<=s&&r.more;){let d=t.doc.lineAt(l).length;a.length&&a.push(null);let f=r.heights[r.index++],h=0;f<0&&(h=-f,f=r.heights[r.index++]),c==-1?c=f:Math.abs(f-c)>=NA&&(c=-2);let m=new Hl(d,f,h);m.outdated=!1,a.push(m),l+=d+1}l<=s&&a.push(null,new Ka(s-l).updateHeight(t,l));let u=zo.of(a);return(c<0||Math.abs(u.height-this.height)>=NA||Math.abs(c-this.heightMetrics(t,n).perLine)>=NA)&&(ax=!0),LN(this,u)}else(i||this.outdated)&&(this.setHeight(t.heightForGap(n,n+this.length)),this.outdated=!1);return this}toString(){return`gap(${this.length})`}}class ICt extends zo{constructor(t,n,i){super(t.length+n+i.length,t.height+i.height,n|(t.outdated||i.outdated?2:0)),this.left=t,this.right=i,this.size=t.size+i.size}get break(){return this.flags&1}blockAt(t,n,i,r){let s=i+this.left.height;return tl))return u;let d=n==Ir.ByPosNoHeight?Ir.ByPosNoHeight:Ir.ByPos;return c?u.join(this.right.lineAt(l,d,i,a,l)):this.left.lineAt(l,d,i,r,s).join(u)}forEachLine(t,n,i,r,s,a){let l=r+this.left.height,c=s+this.left.length+this.break;if(this.break)t=c&&this.right.forEachLine(t,n,i,l,c,a);else{let u=this.lineAt(c,Ir.ByPos,i,r,s);t=t&&u.from<=n&&a(u),n>u.to&&this.right.forEachLine(u.to+1,n,i,l,c,a)}}replace(t,n,i){let r=this.left.length+this.break;if(nthis.left.length)return this.balanced(this.left,this.right.replace(t-r,n-r,i));let s=[];t>0&&this.decomposeLeft(t,s);let a=s.length;for(let l of i)s.push(l);if(t>0&&KZ(s,a-1),n=i&&n.push(null)),t>i&&this.right.decomposeLeft(t-i,n)}decomposeRight(t,n){let i=this.left.length,r=i+this.break;if(t>=r)return this.right.decomposeRight(t-r,n);t2*n.size||n.size>2*t.size?zo.of(this.break?[t,null,n]:[t,n]):(this.left=LN(this.left,t),this.right=LN(this.right,n),this.setHeight(t.height+n.height),this.outdated=t.outdated||n.outdated,this.size=t.size+n.size,this.length=t.length+this.break+n.length,this)}updateHeight(t,n=0,i=!1,r){let{left:s,right:a}=this,l=n+s.length+this.break,c=null;return r&&r.from<=n+s.length&&r.more?c=s=s.updateHeight(t,n,i,r):s.updateHeight(t,n,i),r&&r.from<=l+a.length&&r.more?c=a=a.updateHeight(t,l,i,r):a.updateHeight(t,l,i),c?this.balanced(s,a):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}}function KZ(e,t){let n,i;e[t]==null&&(n=e[t-1])instanceof Ka&&(i=e[t+1])instanceof Ka&&e.splice(t-1,3,new Ka(n.length+1+i.length))}const PCt=5;class rQ{constructor(t,n){this.pos=t,this.oracle=n,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=t}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(t,n){if(this.lineStart>-1){let i=Math.min(n,this.lineEnd),r=this.nodes[this.nodes.length-1];r instanceof Hl?r.length+=i-this.pos:(i>this.pos||!this.isCovered)&&this.nodes.push(new Hl(i-this.pos,-1,0)),this.writtenTo=i,n>i&&(this.nodes.push(null),this.writtenTo++,this.lineStart=-1)}this.pos=n}point(t,n,i){if(t=PCt)&&this.addLineDeco(r,s,a)}else n>t&&this.span(t,n);this.lineEnd>-1&&this.lineEnd-1)return;let{from:t,to:n}=this.oracle.doc.lineAt(this.pos);this.lineStart=t,this.lineEnd=n,this.writtenTot&&this.nodes.push(new Hl(this.pos-t,-1,0)),this.writtenTo=this.pos}blankContent(t,n){let i=new Ka(n-t);return this.oracle.doc.lineAt(t).to==n&&(i.flags|=4),i}ensureLine(){this.enterLine();let t=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(t instanceof Hl)return t;let n=new Hl(0,-1,0);return this.nodes.push(n),n}addBlock(t){this.enterLine();let n=t.deco;n&&n.startSide>0&&!this.isCovered&&this.ensureLine(),this.nodes.push(t),this.writtenTo=this.pos=this.pos+t.length,n&&n.endSide>0&&(this.covering=t)}addLineDeco(t,n,i){let r=this.ensureLine();r.length+=i,r.collapsed+=i,r.widgetHeight=Math.max(r.widgetHeight,t),r.breaks+=n,this.writtenTo=this.pos=this.pos+i}finish(t){let n=this.nodes.length==0?null:this.nodes[this.nodes.length-1];this.lineStart>-1&&!(n instanceof Hl)&&!this.isCovered?this.nodes.push(new Hl(0,-1,0)):(this.writtenTod.clientHeight||d.scrollWidth>d.clientWidth)&&f.overflow!="visible"){let h=d.getBoundingClientRect();s=Math.max(s,h.left),a=Math.min(a,h.right),l=Math.max(l,h.top),c=Math.min(u==e.parentNode?r.innerHeight:c,h.bottom)}u=f.position=="absolute"||f.position=="fixed"?d.offsetParent:d.parentNode}else if(u.nodeType==11)u=u.host;else break;return{left:s-n.left,right:Math.max(s,a)-n.left,top:l-(n.top+t),bottom:Math.max(l,c)-(n.top+t)}}function $Ct(e){let t=e.getBoundingClientRect(),n=e.ownerDocument.defaultView||window;return t.left0&&t.top0}function FCt(e,t){let n=e.getBoundingClientRect();return{left:0,right:n.right-n.left,top:t,bottom:n.bottom-(n.top+t)}}class f5{constructor(t,n,i,r){this.from=t,this.to=n,this.size=i,this.displaySize=r}static same(t,n){if(t.length!=n.length)return!1;for(let i=0;itypeof r!="function"&&r.class=="cm-lineWrapping");this.heightOracle=new NCt(i),this.stateDeco=ZZ(n),this.heightMap=zo.empty().applyChanges(this.stateDeco,Gi.empty,this.heightOracle.setDoc(n.doc),[new Gc(0,0,0,n.doc.length)]);for(let r=0;r<2&&(this.viewport=this.getViewport(0,null),!!this.updateForViewport());r++);this.updateViewportLines(),this.lineGaps=this.ensureLineGaps([]),this.lineGapDeco=gn.set(this.lineGaps.map(r=>r.draw(this,!1))),this.scrollParent=t.scrollDOM,this.computeVisibleRanges()}updateForViewport(){let t=[this.viewport],{main:n}=this.state.selection;for(let i=0;i<=1;i++){let r=i?n.head:n.anchor;if(!t.some(({from:s,to:a})=>r>=s&&r<=a)){let{from:s,to:a}=this.lineBlockAt(r);t.push(new ZT(s,a))}}return this.viewports=t.sort((i,r)=>i.from-r.from),this.updateScaler()}updateScaler(){let t=this.scaler;return this.scaler=this.heightMap.height<=7e6?YZ:new sQ(this.heightOracle,this.heightMap,this.viewports),t.eq(this.scaler)?0:2}updateViewportLines(){this.viewportLines=[],this.heightMap.forEachLine(this.viewport.from,this.viewport.to,this.heightOracle.setDoc(this.state.doc),0,0,t=>{this.viewportLines.push(Vw(t,this.scaler))})}update(t,n=null){this.state=t.state;let i=this.stateDeco;this.stateDeco=ZZ(this.state);let r=t.changedRanges,s=Gc.extendWithRanges(r,DCt(i,this.stateDeco,t?t.changes:ma.empty(this.state.doc.length))),a=this.heightMap.height,l=this.scrolledToBottom?null:this.scrollAnchorAt(this.scrollOffset);GZ(),this.heightMap=this.heightMap.applyChanges(this.stateDeco,t.startState.doc,this.heightOracle.setDoc(this.state.doc),s),(this.heightMap.height!=a||ax)&&(t.flags|=2),l?(this.scrollAnchorPos=t.changes.mapPos(l.from,-1),this.scrollAnchorHeight=l.top):(this.scrollAnchorPos=-1,this.scrollAnchorHeight=a);let c=s.length?this.mapViewport(this.viewport,t.changes):this.viewport;(n&&(n.range.headc.to)||!this.viewportIsAppropriate(c))&&(c=this.getViewport(0,n));let u=c.from!=this.viewport.from||c.to!=this.viewport.to;this.viewport=c,t.flags|=this.updateForViewport(),(u||!t.changes.empty||t.flags&2)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(this.mapLineGaps(this.lineGaps,t.changes))),t.flags|=this.computeVisibleRanges(t.changes),n&&(this.scrollTarget=n),!this.mustEnforceCursorAssoc&&(t.selectionSet||t.focusChanged)&&t.view.lineWrapping&&t.state.selection.main.empty&&t.state.selection.main.assoc&&!t.state.facet(d2e)&&(this.mustEnforceCursorAssoc=!0)}measure(){let{view:t}=this,n=t.contentDOM,i=window.getComputedStyle(n),r=this.heightOracle,s=i.whiteSpace;this.defaultTextDirection=i.direction=="rtl"?Cr.RTL:Cr.LTR;let a=this.heightOracle.mustRefreshForWrapping(s)||this.mustMeasureContent==="refresh",l=n.getBoundingClientRect(),c=a||this.mustMeasureContent||this.contentDOMHeight!=l.height;this.contentDOMHeight=l.height,this.mustMeasureContent=!1;let u=0,d=0;if(l.width&&l.height){let{scaleX:k,scaleY:S}=WTe(n,l);(k>.005&&Math.abs(this.scaleX-k)>.005||S>.005&&Math.abs(this.scaleY-S)>.005)&&(this.scaleX=k,this.scaleY=S,u|=16,a=c=!0)}let f=(parseInt(i.paddingTop)||0)*this.scaleY,h=(parseInt(i.paddingBottom)||0)*this.scaleY;(this.paddingTop!=f||this.paddingBottom!=h)&&(this.paddingTop=f,this.paddingBottom=h,u|=18),this.editorWidth!=t.scrollDOM.clientWidth&&(r.lineWrapping&&(c=!0),this.editorWidth=t.scrollDOM.clientWidth,u|=16);let m=GTe(this.view.contentDOM,!1).y;m!=this.scrollParent&&(this.scrollParent=m,this.scrollAnchorHeight=-1,this.scrollOffset=0);let g=this.getScrollOffset();this.scrollOffset!=g&&(this.scrollAnchorHeight=-1,this.scrollOffset=g),this.scrolledToBottom=XTe(this.scrollParent||t.win);let b=(this.printing?FCt:LCt)(n,this.paddingTop),v=b.top-this.pixelViewport.top,y=b.bottom-this.pixelViewport.bottom;this.pixelViewport=b;let x=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left;if(x!=this.inView&&(this.inView=x,x&&(c=!0)),!this.inView&&!this.scrollTarget&&!$Ct(t.dom))return 0;let O=l.width;if((this.contentDOMWidth!=O||this.editorHeight!=t.scrollDOM.clientHeight)&&(this.contentDOMWidth=l.width,this.editorHeight=t.scrollDOM.clientHeight,u|=16),c){let k=t.docView.measureVisibleLineHeights(this.viewport);if(r.mustRefreshForHeights(k)&&(a=!0),a||r.lineWrapping&&Math.abs(O-this.contentDOMWidth)>r.charWidth){let{lineHeight:S,charWidth:E,textHeight:C}=t.docView.measureTextSize();a=S>0&&r.refresh(s,S,E,C,Math.max(5,O/E),k),a&&(t.docView.minWidth=0,u|=16)}v>0&&y>0?d=Math.max(v,y):v<0&&y<0&&(d=Math.min(v,y)),GZ();for(let S of this.viewports){let E=S.from==this.viewport.from?k:t.docView.measureVisibleLineHeights(S);this.heightMap=(a?zo.empty().applyChanges(this.stateDeco,Gi.empty,this.heightOracle,[new Gc(0,0,0,t.state.doc.length)]):this.heightMap).updateHeight(r,0,a,new jCt(S.from,E))}ax&&(u|=2)}let w=!this.viewportIsAppropriate(this.viewport,d)||this.scrollTarget&&(this.scrollTarget.range.headthis.viewport.to);return w&&(u&2&&(u|=this.updateScaler()),this.viewport=this.getViewport(d,this.scrollTarget),u|=this.updateForViewport()),(u&2||w)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(a?[]:this.lineGaps,t)),u|=this.computeVisibleRanges(),this.mustEnforceCursorAssoc&&(this.mustEnforceCursorAssoc=!1,t.docView.enforceCursorAssoc()),u}get visibleTop(){return this.scaler.fromDOM(this.pixelViewport.top)}get visibleBottom(){return this.scaler.fromDOM(this.pixelViewport.bottom)}getViewport(t,n){let i=.5-Math.max(-.5,Math.min(.5,t/1e3/2)),r=this.heightMap,s=this.heightOracle,{visibleTop:a,visibleBottom:l}=this,c=new ZT(r.lineAt(a-i*1e3,Ir.ByHeight,s,0,0).from,r.lineAt(l+(1-i)*1e3,Ir.ByHeight,s,0,0).to);if(n){let{head:u}=n.range;if(uc.to){let d=Math.min(this.editorHeight,this.pixelViewport.bottom-this.pixelViewport.top),f=r.lineAt(u,Ir.ByPos,s,0,0),h;n.y=="center"?h=(f.top+f.bottom)/2-d/2:n.y=="start"||n.y=="nearest"&&u=l+Math.max(10,Math.min(i,250)))&&r>a-2*1e3&&s>1,a=r<<1;if(this.defaultTextDirection!=Cr.LTR&&!i)return[];let l=[],c=(d,f,h,m)=>{if(f-dd&&yy.from>=h.from&&y.to<=h.to&&Math.abs(y.from-d)y.fromx));if(!v){if(fO.from<=f&&O.to>=f)){let O=n.moveToLineBoundary(it.cursor(f),!1,!0).head;O>d&&(f=O)}let y=this.gapSize(h,d,f,m),x=i||y<2e6?y:2e6;v=new f5(d,f,y,x)}l.push(v)},u=d=>{if(d.length2e6)for(let S of t)S.from>=d.from&&S.fromd.from&&c(d.from,m,d,f),gn.draw(this,this.heightOracle.lineWrapping))))}computeVisibleRanges(t){let n=this.stateDeco;this.lineGaps.length&&(n=n.concat(this.lineGapDeco));let i=[];xi.spans(n,this.viewport.from,this.viewport.to,{span(s,a){i.push({from:s,to:a})},point(){}},20);let r=0;if(i.length!=this.visibleRanges.length)r=12;else for(let s=0;s=this.viewport.from&&t<=this.viewport.to&&this.viewportLines.find(n=>n.from<=t&&n.to>=t)||Vw(this.heightMap.lineAt(t,Ir.ByPos,this.heightOracle,0,0),this.scaler)}lineBlockAtHeight(t){return t>=this.viewportLines[0].top&&t<=this.viewportLines[this.viewportLines.length-1].bottom&&this.viewportLines.find(n=>n.top<=t&&n.bottom>=t)||Vw(this.heightMap.lineAt(this.scaler.fromDOM(t),Ir.ByHeight,this.heightOracle,0,0),this.scaler)}getScrollOffset(){return(this.scrollParent==this.view.scrollDOM?this.scrollParent.scrollTop:(this.scrollParent?this.scrollParent.getBoundingClientRect().top:0)-this.view.contentDOM.getBoundingClientRect().top)*this.scaleY}scrollAnchorAt(t){let n=this.lineBlockAtHeight(t+8);return n.from>=this.viewport.from||this.viewportLines[0].top-t>200?n:this.viewportLines[0]}elementAtHeight(t){return Vw(this.heightMap.blockAt(this.scaler.fromDOM(t),this.heightOracle,0,0),this.scaler)}get docHeight(){return this.scaler.toDOM(this.heightMap.height)}get contentHeight(){return this.docHeight+this.paddingTop+this.paddingBottom}}class ZT{constructor(t,n){this.from=t,this.to=n}}function UCt(e,t,n){let i=[],r=e,s=0;return xi.spans(n,e,t,{span(){},point(a,l){a>r&&(i.push({from:r,to:a}),s+=a-r),r=l}},20),r=1)return t[t.length-1].to;let i=Math.floor(e*n);for(let r=0;;r++){let{from:s,to:a}=t[r],l=a-s;if(i<=l)return s+i;i-=l}}function e2(e,t){let n=0;for(let{from:i,to:r}of e.ranges){if(t<=r){n+=t-i;break}n+=r-i}return n/e.total}function QCt(e,t){for(let n of e)if(t(n))return n}const YZ={toDOM(e){return e},fromDOM(e){return e},scale:1,eq(e){return e==this}};function ZZ(e){let t=e.facet(wI).filter(i=>typeof i!="function"),n=e.facet(tQ).filter(i=>typeof i!="function");return n.length&&t.push(xi.join(n)),t}class sQ{constructor(t,n,i){let r=0,s=0,a=0;this.viewports=i.map(({from:l,to:c})=>{let u=n.lineAt(l,Ir.ByPos,t,0,0).top,d=n.lineAt(c,Ir.ByPos,t,0,0).bottom;return r+=d-u,{from:l,to:c,top:u,bottom:d,domTop:0,domBottom:0}}),this.scale=(7e6-r)/(n.height-r);for(let l of this.viewports)l.domTop=a+(l.top-s)*this.scale,a=l.domBottom=l.domTop+(l.bottom-l.top),s=l.bottom}toDOM(t){for(let n=0,i=0,r=0;;n++){let s=nn.from==t.viewports[i].from&&n.to==t.viewports[i].to):!1}}function Vw(e,t){if(t.scale==1)return e;let n=t.toDOM(e.top),i=t.toDOM(e.bottom);return new Tu(e.from,e.length,n,i-n,Array.isArray(e._content)?e._content.map(r=>Vw(r,t)):e._content)}const t2=Zt.define({combine:e=>e.join(" ")}),F$=Zt.define({combine:e=>e.indexOf(!0)>-1}),B$=Cm.newName(),I2e=Cm.newName(),P2e=Cm.newName(),D2e={"&light":"."+I2e,"&dark":"."+P2e};function U$(e,t,n){return new Cm(t,{finish(i){return/&/.test(i)?i.replace(/&\w*/,r=>{if(r=="&")return e;if(!n||!n[r])throw new RangeError(`Unsupported selector: ${r}`);return n[r]}):e+" "+i}})}const zCt=U$("."+B$,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,height:"100%",overflowX:"auto",position:"relative",zIndex:0,overflowAnchor:"none"},".cm-content":{margin:0,flexGrow:2,flexShrink:0,display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",minHeight:"100%",padding:"4px 0",outline:"none","&[contenteditable=true]":{WebkitUserModify:"read-write-plaintext-only"}},".cm-lineWrapping":{whiteSpace_fallback:"pre-wrap",whiteSpace:"break-spaces",wordBreak:"break-word",overflowWrap:"anywhere",flexShrink:1},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 6px"},".cm-layer":{userSelect:"none",position:"absolute",left:0,top:0,contain:"size style","& > *":{position:"absolute"}},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{pointerEvents:"none"},"&.cm-focused > .cm-scroller > .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{opacity:0},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{opacity:0},"100%":{}},".cm-cursor, .cm-dropCursor":{borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none"},".cm-cursor":{display:"none"},"&dark .cm-cursor":{borderLeftColor:"#ddd"},".cm-selectionHandle":{backgroundColor:"currentColor",width:"1.5px"},".cm-selectionHandle-start::before, .cm-selectionHandle-end::before":{content:'""',backgroundColor:"inherit",borderRadius:"50%",width:"8px",height:"8px",position:"absolute",left:"-3.25px"},".cm-selectionHandle-start::before":{top:"-8px"},".cm-selectionHandle-end::before":{bottom:"-8px"},".cm-dropCursor":{position:"absolute"},"&.cm-focused > .cm-scroller > .cm-cursorLayer .cm-cursor":{display:"block"},".cm-iso":{unicodeBidi:"isolate"},".cm-announced":{position:"fixed",top:"-10000px"},"@media print":{".cm-announced":{display:"none"}},"&light .cm-activeLine":{backgroundColor:"#cceeff44"},"&dark .cm-activeLine":{backgroundColor:"#99eeff33"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-gutters":{flexShrink:0,display:"flex",height:"100%",boxSizing:"border-box",zIndex:200},".cm-gutters-before":{insetInlineStart:0},".cm-gutters-after":{insetInlineEnd:0},"&light .cm-gutters":{backgroundColor:"#f5f5f5",color:"#6c6c6c",border:"0px solid #ddd","&.cm-gutters-before":{borderRightWidth:"1px"},"&.cm-gutters-after":{borderLeftWidth:"1px"}},"&dark .cm-gutters":{backgroundColor:"#333338",color:"#ccc"},".cm-gutter":{display:"flex !important",flexDirection:"column",flexShrink:0,boxSizing:"border-box",minHeight:"100%",overflow:"hidden"},".cm-gutterElement":{boxSizing:"border-box"},".cm-lineNumbers .cm-gutterElement":{padding:"0 3px 0 5px",minWidth:"20px",textAlign:"right",whiteSpace:"nowrap"},"&light .cm-activeLineGutter":{backgroundColor:"#e2f2ff"},"&dark .cm-activeLineGutter":{backgroundColor:"#222227"},".cm-panels":{boxSizing:"border-box",position:"sticky",left:0,right:0,zIndex:300},"&light .cm-panels":{backgroundColor:"#f5f5f5",color:"black"},"&light .cm-panels-top":{borderBottom:"1px solid #ddd"},"&light .cm-panels-bottom":{borderTop:"1px solid #ddd"},"&dark .cm-panels":{backgroundColor:"#333338",color:"white"},".cm-dialog":{padding:"2px 19px 4px 6px",position:"relative","& label":{fontSize:"80%"}},".cm-dialog-close":{position:"absolute",top:"3px",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",fontSize:"14px",padding:"0"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-widgetBuffer":{verticalAlign:"text-top",height:"1em",width:0,display:"inline"},".cm-placeholder":{color:"#888",display:"inline-block",verticalAlign:"top",userSelect:"none"},".cm-highlightSpace":{backgroundImage:"radial-gradient(circle at 50% 55%, #aaa 20%, transparent 5%)",backgroundPosition:"center"},".cm-highlightTab":{backgroundImage:`url('data:image/svg+xml,')`,backgroundSize:"auto 100%",backgroundPosition:"right 90%",backgroundRepeat:"no-repeat"},".cm-trailingSpace":{backgroundColor:"#ff332255"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"1px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},D2e),VCt={childList:!0,characterData:!0,subtree:!0,attributes:!0,characterDataOldValue:!0},h5=Xt.ie&&Xt.ie_version<=11;class HCt{constructor(t){this.view=t,this.active=!1,this.editContext=null,this.selectionRange=new xEt,this.selectionChanged=!1,this.delayedFlush=-1,this.resizeTimeout=-1,this.queue=[],this.delayedAndroidKey=null,this.flushingAndroidKey=-1,this.lastChange=0,this.scrollTargets=[],this.intersection=null,this.resizeScroll=null,this.intersecting=!1,this.gapIntersection=null,this.gaps=[],this.printQuery=null,this.parentCheck=-1,this.dom=t.contentDOM,this.observer=new MutationObserver(n=>{for(let i of n)this.queue.push(i);(Xt.ie&&Xt.ie_version<=11||Xt.ios&&t.composing)&&n.some(i=>i.type=="childList"&&i.removedNodes.length||i.type=="characterData"&&i.oldValue.length>i.target.nodeValue.length)?this.flushSoon():this.flush()}),window.EditContext&&Xt.android&&t.constructor.EDIT_CONTEXT!==!1&&!(Xt.chrome&&Xt.chrome_version<126)&&(this.editContext=new WCt(t),t.state.facet(zf)&&(t.contentDOM.editContext=this.editContext.editContext)),h5&&(this.onCharData=n=>{this.queue.push({target:n.target,type:"characterData",oldValue:n.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.onResize=this.onResize.bind(this),this.onPrint=this.onPrint.bind(this),this.onScroll=this.onScroll.bind(this),window.matchMedia&&(this.printQuery=window.matchMedia("print")),typeof ResizeObserver=="function"&&(this.resizeScroll=new ResizeObserver(()=>{var n;((n=this.view.docView)===null||n===void 0?void 0:n.lastUpdate){this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),n.length>0&&n[n.length-1].intersectionRatio>0!=this.intersecting&&(this.intersecting=!this.intersecting,this.intersecting!=this.view.inView&&this.onScrollChanged(document.createEvent("Event")))},{threshold:[0,.001]}),this.intersection.observe(this.dom),this.gapIntersection=new IntersectionObserver(n=>{n.length>0&&n[n.length-1].intersectionRatio>0&&this.onScrollChanged(document.createEvent("Event"))},{})),this.listenForScroll(),this.readSelectionRange()}onScrollChanged(t){this.view.inputState.runHandlers("scroll",t),this.intersecting&&this.view.measure()}onScroll(t){this.intersecting&&this.flush(!1),this.editContext&&this.view.requestMeasure(this.editContext.measureReq),this.onScrollChanged(t)}onResize(){this.resizeTimeout<0&&(this.resizeTimeout=setTimeout(()=>{this.resizeTimeout=-1,this.view.requestMeasure()},50))}onPrint(t){(t.type=="change"||!t.type)&&!t.matches||(this.view.viewState.printing=!0,this.view.measure(),setTimeout(()=>{this.view.viewState.printing=!1,this.view.requestMeasure()},500))}updateGaps(t){if(this.gapIntersection&&(t.length!=this.gaps.length||this.gaps.some((n,i)=>n!=t[i]))){this.gapIntersection.disconnect();for(let n of t)this.gapIntersection.observe(n);this.gaps=t}}onSelectionChange(t){let n=this.selectionChanged;if(!this.readSelectionRange()||this.delayedAndroidKey)return;let{view:i}=this,r=this.selectionRange;if(i.state.facet(zf)?i.root.activeElement!=this.dom:!FO(this.dom,r))return;let s=r.anchorNode&&i.docView.tile.nearest(r.anchorNode);if(s&&s.isWidget()&&s.widget.ignoreEvent(t)){n||(this.selectionChanged=!1);return}(Xt.ie&&Xt.ie_version<=11||Xt.android&&Xt.chrome)&&!i.state.selection.main.empty&&r.focusNode&&UO(r.focusNode,r.focusOffset,r.anchorNode,r.anchorOffset)?this.flushSoon():this.flush(!1)}readSelectionRange(){let{view:t}=this,n=nk(t.root);if(!n)return!1;let i=Xt.safari&&t.root.nodeType==11&&t.root.activeElement==this.dom&&qCt(this.view,n)||n;if(!i||this.selectionRange.eq(i))return!1;let r=FO(this.dom,i);return r&&!this.selectionChanged&&t.inputState.lastFocusTime>Date.now()-200&&t.inputState.lastTouchTime{let s=this.delayedAndroidKey;s&&(this.clearDelayedAndroidKey(),this.view.inputState.lastKeyCode=s.keyCode,this.view.inputState.lastKeyTime=Date.now(),!this.flush()&&s.force&&dv(this.dom,s.key,s.keyCode))};this.flushingAndroidKey=this.view.win.requestAnimationFrame(r)}(!this.delayedAndroidKey||t=="Enter")&&(this.delayedAndroidKey={key:t,keyCode:n,force:this.lastChange{this.delayedFlush=-1,this.flush()}))}forceFlush(){this.delayedFlush>=0&&(this.view.win.cancelAnimationFrame(this.delayedFlush),this.delayedFlush=-1),this.flush()}pendingRecords(){for(let t of this.observer.takeRecords())this.queue.push(t);return this.queue}processRecords(){let t=this.pendingRecords();t.length&&(this.queue=[]);let n=-1,i=-1,r=!1;for(let s of t){let a=this.readMutation(s);a&&(a.typeOver&&(r=!0),n==-1?{from:n,to:i}=a:(n=Math.min(a.from,n),i=Math.max(a.to,i)))}return{from:n,to:i,typeOver:r}}readChange(){let{from:t,to:n,typeOver:i}=this.processRecords(),r=this.selectionChanged&&FO(this.dom,this.selectionRange);if(t<0&&!r)return null;t>-1&&(this.lastChange=Date.now()),this.view.inputState.lastFocusTime=0,this.selectionChanged=!1;let s=new cCt(this.view,t,n,i);return this.view.docView.domChanged={newSel:s.newSel?s.newSel.main:null},s}flush(t=!0){if(this.delayedFlush>=0||this.delayedAndroidKey)return!1;t&&this.readSelectionRange();let n=this.readChange();if(!n)return this.view.requestMeasure(),!1;let i=this.view.state,r=O2e(this.view,n);return this.view.state==i&&(n.domChanged||n.newSel&&!MN(this.view.state.selection,n.newSel.main))&&this.view.update([]),r}readMutation(t){let n=this.view.docView.tile.nearest(t.target);if(!n||n.isWidget())return null;if(n.markDirty(t.type=="attributes"),t.type=="childList"){let i=JZ(n,t.previousSibling||t.target.previousSibling,-1),r=JZ(n,t.nextSibling||t.target.nextSibling,1);return{from:i?n.posAfter(i):n.posAtStart,to:r?n.posBefore(r):n.posAtEnd,typeOver:!1}}else return t.type=="characterData"?{from:n.posAtStart,to:n.posAtEnd,typeOver:t.target.nodeValue==t.oldValue}:null}setWindow(t){t!=this.win&&(this.removeWindowListeners(this.win),this.win=t,this.addWindowListeners(this.win))}addWindowListeners(t){t.addEventListener("resize",this.onResize),this.printQuery?this.printQuery.addEventListener?this.printQuery.addEventListener("change",this.onPrint):this.printQuery.addListener(this.onPrint):t.addEventListener("beforeprint",this.onPrint),t.addEventListener("scroll",this.onScroll),t.document.addEventListener("selectionchange",this.onSelectionChange)}removeWindowListeners(t){t.removeEventListener("scroll",this.onScroll),t.removeEventListener("resize",this.onResize),this.printQuery?this.printQuery.removeEventListener?this.printQuery.removeEventListener("change",this.onPrint):this.printQuery.removeListener(this.onPrint):t.removeEventListener("beforeprint",this.onPrint),t.document.removeEventListener("selectionchange",this.onSelectionChange)}update(t){this.editContext&&(this.editContext.update(t),t.startState.facet(zf)!=t.state.facet(zf)&&(t.view.contentDOM.editContext=t.state.facet(zf)?this.editContext.editContext:null))}destroy(){var t,n,i;this.stop(),(t=this.intersection)===null||t===void 0||t.disconnect(),(n=this.gapIntersection)===null||n===void 0||n.disconnect(),(i=this.resizeScroll)===null||i===void 0||i.disconnect();for(let r of this.scrollTargets)r.removeEventListener("scroll",this.onScroll);this.removeWindowListeners(this.win),clearTimeout(this.parentCheck),clearTimeout(this.resizeTimeout),this.win.cancelAnimationFrame(this.delayedFlush),this.win.cancelAnimationFrame(this.flushingAndroidKey),this.editContext&&(this.view.contentDOM.editContext=null,this.editContext.destroy())}}function JZ(e,t,n){for(;t;){let i=Cs.get(t);if(i&&i.parent==e)return i;let r=t.parentNode;t=r!=e.dom?r:n>0?t.nextSibling:t.previousSibling}return null}function eJ(e,t){let n=t.startContainer,i=t.startOffset,r=t.endContainer,s=t.endOffset,a=e.docView.domAtPos(e.state.selection.main.anchor,1);return UO(a.node,a.offset,r,s)&&([n,i,r,s]=[r,s,n,i]),{anchorNode:n,anchorOffset:i,focusNode:r,focusOffset:s}}function qCt(e,t){if(t.getComposedRanges){let r=t.getComposedRanges(e.root)[0];if(r)return eJ(e,r)}let n=null;function i(r){r.preventDefault(),r.stopImmediatePropagation(),n=r.getTargetRanges()[0]}return e.contentDOM.addEventListener("beforeinput",i,!0),e.dom.ownerDocument.execCommand("indent"),e.contentDOM.removeEventListener("beforeinput",i,!0),n?eJ(e,n):null}class WCt{constructor(t){this.from=0,this.to=0,this.pendingContextChange=null,this.handlers=Object.create(null),this.composing=null,this.resetRange(t.state);let n=this.editContext=new window.EditContext({text:t.state.doc.sliceString(this.from,this.to),selectionStart:this.toContextPos(Math.max(this.from,Math.min(this.to,t.state.selection.main.anchor))),selectionEnd:this.toContextPos(t.state.selection.main.head)});this.handlers.textupdate=i=>{let r=t.state.selection.main,{anchor:s,head:a}=r,l=this.toEditorPos(i.updateRangeStart),c=this.toEditorPos(i.updateRangeEnd);t.inputState.composing>=0&&!this.composing&&(this.composing={contextBase:i.updateRangeStart,editorBase:l,drifted:!1});let u=c-l>i.text.length;l==this.from&&sthis.to&&(c=s);let d=S2e(t.state.sliceDoc(l,c),i.text,(u?r.from:r.to)-l,u?"end":null);if(!d){let h=it.single(this.toEditorPos(i.selectionStart),this.toEditorPos(i.selectionEnd));MN(h,r)||t.dispatch({selection:h,userEvent:"select"});return}let f={from:d.from+l,to:d.toA+l,insert:Gi.of(i.text.slice(d.from,d.toB).split(` -`))};if((Xt.mac||Xt.android)&&f.from==a-1&&/^\. ?$/.test(i.text)&&t.contentDOM.getAttribute("autocorrect")=="off"&&(f={from:l,to:c,insert:Gi.of([i.text.replace("."," ")])}),this.pendingContextChange=f,!t.state.readOnly){let h=this.to-this.from+(f.to-f.from+f.insert.length);iQ(t,f,it.single(this.toEditorPos(i.selectionStart,h),this.toEditorPos(i.selectionEnd,h)))}this.pendingContextChange&&(this.revertPending(t.state),this.setSelection(t.state)),f.from=0&&!/[\\p{Alphabetic}\\p{Number}_]/.test(n.text.slice(Math.max(0,i.updateRangeStart-1),Math.min(n.text.length,i.updateRangeStart+1)))&&this.handlers.compositionend(i)},this.handlers.characterboundsupdate=i=>{let r=[],s=null;for(let a=this.toEditorPos(i.rangeStart),l=this.toEditorPos(i.rangeEnd);a{let r=[];for(let s of i.getTextFormats()){let a=s.underlineStyle,l=s.underlineThickness;if(!/none/i.test(a)&&!/none/i.test(l)){let c=this.toEditorPos(s.rangeStart),u=this.toEditorPos(s.rangeEnd);if(c{t.inputState.composing<0&&(t.inputState.composing=0,t.inputState.compositionFirstChange=!0)},this.handlers.compositionend=()=>{if(t.inputState.composing=-1,t.inputState.compositionFirstChange=null,this.composing){let{drifted:i}=this.composing;this.composing=null,i&&this.reset(t.state)}};for(let i in this.handlers)n.addEventListener(i,this.handlers[i]);this.measureReq={read:i=>{let r=nk(i.root);r&&r.rangeCount&&this.editContext.updateSelectionBounds(r.getRangeAt(0).getBoundingClientRect())}}}applyEdits(t){let n=0,i=!1,r=this.pendingContextChange;return t.changes.iterChanges((s,a,l,c,u)=>{if(i)return;let d=u.length-(a-s);if(r&&a>=r.to)if(r.from==s&&r.to==a&&r.insert.eq(u)){r=this.pendingContextChange=null,n+=d,this.to+=d;return}else r=null,this.revertPending(t.state);if(s+=n,a+=n,a<=this.from)this.from+=d,this.to+=d;else if(sthis.to||this.to-this.from+u.length>3e4){i=!0;return}this.editContext.updateText(this.toContextPos(s),this.toContextPos(a),u.toString()),this.to+=d}n+=d}),r&&!i&&this.revertPending(t.state),!i}update(t){let n=this.pendingContextChange,i=t.startState.selection.main;this.composing&&(this.composing.drifted||!t.changes.touchesRange(i.from,i.to)&&t.transactions.some(r=>!r.isUserEvent("input.type")&&r.changes.touchesRange(this.from,this.to)))?(this.composing.drifted=!0,this.composing.editorBase=t.changes.mapPos(this.composing.editorBase)):!this.applyEdits(t)||!this.rangeIsValid(t.state)?(this.pendingContextChange=null,this.reset(t.state)):(t.docChanged||t.selectionSet||n)&&this.setSelection(t.state),(t.geometryChanged||t.docChanged||t.selectionSet)&&t.view.requestMeasure(this.measureReq)}resetRange(t){let{head:n}=t.selection.main;this.from=Math.max(0,n-1e4),this.to=Math.min(t.doc.length,n+1e4)}reset(t){this.resetRange(t),this.editContext.updateText(0,this.editContext.text.length,t.doc.sliceString(this.from,this.to)),this.setSelection(t)}revertPending(t){let n=this.pendingContextChange;this.pendingContextChange=null,this.editContext.updateText(this.toContextPos(n.from),this.toContextPos(n.from+n.insert.length),t.doc.sliceString(n.from,n.to))}setSelection(t){let{main:n}=t.selection,i=this.toContextPos(Math.max(this.from,Math.min(this.to,n.anchor))),r=this.toContextPos(n.head);(this.editContext.selectionStart!=i||this.editContext.selectionEnd!=r)&&this.editContext.updateSelection(i,r)}rangeIsValid(t){let{head:n}=t.selection.main;return!(this.from>0&&n-this.from<500||this.to1e4*3)}toEditorPos(t,n=this.to-this.from){t=Math.min(t,n);let i=this.composing;return i&&i.drifted?i.editorBase+(t-i.contextBase):t+this.from}toContextPos(t){let n=this.composing;return n&&n.drifted?n.contextBase+(t-n.editorBase):t-this.from}destroy(){for(let t in this.handlers)this.editContext.removeEventListener(t,this.handlers[t])}}class Ft{get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return!!this.inputState&&this.inputState.composing>0}get compositionStarted(){return!!this.inputState&&this.inputState.composing>=0}get root(){return this._root}get win(){return this.dom.ownerDocument.defaultView||window}constructor(t={}){var n;this.plugins=[],this.pluginMap=new Map,this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.destroyed=!1,this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.className="cm-announced",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),t.parent&&t.parent.appendChild(this.dom);let{dispatch:i}=t;this.dispatchTransactions=t.dispatchTransactions||i&&(r=>r.forEach(s=>i(s,this)))||(r=>this.update(r)),this.dispatch=this.dispatch.bind(this),this._root=t.root||wEt(t.parent)||document,this.viewState=new XZ(this,t.state||Ti.create(t)),t.scrollTo&&t.scrollTo.is(KT)&&(this.viewState.scrollTarget=t.scrollTo.value.clip(this.viewState.state)),this.plugins=this.state.facet(My).map(r=>new o5(r));for(let r of this.plugins)r.update(this);this.observer=new HCt(this),this.inputState=new hCt(this),this.inputState.ensureHandlers(this.plugins),this.docView=new LZ(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,this.requestMeasure(),!((n=document.fonts)===null||n===void 0)&&n.ready&&document.fonts.ready.then(()=>{this.viewState.mustMeasureContent="refresh",this.requestMeasure()})}dispatch(...t){let n=t.length==1&&t[0]instanceof Js?t:t.length==1&&Array.isArray(t[0])?t[0]:[this.state.update(...t)];this.dispatchTransactions(n,this)}update(t){if(this.updateState!=0)throw new Error("Calls to EditorView.update are not allowed while an update is in progress");let n=!1,i=!1,r,s=this.state;for(let h of t){if(h.startState!=s)throw new RangeError("Trying to update state with a transaction that doesn't start from the previous state.");s=h.state}if(this.destroyed){this.viewState.state=s;return}let a=this.hasFocus,l=0,c=null;t.some(h=>h.annotation(_2e))?(this.inputState.notifiedFocused=a,l=1):a!=this.inputState.notifiedFocused&&(this.inputState.notifiedFocused=a,c=N2e(s,a),c||(l=1));let u=this.observer.delayedAndroidKey,d=null;if(u?(this.observer.clearDelayedAndroidKey(),d=this.observer.readChange(),(d&&!this.state.doc.eq(s.doc)||!this.state.selection.eq(s.selection))&&(d=null)):this.observer.clear(),s.facet(Ti.phrases)!=this.state.facet(Ti.phrases))return this.setState(s);r=IN.create(this,s,t),r.flags|=l;let f=this.viewState.scrollTarget;try{this.updateState=2;for(let h of t){if(f&&(f=f.map(h.changes)),h.scrollIntoView){let{main:m}=h.state.selection,{x:g,y:b}=this.state.facet(Ft.cursorScrollMargin);f=new fv(m.empty?m:it.cursor(m.head,m.head>m.anchor?-1:1),"nearest","nearest",b,g)}for(let m of h.effects)m.is(KT)&&(f=m.value.clip(this.state))}this.viewState.update(r,f),this.bidiCache=$N.update(this.bidiCache,r.changes),r.empty||(this.updatePlugins(r),this.inputState.update(r)),n=this.docView.update(r),this.state.facet(zw)!=this.styleModules&&this.mountStyles(),i=this.updateAttrs(),this.showAnnouncements(t),this.docView.updateSelection(n,t.some(h=>h.isUserEvent("select.pointer")))}finally{this.updateState=0}if(r.startState.facet(t2)!=r.state.facet(t2)&&(this.viewState.mustMeasureContent=!0),(n||i||f||this.viewState.mustEnforceCursorAssoc||this.viewState.mustMeasureContent)&&this.requestMeasure(),n&&this.docViewUpdate(),!r.empty)for(let h of this.state.facet(P$))try{h(r)}catch(m){hl(this.state,m,"update listener")}(c||d)&&Promise.resolve().then(()=>{c&&this.state==c.startState&&this.dispatch(c),d&&!O2e(this,d)&&u.force&&dv(this.contentDOM,u.key,u.keyCode)})}setState(t){if(this.updateState!=0)throw new Error("Calls to EditorView.setState are not allowed while an update is in progress");if(this.destroyed){this.viewState.state=t;return}this.updateState=2;let n=this.hasFocus;try{for(let i of this.plugins)i.destroy(this);this.viewState=new XZ(this,t),this.plugins=t.facet(My).map(i=>new o5(i)),this.pluginMap.clear();for(let i of this.plugins)i.update(this);this.docView.destroy(),this.docView=new LZ(this),this.inputState.ensureHandlers(this.plugins),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}n&&this.focus(),this.requestMeasure()}updatePlugins(t){let n=t.startState.facet(My),i=t.state.facet(My);if(n!=i){let r=[];for(let s of i){let a=n.indexOf(s);if(a<0)r.push(new o5(s));else{let l=this.plugins[a];l.mustUpdate=t,r.push(l)}}for(let s of this.plugins)s.mustUpdate!=t&&s.destroy(this);this.plugins=r,this.pluginMap.clear()}else for(let r of this.plugins)r.mustUpdate=t;for(let r=0;r-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.observer.delayedAndroidKey){this.measureScheduled=-1,this.requestMeasure();return}this.measureScheduled=0,t&&this.observer.forceFlush();let n=null,i=this.viewState.scrollParent,r=this.viewState.getScrollOffset(),{scrollAnchorPos:s,scrollAnchorHeight:a}=this.viewState;Math.abs(r-this.viewState.scrollOffset)>1&&(a=-1),this.viewState.scrollAnchorHeight=-1;try{for(let l=0;;l++){if(a<0)if(XTe(i||this.win))s=-1,a=this.viewState.heightMap.height;else{let m=this.viewState.scrollAnchorAt(r);s=m.from,a=m.top}this.updateState=1;let c=this.viewState.measure();if(!c&&!this.measureRequests.length&&this.viewState.scrollTarget==null)break;if(l>5){console.warn(this.measureRequests.length?"Measure loop restarted more than 5 times":"Viewport failed to stabilize");break}let u=[];c&4||([this.measureRequests,u]=[u,this.measureRequests]);let d=u.map(m=>{try{return m.read(this)}catch(g){return hl(this.state,g),tJ}}),f=IN.create(this,this.state,[]),h=!1;f.flags|=c,n?n.flags|=c:n=f,this.updateState=2,f.empty||(this.updatePlugins(f),this.inputState.update(f),this.updateAttrs(),h=this.docView.update(f),h&&this.docViewUpdate());for(let m=0;m1||g<-1)&&!(Xt.ios&&this.inputState.lastIOSMomentumScroll>Date.now()-100)&&(i==this.scrollDOM||this.hasFocus||Math.max(this.inputState.lastWheelEvent,this.inputState.lastTouchTime)>Date.now()-100)){r=r+g,i?i.scrollTop+=g:this.win.scrollBy(0,g),a=-1;continue}}break}}}finally{this.updateState=0,this.measureScheduled=-1}if(n&&!n.empty)for(let l of this.state.facet(P$))l(n)}get themeClasses(){return B$+" "+(this.state.facet(F$)?P2e:I2e)+" "+this.state.facet(t2)}updateAttrs(){let t=nJ(this,p2e,{class:"cm-editor"+(this.hasFocus?" cm-focused ":" ")+this.themeClasses}),n={spellcheck:"false",autocorrect:"off",autocapitalize:"off",writingsuggestions:"false",translate:"no",contenteditable:this.state.facet(zf)?"true":"false",class:"cm-content",style:`${Xt.tabSize}: ${this.state.tabSize}`,role:"textbox","aria-multiline":"true"};this.state.readOnly&&(n["aria-readonly"]="true"),nJ(this,eQ,n);let i=this.observer.ignore(()=>{let r=jZ(this.contentDOM,this.contentAttrs,n),s=jZ(this.dom,this.editorAttrs,t);return r||s});return this.editorAttrs=t,this.contentAttrs=n,i}showAnnouncements(t){let n=!0;for(let i of t)for(let r of i.effects)if(r.is(Ft.announce)){n&&(this.announceDOM.textContent=""),n=!1;let s=this.announceDOM.appendChild(document.createElement("div"));s.textContent=r.value}}mountStyles(){this.styleModules=this.state.facet(zw);let t=this.state.facet(Ft.cspNonce);Cm.mount(this.root,this.styleModules.concat(zCt).reverse(),t?{nonce:t}:void 0)}readMeasured(){if(this.updateState==2)throw new Error("Reading the editor layout isn't allowed during an update");this.updateState==0&&this.measureScheduled>-1&&this.measure(!1)}requestMeasure(t){if(this.measureScheduled<0&&(this.measureScheduled=this.win.requestAnimationFrame(()=>this.measure())),t){if(this.measureRequests.indexOf(t)>-1)return;if(t.key!=null){for(let n=0;ni.plugin==t)||null),n&&n.update(this).value}get documentTop(){return this.contentDOM.getBoundingClientRect().top+this.viewState.paddingTop}get documentPadding(){return{top:this.viewState.paddingTop,bottom:this.viewState.paddingBottom}}get scaleX(){return this.viewState.scaleX}get scaleY(){return this.viewState.scaleY}elementAtHeight(t){return this.readMeasured(),this.viewState.elementAtHeight(t)}lineBlockAtHeight(t){return this.readMeasured(),this.viewState.lineBlockAtHeight(t)}get viewportLineBlocks(){return this.viewState.viewportLines}lineBlockAt(t){return this.viewState.lineBlockAt(t)}get contentHeight(){return this.viewState.contentHeight}moveByChar(t,n,i){return d5(this,t,$Z(this,t,n,i))}moveByGroup(t,n){return d5(this,t,$Z(this,t,n,i=>iCt(this,t.head,i)))}visualLineSide(t,n){let i=this.bidiSpans(t),r=this.textDirectionAt(t.from),s=i[n?i.length-1:0];return it.cursor(s.side(n,r)+t.from,s.forward(!n,r)?1:-1)}moveToLineBoundary(t,n,i=!0){return nCt(this,t,n,i)}moveVertically(t,n,i){return d5(this,t,rCt(this,t,n,i))}domAtPos(t,n=1){return this.docView.domAtPos(t,n)}posAtDOM(t,n=0){return this.docView.posFromDOM(t,n)}posAtCoords(t,n=!0){this.readMeasured();let i=L$(this,t,n);return i&&i.pos}posAndSideAtCoords(t,n=!0){return this.readMeasured(),L$(this,t,n)}coordsAtPos(t,n=1){this.readMeasured();let i=this.state.doc.lineAt(t),r=this.bidiSpans(i),s=r[Ad.find(r,t-i.from,-1,n)];return this.docView.coordsAt(t,n,s.dir==Cr.RTL)}coordsForChar(t){return this.readMeasured(),this.docView.coordsForChar(t)}get defaultCharacterWidth(){return this.viewState.heightOracle.charWidth}get defaultLineHeight(){return this.viewState.heightOracle.lineHeight}get textDirection(){return this.viewState.defaultTextDirection}textDirectionAt(t){return!this.state.facet(u2e)||tthis.viewport.to?this.textDirection:(this.readMeasured(),this.docView.textDirectionAt(t))}get lineWrapping(){return this.viewState.heightOracle.lineWrapping}bidiSpans(t){if(t.length>GCt)return n2e(t.length);let n=this.textDirectionAt(t.from),i;for(let s of this.bidiCache)if(s.from==t.from&&s.dir==n&&(s.fresh||t2e(s.isolates,i=PZ(this,t))))return s.order;i||(i=PZ(this,t));let r=_Et(t.text,n,i);return this.bidiCache.push(new $N(t.from,t.to,n,i,!0,r)),r}get hasFocus(){var t;return(this.dom.ownerDocument.hasFocus()||Xt.safari&&((t=this.inputState)===null||t===void 0?void 0:t.lastContextMenu)>Date.now()-3e4)&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore(()=>{KTe(this.contentDOM),this.docView.updateSelection()})}setRoot(t){this._root!=t&&(this._root=t,this.observer.setWindow((t.nodeType==9?t:t.ownerDocument).defaultView||window),this.mountStyles())}destroy(){this.root.activeElement==this.contentDOM&&this.contentDOM.blur();for(let t of this.plugins)t.destroy(this);this.plugins=[],this.inputState.destroy(),this.docView.destroy(),this.dom.remove(),this.observer.destroy(),this.measureScheduled>-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.destroyed=!0}static scrollIntoView(t,n={}){var i,r,s,a;return KT.of(new fv(typeof t=="number"?it.cursor(t):t,(i=n.y)!==null&&i!==void 0?i:"nearest",(r=n.x)!==null&&r!==void 0?r:"nearest",(s=n.yMargin)!==null&&s!==void 0?s:5,(a=n.xMargin)!==null&&a!==void 0?a:5))}scrollSnapshot(){let{scrollTop:t,scrollLeft:n}=this.scrollDOM,i=this.viewState.scrollAnchorAt(t);return KT.of(new fv(it.cursor(i.from),"start","start",i.top-t,n,!0))}setTabFocusMode(t){t==null?this.inputState.tabFocusMode=this.inputState.tabFocusMode<0?0:-1:typeof t=="boolean"?this.inputState.tabFocusMode=t?0:-1:this.inputState.tabFocusMode!=0&&(this.inputState.tabFocusMode=Date.now()+t)}static domEventHandlers(t){return Ts.define(()=>({}),{eventHandlers:t})}static domEventObservers(t){return Ts.define(()=>({}),{eventObservers:t})}static theme(t,n){let i=Cm.newName(),r=[t2.of(i),zw.of(U$(`.${i}`,t))];return n&&n.dark&&r.push(F$.of(!0)),r}static baseTheme(t){return zh.lowest(zw.of(U$("."+B$,t,D2e)))}static findFromDOM(t){var n;let i=t.querySelector(".cm-content"),r=i&&Cs.get(i)||Cs.get(t);return((n=r==null?void 0:r.root)===null||n===void 0?void 0:n.view)||null}}Ft.styleModule=zw;Ft.inputHandler=l2e;Ft.clipboardInputFilter=ZU;Ft.clipboardOutputFilter=JU;Ft.scrollHandler=f2e;Ft.focusChangeEffect=c2e;Ft.perLineTextDirection=u2e;Ft.exceptionSink=o2e;Ft.updateListener=P$;Ft.editable=zf;Ft.mouseSelectionStyle=a2e;Ft.dragMovesSelection=s2e;Ft.clickAddsSelectionRange=r2e;Ft.decorations=wI;Ft.blockWrappers=m2e;Ft.outerDecorations=tQ;Ft.atomicRanges=ME;Ft.bidiIsolatedRanges=g2e;Ft.cursorScrollMargin=Zt.define({combine:e=>{let t=5,n=5;for(let i of e)typeof i=="number"?t=n=i:{x:t,y:n}=i;return{x:t,y:n}}});Ft.scrollMargins=b2e;Ft.darkTheme=F$;Ft.cspNonce=Zt.define({combine:e=>e.length?e[0]:""});Ft.contentAttributes=eQ;Ft.editorAttributes=p2e;Ft.lineWrapping=Ft.contentAttributes.of({class:"cm-lineWrapping"});Ft.announce=Fn.define();const GCt=4096,tJ={};class $N{constructor(t,n,i,r,s,a){this.from=t,this.to=n,this.dir=i,this.isolates=r,this.fresh=s,this.order=a}static update(t,n){if(n.empty&&!t.some(s=>s.fresh))return t;let i=[],r=t.length?t[t.length-1].dir:Cr.LTR;for(let s=Math.max(0,t.length-10);s=0;r--){let s=i[r],a=typeof s=="function"?s(e):s;a&&KU(a,n)}return n}const KCt=Xt.mac?"mac":Xt.windows?"win":Xt.linux?"linux":"key";function XCt(e,t){const n=e.split(/-(?!$)/);let i=n[n.length-1];i=="Space"&&(i=" ");let r,s,a,l;for(let c=0;ci.concat(r),[]))),n}function ZCt(e,t,n){return L2e(M2e(e.state),t,e,n)}let Rp=null;const JCt=4e3;function eTt(e,t=KCt){let n=Object.create(null),i=Object.create(null),r=(a,l)=>{let c=i[a];if(c==null)i[a]=l;else if(c!=l)throw new Error("Key binding "+a+" is used both as a regular binding and as a multi-stroke prefix")},s=(a,l,c,u,d)=>{var f,h;let m=n[a]||(n[a]=Object.create(null)),g=l.split(/ (?!$)/).map(y=>XCt(y,t));for(let y=1;y{let w=Rp={view:O,prefix:x,scope:a};return setTimeout(()=>{Rp==w&&(Rp=null)},JCt),!0}]})}let b=g.join(" ");r(b,!1);let v=m[b]||(m[b]={preventDefault:!1,stopPropagation:!1,run:((h=(f=m._any)===null||f===void 0?void 0:f.run)===null||h===void 0?void 0:h.slice())||[]});c&&v.run.push(c),u&&(v.preventDefault=!0),d&&(v.stopPropagation=!0)};for(let a of e){let l=a.scope?a.scope.split(" "):["editor"];if(a.any)for(let u of l){let d=n[u]||(n[u]=Object.create(null));d._any||(d._any={preventDefault:!1,stopPropagation:!1,run:[]});let{any:f}=a;for(let h in d)d[h].run.push(m=>f(m,Q$))}let c=a[t]||a.key;if(c)for(let u of l)s(u,c,a.run,a.preventDefault,a.stopPropagation),a.shift&&s(u,"Shift-"+c,a.shift,a.preventDefault,a.stopPropagation)}return n}let Q$=null;function L2e(e,t,n,i){Q$=t;let r=pEt(t),s=ol(r,0),a=vd(s)==r.length&&r!=" ",l="",c=!1,u=!1,d=!1;Rp&&Rp.view==n&&Rp.scope==i&&(l=Rp.prefix+" ",E2e.indexOf(t.keyCode)<0&&(u=!0,Rp=null));let f=new Set,h=v=>{if(v){for(let y of v.run)if(!f.has(y)&&(f.add(y),y(n)))return v.stopPropagation&&(d=!0),!0;v.preventDefault&&(v.stopPropagation&&(d=!0),u=!0)}return!1},m=e[i],g,b;return m&&(h(m[l+n2(r,t,!a)])?c=!0:a&&(t.altKey||t.metaKey||t.ctrlKey)&&!(Xt.windows&&t.ctrlKey&&t.altKey)&&!(Xt.mac&&t.altKey&&!(t.ctrlKey||t.metaKey))&&(g=Tm[t.keyCode])&&g!=r?(h(m[l+n2(g,t,!0)])||t.shiftKey&&(b=ek[t.keyCode])!=r&&b!=g&&h(m[l+n2(b,t,!1)]))&&(c=!0):a&&t.shiftKey&&h(m[l+n2(r,t,!0)])&&(c=!0),!c&&h(m._any)&&(c=!0)),u&&(c=!0),c&&d&&t.stopPropagation(),Q$=null,c}class ob{constructor(t,n,i,r,s){this.className=t,this.left=n,this.top=i,this.width=r,this.height=s}draw(){let t=document.createElement("div");return t.className=this.className,this.adjust(t),t}update(t,n){return n.className!=this.className?!1:(this.adjust(t),!0)}adjust(t){t.style.left=this.left+"px",t.style.top=this.top+"px",this.width!=null&&(t.style.width=this.width+"px"),t.style.height=this.height+"px"}eq(t){return this.left==t.left&&this.top==t.top&&this.width==t.width&&this.height==t.height&&this.className==t.className}static forRange(t,n,i){if(i.empty){let r=t.coordsAtPos(i.head,i.assoc||1);if(!r)return[];let s=$2e(t);return[new ob(n,r.left-s.left,r.top-s.top,null,r.bottom-r.top)]}else return tTt(t,n,i)}}function $2e(e){let t=e.scrollDOM.getBoundingClientRect();return{left:(e.textDirection==Cr.LTR?t.left:t.right-e.scrollDOM.clientWidth*e.scaleX)-e.scrollDOM.scrollLeft*e.scaleX,top:t.top-e.scrollDOM.scrollTop*e.scaleY}}function rJ(e,t,n,i){let r=e.coordsAtPos(t,n*2);if(!r)return i;let s=e.dom.getBoundingClientRect(),a=(r.top+r.bottom)/2,l=e.posAtCoords({x:s.left+1,y:a}),c=e.posAtCoords({x:s.right-1,y:a});return l==null||c==null?i:{from:Math.max(i.from,Math.min(l,c)),to:Math.min(i.to,Math.max(l,c))}}function tTt(e,t,n){if(n.to<=e.viewport.from||n.from>=e.viewport.to)return[];let i=Math.max(n.from,e.viewport.from),r=Math.min(n.to,e.viewport.to),s=e.textDirection==Cr.LTR,a=e.contentDOM,l=a.getBoundingClientRect(),c=$2e(e),u=a.querySelector(".cm-line"),d=u&&window.getComputedStyle(u),f=l.left+(d?parseInt(d.paddingLeft)+Math.min(0,parseInt(d.textIndent)):0),h=l.right-(d?parseInt(d.paddingRight):0),m=M$(e,i,1),g=M$(e,r,-1),b=m.type==io.Text?m:null,v=g.type==io.Text?g:null;if(b&&(e.lineWrapping||m.widgetLineBreaks)&&(b=rJ(e,i,1,b)),v&&(e.lineWrapping||g.widgetLineBreaks)&&(v=rJ(e,r,-1,v)),b&&v&&b.from==v.from&&b.to==v.to)return x(O(n.from,n.to,b));{let k=b?O(n.from,null,b):w(m,!1),S=v?O(null,n.to,v):w(g,!0),E=[];return(b||m).to<(v||g).from-(b&&v?1:0)||m.widgetLineBreaks>1&&k.bottom+e.defaultLineHeight/2A&&T.from=R)break;I>P&&j(Math.max(U,P),k==null&&U<=A,Math.min(I,R),S==null&&I>=F,M.dir)}if(P=L.to+1,P>=R)break}return _.length==0&&j(A,k==null,F,S==null,e.textDirection),{top:C,bottom:N,horizontal:_}}function w(k,S){let E=l.top+(S?k.top:k.bottom);return{top:E,bottom:E,horizontal:[]}}}function nTt(e,t){return e.constructor==t.constructor&&e.eq(t)}class iTt{constructor(t,n){this.view=t,this.layer=n,this.drawn=[],this.scaleX=1,this.scaleY=1,this.measureReq={read:this.measure.bind(this),write:this.draw.bind(this)},this.dom=t.scrollDOM.appendChild(document.createElement("div")),this.dom.classList.add("cm-layer"),n.above&&this.dom.classList.add("cm-layer-above"),n.class&&this.dom.classList.add(n.class),this.scale(),this.dom.setAttribute("aria-hidden","true"),this.setOrder(t.state),t.requestMeasure(this.measureReq),n.mount&&n.mount(this.dom,t)}update(t){t.startState.facet(jA)!=t.state.facet(jA)&&this.setOrder(t.state),(this.layer.update(t,this.dom)||t.geometryChanged)&&(this.scale(),t.view.requestMeasure(this.measureReq))}docViewUpdate(t){this.layer.updateOnDocViewUpdate!==!1&&t.requestMeasure(this.measureReq)}setOrder(t){let n=0,i=t.facet(jA);for(;n!nTt(n,this.drawn[i]))){let n=this.dom.firstChild,i=0;for(let r of t)r.update&&n&&r.constructor&&this.drawn[i].constructor&&r.update(n,this.drawn[i])?(n=n.nextSibling,i++):this.dom.insertBefore(r.draw(),n);for(;n;){let r=n.nextSibling;n.remove(),n=r}this.drawn=t,Xt.webkit&&(this.dom.style.display=this.dom.firstChild?"":"none")}}destroy(){this.layer.destroy&&this.layer.destroy(this.dom,this.view),this.dom.remove()}}const jA=Zt.define();function F2e(e){return[Ts.define(t=>new iTt(t,e)),jA.of(e)]}const ox=Zt.define({combine(e){return ef(e,{cursorBlinkRate:1200,drawRangeCursor:!0,iosSelectionHandles:!0},{cursorBlinkRate:(t,n)=>Math.min(t,n),drawRangeCursor:(t,n)=>t||n})}});function rTt(e={}){return[ox.of(e),sTt,aTt,oTt,d2e.of(!0)]}function B2e(e){return e.startState.facet(ox)!=e.state.facet(ox)}const sTt=F2e({above:!0,markers(e){let{state:t}=e,n=t.facet(ox),i=[];for(let r of t.selection.ranges){let s=r==t.selection.main;if(r.empty||n.drawRangeCursor&&!(s&&Xt.ios&&n.iosSelectionHandles)){let a=s?"cm-cursor cm-cursor-primary":"cm-cursor cm-cursor-secondary",l=r.empty?r:it.cursor(r.head,r.assoc);for(let c of ob.forRange(e,a,l))i.push(c)}}return i},update(e,t){e.transactions.some(i=>i.selection)&&(t.style.animationName=t.style.animationName=="cm-blink"?"cm-blink2":"cm-blink");let n=B2e(e);return n&&sJ(e.state,t),e.docChanged||e.selectionSet||n},mount(e,t){sJ(t.state,e)},class:"cm-cursorLayer"});function sJ(e,t){t.style.animationDuration=e.facet(ox).cursorBlinkRate+"ms"}const aTt=F2e({above:!1,markers(e){let t=[],{main:n,ranges:i}=e.state.selection;for(let r of i)if(!r.empty)for(let s of ob.forRange(e,"cm-selectionBackground",r))t.push(s);if(Xt.ios&&!n.empty&&e.state.facet(ox).iosSelectionHandles){for(let r of ob.forRange(e,"cm-selectionHandle cm-selectionHandle-start",it.cursor(n.from,1)))t.push(r);for(let r of ob.forRange(e,"cm-selectionHandle cm-selectionHandle-end",it.cursor(n.to,1)))t.push(r)}return t},update(e,t){return e.docChanged||e.selectionSet||e.viewportChanged||B2e(e)},class:"cm-selectionLayer"}),oTt=zh.highest(Ft.theme({".cm-line":{"& ::selection, &::selection":{backgroundColor:"transparent !important"},caretColor:"transparent !important"},".cm-content":{caretColor:"transparent !important","& :focus":{caretColor:"initial !important","&::selection, & ::selection":{backgroundColor:"Highlight !important"}}}})),U2e=Fn.define({map(e,t){return e==null?null:t.mapPos(e)}}),Hw=ro.define({create(){return null},update(e,t){return e!=null&&(e=t.changes.mapPos(e)),t.effects.reduce((n,i)=>i.is(U2e)?i.value:n,e)}}),lTt=Ts.fromClass(class{constructor(e){this.view=e,this.cursor=null,this.measureReq={read:this.readPos.bind(this),write:this.drawCursor.bind(this)}}update(e){var t;let n=e.state.field(Hw);n==null?this.cursor!=null&&((t=this.cursor)===null||t===void 0||t.remove(),this.cursor=null):(this.cursor||(this.cursor=this.view.scrollDOM.appendChild(document.createElement("div")),this.cursor.className="cm-dropCursor"),(e.startState.field(Hw)!=n||e.docChanged||e.geometryChanged)&&this.view.requestMeasure(this.measureReq))}readPos(){let{view:e}=this,t=e.state.field(Hw),n=t!=null&&e.coordsAtPos(t);if(!n)return null;let i=e.scrollDOM.getBoundingClientRect();return{left:n.left-i.left+e.scrollDOM.scrollLeft*e.scaleX,top:n.top-i.top+e.scrollDOM.scrollTop*e.scaleY,height:n.bottom-n.top}}drawCursor(e){if(this.cursor){let{scaleX:t,scaleY:n}=this.view;e?(this.cursor.style.left=e.left/t+"px",this.cursor.style.top=e.top/n+"px",this.cursor.style.height=e.height/n+"px"):this.cursor.style.left="-100000px"}}destroy(){this.cursor&&this.cursor.remove()}setDropPos(e){this.view.state.field(Hw)!=e&&this.view.dispatch({effects:U2e.of(e)})}},{eventObservers:{dragover(e){this.setDropPos(this.view.posAtCoords({x:e.clientX,y:e.clientY}))},dragleave(e){(e.target==this.view.contentDOM||!this.view.contentDOM.contains(e.relatedTarget))&&this.setDropPos(null)},dragend(){this.setDropPos(null)},drop(){this.setDropPos(null)}}});function cTt(){return[Hw,lTt]}function aJ(e,t,n,i,r){t.lastIndex=0;for(let s=e.iterRange(n,i),a=n,l;!s.next().done;a+=s.value.length)if(!s.lineBreak)for(;l=t.exec(s.value);)r(a+l.index,l)}function uTt(e,t){let n=e.visibleRanges;if(n.length==1&&n[0].from==e.viewport.from&&n[0].to==e.viewport.to)return n;let i=[];for(let{from:r,to:s}of n)r=Math.max(e.state.doc.lineAt(r).from,r-t),s=Math.min(e.state.doc.lineAt(s).to,s+t),i.length&&i[i.length-1].to>=r?i[i.length-1].to=s:i.push({from:r,to:s});return i}class dTt{constructor(t){const{regexp:n,decoration:i,decorate:r,boundary:s,maxLength:a=1e3}=t;if(!n.global)throw new RangeError("The regular expression given to MatchDecorator should have its 'g' flag set");if(this.regexp=n,r)this.addMatch=(l,c,u,d)=>r(d,u,u+l[0].length,l,c);else if(typeof i=="function")this.addMatch=(l,c,u,d)=>{let f=i(l,c,u);f&&d(u,u+l[0].length,f)};else if(i)this.addMatch=(l,c,u,d)=>d(u,u+l[0].length,i);else throw new RangeError("Either 'decorate' or 'decoration' should be provided to MatchDecorator");this.boundary=s,this.maxLength=a}createDeco(t){let n=new Ah,i=n.add.bind(n);for(let{from:r,to:s}of uTt(t,this.maxLength))aJ(t.state.doc,this.regexp,r,s,(a,l)=>this.addMatch(l,t,a,i));return n.finish()}updateDeco(t,n){let i=1e9,r=-1;return t.docChanged&&t.changes.iterChanges((s,a,l,c)=>{c>=t.view.viewport.from&&l<=t.view.viewport.to&&(i=Math.min(l,i),r=Math.max(c,r))}),t.viewportMoved||r-i>1e3?this.createDeco(t.view):r>-1?this.updateRange(t.view,n.map(t.changes),i,r):n}updateRange(t,n,i,r){for(let s of t.visibleRanges){let a=Math.max(s.from,i),l=Math.min(s.to,r);if(l>=a){let c=t.state.doc.lineAt(a),u=c.toc.from;a--)if(this.boundary.test(c.text[a-1-c.from])){d=a;break}for(;lh.push(y.range(b,v));if(c==u)for(this.regexp.lastIndex=d-c.from;(m=this.regexp.exec(c.text))&&m.indexthis.addMatch(v,t,b,g));n=n.update({filterFrom:d,filterTo:f,filter:(b,v)=>bf,add:h})}}return n}}const z$=/x/.unicode!=null?"gu":"g",fTt=new RegExp(`[\0-\b ---Ÿ­؜​‎‏\u2028\u2029‭‮⁦⁧⁩\uFEFF-]`,z$),hTt={0:"null",7:"bell",8:"backspace",10:"newline",11:"vertical tab",13:"carriage return",27:"escape",8203:"zero width space",8204:"zero width non-joiner",8205:"zero width joiner",8206:"left-to-right mark",8207:"right-to-left mark",8232:"line separator",8237:"left-to-right override",8238:"right-to-left override",8294:"left-to-right isolate",8295:"right-to-left isolate",8297:"pop directional isolate",8233:"paragraph separator",65279:"zero width no-break space",65532:"object replacement"};let p5=null;function pTt(){var e;if(p5==null&&typeof document<"u"&&document.body){let t=document.body.style;p5=((e=t.tabSize)!==null&&e!==void 0?e:t.MozTabSize)!=null}return p5||!1}const RA=Zt.define({combine(e){let t=ef(e,{render:null,specialChars:fTt,addSpecialChars:null});return(t.replaceTabs=!pTt())&&(t.specialChars=new RegExp(" |"+t.specialChars.source,z$)),t.addSpecialChars&&(t.specialChars=new RegExp(t.specialChars.source+"|"+t.addSpecialChars.source,z$)),t}});function mTt(e={}){return[RA.of(e),gTt()]}let oJ=null;function gTt(){return oJ||(oJ=Ts.fromClass(class{constructor(e){this.view=e,this.decorations=gn.none,this.decorationCache=Object.create(null),this.decorator=this.makeDecorator(e.state.facet(RA)),this.decorations=this.decorator.createDeco(e)}makeDecorator(e){return new dTt({regexp:e.specialChars,decoration:(t,n,i)=>{let{doc:r}=n.state,s=ol(t[0],0);if(s==9){let a=r.lineAt(i),l=n.state.tabSize,c=Uu(a.text,l,i-a.from);return gn.replace({widget:new xTt((l-c%l)*this.view.defaultCharacterWidth/this.view.scaleX)})}return this.decorationCache[s]||(this.decorationCache[s]=gn.replace({widget:new vTt(e,s)}))},boundary:e.replaceTabs?void 0:/[^]/})}update(e){let t=e.state.facet(RA);e.startState.facet(RA)!=t?(this.decorator=this.makeDecorator(t),this.decorations=this.decorator.createDeco(e.view)):this.decorations=this.decorator.updateDeco(e,this.decorations)}},{decorations:e=>e.decorations}))}const bTt="•";function yTt(e){return e>=32?bTt:e==10?"␤":String.fromCharCode(9216+e)}class vTt extends Yu{constructor(t,n){super(),this.options=t,this.code=n}eq(t){return t.code==this.code}toDOM(t){let n=yTt(this.code),i=t.state.phrase("Control character")+" "+(hTt[this.code]||"0x"+this.code.toString(16)),r=this.options.render&&this.options.render(this.code,i,n);if(r)return r;let s=document.createElement("span");return s.textContent=n,s.title=i,s.setAttribute("aria-label",i),s.className="cm-specialChar",s}ignoreEvent(){return!1}}class xTt extends Yu{constructor(t){super(),this.width=t}eq(t){return t.width==this.width}toDOM(){let t=document.createElement("span");return t.textContent=" ",t.className="cm-tab",t.style.width=this.width+"px",t}ignoreEvent(){return!1}}function wTt(){return STt}const OTt=gn.line({class:"cm-activeLine"}),STt=Ts.fromClass(class{constructor(e){this.decorations=this.getDeco(e)}update(e){(e.docChanged||e.selectionSet)&&(this.decorations=this.getDeco(e.view))}getDeco(e){let t=-1,n=[];for(let i of e.state.selection.ranges){let r=e.lineBlockAt(i.head);r.from>t&&(n.push(OTt.range(r.from)),t=r.from)}return gn.set(n)}},{decorations:e=>e.decorations});class kTt extends Yu{constructor(t){super(),this.content=t}toDOM(t){let n=document.createElement("span");return n.className="cm-placeholder",n.style.pointerEvents="none",n.appendChild(typeof this.content=="string"?document.createTextNode(this.content):typeof this.content=="function"?this.content(t):this.content.cloneNode(!0)),n.setAttribute("aria-hidden","true"),n}coordsAt(t){let n=t.firstChild?BO(t.firstChild):[];if(!n.length)return null;let i=window.getComputedStyle(t.parentNode),r=ik(n[0],i.direction!="rtl"),s=parseInt(i.lineHeight);return r.bottom-r.top>s*1.5?{left:r.left,right:r.right,top:r.top,bottom:r.top+s}:r}ignoreEvent(){return!1}}function ETt(e){let t=Ts.fromClass(class{constructor(n){this.view=n,this.placeholder=e?gn.set([gn.widget({widget:new kTt(e),side:1}).range(0)]):gn.none}get decorations(){return this.view.state.doc.length?gn.none:this.placeholder}},{decorations:n=>n.decorations});return typeof e=="string"?[t,Ft.contentAttributes.of({"aria-placeholder":e})]:t}const V$=2e3;function CTt(e,t,n){let i=Math.min(t.line,n.line),r=Math.max(t.line,n.line),s=[];if(t.off>V$||n.off>V$||t.col<0||n.col<0){let a=Math.min(t.off,n.off),l=Math.max(t.off,n.off);for(let c=i;c<=r;c++){let u=e.doc.line(c);u.length<=l&&s.push(it.range(u.from+a,u.to+l))}}else{let a=Math.min(t.col,n.col),l=Math.max(t.col,n.col);for(let c=i;c<=r;c++){let u=e.doc.line(c),d=S$(u.text,a,e.tabSize,!0);if(d<0)s.push(it.cursor(u.to));else{let f=S$(u.text,l,e.tabSize);s.push(it.range(u.from+d,u.from+f))}}}return s}function TTt(e,t){let n=e.coordsAtPos(e.viewport.from);return n?Math.round(Math.abs((n.left-t)/e.defaultCharacterWidth)):-1}function lJ(e,t){let n=e.posAtCoords({x:t.clientX,y:t.clientY},!1),i=e.state.doc.lineAt(n),r=n-i.from,s=r>V$?-1:r==i.length?TTt(e,t.clientX):Uu(i.text,e.state.tabSize,n-i.from);return{line:i.number,col:s,off:r}}function ATt(e,t){let n=lJ(e,t),i=e.state.selection;return n?{update(r){if(r.docChanged){let s=r.changes.mapPos(r.startState.doc.line(n.line).from),a=r.state.doc.lineAt(s);n={line:a.number,col:n.col,off:Math.min(n.off,a.length)},i=i.map(r.changes)}},get(r,s,a){let l=lJ(e,r);if(!l)return i;let c=CTt(e.state,n,l);return c.length?a?it.create(c.concat(i.ranges)):it.create(c):i}}:null}function _Tt(e){let t=n=>n.altKey&&n.button==0;return Ft.mouseSelectionStyle.of((n,i)=>t(i)?ATt(n,i):null)}const NTt={Alt:[18,e=>!!e.altKey],Control:[17,e=>!!e.ctrlKey],Shift:[16,e=>!!e.shiftKey],Meta:[91,e=>!!e.metaKey]},jTt={style:"cursor: crosshair"};function RTt(e={}){let[t,n]=NTt[e.key||"Alt"],i=Ts.fromClass(class{constructor(r){this.view=r,this.isDown=!1}set(r){this.isDown!=r&&(this.isDown=r,this.view.update([]))}},{eventObservers:{keydown(r){this.set(r.keyCode==t||n(r))},keyup(r){(r.keyCode==t||!n(r))&&this.set(!1)},mousemove(r){this.set(n(r))}}});return[i,Ft.contentAttributes.of(r=>{var s;return!((s=r.plugin(i))===null||s===void 0)&&s.isDown?jTt:null})]}const i2="-10000px";class Q2e{constructor(t,n,i,r){this.facet=n,this.createTooltipView=i,this.removeTooltipView=r,this.input=t.state.facet(n),this.tooltips=this.input.filter(a=>a);let s=null;this.tooltipViews=this.tooltips.map(a=>s=i(a,s))}update(t,n){var i;let r=t.state.facet(this.facet),s=r.filter(c=>c);if(r===this.input){for(let c of this.tooltipViews)c.update&&c.update(t);return!1}let a=[],l=n?[]:null;for(let c=0;cn[u]=c),n.length=l.length),this.input=r,this.tooltips=s,this.tooltipViews=a,!0}}function ITt(e){let t=e.dom.ownerDocument.documentElement;return{top:0,left:0,bottom:t.clientHeight,right:t.clientWidth}}const m5=Zt.define({combine:e=>{var t,n,i;return{position:Xt.ios?"absolute":((t=e.find(r=>r.position))===null||t===void 0?void 0:t.position)||"fixed",parent:((n=e.find(r=>r.parent))===null||n===void 0?void 0:n.parent)||null,tooltipSpace:((i=e.find(r=>r.tooltipSpace))===null||i===void 0?void 0:i.tooltipSpace)||ITt}}}),cJ=new WeakMap,aQ=Ts.fromClass(class{constructor(e){this.view=e,this.above=[],this.inView=!0,this.madeAbsolute=!1,this.lastTransaction=0,this.measureTimeout=-1;let t=e.state.facet(m5);this.position=t.position,this.parent=t.parent,this.classes=e.themeClasses,this.createContainer(),this.measureReq={read:this.readMeasure.bind(this),write:this.writeMeasure.bind(this),key:this},this.resizeObserver=typeof ResizeObserver=="function"?new ResizeObserver(()=>this.measureSoon()):null,this.manager=new Q2e(e,oQ,(n,i)=>this.createTooltip(n,i),n=>{this.resizeObserver&&this.resizeObserver.unobserve(n.dom),n.dom.remove()}),this.above=this.manager.tooltips.map(n=>!!n.above),this.intersectionObserver=typeof IntersectionObserver=="function"?new IntersectionObserver(n=>{Date.now()>this.lastTransaction-50&&n.length>0&&n[n.length-1].intersectionRatio<1&&this.measureSoon()},{threshold:[1]}):null,this.observeIntersection(),e.win.addEventListener("resize",this.measureSoon=this.measureSoon.bind(this)),this.maybeMeasure()}createContainer(){this.parent?(this.container=document.createElement("div"),this.container.style.position="relative",this.container.className=this.view.themeClasses,this.parent.appendChild(this.container)):this.container=this.view.dom}observeIntersection(){if(this.intersectionObserver){this.intersectionObserver.disconnect();for(let e of this.manager.tooltipViews)this.intersectionObserver.observe(e.dom)}}measureSoon(){this.measureTimeout<0&&(this.measureTimeout=setTimeout(()=>{this.measureTimeout=-1,this.maybeMeasure()},50))}update(e){e.transactions.length&&(this.lastTransaction=Date.now());let t=this.manager.update(e,this.above);t&&this.observeIntersection();let n=t||e.geometryChanged,i=e.state.facet(m5);if(i.position!=this.position&&!this.madeAbsolute){this.position=i.position;for(let r of this.manager.tooltipViews)r.dom.style.position=this.position;n=!0}if(i.parent!=this.parent){this.parent&&this.container.remove(),this.parent=i.parent,this.createContainer();for(let r of this.manager.tooltipViews)this.container.appendChild(r.dom);n=!0}else this.parent&&this.view.themeClasses!=this.classes&&(this.classes=this.container.className=this.view.themeClasses);n&&this.maybeMeasure()}createTooltip(e,t){let n=e.create(this.view),i=t?t.dom:null;if(n.dom.classList.add("cm-tooltip"),e.arrow&&!n.dom.querySelector(".cm-tooltip > .cm-tooltip-arrow")){let r=document.createElement("div");r.className="cm-tooltip-arrow",n.dom.appendChild(r)}return n.dom.style.position=this.position,n.dom.style.top=i2,n.dom.style.left="0px",this.container.insertBefore(n.dom,i),n.mount&&n.mount(this.view),this.resizeObserver&&this.resizeObserver.observe(n.dom),n}destroy(){var e,t,n;this.view.win.removeEventListener("resize",this.measureSoon);for(let i of this.manager.tooltipViews)i.dom.remove(),(e=i.destroy)===null||e===void 0||e.call(i);this.parent&&this.container.remove(),(t=this.resizeObserver)===null||t===void 0||t.disconnect(),(n=this.intersectionObserver)===null||n===void 0||n.disconnect(),clearTimeout(this.measureTimeout)}readMeasure(){let e=1,t=1,n=!1;if(this.position=="fixed"&&this.manager.tooltipViews.length){let{dom:s}=this.manager.tooltipViews[0];if(Xt.safari){let a=s.getBoundingClientRect();n=Math.abs(a.top+1e4)>1||Math.abs(a.left)>1}else n=!!s.offsetParent&&s.offsetParent!=this.container.ownerDocument.body}if(n||this.position=="absolute")if(this.parent){let s=this.parent.getBoundingClientRect();s.width&&s.height&&(e=s.width/this.parent.offsetWidth,t=s.height/this.parent.offsetHeight)}else({scaleX:e,scaleY:t}=this.view.viewState);let i=this.view.scrollDOM.getBoundingClientRect(),r=nQ(this.view);return{visible:{left:i.left+r.left,top:i.top+r.top,right:i.right-r.right,bottom:i.bottom-r.bottom},parent:this.parent?this.container.getBoundingClientRect():this.view.dom.getBoundingClientRect(),pos:this.manager.tooltips.map((s,a)=>{let l=this.manager.tooltipViews[a];return l.getCoords?l.getCoords(s.pos):this.view.coordsAtPos(s.pos)}),size:this.manager.tooltipViews.map(({dom:s})=>s.getBoundingClientRect()),space:this.view.state.facet(m5).tooltipSpace(this.view),scaleX:e,scaleY:t,makeAbsolute:n}}writeMeasure(e){var t;if(e.makeAbsolute){this.madeAbsolute=!0,this.position="absolute";for(let l of this.manager.tooltipViews)l.dom.style.position="absolute"}let{visible:n,space:i,scaleX:r,scaleY:s}=e,a=[];for(let l=0;l=Math.min(n.bottom,i.bottom)||f.rightMath.min(n.right,i.right)+.1)){d.style.top=i2;continue}let m=c.arrow?u.dom.querySelector(".cm-tooltip-arrow"):null,g=m?7:0,b=h.right-h.left,v=(t=cJ.get(u))!==null&&t!==void 0?t:h.bottom-h.top,y=u.offset||DTt,x=this.view.textDirection==Cr.LTR,O=h.width>i.right-i.left?x?i.left:i.right-h.width:x?Math.max(i.left,Math.min(f.left-(m?14:0)+y.x,i.right-b)):Math.min(Math.max(i.left,f.left-b+(m?14:0)-y.x),i.right-b),w=this.above[l];!c.strictSide&&(w?f.top-v-g-y.yi.bottom)&&w==i.bottom-f.bottom>f.top-i.top&&(w=this.above[l]=!w);let k=(w?f.top-i.top:i.bottom-f.bottom)-g;if(kO&&C.topS&&(S=w?C.top-v-2-g:C.bottom+g+2);if(this.position=="absolute"?(d.style.top=(S-e.parent.top)/s+"px",uJ(d,(O-e.parent.left)/r)):(d.style.top=S/s+"px",uJ(d,O/r)),m){let C=f.left+(x?y.x:-y.x)-(O+14-7);m.style.left=C/r+"px"}u.overlap!==!0&&a.push({left:O,top:S,right:E,bottom:S+v}),d.classList.toggle("cm-tooltip-above",w),d.classList.toggle("cm-tooltip-below",!w),u.positioned&&u.positioned(e.space)}}maybeMeasure(){if(this.manager.tooltips.length&&(this.view.inView&&this.view.requestMeasure(this.measureReq),this.inView!=this.view.inView&&(this.inView=this.view.inView,!this.inView)))for(let e of this.manager.tooltipViews)e.dom.style.top=i2}},{eventObservers:{scroll(){this.maybeMeasure()}}});function uJ(e,t){let n=parseInt(e.style.left,10);(isNaN(n)||Math.abs(t-n)>1)&&(e.style.left=t+"px")}const PTt=Ft.baseTheme({".cm-tooltip":{zIndex:500,boxSizing:"border-box"},"&light .cm-tooltip":{border:"1px solid #bbb",backgroundColor:"#f5f5f5"},"&light .cm-tooltip-section:not(:first-child)":{borderTop:"1px solid #bbb"},"&dark .cm-tooltip":{backgroundColor:"#333338",color:"white"},".cm-tooltip-arrow":{height:"7px",width:`${7*2}px`,position:"absolute",zIndex:-1,overflow:"hidden","&:before, &:after":{content:"''",position:"absolute",width:0,height:0,borderLeft:"7px solid transparent",borderRight:"7px solid transparent"},".cm-tooltip-above &":{bottom:"-7px","&:before":{borderTop:"7px solid #bbb"},"&:after":{borderTop:"7px solid #f5f5f5",bottom:"1px"}},".cm-tooltip-below &":{top:"-7px","&:before":{borderBottom:"7px solid #bbb"},"&:after":{borderBottom:"7px solid #f5f5f5",top:"1px"}}},"&dark .cm-tooltip .cm-tooltip-arrow":{"&:before":{borderTopColor:"#333338",borderBottomColor:"#333338"},"&:after":{borderTopColor:"transparent",borderBottomColor:"transparent"}}}),DTt={x:0,y:0},oQ=Zt.define({enables:[aQ,PTt]}),FN=Zt.define({combine:e=>e.reduce((t,n)=>t.concat(n),[])});class EI{static create(t){return new EI(t)}constructor(t){this.view=t,this.mounted=!1,this.dom=document.createElement("div"),this.dom.classList.add("cm-tooltip-hover"),this.manager=new Q2e(t,FN,(n,i)=>this.createHostedView(n,i),n=>n.dom.remove())}createHostedView(t,n){let i=t.create(this.view);return i.dom.classList.add("cm-tooltip-section"),this.dom.insertBefore(i.dom,n?n.dom.nextSibling:this.dom.firstChild),this.mounted&&i.mount&&i.mount(this.view),i}mount(t){for(let n of this.manager.tooltipViews)n.mount&&n.mount(t);this.mounted=!0}positioned(t){for(let n of this.manager.tooltipViews)n.positioned&&n.positioned(t)}update(t){this.manager.update(t)}destroy(){var t;for(let n of this.manager.tooltipViews)(t=n.destroy)===null||t===void 0||t.call(n)}passProp(t){let n;for(let i of this.manager.tooltipViews){let r=i[t];if(r!==void 0){if(n===void 0)n=r;else if(n!==r)return}}return n}get offset(){return this.passProp("offset")}get getCoords(){return this.passProp("getCoords")}get overlap(){return this.passProp("overlap")}get resize(){return this.passProp("resize")}}const MTt=oQ.compute([FN],e=>{let t=e.facet(FN);return t.length===0?null:{pos:Math.min(...t.map(n=>n.pos)),end:Math.max(...t.map(n=>{var i;return(i=n.end)!==null&&i!==void 0?i:n.pos})),create:EI.create,above:t[0].above,arrow:t.some(n=>n.arrow)}}),z2e=Zt.define();class LTt{constructor(t,n,i,r,s,a){this.view=t,this.source=n,this.field=i,this.locked=r,this.setHover=s,this.hoverTime=a,this.hoverTimeout=-1,this.restartTimeout=-1,this.pending=null,this.lastMove={x:0,y:0,target:t.dom,time:0},this.checkHover=this.checkHover.bind(this),t.dom.addEventListener("mouseleave",this.mouseleave=this.mouseleave.bind(this)),t.dom.addEventListener("mousemove",this.mousemove=this.mousemove.bind(this))}update(t){this.pending&&(this.pending=null,clearTimeout(this.restartTimeout),this.restartTimeout=setTimeout(()=>this.startHover(),20))}get active(){return this.view.state.field(this.field)}checkHover(){if(this.hoverTimeout=-1,this.active.length)return;let t=Date.now()-this.lastMove.time;ta.bottom||n.xa.right+t.defaultCharacterWidth)return;let l=t.bidiSpans(t.state.doc.lineAt(r)).find(u=>u.from<=r&&u.to>=r),c=l&&l.dir==Cr.RTL?-1:1;s=n.x{if(l&&!(Array.isArray(l)&&!l.length)){let c=Array.isArray(l)?l:[l];r&&this.locked.set(c,r),t.dispatch({effects:this.setHover.of(c)})}};if(s&&"then"in s){let l=this.pending={pos:n};s.then(c=>{this.pending==l&&(this.pending=null,a(c))},c=>hl(t.state,c,"hover tooltip"))}else a(s)}get tooltip(){let t=this.view.plugin(aQ),n=t?t.manager.tooltips.findIndex(i=>i.create==EI.create):-1;return n>-1?t.manager.tooltipViews[n]:null}mousemove(t){var n,i;this.lastMove={x:t.clientX,y:t.clientY,target:t.target,time:Date.now()},this.hoverTimeout<0&&(this.hoverTimeout=setTimeout(this.checkHover,this.hoverTime));let{active:r,tooltip:s}=this;if(r.length&&!this.locked.has(r)&&s&&!$Tt(s.dom,t)||this.pending){let{pos:a}=r[0]||this.pending,l=(i=(n=r[0])===null||n===void 0?void 0:n.end)!==null&&i!==void 0?i:a;(a==l?this.view.posAtCoords(this.lastMove)!=a:!FTt(this.view,a,l,t.clientX,t.clientY))&&(this.view.dispatch({effects:this.setHover.of([])}),this.pending=null)}}mouseleave(t){clearTimeout(this.hoverTimeout),this.hoverTimeout=-1;let{active:n}=this;if(n.length&&!this.locked.has(n)){let{tooltip:i}=this;i&&i.dom.contains(t.relatedTarget)?this.watchTooltipLeave(i.dom):this.view.dispatch({effects:this.setHover.of([])})}}watchTooltipLeave(t){let n=i=>{t.removeEventListener("mouseleave",n);let{active:r}=this;r.length&&!this.locked.has(r)&&!this.view.dom.contains(i.relatedTarget)&&this.view.dispatch({effects:this.setHover.of([])})};t.addEventListener("mouseleave",n)}destroy(){clearTimeout(this.hoverTimeout),clearTimeout(this.restartTimeout),this.view.dom.removeEventListener("mouseleave",this.mouseleave),this.view.dom.removeEventListener("mousemove",this.mousemove)}}const r2=4;function $Tt(e,t){let{left:n,right:i,top:r,bottom:s}=e.getBoundingClientRect(),a;if(a=e.querySelector(".cm-tooltip-arrow")){let l=a.getBoundingClientRect();r=Math.min(l.top,r),s=Math.max(l.bottom,s)}return t.clientX>=n-r2&&t.clientX<=i+r2&&t.clientY>=r-r2&&t.clientY<=s+r2}function FTt(e,t,n,i,r,s){let a=e.scrollDOM.getBoundingClientRect(),l=e.documentTop+e.documentPadding.top+e.contentHeight;if(a.left>i||a.rightr||Math.min(a.bottom,l)=t&&c<=n}function BTt(e,t={}){let n=Fn.define(),i=new WeakMap,r=ro.define({create(){return[]},update(a,l){let c=i.get(a);if(a.length&&(t.hideOnChange&&(l.docChanged||l.selection)?a=[]:c&&c(l)?a=[]:t.hideOn&&(a=a.filter(u=>!t.hideOn(l,u)))),l.docChanged&&a.length){let u=[];for(let d of a){let f=l.changes.mapPos(d.pos,-1,eo.TrackDel);if(f!=null){let h=Object.assign(Object.create(null),d);h.pos=f,h.end!=null&&(h.end=l.changes.mapPos(h.end)),u.push(h)}}a=u}for(let u of l.effects)u.is(n)&&(a=u.value,c=void 0),(u.is(QTt)&&!u.value||u.value==r)&&(a=[]);return a.length&&c&&i.set(a,c),a},provide:a=>FN.from(a)});const s=Ts.define(a=>new LTt(a,e,r,i,n,t.hoverTime||300));return{active:r,extension:[r,s,z2e.of(s),MTt]}}function UTt(e,t,n,i={}){var r;let s=e.state.facet(z2e).map(a=>e.plugin(a)).filter(a=>!!a);if(i.tooltip&&i.tooltip.active){let a=s.find(l=>l.field==i.tooltip.active);a&&(s=[a])}for(let a of s)a.activateHover(e,t,n,(r=i.until)!==null&&r!==void 0?r:()=>!1)}function V2e(e,t){let n=e.plugin(aQ);if(!n)return null;let i=n.manager.tooltips.indexOf(t);return i<0?null:n.manager.tooltipViews[i]}const QTt=Fn.define(),dJ=Zt.define({combine(e){let t,n;for(let i of e)t=t||i.topContainer,n=n||i.bottomContainer;return{topContainer:t,bottomContainer:n}}});function lQ(e,t){let n=e.plugin(H2e),i=n?n.specs.indexOf(t):-1;return i>-1?n.panels[i]:null}const H2e=Ts.fromClass(class{constructor(e){this.input=e.state.facet(sk),this.specs=this.input.filter(n=>n),this.panels=this.specs.map(n=>n(e));let t=e.state.facet(dJ);this.top=new s2(e,!0,t.topContainer),this.bottom=new s2(e,!1,t.bottomContainer),this.top.sync(this.panels.filter(n=>n.top)),this.bottom.sync(this.panels.filter(n=>!n.top));for(let n of this.panels)n.dom.classList.add("cm-panel"),n.mount&&n.mount()}update(e){let t=e.state.facet(dJ);this.top.container!=t.topContainer&&(this.top.sync([]),this.top=new s2(e.view,!0,t.topContainer)),this.bottom.container!=t.bottomContainer&&(this.bottom.sync([]),this.bottom=new s2(e.view,!1,t.bottomContainer)),this.top.syncClasses(),this.bottom.syncClasses();let n=e.state.facet(sk);if(n!=this.input){let i=n.filter(c=>c),r=[],s=[],a=[],l=[];for(let c of i){let u=this.specs.indexOf(c),d;u<0?(d=c(e.view),l.push(d)):(d=this.panels[u],d.update&&d.update(e)),r.push(d),(d.top?s:a).push(d)}this.specs=i,this.panels=r,this.top.sync(s),this.bottom.sync(a);for(let c of l)c.dom.classList.add("cm-panel"),c.mount&&c.mount()}else for(let i of this.panels)i.update&&i.update(e)}destroy(){this.top.sync([]),this.bottom.sync([])}},{provide:e=>Ft.scrollMargins.of(t=>{let n=t.plugin(e);return n&&{top:n.top.scrollMargin(),bottom:n.bottom.scrollMargin()}})});class s2{constructor(t,n,i){this.view=t,this.top=n,this.container=i,this.dom=void 0,this.classes="",this.panels=[],this.syncClasses()}sync(t){for(let n of this.panels)n.destroy&&t.indexOf(n)<0&&n.destroy();this.panels=t,this.syncDOM()}syncDOM(){if(this.panels.length==0){this.dom&&(this.dom.remove(),this.dom=void 0);return}if(!this.dom){this.dom=document.createElement("div"),this.dom.className=this.top?"cm-panels cm-panels-top":"cm-panels cm-panels-bottom",this.dom.style[this.top?"top":"bottom"]="0";let n=this.container||this.view.dom;n.insertBefore(this.dom,this.top?n.firstChild:null)}let t=this.dom.firstChild;for(let n of this.panels)if(n.dom.parentNode==this.dom){for(;t!=n.dom;)t=fJ(t);t=t.nextSibling}else this.dom.insertBefore(n.dom,t);for(;t;)t=fJ(t)}scrollMargin(){return!this.dom||this.container?0:Math.max(0,this.top?this.dom.getBoundingClientRect().bottom-Math.max(0,this.view.scrollDOM.getBoundingClientRect().top):Math.min(innerHeight,this.view.scrollDOM.getBoundingClientRect().bottom)-this.dom.getBoundingClientRect().top)}syncClasses(){if(!(!this.container||this.classes==this.view.themeClasses)){for(let t of this.classes.split(" "))t&&this.container.classList.remove(t);for(let t of(this.classes=this.view.themeClasses).split(" "))t&&this.container.classList.add(t)}}}function fJ(e){let t=e.nextSibling;return e.remove(),t}const sk=Zt.define({enables:H2e});function zTt(e,t){let n,i=new Promise(a=>n=a),r=a=>VTt(a,t,n);e.state.field(g5,!1)?e.dispatch({effects:q2e.of(r)}):e.dispatch({effects:Fn.appendConfig.of(g5.init(()=>[r]))});let s=W2e.of(r);return{close:s,result:i.then(a=>((e.win.queueMicrotask||(c=>e.win.setTimeout(c,10)))(()=>{e.state.field(g5).indexOf(r)>-1&&e.dispatch({effects:s})}),a))}}const g5=ro.define({create(){return[]},update(e,t){for(let n of t.effects)n.is(q2e)?e=[n.value].concat(e):n.is(W2e)&&(e=e.filter(i=>i!=n.value));return e},provide:e=>sk.computeN([e],t=>t.field(e))}),q2e=Fn.define(),W2e=Fn.define();function VTt(e,t,n){let i=t.content?t.content(e,()=>a(null)):null;if(!i){if(i=yr("form"),t.input){let l=yr("input",t.input);/^(text|password|number|email|tel|url)$/.test(l.type)&&l.classList.add("cm-textfield"),l.name||(l.name="input"),i.appendChild(yr("label",(t.label||"")+": ",l))}else i.appendChild(document.createTextNode(t.label||""));i.appendChild(document.createTextNode(" ")),i.appendChild(yr("button",{class:"cm-button",type:"submit"},t.submitLabel||"OK"))}let r=i.nodeName=="FORM"?[i]:i.querySelectorAll("form");for(let l=0;l{u.keyCode==27?(u.preventDefault(),a(null)):u.keyCode==13&&(u.preventDefault(),a(c))}),c.addEventListener("submit",u=>{u.preventDefault(),a(c)})}let s=yr("div",i,yr("button",{onclick:()=>a(null),"aria-label":e.state.phrase("close"),class:"cm-dialog-close",type:"button"},["×"]));t.class&&(s.className=t.class),s.classList.add("cm-dialog");function a(l){s.contains(s.ownerDocument.activeElement)&&e.focus(),n(l)}return{dom:s,top:t.top,mount:()=>{if(t.focus){let l;typeof t.focus=="string"?l=i.querySelector(t.focus):l=i.querySelector("input")||i.querySelector("button"),l&&"select"in l?l.select():l&&"focus"in l&&l.focus()}}}}class Nh extends Em{compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}eq(t){return!1}destroy(t){}}Nh.prototype.elementClass="";Nh.prototype.toDOM=void 0;Nh.prototype.mapMode=eo.TrackBefore;Nh.prototype.startSide=Nh.prototype.endSide=-1;Nh.prototype.point=!0;const IA=Zt.define(),HTt=Zt.define(),qTt={class:"",renderEmptyElements:!1,elementStyle:"",markers:()=>xi.empty,lineMarker:()=>null,widgetMarker:()=>null,lineMarkerChange:null,initialSpacer:null,updateSpacer:null,domEventHandlers:{},side:"before"},zO=Zt.define();function WTt(e){return[G2e(),zO.of({...qTt,...e})]}const hJ=Zt.define({combine:e=>e.some(t=>t)});function G2e(e){return[GTt]}const GTt=Ts.fromClass(class{constructor(e){this.view=e,this.domAfter=null,this.prevViewport=e.viewport,this.dom=document.createElement("div"),this.dom.className="cm-gutters cm-gutters-before",this.dom.setAttribute("aria-hidden","true"),this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.gutters=e.state.facet(zO).map(t=>new mJ(e,t)),this.fixed=!e.state.facet(hJ);for(let t of this.gutters)t.config.side=="after"?this.getDOMAfter().appendChild(t.dom):this.dom.appendChild(t.dom);this.fixed&&(this.dom.style.position="sticky"),this.syncGutters(!1),e.scrollDOM.insertBefore(this.dom,e.contentDOM)}getDOMAfter(){return this.domAfter||(this.domAfter=document.createElement("div"),this.domAfter.className="cm-gutters cm-gutters-after",this.domAfter.setAttribute("aria-hidden","true"),this.domAfter.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.domAfter.style.position=this.fixed?"sticky":"",this.view.scrollDOM.appendChild(this.domAfter)),this.domAfter}update(e){if(this.updateGutters(e)){let t=this.prevViewport,n=e.view.viewport,i=Math.min(t.to,n.to)-Math.max(t.from,n.from);this.syncGutters(i<(n.to-n.from)*.8)}if(e.geometryChanged){let t=this.view.contentHeight/this.view.scaleY+"px";this.dom.style.minHeight=t,this.domAfter&&(this.domAfter.style.minHeight=t)}this.view.state.facet(hJ)!=!this.fixed&&(this.fixed=!this.fixed,this.dom.style.position=this.fixed?"sticky":"",this.domAfter&&(this.domAfter.style.position=this.fixed?"sticky":"")),this.prevViewport=e.view.viewport}syncGutters(e){let t=this.dom.nextSibling;e&&(this.dom.remove(),this.domAfter&&this.domAfter.remove());let n=xi.iter(this.view.state.facet(IA),this.view.viewport.from),i=[],r=this.gutters.map(s=>new KTt(s,this.view.viewport,-this.view.documentPadding.top));for(let s of this.view.viewportLineBlocks)if(i.length&&(i=[]),Array.isArray(s.type)){let a=!0;for(let l of s.type)if(l.type==io.Text&&a){H$(n,i,l.from);for(let c of r)c.line(this.view,l,i);a=!1}else if(l.widget)for(let c of r)c.widget(this.view,l)}else if(s.type==io.Text){H$(n,i,s.from);for(let a of r)a.line(this.view,s,i)}else if(s.widget)for(let a of r)a.widget(this.view,s);for(let s of r)s.finish();e&&(this.view.scrollDOM.insertBefore(this.dom,t),this.domAfter&&this.view.scrollDOM.appendChild(this.domAfter))}updateGutters(e){let t=e.startState.facet(zO),n=e.state.facet(zO),i=e.docChanged||e.heightChanged||e.viewportChanged||!xi.eq(e.startState.facet(IA),e.state.facet(IA),e.view.viewport.from,e.view.viewport.to);if(t==n)for(let r of this.gutters)r.update(e)&&(i=!0);else{i=!0;let r=[];for(let s of n){let a=t.indexOf(s);a<0?r.push(new mJ(this.view,s)):(this.gutters[a].update(e),r.push(this.gutters[a]))}for(let s of this.gutters)s.dom.remove(),r.indexOf(s)<0&&s.destroy();for(let s of r)s.config.side=="after"?this.getDOMAfter().appendChild(s.dom):this.dom.appendChild(s.dom);this.gutters=r}return i}destroy(){for(let e of this.gutters)e.destroy();this.dom.remove(),this.domAfter&&this.domAfter.remove()}},{provide:e=>Ft.scrollMargins.of(t=>{let n=t.plugin(e);if(!n||n.gutters.length==0||!n.fixed)return null;let i=n.dom.offsetWidth*t.scaleX,r=n.domAfter?n.domAfter.offsetWidth*t.scaleX:0;return t.textDirection==Cr.LTR?{left:i,right:r}:{right:i,left:r}})});function pJ(e){return Array.isArray(e)?e:[e]}function H$(e,t,n){for(;e.value&&e.from<=n;)e.from==n&&t.push(e.value),e.next()}class KTt{constructor(t,n,i){this.gutter=t,this.height=i,this.i=0,this.cursor=xi.iter(t.markers,n.from)}addElement(t,n,i){let{gutter:r}=this,s=(n.top-this.height)/t.scaleY,a=n.height/t.scaleY;if(this.i==r.elements.length){let l=new K2e(t,a,s,i);r.elements.push(l),r.dom.appendChild(l.dom)}else r.elements[this.i].update(t,a,s,i);this.height=n.bottom,this.i++}line(t,n,i){let r=[];H$(this.cursor,r,n.from),i.length&&(r=r.concat(i));let s=this.gutter.config.lineMarker(t,n,r);s&&r.unshift(s);let a=this.gutter;r.length==0&&!a.config.renderEmptyElements||this.addElement(t,n,r)}widget(t,n){let i=this.gutter.config.widgetMarker(t,n.widget,n),r=i?[i]:null;for(let s of t.state.facet(HTt)){let a=s(t,n.widget,n);a&&(r||(r=[])).push(a)}r&&this.addElement(t,n,r)}finish(){let t=this.gutter;for(;t.elements.length>this.i;){let n=t.elements.pop();t.dom.removeChild(n.dom),n.destroy()}}}class mJ{constructor(t,n){this.view=t,this.config=n,this.elements=[],this.spacer=null,this.dom=document.createElement("div"),this.dom.className="cm-gutter"+(this.config.class?" "+this.config.class:"");for(let i in n.domEventHandlers)this.dom.addEventListener(i,r=>{let s=r.target,a;if(s!=this.dom&&this.dom.contains(s)){for(;s.parentNode!=this.dom;)s=s.parentNode;let c=s.getBoundingClientRect();a=(c.top+c.bottom)/2}else a=r.clientY;let l=t.lineBlockAtHeight(a-t.documentTop);n.domEventHandlers[i](t,l,r)&&r.preventDefault()});this.markers=pJ(n.markers(t)),n.initialSpacer&&(this.spacer=new K2e(t,0,0,[n.initialSpacer(t)]),this.dom.appendChild(this.spacer.dom),this.spacer.dom.style.cssText+="visibility: hidden; pointer-events: none")}update(t){let n=this.markers;if(this.markers=pJ(this.config.markers(t.view)),this.spacer&&this.config.updateSpacer){let r=this.config.updateSpacer(this.spacer.markers[0],t);r!=this.spacer.markers[0]&&this.spacer.update(t.view,0,0,[r])}let i=t.view.viewport;return!xi.eq(this.markers,n,i.from,i.to)||(this.config.lineMarkerChange?this.config.lineMarkerChange(t):!1)}destroy(){for(let t of this.elements)t.destroy()}}class K2e{constructor(t,n,i,r){this.height=-1,this.above=0,this.markers=[],this.dom=document.createElement("div"),this.dom.className="cm-gutterElement",this.update(t,n,i,r)}update(t,n,i,r){this.height!=n&&(this.height=n,this.dom.style.height=n+"px"),this.above!=i&&(this.dom.style.marginTop=(this.above=i)?i+"px":""),XTt(this.markers,r)||this.setMarkers(t,r)}setMarkers(t,n){let i="cm-gutterElement",r=this.dom.firstChild;for(let s=0,a=0;;){let l=a,c=ss(l,c,u)||a(l,c,u):a}return i}})}});class b5 extends Nh{constructor(t){super(),this.number=t}eq(t){return this.number==t.number}toDOM(){return document.createTextNode(this.number)}}function y5(e,t){return e.state.facet(Ly).formatNumber(t,e.state)}const JTt=zO.compute([Ly],e=>({class:"cm-lineNumbers",renderEmptyElements:!1,markers(t){return t.state.facet(YTt)},lineMarker(t,n,i){return i.some(r=>r.toDOM)?null:new b5(y5(t,t.state.doc.lineAt(n.from).number))},widgetMarker:(t,n,i)=>{for(let r of t.state.facet(ZTt)){let s=r(t,n,i);if(s)return s}return null},lineMarkerChange:t=>t.startState.facet(Ly)!=t.state.facet(Ly),initialSpacer(t){return new b5(y5(t,gJ(t.state.doc.lines)))},updateSpacer(t,n){let i=y5(n.view,gJ(n.view.state.doc.lines));return i==t.number?t:new b5(i)},domEventHandlers:e.facet(Ly).domEventHandlers,side:"before"}));function X2e(e={}){return[Ly.of(e),G2e(),JTt]}function gJ(e){let t=9;for(;t{let t=[],n=-1;for(let i of e.selection.ranges){let r=e.doc.lineAt(i.head).from;r>n&&(n=r,t.push(e2t.range(r)))}return xi.of(t)});function n2t(){return t2t}let i2t=0,gd=class q${constructor(t,n,i,r){this.name=t,this.set=n,this.base=i,this.modified=r,this.id=i2t++}toString(){let{name:t}=this;for(let n of this.modified)n.name&&(t=`${n.name}(${t})`);return t}static define(t,n){let i=typeof t=="string"?t:"?";if(t instanceof q$&&(n=t),n!=null&&n.base)throw new Error("Can not derive from a modified tag");let r=new q$(i,[],null,[]);if(r.set.push(r),n)for(let s of n.set)r.set.push(s);return r}static defineModifier(t){let n=new BN(t);return i=>i.modified.indexOf(n)>-1?i:BN.get(i.base||i,i.modified.concat(n).sort((r,s)=>r.id-s.id))}},r2t=0;class BN{constructor(t){this.name=t,this.instances=[],this.id=r2t++}static get(t,n){if(!n.length)return t;let i=n[0].instances.find(l=>l.base==t&&s2t(n,l.modified));if(i)return i;let r=[],s=new gd(t.name,r,t,n);for(let l of n)l.instances.push(s);let a=a2t(n);for(let l of t.set)if(!l.modified.length)for(let c of a)r.push(BN.get(l,c));return s}}function s2t(e,t){return e.length==t.length&&e.every((n,i)=>n==t[i])}function a2t(e){let t=[[]];for(let n=0;ni.length-n.length)}function Vh(e){let t=Object.create(null);for(let n in e){let i=e[n];Array.isArray(i)||(i=[i]);for(let r of n.split(" "))if(r){let s=[],a=2,l=r;for(let f=0;;){if(l=="..."&&f>0&&f+3==r.length){a=1;break}let h=/^"(?:[^"\\]|\\.)*?"|[^\/!]+/.exec(l);if(!h)throw new RangeError("Invalid path: "+r);if(s.push(h[0]=="*"?"":h[0][0]=='"'?JSON.parse(h[0]):h[0]),f+=h[0].length,f==r.length)break;let m=r[f++];if(f==r.length&&m=="!"){a=0;break}if(m!="/")throw new RangeError("Invalid path: "+r);l=r.slice(f)}let c=s.length-1,u=s[c];if(!u)throw new RangeError("Invalid path: "+r);let d=new ak(i,a,c>0?s.slice(0,c):null);t[u]=d.sort(t[u])}}return Y2e.add(t)}const Y2e=new Ln({combine(e,t){let n,i,r;for(;e||t;){if(!e||t&&e.depth>=t.depth?(r=t,t=t.next):(r=e,e=e.next),n&&n.mode==r.mode&&!r.context&&!n.context)continue;let s=new ak(r.tags,r.mode,r.context);n?n.next=s:i=s,n=s}return i}});let ak=class{constructor(t,n,i,r){this.tags=t,this.mode=n,this.context=i,this.next=r}get opaque(){return this.mode==0}get inherit(){return this.mode==1}sort(t){return!t||t.depth{let a=r;for(let l of s)for(let c of l.set){let u=n[c.id];if(u){a=a?a+" "+u:u;break}}return a},scope:i}}function o2t(e,t){let n=null;for(let i of e){let r=i.style(t);r&&(n=n?n+" "+r:r)}return n}function l2t(e,t,n,i=0,r=e.length){let s=new c2t(i,Array.isArray(t)?t:[t],n);s.highlightRange(e.cursor(),i,r,"",s.highlighters),s.flush(r)}class c2t{constructor(t,n,i){this.at=t,this.highlighters=n,this.span=i,this.class=""}startSpan(t,n){n!=this.class&&(this.flush(t),t>this.at&&(this.at=t),this.class=n)}flush(t){t>this.at&&this.class&&this.span(this.at,t,this.class)}highlightRange(t,n,i,r,s){let{type:a,from:l,to:c}=t;if(l>=i||c<=n)return;a.isTop&&(s=this.highlighters.filter(m=>!m.scope||m.scope(a)));let u=r,d=u2t(t)||ak.empty,f=o2t(s,d.tags);if(f&&(u&&(u+=" "),u+=f,d.mode==1&&(r+=(r?" ":"")+f)),this.startSpan(Math.max(n,l),u),d.opaque)return;let h=t.tree&&t.tree.prop(Ln.mounted);if(h&&h.overlay){let m=t.node.enter(h.overlay[0].from+l,1),g=this.highlighters.filter(v=>!v.scope||v.scope(h.tree.type)),b=t.firstChild();for(let v=0,y=l;;v++){let x=v=O||!t.nextSibling())););if(!x||O>i)break;y=x.to+l,y>n&&(this.highlightRange(m.cursor(),Math.max(n,x.from+l),Math.min(i,y),"",g),this.startSpan(Math.min(i,y),u))}b&&t.parent()}else if(t.firstChild()){h&&(r="");do if(!(t.to<=n)){if(t.from>=i)break;this.highlightRange(t,n,i,r,s),this.startSpan(Math.min(i,t.to),u)}while(t.nextSibling());t.parent()}}}function u2t(e){let t=e.type.prop(Y2e);for(;t&&t.context&&!e.matchContext(t.context);)t=t.next;return t||null}const Vt=gd.define,a2=Vt(),Sp=Vt(),bJ=Vt(Sp),yJ=Vt(Sp),kp=Vt(),o2=Vt(kp),v5=Vt(kp),fd=Vt(),ag=Vt(fd),ld=Vt(),cd=Vt(),W$=Vt(),J1=Vt(W$),l2=Vt(),ne={comment:a2,lineComment:Vt(a2),blockComment:Vt(a2),docComment:Vt(a2),name:Sp,variableName:Vt(Sp),typeName:bJ,tagName:Vt(bJ),propertyName:yJ,attributeName:Vt(yJ),className:Vt(Sp),labelName:Vt(Sp),namespace:Vt(Sp),macroName:Vt(Sp),literal:kp,string:o2,docString:Vt(o2),character:Vt(o2),attributeValue:Vt(o2),number:v5,integer:Vt(v5),float:Vt(v5),bool:Vt(kp),regexp:Vt(kp),escape:Vt(kp),color:Vt(kp),url:Vt(kp),keyword:ld,self:Vt(ld),null:Vt(ld),atom:Vt(ld),unit:Vt(ld),modifier:Vt(ld),operatorKeyword:Vt(ld),controlKeyword:Vt(ld),definitionKeyword:Vt(ld),moduleKeyword:Vt(ld),operator:cd,derefOperator:Vt(cd),arithmeticOperator:Vt(cd),logicOperator:Vt(cd),bitwiseOperator:Vt(cd),compareOperator:Vt(cd),updateOperator:Vt(cd),definitionOperator:Vt(cd),typeOperator:Vt(cd),controlOperator:Vt(cd),punctuation:W$,separator:Vt(W$),bracket:J1,angleBracket:Vt(J1),squareBracket:Vt(J1),paren:Vt(J1),brace:Vt(J1),content:fd,heading:ag,heading1:Vt(ag),heading2:Vt(ag),heading3:Vt(ag),heading4:Vt(ag),heading5:Vt(ag),heading6:Vt(ag),contentSeparator:Vt(fd),list:Vt(fd),quote:Vt(fd),emphasis:Vt(fd),strong:Vt(fd),link:Vt(fd),monospace:Vt(fd),strikethrough:Vt(fd),inserted:Vt(),deleted:Vt(),changed:Vt(),invalid:Vt(),meta:l2,documentMeta:Vt(l2),annotation:Vt(l2),processingInstruction:Vt(l2),definition:gd.defineModifier("definition"),constant:gd.defineModifier("constant"),function:gd.defineModifier("function"),standard:gd.defineModifier("standard"),local:gd.defineModifier("local"),special:gd.defineModifier("special")};for(let e in ne){let t=ne[e];t instanceof gd&&(t.name=e)}Z2e([{tag:ne.link,class:"tok-link"},{tag:ne.heading,class:"tok-heading"},{tag:ne.emphasis,class:"tok-emphasis"},{tag:ne.strong,class:"tok-strong"},{tag:ne.keyword,class:"tok-keyword"},{tag:ne.atom,class:"tok-atom"},{tag:ne.bool,class:"tok-bool"},{tag:ne.url,class:"tok-url"},{tag:ne.labelName,class:"tok-labelName"},{tag:ne.inserted,class:"tok-inserted"},{tag:ne.deleted,class:"tok-deleted"},{tag:ne.literal,class:"tok-literal"},{tag:ne.string,class:"tok-string"},{tag:ne.number,class:"tok-number"},{tag:[ne.regexp,ne.escape,ne.special(ne.string)],class:"tok-string2"},{tag:ne.variableName,class:"tok-variableName"},{tag:ne.local(ne.variableName),class:"tok-variableName tok-local"},{tag:ne.definition(ne.variableName),class:"tok-variableName tok-definition"},{tag:ne.special(ne.variableName),class:"tok-variableName2"},{tag:ne.definition(ne.propertyName),class:"tok-propertyName tok-definition"},{tag:ne.typeName,class:"tok-typeName"},{tag:ne.namespace,class:"tok-namespace"},{tag:ne.className,class:"tok-className"},{tag:ne.macroName,class:"tok-macroName"},{tag:ne.propertyName,class:"tok-propertyName"},{tag:ne.operator,class:"tok-operator"},{tag:ne.comment,class:"tok-comment"},{tag:ne.meta,class:"tok-meta"},{tag:ne.invalid,class:"tok-invalid"},{tag:ne.punctuation,class:"tok-punctuation"}]);var x5;const zp=new Ln;function CI(e){return Zt.define({combine:e?t=>t.concat(e):void 0})}const cQ=new Ln;class ec{constructor(t,n,i=[],r=""){this.data=t,this.name=r,Ti.prototype.hasOwnProperty("tree")||Object.defineProperty(Ti.prototype,"tree",{get(){return Or(this)}}),this.parser=n,this.extension=[_m.of(this),Ti.languageData.of((s,a,l)=>{let c=vJ(s,a,l),u=c.type.prop(zp);if(!u)return[];let d=s.facet(u),f=c.type.prop(cQ);if(f){let h=c.resolve(a-c.from,l);for(let m of f)if(m.test(h,s)){let g=s.facet(m.facet);return m.type=="replace"?g:g.concat(d)}}return d})].concat(i)}isActiveAt(t,n,i=-1){return vJ(t,n,i).type.prop(zp)==this.data}findRegions(t){let n=t.facet(_m);if((n==null?void 0:n.data)==this.data)return[{from:0,to:t.doc.length}];if(!n||!n.allowsNesting)return[];let i=[],r=(s,a)=>{if(s.prop(zp)==this.data){i.push({from:a,to:a+s.length});return}let l=s.prop(Ln.mounted);if(l){if(l.tree.prop(zp)==this.data){if(l.overlay)for(let c of l.overlay)i.push({from:c.from+a,to:c.to+a});else i.push({from:a,to:a+s.length});return}else if(l.overlay){let c=i.length;if(r(l.tree,l.overlay[0].from+a),i.length>c)return}}for(let c=0;ci.isTop?n:void 0)]}),t.name)}configure(t,n){return new jh(this.data,this.parser.configure(t),n||this.name)}get allowsNesting(){return this.parser.hasWrappers()}}function Or(e){let t=e.field(ec.state,!1);return t?t.tree:hi.empty}class d2t{constructor(t){this.doc=t,this.cursorPos=0,this.string="",this.cursor=t.iter()}get length(){return this.doc.length}syncTo(t){return this.string=this.cursor.next(t-this.cursorPos).value,this.cursorPos=t+this.string.length,this.cursorPos-this.string.length}chunk(t){return this.syncTo(t),this.string}get lineChunks(){return!0}read(t,n){let i=this.cursorPos-this.string.length;return t=this.cursorPos?this.doc.sliceString(t,n):this.string.slice(t-i,n-i)}}let ew=null;class Ib{constructor(t,n,i=[],r,s,a,l,c){this.parser=t,this.state=n,this.fragments=i,this.tree=r,this.treeLen=s,this.viewport=a,this.skipped=l,this.scheduleOn=c,this.parse=null,this.tempSkipped=[]}static create(t,n,i){return new Ib(t,n,[],hi.empty,0,i,[],null)}startParse(){return this.parser.startParse(new d2t(this.state.doc),this.fragments)}work(t,n){return n!=null&&n>=this.state.doc.length&&(n=void 0),this.tree!=hi.empty&&this.isDone(n??this.state.doc.length)?(this.takeTree(),!0):this.withContext(()=>{var i;if(typeof t=="number"){let r=Date.now()+t;t=()=>Date.now()>r}for(this.parse||(this.parse=this.startParse()),n!=null&&(this.parse.stoppedAt==null||this.parse.stoppedAt>n)&&n=this.treeLen&&((this.parse.stoppedAt==null||this.parse.stoppedAt>t)&&this.parse.stopAt(t),this.withContext(()=>{for(;!(n=this.parse.advance()););}),this.treeLen=t,this.tree=n,this.fragments=this.withoutTempSkipped(uh.addTree(this.tree,this.fragments,!0)),this.parse=null)}withContext(t){let n=ew;ew=this;try{return t()}finally{ew=n}}withoutTempSkipped(t){for(let n;n=this.tempSkipped.pop();)t=xJ(t,n.from,n.to);return t}changes(t,n){let{fragments:i,tree:r,treeLen:s,viewport:a,skipped:l}=this;if(this.takeTree(),!t.empty){let c=[];if(t.iterChangedRanges((u,d,f,h)=>c.push({fromA:u,toA:d,fromB:f,toB:h})),i=uh.applyChanges(i,c),r=hi.empty,s=0,a={from:t.mapPos(a.from,-1),to:t.mapPos(a.to,1)},this.skipped.length){l=[];for(let u of this.skipped){let d=t.mapPos(u.from,1),f=t.mapPos(u.to,-1);dt.from&&(this.fragments=xJ(this.fragments,r,s),this.skipped.splice(i--,1))}return this.skipped.length>=n?!1:(this.reset(),!0)}reset(){this.parse&&(this.takeTree(),this.parse=null)}skipUntilInView(t,n){this.skipped.push({from:t,to:n})}static getSkippingParser(t){return new class extends yI{createParse(n,i,r){let s=r[0].from,a=r[r.length-1].to;return{parsedPos:s,advance(){let c=ew;if(c){for(let u of r)c.tempSkipped.push(u);t&&(c.scheduleOn=c.scheduleOn?Promise.all([c.scheduleOn,t]):t)}return this.parsedPos=a,new hi(ea.none,[],[],a-s)},stoppedAt:null,stopAt(){}}}}}isDone(t){t=Math.min(t,this.state.doc.length);let n=this.fragments;return this.treeLen>=t&&n.length&&n[0].from==0&&n[0].to>=t}static get(){return ew}}function xJ(e,t,n){return uh.applyChanges(e,[{fromA:t,toA:n,fromB:t,toB:n}])}class lx{constructor(t){this.context=t,this.tree=t.tree}apply(t){if(!t.docChanged&&this.tree==this.context.tree)return this;let n=this.context.changes(t.changes,t.state),i=this.context.treeLen==t.startState.doc.length?void 0:Math.max(t.changes.mapPos(this.context.treeLen),n.viewport.to);return n.work(20,i)||n.takeTree(),new lx(n)}static init(t){let n=Math.min(3e3,t.doc.length),i=Ib.create(t.facet(_m).parser,t,{from:0,to:n});return i.work(20,n)||i.takeTree(),new lx(i)}}ec.state=ro.define({create:lx.init,update(e,t){for(let n of t.effects)if(n.is(ec.setState))return n.value;return t.startState.facet(_m)!=t.state.facet(_m)?lx.init(t.state):e.apply(t)}});let J2e=e=>{let t=setTimeout(()=>e(),500);return()=>clearTimeout(t)};typeof requestIdleCallback<"u"&&(J2e=e=>{let t=-1,n=setTimeout(()=>{t=requestIdleCallback(e,{timeout:400})},100);return()=>t<0?clearTimeout(n):cancelIdleCallback(t)});const w5=typeof navigator<"u"&&(!((x5=navigator.scheduling)===null||x5===void 0)&&x5.isInputPending)?()=>navigator.scheduling.isInputPending():null,f2t=Ts.fromClass(class{constructor(t){this.view=t,this.working=null,this.workScheduled=0,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(t){let n=this.view.state.field(ec.state).context;(n.updateViewport(t.view.viewport)||this.view.viewport.to>n.treeLen)&&this.scheduleWork(),(t.docChanged||t.selectionSet)&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(n)}scheduleWork(){if(this.working)return;let{state:t}=this.view,n=t.field(ec.state);(n.tree!=n.context.tree||!n.context.isDone(t.doc.length))&&(this.working=J2e(this.work))}work(t){this.working=null;let n=Date.now();if(this.chunkEndr+1e3,c=s.context.work(()=>w5&&w5()||Date.now()>a,r+(l?0:1e5));this.chunkBudget-=Date.now()-n,(c||this.chunkBudget<=0)&&(s.context.takeTree(),this.view.dispatch({effects:ec.setState.of(new lx(s.context))})),this.chunkBudget>0&&!(c&&!l)&&this.scheduleWork(),this.checkAsyncSchedule(s.context)}checkAsyncSchedule(t){t.scheduleOn&&(this.workScheduled++,t.scheduleOn.then(()=>this.scheduleWork()).catch(n=>hl(this.view.state,n)).then(()=>this.workScheduled--),t.scheduleOn=null)}destroy(){this.working&&this.working()}isWorking(){return!!(this.working||this.workScheduled>0)}},{eventHandlers:{focus(){this.scheduleWork()}}}),_m=Zt.define({combine(e){return e.length?e[0]:null},enables:e=>[ec.state,f2t,Ft.contentAttributes.compute([e],t=>{let n=t.facet(e);return n&&n.name?{"data-language":n.name}:{}})]});class Nm{constructor(t,n=[]){this.language=t,this.support=n,this.extension=[t,n]}}class UN{constructor(t,n,i,r,s,a=void 0){this.name=t,this.alias=n,this.extensions=i,this.filename=r,this.loadFunc=s,this.support=a,this.loading=null}load(){return this.loading||(this.loading=this.loadFunc().then(t=>this.support=t,t=>{throw this.loading=null,t}))}static of(t){let{load:n,support:i}=t;if(!n){if(!i)throw new RangeError("Must pass either 'load' or 'support' to LanguageDescription.of");n=()=>Promise.resolve(i)}return new UN(t.name,(t.alias||[]).concat(t.name).map(r=>r.toLowerCase()),t.extensions||[],t.filename,n,i)}static matchFilename(t,n){for(let r of t)if(r.filename&&r.filename.test(n))return r;let i=/\.([^.]+)$/.exec(n);if(i){for(let r of t)if(r.extensions.indexOf(i[1])>-1)return r}return null}static matchLanguageName(t,n,i=!0){n=n.toLowerCase();for(let r of t)if(r.alias.some(s=>s==n))return r;if(i)for(let r of t)for(let s of r.alias){let a=n.indexOf(s);if(a>-1&&(s.length>2||!/\w/.test(n[a-1])&&!/\w/.test(n[a+s.length])))return r}return null}}const h2t=Zt.define(),i1=Zt.define({combine:e=>{if(!e.length)return" ";let t=e[0];if(!t||/\S/.test(t)||Array.from(t).some(n=>n!=t[0]))throw new Error("Invalid indent unit: "+JSON.stringify(e[0]));return t}});function Pb(e){let t=e.facet(i1);return t.charCodeAt(0)==9?e.tabSize*t.length:t.length}function ok(e,t){let n="",i=e.tabSize,r=e.facet(i1)[0];if(r==" "){for(;t>=i;)n+=" ",t-=i;r=" "}for(let s=0;s=t?p2t(e,n,t):null}class TI{constructor(t,n={}){this.state=t,this.options=n,this.unit=Pb(t)}lineAt(t,n=1){let i=this.state.doc.lineAt(t),{simulateBreak:r,simulateDoubleBreak:s}=this.options;return r!=null&&r>=i.from&&r<=i.to?s&&r==t?{text:"",from:t}:(n<0?r-1&&(s+=a-this.countColumn(i,i.search(/\S|$/))),s}countColumn(t,n=t.length){return Uu(t,this.state.tabSize,n)}lineIndent(t,n=1){let{text:i,from:r}=this.lineAt(t,n),s=this.options.overrideIndentation;if(s){let a=s(r);if(a>-1)return a}return this.countColumn(i,i.search(/\S|$/))}get simulatedBreak(){return this.options.simulateBreak||null}}const Hh=new Ln;function p2t(e,t,n){let i=t.resolveStack(n),r=t.resolveInner(n,-1).resolve(n,0).enterUnfinishedNodesBefore(n);if(r!=i.node){let s=[];for(let a=r;a&&!(a.fromi.node.to||a.from==i.node.from&&a.type==i.node.type);a=a.parent)s.push(a);for(let a=s.length-1;a>=0;a--)i={node:s[a],next:i}}return eAe(i,e,n)}function eAe(e,t,n){for(let i=e;i;i=i.next){let r=g2t(i.node);if(r)return r(dQ.create(t,n,i))}return 0}function m2t(e){return e.pos==e.options.simulateBreak&&e.options.simulateDoubleBreak}function g2t(e){let t=e.type.prop(Hh);if(t)return t;let n=e.firstChild,i;if(n&&(i=n.type.prop(Ln.closedBy))){let r=e.lastChild,s=r&&i.indexOf(r.name)>-1;return a=>tAe(a,!0,1,void 0,s&&!m2t(a)?r.from:void 0)}return e.parent==null?b2t:null}function b2t(){return 0}class dQ extends TI{constructor(t,n,i){super(t.state,t.options),this.base=t,this.pos=n,this.context=i}get node(){return this.context.node}static create(t,n,i){return new dQ(t,n,i)}get textAfter(){return this.textAfterPos(this.pos)}get baseIndent(){return this.baseIndentFor(this.node)}baseIndentFor(t){let n=this.state.doc.lineAt(t.from);for(;;){let i=t.resolve(n.from);for(;i.parent&&i.parent.from==i.from;)i=i.parent;if(y2t(i,t))break;n=this.state.doc.lineAt(i.from)}return this.lineIndent(n.from)}continue(){return eAe(this.context.next,this.base,this.pos)}}function y2t(e,t){for(let n=t;n;n=n.parent)if(e==n)return!0;return!1}function v2t(e){let t=e.node,n=t.childAfter(t.from),i=t.lastChild;if(!n)return null;let r=e.options.simulateBreak,s=e.state.doc.lineAt(n.from),a=r==null||r<=s.from?s.to:Math.min(s.to,r);for(let l=n.to;;){let c=t.childAfter(l);if(!c||c==i)return null;if(!c.type.isSkipped){if(c.from>=a)return null;let u=/^ */.exec(s.text.slice(n.to-s.from))[0].length;return{from:n.from,to:n.to+u}}l=c.to}}function hv({closing:e,align:t=!0,units:n=1}){return i=>tAe(i,t,n,e)}function tAe(e,t,n,i,r){let s=e.textAfter,a=s.match(/^\s*/)[0].length,l=i&&s.slice(a,a+i.length)==i||r==e.pos+a,c=t?v2t(e):null;return c?l?e.column(c.from):e.column(c.to):e.baseIndent+(l?0:e.unit*n)}const x2t=e=>e.baseIndent;function pv({except:e,units:t=1}={}){return n=>{let i=e&&e.test(n.textAfter);return n.baseIndent+(i?0:t*n.unit)}}const w2t=200;function O2t(){return Ti.transactionFilter.of(e=>{if(!e.docChanged||!e.isUserEvent("input.type")&&!e.isUserEvent("input.complete"))return e;let t=e.startState.languageDataAt("indentOnInput",e.startState.selection.main.head);if(!t.length)return e;let n=e.newDoc,{head:i}=e.newSelection.main,r=n.lineAt(i);if(i>r.from+w2t)return e;let s=n.sliceString(r.from,i);if(!t.some(u=>u.test(s)))return e;let{state:a}=e,l=-1,c=[];for(let{head:u}of a.selection.ranges){let d=a.doc.lineAt(u);if(d.from==l)continue;l=d.from;let f=uQ(a,d.from);if(f==null)continue;let h=/^\s*/.exec(d.text)[0],m=ok(a,f);h!=m&&c.push({from:d.from,to:d.from+h.length,insert:m})}return c.length?[e,{changes:c,sequential:!0}]:e})}const nAe=Zt.define(),qh=new Ln;function LE(e){let t=e.firstChild,n=e.lastChild;return t&&t.ton)continue;if(s&&l.from=t&&u.to>n&&(s=u)}}return s}function k2t(e){let t=e.lastChild;return t&&t.to==e.to&&t.type.isError}function QN(e,t,n){for(let i of e.facet(nAe)){let r=i(e,t,n);if(r)return r}return S2t(e,t,n)}function iAe(e,t){let n=t.mapPos(e.from,1),i=t.mapPos(e.to,-1);return n>=i?void 0:{from:n,to:i}}const AI=Fn.define({map:iAe}),$E=Fn.define({map:iAe});function rAe(e){let t=[];for(let{head:n}of e.state.selection.ranges)t.some(i=>i.from<=n&&i.to>=n)||t.push(e.lineBlockAt(n));return t}const Db=ro.define({create(){return gn.none},update(e,t){t.isUserEvent("delete")&&t.changes.iterChangedRanges((i,r)=>e=wJ(e,i,r)),e=e.map(t.changes);let n=[];for(let i of t.effects)i.is(AI)&&!E2t(e,i.value.from,i.value.to)?n.push(i.value):i.is($E)&&(e=e.update({filter:(r,s)=>i.value.from!=r||i.value.to!=s,filterFrom:i.value.from,filterTo:i.value.to}));if(n.length){let{preparePlaceholder:i}=t.state.facet(oAe),r=n.map(s=>(i?gn.replace({widget:new R2t(i(t.state,s))}):OJ).range(s.from,s.to));e=e.update({add:r})}return t.selection&&(e=wJ(e,t.selection.main.head)),e},provide:e=>Ft.decorations.from(e),toJSON(e,t){let n=[];return e.between(0,t.doc.length,(i,r)=>{n.push(i,r)}),n},fromJSON(e){if(!Array.isArray(e)||e.length%2)throw new RangeError("Invalid JSON for fold state");let t=[];for(let n=0;n{rt&&(i=!0)}),i?e.update({filterFrom:t,filterTo:n,filter:(r,s)=>r>=n||s<=t}):e}function zN(e,t,n){var i;let r=null;return(i=e.field(Db,!1))===null||i===void 0||i.between(t,n,(s,a)=>{(!r||r.from>s)&&(r={from:s,to:a})}),r}function E2t(e,t,n){let i=!1;return e.between(t,t,(r,s)=>{r==t&&s==n&&(i=!0)}),i}function sAe(e,t){return e.field(Db,!1)?t:t.concat(Fn.appendConfig.of(lAe()))}const C2t=e=>{for(let t of rAe(e)){let n=QN(e.state,t.from,t.to);if(n)return e.dispatch({effects:sAe(e.state,[AI.of(n),aAe(e,n)])}),!0}return!1},T2t=e=>{if(!e.state.field(Db,!1))return!1;let t=[];for(let n of rAe(e)){let i=zN(e.state,n.from,n.to);i&&t.push($E.of(i),aAe(e,i,!1))}return t.length&&e.dispatch({effects:t}),t.length>0};function aAe(e,t,n=!0){let i=e.state.doc.lineAt(t.from).number,r=e.state.doc.lineAt(t.to).number;return Ft.announce.of(`${e.state.phrase(n?"Folded lines":"Unfolded lines")} ${i} ${e.state.phrase("to")} ${r}.`)}const A2t=e=>{let{state:t}=e,n=[];for(let i=0;i{let t=e.state.field(Db,!1);if(!t||!t.size)return!1;let n=[];return t.between(0,e.state.doc.length,(i,r)=>{n.push($E.of({from:i,to:r}))}),e.dispatch({effects:n}),!0},N2t=[{key:"Ctrl-Shift-[",mac:"Cmd-Alt-[",run:C2t},{key:"Ctrl-Shift-]",mac:"Cmd-Alt-]",run:T2t},{key:"Ctrl-Alt-[",run:A2t},{key:"Ctrl-Alt-]",run:_2t}],j2t={placeholderDOM:null,preparePlaceholder:null,placeholderText:"…"},oAe=Zt.define({combine(e){return ef(e,j2t)}});function lAe(e){return[Db,D2t]}function cAe(e,t){let{state:n}=e,i=n.facet(oAe),r=a=>{let l=e.lineBlockAt(e.posAtDOM(a.target)),c=zN(e.state,l.from,l.to);c&&e.dispatch({effects:$E.of(c)}),a.preventDefault()};if(i.placeholderDOM)return i.placeholderDOM(e,r,t);let s=document.createElement("span");return s.textContent=i.placeholderText,s.setAttribute("aria-label",n.phrase("folded code")),s.title=n.phrase("unfold"),s.className="cm-foldPlaceholder",s.onclick=r,s}const OJ=gn.replace({widget:new class extends Yu{toDOM(e){return cAe(e,null)}}});class R2t extends Yu{constructor(t){super(),this.value=t}eq(t){return this.value==t.value}toDOM(t){return cAe(t,this.value)}}const I2t={openText:"⌄",closedText:"›",markerDOM:null,domEventHandlers:{},foldingChanged:()=>!1};class O5 extends Nh{constructor(t,n){super(),this.config=t,this.open=n}eq(t){return this.config==t.config&&this.open==t.open}toDOM(t){if(this.config.markerDOM)return this.config.markerDOM(this.open);let n=document.createElement("span");return n.textContent=this.open?this.config.openText:this.config.closedText,n.title=t.state.phrase(this.open?"Fold line":"Unfold line"),n}}function P2t(e={}){let t={...I2t,...e},n=new O5(t,!0),i=new O5(t,!1),r=Ts.fromClass(class{constructor(a){this.from=a.viewport.from,this.markers=this.buildMarkers(a)}update(a){(a.docChanged||a.viewportChanged||a.startState.facet(_m)!=a.state.facet(_m)||a.startState.field(Db,!1)!=a.state.field(Db,!1)||Or(a.startState)!=Or(a.state)||t.foldingChanged(a))&&(this.markers=this.buildMarkers(a.view))}buildMarkers(a){let l=new Ah;for(let c of a.viewportLineBlocks){let u=zN(a.state,c.from,c.to)?i:QN(a.state,c.from,c.to)?n:null;u&&l.add(c.from,c.from,u)}return l.finish()}}),{domEventHandlers:s}=t;return[r,WTt({class:"cm-foldGutter",markers(a){var l;return((l=a.plugin(r))===null||l===void 0?void 0:l.markers)||xi.empty},initialSpacer(){return new O5(t,!1)},domEventHandlers:{...s,click:(a,l,c)=>{if(s.click&&s.click(a,l,c))return!0;let u=zN(a.state,l.from,l.to);if(u)return a.dispatch({effects:$E.of(u)}),!0;let d=QN(a.state,l.from,l.to);return d?(a.dispatch({effects:AI.of(d)}),!0):!1}}}),lAe()]}const D2t=Ft.baseTheme({".cm-foldPlaceholder":{backgroundColor:"#eee",border:"1px solid #ddd",color:"#888",borderRadius:".2em",margin:"0 1px",padding:"0 1px",cursor:"pointer"},".cm-foldGutter span":{padding:"0 1px",cursor:"pointer"}});class FE{constructor(t,n){this.specs=t;let i;function r(l){let c=Cm.newName();return(i||(i=Object.create(null)))["."+c]=l,c}const s=typeof n.all=="string"?n.all:n.all?r(n.all):void 0,a=n.scope;this.scope=a instanceof ec?l=>l.prop(zp)==a.data:a?l=>l==a:void 0,this.style=Z2e(t.map(l=>({tag:l.tag,class:l.class||r(Object.assign({},l,{tag:null}))})),{all:s}).style,this.module=i?new Cm(i):null,this.themeType=n.themeType}static define(t,n){return new FE(t,n||{})}}const G$=Zt.define(),uAe=Zt.define({combine(e){return e.length?[e[0]]:null}});function PA(e){let t=e.facet(G$);return t.length?t:e.facet(uAe)}function dAe(e,t){let n=[L2t],i;return e instanceof FE&&(e.module&&n.push(Ft.styleModule.of(e.module)),i=e.themeType),t!=null&&t.fallback?n.push(uAe.of(e)):i?n.push(G$.computeN([Ft.darkTheme],r=>r.facet(Ft.darkTheme)==(i=="dark")?[e]:[])):n.push(G$.of(e)),n}function SHt(e,t,n){let i=PA(e),r=null;if(i){for(let s of i)if(!s.scope||n){let a=s.style(t);a&&(r=r?r+" "+a:a)}}return r}class M2t{constructor(t){this.markCache=Object.create(null),this.tree=Or(t.state),this.decorations=this.buildDeco(t,PA(t.state)),this.decoratedTo=t.viewport.to}update(t){let n=Or(t.state),i=PA(t.state),r=i!=PA(t.startState),{viewport:s}=t.view,a=t.changes.mapPos(this.decoratedTo,1);n.length=s.to?(this.decorations=this.decorations.map(t.changes),this.decoratedTo=a):(n!=this.tree||t.viewportChanged||r)&&(this.tree=n,this.decorations=this.buildDeco(t.view,i),this.decoratedTo=s.to)}buildDeco(t,n){if(!n||!this.tree.length)return gn.none;let i=new Ah;for(let{from:r,to:s}of t.visibleRanges)l2t(this.tree,n,(a,l,c)=>{i.add(a,l,this.markCache[c]||(this.markCache[c]=gn.mark({class:c})))},r,s);return i.finish()}}const L2t=zh.high(Ts.fromClass(M2t,{decorations:e=>e.decorations})),$2t=FE.define([{tag:ne.meta,color:"#404740"},{tag:ne.link,textDecoration:"underline"},{tag:ne.heading,textDecoration:"underline",fontWeight:"bold"},{tag:ne.emphasis,fontStyle:"italic"},{tag:ne.strong,fontWeight:"bold"},{tag:ne.strikethrough,textDecoration:"line-through"},{tag:ne.keyword,color:"#708"},{tag:[ne.atom,ne.bool,ne.url,ne.contentSeparator,ne.labelName],color:"#219"},{tag:[ne.literal,ne.inserted],color:"#164"},{tag:[ne.string,ne.deleted],color:"#a11"},{tag:[ne.regexp,ne.escape,ne.special(ne.string)],color:"#e40"},{tag:ne.definition(ne.variableName),color:"#00f"},{tag:ne.local(ne.variableName),color:"#30a"},{tag:[ne.typeName,ne.namespace],color:"#085"},{tag:ne.className,color:"#167"},{tag:[ne.special(ne.variableName),ne.macroName],color:"#256"},{tag:ne.definition(ne.propertyName),color:"#00c"},{tag:ne.comment,color:"#940"},{tag:ne.invalid,color:"#f00"}]),F2t=Ft.baseTheme({"&.cm-focused .cm-matchingBracket":{backgroundColor:"#328c8252"},"&.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bb555544"}}),fAe=1e4,hAe="()[]{}",pAe=Zt.define({combine(e){return ef(e,{afterCursor:!0,brackets:hAe,maxScanDistance:fAe,renderMatch:Q2t})}}),B2t=gn.mark({class:"cm-matchingBracket"}),U2t=gn.mark({class:"cm-nonmatchingBracket"});function Q2t(e){let t=[],n=e.matched?B2t:U2t;return t.push(n.range(e.start.from,e.start.to)),e.end&&t.push(n.range(e.end.from,e.end.to)),t}function SJ(e){let t=[],n=e.facet(pAe);for(let i of e.selection.ranges){if(!i.empty)continue;let r=_d(e,i.head,-1,n)||i.head>0&&_d(e,i.head-1,1,n)||n.afterCursor&&(_d(e,i.head,1,n)||i.heade.decorations}),V2t=[z2t,F2t];function H2t(e={}){return[pAe.of(e),V2t]}const mAe=new Ln;function K$(e,t,n){let i=e.prop(t<0?Ln.openedBy:Ln.closedBy);if(i)return i;if(e.name.length==1){let r=n.indexOf(e.name);if(r>-1&&r%2==(t<0?1:0))return[n[r+t]]}return null}function X$(e){let t=e.type.prop(mAe);return t?t(e.node):e}function _d(e,t,n,i={}){let r=i.maxScanDistance||fAe,s=i.brackets||hAe,a=Or(e),l=a.resolveInner(t,n);for(let c=l;c;c=c.parent){let u=K$(c.type,n,s);if(u&&c.from0?t>=d.from&&td.from&&t<=d.to))return q2t(e,t,n,c,d,u,s)}}return W2t(e,t,n,a,l.type,r,s)}function q2t(e,t,n,i,r,s,a){let l=i.parent,c={from:r.from,to:r.to},u=0,d=l==null?void 0:l.cursor();if(d&&(n<0?d.childBefore(i.from):d.childAfter(i.to)))do if(n<0?d.to<=i.from:d.from>=i.to){if(u==0&&s.indexOf(d.type.name)>-1&&d.from0)return null;let u={from:n<0?t-1:t,to:n>0?t+1:t},d=e.doc.iterRange(t,n>0?e.doc.length:0),f=0;for(let h=0;!d.next().done&&h<=s;){let m=d.value;n<0&&(h+=m.length);let g=t+h*n;for(let b=n>0?0:m.length-1,v=n>0?m.length:-1;b!=v;b+=n){let y=a.indexOf(m[b]);if(!(y<0||i.resolveInner(g+b,1).type!=r))if(y%2==0==n>0)f++;else{if(f==1)return{start:u,end:{from:g+b,to:g+b+1},matched:y>>1==c>>1};f--}}n>0&&(h+=m.length)}return d.done?{start:u,matched:!1}:null}function kJ(e,t,n,i=0,r=0){t==null&&(t=e.search(/[^\s\u00a0]/),t==-1&&(t=e.length));let s=r;for(let a=i;a=this.string.length}sol(){return this.pos==0}peek(){return this.string.charAt(this.pos)||void 0}next(){if(this.posn}eatSpace(){let t=this.pos;for(;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>t}skipToEnd(){this.pos=this.string.length}skipTo(t){let n=this.string.indexOf(t,this.pos);if(n>-1)return this.pos=n,!0}backUp(t){this.pos-=t}column(){return this.lastColumnPosi?a.toLowerCase():a,s=this.string.substr(this.pos,t.length);return r(s)==r(t)?(n!==!1&&(this.pos+=t.length),!0):null}else{let r=this.string.slice(this.pos).match(t);return r&&r.index>0?null:(r&&n!==!1&&(this.pos+=r[0].length),r)}}current(){return this.string.slice(this.start,this.pos)}}function G2t(e){return{name:e.name||"",token:e.token,blankLine:e.blankLine||(()=>{}),startState:e.startState||(()=>!0),copyState:e.copyState||K2t,indent:e.indent||(()=>null),languageData:e.languageData||{},tokenTable:e.tokenTable||pQ,mergeTokens:e.mergeTokens!==!1}}function K2t(e){if(typeof e!="object")return e;let t={};for(let n in e){let i=e[n];t[n]=i instanceof Array?i.slice():i}return t}const EJ=new WeakMap;class fQ extends ec{constructor(t){let n=CI(t.languageData),i=G2t(t),r,s=new class extends yI{createParse(a,l,c){return new Y2t(r,a,l,c)}};super(n,s,[],t.name),this.topNode=eAt(n,this),r=this,this.streamParser=i,this.stateAfter=new Ln({perNode:!0}),this.tokenTable=t.tokenTable?new xAe(i.tokenTable):J2t}static define(t){return new fQ(t)}getIndent(t){let n,{overrideIndentation:i}=t.options;i&&(n=EJ.get(t.state),n!=null&&n1e4)return null;for(;s=i&&n+t.length<=r&&t.prop(e.stateAfter);if(s)return{state:e.streamParser.copyState(s),pos:n+t.length};for(let a=t.children.length-1;a>=0;a--){let l=t.children[a],c=n+t.positions[a],u=l instanceof hi&&c=t.length)return t;!r&&n==0&&t.type==e.topNode&&(r=!0);for(let s=t.children.length-1;s>=0;s--){let a=t.positions[s],l=t.children[s],c;if(an&&hQ(e,s.tree,0-s.offset,n,l),u;if(c&&c.pos<=i&&(u=bAe(e,s.tree,n+s.offset,c.pos+s.offset,!1)))return{state:c.state,tree:u}}return{state:e.streamParser.startState(r?Pb(r):4),tree:hi.empty}}let Y2t=class{constructor(t,n,i,r){this.lang=t,this.input=n,this.fragments=i,this.ranges=r,this.stoppedAt=null,this.chunks=[],this.chunkPos=[],this.chunk=[],this.chunkReused=void 0,this.rangeIndex=0,this.to=r[r.length-1].to;let s=Ib.get(),a=r[0].from,{state:l,tree:c}=X2t(t,i,a,this.to,s==null?void 0:s.state);this.state=l,this.parsedPos=this.chunkStart=a+c.length;for(let u=0;uu.from<=s.viewport.from&&u.to>=s.viewport.from)&&(this.state=this.lang.streamParser.startState(Pb(s.state)),s.skipUntilInView(this.parsedPos,s.viewport.from),this.parsedPos=s.viewport.from),this.moveRangeIndex()}advance(){let t=Ib.get(),n=this.stoppedAt==null?this.to:Math.min(this.to,this.stoppedAt),i=Math.min(n,this.chunkStart+512);for(t&&(i=Math.min(i,t.viewport.to));this.parsedPos=n?this.finish():t&&this.parsedPos>=t.viewport.to?(t.skipUntilInView(this.parsedPos,n),this.finish()):null}stopAt(t){this.stoppedAt=t}lineAfter(t){let n=this.input.chunk(t);if(this.input.lineChunks)n==` +`,n)+1}return{type:t,offset:this.offset,indent:this.indent,source:this.source}}startBlockValue(t){switch(this.type){case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return this.flowScalar(this.type);case"block-scalar-header":return{type:"block-scalar",offset:this.offset,indent:this.indent,props:[this.sourceToken],source:""};case"flow-map-start":case"flow-seq-start":return{type:"flow-collection",offset:this.offset,indent:this.indent,start:this.sourceToken,items:[],end:[]};case"seq-item-ind":return{type:"block-seq",offset:this.offset,indent:this.indent,items:[{start:[this.sourceToken]}]};case"explicit-key-ind":{this.onKeyLine=!0;const n=WT(t),i=q0(n);return i.push(this.sourceToken),{type:"block-map",offset:this.offset,indent:this.indent,items:[{start:i,explicitKey:!0}]}}case"map-value-ind":{this.onKeyLine=!0;const n=WT(t),i=q0(n);return{type:"block-map",offset:this.offset,indent:this.indent,items:[{start:i,key:null,sep:[this.sourceToken]}]}}}return null}atIndentedComment(t,n){return this.type!=="comment"||this.indent<=n?!1:t.every(i=>i.type==="newline"||i.type==="space")}*documentEnd(t){this.type!=="doc-mode"&&(t.end?t.end.push(this.sourceToken):t.end=[this.sourceToken],this.type==="newline"&&(yield*this.pop()))}*lineEnd(t){switch(this.type){case"comma":case"doc-start":case"doc-end":case"flow-seq-end":case"flow-map-end":case"map-value-ind":yield*this.pop(),yield*this.step();break;case"newline":this.onKeyLine=!1;case"space":case"comment":default:t.end?t.end.push(this.sourceToken):t.end=[this.sourceToken],this.type==="newline"&&(yield*this.pop())}}};function Kkt(e){const t=e.prettyErrors!==!1;return{lineCounter:e.lineCounter||t&&new qkt||null,prettyErrors:t}}function RTe(e,t={}){const{lineCounter:n,prettyErrors:i}=Kkt(t),r=new Wkt(n==null?void 0:n.addNewLine),s=new Ukt(t);let a=null;for(const l of s.compose(r.parse(e),!0,e.length))if(!a)a=l;else if(a.options.logLevel!=="silent"){a.errors.push(new qw(l.range.slice(0,2),"MULTIPLE_DOCS","Source contains multiple documents; please use YAML.parseAllDocuments()"));break}return i&&n&&(a.errors.forEach(dZ(e,n)),a.warnings.forEach(dZ(e,n))),a}function Gkt(e,t,n){let i;const r=RTe(e,n);if(!r)return null;if(r.warnings.forEach(s=>nTe(r.options.logLevel,s)),r.errors.length>0){if(r.options.logLevel!=="silent")throw r.errors[0];r.errors=[]}return r.toJS(Object.assign({reviver:i},n))}function VU(e,t,n){let i=null;if(typeof t=="function"||Array.isArray(t)?i=t:n===void 0&&t&&(n=t),typeof n=="string"&&(n=n.length),typeof n=="number"){const r=Math.round(n);n=r<1?void 0:r>8?{indent:8}:{indent:r}}if(e===void 0){const{keepUndefined:r}=n??t??{};if(!r)return}return RE(e)&&!i?e.toString(n):new ME(e,i,n).toString(n)}const ITe=1024;let Xkt=0,Kc=class{constructor(t,n){this.from=t,this.to=n}};class Un{constructor(t={}){this.id=Xkt++,this.perNode=!!t.perNode,this.deserialize=t.deserialize||(()=>{throw new Error("This node type doesn't define a deserialize function")}),this.combine=t.combine||null}add(t){if(this.perNode)throw new RangeError("Can't add per-node props to node types");return typeof t!="function"&&(t=ta.match(t)),n=>{let i=t(n);return i===void 0?null:[this,i]}}}Un.closedBy=new Un({deserialize:e=>e.split(" ")});Un.openedBy=new Un({deserialize:e=>e.split(" ")});Un.group=new Un({deserialize:e=>e.split(" ")});Un.isolate=new Un({deserialize:e=>{if(e&&e!="rtl"&&e!="ltr"&&e!="auto")throw new RangeError("Invalid value for isolate: "+e);return e||"auto"}});Un.contextHash=new Un({perNode:!0});Un.lookAhead=new Un({perNode:!0});Un.mounted=new Un({perNode:!0});class hv{constructor(t,n,i,r=!1){this.tree=t,this.overlay=n,this.parser=i,this.bracketed=r}static get(t){return t&&t.props&&t.props[Un.mounted.id]}}const Ykt=Object.create(null);class ta{constructor(t,n,i,r=0){this.name=t,this.props=n,this.id=i,this.flags=r}static define(t){let n=t.props&&t.props.length?Object.create(null):Ykt,i=(t.top?1:0)|(t.skipped?2:0)|(t.error?4:0)|(t.name==null?8:0),r=new ta(t.name||"",n,t.id,i);if(t.props){for(let s of t.props)if(Array.isArray(s)||(s=s(r)),s){if(s[0].perNode)throw new RangeError("Can't store a per-node prop on a node type");n[s[0].id]=s[1]}}return r}prop(t){return this.props[t.id]}get isTop(){return(this.flags&1)>0}get isSkipped(){return(this.flags&2)>0}get isError(){return(this.flags&4)>0}get isAnonymous(){return(this.flags&8)>0}is(t){if(typeof t=="string"){if(this.name==t)return!0;let n=this.prop(Un.group);return n?n.indexOf(t)>-1:!1}return this.id==t}static match(t){let n=Object.create(null);for(let i in t)for(let r of i.split(" "))n[r]=t[i];return i=>{for(let r=i.prop(Un.group),s=-1;s<(r?r.length:0);s++){let a=n[s<0?i.name:r[s]];if(a)return a}}}}ta.none=new ta("",Object.create(null),0,8);class a1{constructor(t){this.types=t;for(let n=0;n0;for(let c=this.cursor(a|ir.IncludeAnonymous);;){let u=!1;if(c.from<=s&&c.to>=r&&(!l&&c.type.isAnonymous||n(c)!==!1)){if(c.firstChild())continue;u=!0}for(;u&&i&&(l||!c.type.isAnonymous)&&i(c),!c.nextSibling();){if(!c.parent())return;u=!0}}}prop(t){return t.perNode?this.props?this.props[t.id]:void 0:this.type.prop(t)}get propValues(){let t=[];if(this.props)for(let n in this.props)t.push([+n,this.props[n]]);return t}balance(t={}){return this.children.length<=8?this:WU(ta.none,this.children,this.positions,0,this.children.length,0,this.length,(n,i,r)=>new bi(this.type,n,i,r,this.propValues),t.makeTree||((n,i,r)=>new bi(ta.none,n,i,r)))}static build(t){return tEt(t)}}bi.empty=new bi(ta.none,[],[],0);class HU{constructor(t,n){this.buffer=t,this.index=n}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new HU(this.buffer,this.index)}}class Am{constructor(t,n,i){this.buffer=t,this.length=n,this.set=i}get type(){return ta.none}toString(){let t=[];for(let n=0;n0));c=a[c+3]);return l}slice(t,n,i){let r=this.buffer,s=new Uint16Array(n-t),a=0;for(let l=t,c=0;l=t&&nt;case 1:return n<=t&&i>t;case 2:return i>t;case 4:return!0}}function ek(e,t,n,i){for(var r;e.from==e.to||(n<1?e.from>=t:e.from>t)||(n>-1?e.to<=t:e.to0?l.length:-1;t!=u;t+=n){let d=l[t],f=c[t]+a.from,h;if(!(!(s&ir.EnterBracketed&&d instanceof bi&&(h=hv.get(d))&&!h.overlay&&h.bracketed&&i>=f&&i<=f+d.length)&&!PTe(r,i,f,f+d.length))){if(d instanceof Am){if(s&ir.ExcludeBuffers)continue;let m=d.findChild(0,d.buffer.length,n,i-f,r);if(m>-1)return new _d(new Zkt(a,d,t,f),null,m)}else if(s&ir.IncludeAnonymous||!d.type.isAnonymous||qU(d)){let m;if(!(s&ir.IgnoreMounts)&&(m=hv.get(d))&&!m.overlay)return new ko(m.tree,f,t,a);let g=new ko(d,f,t,a);return s&ir.IncludeAnonymous||!g.type.isAnonymous?g:g.nextChild(n<0?d.children.length-1:0,n,i,r,s)}}}if(s&ir.IncludeAnonymous||!a.type.isAnonymous||(a.index>=0?t=a.index+n:t=n<0?-1:a._parent._tree.children.length,a=a._parent,!a))return null}}get firstChild(){return this.nextChild(0,1,0,4)}get lastChild(){return this.nextChild(this._tree.children.length-1,-1,0,4)}childAfter(t){return this.nextChild(0,1,t,2)}childBefore(t){return this.nextChild(this._tree.children.length-1,-1,t,-2)}prop(t){return this._tree.prop(t)}enter(t,n,i=0){let r;if(!(i&ir.IgnoreOverlays)&&(r=hv.get(this._tree))&&r.overlay){let s=t-this.from,a=i&ir.EnterBracketed&&r.bracketed;for(let{from:l,to:c}of r.overlay)if((n>0||a?l<=s:l=s:c>s))return new ko(r.tree,r.overlay[0].from+this.from,-1,this)}return this.nextChild(0,1,t,n,i)}nextSignificantParent(){let t=this;for(;t.type.isAnonymous&&t._parent;)t=t._parent;return t}get parent(){return this._parent?this._parent.nextSignificantParent():null}get nextSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index+1,1,0,4):null}get prevSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index-1,-1,0,4):null}get tree(){return this._tree}toTree(){return this._tree}toString(){return this._tree.toString()}}function yZ(e,t,n,i){let r=e.cursor(),s=[];if(!r.firstChild())return s;if(n!=null){for(let a=!1;!a;)if(a=r.type.is(n),!r.nextSibling())return s}for(;;){if(i!=null&&r.type.is(i))return s;if(r.type.is(t)&&s.push(r.node),!r.nextSibling())return i==null?s:[]}}function m$(e,t,n=t.length-1){for(let i=e;n>=0;i=i.parent){if(!i)return!1;if(!i.type.isAnonymous){if(t[n]&&t[n]!=i.name)return!1;n--}}return!0}class Zkt{constructor(t,n,i,r){this.parent=t,this.buffer=n,this.index=i,this.start=r}}class _d extends DTe{get name(){return this.type.name}get from(){return this.context.start+this.context.buffer.buffer[this.index+1]}get to(){return this.context.start+this.context.buffer.buffer[this.index+2]}constructor(t,n,i){super(),this.context=t,this._parent=n,this.index=i,this.type=t.buffer.set.types[t.buffer.buffer[i]]}child(t,n,i){let{buffer:r}=this.context,s=r.findChild(this.index+4,r.buffer[this.index+3],t,n-this.context.start,i);return s<0?null:new _d(this.context,this,s)}get firstChild(){return this.child(1,0,4)}get lastChild(){return this.child(-1,0,4)}childAfter(t){return this.child(1,t,2)}childBefore(t){return this.child(-1,t,-2)}prop(t){return this.type.prop(t)}enter(t,n,i=0){if(i&ir.ExcludeBuffers)return null;let{buffer:r}=this.context,s=r.findChild(this.index+4,r.buffer[this.index+3],n>0?1:-1,t-this.context.start,n);return s<0?null:new _d(this.context,this,s)}get parent(){return this._parent||this.context.parent.nextSignificantParent()}externalSibling(t){return this._parent?null:this.context.parent.nextChild(this.context.index+t,t,0,4)}get nextSibling(){let{buffer:t}=this.context,n=t.buffer[this.index+3];return n<(this._parent?t.buffer[this._parent.index+3]:t.buffer.length)?new _d(this.context,this._parent,n):this.externalSibling(1)}get prevSibling(){let{buffer:t}=this.context,n=this._parent?this._parent.index+4:0;return this.index==n?this.externalSibling(-1):new _d(this.context,this._parent,t.findChild(n,this.index,-1,0,4))}get tree(){return null}toTree(){let t=[],n=[],{buffer:i}=this.context,r=this.index+4,s=i.buffer[this.index+3];if(s>r){let a=i.buffer[this.index+1];t.push(i.slice(r,s,a)),n.push(0)}return new bi(this.type,t,n,this.to-this.from)}toString(){return this.context.buffer.childString(this.index)}}function MTe(e){if(!e.length)return null;let t=0,n=e[0];for(let s=1;sn.from||a.to=t){let l=new ko(a.tree,a.overlay[0].from+s.from,-1,s);(r||(r=[i])).push(ek(l,t,n,!1))}}return r?MTe(r):i}class IN{get name(){return this.type.name}constructor(t,n=0){if(this.buffer=null,this.stack=[],this.index=0,this.bufferNode=null,this.mode=n&~ir.EnterBracketed,t instanceof ko)this.yieldNode(t);else{this._tree=t.context.parent,this.buffer=t.context;for(let i=t._parent;i;i=i._parent)this.stack.unshift(i.index);this.bufferNode=t,this.yieldBuf(t.index)}}yieldNode(t){return t?(this._tree=t,this.type=t.type,this.from=t.from,this.to=t.to,!0):!1}yieldBuf(t,n){this.index=t;let{start:i,buffer:r}=this.buffer;return this.type=n||r.set.types[r.buffer[t]],this.from=i+r.buffer[t+1],this.to=i+r.buffer[t+2],!0}yield(t){return t?t instanceof ko?(this.buffer=null,this.yieldNode(t)):(this.buffer=t.context,this.yieldBuf(t.index,t.type)):!1}toString(){return this.buffer?this.buffer.buffer.childString(this.index):this._tree.toString()}enterChild(t,n,i){if(!this.buffer)return this.yield(this._tree.nextChild(t<0?this._tree._tree.children.length-1:0,t,n,i,this.mode));let{buffer:r}=this.buffer,s=r.findChild(this.index+4,r.buffer[this.index+3],t,n-this.buffer.start,i);return s<0?!1:(this.stack.push(this.index),this.yieldBuf(s))}firstChild(){return this.enterChild(1,0,4)}lastChild(){return this.enterChild(-1,0,4)}childAfter(t){return this.enterChild(1,t,2)}childBefore(t){return this.enterChild(-1,t,-2)}enter(t,n,i=this.mode){return this.buffer?i&ir.ExcludeBuffers?!1:this.enterChild(1,t,n):this.yield(this._tree.enter(t,n,i))}parent(){if(!this.buffer)return this.yieldNode(this.mode&ir.IncludeAnonymous?this._tree._parent:this._tree.parent);if(this.stack.length)return this.yieldBuf(this.stack.pop());let t=this.mode&ir.IncludeAnonymous?this.buffer.parent:this.buffer.parent.nextSignificantParent();return this.buffer=null,this.yieldNode(t)}sibling(t){if(!this.buffer)return this._tree._parent?this.yield(this._tree.index<0?null:this._tree._parent.nextChild(this._tree.index+t,t,0,4,this.mode)):!1;let{buffer:n}=this.buffer,i=this.stack.length-1;if(t<0){let r=i<0?0:this.stack[i]+4;if(this.index!=r)return this.yieldBuf(n.findChild(r,this.index,-1,0,4))}else{let r=n.buffer[this.index+3];if(r<(i<0?n.buffer.length:n.buffer[this.stack[i]+3]))return this.yieldBuf(r)}return i<0?this.yield(this.buffer.parent.nextChild(this.buffer.index+t,t,0,4,this.mode)):!1}nextSibling(){return this.sibling(1)}prevSibling(){return this.sibling(-1)}atLastNode(t){let n,i,{buffer:r}=this;if(r){if(t>0){if(this.index-1)for(let s=n+t,a=t<0?-1:i._tree.children.length;s!=a;s+=t){let l=i._tree.children[s];if(this.mode&ir.IncludeAnonymous||l instanceof Am||!l.type.isAnonymous||qU(l))return!1}return!0}move(t,n){if(n&&this.enterChild(t,0,4))return!0;for(;;){if(this.sibling(t))return!0;if(this.atLastNode(t)||!this.parent())return!1}}next(t=!0){return this.move(1,t)}prev(t=!0){return this.move(-1,t)}moveTo(t,n=0){for(;(this.from==this.to||(n<1?this.from>=t:this.from>t)||(n>-1?this.to<=t:this.to=0;){for(let a=t;a;a=a._parent)if(a.index==r){if(r==this.index)return a;n=a,i=s+1;break e}r=this.stack[--s]}for(let r=i;r=0;s--){if(s<0)return m$(this._tree,t,r);let a=i[n.buffer[this.stack[s]]];if(!a.isAnonymous){if(t[r]&&t[r]!=a.name)return!1;r--}}return!0}}function qU(e){return e.children.some(t=>t instanceof Am||!t.type.isAnonymous||qU(t))}function tEt(e){var t;let{buffer:n,nodeSet:i,maxBufferLength:r=ITe,reused:s=[],minRepeatType:a=i.types.length}=e,l=Array.isArray(n)?new HU(n,n.length):n,c=i.types,u=0,d=0;function f(k,S,E,C,N,T){let{id:j,start:A,end:L,size:_}=l,P=d,I=u;if(_<0)if(l.next(),_==-1){let V=s[j];E.push(V),C.push(A-k);return}else if(_==-3){u=j;return}else if(_==-4){d=j;return}else throw new RangeError(`Unrecognized record size: ${_}`);let $=c[j],M,B,R=A-k;if(L-A<=r&&(B=v(l.pos-S,N))){let V=new Uint16Array(B.size-B.skip),K=l.pos-B.size,Q=V.length;for(;l.pos>K;)Q=y(B.start,V,Q);M=new Am(V,L-B.start,i),R=B.start-k}else{let V=l.pos-_;l.next();let K=[],Q=[],q=j>=a?j:-1,U=0,G=L;for(;l.pos>V;)q>=0&&l.id==q&&l.size>=0?(l.end<=G-r&&(g(K,Q,A,U,l.end,G,q,P,I),U=K.length,G=l.end),l.next()):T>2500?h(A,V,K,Q):f(A,V,K,Q,q,T+1);if(q>=0&&U>0&&U-1&&U>0){let ae=m($,I);M=WU($,K,Q,0,K.length,0,L-A,ae,ae)}else M=b($,K,Q,L-A,P-L,I)}E.push(M),C.push(R)}function h(k,S,E,C){let N=[],T=0,j=-1;for(;l.pos>S;){let{id:A,start:L,end:_,size:P}=l;if(P>4)l.next();else{if(j>-1&&L=0;_-=3)A[P++]=N[_],A[P++]=N[_+1]-L,A[P++]=N[_+2]-L,A[P++]=P;E.push(new Am(A,N[2]-L,i)),C.push(L-k)}}function m(k,S){return(E,C,N)=>{let T=0,j=E.length-1,A,L;if(j>=0&&(A=E[j])instanceof bi){if(!j&&A.type==k&&A.length==N)return A;(L=A.prop(Un.lookAhead))&&(T=C[j]+A.length+L)}return b(k,E,C,N,T,S)}}function g(k,S,E,C,N,T,j,A,L){let _=[],P=[];for(;k.length>C;)_.push(k.pop()),P.push(S.pop()+E-N);k.push(b(i.types[j],_,P,T-N,A-T,L)),S.push(N-E)}function b(k,S,E,C,N,T,j){if(T){let A=[Un.contextHash,T];j=j?[A].concat(j):[A]}if(N>25){let A=[Un.lookAhead,N];j=j?[A].concat(j):[A]}return new bi(k,S,E,C,j)}function v(k,S){let E=l.fork(),C=0,N=0,T=0,j=E.end-r,A={size:0,start:0,skip:0};e:for(let L=E.pos-k;E.pos>L;){let _=E.size;if(E.id==S&&_>=0){A.size=C,A.start=N,A.skip=T,T+=4,C+=4,E.next();continue}let P=E.pos-_;if(_<0||P=a?4:0,$=E.start;for(E.next();E.pos>P;){if(E.size<0)if(E.size==-3||E.size==-4)I+=4;else break e;else E.id>=a&&(I+=4);E.next()}N=$,C+=_,T+=I}return(S<0||C==k)&&(A.size=C,A.start=N,A.skip=T),A.size>4?A:void 0}function y(k,S,E){let{id:C,start:N,end:T,size:j}=l;if(l.next(),j>=0&&C4){let L=l.pos-(j-4);for(;l.pos>L;)E=y(k,S,E)}S[--E]=A,S[--E]=T-k,S[--E]=N-k,S[--E]=C}else j==-3?u=C:j==-4&&(d=C);return E}let x=[],O=[];for(;l.pos>0;)f(e.start||0,e.bufferStart||0,x,O,-1,0);let w=(t=e.length)!==null&&t!==void 0?t:x.length?O[0]+x[0].length:0;return new bi(c[e.topID],x.reverse(),O.reverse(),w)}const vZ=new WeakMap;function R2(e,t){if(!e.isAnonymous||t instanceof Am||t.type!=e)return 1;let n=vZ.get(t);if(n==null){n=1;for(let i of t.children){if(i.type!=e||!(i instanceof bi)){n=1;break}n+=R2(e,i)}vZ.set(t,n)}return n}function WU(e,t,n,i,r,s,a,l,c){let u=0;for(let g=i;g=d)break;S+=E}if(O==w+1){if(S>d){let E=g[w];m(E.children,E.positions,0,E.children.length,b[w]+x);continue}f.push(g[w])}else{let E=b[O-1]+g[O-1].length-k;f.push(WU(e,g,b,w,O,k,E,null,c))}h.push(k+x-s)}}return m(t,n,i,r,0),(l||c)(f,h,a)}class KU{constructor(){this.map=new WeakMap}setBuffer(t,n,i){let r=this.map.get(t);r||this.map.set(t,r=new Map),r.set(n,i)}getBuffer(t,n){let i=this.map.get(t);return i&&i.get(n)}set(t,n){t instanceof _d?this.setBuffer(t.context.buffer,t.index,n):t instanceof ko&&this.map.set(t.tree,n)}get(t){return t instanceof _d?this.getBuffer(t.context.buffer,t.index):t instanceof ko?this.map.get(t.tree):void 0}cursorSet(t,n){t.buffer?this.setBuffer(t.buffer.buffer,t.index,n):this.map.set(t.tree,n)}cursorGet(t){return t.buffer?this.getBuffer(t.buffer.buffer,t.index):this.map.get(t.tree)}}class ch{constructor(t,n,i,r,s=!1,a=!1){this.from=t,this.to=n,this.tree=i,this.offset=r,this.open=(s?1:0)|(a?2:0)}get openStart(){return(this.open&1)>0}get openEnd(){return(this.open&2)>0}static addTree(t,n=[],i=!1){let r=[new ch(0,t.length,t,0,!1,i)];for(let s of n)s.to>t.length&&r.push(s);return r}static applyChanges(t,n,i=128){if(!n.length)return t;let r=[],s=1,a=t.length?t[0]:null;for(let l=0,c=0,u=0;;l++){let d=l=i)for(;a&&a.from=h.from||f<=h.to||u){let m=Math.max(h.from,c)-u,g=Math.min(h.to,f)-u;h=m>=g?null:new ch(m,g,h.tree,h.offset+u,l>0,!!d)}if(h&&r.push(h),a.to>f)break;a=snew Kc(r.from,r.to)):[new Kc(0,0)]:[new Kc(0,t.length)],this.createParse(t,n||[],i)}parse(t,n,i){let r=this.startParse(t,n,i);for(;;){let s=r.advance();if(s)return s}}}class nEt{constructor(t){this.string=t}get length(){return this.string.length}chunk(t){return this.string.slice(t)}get lineChunks(){return!1}read(t,n){return this.string.slice(t,n)}}function LTe(e){return(t,n,i,r)=>new rEt(t,e,n,i,r)}class xZ{constructor(t,n,i,r,s,a){this.parser=t,this.parse=n,this.overlay=i,this.bracketed=r,this.target=s,this.from=a}}function wZ(e){if(!e.length||e.some(t=>t.from>=t.to))throw new RangeError("Invalid inner parse ranges given: "+JSON.stringify(e))}class iEt{constructor(t,n,i,r,s,a,l,c){this.parser=t,this.predicate=n,this.mounts=i,this.index=r,this.start=s,this.bracketed=a,this.target=l,this.prev=c,this.depth=0,this.ranges=[]}}const g$=new Un({perNode:!0});class rEt{constructor(t,n,i,r,s){this.nest=n,this.input=i,this.fragments=r,this.ranges=s,this.inner=[],this.innerDone=0,this.baseTree=null,this.stoppedAt=null,this.baseParse=t}advance(){if(this.baseParse){let i=this.baseParse.advance();if(!i)return null;if(this.baseParse=null,this.baseTree=i,this.startInner(),this.stoppedAt!=null)for(let r of this.inner)r.parse.stopAt(this.stoppedAt)}if(this.innerDone==this.inner.length){let i=this.baseTree;return this.stoppedAt!=null&&(i=new bi(i.type,i.children,i.positions,i.length,i.propValues.concat([[g$,this.stoppedAt]]))),i}let t=this.inner[this.innerDone],n=t.parse.advance();if(n){this.innerDone++;let i=Object.assign(Object.create(null),t.target.props);i[Un.mounted.id]=new hv(n,t.overlay,t.parser,t.bracketed),t.target.props=i}return null}get parsedPos(){if(this.baseParse)return 0;let t=this.input.length;for(let n=this.innerDone;n=this.stoppedAt)l=!1;else if(t.hasNode(r)){if(n){let u=n.mounts.find(d=>d.frag.from<=r.from&&d.frag.to>=r.to&&d.mount.overlay);if(u)for(let d of u.mount.overlay){let f=d.from+u.pos,h=d.to+u.pos;f>=r.from&&h<=r.to&&!n.ranges.some(m=>m.fromf)&&n.ranges.push({from:f,to:h})}}l=!1}else if(i&&(a=sEt(i.ranges,r.from,r.to)))l=a!=2;else if(!r.type.isAnonymous&&(s=this.nest(r,this.input))&&(r.fromnew Kc(f.from-r.from,f.to-r.from)):null,!!s.bracketed,r.tree,d.length?d[0].from:r.from)),s.overlay?d.length&&(i={ranges:d,depth:0,prev:i}):l=!1}}else if(n&&(c=n.predicate(r))&&(c===!0&&(c=new Kc(r.from,r.to)),c.from=0&&n.ranges[u].to==c.from?n.ranges[u]={from:n.ranges[u].from,to:c.to}:n.ranges.push(c)}if(l&&r.firstChild())n&&n.depth++,i&&i.depth++;else for(;!r.nextSibling();){if(!r.parent())break e;if(n&&!--n.depth){let u=kZ(this.ranges,n.ranges);u.length&&(wZ(u),this.inner.splice(n.index,0,new xZ(n.parser,n.parser.startParse(this.input,EZ(n.mounts,u),u),n.ranges.map(d=>new Kc(d.from-n.start,d.to-n.start)),n.bracketed,n.target,u[0].from))),n=n.prev}i&&!--i.depth&&(i=i.prev)}}}}function sEt(e,t,n){for(let i of e){if(i.from>=n)break;if(i.to>t)return i.from<=t&&i.to>=n?2:1}return 0}function OZ(e,t,n,i,r,s){if(t=t&&n.enter(i,1,ir.IgnoreOverlays|ir.ExcludeBuffers)))if(n.to<=t)n.next(!1)||(this.done=!0);else break}hasNode(t){if(this.moveTo(t.from),!this.done&&this.cursor.from+this.offset==t.from&&this.cursor.tree)for(let n=this.cursor.tree;;){if(n==t.tree)return!0;if(n.children.length&&n.positions[0]==0&&n.children[0]instanceof bi)n=n.children[0];else break}return!1}}let oEt=class{constructor(t){var n;if(this.fragments=t,this.curTo=0,this.fragI=0,t.length){let i=this.curFrag=t[0];this.curTo=(n=i.tree.prop(g$))!==null&&n!==void 0?n:i.to,this.inner=new SZ(i.tree,-i.offset)}else this.curFrag=this.inner=null}hasNode(t){for(;this.curFrag&&t.from>=this.curTo;)this.nextFrag();return this.curFrag&&this.curFrag.from<=t.from&&this.curTo>=t.to&&this.inner.hasNode(t)}nextFrag(){var t;if(this.fragI++,this.fragI==this.fragments.length)this.curFrag=this.inner=null;else{let n=this.curFrag=this.fragments[this.fragI];this.curTo=(t=n.tree.prop(g$))!==null&&t!==void 0?t:n.to,this.inner=new SZ(n.tree,-n.offset)}}findMounts(t,n){var i;let r=[];if(this.inner){this.inner.cursor.moveTo(t,1);for(let s=this.inner.cursor.node;s;s=s.parent){let a=(i=s.tree)===null||i===void 0?void 0:i.prop(Un.mounted);if(a&&a.parser==n)for(let l=this.fragI;l=s.to)break;c.tree==this.curFrag.tree&&r.push({frag:c,pos:s.from-c.offset,mount:a})}}}return r}};function kZ(e,t){let n=null,i=t;for(let r=1,s=0;r=l)break;c.to<=a||(n||(i=n=t.slice()),c.froml&&n.splice(s+1,0,new Kc(l,c.to))):c.to>l?n[s--]=new Kc(l,c.to):n.splice(s--,1))}}return i}function lEt(e,t,n,i){let r=0,s=0,a=!1,l=!1,c=-1e9,u=[];for(;;){let d=r==e.length?1e9:a?e[r].to:e[r].from,f=s==t.length?1e9:l?t[s].to:t[s].from;if(a!=l){let h=Math.max(c,n),m=Math.min(d,f,i);hnew Kc(h.from+i,h.to+i)),f=lEt(t,d,c,u);for(let h=0,m=c;;h++){let g=h==f.length,b=g?u:f[h].from;if(b>m&&n.push(new ch(m,b,r.tree,-a,s.from>=m||s.openStart,s.to<=b||s.openEnd)),g)break;m=f[h].to}}else n.push(new ch(c,u,r.tree,-a,s.from>=a||s.openStart,s.to<=l||s.openEnd))}return n}let b$=[],$Te=[];(()=>{let e="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map(t=>t?parseInt(t,36):1);for(let t=0,n=0;t>1;if(e=$Te[i])t=i+1;else return!0;if(t==n)return!1}}function CZ(e){return e>=127462&&e<=127487}const TZ=8205;function uEt(e,t,n=!0,i=!0){return(n?FTe:dEt)(e,t,i)}function FTe(e,t,n){if(t==e.length)return t;t&&BTe(e.charCodeAt(t))&&UTe(e.charCodeAt(t-1))&&t--;let i=l5(e,t);for(t+=AZ(i);t=0&&CZ(l5(e,a));)s++,a-=2;if(s%2==0)break;t+=2}else break}return t}function dEt(e,t,n){for(;t>1;){let i=FTe(e,t-2,n);if(i=56320&&e<57344}function UTe(e){return e>=55296&&e<56320}function AZ(e){return e<65536?1:2}let Ji=class QTe{lineAt(t){if(t<0||t>this.length)throw new RangeError(`Invalid position ${t} in document of length ${this.length}`);return this.lineInner(t,!1,1,0)}line(t){if(t<1||t>this.lines)throw new RangeError(`Invalid line number ${t} in ${this.lines}-line document`);return this.lineInner(t,!0,1,0)}replace(t,n,i){[t,n]=lx(this,t,n);let r=[];return this.decompose(0,t,r,2),i.length&&i.decompose(0,i.length,r,3),this.decompose(n,this.length,r,1),vd.from(r,this.length-(n-t)+i.length)}append(t){return this.replace(this.length,this.length,t)}slice(t,n=this.length){[t,n]=lx(this,t,n);let i=[];return this.decompose(t,n,i,0),vd.from(i,n-t)}eq(t){if(t==this)return!0;if(t.length!=this.length||t.lines!=this.lines)return!1;let n=this.scanIdentical(t,1),i=this.length-this.scanIdentical(t,-1),r=new UO(this),s=new UO(t);for(let a=n,l=n;;){if(r.next(a),s.next(a),a=0,r.lineBreak!=s.lineBreak||r.done!=s.done||r.value!=s.value)return!1;if(l+=r.value.length,r.done||l>=i)return!0}}iter(t=1){return new UO(this,t)}iterRange(t,n=this.length){return new zTe(this,t,n)}iterLines(t,n){let i;if(t==null)i=this.iter();else{n==null&&(n=this.lines+1);let r=this.line(t).from;i=this.iterRange(r,Math.max(r,n==this.lines+1?this.length:n<=1?0:this.line(n-1).to))}return new VTe(i)}toString(){return this.sliceString(0)}toJSON(){let t=[];return this.flatten(t),t}constructor(){}static of(t){if(t.length==0)throw new RangeError("A document must have at least one line");return t.length==1&&!t[0]?QTe.empty:t.length<=32?new Ls(t):vd.from(Ls.split(t,[]))}};class Ls extends Ji{constructor(t,n=fEt(t)){super(),this.text=t,this.length=n}get lines(){return this.text.length}get children(){return null}lineInner(t,n,i,r){for(let s=0;;s++){let a=this.text[s],l=r+a.length;if((n?i:l)>=t)return new hEt(r,l,i,a);r=l+1,i++}}decompose(t,n,i,r){let s=t<=0&&n>=this.length?this:new Ls(_Z(this.text,t,n),Math.min(n,this.length)-Math.max(0,t));if(r&1){let a=i.pop(),l=I2(s.text,a.text.slice(),0,s.length);if(l.length<=32)i.push(new Ls(l,a.length+s.length));else{let c=l.length>>1;i.push(new Ls(l.slice(0,c)),new Ls(l.slice(c)))}}else i.push(s)}replace(t,n,i){if(!(i instanceof Ls))return super.replace(t,n,i);[t,n]=lx(this,t,n);let r=I2(this.text,I2(i.text,_Z(this.text,0,t)),n),s=this.length+i.length-(n-t);return r.length<=32?new Ls(r,s):vd.from(Ls.split(r,[]),s)}sliceString(t,n=this.length,i=` +`){[t,n]=lx(this,t,n);let r="";for(let s=0,a=0;s<=n&&at&&a&&(r+=i),ts&&(r+=l.slice(Math.max(0,t-s),n-s)),s=c+1}return r}flatten(t){for(let n of this.text)t.push(n)}scanIdentical(){return 0}static split(t,n){let i=[],r=-1;for(let s of t)i.push(s),r+=s.length+1,i.length==32&&(n.push(new Ls(i,r)),i=[],r=-1);return r>-1&&n.push(new Ls(i,r)),n}}class vd extends Ji{constructor(t,n){super(),this.children=t,this.length=n,this.lines=0;for(let i of t)this.lines+=i.lines}lineInner(t,n,i,r){for(let s=0;;s++){let a=this.children[s],l=r+a.length,c=i+a.lines-1;if((n?c:l)>=t)return a.lineInner(t,n,i,r);r=l+1,i=c+1}}decompose(t,n,i,r){for(let s=0,a=0;a<=n&&s=a){let u=r&((a<=t?1:0)|(c>=n?2:0));a>=t&&c<=n&&!u?i.push(l):l.decompose(t-a,n-a,i,u)}a=c+1}}replace(t,n,i){if([t,n]=lx(this,t,n),i.lines=s&&n<=l){let c=a.replace(t-s,n-s,i),u=this.lines-a.lines+c.lines;if(c.lines>4&&c.lines>u>>6){let d=this.children.slice();return d[r]=c,new vd(d,this.length-(n-t)+i.length)}return super.replace(s,l,c)}s=l+1}return super.replace(t,n,i)}sliceString(t,n=this.length,i=` +`){[t,n]=lx(this,t,n);let r="";for(let s=0,a=0;st&&s&&(r+=i),ta&&(r+=l.sliceString(t-a,n-a,i)),a=c+1}return r}flatten(t){for(let n of this.children)n.flatten(t)}scanIdentical(t,n){if(!(t instanceof vd))return 0;let i=0,[r,s,a,l]=n>0?[0,0,this.children.length,t.children.length]:[this.children.length-1,t.children.length-1,-1,-1];for(;;r+=n,s+=n){if(r==a||s==l)return i;let c=this.children[r],u=t.children[s];if(c!=u)return i+c.scanIdentical(u,n);i+=c.length+1}}static from(t,n=t.reduce((i,r)=>i+r.length+1,-1)){let i=0;for(let m of t)i+=m.lines;if(i<32){let m=[];for(let g of t)g.flatten(m);return new Ls(m,n)}let r=Math.max(32,i>>5),s=r<<1,a=r>>1,l=[],c=0,u=-1,d=[];function f(m){let g;if(m.lines>s&&m instanceof vd)for(let b of m.children)f(b);else m.lines>a&&(c>a||!c)?(h(),l.push(m)):m instanceof Ls&&c&&(g=d[d.length-1])instanceof Ls&&m.lines+g.lines<=32?(c+=m.lines,u+=m.length+1,d[d.length-1]=new Ls(g.text.concat(m.text),g.length+1+m.length)):(c+m.lines>r&&h(),c+=m.lines,u+=m.length+1,d.push(m))}function h(){c!=0&&(l.push(d.length==1?d[0]:vd.from(d,u)),u=-1,c=d.length=0)}for(let m of t)f(m);return h(),l.length==1?l[0]:new vd(l,n)}}Ji.empty=new Ls([""],0);function fEt(e){let t=-1;for(let n of e)t+=n.length+1;return t}function I2(e,t,n=0,i=1e9){for(let r=0,s=0,a=!0;s=n&&(c>i&&(l=l.slice(0,i-r)),r0?1:(t instanceof Ls?t.text.length:t.children.length)<<1]}nextInner(t,n){for(this.done=this.lineBreak=!1;;){let i=this.nodes.length-1,r=this.nodes[i],s=this.offsets[i],a=s>>1,l=r instanceof Ls?r.text.length:r.children.length;if(a==(n>0?l:0)){if(i==0)return this.done=!0,this.value="",this;n>0&&this.offsets[i-1]++,this.nodes.pop(),this.offsets.pop()}else if((s&1)==(n>0?0:1)){if(this.offsets[i]+=n,t==0)return this.lineBreak=!0,this.value=` +`,this;t--}else if(r instanceof Ls){let c=r.text[a+(n<0?-1:0)];if(this.offsets[i]+=n,c.length>Math.max(0,t))return this.value=t==0?c:n>0?c.slice(t):c.slice(0,c.length-t),this;t-=c.length}else{let c=r.children[a+(n<0?-1:0)];t>c.length?(t-=c.length,this.offsets[i]+=n):(n<0&&this.offsets[i]--,this.nodes.push(c),this.offsets.push(n>0?1:(c instanceof Ls?c.text.length:c.children.length)<<1))}}}next(t=0){return t<0&&(this.nextInner(-t,-this.dir),t=this.value.length),this.nextInner(t,this.dir)}}class zTe{constructor(t,n,i){this.value="",this.done=!1,this.cursor=new UO(t,n>i?-1:1),this.pos=n>i?t.length:0,this.from=Math.min(n,i),this.to=Math.max(n,i)}nextInner(t,n){if(n<0?this.pos<=this.from:this.pos>=this.to)return this.value="",this.done=!0,this;t+=Math.max(0,n<0?this.pos-this.to:this.from-this.pos);let i=n<0?this.pos-this.from:this.to-this.pos;t>i&&(t=i),i-=t;let{value:r}=this.cursor.next(t);return this.pos+=(r.length+t)*n,this.value=r.length<=i?r:n<0?r.slice(r.length-i):r.slice(0,i),this.done=!this.value,this}next(t=0){return t<0?t=Math.max(t,this.from-this.pos):t>0&&(t=Math.min(t,this.to-this.pos)),this.nextInner(t,this.cursor.dir)}get lineBreak(){return this.cursor.lineBreak&&this.value!=""}}class VTe{constructor(t){this.inner=t,this.afterBreak=!0,this.value="",this.done=!1}next(t=0){let{done:n,lineBreak:i,value:r}=this.inner.next(t);return n&&this.afterBreak?(this.value="",this.afterBreak=!1):n?(this.done=!0,this.value=""):i?this.afterBreak?this.value="":(this.afterBreak=!0,this.next()):(this.value=r,this.afterBreak=!1),this}get lineBreak(){return!1}}typeof Symbol<"u"&&(Ji.prototype[Symbol.iterator]=function(){return this.iter()},UO.prototype[Symbol.iterator]=zTe.prototype[Symbol.iterator]=VTe.prototype[Symbol.iterator]=function(){return this});let hEt=class{constructor(t,n,i,r){this.from=t,this.to=n,this.number=i,this.text=r}get length(){return this.to-this.from}};function lx(e,t,n){return t=Math.max(0,Math.min(e.length,t)),[t,Math.max(t,Math.min(e.length,n))]}function Ma(e,t,n=!0,i=!0){return uEt(e,t,n,i)}function pEt(e){return e>=56320&&e<57344}function mEt(e){return e>=55296&&e<56320}function cl(e,t){let n=e.charCodeAt(t);if(!mEt(n)||t+1==e.length)return n;let i=e.charCodeAt(t+1);return pEt(i)?(n-55296<<10)+(i-56320)+65536:n}function GU(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode((e>>10)+55296,(e&1023)+56320))}function xd(e){return e<65536?1:2}const y$=/\r\n?|\n/;var to=function(e){return e[e.Simple=0]="Simple",e[e.TrackDel=1]="TrackDel",e[e.TrackBefore=2]="TrackBefore",e[e.TrackAfter=3]="TrackAfter",e}(to||(to={}));class Fd{constructor(t){this.sections=t}get length(){let t=0;for(let n=0;nt)return s+(t-r);s+=l}else{if(i!=to.Simple&&u>=t&&(i==to.TrackDel&&rt||i==to.TrackBefore&&rt))return null;if(u>t||u==t&&n<0&&!l)return t==r||n<0?s:s+c;s+=c}r=u}if(t>r)throw new RangeError(`Position ${t} is out of range for changeset of length ${r}`);return s}touchesRange(t,n=t){for(let i=0,r=0;i=0&&r<=n&&l>=t)return rn?"cover":!0;r=l}return!1}toString(){let t="";for(let n=0;n=0?":"+r:"")}return t}toJSON(){return this.sections}static fromJSON(t){if(!Array.isArray(t)||t.length%2||t.some(n=>typeof n!="number"))throw new RangeError("Invalid JSON representation of ChangeDesc");return new Fd(t)}static create(t){return new Fd(t)}}class ga extends Fd{constructor(t,n){super(t),this.inserted=n}apply(t){if(this.length!=t.length)throw new RangeError("Applying change set to a document with the wrong length");return v$(this,(n,i,r,s,a)=>t=t.replace(r,r+(i-n),a),!1),t}mapDesc(t,n=!1){return x$(this,t,n,!0)}invert(t){let n=this.sections.slice(),i=[];for(let r=0,s=0;r=0){n[r]=l,n[r+1]=a;let c=r>>1;for(;i.length0&&qp(i,n,s.text),s.forward(d),l+=d}let u=t[a++];for(;l>1].toJSON()))}return t}static of(t,n,i){let r=[],s=[],a=0,l=null;function c(d=!1){if(!d&&!r.length)return;ah||f<0||h>n)throw new RangeError(`Invalid change range ${f} to ${h} (in doc of length ${n})`);let g=m?typeof m=="string"?Ji.of(m.split(i||y$)):m:Ji.empty,b=g.length;if(f==h&&b==0)return;fa&&bo(r,f-a,-1),bo(r,h-f,b),qp(s,r,g),a=h}}return u(t),c(!l),l}static empty(t){return new ga(t?[t,-1]:[],[])}static fromJSON(t){if(!Array.isArray(t))throw new RangeError("Invalid JSON representation of ChangeSet");let n=[],i=[];for(let r=0;rl&&typeof a!="string"))throw new RangeError("Invalid JSON representation of ChangeSet");if(s.length==1)n.push(s[0],0);else{for(;i.length=0&&n<=0&&n==e[r+1]?e[r]+=t:r>=0&&t==0&&e[r]==0?e[r+1]+=n:i?(e[r]+=t,e[r+1]+=n):e.push(t,n)}function qp(e,t,n){if(n.length==0)return;let i=t.length-2>>1;if(i>1])),!(n||a==e.sections.length||e.sections[a+1]<0);)l=e.sections[a++],c=e.sections[a++];t(r,u,s,d,f),r=u,s=d}}}function x$(e,t,n,i=!1){let r=[],s=i?[]:null,a=new tk(e),l=new tk(t);for(let c=-1;;){if(a.done&&l.len||l.done&&a.len)throw new Error("Mismatched change set lengths");if(a.ins==-1&&l.ins==-1){let u=Math.min(a.len,l.len);bo(r,u,-1),a.forward(u),l.forward(u)}else if(l.ins>=0&&(a.ins<0||c==a.i||a.off==0&&(l.len=0&&c=0){let u=0,d=a.len;for(;d;)if(l.ins==-1){let f=Math.min(d,l.len);u+=f,d-=f,l.forward(f)}else if(l.ins==0&&l.lenc||a.ins>=0&&a.len>c)&&(l||i.length>u),s.forward2(c),a.forward(c)}}}}class tk{constructor(t){this.set=t,this.i=0,this.next()}next(){let{sections:t}=this.set;this.i>1;return n>=t.length?Ji.empty:t[n]}textBit(t){let{inserted:n}=this.set,i=this.i-2>>1;return i>=n.length&&!t?Ji.empty:n[i].slice(this.off,t==null?void 0:this.off+t)}forward(t){t==this.len?this.next():(this.len-=t,this.off+=t)}forward2(t){this.ins==-1?this.forward(t):t==this.ins?this.next():(this.ins-=t,this.off+=t)}}class Dp{constructor(t,n,i,r){this.from=t,this.to=n,this.flags=i,this.goalColumn=r}get anchor(){return this.flags&32?this.to:this.from}get head(){return this.flags&32?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return this.flags&8?-1:this.flags&16?1:0}get undirectional(){return(this.flags&64)>0}get bidiLevel(){let t=this.flags&7;return t==7?null:t}map(t,n=-1){let i,r;return this.empty?i=r=t.mapPos(this.from,n):(i=t.mapPos(this.from,1),r=t.mapPos(this.to,-1)),i==this.from&&r==this.to?this:new Dp(i,r,this.flags,this.goalColumn)}extend(t,n=t,i=0){if(t<=this.anchor&&n>=this.anchor)return rt.range(t,n,void 0,void 0,i);let r=Math.abs(t-this.anchor)>Math.abs(n-this.anchor)?t:n;return rt.range(this.anchor,r,void 0,void 0,i)}eq(t,n=!1){return this.anchor==t.anchor&&this.head==t.head&&this.goalColumn==t.goalColumn&&(!n||!this.empty||this.assoc==t.assoc)}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(t){if(!t||typeof t.anchor!="number"||typeof t.head!="number")throw new RangeError("Invalid JSON representation for SelectionRange");return rt.range(t.anchor,t.head)}static create(t,n,i,r){return new Dp(t,n,i,r)}}class rt{constructor(t,n){this.ranges=t,this.mainIndex=n}map(t,n=-1){return t.empty?this:rt.create(this.ranges.map(i=>i.map(t,n)),this.mainIndex)}eq(t,n=!1){if(this.ranges.length!=t.ranges.length||this.mainIndex!=t.mainIndex)return!1;for(let i=0;it.toJSON()),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||typeof t.main!="number"||t.main>=t.ranges.length)throw new RangeError("Invalid JSON representation for EditorSelection");return new rt(t.ranges.map(n=>Dp.fromJSON(n)),t.main)}static single(t,n=t){return new rt([rt.range(t,n)],0)}static create(t,n=0){if(t.length==0)throw new RangeError("A selection needs at least one range");for(let i=0,r=0;rr.from-s.from),n=t.indexOf(i);for(let r=1;rs.head?rt.range(c,l):rt.range(l,c))}}return new rt(t,n)}}function qTe(e,t){for(let n of e.ranges)if(n.to>t)throw new RangeError("Selection points outside of document")}let XU=0;class Jt{constructor(t,n,i,r,s){this.combine=t,this.compareInput=n,this.compare=i,this.isStatic=r,this.id=XU++,this.default=t([]),this.extensions=typeof s=="function"?s(this):s}get reader(){return this}static define(t={}){return new Jt(t.combine||(n=>n),t.compareInput||((n,i)=>n===i),t.compare||(t.combine?(n,i)=>n===i:YU),!!t.static,t.enables)}of(t){return new P2([],this,0,t)}compute(t,n){if(this.isStatic)throw new Error("Can't compute a static facet");return new P2(t,this,1,n)}computeN(t,n){if(this.isStatic)throw new Error("Can't compute a static facet");return new P2(t,this,2,n)}from(t,n){return n||(n=i=>i),this.compute([t],i=>n(i.field(t)))}}function YU(e,t){return e==t||e.length==t.length&&e.every((n,i)=>n===t[i])}class P2{constructor(t,n,i,r){this.dependencies=t,this.facet=n,this.type=i,this.value=r,this.id=XU++}dynamicSlot(t){var n;let i=this.value,r=this.facet.compareInput,s=this.id,a=t[s]>>1,l=this.type==2,c=!1,u=!1,d=[];for(let f of this.dependencies)f=="doc"?c=!0:f=="selection"?u=!0:((n=t[f.id])!==null&&n!==void 0?n:1)&1||d.push(t[f.id]);return{create(f){return f.values[a]=i(f),1},update(f,h){if(c&&h.docChanged||u&&(h.docChanged||h.selection)||w$(f,d)){let m=i(f);if(l?!NZ(m,f.values[a],r):!r(m,f.values[a]))return f.values[a]=m,1}return 0},reconfigure:(f,h)=>{let m,g=h.config.address[s];if(g!=null){let b=DN(h,g);if(this.dependencies.every(v=>v instanceof Jt?h.facet(v)===f.facet(v):v instanceof so?h.field(v,!1)==f.field(v,!1):!0)||(l?NZ(m=i(f),b,r):r(m=i(f),b)))return f.values[a]=b,0}else m=i(f);return f.values[a]=m,1}}}get extension(){return this}}function NZ(e,t,n){if(e.length!=t.length)return!1;for(let i=0;ie[c.id]),r=n.map(c=>c.type),s=i.filter(c=>!(c&1)),a=e[t.id]>>1;function l(c){let u=[];for(let d=0;di===r),t);return t.provide&&(n.provides=t.provide(n)),n}create(t){let n=t.facet(GT).find(i=>i.field==this);return((n==null?void 0:n.create)||this.createF)(t)}slot(t){let n=t[this.id]>>1;return{create:i=>(i.values[n]=this.create(i),1),update:(i,r)=>{let s=i.values[n],a=this.updateF(s,r);return this.compareF(s,a)?0:(i.values[n]=a,1)},reconfigure:(i,r)=>{let s=i.facet(GT),a=r.facet(GT),l;return(l=s.find(c=>c.field==this))&&l!=a.find(c=>c.field==this)?(i.values[n]=l.create(i),1):r.config.address[this.id]!=null?(i.values[n]=r.field(this),0):(i.values[n]=this.create(i),1)}}}init(t){return[this,GT.of({field:this,create:t})]}get extension(){return this}}const Ig={lowest:4,low:3,default:2,high:1,highest:0};function tw(e){return t=>new WTe(t,e)}const Qh={highest:tw(Ig.highest),high:tw(Ig.high),default:tw(Ig.default),low:tw(Ig.low),lowest:tw(Ig.lowest)};class WTe{constructor(t,n){this.inner=t,this.prec=n}get extension(){return this}}class EI{of(t){return new O$(this,t)}reconfigure(t){return EI.reconfigure.of({compartment:this,extension:t})}get(t){return t.config.compartments.get(this)}}class O${constructor(t,n){this.compartment=t,this.inner=n}get extension(){return this}}class PN{constructor(t,n,i,r,s,a){for(this.base=t,this.compartments=n,this.dynamicSlots=i,this.address=r,this.staticValues=s,this.facets=a,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,n,i){let r=[],s=Object.create(null),a=new Map;for(let h of bEt(t,n,a))h instanceof so?r.push(h):(s[h.facet.id]||(s[h.facet.id]=[])).push(h);let l=Object.create(null),c=[],u=[];for(let h of r)l[h.id]=u.length<<1,u.push(m=>h.slot(m));let d=i==null?void 0:i.config.facets;for(let h in s){let m=s[h],g=m[0].facet,b=d&&d[h]||[];if(m.every(v=>v.type==0))if(l[g.id]=c.length<<1|1,YU(b,m))c.push(i.facet(g));else{let v=g.combine(m.map(y=>y.value));c.push(i&&g.compare(v,i.facet(g))?i.facet(g):v)}else{for(let v of m)v.type==0?(l[v.id]=c.length<<1|1,c.push(v.value)):(l[v.id]=u.length<<1,u.push(y=>v.dynamicSlot(y)));l[g.id]=u.length<<1,u.push(v=>gEt(v,g,m))}}let f=u.map(h=>h(l));return new PN(t,a,f,l,c,s)}}function bEt(e,t,n){let i=[[],[],[],[],[]],r=new Map;function s(a,l){let c=r.get(a);if(c!=null){if(c<=l)return;let u=i[c].indexOf(a);u>-1&&i[c].splice(u,1),a instanceof O$&&n.delete(a.compartment)}if(r.set(a,l),Array.isArray(a))for(let u of a)s(u,l);else if(a instanceof O$){if(n.has(a.compartment))throw new RangeError("Duplicate use of compartment in extensions");let u=t.get(a.compartment)||a.inner;n.set(a.compartment,u),s(u,l)}else if(a instanceof WTe)s(a.inner,a.prec);else if(a instanceof so)i[l].push(a),a.provides&&s(a.provides,l);else if(a instanceof P2)i[l].push(a),a.facet.extensions&&s(a.facet.extensions,Ig.default);else{let u=a.extension;if(!u)throw new Error(`Unrecognized extension value in extension set (${a}).`);if(u==a)throw new Error(`Unrecognized extension value in extension set (${a}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);s(u,l)}}return s(e,Ig.default),i.reduce((a,l)=>a.concat(l))}function QO(e,t){if(t&1)return 2;let n=t>>1,i=e.status[n];if(i==4)throw new Error("Cyclic dependency between fields and/or facets");if(i&2)return i;e.status[n]=4;let r=e.computeSlot(e,e.config.dynamicSlots[n]);return e.status[n]=2|r}function DN(e,t){return t&1?e.config.staticValues[t>>1]:e.values[t>>1]}const KTe=Jt.define(),S$=Jt.define({combine:e=>e.some(t=>t),static:!0}),GTe=Jt.define({combine:e=>e.length?e[0]:void 0,static:!0}),XTe=Jt.define(),YTe=Jt.define(),ZTe=Jt.define(),JTe=Jt.define({combine:e=>e.length?e[0]:!1});class tf{constructor(t,n){this.type=t,this.value=n}static define(){return new yEt}}class yEt{of(t){return new tf(this,t)}}class vEt{constructor(t){this.map=t}of(t){return new Qn(this,t)}}class Qn{constructor(t,n){this.type=t,this.value=n}map(t){let n=this.type.map(this.value,t);return n===void 0?void 0:n==this.value?this:new Qn(this.type,n)}is(t){return this.type==t}static define(t={}){return new vEt(t.map||(n=>n))}static mapEffects(t,n){if(!t.length)return t;let i=[];for(let r of t){let s=r.map(n);s&&i.push(s)}return i}}Qn.reconfigure=Qn.define();Qn.appendConfig=Qn.define();class ea{constructor(t,n,i,r,s,a){this.startState=t,this.changes=n,this.selection=i,this.effects=r,this.annotations=s,this.scrollIntoView=a,this._doc=null,this._state=null,i&&qTe(i,n.newLength),s.some(l=>l.type==ea.time)||(this.annotations=s.concat(ea.time.of(Date.now())))}static create(t,n,i,r,s,a){return new ea(t,n,i,r,s,a)}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(t){for(let n of this.annotations)if(n.type==t)return n.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}isUserEvent(t){let n=this.annotation(ea.userEvent);return!!(n&&(n==t||n.length>t.length&&n.slice(0,t.length)==t&&n[t.length]=="."))}}ea.time=tf.define();ea.userEvent=tf.define();ea.addToHistory=tf.define();ea.remote=tf.define();function xEt(e,t){let n=[];for(let i=0,r=0;;){let s,a;if(i=e[i]))s=e[i++],a=e[i++];else if(r=0;r--){let s=i[r](e);s instanceof ea?e=s:Array.isArray(s)&&s.length==1&&s[0]instanceof ea?e=s[0]:e=tAe(t,pv(s),!1)}return e}function OEt(e){let t=e.startState,n=t.facet(ZTe),i=e;for(let r=n.length-1;r>=0;r--){let s=n[r](e);s&&Object.keys(s).length&&(i=eAe(i,k$(t,s,e.changes.newLength),!0))}return i==e?e:ea.create(t,e.changes,e.selection,i.effects,i.annotations,i.scrollIntoView)}const SEt=[];function pv(e){return e==null?SEt:Array.isArray(e)?e:[e]}var is=function(e){return e[e.Word=0]="Word",e[e.Space=1]="Space",e[e.Other=2]="Other",e}(is||(is={}));const kEt=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;let E$;try{E$=new RegExp("[\\p{Alphabetic}\\p{Number}_]","u")}catch{}function EEt(e){if(E$)return E$.test(e);for(let t=0;t"€"&&(n.toUpperCase()!=n.toLowerCase()||kEt.test(n)))return!0}return!1}function CEt(e){return t=>{if(!/\S/.test(t))return is.Space;if(EEt(t))return is.Word;for(let n=0;n-1)return is.Word;return is.Other}}class ji{constructor(t,n,i,r,s,a){this.config=t,this.doc=n,this.selection=i,this.values=r,this.status=t.statusTemplate.slice(),this.computeSlot=s,a&&(a._state=this);for(let l=0;lr.set(u,c)),n=null),r.set(l.value.compartment,l.value.extension)):l.is(Qn.reconfigure)?(n=null,i=l.value):l.is(Qn.appendConfig)&&(n=null,i=pv(i).concat(l.value));let s;n?s=t.startState.values.slice():(n=PN.resolve(i,r,this),s=new ji(n,this.doc,this.selection,n.dynamicSlots.map(()=>null),(c,u)=>u.reconfigure(c,this),null).values);let a=t.startState.facet(S$)?t.newSelection:t.newSelection.asSingle();new ji(n,t.newDoc,a,s,(l,c)=>c.update(l,t),t)}replaceSelection(t){return typeof t=="string"&&(t=this.toText(t)),this.changeByRange(n=>({changes:{from:n.from,to:n.to,insert:t},range:rt.cursor(n.from+t.length)}))}changeByRange(t){let n=this.selection,i=t(n.ranges[0]),r=this.changes(i.changes),s=[i.range],a=pv(i.effects);for(let l=1;la.spec.fromJSON(l,c)))}}return ji.create({doc:t.doc,selection:rt.fromJSON(t.selection),extensions:n.extensions?r.concat([n.extensions]):r})}static create(t={}){let n=PN.resolve(t.extensions||[],new Map),i=t.doc instanceof Ji?t.doc:Ji.of((t.doc||"").split(n.staticFacet(ji.lineSeparator)||y$)),r=t.selection?t.selection instanceof rt?t.selection:rt.single(t.selection.anchor,t.selection.head):rt.single(0);return qTe(r,i.length),n.staticFacet(S$)||(r=r.asSingle()),new ji(n,i,r,n.dynamicSlots.map(()=>null),(s,a)=>a.create(s),null)}get tabSize(){return this.facet(ji.tabSize)}get lineBreak(){return this.facet(ji.lineSeparator)||` +`}get readOnly(){return this.facet(JTe)}phrase(t,...n){for(let i of this.facet(ji.phrases))if(Object.prototype.hasOwnProperty.call(i,t)){t=i[t];break}return n.length&&(t=t.replace(/\$(\$|\d*)/g,(i,r)=>{if(r=="$")return"$";let s=+(r||1);return!s||s>n.length?i:n[s-1]})),t}languageDataAt(t,n,i=-1){let r=[];for(let s of this.facet(KTe))for(let a of s(this,n,i))Object.prototype.hasOwnProperty.call(a,t)&&r.push(a[t]);return r}charCategorizer(t){let n=this.languageDataAt("wordChars",t);return CEt(n.length?n[0]:"")}wordAt(t){let{text:n,from:i,length:r}=this.doc.lineAt(t),s=this.charCategorizer(t),a=t-i,l=t-i;for(;a>0;){let c=Ma(n,a,!1);if(s(n.slice(c,a))!=is.Word)break;a=c}for(;le.length?e[0]:4});ji.lineSeparator=GTe;ji.readOnly=JTe;ji.phrases=Jt.define({compare(e,t){let n=Object.keys(e),i=Object.keys(t);return n.length==i.length&&n.every(r=>e[r]==t[r])}});ji.languageData=KTe;ji.changeFilter=XTe;ji.transactionFilter=YTe;ji.transactionExtender=ZTe;EI.reconfigure=Qn.define();function nf(e,t,n={}){let i={};for(let r of e)for(let s of Object.keys(r)){let a=r[s],l=i[s];if(l===void 0)i[s]=a;else if(!(l===a||a===void 0))if(Object.hasOwnProperty.call(n,s))i[s]=n[s](l,a);else throw new Error("Config merge conflict for field "+s)}for(let r in t)i[r]===void 0&&(i[r]=t[r]);return i}class _m{eq(t){return this==t}range(t,n=t){return nk.create(t,n,this)}}_m.prototype.startSide=_m.prototype.endSide=0;_m.prototype.point=!1;_m.prototype.mapMode=to.TrackDel;function ZU(e,t){return e==t||e.constructor==t.constructor&&e.eq(t)}class nk{constructor(t,n,i){this.from=t,this.to=n,this.value=i}static create(t,n,i){return new nk(t,n,i)}}function C$(e,t){return e.from-t.from||e.value.startSide-t.value.startSide}class JU{constructor(t,n,i,r){this.from=t,this.to=n,this.value=i,this.maxPoint=r}get length(){return this.to[this.to.length-1]}findIndex(t,n,i,r=0){let s=i?this.to:this.from;for(let a=r,l=s.length;;){if(a==l)return a;let c=a+l>>1,u=s[c]-t||(i?this.value[c].endSide:this.value[c].startSide)-n;if(c==a)return u>=0?a:l;u>=0?l=c:a=c+1}}between(t,n,i,r){for(let s=this.findIndex(n,-1e9,!0),a=this.findIndex(i,1e9,!1,s);sm||h==m&&u.startSide>0&&u.endSide<=0)continue;(m-h||u.endSide-u.startSide)<0||(a<0&&(a=h),u.point&&(l=Math.max(l,m-h)),i.push(u),r.push(h-a),s.push(m-a))}return{mapped:i.length?new JU(r,s,i,l):null,pos:a}}}class Si{constructor(t,n,i,r){this.chunkPos=t,this.chunk=n,this.nextLayer=i,this.maxPoint=r}static create(t,n,i,r){return new Si(t,n,i,r)}get length(){let t=this.chunk.length-1;return t<0?0:Math.max(this.chunkEnd(t),this.nextLayer.length)}get size(){if(this.isEmpty)return 0;let t=this.nextLayer.size;for(let n of this.chunk)t+=n.value.length;return t}chunkEnd(t){return this.chunkPos[t]+this.chunk[t].length}update(t){let{add:n=[],sort:i=!1,filterFrom:r=0,filterTo:s=this.length}=t,a=t.filter;if(n.length==0&&!a)return this;if(i&&(n=n.slice().sort(C$)),this.isEmpty)return n.length?Si.of(n):this;let l=new nAe(this,null,-1).goto(0),c=0,u=[],d=new Th;for(;l.value||c=0){let f=n[c++];d.addInner(f.from,f.to,f.value)||u.push(f)}else l.rangeIndex==1&&l.chunkIndexthis.chunkEnd(l.chunkIndex)||sl.to||s=s&&t<=s+a.length&&a.between(s,t-s,n-s,i)===!1)return}this.nextLayer.between(t,n,i)}}iter(t=0){return ik.from([this]).goto(t)}get isEmpty(){return this.nextLayer==this}static iter(t,n=0){return ik.from(t).goto(n)}static compare(t,n,i,r,s=-1){let a=t.filter(f=>f.maxPoint>0||!f.isEmpty&&f.maxPoint>=s),l=n.filter(f=>f.maxPoint>0||!f.isEmpty&&f.maxPoint>=s),c=jZ(a,l,i),u=new nw(a,c,s),d=new nw(l,c,s);i.iterGaps((f,h,m)=>RZ(u,f,d,h,m,r)),i.empty&&i.length==0&&RZ(u,0,d,0,0,r)}static eq(t,n,i=0,r){r==null&&(r=999999999);let s=t.filter(d=>!d.isEmpty&&n.indexOf(d)<0),a=n.filter(d=>!d.isEmpty&&t.indexOf(d)<0);if(s.length!=a.length)return!1;if(!s.length)return!0;let l=jZ(s,a),c=new nw(s,l,0).goto(i),u=new nw(a,l,0).goto(i);for(;;){if(c.to!=u.to||!T$(c.active,u.active)||c.point&&(!u.point||!ZU(c.point,u.point)))return!1;if(c.to>r)return!0;c.next(),u.next()}}static spans(t,n,i,r,s=-1){let a=new nw(t,null,s).goto(n),l=n,c=a.openStart;for(;;){let u=Math.min(a.to,i);if(a.point){let d=a.activeForPoint(a.to),f=a.pointFroml&&(r.span(l,u,a.active,c),c=a.openEnd(u));if(a.to>i)return c+(a.point&&a.to>i?1:0);l=a.to,a.next()}}static of(t,n=!1){let i=new Th;for(let r of t instanceof nk?[t]:n?TEt(t):t)i.add(r.from,r.to,r.value);return i.finish()}static join(t){if(!t.length)return Si.empty;let n=t[t.length-1];for(let i=t.length-2;i>=0;i--)for(let r=t[i];r!=Si.empty;r=r.nextLayer)n=new Si(r.chunkPos,r.chunk,n,Math.max(r.maxPoint,n.maxPoint));return n}}Si.empty=new Si([],[],null,-1);function TEt(e){if(e.length>1)for(let t=e[0],n=1;n0)return e.slice().sort(C$);t=i}return e}Si.empty.nextLayer=Si.empty;class Th{finishChunk(t){this.chunks.push(new JU(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,t&&(this.from=[],this.to=[],this.value=[])}constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}add(t,n,i){this.addInner(t,n,i)||(this.nextLayer||(this.nextLayer=new Th)).add(t,n,i)}addInner(t,n,i){let r=t-this.lastTo||i.startSide-this.last.endSide;if(r<=0&&(t-this.lastFrom||i.startSide-this.last.startSide)<0)throw new Error("Ranges must be added sorted by `from` position and `startSide`");return r<0?!1:(this.from.length==250&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=t),this.from.push(t-this.chunkStart),this.to.push(n-this.chunkStart),this.last=i,this.lastFrom=t,this.lastTo=n,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,n-t)),!0)}addChunk(t,n){if((t-this.lastTo||n.value[0].startSide-this.last.endSide)<0)return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,n.maxPoint),this.chunks.push(n),this.chunkPos.push(t);let i=n.value.length-1;return this.last=n.value[i],this.lastFrom=n.from[i]+t,this.lastTo=n.to[i]+t,!0}finish(){return this.finishInner(Si.empty)}finishInner(t){if(this.from.length&&this.finishChunk(!1),this.chunks.length==0)return t;let n=Si.create(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(t):t,this.setMaxPoint);return this.from=null,n}}function jZ(e,t,n){let i=new Map;for(let s of e)for(let a=0;a=this.minPoint)break}}setRangeIndex(t){if(t==this.layer.chunk[this.chunkIndex].value.length){if(this.chunkIndex++,this.skip)for(;this.chunkIndex=i&&r.push(new nAe(a,n,i,s));return r.length==1?r[0]:new ik(r)}get startSide(){return this.value?this.value.startSide:0}goto(t,n=-1e9){for(let i of this.heap)i.goto(t,n);for(let i=this.heap.length>>1;i>=0;i--)c5(this.heap,i);return this.next(),this}forward(t,n){for(let i of this.heap)i.forward(t,n);for(let i=this.heap.length>>1;i>=0;i--)c5(this.heap,i);(this.to-t||this.value.endSide-n)<0&&this.next()}next(){if(this.heap.length==0)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let t=this.heap[0];this.from=t.from,this.to=t.to,this.value=t.value,this.rank=t.rank,t.value&&t.next(),c5(this.heap,0)}}}function c5(e,t){for(let n=e[t];;){let i=(t<<1)+1;if(i>=e.length)break;let r=e[i];if(i+1=0&&(r=e[i+1],i++),n.compare(r)<0)break;e[i]=n,e[t]=r,t=i}}class nw{constructor(t,n,i){this.minPoint=i,this.active=[],this.activeTo=[],this.activeRank=[],this.minActive=-1,this.point=null,this.pointFrom=0,this.pointRank=0,this.to=-1e9,this.endSide=0,this.openStart=-1,this.cursor=ik.from(t,n,i)}goto(t,n=-1e9){return this.cursor.goto(t,n),this.active.length=this.activeTo.length=this.activeRank.length=0,this.minActive=-1,this.to=t,this.endSide=n,this.openStart=-1,this.next(),this}forward(t,n){for(;this.minActive>-1&&(this.activeTo[this.minActive]-t||this.active[this.minActive].endSide-n)<0;)this.removeActive(this.minActive);this.cursor.forward(t,n)}removeActive(t){XT(this.active,t),XT(this.activeTo,t),XT(this.activeRank,t),this.minActive=IZ(this.active,this.activeTo)}addActive(t){let n=0,{value:i,to:r,rank:s}=this.cursor;for(;n0;)n++;YT(this.active,n,i),YT(this.activeTo,n,r),YT(this.activeRank,n,s),t&&YT(t,n,this.cursor.from),this.minActive=IZ(this.active,this.activeTo)}next(){let t=this.to,n=this.point;this.point=null;let i=this.openStart<0?[]:null;for(;;){let r=this.minActive;if(r>-1&&(this.activeTo[r]-this.cursor.from||this.active[r].endSide-this.cursor.startSide)<0){if(this.activeTo[r]>t){this.to=this.activeTo[r],this.endSide=this.active[r].endSide;break}this.removeActive(r),i&&XT(i,r)}else if(this.cursor.value)if(this.cursor.from>t){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}else{let s=this.cursor.value;if(!s.point)this.addActive(i),this.cursor.next();else if(n&&this.cursor.to==this.to&&this.cursor.from=0&&i[r]=0&&!(this.activeRank[i]t||this.activeTo[i]==t&&this.active[i].endSide>=this.point.endSide)&&n.push(this.active[i]);return n.reverse()}openEnd(t){let n=0;for(let i=this.activeTo.length-1;i>=0&&this.activeTo[i]>t;i--)n++;return n}}function RZ(e,t,n,i,r,s){e.goto(t),n.goto(i);let a=i+r,l=i,c=i-t,u=!!s.boundChange;for(let d=!1;;){let f=e.to+c-n.to,h=f||e.endSide-n.endSide,m=h<0?e.to+c:n.to,g=Math.min(m,a);if(e.point||n.point?(e.point&&n.point&&ZU(e.point,n.point)&&T$(e.activeForPoint(e.to),n.activeForPoint(n.to))||s.comparePoint(l,g,e.point,n.point),d=!1):(d&&s.boundChange(l),g>l&&!T$(e.active,n.active)&&s.compareRange(l,g,e.active,n.active),u&&ga)break;l=m,h<=0&&e.next(),h>=0&&n.next()}}function T$(e,t){if(e.length!=t.length)return!1;for(let n=0;n=t;i--)e[i+1]=e[i];e[t]=n}function IZ(e,t){let n=-1,i=1e9;for(let r=0;r=t)return r;if(r==e.length)break;s+=e.charCodeAt(r)==9?n-s%n:1,r=Ma(e,r)}return i===!0?-1:e.length}const _$="ͼ",PZ=typeof Symbol>"u"?"__"+_$:Symbol.for(_$),N$=typeof Symbol>"u"?"__styleSet"+Math.floor(Math.random()*1e8):Symbol("styleSet"),DZ=typeof globalThis<"u"?globalThis:typeof window<"u"?window:{};class Nm{constructor(t,n){this.rules=[];let{finish:i}=n||{};function r(a){return/^@/.test(a)?[a]:a.split(/,\s*/)}function s(a,l,c,u){let d=[],f=/^@(\w+)\b/.exec(a[0]),h=f&&f[1]=="keyframes";if(f&&l==null)return c.push(a[0]+";");for(let m in l){let g=l[m];if(/&/.test(m))s(m.split(/,\s*/).map(b=>a.map(v=>b.replace(/&/,v))).reduce((b,v)=>b.concat(v)),g,c);else if(g&&typeof g=="object"){if(!f)throw new RangeError("The value of a property ("+m+") should be a primitive value.");s(r(m),g,d,h)}else g!=null&&d.push(m.replace(/_.*/,"").replace(/[A-Z]/g,b=>"-"+b.toLowerCase())+": "+g+";")}(d.length||h)&&c.push((i&&!f&&!u?a.map(i):a).join(", ")+" {"+d.join(" ")+"}")}for(let a in t)s(r(a),t[a],this.rules)}getRules(){return this.rules.join(` +`)}static newName(){let t=DZ[PZ]||1;return DZ[PZ]=t+1,_$+t.toString(36)}static mount(t,n,i){let r=t[N$],s=i&&i.nonce;r?s&&r.setNonce(s):r=new AEt(t,s),r.mount(Array.isArray(n)?n:[n],t)}}let MZ=new Map;class AEt{constructor(t,n){let i=t.ownerDocument||t,r=i.defaultView;if(!t.head&&t.adoptedStyleSheets&&r.CSSStyleSheet){let s=MZ.get(i);if(s)return t[N$]=s;this.sheet=new r.CSSStyleSheet,MZ.set(i,this)}else this.styleTag=i.createElement("style"),n&&this.styleTag.setAttribute("nonce",n);this.modules=[],t[N$]=this}mount(t,n){let i=this.sheet,r=0,s=0;for(let a=0;a-1&&(this.modules.splice(c,1),s--,c=-1),c==-1){if(this.modules.splice(s++,0,l),i)for(let u=0;u",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},_Et=typeof navigator<"u"&&/Mac/.test(navigator.platform),NEt=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(var Za=0;Za<10;Za++)jm[48+Za]=jm[96+Za]=String(Za);for(var Za=1;Za<=24;Za++)jm[Za+111]="F"+Za;for(var Za=65;Za<=90;Za++)jm[Za]=String.fromCharCode(Za+32),rk[Za]=String.fromCharCode(Za);for(var u5 in jm)rk.hasOwnProperty(u5)||(rk[u5]=jm[u5]);function jEt(e){var t=_Et&&e.metaKey&&e.shiftKey&&!e.ctrlKey&&!e.altKey||NEt&&e.shiftKey&&e.key&&e.key.length==1||e.key=="Unidentified",n=!t&&e.key||(e.shiftKey?rk:jm)[e.keyCode]||e.key||"Unidentified";return n=="Esc"&&(n="Escape"),n=="Del"&&(n="Delete"),n=="Left"&&(n="ArrowLeft"),n=="Up"&&(n="ArrowUp"),n=="Right"&&(n="ArrowRight"),n=="Down"&&(n="ArrowDown"),n}function Cr(){var e=arguments[0];typeof e=="string"&&(e=document.createElement(e));var t=1,n=arguments[1];if(n&&typeof n=="object"&&n.nodeType==null&&!Array.isArray(n)){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var r=n[i];typeof r=="string"?e.setAttribute(i,r):r!=null&&(e[i]=r)}t++}for(;t2);var Zt={mac:FZ||/Mac/.test(Fo.platform),windows:/Win/.test(Fo.platform),linux:/Linux|X11/.test(Fo.platform),ie:CI,ie_version:rAe?j$.documentMode||6:I$?+I$[1]:R$?+R$[1]:0,gecko:LZ,gecko_version:LZ?+(/Firefox\/(\d+)/.exec(Fo.userAgent)||[0,0])[1]:0,chrome:!!d5,chrome_version:d5?+d5[1]:0,ios:FZ,android:/Android\b/.test(Fo.userAgent),webkit:$Z,webkit_version:$Z?+(/\bAppleWebKit\/(\d+)/.exec(Fo.userAgent)||[0,0])[1]:0,safari:P$,safari_version:P$?+(/\bVersion\/(\d+(\.\d+)?)/.exec(Fo.userAgent)||[0,0])[1]:0,tabSize:j$.documentElement.style.tabSize!=null?"tab-size":"-moz-tab-size"};function eQ(e,t){for(let n in e)n=="class"&&t.class?t.class+=" "+e.class:n=="style"&&t.style?t.style+=";"+e.style:t[n]=e[n];return t}const MN=Object.create(null);function tQ(e,t,n){if(e==t)return!0;e||(e=MN),t||(t=MN);let i=Object.keys(e),r=Object.keys(t);if(i.length-0!=r.length-0)return!1;for(let s of i)if(s!=n&&(r.indexOf(s)==-1||e[s]!==t[s]))return!1;return!0}function REt(e,t){for(let n=e.attributes.length-1;n>=0;n--){let i=e.attributes[n].name;t[i]==null&&e.removeAttribute(i)}for(let n in t){let i=t[n];n=="style"?e.style.cssText=i:e.getAttribute(n)!=i&&e.setAttribute(n,i)}}function BZ(e,t,n){let i=!1;if(t)for(let r in t)n&&r in n||(i=!0,r=="style"?e.style.cssText="":e.removeAttribute(r));if(n)for(let r in n)t&&t[r]==n[r]||(i=!0,r=="style"?e.style.cssText=n[r]:e.setAttribute(r,n[r]));return i}function IEt(e){let t=Object.create(null);for(let n=0;n0?3e8:-4e8:n>0?1e8:-1e8,new Db(t,n,n,i,t.widget||null,!1)}static replace(t){let n=!!t.block,i,r;if(t.isBlockGap)i=-5e8,r=4e8;else{let{start:s,end:a}=sAe(t,n);i=(s?n?-3e8:-1:5e8)-1,r=(a?n?2e8:1:-6e8)+1}return new Db(t,i,r,n,t.widget||null,!0)}static line(t){return new FE(t)}static set(t,n=!1){return Si.of(t,n)}hasHeight(){return this.widget?this.widget.estimatedHeight>-1:!1}}xn.none=Si.empty;class $E extends xn{constructor(t){let{start:n,end:i}=sAe(t);super(n?-1:5e8,i?1:-6e8,null,t),this.tagName=t.tagName||"span",this.attrs=t.class&&t.attributes?eQ(t.attributes,{class:t.class}):t.class?{class:t.class}:t.attributes||MN}eq(t){return this==t||t instanceof $E&&this.tagName==t.tagName&&tQ(this.attrs,t.attrs)}range(t,n=t){if(t>=n)throw new RangeError("Mark decorations may not be empty");return super.range(t,n)}}$E.prototype.point=!1;class FE extends xn{constructor(t){super(-2e8,-2e8,null,t)}eq(t){return t instanceof FE&&this.spec.class==t.spec.class&&tQ(this.spec.attributes,t.spec.attributes)}range(t,n=t){if(n!=t)throw new RangeError("Line decoration ranges must be zero-length");return super.range(t,n)}}FE.prototype.mapMode=to.TrackBefore;FE.prototype.point=!0;class Db extends xn{constructor(t,n,i,r,s,a){super(n,i,s,t),this.block=r,this.isReplace=a,this.mapMode=r?n<=0?to.TrackBefore:to.TrackAfter:to.TrackDel}get type(){return this.startSide!=this.endSide?ro.WidgetRange:this.startSide<=0?ro.WidgetBefore:ro.WidgetAfter}get heightRelevant(){return this.block||!!this.widget&&(this.widget.estimatedHeight>=5||this.widget.lineBreaks>0)}eq(t){return t instanceof Db&&PEt(this.widget,t.widget)&&this.block==t.block&&this.startSide==t.startSide&&this.endSide==t.endSide}range(t,n=t){if(this.isReplace&&(t>n||t==n&&this.startSide>0&&this.endSide<=0))throw new RangeError("Invalid range for replacement decoration");if(!this.isReplace&&n!=t)throw new RangeError("Widget decorations can only have zero-length ranges");return super.range(t,n)}}Db.prototype.point=!0;function sAe(e,t=!1){let{inclusiveStart:n,inclusiveEnd:i}=e;return n==null&&(n=e.inclusive),i==null&&(i=e.inclusive),{start:n??t,end:i??t}}function PEt(e,t){return e==t||!!(e&&t&&e.compare(t))}function mv(e,t,n,i=0){let r=n.length-1;r>=0&&n[r]+i>=e?n[r]=Math.max(n[r],t):n.push(e,t)}class sk extends _m{constructor(t,n,i){super(),this.tagName=t,this.attributes=n,this.rank=i}eq(t){return t==this||t instanceof sk&&this.tagName==t.tagName&&tQ(this.attributes,t.attributes)}static create(t){return new sk(t.tagName,t.attributes||MN,t.rank==null?50:Math.max(0,Math.min(t.rank,100)))}static set(t,n=!1){return Si.of(t,n)}}sk.prototype.startSide=sk.prototype.endSide=-1;function ak(e){let t;return e.nodeType==11?t=e.getSelection?e:e.ownerDocument:t=e,t.getSelection()}function D$(e,t){return t?e==t||e.contains(t.nodeType!=1?t.parentNode:t):!1}function zO(e,t){if(!t.anchorNode)return!1;try{return D$(e,t.anchorNode)}catch{return!1}}function VO(e){return e.nodeType==3?lk(e,0,e.nodeValue.length).getClientRects():e.nodeType==1?e.getClientRects():[]}function HO(e,t,n,i){return n?UZ(e,t,n,i,-1)||UZ(e,t,n,i,1):!1}function Rm(e){for(var t=0;;t++)if(e=e.previousSibling,!e)return t}function LN(e){return e.nodeType==1&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(e.nodeName)}function UZ(e,t,n,i,r){for(;;){if(e==n&&t==i)return!0;if(t==(r<0?0:Ah(e))){if(e.nodeName=="DIV")return!1;let s=e.parentNode;if(!s||s.nodeType!=1)return!1;t=Rm(e)+(r<0?0:1),e=s}else if(e.nodeType==1){if(e=e.childNodes[t+(r<0?-1:0)],e.nodeType==1&&e.contentEditable=="false")return!1;t=r<0?Ah(e):0}else return!1}}function Ah(e){return e.nodeType==3?e.nodeValue.length:e.childNodes.length}function ok(e,t){let{left:n,right:i}=e;if(n==i)return e;let r=t?n:i;return{left:r,right:r,top:e.top,bottom:e.bottom}}function DEt(e){let t=e.visualViewport;return t?{left:0,right:t.width,top:0,bottom:t.height}:{left:0,right:e.innerWidth,top:0,bottom:e.innerHeight}}function aAe(e,t){let n=t.width/e.offsetWidth,i=t.height/e.offsetHeight;return(n>.995&&n<1.005||!isFinite(n)||Math.abs(t.width-e.offsetWidth)<1)&&(n=1),(i>.995&&i<1.005||!isFinite(i)||Math.abs(t.height-e.offsetHeight)<1)&&(i=1),{scaleX:n,scaleY:i}}function MEt(e,t,n,i,r,s,a,l){let c=e.ownerDocument,u=c.defaultView||window;for(let d=e,f=!1;d&&!f;)if(d.nodeType==1){let h,m=d==c.body,g=1,b=1;if(m)h=DEt(u);else{if(/^(fixed|sticky)$/.test(getComputedStyle(d).position)&&(f=!0),d.scrollHeight<=d.clientHeight&&d.scrollWidth<=d.clientWidth){d=d.assignedSlot||d.parentNode;continue}let x=d.getBoundingClientRect();({scaleX:g,scaleY:b}=aAe(d,x)),h={left:x.left,right:x.left+d.clientWidth*g,top:x.top,bottom:x.top+d.clientHeight*b}}let v=0,y=0;if(r=="nearest")t.top0&&t.bottom>h.bottom+y&&(y=t.bottom-h.bottom+a)):t.bottom>h.bottom-a&&(y=t.bottom-h.bottom+a,n<0&&t.top-y0&&t.right>h.right+v&&(v=t.right-h.right+s)):t.right>h.right-s&&(v=t.right-h.right+s,n<0&&t.lefth.bottom||t.lefth.right)&&(t={left:Math.max(t.left,h.left),right:Math.min(t.right,h.right),top:Math.max(t.top,h.top),bottom:Math.min(t.bottom,h.bottom)}),d=d.assignedSlot||d.parentNode}else if(d.nodeType==11)d=d.host;else break}function oAe(e,t=!0){let n=e.ownerDocument,i=null,r=null;for(let s=e.parentNode;s&&!(s==n.body||(!t||i)&&r);)if(s.nodeType==1)!r&&s.scrollHeight>s.clientHeight&&(r=s),t&&!i&&s.scrollWidth>s.clientWidth&&(i=s),s=s.assignedSlot||s.parentNode;else if(s.nodeType==11)s=s.host;else break;return{x:i,y:r}}class LEt{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}eq(t){return this.anchorNode==t.anchorNode&&this.anchorOffset==t.anchorOffset&&this.focusNode==t.focusNode&&this.focusOffset==t.focusOffset}setRange(t){let{anchorNode:n,focusNode:i}=t;this.set(n,Math.min(t.anchorOffset,n?Ah(n):0),i,Math.min(t.focusOffset,i?Ah(i):0))}set(t,n,i,r){this.anchorNode=t,this.anchorOffset=n,this.focusNode=i,this.focusOffset=r}}let _g=null;Zt.safari&&Zt.safari_version>=26&&(_g=!1);function lAe(e){if(e.setActive)return e.setActive();if(_g)return e.focus(_g);let t=[];for(let n=e;n&&(t.push(n,n.scrollTop,n.scrollLeft),n!=n.ownerDocument);n=n.parentNode);if(e.focus(_g==null?{get preventScroll(){return _g={preventScroll:!0},!0}}:void 0),!_g){_g=!1;for(let n=0;nMath.max(0,e.document.documentElement.scrollHeight-e.innerHeight-4):e.scrollTop>Math.max(1,e.scrollHeight-e.clientHeight-4)}function uAe(e,t){for(let n=e,i=t;;){if(n.nodeType==3&&i>0)return{node:n,offset:i};if(n.nodeType==1&&i>0){if(n.contentEditable=="false")return null;n=n.childNodes[i-1],i=Ah(n)}else if(n.parentNode&&!LN(n))i=Rm(n),n=n.parentNode;else return null}}function dAe(e,t){for(let n=e,i=t;;){if(n.nodeType==3&&i=n){if(l.level==i)return a;(s<0||(r!=0?r<0?l.fromn:t[s].level>l.level))&&(s=a)}}if(s<0)throw new RangeError("Index out of range");return s}}function pAe(e,t){if(e.length!=t.length)return!1;for(let n=0;n=0;b-=3)if(ld[b+1]==-m){let v=ld[b+2],y=v&2?r:v&4?v&1?s:r:0;y&&(Ir[f]=Ir[ld[b]]=y),l=b;break}}else{if(ld.length==189)break;ld[l++]=f,ld[l++]=h,ld[l++]=c}else if((g=Ir[f])==2||g==1){let b=g==r;c=b?0:1;for(let v=l-3;v>=0;v-=3){let y=ld[v+2];if(y&2)break;if(b)ld[v+2]|=2;else{if(y&4)break;ld[v+2]|=4}}}}}function HEt(e,t,n,i){for(let r=0,s=i;r<=n.length;r++){let a=r?n[r-1].to:e,l=rc;)g==v&&(g=n[--b].from,v=b?n[b-1].to:e),Ir[--g]=m;c=d}else s=u,c++}}}function L$(e,t,n,i,r,s,a){let l=i%2?2:1;if(i%2==r%2)for(let c=t,u=0;cc&&a.push(new Nd(c,b.from,m));let v=b.direction==Mb!=!(m%2);$$(e,v?i+1:i,r,b.inner,b.from,b.to,a),c=b.to}g=b.to}else{if(g==n||(d?Ir[g]!=l:Ir[g]==l))break;g++}h?L$(e,c,g,i+1,r,h,a):ct;){let d=!0,f=!1;if(!u||c>s[u-1].to){let b=Ir[c-1];b!=l&&(d=!1,f=b==16)}let h=!d&&l==1?[]:null,m=d?i:i+1,g=c;e:for(;;)if(u&&g==s[u-1].to){if(f)break e;let b=s[--u];if(!d)for(let v=b.from,y=u;;){if(v==t)break e;if(y&&s[y-1].to==v)v=s[--y].from;else{if(Ir[v-1]==l)break e;break}}if(h)h.push(b);else{b.toIr.length;)Ir[Ir.length]=256;let i=[],r=t==Mb?0:1;return $$(e,r,r,n,0,e.length,i),i}function mAe(e){return[new Nd(0,e,0)]}let gAe="";function WEt(e,t,n,i,r){var s;let a=i.head-e.from,l=Nd.find(t,a,(s=i.bidiLevel)!==null&&s!==void 0?s:-1,i.assoc),c=t[l],u=c.side(r,n);if(a==u){let h=l+=r?1:-1;if(h<0||h>=t.length)return null;c=t[l=h],a=c.side(!r,n),u=c.side(r,n)}let d=Ma(e.text,a,c.forward(r,n));(dc.to)&&(d=u),gAe=e.text.slice(Math.min(a,d),Math.max(a,d));let f=l==(r?t.length-1:0)?null:t[l+(r?1:-1)];return f&&d==u&&f.level+(r?0:1)e.some(t=>t)}),kAe=Jt.define({combine:e=>e.some(t=>t)}),EAe=Jt.define();class bv{constructor(t,n,i,r,s,a=!1){this.range=t,this.y=n,this.x=i,this.yMargin=r,this.xMargin=s,this.isSnapshot=a}map(t){return t.empty?this:new bv(this.range.map(t),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}clip(t){return this.range.to<=t.doc.length?this:new bv(rt.cursor(t.doc.length),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}}const ZT=Qn.define({map:(e,t)=>e.map(t)}),CAe=Qn.define();function ml(e,t,n){let i=e.facet(xAe);i.length?i[0](t):window.onerror&&window.onerror(String(t),n,void 0,void 0,t)||(n?console.error(n+":",t):console.error(t))}const Qf=Jt.define({combine:e=>e.length?e[0]:!0});let GEt=0;const Uy=Jt.define({combine(e){return e.filter((t,n)=>{for(let i=0;i{let c=[];return a&&c.push(TI.of(u=>{let d=u.plugin(l);return d?a(d):xn.none})),s&&c.push(s(l)),c})}static fromClass(t,n){return Ts.define((i,r)=>new t(i,r),n)}}class f5{constructor(t){this.spec=t,this.mustUpdate=null,this.value=null}get plugin(){return this.spec&&this.spec.plugin}update(t){if(this.value){if(this.mustUpdate){let n=this.mustUpdate;if(this.mustUpdate=null,this.value.update)try{this.value.update(n)}catch(i){if(ml(n.state,i,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch{}this.deactivate()}}}else if(this.spec)try{this.value=this.spec.plugin.create(t,this.spec.arg)}catch(n){ml(t.state,n,"CodeMirror plugin crashed"),this.deactivate()}return this}destroy(t){var n;if(!((n=this.value)===null||n===void 0)&&n.destroy)try{this.value.destroy()}catch(i){ml(t.state,i,"CodeMirror plugin crashed")}}deactivate(){this.spec=this.value=null}}const TAe=Jt.define(),sQ=Jt.define(),TI=Jt.define(),AAe=Jt.define(),aQ=Jt.define(),BE=Jt.define(),_Ae=Jt.define();function zZ(e,t){let n=e.state.facet(_Ae);if(!n.length)return n;let i=n.map(s=>s instanceof Function?s(e):s),r=[];return Si.spans(i,t.from,t.to,{point(){},span(s,a,l,c){let u=s-t.from,d=a-t.from,f=r;for(let h=l.length-1;h>=0;h--,c--){let m=l[h].spec.bidiIsolate,g;if(m==null&&(m=KEt(t.text,u,d)),c>0&&f.length&&(g=f[f.length-1]).to==u&&g.direction==m)g.to=d,f=g.inner;else{let b={from:u,to:d,direction:m,inner:[]};f.push(b),f=b.inner}}}}),r}const NAe=Jt.define();function oQ(e){let t=0,n=0,i=0,r=0;for(let s of e.state.facet(NAe)){let a=s(e);a&&(a.left!=null&&(t=Math.max(t,a.left)),a.right!=null&&(n=Math.max(n,a.right)),a.top!=null&&(i=Math.max(i,a.top)),a.bottom!=null&&(r=Math.max(r,a.bottom)))}return{left:t,right:n,top:i,bottom:r}}const Ww=Jt.define();class Gc{constructor(t,n,i,r){this.fromA=t,this.toA=n,this.fromB=i,this.toB=r}join(t){return new Gc(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(t){let n=t.length,i=this;for(;n>0;n--){let r=t[n-1];if(!(r.fromA>i.toA)){if(r.toAr.push(new Gc(s,a,l,c))),this.changedRanges=r}static create(t,n,i){return new $N(t,n,i)}get viewportChanged(){return(this.flags&4)>0}get viewportMoved(){return(this.flags&8)>0}get heightChanged(){return(this.flags&2)>0}get geometryChanged(){return this.docChanged||(this.flags&18)>0}get focusChanged(){return(this.flags&1)>0}get docChanged(){return!this.changes.empty}get selectionSet(){return this.transactions.some(t=>t.selection)}get empty(){return this.flags==0&&this.transactions.length==0}}const XEt=[];class Cs{constructor(t,n,i=0){this.dom=t,this.length=n,this.flags=i,this.parent=null,t.cmTile=this}get breakAfter(){return this.flags&1}get children(){return XEt}isWidget(){return!1}get isHidden(){return!1}isComposite(){return!1}isLine(){return!1}isText(){return!1}isBlock(){return!1}get domAttrs(){return null}sync(t){if(this.flags|=2,this.flags&4){this.flags&=-5;let n=this.domAttrs;n&&REt(this.dom,n)}}toString(){return this.constructor.name+(this.children.length?`(${this.children})`:"")+(this.breakAfter?"#":"")}destroy(){this.parent=null}setDOM(t){this.dom=t,t.cmTile=this}get posAtStart(){return this.parent?this.parent.posBefore(this):0}get posAtEnd(){return this.posAtStart+this.length}posBefore(t,n=this.posAtStart){let i=n;for(let r of this.children){if(r==t)return i;i+=r.length+r.breakAfter}throw new RangeError("Invalid child in posBefore")}posAfter(t){return this.posBefore(t)+t.length}covers(t){return!0}coordsIn(t,n,i){return null}domPosFor(t,n){let i=Rm(this.dom),r=this.length?t>0:n>0;return new ju(this.parent.dom,i+(r?1:0),t==0||t==this.length)}markDirty(t){this.flags&=-3,t&&(this.flags|=4),this.parent&&this.parent.flags&2&&this.parent.markDirty(!1)}get overrideDOMText(){return null}get root(){for(let t=this;t;t=t.parent)if(t instanceof _I)return t;return null}static get(t){return t.cmTile}}class AI extends Cs{constructor(t){super(t,0),this._children=[]}isComposite(){return!0}get children(){return this._children}get lastChild(){return this.children.length?this.children[this.children.length-1]:null}append(t){this.children.push(t),t.parent=this}sync(t){if(this.flags&2)return;super.sync(t);let n=this.dom,i=null,r,s=(t==null?void 0:t.node)==n?t:null,a=0;for(let l of this.children){if(l.sync(t),a+=l.length+l.breakAfter,r=i?i.nextSibling:n.firstChild,s&&r!=l.dom&&(s.written=!0),l.dom.parentNode==n)for(;r&&r!=l.dom;)r=VZ(r);else n.insertBefore(l.dom,r);i=l.dom}for(r=i?i.nextSibling:n.firstChild,s&&r&&(s.written=!0);r;)r=VZ(r);this.length=a}}function VZ(e){let t=e.nextSibling;return e.parentNode.removeChild(e),t}class _I extends AI{constructor(t,n){super(n),this.view=t}owns(t){for(;t;t=t.parent)if(t==this)return!0;return!1}isBlock(){return!0}nearest(t){for(;;){if(!t)return null;let n=Cs.get(t);if(n&&this.owns(n))return n;t=t.parentNode}}blockTiles(t){for(let n=[],i=this,r=0,s=0;;)if(r==i.children.length){if(!n.length)return;i=i.parent,i.breakAfter&&s++,r=n.pop()}else{let a=i.children[r++];if(a instanceof uh)n.push(r),i=a,r=0;else{let l=s+a.length,c=t(a,s);if(c!==void 0)return c;s=l+a.breakAfter}}}resolveBlock(t,n){let i,r=-1,s,a=-1;if(this.blockTiles((l,c)=>{let u=c+l.length;if(t>=c&&t<=u){if(l.isWidget()&&n>=-1&&n<=1){if(l.flags&32)return!0;l.flags&16&&(i=void 0)}(ct||t==c&&(n>1?l.length:l.covers(-1)))&&(!s||!l.isWidget()&&s.isWidget())&&(s=l,a=t-c)}}),!i&&!s)throw new Error("No tile at position "+t);return i&&n<0||!s?{tile:i,offset:r}:{tile:s,offset:a}}}class uh extends AI{constructor(t,n){super(t),this.wrapper=n}isBlock(){return!0}covers(t){return this.children.length?t<0?this.children[0].covers(-1):this.lastChild.covers(1):!1}get domAttrs(){return this.wrapper.attributes}static of(t,n){let i=new uh(n||document.createElement(t.tagName),t);return n||(i.flags|=4),i}}class cx extends AI{constructor(t,n){super(t),this.attrs=n}isLine(){return!0}static start(t,n,i){let r=new cx(n||document.createElement("div"),t);return(!n||!i)&&(r.flags|=4),r}get domAttrs(){return this.attrs}resolveInline(t,n,i){let r=null,s=-1,a=null,l=-1;function c(d,f){for(let h=0,m=0;h=f&&(g.isComposite()?c(g,f-m):(!a||a.isHidden&&(n>0&&!(a.flags&32)||i&&ZEt(a,g)))&&(b>f||g.flags&32)?(a=g,l=f-m):(mr&&(t=r);let s=t,a=t,l=0;t==0&&n<0||t==r&&n>=0?Zt.chrome||Zt.gecko||(t?(s--,l=1):a=0)?0:c.length-1];return Zt.safari&&!l&&u.width==0&&(u=Array.prototype.find.call(c,d=>d.width)||u),i==null?u:ok(u,(l?l>0:n<0)==i)}static of(t,n){let i=new Wg(n||document.createTextNode(t),t);return n||(i.flags|=2),i}}class Lb extends Cs{constructor(t,n,i,r){super(t,n,r),this.widget=i}isWidget(){return!0}get isHidden(){return this.widget.isHidden}covers(t){return this.flags&48?!1:(this.flags&(t<0?64:128))>0}coordsIn(t,n){return this.coordsInWidget(t,n,!1)}coordsInWidget(t,n,i){let r=this.widget.coordsAt(this.dom,t,n);if(r)return r;if(i)return ok(this.dom.getBoundingClientRect(),this.length?t==0:n<=0);{let s=this.dom.getClientRects(),a=null;if(!s.length)return null;let l=this.flags&16?!0:this.flags&32?!1:t>0;for(let c=l?s.length-1:0;a=s[c],!(t>0?c==0:c==s.length-1||a.top0==i)}}class JEt{constructor(t){this.index=0,this.beforeBreak=!1,this.parents=[],this.tile=t}advance(t,n,i){let{tile:r,index:s,beforeBreak:a,parents:l}=this;for(;t||n>0;)if(r.isComposite())if(a){if(!t)break;i&&i.break(),t--,a=!1}else if(s==r.children.length){if(!t&&!l.length)break;i&&i.leave(r),a=!!r.breakAfter,{tile:r,index:s}=l.pop(),s++}else{let c=r.children[s],u=c.breakAfter;(n>0?c.length<=t:c.length=0;l--){let c=n.marks[l],u=r.lastChild;if(u instanceof fl&&u.mark.eq(c.mark))u.dom!=c.dom&&u.setDOM(h5(c.dom)),r=u;else{if(this.cache.reused.get(c)){let f=Cs.get(c.dom);f&&f.setDOM(h5(c.dom))}let d=fl.of(c.mark,c.dom);r.append(d),r=d}this.cache.reused.set(c,2)}let s=Cs.get(t.text);s&&this.cache.reused.set(s,2);let a=new Wg(t.text,t.text.nodeValue);a.flags|=8,this.pos=t.range.toB,r.append(a)}addInlineWidget(t,n,i){let r=this.afterWidget&&t.flags&48&&(this.afterWidget.flags&48)==(t.flags&48);r||this.flushBuffer();let s=this.ensureMarks(n,i);!r&&!(t.flags&16)&&s.append(this.getBuffer(1)),s.append(t),this.pos+=t.length,this.afterWidget=t}addMark(t,n,i){this.flushBuffer(),this.ensureMarks(n,i).append(t),this.pos+=t.length,this.afterWidget=null}addBlockWidget(t){this.getBlockPos().append(t),this.pos+=t.length,this.lastBlock=t,this.endLine()}continueWidget(t){let n=this.afterWidget||this.lastBlock;n.length+=t,this.pos+=t}addLineStart(t,n){var i;t||(t=jAe);let r=cx.start(t,n||((i=this.cache.find(cx))===null||i===void 0?void 0:i.dom),!!n);this.getBlockPos().append(this.lastBlock=this.curLine=r)}addLine(t){this.getBlockPos().append(t),this.pos+=t.length,this.lastBlock=t,this.endLine()}addBreak(){this.lastBlock.flags|=1,this.endLine(),this.pos++}addLineStartIfNotCovered(t){this.blockPosCovered()||this.addLineStart(t)}ensureLine(t){this.curLine||this.addLineStart(t)}ensureMarks(t,n){var i;let r=this.curLine;for(let s=t.length-1;s>=0;s--){let a=t[s],l;if(n>0&&(l=r.lastChild)&&l instanceof fl&&l.mark.eq(a))r=l,n--;else{let c=fl.of(a,(i=this.cache.find(fl,u=>u.mark.eq(a)))===null||i===void 0?void 0:i.dom);r.append(c),r=c,n=0}}return r}endLine(){if(this.curLine){this.flushBuffer();let t=this.curLine.lastChild;(!t||!HZ(this.curLine,!1)||t.dom.nodeName!="BR"&&t.isWidget()&&!(Zt.ios&&HZ(this.curLine,!0)))&&this.curLine.append(this.cache.findWidget(p5,0,32)||new Lb(p5.toDOM(),0,p5,32)),this.curLine=this.afterWidget=null}}updateBlockWrappers(){this.wrapperPos>this.pos+1e4&&(this.blockWrappers.goto(this.pos),this.wrappers.length=0);for(let t=this.wrappers.length-1;t>=0;t--)this.wrappers[t].to=this.pos){let n=t.rank*102+t.value.rank,i=new eCt(t.from,t.to,t.value,n),r=this.wrappers.length;for(;r>0&&(this.wrappers[r-1].rank-i.rank||this.wrappers[r-1].to-i.to)<0;)r--;this.wrappers.splice(r,0,i)}this.wrapperPos=this.pos}getBlockPos(){var t;this.updateBlockWrappers();let n=this.root;for(let i of this.wrappers){let r=n.lastChild;if(i.froma.wrapper.eq(i.wrapper)))===null||t===void 0?void 0:t.dom);n.append(s),n=s}}return n}blockPosCovered(){let t=this.lastBlock;return t!=null&&!t.breakAfter&&(!t.isWidget()||(t.flags&160)>0)}getBuffer(t){let n=2|(t<0?16:32),i=this.cache.find(FN,void 0,1);return i&&(i.flags=n),i||new FN(n)}flushBuffer(){this.afterWidget&&!(this.afterWidget.flags&32)&&(this.afterWidget.parent.append(this.getBuffer(-1)),this.afterWidget=null)}}class nCt{constructor(t){this.skipCount=0,this.text="",this.textOff=0,this.cursor=t.iter()}skip(t){this.textOff+t<=this.text.length?this.textOff+=t:(this.skipCount+=t-(this.text.length-this.textOff),this.text="",this.textOff=0)}next(t){if(this.textOff==this.text.length){let{value:r,lineBreak:s,done:a}=this.cursor.next(this.skipCount);if(this.skipCount=0,a)throw new Error("Ran out of text content when drawing inline views");this.text=r;let l=this.textOff=Math.min(t,r.length);return s?null:r.slice(0,l)}let n=Math.min(this.text.length,this.textOff+t),i=this.text.slice(this.textOff,n);return this.textOff=n,i}}const BN=[Lb,cx,Wg,fl,FN,uh,_I];for(let e=0;e[]),this.index=BN.map(()=>0),this.reused=new Map}add(t){let n=t.constructor.bucket,i=this.buckets[n];i.length<6?i.push(t):i[this.index[n]=(this.index[n]+1)%6]=t}find(t,n,i=2){let r=t.bucket,s=this.buckets[r],a=this.index[r];for(let l=0;l{if(this.cache.add(a),a.isComposite())return!1},enter:a=>this.cache.add(a),leave:()=>{},break:()=>{}}}run(t,n){let i=n&&this.getCompositionContext(n.text);for(let r=0,s=0,a=0;;){let l=ar){let u=c-r;this.preserve(u,!a,!l),r=c,s+=u}if(!l)break;n&&l.fromA<=n.range.fromA&&l.toA>=n.range.toA?(this.forward(l.fromA,n.range.fromA,n.range.fromA{if(a.isWidget())if(this.openWidget)this.builder.continueWidget(c-l);else{let u=c>0||l{a.isLine()?this.builder.addLineStart(a.attrs,this.cache.maybeReuse(a)):(this.cache.add(a),a instanceof fl&&r.unshift(a.mark)),this.openWidget=!1},leave:a=>{a.isLine()?r.length&&(r.length=s=0):a instanceof fl&&(r.shift(),s=Math.min(s,r.length))},break:()=>{this.builder.addBreak(),this.openWidget=!1}}),this.text.skip(t)}emit(t,n){let i=null,r=this.builder,s=-1,a=Si.spans(this.decorations,t,n,{point:(l,c,u,d,f,h)=>{if(u instanceof Db){if(this.disallowBlockEffectsFor[h]){if(u.block)throw new RangeError("Block decorations may not be specified via plugins");if(c>this.view.state.doc.lineAt(l).to)throw new RangeError("Decorations that replace line breaks may not be specified via plugins")}if(s=d.length,f>d.length)r.continueWidget(c-l);else{let m=u.widget||(u.block?ux.block:ux.inline),g=sCt(u),b=this.cache.findWidget(m,c-l,g)||Lb.of(m,this.view,c-l,g);u.block?(u.startSide>0&&r.addLineStartIfNotCovered(i),r.addBlockWidget(b)):(r.ensureLine(i),r.addInlineWidget(b,d,f))}i=null}else i=aCt(i,u);c>l&&this.text.skip(c-l)},span:(l,c,u,d)=>{for(let f=l;f-1&&(this.openWidget=a>s),this.openWidget||r.addLineStartIfNotCovered(i),this.openMarks=a}forward(t,n,i=1){n-t<=10?this.old.advance(n-t,i,this.reuseWalker):(this.old.advance(5,-1,this.reuseWalker),this.old.advance(n-t-10,-1),this.old.advance(5,i,this.reuseWalker))}getCompositionContext(t){let n=[],i=null;for(let r=t.parentNode;;r=r.parentNode){let s=Cs.get(r);if(r==this.view.contentDOM)break;s instanceof fl?n.push(s):s!=null&&s.isLine()?i=s:s instanceof uh||(r.nodeName=="DIV"&&!i&&r!=this.view.contentDOM?i=new cx(r,jAe):i||n.push(fl.of(new $E({tagName:r.nodeName.toLowerCase(),attributes:IEt(r)}),r)))}return{line:i,marks:n}}}function HZ(e,t){let n=i=>{for(let r of i.children)if((t?r.isText():r.length)||n(r))return!0;return!1};return n(e)}function sCt(e){let t=e.isReplace?(e.startSide<0?64:0)|(e.endSide>0?128:0):e.startSide>0?32:16;return e.block&&(t|=256),t}const jAe={class:"cm-line"};function aCt(e,t){let n=t.spec.attributes,i=t.spec.class;return!n&&!i||(e||(e={class:"cm-line"}),n&&eQ(n,e),i&&(e.class+=" "+i)),e}function oCt(e){let t=[];for(let n=e.parents.length;n>1;n--){let i=n==e.parents.length?e.tile:e.parents[n].tile;i instanceof fl&&t.push(i.mark)}return t}function h5(e){let t=Cs.get(e);return t&&t.setDOM(e.cloneNode()),e}class ux extends Zu{constructor(t){super(),this.tag=t}eq(t){return t.tag==this.tag}toDOM(){return document.createElement(this.tag)}updateDOM(t){return t.nodeName.toLowerCase()==this.tag}get isHidden(){return!0}}ux.inline=new ux("span");ux.block=new ux("div");const p5=new class extends Zu{toDOM(){return document.createElement("br")}get isHidden(){return!0}get editable(){return!0}};class qZ{constructor(t){this.view=t,this.decorations=[],this.blockWrappers=[],this.dynamicDecorationMap=[!1],this.domChanged=null,this.hasComposition=null,this.editContextFormatting=xn.none,this.lastCompositionAfterCursor=!1,this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.forceSelection=!1,this.lastUpdate=Date.now(),this.updateDeco(),this.tile=new _I(t,t.contentDOM),this.updateInner([new Gc(0,0,0,t.state.doc.length)],null)}update(t){var n;let i=t.changedRanges;this.minWidth>0&&i.length&&(i.every(({fromA:d,toA:f})=>fthis.minWidthTo)?(this.minWidthFrom=t.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=t.changes.mapPos(this.minWidthTo,1)):this.minWidth=this.minWidthFrom=this.minWidthTo=0),this.updateEditContextFormatting(t);let r=-1;this.view.inputState.composing>=0&&!this.view.observer.editContext&&(!((n=this.domChanged)===null||n===void 0)&&n.newSel?r=this.domChanged.newSel.head:!gCt(t.changes,this.hasComposition)&&!t.selectionSet&&(r=t.state.selection.main.head));let s=r>-1?cCt(this.view,t.changes,r):null;if(this.domChanged=null,this.hasComposition){let{from:d,to:f}=this.hasComposition;i=new Gc(d,f,t.changes.mapPos(d,-1),t.changes.mapPos(f,1)).addToSet(i.slice())}this.hasComposition=s?{from:s.range.fromB,to:s.range.toB}:null,(Zt.ie||Zt.chrome)&&!s&&t&&t.state.doc.lines!=t.startState.doc.lines&&(this.forceSelection=!0);let a=this.decorations,l=this.blockWrappers;this.updateDeco();let c=fCt(a,this.decorations,t.changes);c.length&&(i=Gc.extendWithRanges(i,c));let u=pCt(l,this.blockWrappers,t.changes);return u.length&&(i=Gc.extendWithRanges(i,u)),s&&!i.some(d=>d.fromA<=s.range.fromA&&d.toA>=s.range.toA)&&(i=s.range.addToSet(i.slice())),this.tile.flags&2&&i.length==0?!1:(this.updateInner(i,s),t.transactions.length&&(this.lastUpdate=Date.now()),!0)}updateInner(t,n){this.view.viewState.mustMeasureContent=!0;let{observer:i}=this.view;i.ignore(()=>{if(n||t.length){let a=this.tile,l=new rCt(this.view,a,this.blockWrappers,this.decorations,this.dynamicDecorationMap);n&&Cs.get(n.text)&&l.cache.reused.set(Cs.get(n.text),2),this.tile=l.run(t,n),B$(a,l.cache.reused)}this.tile.dom.style.height=this.view.viewState.contentHeight/this.view.scaleY+"px",this.tile.dom.style.flexBasis=this.minWidth?this.minWidth+"px":"";let s=Zt.chrome||Zt.ios?{node:i.selectionRange.focusNode,written:!1}:void 0;this.tile.sync(s),s&&(s.written||i.selectionRange.focusNode!=s.node||!this.tile.dom.contains(s.node))&&(this.forceSelection=!0),this.tile.dom.style.height=""});let r=[];if(this.view.viewport.from||this.view.viewport.to-1)&&zO(i,this.view.observer.selectionRange)&&!(r&&i.contains(r));if(!(s||n||a))return;let l=this.forceSelection;this.forceSelection=!1;let c=this.view.state.selection.main,u,d;if(c.empty?d=u=this.inlineDOMNearPos(c.anchor,c.assoc||1):(d=this.inlineDOMNearPos(c.head,c.head==c.from?1:-1),u=this.inlineDOMNearPos(c.anchor,c.anchor==c.from?1:-1)),Zt.gecko&&c.empty&&!this.hasComposition&&lCt(u)){let h=document.createTextNode("");this.view.observer.ignore(()=>u.node.insertBefore(h,u.node.childNodes[u.offset]||null)),u=d=new ju(h,0),l=!0}let f=this.view.observer.selectionRange;(l||!f.focusNode||(!HO(u.node,u.offset,f.anchorNode,f.anchorOffset)||!HO(d.node,d.offset,f.focusNode,f.focusOffset))&&!this.suppressWidgetCursorChange(f,c))&&(this.view.observer.ignore(()=>{Zt.android&&Zt.chrome&&i.contains(f.focusNode)&&mCt(f.focusNode,i)&&(i.blur(),i.focus({preventScroll:!0}));let h=ak(this.view.root);if(h)if(c.empty){if(Zt.gecko){let m=uCt(u.node,u.offset);if(m&&m!=3){let g=(m==1?uAe:dAe)(u.node,u.offset);g&&(u=new ju(g.node,g.offset))}}h.collapse(u.node,u.offset),c.bidiLevel!=null&&h.caretBidiLevel!==void 0&&(h.caretBidiLevel=c.bidiLevel)}else if(h.extend){h.collapse(u.node,u.offset);try{h.extend(d.node,d.offset)}catch{}}else{let m=document.createRange();c.anchor>c.head&&([u,d]=[d,u]),m.setEnd(d.node,d.offset),m.setStart(u.node,u.offset),h.removeAllRanges(),h.addRange(m)}a&&this.view.root.activeElement==i&&(i.blur(),r&&r.focus())}),this.view.observer.setSelectionRange(u,d)),this.impreciseAnchor=u.precise?null:new ju(f.anchorNode,f.anchorOffset),this.impreciseHead=d.precise?null:new ju(f.focusNode,f.focusOffset)}suppressWidgetCursorChange(t,n){return this.hasComposition&&n.empty&&HO(t.focusNode,t.focusOffset,t.anchorNode,t.anchorOffset)&&this.posFromDOM(t.focusNode,t.focusOffset)==n.head}enforceCursorAssoc(){if(this.hasComposition)return;let{view:t}=this,n=t.state.selection.main,i=ak(t.root),{anchorNode:r,anchorOffset:s}=t.observer.selectionRange;if(!i||!n.empty||!n.assoc||!i.modify)return;let a=this.lineAt(n.head,n.assoc);if(!a)return;let l=a.posAtStart;if(n.head==l||n.head==l+a.length)return;let c=this.coordsAt(n.head,-1),u=this.coordsAt(n.head,1);if(!c||!u||c.bottom>u.top)return;let d=this.domAtPos(n.head+n.assoc,n.assoc);i.collapse(d.node,d.offset),i.modify("move",n.assoc<0?"forward":"backward","lineboundary"),t.observer.readSelectionRange();let f=t.observer.selectionRange;t.docView.posFromDOM(f.anchorNode,f.anchorOffset)!=n.from&&i.collapse(r,s)}posFromDOM(t,n){let i=this.tile.nearest(t);if(!i)return this.tile.dom.compareDocumentPosition(t)&2?0:this.view.state.doc.length;let r=i.posAtStart;if(i.isComposite()){let s;if(t==i.dom)s=i.dom.childNodes[n];else{let a=Ah(t)==0?0:n==0?-1:1;for(;;){let l=t.parentNode;if(l==i.dom)break;a==0&&l.firstChild!=l.lastChild&&(t==l.firstChild?a=-1:a=1),t=l}a<0?s=t:s=t.nextSibling}if(s==i.dom.firstChild)return r;for(;s&&!Cs.get(s);)s=s.nextSibling;if(!s)return r+i.length;for(let a=0,l=r;;a++){let c=i.children[a];if(c.dom==s)return l;l+=c.length+c.breakAfter}}else return i.isText()?t==i.dom?r+n:r+(n?i.length:0):r}domAtPos(t,n){let{tile:i,offset:r}=this.tile.resolveBlock(t,n);return i.isWidget()?i.domPosFor(r,n):i.domIn(r,n)}inlineDOMNearPos(t,n){let i,r=-1,s=!1,a,l=-1,c=!1;return this.tile.blockTiles((u,d)=>{if(u.isWidget()){if(u.flags&32&&d>=t)return!0;u.flags&16&&(s=!0)}else{let f=d+u.length;if(d<=t&&(i=u,r=t-d,s=f=t&&!a&&(a=u,l=t-d,c=d>t),d>t&&a)return!0}}),!i&&!a?this.domAtPos(t,n):(s&&a?i=null:c&&i&&(a=null),i&&n<0||!a?i.domIn(r,n):a.domIn(l,n))}coordsAt(t,n,i){let{tile:r,offset:s}=this.tile.resolveBlock(t,n);return r.isWidget()?r.widget instanceof m5?null:r.coordsInWidget(s,n,!0):r.coordsIn(s,n,i)}lineAt(t,n){let{tile:i}=this.tile.resolveBlock(t,n);return i.isLine()?i:null}coordsForChar(t){let{tile:n,offset:i}=this.tile.resolveBlock(t,1);if(!n.isLine())return null;function r(s,a){if(s.isComposite())for(let l of s.children){if(l.length>=a){let c=r(l,a);if(c)return c}if(a-=l.length,a<0)break}else if(s.isText()&&aMath.max(this.view.scrollDOM.clientWidth,this.minWidth)+1,l=-1,c=this.view.textDirection==Pr.LTR,u=0,d=(f,h,m)=>{for(let g=0;gr);g++){let b=f.children[g],v=h+b.length,y=b.dom.getBoundingClientRect(),{height:x}=y;if(m&&!g&&(u+=y.top-m.top),b instanceof uh)v>i&&d(b,h,y);else if(h>=i&&(u>0&&n.push(-u),n.push(x+u),u=0,a)){let O=b.dom.lastChild,w=O?VO(O):[];if(w.length){let k=w[w.length-1],S=c?k.right-y.left:y.right-k.left;S>l&&(l=S,this.minWidth=s,this.minWidthFrom=h,this.minWidthTo=v)}}m&&g==f.children.length-1&&(u+=m.bottom-y.bottom),h=v+b.breakAfter}};return d(this.tile,0,null),n}textDirectionAt(t){let{tile:n}=this.tile.resolveBlock(t,1);return getComputedStyle(n.dom).direction=="rtl"?Pr.RTL:Pr.LTR}measureTextSize(){let t=this.tile.blockTiles(a=>{if(a.isLine()&&a.children.length&&a.length<=20){let l=0,c;for(let u of a.children){if(!u.isText()||/[^ -~]/.test(u.text))return;let d=VO(u.dom);if(d.length!=1)return;l+=d[0].width,c=d[0].height}if(l)return{lineHeight:a.dom.getBoundingClientRect().height,charWidth:l/a.length,textHeight:c}}});if(t)return t;let n=document.createElement("div"),i,r,s;return n.className="cm-line",n.style.width="99999px",n.style.position="absolute",n.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore(()=>{this.tile.dom.appendChild(n);let a=VO(n.firstChild)[0];i=n.getBoundingClientRect().height,r=a&&a.width?a.width/27:7,s=a&&a.height?a.height:i,n.remove()}),{lineHeight:i,charWidth:r,textHeight:s}}computeBlockGapDeco(){let t=[],n=this.view.viewState;for(let i=0,r=0;;r++){let s=r==n.viewports.length?null:n.viewports[r],a=s?s.from-1:this.view.state.doc.length;if(a>i){let l=(n.lineBlockAt(a).bottom-n.lineBlockAt(i).top)/this.view.scaleY;t.push(xn.replace({widget:new m5(l),block:!0,inclusive:!0,isBlockGap:!0}).range(i,a))}if(!s)break;i=s.to+1}return xn.set(t)}updateDeco(){let t=1,n=this.view.state.facet(TI).map(s=>(this.dynamicDecorationMap[t++]=typeof s=="function")?s(this.view):s),i=!1,r=this.view.state.facet(aQ).map((s,a)=>{let l=typeof s=="function";return l&&(i=!0),l?s(this.view):s});for(r.length&&(this.dynamicDecorationMap[t++]=i,n.push(Si.join(r))),this.decorations=[this.editContextFormatting,...n,this.computeBlockGapDeco(),this.view.viewState.lineGapDeco];ttypeof s=="function"?s(this.view):s)}scrollIntoView(t){if(t.isSnapshot){let u=this.view.viewState.lineBlockAt(t.range.head);this.view.scrollDOM.scrollTop=u.top-t.yMargin,this.view.scrollDOM.scrollLeft=t.xMargin;return}for(let u of this.view.state.facet(EAe))try{if(u(this.view,t.range,t))return!0}catch(d){ml(this.view.state,d,"scroll handler")}let{range:n}=t,i=this.coordsAt(n.head,n.assoc||(n.head>n.anchor?-1:1)),r;if(!i)return;!n.empty&&(r=this.coordsAt(n.anchor,n.anchor>n.head?-1:1))&&(i={left:Math.min(i.left,r.left),top:Math.min(i.top,r.top),right:Math.max(i.right,r.right),bottom:Math.max(i.bottom,r.bottom)});let s=oQ(this.view),a={left:i.left-s.left,top:i.top-s.top,right:i.right+s.right,bottom:i.bottom+s.bottom},{offsetWidth:l,offsetHeight:c}=this.view.scrollDOM;if(MEt(this.view.scrollDOM,a,n.head1&&(i.top>window.pageYOffset+window.visualViewport.offsetTop+window.visualViewport.height||i.bottomi.isWidget()||i.children.some(n);return n(this.tile.resolveBlock(t,1).tile)}destroy(){B$(this.tile)}}function B$(e,t){let n=t==null?void 0:t.get(e);if(n!=1){n==null&&e.destroy();for(let i of e.children)B$(i,t)}}function lCt(e){return e.node.nodeType==1&&e.node.firstChild&&(e.offset==0||e.node.childNodes[e.offset-1].contentEditable=="false")&&(e.offset==e.node.childNodes.length||e.node.childNodes[e.offset].contentEditable=="false")}function RAe(e,t){let n=e.observer.selectionRange;if(!n.focusNode)return null;let i=uAe(n.focusNode,n.focusOffset),r=dAe(n.focusNode,n.focusOffset),s=i||r;if(r&&i&&r.node!=i.node){let l=Cs.get(r.node);if(!l||l.isText()&&l.text!=r.node.nodeValue)s=r;else if(e.docView.lastCompositionAfterCursor){let c=Cs.get(i.node);!c||c.isText()&&c.text!=i.node.nodeValue||(s=r)}}if(e.docView.lastCompositionAfterCursor=s!=i,!s)return null;let a=t-s.offset;return{from:a,to:a+s.node.nodeValue.length,node:s.node}}function cCt(e,t,n){let i=RAe(e,n);if(!i)return null;let{node:r,from:s,to:a}=i,l=r.nodeValue;if(/[\n\r]/.test(l)||e.state.doc.sliceString(i.from,i.to)!=l)return null;let c=t.invertedDesc;return{range:new Gc(c.mapPos(s),c.mapPos(a),s,a),text:r}}function uCt(e,t){return e.nodeType!=1?0:(t&&e.childNodes[t-1].contentEditable=="false"?1:0)|(t{it.from&&(n=!0)}),n}class m5 extends Zu{constructor(t){super(),this.height=t}toDOM(){let t=document.createElement("div");return t.className="cm-gap",this.updateDOM(t),t}eq(t){return t.height==this.height}updateDOM(t){return t.style.height=this.height+"px",!0}get editable(){return!0}get estimatedHeight(){return this.height}ignoreEvent(){return!1}}function bCt(e,t,n=1){let i=e.charCategorizer(t),r=e.doc.lineAt(t),s=t-r.from;if(r.length==0)return rt.cursor(t);s==0?n=1:s==r.length&&(n=-1);let a=s,l=s;n<0?a=Ma(r.text,s,!1):l=Ma(r.text,s);let c=i(r.text.slice(a,l));for(;a>0;){let u=Ma(r.text,a,!1);if(i(r.text.slice(u,a))!=c)break;a=u}for(;le.defaultLineHeight*1.5){let l=e.viewState.heightOracle.textHeight,c=Math.floor((r-n.top-(e.defaultLineHeight-l)*.5)/l);s+=c*e.viewState.heightOracle.lineLength}let a=e.state.sliceDoc(n.from,n.to);return n.from+A$(a,s,e.state.tabSize)}function U$(e,t,n){let i=e.lineBlockAt(t);if(Array.isArray(i.type)){let r;for(let s of i.type){if(s.from>t)break;if(!(s.tot)return s;(!r||s.type==ro.Text&&(r.type!=s.type||(n<0?s.fromt)))&&(r=s)}}return r||i}return i}function vCt(e,t,n,i){let r=U$(e,t.head,t.assoc||-1),s=!i||r.type!=ro.Text||!(e.lineWrapping||r.widgetLineBreaks)?null:e.coordsAtPos(t.assoc<0&&t.head>r.from?t.head-1:t.head);if(s){let a=e.dom.getBoundingClientRect(),l=e.textDirectionAt(r.from),c=e.posAtCoords({x:n==(l==Pr.LTR)?a.right-1:a.left+1,y:(s.top+s.bottom)/2});if(c!=null)return rt.cursor(c,n?-1:1)}return rt.cursor(n?r.to:r.from,n?-1:1)}function WZ(e,t,n,i){let r=e.state.doc.lineAt(t.head),s=e.bidiSpans(r),a=e.textDirectionAt(r.from);for(let l=t,c=null;;){let u=WEt(r,s,a,l,n),d=gAe;if(!u){if(r.number==(n?e.state.doc.lines:1))return l;d=` +`,r=e.state.doc.line(r.number+(n?1:-1)),s=e.bidiSpans(r),u=e.visualLineSide(r,!n)}if(c){if(!c(d))return l}else{if(!i)return u;c=i(d)}l=u}}function xCt(e,t,n){let i=e.state.charCategorizer(t),r=i(n);return s=>{let a=i(s);return r==is.Space&&(r=a),r==a}}function wCt(e,t,n,i){let r=t.head,s=n?1:-1;if(r==(n?e.state.doc.length:0))return rt.cursor(r,t.assoc);let a=t.goalColumn,l,c=e.contentDOM.getBoundingClientRect(),u=e.coordsAtPos(r,t.assoc||((t.empty?n:t.head==t.from)?1:-1)),d=e.documentTop;if(u)a==null&&(a=u.left-c.left),l=s<0?u.top:u.bottom;else{let g=e.viewState.lineBlockAt(r);a==null&&(a=Math.min(c.right-c.left,e.defaultCharacterWidth*(r-g.from))),l=(s<0?g.top:g.bottom)+d}let f=c.left+a,h=e.viewState.heightOracle.textHeight>>1,m=i??h;for(let g=0;;g+=h){let b=l+(m+g)*s,v=Q$(e,{x:f,y:b},!1,s);if(n?b>c.bottom:bl:x{if(t>s&&tr(e)),n.from,t.head>n.from?-1:1);return i==n.from?n:rt.cursor(i,ie.viewState.docHeight)return new wd(e.state.doc.length,-1);if(u=e.elementAtHeight(c),i==null)break;if(u.type==ro.Text){if(i<0?u.toe.viewport.to)break;let h=e.docView.coordsAt(i<0?u.from:u.to,i>0?-1:1);if(h&&(i<0?h.top<=c+s:h.bottom>=c+s))break}let f=e.viewState.heightOracle.textHeight/2;c=i>0?u.bottom+f:u.top-f}if(e.viewport.from>=u.to||e.viewport.to<=u.from){if(n)return null;if(u.type==ro.Text){let f=yCt(e,r,u,a,l);return new wd(f,f==u.from?1:-1)}}if(u.type!=ro.Text)return c<(u.top+u.bottom)/2?new wd(u.from,1):new wd(u.to,-1);let d=e.docView.lineAt(u.from,2);return(!d||d.length!=u.length)&&(d=e.docView.lineAt(u.from,-2)),new OCt(e,a,l,e.textDirectionAt(u.from)).scanTile(d,u.from)}class OCt{constructor(t,n,i,r){this.view=t,this.x=n,this.y=i,this.baseDir=r,this.line=null,this.spans=null}bidiSpansAt(t){return(!this.line||this.line.from>t||this.line.to1||i.length&&(i[0].level!=this.baseDir||i[0].to+r.from>1;t:if(a.has(b)){let y=r+Math.floor(Math.random()*g);for(let x=0;x1)){if(x.bottomthis.y)(!u||u.top>x.top)&&(u=x),O=-1;else{let w=x.left>this.x?this.x-x.left:x.right(g+g+b)/3)return this.y=c.bottom-1,this.scan(t,n,!0);if(u&&u.top<(g+b+b)/3)return this.y=u.top+1,this.scan(t,n,!0)}let m=(l?this.dirAt(t[d],1):this.baseDir)==Pr.LTR;return{i:d,after:this.x>(h.left+h.right)/2==m}}scanText(t,n){let i=[];for(let s=0;s{let a=i[s]-n,l=i[s+1]-n;return lk(t.dom,a,l).getClientRects()});return r.after?new wd(i[r.i+1],-1):new wd(i[r.i],1)}scanTile(t,n){if(!t.length)return new wd(n,1);if(t.children.length==1){let l=t.children[0];if(l.isText())return this.scanText(l,n);if(l.isComposite())return this.scanTile(l,n)}let i=[n];for(let l=0,c=n;l{let c=t.children[l];return c.flags&48?null:(c.dom.nodeType==1?c.dom:lk(c.dom,0,c.length)).getClientRects()}),s=t.children[r.i],a=i[r.i];return s.isText()?this.scanText(s,a):s.isComposite()?this.scanTile(s,a):r.after?new wd(i[r.i+1],-1):new wd(a,1)}}const uy="￿";class SCt{constructor(t,n){this.points=t,this.view=n,this.text="",this.lineSeparator=n.state.facet(ji.lineSeparator)}append(t){this.text+=t}lineBreak(){this.text+=uy}readRange(t,n){if(!t)return this;let i=t.parentNode;for(let r=t;;){this.findPointBefore(i,r);let s=this.text.length;this.readNode(r);let a=Cs.get(r),l=r.nextSibling;if(l==n){a!=null&&a.breakAfter&&!l&&i!=this.view.contentDOM&&this.lineBreak();break}let c=Cs.get(l);(a&&c?a.breakAfter:(a?a.breakAfter:LN(r))||LN(l)&&(r.nodeName!="BR"||a!=null&&a.isWidget())&&this.text.length>s)&&!ECt(l,n)&&this.lineBreak(),r=l}return this.findPointBefore(i,n),this}readTextNode(t){let n=t.nodeValue;for(let i of this.points)i.node==t&&(i.pos=this.text.length+Math.min(i.offset,n.length));for(let i=0,r=this.lineSeparator?null:/\r\n?|\n/g;;){let s=-1,a=1,l;if(this.lineSeparator?(s=n.indexOf(this.lineSeparator,i),a=this.lineSeparator.length):(l=r.exec(n))&&(s=l.index,a=l[0].length),this.append(n.slice(i,s<0?n.length:s)),s<0)break;if(this.lineBreak(),a>1)for(let c of this.points)c.node==t&&c.pos>this.text.length&&(c.pos-=a-1);i=s+a}}readNode(t){let n=Cs.get(t),i=n&&n.overrideDOMText;if(i!=null){this.findPointInside(t,i.length);for(let r=i.iter();!r.next().done;)r.lineBreak?this.lineBreak():this.append(r.value)}else t.nodeType==3?this.readTextNode(t):t.nodeName=="BR"?t.nextSibling&&this.lineBreak():t.nodeType==1&&this.readRange(t.firstChild,null)}findPointBefore(t,n){for(let i of this.points)i.node==t&&t.childNodes[i.offset]==n&&(i.pos=this.text.length)}findPointInside(t,n){for(let i of this.points)(t.nodeType==3?i.node==t:t.contains(i.node))&&(i.pos=this.text.length+(kCt(t,i.node,i.offset)?n:0))}}function kCt(e,t,n){for(;;){if(!t||n-1;let{impreciseHead:s,impreciseAnchor:a}=t.docView,l=t.state.selection;if(t.state.readOnly&&n>-1)this.newSel=null;else if(n>-1&&(this.bounds=PAe(t.docView.tile,n,i,0))){let c=s||a?[]:ACt(t),u=new SCt(c,t);u.readRange(this.bounds.startDOM,this.bounds.endDOM),this.text=u.text,this.newSel=_Ct(c,this.bounds.from)}else{let c=t.observer.selectionRange,u=s&&s.node==c.focusNode&&s.offset==c.focusOffset||!D$(t.contentDOM,c.focusNode)?l.main.head:t.docView.posFromDOM(c.focusNode,c.focusOffset),d=a&&a.node==c.anchorNode&&a.offset==c.anchorOffset||!D$(t.contentDOM,c.anchorNode)?l.main.anchor:t.docView.posFromDOM(c.anchorNode,c.anchorOffset),f=t.viewport;if((Zt.ios||Zt.chrome)&&u!=d&&Math.min(u,d)<=l.main.from&&Math.max(u,d)>=l.main.to&&(f.from>0||f.to-1&&l.ranges.length>1)this.newSel=l.replaceRange(rt.range(d,u));else if(t.lineWrapping&&d==u&&!(l.main.empty&&l.main.head==u)&&t.inputState.lastTouchTime>Date.now()-100){let h=t.coordsAtPos(u,-1),m=0;h&&(m=t.inputState.lastTouchY<=h.bottom?-1:1),this.newSel=rt.create([rt.cursor(u,m)])}else this.newSel=rt.single(d,u)}}}function PAe(e,t,n,i){if(e.isComposite()){let r=-1,s=-1,a=-1,l=-1;for(let c=0,u=i,d=i;cn)return PAe(f,t,n,u);if(h>=t&&r==-1&&(r=c,s=u),u>n&&f.dom.parentNode==e.dom){a=c,l=d;break}d=h,u=h+f.breakAfter}return{from:s,to:l<0?i+e.length:l,startDOM:(r?e.children[r-1].dom.nextSibling:null)||e.dom.firstChild,endDOM:a=0?e.children[a].dom:null}}else return e.isText()?{from:i,to:i+e.length,startDOM:e.dom,endDOM:e.dom.nextSibling}:null}function DAe(e,t){let n,{newSel:i}=t,{state:r}=e,s=r.selection.main,a=e.inputState.lastKeyTime>Date.now()-100?e.inputState.lastKeyCode:-1;if(t.bounds){let{from:l,to:c}=t.bounds,u=s.from,d=null;(a===8||Zt.android&&t.text.length=l&&s.to<=c&&(t.typeOver||f!=t.text)&&f.slice(0,s.from-l)==t.text.slice(0,s.from-l)&&f.slice(s.to-l)==t.text.slice(h=t.text.length-(f.length-(s.to-l)))?n={from:s.from,to:s.to,insert:Ji.of(t.text.slice(s.from-l,h).split(uy))}:(m=MAe(f,t.text,u-l,d))&&(Zt.chrome&&a==13&&m.toB==m.from+2&&t.text.slice(m.from,m.toB)==uy+uy&&m.toB--,n={from:l+m.from,to:l+m.toA,insert:Ji.of(t.text.slice(m.from,m.toB).split(uy))})}else i&&(!e.hasFocus&&r.facet(Qf)||UN(i,s))&&(i=null);if(!n&&!i)return!1;if((Zt.mac||Zt.android)&&n&&n.from==n.to&&n.from==s.head-1&&/^\. ?$/.test(n.insert.toString())&&e.contentDOM.getAttribute("autocorrect")=="off"?(i&&n.insert.length==2&&(i=rt.single(i.main.anchor-1,i.main.head-1)),n={from:n.from,to:n.to,insert:Ji.of([n.insert.toString().replace("."," ")])}):r.doc.lineAt(s.from).toDate.now()-50?n={from:s.from,to:s.to,insert:r.toText(e.inputState.insertingText)}:Zt.chrome&&n&&n.from==n.to&&n.from==s.head&&n.insert.toString()==` + `&&e.lineWrapping&&(i&&(i=rt.single(i.main.anchor-1,i.main.head-1)),n={from:s.from,to:s.to,insert:Ji.of([" "])}),n)return lQ(e,n,i,a);if(i&&!UN(i,s)){let l=!1,c="select";return e.inputState.lastSelectionTime>Date.now()-50&&(e.inputState.lastSelectionOrigin=="select"&&(l=!0),c=e.inputState.lastSelectionOrigin,c=="select.pointer"&&(i=IAe(r.facet(BE).map(u=>u(e)),i))),e.dispatch({selection:i,scrollIntoView:l,userEvent:c}),!0}else return!1}function lQ(e,t,n,i=-1){if(Zt.ios&&e.inputState.flushIOSKey(t))return!0;let r=e.state.selection.main;if(Zt.android&&(t.to==r.to&&(t.from==r.from||t.from==r.from-1&&e.state.sliceDoc(t.from,r.from)==" ")&&t.insert.length==1&&t.insert.lines==2&&gv(e.contentDOM,"Enter",13)||(t.from==r.from-1&&t.to==r.to&&t.insert.length==0||i==8&&t.insert.lengthr.head)&&gv(e.contentDOM,"Backspace",8)||t.from==r.from&&t.to==r.to+1&&t.insert.length==0&&gv(e.contentDOM,"Delete",46)))return!0;let s=t.insert.toString();e.inputState.composing>=0&&e.inputState.composing++;let a,l=()=>a||(a=TCt(e,t,n));return e.state.facet(wAe).some(c=>c(e,t.from,t.to,s,l))||e.dispatch(l()),!0}function TCt(e,t,n){let i,r=e.state,s=r.selection.main,a=-1;if(t.from==t.to&&t.froms.to){let c=t.fromf(e)),u,c);t.from==d&&(a=d)}if(a>-1)i={changes:t,selection:rt.cursor(t.from+t.insert.length,-1)};else if(t.from>=s.from&&t.to<=s.to&&t.to-t.from>=(s.to-s.from)/3&&(!n||n.main.empty&&n.main.from==t.from+t.insert.length)&&e.inputState.composing<0){let c=s.fromt.to?r.sliceDoc(t.to,s.to):"";i=r.replaceSelection(e.state.toText(c+t.insert.sliceString(0,void 0,e.state.lineBreak)+u))}else{let c=r.changes(t),u=n&&n.main.to<=c.newLength?n.main:void 0;if(r.selection.ranges.length>1&&(e.inputState.composing>=0||e.inputState.compositionPendingChange)&&t.to<=s.to+10&&t.to>=s.to-10){let d=e.state.sliceDoc(t.from,t.to),f,h=n&&RAe(e,n.main.head);if(h){let g=t.insert.length-(t.to-t.from);f={from:h.from,to:h.to-g}}else f=e.state.doc.lineAt(s.head);let m=s.to-t.to;i=r.changeByRange(g=>{if(g.from==s.from&&g.to==s.to)return{changes:c,range:u||g.map(c)};let b=g.to-m,v=b-d.length;if(e.state.sliceDoc(v,b)!=d||b>=f.from&&v<=f.to)return{range:g};let y=r.changes({from:v,to:b,insert:t.insert}),x=g.to-s.to;return{changes:y,range:u?rt.range(Math.max(0,u.anchor+x),Math.max(0,u.head+x)):g.map(y)}})}else i={changes:c,selection:u&&r.selection.replaceRange(u)}}let l="input.type";return(e.composing||e.inputState.compositionPendingChange&&e.inputState.compositionEndedAt>Date.now()-50)&&(e.inputState.compositionPendingChange=!1,l+=".compose",e.inputState.compositionFirstChange&&(l+=".start",e.inputState.compositionFirstChange=!1)),r.update(i,{userEvent:l,scrollIntoView:!0})}function MAe(e,t,n,i){let r=Math.min(e.length,t.length),s=0;for(;s0&&l>0&&e.charCodeAt(a-1)==t.charCodeAt(l-1);)a--,l--;if(i=="end"){let c=Math.max(0,s-Math.min(a,l));n-=a+c-s}if(a=a?s-n:0;s-=c,l=s+(l-a),a=s}else if(l=l?s-n:0;s-=c,a=s+(a-l),l=s}return{from:s,toA:a,toB:l}}function ACt(e){let t=[];if(e.root.activeElement!=e.contentDOM)return t;let{anchorNode:n,anchorOffset:i,focusNode:r,focusOffset:s}=e.observer.selectionRange;return n&&(t.push(new KZ(n,i)),(r!=n||s!=i)&&t.push(new KZ(r,s))),t}function _Ct(e,t){if(e.length==0)return null;let n=e[0].pos,i=e.length==2?e[1].pos:n;return n>-1&&i>-1?rt.single(n+t,i+t):null}function UN(e,t){return t.head==e.main.head&&t.anchor==e.main.anchor}class NCt{setSelectionOrigin(t){this.lastSelectionOrigin=t,this.lastSelectionTime=Date.now()}constructor(t){this.view=t,this.lastKeyCode=0,this.lastKeyTime=0,this.touchActive=!1,this.lastTouchTime=0,this.lastTouchX=0,this.lastTouchY=0,this.lastFocusTime=0,this.lastScrollTop=0,this.lastScrollLeft=0,this.lastWheelEvent=0,this.pendingIOSKey=void 0,this.lastIOSMomentumScroll=0,this.tabFocusMode=-1,this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastContextMenu=0,this.scrollHandlers=[],this.handlers=Object.create(null),this.composing=-1,this.compositionFirstChange=null,this.compositionEndedAt=0,this.compositionPendingKey=!1,this.compositionPendingChange=!1,this.insertingText="",this.insertingTextAt=0,this.mouseSelection=null,this.draggedContent=null,this.handleEvent=this.handleEvent.bind(this),this.notifiedFocused=t.hasFocus,Zt.safari&&t.contentDOM.addEventListener("input",()=>null),Zt.gecko&&qCt(t.contentDOM.ownerDocument)}handleEvent(t){!FCt(this.view,t)||this.ignoreDuringComposition(t)||t.type=="keydown"&&this.keydown(t)||(this.view.updateState!=0?Promise.resolve().then(()=>this.runHandlers(t.type,t)):this.runHandlers(t.type,t))}runHandlers(t,n){let i=this.handlers[t];if(i){for(let r of i.observers)r(this.view,n);for(let r of i.handlers){if(n.defaultPrevented)break;if(r(this.view,n)){n.preventDefault();break}}}}ensureHandlers(t){let n=RCt(t),i=this.handlers,r=this.view.contentDOM;for(let s in n)if(s!="scroll"){let a=!n[s].handlers.length,l=i[s];l&&a!=!l.handlers.length&&(r.removeEventListener(s,this.handleEvent),l=null),l||r.addEventListener(s,this.handleEvent,{passive:a})}for(let s in i)s!="scroll"&&!n[s]&&r.removeEventListener(s,this.handleEvent);this.handlers=n}keydown(t){if(this.lastKeyCode=t.keyCode,this.lastKeyTime=Date.now(),t.keyCode==9&&this.tabFocusMode>-1&&(!this.tabFocusMode||Date.now()<=this.tabFocusMode))return!0;if(this.tabFocusMode>0&&t.keyCode!=27&&$Ae.indexOf(t.keyCode)<0&&(this.tabFocusMode=-1),Zt.android&&Zt.chrome&&!t.synthetic&&(t.keyCode==13||t.keyCode==8))return this.view.observer.delayAndroidKey(t.key,t.keyCode),!0;if(Zt.ios&&!t.synthetic&&!t.altKey&&!t.metaKey&&(LAe.some(n=>n.keyCode==t.keyCode)&&!t.ctrlKey||ICt.indexOf(t.key)>-1&&t.ctrlKey)){let n={ctrlKey:t.ctrlKey,altKey:t.altKey,metaKey:t.metaKey,shiftKey:t.shiftKey};return n.shiftKey&&Zt.ios&&!/^(off|none)$/.test(this.view.contentDOM.autocapitalize)&&jCt(this.view.win)&&(n.shiftKey=!1),this.pendingIOSKey={key:t.key,keyCode:t.keyCode,mods:n},setTimeout(()=>this.flushIOSKey(),250),!0}return t.keyCode!=229&&this.view.observer.forceFlush(),!1}flushIOSKey(t){let n=this.pendingIOSKey;return!n||n.key=="Enter"&&t&&t.from0?!0:Zt.safari&&!Zt.ios&&this.compositionPendingKey&&Date.now()-this.compositionEndedAt<100?(this.compositionPendingKey=!1,!0):!1}startMouseSelection(t){this.mouseSelection&&this.mouseSelection.destroy(),this.mouseSelection=t}update(t){this.view.observer.update(t),this.mouseSelection&&this.mouseSelection.update(t),this.draggedContent&&t.docChanged&&(this.draggedContent=this.draggedContent.map(t.changes)),t.transactions.length&&(this.lastKeyCode=this.lastSelectionTime=0)}destroy(){this.mouseSelection&&this.mouseSelection.destroy()}}function jCt(e){return e.visualViewport?e.visualViewport.height*e.visualViewport.scale/e.document.documentElement.clientHeight<.85:!1}function GZ(e,t){return(n,i)=>{try{return t.call(e,i,n)}catch(r){ml(n.state,r)}}}function RCt(e){let t=Object.create(null);function n(i){return t[i]||(t[i]={observers:[],handlers:[]})}for(let i of e){let r=i.spec,s=r&&r.plugin.domEventHandlers,a=r&&r.plugin.domEventObservers;if(s)for(let l in s){let c=s[l];c&&n(l).handlers.push(GZ(i.value,c))}if(a)for(let l in a){let c=a[l];c&&n(l).observers.push(GZ(i.value,c))}}for(let i in zu)n(i).handlers.push(zu[i]);for(let i in Ko)n(i).observers.push(Ko[i]);return t}const LAe=[{key:"Backspace",keyCode:8,inputType:"deleteContentBackward"},{key:"Enter",keyCode:13,inputType:"insertParagraph"},{key:"Enter",keyCode:13,inputType:"insertLineBreak"},{key:"Delete",keyCode:46,inputType:"deleteContentForward"}],ICt="dthko",$Ae=[16,17,18,20,91,92,224,225],JT=6;function eA(e){return Math.max(0,e)*.7+8}function PCt(e,t){return Math.max(Math.abs(e.clientX-t.clientX),Math.abs(e.clientY-t.clientY))}class DCt{constructor(t,n,i,r){this.view=t,this.startEvent=n,this.style=i,this.mustSelect=r,this.scrollSpeed={x:0,y:0},this.scrolling=-1,this.lastEvent=n,this.scrollParents=oAe(t.contentDOM),this.atoms=t.state.facet(BE).map(a=>a(t));let s=t.contentDOM.ownerDocument;s.addEventListener("mousemove",this.move=this.move.bind(this)),s.addEventListener("mouseup",this.up=this.up.bind(this)),this.extend=n.shiftKey,this.multiple=t.state.facet(ji.allowMultipleSelections)&&MCt(t,n),this.dragging=$Ct(t,n)&&UAe(n)==1?null:!1}start(t){this.dragging===!1&&this.select(t)}move(t){if(t.buttons==0)return this.destroy();if(this.dragging||this.dragging==null&&PCt(this.startEvent,t)<10)return;this.select(this.lastEvent=t);let n=0,i=0,r=0,s=0,a=this.view.win.innerWidth,l=this.view.win.innerHeight;this.scrollParents.x&&({left:r,right:a}=this.scrollParents.x.getBoundingClientRect()),this.scrollParents.y&&({top:s,bottom:l}=this.scrollParents.y.getBoundingClientRect());let c=oQ(this.view);t.clientX-c.left<=r+JT?n=-eA(r-t.clientX):t.clientX+c.right>=a-JT&&(n=eA(t.clientX-a)),t.clientY-c.top<=s+JT?i=-eA(s-t.clientY):t.clientY+c.bottom>=l-JT&&(i=eA(t.clientY-l)),this.setScrollSpeed(n,i)}up(t){this.dragging==null&&this.select(this.lastEvent),this.dragging||t.preventDefault(),this.destroy()}destroy(){this.setScrollSpeed(0,0);let t=this.view.contentDOM.ownerDocument;t.removeEventListener("mousemove",this.move),t.removeEventListener("mouseup",this.up),this.view.inputState.mouseSelection=this.view.inputState.draggedContent=null}setScrollSpeed(t,n){this.scrollSpeed={x:t,y:n},t||n?this.scrolling<0&&(this.scrolling=setInterval(()=>this.scroll(),50)):this.scrolling>-1&&(clearInterval(this.scrolling),this.scrolling=-1)}scroll(){let{x:t,y:n}=this.scrollSpeed;t&&this.scrollParents.x&&(this.scrollParents.x.scrollLeft+=t,t=0),n&&this.scrollParents.y&&(this.scrollParents.y.scrollTop+=n,n=0),(t||n)&&this.view.win.scrollBy(t,n),this.dragging===!1&&this.select(this.lastEvent)}select(t){let{view:n}=this,i=IAe(this.atoms,this.style.get(t,this.extend,this.multiple));(this.mustSelect||!i.eq(n.state.selection,this.dragging===!1))&&this.view.dispatch({selection:i,userEvent:"select.pointer"}),this.mustSelect=!1}update(t){t.transactions.some(n=>n.isUserEvent("input.type"))?this.destroy():this.style.update(t)&&setTimeout(()=>this.select(this.lastEvent),20)}}function MCt(e,t){let n=e.state.facet(bAe);return n.length?n[0](t):Zt.mac?t.metaKey:t.ctrlKey}function LCt(e,t){let n=e.state.facet(yAe);return n.length?n[0](t):Zt.mac?!t.altKey:!t.ctrlKey}function $Ct(e,t){let{main:n}=e.state.selection;if(n.empty)return!1;let i=ak(e.root);if(!i||i.rangeCount==0)return!0;let r=i.getRangeAt(0).getClientRects();for(let s=0;s=t.clientX&&a.top<=t.clientY&&a.bottom>=t.clientY)return!0}return!1}function FCt(e,t){if(!t.bubbles)return!0;if(t.defaultPrevented)return!1;for(let n=t.target,i;n!=e.contentDOM;n=n.parentNode)if(!n||n.nodeType==11||(i=Cs.get(n))&&i.isWidget()&&!i.isHidden&&i.widget.ignoreEvent(t))return!1;return!0}const zu=Object.create(null),Ko=Object.create(null),FAe=Zt.ie&&Zt.ie_version<15||Zt.ios&&Zt.webkit_version<604;function BCt(e){let t=e.dom.parentNode;if(!t)return;let n=t.appendChild(document.createElement("textarea"));n.style.cssText="position: fixed; left: -10000px; top: 10px",n.focus(),setTimeout(()=>{e.focus(),n.remove(),BAe(e,n.value)},50)}function NI(e,t,n){for(let i of e.facet(t))n=i(n,e);return n}function BAe(e,t){t=NI(e.state,iQ,t);let{state:n}=e,i,r=1,s=n.toText(t),a=s.lines==n.selection.ranges.length;if(z$!=null&&n.selection.ranges.every(c=>c.empty)&&z$==s.toString()){let c=-1;i=n.changeByRange(u=>{let d=n.doc.lineAt(u.from);if(d.from==c)return{range:u};c=d.from;let f=n.toText((a?s.line(r++).text:t)+n.lineBreak);return{changes:{from:d.from,insert:f},range:rt.cursor(u.from+f.length)}})}else a?i=n.changeByRange(c=>{let u=s.line(r++);return{changes:{from:c.from,to:c.to,insert:u.text},range:rt.cursor(c.from+u.length)}}):i=n.replaceSelection(s);e.dispatch(i,{userEvent:"input.paste",scrollIntoView:!0})}Ko.scroll=e=>{let t=e.inputState;t.lastScrollTop=e.scrollDOM.scrollTop,t.lastScrollLeft=e.scrollDOM.scrollLeft,Zt.ios&&!t.touchActive&&(t.lastIOSMomentumScroll=Date.now())};Ko.wheel=Ko.mousewheel=e=>{e.inputState.lastWheelEvent=Date.now()};zu.keydown=(e,t)=>(e.inputState.setSelectionOrigin("select"),t.keyCode==27&&e.inputState.tabFocusMode!=0&&(e.inputState.tabFocusMode=Date.now()+2e3),!1);Ko.touchstart=(e,t)=>{let n=e.inputState,i=t.targetTouches[0];n.touchActive=!0,n.lastTouchTime=Date.now(),i&&(n.lastTouchX=i.clientX,n.lastTouchY=i.clientY),n.setSelectionOrigin("select.pointer")};Ko.touchmove=e=>{e.inputState.setSelectionOrigin("select.pointer")};Ko.touchend=(e,t)=>{e.inputState.touchActive=!1};zu.mousedown=(e,t)=>{if(e.observer.flush(),e.inputState.lastTouchTime>Date.now()-2e3)return!1;let n=null;for(let i of e.state.facet(vAe))if(n=i(e,t),n)break;if(!n&&t.button==0&&(n=QCt(e,t)),n){let i=!e.hasFocus;e.inputState.startMouseSelection(new DCt(e,t,n,i)),i&&e.observer.ignore(()=>{lAe(e.contentDOM);let s=e.root.activeElement;s&&!s.contains(e.contentDOM)&&s.blur()});let r=e.inputState.mouseSelection;if(r)return r.start(t),r.dragging===!1}else e.inputState.setSelectionOrigin("select.pointer");return!1};function XZ(e,t,n,i){if(i==1)return rt.cursor(t,n);if(i==2)return bCt(e.state,t,n);{let r=e.docView.lineAt(t,n),s=e.state.doc.lineAt(r?r.posAtEnd:t),a=r?r.posAtStart:s.from,l=r?r.posAtEnd:s.to;return lDate.now()-400&&Math.abs(t.clientX-e.clientX)<2&&Math.abs(t.clientY-e.clientY)<2?(ZZ+1)%3:1}function QCt(e,t){let n=e.posAndSideAtCoords({x:t.clientX,y:t.clientY},!1),i=UAe(t),r=e.state.selection;return{update(s){s.docChanged&&(n.pos=s.changes.mapPos(n.pos),r=r.map(s.changes))},get(s,a,l){let c=e.posAndSideAtCoords({x:s.clientX,y:s.clientY},!1),u,d=XZ(e,c.pos,c.assoc,i);if(n.pos!=c.pos&&!a){let f=XZ(e,n.pos,n.assoc,i),h=Math.min(f.from,d.from),m=Math.max(f.to,d.to);d=h1&&(u=zCt(r,c.pos))?u:l?r.addRange(d):rt.create([d])}}}function zCt(e,t){for(let n=0;n=t)return rt.create(e.ranges.slice(0,n).concat(e.ranges.slice(n+1)),e.mainIndex==n?0:e.mainIndex-(e.mainIndex>n?1:0))}return null}zu.dragstart=(e,t)=>{let{selection:{main:n}}=e.state;if(t.target.draggable){let r=e.docView.tile.nearest(t.target);if(r&&r.isWidget()){let s=r.posAtStart,a=s+r.length;(s>=n.to||a<=n.from)&&(n=rt.undirectionalRange(s,a))}}let{inputState:i}=e;return i.mouseSelection&&(i.mouseSelection.dragging=!0),i.draggedContent=n,t.dataTransfer&&(t.dataTransfer.setData("Text",NI(e.state,rQ,e.state.sliceDoc(n.from,n.to))),t.dataTransfer.effectAllowed="copyMove"),!1};zu.dragend=e=>(e.inputState.draggedContent=null,!1);function eJ(e,t,n,i){if(n=NI(e.state,iQ,n),!n)return;let r=e.posAtCoords({x:t.clientX,y:t.clientY},!1),{draggedContent:s}=e.inputState,a=i&&s&&LCt(e,t)?{from:s.from,to:s.to}:null,l={from:r,insert:n},c=e.state.changes(a?[a,l]:l);e.focus(),e.dispatch({changes:c,selection:{anchor:c.mapPos(r,-1),head:c.mapPos(r,1)},userEvent:a?"move.drop":"input.drop"}),e.inputState.draggedContent=null}zu.drop=(e,t)=>{if(!t.dataTransfer)return!1;if(e.state.readOnly)return!0;let n=t.dataTransfer.files;if(n&&n.length){let i=Array(n.length),r=0,s=()=>{++r==n.length&&eJ(e,t,i.filter(a=>a!=null).join(e.state.lineBreak),!1)};for(let a=0;a{/[\x00-\x08\x0e-\x1f]{2}/.test(l.result)||(i[a]=l.result),s()},l.readAsText(n[a])}return!0}else{let i=t.dataTransfer.getData("Text");if(i)return eJ(e,t,i,!0),!0}return!1};zu.paste=(e,t)=>{if(e.state.readOnly)return!0;e.observer.flush();let n=FAe?null:t.clipboardData;return n?(BAe(e,n.getData("text/plain")||n.getData("text/uri-list")),!0):(BCt(e),!1)};function VCt(e,t){let n=e.dom.parentNode;if(!n)return;let i=n.appendChild(document.createElement("textarea"));i.style.cssText="position: fixed; left: -10000px; top: 10px",i.value=t,i.focus(),i.selectionEnd=t.length,i.selectionStart=0,setTimeout(()=>{i.remove(),e.focus()},50)}function HCt(e){let t=[],n=[],i=!1;for(let r of e.selection.ranges)r.empty||(t.push(e.sliceDoc(r.from,r.to)),n.push(r));if(!t.length){let r=-1;for(let{from:s}of e.selection.ranges){let a=e.doc.lineAt(s);a.number>r&&(t.push(a.text),n.push({from:a.from,to:Math.min(e.doc.length,a.to+1)})),r=a.number}i=!0}return{text:NI(e,rQ,t.join(e.lineBreak)),ranges:n,linewise:i}}let z$=null;zu.copy=zu.cut=(e,t)=>{if(!zO(e.contentDOM,e.observer.selectionRange))return!1;let{text:n,ranges:i,linewise:r}=HCt(e.state);if(!n&&!r)return!1;z$=r?n:null,t.type=="cut"&&!e.state.readOnly&&e.dispatch({changes:i,scrollIntoView:!0,userEvent:"delete.cut"});let s=FAe?null:t.clipboardData;return s?(s.clearData(),s.setData("text/plain",n),!0):(VCt(e,n),!1)};const QAe=tf.define();function zAe(e,t){let n=[];for(let i of e.facet(OAe)){let r=i(e,t);r&&n.push(r)}return n.length?e.update({effects:n,annotations:QAe.of(!0)}):null}function VAe(e){setTimeout(()=>{let t=e.hasFocus;if(t!=e.inputState.notifiedFocused){let n=zAe(e.state,t);n?e.dispatch(n):e.update([])}},10)}Ko.focus=e=>{e.inputState.lastFocusTime=Date.now(),!e.scrollDOM.scrollTop&&(e.inputState.lastScrollTop||e.inputState.lastScrollLeft)&&(e.scrollDOM.scrollTop=e.inputState.lastScrollTop,e.scrollDOM.scrollLeft=e.inputState.lastScrollLeft),VAe(e)};Ko.blur=e=>{e.observer.clearSelectionRange(),VAe(e)};Ko.compositionstart=Ko.compositionupdate=e=>{e.observer.editContext||(e.inputState.compositionFirstChange==null&&(e.inputState.compositionFirstChange=!0),e.inputState.composing<0&&(e.inputState.composing=0))};Ko.compositionend=e=>{e.observer.editContext||(e.inputState.composing=-1,e.inputState.compositionEndedAt=Date.now(),e.inputState.compositionPendingKey=!0,e.inputState.compositionPendingChange=e.observer.pendingRecords().length>0,e.inputState.compositionFirstChange=null,Zt.chrome&&Zt.android?e.observer.flushSoon():e.inputState.compositionPendingChange?Promise.resolve().then(()=>e.observer.flush()):setTimeout(()=>{e.inputState.composing<0&&e.docView.hasComposition&&e.update([])},50))};Ko.contextmenu=e=>{e.inputState.lastContextMenu=Date.now()};zu.beforeinput=(e,t)=>{var n,i;if((t.inputType=="insertText"||t.inputType=="insertCompositionText")&&(e.inputState.insertingText=t.data,e.inputState.insertingTextAt=Date.now()),t.inputType=="insertReplacementText"&&e.observer.editContext){let s=(n=t.dataTransfer)===null||n===void 0?void 0:n.getData("text/plain"),a=t.getTargetRanges();if(s&&a.length){let l=a[0],c=e.posAtDOM(l.startContainer,l.startOffset),u=e.posAtDOM(l.endContainer,l.endOffset);return lQ(e,{from:c,to:u,insert:e.state.toText(s)},null),!0}}let r;if(Zt.chrome&&Zt.android&&(r=LAe.find(s=>s.inputType==t.inputType))&&(e.observer.delayAndroidKey(r.key,r.keyCode),r.key=="Backspace"||r.key=="Delete")){let s=((i=window.visualViewport)===null||i===void 0?void 0:i.height)||0;setTimeout(()=>{var a;(((a=window.visualViewport)===null||a===void 0?void 0:a.height)||0)>s+10&&e.hasFocus&&(e.contentDOM.blur(),e.focus())},100)}return Zt.ios&&t.inputType=="deleteContentForward"&&e.observer.flushSoon(),Zt.safari&&t.inputType=="insertText"&&e.inputState.composing>=0&&setTimeout(()=>Ko.compositionend(e,t),20),!1};const tJ=new Set;function qCt(e){tJ.has(e)||(tJ.add(e),e.addEventListener("copy",()=>{}),e.addEventListener("cut",()=>{}))}const nJ=["pre-wrap","normal","pre-line","break-spaces"];let dx=!1;function iJ(){dx=!1}class WCt{constructor(t){this.lineWrapping=t,this.doc=Ji.empty,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.textHeight=14,this.lineLength=30}heightForGap(t,n){let i=this.doc.lineAt(n).number-this.doc.lineAt(t).number+1;return this.lineWrapping&&(i+=Math.max(0,Math.ceil((n-t-i*this.lineLength*.5)/this.lineLength))),this.lineHeight*i}heightForLine(t){return this.lineWrapping?(1+Math.max(0,Math.ceil((t-this.lineLength)/Math.max(1,this.lineLength-5))))*this.lineHeight:this.lineHeight}setDoc(t){return this.doc=t,this}mustRefreshForWrapping(t){return nJ.indexOf(t)>-1!=this.lineWrapping}mustRefreshForHeights(t){let n=!1;for(let i=0;i-1,c=Math.abs(n-this.lineHeight)>.3||this.lineWrapping!=l;if(this.lineWrapping=l,this.lineHeight=n,this.charWidth=i,this.textHeight=r,this.lineLength=s,c){this.heightSamples={};for(let u=0;u0}set outdated(t){this.flags=(t?2:0)|this.flags&-3}setHeight(t){this.height!=t&&(Math.abs(this.height-t)>D2&&(dx=!0),this.height=t)}replace(t,n,i){return Wo.of(i)}decomposeLeft(t,n){n.push(this)}decomposeRight(t,n){n.push(this)}applyChanges(t,n,i,r){let s=this,a=i.doc;for(let l=r.length-1;l>=0;l--){let{fromA:c,toA:u,fromB:d,toB:f}=r[l],h=s.lineAt(c,Fr.ByPosNoHeight,i.setDoc(n),0,0),m=h.to>=u?h:s.lineAt(u,Fr.ByPosNoHeight,i,0,0);for(f+=m.to-u,u=m.to;l>0&&h.from<=r[l-1].toA;)c=r[l-1].fromA,d=r[l-1].fromB,l--,cs*2){let l=t[n-1];l.break?t.splice(--n,1,l.left,null,l.right):t.splice(--n,1,l.left,l.right),i+=1+l.break,r-=l.size}else if(s>r*2){let l=t[i];l.break?t.splice(i,1,l.left,null,l.right):t.splice(i,1,l.left,l.right),i+=2+l.break,s-=l.size}else break;else if(r=s&&a(this.lineAt(0,Fr.ByPos,i,r,s))}setMeasuredHeight(t){let n=t.heights[t.index++];n<0?(this.spaceAbove=-n,n=t.heights[t.index++]):this.spaceAbove=0,this.setHeight(n)}updateHeight(t,n=0,i=!1,r){return r&&r.from<=n&&r.more&&this.setMeasuredHeight(r),this.outdated=!1,this}toString(){return`block(${this.length})`}}class ql extends HAe{constructor(t,n,i){super(t,n,null),this.collapsed=0,this.widgetHeight=0,this.breaks=0,this.spaceAbove=i}mainBlock(t,n){return new Au(n,this.length,t+this.spaceAbove,this.height-this.spaceAbove,this.breaks)}replace(t,n,i){let r=i[0];return i.length==1&&(r instanceof ql||r instanceof Xa&&r.flags&4)&&Math.abs(this.length-r.length)<10?(r instanceof Xa?r=new ql(r.length,this.height,this.spaceAbove):r.height=this.height,this.outdated||(r.outdated=!1),r):Wo.of(i)}updateHeight(t,n=0,i=!1,r){return r&&r.from<=n&&r.more?this.setMeasuredHeight(r):(i||this.outdated)&&(this.spaceAbove=0,this.setHeight(Math.max(this.widgetHeight,t.heightForLine(this.length-this.collapsed))+this.breaks*t.lineHeight)),this.outdated=!1,this}toString(){return`line(${this.length}${this.collapsed?-this.collapsed:""}${this.widgetHeight?":"+this.widgetHeight:""})`}}class Xa extends Wo{constructor(t){super(t,0)}heightMetrics(t,n){let i=t.doc.lineAt(n).number,r=t.doc.lineAt(n+this.length).number,s=r-i+1,a,l=0;if(t.lineWrapping){let c=Math.min(this.height,t.lineHeight*s);a=c/s,this.length>s+1&&(l=(this.height-c)/(this.length-s-1))}else a=this.height/s;return{firstLine:i,lastLine:r,perLine:a,perChar:l}}blockAt(t,n,i,r){let{firstLine:s,lastLine:a,perLine:l,perChar:c}=this.heightMetrics(n,r);if(n.lineWrapping){let u=r+(t0){let s=i[i.length-1];s instanceof Xa?i[i.length-1]=new Xa(s.length+r):i.push(null,new Xa(r-1))}if(t>0){let s=i[0];s instanceof Xa?i[0]=new Xa(t+s.length):i.unshift(new Xa(t-1),null)}return Wo.of(i)}decomposeLeft(t,n){n.push(new Xa(t-1),null)}decomposeRight(t,n){n.push(null,new Xa(this.length-t-1))}updateHeight(t,n=0,i=!1,r){let s=n+this.length;if(r&&r.from<=n+this.length&&r.more){let a=[],l=Math.max(n,r.from),c=-1;for(r.from>n&&a.push(new Xa(r.from-n-1).updateHeight(t,n));l<=s&&r.more;){let d=t.doc.lineAt(l).length;a.length&&a.push(null);let f=r.heights[r.index++],h=0;f<0&&(h=-f,f=r.heights[r.index++]),c==-1?c=f:Math.abs(f-c)>=D2&&(c=-2);let m=new ql(d,f,h);m.outdated=!1,a.push(m),l+=d+1}l<=s&&a.push(null,new Xa(s-l).updateHeight(t,l));let u=Wo.of(a);return(c<0||Math.abs(u.height-this.height)>=D2||Math.abs(c-this.heightMetrics(t,n).perLine)>=D2)&&(dx=!0),QN(this,u)}else(i||this.outdated)&&(this.setHeight(t.heightForGap(n,n+this.length)),this.outdated=!1);return this}toString(){return`gap(${this.length})`}}class XCt extends Wo{constructor(t,n,i){super(t.length+n+i.length,t.height+i.height,n|(t.outdated||i.outdated?2:0)),this.left=t,this.right=i,this.size=t.size+i.size}get break(){return this.flags&1}blockAt(t,n,i,r){let s=i+this.left.height;return tl))return u;let d=n==Fr.ByPosNoHeight?Fr.ByPosNoHeight:Fr.ByPos;return c?u.join(this.right.lineAt(l,d,i,a,l)):this.left.lineAt(l,d,i,r,s).join(u)}forEachLine(t,n,i,r,s,a){let l=r+this.left.height,c=s+this.left.length+this.break;if(this.break)t=c&&this.right.forEachLine(t,n,i,l,c,a);else{let u=this.lineAt(c,Fr.ByPos,i,r,s);t=t&&u.from<=n&&a(u),n>u.to&&this.right.forEachLine(u.to+1,n,i,l,c,a)}}replace(t,n,i){let r=this.left.length+this.break;if(nthis.left.length)return this.balanced(this.left,this.right.replace(t-r,n-r,i));let s=[];t>0&&this.decomposeLeft(t,s);let a=s.length;for(let l of i)s.push(l);if(t>0&&rJ(s,a-1),n=i&&n.push(null)),t>i&&this.right.decomposeLeft(t-i,n)}decomposeRight(t,n){let i=this.left.length,r=i+this.break;if(t>=r)return this.right.decomposeRight(t-r,n);t2*n.size||n.size>2*t.size?Wo.of(this.break?[t,null,n]:[t,n]):(this.left=QN(this.left,t),this.right=QN(this.right,n),this.setHeight(t.height+n.height),this.outdated=t.outdated||n.outdated,this.size=t.size+n.size,this.length=t.length+this.break+n.length,this)}updateHeight(t,n=0,i=!1,r){let{left:s,right:a}=this,l=n+s.length+this.break,c=null;return r&&r.from<=n+s.length&&r.more?c=s=s.updateHeight(t,n,i,r):s.updateHeight(t,n,i),r&&r.from<=l+a.length&&r.more?c=a=a.updateHeight(t,l,i,r):a.updateHeight(t,l,i),c?this.balanced(s,a):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}}function rJ(e,t){let n,i;e[t]==null&&(n=e[t-1])instanceof Xa&&(i=e[t+1])instanceof Xa&&e.splice(t-1,3,new Xa(n.length+1+i.length))}const YCt=5;class cQ{constructor(t,n){this.pos=t,this.oracle=n,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=t}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(t,n){if(this.lineStart>-1){let i=Math.min(n,this.lineEnd),r=this.nodes[this.nodes.length-1];r instanceof ql?r.length+=i-this.pos:(i>this.pos||!this.isCovered)&&this.nodes.push(new ql(i-this.pos,-1,0)),this.writtenTo=i,n>i&&(this.nodes.push(null),this.writtenTo++,this.lineStart=-1)}this.pos=n}point(t,n,i){if(t=YCt)&&this.addLineDeco(r,s,a)}else n>t&&this.span(t,n);this.lineEnd>-1&&this.lineEnd-1)return;let{from:t,to:n}=this.oracle.doc.lineAt(this.pos);this.lineStart=t,this.lineEnd=n,this.writtenTot&&this.nodes.push(new ql(this.pos-t,-1,0)),this.writtenTo=this.pos}blankContent(t,n){let i=new Xa(n-t);return this.oracle.doc.lineAt(t).to==n&&(i.flags|=4),i}ensureLine(){this.enterLine();let t=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(t instanceof ql)return t;let n=new ql(0,-1,0);return this.nodes.push(n),n}addBlock(t){this.enterLine();let n=t.deco;n&&n.startSide>0&&!this.isCovered&&this.ensureLine(),this.nodes.push(t),this.writtenTo=this.pos=this.pos+t.length,n&&n.endSide>0&&(this.covering=t)}addLineDeco(t,n,i){let r=this.ensureLine();r.length+=i,r.collapsed+=i,r.widgetHeight=Math.max(r.widgetHeight,t),r.breaks+=n,this.writtenTo=this.pos=this.pos+i}finish(t){let n=this.nodes.length==0?null:this.nodes[this.nodes.length-1];this.lineStart>-1&&!(n instanceof ql)&&!this.isCovered?this.nodes.push(new ql(0,-1,0)):(this.writtenTod.clientHeight||d.scrollWidth>d.clientWidth)&&f.overflow!="visible"){let h=d.getBoundingClientRect();s=Math.max(s,h.left),a=Math.min(a,h.right),l=Math.max(l,h.top),c=Math.min(u==e.parentNode?r.innerHeight:c,h.bottom)}u=f.position=="absolute"||f.position=="fixed"?d.offsetParent:d.parentNode}else if(u.nodeType==11)u=u.host;else break;return{left:s-n.left,right:Math.max(s,a)-n.left,top:l-(n.top+t),bottom:Math.max(l,c)-(n.top+t)}}function tTt(e){let t=e.getBoundingClientRect(),n=e.ownerDocument.defaultView||window;return t.left0&&t.top0}function nTt(e,t){let n=e.getBoundingClientRect();return{left:0,right:n.right-n.left,top:t,bottom:n.bottom-(n.top+t)}}class b5{constructor(t,n,i,r){this.from=t,this.to=n,this.size=i,this.displaySize=r}static same(t,n){if(t.length!=n.length)return!1;for(let i=0;itypeof r!="function"&&r.class=="cm-lineWrapping");this.heightOracle=new WCt(i),this.stateDeco=oJ(n),this.heightMap=Wo.empty().applyChanges(this.stateDeco,Ji.empty,this.heightOracle.setDoc(n.doc),[new Gc(0,0,0,n.doc.length)]);for(let r=0;r<2&&(this.viewport=this.getViewport(0,null),!!this.updateForViewport());r++);this.updateViewportLines(),this.lineGaps=this.ensureLineGaps([]),this.lineGapDeco=xn.set(this.lineGaps.map(r=>r.draw(this,!1))),this.scrollParent=t.scrollDOM,this.computeVisibleRanges()}updateForViewport(){let t=[this.viewport],{main:n}=this.state.selection;for(let i=0;i<=1;i++){let r=i?n.head:n.anchor;if(!t.some(({from:s,to:a})=>r>=s&&r<=a)){let{from:s,to:a}=this.lineBlockAt(r);t.push(new tA(s,a))}}return this.viewports=t.sort((i,r)=>i.from-r.from),this.updateScaler()}updateScaler(){let t=this.scaler;return this.scaler=this.heightMap.height<=7e6?aJ:new uQ(this.heightOracle,this.heightMap,this.viewports),t.eq(this.scaler)?0:2}updateViewportLines(){this.viewportLines=[],this.heightMap.forEachLine(this.viewport.from,this.viewport.to,this.heightOracle.setDoc(this.state.doc),0,0,t=>{this.viewportLines.push(Kw(t,this.scaler))})}update(t,n=null){this.state=t.state;let i=this.stateDeco;this.stateDeco=oJ(this.state);let r=t.changedRanges,s=Gc.extendWithRanges(r,ZCt(i,this.stateDeco,t?t.changes:ga.empty(this.state.doc.length))),a=this.heightMap.height,l=this.scrolledToBottom?null:this.scrollAnchorAt(this.scrollOffset);iJ(),this.heightMap=this.heightMap.applyChanges(this.stateDeco,t.startState.doc,this.heightOracle.setDoc(this.state.doc),s),(this.heightMap.height!=a||dx)&&(t.flags|=2),l?(this.scrollAnchorPos=t.changes.mapPos(l.from,-1),this.scrollAnchorHeight=l.top):(this.scrollAnchorPos=-1,this.scrollAnchorHeight=a);let c=s.length?this.mapViewport(this.viewport,t.changes):this.viewport;(n&&(n.range.headc.to)||!this.viewportIsAppropriate(c))&&(c=this.getViewport(0,n));let u=c.from!=this.viewport.from||c.to!=this.viewport.to;this.viewport=c,t.flags|=this.updateForViewport(),(u||!t.changes.empty||t.flags&2)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(this.mapLineGaps(this.lineGaps,t.changes))),t.flags|=this.computeVisibleRanges(t.changes),n&&(this.scrollTarget=n),!this.mustEnforceCursorAssoc&&(t.selectionSet||t.focusChanged)&&t.view.lineWrapping&&t.state.selection.main.empty&&t.state.selection.main.assoc&&!t.state.facet(kAe)&&(this.mustEnforceCursorAssoc=!0)}measure(){let{view:t}=this,n=t.contentDOM,i=window.getComputedStyle(n),r=this.heightOracle,s=i.whiteSpace;this.defaultTextDirection=i.direction=="rtl"?Pr.RTL:Pr.LTR;let a=this.heightOracle.mustRefreshForWrapping(s)||this.mustMeasureContent==="refresh",l=n.getBoundingClientRect(),c=a||this.mustMeasureContent||this.contentDOMHeight!=l.height;this.contentDOMHeight=l.height,this.mustMeasureContent=!1;let u=0,d=0;if(l.width&&l.height){let{scaleX:k,scaleY:S}=aAe(n,l);(k>.005&&Math.abs(this.scaleX-k)>.005||S>.005&&Math.abs(this.scaleY-S)>.005)&&(this.scaleX=k,this.scaleY=S,u|=16,a=c=!0)}let f=(parseInt(i.paddingTop)||0)*this.scaleY,h=(parseInt(i.paddingBottom)||0)*this.scaleY;(this.paddingTop!=f||this.paddingBottom!=h)&&(this.paddingTop=f,this.paddingBottom=h,u|=18),this.editorWidth!=t.scrollDOM.clientWidth&&(r.lineWrapping&&(c=!0),this.editorWidth=t.scrollDOM.clientWidth,u|=16);let m=oAe(this.view.contentDOM,!1).y;m!=this.scrollParent&&(this.scrollParent=m,this.scrollAnchorHeight=-1,this.scrollOffset=0);let g=this.getScrollOffset();this.scrollOffset!=g&&(this.scrollAnchorHeight=-1,this.scrollOffset=g),this.scrolledToBottom=cAe(this.scrollParent||t.win);let b=(this.printing?nTt:eTt)(n,this.paddingTop),v=b.top-this.pixelViewport.top,y=b.bottom-this.pixelViewport.bottom;this.pixelViewport=b;let x=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left;if(x!=this.inView&&(this.inView=x,x&&(c=!0)),!this.inView&&!this.scrollTarget&&!tTt(t.dom))return 0;let O=l.width;if((this.contentDOMWidth!=O||this.editorHeight!=t.scrollDOM.clientHeight)&&(this.contentDOMWidth=l.width,this.editorHeight=t.scrollDOM.clientHeight,u|=16),c){let k=t.docView.measureVisibleLineHeights(this.viewport);if(r.mustRefreshForHeights(k)&&(a=!0),a||r.lineWrapping&&Math.abs(O-this.contentDOMWidth)>r.charWidth){let{lineHeight:S,charWidth:E,textHeight:C}=t.docView.measureTextSize();a=S>0&&r.refresh(s,S,E,C,Math.max(5,O/E),k),a&&(t.docView.minWidth=0,u|=16)}v>0&&y>0?d=Math.max(v,y):v<0&&y<0&&(d=Math.min(v,y)),iJ();for(let S of this.viewports){let E=S.from==this.viewport.from?k:t.docView.measureVisibleLineHeights(S);this.heightMap=(a?Wo.empty().applyChanges(this.stateDeco,Ji.empty,this.heightOracle,[new Gc(0,0,0,t.state.doc.length)]):this.heightMap).updateHeight(r,0,a,new KCt(S.from,E))}dx&&(u|=2)}let w=!this.viewportIsAppropriate(this.viewport,d)||this.scrollTarget&&(this.scrollTarget.range.headthis.viewport.to);return w&&(u&2&&(u|=this.updateScaler()),this.viewport=this.getViewport(d,this.scrollTarget),u|=this.updateForViewport()),(u&2||w)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(a?[]:this.lineGaps,t)),u|=this.computeVisibleRanges(),this.mustEnforceCursorAssoc&&(this.mustEnforceCursorAssoc=!1,t.docView.enforceCursorAssoc()),u}get visibleTop(){return this.scaler.fromDOM(this.pixelViewport.top)}get visibleBottom(){return this.scaler.fromDOM(this.pixelViewport.bottom)}getViewport(t,n){let i=.5-Math.max(-.5,Math.min(.5,t/1e3/2)),r=this.heightMap,s=this.heightOracle,{visibleTop:a,visibleBottom:l}=this,c=new tA(r.lineAt(a-i*1e3,Fr.ByHeight,s,0,0).from,r.lineAt(l+(1-i)*1e3,Fr.ByHeight,s,0,0).to);if(n){let{head:u}=n.range;if(uc.to){let d=Math.min(this.editorHeight,this.pixelViewport.bottom-this.pixelViewport.top),f=r.lineAt(u,Fr.ByPos,s,0,0),h;n.y=="center"?h=(f.top+f.bottom)/2-d/2:n.y=="start"||n.y=="nearest"&&u=l+Math.max(10,Math.min(i,250)))&&r>a-2*1e3&&s>1,a=r<<1;if(this.defaultTextDirection!=Pr.LTR&&!i)return[];let l=[],c=(d,f,h,m)=>{if(f-dd&&yy.from>=h.from&&y.to<=h.to&&Math.abs(y.from-d)y.fromx));if(!v){if(fO.from<=f&&O.to>=f)){let O=n.moveToLineBoundary(rt.cursor(f),!1,!0).head;O>d&&(f=O)}let y=this.gapSize(h,d,f,m),x=i||y<2e6?y:2e6;v=new b5(d,f,y,x)}l.push(v)},u=d=>{if(d.length2e6)for(let S of t)S.from>=d.from&&S.fromd.from&&c(d.from,m,d,f),gn.draw(this,this.heightOracle.lineWrapping))))}computeVisibleRanges(t){let n=this.stateDeco;this.lineGaps.length&&(n=n.concat(this.lineGapDeco));let i=[];Si.spans(n,this.viewport.from,this.viewport.to,{span(s,a){i.push({from:s,to:a})},point(){}},20);let r=0;if(i.length!=this.visibleRanges.length)r=12;else for(let s=0;s=this.viewport.from&&t<=this.viewport.to&&this.viewportLines.find(n=>n.from<=t&&n.to>=t)||Kw(this.heightMap.lineAt(t,Fr.ByPos,this.heightOracle,0,0),this.scaler)}lineBlockAtHeight(t){return t>=this.viewportLines[0].top&&t<=this.viewportLines[this.viewportLines.length-1].bottom&&this.viewportLines.find(n=>n.top<=t&&n.bottom>=t)||Kw(this.heightMap.lineAt(this.scaler.fromDOM(t),Fr.ByHeight,this.heightOracle,0,0),this.scaler)}getScrollOffset(){return(this.scrollParent==this.view.scrollDOM?this.scrollParent.scrollTop:(this.scrollParent?this.scrollParent.getBoundingClientRect().top:0)-this.view.contentDOM.getBoundingClientRect().top)*this.scaleY}scrollAnchorAt(t){let n=this.lineBlockAtHeight(t+8);return n.from>=this.viewport.from||this.viewportLines[0].top-t>200?n:this.viewportLines[0]}elementAtHeight(t){return Kw(this.heightMap.blockAt(this.scaler.fromDOM(t),this.heightOracle,0,0),this.scaler)}get docHeight(){return this.scaler.toDOM(this.heightMap.height)}get contentHeight(){return this.docHeight+this.paddingTop+this.paddingBottom}}class tA{constructor(t,n){this.from=t,this.to=n}}function rTt(e,t,n){let i=[],r=e,s=0;return Si.spans(n,e,t,{span(){},point(a,l){a>r&&(i.push({from:r,to:a}),s+=a-r),r=l}},20),r=1)return t[t.length-1].to;let i=Math.floor(e*n);for(let r=0;;r++){let{from:s,to:a}=t[r],l=a-s;if(i<=l)return s+i;i-=l}}function iA(e,t){let n=0;for(let{from:i,to:r}of e.ranges){if(t<=r){n+=t-i;break}n+=r-i}return n/e.total}function sTt(e,t){for(let n of e)if(t(n))return n}const aJ={toDOM(e){return e},fromDOM(e){return e},scale:1,eq(e){return e==this}};function oJ(e){let t=e.facet(TI).filter(i=>typeof i!="function"),n=e.facet(aQ).filter(i=>typeof i!="function");return n.length&&t.push(Si.join(n)),t}class uQ{constructor(t,n,i){let r=0,s=0,a=0;this.viewports=i.map(({from:l,to:c})=>{let u=n.lineAt(l,Fr.ByPos,t,0,0).top,d=n.lineAt(c,Fr.ByPos,t,0,0).bottom;return r+=d-u,{from:l,to:c,top:u,bottom:d,domTop:0,domBottom:0}}),this.scale=(7e6-r)/(n.height-r);for(let l of this.viewports)l.domTop=a+(l.top-s)*this.scale,a=l.domBottom=l.domTop+(l.bottom-l.top),s=l.bottom}toDOM(t){for(let n=0,i=0,r=0;;n++){let s=nn.from==t.viewports[i].from&&n.to==t.viewports[i].to):!1}}function Kw(e,t){if(t.scale==1)return e;let n=t.toDOM(e.top),i=t.toDOM(e.bottom);return new Au(e.from,e.length,n,i-n,Array.isArray(e._content)?e._content.map(r=>Kw(r,t)):e._content)}const rA=Jt.define({combine:e=>e.join(" ")}),V$=Jt.define({combine:e=>e.indexOf(!0)>-1}),H$=Nm.newName(),qAe=Nm.newName(),WAe=Nm.newName(),KAe={"&light":"."+qAe,"&dark":"."+WAe};function q$(e,t,n){return new Nm(t,{finish(i){return/&/.test(i)?i.replace(/&\w*/,r=>{if(r=="&")return e;if(!n||!n[r])throw new RangeError(`Unsupported selector: ${r}`);return n[r]}):e+" "+i}})}const aTt=q$("."+H$,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,height:"100%",overflowX:"auto",position:"relative",zIndex:0,overflowAnchor:"none"},".cm-content":{margin:0,flexGrow:2,flexShrink:0,display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",minHeight:"100%",padding:"4px 0",outline:"none","&[contenteditable=true]":{WebkitUserModify:"read-write-plaintext-only"}},".cm-lineWrapping":{whiteSpace_fallback:"pre-wrap",whiteSpace:"break-spaces",wordBreak:"break-word",overflowWrap:"anywhere",flexShrink:1},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 6px"},".cm-layer":{userSelect:"none",position:"absolute",left:0,top:0,contain:"size style","& > *":{position:"absolute"}},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{pointerEvents:"none"},"&.cm-focused > .cm-scroller > .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{opacity:0},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{opacity:0},"100%":{}},".cm-cursor, .cm-dropCursor":{borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none"},".cm-cursor":{display:"none"},"&dark .cm-cursor":{borderLeftColor:"#ddd"},".cm-selectionHandle":{backgroundColor:"currentColor",width:"1.5px"},".cm-selectionHandle-start::before, .cm-selectionHandle-end::before":{content:'""',backgroundColor:"inherit",borderRadius:"50%",width:"8px",height:"8px",position:"absolute",left:"-3.25px"},".cm-selectionHandle-start::before":{top:"-8px"},".cm-selectionHandle-end::before":{bottom:"-8px"},".cm-dropCursor":{position:"absolute"},"&.cm-focused > .cm-scroller > .cm-cursorLayer .cm-cursor":{display:"block"},".cm-iso":{unicodeBidi:"isolate"},".cm-announced":{position:"fixed",top:"-10000px"},"@media print":{".cm-announced":{display:"none"}},"&light .cm-activeLine":{backgroundColor:"#cceeff44"},"&dark .cm-activeLine":{backgroundColor:"#99eeff33"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-gutters":{flexShrink:0,display:"flex",height:"100%",boxSizing:"border-box",zIndex:200},".cm-gutters-before":{insetInlineStart:0},".cm-gutters-after":{insetInlineEnd:0},"&light .cm-gutters":{backgroundColor:"#f5f5f5",color:"#6c6c6c",border:"0px solid #ddd","&.cm-gutters-before":{borderRightWidth:"1px"},"&.cm-gutters-after":{borderLeftWidth:"1px"}},"&dark .cm-gutters":{backgroundColor:"#333338",color:"#ccc"},".cm-gutter":{display:"flex !important",flexDirection:"column",flexShrink:0,boxSizing:"border-box",minHeight:"100%",overflow:"hidden"},".cm-gutterElement":{boxSizing:"border-box"},".cm-lineNumbers .cm-gutterElement":{padding:"0 3px 0 5px",minWidth:"20px",textAlign:"right",whiteSpace:"nowrap"},"&light .cm-activeLineGutter":{backgroundColor:"#e2f2ff"},"&dark .cm-activeLineGutter":{backgroundColor:"#222227"},".cm-panels":{boxSizing:"border-box",position:"sticky",left:0,right:0,zIndex:300},"&light .cm-panels":{backgroundColor:"#f5f5f5",color:"black"},"&light .cm-panels-top":{borderBottom:"1px solid #ddd"},"&light .cm-panels-bottom":{borderTop:"1px solid #ddd"},"&dark .cm-panels":{backgroundColor:"#333338",color:"white"},".cm-dialog":{padding:"2px 19px 4px 6px",position:"relative","& label":{fontSize:"80%"}},".cm-dialog-close":{position:"absolute",top:"3px",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",fontSize:"14px",padding:"0"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-widgetBuffer":{verticalAlign:"text-top",height:"1em",width:0,display:"inline"},".cm-placeholder":{color:"#888",display:"inline-block",verticalAlign:"top",userSelect:"none"},".cm-highlightSpace":{backgroundImage:"radial-gradient(circle at 50% 55%, #aaa 20%, transparent 5%)",backgroundPosition:"center"},".cm-highlightTab":{backgroundImage:`url('data:image/svg+xml,')`,backgroundSize:"auto 100%",backgroundPosition:"right 90%",backgroundRepeat:"no-repeat"},".cm-trailingSpace":{backgroundColor:"#ff332255"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"1px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},KAe),oTt={childList:!0,characterData:!0,subtree:!0,attributes:!0,characterDataOldValue:!0},y5=Zt.ie&&Zt.ie_version<=11;class lTt{constructor(t){this.view=t,this.active=!1,this.editContext=null,this.selectionRange=new LEt,this.selectionChanged=!1,this.delayedFlush=-1,this.resizeTimeout=-1,this.queue=[],this.delayedAndroidKey=null,this.flushingAndroidKey=-1,this.lastChange=0,this.scrollTargets=[],this.intersection=null,this.resizeScroll=null,this.intersecting=!1,this.gapIntersection=null,this.gaps=[],this.printQuery=null,this.parentCheck=-1,this.dom=t.contentDOM,this.observer=new MutationObserver(n=>{for(let i of n)this.queue.push(i);(Zt.ie&&Zt.ie_version<=11||Zt.ios&&t.composing)&&n.some(i=>i.type=="childList"&&i.removedNodes.length||i.type=="characterData"&&i.oldValue.length>i.target.nodeValue.length)?this.flushSoon():this.flush()}),window.EditContext&&Zt.android&&t.constructor.EDIT_CONTEXT!==!1&&!(Zt.chrome&&Zt.chrome_version<126)&&(this.editContext=new uTt(t),t.state.facet(Qf)&&(t.contentDOM.editContext=this.editContext.editContext)),y5&&(this.onCharData=n=>{this.queue.push({target:n.target,type:"characterData",oldValue:n.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.onResize=this.onResize.bind(this),this.onPrint=this.onPrint.bind(this),this.onScroll=this.onScroll.bind(this),window.matchMedia&&(this.printQuery=window.matchMedia("print")),typeof ResizeObserver=="function"&&(this.resizeScroll=new ResizeObserver(()=>{var n;((n=this.view.docView)===null||n===void 0?void 0:n.lastUpdate){this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),n.length>0&&n[n.length-1].intersectionRatio>0!=this.intersecting&&(this.intersecting=!this.intersecting,this.intersecting!=this.view.inView&&this.onScrollChanged(document.createEvent("Event")))},{threshold:[0,.001]}),this.intersection.observe(this.dom),this.gapIntersection=new IntersectionObserver(n=>{n.length>0&&n[n.length-1].intersectionRatio>0&&this.onScrollChanged(document.createEvent("Event"))},{})),this.listenForScroll(),this.readSelectionRange()}onScrollChanged(t){this.view.inputState.runHandlers("scroll",t),this.intersecting&&this.view.measure()}onScroll(t){this.intersecting&&this.flush(!1),this.editContext&&this.view.requestMeasure(this.editContext.measureReq),this.onScrollChanged(t)}onResize(){this.resizeTimeout<0&&(this.resizeTimeout=setTimeout(()=>{this.resizeTimeout=-1,this.view.requestMeasure()},50))}onPrint(t){(t.type=="change"||!t.type)&&!t.matches||(this.view.viewState.printing=!0,this.view.measure(),setTimeout(()=>{this.view.viewState.printing=!1,this.view.requestMeasure()},500))}updateGaps(t){if(this.gapIntersection&&(t.length!=this.gaps.length||this.gaps.some((n,i)=>n!=t[i]))){this.gapIntersection.disconnect();for(let n of t)this.gapIntersection.observe(n);this.gaps=t}}onSelectionChange(t){let n=this.selectionChanged;if(!this.readSelectionRange()||this.delayedAndroidKey)return;let{view:i}=this,r=this.selectionRange;if(i.state.facet(Qf)?i.root.activeElement!=this.dom:!zO(this.dom,r))return;let s=r.anchorNode&&i.docView.tile.nearest(r.anchorNode);if(s&&s.isWidget()&&s.widget.ignoreEvent(t)){n||(this.selectionChanged=!1);return}(Zt.ie&&Zt.ie_version<=11||Zt.android&&Zt.chrome)&&!i.state.selection.main.empty&&r.focusNode&&HO(r.focusNode,r.focusOffset,r.anchorNode,r.anchorOffset)?this.flushSoon():this.flush(!1)}readSelectionRange(){let{view:t}=this,n=ak(t.root);if(!n)return!1;let i=Zt.safari&&t.root.nodeType==11&&t.root.activeElement==this.dom&&cTt(this.view,n)||n;if(!i||this.selectionRange.eq(i))return!1;let r=zO(this.dom,i);return r&&!this.selectionChanged&&t.inputState.lastFocusTime>Date.now()-200&&t.inputState.lastTouchTime{let s=this.delayedAndroidKey;s&&(this.clearDelayedAndroidKey(),this.view.inputState.lastKeyCode=s.keyCode,this.view.inputState.lastKeyTime=Date.now(),!this.flush()&&s.force&&gv(this.dom,s.key,s.keyCode))};this.flushingAndroidKey=this.view.win.requestAnimationFrame(r)}(!this.delayedAndroidKey||t=="Enter")&&(this.delayedAndroidKey={key:t,keyCode:n,force:this.lastChange{this.delayedFlush=-1,this.flush()}))}forceFlush(){this.delayedFlush>=0&&(this.view.win.cancelAnimationFrame(this.delayedFlush),this.delayedFlush=-1),this.flush()}pendingRecords(){for(let t of this.observer.takeRecords())this.queue.push(t);return this.queue}processRecords(){let t=this.pendingRecords();t.length&&(this.queue=[]);let n=-1,i=-1,r=!1;for(let s of t){let a=this.readMutation(s);a&&(a.typeOver&&(r=!0),n==-1?{from:n,to:i}=a:(n=Math.min(a.from,n),i=Math.max(a.to,i)))}return{from:n,to:i,typeOver:r}}readChange(){let{from:t,to:n,typeOver:i}=this.processRecords(),r=this.selectionChanged&&zO(this.dom,this.selectionRange);if(t<0&&!r)return null;t>-1&&(this.lastChange=Date.now()),this.view.inputState.lastFocusTime=0,this.selectionChanged=!1;let s=new CCt(this.view,t,n,i);return this.view.docView.domChanged={newSel:s.newSel?s.newSel.main:null},s}flush(t=!0){if(this.delayedFlush>=0||this.delayedAndroidKey)return!1;t&&this.readSelectionRange();let n=this.readChange();if(!n)return this.view.requestMeasure(),!1;let i=this.view.state,r=DAe(this.view,n);return this.view.state==i&&(n.domChanged||n.newSel&&!UN(this.view.state.selection,n.newSel.main))&&this.view.update([]),r}readMutation(t){let n=this.view.docView.tile.nearest(t.target);if(!n||n.isWidget())return null;if(n.markDirty(t.type=="attributes"),t.type=="childList"){let i=lJ(n,t.previousSibling||t.target.previousSibling,-1),r=lJ(n,t.nextSibling||t.target.nextSibling,1);return{from:i?n.posAfter(i):n.posAtStart,to:r?n.posBefore(r):n.posAtEnd,typeOver:!1}}else return t.type=="characterData"?{from:n.posAtStart,to:n.posAtEnd,typeOver:t.target.nodeValue==t.oldValue}:null}setWindow(t){t!=this.win&&(this.removeWindowListeners(this.win),this.win=t,this.addWindowListeners(this.win))}addWindowListeners(t){t.addEventListener("resize",this.onResize),this.printQuery?this.printQuery.addEventListener?this.printQuery.addEventListener("change",this.onPrint):this.printQuery.addListener(this.onPrint):t.addEventListener("beforeprint",this.onPrint),t.addEventListener("scroll",this.onScroll),t.document.addEventListener("selectionchange",this.onSelectionChange)}removeWindowListeners(t){t.removeEventListener("scroll",this.onScroll),t.removeEventListener("resize",this.onResize),this.printQuery?this.printQuery.removeEventListener?this.printQuery.removeEventListener("change",this.onPrint):this.printQuery.removeListener(this.onPrint):t.removeEventListener("beforeprint",this.onPrint),t.document.removeEventListener("selectionchange",this.onSelectionChange)}update(t){this.editContext&&(this.editContext.update(t),t.startState.facet(Qf)!=t.state.facet(Qf)&&(t.view.contentDOM.editContext=t.state.facet(Qf)?this.editContext.editContext:null))}destroy(){var t,n,i;this.stop(),(t=this.intersection)===null||t===void 0||t.disconnect(),(n=this.gapIntersection)===null||n===void 0||n.disconnect(),(i=this.resizeScroll)===null||i===void 0||i.disconnect();for(let r of this.scrollTargets)r.removeEventListener("scroll",this.onScroll);this.removeWindowListeners(this.win),clearTimeout(this.parentCheck),clearTimeout(this.resizeTimeout),this.win.cancelAnimationFrame(this.delayedFlush),this.win.cancelAnimationFrame(this.flushingAndroidKey),this.editContext&&(this.view.contentDOM.editContext=null,this.editContext.destroy())}}function lJ(e,t,n){for(;t;){let i=Cs.get(t);if(i&&i.parent==e)return i;let r=t.parentNode;t=r!=e.dom?r:n>0?t.nextSibling:t.previousSibling}return null}function cJ(e,t){let n=t.startContainer,i=t.startOffset,r=t.endContainer,s=t.endOffset,a=e.docView.domAtPos(e.state.selection.main.anchor,1);return HO(a.node,a.offset,r,s)&&([n,i,r,s]=[r,s,n,i]),{anchorNode:n,anchorOffset:i,focusNode:r,focusOffset:s}}function cTt(e,t){if(t.getComposedRanges){let r=t.getComposedRanges(e.root)[0];if(r)return cJ(e,r)}let n=null;function i(r){r.preventDefault(),r.stopImmediatePropagation(),n=r.getTargetRanges()[0]}return e.contentDOM.addEventListener("beforeinput",i,!0),e.dom.ownerDocument.execCommand("indent"),e.contentDOM.removeEventListener("beforeinput",i,!0),n?cJ(e,n):null}class uTt{constructor(t){this.from=0,this.to=0,this.pendingContextChange=null,this.handlers=Object.create(null),this.composing=null,this.resetRange(t.state);let n=this.editContext=new window.EditContext({text:t.state.doc.sliceString(this.from,this.to),selectionStart:this.toContextPos(Math.max(this.from,Math.min(this.to,t.state.selection.main.anchor))),selectionEnd:this.toContextPos(t.state.selection.main.head)});this.handlers.textupdate=i=>{let r=t.state.selection.main,{anchor:s,head:a}=r,l=this.toEditorPos(i.updateRangeStart),c=this.toEditorPos(i.updateRangeEnd);t.inputState.composing>=0&&!this.composing&&(this.composing={contextBase:i.updateRangeStart,editorBase:l,drifted:!1});let u=c-l>i.text.length;l==this.from&&sthis.to&&(c=s);let d=MAe(t.state.sliceDoc(l,c),i.text,(u?r.from:r.to)-l,u?"end":null);if(!d){let h=rt.single(this.toEditorPos(i.selectionStart),this.toEditorPos(i.selectionEnd));UN(h,r)||t.dispatch({selection:h,userEvent:"select"});return}let f={from:d.from+l,to:d.toA+l,insert:Ji.of(i.text.slice(d.from,d.toB).split(` +`))};if((Zt.mac||Zt.android)&&f.from==a-1&&/^\. ?$/.test(i.text)&&t.contentDOM.getAttribute("autocorrect")=="off"&&(f={from:l,to:c,insert:Ji.of([i.text.replace("."," ")])}),this.pendingContextChange=f,!t.state.readOnly){let h=this.to-this.from+(f.to-f.from+f.insert.length);lQ(t,f,rt.single(this.toEditorPos(i.selectionStart,h),this.toEditorPos(i.selectionEnd,h)))}this.pendingContextChange&&(this.revertPending(t.state),this.setSelection(t.state)),f.from=0&&!/[\\p{Alphabetic}\\p{Number}_]/.test(n.text.slice(Math.max(0,i.updateRangeStart-1),Math.min(n.text.length,i.updateRangeStart+1)))&&this.handlers.compositionend(i)},this.handlers.characterboundsupdate=i=>{let r=[],s=null;for(let a=this.toEditorPos(i.rangeStart),l=this.toEditorPos(i.rangeEnd);a{let r=[];for(let s of i.getTextFormats()){let a=s.underlineStyle,l=s.underlineThickness;if(!/none/i.test(a)&&!/none/i.test(l)){let c=this.toEditorPos(s.rangeStart),u=this.toEditorPos(s.rangeEnd);if(c{t.inputState.composing<0&&(t.inputState.composing=0,t.inputState.compositionFirstChange=!0)},this.handlers.compositionend=()=>{if(t.inputState.composing=-1,t.inputState.compositionFirstChange=null,this.composing){let{drifted:i}=this.composing;this.composing=null,i&&this.reset(t.state)}};for(let i in this.handlers)n.addEventListener(i,this.handlers[i]);this.measureReq={read:i=>{let r=ak(i.root);r&&r.rangeCount&&this.editContext.updateSelectionBounds(r.getRangeAt(0).getBoundingClientRect())}}}applyEdits(t){let n=0,i=!1,r=this.pendingContextChange;return t.changes.iterChanges((s,a,l,c,u)=>{if(i)return;let d=u.length-(a-s);if(r&&a>=r.to)if(r.from==s&&r.to==a&&r.insert.eq(u)){r=this.pendingContextChange=null,n+=d,this.to+=d;return}else r=null,this.revertPending(t.state);if(s+=n,a+=n,a<=this.from)this.from+=d,this.to+=d;else if(sthis.to||this.to-this.from+u.length>3e4){i=!0;return}this.editContext.updateText(this.toContextPos(s),this.toContextPos(a),u.toString()),this.to+=d}n+=d}),r&&!i&&this.revertPending(t.state),!i}update(t){let n=this.pendingContextChange,i=t.startState.selection.main;this.composing&&(this.composing.drifted||!t.changes.touchesRange(i.from,i.to)&&t.transactions.some(r=>!r.isUserEvent("input.type")&&r.changes.touchesRange(this.from,this.to)))?(this.composing.drifted=!0,this.composing.editorBase=t.changes.mapPos(this.composing.editorBase)):!this.applyEdits(t)||!this.rangeIsValid(t.state)?(this.pendingContextChange=null,this.reset(t.state)):(t.docChanged||t.selectionSet||n)&&this.setSelection(t.state),(t.geometryChanged||t.docChanged||t.selectionSet)&&t.view.requestMeasure(this.measureReq)}resetRange(t){let{head:n}=t.selection.main;this.from=Math.max(0,n-1e4),this.to=Math.min(t.doc.length,n+1e4)}reset(t){this.resetRange(t),this.editContext.updateText(0,this.editContext.text.length,t.doc.sliceString(this.from,this.to)),this.setSelection(t)}revertPending(t){let n=this.pendingContextChange;this.pendingContextChange=null,this.editContext.updateText(this.toContextPos(n.from),this.toContextPos(n.from+n.insert.length),t.doc.sliceString(n.from,n.to))}setSelection(t){let{main:n}=t.selection,i=this.toContextPos(Math.max(this.from,Math.min(this.to,n.anchor))),r=this.toContextPos(n.head);(this.editContext.selectionStart!=i||this.editContext.selectionEnd!=r)&&this.editContext.updateSelection(i,r)}rangeIsValid(t){let{head:n}=t.selection.main;return!(this.from>0&&n-this.from<500||this.to1e4*3)}toEditorPos(t,n=this.to-this.from){t=Math.min(t,n);let i=this.composing;return i&&i.drifted?i.editorBase+(t-i.contextBase):t+this.from}toContextPos(t){let n=this.composing;return n&&n.drifted?n.contextBase+(t-n.editorBase):t-this.from}destroy(){for(let t in this.handlers)this.editContext.removeEventListener(t,this.handlers[t])}}class Qt{get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return!!this.inputState&&this.inputState.composing>0}get compositionStarted(){return!!this.inputState&&this.inputState.composing>=0}get root(){return this._root}get win(){return this.dom.ownerDocument.defaultView||window}constructor(t={}){var n;this.plugins=[],this.pluginMap=new Map,this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.destroyed=!1,this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.className="cm-announced",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),t.parent&&t.parent.appendChild(this.dom);let{dispatch:i}=t;this.dispatchTransactions=t.dispatchTransactions||i&&(r=>r.forEach(s=>i(s,this)))||(r=>this.update(r)),this.dispatch=this.dispatch.bind(this),this._root=t.root||$Et(t.parent)||document,this.viewState=new sJ(this,t.state||ji.create(t)),t.scrollTo&&t.scrollTo.is(ZT)&&(this.viewState.scrollTarget=t.scrollTo.value.clip(this.viewState.state)),this.plugins=this.state.facet(Uy).map(r=>new f5(r));for(let r of this.plugins)r.update(this);this.observer=new lTt(this),this.inputState=new NCt(this),this.inputState.ensureHandlers(this.plugins),this.docView=new qZ(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,this.requestMeasure(),!((n=document.fonts)===null||n===void 0)&&n.ready&&document.fonts.ready.then(()=>{this.viewState.mustMeasureContent="refresh",this.requestMeasure()})}dispatch(...t){let n=t.length==1&&t[0]instanceof ea?t:t.length==1&&Array.isArray(t[0])?t[0]:[this.state.update(...t)];this.dispatchTransactions(n,this)}update(t){if(this.updateState!=0)throw new Error("Calls to EditorView.update are not allowed while an update is in progress");let n=!1,i=!1,r,s=this.state;for(let h of t){if(h.startState!=s)throw new RangeError("Trying to update state with a transaction that doesn't start from the previous state.");s=h.state}if(this.destroyed){this.viewState.state=s;return}let a=this.hasFocus,l=0,c=null;t.some(h=>h.annotation(QAe))?(this.inputState.notifiedFocused=a,l=1):a!=this.inputState.notifiedFocused&&(this.inputState.notifiedFocused=a,c=zAe(s,a),c||(l=1));let u=this.observer.delayedAndroidKey,d=null;if(u?(this.observer.clearDelayedAndroidKey(),d=this.observer.readChange(),(d&&!this.state.doc.eq(s.doc)||!this.state.selection.eq(s.selection))&&(d=null)):this.observer.clear(),s.facet(ji.phrases)!=this.state.facet(ji.phrases))return this.setState(s);r=$N.create(this,s,t),r.flags|=l;let f=this.viewState.scrollTarget;try{this.updateState=2;for(let h of t){if(f&&(f=f.map(h.changes)),h.scrollIntoView){let{main:m}=h.state.selection,{x:g,y:b}=this.state.facet(Qt.cursorScrollMargin);f=new bv(m.empty?m:rt.cursor(m.head,m.head>m.anchor?-1:1),"nearest","nearest",b,g)}for(let m of h.effects)m.is(ZT)&&(f=m.value.clip(this.state))}this.viewState.update(r,f),this.bidiCache=zN.update(this.bidiCache,r.changes),r.empty||(this.updatePlugins(r),this.inputState.update(r)),n=this.docView.update(r),this.state.facet(Ww)!=this.styleModules&&this.mountStyles(),i=this.updateAttrs(),this.showAnnouncements(t),this.docView.updateSelection(n,t.some(h=>h.isUserEvent("select.pointer")))}finally{this.updateState=0}if(r.startState.facet(rA)!=r.state.facet(rA)&&(this.viewState.mustMeasureContent=!0),(n||i||f||this.viewState.mustEnforceCursorAssoc||this.viewState.mustMeasureContent)&&this.requestMeasure(),n&&this.docViewUpdate(),!r.empty)for(let h of this.state.facet(F$))try{h(r)}catch(m){ml(this.state,m,"update listener")}(c||d)&&Promise.resolve().then(()=>{c&&this.state==c.startState&&this.dispatch(c),d&&!DAe(this,d)&&u.force&&gv(this.contentDOM,u.key,u.keyCode)})}setState(t){if(this.updateState!=0)throw new Error("Calls to EditorView.setState are not allowed while an update is in progress");if(this.destroyed){this.viewState.state=t;return}this.updateState=2;let n=this.hasFocus;try{for(let i of this.plugins)i.destroy(this);this.viewState=new sJ(this,t),this.plugins=t.facet(Uy).map(i=>new f5(i)),this.pluginMap.clear();for(let i of this.plugins)i.update(this);this.docView.destroy(),this.docView=new qZ(this),this.inputState.ensureHandlers(this.plugins),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}n&&this.focus(),this.requestMeasure()}updatePlugins(t){let n=t.startState.facet(Uy),i=t.state.facet(Uy);if(n!=i){let r=[];for(let s of i){let a=n.indexOf(s);if(a<0)r.push(new f5(s));else{let l=this.plugins[a];l.mustUpdate=t,r.push(l)}}for(let s of this.plugins)s.mustUpdate!=t&&s.destroy(this);this.plugins=r,this.pluginMap.clear()}else for(let r of this.plugins)r.mustUpdate=t;for(let r=0;r-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.observer.delayedAndroidKey){this.measureScheduled=-1,this.requestMeasure();return}this.measureScheduled=0,t&&this.observer.forceFlush();let n=null,i=this.viewState.scrollParent,r=this.viewState.getScrollOffset(),{scrollAnchorPos:s,scrollAnchorHeight:a}=this.viewState;Math.abs(r-this.viewState.scrollOffset)>1&&(a=-1),this.viewState.scrollAnchorHeight=-1;try{for(let l=0;;l++){if(a<0)if(cAe(i||this.win))s=-1,a=this.viewState.heightMap.height;else{let m=this.viewState.scrollAnchorAt(r);s=m.from,a=m.top}this.updateState=1;let c=this.viewState.measure();if(!c&&!this.measureRequests.length&&this.viewState.scrollTarget==null)break;if(l>5){console.warn(this.measureRequests.length?"Measure loop restarted more than 5 times":"Viewport failed to stabilize");break}let u=[];c&4||([this.measureRequests,u]=[u,this.measureRequests]);let d=u.map(m=>{try{return m.read(this)}catch(g){return ml(this.state,g),uJ}}),f=$N.create(this,this.state,[]),h=!1;f.flags|=c,n?n.flags|=c:n=f,this.updateState=2,f.empty||(this.updatePlugins(f),this.inputState.update(f),this.updateAttrs(),h=this.docView.update(f),h&&this.docViewUpdate());for(let m=0;m1||g<-1)&&!(Zt.ios&&this.inputState.lastIOSMomentumScroll>Date.now()-100)&&(i==this.scrollDOM||this.hasFocus||Math.max(this.inputState.lastWheelEvent,this.inputState.lastTouchTime)>Date.now()-100)){r=r+g,i?i.scrollTop+=g:this.win.scrollBy(0,g),a=-1;continue}}break}}}finally{this.updateState=0,this.measureScheduled=-1}if(n&&!n.empty)for(let l of this.state.facet(F$))l(n)}get themeClasses(){return H$+" "+(this.state.facet(V$)?WAe:qAe)+" "+this.state.facet(rA)}updateAttrs(){let t=dJ(this,TAe,{class:"cm-editor"+(this.hasFocus?" cm-focused ":" ")+this.themeClasses}),n={spellcheck:"false",autocorrect:"off",autocapitalize:"off",writingsuggestions:"false",translate:"no",contenteditable:this.state.facet(Qf)?"true":"false",class:"cm-content",style:`${Zt.tabSize}: ${this.state.tabSize}`,role:"textbox","aria-multiline":"true"};this.state.readOnly&&(n["aria-readonly"]="true"),dJ(this,sQ,n);let i=this.observer.ignore(()=>{let r=BZ(this.contentDOM,this.contentAttrs,n),s=BZ(this.dom,this.editorAttrs,t);return r||s});return this.editorAttrs=t,this.contentAttrs=n,i}showAnnouncements(t){let n=!0;for(let i of t)for(let r of i.effects)if(r.is(Qt.announce)){n&&(this.announceDOM.textContent=""),n=!1;let s=this.announceDOM.appendChild(document.createElement("div"));s.textContent=r.value}}mountStyles(){this.styleModules=this.state.facet(Ww);let t=this.state.facet(Qt.cspNonce);Nm.mount(this.root,this.styleModules.concat(aTt).reverse(),t?{nonce:t}:void 0)}readMeasured(){if(this.updateState==2)throw new Error("Reading the editor layout isn't allowed during an update");this.updateState==0&&this.measureScheduled>-1&&this.measure(!1)}requestMeasure(t){if(this.measureScheduled<0&&(this.measureScheduled=this.win.requestAnimationFrame(()=>this.measure())),t){if(this.measureRequests.indexOf(t)>-1)return;if(t.key!=null){for(let n=0;ni.plugin==t)||null),n&&n.update(this).value}get documentTop(){return this.contentDOM.getBoundingClientRect().top+this.viewState.paddingTop}get documentPadding(){return{top:this.viewState.paddingTop,bottom:this.viewState.paddingBottom}}get scaleX(){return this.viewState.scaleX}get scaleY(){return this.viewState.scaleY}elementAtHeight(t){return this.readMeasured(),this.viewState.elementAtHeight(t)}lineBlockAtHeight(t){return this.readMeasured(),this.viewState.lineBlockAtHeight(t)}get viewportLineBlocks(){return this.viewState.viewportLines}lineBlockAt(t){return this.viewState.lineBlockAt(t)}get contentHeight(){return this.viewState.contentHeight}moveByChar(t,n,i){return g5(this,t,WZ(this,t,n,i))}moveByGroup(t,n){return g5(this,t,WZ(this,t,n,i=>xCt(this,t.head,i)))}visualLineSide(t,n){let i=this.bidiSpans(t),r=this.textDirectionAt(t.from),s=i[n?i.length-1:0];return rt.cursor(s.side(n,r)+t.from,s.forward(!n,r)?1:-1)}moveToLineBoundary(t,n,i=!0){return vCt(this,t,n,i)}moveVertically(t,n,i){return g5(this,t,wCt(this,t,n,i))}domAtPos(t,n=1){return this.docView.domAtPos(t,n)}posAtDOM(t,n=0){return this.docView.posFromDOM(t,n)}posAtCoords(t,n=!0){this.readMeasured();let i=Q$(this,t,n);return i&&i.pos}posAndSideAtCoords(t,n=!0){return this.readMeasured(),Q$(this,t,n)}coordsAtPos(t,n=1){this.readMeasured();let i=this.state.doc.lineAt(t),r=this.bidiSpans(i),s=r[Nd.find(r,t-i.from,-1,n)];return this.docView.coordsAt(t,n,s.dir==Pr.RTL)}coordsForChar(t){return this.readMeasured(),this.docView.coordsForChar(t)}get defaultCharacterWidth(){return this.viewState.heightOracle.charWidth}get defaultLineHeight(){return this.viewState.heightOracle.lineHeight}get textDirection(){return this.viewState.defaultTextDirection}textDirectionAt(t){return!this.state.facet(SAe)||tthis.viewport.to?this.textDirection:(this.readMeasured(),this.docView.textDirectionAt(t))}get lineWrapping(){return this.viewState.heightOracle.lineWrapping}bidiSpans(t){if(t.length>dTt)return mAe(t.length);let n=this.textDirectionAt(t.from),i;for(let s of this.bidiCache)if(s.from==t.from&&s.dir==n&&(s.fresh||pAe(s.isolates,i=zZ(this,t))))return s.order;i||(i=zZ(this,t));let r=qEt(t.text,n,i);return this.bidiCache.push(new zN(t.from,t.to,n,i,!0,r)),r}get hasFocus(){var t;return(this.dom.ownerDocument.hasFocus()||Zt.safari&&((t=this.inputState)===null||t===void 0?void 0:t.lastContextMenu)>Date.now()-3e4)&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore(()=>{lAe(this.contentDOM),this.docView.updateSelection()})}setRoot(t){this._root!=t&&(this._root=t,this.observer.setWindow((t.nodeType==9?t:t.ownerDocument).defaultView||window),this.mountStyles())}destroy(){this.root.activeElement==this.contentDOM&&this.contentDOM.blur();for(let t of this.plugins)t.destroy(this);this.plugins=[],this.inputState.destroy(),this.docView.destroy(),this.dom.remove(),this.observer.destroy(),this.measureScheduled>-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.destroyed=!0}static scrollIntoView(t,n={}){var i,r,s,a;return ZT.of(new bv(typeof t=="number"?rt.cursor(t):t,(i=n.y)!==null&&i!==void 0?i:"nearest",(r=n.x)!==null&&r!==void 0?r:"nearest",(s=n.yMargin)!==null&&s!==void 0?s:5,(a=n.xMargin)!==null&&a!==void 0?a:5))}scrollSnapshot(){let{scrollTop:t,scrollLeft:n}=this.scrollDOM,i=this.viewState.scrollAnchorAt(t);return ZT.of(new bv(rt.cursor(i.from),"start","start",i.top-t,n,!0))}setTabFocusMode(t){t==null?this.inputState.tabFocusMode=this.inputState.tabFocusMode<0?0:-1:typeof t=="boolean"?this.inputState.tabFocusMode=t?0:-1:this.inputState.tabFocusMode!=0&&(this.inputState.tabFocusMode=Date.now()+t)}static domEventHandlers(t){return Ts.define(()=>({}),{eventHandlers:t})}static domEventObservers(t){return Ts.define(()=>({}),{eventObservers:t})}static theme(t,n){let i=Nm.newName(),r=[rA.of(i),Ww.of(q$(`.${i}`,t))];return n&&n.dark&&r.push(V$.of(!0)),r}static baseTheme(t){return Qh.lowest(Ww.of(q$("."+H$,t,KAe)))}static findFromDOM(t){var n;let i=t.querySelector(".cm-content"),r=i&&Cs.get(i)||Cs.get(t);return((n=r==null?void 0:r.root)===null||n===void 0?void 0:n.view)||null}}Qt.styleModule=Ww;Qt.inputHandler=wAe;Qt.clipboardInputFilter=iQ;Qt.clipboardOutputFilter=rQ;Qt.scrollHandler=EAe;Qt.focusChangeEffect=OAe;Qt.perLineTextDirection=SAe;Qt.exceptionSink=xAe;Qt.updateListener=F$;Qt.editable=Qf;Qt.mouseSelectionStyle=vAe;Qt.dragMovesSelection=yAe;Qt.clickAddsSelectionRange=bAe;Qt.decorations=TI;Qt.blockWrappers=AAe;Qt.outerDecorations=aQ;Qt.atomicRanges=BE;Qt.bidiIsolatedRanges=_Ae;Qt.cursorScrollMargin=Jt.define({combine:e=>{let t=5,n=5;for(let i of e)typeof i=="number"?t=n=i:{x:t,y:n}=i;return{x:t,y:n}}});Qt.scrollMargins=NAe;Qt.darkTheme=V$;Qt.cspNonce=Jt.define({combine:e=>e.length?e[0]:""});Qt.contentAttributes=sQ;Qt.editorAttributes=TAe;Qt.lineWrapping=Qt.contentAttributes.of({class:"cm-lineWrapping"});Qt.announce=Qn.define();const dTt=4096,uJ={};class zN{constructor(t,n,i,r,s,a){this.from=t,this.to=n,this.dir=i,this.isolates=r,this.fresh=s,this.order=a}static update(t,n){if(n.empty&&!t.some(s=>s.fresh))return t;let i=[],r=t.length?t[t.length-1].dir:Pr.LTR;for(let s=Math.max(0,t.length-10);s=0;r--){let s=i[r],a=typeof s=="function"?s(e):s;a&&eQ(a,n)}return n}const fTt=Zt.mac?"mac":Zt.windows?"win":Zt.linux?"linux":"key";function hTt(e,t){const n=e.split(/-(?!$)/);let i=n[n.length-1];i=="Space"&&(i=" ");let r,s,a,l;for(let c=0;ci.concat(r),[]))),n}function mTt(e,t,n){return XAe(GAe(e.state),t,e,n)}let Mp=null;const gTt=4e3;function bTt(e,t=fTt){let n=Object.create(null),i=Object.create(null),r=(a,l)=>{let c=i[a];if(c==null)i[a]=l;else if(c!=l)throw new Error("Key binding "+a+" is used both as a regular binding and as a multi-stroke prefix")},s=(a,l,c,u,d)=>{var f,h;let m=n[a]||(n[a]=Object.create(null)),g=l.split(/ (?!$)/).map(y=>hTt(y,t));for(let y=1;y{let w=Mp={view:O,prefix:x,scope:a};return setTimeout(()=>{Mp==w&&(Mp=null)},gTt),!0}]})}let b=g.join(" ");r(b,!1);let v=m[b]||(m[b]={preventDefault:!1,stopPropagation:!1,run:((h=(f=m._any)===null||f===void 0?void 0:f.run)===null||h===void 0?void 0:h.slice())||[]});c&&v.run.push(c),u&&(v.preventDefault=!0),d&&(v.stopPropagation=!0)};for(let a of e){let l=a.scope?a.scope.split(" "):["editor"];if(a.any)for(let u of l){let d=n[u]||(n[u]=Object.create(null));d._any||(d._any={preventDefault:!1,stopPropagation:!1,run:[]});let{any:f}=a;for(let h in d)d[h].run.push(m=>f(m,W$))}let c=a[t]||a.key;if(c)for(let u of l)s(u,c,a.run,a.preventDefault,a.stopPropagation),a.shift&&s(u,"Shift-"+c,a.shift,a.preventDefault,a.stopPropagation)}return n}let W$=null;function XAe(e,t,n,i){W$=t;let r=jEt(t),s=cl(r,0),a=xd(s)==r.length&&r!=" ",l="",c=!1,u=!1,d=!1;Mp&&Mp.view==n&&Mp.scope==i&&(l=Mp.prefix+" ",$Ae.indexOf(t.keyCode)<0&&(u=!0,Mp=null));let f=new Set,h=v=>{if(v){for(let y of v.run)if(!f.has(y)&&(f.add(y),y(n)))return v.stopPropagation&&(d=!0),!0;v.preventDefault&&(v.stopPropagation&&(d=!0),u=!0)}return!1},m=e[i],g,b;return m&&(h(m[l+sA(r,t,!a)])?c=!0:a&&(t.altKey||t.metaKey||t.ctrlKey)&&!(Zt.windows&&t.ctrlKey&&t.altKey)&&!(Zt.mac&&t.altKey&&!(t.ctrlKey||t.metaKey))&&(g=jm[t.keyCode])&&g!=r?(h(m[l+sA(g,t,!0)])||t.shiftKey&&(b=rk[t.keyCode])!=r&&b!=g&&h(m[l+sA(b,t,!1)]))&&(c=!0):a&&t.shiftKey&&h(m[l+sA(r,t,!0)])&&(c=!0),!c&&h(m._any)&&(c=!0)),u&&(c=!0),c&&d&&t.stopPropagation(),W$=null,c}class fb{constructor(t,n,i,r,s){this.className=t,this.left=n,this.top=i,this.width=r,this.height=s}draw(){let t=document.createElement("div");return t.className=this.className,this.adjust(t),t}update(t,n){return n.className!=this.className?!1:(this.adjust(t),!0)}adjust(t){t.style.left=this.left+"px",t.style.top=this.top+"px",this.width!=null&&(t.style.width=this.width+"px"),t.style.height=this.height+"px"}eq(t){return this.left==t.left&&this.top==t.top&&this.width==t.width&&this.height==t.height&&this.className==t.className}static forRange(t,n,i){if(i.empty){let r=t.coordsAtPos(i.head,i.assoc||1);if(!r)return[];let s=YAe(t);return[new fb(n,r.left-s.left,r.top-s.top,null,r.bottom-r.top)]}else return yTt(t,n,i)}}function YAe(e){let t=e.scrollDOM.getBoundingClientRect();return{left:(e.textDirection==Pr.LTR?t.left:t.right-e.scrollDOM.clientWidth*e.scaleX)-e.scrollDOM.scrollLeft*e.scaleX,top:t.top-e.scrollDOM.scrollTop*e.scaleY}}function hJ(e,t,n,i){let r=e.coordsAtPos(t,n*2);if(!r)return i;let s=e.dom.getBoundingClientRect(),a=(r.top+r.bottom)/2,l=e.posAtCoords({x:s.left+1,y:a}),c=e.posAtCoords({x:s.right-1,y:a});return l==null||c==null?i:{from:Math.max(i.from,Math.min(l,c)),to:Math.min(i.to,Math.max(l,c))}}function yTt(e,t,n){if(n.to<=e.viewport.from||n.from>=e.viewport.to)return[];let i=Math.max(n.from,e.viewport.from),r=Math.min(n.to,e.viewport.to),s=e.textDirection==Pr.LTR,a=e.contentDOM,l=a.getBoundingClientRect(),c=YAe(e),u=a.querySelector(".cm-line"),d=u&&window.getComputedStyle(u),f=l.left+(d?parseInt(d.paddingLeft)+Math.min(0,parseInt(d.textIndent)):0),h=l.right-(d?parseInt(d.paddingRight):0),m=U$(e,i,1),g=U$(e,r,-1),b=m.type==ro.Text?m:null,v=g.type==ro.Text?g:null;if(b&&(e.lineWrapping||m.widgetLineBreaks)&&(b=hJ(e,i,1,b)),v&&(e.lineWrapping||g.widgetLineBreaks)&&(v=hJ(e,r,-1,v)),b&&v&&b.from==v.from&&b.to==v.to)return x(O(n.from,n.to,b));{let k=b?O(n.from,null,b):w(m,!1),S=v?O(null,n.to,v):w(g,!0),E=[];return(b||m).to<(v||g).from-(b&&v?1:0)||m.widgetLineBreaks>1&&k.bottom+e.defaultLineHeight/2A&&_.from=I)break;R>P&&j(Math.max(B,P),k==null&&B<=A,Math.min(R,I),S==null&&R>=L,M.dir)}if(P=$.to+1,P>=I)break}return T.length==0&&j(A,k==null,L,S==null,e.textDirection),{top:C,bottom:N,horizontal:T}}function w(k,S){let E=l.top+(S?k.top:k.bottom);return{top:E,bottom:E,horizontal:[]}}}function vTt(e,t){return e.constructor==t.constructor&&e.eq(t)}class xTt{constructor(t,n){this.view=t,this.layer=n,this.drawn=[],this.scaleX=1,this.scaleY=1,this.measureReq={read:this.measure.bind(this),write:this.draw.bind(this)},this.dom=t.scrollDOM.appendChild(document.createElement("div")),this.dom.classList.add("cm-layer"),n.above&&this.dom.classList.add("cm-layer-above"),n.class&&this.dom.classList.add(n.class),this.scale(),this.dom.setAttribute("aria-hidden","true"),this.setOrder(t.state),t.requestMeasure(this.measureReq),n.mount&&n.mount(this.dom,t)}update(t){t.startState.facet(M2)!=t.state.facet(M2)&&this.setOrder(t.state),(this.layer.update(t,this.dom)||t.geometryChanged)&&(this.scale(),t.view.requestMeasure(this.measureReq))}docViewUpdate(t){this.layer.updateOnDocViewUpdate!==!1&&t.requestMeasure(this.measureReq)}setOrder(t){let n=0,i=t.facet(M2);for(;n!vTt(n,this.drawn[i]))){let n=this.dom.firstChild,i=0;for(let r of t)r.update&&n&&r.constructor&&this.drawn[i].constructor&&r.update(n,this.drawn[i])?(n=n.nextSibling,i++):this.dom.insertBefore(r.draw(),n);for(;n;){let r=n.nextSibling;n.remove(),n=r}this.drawn=t,Zt.webkit&&(this.dom.style.display=this.dom.firstChild?"":"none")}}destroy(){this.layer.destroy&&this.layer.destroy(this.dom,this.view),this.dom.remove()}}const M2=Jt.define();function ZAe(e){return[Ts.define(t=>new xTt(t,e)),M2.of(e)]}const fx=Jt.define({combine(e){return nf(e,{cursorBlinkRate:1200,drawRangeCursor:!0,iosSelectionHandles:!0},{cursorBlinkRate:(t,n)=>Math.min(t,n),drawRangeCursor:(t,n)=>t||n})}});function wTt(e={}){return[fx.of(e),OTt,STt,kTt,kAe.of(!0)]}function JAe(e){return e.startState.facet(fx)!=e.state.facet(fx)}const OTt=ZAe({above:!0,markers(e){let{state:t}=e,n=t.facet(fx),i=[];for(let r of t.selection.ranges){let s=r==t.selection.main;if(r.empty||n.drawRangeCursor&&!(s&&Zt.ios&&n.iosSelectionHandles)){let a=s?"cm-cursor cm-cursor-primary":"cm-cursor cm-cursor-secondary",l=r.empty?r:rt.cursor(r.head,r.assoc);for(let c of fb.forRange(e,a,l))i.push(c)}}return i},update(e,t){e.transactions.some(i=>i.selection)&&(t.style.animationName=t.style.animationName=="cm-blink"?"cm-blink2":"cm-blink");let n=JAe(e);return n&&pJ(e.state,t),e.docChanged||e.selectionSet||n},mount(e,t){pJ(t.state,e)},class:"cm-cursorLayer"});function pJ(e,t){t.style.animationDuration=e.facet(fx).cursorBlinkRate+"ms"}const STt=ZAe({above:!1,markers(e){let t=[],{main:n,ranges:i}=e.state.selection;for(let r of i)if(!r.empty)for(let s of fb.forRange(e,"cm-selectionBackground",r))t.push(s);if(Zt.ios&&!n.empty&&e.state.facet(fx).iosSelectionHandles){for(let r of fb.forRange(e,"cm-selectionHandle cm-selectionHandle-start",rt.cursor(n.from,1)))t.push(r);for(let r of fb.forRange(e,"cm-selectionHandle cm-selectionHandle-end",rt.cursor(n.to,1)))t.push(r)}return t},update(e,t){return e.docChanged||e.selectionSet||e.viewportChanged||JAe(e)},class:"cm-selectionLayer"}),kTt=Qh.highest(Qt.theme({".cm-line":{"& ::selection, &::selection":{backgroundColor:"transparent !important"},caretColor:"transparent !important"},".cm-content":{caretColor:"transparent !important","& :focus":{caretColor:"initial !important","&::selection, & ::selection":{backgroundColor:"Highlight !important"}}}})),e2e=Qn.define({map(e,t){return e==null?null:t.mapPos(e)}}),Gw=so.define({create(){return null},update(e,t){return e!=null&&(e=t.changes.mapPos(e)),t.effects.reduce((n,i)=>i.is(e2e)?i.value:n,e)}}),ETt=Ts.fromClass(class{constructor(e){this.view=e,this.cursor=null,this.measureReq={read:this.readPos.bind(this),write:this.drawCursor.bind(this)}}update(e){var t;let n=e.state.field(Gw);n==null?this.cursor!=null&&((t=this.cursor)===null||t===void 0||t.remove(),this.cursor=null):(this.cursor||(this.cursor=this.view.scrollDOM.appendChild(document.createElement("div")),this.cursor.className="cm-dropCursor"),(e.startState.field(Gw)!=n||e.docChanged||e.geometryChanged)&&this.view.requestMeasure(this.measureReq))}readPos(){let{view:e}=this,t=e.state.field(Gw),n=t!=null&&e.coordsAtPos(t);if(!n)return null;let i=e.scrollDOM.getBoundingClientRect();return{left:n.left-i.left+e.scrollDOM.scrollLeft*e.scaleX,top:n.top-i.top+e.scrollDOM.scrollTop*e.scaleY,height:n.bottom-n.top}}drawCursor(e){if(this.cursor){let{scaleX:t,scaleY:n}=this.view;e?(this.cursor.style.left=e.left/t+"px",this.cursor.style.top=e.top/n+"px",this.cursor.style.height=e.height/n+"px"):this.cursor.style.left="-100000px"}}destroy(){this.cursor&&this.cursor.remove()}setDropPos(e){this.view.state.field(Gw)!=e&&this.view.dispatch({effects:e2e.of(e)})}},{eventObservers:{dragover(e){this.setDropPos(this.view.posAtCoords({x:e.clientX,y:e.clientY}))},dragleave(e){(e.target==this.view.contentDOM||!this.view.contentDOM.contains(e.relatedTarget))&&this.setDropPos(null)},dragend(){this.setDropPos(null)},drop(){this.setDropPos(null)}}});function CTt(){return[Gw,ETt]}function mJ(e,t,n,i,r){t.lastIndex=0;for(let s=e.iterRange(n,i),a=n,l;!s.next().done;a+=s.value.length)if(!s.lineBreak)for(;l=t.exec(s.value);)r(a+l.index,l)}function TTt(e,t){let n=e.visibleRanges;if(n.length==1&&n[0].from==e.viewport.from&&n[0].to==e.viewport.to)return n;let i=[];for(let{from:r,to:s}of n)r=Math.max(e.state.doc.lineAt(r).from,r-t),s=Math.min(e.state.doc.lineAt(s).to,s+t),i.length&&i[i.length-1].to>=r?i[i.length-1].to=s:i.push({from:r,to:s});return i}class ATt{constructor(t){const{regexp:n,decoration:i,decorate:r,boundary:s,maxLength:a=1e3}=t;if(!n.global)throw new RangeError("The regular expression given to MatchDecorator should have its 'g' flag set");if(this.regexp=n,r)this.addMatch=(l,c,u,d)=>r(d,u,u+l[0].length,l,c);else if(typeof i=="function")this.addMatch=(l,c,u,d)=>{let f=i(l,c,u);f&&d(u,u+l[0].length,f)};else if(i)this.addMatch=(l,c,u,d)=>d(u,u+l[0].length,i);else throw new RangeError("Either 'decorate' or 'decoration' should be provided to MatchDecorator");this.boundary=s,this.maxLength=a}createDeco(t){let n=new Th,i=n.add.bind(n);for(let{from:r,to:s}of TTt(t,this.maxLength))mJ(t.state.doc,this.regexp,r,s,(a,l)=>this.addMatch(l,t,a,i));return n.finish()}updateDeco(t,n){let i=1e9,r=-1;return t.docChanged&&t.changes.iterChanges((s,a,l,c)=>{c>=t.view.viewport.from&&l<=t.view.viewport.to&&(i=Math.min(l,i),r=Math.max(c,r))}),t.viewportMoved||r-i>1e3?this.createDeco(t.view):r>-1?this.updateRange(t.view,n.map(t.changes),i,r):n}updateRange(t,n,i,r){for(let s of t.visibleRanges){let a=Math.max(s.from,i),l=Math.min(s.to,r);if(l>=a){let c=t.state.doc.lineAt(a),u=c.toc.from;a--)if(this.boundary.test(c.text[a-1-c.from])){d=a;break}for(;lh.push(y.range(b,v));if(c==u)for(this.regexp.lastIndex=d-c.from;(m=this.regexp.exec(c.text))&&m.indexthis.addMatch(v,t,b,g));n=n.update({filterFrom:d,filterTo:f,filter:(b,v)=>bf,add:h})}}return n}}const K$=/x/.unicode!=null?"gu":"g",_Tt=new RegExp(`[\0-\b +--Ÿ­؜​‎‏\u2028\u2029‭‮⁦⁧⁩\uFEFF-]`,K$),NTt={0:"null",7:"bell",8:"backspace",10:"newline",11:"vertical tab",13:"carriage return",27:"escape",8203:"zero width space",8204:"zero width non-joiner",8205:"zero width joiner",8206:"left-to-right mark",8207:"right-to-left mark",8232:"line separator",8237:"left-to-right override",8238:"right-to-left override",8294:"left-to-right isolate",8295:"right-to-left isolate",8297:"pop directional isolate",8233:"paragraph separator",65279:"zero width no-break space",65532:"object replacement"};let v5=null;function jTt(){var e;if(v5==null&&typeof document<"u"&&document.body){let t=document.body.style;v5=((e=t.tabSize)!==null&&e!==void 0?e:t.MozTabSize)!=null}return v5||!1}const L2=Jt.define({combine(e){let t=nf(e,{render:null,specialChars:_Tt,addSpecialChars:null});return(t.replaceTabs=!jTt())&&(t.specialChars=new RegExp(" |"+t.specialChars.source,K$)),t.addSpecialChars&&(t.specialChars=new RegExp(t.specialChars.source+"|"+t.addSpecialChars.source,K$)),t}});function RTt(e={}){return[L2.of(e),ITt()]}let gJ=null;function ITt(){return gJ||(gJ=Ts.fromClass(class{constructor(e){this.view=e,this.decorations=xn.none,this.decorationCache=Object.create(null),this.decorator=this.makeDecorator(e.state.facet(L2)),this.decorations=this.decorator.createDeco(e)}makeDecorator(e){return new ATt({regexp:e.specialChars,decoration:(t,n,i)=>{let{doc:r}=n.state,s=cl(t[0],0);if(s==9){let a=r.lineAt(i),l=n.state.tabSize,c=Qu(a.text,l,i-a.from);return xn.replace({widget:new LTt((l-c%l)*this.view.defaultCharacterWidth/this.view.scaleX)})}return this.decorationCache[s]||(this.decorationCache[s]=xn.replace({widget:new MTt(e,s)}))},boundary:e.replaceTabs?void 0:/[^]/})}update(e){let t=e.state.facet(L2);e.startState.facet(L2)!=t?(this.decorator=this.makeDecorator(t),this.decorations=this.decorator.createDeco(e.view)):this.decorations=this.decorator.updateDeco(e,this.decorations)}},{decorations:e=>e.decorations}))}const PTt="•";function DTt(e){return e>=32?PTt:e==10?"␤":String.fromCharCode(9216+e)}class MTt extends Zu{constructor(t,n){super(),this.options=t,this.code=n}eq(t){return t.code==this.code}toDOM(t){let n=DTt(this.code),i=t.state.phrase("Control character")+" "+(NTt[this.code]||"0x"+this.code.toString(16)),r=this.options.render&&this.options.render(this.code,i,n);if(r)return r;let s=document.createElement("span");return s.textContent=n,s.title=i,s.setAttribute("aria-label",i),s.className="cm-specialChar",s}ignoreEvent(){return!1}}class LTt extends Zu{constructor(t){super(),this.width=t}eq(t){return t.width==this.width}toDOM(){let t=document.createElement("span");return t.textContent=" ",t.className="cm-tab",t.style.width=this.width+"px",t}ignoreEvent(){return!1}}function $Tt(){return BTt}const FTt=xn.line({class:"cm-activeLine"}),BTt=Ts.fromClass(class{constructor(e){this.decorations=this.getDeco(e)}update(e){(e.docChanged||e.selectionSet)&&(this.decorations=this.getDeco(e.view))}getDeco(e){let t=-1,n=[];for(let i of e.state.selection.ranges){let r=e.lineBlockAt(i.head);r.from>t&&(n.push(FTt.range(r.from)),t=r.from)}return xn.set(n)}},{decorations:e=>e.decorations});class UTt extends Zu{constructor(t){super(),this.content=t}toDOM(t){let n=document.createElement("span");return n.className="cm-placeholder",n.style.pointerEvents="none",n.appendChild(typeof this.content=="string"?document.createTextNode(this.content):typeof this.content=="function"?this.content(t):this.content.cloneNode(!0)),n.setAttribute("aria-hidden","true"),n}coordsAt(t){let n=t.firstChild?VO(t.firstChild):[];if(!n.length)return null;let i=window.getComputedStyle(t.parentNode),r=ok(n[0],i.direction!="rtl"),s=parseInt(i.lineHeight);return r.bottom-r.top>s*1.5?{left:r.left,right:r.right,top:r.top,bottom:r.top+s}:r}ignoreEvent(){return!1}}function QTt(e){let t=Ts.fromClass(class{constructor(n){this.view=n,this.placeholder=e?xn.set([xn.widget({widget:new UTt(e),side:1}).range(0)]):xn.none}get decorations(){return this.view.state.doc.length?xn.none:this.placeholder}},{decorations:n=>n.decorations});return typeof e=="string"?[t,Qt.contentAttributes.of({"aria-placeholder":e})]:t}const G$=2e3;function zTt(e,t,n){let i=Math.min(t.line,n.line),r=Math.max(t.line,n.line),s=[];if(t.off>G$||n.off>G$||t.col<0||n.col<0){let a=Math.min(t.off,n.off),l=Math.max(t.off,n.off);for(let c=i;c<=r;c++){let u=e.doc.line(c);u.length<=l&&s.push(rt.range(u.from+a,u.to+l))}}else{let a=Math.min(t.col,n.col),l=Math.max(t.col,n.col);for(let c=i;c<=r;c++){let u=e.doc.line(c),d=A$(u.text,a,e.tabSize,!0);if(d<0)s.push(rt.cursor(u.to));else{let f=A$(u.text,l,e.tabSize);s.push(rt.range(u.from+d,u.from+f))}}}return s}function VTt(e,t){let n=e.coordsAtPos(e.viewport.from);return n?Math.round(Math.abs((n.left-t)/e.defaultCharacterWidth)):-1}function bJ(e,t){let n=e.posAtCoords({x:t.clientX,y:t.clientY},!1),i=e.state.doc.lineAt(n),r=n-i.from,s=r>G$?-1:r==i.length?VTt(e,t.clientX):Qu(i.text,e.state.tabSize,n-i.from);return{line:i.number,col:s,off:r}}function HTt(e,t){let n=bJ(e,t),i=e.state.selection;return n?{update(r){if(r.docChanged){let s=r.changes.mapPos(r.startState.doc.line(n.line).from),a=r.state.doc.lineAt(s);n={line:a.number,col:n.col,off:Math.min(n.off,a.length)},i=i.map(r.changes)}},get(r,s,a){let l=bJ(e,r);if(!l)return i;let c=zTt(e.state,n,l);return c.length?a?rt.create(c.concat(i.ranges)):rt.create(c):i}}:null}function qTt(e){let t=n=>n.altKey&&n.button==0;return Qt.mouseSelectionStyle.of((n,i)=>t(i)?HTt(n,i):null)}const WTt={Alt:[18,e=>!!e.altKey],Control:[17,e=>!!e.ctrlKey],Shift:[16,e=>!!e.shiftKey],Meta:[91,e=>!!e.metaKey]},KTt={style:"cursor: crosshair"};function GTt(e={}){let[t,n]=WTt[e.key||"Alt"],i=Ts.fromClass(class{constructor(r){this.view=r,this.isDown=!1}set(r){this.isDown!=r&&(this.isDown=r,this.view.update([]))}},{eventObservers:{keydown(r){this.set(r.keyCode==t||n(r))},keyup(r){(r.keyCode==t||!n(r))&&this.set(!1)},mousemove(r){this.set(n(r))}}});return[i,Qt.contentAttributes.of(r=>{var s;return!((s=r.plugin(i))===null||s===void 0)&&s.isDown?KTt:null})]}const aA="-10000px";class t2e{constructor(t,n,i,r){this.facet=n,this.createTooltipView=i,this.removeTooltipView=r,this.input=t.state.facet(n),this.tooltips=this.input.filter(a=>a);let s=null;this.tooltipViews=this.tooltips.map(a=>s=i(a,s))}update(t,n){var i;let r=t.state.facet(this.facet),s=r.filter(c=>c);if(r===this.input){for(let c of this.tooltipViews)c.update&&c.update(t);return!1}let a=[],l=n?[]:null;for(let c=0;cn[u]=c),n.length=l.length),this.input=r,this.tooltips=s,this.tooltipViews=a,!0}}function XTt(e){let t=e.dom.ownerDocument.documentElement;return{top:0,left:0,bottom:t.clientHeight,right:t.clientWidth}}const x5=Jt.define({combine:e=>{var t,n,i;return{position:Zt.ios?"absolute":((t=e.find(r=>r.position))===null||t===void 0?void 0:t.position)||"fixed",parent:((n=e.find(r=>r.parent))===null||n===void 0?void 0:n.parent)||null,tooltipSpace:((i=e.find(r=>r.tooltipSpace))===null||i===void 0?void 0:i.tooltipSpace)||XTt}}}),yJ=new WeakMap,dQ=Ts.fromClass(class{constructor(e){this.view=e,this.above=[],this.inView=!0,this.madeAbsolute=!1,this.lastTransaction=0,this.measureTimeout=-1;let t=e.state.facet(x5);this.position=t.position,this.parent=t.parent,this.classes=e.themeClasses,this.createContainer(),this.measureReq={read:this.readMeasure.bind(this),write:this.writeMeasure.bind(this),key:this},this.resizeObserver=typeof ResizeObserver=="function"?new ResizeObserver(()=>this.measureSoon()):null,this.manager=new t2e(e,fQ,(n,i)=>this.createTooltip(n,i),n=>{this.resizeObserver&&this.resizeObserver.unobserve(n.dom),n.dom.remove()}),this.above=this.manager.tooltips.map(n=>!!n.above),this.intersectionObserver=typeof IntersectionObserver=="function"?new IntersectionObserver(n=>{Date.now()>this.lastTransaction-50&&n.length>0&&n[n.length-1].intersectionRatio<1&&this.measureSoon()},{threshold:[1]}):null,this.observeIntersection(),e.win.addEventListener("resize",this.measureSoon=this.measureSoon.bind(this)),this.maybeMeasure()}createContainer(){this.parent?(this.container=document.createElement("div"),this.container.style.position="relative",this.container.className=this.view.themeClasses,this.parent.appendChild(this.container)):this.container=this.view.dom}observeIntersection(){if(this.intersectionObserver){this.intersectionObserver.disconnect();for(let e of this.manager.tooltipViews)this.intersectionObserver.observe(e.dom)}}measureSoon(){this.measureTimeout<0&&(this.measureTimeout=setTimeout(()=>{this.measureTimeout=-1,this.maybeMeasure()},50))}update(e){e.transactions.length&&(this.lastTransaction=Date.now());let t=this.manager.update(e,this.above);t&&this.observeIntersection();let n=t||e.geometryChanged,i=e.state.facet(x5);if(i.position!=this.position&&!this.madeAbsolute){this.position=i.position;for(let r of this.manager.tooltipViews)r.dom.style.position=this.position;n=!0}if(i.parent!=this.parent){this.parent&&this.container.remove(),this.parent=i.parent,this.createContainer();for(let r of this.manager.tooltipViews)this.container.appendChild(r.dom);n=!0}else this.parent&&this.view.themeClasses!=this.classes&&(this.classes=this.container.className=this.view.themeClasses);n&&this.maybeMeasure()}createTooltip(e,t){let n=e.create(this.view),i=t?t.dom:null;if(n.dom.classList.add("cm-tooltip"),e.arrow&&!n.dom.querySelector(".cm-tooltip > .cm-tooltip-arrow")){let r=document.createElement("div");r.className="cm-tooltip-arrow",n.dom.appendChild(r)}return n.dom.style.position=this.position,n.dom.style.top=aA,n.dom.style.left="0px",this.container.insertBefore(n.dom,i),n.mount&&n.mount(this.view),this.resizeObserver&&this.resizeObserver.observe(n.dom),n}destroy(){var e,t,n;this.view.win.removeEventListener("resize",this.measureSoon);for(let i of this.manager.tooltipViews)i.dom.remove(),(e=i.destroy)===null||e===void 0||e.call(i);this.parent&&this.container.remove(),(t=this.resizeObserver)===null||t===void 0||t.disconnect(),(n=this.intersectionObserver)===null||n===void 0||n.disconnect(),clearTimeout(this.measureTimeout)}readMeasure(){let e=1,t=1,n=!1;if(this.position=="fixed"&&this.manager.tooltipViews.length){let{dom:s}=this.manager.tooltipViews[0];if(Zt.safari){let a=s.getBoundingClientRect();n=Math.abs(a.top+1e4)>1||Math.abs(a.left)>1}else n=!!s.offsetParent&&s.offsetParent!=this.container.ownerDocument.body}if(n||this.position=="absolute")if(this.parent){let s=this.parent.getBoundingClientRect();s.width&&s.height&&(e=s.width/this.parent.offsetWidth,t=s.height/this.parent.offsetHeight)}else({scaleX:e,scaleY:t}=this.view.viewState);let i=this.view.scrollDOM.getBoundingClientRect(),r=oQ(this.view);return{visible:{left:i.left+r.left,top:i.top+r.top,right:i.right-r.right,bottom:i.bottom-r.bottom},parent:this.parent?this.container.getBoundingClientRect():this.view.dom.getBoundingClientRect(),pos:this.manager.tooltips.map((s,a)=>{let l=this.manager.tooltipViews[a];return l.getCoords?l.getCoords(s.pos):this.view.coordsAtPos(s.pos)}),size:this.manager.tooltipViews.map(({dom:s})=>s.getBoundingClientRect()),space:this.view.state.facet(x5).tooltipSpace(this.view),scaleX:e,scaleY:t,makeAbsolute:n}}writeMeasure(e){var t;if(e.makeAbsolute){this.madeAbsolute=!0,this.position="absolute";for(let l of this.manager.tooltipViews)l.dom.style.position="absolute"}let{visible:n,space:i,scaleX:r,scaleY:s}=e,a=[];for(let l=0;l=Math.min(n.bottom,i.bottom)||f.rightMath.min(n.right,i.right)+.1)){d.style.top=aA;continue}let m=c.arrow?u.dom.querySelector(".cm-tooltip-arrow"):null,g=m?7:0,b=h.right-h.left,v=(t=yJ.get(u))!==null&&t!==void 0?t:h.bottom-h.top,y=u.offset||ZTt,x=this.view.textDirection==Pr.LTR,O=h.width>i.right-i.left?x?i.left:i.right-h.width:x?Math.max(i.left,Math.min(f.left-(m?14:0)+y.x,i.right-b)):Math.min(Math.max(i.left,f.left-b+(m?14:0)-y.x),i.right-b),w=this.above[l];!c.strictSide&&(w?f.top-v-g-y.yi.bottom)&&w==i.bottom-f.bottom>f.top-i.top&&(w=this.above[l]=!w);let k=(w?f.top-i.top:i.bottom-f.bottom)-g;if(kO&&C.topS&&(S=w?C.top-v-2-g:C.bottom+g+2);if(this.position=="absolute"?(d.style.top=(S-e.parent.top)/s+"px",vJ(d,(O-e.parent.left)/r)):(d.style.top=S/s+"px",vJ(d,O/r)),m){let C=f.left+(x?y.x:-y.x)-(O+14-7);m.style.left=C/r+"px"}u.overlap!==!0&&a.push({left:O,top:S,right:E,bottom:S+v}),d.classList.toggle("cm-tooltip-above",w),d.classList.toggle("cm-tooltip-below",!w),u.positioned&&u.positioned(e.space)}}maybeMeasure(){if(this.manager.tooltips.length&&(this.view.inView&&this.view.requestMeasure(this.measureReq),this.inView!=this.view.inView&&(this.inView=this.view.inView,!this.inView)))for(let e of this.manager.tooltipViews)e.dom.style.top=aA}},{eventObservers:{scroll(){this.maybeMeasure()}}});function vJ(e,t){let n=parseInt(e.style.left,10);(isNaN(n)||Math.abs(t-n)>1)&&(e.style.left=t+"px")}const YTt=Qt.baseTheme({".cm-tooltip":{zIndex:500,boxSizing:"border-box"},"&light .cm-tooltip":{border:"1px solid #bbb",backgroundColor:"#f5f5f5"},"&light .cm-tooltip-section:not(:first-child)":{borderTop:"1px solid #bbb"},"&dark .cm-tooltip":{backgroundColor:"#333338",color:"white"},".cm-tooltip-arrow":{height:"7px",width:`${7*2}px`,position:"absolute",zIndex:-1,overflow:"hidden","&:before, &:after":{content:"''",position:"absolute",width:0,height:0,borderLeft:"7px solid transparent",borderRight:"7px solid transparent"},".cm-tooltip-above &":{bottom:"-7px","&:before":{borderTop:"7px solid #bbb"},"&:after":{borderTop:"7px solid #f5f5f5",bottom:"1px"}},".cm-tooltip-below &":{top:"-7px","&:before":{borderBottom:"7px solid #bbb"},"&:after":{borderBottom:"7px solid #f5f5f5",top:"1px"}}},"&dark .cm-tooltip .cm-tooltip-arrow":{"&:before":{borderTopColor:"#333338",borderBottomColor:"#333338"},"&:after":{borderTopColor:"transparent",borderBottomColor:"transparent"}}}),ZTt={x:0,y:0},fQ=Jt.define({enables:[dQ,YTt]}),VN=Jt.define({combine:e=>e.reduce((t,n)=>t.concat(n),[])});class jI{static create(t){return new jI(t)}constructor(t){this.view=t,this.mounted=!1,this.dom=document.createElement("div"),this.dom.classList.add("cm-tooltip-hover"),this.manager=new t2e(t,VN,(n,i)=>this.createHostedView(n,i),n=>n.dom.remove())}createHostedView(t,n){let i=t.create(this.view);return i.dom.classList.add("cm-tooltip-section"),this.dom.insertBefore(i.dom,n?n.dom.nextSibling:this.dom.firstChild),this.mounted&&i.mount&&i.mount(this.view),i}mount(t){for(let n of this.manager.tooltipViews)n.mount&&n.mount(t);this.mounted=!0}positioned(t){for(let n of this.manager.tooltipViews)n.positioned&&n.positioned(t)}update(t){this.manager.update(t)}destroy(){var t;for(let n of this.manager.tooltipViews)(t=n.destroy)===null||t===void 0||t.call(n)}passProp(t){let n;for(let i of this.manager.tooltipViews){let r=i[t];if(r!==void 0){if(n===void 0)n=r;else if(n!==r)return}}return n}get offset(){return this.passProp("offset")}get getCoords(){return this.passProp("getCoords")}get overlap(){return this.passProp("overlap")}get resize(){return this.passProp("resize")}}const JTt=fQ.compute([VN],e=>{let t=e.facet(VN);return t.length===0?null:{pos:Math.min(...t.map(n=>n.pos)),end:Math.max(...t.map(n=>{var i;return(i=n.end)!==null&&i!==void 0?i:n.pos})),create:jI.create,above:t[0].above,arrow:t.some(n=>n.arrow)}}),n2e=Jt.define();class eAt{constructor(t,n,i,r,s,a){this.view=t,this.source=n,this.field=i,this.locked=r,this.setHover=s,this.hoverTime=a,this.hoverTimeout=-1,this.restartTimeout=-1,this.pending=null,this.lastMove={x:0,y:0,target:t.dom,time:0},this.checkHover=this.checkHover.bind(this),t.dom.addEventListener("mouseleave",this.mouseleave=this.mouseleave.bind(this)),t.dom.addEventListener("mousemove",this.mousemove=this.mousemove.bind(this))}update(t){this.pending&&(this.pending=null,clearTimeout(this.restartTimeout),this.restartTimeout=setTimeout(()=>this.startHover(),20))}get active(){return this.view.state.field(this.field)}checkHover(){if(this.hoverTimeout=-1,this.active.length)return;let t=Date.now()-this.lastMove.time;ta.bottom||n.xa.right+t.defaultCharacterWidth)return;let l=t.bidiSpans(t.state.doc.lineAt(r)).find(u=>u.from<=r&&u.to>=r),c=l&&l.dir==Pr.RTL?-1:1;s=n.x{if(l&&!(Array.isArray(l)&&!l.length)){let c=Array.isArray(l)?l:[l];r&&this.locked.set(c,r),t.dispatch({effects:this.setHover.of(c)})}};if(s&&"then"in s){let l=this.pending={pos:n};s.then(c=>{this.pending==l&&(this.pending=null,a(c))},c=>ml(t.state,c,"hover tooltip"))}else a(s)}get tooltip(){let t=this.view.plugin(dQ),n=t?t.manager.tooltips.findIndex(i=>i.create==jI.create):-1;return n>-1?t.manager.tooltipViews[n]:null}mousemove(t){var n,i;this.lastMove={x:t.clientX,y:t.clientY,target:t.target,time:Date.now()},this.hoverTimeout<0&&(this.hoverTimeout=setTimeout(this.checkHover,this.hoverTime));let{active:r,tooltip:s}=this;if(r.length&&!this.locked.has(r)&&s&&!tAt(s.dom,t)||this.pending){let{pos:a}=r[0]||this.pending,l=(i=(n=r[0])===null||n===void 0?void 0:n.end)!==null&&i!==void 0?i:a;(a==l?this.view.posAtCoords(this.lastMove)!=a:!nAt(this.view,a,l,t.clientX,t.clientY))&&(this.view.dispatch({effects:this.setHover.of([])}),this.pending=null)}}mouseleave(t){clearTimeout(this.hoverTimeout),this.hoverTimeout=-1;let{active:n}=this;if(n.length&&!this.locked.has(n)){let{tooltip:i}=this;i&&i.dom.contains(t.relatedTarget)?this.watchTooltipLeave(i.dom):this.view.dispatch({effects:this.setHover.of([])})}}watchTooltipLeave(t){let n=i=>{t.removeEventListener("mouseleave",n);let{active:r}=this;r.length&&!this.locked.has(r)&&!this.view.dom.contains(i.relatedTarget)&&this.view.dispatch({effects:this.setHover.of([])})};t.addEventListener("mouseleave",n)}destroy(){clearTimeout(this.hoverTimeout),clearTimeout(this.restartTimeout),this.view.dom.removeEventListener("mouseleave",this.mouseleave),this.view.dom.removeEventListener("mousemove",this.mousemove)}}const oA=4;function tAt(e,t){let{left:n,right:i,top:r,bottom:s}=e.getBoundingClientRect(),a;if(a=e.querySelector(".cm-tooltip-arrow")){let l=a.getBoundingClientRect();r=Math.min(l.top,r),s=Math.max(l.bottom,s)}return t.clientX>=n-oA&&t.clientX<=i+oA&&t.clientY>=r-oA&&t.clientY<=s+oA}function nAt(e,t,n,i,r,s){let a=e.scrollDOM.getBoundingClientRect(),l=e.documentTop+e.documentPadding.top+e.contentHeight;if(a.left>i||a.rightr||Math.min(a.bottom,l)=t&&c<=n}function iAt(e,t={}){let n=Qn.define(),i=new WeakMap,r=so.define({create(){return[]},update(a,l){let c=i.get(a);if(a.length&&(t.hideOnChange&&(l.docChanged||l.selection)?a=[]:c&&c(l)?a=[]:t.hideOn&&(a=a.filter(u=>!t.hideOn(l,u)))),l.docChanged&&a.length){let u=[];for(let d of a){let f=l.changes.mapPos(d.pos,-1,to.TrackDel);if(f!=null){let h=Object.assign(Object.create(null),d);h.pos=f,h.end!=null&&(h.end=l.changes.mapPos(h.end)),u.push(h)}}a=u}for(let u of l.effects)u.is(n)&&(a=u.value,c=void 0),(u.is(sAt)&&!u.value||u.value==r)&&(a=[]);return a.length&&c&&i.set(a,c),a},provide:a=>VN.from(a)});const s=Ts.define(a=>new eAt(a,e,r,i,n,t.hoverTime||300));return{active:r,extension:[r,s,n2e.of(s),JTt]}}function rAt(e,t,n,i={}){var r;let s=e.state.facet(n2e).map(a=>e.plugin(a)).filter(a=>!!a);if(i.tooltip&&i.tooltip.active){let a=s.find(l=>l.field==i.tooltip.active);a&&(s=[a])}for(let a of s)a.activateHover(e,t,n,(r=i.until)!==null&&r!==void 0?r:()=>!1)}function i2e(e,t){let n=e.plugin(dQ);if(!n)return null;let i=n.manager.tooltips.indexOf(t);return i<0?null:n.manager.tooltipViews[i]}const sAt=Qn.define(),xJ=Jt.define({combine(e){let t,n;for(let i of e)t=t||i.topContainer,n=n||i.bottomContainer;return{topContainer:t,bottomContainer:n}}});function hQ(e,t){let n=e.plugin(r2e),i=n?n.specs.indexOf(t):-1;return i>-1?n.panels[i]:null}const r2e=Ts.fromClass(class{constructor(e){this.input=e.state.facet(ck),this.specs=this.input.filter(n=>n),this.panels=this.specs.map(n=>n(e));let t=e.state.facet(xJ);this.top=new lA(e,!0,t.topContainer),this.bottom=new lA(e,!1,t.bottomContainer),this.top.sync(this.panels.filter(n=>n.top)),this.bottom.sync(this.panels.filter(n=>!n.top));for(let n of this.panels)n.dom.classList.add("cm-panel"),n.mount&&n.mount()}update(e){let t=e.state.facet(xJ);this.top.container!=t.topContainer&&(this.top.sync([]),this.top=new lA(e.view,!0,t.topContainer)),this.bottom.container!=t.bottomContainer&&(this.bottom.sync([]),this.bottom=new lA(e.view,!1,t.bottomContainer)),this.top.syncClasses(),this.bottom.syncClasses();let n=e.state.facet(ck);if(n!=this.input){let i=n.filter(c=>c),r=[],s=[],a=[],l=[];for(let c of i){let u=this.specs.indexOf(c),d;u<0?(d=c(e.view),l.push(d)):(d=this.panels[u],d.update&&d.update(e)),r.push(d),(d.top?s:a).push(d)}this.specs=i,this.panels=r,this.top.sync(s),this.bottom.sync(a);for(let c of l)c.dom.classList.add("cm-panel"),c.mount&&c.mount()}else for(let i of this.panels)i.update&&i.update(e)}destroy(){this.top.sync([]),this.bottom.sync([])}},{provide:e=>Qt.scrollMargins.of(t=>{let n=t.plugin(e);return n&&{top:n.top.scrollMargin(),bottom:n.bottom.scrollMargin()}})});class lA{constructor(t,n,i){this.view=t,this.top=n,this.container=i,this.dom=void 0,this.classes="",this.panels=[],this.syncClasses()}sync(t){for(let n of this.panels)n.destroy&&t.indexOf(n)<0&&n.destroy();this.panels=t,this.syncDOM()}syncDOM(){if(this.panels.length==0){this.dom&&(this.dom.remove(),this.dom=void 0);return}if(!this.dom){this.dom=document.createElement("div"),this.dom.className=this.top?"cm-panels cm-panels-top":"cm-panels cm-panels-bottom",this.dom.style[this.top?"top":"bottom"]="0";let n=this.container||this.view.dom;n.insertBefore(this.dom,this.top?n.firstChild:null)}let t=this.dom.firstChild;for(let n of this.panels)if(n.dom.parentNode==this.dom){for(;t!=n.dom;)t=wJ(t);t=t.nextSibling}else this.dom.insertBefore(n.dom,t);for(;t;)t=wJ(t)}scrollMargin(){return!this.dom||this.container?0:Math.max(0,this.top?this.dom.getBoundingClientRect().bottom-Math.max(0,this.view.scrollDOM.getBoundingClientRect().top):Math.min(innerHeight,this.view.scrollDOM.getBoundingClientRect().bottom)-this.dom.getBoundingClientRect().top)}syncClasses(){if(!(!this.container||this.classes==this.view.themeClasses)){for(let t of this.classes.split(" "))t&&this.container.classList.remove(t);for(let t of(this.classes=this.view.themeClasses).split(" "))t&&this.container.classList.add(t)}}}function wJ(e){let t=e.nextSibling;return e.remove(),t}const ck=Jt.define({enables:r2e});function aAt(e,t){let n,i=new Promise(a=>n=a),r=a=>oAt(a,t,n);e.state.field(w5,!1)?e.dispatch({effects:s2e.of(r)}):e.dispatch({effects:Qn.appendConfig.of(w5.init(()=>[r]))});let s=a2e.of(r);return{close:s,result:i.then(a=>((e.win.queueMicrotask||(c=>e.win.setTimeout(c,10)))(()=>{e.state.field(w5).indexOf(r)>-1&&e.dispatch({effects:s})}),a))}}const w5=so.define({create(){return[]},update(e,t){for(let n of t.effects)n.is(s2e)?e=[n.value].concat(e):n.is(a2e)&&(e=e.filter(i=>i!=n.value));return e},provide:e=>ck.computeN([e],t=>t.field(e))}),s2e=Qn.define(),a2e=Qn.define();function oAt(e,t,n){let i=t.content?t.content(e,()=>a(null)):null;if(!i){if(i=Cr("form"),t.input){let l=Cr("input",t.input);/^(text|password|number|email|tel|url)$/.test(l.type)&&l.classList.add("cm-textfield"),l.name||(l.name="input"),i.appendChild(Cr("label",(t.label||"")+": ",l))}else i.appendChild(document.createTextNode(t.label||""));i.appendChild(document.createTextNode(" ")),i.appendChild(Cr("button",{class:"cm-button",type:"submit"},t.submitLabel||"OK"))}let r=i.nodeName=="FORM"?[i]:i.querySelectorAll("form");for(let l=0;l{u.keyCode==27?(u.preventDefault(),a(null)):u.keyCode==13&&(u.preventDefault(),a(c))}),c.addEventListener("submit",u=>{u.preventDefault(),a(c)})}let s=Cr("div",i,Cr("button",{onclick:()=>a(null),"aria-label":e.state.phrase("close"),class:"cm-dialog-close",type:"button"},["×"]));t.class&&(s.className=t.class),s.classList.add("cm-dialog");function a(l){s.contains(s.ownerDocument.activeElement)&&e.focus(),n(l)}return{dom:s,top:t.top,mount:()=>{if(t.focus){let l;typeof t.focus=="string"?l=i.querySelector(t.focus):l=i.querySelector("input")||i.querySelector("button"),l&&"select"in l?l.select():l&&"focus"in l&&l.focus()}}}}class _h extends _m{compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}eq(t){return!1}destroy(t){}}_h.prototype.elementClass="";_h.prototype.toDOM=void 0;_h.prototype.mapMode=to.TrackBefore;_h.prototype.startSide=_h.prototype.endSide=-1;_h.prototype.point=!0;const $2=Jt.define(),lAt=Jt.define(),cAt={class:"",renderEmptyElements:!1,elementStyle:"",markers:()=>Si.empty,lineMarker:()=>null,widgetMarker:()=>null,lineMarkerChange:null,initialSpacer:null,updateSpacer:null,domEventHandlers:{},side:"before"},WO=Jt.define();function uAt(e){return[o2e(),WO.of({...cAt,...e})]}const OJ=Jt.define({combine:e=>e.some(t=>t)});function o2e(e){return[dAt]}const dAt=Ts.fromClass(class{constructor(e){this.view=e,this.domAfter=null,this.prevViewport=e.viewport,this.dom=document.createElement("div"),this.dom.className="cm-gutters cm-gutters-before",this.dom.setAttribute("aria-hidden","true"),this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.gutters=e.state.facet(WO).map(t=>new kJ(e,t)),this.fixed=!e.state.facet(OJ);for(let t of this.gutters)t.config.side=="after"?this.getDOMAfter().appendChild(t.dom):this.dom.appendChild(t.dom);this.fixed&&(this.dom.style.position="sticky"),this.syncGutters(!1),e.scrollDOM.insertBefore(this.dom,e.contentDOM)}getDOMAfter(){return this.domAfter||(this.domAfter=document.createElement("div"),this.domAfter.className="cm-gutters cm-gutters-after",this.domAfter.setAttribute("aria-hidden","true"),this.domAfter.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.domAfter.style.position=this.fixed?"sticky":"",this.view.scrollDOM.appendChild(this.domAfter)),this.domAfter}update(e){if(this.updateGutters(e)){let t=this.prevViewport,n=e.view.viewport,i=Math.min(t.to,n.to)-Math.max(t.from,n.from);this.syncGutters(i<(n.to-n.from)*.8)}if(e.geometryChanged){let t=this.view.contentHeight/this.view.scaleY+"px";this.dom.style.minHeight=t,this.domAfter&&(this.domAfter.style.minHeight=t)}this.view.state.facet(OJ)!=!this.fixed&&(this.fixed=!this.fixed,this.dom.style.position=this.fixed?"sticky":"",this.domAfter&&(this.domAfter.style.position=this.fixed?"sticky":"")),this.prevViewport=e.view.viewport}syncGutters(e){let t=this.dom.nextSibling;e&&(this.dom.remove(),this.domAfter&&this.domAfter.remove());let n=Si.iter(this.view.state.facet($2),this.view.viewport.from),i=[],r=this.gutters.map(s=>new fAt(s,this.view.viewport,-this.view.documentPadding.top));for(let s of this.view.viewportLineBlocks)if(i.length&&(i=[]),Array.isArray(s.type)){let a=!0;for(let l of s.type)if(l.type==ro.Text&&a){X$(n,i,l.from);for(let c of r)c.line(this.view,l,i);a=!1}else if(l.widget)for(let c of r)c.widget(this.view,l)}else if(s.type==ro.Text){X$(n,i,s.from);for(let a of r)a.line(this.view,s,i)}else if(s.widget)for(let a of r)a.widget(this.view,s);for(let s of r)s.finish();e&&(this.view.scrollDOM.insertBefore(this.dom,t),this.domAfter&&this.view.scrollDOM.appendChild(this.domAfter))}updateGutters(e){let t=e.startState.facet(WO),n=e.state.facet(WO),i=e.docChanged||e.heightChanged||e.viewportChanged||!Si.eq(e.startState.facet($2),e.state.facet($2),e.view.viewport.from,e.view.viewport.to);if(t==n)for(let r of this.gutters)r.update(e)&&(i=!0);else{i=!0;let r=[];for(let s of n){let a=t.indexOf(s);a<0?r.push(new kJ(this.view,s)):(this.gutters[a].update(e),r.push(this.gutters[a]))}for(let s of this.gutters)s.dom.remove(),r.indexOf(s)<0&&s.destroy();for(let s of r)s.config.side=="after"?this.getDOMAfter().appendChild(s.dom):this.dom.appendChild(s.dom);this.gutters=r}return i}destroy(){for(let e of this.gutters)e.destroy();this.dom.remove(),this.domAfter&&this.domAfter.remove()}},{provide:e=>Qt.scrollMargins.of(t=>{let n=t.plugin(e);if(!n||n.gutters.length==0||!n.fixed)return null;let i=n.dom.offsetWidth*t.scaleX,r=n.domAfter?n.domAfter.offsetWidth*t.scaleX:0;return t.textDirection==Pr.LTR?{left:i,right:r}:{right:i,left:r}})});function SJ(e){return Array.isArray(e)?e:[e]}function X$(e,t,n){for(;e.value&&e.from<=n;)e.from==n&&t.push(e.value),e.next()}class fAt{constructor(t,n,i){this.gutter=t,this.height=i,this.i=0,this.cursor=Si.iter(t.markers,n.from)}addElement(t,n,i){let{gutter:r}=this,s=(n.top-this.height)/t.scaleY,a=n.height/t.scaleY;if(this.i==r.elements.length){let l=new l2e(t,a,s,i);r.elements.push(l),r.dom.appendChild(l.dom)}else r.elements[this.i].update(t,a,s,i);this.height=n.bottom,this.i++}line(t,n,i){let r=[];X$(this.cursor,r,n.from),i.length&&(r=r.concat(i));let s=this.gutter.config.lineMarker(t,n,r);s&&r.unshift(s);let a=this.gutter;r.length==0&&!a.config.renderEmptyElements||this.addElement(t,n,r)}widget(t,n){let i=this.gutter.config.widgetMarker(t,n.widget,n),r=i?[i]:null;for(let s of t.state.facet(lAt)){let a=s(t,n.widget,n);a&&(r||(r=[])).push(a)}r&&this.addElement(t,n,r)}finish(){let t=this.gutter;for(;t.elements.length>this.i;){let n=t.elements.pop();t.dom.removeChild(n.dom),n.destroy()}}}class kJ{constructor(t,n){this.view=t,this.config=n,this.elements=[],this.spacer=null,this.dom=document.createElement("div"),this.dom.className="cm-gutter"+(this.config.class?" "+this.config.class:"");for(let i in n.domEventHandlers)this.dom.addEventListener(i,r=>{let s=r.target,a;if(s!=this.dom&&this.dom.contains(s)){for(;s.parentNode!=this.dom;)s=s.parentNode;let c=s.getBoundingClientRect();a=(c.top+c.bottom)/2}else a=r.clientY;let l=t.lineBlockAtHeight(a-t.documentTop);n.domEventHandlers[i](t,l,r)&&r.preventDefault()});this.markers=SJ(n.markers(t)),n.initialSpacer&&(this.spacer=new l2e(t,0,0,[n.initialSpacer(t)]),this.dom.appendChild(this.spacer.dom),this.spacer.dom.style.cssText+="visibility: hidden; pointer-events: none")}update(t){let n=this.markers;if(this.markers=SJ(this.config.markers(t.view)),this.spacer&&this.config.updateSpacer){let r=this.config.updateSpacer(this.spacer.markers[0],t);r!=this.spacer.markers[0]&&this.spacer.update(t.view,0,0,[r])}let i=t.view.viewport;return!Si.eq(this.markers,n,i.from,i.to)||(this.config.lineMarkerChange?this.config.lineMarkerChange(t):!1)}destroy(){for(let t of this.elements)t.destroy()}}class l2e{constructor(t,n,i,r){this.height=-1,this.above=0,this.markers=[],this.dom=document.createElement("div"),this.dom.className="cm-gutterElement",this.update(t,n,i,r)}update(t,n,i,r){this.height!=n&&(this.height=n,this.dom.style.height=n+"px"),this.above!=i&&(this.dom.style.marginTop=(this.above=i)?i+"px":""),hAt(this.markers,r)||this.setMarkers(t,r)}setMarkers(t,n){let i="cm-gutterElement",r=this.dom.firstChild;for(let s=0,a=0;;){let l=a,c=ss(l,c,u)||a(l,c,u):a}return i}})}});class O5 extends _h{constructor(t){super(),this.number=t}eq(t){return this.number==t.number}toDOM(){return document.createTextNode(this.number)}}function S5(e,t){return e.state.facet(Qy).formatNumber(t,e.state)}const gAt=WO.compute([Qy],e=>({class:"cm-lineNumbers",renderEmptyElements:!1,markers(t){return t.state.facet(pAt)},lineMarker(t,n,i){return i.some(r=>r.toDOM)?null:new O5(S5(t,t.state.doc.lineAt(n.from).number))},widgetMarker:(t,n,i)=>{for(let r of t.state.facet(mAt)){let s=r(t,n,i);if(s)return s}return null},lineMarkerChange:t=>t.startState.facet(Qy)!=t.state.facet(Qy),initialSpacer(t){return new O5(S5(t,EJ(t.state.doc.lines)))},updateSpacer(t,n){let i=S5(n.view,EJ(n.view.state.doc.lines));return i==t.number?t:new O5(i)},domEventHandlers:e.facet(Qy).domEventHandlers,side:"before"}));function c2e(e={}){return[Qy.of(e),o2e(),gAt]}function EJ(e){let t=9;for(;t{let t=[],n=-1;for(let i of e.selection.ranges){let r=e.doc.lineAt(i.head).from;r>n&&(n=r,t.push(bAt.range(r)))}return Si.of(t)});function vAt(){return yAt}let xAt=0,bd=class Y${constructor(t,n,i,r){this.name=t,this.set=n,this.base=i,this.modified=r,this.id=xAt++}toString(){let{name:t}=this;for(let n of this.modified)n.name&&(t=`${n.name}(${t})`);return t}static define(t,n){let i=typeof t=="string"?t:"?";if(t instanceof Y$&&(n=t),n!=null&&n.base)throw new Error("Can not derive from a modified tag");let r=new Y$(i,[],null,[]);if(r.set.push(r),n)for(let s of n.set)r.set.push(s);return r}static defineModifier(t){let n=new HN(t);return i=>i.modified.indexOf(n)>-1?i:HN.get(i.base||i,i.modified.concat(n).sort((r,s)=>r.id-s.id))}},wAt=0;class HN{constructor(t){this.name=t,this.instances=[],this.id=wAt++}static get(t,n){if(!n.length)return t;let i=n[0].instances.find(l=>l.base==t&&OAt(n,l.modified));if(i)return i;let r=[],s=new bd(t.name,r,t,n);for(let l of n)l.instances.push(s);let a=SAt(n);for(let l of t.set)if(!l.modified.length)for(let c of a)r.push(HN.get(l,c));return s}}function OAt(e,t){return e.length==t.length&&e.every((n,i)=>n==t[i])}function SAt(e){let t=[[]];for(let n=0;ni.length-n.length)}function zh(e){let t=Object.create(null);for(let n in e){let i=e[n];Array.isArray(i)||(i=[i]);for(let r of n.split(" "))if(r){let s=[],a=2,l=r;for(let f=0;;){if(l=="..."&&f>0&&f+3==r.length){a=1;break}let h=/^"(?:[^"\\]|\\.)*?"|[^\/!]+/.exec(l);if(!h)throw new RangeError("Invalid path: "+r);if(s.push(h[0]=="*"?"":h[0][0]=='"'?JSON.parse(h[0]):h[0]),f+=h[0].length,f==r.length)break;let m=r[f++];if(f==r.length&&m=="!"){a=0;break}if(m!="/")throw new RangeError("Invalid path: "+r);l=r.slice(f)}let c=s.length-1,u=s[c];if(!u)throw new RangeError("Invalid path: "+r);let d=new uk(i,a,c>0?s.slice(0,c):null);t[u]=d.sort(t[u])}}return u2e.add(t)}const u2e=new Un({combine(e,t){let n,i,r;for(;e||t;){if(!e||t&&e.depth>=t.depth?(r=t,t=t.next):(r=e,e=e.next),n&&n.mode==r.mode&&!r.context&&!n.context)continue;let s=new uk(r.tags,r.mode,r.context);n?n.next=s:i=s,n=s}return i}});let uk=class{constructor(t,n,i,r){this.tags=t,this.mode=n,this.context=i,this.next=r}get opaque(){return this.mode==0}get inherit(){return this.mode==1}sort(t){return!t||t.depth{let a=r;for(let l of s)for(let c of l.set){let u=n[c.id];if(u){a=a?a+" "+u:u;break}}return a},scope:i}}function kAt(e,t){let n=null;for(let i of e){let r=i.style(t);r&&(n=n?n+" "+r:r)}return n}function EAt(e,t,n,i=0,r=e.length){let s=new CAt(i,Array.isArray(t)?t:[t],n);s.highlightRange(e.cursor(),i,r,"",s.highlighters),s.flush(r)}class CAt{constructor(t,n,i){this.at=t,this.highlighters=n,this.span=i,this.class=""}startSpan(t,n){n!=this.class&&(this.flush(t),t>this.at&&(this.at=t),this.class=n)}flush(t){t>this.at&&this.class&&this.span(this.at,t,this.class)}highlightRange(t,n,i,r,s){let{type:a,from:l,to:c}=t;if(l>=i||c<=n)return;a.isTop&&(s=this.highlighters.filter(m=>!m.scope||m.scope(a)));let u=r,d=TAt(t)||uk.empty,f=kAt(s,d.tags);if(f&&(u&&(u+=" "),u+=f,d.mode==1&&(r+=(r?" ":"")+f)),this.startSpan(Math.max(n,l),u),d.opaque)return;let h=t.tree&&t.tree.prop(Un.mounted);if(h&&h.overlay){let m=t.node.enter(h.overlay[0].from+l,1),g=this.highlighters.filter(v=>!v.scope||v.scope(h.tree.type)),b=t.firstChild();for(let v=0,y=l;;v++){let x=v=O||!t.nextSibling())););if(!x||O>i)break;y=x.to+l,y>n&&(this.highlightRange(m.cursor(),Math.max(n,x.from+l),Math.min(i,y),"",g),this.startSpan(Math.min(i,y),u))}b&&t.parent()}else if(t.firstChild()){h&&(r="");do if(!(t.to<=n)){if(t.from>=i)break;this.highlightRange(t,n,i,r,s),this.startSpan(Math.min(i,t.to),u)}while(t.nextSibling());t.parent()}}}function TAt(e){let t=e.type.prop(u2e);for(;t&&t.context&&!e.matchContext(t.context);)t=t.next;return t||null}const Vt=bd.define,cA=Vt(),Tp=Vt(),CJ=Vt(Tp),TJ=Vt(Tp),Ap=Vt(),uA=Vt(Ap),k5=Vt(Ap),hd=Vt(),dg=Vt(hd),cd=Vt(),ud=Vt(),Z$=Vt(),iw=Vt(Z$),dA=Vt(),ne={comment:cA,lineComment:Vt(cA),blockComment:Vt(cA),docComment:Vt(cA),name:Tp,variableName:Vt(Tp),typeName:CJ,tagName:Vt(CJ),propertyName:TJ,attributeName:Vt(TJ),className:Vt(Tp),labelName:Vt(Tp),namespace:Vt(Tp),macroName:Vt(Tp),literal:Ap,string:uA,docString:Vt(uA),character:Vt(uA),attributeValue:Vt(uA),number:k5,integer:Vt(k5),float:Vt(k5),bool:Vt(Ap),regexp:Vt(Ap),escape:Vt(Ap),color:Vt(Ap),url:Vt(Ap),keyword:cd,self:Vt(cd),null:Vt(cd),atom:Vt(cd),unit:Vt(cd),modifier:Vt(cd),operatorKeyword:Vt(cd),controlKeyword:Vt(cd),definitionKeyword:Vt(cd),moduleKeyword:Vt(cd),operator:ud,derefOperator:Vt(ud),arithmeticOperator:Vt(ud),logicOperator:Vt(ud),bitwiseOperator:Vt(ud),compareOperator:Vt(ud),updateOperator:Vt(ud),definitionOperator:Vt(ud),typeOperator:Vt(ud),controlOperator:Vt(ud),punctuation:Z$,separator:Vt(Z$),bracket:iw,angleBracket:Vt(iw),squareBracket:Vt(iw),paren:Vt(iw),brace:Vt(iw),content:hd,heading:dg,heading1:Vt(dg),heading2:Vt(dg),heading3:Vt(dg),heading4:Vt(dg),heading5:Vt(dg),heading6:Vt(dg),contentSeparator:Vt(hd),list:Vt(hd),quote:Vt(hd),emphasis:Vt(hd),strong:Vt(hd),link:Vt(hd),monospace:Vt(hd),strikethrough:Vt(hd),inserted:Vt(),deleted:Vt(),changed:Vt(),invalid:Vt(),meta:dA,documentMeta:Vt(dA),annotation:Vt(dA),processingInstruction:Vt(dA),definition:bd.defineModifier("definition"),constant:bd.defineModifier("constant"),function:bd.defineModifier("function"),standard:bd.defineModifier("standard"),local:bd.defineModifier("local"),special:bd.defineModifier("special")};for(let e in ne){let t=ne[e];t instanceof bd&&(t.name=e)}d2e([{tag:ne.link,class:"tok-link"},{tag:ne.heading,class:"tok-heading"},{tag:ne.emphasis,class:"tok-emphasis"},{tag:ne.strong,class:"tok-strong"},{tag:ne.keyword,class:"tok-keyword"},{tag:ne.atom,class:"tok-atom"},{tag:ne.bool,class:"tok-bool"},{tag:ne.url,class:"tok-url"},{tag:ne.labelName,class:"tok-labelName"},{tag:ne.inserted,class:"tok-inserted"},{tag:ne.deleted,class:"tok-deleted"},{tag:ne.literal,class:"tok-literal"},{tag:ne.string,class:"tok-string"},{tag:ne.number,class:"tok-number"},{tag:[ne.regexp,ne.escape,ne.special(ne.string)],class:"tok-string2"},{tag:ne.variableName,class:"tok-variableName"},{tag:ne.local(ne.variableName),class:"tok-variableName tok-local"},{tag:ne.definition(ne.variableName),class:"tok-variableName tok-definition"},{tag:ne.special(ne.variableName),class:"tok-variableName2"},{tag:ne.definition(ne.propertyName),class:"tok-propertyName tok-definition"},{tag:ne.typeName,class:"tok-typeName"},{tag:ne.namespace,class:"tok-namespace"},{tag:ne.className,class:"tok-className"},{tag:ne.macroName,class:"tok-macroName"},{tag:ne.propertyName,class:"tok-propertyName"},{tag:ne.operator,class:"tok-operator"},{tag:ne.comment,class:"tok-comment"},{tag:ne.meta,class:"tok-meta"},{tag:ne.invalid,class:"tok-invalid"},{tag:ne.punctuation,class:"tok-punctuation"}]);var E5;const Wp=new Un;function RI(e){return Jt.define({combine:e?t=>t.concat(e):void 0})}const pQ=new Un;class tc{constructor(t,n,i=[],r=""){this.data=t,this.name=r,ji.prototype.hasOwnProperty("tree")||Object.defineProperty(ji.prototype,"tree",{get(){return Nr(this)}}),this.parser=n,this.extension=[Im.of(this),ji.languageData.of((s,a,l)=>{let c=AJ(s,a,l),u=c.type.prop(Wp);if(!u)return[];let d=s.facet(u),f=c.type.prop(pQ);if(f){let h=c.resolve(a-c.from,l);for(let m of f)if(m.test(h,s)){let g=s.facet(m.facet);return m.type=="replace"?g:g.concat(d)}}return d})].concat(i)}isActiveAt(t,n,i=-1){return AJ(t,n,i).type.prop(Wp)==this.data}findRegions(t){let n=t.facet(Im);if((n==null?void 0:n.data)==this.data)return[{from:0,to:t.doc.length}];if(!n||!n.allowsNesting)return[];let i=[],r=(s,a)=>{if(s.prop(Wp)==this.data){i.push({from:a,to:a+s.length});return}let l=s.prop(Un.mounted);if(l){if(l.tree.prop(Wp)==this.data){if(l.overlay)for(let c of l.overlay)i.push({from:c.from+a,to:c.to+a});else i.push({from:a,to:a+s.length});return}else if(l.overlay){let c=i.length;if(r(l.tree,l.overlay[0].from+a),i.length>c)return}}for(let c=0;ci.isTop?n:void 0)]}),t.name)}configure(t,n){return new Nh(this.data,this.parser.configure(t),n||this.name)}get allowsNesting(){return this.parser.hasWrappers()}}function Nr(e){let t=e.field(tc.state,!1);return t?t.tree:bi.empty}class AAt{constructor(t){this.doc=t,this.cursorPos=0,this.string="",this.cursor=t.iter()}get length(){return this.doc.length}syncTo(t){return this.string=this.cursor.next(t-this.cursorPos).value,this.cursorPos=t+this.string.length,this.cursorPos-this.string.length}chunk(t){return this.syncTo(t),this.string}get lineChunks(){return!0}read(t,n){let i=this.cursorPos-this.string.length;return t=this.cursorPos?this.doc.sliceString(t,n):this.string.slice(t-i,n-i)}}let rw=null;class $b{constructor(t,n,i=[],r,s,a,l,c){this.parser=t,this.state=n,this.fragments=i,this.tree=r,this.treeLen=s,this.viewport=a,this.skipped=l,this.scheduleOn=c,this.parse=null,this.tempSkipped=[]}static create(t,n,i){return new $b(t,n,[],bi.empty,0,i,[],null)}startParse(){return this.parser.startParse(new AAt(this.state.doc),this.fragments)}work(t,n){return n!=null&&n>=this.state.doc.length&&(n=void 0),this.tree!=bi.empty&&this.isDone(n??this.state.doc.length)?(this.takeTree(),!0):this.withContext(()=>{var i;if(typeof t=="number"){let r=Date.now()+t;t=()=>Date.now()>r}for(this.parse||(this.parse=this.startParse()),n!=null&&(this.parse.stoppedAt==null||this.parse.stoppedAt>n)&&n=this.treeLen&&((this.parse.stoppedAt==null||this.parse.stoppedAt>t)&&this.parse.stopAt(t),this.withContext(()=>{for(;!(n=this.parse.advance()););}),this.treeLen=t,this.tree=n,this.fragments=this.withoutTempSkipped(ch.addTree(this.tree,this.fragments,!0)),this.parse=null)}withContext(t){let n=rw;rw=this;try{return t()}finally{rw=n}}withoutTempSkipped(t){for(let n;n=this.tempSkipped.pop();)t=_J(t,n.from,n.to);return t}changes(t,n){let{fragments:i,tree:r,treeLen:s,viewport:a,skipped:l}=this;if(this.takeTree(),!t.empty){let c=[];if(t.iterChangedRanges((u,d,f,h)=>c.push({fromA:u,toA:d,fromB:f,toB:h})),i=ch.applyChanges(i,c),r=bi.empty,s=0,a={from:t.mapPos(a.from,-1),to:t.mapPos(a.to,1)},this.skipped.length){l=[];for(let u of this.skipped){let d=t.mapPos(u.from,1),f=t.mapPos(u.to,-1);dt.from&&(this.fragments=_J(this.fragments,r,s),this.skipped.splice(i--,1))}return this.skipped.length>=n?!1:(this.reset(),!0)}reset(){this.parse&&(this.takeTree(),this.parse=null)}skipUntilInView(t,n){this.skipped.push({from:t,to:n})}static getSkippingParser(t){return new class extends kI{createParse(n,i,r){let s=r[0].from,a=r[r.length-1].to;return{parsedPos:s,advance(){let c=rw;if(c){for(let u of r)c.tempSkipped.push(u);t&&(c.scheduleOn=c.scheduleOn?Promise.all([c.scheduleOn,t]):t)}return this.parsedPos=a,new bi(ta.none,[],[],a-s)},stoppedAt:null,stopAt(){}}}}}isDone(t){t=Math.min(t,this.state.doc.length);let n=this.fragments;return this.treeLen>=t&&n.length&&n[0].from==0&&n[0].to>=t}static get(){return rw}}function _J(e,t,n){return ch.applyChanges(e,[{fromA:t,toA:n,fromB:t,toB:n}])}class hx{constructor(t){this.context=t,this.tree=t.tree}apply(t){if(!t.docChanged&&this.tree==this.context.tree)return this;let n=this.context.changes(t.changes,t.state),i=this.context.treeLen==t.startState.doc.length?void 0:Math.max(t.changes.mapPos(this.context.treeLen),n.viewport.to);return n.work(20,i)||n.takeTree(),new hx(n)}static init(t){let n=Math.min(3e3,t.doc.length),i=$b.create(t.facet(Im).parser,t,{from:0,to:n});return i.work(20,n)||i.takeTree(),new hx(i)}}tc.state=so.define({create:hx.init,update(e,t){for(let n of t.effects)if(n.is(tc.setState))return n.value;return t.startState.facet(Im)!=t.state.facet(Im)?hx.init(t.state):e.apply(t)}});let f2e=e=>{let t=setTimeout(()=>e(),500);return()=>clearTimeout(t)};typeof requestIdleCallback<"u"&&(f2e=e=>{let t=-1,n=setTimeout(()=>{t=requestIdleCallback(e,{timeout:400})},100);return()=>t<0?clearTimeout(n):cancelIdleCallback(t)});const C5=typeof navigator<"u"&&(!((E5=navigator.scheduling)===null||E5===void 0)&&E5.isInputPending)?()=>navigator.scheduling.isInputPending():null,_At=Ts.fromClass(class{constructor(t){this.view=t,this.working=null,this.workScheduled=0,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(t){let n=this.view.state.field(tc.state).context;(n.updateViewport(t.view.viewport)||this.view.viewport.to>n.treeLen)&&this.scheduleWork(),(t.docChanged||t.selectionSet)&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(n)}scheduleWork(){if(this.working)return;let{state:t}=this.view,n=t.field(tc.state);(n.tree!=n.context.tree||!n.context.isDone(t.doc.length))&&(this.working=f2e(this.work))}work(t){this.working=null;let n=Date.now();if(this.chunkEndr+1e3,c=s.context.work(()=>C5&&C5()||Date.now()>a,r+(l?0:1e5));this.chunkBudget-=Date.now()-n,(c||this.chunkBudget<=0)&&(s.context.takeTree(),this.view.dispatch({effects:tc.setState.of(new hx(s.context))})),this.chunkBudget>0&&!(c&&!l)&&this.scheduleWork(),this.checkAsyncSchedule(s.context)}checkAsyncSchedule(t){t.scheduleOn&&(this.workScheduled++,t.scheduleOn.then(()=>this.scheduleWork()).catch(n=>ml(this.view.state,n)).then(()=>this.workScheduled--),t.scheduleOn=null)}destroy(){this.working&&this.working()}isWorking(){return!!(this.working||this.workScheduled>0)}},{eventHandlers:{focus(){this.scheduleWork()}}}),Im=Jt.define({combine(e){return e.length?e[0]:null},enables:e=>[tc.state,_At,Qt.contentAttributes.compute([e],t=>{let n=t.facet(e);return n&&n.name?{"data-language":n.name}:{}})]});class Pm{constructor(t,n=[]){this.language=t,this.support=n,this.extension=[t,n]}}class qN{constructor(t,n,i,r,s,a=void 0){this.name=t,this.alias=n,this.extensions=i,this.filename=r,this.loadFunc=s,this.support=a,this.loading=null}load(){return this.loading||(this.loading=this.loadFunc().then(t=>this.support=t,t=>{throw this.loading=null,t}))}static of(t){let{load:n,support:i}=t;if(!n){if(!i)throw new RangeError("Must pass either 'load' or 'support' to LanguageDescription.of");n=()=>Promise.resolve(i)}return new qN(t.name,(t.alias||[]).concat(t.name).map(r=>r.toLowerCase()),t.extensions||[],t.filename,n,i)}static matchFilename(t,n){for(let r of t)if(r.filename&&r.filename.test(n))return r;let i=/\.([^.]+)$/.exec(n);if(i){for(let r of t)if(r.extensions.indexOf(i[1])>-1)return r}return null}static matchLanguageName(t,n,i=!0){n=n.toLowerCase();for(let r of t)if(r.alias.some(s=>s==n))return r;if(i)for(let r of t)for(let s of r.alias){let a=n.indexOf(s);if(a>-1&&(s.length>2||!/\w/.test(n[a-1])&&!/\w/.test(n[a+s.length])))return r}return null}}const NAt=Jt.define(),l1=Jt.define({combine:e=>{if(!e.length)return" ";let t=e[0];if(!t||/\S/.test(t)||Array.from(t).some(n=>n!=t[0]))throw new Error("Invalid indent unit: "+JSON.stringify(e[0]));return t}});function Fb(e){let t=e.facet(l1);return t.charCodeAt(0)==9?e.tabSize*t.length:t.length}function dk(e,t){let n="",i=e.tabSize,r=e.facet(l1)[0];if(r==" "){for(;t>=i;)n+=" ",t-=i;r=" "}for(let s=0;s=t?jAt(e,n,t):null}class II{constructor(t,n={}){this.state=t,this.options=n,this.unit=Fb(t)}lineAt(t,n=1){let i=this.state.doc.lineAt(t),{simulateBreak:r,simulateDoubleBreak:s}=this.options;return r!=null&&r>=i.from&&r<=i.to?s&&r==t?{text:"",from:t}:(n<0?r-1&&(s+=a-this.countColumn(i,i.search(/\S|$/))),s}countColumn(t,n=t.length){return Qu(t,this.state.tabSize,n)}lineIndent(t,n=1){let{text:i,from:r}=this.lineAt(t,n),s=this.options.overrideIndentation;if(s){let a=s(r);if(a>-1)return a}return this.countColumn(i,i.search(/\S|$/))}get simulatedBreak(){return this.options.simulateBreak||null}}const Vh=new Un;function jAt(e,t,n){let i=t.resolveStack(n),r=t.resolveInner(n,-1).resolve(n,0).enterUnfinishedNodesBefore(n);if(r!=i.node){let s=[];for(let a=r;a&&!(a.fromi.node.to||a.from==i.node.from&&a.type==i.node.type);a=a.parent)s.push(a);for(let a=s.length-1;a>=0;a--)i={node:s[a],next:i}}return h2e(i,e,n)}function h2e(e,t,n){for(let i=e;i;i=i.next){let r=IAt(i.node);if(r)return r(gQ.create(t,n,i))}return 0}function RAt(e){return e.pos==e.options.simulateBreak&&e.options.simulateDoubleBreak}function IAt(e){let t=e.type.prop(Vh);if(t)return t;let n=e.firstChild,i;if(n&&(i=n.type.prop(Un.closedBy))){let r=e.lastChild,s=r&&i.indexOf(r.name)>-1;return a=>p2e(a,!0,1,void 0,s&&!RAt(a)?r.from:void 0)}return e.parent==null?PAt:null}function PAt(){return 0}class gQ extends II{constructor(t,n,i){super(t.state,t.options),this.base=t,this.pos=n,this.context=i}get node(){return this.context.node}static create(t,n,i){return new gQ(t,n,i)}get textAfter(){return this.textAfterPos(this.pos)}get baseIndent(){return this.baseIndentFor(this.node)}baseIndentFor(t){let n=this.state.doc.lineAt(t.from);for(;;){let i=t.resolve(n.from);for(;i.parent&&i.parent.from==i.from;)i=i.parent;if(DAt(i,t))break;n=this.state.doc.lineAt(i.from)}return this.lineIndent(n.from)}continue(){return h2e(this.context.next,this.base,this.pos)}}function DAt(e,t){for(let n=t;n;n=n.parent)if(e==n)return!0;return!1}function MAt(e){let t=e.node,n=t.childAfter(t.from),i=t.lastChild;if(!n)return null;let r=e.options.simulateBreak,s=e.state.doc.lineAt(n.from),a=r==null||r<=s.from?s.to:Math.min(s.to,r);for(let l=n.to;;){let c=t.childAfter(l);if(!c||c==i)return null;if(!c.type.isSkipped){if(c.from>=a)return null;let u=/^ */.exec(s.text.slice(n.to-s.from))[0].length;return{from:n.from,to:n.to+u}}l=c.to}}function yv({closing:e,align:t=!0,units:n=1}){return i=>p2e(i,t,n,e)}function p2e(e,t,n,i,r){let s=e.textAfter,a=s.match(/^\s*/)[0].length,l=i&&s.slice(a,a+i.length)==i||r==e.pos+a,c=t?MAt(e):null;return c?l?e.column(c.from):e.column(c.to):e.baseIndent+(l?0:e.unit*n)}const LAt=e=>e.baseIndent;function vv({except:e,units:t=1}={}){return n=>{let i=e&&e.test(n.textAfter);return n.baseIndent+(i?0:t*n.unit)}}const $At=200;function FAt(){return ji.transactionFilter.of(e=>{if(!e.docChanged||!e.isUserEvent("input.type")&&!e.isUserEvent("input.complete"))return e;let t=e.startState.languageDataAt("indentOnInput",e.startState.selection.main.head);if(!t.length)return e;let n=e.newDoc,{head:i}=e.newSelection.main,r=n.lineAt(i);if(i>r.from+$At)return e;let s=n.sliceString(r.from,i);if(!t.some(u=>u.test(s)))return e;let{state:a}=e,l=-1,c=[];for(let{head:u}of a.selection.ranges){let d=a.doc.lineAt(u);if(d.from==l)continue;l=d.from;let f=mQ(a,d.from);if(f==null)continue;let h=/^\s*/.exec(d.text)[0],m=dk(a,f);h!=m&&c.push({from:d.from,to:d.from+h.length,insert:m})}return c.length?[e,{changes:c,sequential:!0}]:e})}const m2e=Jt.define(),Hh=new Un;function UE(e){let t=e.firstChild,n=e.lastChild;return t&&t.ton)continue;if(s&&l.from=t&&u.to>n&&(s=u)}}return s}function UAt(e){let t=e.lastChild;return t&&t.to==e.to&&t.type.isError}function WN(e,t,n){for(let i of e.facet(m2e)){let r=i(e,t,n);if(r)return r}return BAt(e,t,n)}function g2e(e,t){let n=t.mapPos(e.from,1),i=t.mapPos(e.to,-1);return n>=i?void 0:{from:n,to:i}}const PI=Qn.define({map:g2e}),QE=Qn.define({map:g2e});function b2e(e){let t=[];for(let{head:n}of e.state.selection.ranges)t.some(i=>i.from<=n&&i.to>=n)||t.push(e.lineBlockAt(n));return t}const Bb=so.define({create(){return xn.none},update(e,t){t.isUserEvent("delete")&&t.changes.iterChangedRanges((i,r)=>e=NJ(e,i,r)),e=e.map(t.changes);let n=[];for(let i of t.effects)i.is(PI)&&!QAt(e,i.value.from,i.value.to)?n.push(i.value):i.is(QE)&&(e=e.update({filter:(r,s)=>i.value.from!=r||i.value.to!=s,filterFrom:i.value.from,filterTo:i.value.to}));if(n.length){let{preparePlaceholder:i}=t.state.facet(x2e),r=n.map(s=>(i?xn.replace({widget:new GAt(i(t.state,s))}):jJ).range(s.from,s.to));e=e.update({add:r})}return t.selection&&(e=NJ(e,t.selection.main.head)),e},provide:e=>Qt.decorations.from(e),toJSON(e,t){let n=[];return e.between(0,t.doc.length,(i,r)=>{n.push(i,r)}),n},fromJSON(e){if(!Array.isArray(e)||e.length%2)throw new RangeError("Invalid JSON for fold state");let t=[];for(let n=0;n{rt&&(i=!0)}),i?e.update({filterFrom:t,filterTo:n,filter:(r,s)=>r>=n||s<=t}):e}function KN(e,t,n){var i;let r=null;return(i=e.field(Bb,!1))===null||i===void 0||i.between(t,n,(s,a)=>{(!r||r.from>s)&&(r={from:s,to:a})}),r}function QAt(e,t,n){let i=!1;return e.between(t,t,(r,s)=>{r==t&&s==n&&(i=!0)}),i}function y2e(e,t){return e.field(Bb,!1)?t:t.concat(Qn.appendConfig.of(w2e()))}const zAt=e=>{for(let t of b2e(e)){let n=WN(e.state,t.from,t.to);if(n)return e.dispatch({effects:y2e(e.state,[PI.of(n),v2e(e,n)])}),!0}return!1},VAt=e=>{if(!e.state.field(Bb,!1))return!1;let t=[];for(let n of b2e(e)){let i=KN(e.state,n.from,n.to);i&&t.push(QE.of(i),v2e(e,i,!1))}return t.length&&e.dispatch({effects:t}),t.length>0};function v2e(e,t,n=!0){let i=e.state.doc.lineAt(t.from).number,r=e.state.doc.lineAt(t.to).number;return Qt.announce.of(`${e.state.phrase(n?"Folded lines":"Unfolded lines")} ${i} ${e.state.phrase("to")} ${r}.`)}const HAt=e=>{let{state:t}=e,n=[];for(let i=0;i{let t=e.state.field(Bb,!1);if(!t||!t.size)return!1;let n=[];return t.between(0,e.state.doc.length,(i,r)=>{n.push(QE.of({from:i,to:r}))}),e.dispatch({effects:n}),!0},WAt=[{key:"Ctrl-Shift-[",mac:"Cmd-Alt-[",run:zAt},{key:"Ctrl-Shift-]",mac:"Cmd-Alt-]",run:VAt},{key:"Ctrl-Alt-[",run:HAt},{key:"Ctrl-Alt-]",run:qAt}],KAt={placeholderDOM:null,preparePlaceholder:null,placeholderText:"…"},x2e=Jt.define({combine(e){return nf(e,KAt)}});function w2e(e){return[Bb,ZAt]}function O2e(e,t){let{state:n}=e,i=n.facet(x2e),r=a=>{let l=e.lineBlockAt(e.posAtDOM(a.target)),c=KN(e.state,l.from,l.to);c&&e.dispatch({effects:QE.of(c)}),a.preventDefault()};if(i.placeholderDOM)return i.placeholderDOM(e,r,t);let s=document.createElement("span");return s.textContent=i.placeholderText,s.setAttribute("aria-label",n.phrase("folded code")),s.title=n.phrase("unfold"),s.className="cm-foldPlaceholder",s.onclick=r,s}const jJ=xn.replace({widget:new class extends Zu{toDOM(e){return O2e(e,null)}}});class GAt extends Zu{constructor(t){super(),this.value=t}eq(t){return this.value==t.value}toDOM(t){return O2e(t,this.value)}}const XAt={openText:"⌄",closedText:"›",markerDOM:null,domEventHandlers:{},foldingChanged:()=>!1};class T5 extends _h{constructor(t,n){super(),this.config=t,this.open=n}eq(t){return this.config==t.config&&this.open==t.open}toDOM(t){if(this.config.markerDOM)return this.config.markerDOM(this.open);let n=document.createElement("span");return n.textContent=this.open?this.config.openText:this.config.closedText,n.title=t.state.phrase(this.open?"Fold line":"Unfold line"),n}}function YAt(e={}){let t={...XAt,...e},n=new T5(t,!0),i=new T5(t,!1),r=Ts.fromClass(class{constructor(a){this.from=a.viewport.from,this.markers=this.buildMarkers(a)}update(a){(a.docChanged||a.viewportChanged||a.startState.facet(Im)!=a.state.facet(Im)||a.startState.field(Bb,!1)!=a.state.field(Bb,!1)||Nr(a.startState)!=Nr(a.state)||t.foldingChanged(a))&&(this.markers=this.buildMarkers(a.view))}buildMarkers(a){let l=new Th;for(let c of a.viewportLineBlocks){let u=KN(a.state,c.from,c.to)?i:WN(a.state,c.from,c.to)?n:null;u&&l.add(c.from,c.from,u)}return l.finish()}}),{domEventHandlers:s}=t;return[r,uAt({class:"cm-foldGutter",markers(a){var l;return((l=a.plugin(r))===null||l===void 0?void 0:l.markers)||Si.empty},initialSpacer(){return new T5(t,!1)},domEventHandlers:{...s,click:(a,l,c)=>{if(s.click&&s.click(a,l,c))return!0;let u=KN(a.state,l.from,l.to);if(u)return a.dispatch({effects:QE.of(u)}),!0;let d=WN(a.state,l.from,l.to);return d?(a.dispatch({effects:PI.of(d)}),!0):!1}}}),w2e()]}const ZAt=Qt.baseTheme({".cm-foldPlaceholder":{backgroundColor:"#eee",border:"1px solid #ddd",color:"#888",borderRadius:".2em",margin:"0 1px",padding:"0 1px",cursor:"pointer"},".cm-foldGutter span":{padding:"0 1px",cursor:"pointer"}});class zE{constructor(t,n){this.specs=t;let i;function r(l){let c=Nm.newName();return(i||(i=Object.create(null)))["."+c]=l,c}const s=typeof n.all=="string"?n.all:n.all?r(n.all):void 0,a=n.scope;this.scope=a instanceof tc?l=>l.prop(Wp)==a.data:a?l=>l==a:void 0,this.style=d2e(t.map(l=>({tag:l.tag,class:l.class||r(Object.assign({},l,{tag:null}))})),{all:s}).style,this.module=i?new Nm(i):null,this.themeType=n.themeType}static define(t,n){return new zE(t,n||{})}}const J$=Jt.define(),S2e=Jt.define({combine(e){return e.length?[e[0]]:null}});function F2(e){let t=e.facet(J$);return t.length?t:e.facet(S2e)}function k2e(e,t){let n=[e2t],i;return e instanceof zE&&(e.module&&n.push(Qt.styleModule.of(e.module)),i=e.themeType),t!=null&&t.fallback?n.push(S2e.of(e)):i?n.push(J$.computeN([Qt.darkTheme],r=>r.facet(Qt.darkTheme)==(i=="dark")?[e]:[])):n.push(J$.of(e)),n}function QHt(e,t,n){let i=F2(e),r=null;if(i){for(let s of i)if(!s.scope||n){let a=s.style(t);a&&(r=r?r+" "+a:a)}}return r}class JAt{constructor(t){this.markCache=Object.create(null),this.tree=Nr(t.state),this.decorations=this.buildDeco(t,F2(t.state)),this.decoratedTo=t.viewport.to}update(t){let n=Nr(t.state),i=F2(t.state),r=i!=F2(t.startState),{viewport:s}=t.view,a=t.changes.mapPos(this.decoratedTo,1);n.length=s.to?(this.decorations=this.decorations.map(t.changes),this.decoratedTo=a):(n!=this.tree||t.viewportChanged||r)&&(this.tree=n,this.decorations=this.buildDeco(t.view,i),this.decoratedTo=s.to)}buildDeco(t,n){if(!n||!this.tree.length)return xn.none;let i=new Th;for(let{from:r,to:s}of t.visibleRanges)EAt(this.tree,n,(a,l,c)=>{i.add(a,l,this.markCache[c]||(this.markCache[c]=xn.mark({class:c})))},r,s);return i.finish()}}const e2t=Qh.high(Ts.fromClass(JAt,{decorations:e=>e.decorations})),t2t=zE.define([{tag:ne.meta,color:"#404740"},{tag:ne.link,textDecoration:"underline"},{tag:ne.heading,textDecoration:"underline",fontWeight:"bold"},{tag:ne.emphasis,fontStyle:"italic"},{tag:ne.strong,fontWeight:"bold"},{tag:ne.strikethrough,textDecoration:"line-through"},{tag:ne.keyword,color:"#708"},{tag:[ne.atom,ne.bool,ne.url,ne.contentSeparator,ne.labelName],color:"#219"},{tag:[ne.literal,ne.inserted],color:"#164"},{tag:[ne.string,ne.deleted],color:"#a11"},{tag:[ne.regexp,ne.escape,ne.special(ne.string)],color:"#e40"},{tag:ne.definition(ne.variableName),color:"#00f"},{tag:ne.local(ne.variableName),color:"#30a"},{tag:[ne.typeName,ne.namespace],color:"#085"},{tag:ne.className,color:"#167"},{tag:[ne.special(ne.variableName),ne.macroName],color:"#256"},{tag:ne.definition(ne.propertyName),color:"#00c"},{tag:ne.comment,color:"#940"},{tag:ne.invalid,color:"#f00"}]),n2t=Qt.baseTheme({"&.cm-focused .cm-matchingBracket":{backgroundColor:"#328c8252"},"&.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bb555544"}}),E2e=1e4,C2e="()[]{}",T2e=Jt.define({combine(e){return nf(e,{afterCursor:!0,brackets:C2e,maxScanDistance:E2e,renderMatch:s2t})}}),i2t=xn.mark({class:"cm-matchingBracket"}),r2t=xn.mark({class:"cm-nonmatchingBracket"});function s2t(e){let t=[],n=e.matched?i2t:r2t;return t.push(n.range(e.start.from,e.start.to)),e.end&&t.push(n.range(e.end.from,e.end.to)),t}function RJ(e){let t=[],n=e.facet(T2e);for(let i of e.selection.ranges){if(!i.empty)continue;let r=jd(e,i.head,-1,n)||i.head>0&&jd(e,i.head-1,1,n)||n.afterCursor&&(jd(e,i.head,1,n)||i.heade.decorations}),o2t=[a2t,n2t];function l2t(e={}){return[T2e.of(e),o2t]}const A2e=new Un;function e8(e,t,n){let i=e.prop(t<0?Un.openedBy:Un.closedBy);if(i)return i;if(e.name.length==1){let r=n.indexOf(e.name);if(r>-1&&r%2==(t<0?1:0))return[n[r+t]]}return null}function t8(e){let t=e.type.prop(A2e);return t?t(e.node):e}function jd(e,t,n,i={}){let r=i.maxScanDistance||E2e,s=i.brackets||C2e,a=Nr(e),l=a.resolveInner(t,n);for(let c=l;c;c=c.parent){let u=e8(c.type,n,s);if(u&&c.from0?t>=d.from&&td.from&&t<=d.to))return c2t(e,t,n,c,d,u,s)}}return u2t(e,t,n,a,l.type,r,s)}function c2t(e,t,n,i,r,s,a){let l=i.parent,c={from:r.from,to:r.to},u=0,d=l==null?void 0:l.cursor();if(d&&(n<0?d.childBefore(i.from):d.childAfter(i.to)))do if(n<0?d.to<=i.from:d.from>=i.to){if(u==0&&s.indexOf(d.type.name)>-1&&d.from0)return null;let u={from:n<0?t-1:t,to:n>0?t+1:t},d=e.doc.iterRange(t,n>0?e.doc.length:0),f=0;for(let h=0;!d.next().done&&h<=s;){let m=d.value;n<0&&(h+=m.length);let g=t+h*n;for(let b=n>0?0:m.length-1,v=n>0?m.length:-1;b!=v;b+=n){let y=a.indexOf(m[b]);if(!(y<0||i.resolveInner(g+b,1).type!=r))if(y%2==0==n>0)f++;else{if(f==1)return{start:u,end:{from:g+b,to:g+b+1},matched:y>>1==c>>1};f--}}n>0&&(h+=m.length)}return d.done?{start:u,matched:!1}:null}function IJ(e,t,n,i=0,r=0){t==null&&(t=e.search(/[^\s\u00a0]/),t==-1&&(t=e.length));let s=r;for(let a=i;a=this.string.length}sol(){return this.pos==0}peek(){return this.string.charAt(this.pos)||void 0}next(){if(this.posn}eatSpace(){let t=this.pos;for(;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>t}skipToEnd(){this.pos=this.string.length}skipTo(t){let n=this.string.indexOf(t,this.pos);if(n>-1)return this.pos=n,!0}backUp(t){this.pos-=t}column(){return this.lastColumnPosi?a.toLowerCase():a,s=this.string.substr(this.pos,t.length);return r(s)==r(t)?(n!==!1&&(this.pos+=t.length),!0):null}else{let r=this.string.slice(this.pos).match(t);return r&&r.index>0?null:(r&&n!==!1&&(this.pos+=r[0].length),r)}}current(){return this.string.slice(this.start,this.pos)}}function d2t(e){return{name:e.name||"",token:e.token,blankLine:e.blankLine||(()=>{}),startState:e.startState||(()=>!0),copyState:e.copyState||f2t,indent:e.indent||(()=>null),languageData:e.languageData||{},tokenTable:e.tokenTable||vQ,mergeTokens:e.mergeTokens!==!1}}function f2t(e){if(typeof e!="object")return e;let t={};for(let n in e){let i=e[n];t[n]=i instanceof Array?i.slice():i}return t}const PJ=new WeakMap;class bQ extends tc{constructor(t){let n=RI(t.languageData),i=d2t(t),r,s=new class extends kI{createParse(a,l,c){return new p2t(r,a,l,c)}};super(n,s,[],t.name),this.topNode=b2t(n,this),r=this,this.streamParser=i,this.stateAfter=new Un({perNode:!0}),this.tokenTable=t.tokenTable?new I2e(i.tokenTable):g2t}static define(t){return new bQ(t)}getIndent(t){let n,{overrideIndentation:i}=t.options;i&&(n=PJ.get(t.state),n!=null&&n1e4)return null;for(;s=i&&n+t.length<=r&&t.prop(e.stateAfter);if(s)return{state:e.streamParser.copyState(s),pos:n+t.length};for(let a=t.children.length-1;a>=0;a--){let l=t.children[a],c=n+t.positions[a],u=l instanceof bi&&c=t.length)return t;!r&&n==0&&t.type==e.topNode&&(r=!0);for(let s=t.children.length-1;s>=0;s--){let a=t.positions[s],l=t.children[s],c;if(an&&yQ(e,s.tree,0-s.offset,n,l),u;if(c&&c.pos<=i&&(u=N2e(e,s.tree,n+s.offset,c.pos+s.offset,!1)))return{state:c.state,tree:u}}return{state:e.streamParser.startState(r?Fb(r):4),tree:bi.empty}}let p2t=class{constructor(t,n,i,r){this.lang=t,this.input=n,this.fragments=i,this.ranges=r,this.stoppedAt=null,this.chunks=[],this.chunkPos=[],this.chunk=[],this.chunkReused=void 0,this.rangeIndex=0,this.to=r[r.length-1].to;let s=$b.get(),a=r[0].from,{state:l,tree:c}=h2t(t,i,a,this.to,s==null?void 0:s.state);this.state=l,this.parsedPos=this.chunkStart=a+c.length;for(let u=0;uu.from<=s.viewport.from&&u.to>=s.viewport.from)&&(this.state=this.lang.streamParser.startState(Fb(s.state)),s.skipUntilInView(this.parsedPos,s.viewport.from),this.parsedPos=s.viewport.from),this.moveRangeIndex()}advance(){let t=$b.get(),n=this.stoppedAt==null?this.to:Math.min(this.to,this.stoppedAt),i=Math.min(n,this.chunkStart+512);for(t&&(i=Math.min(i,t.viewport.to));this.parsedPos=n?this.finish():t&&this.parsedPos>=t.viewport.to?(t.skipUntilInView(this.parsedPos,n),this.finish()):null}stopAt(t){this.stoppedAt=t}lineAfter(t){let n=this.input.chunk(t);if(this.input.lineChunks)n==` `&&(n="");else{let i=n.indexOf(` -`);i>-1&&(n=n.slice(0,i))}return t+n.length<=this.to?n:n.slice(0,this.to-t)}nextLine(){let t=this.parsedPos,n=this.lineAfter(t),i=t+n.length;for(let r=this.rangeIndex;;){let s=this.ranges[r].to;if(s>=i||(n=n.slice(0,s-(i-n.length)),r++,r==this.ranges.length))break;let a=this.ranges[r].from,l=this.lineAfter(a);n+=l,i=a+l.length}return{line:n,end:i}}skipGapsTo(t,n,i){for(;;){let r=this.ranges[this.rangeIndex].to,s=t+n;if(i>0?r>s:r>=s)break;let a=this.ranges[++this.rangeIndex].from;n+=a-r}return n}moveRangeIndex(){for(;this.ranges[this.rangeIndex].to1){r=this.skipGapsTo(n,r,1),n+=r;let l=this.chunk.length;r=this.skipGapsTo(i,r,-1),i+=r,s+=this.chunk.length-l}let a=this.chunk.length-4;return this.lang.streamParser.mergeTokens&&s==4&&a>=0&&this.chunk[a]==t&&this.chunk[a+2]==n?this.chunk[a+2]=i:this.chunk.push(t,n,i,s),r}parseLine(t){let{line:n,end:i}=this.nextLine(),r=0,{streamParser:s}=this.lang,a=new gAe(n,t?t.state.tabSize:4,t?Pb(t.state):2);if(a.eol())s.blankLine(this.state,a.indentUnit);else for(;!a.eol();){let l=yAe(s.token,a,this.state);if(l&&(r=this.emitToken(this.lang.tokenTable.resolve(l),this.parsedPos+a.start,this.parsedPos+a.pos,r)),a.start>1e4)break}this.parsedPos=i,this.moveRangeIndex(),this.parsedPost.start)return r}throw new Error("Stream parser failed to advance stream.")}const pQ=Object.create(null),lk=[ea.none],Z2t=new t1(lk),CJ=[],TJ=Object.create(null),vAe=Object.create(null);for(let[e,t]of[["variable","variableName"],["variable-2","variableName.special"],["string-2","string.special"],["def","variableName.definition"],["tag","tagName"],["attribute","attributeName"],["type","typeName"],["builtin","variableName.standard"],["qualifier","modifier"],["error","invalid"],["header","heading"],["property","propertyName"]])vAe[e]=wAe(pQ,t);class xAe{constructor(t){this.extra=t,this.table=Object.assign(Object.create(null),vAe)}resolve(t){return t?this.table[t]||(this.table[t]=wAe(this.extra,t)):0}}const J2t=new xAe(pQ);function S5(e,t){CJ.indexOf(e)>-1||(CJ.push(e),console.warn(t))}function wAe(e,t){let n=[];for(let l of t.split(" ")){let c=[];for(let u of l.split(".")){let d=e[u]||ne[u];d?typeof d=="function"?c.length?c=c.map(d):S5(u,`Modifier ${u} used at start of tag`):c.length?S5(u,`Tag ${u} used as modifier`):c=Array.isArray(d)?d:[d]:S5(u,`Unknown highlighting tag ${u}`)}for(let u of c)n.push(u)}if(!n.length)return 0;let i=t.replace(/ /g,"_"),r=i+" "+n.map(l=>l.id),s=TJ[r];if(s)return s.id;let a=TJ[r]=ea.define({id:lk.length,name:i,props:[Vh({[i]:n})]});return lk.push(a),a.id}function eAt(e,t){let n=ea.define({id:lk.length,name:"Document",props:[zp.add(()=>e),Hh.add(()=>i=>t.getIndent(i))],top:!0});return lk.push(n),n}Cr.RTL,Cr.LTR;var AJ={};class VN{constructor(t,n,i,r,s,a,l,c,u,d=0,f){this.p=t,this.stack=n,this.state=i,this.reducePos=r,this.pos=s,this.score=a,this.buffer=l,this.bufferBase=c,this.curContext=u,this.lookAhead=d,this.parent=f}toString(){return`[${this.stack.filter((t,n)=>n%3==0).concat(this.state)}]@${this.pos}${this.score?"!"+this.score:""}`}static start(t,n,i=0){let r=t.parser.context;return new VN(t,[],n,i,i,0,[],0,r?new _J(r,r.start):null,0,null)}get context(){return this.curContext?this.curContext.context:null}pushState(t,n){this.stack.push(this.state,n,this.bufferBase+this.buffer.length),this.state=t}reduce(t){var n;let i=t>>19,r=t&65535,{parser:s}=this.p,a=this.reducePos=2e3&&!(!((n=this.p.parser.nodeSet.types[r])===null||n===void 0)&&n.isAnonymous)&&(u==this.p.lastBigReductionStart?(this.p.bigReductionCount++,this.p.lastBigReductionSize=d):this.p.lastBigReductionSizec;)this.stack.pop();this.reduceContext(r,u)}storeNode(t,n,i,r=4,s=!1){if(t==0&&(!this.stack.length||this.stack[this.stack.length-1]0&&this.buffer[a-4]==0&&this.buffer[a-1]>-1){if(n==i)return;if(this.buffer[a-2]>=n){this.buffer[a-2]=i;return}}}if(!s||this.pos==i)this.buffer.push(t,n,i,r);else{let a=this.buffer.length;if(a>0&&(this.buffer[a-4]!=0||this.buffer[a-1]<0)){let l=!1;for(let c=a;c>0&&this.buffer[c-2]>i;c-=4)if(this.buffer[c-1]>=0){l=!0;break}if(l)for(;a>0&&this.buffer[a-2]>i;)this.buffer[a]=this.buffer[a-4],this.buffer[a+1]=this.buffer[a-3],this.buffer[a+2]=this.buffer[a-2],this.buffer[a+3]=this.buffer[a-1],a-=4,r>4&&(r-=4)}this.buffer[a]=t,this.buffer[a+1]=n,this.buffer[a+2]=i,this.buffer[a+3]=r}}shift(t,n,i,r){if(t&131072)this.pushState(t&65535,this.pos);else if(t&262144)this.pos=r,this.shiftContext(n,i),n<=this.p.parser.maxNode&&this.buffer.push(n,i,r,4);else{let s=t,{parser:a}=this.p;this.pos=r;let l=a.stateFlag(s,1);!l&&(r>i||n<=a.maxNode)&&(this.reducePos=r),this.pushState(s,l?i:Math.min(i,this.reducePos)),this.shiftContext(n,i),n<=a.maxNode&&this.buffer.push(n,i,r,4)}}apply(t,n,i,r){t&65536?this.reduce(t):this.shift(t,n,i,r)}useNode(t,n){let i=this.p.reused.length-1;(i<0||this.p.reused[i]!=t)&&(this.p.reused.push(t),i++);let r=this.pos;this.reducePos=this.pos=r+t.length,this.pushState(n,r),this.buffer.push(i,r,this.reducePos,-1),this.curContext&&this.updateContext(this.curContext.tracker.reuse(this.curContext.context,t,this,this.p.stream.reset(this.pos-t.length)))}split(){let t=this,n=t.buffer.length;for(n&&t.buffer[n-4]==0&&(n-=4);n>0&&t.buffer[n-2]>t.reducePos;)n-=4;let i=t.buffer.slice(n),r=t.bufferBase+n;for(;t&&r==t.bufferBase;)t=t.parent;return new VN(this.p,this.stack.slice(),this.state,this.reducePos,this.pos,this.score,i,r,this.curContext,this.lookAhead,t)}recoverByDelete(t,n){let i=t<=this.p.parser.maxNode;i&&this.storeNode(t,this.pos,n,4),this.storeNode(0,this.pos,n,i?8:4),this.pos=this.reducePos=n,this.score-=190}canShift(t){for(let n=new tAt(this);;){let i=this.p.parser.stateSlot(n.state,4)||this.p.parser.hasAction(n.state,t);if(i==0)return!1;if(!(i&65536))return!0;n.reduce(i)}}recoverByInsert(t){if(this.stack.length>=300)return[];let n=this.p.parser.nextStates(this.state);if(n.length>8||this.stack.length>=120){let r=[];for(let s=0,a;sc&1&&l==a)||r.push(n[s],a)}n=r}let i=[];for(let r=0;r>19,r=n&65535,s=this.stack.length-i*3;if(s<0||t.getGoto(this.stack[s],r,!1)<0){let a=this.findForcedReduction();if(a==null)return!1;n=a}this.storeNode(0,this.pos,this.pos,4,!0),this.score-=100}return this.reducePos=this.pos,this.reduce(n),!0}findForcedReduction(){let{parser:t}=this.p,n=[],i=(r,s)=>{if(!n.includes(r))return n.push(r),t.allActions(r,a=>{if(!(a&393216))if(a&65536){let l=(a>>19)-s;if(l>1){let c=a&65535,u=this.stack.length-l*3;if(u>=0&&t.getGoto(this.stack[u],c,!1)>=0)return l<<19|65536|c}}else{let l=i(a,s+1);if(l!=null)return l}})};return i(this.state,0)}forceAll(){for(;!this.p.parser.stateFlag(this.state,2);)if(!this.forceReduce()){this.storeNode(0,this.pos,this.pos,4,!0);break}return this}get deadEnd(){if(this.stack.length!=3)return!1;let{parser:t}=this.p;return t.data[t.stateSlot(this.state,1)]==65535&&!t.stateSlot(this.state,4)}restart(){this.storeNode(0,this.pos,this.pos,4,!0),this.state=this.stack[0],this.stack.length=0}sameState(t){if(this.state!=t.state||this.stack.length!=t.stack.length)return!1;for(let n=0;n0&&this.emitLookAhead()}}class _J{constructor(t,n){this.tracker=t,this.context=n,this.hash=t.strict?t.hash(n):0}}class tAt{constructor(t){this.start=t,this.state=t.state,this.stack=t.stack,this.base=this.stack.length}reduce(t){let n=t&65535,i=t>>19;i==0?(this.stack==this.start.stack&&(this.stack=this.stack.slice()),this.stack.push(this.state,0,0),this.base+=3):this.base-=(i-1)*3;let r=this.start.p.parser.getGoto(this.stack[this.base-3],n,!0);this.state=r}}class HN{constructor(t,n,i){this.stack=t,this.pos=n,this.index=i,this.buffer=t.buffer,this.index==0&&this.maybeNext()}static create(t,n=t.bufferBase+t.buffer.length){return new HN(t,n,n-t.bufferBase)}maybeNext(){let t=this.stack.parent;t!=null&&(this.index=this.stack.bufferBase-t.bufferBase,this.stack=t,this.buffer=t.buffer)}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}next(){this.index-=4,this.pos-=4,this.index==0&&this.maybeNext()}fork(){return new HN(this.stack,this.pos,this.index)}}function qw(e,t=Uint16Array){if(typeof e!="string")return e;let n=null;for(let i=0,r=0;i=92&&a--,a>=34&&a--;let c=a-32;if(c>=46&&(c-=46,l=!0),s+=c,l)break;s*=46}n?n[r++]=s:n=new t(s)}return n}class DA{constructor(){this.start=-1,this.value=-1,this.end=-1,this.extended=-1,this.lookAhead=0,this.mask=0,this.context=0}}const NJ=new DA;class nAt{constructor(t,n){this.input=t,this.ranges=n,this.chunk="",this.chunkOff=0,this.chunk2="",this.chunk2Pos=0,this.next=-1,this.token=NJ,this.rangeIndex=0,this.pos=this.chunkPos=n[0].from,this.range=n[0],this.end=n[n.length-1].to,this.readNext()}resolveOffset(t,n){let i=this.range,r=this.rangeIndex,s=this.pos+t;for(;si.to:s>=i.to;){if(r==this.ranges.length-1)return null;let a=this.ranges[++r];s+=a.from-i.to,i=a}return s}clipPos(t){if(t>=this.range.from&&tt)return Math.max(t,n.from);return this.end}peek(t){let n=this.chunkOff+t,i,r;if(n>=0&&n=this.chunk2Pos&&il.to&&(this.chunk2=this.chunk2.slice(0,l.to-i)),r=this.chunk2.charCodeAt(0)}}return i>=this.token.lookAhead&&(this.token.lookAhead=i+1),r}acceptToken(t,n=0){let i=n?this.resolveOffset(n,-1):this.pos;if(i==null||i=this.chunk2Pos&&this.posthis.range.to?t.slice(0,this.range.to-this.pos):t,this.chunkPos=this.pos,this.chunkOff=0}}readNext(){return this.chunkOff>=this.chunk.length&&(this.getChunk(),this.chunkOff==this.chunk.length)?this.next=-1:this.next=this.chunk.charCodeAt(this.chunkOff)}advance(t=1){for(this.chunkOff+=t;this.pos+t>=this.range.to;){if(this.rangeIndex==this.ranges.length-1)return this.setDone();t-=this.range.to-this.pos,this.range=this.ranges[++this.rangeIndex],this.pos=this.range.from}return this.pos+=t,this.pos>=this.token.lookAhead&&(this.token.lookAhead=this.pos+1),this.readNext()}setDone(){return this.pos=this.chunkPos=this.end,this.range=this.ranges[this.rangeIndex=this.ranges.length-1],this.chunk="",this.next=-1}reset(t,n){if(n?(this.token=n,n.start=t,n.lookAhead=t+1,n.value=n.extended=-1):this.token=NJ,this.pos!=t){if(this.pos=t,t==this.end)return this.setDone(),this;for(;t=this.range.to;)this.range=this.ranges[++this.rangeIndex];t>=this.chunkPos&&t=this.chunkPos&&n<=this.chunkPos+this.chunk.length)return this.chunk.slice(t-this.chunkPos,n-this.chunkPos);if(t>=this.chunk2Pos&&n<=this.chunk2Pos+this.chunk2.length)return this.chunk2.slice(t-this.chunk2Pos,n-this.chunk2Pos);if(t>=this.range.from&&n<=this.range.to)return this.input.read(t,n);let i="";for(let r of this.ranges){if(r.from>=n)break;r.to>t&&(i+=this.input.read(Math.max(r.from,t),Math.min(r.to,n)))}return i}}class mv{constructor(t,n){this.data=t,this.id=n}token(t,n){let{parser:i}=n.p;OAe(this.data,t,n,this.id,i.data,i.tokenPrecTable)}}mv.prototype.contextual=mv.prototype.fallback=mv.prototype.extend=!1;class qN{constructor(t,n,i){this.precTable=n,this.elseToken=i,this.data=typeof t=="string"?qw(t):t}token(t,n){let i=t.pos,r=0;for(;;){let s=t.next<0,a=t.resolveOffset(1,1);if(OAe(this.data,t,n,0,this.data,this.precTable),t.token.value>-1)break;if(this.elseToken==null)return;if(s||r++,a==null)break;t.reset(a,t.token)}r&&(t.reset(i,t.token),t.acceptToken(this.elseToken,r))}}qN.prototype.contextual=mv.prototype.fallback=mv.prototype.extend=!1;class zs{constructor(t,n={}){this.token=t,this.contextual=!!n.contextual,this.fallback=!!n.fallback,this.extend=!!n.extend}}function OAe(e,t,n,i,r,s){let a=0,l=1<0){let g=e[m];if(c.allows(g)&&(t.token.value==-1||t.token.value==g||iAt(g,t.token.value,r,s))){t.acceptToken(g);break}}let d=t.next,f=0,h=e[a+2];if(t.next<0&&h>f&&e[u+h*3-3]==65535){a=e[u+h*3-1];continue e}for(;f>1,g=u+m+(m<<1),b=e[g],v=e[g+1]||65536;if(d=v)f=m+1;else{a=e[g+2],t.advance();continue e}}break}}function jJ(e,t,n){for(let i=t,r;(r=e[i])!=65535;i++)if(r==n)return i-t;return-1}function iAt(e,t,n,i){let r=jJ(n,i,t);return r<0||jJ(n,i,e)t)&&!i.type.isError)return n<0?Math.max(0,Math.min(i.to-1,t-25)):Math.min(e.length,Math.max(i.from+1,t+25));if(n<0?i.prevSibling():i.nextSibling())break;if(!i.parent())return n<0?0:e.length}}let rAt=class{constructor(t,n){this.fragments=t,this.nodeSet=n,this.i=0,this.fragment=null,this.safeFrom=-1,this.safeTo=-1,this.trees=[],this.start=[],this.index=[],this.nextFragment()}nextFragment(){let t=this.fragment=this.i==this.fragments.length?null:this.fragments[this.i++];if(t){for(this.safeFrom=t.openStart?RJ(t.tree,t.from+t.offset,1)-t.offset:t.from,this.safeTo=t.openEnd?RJ(t.tree,t.to+t.offset,-1)-t.offset:t.to;this.trees.length;)this.trees.pop(),this.start.pop(),this.index.pop();this.trees.push(t.tree),this.start.push(-t.offset),this.index.push(0),this.nextStart=this.safeFrom}else this.nextStart=1e9}nodeAt(t){if(tt)return this.nextStart=a,null;if(s instanceof hi){if(a==t){if(a=Math.max(this.safeFrom,t)&&(this.trees.push(s),this.start.push(a),this.index.push(0))}else this.index[n]++,this.nextStart=a+s.length}}};class sAt{constructor(t,n){this.stream=n,this.tokens=[],this.mainToken=null,this.actions=[],this.tokens=t.tokenizers.map(i=>new DA)}getActions(t){let n=0,i=null,{parser:r}=t.p,{tokenizers:s}=r,a=r.stateSlot(t.state,3),l=t.curContext?t.curContext.hash:0,c=0;for(let u=0;uf.end+25&&(c=Math.max(f.lookAhead,c)),f.value!=0)){let h=n;if(f.extended>-1&&(n=this.addActions(t,f.extended,f.end,n)),n=this.addActions(t,f.value,f.end,n),!d.extend&&(i=f,n>h))break}}for(;this.actions.length>n;)this.actions.pop();return c&&t.setLookAhead(c),!i&&t.pos==this.stream.end&&(i=new DA,i.value=t.p.parser.eofTerm,i.start=i.end=t.pos,n=this.addActions(t,i.value,i.end,n)),this.mainToken=i,this.actions}getMainToken(t){if(this.mainToken)return this.mainToken;let n=new DA,{pos:i,p:r}=t;return n.start=i,n.end=Math.min(i+1,r.stream.end),n.value=i==r.stream.end?r.parser.eofTerm:0,n}updateCachedToken(t,n,i){let r=this.stream.clipPos(i.pos);if(n.token(this.stream.reset(r,t),i),t.value>-1){let{parser:s}=i.p;for(let a=0;a=0&&i.p.parser.dialect.allows(l>>1)){l&1?t.extended=l>>1:t.value=l>>1;break}}}else t.value=0,t.end=this.stream.clipPos(r+1)}putAction(t,n,i,r){for(let s=0;st.bufferLength*4?new rAt(i,t.nodeSet):null}get parsedPos(){return this.minStackPos}advance(){let t=this.stacks,n=this.minStackPos,i=this.stacks=[],r,s;if(this.bigReductionCount>300&&t.length==1){let[a]=t;for(;a.forceReduce()&&a.stack.length&&a.stack[a.stack.length-2]>=this.lastBigReductionStart;);this.bigReductionCount=this.lastBigReductionSize=0}for(let a=0;an)i.push(l);else{if(this.advanceStack(l,i,t))continue;{r||(r=[],s=[]),r.push(l);let c=this.tokens.getMainToken(l);s.push(c.value,c.end)}}break}}if(!i.length){let a=r&&lAt(r);if(a)return Dl&&console.log("Finish with "+this.stackID(a)),this.stackToTree(a);if(this.parser.strict)throw Dl&&r&&console.log("Stuck with token "+(this.tokens.mainToken?this.parser.getName(this.tokens.mainToken.value):"none")),new SyntaxError("No parse at "+n);this.recovering||(this.recovering=5)}if(this.recovering&&r){let a=this.stoppedAt!=null&&r[0].pos>this.stoppedAt?r[0]:this.runRecovery(r,s,i);if(a)return Dl&&console.log("Force-finish "+this.stackID(a)),this.stackToTree(a.forceAll())}if(this.recovering){let a=this.recovering==1?1:this.recovering*3;if(i.length>a)for(i.sort((l,c)=>c.score-l.score);i.length>a;)i.pop();i.some(l=>l.reducePos>n)&&this.recovering--}else if(i.length>1){e:for(let a=0;a500&&u.buffer.length>500)if((l.score-u.score||l.buffer.length-u.buffer.length)>0)i.splice(c--,1);else{i.splice(a--,1);continue e}}}i.length>12&&(i.sort((a,l)=>l.score-a.score),i.splice(12,i.length-12))}this.minStackPos=i[0].pos;for(let a=1;a ":"";if(this.stoppedAt!=null&&r>this.stoppedAt)return t.forceReduce()?t:null;if(this.fragments){let u=t.curContext&&t.curContext.tracker.strict,d=u?t.curContext.hash:0;for(let f=this.fragments.nodeAt(r);f;){let h=this.parser.nodeSet.types[f.type.id]==f.type?s.getGoto(t.state,f.type.id):-1;if(h>-1&&f.length&&(!u||(f.prop(Ln.contextHash)||0)==d))return t.useNode(f,h),Dl&&console.log(a+this.stackID(t)+` (via reuse of ${s.getName(f.type.id)})`),!0;if(!(f instanceof hi)||f.children.length==0||f.positions[0]>0)break;let m=f.children[0];if(m instanceof hi&&f.positions[0]==0)f=m;else break}}let l=s.stateSlot(t.state,4);if(l>0)return t.reduce(l),Dl&&console.log(a+this.stackID(t)+` (via always-reduce ${s.getName(l&65535)})`),!0;if(t.stack.length>=8400)for(;t.stack.length>6e3&&t.forceReduce(););let c=this.tokens.getActions(t);for(let u=0;ur?n.push(g):i.push(g)}return!1}advanceFully(t,n){let i=t.pos;for(;;){if(!this.advanceStack(t,null,null))return!1;if(t.pos>i)return IJ(t,n),!0}}runRecovery(t,n,i){let r=null,s=!1;for(let a=0;a ":"";if(l.deadEnd&&(s||(s=!0,l.restart(),Dl&&console.log(d+this.stackID(l)+" (restarted)"),this.advanceFully(l,i))))continue;let f=l.split(),h=d;for(let m=0;m<10&&f.forceReduce()&&(Dl&&console.log(h+this.stackID(f)+" (via force-reduce)"),!this.advanceFully(f,i));m++)Dl&&(h=this.stackID(f)+" -> ");for(let m of l.recoverByInsert(c))Dl&&console.log(d+this.stackID(m)+" (via recover-insert)"),this.advanceFully(m,i);this.stream.end>l.pos?(u==l.pos&&(u++,c=0),l.recoverByDelete(c,u),Dl&&console.log(d+this.stackID(l)+` (via recover-delete ${this.parser.getName(c)})`),IJ(l,i)):(!r||r.scoree;class _I{constructor(t){this.start=t.start,this.shift=t.shift||E5,this.reduce=t.reduce||E5,this.reuse=t.reuse||E5,this.hash=t.hash||(()=>0),this.strict=t.strict!==!1}}class Rh extends yI{constructor(t){if(super(),this.wrappers=[],t.version!=14)throw new RangeError(`Parser version (${t.version}) doesn't match runtime version (14)`);let n=t.nodeNames.split(" ");this.minRepeatTerm=n.length;for(let l=0;lt.topRules[l][1]),r=[];for(let l=0;l=0)s(d,c,l[u++]);else{let f=l[u+-d];for(let h=-d;h>0;h--)s(l[u++],c,f);u++}}}this.nodeSet=new t1(n.map((l,c)=>ea.define({name:c>=this.minRepeatTerm?void 0:l,id:c,props:r[c],top:i.indexOf(c)>-1,error:c==0,skipped:t.skippedNodes&&t.skippedNodes.indexOf(c)>-1}))),t.propSources&&(this.nodeSet=this.nodeSet.extend(...t.propSources)),this.strict=!1,this.bufferLength=xTe;let a=qw(t.tokenData);this.context=t.context,this.specializerSpecs=t.specialized||[],this.specialized=new Uint16Array(this.specializerSpecs.length);for(let l=0;ltypeof l=="number"?new mv(a,l):l),this.topRules=t.topRules,this.dialects=t.dialects||{},this.dynamicPrecedences=t.dynamicPrecedences||null,this.tokenPrecTable=t.tokenPrec,this.termNames=t.termNames||null,this.maxNode=this.nodeSet.types.length-1,this.dialect=this.parseDialect(),this.top=this.topRules[Object.keys(this.topRules)[0]]}createParse(t,n,i){let r=new aAt(this,t,n,i);for(let s of this.wrappers)r=s(r,t,n,i);return r}getGoto(t,n,i=!1){let r=this.goto;if(n>=r[0])return-1;for(let s=r[n+1];;){let a=r[s++],l=a&1,c=r[s++];if(l&&i)return c;for(let u=s+(a>>1);s0}validAction(t,n){return!!this.allActions(t,i=>i==n?!0:null)}allActions(t,n){let i=this.stateSlot(t,4),r=i?n(i):void 0;for(let s=this.stateSlot(t,1);r==null;s+=3){if(this.data[s]==65535)if(this.data[s+1]==1)s=Lf(this.data,s+2);else break;r=n(Lf(this.data,s+1))}return r}nextStates(t){let n=[];for(let i=this.stateSlot(t,1);;i+=3){if(this.data[i]==65535)if(this.data[i+1]==1)i=Lf(this.data,i+2);else break;if(!(this.data[i+2]&1)){let r=this.data[i+1];n.some((s,a)=>a&1&&s==r)||n.push(this.data[i],r)}}return n}configure(t){let n=Object.assign(Object.create(Rh.prototype),this);if(t.props&&(n.nodeSet=this.nodeSet.extend(...t.props)),t.top){let i=this.topRules[t.top];if(!i)throw new RangeError(`Invalid top rule name ${t.top}`);n.top=i}return t.tokenizers&&(n.tokenizers=this.tokenizers.map(i=>{let r=t.tokenizers.find(s=>s.from==i);return r?r.to:i})),t.specializers&&(n.specializers=this.specializers.slice(),n.specializerSpecs=this.specializerSpecs.map((i,r)=>{let s=t.specializers.find(l=>l.from==i.external);if(!s)return i;let a=Object.assign(Object.assign({},i),{external:s.to});return n.specializers[r]=PJ(a),a})),t.contextTracker&&(n.context=t.contextTracker),t.dialect&&(n.dialect=this.parseDialect(t.dialect)),t.strict!=null&&(n.strict=t.strict),t.wrap&&(n.wrappers=n.wrappers.concat(t.wrap)),t.bufferLength!=null&&(n.bufferLength=t.bufferLength),n}hasWrappers(){return this.wrappers.length>0}getName(t){return this.termNames?this.termNames[t]:String(t<=this.maxNode&&this.nodeSet.types[t].name||t)}get eofTerm(){return this.maxNode+1}get topNode(){return this.nodeSet.types[this.top[1]]}dynamicPrecedence(t){let n=this.dynamicPrecedences;return n==null?0:n[t]||0}parseDialect(t){let n=Object.keys(this.dialects),i=n.map(()=>!1);if(t)for(let s of t.split(" ")){let a=n.indexOf(s);a>=0&&(i[a]=!0)}let r=null;for(let s=0;si)&&n.p.parser.stateFlag(n.state,2)&&(!t||t.scoree.external(n,i)<<1|t}return e.get}const cAt=316,uAt=317,DJ=1,dAt=2,fAt=3,hAt=4,pAt=318,mAt=320,gAt=321,bAt=5,yAt=6,vAt=0,Y$=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],SAe=125,xAt=59,Z$=47,wAt=42,OAt=43,SAt=45,kAt=60,EAt=44,CAt=63,TAt=46,AAt=91,_At=new _I({start:!1,shift(e,t){return t==bAt||t==yAt||t==mAt?e:t==gAt},strict:!1}),NAt=new zs((e,t)=>{let{next:n}=e;(n==SAe||n==-1||t.context)&&e.acceptToken(pAt)},{contextual:!0,fallback:!0}),jAt=new zs((e,t)=>{let{next:n}=e,i;Y$.indexOf(n)>-1||n==Z$&&((i=e.peek(1))==Z$||i==wAt)||n!=SAe&&n!=xAt&&n!=-1&&!t.context&&e.acceptToken(cAt)},{contextual:!0}),RAt=new zs((e,t)=>{e.next==AAt&&!t.context&&e.acceptToken(uAt)},{contextual:!0}),IAt=new zs((e,t)=>{let{next:n}=e;if(n==OAt||n==SAt){if(e.advance(),n==e.next){e.advance();let i=!t.context&&t.canShift(DJ);e.acceptToken(i?DJ:dAt)}}else n==CAt&&e.peek(1)==TAt&&(e.advance(),e.advance(),(e.next<48||e.next>57)&&e.acceptToken(fAt))},{contextual:!0});function C5(e,t){return e>=65&&e<=90||e>=97&&e<=122||e==95||e>=192||!t&&e>=48&&e<=57}const PAt=new zs((e,t)=>{if(e.next!=kAt||!t.dialectEnabled(vAt)||(e.advance(),e.next==Z$))return;let n=0;for(;Y$.indexOf(e.next)>-1;)e.advance(),n++;if(C5(e.next,!0)){for(e.advance(),n++;C5(e.next,!1);)e.advance(),n++;for(;Y$.indexOf(e.next)>-1;)e.advance(),n++;if(e.next==EAt)return;for(let i=0;;i++){if(i==7){if(!C5(e.next,!0))return;break}if(e.next!="extends".charCodeAt(i))break;e.advance(),n++}}e.acceptToken(hAt,-n)}),DAt=Vh({"get set async static":ne.modifier,"for while do if else switch try catch finally return throw break continue default case defer":ne.controlKeyword,"in of await yield void typeof delete instanceof as satisfies":ne.operatorKeyword,"let var const using function class extends":ne.definitionKeyword,"import export from":ne.moduleKeyword,"with debugger new":ne.keyword,TemplateString:ne.special(ne.string),super:ne.atom,BooleanLiteral:ne.bool,this:ne.self,null:ne.null,Star:ne.modifier,VariableName:ne.variableName,"CallExpression/VariableName TaggedTemplateExpression/VariableName":ne.function(ne.variableName),VariableDefinition:ne.definition(ne.variableName),Label:ne.labelName,PropertyName:ne.propertyName,PrivatePropertyName:ne.special(ne.propertyName),"CallExpression/MemberExpression/PropertyName":ne.function(ne.propertyName),"FunctionDeclaration/VariableDefinition":ne.function(ne.definition(ne.variableName)),"ClassDeclaration/VariableDefinition":ne.definition(ne.className),"NewExpression/VariableName":ne.className,PropertyDefinition:ne.definition(ne.propertyName),PrivatePropertyDefinition:ne.definition(ne.special(ne.propertyName)),UpdateOp:ne.updateOperator,"LineComment Hashbang":ne.lineComment,BlockComment:ne.blockComment,Number:ne.number,String:ne.string,Escape:ne.escape,ArithOp:ne.arithmeticOperator,LogicOp:ne.logicOperator,BitOp:ne.bitwiseOperator,CompareOp:ne.compareOperator,RegExp:ne.regexp,Equals:ne.definitionOperator,Arrow:ne.function(ne.punctuation),": Spread":ne.punctuation,"( )":ne.paren,"[ ]":ne.squareBracket,"{ }":ne.brace,"InterpolationStart InterpolationEnd":ne.special(ne.brace),".":ne.derefOperator,", ;":ne.separator,"@":ne.meta,TypeName:ne.typeName,TypeDefinition:ne.definition(ne.typeName),"type enum interface implements namespace module declare":ne.definitionKeyword,"abstract global Privacy readonly override":ne.modifier,"is keyof unique infer asserts":ne.operatorKeyword,JSXAttributeValue:ne.attributeValue,JSXText:ne.content,"JSXStartTag JSXStartCloseTag JSXSelfCloseEndTag JSXEndTag":ne.angleBracket,"JSXIdentifier JSXNameSpacedName":ne.tagName,"JSXAttribute/JSXIdentifier JSXAttribute/JSXNameSpacedName":ne.attributeName,"JSXBuiltin/JSXIdentifier":ne.standard(ne.tagName)}),MAt={__proto__:null,export:20,as:25,from:33,default:36,async:41,function:42,in:52,out:55,const:56,extends:60,this:64,true:72,false:72,null:84,void:88,typeof:92,super:108,new:142,delete:154,yield:163,await:167,class:172,public:235,private:235,protected:235,readonly:237,instanceof:256,satisfies:259,import:292,keyof:349,unique:353,infer:359,asserts:395,is:397,abstract:417,implements:419,type:421,let:424,var:426,using:429,interface:435,enum:439,namespace:445,module:447,declare:451,global:455,defer:471,for:476,of:485,while:488,with:492,do:496,if:500,else:502,switch:506,case:512,try:518,catch:522,finally:526,return:530,throw:534,break:538,continue:542,debugger:546},LAt={__proto__:null,async:129,get:131,set:133,declare:195,public:197,private:197,protected:197,static:199,abstract:201,override:203,readonly:209,accessor:211,new:401},$At={__proto__:null,"<":193},FAt=Rh.deserialize({version:14,states:"$F|Q%TQlOOO%[QlOOO'_QpOOP(lO`OOO*zQ!0MxO'#CiO+RO#tO'#CjO+aO&jO'#CjO+oO#@ItO'#DaO.QQlO'#DgO.bQlO'#DrO%[QlO'#DzO0fQlO'#ESOOQ!0Lf'#E['#E[O1PQ`O'#EXOOQO'#Ep'#EpOOQO'#Il'#IlO1XQ`O'#GsO1dQ`O'#EoO1iQ`O'#EoO3hQ!0MxO'#JrO6[Q!0MxO'#JsO6uQ`O'#F]O6zQ,UO'#FtOOQ!0Lf'#Ff'#FfO7VO7dO'#FfO9XQMhO'#F|O9`Q`O'#F{OOQ!0Lf'#Js'#JsOOQ!0Lb'#Jr'#JrO9eQ`O'#GwOOQ['#K_'#K_O9pQ`O'#IYO9uQ!0LrO'#IZOOQ['#J`'#J`OOQ['#I_'#I_Q`QlOOQ`QlOOO9}Q!L^O'#DvO:UQlO'#EOO:]QlO'#EQO9kQ`O'#GsO:dQMhO'#CoO:rQ`O'#EnO:}Q`O'#EyO;hQMhO'#FeO;xQ`O'#GsOOQO'#K`'#K`O;}Q`O'#K`O<]Q`O'#G{O<]Q`O'#G|O<]Q`O'#HOO9kQ`O'#HRO=SQ`O'#HUO>kQ`O'#CeO>{Q`O'#HcO?TQ`O'#HiO?TQ`O'#HkO`QlO'#HmO?TQ`O'#HoO?TQ`O'#HrO?YQ`O'#HxO?_Q!0LsO'#IOO%[QlO'#IQO?jQ!0LsO'#ISO?uQ!0LsO'#IUO9uQ!0LrO'#IWO@QQ!0MxO'#CiOASQpO'#DlQOQ`OOO%[QlO'#EQOAjQ`O'#ETO:dQMhO'#EnOAuQ`O'#EnOBQQ!bO'#FeOOQ['#Cg'#CgOOQ!0Lb'#Dq'#DqOOQ!0Lb'#Jv'#JvO%[QlO'#JvOOQO'#Jy'#JyOOQO'#Ih'#IhOCQQpO'#EgOOQ!0Lb'#Ef'#EfOOQ!0Lb'#J}'#J}OC|Q!0MSO'#EgODWQpO'#EWOOQO'#Jx'#JxODlQpO'#JyOEyQpO'#EWODWQpO'#EgPFWO&2DjO'#CbPOOO)CD})CD}OOOO'#I`'#I`OFcO#tO,59UOOQ!0Lh,59U,59UOOOO'#Ia'#IaOFqO&jO,59UOGPQ!L^O'#DcOOOO'#Ic'#IcOGWO#@ItO,59{OOQ!0Lf,59{,59{OGfQlO'#IdOGyQ`O'#JtOIxQ!fO'#JtO+}QlO'#JtOJPQ`O,5:ROJgQ`O'#EpOJtQ`O'#KTOKPQ`O'#KSOKPQ`O'#KSOKXQ`O,5;^OK^Q`O'#KROOQ!0Ln,5:^,5:^OKeQlO,5:^OMcQ!0MxO,5:fONSQ`O,5:nONmQ!0LrO'#KQONtQ`O'#KPO9eQ`O'#KPO! YQ`O'#KPO! bQ`O,5;]O! gQ`O'#KPO!#lQ!fO'#JsOOQ!0Lh'#Ci'#CiO%[QlO'#ESO!$[Q!fO,5:sOOQS'#Jz'#JzOOQO-EtOOQ['#Jh'#JhOOQ[,5>u,5>uOOQ[-E<]-E<]O!TO`QlO,5>VO!LOQ`O,5>XO`QlO,5>ZO!LTQ`O,5>^O!LYQlO,5>dOOQ[,5>j,5>jO%[QlO,5>jO9uQ!0LrO,5>lOOQ[,5>n,5>nO#!dQ`O,5>nOOQ[,5>p,5>pO#!dQ`O,5>pOOQ[,5>r,5>rO##QQpO'#D_O%[QlO'#JvO##sQpO'#JvO##}QpO'#DmO#$`QpO'#DmO#&qQlO'#DmO#&xQ`O'#JuO#'QQ`O,5:WO#'VQ`O'#EtO#'eQ`O'#KUO#'mQ`O,5;_O#'rQpO'#DmO#(PQpO'#EVOOQ!0Lf,5:o,5:oO%[QlO,5:oO#(WQ`O,5:oO?YQ`O,5;YO!CUQpO,5;YO!C^QMhO,5;YO:dQMhO,5;YO#(`Q`O,5@bO#(eQ07dO,5:sOOQO-EPO$6^Q`O,5>POOQ[1G3i1G3iO`QlO1G3iOOQ[1G3o1G3oOOQ[1G3q1G3qO?TQ`O1G3sO$6cQlO1G3uO$:gQlO'#HtOOQ[1G3x1G3xO$:tQ`O'#HzO?YQ`O'#H|OOQ[1G4O1G4OO$:|QlO1G4OO9uQ!0LrO1G4UOOQ[1G4W1G4WOOQ!0Lb'#G_'#G_O9uQ!0LrO1G4YO9uQ!0LrO1G4[O$?TQ`O,5@bO!)[QlO,5;`O9eQ`O,5;`O?YQ`O,5:XO!)[QlO,5:XO!CUQpO,5:XO$?YQ?MtO,5:XOOQO,5;`,5;`O$?dQpO'#IeO$?zQ`O,5@aOOQ!0Lf1G/r1G/rO$@SQpO'#IkO$@^Q`O,5@pOOQ!0Lb1G0y1G0yO#$`QpO,5:XOOQO'#Ig'#IgO$@fQpO,5:qOOQ!0Ln,5:q,5:qO#(ZQ`O1G0ZOOQ!0Lf1G0Z1G0ZO%[QlO1G0ZOOQ!0Lf1G0t1G0tO?YQ`O1G0tO!CUQpO1G0tO!C^QMhO1G0tOOQ!0Lb1G5|1G5|O!ByQ!0LrO1G0^OOQO1G0m1G0mO%[QlO1G0mO$@mQ!0LrO1G0mO$@xQ!0LrO1G0mO!CUQpO1G0^ODWQpO1G0^O$AWQ!0LrO1G0mOOQO1G0^1G0^O$AlQ!0MxO1G0mPOOO-E<[-E<[POOO1G.h1G.hOOOO1G/i1G/iO$AvQ!bO,5QQpO,5@}OOQ!0Lb1G3c1G3cOOQ[7+$V7+$VO@zQ`O7+$VO9uQ!0LrO7+$VO%>]Q`O7+$VO%[QlO1G6lO%[QlO1G6mO%>bQ!0LrO1G6lO%>lQlO1G3kO%>sQ`O1G3kO%>xQlO1G3kOOQ[7+)T7+)TO9uQ!0LrO7+)_O`QlO7+)aOOQ['#Kh'#KhOOQ['#JS'#JSO%?PQlO,5>`OOQ[,5>`,5>`O%[QlO'#HuO%?^Q`O'#HwOOQ[,5>f,5>fO9eQ`O,5>fOOQ[,5>h,5>hOOQ[7+)j7+)jOOQ[7+)p7+)pOOQ[7+)t7+)tOOQ[7+)v7+)vO%?cQpO1G5|O%?}Q?MtO1G0zO%@XQ`O1G0zOOQO1G/s1G/sO%@dQ?MtO1G/sO?YQ`O1G/sO!)[QlO'#DmOOQO,5?P,5?POOQO-ERQ`O7+,WO&>WQ`O7+,XO%[QlO7+,WO%[QlO7+,XOOQ[7+)V7+)VO&>]Q`O7+)VO&>bQlO7+)VO&>iQ`O7+)VOOQ[<nQ`O,5>aOOQ[,5>c,5>cO&>sQ`O1G4QO9eQ`O7+&fO!)[QlO7+&fOOQO7+%_7+%_O&>xQ?MtO1G6ZO?YQ`O7+%_OOQ!0Lf<yQ?MvO,5?aO'@|Q?MvO,5?cO'CPQ?MvO7+'|O'DuQMjOG27TOOQO<VO!l$xO#jROe!iOpkOrPO(T)]O(VTO(YUO(aVO(o[O~O!]$_Oa$qa'z$qa'w$qa!k$qa!Y$qa!_$qa%i$qa!g$qa~Ol)dO~P!&zOh%VOp%WOr%XOs$tOt$tOz%YO|%ZO!O%]O!S${O!_$|O!i%bO!l$xO#j%cO$W%`O$t%^O$v%_O$y%aO(T(vO(VTO(YUO(a$uO(y$}O(z%PO~Og(pP~P!,TO!Q)iO!g)hO!_$^X$Z$^X$]$^X$_$^X$f$^X~O!g)hO!_({X$Z({X$]({X$_({X$f({X~O!Q)iO~P!.^O!Q)iO!_({X$Z({X$]({X$_({X$f({X~O!_)kO$Z)oO$])jO$_)jO$f)pO~O![)sO~P!)[O$]$hO$_$gO$f)wO~On$zX!Q$zX#S$zX'y$zX(y$zX(z$zX~OgmXg$zXnmX!]mX#`mX~P!0SOx)yO(b)zO(c)|O~On*VO!Q*OO'y*PO(y$}O(z%PO~Og)}O~P!1WOg*WO~Oh%VOr%XOs$tOt$tOz%YO|%ZO!OVO!l$xO#jVO!l$xO#jROe!iOpkOrPO(VTO(YUO(aVO(o[O~O(T=QO~P#$qO!]-]O!^(iX~O!^-_O~O!g-VO#`-UO!]#hX!^#hX~O!]-`O!^(xX~O!^-bO~O!c-cO!d-cO(U!lO~P#$`O!^-fO~P'_On-iO!_'`O~O!Y-nO~Os!{a!b!{a!c!{a!d!{a#T!{a#U!{a#V!{a#W!{a#X!{a#[!{a#]!{a(U!{a(V!{a(Y!{a(e!{a(o!{a~P!#vO!p-sO#`-qO~PChO!c-uO!d-uO(U!lO~PDWOa%nO#`-qO'z%nO~Oa%nO!g#vO#`-qO'z%nO~Oa%nO!g#vO!p-sO#`-qO'z%nO(r'pO~O(P'xO(Q'xO(R-zO~Ov-{O~O!Y'Wa!]'Wa~P!:tO![.PO!Y'WX!]'WX~P%[O!](VO!Y(ha~O!Y(ha~PHRO!](^O!Y(va~O!S%hO![.TO!_%iO(T%gO!Y'^X!]'^X~O#`.VO!](ta!k(taa(ta'z(ta~O!g#vO~P#,wO!](jO!k(sa~O!S%hO!_%iO#j.ZO(T%gO~Op.`O!S%hO![.]O!_%iO!|]O#i._O#j.]O(T%gO!]'aX!k'aX~OR.dO!l#xO~Oh%VOn.gO!_'`O%i.fO~Oa#ci!]#ci'z#ci'w#ci!Y#ci!k#civ#ci!_#ci%i#ci!g#ci~P!:tOn>]O!Q*OO'y*PO(y$}O(z%PO~O#k#_aa#_a#`#_a'z#_a!]#_a!k#_a!_#_a!Y#_a~P#/sO#k(`XP(`XR(`X[(`Xa(`Xj(`Xr(`X!S(`X!l(`X!p(`X#R(`X#n(`X#o(`X#p(`X#q(`X#r(`X#s(`X#t(`X#u(`X#v(`X#x(`X#z(`X#{(`X'z(`X(a(`X(r(`X!k(`X!Y(`X'w(`Xv(`X!_(`X%i(`X!g(`X~P!6kO!].tO!k(kX~P!:tO!k.wO~O!Y.yO~OP$[OR#zO!Q#yO!S#{O!l#xO!p$[O(aVO[#mia#mij#mir#mi!]#mi#R#mi#o#mi#p#mi#q#mi#r#mi#s#mi#t#mi#u#mi#v#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#n#mi~P#3cO#n$OO~P#3cOP$[OR#zOr$aO!Q#yO!S#{O!l#xO!p$[O#n$OO#o$PO#p$PO#q$PO(aVO[#mia#mij#mi!]#mi#R#mi#s#mi#t#mi#u#mi#v#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#r#mi~P#6QO#r$QO~P#6QOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO(aVOa#mi!]#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#v#mi~P#8oOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO#v$SO(aVO(z#}Oa#mi!]#mi#z#mi#{#mi'z#mi(r#mi(y#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#x$UO~P#;VO#x#mi~P#;VO#v$SO~P#8oOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO#v$SO#x$UO(aVO(y#|O(z#}Oa#mi!]#mi#{#mi'z#mi(r#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#z#mi~P#={O#z$WO~P#={OP]XR]X[]Xj]Xr]X!Q]X!S]X!l]X!p]X#R]X#S]X#`]X#kfX#n]X#o]X#p]X#q]X#r]X#s]X#t]X#u]X#v]X#x]X#z]X#{]X$Q]X(a]X(r]X(y]X(z]X!]]X!^]X~O$O]X~P#@jOP$[OR#zO[]O!Q*OO'y*PO(y$}O(z%POP#miR#mi!S#mi!l#mi!p#mi#n#mi#o#mi#p#mi#q#mi(a#mi~P#EyO!]/POg(pX~P!1WOg/RO~Oa$Pi!]$Pi'z$Pi'w$Pi!Y$Pi!k$Piv$Pi!_$Pi%i$Pi!g$Pi~P!:tO$]/SO$_/SO~O$]/TO$_/TO~O!g)hO#`/UO!_$cX$Z$cX$]$cX$_$cX$f$cX~O![/VO~O!_)kO$Z/XO$])jO$_)jO$f/YO~O!]VO!l$xO#j^O!Q*OO'y*PO(y$}O(z%POP#miR#mi!S#mi!l#mi!p#mi#n#mi#o#mi#p#mi#q#mi(a#mi~P&,QO#S$dOP(`XR(`X[(`Xj(`Xn(`Xr(`X!Q(`X!S(`X!l(`X!p(`X#R(`X#n(`X#o(`X#p(`X#q(`X#r(`X#s(`X#t(`X#u(`X#v(`X#x(`X#z(`X#{(`X$O(`X'y(`X(a(`X(r(`X(y(`X(z(`X!](`X!^(`X~O$O$Pi!]$Pi!^$Pi~P#BwO$O!ri!^!ri~P$+oOg']a!]']a~P!1WO!^7nO~O!]'da!^'da~P#BwO!Y7oO~P#/sO!g#vO(r'pO!]'ea!k'ea~O!]/pO!k)Oi~O!]/pO!g#vO!k)Oi~Og$|q!]$|q#`$|q$O$|q~P!1WO!Y'ga!]'ga~P#/sO!g7vO~O!]/yO!Y)Pi~P#/sO!]/yO!Y)Pi~O!Y7yO~Oh%VOr8OO!l%eO(r'pO~Oj8QO!g#vO~Or8TO!g#vO(r'pO~O!Q*OO'y*PO(z%POn'ja(y'ja!]'ja#`'ja~Og'ja$O'ja~P&5RO!Q*OO'y*POn'la(y'la(z'la!]'la#`'la~Og'la$O'la~P&5tOg(_q!](_q~P!1WO#`8VOg(_q!](_q~P!1WO!Y8WO~Og%Oq!]%Oq#`%Oq$O%Oq~P!1WOa$oy!]$oy'z$oy'w$oy!Y$oy!k$oyv$oy!_$oy%i$oy!g$oy~P!:tO!g6rO~O!]5[O!_)Qa~O!_'`OP$TaR$Ta[$Taj$Tar$Ta!Q$Ta!S$Ta!]$Ta!l$Ta!p$Ta#R$Ta#n$Ta#o$Ta#p$Ta#q$Ta#r$Ta#s$Ta#t$Ta#u$Ta#v$Ta#x$Ta#z$Ta#{$Ta(a$Ta(r$Ta(y$Ta(z$Ta~O%i7WO~P&8fO%^8[Oa%[i!_%[i'z%[i!]%[i~Oa#cy!]#cy'z#cy'w#cy!Y#cy!k#cyv#cy!_#cy%i#cy!g#cy~P!:tO[8^O~Ob8`O(T+qO(VTO(YUO~O!]1TO!^)Xi~O`8dO~O(e(|O!]'pX!^'pX~O!]5uO!^)Ua~O!^8nO~P%;eO(o!sO~P$&YO#[8oO~O!_1oO~O!_1oO%i8qO~On8tO!_1oO%i8qO~O[8yO!]'sa!^'sa~O!]1zO!^)Vi~O!k8}O~O!k9OO~O!k9RO~O!k9RO~P%[Oa9TO~O!g9UO~O!k9VO~O!](wi!^(wi~P#BwOa%nO#`9_O'z%nO~O!](ty!k(tya(ty'z(ty~P!:tO!](jO!k(sy~O%i9bO~P&8fO!_'`O%i9bO~O#k$|qP$|qR$|q[$|qa$|qj$|qr$|q!S$|q!]$|q!l$|q!p$|q#R$|q#n$|q#o$|q#p$|q#q$|q#r$|q#s$|q#t$|q#u$|q#v$|q#x$|q#z$|q#{$|q'z$|q(a$|q(r$|q!k$|q!Y$|q'w$|q#`$|qv$|q!_$|q%i$|q!g$|q~P#/sO#k'jaP'jaR'ja['jaa'jaj'jar'ja!S'ja!l'ja!p'ja#R'ja#n'ja#o'ja#p'ja#q'ja#r'ja#s'ja#t'ja#u'ja#v'ja#x'ja#z'ja#{'ja'z'ja(a'ja(r'ja!k'ja!Y'ja'w'jav'ja!_'ja%i'ja!g'ja~P&5RO#k'laP'laR'la['laa'laj'lar'la!S'la!l'la!p'la#R'la#n'la#o'la#p'la#q'la#r'la#s'la#t'la#u'la#v'la#x'la#z'la#{'la'z'la(a'la(r'la!k'la!Y'la'w'lav'la!_'la%i'la!g'la~P&5tO#k%OqP%OqR%Oq[%Oqa%Oqj%Oqr%Oq!S%Oq!]%Oq!l%Oq!p%Oq#R%Oq#n%Oq#o%Oq#p%Oq#q%Oq#r%Oq#s%Oq#t%Oq#u%Oq#v%Oq#x%Oq#z%Oq#{%Oq'z%Oq(a%Oq(r%Oq!k%Oq!Y%Oq'w%Oq#`%Oqv%Oq!_%Oq%i%Oq!g%Oq~P#/sO!]'Yi!k'Yi~P!:tO$O#cq!]#cq!^#cq~P#BwO(y$}OP%aaR%aa[%aaj%aar%aa!S%aa!l%aa!p%aa#R%aa#n%aa#o%aa#p%aa#q%aa#r%aa#s%aa#t%aa#u%aa#v%aa#x%aa#z%aa#{%aa$O%aa(a%aa(r%aa!]%aa!^%aa~On%aa!Q%aa'y%aa(z%aa~P&IyO(z%POP%caR%ca[%caj%car%ca!S%ca!l%ca!p%ca#R%ca#n%ca#o%ca#p%ca#q%ca#r%ca#s%ca#t%ca#u%ca#v%ca#x%ca#z%ca#{%ca$O%ca(a%ca(r%ca!]%ca!^%ca~On%ca!Q%ca'y%ca(y%ca~P&LQOn>^O!Q*OO'y*PO(z%PO~P&IyOn>^O!Q*OO'y*PO(y$}O~P&LQOR0kO!Q0kO!S0lO#S$dOP}a[}aj}an}ar}a!l}a!p}a#R}a#n}a#o}a#p}a#q}a#r}a#s}a#t}a#u}a#v}a#x}a#z}a#{}a$O}a'y}a(a}a(r}a(y}a(z}a!]}a!^}a~O!Q*OO'y*POP$saR$sa[$saj$san$sar$sa!S$sa!l$sa!p$sa#R$sa#n$sa#o$sa#p$sa#q$sa#r$sa#s$sa#t$sa#u$sa#v$sa#x$sa#z$sa#{$sa$O$sa(a$sa(r$sa(y$sa(z$sa!]$sa!^$sa~O!Q*OO'y*POP$uaR$ua[$uaj$uan$uar$ua!S$ua!l$ua!p$ua#R$ua#n$ua#o$ua#p$ua#q$ua#r$ua#s$ua#t$ua#u$ua#v$ua#x$ua#z$ua#{$ua$O$ua(a$ua(r$ua(y$ua(z$ua!]$ua!^$ua~On>^O!Q*OO'y*PO(y$}O(z%PO~OP%TaR%Ta[%Taj%Tar%Ta!S%Ta!l%Ta!p%Ta#R%Ta#n%Ta#o%Ta#p%Ta#q%Ta#r%Ta#s%Ta#t%Ta#u%Ta#v%Ta#x%Ta#z%Ta#{%Ta$O%Ta(a%Ta(r%Ta!]%Ta!^%Ta~P''VO$O$mq!]$mq!^$mq~P#BwO$O$oq!]$oq!^$oq~P#BwO!^9oO~O$O9pO~P!1WO!g#vO!]'ei!k'ei~O!g#vO(r'pO!]'ei!k'ei~O!]/pO!k)Oq~O!Y'gi!]'gi~P#/sO!]/yO!Y)Pq~Or9wO!g#vO(r'pO~O[9yO!Y9xO~P#/sO!Y9xO~Oj:PO!g#vO~Og(_y!](_y~P!1WO!]'na!_'na~P#/sOa%[q!_%[q'z%[q!]%[q~P#/sO[:UO~O!]1TO!^)Xq~O`:YO~O#`:ZO!]'pa!^'pa~O!]5uO!^)Ui~P#BwO!S:]O~O!_1oO%i:`O~O(VTO(YUO(e:eO~O!]1zO!^)Vq~O!k:hO~O!k:iO~O!k:jO~O!k:jO~P%[O#`:mO!]#hy!^#hy~O!]#hy!^#hy~P#BwO%i:rO~P&8fO!_'`O%i:rO~O$O#|y!]#|y!^#|y~P#BwOP$|iR$|i[$|ij$|ir$|i!S$|i!l$|i!p$|i#R$|i#n$|i#o$|i#p$|i#q$|i#r$|i#s$|i#t$|i#u$|i#v$|i#x$|i#z$|i#{$|i$O$|i(a$|i(r$|i!]$|i!^$|i~P''VO!Q*OO'y*PO(z%POP'iaR'ia['iaj'ian'iar'ia!S'ia!l'ia!p'ia#R'ia#n'ia#o'ia#p'ia#q'ia#r'ia#s'ia#t'ia#u'ia#v'ia#x'ia#z'ia#{'ia$O'ia(a'ia(r'ia(y'ia!]'ia!^'ia~O!Q*OO'y*POP'kaR'ka['kaj'kan'kar'ka!S'ka!l'ka!p'ka#R'ka#n'ka#o'ka#p'ka#q'ka#r'ka#s'ka#t'ka#u'ka#v'ka#x'ka#z'ka#{'ka$O'ka(a'ka(r'ka(y'ka(z'ka!]'ka!^'ka~O(y$}OP%aiR%ai[%aij%ain%air%ai!Q%ai!S%ai!l%ai!p%ai#R%ai#n%ai#o%ai#p%ai#q%ai#r%ai#s%ai#t%ai#u%ai#v%ai#x%ai#z%ai#{%ai$O%ai'y%ai(a%ai(r%ai(z%ai!]%ai!^%ai~O(z%POP%ciR%ci[%cij%cin%cir%ci!Q%ci!S%ci!l%ci!p%ci#R%ci#n%ci#o%ci#p%ci#q%ci#r%ci#s%ci#t%ci#u%ci#v%ci#x%ci#z%ci#{%ci$O%ci'y%ci(a%ci(r%ci(y%ci!]%ci!^%ci~O$O$oy!]$oy!^$oy~P#BwO$O#cy!]#cy!^#cy~P#BwO!g#vO!]'eq!k'eq~O!]/pO!k)Oy~O!Y'gq!]'gq~P#/sOr:|O!g#vO(r'pO~O[;QO!Y;PO~P#/sO!Y;PO~Og(_!R!](_!R~P!1WOa%[y!_%[y'z%[y!]%[y~P#/sO!]1TO!^)Xy~O!]5uO!^)Uq~O(T;XO~O!_1oO%i;[O~O!k;_O~O%i;dO~P&8fOP$|qR$|q[$|qj$|qr$|q!S$|q!l$|q!p$|q#R$|q#n$|q#o$|q#p$|q#q$|q#r$|q#s$|q#t$|q#u$|q#v$|q#x$|q#z$|q#{$|q$O$|q(a$|q(r$|q!]$|q!^$|q~P''VO!Q*OO'y*PO(z%POP'jaR'ja['jaj'jan'jar'ja!S'ja!l'ja!p'ja#R'ja#n'ja#o'ja#p'ja#q'ja#r'ja#s'ja#t'ja#u'ja#v'ja#x'ja#z'ja#{'ja$O'ja(a'ja(r'ja(y'ja!]'ja!^'ja~O!Q*OO'y*POP'laR'la['laj'lan'lar'la!S'la!l'la!p'la#R'la#n'la#o'la#p'la#q'la#r'la#s'la#t'la#u'la#v'la#x'la#z'la#{'la$O'la(a'la(r'la(y'la(z'la!]'la!^'la~OP%OqR%Oq[%Oqj%Oqr%Oq!S%Oq!l%Oq!p%Oq#R%Oq#n%Oq#o%Oq#p%Oq#q%Oq#r%Oq#s%Oq#t%Oq#u%Oq#v%Oq#x%Oq#z%Oq#{%Oq$O%Oq(a%Oq(r%Oq!]%Oq!^%Oq~P''VOg%e!Z!]%e!Z#`%e!Z$O%e!Z~P!1WO!Y;hO~P#/sOr;iO!g#vO(r'pO~O[;kO!Y;hO~P#/sO!]'pq!^'pq~P#BwO!]#h!Z!^#h!Z~P#BwO#k%e!ZP%e!ZR%e!Z[%e!Za%e!Zj%e!Zr%e!Z!S%e!Z!]%e!Z!l%e!Z!p%e!Z#R%e!Z#n%e!Z#o%e!Z#p%e!Z#q%e!Z#r%e!Z#s%e!Z#t%e!Z#u%e!Z#v%e!Z#x%e!Z#z%e!Z#{%e!Z'z%e!Z(a%e!Z(r%e!Z!k%e!Z!Y%e!Z'w%e!Z#`%e!Zv%e!Z!_%e!Z%i%e!Z!g%e!Z~P#/sOr;tO!g#vO(r'pO~O!Y;uO~P#/sOr;|O!g#vO(r'pO~O!Y;}O~P#/sOP%e!ZR%e!Z[%e!Zj%e!Zr%e!Z!S%e!Z!l%e!Z!p%e!Z#R%e!Z#n%e!Z#o%e!Z#p%e!Z#q%e!Z#r%e!Z#s%e!Z#t%e!Z#u%e!Z#v%e!Z#x%e!Z#z%e!Z#{%e!Z$O%e!Z(a%e!Z(r%e!Z!]%e!Z!^%e!Z~P''VOrROe!iOpkOrPO(T)]O(VTO(YUO(aVO(o[O~O!]WO!l$xO#jgPPP!>oI[PPPPPPPPP!BOP!C]PPI[!DnPI[PI[I[I[I[I[PI[!FQP!I[P!LbP!Lf!Lp!Lt!LtP!IXP!Lx!LxP#!OP#!SI[PI[#!Y#%_CjA^PA^PA^A^P#&lA^A^#)OA^#+vA^#.SA^A^#.r#1W#1W#1]#1f#1W#1qPP#1WPA^#2ZA^#6YA^A^6mPPP#:_PPP#:x#:xP#:xP#;`#:xPP#;fP#;]P#;]#;y#;]#P#>V#>]#>k#>q#>{#?R#?]#?c#?s#?y#@k#@}#AT#AZ#Ai#BO#Cs#DR#DY#Et#FS#Gt#HS#HY#H`#Hf#Hp#Hv#H|#IW#Ij#IpPPPPPPPPPPP#IvPPPPPPP#Jk#Mx$ b$ i$ qPPP$']P$'f$*_$0x$0{$1O$1}$2Q$2X$2aP$2g$2jP$3W$3[$4S$5b$5g$5}PP$6S$6Y$6^$6a$6e$6i$7e$7|$8e$8i$8l$8o$8y$8|$9Q$9UR!|RoqOXst!Z#d%m&r&t&u&w,s,x2[2_Y!vQ'`-e1o5{Q%tvQ%|yQ&T|Q&j!VS'W!e-]Q'f!iS'l!r!yU*k$|*Z*oQ+o%}S+|&V&WQ,d&dQ-c'_Q-m'gQ-u'mQ0[*qQ1b,OQ1y,eR<{SU+P%]S!S!nQ!r!v!y!z$|'W'_'`'l'm'n*k*o*q*r-]-c-e-u0[0_1o5{5}%[$ti#v$b$c$d$x${%O%Q%^%_%c)y*R*T*V*Y*a*g*w*x+f+i,S,V.f/P/d/m/x/y/{0`0b0i0j0o1f1i1q3c4^4_4j4o5Q5[5_6S7W7v8Q8V8[8q9b9p9y:P:`:r;Q;[;d;kP>X>Y>]>^Q&X|Q'U!eS'[%i-`Q+t&PQ,P&WQ,f&gQ0n+SQ1Y+uQ1_+{Q2Q,jQ2R,kQ5f1TQ5o1aQ6[1zQ6_1|Q6`2PQ8`5gQ8c5lQ8|6bQ:X8dQ:f8yQ;V:YR<}*ZrnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_R,h&k&z^OPXYstuvwz!Z!`!g!j!o#S#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n%m%t&R&k&n&o&r&t&u&w&{'T'b'r(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mR>S[#]WZ#W#Z'X(T!b%jm#h#i#l$x%e%h(^(h(i(j*Y*^*b+Z+[+^,o-V.T.Z.[.]._/m/p2d3[3]4a6r7TQ%wxQ%{yW&Q|&V&W,OQ&_!TQ'c!hQ'e!iQ(q#sS+n%|%}Q+r&PQ,_&bQ,c&dS-l'f'gQ.i(rQ1R+oQ1X+uQ1Z+vQ1^+zQ1t,`S1x,d,eQ2|-mQ5e1TQ5i1WQ5n1`Q6Z1yQ8_5gQ8b5kQ8f5pQ:T8^R;T:U!U$zi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y!^%yy!i!u%{%|%}'V'e'f'g'k'u*j+n+o-Y-l-m-t0R0U1R2u2|3T4r4s4v7}9{Q+h%wQ,T&[Q,W&]Q,b&dQ.h(qQ1s,_U1w,c,d,eQ3e.iQ6U1tS6Y1x1yQ8x6Z#f>T#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^o>UPS&[!Q&iQ&]!RQ&^!SU*}%[%d=sR,R&Y%]%Si#v$b$c$d$x${%O%Q%^%_%c)y*R*T*V*Y*a*g*w*x+f+i,S,V.f/P/d/m/x/y/{0`0b0i0j0o1f1i1q3c4^4_4j4o5Q5[5_6S7W7v8Q8V8[8q9b9p9y:P:`:r;Q;[;d;kP>X>Y>]>^T)z$u){V+P%]S$i$^c#Y#e%q%s%u(S(Y(t(y)R)S)T)U)V)W)X)Y)Z)[)^)`)b)g)q+d+x-Z-x-}.S.U.s.v.z.|.}/O/b0p2k2n3O3V3k3p3q3r3s3t3u3v3w3x3y3z3{3|4P4Q4X5X5c6u6{7Q7a7b7k7l8k9X9]9g9m9n:o;W;`SQ'Y!eR2q-]!W!nQ!e!r!v!y!z$|'W'_'`'l'm'n*Z*k*o*q*r-]-c-e-u0[0_1o5{5}R1l,ZnqOXst!Z#d%m&r&t&u&w,s,x2[2_Q&y!^Q'v!xS(s#u<^Q+l%zQ,]&_Q,^&aQ-j'dQ-w'oS.r(x=PS0q+X=ZQ1P+mQ1n,[Q2c,zQ2e,{Q2m-WQ2z-kQ2}-oS5Y0r=eQ5a1QS5d1S=fQ6t2oQ6x2{Q6}3SQ8]5bQ9Y6vQ9Z6yQ9^7OR:l9V$d$]c#Y#e%s%u(S(Y(t(y)R)S)T)U)V)W)X)Y)Z)[)^)`)b)g)q+d+x-Z-x-}.S.U.s.v.z.}/O/b0p2k2n3O3V3k3p3q3r3s3t3u3v3w3x3y3z3{3|4P4Q4X5X5c6u6{7Q7a7b7k7l8k9X9]9g9m9n:o;W;`SS#q]SU$fd)_,mS(p#p'iU*v%R(w4OU0m+O.n7gQ5^0xQ7V3`Q9d7YR:s9em!tQ!r!v!y!z'`'l'm'n-e-u1o5{5}Q't!uS(f#g2US-s'k'wQ/s*]Q0R*jQ3U-vQ4f/tQ4r0TQ4s0UQ4x0^Q7r4`S7}4t4vS8R4y4{Q9r7sQ9v7yQ9{8OQ:Q8TS:{9w9xS;g:|;PS;s;h;iS;{;t;uSSR=o>R%^bOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&o&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_Q%fj!^%xy!i!u%{%|%}'V'e'f'g'k'u*j+n+o-Y-l-m-t0R0U1R2u2|3T4r4s4v7}9{S&Oz!jQ+k%yQ,a&dW1v,b,c,d,eU6X1w1x1yS8w6Y6ZQ:d8x!r=j$Z$n'X)s-U-X/V2p4T5w6s:Z:mSQ=t>QR=u>R%QeOPXYstuvw!Z!`!g!o#S#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&r&t&u&w&{'T'b'r(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_Y#bWZ#W#Z(T!b%jm#h#i#l$x%e%h(^(h(i(j*Y*^*b+Z+[+^,o-V.T.Z.[.]._/m/p2d3[3]4a6r7TQ,n&o!p=k$Z$n)s-U-X/V2p4T5w6s:Z:mSR=n'XU']!e%i*ZR2s-`%SdOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+],p,s,x-i-q.P.V.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3l4z6T6e6f6i6|8t9T9_!r)_$Z$n'X)s-U-X/V2p4T5w6s:Z:mSQ,m&oQ0x+gQ3`.gQ7Y3dR9e7[!b$Tc#Y%q(S(Y(t(y)Z)[)`)g+x-x-}.S.U.s.v/b0p3O3V3k3{5X5c6{7Q7a9]:oS)^)q-Z.|2k2n3p4P4X6u7b7k7l8k9X9g9m9n;W;`=vQ>X>ZR>Y>['QkOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mSS$oh$pR4U/U'XgOPWXYZhstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n$p%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/U/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mST$kf$qQ$ifS)j$l)nR)v$qT$jf$qT)l$l)n'XhOPWXYZhstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n$p%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/U/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mST$oh$pQ$rhR)u$p%^jOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&o&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_!s>Q$Z$n'X)s-U-X/V2p4T5w6s:Z:mS#glOPXZst!Z!`!o#S#d#o#{$n%m&k&n&o&r&t&u&w&{'T'b)O)s*i+]+g,p,s,x-i.g/V/n0]0l1r2S2T2V2X2[2_2a3d4T4z6T6e6f6i7[8t9T!U%Ri$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y#f(w#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^Q+T%aQ/c*Oo4OP>X>YQ*c$zU*l$|*Z*oQ+U%bQ0W*m#f=q#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^n=rTQ=x>UQ=y>VR=z>W!U%Ri$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y#f(w#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^o4OP>X>Y>]>^Q,U&]Q1h,WQ5s1gR8h5tV*n$|*Z*oU*n$|*Z*oT5z1o5{S0P*i/nQ4w0]T8S4z:]Q+j%xQ0V*lQ1O+kQ1u,aQ6W1vQ8v6XQ:c8wR;^:d!U%Oi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Yx*R$v)e*S*u+V/v0d0e4R4g5R5S5W7p8U:R:x=p=}>OS0`*t0a#f]>^nZ>[`=T3}7c7f7j9h:t:w;yS=_.l3iT=`7e9k!U%Qi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y|*T$v)e*U*t+V/g/v0d0e4R4g4|5R5S5W7p8U:R:x=p=}>OS0b*u0c#f]>^nZ>[d=V3}7d7e7j9h9i:t:u:w;yS=a.m3jT=b7f9lrnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_Q&f!UR,p&ornOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_R&f!UQ,Y&^R1d,RsnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_Q1p,_S6R1s1tU8p6P6Q6US:_8r8sS;Y:^:aQ;m;ZR;w;nQ&m!VR,i&iR6_1|R:f8yW&Q|&V&W,OR1Z+vQ&r!WR,s&sR,y&xT2],x2_R,}&yQ,|&yR2f,}Q'y!{R-y'ySsOtQ#dXT%ps#dQ#OTR'{#OQ#RUR'}#RQ){$uR/`){Q#UVR(Q#UQ#XWU(W#X(X.QQ(X#YR.Q(YQ-^'YR2r-^Q.u(yS3m.u3nR3n.vQ-e'`R2v-eY!rQ'`-e1o5{R'j!rQ/Q)eR4S/QU#_W%h*YU(_#_(`.RQ(`#`R.R(ZQ-a']R2t-at`OXst!V!Z#d%m&i&k&r&t&u&w,s,x2[2_S#hZ%eU#r`#h.[R.[(jQ(k#jQ.X(gW.a(k.X3X7RQ3X.YR7R3YQ)n$lR/W)nQ$phR)t$pQ$`cU)a$`-|O>Z>[Q/z*eU4k/z4m7xQ4m/|R7x4lS*o$|*ZR0Y*ox*S$v)e*t*u+V/v0d0e4R4g5R5S5W7p8U:R:x=p=}>O!d.j(u)c*[*e.l.m.q/_/k/|0v1e3h4[4h4l5r7]7`7w7z8X8Z9t9|:S:};R;e;j;v>Z>[U/h*S.j7ca7c3}7e7f7j9h:t:w;yQ0a*tQ3i.lU4}0a3i9kR9k7e|*U$v)e*t*u+V/g/v0d0e4R4g4|5R5S5W7p8U:R:x=p=}>O!h.k(u)c*[*e.l.m.q/_/k/|0v1e3f3h4[4h4l5r7]7^7`7w7z8X8Z9t9|:S:};R;e;j;v>Z>[U/j*U.k7de7d3}7e7f7j9h9i:t:u:w;yQ0c*uQ3j.mU5P0c3j9lR9l7fQ*z%UR0g*zQ5]0vR8Y5]Q+_%kR0u+_Q5v1jS8j5v:[R:[8kQ,[&_R1m,[Q5{1oR8m5{Q1{,fS6]1{8zR8z6_Q1U+rW5h1U5j8a:VQ5j1XQ8a5iR:V8bQ+w&QR1[+wQ2_,xR6m2_YrOXst#dQ&v!ZQ+a%mQ,r&rQ,t&tQ,u&uQ,w&wQ2Y,sS2],x2_R6l2[Q%opQ&z!_Q&}!aQ'P!bQ'R!cQ'q!uQ+`%lQ+l%zQ,Q&XQ,h&mQ-P&|W-p'k's't'wQ-w'oQ0X*nQ1P+mQ1c,PS2O,i,lQ2g-OQ2h-RQ2i-SQ2}-oW3P-r-s-v-xQ5a1QQ5m1_Q5q1eQ6V1uQ6a2QQ6k2ZU6z3O3R3UQ6}3SQ8]5bQ8e5oQ8g5rQ8l5zQ8u6WQ8{6`S9[6{7PQ9^7OQ:W8cQ:b8vQ:g8|Q:n9]Q;U:XQ;]:cQ;a:oQ;l;VR;o;^Q%zyQ'd!iQ'o!uU+m%{%|%}Q-W'VU-k'e'f'gS-o'k'uQ0Q*jS1Q+n+oQ2o-YS2{-l-mQ3S-tS4p0R0UQ5b1RQ6v2uQ6y2|Q7O3TU7{4r4s4vQ9z7}R;O9{S$wi>PR*{%VU%Ui%V>PR0f*yQ$viS(u#v+iS)c$b$cQ)e$dQ*[$xS*e${*YQ*t%OQ*u%QQ+Q%^Q+R%_Q+V%cQ.lPQ=}>XQ>O>YQ>Z>]R>[>^Q+O%]Q.nSR#[WR'Z!el!tQ!r!v!y!z'`'l'm'n-e-u1o5{5}S'V!e-]U*j$|*Z*oS-Y'W'_S0U*k*qQ0^*rQ2u-cQ4v0[R4{0_R({#xQ!fQT-d'`-e]!qQ!r'`-e1o5{Q#p]R'i < TypeParamList in out const TypeDefinition extends ThisType this LiteralType ArithOp Number BooleanLiteral TemplateType InterpolationEnd Interpolation InterpolationStart NullType null VoidType void TypeofType typeof MemberExpression . PropertyName [ TemplateString Escape Interpolation super RegExp ] ArrayExpression Spread , } { ObjectExpression Property async get set PropertyDefinition Block : NewTarget new NewExpression ) ( ArgList UnaryExpression delete LogicOp BitOp YieldExpression yield AwaitExpression await ParenthesizedExpression ClassExpression class ClassBody MethodDeclaration Decorator @ MemberExpression PrivatePropertyName CallExpression TypeArgList CompareOp < declare Privacy static abstract override PrivatePropertyDefinition PropertyDeclaration readonly accessor Optional TypeAnnotation Equals StaticBlock FunctionExpression ArrowFunction ParamList ParamList ArrayPattern ObjectPattern PatternProperty Privacy readonly Arrow MemberExpression BinaryExpression ArithOp ArithOp ArithOp ArithOp BitOp CompareOp instanceof satisfies CompareOp BitOp BitOp BitOp LogicOp LogicOp ConditionalExpression LogicOp LogicOp AssignmentExpression UpdateOp PostfixExpression CallExpression InstantiationExpression TaggedTemplateExpression DynamicImport import ImportMeta JSXElement JSXSelfCloseEndTag JSXSelfClosingTag JSXIdentifier JSXBuiltin JSXIdentifier JSXNamespacedName JSXMemberExpression JSXSpreadAttribute JSXAttribute JSXAttributeValue JSXEscape JSXEndTag JSXOpenTag JSXFragmentTag JSXText JSXEscape JSXStartCloseTag JSXCloseTag PrefixCast < ArrowFunction TypeParamList SequenceExpression InstantiationExpression KeyofType keyof UniqueType unique ImportType InferredType infer TypeName ParenthesizedType FunctionSignature ParamList NewSignature IndexedType TupleType Label ArrayType ReadonlyType ObjectType MethodType PropertyType IndexSignature PropertyDefinition CallSignature TypePredicate asserts is NewSignature new UnionType LogicOp IntersectionType LogicOp ConditionalType ParameterizedType ClassDeclaration abstract implements type VariableDeclaration let var using TypeAliasDeclaration InterfaceDeclaration interface EnumDeclaration enum EnumBody NamespaceDeclaration namespace module AmbientDeclaration declare GlobalDeclaration global ClassDeclaration ClassBody AmbientFunctionDeclaration ExportGroup VariableName VariableName ImportDeclaration defer ImportGroup ForStatement for ForSpec ForInSpec ForOfSpec of WhileStatement while WithStatement with DoStatement do IfStatement if else SwitchStatement switch SwitchBody CaseLabel case DefaultLabel TryStatement try CatchClause catch FinallyClause finally ReturnStatement return ThrowStatement throw BreakStatement break ContinueStatement continue DebuggerStatement debugger LabeledStatement ExpressionStatement SingleExpression SingleClassItem",maxTerm:380,context:_At,nodeProps:[["isolate",-8,5,6,14,37,39,51,53,55,""],["group",-26,9,17,19,68,207,211,215,216,218,221,224,234,237,243,245,247,249,252,258,264,266,268,270,272,274,275,"Statement",-34,13,14,32,35,36,42,51,54,55,57,62,70,72,76,80,82,84,85,110,111,120,121,136,139,141,142,143,144,145,147,148,167,169,171,"Expression",-23,31,33,37,41,43,45,173,175,177,178,180,181,182,184,185,186,188,189,190,201,203,205,206,"Type",-3,88,103,109,"ClassItem"],["openedBy",23,"<",38,"InterpolationStart",56,"[",60,"{",73,"(",160,"JSXStartCloseTag"],["closedBy",-2,24,168,">",40,"InterpolationEnd",50,"]",61,"}",74,")",165,"JSXEndTag"]],propSources:[DAt],skippedNodes:[0,5,6,278],repeatNodeCount:37,tokenData:"$Fq07[R!bOX%ZXY+gYZ-yZ[+g[]%Z]^.c^p%Zpq+gqr/mrs3cst:_tuEruvJSvwLkwx! Yxy!'iyz!(sz{!)}{|!,q|}!.O}!O!,q!O!P!/Y!P!Q!9j!Q!R#:O!R![#<_![!]#I_!]!^#Jk!^!_#Ku!_!`$![!`!a$$v!a!b$*T!b!c$,r!c!}Er!}#O$-|#O#P$/W#P#Q$4o#Q#R$5y#R#SEr#S#T$7W#T#o$8b#o#p$x#r#s$@U#s$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$I|Er$I|$I}$Dk$I}$JO$Dk$JO$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr(n%d_$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z&j&hT$i&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c&j&zP;=`<%l&c'|'U]$i&j(Z!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!b(SU(Z!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!b(iP;=`<%l'}'|(oP;=`<%l&}'[(y]$i&j(WpOY(rYZ&cZr(rrs&cs!^(r!^!_)r!_#O(r#O#P&c#P#o(r#o#p)r#p;'S(r;'S;=`*a<%lO(rp)wU(WpOY)rZr)rs#O)r#P;'S)r;'S;=`*Z<%lO)rp*^P;=`<%l)r'[*dP;=`<%l(r#S*nX(Wp(Z!bOY*gZr*grs'}sw*gwx)rx#O*g#P;'S*g;'S;=`+Z<%lO*g#S+^P;=`<%l*g(n+dP;=`<%l%Z07[+rq$i&j(Wp(Z!b'|0/lOX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p$f%Z$f$g+g$g#BY%Z#BY#BZ+g#BZ$IS%Z$IS$I_+g$I_$JT%Z$JT$JU+g$JU$KV%Z$KV$KW+g$KW&FU%Z&FU&FV+g&FV;'S%Z;'S;=`+a<%l?HT%Z?HT?HU+g?HUO%Z07[.ST(X#S$i&j'}0/lO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c07[.n_$i&j(Wp(Z!b'}0/lOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)3p/x`$i&j!p),Q(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`0z!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW1V`#v(Ch$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`2X!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW2d_#v(Ch$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'At3l_(V':f$i&j(Z!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k(^4r_$i&j(Z!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k&z5vX$i&jOr5qrs6cs!^5q!^!_6y!_#o5q#o#p6y#p;'S5q;'S;=`7h<%lO5q&z6jT$d`$i&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c`6|TOr6yrs7]s;'S6y;'S;=`7b<%lO6y`7bO$d``7eP;=`<%l6y&z7kP;=`<%l5q(^7w]$d`$i&j(Z!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!r8uZ(Z!bOY8pYZ6yZr8prs9hsw8pwx6yx#O8p#O#P6y#P;'S8p;'S;=`:R<%lO8p!r9oU$d`(Z!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!r:UP;=`<%l8p(^:[P;=`<%l4k%9[:hh$i&j(Wp(Z!bOY%ZYZ&cZq%Zqr`#P#o`x!^=^!^!_?q!_#O=^#O#P>`#P#o=^#o#p?q#p;'S=^;'S;=`@h<%lO=^&n>gXWS$i&jOY>`YZ&cZ!^>`!^!_?S!_#o>`#o#p?S#p;'S>`;'S;=`?k<%lO>`S?XSWSOY?SZ;'S?S;'S;=`?e<%lO?SS?hP;=`<%l?S&n?nP;=`<%l>`!f?xWWS(Z!bOY?qZw?qwx?Sx#O?q#O#P?S#P;'S?q;'S;=`@b<%lO?q!f@eP;=`<%l?q(Q@kP;=`<%l=^'`@w]WS$i&j(WpOY@nYZ&cZr@nrs>`s!^@n!^!_Ap!_#O@n#O#P>`#P#o@n#o#pAp#p;'S@n;'S;=`Bg<%lO@ntAwWWS(WpOYApZrAprs?Ss#OAp#O#P?S#P;'SAp;'S;=`Ba<%lOAptBdP;=`<%lAp'`BjP;=`<%l@n#WBvYWS(Wp(Z!bOYBmZrBmrs?qswBmwxApx#OBm#O#P?S#P;'SBm;'S;=`Cf<%lOBm#WCiP;=`<%lBm(rCoP;=`<%l^!Q^$i&j!X7`OY!=yYZ&cZ!P!=y!P!Q!>|!Q!^!=y!^!_!@c!_!}!=y!}#O!CW#O#P!Dy#P#o!=y#o#p!@c#p;'S!=y;'S;=`!Ek<%lO!=y|#X#Z&c#Z#[!>|#[#]&c#]#^!>|#^#a&c#a#b!>|#b#g&c#g#h!>|#h#i&c#i#j!>|#j#k!>|#k#m&c#m#n!>|#n#o&c#p;'S&c;'S;=`&w<%lO&c7`!@hX!X7`OY!@cZ!P!@c!P!Q!AT!Q!}!@c!}#O!Ar#O#P!Bq#P;'S!@c;'S;=`!CQ<%lO!@c7`!AYW!X7`#W#X!AT#Z#[!AT#]#^!AT#a#b!AT#g#h!AT#i#j!AT#j#k!AT#m#n!AT7`!AuVOY!ArZ#O!Ar#O#P!B[#P#Q!@c#Q;'S!Ar;'S;=`!Bk<%lO!Ar7`!B_SOY!ArZ;'S!Ar;'S;=`!Bk<%lO!Ar7`!BnP;=`<%l!Ar7`!BtSOY!@cZ;'S!@c;'S;=`!CQ<%lO!@c7`!CTP;=`<%l!@c^!Ezl$i&j(Z!b!X7`OY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#W&}#W#X!Eq#X#Z&}#Z#[!Eq#[#]&}#]#^!Eq#^#a&}#a#b!Eq#b#g&}#g#h!Eq#h#i&}#i#j!Eq#j#k!Eq#k#m&}#m#n!Eq#n#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}8r!GyZ(Z!b!X7`OY!GrZw!Grwx!@cx!P!Gr!P!Q!Hl!Q!}!Gr!}#O!JU#O#P!Bq#P;'S!Gr;'S;=`!J|<%lO!Gr8r!Hse(Z!b!X7`OY'}Zw'}x#O'}#P#W'}#W#X!Hl#X#Z'}#Z#[!Hl#[#]'}#]#^!Hl#^#a'}#a#b!Hl#b#g'}#g#h!Hl#h#i'}#i#j!Hl#j#k!Hl#k#m'}#m#n!Hl#n;'S'};'S;=`(f<%lO'}8r!JZX(Z!bOY!JUZw!JUwx!Arx#O!JU#O#P!B[#P#Q!Gr#Q;'S!JU;'S;=`!Jv<%lO!JU8r!JyP;=`<%l!JU8r!KPP;=`<%l!Gr>^!KZ^$i&j(Z!bOY!KSYZ&cZw!KSwx!CWx!^!KS!^!_!JU!_#O!KS#O#P!DR#P#Q!^!LYP;=`<%l!KS>^!L`P;=`<%l!_#c#d#Bq#d#l%Z#l#m#Es#m#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#>j_$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#?rd$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#A]f$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Bzc$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Dbe$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#E|g$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Gpi$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z*)x#Il_!g$b$i&j$O)Lv(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)[#Jv_al$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z04f#LS^h#)`#R-v$?V_!^(CdvBr$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z?O$@a_!q7`$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z07[$Aq|$i&j(Wp(Z!b'|0/l$]#t(T,2j(e$I[OX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}st%ZtuEruw%Zwx(rx}%Z}!OGv!O!Q%Z!Q![Er![!^%Z!^!_*g!_!c%Z!c!}Er!}#O%Z#O#P&c#P#R%Z#R#SEr#S#T%Z#T#oEr#o#p*g#p$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr07[$D|k$i&j(Wp(Z!b'}0/l$]#t(T,2j(e$I[OY%ZYZ&cZr%Zrs&}st%ZtuEruw%Zwx(rx}%Z}!OGv!O!Q%Z!Q![Er![!^%Z!^!_*g!_!c%Z!c!}Er!}#O%Z#O#P&c#P#R%Z#R#SEr#S#T%Z#T#oEr#o#p*g#p$g%Z$g;'SEr;'S;=`I|<%lOEr",tokenizers:[jAt,RAt,IAt,PAt,2,3,4,5,6,7,8,9,10,11,12,13,14,NAt,new qN("$S~RRtu[#O#Pg#S#T#|~_P#o#pb~gOx~~jVO#i!P#i#j!U#j#l!P#l#m!q#m;'S!P;'S;=`#v<%lO!P~!UO!U~~!XS!Q![!e!c!i!e#T#Z!e#o#p#Z~!hR!Q![!q!c!i!q#T#Z!q~!tR!Q![!}!c!i!}#T#Z!}~#QR!Q![!P!c!i!P#T#Z!P~#^R!Q![#g!c!i#g#T#Z#g~#jS!Q![#g!c!i#g#T#Z#g#q#r!P~#yP;=`<%l!P~$RO(c~~",141,340),new qN("j~RQYZXz{^~^O(Q~~aP!P!Qd~iO(R~~",25,323)],topRules:{Script:[0,7],SingleExpression:[1,276],SingleClassItem:[2,277]},dialects:{jsx:0,ts:15175},dynamicPrecedences:{80:1,82:1,94:1,169:1,199:1},specialized:[{term:327,get:e=>MAt[e]||-1},{term:343,get:e=>LAt[e]||-1},{term:95,get:e=>$At[e]||-1}],tokenPrec:15201});class mQ{constructor(t,n,i,r){this.state=t,this.pos=n,this.explicit=i,this.view=r,this.abortListeners=[],this.abortOnDocChange=!1}tokenBefore(t){let n=Or(this.state).resolveInner(this.pos,-1);for(;n&&t.indexOf(n.name)<0;)n=n.parent;return n?{from:n.from,to:this.pos,text:this.state.sliceDoc(n.from,this.pos),type:n.type}:null}matchBefore(t){let n=this.state.doc.lineAt(this.pos),i=Math.max(n.from,this.pos-250),r=n.text.slice(i-n.from,this.pos-n.from),s=r.search(EAe(t,!1));return s<0?null:{from:i+s,to:this.pos,text:r.slice(s)}}get aborted(){return this.abortListeners==null}addEventListener(t,n,i){t=="abort"&&this.abortListeners&&(this.abortListeners.push(n),i&&i.onDocChange&&(this.abortOnDocChange=!0))}}function MJ(e){let t=Object.keys(e).join(""),n=/\w/.test(t);return n&&(t=t.replace(/\w/g,"")),`[${n?"\\w":""}${t.replace(/[^\w\s]/g,"\\$&")}]`}function BAt(e){let t=Object.create(null),n=Object.create(null);for(let{label:r}of e){t[r[0]]=!0;for(let s=1;stypeof r=="string"?{label:r}:r),[n,i]=t.every(r=>/^\w+$/.test(r.label))?[/\w*$/,/\w+$/]:BAt(t);return r=>{let s=r.matchBefore(i);return s||r.explicit?{from:s?s.from:r.pos,options:t,validFor:n}:null}}function kAe(e,t){return n=>{for(let i=Or(n.state).resolveInner(n.pos,-1);i;i=i.parent){if(e.indexOf(i.name)>-1)return null;if(i.type.isTop)break}return t(n)}}class LJ{constructor(t,n,i,r){this.completion=t,this.source=n,this.match=i,this.score=r}}function lb(e){return e.selection.main.from}function EAe(e,t){var n;let{source:i}=e,r=t&&i[0]!="^",s=i[i.length-1]!="$";return!r&&!s?e:new RegExp(`${r?"^":""}(?:${i})${s?"$":""}`,(n=e.flags)!==null&&n!==void 0?n:e.ignoreCase?"i":"")}const bQ=Jd.define();function UAt(e,t,n,i){let{main:r}=e.selection,s=n-r.from,a=i-r.from;return{...e.changeByRange(l=>{if(l!=r&&n!=i&&e.sliceDoc(l.from+s,l.from+a)!=e.sliceDoc(n,i))return{range:l};let c=e.toText(t);return{changes:{from:l.from+s,to:i==r.from?l.to:l.from+a,insert:c},range:it.cursor(l.from+s+c.length)}}),scrollIntoView:!0,userEvent:"input.complete"}}const $J=new WeakMap;function QAt(e){if(!Array.isArray(e))return e;let t=$J.get(e);return t||$J.set(e,t=gQ(e)),t}const WN=Fn.define(),ck=Fn.define();class zAt{constructor(t){this.pattern=t,this.chars=[],this.folded=[],this.any=[],this.precise=[],this.byWord=[],this.score=0,this.matched=[];for(let n=0;n=48&&k<=57||k>=97&&k<=122?2:k>=65&&k<=90?1:0:(S=VU(k))!=S.toLowerCase()?1:S!=S.toUpperCase()?2:0;(!x||E==1&&v||w==0&&E!=0)&&(n[f]==k||i[f]==k&&(h=!0)?a[f++]=x:a.length&&(y=!1)),w=E,x+=vd(k)}return f==c&&a[0]==0&&y?this.result(-100+(h?-200:0),a,t):m==c&&g==0?this.ret(-200-t.length+(b==t.length?0:-100),[0,b]):l>-1?this.ret(-700-t.length,[l,l+this.pattern.length]):m==c?this.ret(-900-t.length,[g,b]):f==c?this.result(-100+(h?-200:0)+-700+(y?0:-1100),a,t):n.length==2?null:this.result((r[0]?-700:0)+-200+-1100,r,t)}result(t,n,i){let r=[],s=0;for(let a of n){let l=a+(this.astral?vd(ol(i,a)):1);s&&r[s-1]==a?r[s-1]=l:(r[s++]=a,r[s++]=l)}return this.ret(t-i.length,r)}}class VAt{constructor(t){this.pattern=t,this.matched=[],this.score=0,this.folded=t.toLowerCase()}match(t){if(t.length!1,activateOnTypingDelay:100,selectOnOpen:!0,override:null,closeOnBlur:!0,maxRenderedOptions:100,defaultKeymap:!0,tooltipClass:()=>"",optionClass:()=>"",aboveCursor:!1,icons:!0,addToOptions:[],positionInfo:HAt,filterStrict:!1,compareCompletions:(t,n)=>(t.sortText||t.label).localeCompare(n.sortText||n.label),interactionDelay:75,updateSyncTime:100},{defaultKeymap:(t,n)=>t&&n,closeOnBlur:(t,n)=>t&&n,icons:(t,n)=>t&&n,tooltipClass:(t,n)=>i=>FJ(t(i),n(i)),optionClass:(t,n)=>i=>FJ(t(i),n(i)),addToOptions:(t,n)=>t.concat(n),filterStrict:(t,n)=>t||n})}});function FJ(e,t){return e?t?e+" "+t:e:t}function HAt(e,t,n,i,r,s){let a=e.textDirection==Cr.RTL,l=a,c=!1,u="top",d,f,h=t.left-r.left,m=r.right-t.right,g=i.right-i.left,b=i.bottom-i.top;if(l&&h=b||x>t.top?d=n.bottom-t.top:(u="bottom",d=t.bottom-n.top)}let v=(t.bottom-t.top)/s.offsetHeight,y=(t.right-t.left)/s.offsetWidth;return{style:`${u}: ${d/v}px; max-width: ${f/y}px`,class:"cm-completionInfo-"+(c?a?"left-narrow":"right-narrow":l?"left":"right")}}const yQ=Fn.define();function qAt(e){let t=e.addToOptions.slice();return e.icons&&t.push({render(n){let i=document.createElement("div");return i.classList.add("cm-completionIcon"),n.type&&i.classList.add(...n.type.split(/\s+/g).map(r=>"cm-completionIcon-"+r)),i.setAttribute("aria-hidden","true"),i},position:20}),t.push({render(n,i,r,s){let a=document.createElement("span");a.className="cm-completionLabel";let l=n.displayLabel||n.label,c=0;for(let u=0;uc&&a.appendChild(document.createTextNode(l.slice(c,d)));let h=a.appendChild(document.createElement("span"));h.appendChild(document.createTextNode(l.slice(d,f))),h.className="cm-completionMatchedText",c=f}return cn.position-i.position).map(n=>n.render)}function T5(e,t,n){if(e<=n)return{from:0,to:e};if(t<0&&(t=0),t<=e>>1){let r=Math.floor(t/n);return{from:r*n,to:(r+1)*n}}let i=Math.ceil((e-t)/n);return{from:e-i*n,to:e-(i-1)*n}}class WAt{constructor(t,n,i){this.view=t,this.stateField=n,this.applyCompletion=i,this.info=null,this.infoDestroy=null,this.placeInfoReq={read:()=>this.measureInfo(),write:c=>this.placeInfo(c),key:this},this.space=null,this.currentClass="";let r=t.state.field(n),{options:s,selected:a}=r.open,l=t.state.facet(Ma);this.optionContent=qAt(l),this.optionClass=l.optionClass,this.tooltipClass=l.tooltipClass,this.range=T5(s.length,a,l.maxRenderedOptions),this.dom=document.createElement("div"),this.dom.className="cm-tooltip-autocomplete",this.updateTooltipClass(t.state),this.dom.addEventListener("mousedown",c=>{let{options:u}=t.state.field(n).open;for(let d=c.target,f;d&&d!=this.dom;d=d.parentNode)if(d.nodeName=="LI"&&(f=/-(\d+)$/.exec(d.id))&&+f[1]this.list.lastChild.getBoundingClientRect().bottom?this.range.to:null;d!=null&&(t.dispatch({effects:yQ.of(d)}),c.preventDefault())}}),this.dom.addEventListener("focusout",c=>{let u=t.state.field(this.stateField,!1);u&&u.tooltip&&t.state.facet(Ma).closeOnBlur&&c.relatedTarget!=t.contentDOM&&t.dispatch({effects:ck.of(null)})}),this.showOptions(s,r.id)}mount(){this.updateSel()}showOptions(t,n){this.list&&this.list.remove(),this.list=this.dom.appendChild(this.createListBox(t,n,this.range)),this.list.addEventListener("scroll",()=>{this.info&&this.view.requestMeasure(this.placeInfoReq)})}update(t){var n;let i=t.state.field(this.stateField),r=t.startState.field(this.stateField);if(this.updateTooltipClass(t.state),i!=r){let{options:s,selected:a,disabled:l}=i.open;(!r.open||r.open.options!=s)&&(this.range=T5(s.length,a,t.state.facet(Ma).maxRenderedOptions),this.showOptions(s,i.id)),this.updateSel(),l!=((n=r.open)===null||n===void 0?void 0:n.disabled)&&this.dom.classList.toggle("cm-tooltip-autocomplete-disabled",!!l)}}updateTooltipClass(t){let n=this.tooltipClass(t);if(n!=this.currentClass){for(let i of this.currentClass.split(" "))i&&this.dom.classList.remove(i);for(let i of n.split(" "))i&&this.dom.classList.add(i);this.currentClass=n}}positioned(t){this.space=t,this.info&&this.view.requestMeasure(this.placeInfoReq)}updateSel(){let t=this.view.state.field(this.stateField),n=t.open;(n.selected>-1&&n.selected=this.range.to)&&(this.range=T5(n.options.length,n.selected,this.view.state.facet(Ma).maxRenderedOptions),this.showOptions(n.options,t.id));let i=this.updateSelectedOption(n.selected);if(i){this.destroyInfo();let{completion:r}=n.options[n.selected],{info:s}=r;if(!s)return;let a=typeof s=="string"?document.createTextNode(s):s(r);if(!a)return;"then"in a?a.then(l=>{l&&this.view.state.field(this.stateField,!1)==t&&this.addInfoPane(l,r)}).catch(l=>hl(this.view.state,l,"completion info")):(this.addInfoPane(a,r),i.setAttribute("aria-describedby",this.info.id))}}addInfoPane(t,n){this.destroyInfo();let i=this.info=document.createElement("div");if(i.className="cm-tooltip cm-completionInfo",i.id="cm-completionInfo-"+Math.floor(Math.random()*65535).toString(16),t.nodeType!=null)i.appendChild(t),this.infoDestroy=null;else{let{dom:r,destroy:s}=t;i.appendChild(r),this.infoDestroy=s||null}this.dom.appendChild(i),this.view.requestMeasure(this.placeInfoReq)}updateSelectedOption(t){let n=null;for(let i=this.list.firstChild,r=this.range.from;i;i=i.nextSibling,r++)i.nodeName!="LI"||!i.id?r--:r==t?i.hasAttribute("aria-selected")||(i.setAttribute("aria-selected","true"),n=i):i.hasAttribute("aria-selected")&&(i.removeAttribute("aria-selected"),i.removeAttribute("aria-describedby"));return n&&KAt(this.list,n),n}measureInfo(){let t=this.dom.querySelector("[aria-selected]");if(!t||!this.info)return null;let n=this.dom.getBoundingClientRect(),i=this.info.getBoundingClientRect(),r=t.getBoundingClientRect(),s=this.space;if(!s){let a=this.dom.ownerDocument.documentElement;s={left:0,top:0,right:a.clientWidth,bottom:a.clientHeight}}return r.top>Math.min(s.bottom,n.bottom)-10||r.bottom{a.target==r&&a.preventDefault()});let s=null;for(let a=i.from;ai.from||i.from==0))if(s=h,typeof u!="string"&&u.header)r.appendChild(u.header(u));else{let m=r.appendChild(document.createElement("completion-section"));m.textContent=h}}const d=r.appendChild(document.createElement("li"));d.id=n+"-"+a,d.setAttribute("role","option");let f=this.optionClass(l);f&&(d.className=f);for(let h of this.optionContent){let m=h(l,this.view.state,this.view,c);m&&d.appendChild(m)}}return i.from&&r.classList.add("cm-completionListIncompleteTop"),i.tonew WAt(n,e,t)}function KAt(e,t){let n=e.getBoundingClientRect(),i=t.getBoundingClientRect(),r=n.height/e.offsetHeight;i.topn.bottom&&(e.scrollTop+=(i.bottom-n.bottom)/r)}function BJ(e){return(e.boost||0)*100+(e.apply?10:0)+(e.info?5:0)+(e.type?1:0)}function XAt(e,t){let n=[],i=null,r=null,s=d=>{n.push(d);let{section:f}=d.completion;if(f){i||(i=[]);let h=typeof f=="string"?f:f.name;i.some(m=>m.name==h)||i.push(typeof f=="string"?{name:h}:f)}},a=t.facet(Ma);for(let d of e)if(d.hasResult()){let f=d.result.getMatch;if(d.result.filter===!1)for(let h of d.result.options)s(new LJ(h,d.source,f?f(h):[],1e9-n.length));else{let h=t.sliceDoc(d.from,d.to),m,g=a.filterStrict?new VAt(h):new zAt(h);for(let b of d.result.options)if(m=g.match(b.label)){let v=b.displayLabel?f?f(b,m.matched):[]:m.matched,y=m.score+(b.boost||0);if(s(new LJ(b,d.source,v,y)),typeof b.section=="object"&&b.section.rank==="dynamic"){let{name:x}=b.section;r||(r=Object.create(null)),r[x]=Math.max(y,r[x]||-1e9)}}}}if(i){let d=Object.create(null),f=0,h=(m,g)=>(m.rank==="dynamic"&&g.rank==="dynamic"?r[g.name]-r[m.name]:0)||(typeof m.rank=="number"?m.rank:1e9)-(typeof g.rank=="number"?g.rank:1e9)||(m.nameh.score-f.score||u(f.completion,h.completion))){let f=d.completion;!c||c.label!=f.label||c.detail!=f.detail||c.type!=null&&f.type!=null&&c.type!=f.type||c.apply!=f.apply||c.boost!=f.boost?l.push(d):BJ(d.completion)>BJ(c)&&(l[l.length-1]=d),c=d.completion}return l}class $y{constructor(t,n,i,r,s,a){this.options=t,this.attrs=n,this.tooltip=i,this.timestamp=r,this.selected=s,this.disabled=a}setSelected(t,n){return t==this.selected||t>=this.options.length?this:new $y(this.options,UJ(n,t),this.tooltip,this.timestamp,t,this.disabled)}static build(t,n,i,r,s,a){if(r&&!a&&t.some(u=>u.isPending))return r.setDisabled();let l=XAt(t,n);if(!l.length)return r&&t.some(u=>u.isPending)?r.setDisabled():null;let c=n.facet(Ma).selectOnOpen?0:-1;if(r&&r.selected!=c&&r.selected!=-1){let u=r.options[r.selected].completion;for(let d=0;dd.hasResult()?Math.min(u,d.from):u,1e8),create:n_t,above:s.aboveCursor},r?r.timestamp:Date.now(),c,!1)}map(t){return new $y(this.options,this.attrs,{...this.tooltip,pos:t.mapPos(this.tooltip.pos)},this.timestamp,this.selected,this.disabled)}setDisabled(){return new $y(this.options,this.attrs,this.tooltip,this.timestamp,this.selected,!0)}}class GN{constructor(t,n,i){this.active=t,this.id=n,this.open=i}static start(){return new GN(e_t,"cm-ac-"+Math.floor(Math.random()*2e6).toString(36),null)}update(t){let{state:n}=t,i=n.facet(Ma),s=(i.override||n.languageDataAt("autocomplete",lb(n)).map(QAt)).map(c=>(this.active.find(d=>d.source==c)||new Kc(c,this.active.some(d=>d.state!=0)?1:0)).update(t,i));s.length==this.active.length&&s.every((c,u)=>c==this.active[u])&&(s=this.active);let a=this.open,l=t.effects.some(c=>c.is(vQ));a&&t.docChanged&&(a=a.map(t.changes)),t.selection||s.some(c=>c.hasResult()&&t.changes.touchesRange(c.from,c.to))||!YAt(s,this.active)||l?a=$y.build(s,n,this.id,a,i,l):a&&a.disabled&&!s.some(c=>c.isPending)&&(a=null),!a&&s.every(c=>!c.isPending)&&s.some(c=>c.hasResult())&&(s=s.map(c=>c.hasResult()?new Kc(c.source,0):c));for(let c of t.effects)c.is(yQ)&&(a=a&&a.setSelected(c.value,this.id));return s==this.active&&a==this.open?this:new GN(s,this.id,a)}get tooltip(){return this.open?this.open.tooltip:null}get attrs(){return this.open?this.open.attrs:this.active.length?ZAt:JAt}}function YAt(e,t){if(e==t)return!0;for(let n=0,i=0;;){for(;n-1&&(n["aria-activedescendant"]=e+"-"+t),n}const e_t=[];function CAe(e,t){if(e.isUserEvent("input.complete")){let i=e.annotation(bQ);if(i&&t.activateOnCompletion(i))return 12}let n=e.isUserEvent("input.type");return n&&t.activateOnTyping?5:n?1:e.isUserEvent("delete.backward")?2:e.selection?8:e.docChanged?16:0}class Kc{constructor(t,n,i=!1){this.source=t,this.state=n,this.explicit=i}hasResult(){return!1}get isPending(){return this.state==1}update(t,n){let i=CAe(t,n),r=this;(i&8||i&16&&this.touches(t))&&(r=new Kc(r.source,0)),i&4&&r.state==0&&(r=new Kc(this.source,1)),r=r.updateFor(t,i);for(let s of t.effects)if(s.is(WN))r=new Kc(r.source,1,s.value);else if(s.is(ck))r=new Kc(r.source,0);else if(s.is(vQ))for(let a of s.value)a.source==r.source&&(r=a);return r}updateFor(t,n){return this.map(t.changes)}map(t){return this}touches(t){return t.changes.touchesRange(lb(t.state))}}class gv extends Kc{constructor(t,n,i,r,s,a){super(t,3,n),this.limit=i,this.result=r,this.from=s,this.to=a}hasResult(){return!0}updateFor(t,n){var i;if(!(n&3))return this.map(t.changes);let r=this.result;r.map&&!t.changes.empty&&(r=r.map(r,t.changes));let s=t.changes.mapPos(this.from),a=t.changes.mapPos(this.to,1),l=lb(t.state);if(l>a||!r||n&2&&(lb(t.startState)==this.from||ln.map(t))}}),ll=ro.define({create(){return GN.start()},update(e,t){return e.update(t)},provide:e=>[oQ.from(e,t=>t.tooltip),Ft.contentAttributes.from(e,t=>t.attrs)]});function xQ(e,t){const n=t.completion.apply||t.completion.label;let i=e.state.field(ll).active.find(r=>r.source==t.source);return i instanceof gv?(typeof n=="string"?e.dispatch({...UAt(e.state,n,i.from,i.to),annotations:bQ.of(t.completion)}):n(e,t.completion,i.from,i.to),!0):!1}const n_t=GAt(ll,xQ);function c2(e,t="option"){return n=>{let i=n.state.field(ll,!1);if(!i||!i.open||i.open.disabled||Date.now()-i.open.timestamp-1?i.open.selected+r*(e?1:-1):e?0:a-1;return l<0?l=t=="page"?0:a-1:l>=a&&(l=t=="page"?a-1:0),n.dispatch({effects:yQ.of(l)}),!0}}const i_t=e=>{let t=e.state.field(ll,!1);return e.state.readOnly||!t||!t.open||t.open.selected<0||t.open.disabled||Date.now()-t.open.timestampe.state.field(ll,!1)?(e.dispatch({effects:WN.of(!0)}),!0):!1,r_t=e=>{let t=e.state.field(ll,!1);return!t||!t.active.some(n=>n.state!=0)?!1:(e.dispatch({effects:ck.of(null)}),!0)};class s_t{constructor(t,n){this.active=t,this.context=n,this.time=Date.now(),this.updates=[],this.done=void 0}}const a_t=50,o_t=1e3,l_t=Ts.fromClass(class{constructor(e){this.view=e,this.debounceUpdate=-1,this.running=[],this.debounceAccept=-1,this.pendingStart=!1,this.composing=0;for(let t of e.state.field(ll).active)t.isPending&&this.startQuery(t)}update(e){let t=e.state.field(ll),n=e.state.facet(Ma);if(!e.selectionSet&&!e.docChanged&&e.startState.field(ll)==t)return;let i=e.transactions.some(s=>{let a=CAe(s,n);return a&8||(s.selection||s.docChanged)&&!(a&3)});for(let s=0;sa_t&&Date.now()-a.time>o_t){for(let l of a.context.abortListeners)try{l()}catch(c){hl(this.view.state,c)}a.context.abortListeners=null,this.running.splice(s--,1)}else a.updates.push(...e.transactions)}this.debounceUpdate>-1&&clearTimeout(this.debounceUpdate),e.transactions.some(s=>s.effects.some(a=>a.is(WN)))&&(this.pendingStart=!0);let r=this.pendingStart?50:n.activateOnTypingDelay;if(this.debounceUpdate=t.active.some(s=>s.isPending&&!this.running.some(a=>a.active.source==s.source))?setTimeout(()=>this.startUpdate(),r):-1,this.composing!=0)for(let s of e.transactions)s.isUserEvent("input.type")?this.composing=2:this.composing==2&&s.selection&&(this.composing=3)}startUpdate(){this.debounceUpdate=-1,this.pendingStart=!1;let{state:e}=this.view,t=e.field(ll);for(let n of t.active)n.isPending&&!this.running.some(i=>i.active.source==n.source)&&this.startQuery(n);this.running.length&&t.open&&t.open.disabled&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet(Ma).updateSyncTime))}startQuery(e){let{state:t}=this.view,n=lb(t),i=new mQ(t,n,e.explicit,this.view),r=new s_t(e,i);this.running.push(r),Promise.resolve(e.source(i)).then(s=>{r.context.aborted||(r.done=s||null,this.scheduleAccept())},s=>{this.view.dispatch({effects:ck.of(null)}),hl(this.view.state,s)})}scheduleAccept(){this.running.every(e=>e.done!==void 0)?this.accept():this.debounceAccept<0&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet(Ma).updateSyncTime))}accept(){var e;this.debounceAccept>-1&&clearTimeout(this.debounceAccept),this.debounceAccept=-1;let t=[],n=this.view.state.facet(Ma),i=this.view.state.field(ll);for(let r=0;rl.source==s.active.source);if(a&&a.isPending)if(s.done==null){let l=new Kc(s.active.source,0);for(let c of s.updates)l=l.update(c,n);l.isPending||t.push(l)}else this.startQuery(a)}(t.length||i.open&&i.open.disabled)&&this.view.dispatch({effects:vQ.of(t)})}},{eventHandlers:{blur(e){let t=this.view.state.field(ll,!1);if(t&&t.tooltip&&this.view.state.facet(Ma).closeOnBlur){let n=t.open&&V2e(this.view,t.open.tooltip);(!n||!n.dom.contains(e.relatedTarget))&&setTimeout(()=>this.view.dispatch({effects:ck.of(null)}),10)}},compositionstart(){this.composing=1},compositionend(){this.composing==3&&setTimeout(()=>this.view.dispatch({effects:WN.of(!1)}),20),this.composing=0}}}),c_t=typeof navigator=="object"&&/Win/.test(navigator.platform),u_t=zh.highest(Ft.domEventHandlers({keydown(e,t){let n=t.state.field(ll,!1);if(!n||!n.open||n.open.disabled||n.open.selected<0||e.key.length>1||e.ctrlKey&&!(c_t&&e.altKey)||e.metaKey)return!1;let i=n.open.options[n.open.selected],r=n.active.find(a=>a.source==i.source),s=i.completion.commitCharacters||r.result.commitCharacters;return s&&s.indexOf(e.key)>-1&&xQ(t,i),!1}})),TAe=Ft.baseTheme({".cm-tooltip.cm-tooltip-autocomplete":{"& > ul":{fontFamily:"monospace",whiteSpace:"nowrap",overflow:"hidden auto",maxWidth_fallback:"700px",maxWidth:"min(700px, 95vw)",minWidth:"250px",maxHeight:"10em",height:"100%",listStyle:"none",margin:0,padding:0,"& > li, & > completion-section":{padding:"1px 3px",lineHeight:1.2},"& > li":{overflowX:"hidden",textOverflow:"ellipsis",cursor:"pointer"},"& > completion-section":{display:"list-item",borderBottom:"1px solid silver",paddingLeft:"0.5em",opacity:.7}}},"&light .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#17c",color:"white"},"&light .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#777"},"&dark .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#347",color:"white"},"&dark .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#444"},".cm-completionListIncompleteTop:before, .cm-completionListIncompleteBottom:after":{content:'"···"',opacity:.5,display:"block",textAlign:"center",cursor:"pointer"},".cm-tooltip.cm-completionInfo":{position:"absolute",padding:"3px 9px",width:"max-content",maxWidth:"400px",boxSizing:"border-box",whiteSpace:"pre-line"},".cm-completionInfo.cm-completionInfo-left":{right:"100%"},".cm-completionInfo.cm-completionInfo-right":{left:"100%"},".cm-completionInfo.cm-completionInfo-left-narrow":{right:"30px"},".cm-completionInfo.cm-completionInfo-right-narrow":{left:"30px"},"&light .cm-snippetField":{backgroundColor:"#00000022"},"&dark .cm-snippetField":{backgroundColor:"#ffffff22"},".cm-snippetFieldPosition":{verticalAlign:"text-top",width:0,height:"1.15em",display:"inline-block",margin:"0 -0.7px -.7em",borderLeft:"1.4px dotted #888"},".cm-completionMatchedText":{textDecoration:"underline"},".cm-completionDetail":{marginLeft:"0.5em",fontStyle:"italic"},".cm-completionIcon":{fontSize:"90%",width:".8em",display:"inline-block",textAlign:"center",paddingRight:".6em",opacity:"0.6",boxSizing:"content-box"},".cm-completionIcon-function, .cm-completionIcon-method":{"&:after":{content:"'ƒ'"}},".cm-completionIcon-class":{"&:after":{content:"'○'"}},".cm-completionIcon-interface":{"&:after":{content:"'◌'"}},".cm-completionIcon-variable":{"&:after":{content:"'𝑥'"}},".cm-completionIcon-constant":{"&:after":{content:"'𝐶'"}},".cm-completionIcon-type":{"&:after":{content:"'𝑡'"}},".cm-completionIcon-enum":{"&:after":{content:"'∪'"}},".cm-completionIcon-property":{"&:after":{content:"'□'"}},".cm-completionIcon-keyword":{"&:after":{content:"'🔑︎'"}},".cm-completionIcon-namespace":{"&:after":{content:"'▢'"}},".cm-completionIcon-text":{"&:after":{content:"'abc'",fontSize:"50%",verticalAlign:"middle"}}});class d_t{constructor(t,n,i,r){this.field=t,this.line=n,this.from=i,this.to=r}}class wQ{constructor(t,n,i){this.field=t,this.from=n,this.to=i}map(t){let n=t.mapPos(this.from,-1,eo.TrackDel),i=t.mapPos(this.to,1,eo.TrackDel);return n==null||i==null?null:new wQ(this.field,n,i)}}class OQ{constructor(t,n){this.lines=t,this.fieldPositions=n}instantiate(t,n){let i=[],r=[n],s=t.doc.lineAt(n),a=/^\s*/.exec(s.text)[0];for(let c of this.lines){if(i.length){let u=a,d=/^\t*/.exec(c)[0].length;for(let f=0;fnew wQ(c.field,r[c.line]+c.from,r[c.line]+c.to));return{text:i,ranges:l}}static parse(t){let n=[],i=[],r=[],s;for(let a of t.split(/\r\n?|\n/)){for(;s=/[#$]\{(?:(\d+)(?::([^{}]*))?|((?:\\[{}]|[^{}])*))\}/.exec(a);){let l=s[1]?+s[1]:null,c=s[2]||s[3]||"",u=-1;l===0&&(l=1e9);let d=c.replace(/\\[{}]/g,f=>f[1]);for(let f=0;f=u&&h.field++}for(let f of r)if(f.line==i.length&&f.from>s.index){let h=s[2]?3+(s[1]||"").length:2;f.from-=h,f.to-=h}r.push(new d_t(u,i.length,s.index,s.index+d.length)),a=a.slice(0,s.index)+c+a.slice(s.index+s[0].length)}a=a.replace(/\\([{}])/g,(l,c,u)=>{for(let d of r)d.line==i.length&&d.from>u&&(d.from--,d.to--);return c}),i.push(a)}return new OQ(i,r)}}let f_t=gn.widget({widget:new class extends Yu{toDOM(){let e=document.createElement("span");return e.className="cm-snippetFieldPosition",e}ignoreEvent(){return!1}}}),h_t=gn.mark({class:"cm-snippetField"});class r1{constructor(t,n){this.ranges=t,this.active=n,this.deco=gn.set(t.map(i=>(i.from==i.to?f_t:h_t).range(i.from,i.to)),!0)}map(t){let n=[];for(let i of this.ranges){let r=i.map(t);if(!r)return null;n.push(r)}return new r1(n,this.active)}selectionInsideField(t){return t.ranges.every(n=>this.ranges.some(i=>i.field==this.active&&i.from<=n.from&&i.to>=n.to))}}const BE=Fn.define({map(e,t){return e&&e.map(t)}}),p_t=Fn.define(),uk=ro.define({create(){return null},update(e,t){for(let n of t.effects){if(n.is(BE))return n.value;if(n.is(p_t)&&e)return new r1(e.ranges,n.value)}return e&&t.docChanged&&(e=e.map(t.changes)),e&&t.selection&&!e.selectionInsideField(t.selection)&&(e=null),e},provide:e=>Ft.decorations.from(e,t=>t?t.deco:gn.none)});function SQ(e,t){return it.create(e.filter(n=>n.field==t).map(n=>it.range(n.from,n.to)))}function m_t(e){let t=OQ.parse(e);return(n,i,r,s)=>{let{text:a,ranges:l}=t.instantiate(n.state,r),{main:c}=n.state.selection,u={changes:{from:r,to:s==c.from?c.to:s,insert:Gi.of(a)},scrollIntoView:!0,annotations:i?[bQ.of(i),Js.userEvent.of("input.complete")]:void 0};if(l.length&&(u.selection=SQ(l,0)),l.some(d=>d.field>0)){let d=new r1(l,0),f=u.effects=[BE.of(d)];n.state.field(uk,!1)===void 0&&f.push(Fn.appendConfig.of([uk,x_t,w_t,TAe]))}n.dispatch(n.state.update(u))}}function AAe(e){return({state:t,dispatch:n})=>{let i=t.field(uk,!1);if(!i||e<0&&i.active==0)return!1;let r=i.active+e,s=e>0&&!i.ranges.some(a=>a.field==r+e);return n(t.update({selection:SQ(i.ranges,r),effects:BE.of(s?null:new r1(i.ranges,r)),scrollIntoView:!0})),!0}}const g_t=({state:e,dispatch:t})=>e.field(uk,!1)?(t(e.update({effects:BE.of(null)})),!0):!1,b_t=AAe(1),y_t=AAe(-1),v_t=[{key:"Tab",run:b_t,shift:y_t},{key:"Escape",run:g_t}],QJ=Zt.define({combine(e){return e.length?e[0]:v_t}}),x_t=zh.highest(n1.compute([QJ],e=>e.facet(QJ)));function ys(e,t){return{...t,apply:m_t(e)}}const w_t=Ft.domEventHandlers({mousedown(e,t){let n=t.state.field(uk,!1),i;if(!n||(i=t.posAtCoords({x:e.clientX,y:e.clientY}))==null)return!1;let r=n.ranges.find(s=>s.from<=i&&s.to>=i);return!r||r.field==n.active?!1:(t.dispatch({selection:SQ(n.ranges,r.field),effects:BE.of(n.ranges.some(s=>s.field>r.field)?new r1(n.ranges,r.field):null),scrollIntoView:!0}),!0)}}),dk={brackets:["(","[","{","'",'"'],before:")]}:;>",stringPrefixes:[]},zg=Fn.define({map(e,t){let n=t.mapPos(e,-1,eo.TrackAfter);return n??void 0}}),kQ=new class extends Em{};kQ.startSide=1;kQ.endSide=-1;const _Ae=ro.define({create(){return xi.empty},update(e,t){if(e=e.map(t.changes),t.selection){let n=t.state.doc.lineAt(t.selection.main.head);e=e.update({filter:i=>i>=n.from&&i<=n.to})}for(let n of t.effects)n.is(zg)&&(e=e.update({add:[kQ.range(n.value,n.value+1)]}));return e}});function O_t(){return[k_t,_Ae]}const _5="()[]{}<>«»»«[]{}";function NAe(e){for(let t=0;t<_5.length;t+=2)if(_5.charCodeAt(t)==e)return _5.charAt(t+1);return VU(e<128?e:e+1)}function jAe(e,t){return e.languageDataAt("closeBrackets",t)[0]||dk}const S_t=typeof navigator=="object"&&/Android\b/.test(navigator.userAgent),k_t=Ft.inputHandler.of((e,t,n,i)=>{if((S_t?e.composing:e.compositionStarted)||e.state.readOnly)return!1;let r=e.state.selection.main;if(i.length>2||i.length==2&&vd(ol(i,0))==1||t!=r.from||n!=r.to)return!1;let s=T_t(e.state,i);return s?(e.dispatch(s),!0):!1}),E_t=({state:e,dispatch:t})=>{if(e.readOnly)return!1;let i=jAe(e,e.selection.main.head).brackets||dk.brackets,r=null,s=e.changeByRange(a=>{if(a.empty){let l=A_t(e.doc,a.head);for(let c of i)if(c==l&&NI(e.doc,a.head)==NAe(ol(c,0)))return{changes:{from:a.head-c.length,to:a.head+c.length},range:it.cursor(a.head-c.length)}}return{range:r=a}});return r||t(e.update(s,{scrollIntoView:!0,userEvent:"delete.backward"})),!r},C_t=[{key:"Backspace",run:E_t}];function T_t(e,t){let n=jAe(e,e.selection.main.head),i=n.brackets||dk.brackets;for(let r of i){let s=NAe(ol(r,0));if(t==r)return s==r?j_t(e,r,i.indexOf(r+r+r)>-1,n):__t(e,r,s,n.before||dk.before);if(t==s&&RAe(e,e.selection.main.from))return N_t(e,r,s)}return null}function RAe(e,t){let n=!1;return e.field(_Ae).between(0,e.doc.length,i=>{i==t&&(n=!0)}),n}function NI(e,t){let n=e.sliceString(t,t+2);return n.slice(0,vd(ol(n,0)))}function A_t(e,t){let n=e.sliceString(t-2,t);return vd(ol(n,0))==n.length?n:n.slice(1)}function __t(e,t,n,i){let r=null,s=e.changeByRange(a=>{if(!a.empty)return{changes:[{insert:t,from:a.from},{insert:n,from:a.to}],effects:zg.of(a.to+t.length),range:it.range(a.anchor+t.length,a.head+t.length)};let l=NI(e.doc,a.head);return!l||/\s/.test(l)||i.indexOf(l)>-1?{changes:{insert:t+n,from:a.head},effects:zg.of(a.head+t.length),range:it.cursor(a.head+t.length)}:{range:r=a}});return r?null:e.update(s,{scrollIntoView:!0,userEvent:"input.type"})}function N_t(e,t,n){let i=null,r=e.changeByRange(s=>s.empty&&NI(e.doc,s.head)==n?{changes:{from:s.head,to:s.head+n.length,insert:n},range:it.cursor(s.head+n.length)}:i={range:s});return i?null:e.update(r,{scrollIntoView:!0,userEvent:"input.type"})}function j_t(e,t,n,i){let r=i.stringPrefixes||dk.stringPrefixes,s=null,a=e.changeByRange(l=>{if(!l.empty)return{changes:[{insert:t,from:l.from},{insert:t,from:l.to}],effects:zg.of(l.to+t.length),range:it.range(l.anchor+t.length,l.head+t.length)};let c=l.head,u=NI(e.doc,c),d;if(u==t){if(zJ(e,c))return{changes:{insert:t+t,from:c},effects:zg.of(c+t.length),range:it.cursor(c+t.length)};if(RAe(e,c)){let h=n&&e.sliceDoc(c,c+t.length*3)==t+t+t?t+t+t:t;return{changes:{from:c,to:c+h.length,insert:h},range:it.cursor(c+h.length)}}}else{if(n&&e.sliceDoc(c-2*t.length,c)==t+t&&(d=VJ(e,c-2*t.length,r))>-1&&zJ(e,d))return{changes:{insert:t+t+t+t,from:c},effects:zg.of(c+t.length),range:it.cursor(c+t.length)};if(e.charCategorizer(c)(u)!=ns.Word&&VJ(e,c,r)>-1&&!R_t(e,c,t,r))return{changes:{insert:t+t,from:c},effects:zg.of(c+t.length),range:it.cursor(c+t.length)}}return{range:s=l}});return s?null:e.update(a,{scrollIntoView:!0,userEvent:"input.type"})}function zJ(e,t){let n=Or(e).resolveInner(t+1);return n.parent&&n.from==t}function R_t(e,t,n,i){let r=Or(e).resolveInner(t,-1),s=i.reduce((a,l)=>Math.max(a,l.length),0);for(let a=0;a<5;a++){let l=e.sliceDoc(r.from,Math.min(r.to,r.from+n.length+s)),c=l.indexOf(n);if(!c||c>-1&&i.indexOf(l.slice(0,c))>-1){let d=r.firstChild;for(;d&&d.from==r.from&&d.to-d.from>n.length+c;){if(e.sliceDoc(d.to-n.length,d.to)==n)return!1;d=d.firstChild}return!0}let u=r.to==t&&r.parent;if(!u)break;r=u}return!1}function VJ(e,t,n){let i=e.charCategorizer(t);if(i(e.sliceDoc(t-1,t))!=ns.Word)return t;for(let r of n){let s=t-r.length;if(e.sliceDoc(s,t)==r&&i(e.sliceDoc(s-1,s))!=ns.Word)return s}return-1}function I_t(e={}){return[u_t,ll,Ma.of(e),l_t,P_t,TAe]}const IAe=[{key:"Ctrl-Space",run:A5},{mac:"Alt-`",run:A5},{mac:"Alt-i",run:A5},{key:"Escape",run:r_t},{key:"ArrowDown",run:c2(!0)},{key:"ArrowUp",run:c2(!1)},{key:"PageDown",run:c2(!0,"page")},{key:"PageUp",run:c2(!1,"page")},{key:"Enter",run:i_t}],P_t=zh.highest(n1.computeN([Ma],e=>e.facet(Ma).defaultKeymap?[IAe]:[])),PAe=[ys("function ${name}(${params}) {\n ${}\n}",{label:"function",detail:"definition",type:"keyword"}),ys("for (let ${index} = 0; ${index} < ${bound}; ${index}++) {\n ${}\n}",{label:"for",detail:"loop",type:"keyword"}),ys("for (let ${name} of ${collection}) {\n ${}\n}",{label:"for",detail:"of loop",type:"keyword"}),ys("do {\n ${}\n} while (${})",{label:"do",detail:"loop",type:"keyword"}),ys("while (${}) {\n ${}\n}",{label:"while",detail:"loop",type:"keyword"}),ys(`try { +`);i>-1&&(n=n.slice(0,i))}return t+n.length<=this.to?n:n.slice(0,this.to-t)}nextLine(){let t=this.parsedPos,n=this.lineAfter(t),i=t+n.length;for(let r=this.rangeIndex;;){let s=this.ranges[r].to;if(s>=i||(n=n.slice(0,s-(i-n.length)),r++,r==this.ranges.length))break;let a=this.ranges[r].from,l=this.lineAfter(a);n+=l,i=a+l.length}return{line:n,end:i}}skipGapsTo(t,n,i){for(;;){let r=this.ranges[this.rangeIndex].to,s=t+n;if(i>0?r>s:r>=s)break;let a=this.ranges[++this.rangeIndex].from;n+=a-r}return n}moveRangeIndex(){for(;this.ranges[this.rangeIndex].to1){r=this.skipGapsTo(n,r,1),n+=r;let l=this.chunk.length;r=this.skipGapsTo(i,r,-1),i+=r,s+=this.chunk.length-l}let a=this.chunk.length-4;return this.lang.streamParser.mergeTokens&&s==4&&a>=0&&this.chunk[a]==t&&this.chunk[a+2]==n?this.chunk[a+2]=i:this.chunk.push(t,n,i,s),r}parseLine(t){let{line:n,end:i}=this.nextLine(),r=0,{streamParser:s}=this.lang,a=new _2e(n,t?t.state.tabSize:4,t?Fb(t.state):2);if(a.eol())s.blankLine(this.state,a.indentUnit);else for(;!a.eol();){let l=j2e(s.token,a,this.state);if(l&&(r=this.emitToken(this.lang.tokenTable.resolve(l),this.parsedPos+a.start,this.parsedPos+a.pos,r)),a.start>1e4)break}this.parsedPos=i,this.moveRangeIndex(),this.parsedPost.start)return r}throw new Error("Stream parser failed to advance stream.")}const vQ=Object.create(null),fk=[ta.none],m2t=new a1(fk),DJ=[],MJ=Object.create(null),R2e=Object.create(null);for(let[e,t]of[["variable","variableName"],["variable-2","variableName.special"],["string-2","string.special"],["def","variableName.definition"],["tag","tagName"],["attribute","attributeName"],["type","typeName"],["builtin","variableName.standard"],["qualifier","modifier"],["error","invalid"],["header","heading"],["property","propertyName"]])R2e[e]=P2e(vQ,t);class I2e{constructor(t){this.extra=t,this.table=Object.assign(Object.create(null),R2e)}resolve(t){return t?this.table[t]||(this.table[t]=P2e(this.extra,t)):0}}const g2t=new I2e(vQ);function A5(e,t){DJ.indexOf(e)>-1||(DJ.push(e),console.warn(t))}function P2e(e,t){let n=[];for(let l of t.split(" ")){let c=[];for(let u of l.split(".")){let d=e[u]||ne[u];d?typeof d=="function"?c.length?c=c.map(d):A5(u,`Modifier ${u} used at start of tag`):c.length?A5(u,`Tag ${u} used as modifier`):c=Array.isArray(d)?d:[d]:A5(u,`Unknown highlighting tag ${u}`)}for(let u of c)n.push(u)}if(!n.length)return 0;let i=t.replace(/ /g,"_"),r=i+" "+n.map(l=>l.id),s=MJ[r];if(s)return s.id;let a=MJ[r]=ta.define({id:fk.length,name:i,props:[zh({[i]:n})]});return fk.push(a),a.id}function b2t(e,t){let n=ta.define({id:fk.length,name:"Document",props:[Wp.add(()=>e),Vh.add(()=>i=>t.getIndent(i))],top:!0});return fk.push(n),n}Pr.RTL,Pr.LTR;var LJ={};class GN{constructor(t,n,i,r,s,a,l,c,u,d=0,f){this.p=t,this.stack=n,this.state=i,this.reducePos=r,this.pos=s,this.score=a,this.buffer=l,this.bufferBase=c,this.curContext=u,this.lookAhead=d,this.parent=f}toString(){return`[${this.stack.filter((t,n)=>n%3==0).concat(this.state)}]@${this.pos}${this.score?"!"+this.score:""}`}static start(t,n,i=0){let r=t.parser.context;return new GN(t,[],n,i,i,0,[],0,r?new $J(r,r.start):null,0,null)}get context(){return this.curContext?this.curContext.context:null}pushState(t,n){this.stack.push(this.state,n,this.bufferBase+this.buffer.length),this.state=t}reduce(t){var n;let i=t>>19,r=t&65535,{parser:s}=this.p,a=this.reducePos=2e3&&!(!((n=this.p.parser.nodeSet.types[r])===null||n===void 0)&&n.isAnonymous)&&(u==this.p.lastBigReductionStart?(this.p.bigReductionCount++,this.p.lastBigReductionSize=d):this.p.lastBigReductionSizec;)this.stack.pop();this.reduceContext(r,u)}storeNode(t,n,i,r=4,s=!1){if(t==0&&(!this.stack.length||this.stack[this.stack.length-1]0&&this.buffer[a-4]==0&&this.buffer[a-1]>-1){if(n==i)return;if(this.buffer[a-2]>=n){this.buffer[a-2]=i;return}}}if(!s||this.pos==i)this.buffer.push(t,n,i,r);else{let a=this.buffer.length;if(a>0&&(this.buffer[a-4]!=0||this.buffer[a-1]<0)){let l=!1;for(let c=a;c>0&&this.buffer[c-2]>i;c-=4)if(this.buffer[c-1]>=0){l=!0;break}if(l)for(;a>0&&this.buffer[a-2]>i;)this.buffer[a]=this.buffer[a-4],this.buffer[a+1]=this.buffer[a-3],this.buffer[a+2]=this.buffer[a-2],this.buffer[a+3]=this.buffer[a-1],a-=4,r>4&&(r-=4)}this.buffer[a]=t,this.buffer[a+1]=n,this.buffer[a+2]=i,this.buffer[a+3]=r}}shift(t,n,i,r){if(t&131072)this.pushState(t&65535,this.pos);else if(t&262144)this.pos=r,this.shiftContext(n,i),n<=this.p.parser.maxNode&&this.buffer.push(n,i,r,4);else{let s=t,{parser:a}=this.p;this.pos=r;let l=a.stateFlag(s,1);!l&&(r>i||n<=a.maxNode)&&(this.reducePos=r),this.pushState(s,l?i:Math.min(i,this.reducePos)),this.shiftContext(n,i),n<=a.maxNode&&this.buffer.push(n,i,r,4)}}apply(t,n,i,r){t&65536?this.reduce(t):this.shift(t,n,i,r)}useNode(t,n){let i=this.p.reused.length-1;(i<0||this.p.reused[i]!=t)&&(this.p.reused.push(t),i++);let r=this.pos;this.reducePos=this.pos=r+t.length,this.pushState(n,r),this.buffer.push(i,r,this.reducePos,-1),this.curContext&&this.updateContext(this.curContext.tracker.reuse(this.curContext.context,t,this,this.p.stream.reset(this.pos-t.length)))}split(){let t=this,n=t.buffer.length;for(n&&t.buffer[n-4]==0&&(n-=4);n>0&&t.buffer[n-2]>t.reducePos;)n-=4;let i=t.buffer.slice(n),r=t.bufferBase+n;for(;t&&r==t.bufferBase;)t=t.parent;return new GN(this.p,this.stack.slice(),this.state,this.reducePos,this.pos,this.score,i,r,this.curContext,this.lookAhead,t)}recoverByDelete(t,n){let i=t<=this.p.parser.maxNode;i&&this.storeNode(t,this.pos,n,4),this.storeNode(0,this.pos,n,i?8:4),this.pos=this.reducePos=n,this.score-=190}canShift(t){for(let n=new y2t(this);;){let i=this.p.parser.stateSlot(n.state,4)||this.p.parser.hasAction(n.state,t);if(i==0)return!1;if(!(i&65536))return!0;n.reduce(i)}}recoverByInsert(t){if(this.stack.length>=300)return[];let n=this.p.parser.nextStates(this.state);if(n.length>8||this.stack.length>=120){let r=[];for(let s=0,a;sc&1&&l==a)||r.push(n[s],a)}n=r}let i=[];for(let r=0;r>19,r=n&65535,s=this.stack.length-i*3;if(s<0||t.getGoto(this.stack[s],r,!1)<0){let a=this.findForcedReduction();if(a==null)return!1;n=a}this.storeNode(0,this.pos,this.pos,4,!0),this.score-=100}return this.reducePos=this.pos,this.reduce(n),!0}findForcedReduction(){let{parser:t}=this.p,n=[],i=(r,s)=>{if(!n.includes(r))return n.push(r),t.allActions(r,a=>{if(!(a&393216))if(a&65536){let l=(a>>19)-s;if(l>1){let c=a&65535,u=this.stack.length-l*3;if(u>=0&&t.getGoto(this.stack[u],c,!1)>=0)return l<<19|65536|c}}else{let l=i(a,s+1);if(l!=null)return l}})};return i(this.state,0)}forceAll(){for(;!this.p.parser.stateFlag(this.state,2);)if(!this.forceReduce()){this.storeNode(0,this.pos,this.pos,4,!0);break}return this}get deadEnd(){if(this.stack.length!=3)return!1;let{parser:t}=this.p;return t.data[t.stateSlot(this.state,1)]==65535&&!t.stateSlot(this.state,4)}restart(){this.storeNode(0,this.pos,this.pos,4,!0),this.state=this.stack[0],this.stack.length=0}sameState(t){if(this.state!=t.state||this.stack.length!=t.stack.length)return!1;for(let n=0;n0&&this.emitLookAhead()}}class $J{constructor(t,n){this.tracker=t,this.context=n,this.hash=t.strict?t.hash(n):0}}class y2t{constructor(t){this.start=t,this.state=t.state,this.stack=t.stack,this.base=this.stack.length}reduce(t){let n=t&65535,i=t>>19;i==0?(this.stack==this.start.stack&&(this.stack=this.stack.slice()),this.stack.push(this.state,0,0),this.base+=3):this.base-=(i-1)*3;let r=this.start.p.parser.getGoto(this.stack[this.base-3],n,!0);this.state=r}}class XN{constructor(t,n,i){this.stack=t,this.pos=n,this.index=i,this.buffer=t.buffer,this.index==0&&this.maybeNext()}static create(t,n=t.bufferBase+t.buffer.length){return new XN(t,n,n-t.bufferBase)}maybeNext(){let t=this.stack.parent;t!=null&&(this.index=this.stack.bufferBase-t.bufferBase,this.stack=t,this.buffer=t.buffer)}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}next(){this.index-=4,this.pos-=4,this.index==0&&this.maybeNext()}fork(){return new XN(this.stack,this.pos,this.index)}}function Xw(e,t=Uint16Array){if(typeof e!="string")return e;let n=null;for(let i=0,r=0;i=92&&a--,a>=34&&a--;let c=a-32;if(c>=46&&(c-=46,l=!0),s+=c,l)break;s*=46}n?n[r++]=s:n=new t(s)}return n}class B2{constructor(){this.start=-1,this.value=-1,this.end=-1,this.extended=-1,this.lookAhead=0,this.mask=0,this.context=0}}const FJ=new B2;class v2t{constructor(t,n){this.input=t,this.ranges=n,this.chunk="",this.chunkOff=0,this.chunk2="",this.chunk2Pos=0,this.next=-1,this.token=FJ,this.rangeIndex=0,this.pos=this.chunkPos=n[0].from,this.range=n[0],this.end=n[n.length-1].to,this.readNext()}resolveOffset(t,n){let i=this.range,r=this.rangeIndex,s=this.pos+t;for(;si.to:s>=i.to;){if(r==this.ranges.length-1)return null;let a=this.ranges[++r];s+=a.from-i.to,i=a}return s}clipPos(t){if(t>=this.range.from&&tt)return Math.max(t,n.from);return this.end}peek(t){let n=this.chunkOff+t,i,r;if(n>=0&&n=this.chunk2Pos&&il.to&&(this.chunk2=this.chunk2.slice(0,l.to-i)),r=this.chunk2.charCodeAt(0)}}return i>=this.token.lookAhead&&(this.token.lookAhead=i+1),r}acceptToken(t,n=0){let i=n?this.resolveOffset(n,-1):this.pos;if(i==null||i=this.chunk2Pos&&this.posthis.range.to?t.slice(0,this.range.to-this.pos):t,this.chunkPos=this.pos,this.chunkOff=0}}readNext(){return this.chunkOff>=this.chunk.length&&(this.getChunk(),this.chunkOff==this.chunk.length)?this.next=-1:this.next=this.chunk.charCodeAt(this.chunkOff)}advance(t=1){for(this.chunkOff+=t;this.pos+t>=this.range.to;){if(this.rangeIndex==this.ranges.length-1)return this.setDone();t-=this.range.to-this.pos,this.range=this.ranges[++this.rangeIndex],this.pos=this.range.from}return this.pos+=t,this.pos>=this.token.lookAhead&&(this.token.lookAhead=this.pos+1),this.readNext()}setDone(){return this.pos=this.chunkPos=this.end,this.range=this.ranges[this.rangeIndex=this.ranges.length-1],this.chunk="",this.next=-1}reset(t,n){if(n?(this.token=n,n.start=t,n.lookAhead=t+1,n.value=n.extended=-1):this.token=FJ,this.pos!=t){if(this.pos=t,t==this.end)return this.setDone(),this;for(;t=this.range.to;)this.range=this.ranges[++this.rangeIndex];t>=this.chunkPos&&t=this.chunkPos&&n<=this.chunkPos+this.chunk.length)return this.chunk.slice(t-this.chunkPos,n-this.chunkPos);if(t>=this.chunk2Pos&&n<=this.chunk2Pos+this.chunk2.length)return this.chunk2.slice(t-this.chunk2Pos,n-this.chunk2Pos);if(t>=this.range.from&&n<=this.range.to)return this.input.read(t,n);let i="";for(let r of this.ranges){if(r.from>=n)break;r.to>t&&(i+=this.input.read(Math.max(r.from,t),Math.min(r.to,n)))}return i}}class xv{constructor(t,n){this.data=t,this.id=n}token(t,n){let{parser:i}=n.p;D2e(this.data,t,n,this.id,i.data,i.tokenPrecTable)}}xv.prototype.contextual=xv.prototype.fallback=xv.prototype.extend=!1;class YN{constructor(t,n,i){this.precTable=n,this.elseToken=i,this.data=typeof t=="string"?Xw(t):t}token(t,n){let i=t.pos,r=0;for(;;){let s=t.next<0,a=t.resolveOffset(1,1);if(D2e(this.data,t,n,0,this.data,this.precTable),t.token.value>-1)break;if(this.elseToken==null)return;if(s||r++,a==null)break;t.reset(a,t.token)}r&&(t.reset(i,t.token),t.acceptToken(this.elseToken,r))}}YN.prototype.contextual=xv.prototype.fallback=xv.prototype.extend=!1;class Hs{constructor(t,n={}){this.token=t,this.contextual=!!n.contextual,this.fallback=!!n.fallback,this.extend=!!n.extend}}function D2e(e,t,n,i,r,s){let a=0,l=1<0){let g=e[m];if(c.allows(g)&&(t.token.value==-1||t.token.value==g||x2t(g,t.token.value,r,s))){t.acceptToken(g);break}}let d=t.next,f=0,h=e[a+2];if(t.next<0&&h>f&&e[u+h*3-3]==65535){a=e[u+h*3-1];continue e}for(;f>1,g=u+m+(m<<1),b=e[g],v=e[g+1]||65536;if(d=v)f=m+1;else{a=e[g+2],t.advance();continue e}}break}}function BJ(e,t,n){for(let i=t,r;(r=e[i])!=65535;i++)if(r==n)return i-t;return-1}function x2t(e,t,n,i){let r=BJ(n,i,t);return r<0||BJ(n,i,e)t)&&!i.type.isError)return n<0?Math.max(0,Math.min(i.to-1,t-25)):Math.min(e.length,Math.max(i.from+1,t+25));if(n<0?i.prevSibling():i.nextSibling())break;if(!i.parent())return n<0?0:e.length}}let w2t=class{constructor(t,n){this.fragments=t,this.nodeSet=n,this.i=0,this.fragment=null,this.safeFrom=-1,this.safeTo=-1,this.trees=[],this.start=[],this.index=[],this.nextFragment()}nextFragment(){let t=this.fragment=this.i==this.fragments.length?null:this.fragments[this.i++];if(t){for(this.safeFrom=t.openStart?UJ(t.tree,t.from+t.offset,1)-t.offset:t.from,this.safeTo=t.openEnd?UJ(t.tree,t.to+t.offset,-1)-t.offset:t.to;this.trees.length;)this.trees.pop(),this.start.pop(),this.index.pop();this.trees.push(t.tree),this.start.push(-t.offset),this.index.push(0),this.nextStart=this.safeFrom}else this.nextStart=1e9}nodeAt(t){if(tt)return this.nextStart=a,null;if(s instanceof bi){if(a==t){if(a=Math.max(this.safeFrom,t)&&(this.trees.push(s),this.start.push(a),this.index.push(0))}else this.index[n]++,this.nextStart=a+s.length}}};class O2t{constructor(t,n){this.stream=n,this.tokens=[],this.mainToken=null,this.actions=[],this.tokens=t.tokenizers.map(i=>new B2)}getActions(t){let n=0,i=null,{parser:r}=t.p,{tokenizers:s}=r,a=r.stateSlot(t.state,3),l=t.curContext?t.curContext.hash:0,c=0;for(let u=0;uf.end+25&&(c=Math.max(f.lookAhead,c)),f.value!=0)){let h=n;if(f.extended>-1&&(n=this.addActions(t,f.extended,f.end,n)),n=this.addActions(t,f.value,f.end,n),!d.extend&&(i=f,n>h))break}}for(;this.actions.length>n;)this.actions.pop();return c&&t.setLookAhead(c),!i&&t.pos==this.stream.end&&(i=new B2,i.value=t.p.parser.eofTerm,i.start=i.end=t.pos,n=this.addActions(t,i.value,i.end,n)),this.mainToken=i,this.actions}getMainToken(t){if(this.mainToken)return this.mainToken;let n=new B2,{pos:i,p:r}=t;return n.start=i,n.end=Math.min(i+1,r.stream.end),n.value=i==r.stream.end?r.parser.eofTerm:0,n}updateCachedToken(t,n,i){let r=this.stream.clipPos(i.pos);if(n.token(this.stream.reset(r,t),i),t.value>-1){let{parser:s}=i.p;for(let a=0;a=0&&i.p.parser.dialect.allows(l>>1)){l&1?t.extended=l>>1:t.value=l>>1;break}}}else t.value=0,t.end=this.stream.clipPos(r+1)}putAction(t,n,i,r){for(let s=0;st.bufferLength*4?new w2t(i,t.nodeSet):null}get parsedPos(){return this.minStackPos}advance(){let t=this.stacks,n=this.minStackPos,i=this.stacks=[],r,s;if(this.bigReductionCount>300&&t.length==1){let[a]=t;for(;a.forceReduce()&&a.stack.length&&a.stack[a.stack.length-2]>=this.lastBigReductionStart;);this.bigReductionCount=this.lastBigReductionSize=0}for(let a=0;an)i.push(l);else{if(this.advanceStack(l,i,t))continue;{r||(r=[],s=[]),r.push(l);let c=this.tokens.getMainToken(l);s.push(c.value,c.end)}}break}}if(!i.length){let a=r&&E2t(r);if(a)return Ml&&console.log("Finish with "+this.stackID(a)),this.stackToTree(a);if(this.parser.strict)throw Ml&&r&&console.log("Stuck with token "+(this.tokens.mainToken?this.parser.getName(this.tokens.mainToken.value):"none")),new SyntaxError("No parse at "+n);this.recovering||(this.recovering=5)}if(this.recovering&&r){let a=this.stoppedAt!=null&&r[0].pos>this.stoppedAt?r[0]:this.runRecovery(r,s,i);if(a)return Ml&&console.log("Force-finish "+this.stackID(a)),this.stackToTree(a.forceAll())}if(this.recovering){let a=this.recovering==1?1:this.recovering*3;if(i.length>a)for(i.sort((l,c)=>c.score-l.score);i.length>a;)i.pop();i.some(l=>l.reducePos>n)&&this.recovering--}else if(i.length>1){e:for(let a=0;a500&&u.buffer.length>500)if((l.score-u.score||l.buffer.length-u.buffer.length)>0)i.splice(c--,1);else{i.splice(a--,1);continue e}}}i.length>12&&(i.sort((a,l)=>l.score-a.score),i.splice(12,i.length-12))}this.minStackPos=i[0].pos;for(let a=1;a ":"";if(this.stoppedAt!=null&&r>this.stoppedAt)return t.forceReduce()?t:null;if(this.fragments){let u=t.curContext&&t.curContext.tracker.strict,d=u?t.curContext.hash:0;for(let f=this.fragments.nodeAt(r);f;){let h=this.parser.nodeSet.types[f.type.id]==f.type?s.getGoto(t.state,f.type.id):-1;if(h>-1&&f.length&&(!u||(f.prop(Un.contextHash)||0)==d))return t.useNode(f,h),Ml&&console.log(a+this.stackID(t)+` (via reuse of ${s.getName(f.type.id)})`),!0;if(!(f instanceof bi)||f.children.length==0||f.positions[0]>0)break;let m=f.children[0];if(m instanceof bi&&f.positions[0]==0)f=m;else break}}let l=s.stateSlot(t.state,4);if(l>0)return t.reduce(l),Ml&&console.log(a+this.stackID(t)+` (via always-reduce ${s.getName(l&65535)})`),!0;if(t.stack.length>=8400)for(;t.stack.length>6e3&&t.forceReduce(););let c=this.tokens.getActions(t);for(let u=0;ur?n.push(g):i.push(g)}return!1}advanceFully(t,n){let i=t.pos;for(;;){if(!this.advanceStack(t,null,null))return!1;if(t.pos>i)return QJ(t,n),!0}}runRecovery(t,n,i){let r=null,s=!1;for(let a=0;a ":"";if(l.deadEnd&&(s||(s=!0,l.restart(),Ml&&console.log(d+this.stackID(l)+" (restarted)"),this.advanceFully(l,i))))continue;let f=l.split(),h=d;for(let m=0;m<10&&f.forceReduce()&&(Ml&&console.log(h+this.stackID(f)+" (via force-reduce)"),!this.advanceFully(f,i));m++)Ml&&(h=this.stackID(f)+" -> ");for(let m of l.recoverByInsert(c))Ml&&console.log(d+this.stackID(m)+" (via recover-insert)"),this.advanceFully(m,i);this.stream.end>l.pos?(u==l.pos&&(u++,c=0),l.recoverByDelete(c,u),Ml&&console.log(d+this.stackID(l)+` (via recover-delete ${this.parser.getName(c)})`),QJ(l,i)):(!r||r.scoree;class DI{constructor(t){this.start=t.start,this.shift=t.shift||N5,this.reduce=t.reduce||N5,this.reuse=t.reuse||N5,this.hash=t.hash||(()=>0),this.strict=t.strict!==!1}}class jh extends kI{constructor(t){if(super(),this.wrappers=[],t.version!=14)throw new RangeError(`Parser version (${t.version}) doesn't match runtime version (14)`);let n=t.nodeNames.split(" ");this.minRepeatTerm=n.length;for(let l=0;lt.topRules[l][1]),r=[];for(let l=0;l=0)s(d,c,l[u++]);else{let f=l[u+-d];for(let h=-d;h>0;h--)s(l[u++],c,f);u++}}}this.nodeSet=new a1(n.map((l,c)=>ta.define({name:c>=this.minRepeatTerm?void 0:l,id:c,props:r[c],top:i.indexOf(c)>-1,error:c==0,skipped:t.skippedNodes&&t.skippedNodes.indexOf(c)>-1}))),t.propSources&&(this.nodeSet=this.nodeSet.extend(...t.propSources)),this.strict=!1,this.bufferLength=ITe;let a=Xw(t.tokenData);this.context=t.context,this.specializerSpecs=t.specialized||[],this.specialized=new Uint16Array(this.specializerSpecs.length);for(let l=0;ltypeof l=="number"?new xv(a,l):l),this.topRules=t.topRules,this.dialects=t.dialects||{},this.dynamicPrecedences=t.dynamicPrecedences||null,this.tokenPrecTable=t.tokenPrec,this.termNames=t.termNames||null,this.maxNode=this.nodeSet.types.length-1,this.dialect=this.parseDialect(),this.top=this.topRules[Object.keys(this.topRules)[0]]}createParse(t,n,i){let r=new S2t(this,t,n,i);for(let s of this.wrappers)r=s(r,t,n,i);return r}getGoto(t,n,i=!1){let r=this.goto;if(n>=r[0])return-1;for(let s=r[n+1];;){let a=r[s++],l=a&1,c=r[s++];if(l&&i)return c;for(let u=s+(a>>1);s0}validAction(t,n){return!!this.allActions(t,i=>i==n?!0:null)}allActions(t,n){let i=this.stateSlot(t,4),r=i?n(i):void 0;for(let s=this.stateSlot(t,1);r==null;s+=3){if(this.data[s]==65535)if(this.data[s+1]==1)s=Mf(this.data,s+2);else break;r=n(Mf(this.data,s+1))}return r}nextStates(t){let n=[];for(let i=this.stateSlot(t,1);;i+=3){if(this.data[i]==65535)if(this.data[i+1]==1)i=Mf(this.data,i+2);else break;if(!(this.data[i+2]&1)){let r=this.data[i+1];n.some((s,a)=>a&1&&s==r)||n.push(this.data[i],r)}}return n}configure(t){let n=Object.assign(Object.create(jh.prototype),this);if(t.props&&(n.nodeSet=this.nodeSet.extend(...t.props)),t.top){let i=this.topRules[t.top];if(!i)throw new RangeError(`Invalid top rule name ${t.top}`);n.top=i}return t.tokenizers&&(n.tokenizers=this.tokenizers.map(i=>{let r=t.tokenizers.find(s=>s.from==i);return r?r.to:i})),t.specializers&&(n.specializers=this.specializers.slice(),n.specializerSpecs=this.specializerSpecs.map((i,r)=>{let s=t.specializers.find(l=>l.from==i.external);if(!s)return i;let a=Object.assign(Object.assign({},i),{external:s.to});return n.specializers[r]=zJ(a),a})),t.contextTracker&&(n.context=t.contextTracker),t.dialect&&(n.dialect=this.parseDialect(t.dialect)),t.strict!=null&&(n.strict=t.strict),t.wrap&&(n.wrappers=n.wrappers.concat(t.wrap)),t.bufferLength!=null&&(n.bufferLength=t.bufferLength),n}hasWrappers(){return this.wrappers.length>0}getName(t){return this.termNames?this.termNames[t]:String(t<=this.maxNode&&this.nodeSet.types[t].name||t)}get eofTerm(){return this.maxNode+1}get topNode(){return this.nodeSet.types[this.top[1]]}dynamicPrecedence(t){let n=this.dynamicPrecedences;return n==null?0:n[t]||0}parseDialect(t){let n=Object.keys(this.dialects),i=n.map(()=>!1);if(t)for(let s of t.split(" ")){let a=n.indexOf(s);a>=0&&(i[a]=!0)}let r=null;for(let s=0;si)&&n.p.parser.stateFlag(n.state,2)&&(!t||t.scoree.external(n,i)<<1|t}return e.get}const C2t=316,T2t=317,VJ=1,A2t=2,_2t=3,N2t=4,j2t=318,R2t=320,I2t=321,P2t=5,D2t=6,M2t=0,n8=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],M2e=125,L2t=59,i8=47,$2t=42,F2t=43,B2t=45,U2t=60,Q2t=44,z2t=63,V2t=46,H2t=91,q2t=new DI({start:!1,shift(e,t){return t==P2t||t==D2t||t==R2t?e:t==I2t},strict:!1}),W2t=new Hs((e,t)=>{let{next:n}=e;(n==M2e||n==-1||t.context)&&e.acceptToken(j2t)},{contextual:!0,fallback:!0}),K2t=new Hs((e,t)=>{let{next:n}=e,i;n8.indexOf(n)>-1||n==i8&&((i=e.peek(1))==i8||i==$2t)||n!=M2e&&n!=L2t&&n!=-1&&!t.context&&e.acceptToken(C2t)},{contextual:!0}),G2t=new Hs((e,t)=>{e.next==H2t&&!t.context&&e.acceptToken(T2t)},{contextual:!0}),X2t=new Hs((e,t)=>{let{next:n}=e;if(n==F2t||n==B2t){if(e.advance(),n==e.next){e.advance();let i=!t.context&&t.canShift(VJ);e.acceptToken(i?VJ:A2t)}}else n==z2t&&e.peek(1)==V2t&&(e.advance(),e.advance(),(e.next<48||e.next>57)&&e.acceptToken(_2t))},{contextual:!0});function j5(e,t){return e>=65&&e<=90||e>=97&&e<=122||e==95||e>=192||!t&&e>=48&&e<=57}const Y2t=new Hs((e,t)=>{if(e.next!=U2t||!t.dialectEnabled(M2t)||(e.advance(),e.next==i8))return;let n=0;for(;n8.indexOf(e.next)>-1;)e.advance(),n++;if(j5(e.next,!0)){for(e.advance(),n++;j5(e.next,!1);)e.advance(),n++;for(;n8.indexOf(e.next)>-1;)e.advance(),n++;if(e.next==Q2t)return;for(let i=0;;i++){if(i==7){if(!j5(e.next,!0))return;break}if(e.next!="extends".charCodeAt(i))break;e.advance(),n++}}e.acceptToken(N2t,-n)}),Z2t=zh({"get set async static":ne.modifier,"for while do if else switch try catch finally return throw break continue default case defer":ne.controlKeyword,"in of await yield void typeof delete instanceof as satisfies":ne.operatorKeyword,"let var const using function class extends":ne.definitionKeyword,"import export from":ne.moduleKeyword,"with debugger new":ne.keyword,TemplateString:ne.special(ne.string),super:ne.atom,BooleanLiteral:ne.bool,this:ne.self,null:ne.null,Star:ne.modifier,VariableName:ne.variableName,"CallExpression/VariableName TaggedTemplateExpression/VariableName":ne.function(ne.variableName),VariableDefinition:ne.definition(ne.variableName),Label:ne.labelName,PropertyName:ne.propertyName,PrivatePropertyName:ne.special(ne.propertyName),"CallExpression/MemberExpression/PropertyName":ne.function(ne.propertyName),"FunctionDeclaration/VariableDefinition":ne.function(ne.definition(ne.variableName)),"ClassDeclaration/VariableDefinition":ne.definition(ne.className),"NewExpression/VariableName":ne.className,PropertyDefinition:ne.definition(ne.propertyName),PrivatePropertyDefinition:ne.definition(ne.special(ne.propertyName)),UpdateOp:ne.updateOperator,"LineComment Hashbang":ne.lineComment,BlockComment:ne.blockComment,Number:ne.number,String:ne.string,Escape:ne.escape,ArithOp:ne.arithmeticOperator,LogicOp:ne.logicOperator,BitOp:ne.bitwiseOperator,CompareOp:ne.compareOperator,RegExp:ne.regexp,Equals:ne.definitionOperator,Arrow:ne.function(ne.punctuation),": Spread":ne.punctuation,"( )":ne.paren,"[ ]":ne.squareBracket,"{ }":ne.brace,"InterpolationStart InterpolationEnd":ne.special(ne.brace),".":ne.derefOperator,", ;":ne.separator,"@":ne.meta,TypeName:ne.typeName,TypeDefinition:ne.definition(ne.typeName),"type enum interface implements namespace module declare":ne.definitionKeyword,"abstract global Privacy readonly override":ne.modifier,"is keyof unique infer asserts":ne.operatorKeyword,JSXAttributeValue:ne.attributeValue,JSXText:ne.content,"JSXStartTag JSXStartCloseTag JSXSelfCloseEndTag JSXEndTag":ne.angleBracket,"JSXIdentifier JSXNameSpacedName":ne.tagName,"JSXAttribute/JSXIdentifier JSXAttribute/JSXNameSpacedName":ne.attributeName,"JSXBuiltin/JSXIdentifier":ne.standard(ne.tagName)}),J2t={__proto__:null,export:20,as:25,from:33,default:36,async:41,function:42,in:52,out:55,const:56,extends:60,this:64,true:72,false:72,null:84,void:88,typeof:92,super:108,new:142,delete:154,yield:163,await:167,class:172,public:235,private:235,protected:235,readonly:237,instanceof:256,satisfies:259,import:292,keyof:349,unique:353,infer:359,asserts:395,is:397,abstract:417,implements:419,type:421,let:424,var:426,using:429,interface:435,enum:439,namespace:445,module:447,declare:451,global:455,defer:471,for:476,of:485,while:488,with:492,do:496,if:500,else:502,switch:506,case:512,try:518,catch:522,finally:526,return:530,throw:534,break:538,continue:542,debugger:546},e_t={__proto__:null,async:129,get:131,set:133,declare:195,public:197,private:197,protected:197,static:199,abstract:201,override:203,readonly:209,accessor:211,new:401},t_t={__proto__:null,"<":193},n_t=jh.deserialize({version:14,states:"$F|Q%TQlOOO%[QlOOO'_QpOOP(lO`OOO*zQ!0MxO'#CiO+RO#tO'#CjO+aO&jO'#CjO+oO#@ItO'#DaO.QQlO'#DgO.bQlO'#DrO%[QlO'#DzO0fQlO'#ESOOQ!0Lf'#E['#E[O1PQ`O'#EXOOQO'#Ep'#EpOOQO'#Il'#IlO1XQ`O'#GsO1dQ`O'#EoO1iQ`O'#EoO3hQ!0MxO'#JrO6[Q!0MxO'#JsO6uQ`O'#F]O6zQ,UO'#FtOOQ!0Lf'#Ff'#FfO7VO7dO'#FfO9XQMhO'#F|O9`Q`O'#F{OOQ!0Lf'#Js'#JsOOQ!0Lb'#Jr'#JrO9eQ`O'#GwOOQ['#K_'#K_O9pQ`O'#IYO9uQ!0LrO'#IZOOQ['#J`'#J`OOQ['#I_'#I_Q`QlOOQ`QlOOO9}Q!L^O'#DvO:UQlO'#EOO:]QlO'#EQO9kQ`O'#GsO:dQMhO'#CoO:rQ`O'#EnO:}Q`O'#EyO;hQMhO'#FeO;xQ`O'#GsOOQO'#K`'#K`O;}Q`O'#K`O<]Q`O'#G{O<]Q`O'#G|O<]Q`O'#HOO9kQ`O'#HRO=SQ`O'#HUO>kQ`O'#CeO>{Q`O'#HcO?TQ`O'#HiO?TQ`O'#HkO`QlO'#HmO?TQ`O'#HoO?TQ`O'#HrO?YQ`O'#HxO?_Q!0LsO'#IOO%[QlO'#IQO?jQ!0LsO'#ISO?uQ!0LsO'#IUO9uQ!0LrO'#IWO@QQ!0MxO'#CiOASQpO'#DlQOQ`OOO%[QlO'#EQOAjQ`O'#ETO:dQMhO'#EnOAuQ`O'#EnOBQQ!bO'#FeOOQ['#Cg'#CgOOQ!0Lb'#Dq'#DqOOQ!0Lb'#Jv'#JvO%[QlO'#JvOOQO'#Jy'#JyOOQO'#Ih'#IhOCQQpO'#EgOOQ!0Lb'#Ef'#EfOOQ!0Lb'#J}'#J}OC|Q!0MSO'#EgODWQpO'#EWOOQO'#Jx'#JxODlQpO'#JyOEyQpO'#EWODWQpO'#EgPFWO&2DjO'#CbPOOO)CD})CD}OOOO'#I`'#I`OFcO#tO,59UOOQ!0Lh,59U,59UOOOO'#Ia'#IaOFqO&jO,59UOGPQ!L^O'#DcOOOO'#Ic'#IcOGWO#@ItO,59{OOQ!0Lf,59{,59{OGfQlO'#IdOGyQ`O'#JtOIxQ!fO'#JtO+}QlO'#JtOJPQ`O,5:ROJgQ`O'#EpOJtQ`O'#KTOKPQ`O'#KSOKPQ`O'#KSOKXQ`O,5;^OK^Q`O'#KROOQ!0Ln,5:^,5:^OKeQlO,5:^OMcQ!0MxO,5:fONSQ`O,5:nONmQ!0LrO'#KQONtQ`O'#KPO9eQ`O'#KPO! YQ`O'#KPO! bQ`O,5;]O! gQ`O'#KPO!#lQ!fO'#JsOOQ!0Lh'#Ci'#CiO%[QlO'#ESO!$[Q!fO,5:sOOQS'#Jz'#JzOOQO-EtOOQ['#Jh'#JhOOQ[,5>u,5>uOOQ[-E<]-E<]O!TO`QlO,5>VO!LOQ`O,5>XO`QlO,5>ZO!LTQ`O,5>^O!LYQlO,5>dOOQ[,5>j,5>jO%[QlO,5>jO9uQ!0LrO,5>lOOQ[,5>n,5>nO#!dQ`O,5>nOOQ[,5>p,5>pO#!dQ`O,5>pOOQ[,5>r,5>rO##QQpO'#D_O%[QlO'#JvO##sQpO'#JvO##}QpO'#DmO#$`QpO'#DmO#&qQlO'#DmO#&xQ`O'#JuO#'QQ`O,5:WO#'VQ`O'#EtO#'eQ`O'#KUO#'mQ`O,5;_O#'rQpO'#DmO#(PQpO'#EVOOQ!0Lf,5:o,5:oO%[QlO,5:oO#(WQ`O,5:oO?YQ`O,5;YO!CUQpO,5;YO!C^QMhO,5;YO:dQMhO,5;YO#(`Q`O,5@bO#(eQ07dO,5:sOOQO-EPO$6^Q`O,5>POOQ[1G3i1G3iO`QlO1G3iOOQ[1G3o1G3oOOQ[1G3q1G3qO?TQ`O1G3sO$6cQlO1G3uO$:gQlO'#HtOOQ[1G3x1G3xO$:tQ`O'#HzO?YQ`O'#H|OOQ[1G4O1G4OO$:|QlO1G4OO9uQ!0LrO1G4UOOQ[1G4W1G4WOOQ!0Lb'#G_'#G_O9uQ!0LrO1G4YO9uQ!0LrO1G4[O$?TQ`O,5@bO!)[QlO,5;`O9eQ`O,5;`O?YQ`O,5:XO!)[QlO,5:XO!CUQpO,5:XO$?YQ?MtO,5:XOOQO,5;`,5;`O$?dQpO'#IeO$?zQ`O,5@aOOQ!0Lf1G/r1G/rO$@SQpO'#IkO$@^Q`O,5@pOOQ!0Lb1G0y1G0yO#$`QpO,5:XOOQO'#Ig'#IgO$@fQpO,5:qOOQ!0Ln,5:q,5:qO#(ZQ`O1G0ZOOQ!0Lf1G0Z1G0ZO%[QlO1G0ZOOQ!0Lf1G0t1G0tO?YQ`O1G0tO!CUQpO1G0tO!C^QMhO1G0tOOQ!0Lb1G5|1G5|O!ByQ!0LrO1G0^OOQO1G0m1G0mO%[QlO1G0mO$@mQ!0LrO1G0mO$@xQ!0LrO1G0mO!CUQpO1G0^ODWQpO1G0^O$AWQ!0LrO1G0mOOQO1G0^1G0^O$AlQ!0MxO1G0mPOOO-E<[-E<[POOO1G.h1G.hOOOO1G/i1G/iO$AvQ!bO,5QQpO,5@}OOQ!0Lb1G3c1G3cOOQ[7+$V7+$VO@zQ`O7+$VO9uQ!0LrO7+$VO%>]Q`O7+$VO%[QlO1G6lO%[QlO1G6mO%>bQ!0LrO1G6lO%>lQlO1G3kO%>sQ`O1G3kO%>xQlO1G3kOOQ[7+)T7+)TO9uQ!0LrO7+)_O`QlO7+)aOOQ['#Kh'#KhOOQ['#JS'#JSO%?PQlO,5>`OOQ[,5>`,5>`O%[QlO'#HuO%?^Q`O'#HwOOQ[,5>f,5>fO9eQ`O,5>fOOQ[,5>h,5>hOOQ[7+)j7+)jOOQ[7+)p7+)pOOQ[7+)t7+)tOOQ[7+)v7+)vO%?cQpO1G5|O%?}Q?MtO1G0zO%@XQ`O1G0zOOQO1G/s1G/sO%@dQ?MtO1G/sO?YQ`O1G/sO!)[QlO'#DmOOQO,5?P,5?POOQO-ERQ`O7+,WO&>WQ`O7+,XO%[QlO7+,WO%[QlO7+,XOOQ[7+)V7+)VO&>]Q`O7+)VO&>bQlO7+)VO&>iQ`O7+)VOOQ[<nQ`O,5>aOOQ[,5>c,5>cO&>sQ`O1G4QO9eQ`O7+&fO!)[QlO7+&fOOQO7+%_7+%_O&>xQ?MtO1G6ZO?YQ`O7+%_OOQ!0Lf<yQ?MvO,5?aO'@|Q?MvO,5?cO'CPQ?MvO7+'|O'DuQMjOG27TOOQO<VO!l$xO#jROe!iOpkOrPO(T)]O(VTO(YUO(aVO(o[O~O!]$_Oa$qa'z$qa'w$qa!k$qa!Y$qa!_$qa%i$qa!g$qa~Ol)dO~P!&zOh%VOp%WOr%XOs$tOt$tOz%YO|%ZO!O%]O!S${O!_$|O!i%bO!l$xO#j%cO$W%`O$t%^O$v%_O$y%aO(T(vO(VTO(YUO(a$uO(y$}O(z%PO~Og(pP~P!,TO!Q)iO!g)hO!_$^X$Z$^X$]$^X$_$^X$f$^X~O!g)hO!_({X$Z({X$]({X$_({X$f({X~O!Q)iO~P!.^O!Q)iO!_({X$Z({X$]({X$_({X$f({X~O!_)kO$Z)oO$])jO$_)jO$f)pO~O![)sO~P!)[O$]$hO$_$gO$f)wO~On$zX!Q$zX#S$zX'y$zX(y$zX(z$zX~OgmXg$zXnmX!]mX#`mX~P!0SOx)yO(b)zO(c)|O~On*VO!Q*OO'y*PO(y$}O(z%PO~Og)}O~P!1WOg*WO~Oh%VOr%XOs$tOt$tOz%YO|%ZO!OVO!l$xO#jVO!l$xO#jROe!iOpkOrPO(VTO(YUO(aVO(o[O~O(T=QO~P#$qO!]-]O!^(iX~O!^-_O~O!g-VO#`-UO!]#hX!^#hX~O!]-`O!^(xX~O!^-bO~O!c-cO!d-cO(U!lO~P#$`O!^-fO~P'_On-iO!_'`O~O!Y-nO~Os!{a!b!{a!c!{a!d!{a#T!{a#U!{a#V!{a#W!{a#X!{a#[!{a#]!{a(U!{a(V!{a(Y!{a(e!{a(o!{a~P!#vO!p-sO#`-qO~PChO!c-uO!d-uO(U!lO~PDWOa%nO#`-qO'z%nO~Oa%nO!g#vO#`-qO'z%nO~Oa%nO!g#vO!p-sO#`-qO'z%nO(r'pO~O(P'xO(Q'xO(R-zO~Ov-{O~O!Y'Wa!]'Wa~P!:tO![.PO!Y'WX!]'WX~P%[O!](VO!Y(ha~O!Y(ha~PHRO!](^O!Y(va~O!S%hO![.TO!_%iO(T%gO!Y'^X!]'^X~O#`.VO!](ta!k(taa(ta'z(ta~O!g#vO~P#,wO!](jO!k(sa~O!S%hO!_%iO#j.ZO(T%gO~Op.`O!S%hO![.]O!_%iO!|]O#i._O#j.]O(T%gO!]'aX!k'aX~OR.dO!l#xO~Oh%VOn.gO!_'`O%i.fO~Oa#ci!]#ci'z#ci'w#ci!Y#ci!k#civ#ci!_#ci%i#ci!g#ci~P!:tOn>]O!Q*OO'y*PO(y$}O(z%PO~O#k#_aa#_a#`#_a'z#_a!]#_a!k#_a!_#_a!Y#_a~P#/sO#k(`XP(`XR(`X[(`Xa(`Xj(`Xr(`X!S(`X!l(`X!p(`X#R(`X#n(`X#o(`X#p(`X#q(`X#r(`X#s(`X#t(`X#u(`X#v(`X#x(`X#z(`X#{(`X'z(`X(a(`X(r(`X!k(`X!Y(`X'w(`Xv(`X!_(`X%i(`X!g(`X~P!6kO!].tO!k(kX~P!:tO!k.wO~O!Y.yO~OP$[OR#zO!Q#yO!S#{O!l#xO!p$[O(aVO[#mia#mij#mir#mi!]#mi#R#mi#o#mi#p#mi#q#mi#r#mi#s#mi#t#mi#u#mi#v#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#n#mi~P#3cO#n$OO~P#3cOP$[OR#zOr$aO!Q#yO!S#{O!l#xO!p$[O#n$OO#o$PO#p$PO#q$PO(aVO[#mia#mij#mi!]#mi#R#mi#s#mi#t#mi#u#mi#v#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#r#mi~P#6QO#r$QO~P#6QOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO(aVOa#mi!]#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#v#mi~P#8oOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO#v$SO(aVO(z#}Oa#mi!]#mi#z#mi#{#mi'z#mi(r#mi(y#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#x$UO~P#;VO#x#mi~P#;VO#v$SO~P#8oOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO#v$SO#x$UO(aVO(y#|O(z#}Oa#mi!]#mi#{#mi'z#mi(r#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#z#mi~P#={O#z$WO~P#={OP]XR]X[]Xj]Xr]X!Q]X!S]X!l]X!p]X#R]X#S]X#`]X#kfX#n]X#o]X#p]X#q]X#r]X#s]X#t]X#u]X#v]X#x]X#z]X#{]X$Q]X(a]X(r]X(y]X(z]X!]]X!^]X~O$O]X~P#@jOP$[OR#zO[]O!Q*OO'y*PO(y$}O(z%POP#miR#mi!S#mi!l#mi!p#mi#n#mi#o#mi#p#mi#q#mi(a#mi~P#EyO!]/POg(pX~P!1WOg/RO~Oa$Pi!]$Pi'z$Pi'w$Pi!Y$Pi!k$Piv$Pi!_$Pi%i$Pi!g$Pi~P!:tO$]/SO$_/SO~O$]/TO$_/TO~O!g)hO#`/UO!_$cX$Z$cX$]$cX$_$cX$f$cX~O![/VO~O!_)kO$Z/XO$])jO$_)jO$f/YO~O!]VO!l$xO#j^O!Q*OO'y*PO(y$}O(z%POP#miR#mi!S#mi!l#mi!p#mi#n#mi#o#mi#p#mi#q#mi(a#mi~P&,QO#S$dOP(`XR(`X[(`Xj(`Xn(`Xr(`X!Q(`X!S(`X!l(`X!p(`X#R(`X#n(`X#o(`X#p(`X#q(`X#r(`X#s(`X#t(`X#u(`X#v(`X#x(`X#z(`X#{(`X$O(`X'y(`X(a(`X(r(`X(y(`X(z(`X!](`X!^(`X~O$O$Pi!]$Pi!^$Pi~P#BwO$O!ri!^!ri~P$+oOg']a!]']a~P!1WO!^7nO~O!]'da!^'da~P#BwO!Y7oO~P#/sO!g#vO(r'pO!]'ea!k'ea~O!]/pO!k)Oi~O!]/pO!g#vO!k)Oi~Og$|q!]$|q#`$|q$O$|q~P!1WO!Y'ga!]'ga~P#/sO!g7vO~O!]/yO!Y)Pi~P#/sO!]/yO!Y)Pi~O!Y7yO~Oh%VOr8OO!l%eO(r'pO~Oj8QO!g#vO~Or8TO!g#vO(r'pO~O!Q*OO'y*PO(z%POn'ja(y'ja!]'ja#`'ja~Og'ja$O'ja~P&5RO!Q*OO'y*POn'la(y'la(z'la!]'la#`'la~Og'la$O'la~P&5tOg(_q!](_q~P!1WO#`8VOg(_q!](_q~P!1WO!Y8WO~Og%Oq!]%Oq#`%Oq$O%Oq~P!1WOa$oy!]$oy'z$oy'w$oy!Y$oy!k$oyv$oy!_$oy%i$oy!g$oy~P!:tO!g6rO~O!]5[O!_)Qa~O!_'`OP$TaR$Ta[$Taj$Tar$Ta!Q$Ta!S$Ta!]$Ta!l$Ta!p$Ta#R$Ta#n$Ta#o$Ta#p$Ta#q$Ta#r$Ta#s$Ta#t$Ta#u$Ta#v$Ta#x$Ta#z$Ta#{$Ta(a$Ta(r$Ta(y$Ta(z$Ta~O%i7WO~P&8fO%^8[Oa%[i!_%[i'z%[i!]%[i~Oa#cy!]#cy'z#cy'w#cy!Y#cy!k#cyv#cy!_#cy%i#cy!g#cy~P!:tO[8^O~Ob8`O(T+qO(VTO(YUO~O!]1TO!^)Xi~O`8dO~O(e(|O!]'pX!^'pX~O!]5uO!^)Ua~O!^8nO~P%;eO(o!sO~P$&YO#[8oO~O!_1oO~O!_1oO%i8qO~On8tO!_1oO%i8qO~O[8yO!]'sa!^'sa~O!]1zO!^)Vi~O!k8}O~O!k9OO~O!k9RO~O!k9RO~P%[Oa9TO~O!g9UO~O!k9VO~O!](wi!^(wi~P#BwOa%nO#`9_O'z%nO~O!](ty!k(tya(ty'z(ty~P!:tO!](jO!k(sy~O%i9bO~P&8fO!_'`O%i9bO~O#k$|qP$|qR$|q[$|qa$|qj$|qr$|q!S$|q!]$|q!l$|q!p$|q#R$|q#n$|q#o$|q#p$|q#q$|q#r$|q#s$|q#t$|q#u$|q#v$|q#x$|q#z$|q#{$|q'z$|q(a$|q(r$|q!k$|q!Y$|q'w$|q#`$|qv$|q!_$|q%i$|q!g$|q~P#/sO#k'jaP'jaR'ja['jaa'jaj'jar'ja!S'ja!l'ja!p'ja#R'ja#n'ja#o'ja#p'ja#q'ja#r'ja#s'ja#t'ja#u'ja#v'ja#x'ja#z'ja#{'ja'z'ja(a'ja(r'ja!k'ja!Y'ja'w'jav'ja!_'ja%i'ja!g'ja~P&5RO#k'laP'laR'la['laa'laj'lar'la!S'la!l'la!p'la#R'la#n'la#o'la#p'la#q'la#r'la#s'la#t'la#u'la#v'la#x'la#z'la#{'la'z'la(a'la(r'la!k'la!Y'la'w'lav'la!_'la%i'la!g'la~P&5tO#k%OqP%OqR%Oq[%Oqa%Oqj%Oqr%Oq!S%Oq!]%Oq!l%Oq!p%Oq#R%Oq#n%Oq#o%Oq#p%Oq#q%Oq#r%Oq#s%Oq#t%Oq#u%Oq#v%Oq#x%Oq#z%Oq#{%Oq'z%Oq(a%Oq(r%Oq!k%Oq!Y%Oq'w%Oq#`%Oqv%Oq!_%Oq%i%Oq!g%Oq~P#/sO!]'Yi!k'Yi~P!:tO$O#cq!]#cq!^#cq~P#BwO(y$}OP%aaR%aa[%aaj%aar%aa!S%aa!l%aa!p%aa#R%aa#n%aa#o%aa#p%aa#q%aa#r%aa#s%aa#t%aa#u%aa#v%aa#x%aa#z%aa#{%aa$O%aa(a%aa(r%aa!]%aa!^%aa~On%aa!Q%aa'y%aa(z%aa~P&IyO(z%POP%caR%ca[%caj%car%ca!S%ca!l%ca!p%ca#R%ca#n%ca#o%ca#p%ca#q%ca#r%ca#s%ca#t%ca#u%ca#v%ca#x%ca#z%ca#{%ca$O%ca(a%ca(r%ca!]%ca!^%ca~On%ca!Q%ca'y%ca(y%ca~P&LQOn>^O!Q*OO'y*PO(z%PO~P&IyOn>^O!Q*OO'y*PO(y$}O~P&LQOR0kO!Q0kO!S0lO#S$dOP}a[}aj}an}ar}a!l}a!p}a#R}a#n}a#o}a#p}a#q}a#r}a#s}a#t}a#u}a#v}a#x}a#z}a#{}a$O}a'y}a(a}a(r}a(y}a(z}a!]}a!^}a~O!Q*OO'y*POP$saR$sa[$saj$san$sar$sa!S$sa!l$sa!p$sa#R$sa#n$sa#o$sa#p$sa#q$sa#r$sa#s$sa#t$sa#u$sa#v$sa#x$sa#z$sa#{$sa$O$sa(a$sa(r$sa(y$sa(z$sa!]$sa!^$sa~O!Q*OO'y*POP$uaR$ua[$uaj$uan$uar$ua!S$ua!l$ua!p$ua#R$ua#n$ua#o$ua#p$ua#q$ua#r$ua#s$ua#t$ua#u$ua#v$ua#x$ua#z$ua#{$ua$O$ua(a$ua(r$ua(y$ua(z$ua!]$ua!^$ua~On>^O!Q*OO'y*PO(y$}O(z%PO~OP%TaR%Ta[%Taj%Tar%Ta!S%Ta!l%Ta!p%Ta#R%Ta#n%Ta#o%Ta#p%Ta#q%Ta#r%Ta#s%Ta#t%Ta#u%Ta#v%Ta#x%Ta#z%Ta#{%Ta$O%Ta(a%Ta(r%Ta!]%Ta!^%Ta~P''VO$O$mq!]$mq!^$mq~P#BwO$O$oq!]$oq!^$oq~P#BwO!^9oO~O$O9pO~P!1WO!g#vO!]'ei!k'ei~O!g#vO(r'pO!]'ei!k'ei~O!]/pO!k)Oq~O!Y'gi!]'gi~P#/sO!]/yO!Y)Pq~Or9wO!g#vO(r'pO~O[9yO!Y9xO~P#/sO!Y9xO~Oj:PO!g#vO~Og(_y!](_y~P!1WO!]'na!_'na~P#/sOa%[q!_%[q'z%[q!]%[q~P#/sO[:UO~O!]1TO!^)Xq~O`:YO~O#`:ZO!]'pa!^'pa~O!]5uO!^)Ui~P#BwO!S:]O~O!_1oO%i:`O~O(VTO(YUO(e:eO~O!]1zO!^)Vq~O!k:hO~O!k:iO~O!k:jO~O!k:jO~P%[O#`:mO!]#hy!^#hy~O!]#hy!^#hy~P#BwO%i:rO~P&8fO!_'`O%i:rO~O$O#|y!]#|y!^#|y~P#BwOP$|iR$|i[$|ij$|ir$|i!S$|i!l$|i!p$|i#R$|i#n$|i#o$|i#p$|i#q$|i#r$|i#s$|i#t$|i#u$|i#v$|i#x$|i#z$|i#{$|i$O$|i(a$|i(r$|i!]$|i!^$|i~P''VO!Q*OO'y*PO(z%POP'iaR'ia['iaj'ian'iar'ia!S'ia!l'ia!p'ia#R'ia#n'ia#o'ia#p'ia#q'ia#r'ia#s'ia#t'ia#u'ia#v'ia#x'ia#z'ia#{'ia$O'ia(a'ia(r'ia(y'ia!]'ia!^'ia~O!Q*OO'y*POP'kaR'ka['kaj'kan'kar'ka!S'ka!l'ka!p'ka#R'ka#n'ka#o'ka#p'ka#q'ka#r'ka#s'ka#t'ka#u'ka#v'ka#x'ka#z'ka#{'ka$O'ka(a'ka(r'ka(y'ka(z'ka!]'ka!^'ka~O(y$}OP%aiR%ai[%aij%ain%air%ai!Q%ai!S%ai!l%ai!p%ai#R%ai#n%ai#o%ai#p%ai#q%ai#r%ai#s%ai#t%ai#u%ai#v%ai#x%ai#z%ai#{%ai$O%ai'y%ai(a%ai(r%ai(z%ai!]%ai!^%ai~O(z%POP%ciR%ci[%cij%cin%cir%ci!Q%ci!S%ci!l%ci!p%ci#R%ci#n%ci#o%ci#p%ci#q%ci#r%ci#s%ci#t%ci#u%ci#v%ci#x%ci#z%ci#{%ci$O%ci'y%ci(a%ci(r%ci(y%ci!]%ci!^%ci~O$O$oy!]$oy!^$oy~P#BwO$O#cy!]#cy!^#cy~P#BwO!g#vO!]'eq!k'eq~O!]/pO!k)Oy~O!Y'gq!]'gq~P#/sOr:|O!g#vO(r'pO~O[;QO!Y;PO~P#/sO!Y;PO~Og(_!R!](_!R~P!1WOa%[y!_%[y'z%[y!]%[y~P#/sO!]1TO!^)Xy~O!]5uO!^)Uq~O(T;XO~O!_1oO%i;[O~O!k;_O~O%i;dO~P&8fOP$|qR$|q[$|qj$|qr$|q!S$|q!l$|q!p$|q#R$|q#n$|q#o$|q#p$|q#q$|q#r$|q#s$|q#t$|q#u$|q#v$|q#x$|q#z$|q#{$|q$O$|q(a$|q(r$|q!]$|q!^$|q~P''VO!Q*OO'y*PO(z%POP'jaR'ja['jaj'jan'jar'ja!S'ja!l'ja!p'ja#R'ja#n'ja#o'ja#p'ja#q'ja#r'ja#s'ja#t'ja#u'ja#v'ja#x'ja#z'ja#{'ja$O'ja(a'ja(r'ja(y'ja!]'ja!^'ja~O!Q*OO'y*POP'laR'la['laj'lan'lar'la!S'la!l'la!p'la#R'la#n'la#o'la#p'la#q'la#r'la#s'la#t'la#u'la#v'la#x'la#z'la#{'la$O'la(a'la(r'la(y'la(z'la!]'la!^'la~OP%OqR%Oq[%Oqj%Oqr%Oq!S%Oq!l%Oq!p%Oq#R%Oq#n%Oq#o%Oq#p%Oq#q%Oq#r%Oq#s%Oq#t%Oq#u%Oq#v%Oq#x%Oq#z%Oq#{%Oq$O%Oq(a%Oq(r%Oq!]%Oq!^%Oq~P''VOg%e!Z!]%e!Z#`%e!Z$O%e!Z~P!1WO!Y;hO~P#/sOr;iO!g#vO(r'pO~O[;kO!Y;hO~P#/sO!]'pq!^'pq~P#BwO!]#h!Z!^#h!Z~P#BwO#k%e!ZP%e!ZR%e!Z[%e!Za%e!Zj%e!Zr%e!Z!S%e!Z!]%e!Z!l%e!Z!p%e!Z#R%e!Z#n%e!Z#o%e!Z#p%e!Z#q%e!Z#r%e!Z#s%e!Z#t%e!Z#u%e!Z#v%e!Z#x%e!Z#z%e!Z#{%e!Z'z%e!Z(a%e!Z(r%e!Z!k%e!Z!Y%e!Z'w%e!Z#`%e!Zv%e!Z!_%e!Z%i%e!Z!g%e!Z~P#/sOr;tO!g#vO(r'pO~O!Y;uO~P#/sOr;|O!g#vO(r'pO~O!Y;}O~P#/sOP%e!ZR%e!Z[%e!Zj%e!Zr%e!Z!S%e!Z!l%e!Z!p%e!Z#R%e!Z#n%e!Z#o%e!Z#p%e!Z#q%e!Z#r%e!Z#s%e!Z#t%e!Z#u%e!Z#v%e!Z#x%e!Z#z%e!Z#{%e!Z$O%e!Z(a%e!Z(r%e!Z!]%e!Z!^%e!Z~P''VOrROe!iOpkOrPO(T)]O(VTO(YUO(aVO(o[O~O!]WO!l$xO#jgPPP!>oI[PPPPPPPPP!BOP!C]PPI[!DnPI[PI[I[I[I[I[PI[!FQP!I[P!LbP!Lf!Lp!Lt!LtP!IXP!Lx!LxP#!OP#!SI[PI[#!Y#%_CjA^PA^PA^A^P#&lA^A^#)OA^#+vA^#.SA^A^#.r#1W#1W#1]#1f#1W#1qPP#1WPA^#2ZA^#6YA^A^6mPPP#:_PPP#:x#:xP#:xP#;`#:xPP#;fP#;]P#;]#;y#;]#P#>V#>]#>k#>q#>{#?R#?]#?c#?s#?y#@k#@}#AT#AZ#Ai#BO#Cs#DR#DY#Et#FS#Gt#HS#HY#H`#Hf#Hp#Hv#H|#IW#Ij#IpPPPPPPPPPPP#IvPPPPPPP#Jk#Mx$ b$ i$ qPPP$']P$'f$*_$0x$0{$1O$1}$2Q$2X$2aP$2g$2jP$3W$3[$4S$5b$5g$5}PP$6S$6Y$6^$6a$6e$6i$7e$7|$8e$8i$8l$8o$8y$8|$9Q$9UR!|RoqOXst!Z#d%m&r&t&u&w,s,x2[2_Y!vQ'`-e1o5{Q%tvQ%|yQ&T|Q&j!VS'W!e-]Q'f!iS'l!r!yU*k$|*Z*oQ+o%}S+|&V&WQ,d&dQ-c'_Q-m'gQ-u'mQ0[*qQ1b,OQ1y,eR<{SU+P%]S!S!nQ!r!v!y!z$|'W'_'`'l'm'n*k*o*q*r-]-c-e-u0[0_1o5{5}%[$ti#v$b$c$d$x${%O%Q%^%_%c)y*R*T*V*Y*a*g*w*x+f+i,S,V.f/P/d/m/x/y/{0`0b0i0j0o1f1i1q3c4^4_4j4o5Q5[5_6S7W7v8Q8V8[8q9b9p9y:P:`:r;Q;[;d;kP>X>Y>]>^Q&X|Q'U!eS'[%i-`Q+t&PQ,P&WQ,f&gQ0n+SQ1Y+uQ1_+{Q2Q,jQ2R,kQ5f1TQ5o1aQ6[1zQ6_1|Q6`2PQ8`5gQ8c5lQ8|6bQ:X8dQ:f8yQ;V:YR<}*ZrnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_R,h&k&z^OPXYstuvwz!Z!`!g!j!o#S#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n%m%t&R&k&n&o&r&t&u&w&{'T'b'r(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mR>S[#]WZ#W#Z'X(T!b%jm#h#i#l$x%e%h(^(h(i(j*Y*^*b+Z+[+^,o-V.T.Z.[.]._/m/p2d3[3]4a6r7TQ%wxQ%{yW&Q|&V&W,OQ&_!TQ'c!hQ'e!iQ(q#sS+n%|%}Q+r&PQ,_&bQ,c&dS-l'f'gQ.i(rQ1R+oQ1X+uQ1Z+vQ1^+zQ1t,`S1x,d,eQ2|-mQ5e1TQ5i1WQ5n1`Q6Z1yQ8_5gQ8b5kQ8f5pQ:T8^R;T:U!U$zi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y!^%yy!i!u%{%|%}'V'e'f'g'k'u*j+n+o-Y-l-m-t0R0U1R2u2|3T4r4s4v7}9{Q+h%wQ,T&[Q,W&]Q,b&dQ.h(qQ1s,_U1w,c,d,eQ3e.iQ6U1tS6Y1x1yQ8x6Z#f>T#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^o>UPS&[!Q&iQ&]!RQ&^!SU*}%[%d=sR,R&Y%]%Si#v$b$c$d$x${%O%Q%^%_%c)y*R*T*V*Y*a*g*w*x+f+i,S,V.f/P/d/m/x/y/{0`0b0i0j0o1f1i1q3c4^4_4j4o5Q5[5_6S7W7v8Q8V8[8q9b9p9y:P:`:r;Q;[;d;kP>X>Y>]>^T)z$u){V+P%]S$i$^c#Y#e%q%s%u(S(Y(t(y)R)S)T)U)V)W)X)Y)Z)[)^)`)b)g)q+d+x-Z-x-}.S.U.s.v.z.|.}/O/b0p2k2n3O3V3k3p3q3r3s3t3u3v3w3x3y3z3{3|4P4Q4X5X5c6u6{7Q7a7b7k7l8k9X9]9g9m9n:o;W;`SQ'Y!eR2q-]!W!nQ!e!r!v!y!z$|'W'_'`'l'm'n*Z*k*o*q*r-]-c-e-u0[0_1o5{5}R1l,ZnqOXst!Z#d%m&r&t&u&w,s,x2[2_Q&y!^Q'v!xS(s#u<^Q+l%zQ,]&_Q,^&aQ-j'dQ-w'oS.r(x=PS0q+X=ZQ1P+mQ1n,[Q2c,zQ2e,{Q2m-WQ2z-kQ2}-oS5Y0r=eQ5a1QS5d1S=fQ6t2oQ6x2{Q6}3SQ8]5bQ9Y6vQ9Z6yQ9^7OR:l9V$d$]c#Y#e%s%u(S(Y(t(y)R)S)T)U)V)W)X)Y)Z)[)^)`)b)g)q+d+x-Z-x-}.S.U.s.v.z.}/O/b0p2k2n3O3V3k3p3q3r3s3t3u3v3w3x3y3z3{3|4P4Q4X5X5c6u6{7Q7a7b7k7l8k9X9]9g9m9n:o;W;`SS#q]SU$fd)_,mS(p#p'iU*v%R(w4OU0m+O.n7gQ5^0xQ7V3`Q9d7YR:s9em!tQ!r!v!y!z'`'l'm'n-e-u1o5{5}Q't!uS(f#g2US-s'k'wQ/s*]Q0R*jQ3U-vQ4f/tQ4r0TQ4s0UQ4x0^Q7r4`S7}4t4vS8R4y4{Q9r7sQ9v7yQ9{8OQ:Q8TS:{9w9xS;g:|;PS;s;h;iS;{;t;uSSR=o>R%^bOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&o&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_Q%fj!^%xy!i!u%{%|%}'V'e'f'g'k'u*j+n+o-Y-l-m-t0R0U1R2u2|3T4r4s4v7}9{S&Oz!jQ+k%yQ,a&dW1v,b,c,d,eU6X1w1x1yS8w6Y6ZQ:d8x!r=j$Z$n'X)s-U-X/V2p4T5w6s:Z:mSQ=t>QR=u>R%QeOPXYstuvw!Z!`!g!o#S#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&r&t&u&w&{'T'b'r(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_Y#bWZ#W#Z(T!b%jm#h#i#l$x%e%h(^(h(i(j*Y*^*b+Z+[+^,o-V.T.Z.[.]._/m/p2d3[3]4a6r7TQ,n&o!p=k$Z$n)s-U-X/V2p4T5w6s:Z:mSR=n'XU']!e%i*ZR2s-`%SdOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+],p,s,x-i-q.P.V.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3l4z6T6e6f6i6|8t9T9_!r)_$Z$n'X)s-U-X/V2p4T5w6s:Z:mSQ,m&oQ0x+gQ3`.gQ7Y3dR9e7[!b$Tc#Y%q(S(Y(t(y)Z)[)`)g+x-x-}.S.U.s.v/b0p3O3V3k3{5X5c6{7Q7a9]:oS)^)q-Z.|2k2n3p4P4X6u7b7k7l8k9X9g9m9n;W;`=vQ>X>ZR>Y>['QkOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mSS$oh$pR4U/U'XgOPWXYZhstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n$p%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/U/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mST$kf$qQ$ifS)j$l)nR)v$qT$jf$qT)l$l)n'XhOPWXYZhstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n$p%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/U/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mST$oh$pQ$rhR)u$p%^jOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&o&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_!s>Q$Z$n'X)s-U-X/V2p4T5w6s:Z:mS#glOPXZst!Z!`!o#S#d#o#{$n%m&k&n&o&r&t&u&w&{'T'b)O)s*i+]+g,p,s,x-i.g/V/n0]0l1r2S2T2V2X2[2_2a3d4T4z6T6e6f6i7[8t9T!U%Ri$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y#f(w#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^Q+T%aQ/c*Oo4OP>X>YQ*c$zU*l$|*Z*oQ+U%bQ0W*m#f=q#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^n=rTQ=x>UQ=y>VR=z>W!U%Ri$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y#f(w#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^o4OP>X>Y>]>^Q,U&]Q1h,WQ5s1gR8h5tV*n$|*Z*oU*n$|*Z*oT5z1o5{S0P*i/nQ4w0]T8S4z:]Q+j%xQ0V*lQ1O+kQ1u,aQ6W1vQ8v6XQ:c8wR;^:d!U%Oi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Yx*R$v)e*S*u+V/v0d0e4R4g5R5S5W7p8U:R:x=p=}>OS0`*t0a#f]>^nZ>[`=T3}7c7f7j9h:t:w;yS=_.l3iT=`7e9k!U%Qi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y|*T$v)e*U*t+V/g/v0d0e4R4g4|5R5S5W7p8U:R:x=p=}>OS0b*u0c#f]>^nZ>[d=V3}7d7e7j9h9i:t:u:w;yS=a.m3jT=b7f9lrnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_Q&f!UR,p&ornOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_R&f!UQ,Y&^R1d,RsnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_Q1p,_S6R1s1tU8p6P6Q6US:_8r8sS;Y:^:aQ;m;ZR;w;nQ&m!VR,i&iR6_1|R:f8yW&Q|&V&W,OR1Z+vQ&r!WR,s&sR,y&xT2],x2_R,}&yQ,|&yR2f,}Q'y!{R-y'ySsOtQ#dXT%ps#dQ#OTR'{#OQ#RUR'}#RQ){$uR/`){Q#UVR(Q#UQ#XWU(W#X(X.QQ(X#YR.Q(YQ-^'YR2r-^Q.u(yS3m.u3nR3n.vQ-e'`R2v-eY!rQ'`-e1o5{R'j!rQ/Q)eR4S/QU#_W%h*YU(_#_(`.RQ(`#`R.R(ZQ-a']R2t-at`OXst!V!Z#d%m&i&k&r&t&u&w,s,x2[2_S#hZ%eU#r`#h.[R.[(jQ(k#jQ.X(gW.a(k.X3X7RQ3X.YR7R3YQ)n$lR/W)nQ$phR)t$pQ$`cU)a$`-|O>Z>[Q/z*eU4k/z4m7xQ4m/|R7x4lS*o$|*ZR0Y*ox*S$v)e*t*u+V/v0d0e4R4g5R5S5W7p8U:R:x=p=}>O!d.j(u)c*[*e.l.m.q/_/k/|0v1e3h4[4h4l5r7]7`7w7z8X8Z9t9|:S:};R;e;j;v>Z>[U/h*S.j7ca7c3}7e7f7j9h:t:w;yQ0a*tQ3i.lU4}0a3i9kR9k7e|*U$v)e*t*u+V/g/v0d0e4R4g4|5R5S5W7p8U:R:x=p=}>O!h.k(u)c*[*e.l.m.q/_/k/|0v1e3f3h4[4h4l5r7]7^7`7w7z8X8Z9t9|:S:};R;e;j;v>Z>[U/j*U.k7de7d3}7e7f7j9h9i:t:u:w;yQ0c*uQ3j.mU5P0c3j9lR9l7fQ*z%UR0g*zQ5]0vR8Y5]Q+_%kR0u+_Q5v1jS8j5v:[R:[8kQ,[&_R1m,[Q5{1oR8m5{Q1{,fS6]1{8zR8z6_Q1U+rW5h1U5j8a:VQ5j1XQ8a5iR:V8bQ+w&QR1[+wQ2_,xR6m2_YrOXst#dQ&v!ZQ+a%mQ,r&rQ,t&tQ,u&uQ,w&wQ2Y,sS2],x2_R6l2[Q%opQ&z!_Q&}!aQ'P!bQ'R!cQ'q!uQ+`%lQ+l%zQ,Q&XQ,h&mQ-P&|W-p'k's't'wQ-w'oQ0X*nQ1P+mQ1c,PS2O,i,lQ2g-OQ2h-RQ2i-SQ2}-oW3P-r-s-v-xQ5a1QQ5m1_Q5q1eQ6V1uQ6a2QQ6k2ZU6z3O3R3UQ6}3SQ8]5bQ8e5oQ8g5rQ8l5zQ8u6WQ8{6`S9[6{7PQ9^7OQ:W8cQ:b8vQ:g8|Q:n9]Q;U:XQ;]:cQ;a:oQ;l;VR;o;^Q%zyQ'd!iQ'o!uU+m%{%|%}Q-W'VU-k'e'f'gS-o'k'uQ0Q*jS1Q+n+oQ2o-YS2{-l-mQ3S-tS4p0R0UQ5b1RQ6v2uQ6y2|Q7O3TU7{4r4s4vQ9z7}R;O9{S$wi>PR*{%VU%Ui%V>PR0f*yQ$viS(u#v+iS)c$b$cQ)e$dQ*[$xS*e${*YQ*t%OQ*u%QQ+Q%^Q+R%_Q+V%cQ.lPQ=}>XQ>O>YQ>Z>]R>[>^Q+O%]Q.nSR#[WR'Z!el!tQ!r!v!y!z'`'l'm'n-e-u1o5{5}S'V!e-]U*j$|*Z*oS-Y'W'_S0U*k*qQ0^*rQ2u-cQ4v0[R4{0_R({#xQ!fQT-d'`-e]!qQ!r'`-e1o5{Q#p]R'i < TypeParamList in out const TypeDefinition extends ThisType this LiteralType ArithOp Number BooleanLiteral TemplateType InterpolationEnd Interpolation InterpolationStart NullType null VoidType void TypeofType typeof MemberExpression . PropertyName [ TemplateString Escape Interpolation super RegExp ] ArrayExpression Spread , } { ObjectExpression Property async get set PropertyDefinition Block : NewTarget new NewExpression ) ( ArgList UnaryExpression delete LogicOp BitOp YieldExpression yield AwaitExpression await ParenthesizedExpression ClassExpression class ClassBody MethodDeclaration Decorator @ MemberExpression PrivatePropertyName CallExpression TypeArgList CompareOp < declare Privacy static abstract override PrivatePropertyDefinition PropertyDeclaration readonly accessor Optional TypeAnnotation Equals StaticBlock FunctionExpression ArrowFunction ParamList ParamList ArrayPattern ObjectPattern PatternProperty Privacy readonly Arrow MemberExpression BinaryExpression ArithOp ArithOp ArithOp ArithOp BitOp CompareOp instanceof satisfies CompareOp BitOp BitOp BitOp LogicOp LogicOp ConditionalExpression LogicOp LogicOp AssignmentExpression UpdateOp PostfixExpression CallExpression InstantiationExpression TaggedTemplateExpression DynamicImport import ImportMeta JSXElement JSXSelfCloseEndTag JSXSelfClosingTag JSXIdentifier JSXBuiltin JSXIdentifier JSXNamespacedName JSXMemberExpression JSXSpreadAttribute JSXAttribute JSXAttributeValue JSXEscape JSXEndTag JSXOpenTag JSXFragmentTag JSXText JSXEscape JSXStartCloseTag JSXCloseTag PrefixCast < ArrowFunction TypeParamList SequenceExpression InstantiationExpression KeyofType keyof UniqueType unique ImportType InferredType infer TypeName ParenthesizedType FunctionSignature ParamList NewSignature IndexedType TupleType Label ArrayType ReadonlyType ObjectType MethodType PropertyType IndexSignature PropertyDefinition CallSignature TypePredicate asserts is NewSignature new UnionType LogicOp IntersectionType LogicOp ConditionalType ParameterizedType ClassDeclaration abstract implements type VariableDeclaration let var using TypeAliasDeclaration InterfaceDeclaration interface EnumDeclaration enum EnumBody NamespaceDeclaration namespace module AmbientDeclaration declare GlobalDeclaration global ClassDeclaration ClassBody AmbientFunctionDeclaration ExportGroup VariableName VariableName ImportDeclaration defer ImportGroup ForStatement for ForSpec ForInSpec ForOfSpec of WhileStatement while WithStatement with DoStatement do IfStatement if else SwitchStatement switch SwitchBody CaseLabel case DefaultLabel TryStatement try CatchClause catch FinallyClause finally ReturnStatement return ThrowStatement throw BreakStatement break ContinueStatement continue DebuggerStatement debugger LabeledStatement ExpressionStatement SingleExpression SingleClassItem",maxTerm:380,context:q2t,nodeProps:[["isolate",-8,5,6,14,37,39,51,53,55,""],["group",-26,9,17,19,68,207,211,215,216,218,221,224,234,237,243,245,247,249,252,258,264,266,268,270,272,274,275,"Statement",-34,13,14,32,35,36,42,51,54,55,57,62,70,72,76,80,82,84,85,110,111,120,121,136,139,141,142,143,144,145,147,148,167,169,171,"Expression",-23,31,33,37,41,43,45,173,175,177,178,180,181,182,184,185,186,188,189,190,201,203,205,206,"Type",-3,88,103,109,"ClassItem"],["openedBy",23,"<",38,"InterpolationStart",56,"[",60,"{",73,"(",160,"JSXStartCloseTag"],["closedBy",-2,24,168,">",40,"InterpolationEnd",50,"]",61,"}",74,")",165,"JSXEndTag"]],propSources:[Z2t],skippedNodes:[0,5,6,278],repeatNodeCount:37,tokenData:"$Fq07[R!bOX%ZXY+gYZ-yZ[+g[]%Z]^.c^p%Zpq+gqr/mrs3cst:_tuEruvJSvwLkwx! Yxy!'iyz!(sz{!)}{|!,q|}!.O}!O!,q!O!P!/Y!P!Q!9j!Q!R#:O!R![#<_![!]#I_!]!^#Jk!^!_#Ku!_!`$![!`!a$$v!a!b$*T!b!c$,r!c!}Er!}#O$-|#O#P$/W#P#Q$4o#Q#R$5y#R#SEr#S#T$7W#T#o$8b#o#p$x#r#s$@U#s$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$I|Er$I|$I}$Dk$I}$JO$Dk$JO$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr(n%d_$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z&j&hT$i&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c&j&zP;=`<%l&c'|'U]$i&j(Z!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!b(SU(Z!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!b(iP;=`<%l'}'|(oP;=`<%l&}'[(y]$i&j(WpOY(rYZ&cZr(rrs&cs!^(r!^!_)r!_#O(r#O#P&c#P#o(r#o#p)r#p;'S(r;'S;=`*a<%lO(rp)wU(WpOY)rZr)rs#O)r#P;'S)r;'S;=`*Z<%lO)rp*^P;=`<%l)r'[*dP;=`<%l(r#S*nX(Wp(Z!bOY*gZr*grs'}sw*gwx)rx#O*g#P;'S*g;'S;=`+Z<%lO*g#S+^P;=`<%l*g(n+dP;=`<%l%Z07[+rq$i&j(Wp(Z!b'|0/lOX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p$f%Z$f$g+g$g#BY%Z#BY#BZ+g#BZ$IS%Z$IS$I_+g$I_$JT%Z$JT$JU+g$JU$KV%Z$KV$KW+g$KW&FU%Z&FU&FV+g&FV;'S%Z;'S;=`+a<%l?HT%Z?HT?HU+g?HUO%Z07[.ST(X#S$i&j'}0/lO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c07[.n_$i&j(Wp(Z!b'}0/lOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)3p/x`$i&j!p),Q(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`0z!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW1V`#v(Ch$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`2X!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW2d_#v(Ch$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'At3l_(V':f$i&j(Z!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k(^4r_$i&j(Z!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k&z5vX$i&jOr5qrs6cs!^5q!^!_6y!_#o5q#o#p6y#p;'S5q;'S;=`7h<%lO5q&z6jT$d`$i&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c`6|TOr6yrs7]s;'S6y;'S;=`7b<%lO6y`7bO$d``7eP;=`<%l6y&z7kP;=`<%l5q(^7w]$d`$i&j(Z!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!r8uZ(Z!bOY8pYZ6yZr8prs9hsw8pwx6yx#O8p#O#P6y#P;'S8p;'S;=`:R<%lO8p!r9oU$d`(Z!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!r:UP;=`<%l8p(^:[P;=`<%l4k%9[:hh$i&j(Wp(Z!bOY%ZYZ&cZq%Zqr`#P#o`x!^=^!^!_?q!_#O=^#O#P>`#P#o=^#o#p?q#p;'S=^;'S;=`@h<%lO=^&n>gXWS$i&jOY>`YZ&cZ!^>`!^!_?S!_#o>`#o#p?S#p;'S>`;'S;=`?k<%lO>`S?XSWSOY?SZ;'S?S;'S;=`?e<%lO?SS?hP;=`<%l?S&n?nP;=`<%l>`!f?xWWS(Z!bOY?qZw?qwx?Sx#O?q#O#P?S#P;'S?q;'S;=`@b<%lO?q!f@eP;=`<%l?q(Q@kP;=`<%l=^'`@w]WS$i&j(WpOY@nYZ&cZr@nrs>`s!^@n!^!_Ap!_#O@n#O#P>`#P#o@n#o#pAp#p;'S@n;'S;=`Bg<%lO@ntAwWWS(WpOYApZrAprs?Ss#OAp#O#P?S#P;'SAp;'S;=`Ba<%lOAptBdP;=`<%lAp'`BjP;=`<%l@n#WBvYWS(Wp(Z!bOYBmZrBmrs?qswBmwxApx#OBm#O#P?S#P;'SBm;'S;=`Cf<%lOBm#WCiP;=`<%lBm(rCoP;=`<%l^!Q^$i&j!X7`OY!=yYZ&cZ!P!=y!P!Q!>|!Q!^!=y!^!_!@c!_!}!=y!}#O!CW#O#P!Dy#P#o!=y#o#p!@c#p;'S!=y;'S;=`!Ek<%lO!=y|#X#Z&c#Z#[!>|#[#]&c#]#^!>|#^#a&c#a#b!>|#b#g&c#g#h!>|#h#i&c#i#j!>|#j#k!>|#k#m&c#m#n!>|#n#o&c#p;'S&c;'S;=`&w<%lO&c7`!@hX!X7`OY!@cZ!P!@c!P!Q!AT!Q!}!@c!}#O!Ar#O#P!Bq#P;'S!@c;'S;=`!CQ<%lO!@c7`!AYW!X7`#W#X!AT#Z#[!AT#]#^!AT#a#b!AT#g#h!AT#i#j!AT#j#k!AT#m#n!AT7`!AuVOY!ArZ#O!Ar#O#P!B[#P#Q!@c#Q;'S!Ar;'S;=`!Bk<%lO!Ar7`!B_SOY!ArZ;'S!Ar;'S;=`!Bk<%lO!Ar7`!BnP;=`<%l!Ar7`!BtSOY!@cZ;'S!@c;'S;=`!CQ<%lO!@c7`!CTP;=`<%l!@c^!Ezl$i&j(Z!b!X7`OY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#W&}#W#X!Eq#X#Z&}#Z#[!Eq#[#]&}#]#^!Eq#^#a&}#a#b!Eq#b#g&}#g#h!Eq#h#i&}#i#j!Eq#j#k!Eq#k#m&}#m#n!Eq#n#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}8r!GyZ(Z!b!X7`OY!GrZw!Grwx!@cx!P!Gr!P!Q!Hl!Q!}!Gr!}#O!JU#O#P!Bq#P;'S!Gr;'S;=`!J|<%lO!Gr8r!Hse(Z!b!X7`OY'}Zw'}x#O'}#P#W'}#W#X!Hl#X#Z'}#Z#[!Hl#[#]'}#]#^!Hl#^#a'}#a#b!Hl#b#g'}#g#h!Hl#h#i'}#i#j!Hl#j#k!Hl#k#m'}#m#n!Hl#n;'S'};'S;=`(f<%lO'}8r!JZX(Z!bOY!JUZw!JUwx!Arx#O!JU#O#P!B[#P#Q!Gr#Q;'S!JU;'S;=`!Jv<%lO!JU8r!JyP;=`<%l!JU8r!KPP;=`<%l!Gr>^!KZ^$i&j(Z!bOY!KSYZ&cZw!KSwx!CWx!^!KS!^!_!JU!_#O!KS#O#P!DR#P#Q!^!LYP;=`<%l!KS>^!L`P;=`<%l!_#c#d#Bq#d#l%Z#l#m#Es#m#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#>j_$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#?rd$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#A]f$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Bzc$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Dbe$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#E|g$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Gpi$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z*)x#Il_!g$b$i&j$O)Lv(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)[#Jv_al$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z04f#LS^h#)`#R-v$?V_!^(CdvBr$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z?O$@a_!q7`$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z07[$Aq|$i&j(Wp(Z!b'|0/l$]#t(T,2j(e$I[OX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}st%ZtuEruw%Zwx(rx}%Z}!OGv!O!Q%Z!Q![Er![!^%Z!^!_*g!_!c%Z!c!}Er!}#O%Z#O#P&c#P#R%Z#R#SEr#S#T%Z#T#oEr#o#p*g#p$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr07[$D|k$i&j(Wp(Z!b'}0/l$]#t(T,2j(e$I[OY%ZYZ&cZr%Zrs&}st%ZtuEruw%Zwx(rx}%Z}!OGv!O!Q%Z!Q![Er![!^%Z!^!_*g!_!c%Z!c!}Er!}#O%Z#O#P&c#P#R%Z#R#SEr#S#T%Z#T#oEr#o#p*g#p$g%Z$g;'SEr;'S;=`I|<%lOEr",tokenizers:[K2t,G2t,X2t,Y2t,2,3,4,5,6,7,8,9,10,11,12,13,14,W2t,new YN("$S~RRtu[#O#Pg#S#T#|~_P#o#pb~gOx~~jVO#i!P#i#j!U#j#l!P#l#m!q#m;'S!P;'S;=`#v<%lO!P~!UO!U~~!XS!Q![!e!c!i!e#T#Z!e#o#p#Z~!hR!Q![!q!c!i!q#T#Z!q~!tR!Q![!}!c!i!}#T#Z!}~#QR!Q![!P!c!i!P#T#Z!P~#^R!Q![#g!c!i#g#T#Z#g~#jS!Q![#g!c!i#g#T#Z#g#q#r!P~#yP;=`<%l!P~$RO(c~~",141,340),new YN("j~RQYZXz{^~^O(Q~~aP!P!Qd~iO(R~~",25,323)],topRules:{Script:[0,7],SingleExpression:[1,276],SingleClassItem:[2,277]},dialects:{jsx:0,ts:15175},dynamicPrecedences:{80:1,82:1,94:1,169:1,199:1},specialized:[{term:327,get:e=>J2t[e]||-1},{term:343,get:e=>e_t[e]||-1},{term:95,get:e=>t_t[e]||-1}],tokenPrec:15201});class xQ{constructor(t,n,i,r){this.state=t,this.pos=n,this.explicit=i,this.view=r,this.abortListeners=[],this.abortOnDocChange=!1}tokenBefore(t){let n=Nr(this.state).resolveInner(this.pos,-1);for(;n&&t.indexOf(n.name)<0;)n=n.parent;return n?{from:n.from,to:this.pos,text:this.state.sliceDoc(n.from,this.pos),type:n.type}:null}matchBefore(t){let n=this.state.doc.lineAt(this.pos),i=Math.max(n.from,this.pos-250),r=n.text.slice(i-n.from,this.pos-n.from),s=r.search($2e(t,!1));return s<0?null:{from:i+s,to:this.pos,text:r.slice(s)}}get aborted(){return this.abortListeners==null}addEventListener(t,n,i){t=="abort"&&this.abortListeners&&(this.abortListeners.push(n),i&&i.onDocChange&&(this.abortOnDocChange=!0))}}function HJ(e){let t=Object.keys(e).join(""),n=/\w/.test(t);return n&&(t=t.replace(/\w/g,"")),`[${n?"\\w":""}${t.replace(/[^\w\s]/g,"\\$&")}]`}function i_t(e){let t=Object.create(null),n=Object.create(null);for(let{label:r}of e){t[r[0]]=!0;for(let s=1;stypeof r=="string"?{label:r}:r),[n,i]=t.every(r=>/^\w+$/.test(r.label))?[/\w*$/,/\w+$/]:i_t(t);return r=>{let s=r.matchBefore(i);return s||r.explicit?{from:s?s.from:r.pos,options:t,validFor:n}:null}}function L2e(e,t){return n=>{for(let i=Nr(n.state).resolveInner(n.pos,-1);i;i=i.parent){if(e.indexOf(i.name)>-1)return null;if(i.type.isTop)break}return t(n)}}class qJ{constructor(t,n,i,r){this.completion=t,this.source=n,this.match=i,this.score=r}}function hb(e){return e.selection.main.from}function $2e(e,t){var n;let{source:i}=e,r=t&&i[0]!="^",s=i[i.length-1]!="$";return!r&&!s?e:new RegExp(`${r?"^":""}(?:${i})${s?"$":""}`,(n=e.flags)!==null&&n!==void 0?n:e.ignoreCase?"i":"")}const OQ=tf.define();function r_t(e,t,n,i){let{main:r}=e.selection,s=n-r.from,a=i-r.from;return{...e.changeByRange(l=>{if(l!=r&&n!=i&&e.sliceDoc(l.from+s,l.from+a)!=e.sliceDoc(n,i))return{range:l};let c=e.toText(t);return{changes:{from:l.from+s,to:i==r.from?l.to:l.from+a,insert:c},range:rt.cursor(l.from+s+c.length)}}),scrollIntoView:!0,userEvent:"input.complete"}}const WJ=new WeakMap;function s_t(e){if(!Array.isArray(e))return e;let t=WJ.get(e);return t||WJ.set(e,t=wQ(e)),t}const ZN=Qn.define(),hk=Qn.define();class a_t{constructor(t){this.pattern=t,this.chars=[],this.folded=[],this.any=[],this.precise=[],this.byWord=[],this.score=0,this.matched=[];for(let n=0;n=48&&k<=57||k>=97&&k<=122?2:k>=65&&k<=90?1:0:(S=GU(k))!=S.toLowerCase()?1:S!=S.toUpperCase()?2:0;(!x||E==1&&v||w==0&&E!=0)&&(n[f]==k||i[f]==k&&(h=!0)?a[f++]=x:a.length&&(y=!1)),w=E,x+=xd(k)}return f==c&&a[0]==0&&y?this.result(-100+(h?-200:0),a,t):m==c&&g==0?this.ret(-200-t.length+(b==t.length?0:-100),[0,b]):l>-1?this.ret(-700-t.length,[l,l+this.pattern.length]):m==c?this.ret(-900-t.length,[g,b]):f==c?this.result(-100+(h?-200:0)+-700+(y?0:-1100),a,t):n.length==2?null:this.result((r[0]?-700:0)+-200+-1100,r,t)}result(t,n,i){let r=[],s=0;for(let a of n){let l=a+(this.astral?xd(cl(i,a)):1);s&&r[s-1]==a?r[s-1]=l:(r[s++]=a,r[s++]=l)}return this.ret(t-i.length,r)}}class o_t{constructor(t){this.pattern=t,this.matched=[],this.score=0,this.folded=t.toLowerCase()}match(t){if(t.length!1,activateOnTypingDelay:100,selectOnOpen:!0,override:null,closeOnBlur:!0,maxRenderedOptions:100,defaultKeymap:!0,tooltipClass:()=>"",optionClass:()=>"",aboveCursor:!1,icons:!0,addToOptions:[],positionInfo:l_t,filterStrict:!1,compareCompletions:(t,n)=>(t.sortText||t.label).localeCompare(n.sortText||n.label),interactionDelay:75,updateSyncTime:100},{defaultKeymap:(t,n)=>t&&n,closeOnBlur:(t,n)=>t&&n,icons:(t,n)=>t&&n,tooltipClass:(t,n)=>i=>KJ(t(i),n(i)),optionClass:(t,n)=>i=>KJ(t(i),n(i)),addToOptions:(t,n)=>t.concat(n),filterStrict:(t,n)=>t||n})}});function KJ(e,t){return e?t?e+" "+t:e:t}function l_t(e,t,n,i,r,s){let a=e.textDirection==Pr.RTL,l=a,c=!1,u="top",d,f,h=t.left-r.left,m=r.right-t.right,g=i.right-i.left,b=i.bottom-i.top;if(l&&h=b||x>t.top?d=n.bottom-t.top:(u="bottom",d=t.bottom-n.top)}let v=(t.bottom-t.top)/s.offsetHeight,y=(t.right-t.left)/s.offsetWidth;return{style:`${u}: ${d/v}px; max-width: ${f/y}px`,class:"cm-completionInfo-"+(c?a?"left-narrow":"right-narrow":l?"left":"right")}}const SQ=Qn.define();function c_t(e){let t=e.addToOptions.slice();return e.icons&&t.push({render(n){let i=document.createElement("div");return i.classList.add("cm-completionIcon"),n.type&&i.classList.add(...n.type.split(/\s+/g).map(r=>"cm-completionIcon-"+r)),i.setAttribute("aria-hidden","true"),i},position:20}),t.push({render(n,i,r,s){let a=document.createElement("span");a.className="cm-completionLabel";let l=n.displayLabel||n.label,c=0;for(let u=0;uc&&a.appendChild(document.createTextNode(l.slice(c,d)));let h=a.appendChild(document.createElement("span"));h.appendChild(document.createTextNode(l.slice(d,f))),h.className="cm-completionMatchedText",c=f}return cn.position-i.position).map(n=>n.render)}function R5(e,t,n){if(e<=n)return{from:0,to:e};if(t<0&&(t=0),t<=e>>1){let r=Math.floor(t/n);return{from:r*n,to:(r+1)*n}}let i=Math.ceil((e-t)/n);return{from:e-i*n,to:e-(i-1)*n}}class u_t{constructor(t,n,i){this.view=t,this.stateField=n,this.applyCompletion=i,this.info=null,this.infoDestroy=null,this.placeInfoReq={read:()=>this.measureInfo(),write:c=>this.placeInfo(c),key:this},this.space=null,this.currentClass="";let r=t.state.field(n),{options:s,selected:a}=r.open,l=t.state.facet(Pa);this.optionContent=c_t(l),this.optionClass=l.optionClass,this.tooltipClass=l.tooltipClass,this.range=R5(s.length,a,l.maxRenderedOptions),this.dom=document.createElement("div"),this.dom.className="cm-tooltip-autocomplete",this.updateTooltipClass(t.state),this.dom.addEventListener("mousedown",c=>{let{options:u}=t.state.field(n).open;for(let d=c.target,f;d&&d!=this.dom;d=d.parentNode)if(d.nodeName=="LI"&&(f=/-(\d+)$/.exec(d.id))&&+f[1]this.list.lastChild.getBoundingClientRect().bottom?this.range.to:null;d!=null&&(t.dispatch({effects:SQ.of(d)}),c.preventDefault())}}),this.dom.addEventListener("focusout",c=>{let u=t.state.field(this.stateField,!1);u&&u.tooltip&&t.state.facet(Pa).closeOnBlur&&c.relatedTarget!=t.contentDOM&&t.dispatch({effects:hk.of(null)})}),this.showOptions(s,r.id)}mount(){this.updateSel()}showOptions(t,n){this.list&&this.list.remove(),this.list=this.dom.appendChild(this.createListBox(t,n,this.range)),this.list.addEventListener("scroll",()=>{this.info&&this.view.requestMeasure(this.placeInfoReq)})}update(t){var n;let i=t.state.field(this.stateField),r=t.startState.field(this.stateField);if(this.updateTooltipClass(t.state),i!=r){let{options:s,selected:a,disabled:l}=i.open;(!r.open||r.open.options!=s)&&(this.range=R5(s.length,a,t.state.facet(Pa).maxRenderedOptions),this.showOptions(s,i.id)),this.updateSel(),l!=((n=r.open)===null||n===void 0?void 0:n.disabled)&&this.dom.classList.toggle("cm-tooltip-autocomplete-disabled",!!l)}}updateTooltipClass(t){let n=this.tooltipClass(t);if(n!=this.currentClass){for(let i of this.currentClass.split(" "))i&&this.dom.classList.remove(i);for(let i of n.split(" "))i&&this.dom.classList.add(i);this.currentClass=n}}positioned(t){this.space=t,this.info&&this.view.requestMeasure(this.placeInfoReq)}updateSel(){let t=this.view.state.field(this.stateField),n=t.open;(n.selected>-1&&n.selected=this.range.to)&&(this.range=R5(n.options.length,n.selected,this.view.state.facet(Pa).maxRenderedOptions),this.showOptions(n.options,t.id));let i=this.updateSelectedOption(n.selected);if(i){this.destroyInfo();let{completion:r}=n.options[n.selected],{info:s}=r;if(!s)return;let a=typeof s=="string"?document.createTextNode(s):s(r);if(!a)return;"then"in a?a.then(l=>{l&&this.view.state.field(this.stateField,!1)==t&&this.addInfoPane(l,r)}).catch(l=>ml(this.view.state,l,"completion info")):(this.addInfoPane(a,r),i.setAttribute("aria-describedby",this.info.id))}}addInfoPane(t,n){this.destroyInfo();let i=this.info=document.createElement("div");if(i.className="cm-tooltip cm-completionInfo",i.id="cm-completionInfo-"+Math.floor(Math.random()*65535).toString(16),t.nodeType!=null)i.appendChild(t),this.infoDestroy=null;else{let{dom:r,destroy:s}=t;i.appendChild(r),this.infoDestroy=s||null}this.dom.appendChild(i),this.view.requestMeasure(this.placeInfoReq)}updateSelectedOption(t){let n=null;for(let i=this.list.firstChild,r=this.range.from;i;i=i.nextSibling,r++)i.nodeName!="LI"||!i.id?r--:r==t?i.hasAttribute("aria-selected")||(i.setAttribute("aria-selected","true"),n=i):i.hasAttribute("aria-selected")&&(i.removeAttribute("aria-selected"),i.removeAttribute("aria-describedby"));return n&&f_t(this.list,n),n}measureInfo(){let t=this.dom.querySelector("[aria-selected]");if(!t||!this.info)return null;let n=this.dom.getBoundingClientRect(),i=this.info.getBoundingClientRect(),r=t.getBoundingClientRect(),s=this.space;if(!s){let a=this.dom.ownerDocument.documentElement;s={left:0,top:0,right:a.clientWidth,bottom:a.clientHeight}}return r.top>Math.min(s.bottom,n.bottom)-10||r.bottom{a.target==r&&a.preventDefault()});let s=null;for(let a=i.from;ai.from||i.from==0))if(s=h,typeof u!="string"&&u.header)r.appendChild(u.header(u));else{let m=r.appendChild(document.createElement("completion-section"));m.textContent=h}}const d=r.appendChild(document.createElement("li"));d.id=n+"-"+a,d.setAttribute("role","option");let f=this.optionClass(l);f&&(d.className=f);for(let h of this.optionContent){let m=h(l,this.view.state,this.view,c);m&&d.appendChild(m)}}return i.from&&r.classList.add("cm-completionListIncompleteTop"),i.tonew u_t(n,e,t)}function f_t(e,t){let n=e.getBoundingClientRect(),i=t.getBoundingClientRect(),r=n.height/e.offsetHeight;i.topn.bottom&&(e.scrollTop+=(i.bottom-n.bottom)/r)}function GJ(e){return(e.boost||0)*100+(e.apply?10:0)+(e.info?5:0)+(e.type?1:0)}function h_t(e,t){let n=[],i=null,r=null,s=d=>{n.push(d);let{section:f}=d.completion;if(f){i||(i=[]);let h=typeof f=="string"?f:f.name;i.some(m=>m.name==h)||i.push(typeof f=="string"?{name:h}:f)}},a=t.facet(Pa);for(let d of e)if(d.hasResult()){let f=d.result.getMatch;if(d.result.filter===!1)for(let h of d.result.options)s(new qJ(h,d.source,f?f(h):[],1e9-n.length));else{let h=t.sliceDoc(d.from,d.to),m,g=a.filterStrict?new o_t(h):new a_t(h);for(let b of d.result.options)if(m=g.match(b.label)){let v=b.displayLabel?f?f(b,m.matched):[]:m.matched,y=m.score+(b.boost||0);if(s(new qJ(b,d.source,v,y)),typeof b.section=="object"&&b.section.rank==="dynamic"){let{name:x}=b.section;r||(r=Object.create(null)),r[x]=Math.max(y,r[x]||-1e9)}}}}if(i){let d=Object.create(null),f=0,h=(m,g)=>(m.rank==="dynamic"&&g.rank==="dynamic"?r[g.name]-r[m.name]:0)||(typeof m.rank=="number"?m.rank:1e9)-(typeof g.rank=="number"?g.rank:1e9)||(m.nameh.score-f.score||u(f.completion,h.completion))){let f=d.completion;!c||c.label!=f.label||c.detail!=f.detail||c.type!=null&&f.type!=null&&c.type!=f.type||c.apply!=f.apply||c.boost!=f.boost?l.push(d):GJ(d.completion)>GJ(c)&&(l[l.length-1]=d),c=d.completion}return l}class zy{constructor(t,n,i,r,s,a){this.options=t,this.attrs=n,this.tooltip=i,this.timestamp=r,this.selected=s,this.disabled=a}setSelected(t,n){return t==this.selected||t>=this.options.length?this:new zy(this.options,XJ(n,t),this.tooltip,this.timestamp,t,this.disabled)}static build(t,n,i,r,s,a){if(r&&!a&&t.some(u=>u.isPending))return r.setDisabled();let l=h_t(t,n);if(!l.length)return r&&t.some(u=>u.isPending)?r.setDisabled():null;let c=n.facet(Pa).selectOnOpen?0:-1;if(r&&r.selected!=c&&r.selected!=-1){let u=r.options[r.selected].completion;for(let d=0;dd.hasResult()?Math.min(u,d.from):u,1e8),create:v_t,above:s.aboveCursor},r?r.timestamp:Date.now(),c,!1)}map(t){return new zy(this.options,this.attrs,{...this.tooltip,pos:t.mapPos(this.tooltip.pos)},this.timestamp,this.selected,this.disabled)}setDisabled(){return new zy(this.options,this.attrs,this.tooltip,this.timestamp,this.selected,!0)}}class JN{constructor(t,n,i){this.active=t,this.id=n,this.open=i}static start(){return new JN(b_t,"cm-ac-"+Math.floor(Math.random()*2e6).toString(36),null)}update(t){let{state:n}=t,i=n.facet(Pa),s=(i.override||n.languageDataAt("autocomplete",hb(n)).map(s_t)).map(c=>(this.active.find(d=>d.source==c)||new Xc(c,this.active.some(d=>d.state!=0)?1:0)).update(t,i));s.length==this.active.length&&s.every((c,u)=>c==this.active[u])&&(s=this.active);let a=this.open,l=t.effects.some(c=>c.is(kQ));a&&t.docChanged&&(a=a.map(t.changes)),t.selection||s.some(c=>c.hasResult()&&t.changes.touchesRange(c.from,c.to))||!p_t(s,this.active)||l?a=zy.build(s,n,this.id,a,i,l):a&&a.disabled&&!s.some(c=>c.isPending)&&(a=null),!a&&s.every(c=>!c.isPending)&&s.some(c=>c.hasResult())&&(s=s.map(c=>c.hasResult()?new Xc(c.source,0):c));for(let c of t.effects)c.is(SQ)&&(a=a&&a.setSelected(c.value,this.id));return s==this.active&&a==this.open?this:new JN(s,this.id,a)}get tooltip(){return this.open?this.open.tooltip:null}get attrs(){return this.open?this.open.attrs:this.active.length?m_t:g_t}}function p_t(e,t){if(e==t)return!0;for(let n=0,i=0;;){for(;n-1&&(n["aria-activedescendant"]=e+"-"+t),n}const b_t=[];function F2e(e,t){if(e.isUserEvent("input.complete")){let i=e.annotation(OQ);if(i&&t.activateOnCompletion(i))return 12}let n=e.isUserEvent("input.type");return n&&t.activateOnTyping?5:n?1:e.isUserEvent("delete.backward")?2:e.selection?8:e.docChanged?16:0}class Xc{constructor(t,n,i=!1){this.source=t,this.state=n,this.explicit=i}hasResult(){return!1}get isPending(){return this.state==1}update(t,n){let i=F2e(t,n),r=this;(i&8||i&16&&this.touches(t))&&(r=new Xc(r.source,0)),i&4&&r.state==0&&(r=new Xc(this.source,1)),r=r.updateFor(t,i);for(let s of t.effects)if(s.is(ZN))r=new Xc(r.source,1,s.value);else if(s.is(hk))r=new Xc(r.source,0);else if(s.is(kQ))for(let a of s.value)a.source==r.source&&(r=a);return r}updateFor(t,n){return this.map(t.changes)}map(t){return this}touches(t){return t.changes.touchesRange(hb(t.state))}}class wv extends Xc{constructor(t,n,i,r,s,a){super(t,3,n),this.limit=i,this.result=r,this.from=s,this.to=a}hasResult(){return!0}updateFor(t,n){var i;if(!(n&3))return this.map(t.changes);let r=this.result;r.map&&!t.changes.empty&&(r=r.map(r,t.changes));let s=t.changes.mapPos(this.from),a=t.changes.mapPos(this.to,1),l=hb(t.state);if(l>a||!r||n&2&&(hb(t.startState)==this.from||ln.map(t))}}),ul=so.define({create(){return JN.start()},update(e,t){return e.update(t)},provide:e=>[fQ.from(e,t=>t.tooltip),Qt.contentAttributes.from(e,t=>t.attrs)]});function EQ(e,t){const n=t.completion.apply||t.completion.label;let i=e.state.field(ul).active.find(r=>r.source==t.source);return i instanceof wv?(typeof n=="string"?e.dispatch({...r_t(e.state,n,i.from,i.to),annotations:OQ.of(t.completion)}):n(e,t.completion,i.from,i.to),!0):!1}const v_t=d_t(ul,EQ);function fA(e,t="option"){return n=>{let i=n.state.field(ul,!1);if(!i||!i.open||i.open.disabled||Date.now()-i.open.timestamp-1?i.open.selected+r*(e?1:-1):e?0:a-1;return l<0?l=t=="page"?0:a-1:l>=a&&(l=t=="page"?a-1:0),n.dispatch({effects:SQ.of(l)}),!0}}const x_t=e=>{let t=e.state.field(ul,!1);return e.state.readOnly||!t||!t.open||t.open.selected<0||t.open.disabled||Date.now()-t.open.timestampe.state.field(ul,!1)?(e.dispatch({effects:ZN.of(!0)}),!0):!1,w_t=e=>{let t=e.state.field(ul,!1);return!t||!t.active.some(n=>n.state!=0)?!1:(e.dispatch({effects:hk.of(null)}),!0)};class O_t{constructor(t,n){this.active=t,this.context=n,this.time=Date.now(),this.updates=[],this.done=void 0}}const S_t=50,k_t=1e3,E_t=Ts.fromClass(class{constructor(e){this.view=e,this.debounceUpdate=-1,this.running=[],this.debounceAccept=-1,this.pendingStart=!1,this.composing=0;for(let t of e.state.field(ul).active)t.isPending&&this.startQuery(t)}update(e){let t=e.state.field(ul),n=e.state.facet(Pa);if(!e.selectionSet&&!e.docChanged&&e.startState.field(ul)==t)return;let i=e.transactions.some(s=>{let a=F2e(s,n);return a&8||(s.selection||s.docChanged)&&!(a&3)});for(let s=0;sS_t&&Date.now()-a.time>k_t){for(let l of a.context.abortListeners)try{l()}catch(c){ml(this.view.state,c)}a.context.abortListeners=null,this.running.splice(s--,1)}else a.updates.push(...e.transactions)}this.debounceUpdate>-1&&clearTimeout(this.debounceUpdate),e.transactions.some(s=>s.effects.some(a=>a.is(ZN)))&&(this.pendingStart=!0);let r=this.pendingStart?50:n.activateOnTypingDelay;if(this.debounceUpdate=t.active.some(s=>s.isPending&&!this.running.some(a=>a.active.source==s.source))?setTimeout(()=>this.startUpdate(),r):-1,this.composing!=0)for(let s of e.transactions)s.isUserEvent("input.type")?this.composing=2:this.composing==2&&s.selection&&(this.composing=3)}startUpdate(){this.debounceUpdate=-1,this.pendingStart=!1;let{state:e}=this.view,t=e.field(ul);for(let n of t.active)n.isPending&&!this.running.some(i=>i.active.source==n.source)&&this.startQuery(n);this.running.length&&t.open&&t.open.disabled&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet(Pa).updateSyncTime))}startQuery(e){let{state:t}=this.view,n=hb(t),i=new xQ(t,n,e.explicit,this.view),r=new O_t(e,i);this.running.push(r),Promise.resolve(e.source(i)).then(s=>{r.context.aborted||(r.done=s||null,this.scheduleAccept())},s=>{this.view.dispatch({effects:hk.of(null)}),ml(this.view.state,s)})}scheduleAccept(){this.running.every(e=>e.done!==void 0)?this.accept():this.debounceAccept<0&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet(Pa).updateSyncTime))}accept(){var e;this.debounceAccept>-1&&clearTimeout(this.debounceAccept),this.debounceAccept=-1;let t=[],n=this.view.state.facet(Pa),i=this.view.state.field(ul);for(let r=0;rl.source==s.active.source);if(a&&a.isPending)if(s.done==null){let l=new Xc(s.active.source,0);for(let c of s.updates)l=l.update(c,n);l.isPending||t.push(l)}else this.startQuery(a)}(t.length||i.open&&i.open.disabled)&&this.view.dispatch({effects:kQ.of(t)})}},{eventHandlers:{blur(e){let t=this.view.state.field(ul,!1);if(t&&t.tooltip&&this.view.state.facet(Pa).closeOnBlur){let n=t.open&&i2e(this.view,t.open.tooltip);(!n||!n.dom.contains(e.relatedTarget))&&setTimeout(()=>this.view.dispatch({effects:hk.of(null)}),10)}},compositionstart(){this.composing=1},compositionend(){this.composing==3&&setTimeout(()=>this.view.dispatch({effects:ZN.of(!1)}),20),this.composing=0}}}),C_t=typeof navigator=="object"&&/Win/.test(navigator.platform),T_t=Qh.highest(Qt.domEventHandlers({keydown(e,t){let n=t.state.field(ul,!1);if(!n||!n.open||n.open.disabled||n.open.selected<0||e.key.length>1||e.ctrlKey&&!(C_t&&e.altKey)||e.metaKey)return!1;let i=n.open.options[n.open.selected],r=n.active.find(a=>a.source==i.source),s=i.completion.commitCharacters||r.result.commitCharacters;return s&&s.indexOf(e.key)>-1&&EQ(t,i),!1}})),B2e=Qt.baseTheme({".cm-tooltip.cm-tooltip-autocomplete":{"& > ul":{fontFamily:"monospace",whiteSpace:"nowrap",overflow:"hidden auto",maxWidth_fallback:"700px",maxWidth:"min(700px, 95vw)",minWidth:"250px",maxHeight:"10em",height:"100%",listStyle:"none",margin:0,padding:0,"& > li, & > completion-section":{padding:"1px 3px",lineHeight:1.2},"& > li":{overflowX:"hidden",textOverflow:"ellipsis",cursor:"pointer"},"& > completion-section":{display:"list-item",borderBottom:"1px solid silver",paddingLeft:"0.5em",opacity:.7}}},"&light .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#17c",color:"white"},"&light .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#777"},"&dark .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#347",color:"white"},"&dark .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#444"},".cm-completionListIncompleteTop:before, .cm-completionListIncompleteBottom:after":{content:'"···"',opacity:.5,display:"block",textAlign:"center",cursor:"pointer"},".cm-tooltip.cm-completionInfo":{position:"absolute",padding:"3px 9px",width:"max-content",maxWidth:"400px",boxSizing:"border-box",whiteSpace:"pre-line"},".cm-completionInfo.cm-completionInfo-left":{right:"100%"},".cm-completionInfo.cm-completionInfo-right":{left:"100%"},".cm-completionInfo.cm-completionInfo-left-narrow":{right:"30px"},".cm-completionInfo.cm-completionInfo-right-narrow":{left:"30px"},"&light .cm-snippetField":{backgroundColor:"#00000022"},"&dark .cm-snippetField":{backgroundColor:"#ffffff22"},".cm-snippetFieldPosition":{verticalAlign:"text-top",width:0,height:"1.15em",display:"inline-block",margin:"0 -0.7px -.7em",borderLeft:"1.4px dotted #888"},".cm-completionMatchedText":{textDecoration:"underline"},".cm-completionDetail":{marginLeft:"0.5em",fontStyle:"italic"},".cm-completionIcon":{fontSize:"90%",width:".8em",display:"inline-block",textAlign:"center",paddingRight:".6em",opacity:"0.6",boxSizing:"content-box"},".cm-completionIcon-function, .cm-completionIcon-method":{"&:after":{content:"'ƒ'"}},".cm-completionIcon-class":{"&:after":{content:"'○'"}},".cm-completionIcon-interface":{"&:after":{content:"'◌'"}},".cm-completionIcon-variable":{"&:after":{content:"'𝑥'"}},".cm-completionIcon-constant":{"&:after":{content:"'𝐶'"}},".cm-completionIcon-type":{"&:after":{content:"'𝑡'"}},".cm-completionIcon-enum":{"&:after":{content:"'∪'"}},".cm-completionIcon-property":{"&:after":{content:"'□'"}},".cm-completionIcon-keyword":{"&:after":{content:"'🔑︎'"}},".cm-completionIcon-namespace":{"&:after":{content:"'▢'"}},".cm-completionIcon-text":{"&:after":{content:"'abc'",fontSize:"50%",verticalAlign:"middle"}}});class A_t{constructor(t,n,i,r){this.field=t,this.line=n,this.from=i,this.to=r}}class CQ{constructor(t,n,i){this.field=t,this.from=n,this.to=i}map(t){let n=t.mapPos(this.from,-1,to.TrackDel),i=t.mapPos(this.to,1,to.TrackDel);return n==null||i==null?null:new CQ(this.field,n,i)}}class TQ{constructor(t,n){this.lines=t,this.fieldPositions=n}instantiate(t,n){let i=[],r=[n],s=t.doc.lineAt(n),a=/^\s*/.exec(s.text)[0];for(let c of this.lines){if(i.length){let u=a,d=/^\t*/.exec(c)[0].length;for(let f=0;fnew CQ(c.field,r[c.line]+c.from,r[c.line]+c.to));return{text:i,ranges:l}}static parse(t){let n=[],i=[],r=[],s;for(let a of t.split(/\r\n?|\n/)){for(;s=/[#$]\{(?:(\d+)(?::([^{}]*))?|((?:\\[{}]|[^{}])*))\}/.exec(a);){let l=s[1]?+s[1]:null,c=s[2]||s[3]||"",u=-1;l===0&&(l=1e9);let d=c.replace(/\\[{}]/g,f=>f[1]);for(let f=0;f=u&&h.field++}for(let f of r)if(f.line==i.length&&f.from>s.index){let h=s[2]?3+(s[1]||"").length:2;f.from-=h,f.to-=h}r.push(new A_t(u,i.length,s.index,s.index+d.length)),a=a.slice(0,s.index)+c+a.slice(s.index+s[0].length)}a=a.replace(/\\([{}])/g,(l,c,u)=>{for(let d of r)d.line==i.length&&d.from>u&&(d.from--,d.to--);return c}),i.push(a)}return new TQ(i,r)}}let __t=xn.widget({widget:new class extends Zu{toDOM(){let e=document.createElement("span");return e.className="cm-snippetFieldPosition",e}ignoreEvent(){return!1}}}),N_t=xn.mark({class:"cm-snippetField"});class c1{constructor(t,n){this.ranges=t,this.active=n,this.deco=xn.set(t.map(i=>(i.from==i.to?__t:N_t).range(i.from,i.to)),!0)}map(t){let n=[];for(let i of this.ranges){let r=i.map(t);if(!r)return null;n.push(r)}return new c1(n,this.active)}selectionInsideField(t){return t.ranges.every(n=>this.ranges.some(i=>i.field==this.active&&i.from<=n.from&&i.to>=n.to))}}const VE=Qn.define({map(e,t){return e&&e.map(t)}}),j_t=Qn.define(),pk=so.define({create(){return null},update(e,t){for(let n of t.effects){if(n.is(VE))return n.value;if(n.is(j_t)&&e)return new c1(e.ranges,n.value)}return e&&t.docChanged&&(e=e.map(t.changes)),e&&t.selection&&!e.selectionInsideField(t.selection)&&(e=null),e},provide:e=>Qt.decorations.from(e,t=>t?t.deco:xn.none)});function AQ(e,t){return rt.create(e.filter(n=>n.field==t).map(n=>rt.range(n.from,n.to)))}function R_t(e){let t=TQ.parse(e);return(n,i,r,s)=>{let{text:a,ranges:l}=t.instantiate(n.state,r),{main:c}=n.state.selection,u={changes:{from:r,to:s==c.from?c.to:s,insert:Ji.of(a)},scrollIntoView:!0,annotations:i?[OQ.of(i),ea.userEvent.of("input.complete")]:void 0};if(l.length&&(u.selection=AQ(l,0)),l.some(d=>d.field>0)){let d=new c1(l,0),f=u.effects=[VE.of(d)];n.state.field(pk,!1)===void 0&&f.push(Qn.appendConfig.of([pk,L_t,$_t,B2e]))}n.dispatch(n.state.update(u))}}function U2e(e){return({state:t,dispatch:n})=>{let i=t.field(pk,!1);if(!i||e<0&&i.active==0)return!1;let r=i.active+e,s=e>0&&!i.ranges.some(a=>a.field==r+e);return n(t.update({selection:AQ(i.ranges,r),effects:VE.of(s?null:new c1(i.ranges,r)),scrollIntoView:!0})),!0}}const I_t=({state:e,dispatch:t})=>e.field(pk,!1)?(t(e.update({effects:VE.of(null)})),!0):!1,P_t=U2e(1),D_t=U2e(-1),M_t=[{key:"Tab",run:P_t,shift:D_t},{key:"Escape",run:I_t}],YJ=Jt.define({combine(e){return e.length?e[0]:M_t}}),L_t=Qh.highest(o1.compute([YJ],e=>e.facet(YJ)));function hs(e,t){return{...t,apply:R_t(e)}}const $_t=Qt.domEventHandlers({mousedown(e,t){let n=t.state.field(pk,!1),i;if(!n||(i=t.posAtCoords({x:e.clientX,y:e.clientY}))==null)return!1;let r=n.ranges.find(s=>s.from<=i&&s.to>=i);return!r||r.field==n.active?!1:(t.dispatch({selection:AQ(n.ranges,r.field),effects:VE.of(n.ranges.some(s=>s.field>r.field)?new c1(n.ranges,r.field):null),scrollIntoView:!0}),!0)}}),mk={brackets:["(","[","{","'",'"'],before:")]}:;>",stringPrefixes:[]},Kg=Qn.define({map(e,t){let n=t.mapPos(e,-1,to.TrackAfter);return n??void 0}}),_Q=new class extends _m{};_Q.startSide=1;_Q.endSide=-1;const Q2e=so.define({create(){return Si.empty},update(e,t){if(e=e.map(t.changes),t.selection){let n=t.state.doc.lineAt(t.selection.main.head);e=e.update({filter:i=>i>=n.from&&i<=n.to})}for(let n of t.effects)n.is(Kg)&&(e=e.update({add:[_Q.range(n.value,n.value+1)]}));return e}});function F_t(){return[U_t,Q2e]}const P5="()[]{}<>«»»«[]{}";function z2e(e){for(let t=0;t{if((B_t?e.composing:e.compositionStarted)||e.state.readOnly)return!1;let r=e.state.selection.main;if(i.length>2||i.length==2&&xd(cl(i,0))==1||t!=r.from||n!=r.to)return!1;let s=V_t(e.state,i);return s?(e.dispatch(s),!0):!1}),Q_t=({state:e,dispatch:t})=>{if(e.readOnly)return!1;let i=V2e(e,e.selection.main.head).brackets||mk.brackets,r=null,s=e.changeByRange(a=>{if(a.empty){let l=H_t(e.doc,a.head);for(let c of i)if(c==l&&MI(e.doc,a.head)==z2e(cl(c,0)))return{changes:{from:a.head-c.length,to:a.head+c.length},range:rt.cursor(a.head-c.length)}}return{range:r=a}});return r||t(e.update(s,{scrollIntoView:!0,userEvent:"delete.backward"})),!r},z_t=[{key:"Backspace",run:Q_t}];function V_t(e,t){let n=V2e(e,e.selection.main.head),i=n.brackets||mk.brackets;for(let r of i){let s=z2e(cl(r,0));if(t==r)return s==r?K_t(e,r,i.indexOf(r+r+r)>-1,n):q_t(e,r,s,n.before||mk.before);if(t==s&&H2e(e,e.selection.main.from))return W_t(e,r,s)}return null}function H2e(e,t){let n=!1;return e.field(Q2e).between(0,e.doc.length,i=>{i==t&&(n=!0)}),n}function MI(e,t){let n=e.sliceString(t,t+2);return n.slice(0,xd(cl(n,0)))}function H_t(e,t){let n=e.sliceString(t-2,t);return xd(cl(n,0))==n.length?n:n.slice(1)}function q_t(e,t,n,i){let r=null,s=e.changeByRange(a=>{if(!a.empty)return{changes:[{insert:t,from:a.from},{insert:n,from:a.to}],effects:Kg.of(a.to+t.length),range:rt.range(a.anchor+t.length,a.head+t.length)};let l=MI(e.doc,a.head);return!l||/\s/.test(l)||i.indexOf(l)>-1?{changes:{insert:t+n,from:a.head},effects:Kg.of(a.head+t.length),range:rt.cursor(a.head+t.length)}:{range:r=a}});return r?null:e.update(s,{scrollIntoView:!0,userEvent:"input.type"})}function W_t(e,t,n){let i=null,r=e.changeByRange(s=>s.empty&&MI(e.doc,s.head)==n?{changes:{from:s.head,to:s.head+n.length,insert:n},range:rt.cursor(s.head+n.length)}:i={range:s});return i?null:e.update(r,{scrollIntoView:!0,userEvent:"input.type"})}function K_t(e,t,n,i){let r=i.stringPrefixes||mk.stringPrefixes,s=null,a=e.changeByRange(l=>{if(!l.empty)return{changes:[{insert:t,from:l.from},{insert:t,from:l.to}],effects:Kg.of(l.to+t.length),range:rt.range(l.anchor+t.length,l.head+t.length)};let c=l.head,u=MI(e.doc,c),d;if(u==t){if(ZJ(e,c))return{changes:{insert:t+t,from:c},effects:Kg.of(c+t.length),range:rt.cursor(c+t.length)};if(H2e(e,c)){let h=n&&e.sliceDoc(c,c+t.length*3)==t+t+t?t+t+t:t;return{changes:{from:c,to:c+h.length,insert:h},range:rt.cursor(c+h.length)}}}else{if(n&&e.sliceDoc(c-2*t.length,c)==t+t&&(d=JJ(e,c-2*t.length,r))>-1&&ZJ(e,d))return{changes:{insert:t+t+t+t,from:c},effects:Kg.of(c+t.length),range:rt.cursor(c+t.length)};if(e.charCategorizer(c)(u)!=is.Word&&JJ(e,c,r)>-1&&!G_t(e,c,t,r))return{changes:{insert:t+t,from:c},effects:Kg.of(c+t.length),range:rt.cursor(c+t.length)}}return{range:s=l}});return s?null:e.update(a,{scrollIntoView:!0,userEvent:"input.type"})}function ZJ(e,t){let n=Nr(e).resolveInner(t+1);return n.parent&&n.from==t}function G_t(e,t,n,i){let r=Nr(e).resolveInner(t,-1),s=i.reduce((a,l)=>Math.max(a,l.length),0);for(let a=0;a<5;a++){let l=e.sliceDoc(r.from,Math.min(r.to,r.from+n.length+s)),c=l.indexOf(n);if(!c||c>-1&&i.indexOf(l.slice(0,c))>-1){let d=r.firstChild;for(;d&&d.from==r.from&&d.to-d.from>n.length+c;){if(e.sliceDoc(d.to-n.length,d.to)==n)return!1;d=d.firstChild}return!0}let u=r.to==t&&r.parent;if(!u)break;r=u}return!1}function JJ(e,t,n){let i=e.charCategorizer(t);if(i(e.sliceDoc(t-1,t))!=is.Word)return t;for(let r of n){let s=t-r.length;if(e.sliceDoc(s,t)==r&&i(e.sliceDoc(s-1,s))!=is.Word)return s}return-1}function X_t(e={}){return[T_t,ul,Pa.of(e),E_t,Y_t,B2e]}const q2e=[{key:"Ctrl-Space",run:I5},{mac:"Alt-`",run:I5},{mac:"Alt-i",run:I5},{key:"Escape",run:w_t},{key:"ArrowDown",run:fA(!0)},{key:"ArrowUp",run:fA(!1)},{key:"PageDown",run:fA(!0,"page")},{key:"PageUp",run:fA(!1,"page")},{key:"Enter",run:x_t}],Y_t=Qh.highest(o1.computeN([Pa],e=>e.facet(Pa).defaultKeymap?[q2e]:[])),W2e=[hs("function ${name}(${params}) {\n ${}\n}",{label:"function",detail:"definition",type:"keyword"}),hs("for (let ${index} = 0; ${index} < ${bound}; ${index}++) {\n ${}\n}",{label:"for",detail:"loop",type:"keyword"}),hs("for (let ${name} of ${collection}) {\n ${}\n}",{label:"for",detail:"of loop",type:"keyword"}),hs("do {\n ${}\n} while (${})",{label:"do",detail:"loop",type:"keyword"}),hs("while (${}) {\n ${}\n}",{label:"while",detail:"loop",type:"keyword"}),hs(`try { \${} } catch (\${error}) { \${} -}`,{label:"try",detail:"/ catch block",type:"keyword"}),ys("if (${}) {\n ${}\n}",{label:"if",detail:"block",type:"keyword"}),ys(`if (\${}) { +}`,{label:"try",detail:"/ catch block",type:"keyword"}),hs("if (${}) {\n ${}\n}",{label:"if",detail:"block",type:"keyword"}),hs(`if (\${}) { \${} } else { \${} -}`,{label:"if",detail:"/ else block",type:"keyword"}),ys(`class \${name} { +}`,{label:"if",detail:"/ else block",type:"keyword"}),hs(`class \${name} { constructor(\${params}) { \${} } -}`,{label:"class",detail:"definition",type:"keyword"}),ys('import {${names}} from "${module}"\n${}',{label:"import",detail:"named",type:"keyword"}),ys('import ${name} from "${module}"\n${}',{label:"import",detail:"default",type:"keyword"})],D_t=PAe.concat([ys("interface ${name} {\n ${}\n}",{label:"interface",detail:"definition",type:"keyword"}),ys("type ${name} = ${type}",{label:"type",detail:"definition",type:"keyword"}),ys("enum ${name} {\n ${}\n}",{label:"enum",detail:"definition",type:"keyword"})]),HJ=new zU,DAe=new Set(["Script","Block","FunctionExpression","FunctionDeclaration","ArrowFunction","MethodDeclaration","ForStatement"]);function tw(e){return(t,n)=>{let i=t.node.getChild("VariableDefinition");return i&&n(i,e),!0}}const M_t=["FunctionDeclaration"],L_t={FunctionDeclaration:tw("function"),ClassDeclaration:tw("class"),ClassExpression:()=>!0,EnumDeclaration:tw("constant"),TypeAliasDeclaration:tw("type"),NamespaceDeclaration:tw("namespace"),VariableDefinition(e,t){e.matchContext(M_t)||t(e,"variable")},TypeDefinition(e,t){t(e,"type")},__proto__:null};function MAe(e,t){let n=HJ.get(t);if(n)return n;let i=[],r=!0;function s(a,l){let c=e.sliceString(a.from,a.to);i.push({label:c,type:l})}return t.cursor(er.IncludeAnonymous).iterate(a=>{if(r)r=!1;else if(a.name){let l=L_t[a.name];if(l&&l(a,s)||DAe.has(a.name))return!1}else if(a.to-a.from>8192){for(let l of MAe(e,a.node))i.push(l);return!1}}),HJ.set(t,i),i}const qJ=/^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/,LAe=["TemplateString","String","RegExp","LineComment","BlockComment","VariableDefinition","TypeDefinition","Label","PropertyDefinition","PropertyName","PrivatePropertyDefinition","PrivatePropertyName","JSXText","JSXAttributeValue","JSXOpenTag","JSXCloseTag","JSXSelfClosingTag",".","?."];function $_t(e){let t=Or(e.state).resolveInner(e.pos,-1);if(LAe.indexOf(t.name)>-1)return null;let n=t.name=="VariableName"||t.to-t.from<20&&qJ.test(e.state.sliceDoc(t.from,t.to));if(!n&&!e.explicit)return null;let i=[];for(let r=t;r;r=r.parent)DAe.has(r.name)&&(i=i.concat(MAe(e.state.doc,r)));return{options:i,from:n?t.from:e.pos,validFor:qJ}}const $d=jh.define({name:"javascript",parser:FAt.configure({props:[Hh.add({IfStatement:pv({except:/^\s*({|else\b)/}),TryStatement:pv({except:/^\s*({|catch\b|finally\b)/}),LabeledStatement:x2t,SwitchBody:e=>{let t=e.textAfter,n=/^\s*\}/.test(t),i=/^\s*(case|default)\b/.test(t);return e.baseIndent+(n?0:i?1:2)*e.unit},Block:hv({closing:"}"}),ArrowFunction:e=>e.baseIndent+e.unit,"TemplateString BlockComment":()=>null,"Statement Property":pv({except:/^\s*{/}),JSXElement(e){let t=/^\s*<\//.test(e.textAfter);return e.lineIndent(e.node.from)+(t?0:e.unit)},JSXEscape(e){let t=/\s*\}/.test(e.textAfter);return e.lineIndent(e.node.from)+(t?0:e.unit)},"JSXOpenTag JSXSelfClosingTag"(e){return e.column(e.node.from)+e.unit}}),qh.add({"Block ClassBody SwitchBody EnumBody ObjectExpression ArrayExpression ObjectType":LE,BlockComment(e){return{from:e.from+2,to:e.to-2}},JSXElement(e){let t=e.firstChild;if(!t||t.name=="JSXSelfClosingTag")return null;let n=e.lastChild;return{from:t.to,to:n.type.isError?e.to:n.from}},"JSXSelfClosingTag JSXOpenTag"(e){var t;let n=(t=e.firstChild)===null||t===void 0?void 0:t.nextSibling,i=e.lastChild;return!n||n.type.isError?null:{from:n.to,to:i.type.isError?e.to:i.from}}})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"`"]},commentTokens:{line:"//",block:{open:"/*",close:"*/"}},indentOnInput:/^\s*(?:case |default:|\{|\}|<\/)$/,wordChars:"$"}}),$Ae={test:e=>/^JSX/.test(e.name),facet:CI({commentTokens:{block:{open:"{/*",close:"*/}"}}})},FAe=$d.configure({dialect:"ts"},"typescript"),BAe=$d.configure({dialect:"jsx",props:[cQ.add(e=>e.isTop?[$Ae]:void 0)]}),UAe=$d.configure({dialect:"jsx ts",props:[cQ.add(e=>e.isTop?[$Ae]:void 0)]},"typescript");let QAe=e=>({label:e,type:"keyword"});const zAe="break case const continue default delete export extends false finally in instanceof let new return static super switch this throw true typeof var yield".split(" ").map(QAe),F_t=zAe.concat(["declare","implements","private","protected","public"].map(QAe));function J$(e={}){let t=e.jsx?e.typescript?UAe:BAe:e.typescript?FAe:$d,n=e.typescript?D_t.concat(F_t):PAe.concat(zAe);return new Nm(t,[$d.data.of({autocomplete:kAe(LAe,gQ(n))}),$d.data.of({autocomplete:$_t}),e.jsx?Q_t:[]])}function B_t(e){for(;;){if(e.name=="JSXOpenTag"||e.name=="JSXSelfClosingTag"||e.name=="JSXFragmentTag")return e;if(e.name=="JSXEscape"||!e.parent)return null;e=e.parent}}function WJ(e,t,n=e.length){for(let i=t==null?void 0:t.firstChild;i;i=i.nextSibling)if(i.name=="JSXIdentifier"||i.name=="JSXBuiltin"||i.name=="JSXNamespacedName"||i.name=="JSXMemberExpression")return e.sliceString(i.from,Math.min(i.to,n));return""}const U_t=typeof navigator=="object"&&/Android\b/.test(navigator.userAgent),Q_t=Ft.inputHandler.of((e,t,n,i,r)=>{if((U_t?e.composing:e.compositionStarted)||e.state.readOnly||t!=n||i!=">"&&i!="/"||!$d.isActiveAt(e.state,t,-1))return!1;let s=r(),{state:a}=s,l=a.changeByRange(c=>{var u;let{head:d}=c,f=Or(a).resolveInner(d-1,-1),h;if(f.name=="JSXStartTag"&&(f=f.parent),!(a.doc.sliceString(d-1,d)!=i||f.name=="JSXAttributeValue"&&f.to>d)){if(i==">"&&f.name=="JSXFragmentTag")return{range:c,changes:{from:d,insert:""}};if(i=="/"&&f.name=="JSXStartCloseTag"){let m=f.parent,g=m.parent;if(g&&m.from==d-2&&((h=WJ(a.doc,g.firstChild,d))||((u=g.firstChild)===null||u===void 0?void 0:u.name)=="JSXFragmentTag")){let b=`${h}>`;return{range:it.cursor(d+b.length,-1),changes:{from:d,insert:b}}}}else if(i==">"){let m=B_t(f);if(m&&m.name=="JSXOpenTag"&&!/^\/?>|^<\//.test(a.doc.sliceString(d,d+2))&&(h=WJ(a.doc,m,d)))return{range:c,changes:{from:d,insert:``}}}}return{range:c}});return l.changes.empty?!1:(e.dispatch([s,a.update(l,{userEvent:"input.complete",scrollIntoView:!0})]),!0)}),z_t=Vh({String:ne.string,Number:ne.number,"True False":ne.bool,PropertyName:ne.propertyName,Null:ne.null,", :":ne.separator,"[ ]":ne.squareBracket,"{ }":ne.brace}),V_t=Rh.deserialize({version:14,states:"$bOVQPOOOOQO'#Cb'#CbOnQPO'#CeOvQPO'#ClOOQO'#Cr'#CrQOQPOOOOQO'#Cg'#CgO}QPO'#CfO!SQPO'#CtOOQO,59P,59PO![QPO,59PO!aQPO'#CuOOQO,59W,59WO!iQPO,59WOVQPO,59QOqQPO'#CmO!nQPO,59`OOQO1G.k1G.kOVQPO'#CnO!vQPO,59aOOQO1G.r1G.rOOQO1G.l1G.lOOQO,59X,59XOOQO-E6k-E6kOOQO,59Y,59YOOQO-E6l-E6l",stateData:"#O~OeOS~OQSORSOSSOTSOWQO_ROgPO~OVXOgUO~O^[O~PVO[^O~O]_OVhX~OVaO~O]bO^iX~O^dO~O]_OVha~O]bO^ia~O",goto:"!kjPPPPPPkPPkqwPPPPk{!RPPP!XP!e!hXSOR^bQWQRf_TVQ_Q`WRg`QcZRicQTOQZRQe^RhbRYQR]R",nodeNames:"⚠ JsonText True False Null Number String } { Object Property PropertyName : , ] [ Array",maxTerm:25,nodeProps:[["isolate",-2,6,11,""],["openedBy",7,"{",14,"["],["closedBy",8,"}",15,"]"]],propSources:[z_t],skippedNodes:[0],repeatNodeCount:2,tokenData:"(|~RaXY!WYZ!W]^!Wpq!Wrs!]|}$u}!O$z!Q!R%T!R![&c![!]&t!}#O&y#P#Q'O#Y#Z'T#b#c'r#h#i(Z#o#p(r#q#r(w~!]Oe~~!`Wpq!]qr!]rs!xs#O!]#O#P!}#P;'S!];'S;=`$o<%lO!]~!}Og~~#QXrs!]!P!Q!]#O#P!]#U#V!]#Y#Z!]#b#c!]#f#g!]#h#i!]#i#j#m~#pR!Q![#y!c!i#y#T#Z#y~#|R!Q![$V!c!i$V#T#Z$V~$YR!Q![$c!c!i$c#T#Z$c~$fR!Q![!]!c!i!]#T#Z!]~$rP;=`<%l!]~$zO]~~$}Q!Q!R%T!R![&c~%YRT~!O!P%c!g!h%w#X#Y%w~%fP!Q![%i~%nRT~!Q![%i!g!h%w#X#Y%w~%zR{|&T}!O&T!Q![&Z~&WP!Q![&Z~&`PT~!Q![&Z~&hST~!O!P%c!Q![&c!g!h%w#X#Y%w~&yO[~~'OO_~~'TO^~~'WP#T#U'Z~'^P#`#a'a~'dP#g#h'g~'jP#X#Y'm~'rOR~~'uP#i#j'x~'{P#`#a(O~(RP#`#a(U~(ZOS~~(^P#f#g(a~(dP#i#j(g~(jP#X#Y(m~(rOQ~~(wOW~~(|OV~",tokenizers:[0],topRules:{JsonText:[0,1]},tokenPrec:0}),H_t=jh.define({name:"json",parser:V_t.configure({props:[Hh.add({Object:pv({except:/^\s*\}/}),Array:pv({except:/^\s*\]/})}),qh.add({"Object Array":LE})]}),languageData:{closeBrackets:{brackets:["[","{",'"']},indentOnInput:/^\s*[\}\]]$/}});function q_t(){return new Nm(H_t)}class KN{static create(t,n,i,r,s){let a=r+(r<<8)+t+(n<<4)|0;return new KN(t,n,i,a,s,[],[])}constructor(t,n,i,r,s,a,l){this.type=t,this.value=n,this.from=i,this.hash=r,this.end=s,this.children=a,this.positions=l,this.hashProp=[[Ln.contextHash,r]]}addChild(t,n){t.prop(Ln.contextHash)!=this.hash&&(t=new hi(t.type,t.children,t.positions,t.length,this.hashProp)),this.children.push(t),this.positions.push(n)}toTree(t,n=this.end){let i=this.children.length-1;return i>=0&&(n=Math.max(n,this.positions[i]+this.children[i].length+this.from)),new hi(t.types[this.type],this.children,this.positions,n-this.from).balance({makeTree:(r,s,a)=>new hi(ea.none,r,s,a,this.hashProp)})}}var Nt;(function(e){e[e.Document=1]="Document",e[e.CodeBlock=2]="CodeBlock",e[e.FencedCode=3]="FencedCode",e[e.Blockquote=4]="Blockquote",e[e.HorizontalRule=5]="HorizontalRule",e[e.BulletList=6]="BulletList",e[e.OrderedList=7]="OrderedList",e[e.ListItem=8]="ListItem",e[e.ATXHeading1=9]="ATXHeading1",e[e.ATXHeading2=10]="ATXHeading2",e[e.ATXHeading3=11]="ATXHeading3",e[e.ATXHeading4=12]="ATXHeading4",e[e.ATXHeading5=13]="ATXHeading5",e[e.ATXHeading6=14]="ATXHeading6",e[e.SetextHeading1=15]="SetextHeading1",e[e.SetextHeading2=16]="SetextHeading2",e[e.HTMLBlock=17]="HTMLBlock",e[e.LinkReference=18]="LinkReference",e[e.Paragraph=19]="Paragraph",e[e.CommentBlock=20]="CommentBlock",e[e.ProcessingInstructionBlock=21]="ProcessingInstructionBlock",e[e.Escape=22]="Escape",e[e.Entity=23]="Entity",e[e.HardBreak=24]="HardBreak",e[e.Emphasis=25]="Emphasis",e[e.StrongEmphasis=26]="StrongEmphasis",e[e.Link=27]="Link",e[e.Image=28]="Image",e[e.InlineCode=29]="InlineCode",e[e.HTMLTag=30]="HTMLTag",e[e.Comment=31]="Comment",e[e.ProcessingInstruction=32]="ProcessingInstruction",e[e.Autolink=33]="Autolink",e[e.HeaderMark=34]="HeaderMark",e[e.QuoteMark=35]="QuoteMark",e[e.ListMark=36]="ListMark",e[e.LinkMark=37]="LinkMark",e[e.EmphasisMark=38]="EmphasisMark",e[e.CodeMark=39]="CodeMark",e[e.CodeText=40]="CodeText",e[e.CodeInfo=41]="CodeInfo",e[e.LinkTitle=42]="LinkTitle",e[e.LinkLabel=43]="LinkLabel",e[e.URL=44]="URL"})(Nt||(Nt={}));class W_t{constructor(t,n){this.start=t,this.content=n,this.marks=[],this.parsers=[]}}class G_t{constructor(){this.text="",this.baseIndent=0,this.basePos=0,this.depth=0,this.markers=[],this.pos=0,this.indent=0,this.next=-1}forward(){this.basePos>this.pos&&this.forwardInner()}forwardInner(){let t=this.skipSpace(this.basePos);this.indent=this.countIndent(t,this.pos,this.indent),this.pos=t,this.next=t==this.text.length?-1:this.text.charCodeAt(t)}skipSpace(t){return VO(this.text,t)}reset(t){for(this.text=t,this.baseIndent=this.basePos=this.pos=this.indent=0,this.forwardInner(),this.depth=1;this.markers.length;)this.markers.pop()}moveBase(t){this.basePos=t,this.baseIndent=this.countIndent(t,this.pos,this.indent)}moveBaseColumn(t){this.baseIndent=t,this.basePos=this.findColumn(t)}addMarker(t){this.markers.push(t)}countIndent(t,n=0,i=0){for(let r=n;r=t.stack[n.depth+1].value+n.baseIndent)return!0;if(n.indent>=n.baseIndent+4)return!1;let i=(e.type==Nt.OrderedList?TQ:CQ)(n,t,!1);return i>0&&(e.type!=Nt.BulletList||EQ(n,t,!1)<0)&&n.text.charCodeAt(n.pos+i-1)==e.value}const VAe={[Nt.Blockquote](e,t,n){return n.next!=62?!1:(n.markers.push(Fi(Nt.QuoteMark,t.lineStart+n.pos,t.lineStart+n.pos+1)),n.moveBase(n.pos+(ou(n.text.charCodeAt(n.pos+1))?2:1)),e.end=t.lineStart+n.text.length,!0)},[Nt.ListItem](e,t,n){return n.indent-1?!1:(n.moveBaseColumn(n.baseIndent+e.value),!0)},[Nt.OrderedList]:GJ,[Nt.BulletList]:GJ,[Nt.Document](){return!0}};function ou(e){return e==32||e==9||e==10||e==13}function VO(e,t=0){for(;tn&&ou(e.charCodeAt(t-1));)t--;return t}function HAe(e){if(e.next!=96&&e.next!=126)return-1;let t=e.pos+1;for(;t-1&&e.depth==t.stack.length&&t.parser.leafBlockParsers.indexOf(JAe.SetextHeading)>-1||i<3?-1:1}function WAe(e,t){for(let n=e.stack.length-1;n>=0;n--)if(e.stack[n].type==t)return!0;return!1}function CQ(e,t,n){return(e.next==45||e.next==43||e.next==42)&&(e.pos==e.text.length-1||ou(e.text.charCodeAt(e.pos+1)))&&(!n||WAe(t,Nt.BulletList)||e.skipSpace(e.pos+2)=48&&r<=57;){i++;if(i==e.text.length)return-1;r=e.text.charCodeAt(i)}return i==e.pos||i>e.pos+9||r!=46&&r!=41||ie.pos+1||e.next!=49)?-1:i+1-e.pos}function GAe(e){if(e.next!=35)return-1;let t=e.pos+1;for(;t6?-1:n}function KAe(e){if(e.next!=45&&e.next!=61||e.indent>=e.baseIndent+4)return-1;let t=e.pos+1;for(;t/,YAe=/\?>/,t8=[[/^<(?:script|pre|style)(?:\s|>|$)/i,/<\/(?:script|pre|style)>/i],[/^\s*/,u_e=/\?>/,a8=[[/^<(?:script|pre|style)(?:\s|>|$)/i,/<\/(?:script|pre|style)>/i],[/^\s*/i.exec(i);if(s)return e.append(Fi(Nt.Comment,n,n+1+s[0].length));let a=/^\?[^]*?\?>/.exec(i);if(a)return e.append(Fi(Nt.ProcessingInstruction,n,n+1+a[0].length));let l=/^(?:![A-Z][^]*?>|!\[CDATA\[[^]*?\]\]>|\/\s*[a-zA-Z][\w-]*\s*>|\s*[a-zA-Z][\w-]*(\s+[a-zA-Z:_][\w-.:]*(?:\s*=\s*(?:[^\s"'=<>`]+|'[^']*'|"[^"]*"))?)*\s*(\/\s*)?>)/.exec(i);return l?e.append(Fi(Nt.HTMLTag,n,n+1+l[0].length)):-1},Emphasis(e,t,n){if(t!=95&&t!=42)return-1;let i=n+1;for(;e.char(i)==t;)i++;let r=e.slice(n-1,n),s=e.slice(i,i+1),a=hk.test(r),l=hk.test(s),c=/\s|^$/.test(r),u=/\s|^$/.test(s),d=!u&&(!l||c||a),f=!c&&(!a||u||l),h=d&&(t==42||!f||a),m=f&&(t==42||!d||l);return e.append(new ql(t==95?r_e:s_e,n,i,(h?1:0)|(m?2:0)))},HardBreak(e,t,n){if(t==92&&e.char(n+1)==10)return e.append(Fi(Nt.HardBreak,n,n+2));if(t==32){let i=n+1;for(;e.char(i)==32;)i++;if(e.char(i)==10&&i>=n+2)return e.append(Fi(Nt.HardBreak,n,i+1))}return-1},Link(e,t,n){return t==91?e.append(new ql(_g,n,n+1,1)):-1},Image(e,t,n){return t==33&&e.char(n+1)==91?e.append(new ql(XN,n,n+2,1)):-1},LinkEnd(e,t,n){if(t!=93)return-1;for(let i=e.parts.length-1;i>=0;i--){let r=e.parts[i];if(r instanceof ql&&(r.type==_g||r.type==XN)){if(!r.side||e.skipSpace(r.to)==n&&!/[(\[]/.test(e.slice(n+1,n+2)))return e.parts[i]=null,-1;let s=e.takeContent(i),a=e.parts[i]=eNt(e,s,r.type==_g?Nt.Link:Nt.Image,r.from,n+1);if(r.type==_g)for(let l=0;lt?Fi(Nt.URL,t+n,s+n):s==e.length?null:!1}}function o_e(e,t,n){let i=e.charCodeAt(t);if(i!=39&&i!=34&&i!=40)return!1;let r=i==40?41:i;for(let s=t+1,a=!1;s=this.end?-1:this.text.charCodeAt(t-this.offset)}get end(){return this.offset+this.text.length}slice(t,n){return this.text.slice(t-this.offset,n-this.offset)}append(t){return this.parts.push(t),t.to}addDelimiter(t,n,i,r,s){return this.append(new ql(t,n,i,(r?1:0)|(s?2:0)))}get hasOpenLink(){for(let t=this.parts.length-1;t>=0;t--){let n=this.parts[t];if(n instanceof ql&&(n.type==_g||n.type==XN))return!0}return!1}addElement(t){return this.append(t)}resolveMarkers(t){for(let i=t;i=t;c--){let b=this.parts[c];if(b instanceof ql&&b.side&1&&b.type==r.type&&!(s&&(r.side&1||b.side&2)&&(b.to-b.from+a)%3==0&&((b.to-b.from)%3||a%3))){l=b;break}}if(!l)continue;let u=r.type.resolve,d=[],f=l.from,h=r.to;if(s){let b=Math.min(2,l.to-l.from,a);f=l.to-b,h=r.from+b,u=b==1?"Emphasis":"StrongEmphasis"}l.type.mark&&d.push(this.elt(l.type.mark,f,l.to));for(let b=c+1;b=0;n--){let i=this.parts[n];if(i instanceof ql&&i.type==t&&i.side&1)return n}return null}takeContent(t){let n=this.resolveMarkers(t);return this.parts.length=t,n}getDelimiterAt(t){let n=this.parts[t];return n instanceof ql?n:null}skipSpace(t){return VO(this.text,t-this.offset)+this.offset}elt(t,n,i,r){return typeof t=="string"?Fi(this.parser.getNodeType(t),n,i,r):new i_e(t,n)}}AQ.linkStart=_g;AQ.imageStart=XN;function i8(e,t){if(!t.length)return e;if(!e.length)return t;let n=e.slice(),i=0;for(let r of t){for(;i(t?t-1:0))return!1;if(this.fragmentEnd<0){let s=this.fragment.to;for(;s>0&&this.input.read(s-1,s)!=` -`;)s--;this.fragmentEnd=s?s-1:0}let i=this.cursor;i||(i=this.cursor=this.fragment.tree.cursor(),i.firstChild());let r=t+this.fragment.offset;for(;i.to<=r;)if(!i.parent())return!1;for(;;){if(i.from>=r)return this.fragment.from<=n;if(!i.childAfter(r))return!1}}matches(t){let n=this.cursor.tree;return n&&n.prop(Ln.contextHash)==t}takeNodes(t){let n=this.cursor,i=this.fragment.offset,r=this.fragmentEnd-(this.fragment.openEnd?1:0),s=t.absoluteLineStart,a=s,l=t.block.children.length,c=a,u=l;for(;;){if(n.to-i>r){if(n.type.isAnonymous&&n.firstChild())continue;break}let d=c_e(n.from-i,t.ranges);if(n.to-i<=t.ranges[t.rangeI].to)t.addNode(n.tree,d);else{let f=new hi(t.parser.nodeSet.types[Nt.Paragraph],[],[],0,t.block.hashProp);t.reusePlaceholders.set(f,n.tree),t.addNode(f,d)}if(n.type.is("Block")&&(tNt.indexOf(n.type.id)<0?(a=n.to-i,l=t.block.children.length):(a=c,l=u),c=n.to-i,u=t.block.children.length),!n.nextSibling())break}for(;t.block.children.length>l;)t.block.children.pop(),t.block.positions.pop();return a-s}}function c_e(e,t){let n=e;for(let i=1;iu2[e]),Object.keys(u2).map(e=>JAe[e]),Object.keys(u2),Y_t,VAe,Object.keys(j5).map(e=>j5[e]),Object.keys(j5),[]);function sNt(e,t,n){let i=[];for(let r=e.firstChild,s=t;;r=r.nextSibling){let a=r?r.from:n;if(a>s&&i.push({from:s,to:a}),!r)break;s=r.to}return i}function aNt(e){let{codeParser:t,htmlParser:n}=e;return{wrap:kTe((r,s)=>{let a=r.type.id;if(t&&(a==Nt.CodeBlock||a==Nt.FencedCode)){let l="";if(a==Nt.FencedCode){let u=r.node.getChild(Nt.CodeInfo);u&&(l=s.read(u.from,u.to))}let c=t(l);if(c)return{parser:c,overlay:u=>u.type.id==Nt.CodeText,bracketed:a==Nt.FencedCode}}else if(n&&(a==Nt.HTMLBlock||a==Nt.HTMLTag||a==Nt.CommentBlock))return{parser:n,overlay:sNt(r.node,r.from,r.to)};return null})}}const oNt={resolve:"Strikethrough",mark:"StrikethroughMark"},lNt={defineNodes:[{name:"Strikethrough",style:{"Strikethrough/...":ne.strikethrough}},{name:"StrikethroughMark",style:ne.processingInstruction}],parseInline:[{name:"Strikethrough",parse(e,t,n){if(t!=126||e.char(n+1)!=126||e.char(n+2)==126)return-1;let i=e.slice(n-1,n),r=e.slice(n+2,n+3),s=/\s|^$/.test(i),a=/\s|^$/.test(r),l=hk.test(i),c=hk.test(r);return e.addDelimiter(oNt,n,n+2,!a&&(!c||s||l),!s&&(!l||a||c))},after:"Emphasis"}]};function HO(e,t,n=0,i,r=0){let s=0,a=!0,l=-1,c=-1,u=!1,d=()=>{i.push(e.elt("TableCell",r+l,r+c,e.parser.parseInline(t.slice(l,c),r+l)))};for(let f=n;f-1)&&s++,a=!1,i&&(l>-1&&d(),i.push(e.elt("TableDelimiter",f+r,f+r+1))),l=c=-1):(u||h!=32&&h!=9)&&(l<0&&(l=f),c=f+1),u=!u&&h==92}return l>-1&&(s++,i&&d()),s}function ZJ(e,t){for(let n=t;n\s]*\|?(\s*:?-+:?\s*\|)+(\s*:?-+:?\s*)?$/;class JJ{constructor(){this.rows=null}nextLine(t,n,i){if(this.rows==null){this.rows=!1;let r;if((n.next==45||n.next==58||n.next==124)&&u_e.test(r=n.text.slice(n.pos))){let s=[];HO(t,i.content,0,s,i.start)==HO(t,r,0)&&(this.rows=[t.elt("TableHeader",i.start,i.start+i.content.length,s),t.elt("TableDelimiter",t.lineStart+n.pos,t.lineStart+n.text.length)])}}else if(this.rows){let r=[];HO(t,n.text,n.pos,r,t.lineStart),this.rows.push(t.elt("TableRow",t.lineStart+n.pos,t.lineStart+n.text.length,r))}return!1}finish(t,n){return this.rows?(t.addLeafElement(n,t.elt("Table",n.start,n.start+n.content.length,this.rows)),!0):!1}}const cNt={defineNodes:[{name:"Table",block:!0},{name:"TableHeader",style:{"TableHeader/...":ne.heading}},"TableRow",{name:"TableCell",style:ne.content},{name:"TableDelimiter",style:ne.processingInstruction}],parseBlock:[{name:"Table",leaf(e,t){return ZJ(t.content,0)?new JJ:null},endLeaf(e,t,n){if(n.parsers.some(r=>r instanceof JJ)||!ZJ(t.text,t.basePos))return!1;let i=e.peekLine();return u_e.test(i)&&HO(e,t.text,t.basePos)==HO(e,i,t.basePos)},before:"SetextHeading"}]};class uNt{nextLine(){return!1}finish(t,n){return t.addLeafElement(n,t.elt("Task",n.start,n.start+n.content.length,[t.elt("TaskMarker",n.start,n.start+3),...t.parser.parseInline(n.content.slice(3),n.start+3)])),!0}}const dNt={defineNodes:[{name:"Task",block:!0,style:ne.list},{name:"TaskMarker",style:ne.atom}],parseBlock:[{name:"TaskList",leaf(e,t){return/^\[[ xX]\][ \t]/.test(t.content)&&e.parentType().name=="ListItem"?new uNt:null},after:"SetextHeading"}]},eee=/(www\.)|(https?:\/\/)|([\w.+-]{1,100}@)|(mailto:|xmpp:)/gy,tee=/[\w-]+(\.[\w-]+)+(:\d+)?(\/[^\s<]*)?/gy,fNt=/[\w-]+\.[\w-]+($|[/:])/,nee=/[\w.+-]+@[\w-]+(\.[\w.-]+)+/gy,iee=/\/[a-zA-Z\d@.]+/gy;function ree(e,t,n,i){let r=0;for(let s=t;s-1)return-1;let i=t+n[0].length;for(;;){let r=e[i-1],s;if(/[?!.,:*_~]/.test(r)||r==")"&&ree(e,t,i,")")>ree(e,t,i,"("))i--;else if(r==";"&&(s=/&(?:#\d+|#x[a-f\d]+|\w+);$/.exec(e.slice(t,i))))i=t+s.index;else break}return i}function see(e,t){nee.lastIndex=t;let n=nee.exec(e);if(!n)return-1;let i=n[0][n[0].length-1];return i=="_"||i=="-"?-1:t+n[0].length-(i=="."?1:0)}const pNt={parseInline:[{name:"Autolink",parse(e,t,n){let i=n-e.offset;if(i&&/\w/.test(e.text[i-1]))return-1;eee.lastIndex=i;let r=eee.exec(e.text),s=-1;if(!r)return-1;if(r[1]||r[2]){if(s=hNt(e.text,i+r[0].length),s>-1&&e.hasOpenLink){let a=/([^\[\]]|\[[^\]]*\])*/.exec(e.text.slice(i,s));s=i+a[0].length}}else r[3]?s=see(e.text,i):(s=see(e.text,i+r[0].length),s>-1&&r[0]=="xmpp:"&&(iee.lastIndex=s,r=iee.exec(e.text),r&&(s=r.index+r[0].length)));return s<0?-1:(e.addElement(e.elt("URL",n,s+e.offset)),s+e.offset)}}]},mNt=[cNt,dNt,lNt,pNt];function d_e(e,t,n){return(i,r,s)=>{if(r!=e||i.char(s+1)==e)return-1;let a=[i.elt(n,s,s+1)];for(let l=s+1;l=65&&e<=90||e==95||e>=97&&e<=122||e>=161}let cee=null,uee=null,dee=0;function s8(e,t){let n=e.pos+t;if(dee==n&&uee==e)return cee;let i=e.peek(t),r="";for(;QNt(i);)r+=String.fromCharCode(i),i=e.peek(++t);return uee=e,dee=n,cee=r?r.toLowerCase():i==zNt||i==VNt?void 0:null}const v_e=60,YN=62,NQ=47,zNt=63,VNt=33,HNt=45;function fee(e,t){this.name=e,this.parent=t}const qNt=[_Q,m_e,f_e,h_e,p_e],WNt=new _I({start:null,shift(e,t,n,i){return qNt.indexOf(t)>-1?new fee(s8(i,1)||"",e):e},reduce(e,t){return t==g_e&&e?e.parent:e},reuse(e,t,n,i){let r=t.type.id;return r==_Q||r==MNt?new fee(s8(i,1)||"",e):e},strict:!1}),GNt=new zs((e,t)=>{if(e.next!=v_e){e.next<0&&t.context&&e.acceptToken(R5);return}e.advance();let n=e.next==NQ;n&&e.advance();let i=s8(e,0);if(i===void 0)return;if(!i)return e.acceptToken(n?NNt:_Nt);let r=t.context?t.context.name:null;if(n){if(i==r)return e.acceptToken(CNt);if(r&&UNt[r])return e.acceptToken(R5,-2);if(t.dialectEnabled($Nt))return e.acceptToken(TNt);for(let s=t.context;s;s=s.parent)if(s.name==i)return;e.acceptToken(ANt)}else{if(i=="script")return e.acceptToken(f_e);if(i=="style")return e.acceptToken(h_e);if(i=="textarea")return e.acceptToken(p_e);if(BNt.hasOwnProperty(i))return e.acceptToken(m_e);r&&lee[r]&&lee[r][i]?e.acceptToken(R5,-1):e.acceptToken(_Q)}},{contextual:!0}),KNt=new zs(e=>{for(let t=0,n=0;;n++){if(e.next<0){n&&e.acceptToken(oee);break}if(e.next==HNt)t++;else if(e.next==YN&&t>=2){n>=3&&e.acceptToken(oee,-2);break}else t=0;e.advance()}});function XNt(e){for(;e;e=e.parent)if(e.name=="svg"||e.name=="math")return!0;return!1}const YNt=new zs((e,t)=>{if(e.next==NQ&&e.peek(1)==YN){let n=t.dialectEnabled(FNt)||XNt(t.context);e.acceptToken(n?ENt:aee,2)}else e.next==YN&&e.acceptToken(aee,1)});function jQ(e,t,n){let i=2+e.length;return new zs(r=>{for(let s=0,a=0,l=0;;l++){if(r.next<0){l&&r.acceptToken(t);break}if(s==0&&r.next==v_e||s==1&&r.next==NQ||s>=2&&sa?r.acceptToken(t,-a):r.acceptToken(n,-(a-2));break}else if((r.next==10||r.next==13)&&l){r.acceptToken(t,1);break}else s=a=0;r.advance()}})}const ZNt=jQ("script",vNt,xNt),JNt=jQ("style",wNt,ONt),ejt=jQ("textarea",SNt,kNt),tjt=Vh({"Text RawText IncompleteTag IncompleteCloseTag":ne.content,"StartTag StartCloseTag SelfClosingEndTag EndTag":ne.angleBracket,TagName:ne.tagName,"MismatchedCloseTag/TagName":[ne.tagName,ne.invalid],AttributeName:ne.attributeName,"AttributeValue UnquotedAttributeValue":ne.attributeValue,Is:ne.definitionOperator,"EntityReference CharacterReference":ne.character,Comment:ne.blockComment,ProcessingInst:ne.processingInstruction,DoctypeDecl:ne.documentMeta}),njt=Rh.deserialize({version:14,states:",xOVO!rOOO!ZQ#tO'#CrO!`Q#tO'#C{O!eQ#tO'#DOO!jQ#tO'#DRO!oQ#tO'#DTO!tOaO'#CqO#PObO'#CqO#[OdO'#CqO$kO!rO'#CqOOO`'#Cq'#CqO$rO$fO'#DUO$zQ#tO'#DWO%PQ#tO'#DXOOO`'#Dl'#DlOOO`'#DZ'#DZQVO!rOOO%UQ&rO,59^O%aQ&rO,59gO%lQ&rO,59jO%wQ&rO,59mO&SQ&rO,59oOOOa'#D_'#D_O&_OaO'#CyO&jOaO,59]OOOb'#D`'#D`O&rObO'#C|O&}ObO,59]OOOd'#Da'#DaO'VOdO'#DPO'bOdO,59]OOO`'#Db'#DbO'jO!rO,59]O'qQ#tO'#DSOOO`,59],59]OOOp'#Dc'#DcO'vO$fO,59pOOO`,59p,59pO(OQ#|O,59rO(TQ#|O,59sOOO`-E7X-E7XO(YQ&rO'#CtOOQW'#D['#D[O(hQ&rO1G.xOOOa1G.x1G.xOOO`1G/Z1G/ZO(sQ&rO1G/ROOOb1G/R1G/RO)OQ&rO1G/UOOOd1G/U1G/UO)ZQ&rO1G/XOOO`1G/X1G/XO)fQ&rO1G/ZOOOa-E7]-E7]O)qQ#tO'#CzOOO`1G.w1G.wOOOb-E7^-E7^O)vQ#tO'#C}OOOd-E7_-E7_O){Q#tO'#DQOOO`-E7`-E7`O*QQ#|O,59nOOOp-E7a-E7aOOO`1G/[1G/[OOO`1G/^1G/^OOO`1G/_1G/_O*VQ,UO,59`OOQW-E7Y-E7YOOOa7+$d7+$dOOO`7+$u7+$uOOOb7+$m7+$mOOOd7+$p7+$pOOO`7+$s7+$sO*bQ#|O,59fO*gQ#|O,59iO*lQ#|O,59lOOO`1G/Y1G/YO*qO7[O'#CwO+SOMhO'#CwOOQW1G.z1G.zOOO`1G/Q1G/QOOO`1G/T1G/TOOO`1G/W1G/WOOOO'#D]'#D]O+eO7[O,59cOOQW,59c,59cOOOO'#D^'#D^O+vOMhO,59cOOOO-E7Z-E7ZOOQW1G.}1G.}OOOO-E7[-E7[",stateData:",c~O!_OS~OUSOVPOWQOXROYTO[]O][O^^O_^Oa^Ob^Oc^Od^Oy^O|_O!eZO~OgaO~OgbO~OgcO~OgdO~OgeO~O!XfOPmP![mP~O!YiOQpP![pP~O!ZlORsP![sP~OUSOVPOWQOXROYTOZqO[]O][O^^O_^Oa^Ob^Oc^Od^Oy^O!eZO~O![rO~P#gO!]sO!fuO~OgvO~OgwO~OS|OT}OiyO~OS!POT}OiyO~OS!ROT}OiyO~OS!TOT}OiyO~OS}OT}OiyO~O!XfOPmX![mX~OP!WO![!XO~O!YiOQpX![pX~OQ!ZO![!XO~O!ZlORsX![sX~OR!]O![!XO~O![!XO~P#gOg!_O~O!]sO!f!aO~OS!bO~OS!cO~Oj!dOShXThXihX~OS!fOT!gOiyO~OS!hOT!gOiyO~OS!iOT!gOiyO~OS!jOT!gOiyO~OS!gOT!gOiyO~Og!kO~Og!lO~Og!mO~OS!nO~Ol!qO!a!oO!c!pO~OS!rO~OS!sO~OS!tO~Ob!uOc!uOd!uO!a!wO!b!uO~Ob!xOc!xOd!xO!c!wO!d!xO~Ob!uOc!uOd!uO!a!{O!b!uO~Ob!xOc!xOd!xO!c!{O!d!xO~OT~cbd!ey|!e~",goto:"%q!aPPPPPPPPPPPPPPPPPPPPP!b!hP!nPP!zP!}#Q#T#Z#^#a#g#j#m#s#y!bP!b!bP$P$V$m$s$y%P%V%]%cPPPPPPPP%iX^OX`pXUOX`pezabcde{!O!Q!S!UR!q!dRhUR!XhXVOX`pRkVR!XkXWOX`pRnWR!XnXXOX`pQrXR!XpXYOX`pQ`ORx`Q{aQ!ObQ!QcQ!SdQ!UeZ!e{!O!Q!S!UQ!v!oR!z!vQ!y!pR!|!yQgUR!VgQjVR!YjQmWR![mQpXR!^pQtZR!`tS_O`ToXp",nodeNames:"⚠ StartCloseTag StartCloseTag StartCloseTag EndTag SelfClosingEndTag StartTag StartTag StartTag StartTag StartTag StartCloseTag StartCloseTag StartCloseTag IncompleteTag IncompleteCloseTag Document Text EntityReference CharacterReference InvalidEntity Element OpenTag TagName Attribute AttributeName Is AttributeValue UnquotedAttributeValue ScriptText CloseTag OpenTag StyleText CloseTag OpenTag TextareaText CloseTag OpenTag CloseTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag CloseTag DoctypeDecl",maxTerm:68,context:WNt,nodeProps:[["closedBy",-10,1,2,3,7,8,9,10,11,12,13,"EndTag",6,"EndTag SelfClosingEndTag",-4,22,31,34,37,"CloseTag"],["openedBy",4,"StartTag StartCloseTag",5,"StartTag",-4,30,33,36,38,"OpenTag"],["group",-10,14,15,18,19,20,21,40,41,42,43,"Entity",17,"Entity TextContent",-3,29,32,35,"TextContent Entity"],["isolate",-11,22,30,31,33,34,36,37,38,39,42,43,"ltr",-3,27,28,40,""]],propSources:[tjt],skippedNodes:[0],repeatNodeCount:9,tokenData:"!]tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^/^!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!Z5zblWOX5uXZ7SZ[5u[^7S^p5uqr5urs7Sst+Ptw5uwx7Sx!]5u!]!^7w!^!a7S!a#S5u#S#T7S#T;'S5u;'S;=`8n<%lO5u!R7VVOp7Sqs7St!]7S!]!^7l!^;'S7S;'S;=`7q<%lO7S!R7qOb!R!R7tP;=`<%l7S!Z8OYlWb!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!Z8qP;=`<%l5u!_8{iiSlWOX5uXZ7SZ[5u[^7S^p5uqr8trs7Sst/^tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^:j!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!_:sbiSlWb!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VP<%l?Ah;{?Ah?BY7S?BY?Mn;{?MnO7S!V=dXiSb!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!V>SP;=`<%l;{!_>YP;=`<%l8t!_>dhiSlWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^/^!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!Z@TalWOX@OXZAYZ[@O[^AY^p@Oqr@OrsAYsw@OwxAYx!]@O!]!^Az!^!aAY!a#S@O#S#TAY#T;'S@O;'S;=`Bq<%lO@O!RA]UOpAYq!]AY!]!^Ao!^;'SAY;'S;=`At<%lOAY!RAtOc!R!RAwP;=`<%lAY!ZBRYlWc!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!ZBtP;=`<%l@O!_COhiSlWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^Dj!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!_DsbiSlWc!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VFQbiSOpAYqrE{rsAYswE{wxAYx!PE{!P!QAY!Q!]E{!]!^GY!^!aAY!a#sE{#s$fAY$f;'SE{;'S;=`G|<%l?AhE{?Ah?BYAY?BY?MnE{?MnOAY!VGaXiSc!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!VHPP;=`<%lE{!_HVP;=`<%lBw!ZHcW!cxaP!b`Or(trs'ksv(tw!^(t!^!_)e!_;'S(t;'S;=`*P<%lO(t!aIYliSaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OKQ!O!P-_!P!Q$q!Q!^-_!^!_*V!_!a&X!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!aK_kiSaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx!P-_!P!Q$q!Q!^-_!^!_*V!_!`&X!`!aMS!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!TM_XaP!b`!dp!fQOr&Xrs&}sv&Xwx(tx!^&X!^!_*V!_;'S&X;'S;=`*y<%lO&X!aNZ!ZiSgQaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OMz!O!PMz!P!Q$q!Q![Mz![!]Mz!]!^-_!^!_*V!_!a&X!a!c-_!c!}Mz!}#R-_#R#SMz#S#T1k#T#oMz#o#s-_#s$f$q$f$}-_$}%OMz%O%W-_%W%oMz%o%p-_%p&aMz&a&b-_&b1pMz1p4UMz4U4dMz4d4e-_4e$ISMz$IS$I`-_$I`$IbMz$Ib$Je-_$Je$JgMz$Jg$Kh-_$Kh%#tMz%#t&/x-_&/x&EtMz&Et&FV-_&FV;'SMz;'S;:j!#|;:j;=`3X<%l?&r-_?&r?AhMz?Ah?BY$q?BY?MnMz?MnO$q!a!$PP;=`<%lMz!R!$ZY!b`!dpOq*Vqr!$yrs(Vsv*Vwx)ex!a*V!a!b!4t!b;'S*V;'S;=`*s<%lO*V!R!%Q]!b`!dpOr*Vrs(Vsv*Vwx)ex}*V}!O!%y!O!f*V!f!g!']!g#W*V#W#X!0`#X;'S*V;'S;=`*s<%lO*V!R!&QX!b`!dpOr*Vrs(Vsv*Vwx)ex}*V}!O!&m!O;'S*V;'S;=`*s<%lO*V!R!&vV!b`!dp!ePOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!'dX!b`!dpOr*Vrs(Vsv*Vwx)ex!q*V!q!r!(P!r;'S*V;'S;=`*s<%lO*V!R!(WX!b`!dpOr*Vrs(Vsv*Vwx)ex!e*V!e!f!(s!f;'S*V;'S;=`*s<%lO*V!R!(zX!b`!dpOr*Vrs(Vsv*Vwx)ex!v*V!v!w!)g!w;'S*V;'S;=`*s<%lO*V!R!)nX!b`!dpOr*Vrs(Vsv*Vwx)ex!{*V!{!|!*Z!|;'S*V;'S;=`*s<%lO*V!R!*bX!b`!dpOr*Vrs(Vsv*Vwx)ex!r*V!r!s!*}!s;'S*V;'S;=`*s<%lO*V!R!+UX!b`!dpOr*Vrs(Vsv*Vwx)ex!g*V!g!h!+q!h;'S*V;'S;=`*s<%lO*V!R!+xY!b`!dpOr!+qrs!,hsv!+qvw!-Swx!.[x!`!+q!`!a!/j!a;'S!+q;'S;=`!0Y<%lO!+qq!,mV!dpOv!,hvx!-Sx!`!,h!`!a!-q!a;'S!,h;'S;=`!.U<%lO!,hP!-VTO!`!-S!`!a!-f!a;'S!-S;'S;=`!-k<%lO!-SP!-kO|PP!-nP;=`<%l!-Sq!-xS!dp|POv(Vx;'S(V;'S;=`(h<%lO(Vq!.XP;=`<%l!,ha!.aX!b`Or!.[rs!-Ssv!.[vw!-Sw!`!.[!`!a!.|!a;'S!.[;'S;=`!/d<%lO!.[a!/TT!b`|POr)esv)ew;'S)e;'S;=`)y<%lO)ea!/gP;=`<%l!.[!R!/sV!b`!dp|POr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!0]P;=`<%l!+q!R!0gX!b`!dpOr*Vrs(Vsv*Vwx)ex#c*V#c#d!1S#d;'S*V;'S;=`*s<%lO*V!R!1ZX!b`!dpOr*Vrs(Vsv*Vwx)ex#V*V#V#W!1v#W;'S*V;'S;=`*s<%lO*V!R!1}X!b`!dpOr*Vrs(Vsv*Vwx)ex#h*V#h#i!2j#i;'S*V;'S;=`*s<%lO*V!R!2qX!b`!dpOr*Vrs(Vsv*Vwx)ex#m*V#m#n!3^#n;'S*V;'S;=`*s<%lO*V!R!3eX!b`!dpOr*Vrs(Vsv*Vwx)ex#d*V#d#e!4Q#e;'S*V;'S;=`*s<%lO*V!R!4XX!b`!dpOr*Vrs(Vsv*Vwx)ex#X*V#X#Y!+q#Y;'S*V;'S;=`*s<%lO*V!R!4{Y!b`!dpOr!4trs!5ksv!4tvw!6Vwx!8]x!a!4t!a!b!:]!b;'S!4t;'S;=`!;r<%lO!4tq!5pV!dpOv!5kvx!6Vx!a!5k!a!b!7W!b;'S!5k;'S;=`!8V<%lO!5kP!6YTO!a!6V!a!b!6i!b;'S!6V;'S;=`!7Q<%lO!6VP!6lTO!`!6V!`!a!6{!a;'S!6V;'S;=`!7Q<%lO!6VP!7QOyPP!7TP;=`<%l!6Vq!7]V!dpOv!5kvx!6Vx!`!5k!`!a!7r!a;'S!5k;'S;=`!8V<%lO!5kq!7yS!dpyPOv(Vx;'S(V;'S;=`(h<%lO(Vq!8YP;=`<%l!5ka!8bX!b`Or!8]rs!6Vsv!8]vw!6Vw!a!8]!a!b!8}!b;'S!8];'S;=`!:V<%lO!8]a!9SX!b`Or!8]rs!6Vsv!8]vw!6Vw!`!8]!`!a!9o!a;'S!8];'S;=`!:V<%lO!8]a!9vT!b`yPOr)esv)ew;'S)e;'S;=`)y<%lO)ea!:YP;=`<%l!8]!R!:dY!b`!dpOr!4trs!5ksv!4tvw!6Vwx!8]x!`!4t!`!a!;S!a;'S!4t;'S;=`!;r<%lO!4t!R!;]V!b`!dpyPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!;uP;=`<%l!4t!V!{let u=l.type.id;if(u==INt)return I5(l,c,n);if(u==PNt)return I5(l,c,i);if(u==DNt)return I5(l,c,r);if(u==g_e&&s.length){let d=l.node,f=d.firstChild,h=f&&hee(f,c),m;if(h){for(let g of s)if(g.tag==h&&(!g.attrs||g.attrs(m||(m=x_e(f,c))))){let b=d.lastChild,v=b.type.id==LNt?b.from:d.to;if(v>f.to)return{parser:g.parser,overlay:[{from:f.to,to:v}]}}}}if(a&&u==b_e){let d=l.node,f;if(f=d.firstChild){let h=a[c.read(f.from,f.to)];if(h)for(let m of h){if(m.tagName&&m.tagName!=hee(d.parent,c))continue;let g=d.lastChild;if(g.type.id==r8){let b=g.from+1,v=g.lastChild,y=g.to-(v&&v.isError?0:1);if(y>b)return{parser:m.parser,overlay:[{from:b,to:y}],bracketed:!0}}else if(g.type.id==y_e)return{parser:m.parser,overlay:[{from:g.from,to:g.to}]}}}}return null})}const ijt=145,pee=1,rjt=146,sjt=147,O_e=2,ajt=148,ojt=3,ljt=4,S_e=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],cjt=58,ujt=40,k_e=95,djt=91,MA=45,fjt=46,hjt=35,pjt=37,mjt=38,gjt=92,bjt=10,yjt=42;function pk(e){return e>=65&&e<=90||e>=97&&e<=122||e>=161}function RQ(e){return e>=48&&e<=57}function mee(e){return RQ(e)||e>=97&&e<=102||e>=65&&e<=70}const E_e=(e,t,n)=>(i,r)=>{for(let s=!1,a=0,l=0;;l++){let{next:c}=i;if(pk(c)||c==MA||c==k_e||s&&RQ(c))!s&&(c!=MA||l>0)&&(s=!0),a===l&&c==MA&&a++,i.advance();else if(c==gjt&&i.peek(1)!=bjt){if(i.advance(),mee(i.next)){do i.advance();while(mee(i.next));i.next==32&&i.advance()}else i.next>-1&&i.advance();s=!0}else{s&&i.acceptToken(a==2&&r.canShift(O_e)?t:c==ujt?n:e);break}}},vjt=new zs(E_e(rjt,O_e,sjt),{contextual:!0}),xjt=new zs(E_e(ajt,ojt,ljt),{contextual:!0}),wjt=new zs(e=>{if(S_e.includes(e.peek(-1))){let{next:t}=e;(pk(t)||t==k_e||t==hjt||t==fjt||t==yjt||t==djt||t==cjt&&pk(e.peek(1))||t==MA||t==mjt)&&e.acceptToken(ijt)}}),Ojt=new zs(e=>{if(!S_e.includes(e.peek(-1))){let{next:t}=e;if(t==pjt&&(e.advance(),e.acceptToken(pee)),pk(t)){do e.advance();while(pk(e.next)||RQ(e.next));e.acceptToken(pee)}}}),Sjt=Vh({"AtKeyword import charset namespace keyframes media supports font-feature-values":ne.definitionKeyword,"from to selector scope MatchFlag":ne.keyword,NamespaceName:ne.namespace,KeyframeName:ne.labelName,KeyframeRangeName:ne.operatorKeyword,TagName:ne.tagName,ClassName:ne.className,PseudoClassName:ne.constant(ne.className),IdName:ne.labelName,"FeatureName PropertyName":ne.propertyName,AttributeName:ne.attributeName,NumberLiteral:ne.number,KeywordQuery:ne.keyword,UnaryQueryOp:ne.operatorKeyword,"CallTag ValueName FontName":ne.atom,VariableName:ne.variableName,Callee:ne.operatorKeyword,Unit:ne.unit,"UniversalSelector NestingSelector":ne.definitionOperator,"MatchOp CompareOp":ne.compareOperator,"ChildOp SiblingOp, LogicOp":ne.logicOperator,BinOp:ne.arithmeticOperator,Important:ne.modifier,Comment:ne.blockComment,ColorLiteral:ne.color,"ParenthesizedContent StringLiteral":ne.string,":":ne.punctuation,"PseudoOp #":ne.derefOperator,"; , |":ne.separator,"( )":ne.paren,"[ ]":ne.squareBracket,"{ }":ne.brace}),kjt={__proto__:null,lang:44,"nth-child":44,"nth-last-child":44,"nth-of-type":44,"nth-last-of-type":44,dir:44,"host-context":44,if:90,url:152,"url-prefix":152,domain:152,regexp:152},Ejt={__proto__:null,or:104,and:104,not:112,only:112,layer:206},Cjt={__proto__:null,selector:118,style:124,layer:202},Tjt={__proto__:null,"@import":198,"@media":210,"@charset":214,"@namespace":218,"@keyframes":224,"@supports":236,"@scope":240,"@font-feature-values":246},Ajt={__proto__:null,to:243},_jt=Rh.deserialize({version:14,states:"MlQYQdOOO#}QdOOP$UO`OOO%OQaO'#CfOOQP'#Ce'#CeO%VQdO'#CgO%[Q`O'#CgO%aQaO'#FnO&XQdO'#CkO&xQaO'#CcO'SQdO'#CnO'_QdO'#EOO'dQdO'#EQO'oQdO'#EXO'oQdO'#E[OOQP'#Fn'#FnO)RQhO'#E}OOQS'#Fm'#FmOOQS'#FQ'#FQQYQdOOO)YQdO'#EbO*iQhO'#EhO)YQdO'#EjO*pQdO'#ElO*{QdO'#EoO)}QhO'#EuO+TQdO'#EwO+`QdO'#EzO+eQaO'#CfO+lQ`O'#E_O+qQ`O'#F{O+|QdO'#F{QOQ`OOP,WO&jO'#CaPOOO)CA])CA]OOQP'#Ci'#CiOOQP,59R,59RO%VQdO,59ROOQP'#Cm'#CmOOQP,59V,59VO&XQdO,59VO,cQdO,59YO'_QdO,5:jO'dQdO,5:lO'oQdO,5:sO'oQdO,5:uO'oQdO,5:vO'oQdO'#FXO,nQ`O,58}O,vQdO'#E^OOQS,58},58}OOQP'#Cq'#CqOOQO'#D|'#D|OOQP,59Y,59YO,}Q`O,59YO-SQ`O,59YOOQP'#EP'#EPOOQP,5:j,5:jO-XQpO'#ERO-dQdO'#ESO-iQ`O'#ESO-nQpO,5:lO.XQaO,5:sO.oQaO,5:vOOQW'#D^'#D^O/nQhO'#DgO0RQhO,5;iO)}QhO'#DeO0`Q`O'#DnO0eQhO'#DxOOQW'#Ft'#FtOOQS,5;i,5;iO0jQ`O'#DhO0oQ`O'#DkOOQS-E9O-E9OOOQ['#Cv'#CvO0tQdO'#CwO1[QdO'#C}O1rQdO'#DQO2YQ!pO'#DSO4fQ!jO,5:|OOQO'#DX'#DXO-SQ`O'#DWO4vQ!nO'#FqO6|Q`O'#DYO7RQ`O'#DyOOQ['#Fq'#FqO7WQhO'#GOO7fQ`O,5;SO7kQ!bO,5;UOOQS'#En'#EnO7sQ`O,5;WO7xQdO,5;WOOQO'#Eq'#EqO8QQ`O,5;ZO8VQhO,5;aO'oQdO'#DjOOQS,5;c,5;cO0jQ`O,5;cO8_QdO,5;cOOQS'#F`'#F`O8gQdO'#E|O7fQ`O,5;fO8oQdO,5:yO9PQdO'#FZO9^Q`O,5lQhO'#DoOOQW,5:Y,5:YOOQW,5:d,5:dOOQW,5:S,5:SO>vQhO,5:VO?bQ!fO'#FrOOQS'#Fr'#FrOOQS'#FS'#FSO@rQdO,59cOOQ[,59c,59cOAYQdO,59iOOQ[,59i,59iOApQdO,59lOOQ[,59l,59lOOQ[,59n,59nO)YQdO,59pOBWQhO'#EdOOQW'#Ed'#EdOBuQ`O1G0hO4oQhO1G0hOOQ[,59r,59rO)}QhO'#D[OOQ[,59t,59tOBzQ#tO,5:eOCVQhO'#F]OCdQ`O,5vQhO'#DmOI_QhO'#DqOIgQhO'#DsOIlQhO'#FwOOQO'#Fw'#FwOItQ!bO'#DwOOQO'#Fy'#FyOOQO'#Fv'#FvOIyQ`O1G/qOOQS-E9Q-E9QOOQ[1G.}1G.}OOQ[1G/T1G/TOOQ[1G/W1G/WOOQ[1G/[1G/[OJOQdO,5;OOOQS7+&S7+&SOJTQ`O7+&SOJYQhO'#D]OJbQ`O,59vO)}QhO,59vOOQ[1G0P1G0POJjQ`O1G0POJoQhO,5;wOOQO-E9Z-E9ZOOQS7+&^7+&^OJ}QbO'#DSOOQO'#Et'#EtOK]Q`O'#EsOOQO'#Es'#EsOKhQ`O'#F^OKpQdO,5;^OOQS,5;^,5;^OOQ[1G/p1G/pOOQS7+&i7+&iO7fQ`O7+&iOK{Q!fO'#FYO)YQdO'#FYOMSQdO7+&POOQO7+&P7+&POOQO,5:{,5:{OOQO1G1a1G1aOMgQ!bO<vQhO'#DrOOQO,5:],5:]O! hQhO,5:_OGUQhO,5:cOOQW7+%]7+%]OOQO'#Ef'#EfO! pQ`O1G0jOOQS<xAN>xO!#zQ`OAN>xO!$PQaO,5;rOOQO-E9U-E9UO!$ZQdO,5;qOOQO-E9T-E9TOOQW<vQhO'#DuOOQO1G/y1G/yO!%vQ!bO1G/}OJOQdO'#F[O!&OQ`O7+&UOOQW7+&U7+&UO!&WQ!bO1G/cOOQ[7+$|7+$|O!&cQhO7+$|P!&jQ`O'#FTOOQO,5;y,5;yOOQO-E9]-E9]OOQS1G1d1G1dOOQPG24dG24dO!&oQ`OAN>ZO)YQdO1G1[O!&tQ`O7+'jOOQO1G/x1G/xO!&|Q`O,5:aO!$eQhO7+%iOOQO,5;v,5;vOOQO-E9Y-E9YOOQW<Q!]!^>|!^!_?_!_!`@Z!`!a@n!a!b%Z!b!cAo!c!k%Z!k!lC|!l!u%Z!u!vC|!v!}%Z!}#OD_#O#P%Z#P#QDp#Q#R2X#R#]%Z#]#^ER#^#g%Z#g#hC|#h#o%Z#o#pIf#p#qIw#q#rJ`#r#sJq#s#y%Z#y#z&R#z$f%Z$f$g&R$g#BY%Z#BY#BZ&R#BZ$IS%Z$IS$I_&R$I_$I|%Z$I|$JO&R$JO$JT%Z$JT$JU&R$JU$KV%Z$KV$KW&R$KW&FU%Z&FU&FV&R&FV;'S%Z;'S;=`KY<%lO%Z`%^SOy%jz;'S%j;'S;=`%{<%lO%j`%oS!o`Oy%jz;'S%j;'S;=`%{<%lO%j`&OP;=`<%l%j~&Wh$[~OX%jX^'r^p%jpq'rqy%jz#y%j#y#z'r#z$f%j$f$g'r$g#BY%j#BY#BZ'r#BZ$IS%j$IS$I_'r$I_$I|%j$I|$JO'r$JO$JT%j$JT$JU'r$JU$KV%j$KV$KW'r$KW&FU%j&FU&FV'r&FV;'S%j;'S;=`%{<%lO%j~'yh$[~!o`OX%jX^'r^p%jpq'rqy%jz#y%j#y#z'r#z$f%j$f$g'r$g#BY%j#BY#BZ'r#BZ$IS%j$IS$I_'r$I_$I|%j$I|$JO'r$JO$JT%j$JT$JU'r$JU$KV%j$KV$KW'r$KW&FU%j&FU&FV'r&FV;'S%j;'S;=`%{<%lO%jj)jS$qYOy%jz;'S%j;'S;=`%{<%lO%j~)yWOY)vZr)vrs*cs#O)v#O#P*h#P;'S)v;'S;=`+d<%lO)v~*hOw~~*kRO;'S)v;'S;=`*t;=`O)v~*wXOY)vZr)vrs*cs#O)v#O#P*h#P;'S)v;'S;=`+d;=`<%l)v<%lO)v~+gP;=`<%l)vj+oYmYOy%jz!Q%j!Q![,_![!c%j!c!i,_!i#T%j#T#Z,_#Z;'S%j;'S;=`%{<%lO%jj,dY!o`Oy%jz!Q%j!Q![-S![!c%j!c!i-S!i#T%j#T#Z-S#Z;'S%j;'S;=`%{<%lO%jj-XY!o`Oy%jz!Q%j!Q![-w![!c%j!c!i-w!i#T%j#T#Z-w#Z;'S%j;'S;=`%{<%lO%jj.OYuY!o`Oy%jz!Q%j!Q![.n![!c%j!c!i.n!i#T%j#T#Z.n#Z;'S%j;'S;=`%{<%lO%jj.uYuY!o`Oy%jz!Q%j!Q![/e![!c%j!c!i/e!i#T%j#T#Z/e#Z;'S%j;'S;=`%{<%lO%jj/jY!o`Oy%jz!Q%j!Q![0Y![!c%j!c!i0Y!i#T%j#T#Z0Y#Z;'S%j;'S;=`%{<%lO%jj0aYuY!o`Oy%jz!Q%j!Q![1P![!c%j!c!i1P!i#T%j#T#Z1P#Z;'S%j;'S;=`%{<%lO%jj1UY!o`Oy%jz!Q%j!Q![1t![!c%j!c!i1t!i#T%j#T#Z1t#Z;'S%j;'S;=`%{<%lO%jj1{SuY!o`Oy%jz;'S%j;'S;=`%{<%lO%jd2[UOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jd2uS!yS!o`Oy%jz;'S%j;'S;=`%{<%lO%jb3WS^QOy%jz;'S%j;'S;=`%{<%lO%j~3gWOY3dZw3dwx*cx#O3d#O#P4P#P;'S3d;'S;=`4{<%lO3d~4SRO;'S3d;'S;=`4];=`O3d~4`XOY3dZw3dwx*cx#O3d#O#P4P#P;'S3d;'S;=`4{;=`<%l3d<%lO3d~5OP;=`<%l3dj5WShYOy%jz;'S%j;'S;=`%{<%lO%j~5iOg~n5pUWQyWOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jj6ZWyW#PQOy%jz!O%j!O!P6s!P!Q%j!Q![9x![;'S%j;'S;=`%{<%lO%jj6xU!o`Oy%jz!Q%j!Q![7[![;'S%j;'S;=`%{<%lO%jj7cY!o`$gYOy%jz!Q%j!Q![7[![!g%j!g!h8R!h#X%j#X#Y8R#Y;'S%j;'S;=`%{<%lO%jj8WY!o`Oy%jz{%j{|8v|}%j}!O8v!O!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj8{U!o`Oy%jz!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj9fU!o`$gYOy%jz!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj:P[!o`$gYOy%jz!O%j!O!P7[!P!Q%j!Q![9x![!g%j!g!h8R!h#X%j#X#Y8R#Y;'S%j;'S;=`%{<%lO%jj:zS!dYOy%jz;'S%j;'S;=`%{<%lO%jj;]WyWOy%jz!O%j!O!P6s!P!Q%j!Q![9x![;'S%j;'S;=`%{<%lO%jj;zU`YOy%jz!Q%j!Q![7[![;'S%j;'S;=`%{<%lO%j~VUcYOy%jz![%j![!]>i!];'S%j;'S;=`%{<%lO%jj>pSdY!o`Oy%jz;'S%j;'S;=`%{<%lO%jj?RSnYOy%jz;'S%j;'S;=`%{<%lO%jh?dU!WWOy%jz!_%j!_!`?v!`;'S%j;'S;=`%{<%lO%jh?}S!WW!o`Oy%jz;'S%j;'S;=`%{<%lO%jl@bS!WW!ySOy%jz;'S%j;'S;=`%{<%lO%jj@uV!|Q!WWOy%jz!_%j!_!`?v!`!aA[!a;'S%j;'S;=`%{<%lO%jbAcS!|Q!o`Oy%jz;'S%j;'S;=`%{<%lO%jjArYOy%jz}%j}!OBb!O!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jjBgW!o`Oy%jz!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jjCW[lY!o`Oy%jz}%j}!OCP!O!Q%j!Q![CP![!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jhDRS!zWOy%jz;'S%j;'S;=`%{<%lO%jjDdSpYOy%jz;'S%j;'S;=`%{<%lO%jnDuSo^Oy%jz;'S%j;'S;=`%{<%lO%jjEWU!zWOy%jz#a%j#a#bEj#b;'S%j;'S;=`%{<%lO%jbEoU!o`Oy%jz#d%j#d#eFR#e;'S%j;'S;=`%{<%lO%jbFWU!o`Oy%jz#c%j#c#dFj#d;'S%j;'S;=`%{<%lO%jbFoU!o`Oy%jz#f%j#f#gGR#g;'S%j;'S;=`%{<%lO%jbGWU!o`Oy%jz#h%j#h#iGj#i;'S%j;'S;=`%{<%lO%jbGoU!o`Oy%jz#T%j#T#UHR#U;'S%j;'S;=`%{<%lO%jbHWU!o`Oy%jz#b%j#b#cHj#c;'S%j;'S;=`%{<%lO%jbHoU!o`Oy%jz#h%j#h#iIR#i;'S%j;'S;=`%{<%lO%jbIYS$pQ!o`Oy%jz;'S%j;'S;=`%{<%lO%jjIkSsYOy%jz;'S%j;'S;=`%{<%lO%jfI|U$cUOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jjJeSrYOy%jz;'S%j;'S;=`%{<%lO%jfJvU#PQOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%j`K]P;=`<%l%Z",tokenizers:[wjt,Ojt,vjt,xjt,1,2,3,4,new qN("m~RRYZ[z{a~~g~aO$_~~dP!P!Qg~lO$`~~",28,152)],topRules:{StyleSheet:[0,6],Styles:[1,126]},dynamicPrecedences:{94:1},specialized:[{term:147,get:e=>kjt[e]||-1},{term:148,get:e=>Ejt[e]||-1},{term:4,get:e=>Cjt[e]||-1},{term:28,get:e=>Tjt[e]||-1},{term:146,get:e=>Ajt[e]||-1}],tokenPrec:2405});let P5=null;function D5(){if(!P5&&typeof document=="object"&&document.body){let{style:e}=document.body,t=[],n=new Set;for(let i in e)i!="cssText"&&i!="cssFloat"&&typeof e[i]=="string"&&(/[A-Z]/.test(i)&&(i=i.replace(/[A-Z]/g,r=>"-"+r.toLowerCase())),n.has(i)||(t.push(i),n.add(i)));P5=t.sort().map(i=>({type:"property",label:i,apply:i+": "}))}return P5||[]}const gee=["active","after","any-link","autofill","backdrop","before","checked","cue","default","defined","disabled","empty","enabled","file-selector-button","first","first-child","first-letter","first-line","first-of-type","focus","focus-visible","focus-within","fullscreen","has","host","host-context","hover","in-range","indeterminate","invalid","is","lang","last-child","last-of-type","left","link","marker","modal","not","nth-child","nth-last-child","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","part","placeholder","placeholder-shown","read-only","read-write","required","right","root","scope","selection","slotted","target","target-text","valid","visited","where"].map(e=>({type:"class",label:e})),bee=["above","absolute","activeborder","additive","activecaption","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","antialiased","appworkspace","asterisks","attr","auto","auto-flow","avoid","avoid-column","avoid-page","avoid-region","axis-pan","background","backwards","baseline","below","bidi-override","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","button-bevel","buttonface","buttonhighlight","buttonshadow","buttontext","calc","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","clear","clip","close-quote","col-resize","collapse","color","color-burn","color-dodge","column","column-reverse","compact","condensed","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","darken","dashed","decimal","decimal-leading-zero","default","default-button","dense","destination-atop","destination-in","destination-out","destination-over","difference","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic-abegede-gez","ethiopic-halehame-aa-er","ethiopic-halehame-gez","ew-resize","exclusion","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fill-box","fixed","flat","flex","flex-end","flex-start","footnotes","forwards","from","geometricPrecision","graytext","grid","groove","hand","hard-light","help","hidden","hide","higher","highlight","highlighttext","horizontal","hsl","hsla","hue","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-grid","inline-table","inset","inside","intrinsic","invert","italic","justify","keep-all","landscape","large","larger","left","level","lighter","lighten","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-hexadecimal","lower-latin","lower-norwegian","lowercase","ltr","luminosity","manipulation","match","matrix","matrix3d","medium","menu","menutext","message-box","middle","min-intrinsic","mix","monospace","move","multiple","multiple_mask_images","multiply","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","opacity","open-quote","optimizeLegibility","optimizeSpeed","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","perspective","pinch-zoom","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row","row-resize","row-reverse","rtl","run-in","running","s-resize","sans-serif","saturation","scale","scale3d","scaleX","scaleY","scaleZ","screen","scroll","scrollbar","scroll-position","se-resize","self-start","self-end","semi-condensed","semi-expanded","separate","serif","show","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","soft-light","solid","source-atop","source-in","source-out","source-over","space","space-around","space-between","space-evenly","spell-out","square","start","static","status-bar","stretch","stroke","stroke-box","sub","subpixel-antialiased","svg_masks","super","sw-resize","symbolic","symbols","system-ui","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","text","text-bottom","text-top","textarea","textfield","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","to","top","transform","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","unidirectional-pan","unset","up","upper-latin","uppercase","url","var","vertical","vertical-text","view-box","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","wrap","wrap-reverse","x-large","x-small","xor","xx-large","xx-small"].map(e=>({type:"keyword",label:e})).concat(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"].map(e=>({type:"constant",label:e}))),Njt=["a","abbr","address","article","aside","b","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","dd","del","details","dfn","dialog","div","dl","dt","em","figcaption","figure","footer","form","header","hgroup","h1","h2","h3","h4","h5","h6","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","main","meter","nav","ol","output","p","pre","ruby","section","select","small","source","span","strong","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","tr","u","ul"].map(e=>({type:"type",label:e})),jjt=["@charset","@color-profile","@container","@counter-style","@font-face","@font-feature-values","@font-palette-values","@import","@keyframes","@layer","@media","@namespace","@page","@position-try","@property","@scope","@starting-style","@supports","@view-transition"].map(e=>({type:"keyword",label:e})),xf=/^(\w[\w-]*|-\w[\w-]*|)$/,Rjt=/^-(-[\w-]*)?$/;function Ijt(e,t){var n;if((e.name=="("||e.type.isError)&&(e=e.parent||e),e.name!="ArgList")return!1;let i=(n=e.parent)===null||n===void 0?void 0:n.firstChild;return(i==null?void 0:i.name)!="Callee"?!1:t.sliceString(i.from,i.to)=="var"}const yee=new zU,Pjt=["Declaration"];function Djt(e){for(let t=e;;){if(t.type.isTop)return t;if(!(t=t.parent))return e}}function C_e(e,t,n){if(t.to-t.from>4096){let i=yee.get(t);if(i)return i;let r=[],s=new Set,a=t.cursor(er.IncludeAnonymous);if(a.firstChild())do for(let l of C_e(e,a.node,n))s.has(l.label)||(s.add(l.label),r.push(l));while(a.nextSibling());return yee.set(t,r),r}else{let i=[],r=new Set;return t.cursor().iterate(s=>{var a;if(n(s)&&s.matchContext(Pjt)&&((a=s.node.nextSibling)===null||a===void 0?void 0:a.name)==":"){let l=e.sliceString(s.from,s.to);r.has(l)||(r.add(l),i.push({label:l,type:"variable"}))}}),i}}const Mjt=e=>t=>{let{state:n,pos:i}=t,r=Or(n).resolveInner(i,-1),s=r.type.isError&&r.from==r.to-1&&n.doc.sliceString(r.from,r.to)=="-";if(r.name=="PropertyName"||(s||r.name=="TagName")&&/^(Block|Styles)$/.test(r.resolve(r.to).name))return{from:r.from,options:D5(),validFor:xf};if(r.name=="ValueName")return{from:r.from,options:bee,validFor:xf};if(r.name=="PseudoClassName")return{from:r.from,options:gee,validFor:xf};if(e(r)||(t.explicit||s)&&Ijt(r,n.doc))return{from:e(r)||s?r.from:i,options:C_e(n.doc,Djt(r),e),validFor:Rjt};if(r.name=="TagName"){for(let{parent:c}=r;c;c=c.parent)if(c.name=="Block")return{from:r.from,options:D5(),validFor:xf};return{from:r.from,options:Njt,validFor:xf}}if(r.name=="AtKeyword")return{from:r.from,options:jjt,validFor:xf};if(!t.explicit)return null;let a=r.resolve(i),l=a.childBefore(i);return l&&l.name==":"&&a.name=="PseudoClassSelector"?{from:i,options:gee,validFor:xf}:l&&l.name==":"&&a.name=="Declaration"||a.name=="ArgList"?{from:i,options:bee,validFor:xf}:a.name=="Block"||a.name=="Styles"?{from:i,options:D5(),validFor:xf}:null},Ljt=Mjt(e=>e.name=="VariableName"),ZN=jh.define({name:"css",parser:_jt.configure({props:[Hh.add({Declaration:pv()}),qh.add({"Block KeyframeList":LE})]}),languageData:{commentTokens:{block:{open:"/*",close:"*/"}},indentOnInput:/^\s*\}$/,wordChars:"-"}});function $jt(){return new Nm(ZN,ZN.data.of({autocomplete:Ljt}))}const iw=["_blank","_self","_top","_parent"],M5=["ascii","utf-8","utf-16","latin1","latin1"],L5=["get","post","put","delete"],$5=["application/x-www-form-urlencoded","multipart/form-data","text/plain"],Ml=["true","false"],mn={},Fjt={a:{attrs:{href:null,ping:null,type:null,media:null,target:iw,hreflang:null}},abbr:mn,address:mn,area:{attrs:{alt:null,coords:null,href:null,target:null,ping:null,media:null,hreflang:null,type:null,shape:["default","rect","circle","poly"]}},article:mn,aside:mn,audio:{attrs:{src:null,mediagroup:null,crossorigin:["anonymous","use-credentials"],preload:["none","metadata","auto"],autoplay:["autoplay"],loop:["loop"],controls:["controls"]}},b:mn,base:{attrs:{href:null,target:iw}},bdi:mn,bdo:mn,blockquote:{attrs:{cite:null}},body:mn,br:mn,button:{attrs:{form:null,formaction:null,name:null,value:null,autofocus:["autofocus"],disabled:["autofocus"],formenctype:$5,formmethod:L5,formnovalidate:["novalidate"],formtarget:iw,type:["submit","reset","button"]}},canvas:{attrs:{width:null,height:null}},caption:mn,center:mn,cite:mn,code:mn,col:{attrs:{span:null}},colgroup:{attrs:{span:null}},command:{attrs:{type:["command","checkbox","radio"],label:null,icon:null,radiogroup:null,command:null,title:null,disabled:["disabled"],checked:["checked"]}},data:{attrs:{value:null}},datagrid:{attrs:{disabled:["disabled"],multiple:["multiple"]}},datalist:{attrs:{data:null}},dd:mn,del:{attrs:{cite:null,datetime:null}},details:{attrs:{open:["open"]}},dfn:mn,div:mn,dl:mn,dt:mn,em:mn,embed:{attrs:{src:null,type:null,width:null,height:null}},eventsource:{attrs:{src:null}},fieldset:{attrs:{disabled:["disabled"],form:null,name:null}},figcaption:mn,figure:mn,footer:mn,form:{attrs:{action:null,name:null,"accept-charset":M5,autocomplete:["on","off"],enctype:$5,method:L5,novalidate:["novalidate"],target:iw}},h1:mn,h2:mn,h3:mn,h4:mn,h5:mn,h6:mn,head:{children:["title","base","link","style","meta","script","noscript","command"]},header:mn,hgroup:mn,hr:mn,html:{attrs:{manifest:null}},i:mn,iframe:{attrs:{src:null,srcdoc:null,name:null,width:null,height:null,sandbox:["allow-top-navigation","allow-same-origin","allow-forms","allow-scripts"],seamless:["seamless"]}},img:{attrs:{alt:null,src:null,ismap:null,usemap:null,width:null,height:null,crossorigin:["anonymous","use-credentials"]}},input:{attrs:{alt:null,dirname:null,form:null,formaction:null,height:null,list:null,max:null,maxlength:null,min:null,name:null,pattern:null,placeholder:null,size:null,src:null,step:null,value:null,width:null,accept:["audio/*","video/*","image/*"],autocomplete:["on","off"],autofocus:["autofocus"],checked:["checked"],disabled:["disabled"],formenctype:$5,formmethod:L5,formnovalidate:["novalidate"],formtarget:iw,multiple:["multiple"],readonly:["readonly"],required:["required"],type:["hidden","text","search","tel","url","email","password","datetime","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]}},ins:{attrs:{cite:null,datetime:null}},kbd:mn,keygen:{attrs:{challenge:null,form:null,name:null,autofocus:["autofocus"],disabled:["disabled"],keytype:["RSA"]}},label:{attrs:{for:null,form:null}},legend:mn,li:{attrs:{value:null}},link:{attrs:{href:null,type:null,hreflang:null,media:null,sizes:["all","16x16","16x16 32x32","16x16 32x32 64x64"]}},map:{attrs:{name:null}},mark:mn,menu:{attrs:{label:null,type:["list","context","toolbar"]}},meta:{attrs:{content:null,charset:M5,name:["viewport","application-name","author","description","generator","keywords"],"http-equiv":["content-language","content-type","default-style","refresh"]}},meter:{attrs:{value:null,min:null,low:null,high:null,max:null,optimum:null}},nav:mn,noscript:mn,object:{attrs:{data:null,type:null,name:null,usemap:null,form:null,width:null,height:null,typemustmatch:["typemustmatch"]}},ol:{attrs:{reversed:["reversed"],start:null,type:["1","a","A","i","I"]},children:["li","script","template","ul","ol"]},optgroup:{attrs:{disabled:["disabled"],label:null}},option:{attrs:{disabled:["disabled"],label:null,selected:["selected"],value:null}},output:{attrs:{for:null,form:null,name:null}},p:mn,param:{attrs:{name:null,value:null}},pre:mn,progress:{attrs:{value:null,max:null}},q:{attrs:{cite:null}},rp:mn,rt:mn,ruby:mn,samp:mn,script:{attrs:{type:["text/javascript"],src:null,async:["async"],defer:["defer"],charset:M5}},section:mn,select:{attrs:{form:null,name:null,size:null,autofocus:["autofocus"],disabled:["disabled"],multiple:["multiple"]}},slot:{attrs:{name:null}},small:mn,source:{attrs:{src:null,type:null,media:null}},span:mn,strong:mn,style:{attrs:{type:["text/css"],media:null,scoped:null}},sub:mn,summary:mn,sup:mn,table:mn,tbody:mn,td:{attrs:{colspan:null,rowspan:null,headers:null}},template:mn,textarea:{attrs:{dirname:null,form:null,maxlength:null,name:null,placeholder:null,rows:null,cols:null,autofocus:["autofocus"],disabled:["disabled"],readonly:["readonly"],required:["required"],wrap:["soft","hard"]}},tfoot:mn,th:{attrs:{colspan:null,rowspan:null,headers:null,scope:["row","col","rowgroup","colgroup"]}},thead:mn,time:{attrs:{datetime:null}},title:mn,tr:mn,track:{attrs:{src:null,label:null,default:null,kind:["subtitles","captions","descriptions","chapters","metadata"],srclang:null}},ul:{children:["li","script","template","ul","ol"]},var:mn,video:{attrs:{src:null,poster:null,width:null,height:null,crossorigin:["anonymous","use-credentials"],preload:["auto","metadata","none"],autoplay:["autoplay"],mediagroup:["movie"],muted:["muted"],controls:["controls"]}},wbr:mn},T_e={accesskey:null,class:null,contenteditable:Ml,contextmenu:null,dir:["ltr","rtl","auto"],draggable:["true","false","auto"],dropzone:["copy","move","link","string:","file:"],hidden:["hidden"],id:null,inert:["inert"],itemid:null,itemprop:null,itemref:null,itemscope:["itemscope"],itemtype:null,lang:["ar","bn","de","en-GB","en-US","es","fr","hi","id","ja","pa","pt","ru","tr","zh"],spellcheck:Ml,autocorrect:Ml,autocapitalize:Ml,style:null,tabindex:null,title:null,translate:["yes","no"],rel:["stylesheet","alternate","author","bookmark","help","license","next","nofollow","noreferrer","prefetch","prev","search","tag"],role:"alert application article banner button cell checkbox complementary contentinfo dialog document feed figure form grid gridcell heading img list listbox listitem main navigation region row rowgroup search switch tab table tabpanel textbox timer".split(" "),"aria-activedescendant":null,"aria-atomic":Ml,"aria-autocomplete":["inline","list","both","none"],"aria-busy":Ml,"aria-checked":["true","false","mixed","undefined"],"aria-controls":null,"aria-describedby":null,"aria-disabled":Ml,"aria-dropeffect":null,"aria-expanded":["true","false","undefined"],"aria-flowto":null,"aria-grabbed":["true","false","undefined"],"aria-haspopup":Ml,"aria-hidden":Ml,"aria-invalid":["true","false","grammar","spelling"],"aria-label":null,"aria-labelledby":null,"aria-level":null,"aria-live":["off","polite","assertive"],"aria-multiline":Ml,"aria-multiselectable":Ml,"aria-owns":null,"aria-posinset":null,"aria-pressed":["true","false","mixed","undefined"],"aria-readonly":Ml,"aria-relevant":null,"aria-required":Ml,"aria-selected":["true","false","undefined"],"aria-setsize":null,"aria-sort":["ascending","descending","none","other"],"aria-valuemax":null,"aria-valuemin":null,"aria-valuenow":null,"aria-valuetext":null},A_e="beforeunload copy cut dragstart dragover dragleave dragenter dragend drag paste focus blur change click load mousedown mouseenter mouseleave mouseup keydown keyup resize scroll unload".split(" ").map(e=>"on"+e);for(let e of A_e)T_e[e]=null;class mk{constructor(t,n){this.tags={...Fjt,...t},this.globalAttrs={...T_e,...n},this.allTags=Object.keys(this.tags),this.globalAttrNames=Object.keys(this.globalAttrs)}}mk.default=new mk;function ux(e,t,n=e.length){if(!t)return"";let i=t.firstChild,r=i&&i.getChild("TagName");return r?e.sliceString(r.from,Math.min(r.to,n)):""}function dx(e,t=!1){for(;e;e=e.parent)if(e.name=="Element")if(t)t=!1;else return e;return null}function __e(e,t,n){let i=n.tags[ux(e,dx(t))];return(i==null?void 0:i.children)||n.allTags}function IQ(e,t){let n=[];for(let i=dx(t);i&&!i.type.isTop;i=dx(i.parent)){let r=ux(e,i);if(r&&i.lastChild.name=="CloseTag")break;r&&n.indexOf(r)<0&&(t.name=="EndTag"||t.from>=i.firstChild.to)&&n.push(r)}return n}const N_e=/^[:\-\.\w\u00b7-\uffff]*$/;function vee(e,t,n,i,r){let s=/\s*>/.test(e.sliceDoc(r,r+5))?"":">",a=dx(n,n.name=="StartTag"||n.name=="TagName");return{from:i,to:r,options:__e(e.doc,a,t).map(l=>({label:l,type:"type"})).concat(IQ(e.doc,n).map((l,c)=>({label:"/"+l,apply:"/"+l+s,type:"type",boost:99-c}))),validFor:/^\/?[:\-\.\w\u00b7-\uffff]*$/}}function xee(e,t,n,i){let r=/\s*>/.test(e.sliceDoc(i,i+5))?"":">";return{from:n,to:i,options:IQ(e.doc,t).map((s,a)=>({label:s,apply:s+r,type:"type",boost:99-a})),validFor:N_e}}function Bjt(e,t,n,i){let r=[],s=0;for(let a of __e(e.doc,n,t))r.push({label:"<"+a,type:"type"});for(let a of IQ(e.doc,n))r.push({label:"",type:"type",boost:99-s++});return{from:i,to:i,options:r,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}function Ujt(e,t,n,i,r){let s=dx(n),a=s?t.tags[ux(e.doc,s)]:null,l=a&&a.attrs?Object.keys(a.attrs):[],c=a&&a.globalAttrs===!1?l:l.length?l.concat(t.globalAttrNames):t.globalAttrNames;return{from:i,to:r,options:c.map(u=>({label:u,type:"property"})),validFor:N_e}}function Qjt(e,t,n,i,r){var s;let a=(s=n.parent)===null||s===void 0?void 0:s.getChild("AttributeName"),l=[],c;if(a){let u=e.sliceDoc(a.from,a.to),d=t.globalAttrs[u];if(!d){let f=dx(n),h=f?t.tags[ux(e.doc,f)]:null;d=(h==null?void 0:h.attrs)&&h.attrs[u]}if(d){let f=e.sliceDoc(i,r).toLowerCase(),h='"',m='"';/^['"]/.test(f)?(c=f[0]=='"'?/^[^"]*$/:/^[^']*$/,h="",m=e.sliceDoc(r,r+1)==f[0]?"":f[0],f=f.slice(1),i++):c=/^[^\s<>='"]*$/;for(let g of d)l.push({label:g,apply:h+g+m,type:"constant"})}}return{from:i,to:r,options:l,validFor:c}}function j_e(e,t){let{state:n,pos:i}=t,r=Or(n).resolveInner(i,-1),s=r.resolve(i);for(let a=i,l;s==r&&(l=r.childBefore(a));){let c=l.lastChild;if(!c||!c.type.isError||c.fromj_e(i,r)}const Hjt=$d.parser.configure({top:"SingleExpression"}),R_e=[{tag:"script",attrs:e=>e.type=="text/typescript"||e.lang=="ts",parser:FAe.parser},{tag:"script",attrs:e=>e.type=="text/babel"||e.type=="text/jsx",parser:BAe.parser},{tag:"script",attrs:e=>e.type=="text/typescript-jsx",parser:UAe.parser},{tag:"script",attrs(e){return/^(importmap|speculationrules|application\/(.+\+)?json)$/i.test(e.type)},parser:Hjt},{tag:"script",attrs(e){return!e.type||/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i.test(e.type)},parser:$d.parser},{tag:"style",attrs(e){return(!e.lang||e.lang=="css")&&(!e.type||/^(text\/)?(x-)?(stylesheet|css)$/i.test(e.type))},parser:ZN.parser}],I_e=[{name:"style",parser:ZN.parser.configure({top:"Styles"})}].concat(A_e.map(e=>({name:e,parser:$d.parser}))),P_e=jh.define({name:"html",parser:njt.configure({props:[Hh.add({Element(e){let t=/^(\s*)(<\/)?/.exec(e.textAfter);return e.node.to<=e.pos+t[0].length?e.continue():e.lineIndent(e.node.from)+(t[2]?0:e.unit)},"OpenTag CloseTag SelfClosingTag"(e){return e.column(e.node.from)+e.unit},Document(e){if(e.pos+/\s*/.exec(e.textAfter)[0].lengthe.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:""}},indentOnInput:/^\s*<\/\w+\W$/,wordChars:"-_"}}),LA=P_e.configure({wrap:w_e(R_e,I_e)});function qjt(e={}){let t="",n;e.matchClosingTags===!1&&(t="noMatch"),e.selfClosingTags===!0&&(t=(t?t+" ":"")+"selfClosing"),(e.nestedLanguages&&e.nestedLanguages.length||e.nestedAttributes&&e.nestedAttributes.length)&&(n=w_e((e.nestedLanguages||[]).concat(R_e),(e.nestedAttributes||[]).concat(I_e)));let i=n?P_e.configure({wrap:n,dialect:t}):t?LA.configure({dialect:t}):LA;return new Nm(i,[LA.data.of({autocomplete:Vjt(e)}),e.autoCloseTags!==!1?Wjt:[],J$().support,$jt().support])}const wee=new Set("area base br col command embed frame hr img input keygen link meta param source track wbr menuitem".split(" ")),Wjt=Ft.inputHandler.of((e,t,n,i,r)=>{if(e.composing||e.state.readOnly||t!=n||i!=">"&&i!="/"||!LA.isActiveAt(e.state,t,-1))return!1;let s=r(),{state:a}=s,l=a.changeByRange(c=>{var u,d,f;let h=a.doc.sliceString(c.from-1,c.to)==i,{head:m}=c,g=Or(a).resolveInner(m,-1),b;if(h&&i==">"&&g.name=="EndTag"){let v=g.parent;if(((d=(u=v.parent)===null||u===void 0?void 0:u.lastChild)===null||d===void 0?void 0:d.name)!="CloseTag"&&(b=ux(a.doc,v.parent,m))&&!wee.has(b)){let y=m+(a.doc.sliceString(m,m+1)===">"?1:0),x=``;return{range:c,changes:{from:m,to:y,insert:x}}}}else if(h&&i=="/"&&g.name=="IncompleteCloseTag"){let v=g.parent;if(g.from==m-2&&((f=v.lastChild)===null||f===void 0?void 0:f.name)!="CloseTag"&&(b=ux(a.doc,v,m))&&!wee.has(b)){let y=m+(a.doc.sliceString(m,m+1)===">"?1:0),x=`${b}>`;return{range:it.cursor(m+x.length,-1),changes:{from:m,to:y,insert:x}}}}return{range:c}});return l.changes.empty?!1:(e.dispatch([s,a.update(l,{userEvent:"input.complete",scrollIntoView:!0})]),!0)}),D_e=CI({commentTokens:{block:{open:""}}}),M_e=new Ln,L_e=rNt.configure({props:[qh.add(e=>!e.is("Block")||e.is("Document")||a8(e)!=null||Gjt(e)?void 0:(t,n)=>({from:n.doc.lineAt(t.from).to,to:t.to})),M_e.add(a8),Hh.add({Document:()=>null}),zp.add({Document:D_e})]});function a8(e){let t=/^(?:ATX|Setext)Heading(\d)$/.exec(e.name);return t?+t[1]:void 0}function Gjt(e){return e.name=="OrderedList"||e.name=="BulletList"}function Kjt(e,t){let n=e;for(;;){let i=n.nextSibling,r;if(!i||(r=a8(i.type))!=null&&r<=t)break;n=i}return n.to}const Xjt=nAe.of((e,t,n)=>{for(let i=Or(e).resolveInner(n,-1);i&&!(i.fromn)return{from:n,to:s}}return null});function PQ(e){return new ec(D_e,e,[],"markdown")}const Yjt=PQ(L_e),Zjt=L_e.configure([mNt,bNt,gNt,yNt,{props:[qh.add({Table:(e,t)=>({from:t.doc.lineAt(e.from).to,to:e.to})})]}]),JN=PQ(Zjt);function Jjt(e,t){return n=>{if(n&&e){let i=null;if(n=/\S*/.exec(n)[0],typeof e=="function"?i=e(n):i=UN.matchLanguageName(e,n,!0),i instanceof UN)return i.support?i.support.language.parser:Ib.getSkippingParser(i.load());if(i)return i.parser}return t?t.parser:null}}let F5=class{constructor(t,n,i,r,s,a,l){this.node=t,this.from=n,this.to=i,this.spaceBefore=r,this.spaceAfter=s,this.type=a,this.item=l}blank(t,n=!0){let i=this.spaceBefore+(this.node.name=="Blockquote"?">":"");if(t!=null){for(;i.length0;r--)i+=" ";return i+(n?this.spaceAfter:"")}}marker(t,n){let i=this.node.name=="OrderedList"?String(+F_e(this.item,t)[2]+n):"";return this.spaceBefore+i+this.type+this.spaceAfter}};function $_e(e,t){let n=[],i=[];for(let r=e;r;r=r.parent){if(r.name=="FencedCode")return i;(r.name=="ListItem"||r.name=="Blockquote")&&n.push(r)}for(let r=n.length-1;r>=0;r--){let s=n[r],a,l=t.lineAt(s.from),c=s.from-l.from;if(s.name=="Blockquote"&&(a=/^ *>( ?)/.exec(l.text.slice(c))))i.push(new F5(s,c,c+a[0].length,"",a[1],">",null));else if(s.name=="ListItem"&&s.parent.name=="OrderedList"&&(a=/^( *)\d+([.)])( *)/.exec(l.text.slice(c)))){let u=a[3],d=a[0].length;u.length>=4&&(u=u.slice(0,u.length-4),d-=4),i.push(new F5(s.parent,c,c+d,a[1],u,a[2],s))}else if(s.name=="ListItem"&&s.parent.name=="BulletList"&&(a=/^( *)([-+*])( {1,4}\[[ xX]\])?( +)/.exec(l.text.slice(c)))){let u=a[4],d=a[0].length;u.length>4&&(u=u.slice(0,u.length-4),d-=4);let f=a[2];a[3]&&(f+=a[3].replace(/[xX]/," ")),i.push(new F5(s.parent,c,c+d,a[1],u,f,s))}}return i}function F_e(e,t){return/^(\s*)(\d+)(?=[.)])/.exec(t.sliceString(e.from,e.from+10))}function B5(e,t,n,i=0){for(let r=-1,s=e;;){if(s.name=="ListItem"){let l=F_e(s,t),c=+l[2];if(r>=0){if(c!=r+1)return;n.push({from:s.from+l[1].length,to:s.from+l[0].length,insert:String(r+2+i)})}r=c}let a=s.nextSibling;if(!a)break;s=a}}function DQ(e,t){let n=/^[ \t]*/.exec(e)[0].length;if(!n||t.facet(i1)!=" ")return e;let i=Uu(e,4,n),r="";for(let s=i;s>0;)s>=4?(r+=" ",s-=4):(r+=" ",s--);return r+e.slice(n)}const eRt=(e={})=>({state:t,dispatch:n})=>{let i=Or(t),{doc:r}=t,s=null,a=t.changeByRange(l=>{if(!l.empty||!JN.isActiveAt(t,l.from,-1)&&!JN.isActiveAt(t,l.from,1))return s={range:l};let c=l.from,u=r.lineAt(c),d=$_e(i.resolveInner(c,-1),r);for(;d.length&&d[d.length-1].from>c-u.from;)d.pop();if(!d.length)return s={range:l};let f=d[d.length-1];if(f.to-f.spaceAfter.length>c-u.from)return s={range:l};let h=c>=f.to-f.spaceAfter.length&&!/\S/.test(u.text.slice(f.to));if(f.item&&h){let y=f.node.firstChild,x=f.node.getChild("ListItem","ListItem");if(y.to>=c||x&&x.to0&&!/[^\s>]/.test(r.lineAt(u.from-1).text)||e.nonTightLists===!1){let O=d.length>1?d[d.length-2]:null,w,k="";O&&O.item?(w=u.from+O.from,k=O.marker(r,1)):w=u.from+(O?O.to:0);let S=[{from:w,to:c,insert:k}];return f.node.name=="OrderedList"&&B5(f.item,r,S,-2),O&&O.node.name=="OrderedList"&&B5(O.item,r,S),{range:it.cursor(w+k.length),changes:S}}else{let O=See(d,t,u);return{range:it.cursor(c+O.length+1),changes:{from:u.from,insert:O+t.lineBreak}}}}if(f.node.name=="Blockquote"&&h&&u.from){let y=r.lineAt(u.from-1),x=/>\s*$/.exec(y.text);if(x&&x.index==f.from){let O=t.changes([{from:y.from+x.index,to:y.to},{from:u.from+f.from,to:u.to}]);return{range:l.map(O),changes:O}}}let m=[];f.node.name=="OrderedList"&&B5(f.item,r,m);let g=f.item&&f.item.from]*/.exec(u.text)[0].length>=f.to)for(let y=0,x=d.length-1;y<=x;y++)b+=y==x&&!g?d[y].marker(r,1):d[y].blank(yu.from&&/\s/.test(u.text.charAt(v-u.from-1));)v--;return b=DQ(b,t),nRt(f.node,t.doc)&&(b=See(d,t,u)+t.lineBreak+b),m.push({from:v,to:c,insert:t.lineBreak+b}),{range:it.cursor(v+b.length+1),changes:m}});return s?!1:(n(t.update(a,{scrollIntoView:!0,userEvent:"input"})),!0)},tRt=eRt();function Oee(e){return e.name=="QuoteMark"||e.name=="ListMark"}function nRt(e,t){if(e.name!="OrderedList"&&e.name!="BulletList")return!1;let n=e.firstChild,i=e.getChild("ListItem","ListItem");if(!i)return!1;let r=t.lineAt(n.to),s=t.lineAt(i.from),a=/^[\s>]*$/.test(r.text);return r.number+(a?0:1){let n=Or(e),i=null,r=e.changeByRange(s=>{let a=s.from,{doc:l}=e;if(s.empty&&JN.isActiveAt(e,s.from)){let c=l.lineAt(a),u=$_e(iRt(n,a),l);if(u.length){let d=u[u.length-1],f=d.to-d.spaceAfter.length+(d.spaceAfter?1:0);if(a-c.from>f&&!/\S/.test(c.text.slice(f,a-c.from)))return{range:it.cursor(c.from+f),changes:{from:c.from+f,to:a}};if(a-c.from==f&&(d.item&&c.from<=d.item.from||/^[\s>]*$/.test(c.text.slice(0,d.to)))){let h=c.from+d.from;if(d.item&&d.node.from{var n;let{main:i}=t.state.selection;if(i.empty)return!1;let r=(n=e.clipboardData)===null||n===void 0?void 0:n.getData("text/plain");if(!r||!/^(https?:\/\/|mailto:|xmpp:|www\.)/.test(r)||(/^www\./.test(r)&&(r="https://"+r),!JN.isActiveAt(t.state,i.from,1)))return!1;let s=Or(t.state),a=!1;return s.iterate({from:i.from,to:i.to,enter:l=>{(l.from>i.from||cRt.test(l.name))&&(a=!0)},leave:l=>{l.to=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102}const uIt=new zs((e,t)=>{let n;if(e.next<0)e.acceptToken(pRt);else if(t.context.flags&$A)Q5(e.next)&&e.acceptToken(hRt,1);else if(((n=e.peek(-1))<0||Q5(n))&&t.canShift(kee)){let i=0;for(;e.next==MQ||e.next==RI;)e.advance(),i++;(e.next==Mb||e.next==gk||e.next==LQ)&&e.acceptToken(kee,-i)}else Q5(e.next)&&e.acceptToken(fRt,1)},{contextual:!0}),dIt=new zs((e,t)=>{let n=t.context;if(n.flags)return;let i=e.peek(-1);if(i==Mb||i==gk){let r=0,s=0;for(;;){if(e.next==MQ)r++;else if(e.next==RI)r+=8-r%8;else break;e.advance(),s++}r!=n.indent&&e.next!=Mb&&e.next!=gk&&e.next!=LQ&&(r[e,t|W_e])),pIt=new _I({start:fIt,reduce(e,t,n,i){return e.flags&$A&&cIt.has(t)||(t==jRt||t==V_e)&&e.flags&W_e?e.parent:e},shift(e,t,n,i){return t==U_e?new FA(e,hIt(i.read(i.pos,n.pos)),0):t==Q_e?e.parent:t==bRt||t==wRt||t==kRt||t==z_e?new FA(e,0,$A):Aee.has(t)?new FA(e,0,Aee.get(t)|e.flags&$A):e},hash(e){return e.hash}}),mIt=new zs(e=>{for(let t=0;t<5;t++){if(e.next!="print".charCodeAt(t))return;e.advance()}if(!/\w/.test(String.fromCharCode(e.next)))for(let t=0;;t++){let n=e.peek(t);if(!(n==MQ||n==RI)){n!=nIt&&n!=iIt&&n!=Mb&&n!=gk&&n!=LQ&&e.acceptToken(dRt);return}}}),gIt=new zs((e,t)=>{let{flags:n}=t.context,i=n&Tf?q_e:H_e,r=(n&Af)>0,s=!(n&_f),a=(n&Nf)>0,l=e.pos;for(;!(e.next<0);)if(a&&e.next==o8)if(e.peek(1)==o8)e.advance(2);else{if(e.pos==l){e.acceptToken(z_e,1);return}break}else if(s&&e.next==Tee){if(e.pos==l){e.advance();let c=e.next;c>=0&&(e.advance(),bIt(e,c)),e.acceptToken(gRt);return}break}else if(e.next==Tee&&!s&&e.peek(1)>-1)e.advance(2);else if(e.next==i&&(!r||e.peek(1)==i&&e.peek(2)==i)){if(e.pos==l){e.acceptToken(Eee,r?3:1);return}break}else if(e.next==Mb){if(r)e.advance();else if(e.pos==l){e.acceptToken(Eee);return}break}else e.advance();e.pos>l&&e.acceptToken(mRt)});function bIt(e,t){if(t==rIt)for(let n=0;n<2&&e.next>=48&&e.next<=55;n++)e.advance();else if(t==sIt)for(let n=0;n<2&&z5(e.next);n++)e.advance();else if(t==oIt)for(let n=0;n<4&&z5(e.next);n++)e.advance();else if(t==lIt)for(let n=0;n<8&&z5(e.next);n++)e.advance();else if(t==aIt&&e.next==o8){for(e.advance();e.next>=0&&e.next!=Cee&&e.next!=H_e&&e.next!=q_e&&e.next!=Mb;)e.advance();e.next==Cee&&e.advance()}}const yIt=Vh({'async "*" "**" FormatConversion FormatSpec':ne.modifier,"for while if elif else try except finally return raise break continue with pass assert await yield match case":ne.controlKeyword,"in not and or is del":ne.operatorKeyword,"from def class global nonlocal lambda":ne.definitionKeyword,import:ne.moduleKeyword,"with as print":ne.keyword,Boolean:ne.bool,None:ne.null,VariableName:ne.variableName,"CallExpression/VariableName":ne.function(ne.variableName),"FunctionDefinition/VariableName":ne.function(ne.definition(ne.variableName)),"ClassDefinition/VariableName":ne.definition(ne.className),PropertyName:ne.propertyName,"CallExpression/MemberExpression/PropertyName":ne.function(ne.propertyName),Comment:ne.lineComment,Number:ne.number,String:ne.string,FormatString:ne.special(ne.string),Escape:ne.escape,UpdateOp:ne.updateOperator,"ArithOp!":ne.arithmeticOperator,BitOp:ne.bitwiseOperator,CompareOp:ne.compareOperator,AssignOp:ne.definitionOperator,Ellipsis:ne.punctuation,At:ne.meta,"( )":ne.paren,"[ ]":ne.squareBracket,"{ }":ne.brace,".":ne.derefOperator,", ;":ne.separator}),vIt={__proto__:null,await:44,or:54,and:56,in:60,not:62,is:64,if:70,else:72,lambda:76,yield:94,from:96,async:102,for:104,None:162,True:164,False:164,del:178,pass:182,break:186,continue:190,return:194,raise:202,import:206,as:208,global:212,nonlocal:214,assert:218,type:223,elif:236,while:240,try:246,except:248,finally:250,with:254,def:258,class:268,match:279,case:285},xIt=Rh.deserialize({version:14,states:"##jQ`QeOOP$}OSOOO&WQtO'#HUOOQS'#Co'#CoOOQS'#Cp'#CpO'vQdO'#CnO*UQtO'#HTOOQS'#HU'#HUOOQS'#DU'#DUOOQS'#HT'#HTO*rQdO'#D_O+VQdO'#DfO+gQdO'#DjO+zOWO'#DuO,VOWO'#DvO.[QtO'#GuOOQS'#Gu'#GuO'vQdO'#GtO0ZQtO'#GtOOQS'#Eb'#EbO0rQdO'#EcOOQS'#Gs'#GsO0|QdO'#GrOOQV'#Gr'#GrO1XQdO'#FYOOQS'#G^'#G^O1^QdO'#FXOOQV'#IS'#ISOOQV'#Gq'#GqOOQV'#Fq'#FqQ`QeOOO'vQdO'#CqO1lQdO'#C}O1sQdO'#DRO2RQdO'#HYO2cQtO'#EVO'vQdO'#EWOOQS'#EY'#EYOOQS'#E['#E[OOQS'#E^'#E^O2wQdO'#E`O3_QdO'#EdO3rQdO'#EfO3zQtO'#EfO1XQdO'#EiO0rQdO'#ElO1XQdO'#EnO0rQdO'#EtO0rQdO'#EwO4VQdO'#EyO4^QdO'#FOO4iQdO'#EzO0rQdO'#FOO1XQdO'#FQO1XQdO'#FVO4nQdO'#F[P4uOdO'#GpPOOO)CBd)CBdOOQS'#Ce'#CeOOQS'#Cf'#CfOOQS'#Cg'#CgOOQS'#Ch'#ChOOQS'#Ci'#CiOOQS'#Cj'#CjOOQS'#Cl'#ClO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO5TQdO'#DoOOQS,5:Y,5:YO5hQdO'#HdOOQS,5:],5:]O5uQ!fO,5:]O5zQtO,59YO1lQdO,59bO1lQdO,59bO1lQdO,59bO8jQdO,59bO8oQdO,59bO8vQdO,59jO8}QdO'#HTO:TQdO'#HSOOQS'#HS'#HSOOQS'#D['#D[O:lQdO,59aO'vQdO,59aO:zQdO,59aOOQS,59y,59yO;PQdO,5:RO'vQdO,5:ROOQS,5:Q,5:QO;_QdO,5:QO;dQdO,5:XO'vQdO,5:XO'vQdO,5:VOOQS,5:U,5:UO;uQdO,5:UO;zQdO,5:WOOOW'#Fy'#FyOOOOQS'#Ds'#DsOOQS1G/w1G/wOOQS1G.|1G.|O!/[QtO1G.|O!/cQtO1G.|O1lQdO1G.|O!0OQdO1G/UOOQS'#DZ'#DZO0rQdO,59tOOQS1G.{1G.{O!0VQdO1G/eO!0gQdO1G/eO!0oQdO1G/fO'vQdO'#H[O!0tQdO'#H[O!0yQtO1G.{O!1ZQdO,59iO!2aQdO,5=zO!2qQdO,5=zO!2yQdO1G/mO!3OQtO1G/mOOQS1G/l1G/lO!3`QdO,5=uO!4VQdO,5=uO0rQdO1G/qO!4tQdO1G/sO!4yQtO1G/sO!5ZQtO1G/qOOQS1G/p1G/pOOQS1G/r1G/rOOOW-E9w-E9wOOQS1G/{1G/{O!5kQdO'#HxO0rQdO'#HxO!5|QdO,5>cOOOW-E9x-E9xOOQS1G/|1G/|OOQS-E9{-E9{O!6[Q#xO1G2zO!6{QtO1G2zO'vQdO,5kOOQS1G1`1G1`O!8RQdO1G1`OOQS'#DV'#DVO0rQdO,5=qOOQS,5=q,5=qO!8WQdO'#FrO!8cQdO,59oO!8kQdO1G/XO!8uQtO,5=uOOQS1G3`1G3`OOQS,5:m,5:mO!9fQdO'#GtOOQS,5jO!;ZQdO,5>jO1XQdO,5>jO!;lQdO,5>iOOQS-E:R-E:RO!;qQdO1G0lO!;|QdO1G0lO!lO!lO!hO!=VQdO,5>hO!=hQdO'#EpO0rQdO1G0tO!=sQdO1G0tO!=xQgO1G0zO!AvQgO1G0}O!EqQdO,5>oO!E{QdO,5>oO!FTQtO,5>oO0rQdO1G1PO!F_QdO1G1PO4iQdO1G1UO!!vQdO1G1WOOQV,5;a,5;aO!FdQfO,5;aO!FiQgO1G1QO!JjQdO'#GZO4iQdO1G1QO4iQdO1G1QO!JzQdO,5>pO!KXQdO,5>pO1XQdO,5>pOOQV1G1U1G1UO!KaQdO'#FSO!KrQ!fO1G1WO!KzQdO1G1WOOQV1G1]1G1]O4iQdO1G1]O!LPQdO1G1]O!LXQdO'#F^OOQV1G1b1G1bO!#ZQtO1G1bPOOO1G2v1G2vP!L^OSO1G2vOOQS,5=},5=}OOQS'#Dp'#DpO0rQdO,5=}O!LfQdO,5=|O!LyQdO,5=|OOQS1G/u1G/uO!MRQdO,5>PO!McQdO,5>PO!MkQdO,5>PO!NOQdO,5>PO!N`QdO,5>POOQS1G3j1G3jOOQS7+$h7+$hO!8kQdO7+$pO#!RQdO1G.|O#!YQdO1G.|OOQS1G/`1G/`OOQS,5<`,5<`O'vQdO,5<`OOQS7+%P7+%PO#!aQdO7+%POOQS-E9r-E9rOOQS7+%Q7+%QO#!qQdO,5=vO'vQdO,5=vOOQS7+$g7+$gO#!vQdO7+%PO##OQdO7+%QO##TQdO1G3fOOQS7+%X7+%XO##eQdO1G3fO##mQdO7+%XOOQS,5<_,5<_O'vQdO,5<_O##rQdO1G3aOOQS-E9q-E9qO#$iQdO7+%]OOQS7+%_7+%_O#$wQdO1G3aO#%fQdO7+%_O#%kQdO1G3gO#%{QdO1G3gO#&TQdO7+%]O#&YQdO,5>dO#&sQdO,5>dO#&sQdO,5>dOOQS'#Dx'#DxO#'UO&jO'#DzO#'aO`O'#HyOOOW1G3}1G3}O#'fQdO1G3}O#'nQdO1G3}O#'yQ#xO7+(fO#(jQtO1G2UP#)TQdO'#GOOOQS,5nQdO,5sQdO1G4OOOQS-E9y-E9yO#?^QdO1G4OO<[QdO'#H{OOOO'#D{'#D{OOOO'#F|'#F|O#?oO&jO,5:fOOOW,5>e,5>eOOOW7+)i7+)iO#?zQdO7+)iO#@SQdO1G2zO#@mQdO1G2zP'vQdO'#FuO0rQdO<mO#BQQdO,5>mOOQS1G0v1G0vOOQS<rO#KgQdO,5>rO#KrQdO,5>rO#K}QdO,5>qO#L`QdO,5>qOOQS1G1Y1G1YOOQS,5;p,5;pOOQV<VAN>VO$ oQdO<cAN>cO0rQdO1G1|O$!PQtO1G1|P$!ZQdO'#FvOOQS1G2R1G2RP$!hQdO'#F{O$!uQdO7+)jO$#`QdO,5>gOOOO-E9z-E9zOOOW<tO$4{QdO,5>tO1XQdO,5vO$)nQdO,5>vOOQS1G1p1G1pOOQS,5<[,5<[OOQU7+'P7+'PO$+zQdO1G/iO$)nQdO,5wO$8zQdO,5>wOOQS1G1s1G1sOOQS7+'S7+'SP$)nQdO'#GdO$9SQdO1G4bO$9^QdO1G4bO$9fQdO1G4bOOQS7+%T7+%TO$9tQdO1G1tO$:SQtO'#FaO$:ZQdO,5<}OOQS,5<},5<}O$:iQdO1G4cOOQS-E:a-E:aO$)nQdO,5<|O$:pQdO,5<|O$:uQdO7+)|OOQS-E:`-E:`O$;PQdO7+)|O$)nQdO,5S~O%cOS%^OSSOS%]PQ~OPdOVaOfoOhYOopOs!POvqO!PrO!Q{O!T!SO!U!RO!XZO!][O!h`O!r`O!s`O!t`O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO#l!QO#o!TO#s!UO#u!VO#z!WO#}hO$P!XO%oRO%pRO%tSO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O~O%]!YO~OV!aO_!aOa!bOh!iO!X!kO!f!mO%j![O%k!]O%l!^O%m!_O%n!_O%o!`O%p!`O%q!aO%r!aO%s!aO~Ok%xXl%xXm%xXn%xXo%xXp%xXs%xXz%xX{%xX!x%xX#g%xX%[%xX%_%xX%z%xXg%xX!T%xX!U%xX%{%xX!W%xX![%xX!Q%xX#[%xXt%xX!m%xX~P%SOfoOhYO!XZO!][O!h`O!r`O!s`O!t`O%oRO%pRO%tSO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O~Oz%wX{%wX#g%wX%[%wX%_%wX%z%wX~Ok!pOl!qOm!oOn!oOo!rOp!sOs!tO!x%wX~P)pOV!zOg!|Oo0cOv0qO!PrO~P'vOV#OOo0cOv0qO!W#PO~P'vOV#SOa#TOo0cOv0qO![#UO~P'vOQ#XO%`#XO%a#ZO~OQ#^OR#[O%`#^O%a#`O~OV%iX_%iXa%iXh%iXk%iXl%iXm%iXn%iXo%iXp%iXs%iXz%iX!X%iX!f%iX%j%iX%k%iX%l%iX%m%iX%n%iX%o%iX%p%iX%q%iX%r%iX%s%iXg%iX!T%iX!U%iX~O&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O{%iX!x%iX#g%iX%[%iX%_%iX%z%iX%{%iX!W%iX![%iX!Q%iX#[%iXt%iX!m%iX~P,eOz#dO{%hX!x%hX#g%hX%[%hX%_%hX%z%hX~Oo0cOv0qO~P'vO#g#gO%[#iO%_#iO~O%uWO~O!T#nO#u!VO#z!WO#}hO~OopO~P'vOV#sOa#tO%uWO{wP~OV#xOo0cOv0qO!Q#yO~P'vO{#{O!x$QO%z#|O#g!yX%[!yX%_!yX~OV#xOo0cOv0qO#g#SX%[#SX%_#SX~P'vOo0cOv0qO#g#WX%[#WX%_#WX~P'vOh$WO%uWO~O!f$YO!r$YO%uWO~OV$eO~P'vO!U$gO#s$hO#u$iO~O{$jO~OV$qO~P'vOS$sO%[$rO%_$rO%c$tO~OV$}Oa$}Og%POo0cOv0qO~P'vOo0cOv0qO{%SO~P'vO&Y%UO~Oa!bOh!iO!X!kO!f!mOVba_bakbalbambanbaobapbasbazba{ba!xba#gba%[ba%_ba%jba%kba%lba%mba%nba%oba%pba%qba%rba%sba%zbagba!Tba!Uba%{ba!Wba![ba!Qba#[batba!mba~On%ZO~Oo%ZO~P'vOo0cO~P'vOk0eOl0fOm0dOn0dOo0mOp0nOs0rOg%wX!T%wX!U%wX%{%wX!W%wX![%wX!Q%wX#[%wX!m%wX~P)pO%{%]Og%vXz%vX!T%vX!U%vX!W%vX{%vX~Og%_Oz%`O!T%dO!U%cO~Og%_O~Oz%gO!T%dO!U%cO!W&SX~O!W%kO~Oz%lO{%nO!T%dO!U%cO![%}X~O![%rO~O![%sO~OQ#XO%`#XO%a%uO~OV%wOo0cOv0qO!PrO~P'vOQ#^OR#[O%`#^O%a%zO~OV!qa_!qaa!qah!qak!qal!qam!qan!qao!qap!qas!qaz!qa{!qa!X!qa!f!qa!x!qa#g!qa%[!qa%_!qa%j!qa%k!qa%l!qa%m!qa%n!qa%o!qa%p!qa%q!qa%r!qa%s!qa%z!qag!qa!T!qa!U!qa%{!qa!W!qa![!qa!Q!qa#[!qat!qa!m!qa~P#yOz%|O{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~P%SOV&OOopOvqO{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~P'vOz%|O{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~OPdOVaOopOvqO!PrO!Q{O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO#g$zX%[$zX%_$zX~P'vO#g#gO%[&TO%_&TO~O!f&UOh&sX%[&sXz&sX#[&sX#g&sX%_&sX#Z&sXg&sX~Oh!iO%[&WO~Okealeameaneaoeapeaseazea{ea!xea#gea%[ea%_ea%zeagea!Tea!Uea%{ea!Wea![ea!Qea#[eatea!mea~P%SOsqazqa{qa#gqa%[qa%_qa%zqa~Ok!pOl!qOm!oOn!oOo!rOp!sO!xqa~PEcO%z&YOz%yX{%yX~O%uWOz%yX{%yX~Oz&]O{wX~O{&_O~Oz%lO#g%}X%[%}X%_%}Xg%}X{%}X![%}X!m%}X%z%}X~OV0lOo0cOv0qO!PrO~P'vO%z#|O#gUa%[Ua%_Ua~Oz&hO#g&PX%[&PX%_&PXn&PX~P%SOz&kO!Q&jO#g#Wa%[#Wa%_#Wa~Oz&lO#[&nO#g&rX%[&rX%_&rXg&rX~O!f$YO!r$YO#Z&qO%uWO~O#Z&qO~Oz&sO#g&tX%[&tX%_&tX~Oz&uO#g&pX%[&pX%_&pX{&pX~O!X&wO%z&xO~Oz&|On&wX~P%SOn'PO~OPdOVaOopOvqO!PrO!Q{O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO%['UO~P'vOt'YO#p'WO#q'XOP#naV#naf#nah#nao#nas#nav#na!P#na!Q#na!T#na!U#na!X#na!]#na!h#na!r#na!s#na!t#na!{#na!}#na#P#na#R#na#T#na#X#na#Z#na#^#na#_#na#a#na#c#na#l#na#o#na#s#na#u#na#z#na#}#na$P#na%X#na%o#na%p#na%t#na%u#na&Z#na&[#na&]#na&^#na&_#na&`#na&a#na&b#na&c#na&d#na&e#na&f#na&g#na&h#na&i#na&j#na%Z#na%_#na~Oz'ZO#[']O{&xX~Oh'_O!X&wO~Oh!iO{$jO!X&wO~O{'eO~P%SO%['hO%_'hO~OS'iO%['hO%_'hO~OV!aO_!aOa!bOh!iO!X!kO!f!mO%l!^O%m!_O%n!_O%o!`O%p!`O%q!aO%r!aO%s!aOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~O%k!]O~P!#uO%kWi~P!#uOV!aO_!aOa!bOh!iO!X!kO!f!mO%o!`O%p!`O%q!aO%r!aO%s!aOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%kWi%lWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~O%m!_O%n!_O~P!&pO%mWi%nWi~P!&pOa!bOh!iO!X!kO!f!mOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%kWi%lWi%mWi%nWi%oWi%pWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~OV!aO_!aO%q!aO%r!aO%s!aO~P!)nOVWi_Wi%qWi%rWi%sWi~P!)nO!T%dO!U%cOg&VXz&VX~O%z'kO%{'kO~P,eOz'mOg&UX~Og'oO~Oz'pO{'rO!W&XX~Oo0cOv0qOz'pO{'sO!W&XX~P'vO!W'uO~Om!oOn!oOo!rOp!sOkjisjizji{ji!xji#gji%[ji%_ji%zji~Ol!qO~P!.aOlji~P!.aOk0eOl0fOm0dOn0dOo0mOp0nO~Ot'wO~P!/jOV'|Og'}Oo0cOv0qO~P'vOg'}Oz(OO~Og(QO~O!U(SO~Og(TOz(OO!T%dO!U%cO~P%SOk0eOl0fOm0dOn0dOo0mOp0nOgqa!Tqa!Uqa%{qa!Wqa![qa!Qqa#[qatqa!mqa~PEcOV'|Oo0cOv0qO!W&Sa~P'vOz(WO!W&Sa~O!W(XO~Oz(WO!T%dO!U%cO!W&Sa~P%SOV(]Oo0cOv0qO![%}a#g%}a%[%}a%_%}ag%}a{%}a!m%}a%z%}a~P'vOz(^O![%}a#g%}a%[%}a%_%}ag%}a{%}a!m%}a%z%}a~O![(aO~Oz(^O!T%dO!U%cO![%}a~P%SOz(dO!T%dO!U%cO![&Ta~P%SOz(gO{&lX![&lX!m&lX%z&lX~O{(kO![(mO!m(nO%z(jO~OV&OOopOvqO{%hi!x%hi#g%hi%[%hi%_%hi%z%hi~P'vOz(pO{%hi!x%hi#g%hi%[%hi%_%hi%z%hi~O!f&UOh&sa%[&saz&sa#[&sa#g&sa%_&sa#Z&sag&sa~O%[(uO~OV#sOa#tO%uWO~Oz&]O{wa~OopOvqO~P'vOz(^O#g%}a%[%}a%_%}ag%}a{%}a![%}a!m%}a%z%}a~P%SOz(zO#g%hX%[%hX%_%hX%z%hX~O%z#|O#gUi%[Ui%_Ui~O#g&Pa%[&Pa%_&Pan&Pa~P'vOz(}O#g&Pa%[&Pa%_&Pan&Pa~O%uWO#g&ra%[&ra%_&rag&ra~Oz)SO#g&ra%[&ra%_&rag&ra~Og)VO~OV)WOh$WO%uWO~O#Z)XO~O%uWO#g&ta%[&ta%_&ta~Oz)ZO#g&ta%[&ta%_&ta~Oo0cOv0qO#g&pa%[&pa%_&pa{&pa~P'vOz)^O#g&pa%[&pa%_&pa{&pa~OV)`Oa)`O%uWO~O%z)eO~Ot)hO#j)gOP#hiV#hif#hih#hio#his#hiv#hi!P#hi!Q#hi!T#hi!U#hi!X#hi!]#hi!h#hi!r#hi!s#hi!t#hi!{#hi!}#hi#P#hi#R#hi#T#hi#X#hi#Z#hi#^#hi#_#hi#a#hi#c#hi#l#hi#o#hi#s#hi#u#hi#z#hi#}#hi$P#hi%X#hi%o#hi%p#hi%t#hi%u#hi&Z#hi&[#hi&]#hi&^#hi&_#hi&`#hi&a#hi&b#hi&c#hi&d#hi&e#hi&f#hi&g#hi&h#hi&i#hi&j#hi%Z#hi%_#hi~Ot)iOP#kiV#kif#kih#kio#kis#kiv#ki!P#ki!Q#ki!T#ki!U#ki!X#ki!]#ki!h#ki!r#ki!s#ki!t#ki!{#ki!}#ki#P#ki#R#ki#T#ki#X#ki#Z#ki#^#ki#_#ki#a#ki#c#ki#l#ki#o#ki#s#ki#u#ki#z#ki#}#ki$P#ki%X#ki%o#ki%p#ki%t#ki%u#ki&Z#ki&[#ki&]#ki&^#ki&_#ki&`#ki&a#ki&b#ki&c#ki&d#ki&e#ki&f#ki&g#ki&h#ki&i#ki&j#ki%Z#ki%_#ki~OV)kOn&wa~P'vOz)lOn&wa~Oz)lOn&wa~P%SOn)pO~O%Y)tO~Ot)wO#p'WO#q)vOP#niV#nif#nih#nio#nis#niv#ni!P#ni!Q#ni!T#ni!U#ni!X#ni!]#ni!h#ni!r#ni!s#ni!t#ni!{#ni!}#ni#P#ni#R#ni#T#ni#X#ni#Z#ni#^#ni#_#ni#a#ni#c#ni#l#ni#o#ni#s#ni#u#ni#z#ni#}#ni$P#ni%X#ni%o#ni%p#ni%t#ni%u#ni&Z#ni&[#ni&]#ni&^#ni&_#ni&`#ni&a#ni&b#ni&c#ni&d#ni&e#ni&f#ni&g#ni&h#ni&i#ni&j#ni%Z#ni%_#ni~OV)zOo0cOv0qO{$jO~P'vOo0cOv0qO{&xa~P'vOz*OO{&xa~OV*SOa*TOg*WO%q*UO%uWO~O{$jO&{*YO~Oh'_O~Oh!iO{$jO~O%[*_O~O%[*aO%_*aO~OV$}Oa$}Oo0cOv0qOg&Ua~P'vOz*dOg&Ua~Oo0cOv0qO{*gO!W&Xa~P'vOz*hO!W&Xa~Oo0cOv0qOz*hO{*kO!W&Xa~P'vOo0cOv0qOz*hO!W&Xa~P'vOz*hO{*kO!W&Xa~Om0dOn0dOo0mOp0nOgjikjisjizji!Tji!Uji%{ji!Wji{ji![ji#gji%[ji%_ji!Qji#[jitji!mji%zji~Ol0fO~P!NkOlji~P!NkOV'|Og*pOo0cOv0qO~P'vOn*rO~Og*pOz*tO~Og*uO~OV'|Oo0cOv0qO!W&Si~P'vOz*vO!W&Si~O!W*wO~OV(]Oo0cOv0qO![%}i#g%}i%[%}i%_%}ig%}i{%}i!m%}i%z%}i~P'vOz*zO!T%dO!U%cO![&Ti~Oz*}O![%}i#g%}i%[%}i%_%}ig%}i{%}i!m%}i%z%}i~O![+OO~Oa+QOo0cOv0qO![&Ti~P'vOz*zO![&Ti~O![+SO~OV+UOo0cOv0qO{&la![&la!m&la%z&la~P'vOz+VO{&la![&la!m&la%z&la~O!]+YO&n+[O![!nX~O![+^O~O{(kO![+_O~O{(kO![+_O!m+`O~OV&OOopOvqO{%hq!x%hq#g%hq%[%hq%_%hq%z%hq~P'vOz$ri{$ri!x$ri#g$ri%[$ri%_$ri%z$ri~P%SOV&OOopOvqO~P'vOV&OOo0cOv0qO#g%ha%[%ha%_%ha%z%ha~P'vOz+aO#g%ha%[%ha%_%ha%z%ha~Oz$ia#g$ia%[$ia%_$ian$ia~P%SO#g&Pi%[&Pi%_&Pin&Pi~P'vOz+dO#g#Wq%[#Wq%_#Wq~O#[+eOz$va#g$va%[$va%_$vag$va~O%uWO#g&ri%[&ri%_&rig&ri~Oz+gO#g&ri%[&ri%_&rig&ri~OV+iOh$WO%uWO~O%uWO#g&ti%[&ti%_&ti~Oo0cOv0qO#g&pi%[&pi%_&pi{&pi~P'vO{#{Oz#eX!W#eX~Oz+mO!W&uX~O!W+oO~Ot+rO#j)gOP#hqV#hqf#hqh#hqo#hqs#hqv#hq!P#hq!Q#hq!T#hq!U#hq!X#hq!]#hq!h#hq!r#hq!s#hq!t#hq!{#hq!}#hq#P#hq#R#hq#T#hq#X#hq#Z#hq#^#hq#_#hq#a#hq#c#hq#l#hq#o#hq#s#hq#u#hq#z#hq#}#hq$P#hq%X#hq%o#hq%p#hq%t#hq%u#hq&Z#hq&[#hq&]#hq&^#hq&_#hq&`#hq&a#hq&b#hq&c#hq&d#hq&e#hq&f#hq&g#hq&h#hq&i#hq&j#hq%Z#hq%_#hq~On$|az$|a~P%SOV)kOn&wi~P'vOz+yOn&wi~Oz,TO{$jO#[,TO~O#q,VOP#nqV#nqf#nqh#nqo#nqs#nqv#nq!P#nq!Q#nq!T#nq!U#nq!X#nq!]#nq!h#nq!r#nq!s#nq!t#nq!{#nq!}#nq#P#nq#R#nq#T#nq#X#nq#Z#nq#^#nq#_#nq#a#nq#c#nq#l#nq#o#nq#s#nq#u#nq#z#nq#}#nq$P#nq%X#nq%o#nq%p#nq%t#nq%u#nq&Z#nq&[#nq&]#nq&^#nq&_#nq&`#nq&a#nq&b#nq&c#nq&d#nq&e#nq&f#nq&g#nq&h#nq&i#nq&j#nq%Z#nq%_#nq~O#[,WOz%Oa{%Oa~Oo0cOv0qO{&xi~P'vOz,YO{&xi~O{#{O%z,[Og&zXz&zX~O%uWOg&zXz&zX~Oz,`Og&yX~Og,bO~O%Y,eO~O!T%dO!U%cOg&Viz&Vi~OV$}Oa$}Oo0cOv0qOg&Ui~P'vO{,hOz$la!W$la~Oo0cOv0qO{,iOz$la!W$la~P'vOo0cOv0qO{*gO!W&Xi~P'vOz,lO!W&Xi~Oo0cOv0qOz,lO!W&Xi~P'vOz,lO{,oO!W&Xi~Og$hiz$hi!W$hi~P%SOV'|Oo0cOv0qO~P'vOn,qO~OV'|Og,rOo0cOv0qO~P'vOV'|Oo0cOv0qO!W&Sq~P'vOz$gi![$gi#g$gi%[$gi%_$gig$gi{$gi!m$gi%z$gi~P%SOV(]Oo0cOv0qO~P'vOa+QOo0cOv0qO![&Tq~P'vOz,sO![&Tq~O![,tO~OV(]Oo0cOv0qO![%}q#g%}q%[%}q%_%}qg%}q{%}q!m%}q%z%}q~P'vO{,uO~OV+UOo0cOv0qO{&li![&li!m&li%z&li~P'vOz,zO{&li![&li!m&li%z&li~O!]+YO&n+[O![!na~O{(kO![,}O~OV&OOo0cOv0qO#g%hi%[%hi%_%hi%z%hi~P'vOz-OO#g%hi%[%hi%_%hi%z%hi~O%uWO#g&rq%[&rq%_&rqg&rq~Oz-RO#g&rq%[&rq%_&rqg&rq~OV)`Oa)`O%uWO!W&ua~Oz-TO!W&ua~On$|iz$|i~P%SOV)kO~P'vOV)kOn&wq~P'vOt-XOP#myV#myf#myh#myo#mys#myv#my!P#my!Q#my!T#my!U#my!X#my!]#my!h#my!r#my!s#my!t#my!{#my!}#my#P#my#R#my#T#my#X#my#Z#my#^#my#_#my#a#my#c#my#l#my#o#my#s#my#u#my#z#my#}#my$P#my%X#my%o#my%p#my%t#my%u#my&Z#my&[#my&]#my&^#my&_#my&`#my&a#my&b#my&c#my&d#my&e#my&f#my&g#my&h#my&i#my&j#my%Z#my%_#my~O%Z-]O%_-]O~P`O#q-^OP#nyV#nyf#nyh#nyo#nys#nyv#ny!P#ny!Q#ny!T#ny!U#ny!X#ny!]#ny!h#ny!r#ny!s#ny!t#ny!{#ny!}#ny#P#ny#R#ny#T#ny#X#ny#Z#ny#^#ny#_#ny#a#ny#c#ny#l#ny#o#ny#s#ny#u#ny#z#ny#}#ny$P#ny%X#ny%o#ny%p#ny%t#ny%u#ny&Z#ny&[#ny&]#ny&^#ny&_#ny&`#ny&a#ny&b#ny&c#ny&d#ny&e#ny&f#ny&g#ny&h#ny&i#ny&j#ny%Z#ny%_#ny~Oz-aO{$jO#[-aO~Oo0cOv0qO{&xq~P'vOz-dO{&xq~O%z,[Og&zaz&za~O{#{Og&zaz&za~OV*SOa*TO%q*UO%uWOg&ya~Oz-hOg&ya~O$S-lO~OV$}Oa$}Oo0cOv0qO~P'vOo0cOv0qO{-mOz$li!W$li~P'vOo0cOv0qOz$li!W$li~P'vO{-mOz$li!W$li~Oo0cOv0qO{*gO~P'vOo0cOv0qO{*gO!W&Xq~P'vOz-pO!W&Xq~Oo0cOv0qOz-pO!W&Xq~P'vOs-sO!T%dO!U%cOg&Oq!W&Oq![&Oqz&Oq~P!/jOa+QOo0cOv0qO![&Ty~P'vOz$ji![$ji~P%SOa+QOo0cOv0qO~P'vOV+UOo0cOv0qO~P'vOV+UOo0cOv0qO{&lq![&lq!m&lq%z&lq~P'vO{(kO![-xO!m-yO%z-wO~OV&OOo0cOv0qO#g%hq%[%hq%_%hq%z%hq~P'vO%uWO#g&ry%[&ry%_&ryg&ry~OV)`Oa)`O%uWO!W&ui~Ot-}OP#m!RV#m!Rf#m!Rh#m!Ro#m!Rs#m!Rv#m!R!P#m!R!Q#m!R!T#m!R!U#m!R!X#m!R!]#m!R!h#m!R!r#m!R!s#m!R!t#m!R!{#m!R!}#m!R#P#m!R#R#m!R#T#m!R#X#m!R#Z#m!R#^#m!R#_#m!R#a#m!R#c#m!R#l#m!R#o#m!R#s#m!R#u#m!R#z#m!R#}#m!R$P#m!R%X#m!R%o#m!R%p#m!R%t#m!R%u#m!R&Z#m!R&[#m!R&]#m!R&^#m!R&_#m!R&`#m!R&a#m!R&b#m!R&c#m!R&d#m!R&e#m!R&f#m!R&g#m!R&h#m!R&i#m!R&j#m!R%Z#m!R%_#m!R~Oo0cOv0qO{&xy~P'vOV*SOa*TO%q*UO%uWOg&yi~O$S-lO%Z.VO%_.VO~OV.aOh._O!X.^O!].`O!h.YO!s.[O!t.[O%p.XO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O~Oo0cOv0qOz$lq!W$lq~P'vO{.fOz$lq!W$lq~Oo0cOv0qO{*gO!W&Xy~P'vOz.gO!W&Xy~Oo0cOv.kO~P'vOs-sO!T%dO!U%cOg&Oy!W&Oy![&Oyz&Oy~P!/jO{(kO![.nO~O{(kO![.nO!m.oO~OV*SOa*TO%q*UO%uWO~Oh.tO!f.rOz$TX#[$TX%j$TXg$TX~Os$TX{$TX!W$TX![$TX~P$-bO%o.vO%p.vOs$UXz$UX{$UX#[$UX%j$UX!W$UXg$UX![$UX~O!h.xO~Oz.|O#[/OO%j.yOs&|X{&|X!W&|Xg&|X~Oa/RO~P$)zOh.tOs&}Xz&}X{&}X#[&}X%j&}X!W&}Xg&}X![&}X~Os/VO{$jO~Oo0cOv0qOz$ly!W$ly~P'vOo0cOv0qO{*gO!W&X!R~P'vOz/ZO!W&X!R~Og&RXs&RX!T&RX!U&RX!W&RX![&RXz&RX~P!/jOs-sO!T%dO!U%cOg&Qa!W&Qa![&Qaz&Qa~O{(kO![/^O~O!f.rOh$[as$[az$[a{$[a#[$[a%j$[a!W$[ag$[a![$[a~O!h/eO~O%o.vO%p.vOs$Uaz$Ua{$Ua#[$Ua%j$Ua!W$Uag$Ua![$Ua~O%j.yOs$Yaz$Ya{$Ya#[$Ya!W$Yag$Ya![$Ya~Os&|a{&|a!W&|ag&|a~P$)nOz/jOs&|a{&|a!W&|ag&|a~O!W/mO~Og/mO~O{/oO~O![/pO~Oo0cOv0qO{*gO!W&X!Z~P'vO{/sO~O%z/tO~P$-bOz/uO#[/OO%j.yOg'PX~Oz/uOg'PX~Og/wO~O!h/xO~O#[/OOs%Saz%Sa{%Sa%j%Sa!W%Sag%Sa![%Sa~O#[/OO%j.yOs%Waz%Wa{%Wa!W%Wag%Wa~Os&|i{&|i!W&|ig&|i~P$)nOz/zO#[/OO%j.yO!['Oa~Og'Pa~P$)nOz0SOg'Pa~Oa0UO!['Oi~P$)zOz0WO!['Oi~Oz0WO#[/OO%j.yO!['Oi~O#[/OO%j.yOg$biz$bi~O%z0ZO~P$-bO#[/OO%j.yOg%Vaz%Va~Og'Pi~P$)nO{0^O~Oa0UO!['Oq~P$)zOz0`O!['Oq~O#[/OO%j.yOz%Ui![%Ui~Oa0UO~P$)zOa0UO!['Oy~P$)zO#[/OO%j.yOg$ciz$ci~O#[/OO%j.yOz%Uq![%Uq~Oz+aO#g%ha%[%ha%_%ha%z%ha~P%SOV&OOo0cOv0qO~P'vOn0hO~Oo0hO~P'vO{0iO~Ot0jO~P!/jO&]&Z&j&h&i&g&f&d&e&c&b&`&a&_&^&[%u~",goto:"!=j'QPPPPPP'RP'Z*s+[+t,_,y-fP.SP'Z.r.r'ZPPP'Z2[PPPPPP2[5PPP5PP7b7k=sPP=v>h>kPP'Z'ZPP>zPP'Z'ZPP'Z'Z'Z'Z'Z?O?w'ZP?zP@QDXGuGyPG|HWH['ZPPPH_Hk'RP'R'RP'RP'RP'RP'RP'R'R'RP'RPP'RPP'RP'RPHqH}IVPI^IdPI^PI^I^PPPI^PKrPK{LVL]KrPI^LfPI^PLmLsPLwM]MzNeLwLwNkNxLwLwLwLw! ^! d! g! l! o! y!!P!!]!!o!!u!#P!#V!#s!#y!$P!$Z!$a!$g!$y!%T!%Z!%a!%k!%q!%w!%}!&T!&Z!&e!&k!&u!&{!'U!'[!'k!'s!'}!(UPPPPPPPPPPP!([!(_!(e!(n!(x!)TPPPPPPPPPPPP!-u!/Z!3^!6oPP!6w!7W!7a!8Y!8P!8c!8i!8l!8o!8r!8z!9jPPPPPPPPPPPPPPPPP!9m!9q!9wP!:]!:a!:m!:v!;S!;j!;m!;p!;v!;|!_![!]Do!]!^Es!^!_FZ!_!`Gk!`!aHX!a!b%T!b!cIf!c!dJU!d!eK^!e!hJU!h!i!#f!i!tJU!t!u!,|!u!wJU!w!x!.t!x!}JU!}#O!0S#O#P&o#P#Q!0j#Q#R!1Q#R#SJU#S#T%T#T#UJU#U#VK^#V#YJU#Y#Z!#f#Z#fJU#f#g!,|#g#iJU#i#j!.t#j#oJU#o#p!1n#p#q!1s#q#r!2a#r#s!2f#s$g%T$g;'SJU;'S;=`KW<%lOJU`%YT&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T`%lP;=`<%l%To%v]&n`%c_OX%TXY%oY[%T[]%o]p%Tpq%oq#O%T#O#P&o#P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To&tX&n`OY%TYZ%oZ]%T]^%o^#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc'f[&n`O!_%T!_!`([!`#T%T#T#U(r#U#f%T#f#g(r#g#h(r#h#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(cTmR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(yT!mR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk)aV&n`&[ZOr%Trs)vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk){V&n`Or%Trs*bs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk*iT&n`&^ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To+PZS_&n`OY*xYZ%TZ]*x]^%T^#o*x#o#p+r#p#q*x#q#r+r#r;'S*x;'S;=`,^<%lO*x_+wTS_OY+rZ]+r^;'S+r;'S;=`,W<%lO+r_,ZP;=`<%l+ro,aP;=`<%l*xj,kV%rQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-XT!xY&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-oV%lQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.]V&n`&ZZOw%Twx.rx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.wV&n`Ow%Twx/^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/eT&n`&]ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/{ThZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc0cTgR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk0yXVZ&n`Oz%Tz{1f{!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk1mVaR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk2ZV%oZ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc2wTzR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To3_W%pZ&n`O!_%T!_!`-Q!`!a3w!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Td4OT&{S&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk4fX!fQ&n`O!O%T!O!P5R!P!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5WV&n`O!O%T!O!P5m!P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5tT!rZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti6[a!hX&n`O!Q%T!Q![6T![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S6T#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti7fZ&n`O{%T{|8X|}%T}!O8X!O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8^V&n`O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8z]!hX&n`O!Q%T!Q![8s![!l%T!l!m9s!m#R%T#R#S8s#S#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti9zT!hX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk:bX%qR&n`O!P%T!P!Q:}!Q!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj;UV%sQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti;ro!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!d%T!d!e?q!e!g%T!g!h7a!h!l%T!l!m9s!m!q%T!q!rA]!r!z%T!z!{Bq!{#R%T#R#S>_#S#U%T#U#V?q#V#X%T#X#Y7a#Y#^%T#^#_9s#_#c%T#c#dA]#d#l%T#l#mBq#m#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti=xV&n`O!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti>fc!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S>_#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti?vY&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti@mY!hX&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiAbX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBUX!hX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBv]&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiCv]!hX&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToDvV{_&n`O!_%T!_!`E]!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TcEdT%{R&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkEzT#gZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkFbXmR&n`O!^%T!^!_F}!_!`([!`!a([!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjGUV%mQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkGrV%zZ&n`O!_%T!_!`([!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkH`WmR&n`O!_%T!_!`([!`!aHx!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjIPV%nQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkIoV_Q#}P&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToJ_]&n`&YS%uZO!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoKZP;=`<%lJUoKge&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!tJU!t!uLx!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#gLx#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoMRa&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUkN_V&n`&`ZOr%TrsNts#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkNyV&n`Or%Trs! `s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! gT&n`&bZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! }V&n`&_ZOw%Twx!!dx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!!iV&n`Ow%Twx!#Ox#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!#VT&n`&aZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!#oe&n`&YS%uZOr%Trs!%Qsw%Twx!&px!Q%T!Q![JU![!c%T!c!tJU!t!u!(`!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#g!(`#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!%XV&n`&dZOr%Trs!%ns#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!%sV&n`Or%Trs!&Ys#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&aT&n`&fZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&wV&n`&cZOw%Twx!'^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!'cV&n`Ow%Twx!'xx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!(PT&n`&eZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!(ia&n`&YS%uZOr%Trs!)nsw%Twx!+^x!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!)uV&n`&hZOr%Trs!*[s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*aV&n`Or%Trs!*vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*}T&n`&jZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!+eV&n`&gZOw%Twx!+zx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,PV&n`Ow%Twx!,fx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,mT&n`&iZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!-Vi&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!dJU!d!eLx!e!hJU!h!i!(`!i!}JU!}#R%T#R#SJU#S#T%T#T#UJU#U#VLx#V#YJU#Y#Z!(`#Z#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUo!.}a&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!0ZT!XZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc!0qT!WR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj!1XV%kQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!1sO!]~k!1zV%jR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!2fO![~i!2mT%tX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T",tokenizers:[mIt,dIt,uIt,gIt,0,1,2,3,4],topRules:{Script:[0,5]},specialized:[{term:221,get:e=>vIt[e]||-1}],tokenPrec:7668}),_ee=new zU,G_e=new Set(["Script","Body","FunctionDefinition","ClassDefinition","LambdaExpression","ForStatement","MatchClause"]);function f2(e){return(t,n,i)=>{if(i)return!1;let r=t.node.getChild("VariableName");return r&&n(r,e),!0}}const wIt={FunctionDefinition:f2("function"),ClassDefinition:f2("class"),ForStatement(e,t,n){if(n){for(let i=e.node.firstChild;i;i=i.nextSibling)if(i.name=="VariableName")t(i,"variable");else if(i.name=="in")break}},ImportStatement(e,t){var n,i;let{node:r}=e,s=((n=r.firstChild)===null||n===void 0?void 0:n.name)=="from";for(let a=r.getChild("import");a;a=a.nextSibling)a.name=="VariableName"&&((i=a.nextSibling)===null||i===void 0?void 0:i.name)!="as"&&t(a,s?"variable":"namespace")},AssignStatement(e,t){for(let n=e.node.firstChild;n;n=n.nextSibling)if(n.name=="VariableName")t(n,"variable");else if(n.name==":"||n.name=="AssignOp")break},ParamList(e,t){for(let n=null,i=e.node.firstChild;i;i=i.nextSibling)i.name=="VariableName"&&(!n||!/\*|AssignOp/.test(n.name))&&t(i,"variable"),n=i},CapturePattern:f2("variable"),AsPattern:f2("variable"),__proto__:null};function K_e(e,t){let n=_ee.get(t);if(n)return n;let i=[],r=!0;function s(a,l){let c=e.sliceString(a.from,a.to);i.push({label:c,type:l})}return t.cursor(er.IncludeAnonymous).iterate(a=>{if(a.name){let l=wIt[a.name];if(l&&l(a,s,r)||!r&&G_e.has(a.name))return!1;r=!1}else if(a.to-a.from>8192){for(let l of K_e(e,a.node))i.push(l);return!1}}),_ee.set(t,i),i}const Nee=/^[\w\xa1-\uffff][\w\d\xa1-\uffff]*$/,X_e=["String","FormatString","Comment","PropertyName"];function OIt(e){let t=Or(e.state).resolveInner(e.pos,-1);if(X_e.indexOf(t.name)>-1)return null;let n=t.name=="VariableName"||t.to-t.from<20&&Nee.test(e.state.sliceDoc(t.from,t.to));if(!n&&!e.explicit)return null;let i=[];for(let r=t;r;r=r.parent)G_e.has(r.name)&&(i=i.concat(K_e(e.state.doc,r)));return{options:i,from:n?t.from:e.pos,validFor:Nee}}const SIt=["__annotations__","__builtins__","__debug__","__doc__","__import__","__name__","__loader__","__package__","__spec__","False","None","True"].map(e=>({label:e,type:"constant"})).concat(["ArithmeticError","AssertionError","AttributeError","BaseException","BlockingIOError","BrokenPipeError","BufferError","BytesWarning","ChildProcessError","ConnectionAbortedError","ConnectionError","ConnectionRefusedError","ConnectionResetError","DeprecationWarning","EOFError","Ellipsis","EncodingWarning","EnvironmentError","Exception","FileExistsError","FileNotFoundError","FloatingPointError","FutureWarning","GeneratorExit","IOError","ImportError","ImportWarning","IndentationError","IndexError","InterruptedError","IsADirectoryError","KeyError","KeyboardInterrupt","LookupError","MemoryError","ModuleNotFoundError","NameError","NotADirectoryError","NotImplemented","NotImplementedError","OSError","OverflowError","PendingDeprecationWarning","PermissionError","ProcessLookupError","RecursionError","ReferenceError","ResourceWarning","RuntimeError","RuntimeWarning","StopAsyncIteration","StopIteration","SyntaxError","SyntaxWarning","SystemError","SystemExit","TabError","TimeoutError","TypeError","UnboundLocalError","UnicodeDecodeError","UnicodeEncodeError","UnicodeError","UnicodeTranslateError","UnicodeWarning","UserWarning","ValueError","Warning","ZeroDivisionError"].map(e=>({label:e,type:"type"}))).concat(["bool","bytearray","bytes","classmethod","complex","float","frozenset","int","list","map","memoryview","object","range","set","staticmethod","str","super","tuple","type"].map(e=>({label:e,type:"class"}))).concat(["abs","aiter","all","anext","any","ascii","bin","breakpoint","callable","chr","compile","delattr","dict","dir","divmod","enumerate","eval","exec","exit","filter","format","getattr","globals","hasattr","hash","help","hex","id","input","isinstance","issubclass","iter","len","license","locals","max","min","next","oct","open","ord","pow","print","property","quit","repr","reversed","round","setattr","slice","sorted","sum","vars","zip"].map(e=>({label:e,type:"function"}))),kIt=[ys("def ${name}(${params}):\n ${}",{label:"def",detail:"function",type:"keyword"}),ys("for ${name} in ${collection}:\n ${}",{label:"for",detail:"loop",type:"keyword"}),ys("while ${}:\n ${}",{label:"while",detail:"loop",type:"keyword"}),ys("try:\n ${}\nexcept ${error}:\n ${}",{label:"try",detail:"/ except block",type:"keyword"}),ys(`if \${}: +`);i=r<0?n:n.slice(0,r)}return t+i.length>this.to?i.slice(0,this.to-t):i}prevLineEnd(){return this.atEnd?this.lineStart:this.lineStart-1}startContext(t,n,i=0){this.block=ej.create(t,i,this.lineStart+n,this.block.hash,this.lineStart+this.line.text.length),this.stack.push(this.block)}startComposite(t,n,i=0){this.startContext(this.parser.getNodeType(t),n,i)}addNode(t,n,i){typeof t=="number"&&(t=new bi(this.parser.nodeSet.types[t],px,px,(i??this.prevLineEnd())-n)),this.block.addChild(t,n-this.block.from)}addElement(t){this.block.addChild(t.toTree(this.parser.nodeSet),t.from-this.block.from)}addLeafElement(t,n){this.addNode(this.buffer.writeElements(l8(n.children,t.marks),-n.from).finish(n.type,n.to-n.from),n.from)}finishContext(){let t=this.stack.pop(),n=this.stack[this.stack.length-1];n.addChild(t.toTree(this.parser.nodeSet),t.from-n.from),this.block=n}finish(){for(;this.stack.length>1;)this.finishContext();return this.addGaps(this.block.toTree(this.parser.nodeSet,this.lineStart))}addGaps(t){return this.ranges.length>1?h_e(this.ranges,0,t.topNode,this.ranges[0].from,this.reusePlaceholders):t}finishLeaf(t){for(let i of t.parsers)if(i.finish(this,t))return;let n=l8(this.parser.parseInline(t.content,t.start),t.marks);this.addNode(this.buffer.writeElements(n,-t.start).finish(jt.Paragraph,t.content.length),t.start)}elt(t,n,i,r){return typeof t=="string"?Qi(this.parser.getNodeType(t),n,i,r):new g_e(t,n)}get buffer(){return new m_e(this.parser.nodeSet)}}function h_e(e,t,n,i,r){let s=e[t].to,a=[],l=[],c=n.from+i;function u(d,f){for(;f?d>=s:d>s;){let h=e[t+1].from-s;i+=h,d+=h,t++,s=e[t].to}}for(let d=n.firstChild;d;d=d.nextSibling){u(d.from+i,!0);let f=d.from+i,h,m=r.get(d.tree);m?h=m:d.to+i>s?(h=h_e(e,t,d,i,r),u(d.to+i,!1)):h=d.toTree(),a.push(h),l.push(f-c)}return u(n.to+i,!1),new bi(n.type,a,l,n.to+i-c,n.tree?n.tree.propValues:void 0)}class LI extends kI{constructor(t,n,i,r,s,a,l,c,u){super(),this.nodeSet=t,this.blockParsers=n,this.leafBlockParsers=i,this.blockNames=r,this.endLeafBlock=s,this.skipContextMarkup=a,this.inlineParsers=l,this.inlineNames=c,this.wrappers=u,this.nodeTypes=Object.create(null);for(let d of t.types)this.nodeTypes[d.name]=d.id}createParse(t,n,i){let r=new gNt(this,t,n,i);for(let s of this.wrappers)r=s(r,t,n,i);return r}configure(t){let n=o8(t);if(!n)return this;let{nodeSet:i,skipContextMarkup:r}=this,s=this.blockParsers.slice(),a=this.leafBlockParsers.slice(),l=this.blockNames.slice(),c=this.inlineParsers.slice(),u=this.inlineNames.slice(),d=this.endLeafBlock.slice(),f=this.wrappers;if(aw(n.defineNodes)){r=Object.assign({},r);let h=i.types.slice(),m;for(let g of n.defineNodes){let{name:b,block:v,composite:y,style:x}=typeof g=="string"?{name:g}:g;if(h.some(k=>k.name==b))continue;y&&(r[h.length]=(k,S,E)=>y(S,E,k.value));let O=h.length,w=y?["Block","BlockContext"]:v?O>=jt.ATXHeading1&&O<=jt.SetextHeading2?["Block","LeafBlock","Heading"]:["Block","LeafBlock"]:void 0;h.push(ta.define({id:O,name:b,props:w&&[[Un.group,w]]})),x&&(m||(m={}),Array.isArray(x)||x instanceof bd?m[b]=x:Object.assign(m,x))}i=new a1(h),m&&(i=i.extend(zh(m)))}if(aw(n.props)&&(i=i.extend(...n.props)),aw(n.remove))for(let h of n.remove){let m=this.blockNames.indexOf(h),g=this.inlineNames.indexOf(h);m>-1&&(s[m]=a[m]=void 0),g>-1&&(c[g]=void 0)}if(aw(n.parseBlock))for(let h of n.parseBlock){let m=l.indexOf(h.name);if(m>-1)s[m]=h.parse,a[m]=h.leaf;else{let g=h.before?pA(l,h.before):h.after?pA(l,h.after)+1:l.length-1;s.splice(g,0,h.parse),a.splice(g,0,h.leaf),l.splice(g,0,h.name)}h.endLeaf&&d.push(h.endLeaf)}if(aw(n.parseInline))for(let h of n.parseInline){let m=u.indexOf(h.name);if(m>-1)c[m]=h.parse;else{let g=h.before?pA(u,h.before):h.after?pA(u,h.after)+1:u.length-1;c.splice(g,0,h.parse),u.splice(g,0,h.name)}}return n.wrap&&(f=f.concat(n.wrap)),new LI(i,s,a,l,d,r,c,u,f)}getNodeType(t){let n=this.nodeTypes[t];if(n==null)throw new RangeError(`Unknown node type '${t}'`);return n}parseInline(t,n){let i=new IQ(this,t,n);e:for(let r=n;r=0){r=l;continue e}}r++}return i.resolveMarkers(0)}}function aw(e){return e!=null&&e.length>0}function o8(e){if(!Array.isArray(e))return e;if(e.length==0)return null;let t=o8(e[0]);if(e.length==1)return t;let n=o8(e.slice(1));if(!n||!t)return t||n;let i=(a,l)=>(a||px).concat(l||px),r=t.wrap,s=n.wrap;return{props:i(t.props,n.props),defineNodes:i(t.defineNodes,n.defineNodes),parseBlock:i(t.parseBlock,n.parseBlock),parseInline:i(t.parseInline,n.parseInline),remove:i(t.remove,n.remove),wrap:r?s?(a,l,c,u)=>r(s(a,l,c,u),l,c,u):r:s}}function pA(e,t){let n=e.indexOf(t);if(n<0)throw new RangeError(`Position specified relative to unknown parser ${t}`);return n}let p_e=[ta.none];for(let e=1,t;t=jt[e];e++)p_e[e]=ta.define({id:e,name:t,props:e>=jt.Escape?[]:[[Un.group,e in i_e?["Block","BlockContext"]:["Block","LeafBlock"]]],top:t=="Document"});const px=[];class m_e{constructor(t){this.nodeSet=t,this.content=[],this.nodes=[]}write(t,n,i,r=0){return this.content.push(t,n,i,4+r*4),this}writeElements(t,n=0){for(let i of t)i.writeTo(this,n);return this}finish(t,n){return bi.build({buffer:this.content,nodeSet:this.nodeSet,reused:this.nodes,topID:t,length:n})}}let gk=class{constructor(t,n,i,r=px){this.type=t,this.from=n,this.to=i,this.children=r}writeTo(t,n){let i=t.content.length;t.writeElements(this.children,n),t.content.push(this.type,this.from+n,this.to+n,t.content.length+4-i)}toTree(t){return new m_e(t).writeElements(this.children,-this.from).finish(this.type,this.to-this.from)}};class g_e{constructor(t,n){this.tree=t,this.from=n}get to(){return this.from+this.tree.length}get type(){return this.tree.type.id}get children(){return px}writeTo(t,n){t.nodes.push(this.tree),t.content.push(t.nodes.length-1,this.from+n,this.to+n,-1)}toTree(){return this.tree}}function Qi(e,t,n,i){return new gk(e,t,n,i)}const b_e={resolve:"Emphasis",mark:"EmphasisMark"},y_e={resolve:"Emphasis",mark:"EmphasisMark"},Pg={},tj={};class Wl{constructor(t,n,i,r){this.type=t,this.from=n,this.to=i,this.side=r}}const aee="!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~";let bk=/[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~\xA1\u2010-\u2027]/;try{bk=new RegExp("[\\p{S}|\\p{P}]","u")}catch{}const M5={Escape(e,t,n){if(t!=92||n==e.end-1)return-1;let i=e.char(n+1);for(let r=0;r]+|[a-z\d.!#$%&'*+/=?^_`{|}~-]+@[a-z\d](?:[a-z\d-]{0,61}[a-z\d])?(?:\.[a-z\d](?:[a-z\d-]{0,61}[a-z\d])?)*)>/i.exec(i);if(r)return e.append(Qi(jt.Autolink,n,n+1+r[0].length,[Qi(jt.LinkMark,n,n+1),Qi(jt.URL,n+1,n+r[0].length),Qi(jt.LinkMark,n+r[0].length,n+1+r[0].length)]));let s=/^!--[^>](?:-[^-]|[^-])*?-->/i.exec(i);if(s)return e.append(Qi(jt.Comment,n,n+1+s[0].length));let a=/^\?[^]*?\?>/.exec(i);if(a)return e.append(Qi(jt.ProcessingInstruction,n,n+1+a[0].length));let l=/^(?:![A-Z][^]*?>|!\[CDATA\[[^]*?\]\]>|\/\s*[a-zA-Z][\w-]*\s*>|\s*[a-zA-Z][\w-]*(\s+[a-zA-Z:_][\w-.:]*(?:\s*=\s*(?:[^\s"'=<>`]+|'[^']*'|"[^"]*"))?)*\s*(\/\s*)?>)/.exec(i);return l?e.append(Qi(jt.HTMLTag,n,n+1+l[0].length)):-1},Emphasis(e,t,n){if(t!=95&&t!=42)return-1;let i=n+1;for(;e.char(i)==t;)i++;let r=e.slice(n-1,n),s=e.slice(i,i+1),a=bk.test(r),l=bk.test(s),c=/\s|^$/.test(r),u=/\s|^$/.test(s),d=!u&&(!l||c||a),f=!c&&(!a||u||l),h=d&&(t==42||!f||a),m=f&&(t==42||!d||l);return e.append(new Wl(t==95?b_e:y_e,n,i,(h?1:0)|(m?2:0)))},HardBreak(e,t,n){if(t==92&&e.char(n+1)==10)return e.append(Qi(jt.HardBreak,n,n+2));if(t==32){let i=n+1;for(;e.char(i)==32;)i++;if(e.char(i)==10&&i>=n+2)return e.append(Qi(jt.HardBreak,n,i+1))}return-1},Link(e,t,n){return t==91?e.append(new Wl(Pg,n,n+1,1)):-1},Image(e,t,n){return t==33&&e.char(n+1)==91?e.append(new Wl(tj,n,n+2,1)):-1},LinkEnd(e,t,n){if(t!=93)return-1;for(let i=e.parts.length-1;i>=0;i--){let r=e.parts[i];if(r instanceof Wl&&(r.type==Pg||r.type==tj)){if(!r.side||e.skipSpace(r.to)==n&&!/[(\[]/.test(e.slice(n+1,n+2)))return e.parts[i]=null,-1;let s=e.takeContent(i),a=e.parts[i]=bNt(e,s,r.type==Pg?jt.Link:jt.Image,r.from,n+1);if(r.type==Pg)for(let l=0;lt?Qi(jt.URL,t+n,s+n):s==e.length?null:!1}}function x_e(e,t,n){let i=e.charCodeAt(t);if(i!=39&&i!=34&&i!=40)return!1;let r=i==40?41:i;for(let s=t+1,a=!1;s=this.end?-1:this.text.charCodeAt(t-this.offset)}get end(){return this.offset+this.text.length}slice(t,n){return this.text.slice(t-this.offset,n-this.offset)}append(t){return this.parts.push(t),t.to}addDelimiter(t,n,i,r,s){return this.append(new Wl(t,n,i,(r?1:0)|(s?2:0)))}get hasOpenLink(){for(let t=this.parts.length-1;t>=0;t--){let n=this.parts[t];if(n instanceof Wl&&(n.type==Pg||n.type==tj))return!0}return!1}addElement(t){return this.append(t)}resolveMarkers(t){for(let i=t;i=t;c--){let b=this.parts[c];if(b instanceof Wl&&b.side&1&&b.type==r.type&&!(s&&(r.side&1||b.side&2)&&(b.to-b.from+a)%3==0&&((b.to-b.from)%3||a%3))){l=b;break}}if(!l)continue;let u=r.type.resolve,d=[],f=l.from,h=r.to;if(s){let b=Math.min(2,l.to-l.from,a);f=l.to-b,h=r.from+b,u=b==1?"Emphasis":"StrongEmphasis"}l.type.mark&&d.push(this.elt(l.type.mark,f,l.to));for(let b=c+1;b=0;n--){let i=this.parts[n];if(i instanceof Wl&&i.type==t&&i.side&1)return n}return null}takeContent(t){let n=this.resolveMarkers(t);return this.parts.length=t,n}getDelimiterAt(t){let n=this.parts[t];return n instanceof Wl?n:null}skipSpace(t){return KO(this.text,t-this.offset)+this.offset}elt(t,n,i,r){return typeof t=="string"?Qi(this.parser.getNodeType(t),n,i,r):new g_e(t,n)}}IQ.linkStart=Pg;IQ.imageStart=tj;function l8(e,t){if(!t.length)return e;if(!e.length)return t;let n=e.slice(),i=0;for(let r of t){for(;i(t?t-1:0))return!1;if(this.fragmentEnd<0){let s=this.fragment.to;for(;s>0&&this.input.read(s-1,s)!=` +`;)s--;this.fragmentEnd=s?s-1:0}let i=this.cursor;i||(i=this.cursor=this.fragment.tree.cursor(),i.firstChild());let r=t+this.fragment.offset;for(;i.to<=r;)if(!i.parent())return!1;for(;;){if(i.from>=r)return this.fragment.from<=n;if(!i.childAfter(r))return!1}}matches(t){let n=this.cursor.tree;return n&&n.prop(Un.contextHash)==t}takeNodes(t){let n=this.cursor,i=this.fragment.offset,r=this.fragmentEnd-(this.fragment.openEnd?1:0),s=t.absoluteLineStart,a=s,l=t.block.children.length,c=a,u=l;for(;;){if(n.to-i>r){if(n.type.isAnonymous&&n.firstChild())continue;break}let d=O_e(n.from-i,t.ranges);if(n.to-i<=t.ranges[t.rangeI].to)t.addNode(n.tree,d);else{let f=new bi(t.parser.nodeSet.types[jt.Paragraph],[],[],0,t.block.hashProp);t.reusePlaceholders.set(f,n.tree),t.addNode(f,d)}if(n.type.is("Block")&&(yNt.indexOf(n.type.id)<0?(a=n.to-i,l=t.block.children.length):(a=c,l=u),c=n.to-i,u=t.block.children.length),!n.nextSibling())break}for(;t.block.children.length>l;)t.block.children.pop(),t.block.positions.pop();return a-s}}function O_e(e,t){let n=e;for(let i=1;ihA[e]),Object.keys(hA).map(e=>f_e[e]),Object.keys(hA),pNt,i_e,Object.keys(M5).map(e=>M5[e]),Object.keys(M5),[]);function ONt(e,t,n){let i=[];for(let r=e.firstChild,s=t;;r=r.nextSibling){let a=r?r.from:n;if(a>s&&i.push({from:s,to:a}),!r)break;s=r.to}return i}function SNt(e){let{codeParser:t,htmlParser:n}=e;return{wrap:LTe((r,s)=>{let a=r.type.id;if(t&&(a==jt.CodeBlock||a==jt.FencedCode)){let l="";if(a==jt.FencedCode){let u=r.node.getChild(jt.CodeInfo);u&&(l=s.read(u.from,u.to))}let c=t(l);if(c)return{parser:c,overlay:u=>u.type.id==jt.CodeText,bracketed:a==jt.FencedCode}}else if(n&&(a==jt.HTMLBlock||a==jt.HTMLTag||a==jt.CommentBlock))return{parser:n,overlay:ONt(r.node,r.from,r.to)};return null})}}const kNt={resolve:"Strikethrough",mark:"StrikethroughMark"},ENt={defineNodes:[{name:"Strikethrough",style:{"Strikethrough/...":ne.strikethrough}},{name:"StrikethroughMark",style:ne.processingInstruction}],parseInline:[{name:"Strikethrough",parse(e,t,n){if(t!=126||e.char(n+1)!=126||e.char(n+2)==126)return-1;let i=e.slice(n-1,n),r=e.slice(n+2,n+3),s=/\s|^$/.test(i),a=/\s|^$/.test(r),l=bk.test(i),c=bk.test(r);return e.addDelimiter(kNt,n,n+2,!a&&(!c||s||l),!s&&(!l||a||c))},after:"Emphasis"}]};function GO(e,t,n=0,i,r=0){let s=0,a=!0,l=-1,c=-1,u=!1,d=()=>{i.push(e.elt("TableCell",r+l,r+c,e.parser.parseInline(t.slice(l,c),r+l)))};for(let f=n;f-1)&&s++,a=!1,i&&(l>-1&&d(),i.push(e.elt("TableDelimiter",f+r,f+r+1))),l=c=-1):(u||h!=32&&h!=9)&&(l<0&&(l=f),c=f+1),u=!u&&h==92}return l>-1&&(s++,i&&d()),s}function oee(e,t){for(let n=t;n\s]*\|?(\s*:?-+:?\s*\|)+(\s*:?-+:?\s*)?$/;class lee{constructor(){this.rows=null}nextLine(t,n,i){if(this.rows==null){this.rows=!1;let r;if((n.next==45||n.next==58||n.next==124)&&S_e.test(r=n.text.slice(n.pos))){let s=[];GO(t,i.content,0,s,i.start)==GO(t,r,0)&&(this.rows=[t.elt("TableHeader",i.start,i.start+i.content.length,s),t.elt("TableDelimiter",t.lineStart+n.pos,t.lineStart+n.text.length)])}}else if(this.rows){let r=[];GO(t,n.text,n.pos,r,t.lineStart),this.rows.push(t.elt("TableRow",t.lineStart+n.pos,t.lineStart+n.text.length,r))}return!1}finish(t,n){return this.rows?(t.addLeafElement(n,t.elt("Table",n.start,n.start+n.content.length,this.rows)),!0):!1}}const CNt={defineNodes:[{name:"Table",block:!0},{name:"TableHeader",style:{"TableHeader/...":ne.heading}},"TableRow",{name:"TableCell",style:ne.content},{name:"TableDelimiter",style:ne.processingInstruction}],parseBlock:[{name:"Table",leaf(e,t){return oee(t.content,0)?new lee:null},endLeaf(e,t,n){if(n.parsers.some(r=>r instanceof lee)||!oee(t.text,t.basePos))return!1;let i=e.peekLine();return S_e.test(i)&&GO(e,t.text,t.basePos)==GO(e,i,t.basePos)},before:"SetextHeading"}]};class TNt{nextLine(){return!1}finish(t,n){return t.addLeafElement(n,t.elt("Task",n.start,n.start+n.content.length,[t.elt("TaskMarker",n.start,n.start+3),...t.parser.parseInline(n.content.slice(3),n.start+3)])),!0}}const ANt={defineNodes:[{name:"Task",block:!0,style:ne.list},{name:"TaskMarker",style:ne.atom}],parseBlock:[{name:"TaskList",leaf(e,t){return/^\[[ xX]\][ \t]/.test(t.content)&&e.parentType().name=="ListItem"?new TNt:null},after:"SetextHeading"}]},cee=/(www\.)|(https?:\/\/)|([\w.+-]{1,100}@)|(mailto:|xmpp:)/gy,uee=/[\w-]+(\.[\w-]+)+(:\d+)?(\/[^\s<]*)?/gy,_Nt=/[\w-]+\.[\w-]+($|[/:])/,dee=/[\w.+-]+@[\w-]+(\.[\w.-]+)+/gy,fee=/\/[a-zA-Z\d@.]+/gy;function hee(e,t,n,i){let r=0;for(let s=t;s-1)return-1;let i=t+n[0].length;for(;;){let r=e[i-1],s;if(/[?!.,:*_~]/.test(r)||r==")"&&hee(e,t,i,")")>hee(e,t,i,"("))i--;else if(r==";"&&(s=/&(?:#\d+|#x[a-f\d]+|\w+);$/.exec(e.slice(t,i))))i=t+s.index;else break}return i}function pee(e,t){dee.lastIndex=t;let n=dee.exec(e);if(!n)return-1;let i=n[0][n[0].length-1];return i=="_"||i=="-"?-1:t+n[0].length-(i=="."?1:0)}const jNt={parseInline:[{name:"Autolink",parse(e,t,n){let i=n-e.offset;if(i&&/\w/.test(e.text[i-1]))return-1;cee.lastIndex=i;let r=cee.exec(e.text),s=-1;if(!r)return-1;if(r[1]||r[2]){if(s=NNt(e.text,i+r[0].length),s>-1&&e.hasOpenLink){let a=/([^\[\]]|\[[^\]]*\])*/.exec(e.text.slice(i,s));s=i+a[0].length}}else r[3]?s=pee(e.text,i):(s=pee(e.text,i+r[0].length),s>-1&&r[0]=="xmpp:"&&(fee.lastIndex=s,r=fee.exec(e.text),r&&(s=r.index+r[0].length)));return s<0?-1:(e.addElement(e.elt("URL",n,s+e.offset)),s+e.offset)}}]},RNt=[CNt,ANt,ENt,jNt];function k_e(e,t,n){return(i,r,s)=>{if(r!=e||i.char(s+1)==e)return-1;let a=[i.elt(n,s,s+1)];for(let l=s+1;l=65&&e<=90||e==95||e>=97&&e<=122||e>=161}let yee=null,vee=null,xee=0;function u8(e,t){let n=e.pos+t;if(xee==n&&vee==e)return yee;let i=e.peek(t),r="";for(;sjt(i);)r+=String.fromCharCode(i),i=e.peek(++t);return vee=e,xee=n,yee=r?r.toLowerCase():i==ajt||i==ojt?void 0:null}const R_e=60,nj=62,DQ=47,ajt=63,ojt=33,ljt=45;function wee(e,t){this.name=e,this.parent=t}const cjt=[PQ,A_e,E_e,C_e,T_e],ujt=new DI({start:null,shift(e,t,n,i){return cjt.indexOf(t)>-1?new wee(u8(i,1)||"",e):e},reduce(e,t){return t==__e&&e?e.parent:e},reuse(e,t,n,i){let r=t.type.id;return r==PQ||r==JNt?new wee(u8(i,1)||"",e):e},strict:!1}),djt=new Hs((e,t)=>{if(e.next!=R_e){e.next<0&&t.context&&e.acceptToken(L5);return}e.advance();let n=e.next==DQ;n&&e.advance();let i=u8(e,0);if(i===void 0)return;if(!i)return e.acceptToken(n?WNt:qNt);let r=t.context?t.context.name:null;if(n){if(i==r)return e.acceptToken(zNt);if(r&&rjt[r])return e.acceptToken(L5,-2);if(t.dialectEnabled(tjt))return e.acceptToken(VNt);for(let s=t.context;s;s=s.parent)if(s.name==i)return;e.acceptToken(HNt)}else{if(i=="script")return e.acceptToken(E_e);if(i=="style")return e.acceptToken(C_e);if(i=="textarea")return e.acceptToken(T_e);if(ijt.hasOwnProperty(i))return e.acceptToken(A_e);r&&bee[r]&&bee[r][i]?e.acceptToken(L5,-1):e.acceptToken(PQ)}},{contextual:!0}),fjt=new Hs(e=>{for(let t=0,n=0;;n++){if(e.next<0){n&&e.acceptToken(gee);break}if(e.next==ljt)t++;else if(e.next==nj&&t>=2){n>=3&&e.acceptToken(gee,-2);break}else t=0;e.advance()}});function hjt(e){for(;e;e=e.parent)if(e.name=="svg"||e.name=="math")return!0;return!1}const pjt=new Hs((e,t)=>{if(e.next==DQ&&e.peek(1)==nj){let n=t.dialectEnabled(njt)||hjt(t.context);e.acceptToken(n?QNt:mee,2)}else e.next==nj&&e.acceptToken(mee,1)});function MQ(e,t,n){let i=2+e.length;return new Hs(r=>{for(let s=0,a=0,l=0;;l++){if(r.next<0){l&&r.acceptToken(t);break}if(s==0&&r.next==R_e||s==1&&r.next==DQ||s>=2&&sa?r.acceptToken(t,-a):r.acceptToken(n,-(a-2));break}else if((r.next==10||r.next==13)&&l){r.acceptToken(t,1);break}else s=a=0;r.advance()}})}const mjt=MQ("script",MNt,LNt),gjt=MQ("style",$Nt,FNt),bjt=MQ("textarea",BNt,UNt),yjt=zh({"Text RawText IncompleteTag IncompleteCloseTag":ne.content,"StartTag StartCloseTag SelfClosingEndTag EndTag":ne.angleBracket,TagName:ne.tagName,"MismatchedCloseTag/TagName":[ne.tagName,ne.invalid],AttributeName:ne.attributeName,"AttributeValue UnquotedAttributeValue":ne.attributeValue,Is:ne.definitionOperator,"EntityReference CharacterReference":ne.character,Comment:ne.blockComment,ProcessingInst:ne.processingInstruction,DoctypeDecl:ne.documentMeta}),vjt=jh.deserialize({version:14,states:",xOVO!rOOO!ZQ#tO'#CrO!`Q#tO'#C{O!eQ#tO'#DOO!jQ#tO'#DRO!oQ#tO'#DTO!tOaO'#CqO#PObO'#CqO#[OdO'#CqO$kO!rO'#CqOOO`'#Cq'#CqO$rO$fO'#DUO$zQ#tO'#DWO%PQ#tO'#DXOOO`'#Dl'#DlOOO`'#DZ'#DZQVO!rOOO%UQ&rO,59^O%aQ&rO,59gO%lQ&rO,59jO%wQ&rO,59mO&SQ&rO,59oOOOa'#D_'#D_O&_OaO'#CyO&jOaO,59]OOOb'#D`'#D`O&rObO'#C|O&}ObO,59]OOOd'#Da'#DaO'VOdO'#DPO'bOdO,59]OOO`'#Db'#DbO'jO!rO,59]O'qQ#tO'#DSOOO`,59],59]OOOp'#Dc'#DcO'vO$fO,59pOOO`,59p,59pO(OQ#|O,59rO(TQ#|O,59sOOO`-E7X-E7XO(YQ&rO'#CtOOQW'#D['#D[O(hQ&rO1G.xOOOa1G.x1G.xOOO`1G/Z1G/ZO(sQ&rO1G/ROOOb1G/R1G/RO)OQ&rO1G/UOOOd1G/U1G/UO)ZQ&rO1G/XOOO`1G/X1G/XO)fQ&rO1G/ZOOOa-E7]-E7]O)qQ#tO'#CzOOO`1G.w1G.wOOOb-E7^-E7^O)vQ#tO'#C}OOOd-E7_-E7_O){Q#tO'#DQOOO`-E7`-E7`O*QQ#|O,59nOOOp-E7a-E7aOOO`1G/[1G/[OOO`1G/^1G/^OOO`1G/_1G/_O*VQ,UO,59`OOQW-E7Y-E7YOOOa7+$d7+$dOOO`7+$u7+$uOOOb7+$m7+$mOOOd7+$p7+$pOOO`7+$s7+$sO*bQ#|O,59fO*gQ#|O,59iO*lQ#|O,59lOOO`1G/Y1G/YO*qO7[O'#CwO+SOMhO'#CwOOQW1G.z1G.zOOO`1G/Q1G/QOOO`1G/T1G/TOOO`1G/W1G/WOOOO'#D]'#D]O+eO7[O,59cOOQW,59c,59cOOOO'#D^'#D^O+vOMhO,59cOOOO-E7Z-E7ZOOQW1G.}1G.}OOOO-E7[-E7[",stateData:",c~O!_OS~OUSOVPOWQOXROYTO[]O][O^^O_^Oa^Ob^Oc^Od^Oy^O|_O!eZO~OgaO~OgbO~OgcO~OgdO~OgeO~O!XfOPmP![mP~O!YiOQpP![pP~O!ZlORsP![sP~OUSOVPOWQOXROYTOZqO[]O][O^^O_^Oa^Ob^Oc^Od^Oy^O!eZO~O![rO~P#gO!]sO!fuO~OgvO~OgwO~OS|OT}OiyO~OS!POT}OiyO~OS!ROT}OiyO~OS!TOT}OiyO~OS}OT}OiyO~O!XfOPmX![mX~OP!WO![!XO~O!YiOQpX![pX~OQ!ZO![!XO~O!ZlORsX![sX~OR!]O![!XO~O![!XO~P#gOg!_O~O!]sO!f!aO~OS!bO~OS!cO~Oj!dOShXThXihX~OS!fOT!gOiyO~OS!hOT!gOiyO~OS!iOT!gOiyO~OS!jOT!gOiyO~OS!gOT!gOiyO~Og!kO~Og!lO~Og!mO~OS!nO~Ol!qO!a!oO!c!pO~OS!rO~OS!sO~OS!tO~Ob!uOc!uOd!uO!a!wO!b!uO~Ob!xOc!xOd!xO!c!wO!d!xO~Ob!uOc!uOd!uO!a!{O!b!uO~Ob!xOc!xOd!xO!c!{O!d!xO~OT~cbd!ey|!e~",goto:"%q!aPPPPPPPPPPPPPPPPPPPPP!b!hP!nPP!zP!}#Q#T#Z#^#a#g#j#m#s#y!bP!b!bP$P$V$m$s$y%P%V%]%cPPPPPPPP%iX^OX`pXUOX`pezabcde{!O!Q!S!UR!q!dRhUR!XhXVOX`pRkVR!XkXWOX`pRnWR!XnXXOX`pQrXR!XpXYOX`pQ`ORx`Q{aQ!ObQ!QcQ!SdQ!UeZ!e{!O!Q!S!UQ!v!oR!z!vQ!y!pR!|!yQgUR!VgQjVR!YjQmWR![mQpXR!^pQtZR!`tS_O`ToXp",nodeNames:"⚠ StartCloseTag StartCloseTag StartCloseTag EndTag SelfClosingEndTag StartTag StartTag StartTag StartTag StartTag StartCloseTag StartCloseTag StartCloseTag IncompleteTag IncompleteCloseTag Document Text EntityReference CharacterReference InvalidEntity Element OpenTag TagName Attribute AttributeName Is AttributeValue UnquotedAttributeValue ScriptText CloseTag OpenTag StyleText CloseTag OpenTag TextareaText CloseTag OpenTag CloseTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag CloseTag DoctypeDecl",maxTerm:68,context:ujt,nodeProps:[["closedBy",-10,1,2,3,7,8,9,10,11,12,13,"EndTag",6,"EndTag SelfClosingEndTag",-4,22,31,34,37,"CloseTag"],["openedBy",4,"StartTag StartCloseTag",5,"StartTag",-4,30,33,36,38,"OpenTag"],["group",-10,14,15,18,19,20,21,40,41,42,43,"Entity",17,"Entity TextContent",-3,29,32,35,"TextContent Entity"],["isolate",-11,22,30,31,33,34,36,37,38,39,42,43,"ltr",-3,27,28,40,""]],propSources:[yjt],skippedNodes:[0],repeatNodeCount:9,tokenData:"!]tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^/^!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!Z5zblWOX5uXZ7SZ[5u[^7S^p5uqr5urs7Sst+Ptw5uwx7Sx!]5u!]!^7w!^!a7S!a#S5u#S#T7S#T;'S5u;'S;=`8n<%lO5u!R7VVOp7Sqs7St!]7S!]!^7l!^;'S7S;'S;=`7q<%lO7S!R7qOb!R!R7tP;=`<%l7S!Z8OYlWb!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!Z8qP;=`<%l5u!_8{iiSlWOX5uXZ7SZ[5u[^7S^p5uqr8trs7Sst/^tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^:j!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!_:sbiSlWb!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VP<%l?Ah;{?Ah?BY7S?BY?Mn;{?MnO7S!V=dXiSb!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!V>SP;=`<%l;{!_>YP;=`<%l8t!_>dhiSlWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^/^!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!Z@TalWOX@OXZAYZ[@O[^AY^p@Oqr@OrsAYsw@OwxAYx!]@O!]!^Az!^!aAY!a#S@O#S#TAY#T;'S@O;'S;=`Bq<%lO@O!RA]UOpAYq!]AY!]!^Ao!^;'SAY;'S;=`At<%lOAY!RAtOc!R!RAwP;=`<%lAY!ZBRYlWc!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!ZBtP;=`<%l@O!_COhiSlWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^Dj!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!_DsbiSlWc!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VFQbiSOpAYqrE{rsAYswE{wxAYx!PE{!P!QAY!Q!]E{!]!^GY!^!aAY!a#sE{#s$fAY$f;'SE{;'S;=`G|<%l?AhE{?Ah?BYAY?BY?MnE{?MnOAY!VGaXiSc!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!VHPP;=`<%lE{!_HVP;=`<%lBw!ZHcW!cxaP!b`Or(trs'ksv(tw!^(t!^!_)e!_;'S(t;'S;=`*P<%lO(t!aIYliSaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OKQ!O!P-_!P!Q$q!Q!^-_!^!_*V!_!a&X!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!aK_kiSaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx!P-_!P!Q$q!Q!^-_!^!_*V!_!`&X!`!aMS!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!TM_XaP!b`!dp!fQOr&Xrs&}sv&Xwx(tx!^&X!^!_*V!_;'S&X;'S;=`*y<%lO&X!aNZ!ZiSgQaPlW!b`!dpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OMz!O!PMz!P!Q$q!Q![Mz![!]Mz!]!^-_!^!_*V!_!a&X!a!c-_!c!}Mz!}#R-_#R#SMz#S#T1k#T#oMz#o#s-_#s$f$q$f$}-_$}%OMz%O%W-_%W%oMz%o%p-_%p&aMz&a&b-_&b1pMz1p4UMz4U4dMz4d4e-_4e$ISMz$IS$I`-_$I`$IbMz$Ib$Je-_$Je$JgMz$Jg$Kh-_$Kh%#tMz%#t&/x-_&/x&EtMz&Et&FV-_&FV;'SMz;'S;:j!#|;:j;=`3X<%l?&r-_?&r?AhMz?Ah?BY$q?BY?MnMz?MnO$q!a!$PP;=`<%lMz!R!$ZY!b`!dpOq*Vqr!$yrs(Vsv*Vwx)ex!a*V!a!b!4t!b;'S*V;'S;=`*s<%lO*V!R!%Q]!b`!dpOr*Vrs(Vsv*Vwx)ex}*V}!O!%y!O!f*V!f!g!']!g#W*V#W#X!0`#X;'S*V;'S;=`*s<%lO*V!R!&QX!b`!dpOr*Vrs(Vsv*Vwx)ex}*V}!O!&m!O;'S*V;'S;=`*s<%lO*V!R!&vV!b`!dp!ePOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!'dX!b`!dpOr*Vrs(Vsv*Vwx)ex!q*V!q!r!(P!r;'S*V;'S;=`*s<%lO*V!R!(WX!b`!dpOr*Vrs(Vsv*Vwx)ex!e*V!e!f!(s!f;'S*V;'S;=`*s<%lO*V!R!(zX!b`!dpOr*Vrs(Vsv*Vwx)ex!v*V!v!w!)g!w;'S*V;'S;=`*s<%lO*V!R!)nX!b`!dpOr*Vrs(Vsv*Vwx)ex!{*V!{!|!*Z!|;'S*V;'S;=`*s<%lO*V!R!*bX!b`!dpOr*Vrs(Vsv*Vwx)ex!r*V!r!s!*}!s;'S*V;'S;=`*s<%lO*V!R!+UX!b`!dpOr*Vrs(Vsv*Vwx)ex!g*V!g!h!+q!h;'S*V;'S;=`*s<%lO*V!R!+xY!b`!dpOr!+qrs!,hsv!+qvw!-Swx!.[x!`!+q!`!a!/j!a;'S!+q;'S;=`!0Y<%lO!+qq!,mV!dpOv!,hvx!-Sx!`!,h!`!a!-q!a;'S!,h;'S;=`!.U<%lO!,hP!-VTO!`!-S!`!a!-f!a;'S!-S;'S;=`!-k<%lO!-SP!-kO|PP!-nP;=`<%l!-Sq!-xS!dp|POv(Vx;'S(V;'S;=`(h<%lO(Vq!.XP;=`<%l!,ha!.aX!b`Or!.[rs!-Ssv!.[vw!-Sw!`!.[!`!a!.|!a;'S!.[;'S;=`!/d<%lO!.[a!/TT!b`|POr)esv)ew;'S)e;'S;=`)y<%lO)ea!/gP;=`<%l!.[!R!/sV!b`!dp|POr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!0]P;=`<%l!+q!R!0gX!b`!dpOr*Vrs(Vsv*Vwx)ex#c*V#c#d!1S#d;'S*V;'S;=`*s<%lO*V!R!1ZX!b`!dpOr*Vrs(Vsv*Vwx)ex#V*V#V#W!1v#W;'S*V;'S;=`*s<%lO*V!R!1}X!b`!dpOr*Vrs(Vsv*Vwx)ex#h*V#h#i!2j#i;'S*V;'S;=`*s<%lO*V!R!2qX!b`!dpOr*Vrs(Vsv*Vwx)ex#m*V#m#n!3^#n;'S*V;'S;=`*s<%lO*V!R!3eX!b`!dpOr*Vrs(Vsv*Vwx)ex#d*V#d#e!4Q#e;'S*V;'S;=`*s<%lO*V!R!4XX!b`!dpOr*Vrs(Vsv*Vwx)ex#X*V#X#Y!+q#Y;'S*V;'S;=`*s<%lO*V!R!4{Y!b`!dpOr!4trs!5ksv!4tvw!6Vwx!8]x!a!4t!a!b!:]!b;'S!4t;'S;=`!;r<%lO!4tq!5pV!dpOv!5kvx!6Vx!a!5k!a!b!7W!b;'S!5k;'S;=`!8V<%lO!5kP!6YTO!a!6V!a!b!6i!b;'S!6V;'S;=`!7Q<%lO!6VP!6lTO!`!6V!`!a!6{!a;'S!6V;'S;=`!7Q<%lO!6VP!7QOyPP!7TP;=`<%l!6Vq!7]V!dpOv!5kvx!6Vx!`!5k!`!a!7r!a;'S!5k;'S;=`!8V<%lO!5kq!7yS!dpyPOv(Vx;'S(V;'S;=`(h<%lO(Vq!8YP;=`<%l!5ka!8bX!b`Or!8]rs!6Vsv!8]vw!6Vw!a!8]!a!b!8}!b;'S!8];'S;=`!:V<%lO!8]a!9SX!b`Or!8]rs!6Vsv!8]vw!6Vw!`!8]!`!a!9o!a;'S!8];'S;=`!:V<%lO!8]a!9vT!b`yPOr)esv)ew;'S)e;'S;=`)y<%lO)ea!:YP;=`<%l!8]!R!:dY!b`!dpOr!4trs!5ksv!4tvw!6Vwx!8]x!`!4t!`!a!;S!a;'S!4t;'S;=`!;r<%lO!4t!R!;]V!b`!dpyPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!;uP;=`<%l!4t!V!{let u=l.type.id;if(u==XNt)return $5(l,c,n);if(u==YNt)return $5(l,c,i);if(u==ZNt)return $5(l,c,r);if(u==__e&&s.length){let d=l.node,f=d.firstChild,h=f&&Oee(f,c),m;if(h){for(let g of s)if(g.tag==h&&(!g.attrs||g.attrs(m||(m=I_e(f,c))))){let b=d.lastChild,v=b.type.id==ejt?b.from:d.to;if(v>f.to)return{parser:g.parser,overlay:[{from:f.to,to:v}]}}}}if(a&&u==N_e){let d=l.node,f;if(f=d.firstChild){let h=a[c.read(f.from,f.to)];if(h)for(let m of h){if(m.tagName&&m.tagName!=Oee(d.parent,c))continue;let g=d.lastChild;if(g.type.id==c8){let b=g.from+1,v=g.lastChild,y=g.to-(v&&v.isError?0:1);if(y>b)return{parser:m.parser,overlay:[{from:b,to:y}],bracketed:!0}}else if(g.type.id==j_e)return{parser:m.parser,overlay:[{from:g.from,to:g.to}]}}}}return null})}const xjt=145,See=1,wjt=146,Ojt=147,D_e=2,Sjt=148,kjt=3,Ejt=4,M_e=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],Cjt=58,Tjt=40,L_e=95,Ajt=91,U2=45,_jt=46,Njt=35,jjt=37,Rjt=38,Ijt=92,Pjt=10,Djt=42;function yk(e){return e>=65&&e<=90||e>=97&&e<=122||e>=161}function LQ(e){return e>=48&&e<=57}function kee(e){return LQ(e)||e>=97&&e<=102||e>=65&&e<=70}const $_e=(e,t,n)=>(i,r)=>{for(let s=!1,a=0,l=0;;l++){let{next:c}=i;if(yk(c)||c==U2||c==L_e||s&&LQ(c))!s&&(c!=U2||l>0)&&(s=!0),a===l&&c==U2&&a++,i.advance();else if(c==Ijt&&i.peek(1)!=Pjt){if(i.advance(),kee(i.next)){do i.advance();while(kee(i.next));i.next==32&&i.advance()}else i.next>-1&&i.advance();s=!0}else{s&&i.acceptToken(a==2&&r.canShift(D_e)?t:c==Tjt?n:e);break}}},Mjt=new Hs($_e(wjt,D_e,Ojt),{contextual:!0}),Ljt=new Hs($_e(Sjt,kjt,Ejt),{contextual:!0}),$jt=new Hs(e=>{if(M_e.includes(e.peek(-1))){let{next:t}=e;(yk(t)||t==L_e||t==Njt||t==_jt||t==Djt||t==Ajt||t==Cjt&&yk(e.peek(1))||t==U2||t==Rjt)&&e.acceptToken(xjt)}}),Fjt=new Hs(e=>{if(!M_e.includes(e.peek(-1))){let{next:t}=e;if(t==jjt&&(e.advance(),e.acceptToken(See)),yk(t)){do e.advance();while(yk(e.next)||LQ(e.next));e.acceptToken(See)}}}),Bjt=zh({"AtKeyword import charset namespace keyframes media supports font-feature-values":ne.definitionKeyword,"from to selector scope MatchFlag":ne.keyword,NamespaceName:ne.namespace,KeyframeName:ne.labelName,KeyframeRangeName:ne.operatorKeyword,TagName:ne.tagName,ClassName:ne.className,PseudoClassName:ne.constant(ne.className),IdName:ne.labelName,"FeatureName PropertyName":ne.propertyName,AttributeName:ne.attributeName,NumberLiteral:ne.number,KeywordQuery:ne.keyword,UnaryQueryOp:ne.operatorKeyword,"CallTag ValueName FontName":ne.atom,VariableName:ne.variableName,Callee:ne.operatorKeyword,Unit:ne.unit,"UniversalSelector NestingSelector":ne.definitionOperator,"MatchOp CompareOp":ne.compareOperator,"ChildOp SiblingOp, LogicOp":ne.logicOperator,BinOp:ne.arithmeticOperator,Important:ne.modifier,Comment:ne.blockComment,ColorLiteral:ne.color,"ParenthesizedContent StringLiteral":ne.string,":":ne.punctuation,"PseudoOp #":ne.derefOperator,"; , |":ne.separator,"( )":ne.paren,"[ ]":ne.squareBracket,"{ }":ne.brace}),Ujt={__proto__:null,lang:44,"nth-child":44,"nth-last-child":44,"nth-of-type":44,"nth-last-of-type":44,dir:44,"host-context":44,if:90,url:152,"url-prefix":152,domain:152,regexp:152},Qjt={__proto__:null,or:104,and:104,not:112,only:112,layer:206},zjt={__proto__:null,selector:118,style:124,layer:202},Vjt={__proto__:null,"@import":198,"@media":210,"@charset":214,"@namespace":218,"@keyframes":224,"@supports":236,"@scope":240,"@font-feature-values":246},Hjt={__proto__:null,to:243},qjt=jh.deserialize({version:14,states:"MlQYQdOOO#}QdOOP$UO`OOO%OQaO'#CfOOQP'#Ce'#CeO%VQdO'#CgO%[Q`O'#CgO%aQaO'#FnO&XQdO'#CkO&xQaO'#CcO'SQdO'#CnO'_QdO'#EOO'dQdO'#EQO'oQdO'#EXO'oQdO'#E[OOQP'#Fn'#FnO)RQhO'#E}OOQS'#Fm'#FmOOQS'#FQ'#FQQYQdOOO)YQdO'#EbO*iQhO'#EhO)YQdO'#EjO*pQdO'#ElO*{QdO'#EoO)}QhO'#EuO+TQdO'#EwO+`QdO'#EzO+eQaO'#CfO+lQ`O'#E_O+qQ`O'#F{O+|QdO'#F{QOQ`OOP,WO&jO'#CaPOOO)CA])CA]OOQP'#Ci'#CiOOQP,59R,59RO%VQdO,59ROOQP'#Cm'#CmOOQP,59V,59VO&XQdO,59VO,cQdO,59YO'_QdO,5:jO'dQdO,5:lO'oQdO,5:sO'oQdO,5:uO'oQdO,5:vO'oQdO'#FXO,nQ`O,58}O,vQdO'#E^OOQS,58},58}OOQP'#Cq'#CqOOQO'#D|'#D|OOQP,59Y,59YO,}Q`O,59YO-SQ`O,59YOOQP'#EP'#EPOOQP,5:j,5:jO-XQpO'#ERO-dQdO'#ESO-iQ`O'#ESO-nQpO,5:lO.XQaO,5:sO.oQaO,5:vOOQW'#D^'#D^O/nQhO'#DgO0RQhO,5;iO)}QhO'#DeO0`Q`O'#DnO0eQhO'#DxOOQW'#Ft'#FtOOQS,5;i,5;iO0jQ`O'#DhO0oQ`O'#DkOOQS-E9O-E9OOOQ['#Cv'#CvO0tQdO'#CwO1[QdO'#C}O1rQdO'#DQO2YQ!pO'#DSO4fQ!jO,5:|OOQO'#DX'#DXO-SQ`O'#DWO4vQ!nO'#FqO6|Q`O'#DYO7RQ`O'#DyOOQ['#Fq'#FqO7WQhO'#GOO7fQ`O,5;SO7kQ!bO,5;UOOQS'#En'#EnO7sQ`O,5;WO7xQdO,5;WOOQO'#Eq'#EqO8QQ`O,5;ZO8VQhO,5;aO'oQdO'#DjOOQS,5;c,5;cO0jQ`O,5;cO8_QdO,5;cOOQS'#F`'#F`O8gQdO'#E|O7fQ`O,5;fO8oQdO,5:yO9PQdO'#FZO9^Q`O,5lQhO'#DoOOQW,5:Y,5:YOOQW,5:d,5:dOOQW,5:S,5:SO>vQhO,5:VO?bQ!fO'#FrOOQS'#Fr'#FrOOQS'#FS'#FSO@rQdO,59cOOQ[,59c,59cOAYQdO,59iOOQ[,59i,59iOApQdO,59lOOQ[,59l,59lOOQ[,59n,59nO)YQdO,59pOBWQhO'#EdOOQW'#Ed'#EdOBuQ`O1G0hO4oQhO1G0hOOQ[,59r,59rO)}QhO'#D[OOQ[,59t,59tOBzQ#tO,5:eOCVQhO'#F]OCdQ`O,5vQhO'#DmOI_QhO'#DqOIgQhO'#DsOIlQhO'#FwOOQO'#Fw'#FwOItQ!bO'#DwOOQO'#Fy'#FyOOQO'#Fv'#FvOIyQ`O1G/qOOQS-E9Q-E9QOOQ[1G.}1G.}OOQ[1G/T1G/TOOQ[1G/W1G/WOOQ[1G/[1G/[OJOQdO,5;OOOQS7+&S7+&SOJTQ`O7+&SOJYQhO'#D]OJbQ`O,59vO)}QhO,59vOOQ[1G0P1G0POJjQ`O1G0POJoQhO,5;wOOQO-E9Z-E9ZOOQS7+&^7+&^OJ}QbO'#DSOOQO'#Et'#EtOK]Q`O'#EsOOQO'#Es'#EsOKhQ`O'#F^OKpQdO,5;^OOQS,5;^,5;^OOQ[1G/p1G/pOOQS7+&i7+&iO7fQ`O7+&iOK{Q!fO'#FYO)YQdO'#FYOMSQdO7+&POOQO7+&P7+&POOQO,5:{,5:{OOQO1G1a1G1aOMgQ!bO<vQhO'#DrOOQO,5:],5:]O! hQhO,5:_OGUQhO,5:cOOQW7+%]7+%]OOQO'#Ef'#EfO! pQ`O1G0jOOQS<xAN>xO!#zQ`OAN>xO!$PQaO,5;rOOQO-E9U-E9UO!$ZQdO,5;qOOQO-E9T-E9TOOQW<vQhO'#DuOOQO1G/y1G/yO!%vQ!bO1G/}OJOQdO'#F[O!&OQ`O7+&UOOQW7+&U7+&UO!&WQ!bO1G/cOOQ[7+$|7+$|O!&cQhO7+$|P!&jQ`O'#FTOOQO,5;y,5;yOOQO-E9]-E9]OOQS1G1d1G1dOOQPG24dG24dO!&oQ`OAN>ZO)YQdO1G1[O!&tQ`O7+'jOOQO1G/x1G/xO!&|Q`O,5:aO!$eQhO7+%iOOQO,5;v,5;vOOQO-E9Y-E9YOOQW<Q!]!^>|!^!_?_!_!`@Z!`!a@n!a!b%Z!b!cAo!c!k%Z!k!lC|!l!u%Z!u!vC|!v!}%Z!}#OD_#O#P%Z#P#QDp#Q#R2X#R#]%Z#]#^ER#^#g%Z#g#hC|#h#o%Z#o#pIf#p#qIw#q#rJ`#r#sJq#s#y%Z#y#z&R#z$f%Z$f$g&R$g#BY%Z#BY#BZ&R#BZ$IS%Z$IS$I_&R$I_$I|%Z$I|$JO&R$JO$JT%Z$JT$JU&R$JU$KV%Z$KV$KW&R$KW&FU%Z&FU&FV&R&FV;'S%Z;'S;=`KY<%lO%Z`%^SOy%jz;'S%j;'S;=`%{<%lO%j`%oS!o`Oy%jz;'S%j;'S;=`%{<%lO%j`&OP;=`<%l%j~&Wh$[~OX%jX^'r^p%jpq'rqy%jz#y%j#y#z'r#z$f%j$f$g'r$g#BY%j#BY#BZ'r#BZ$IS%j$IS$I_'r$I_$I|%j$I|$JO'r$JO$JT%j$JT$JU'r$JU$KV%j$KV$KW'r$KW&FU%j&FU&FV'r&FV;'S%j;'S;=`%{<%lO%j~'yh$[~!o`OX%jX^'r^p%jpq'rqy%jz#y%j#y#z'r#z$f%j$f$g'r$g#BY%j#BY#BZ'r#BZ$IS%j$IS$I_'r$I_$I|%j$I|$JO'r$JO$JT%j$JT$JU'r$JU$KV%j$KV$KW'r$KW&FU%j&FU&FV'r&FV;'S%j;'S;=`%{<%lO%jj)jS$qYOy%jz;'S%j;'S;=`%{<%lO%j~)yWOY)vZr)vrs*cs#O)v#O#P*h#P;'S)v;'S;=`+d<%lO)v~*hOw~~*kRO;'S)v;'S;=`*t;=`O)v~*wXOY)vZr)vrs*cs#O)v#O#P*h#P;'S)v;'S;=`+d;=`<%l)v<%lO)v~+gP;=`<%l)vj+oYmYOy%jz!Q%j!Q![,_![!c%j!c!i,_!i#T%j#T#Z,_#Z;'S%j;'S;=`%{<%lO%jj,dY!o`Oy%jz!Q%j!Q![-S![!c%j!c!i-S!i#T%j#T#Z-S#Z;'S%j;'S;=`%{<%lO%jj-XY!o`Oy%jz!Q%j!Q![-w![!c%j!c!i-w!i#T%j#T#Z-w#Z;'S%j;'S;=`%{<%lO%jj.OYuY!o`Oy%jz!Q%j!Q![.n![!c%j!c!i.n!i#T%j#T#Z.n#Z;'S%j;'S;=`%{<%lO%jj.uYuY!o`Oy%jz!Q%j!Q![/e![!c%j!c!i/e!i#T%j#T#Z/e#Z;'S%j;'S;=`%{<%lO%jj/jY!o`Oy%jz!Q%j!Q![0Y![!c%j!c!i0Y!i#T%j#T#Z0Y#Z;'S%j;'S;=`%{<%lO%jj0aYuY!o`Oy%jz!Q%j!Q![1P![!c%j!c!i1P!i#T%j#T#Z1P#Z;'S%j;'S;=`%{<%lO%jj1UY!o`Oy%jz!Q%j!Q![1t![!c%j!c!i1t!i#T%j#T#Z1t#Z;'S%j;'S;=`%{<%lO%jj1{SuY!o`Oy%jz;'S%j;'S;=`%{<%lO%jd2[UOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jd2uS!yS!o`Oy%jz;'S%j;'S;=`%{<%lO%jb3WS^QOy%jz;'S%j;'S;=`%{<%lO%j~3gWOY3dZw3dwx*cx#O3d#O#P4P#P;'S3d;'S;=`4{<%lO3d~4SRO;'S3d;'S;=`4];=`O3d~4`XOY3dZw3dwx*cx#O3d#O#P4P#P;'S3d;'S;=`4{;=`<%l3d<%lO3d~5OP;=`<%l3dj5WShYOy%jz;'S%j;'S;=`%{<%lO%j~5iOg~n5pUWQyWOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jj6ZWyW#PQOy%jz!O%j!O!P6s!P!Q%j!Q![9x![;'S%j;'S;=`%{<%lO%jj6xU!o`Oy%jz!Q%j!Q![7[![;'S%j;'S;=`%{<%lO%jj7cY!o`$gYOy%jz!Q%j!Q![7[![!g%j!g!h8R!h#X%j#X#Y8R#Y;'S%j;'S;=`%{<%lO%jj8WY!o`Oy%jz{%j{|8v|}%j}!O8v!O!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj8{U!o`Oy%jz!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj9fU!o`$gYOy%jz!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj:P[!o`$gYOy%jz!O%j!O!P7[!P!Q%j!Q![9x![!g%j!g!h8R!h#X%j#X#Y8R#Y;'S%j;'S;=`%{<%lO%jj:zS!dYOy%jz;'S%j;'S;=`%{<%lO%jj;]WyWOy%jz!O%j!O!P6s!P!Q%j!Q![9x![;'S%j;'S;=`%{<%lO%jj;zU`YOy%jz!Q%j!Q![7[![;'S%j;'S;=`%{<%lO%j~VUcYOy%jz![%j![!]>i!];'S%j;'S;=`%{<%lO%jj>pSdY!o`Oy%jz;'S%j;'S;=`%{<%lO%jj?RSnYOy%jz;'S%j;'S;=`%{<%lO%jh?dU!WWOy%jz!_%j!_!`?v!`;'S%j;'S;=`%{<%lO%jh?}S!WW!o`Oy%jz;'S%j;'S;=`%{<%lO%jl@bS!WW!ySOy%jz;'S%j;'S;=`%{<%lO%jj@uV!|Q!WWOy%jz!_%j!_!`?v!`!aA[!a;'S%j;'S;=`%{<%lO%jbAcS!|Q!o`Oy%jz;'S%j;'S;=`%{<%lO%jjArYOy%jz}%j}!OBb!O!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jjBgW!o`Oy%jz!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jjCW[lY!o`Oy%jz}%j}!OCP!O!Q%j!Q![CP![!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jhDRS!zWOy%jz;'S%j;'S;=`%{<%lO%jjDdSpYOy%jz;'S%j;'S;=`%{<%lO%jnDuSo^Oy%jz;'S%j;'S;=`%{<%lO%jjEWU!zWOy%jz#a%j#a#bEj#b;'S%j;'S;=`%{<%lO%jbEoU!o`Oy%jz#d%j#d#eFR#e;'S%j;'S;=`%{<%lO%jbFWU!o`Oy%jz#c%j#c#dFj#d;'S%j;'S;=`%{<%lO%jbFoU!o`Oy%jz#f%j#f#gGR#g;'S%j;'S;=`%{<%lO%jbGWU!o`Oy%jz#h%j#h#iGj#i;'S%j;'S;=`%{<%lO%jbGoU!o`Oy%jz#T%j#T#UHR#U;'S%j;'S;=`%{<%lO%jbHWU!o`Oy%jz#b%j#b#cHj#c;'S%j;'S;=`%{<%lO%jbHoU!o`Oy%jz#h%j#h#iIR#i;'S%j;'S;=`%{<%lO%jbIYS$pQ!o`Oy%jz;'S%j;'S;=`%{<%lO%jjIkSsYOy%jz;'S%j;'S;=`%{<%lO%jfI|U$cUOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jjJeSrYOy%jz;'S%j;'S;=`%{<%lO%jfJvU#PQOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%j`K]P;=`<%l%Z",tokenizers:[$jt,Fjt,Mjt,Ljt,1,2,3,4,new YN("m~RRYZ[z{a~~g~aO$_~~dP!P!Qg~lO$`~~",28,152)],topRules:{StyleSheet:[0,6],Styles:[1,126]},dynamicPrecedences:{94:1},specialized:[{term:147,get:e=>Ujt[e]||-1},{term:148,get:e=>Qjt[e]||-1},{term:4,get:e=>zjt[e]||-1},{term:28,get:e=>Vjt[e]||-1},{term:146,get:e=>Hjt[e]||-1}],tokenPrec:2405});let F5=null;function B5(){if(!F5&&typeof document=="object"&&document.body){let{style:e}=document.body,t=[],n=new Set;for(let i in e)i!="cssText"&&i!="cssFloat"&&typeof e[i]=="string"&&(/[A-Z]/.test(i)&&(i=i.replace(/[A-Z]/g,r=>"-"+r.toLowerCase())),n.has(i)||(t.push(i),n.add(i)));F5=t.sort().map(i=>({type:"property",label:i,apply:i+": "}))}return F5||[]}const Eee=["active","after","any-link","autofill","backdrop","before","checked","cue","default","defined","disabled","empty","enabled","file-selector-button","first","first-child","first-letter","first-line","first-of-type","focus","focus-visible","focus-within","fullscreen","has","host","host-context","hover","in-range","indeterminate","invalid","is","lang","last-child","last-of-type","left","link","marker","modal","not","nth-child","nth-last-child","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","part","placeholder","placeholder-shown","read-only","read-write","required","right","root","scope","selection","slotted","target","target-text","valid","visited","where"].map(e=>({type:"class",label:e})),Cee=["above","absolute","activeborder","additive","activecaption","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","antialiased","appworkspace","asterisks","attr","auto","auto-flow","avoid","avoid-column","avoid-page","avoid-region","axis-pan","background","backwards","baseline","below","bidi-override","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","button-bevel","buttonface","buttonhighlight","buttonshadow","buttontext","calc","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","clear","clip","close-quote","col-resize","collapse","color","color-burn","color-dodge","column","column-reverse","compact","condensed","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","darken","dashed","decimal","decimal-leading-zero","default","default-button","dense","destination-atop","destination-in","destination-out","destination-over","difference","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic-abegede-gez","ethiopic-halehame-aa-er","ethiopic-halehame-gez","ew-resize","exclusion","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fill-box","fixed","flat","flex","flex-end","flex-start","footnotes","forwards","from","geometricPrecision","graytext","grid","groove","hand","hard-light","help","hidden","hide","higher","highlight","highlighttext","horizontal","hsl","hsla","hue","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-grid","inline-table","inset","inside","intrinsic","invert","italic","justify","keep-all","landscape","large","larger","left","level","lighter","lighten","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-hexadecimal","lower-latin","lower-norwegian","lowercase","ltr","luminosity","manipulation","match","matrix","matrix3d","medium","menu","menutext","message-box","middle","min-intrinsic","mix","monospace","move","multiple","multiple_mask_images","multiply","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","opacity","open-quote","optimizeLegibility","optimizeSpeed","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","perspective","pinch-zoom","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row","row-resize","row-reverse","rtl","run-in","running","s-resize","sans-serif","saturation","scale","scale3d","scaleX","scaleY","scaleZ","screen","scroll","scrollbar","scroll-position","se-resize","self-start","self-end","semi-condensed","semi-expanded","separate","serif","show","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","soft-light","solid","source-atop","source-in","source-out","source-over","space","space-around","space-between","space-evenly","spell-out","square","start","static","status-bar","stretch","stroke","stroke-box","sub","subpixel-antialiased","svg_masks","super","sw-resize","symbolic","symbols","system-ui","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","text","text-bottom","text-top","textarea","textfield","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","to","top","transform","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","unidirectional-pan","unset","up","upper-latin","uppercase","url","var","vertical","vertical-text","view-box","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","wrap","wrap-reverse","x-large","x-small","xor","xx-large","xx-small"].map(e=>({type:"keyword",label:e})).concat(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"].map(e=>({type:"constant",label:e}))),Wjt=["a","abbr","address","article","aside","b","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","dd","del","details","dfn","dialog","div","dl","dt","em","figcaption","figure","footer","form","header","hgroup","h1","h2","h3","h4","h5","h6","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","main","meter","nav","ol","output","p","pre","ruby","section","select","small","source","span","strong","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","tr","u","ul"].map(e=>({type:"type",label:e})),Kjt=["@charset","@color-profile","@container","@counter-style","@font-face","@font-feature-values","@font-palette-values","@import","@keyframes","@layer","@media","@namespace","@page","@position-try","@property","@scope","@starting-style","@supports","@view-transition"].map(e=>({type:"keyword",label:e})),vf=/^(\w[\w-]*|-\w[\w-]*|)$/,Gjt=/^-(-[\w-]*)?$/;function Xjt(e,t){var n;if((e.name=="("||e.type.isError)&&(e=e.parent||e),e.name!="ArgList")return!1;let i=(n=e.parent)===null||n===void 0?void 0:n.firstChild;return(i==null?void 0:i.name)!="Callee"?!1:t.sliceString(i.from,i.to)=="var"}const Tee=new KU,Yjt=["Declaration"];function Zjt(e){for(let t=e;;){if(t.type.isTop)return t;if(!(t=t.parent))return e}}function F_e(e,t,n){if(t.to-t.from>4096){let i=Tee.get(t);if(i)return i;let r=[],s=new Set,a=t.cursor(ir.IncludeAnonymous);if(a.firstChild())do for(let l of F_e(e,a.node,n))s.has(l.label)||(s.add(l.label),r.push(l));while(a.nextSibling());return Tee.set(t,r),r}else{let i=[],r=new Set;return t.cursor().iterate(s=>{var a;if(n(s)&&s.matchContext(Yjt)&&((a=s.node.nextSibling)===null||a===void 0?void 0:a.name)==":"){let l=e.sliceString(s.from,s.to);r.has(l)||(r.add(l),i.push({label:l,type:"variable"}))}}),i}}const Jjt=e=>t=>{let{state:n,pos:i}=t,r=Nr(n).resolveInner(i,-1),s=r.type.isError&&r.from==r.to-1&&n.doc.sliceString(r.from,r.to)=="-";if(r.name=="PropertyName"||(s||r.name=="TagName")&&/^(Block|Styles)$/.test(r.resolve(r.to).name))return{from:r.from,options:B5(),validFor:vf};if(r.name=="ValueName")return{from:r.from,options:Cee,validFor:vf};if(r.name=="PseudoClassName")return{from:r.from,options:Eee,validFor:vf};if(e(r)||(t.explicit||s)&&Xjt(r,n.doc))return{from:e(r)||s?r.from:i,options:F_e(n.doc,Zjt(r),e),validFor:Gjt};if(r.name=="TagName"){for(let{parent:c}=r;c;c=c.parent)if(c.name=="Block")return{from:r.from,options:B5(),validFor:vf};return{from:r.from,options:Wjt,validFor:vf}}if(r.name=="AtKeyword")return{from:r.from,options:Kjt,validFor:vf};if(!t.explicit)return null;let a=r.resolve(i),l=a.childBefore(i);return l&&l.name==":"&&a.name=="PseudoClassSelector"?{from:i,options:Eee,validFor:vf}:l&&l.name==":"&&a.name=="Declaration"||a.name=="ArgList"?{from:i,options:Cee,validFor:vf}:a.name=="Block"||a.name=="Styles"?{from:i,options:B5(),validFor:vf}:null},eRt=Jjt(e=>e.name=="VariableName"),ij=Nh.define({name:"css",parser:qjt.configure({props:[Vh.add({Declaration:vv()}),Hh.add({"Block KeyframeList":UE})]}),languageData:{commentTokens:{block:{open:"/*",close:"*/"}},indentOnInput:/^\s*\}$/,wordChars:"-"}});function tRt(){return new Pm(ij,ij.data.of({autocomplete:eRt}))}const ow=["_blank","_self","_top","_parent"],U5=["ascii","utf-8","utf-16","latin1","latin1"],Q5=["get","post","put","delete"],z5=["application/x-www-form-urlencoded","multipart/form-data","text/plain"],Ll=["true","false"],bn={},nRt={a:{attrs:{href:null,ping:null,type:null,media:null,target:ow,hreflang:null}},abbr:bn,address:bn,area:{attrs:{alt:null,coords:null,href:null,target:null,ping:null,media:null,hreflang:null,type:null,shape:["default","rect","circle","poly"]}},article:bn,aside:bn,audio:{attrs:{src:null,mediagroup:null,crossorigin:["anonymous","use-credentials"],preload:["none","metadata","auto"],autoplay:["autoplay"],loop:["loop"],controls:["controls"]}},b:bn,base:{attrs:{href:null,target:ow}},bdi:bn,bdo:bn,blockquote:{attrs:{cite:null}},body:bn,br:bn,button:{attrs:{form:null,formaction:null,name:null,value:null,autofocus:["autofocus"],disabled:["autofocus"],formenctype:z5,formmethod:Q5,formnovalidate:["novalidate"],formtarget:ow,type:["submit","reset","button"]}},canvas:{attrs:{width:null,height:null}},caption:bn,center:bn,cite:bn,code:bn,col:{attrs:{span:null}},colgroup:{attrs:{span:null}},command:{attrs:{type:["command","checkbox","radio"],label:null,icon:null,radiogroup:null,command:null,title:null,disabled:["disabled"],checked:["checked"]}},data:{attrs:{value:null}},datagrid:{attrs:{disabled:["disabled"],multiple:["multiple"]}},datalist:{attrs:{data:null}},dd:bn,del:{attrs:{cite:null,datetime:null}},details:{attrs:{open:["open"]}},dfn:bn,div:bn,dl:bn,dt:bn,em:bn,embed:{attrs:{src:null,type:null,width:null,height:null}},eventsource:{attrs:{src:null}},fieldset:{attrs:{disabled:["disabled"],form:null,name:null}},figcaption:bn,figure:bn,footer:bn,form:{attrs:{action:null,name:null,"accept-charset":U5,autocomplete:["on","off"],enctype:z5,method:Q5,novalidate:["novalidate"],target:ow}},h1:bn,h2:bn,h3:bn,h4:bn,h5:bn,h6:bn,head:{children:["title","base","link","style","meta","script","noscript","command"]},header:bn,hgroup:bn,hr:bn,html:{attrs:{manifest:null}},i:bn,iframe:{attrs:{src:null,srcdoc:null,name:null,width:null,height:null,sandbox:["allow-top-navigation","allow-same-origin","allow-forms","allow-scripts"],seamless:["seamless"]}},img:{attrs:{alt:null,src:null,ismap:null,usemap:null,width:null,height:null,crossorigin:["anonymous","use-credentials"]}},input:{attrs:{alt:null,dirname:null,form:null,formaction:null,height:null,list:null,max:null,maxlength:null,min:null,name:null,pattern:null,placeholder:null,size:null,src:null,step:null,value:null,width:null,accept:["audio/*","video/*","image/*"],autocomplete:["on","off"],autofocus:["autofocus"],checked:["checked"],disabled:["disabled"],formenctype:z5,formmethod:Q5,formnovalidate:["novalidate"],formtarget:ow,multiple:["multiple"],readonly:["readonly"],required:["required"],type:["hidden","text","search","tel","url","email","password","datetime","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]}},ins:{attrs:{cite:null,datetime:null}},kbd:bn,keygen:{attrs:{challenge:null,form:null,name:null,autofocus:["autofocus"],disabled:["disabled"],keytype:["RSA"]}},label:{attrs:{for:null,form:null}},legend:bn,li:{attrs:{value:null}},link:{attrs:{href:null,type:null,hreflang:null,media:null,sizes:["all","16x16","16x16 32x32","16x16 32x32 64x64"]}},map:{attrs:{name:null}},mark:bn,menu:{attrs:{label:null,type:["list","context","toolbar"]}},meta:{attrs:{content:null,charset:U5,name:["viewport","application-name","author","description","generator","keywords"],"http-equiv":["content-language","content-type","default-style","refresh"]}},meter:{attrs:{value:null,min:null,low:null,high:null,max:null,optimum:null}},nav:bn,noscript:bn,object:{attrs:{data:null,type:null,name:null,usemap:null,form:null,width:null,height:null,typemustmatch:["typemustmatch"]}},ol:{attrs:{reversed:["reversed"],start:null,type:["1","a","A","i","I"]},children:["li","script","template","ul","ol"]},optgroup:{attrs:{disabled:["disabled"],label:null}},option:{attrs:{disabled:["disabled"],label:null,selected:["selected"],value:null}},output:{attrs:{for:null,form:null,name:null}},p:bn,param:{attrs:{name:null,value:null}},pre:bn,progress:{attrs:{value:null,max:null}},q:{attrs:{cite:null}},rp:bn,rt:bn,ruby:bn,samp:bn,script:{attrs:{type:["text/javascript"],src:null,async:["async"],defer:["defer"],charset:U5}},section:bn,select:{attrs:{form:null,name:null,size:null,autofocus:["autofocus"],disabled:["disabled"],multiple:["multiple"]}},slot:{attrs:{name:null}},small:bn,source:{attrs:{src:null,type:null,media:null}},span:bn,strong:bn,style:{attrs:{type:["text/css"],media:null,scoped:null}},sub:bn,summary:bn,sup:bn,table:bn,tbody:bn,td:{attrs:{colspan:null,rowspan:null,headers:null}},template:bn,textarea:{attrs:{dirname:null,form:null,maxlength:null,name:null,placeholder:null,rows:null,cols:null,autofocus:["autofocus"],disabled:["disabled"],readonly:["readonly"],required:["required"],wrap:["soft","hard"]}},tfoot:bn,th:{attrs:{colspan:null,rowspan:null,headers:null,scope:["row","col","rowgroup","colgroup"]}},thead:bn,time:{attrs:{datetime:null}},title:bn,tr:bn,track:{attrs:{src:null,label:null,default:null,kind:["subtitles","captions","descriptions","chapters","metadata"],srclang:null}},ul:{children:["li","script","template","ul","ol"]},var:bn,video:{attrs:{src:null,poster:null,width:null,height:null,crossorigin:["anonymous","use-credentials"],preload:["auto","metadata","none"],autoplay:["autoplay"],mediagroup:["movie"],muted:["muted"],controls:["controls"]}},wbr:bn},B_e={accesskey:null,class:null,contenteditable:Ll,contextmenu:null,dir:["ltr","rtl","auto"],draggable:["true","false","auto"],dropzone:["copy","move","link","string:","file:"],hidden:["hidden"],id:null,inert:["inert"],itemid:null,itemprop:null,itemref:null,itemscope:["itemscope"],itemtype:null,lang:["ar","bn","de","en-GB","en-US","es","fr","hi","id","ja","pa","pt","ru","tr","zh"],spellcheck:Ll,autocorrect:Ll,autocapitalize:Ll,style:null,tabindex:null,title:null,translate:["yes","no"],rel:["stylesheet","alternate","author","bookmark","help","license","next","nofollow","noreferrer","prefetch","prev","search","tag"],role:"alert application article banner button cell checkbox complementary contentinfo dialog document feed figure form grid gridcell heading img list listbox listitem main navigation region row rowgroup search switch tab table tabpanel textbox timer".split(" "),"aria-activedescendant":null,"aria-atomic":Ll,"aria-autocomplete":["inline","list","both","none"],"aria-busy":Ll,"aria-checked":["true","false","mixed","undefined"],"aria-controls":null,"aria-describedby":null,"aria-disabled":Ll,"aria-dropeffect":null,"aria-expanded":["true","false","undefined"],"aria-flowto":null,"aria-grabbed":["true","false","undefined"],"aria-haspopup":Ll,"aria-hidden":Ll,"aria-invalid":["true","false","grammar","spelling"],"aria-label":null,"aria-labelledby":null,"aria-level":null,"aria-live":["off","polite","assertive"],"aria-multiline":Ll,"aria-multiselectable":Ll,"aria-owns":null,"aria-posinset":null,"aria-pressed":["true","false","mixed","undefined"],"aria-readonly":Ll,"aria-relevant":null,"aria-required":Ll,"aria-selected":["true","false","undefined"],"aria-setsize":null,"aria-sort":["ascending","descending","none","other"],"aria-valuemax":null,"aria-valuemin":null,"aria-valuenow":null,"aria-valuetext":null},U_e="beforeunload copy cut dragstart dragover dragleave dragenter dragend drag paste focus blur change click load mousedown mouseenter mouseleave mouseup keydown keyup resize scroll unload".split(" ").map(e=>"on"+e);for(let e of U_e)B_e[e]=null;class vk{constructor(t,n){this.tags={...nRt,...t},this.globalAttrs={...B_e,...n},this.allTags=Object.keys(this.tags),this.globalAttrNames=Object.keys(this.globalAttrs)}}vk.default=new vk;function mx(e,t,n=e.length){if(!t)return"";let i=t.firstChild,r=i&&i.getChild("TagName");return r?e.sliceString(r.from,Math.min(r.to,n)):""}function gx(e,t=!1){for(;e;e=e.parent)if(e.name=="Element")if(t)t=!1;else return e;return null}function Q_e(e,t,n){let i=n.tags[mx(e,gx(t))];return(i==null?void 0:i.children)||n.allTags}function $Q(e,t){let n=[];for(let i=gx(t);i&&!i.type.isTop;i=gx(i.parent)){let r=mx(e,i);if(r&&i.lastChild.name=="CloseTag")break;r&&n.indexOf(r)<0&&(t.name=="EndTag"||t.from>=i.firstChild.to)&&n.push(r)}return n}const z_e=/^[:\-\.\w\u00b7-\uffff]*$/;function Aee(e,t,n,i,r){let s=/\s*>/.test(e.sliceDoc(r,r+5))?"":">",a=gx(n,n.name=="StartTag"||n.name=="TagName");return{from:i,to:r,options:Q_e(e.doc,a,t).map(l=>({label:l,type:"type"})).concat($Q(e.doc,n).map((l,c)=>({label:"/"+l,apply:"/"+l+s,type:"type",boost:99-c}))),validFor:/^\/?[:\-\.\w\u00b7-\uffff]*$/}}function _ee(e,t,n,i){let r=/\s*>/.test(e.sliceDoc(i,i+5))?"":">";return{from:n,to:i,options:$Q(e.doc,t).map((s,a)=>({label:s,apply:s+r,type:"type",boost:99-a})),validFor:z_e}}function iRt(e,t,n,i){let r=[],s=0;for(let a of Q_e(e.doc,n,t))r.push({label:"<"+a,type:"type"});for(let a of $Q(e.doc,n))r.push({label:"",type:"type",boost:99-s++});return{from:i,to:i,options:r,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}function rRt(e,t,n,i,r){let s=gx(n),a=s?t.tags[mx(e.doc,s)]:null,l=a&&a.attrs?Object.keys(a.attrs):[],c=a&&a.globalAttrs===!1?l:l.length?l.concat(t.globalAttrNames):t.globalAttrNames;return{from:i,to:r,options:c.map(u=>({label:u,type:"property"})),validFor:z_e}}function sRt(e,t,n,i,r){var s;let a=(s=n.parent)===null||s===void 0?void 0:s.getChild("AttributeName"),l=[],c;if(a){let u=e.sliceDoc(a.from,a.to),d=t.globalAttrs[u];if(!d){let f=gx(n),h=f?t.tags[mx(e.doc,f)]:null;d=(h==null?void 0:h.attrs)&&h.attrs[u]}if(d){let f=e.sliceDoc(i,r).toLowerCase(),h='"',m='"';/^['"]/.test(f)?(c=f[0]=='"'?/^[^"]*$/:/^[^']*$/,h="",m=e.sliceDoc(r,r+1)==f[0]?"":f[0],f=f.slice(1),i++):c=/^[^\s<>='"]*$/;for(let g of d)l.push({label:g,apply:h+g+m,type:"constant"})}}return{from:i,to:r,options:l,validFor:c}}function V_e(e,t){let{state:n,pos:i}=t,r=Nr(n).resolveInner(i,-1),s=r.resolve(i);for(let a=i,l;s==r&&(l=r.childBefore(a));){let c=l.lastChild;if(!c||!c.type.isError||c.fromV_e(i,r)}const lRt=Bd.parser.configure({top:"SingleExpression"}),H_e=[{tag:"script",attrs:e=>e.type=="text/typescript"||e.lang=="ts",parser:Z2e.parser},{tag:"script",attrs:e=>e.type=="text/babel"||e.type=="text/jsx",parser:J2e.parser},{tag:"script",attrs:e=>e.type=="text/typescript-jsx",parser:e_e.parser},{tag:"script",attrs(e){return/^(importmap|speculationrules|application\/(.+\+)?json)$/i.test(e.type)},parser:lRt},{tag:"script",attrs(e){return!e.type||/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i.test(e.type)},parser:Bd.parser},{tag:"style",attrs(e){return(!e.lang||e.lang=="css")&&(!e.type||/^(text\/)?(x-)?(stylesheet|css)$/i.test(e.type))},parser:ij.parser}],q_e=[{name:"style",parser:ij.parser.configure({top:"Styles"})}].concat(U_e.map(e=>({name:e,parser:Bd.parser}))),W_e=Nh.define({name:"html",parser:vjt.configure({props:[Vh.add({Element(e){let t=/^(\s*)(<\/)?/.exec(e.textAfter);return e.node.to<=e.pos+t[0].length?e.continue():e.lineIndent(e.node.from)+(t[2]?0:e.unit)},"OpenTag CloseTag SelfClosingTag"(e){return e.column(e.node.from)+e.unit},Document(e){if(e.pos+/\s*/.exec(e.textAfter)[0].lengthe.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:""}},indentOnInput:/^\s*<\/\w+\W$/,wordChars:"-_"}}),Q2=W_e.configure({wrap:P_e(H_e,q_e)});function cRt(e={}){let t="",n;e.matchClosingTags===!1&&(t="noMatch"),e.selfClosingTags===!0&&(t=(t?t+" ":"")+"selfClosing"),(e.nestedLanguages&&e.nestedLanguages.length||e.nestedAttributes&&e.nestedAttributes.length)&&(n=P_e((e.nestedLanguages||[]).concat(H_e),(e.nestedAttributes||[]).concat(q_e)));let i=n?W_e.configure({wrap:n,dialect:t}):t?Q2.configure({dialect:t}):Q2;return new Pm(i,[Q2.data.of({autocomplete:oRt(e)}),e.autoCloseTags!==!1?uRt:[],r8().support,tRt().support])}const Nee=new Set("area base br col command embed frame hr img input keygen link meta param source track wbr menuitem".split(" ")),uRt=Qt.inputHandler.of((e,t,n,i,r)=>{if(e.composing||e.state.readOnly||t!=n||i!=">"&&i!="/"||!Q2.isActiveAt(e.state,t,-1))return!1;let s=r(),{state:a}=s,l=a.changeByRange(c=>{var u,d,f;let h=a.doc.sliceString(c.from-1,c.to)==i,{head:m}=c,g=Nr(a).resolveInner(m,-1),b;if(h&&i==">"&&g.name=="EndTag"){let v=g.parent;if(((d=(u=v.parent)===null||u===void 0?void 0:u.lastChild)===null||d===void 0?void 0:d.name)!="CloseTag"&&(b=mx(a.doc,v.parent,m))&&!Nee.has(b)){let y=m+(a.doc.sliceString(m,m+1)===">"?1:0),x=``;return{range:c,changes:{from:m,to:y,insert:x}}}}else if(h&&i=="/"&&g.name=="IncompleteCloseTag"){let v=g.parent;if(g.from==m-2&&((f=v.lastChild)===null||f===void 0?void 0:f.name)!="CloseTag"&&(b=mx(a.doc,v,m))&&!Nee.has(b)){let y=m+(a.doc.sliceString(m,m+1)===">"?1:0),x=`${b}>`;return{range:rt.cursor(m+x.length,-1),changes:{from:m,to:y,insert:x}}}}return{range:c}});return l.changes.empty?!1:(e.dispatch([s,a.update(l,{userEvent:"input.complete",scrollIntoView:!0})]),!0)}),K_e=RI({commentTokens:{block:{open:""}}}),G_e=new Un,X_e=wNt.configure({props:[Hh.add(e=>!e.is("Block")||e.is("Document")||d8(e)!=null||dRt(e)?void 0:(t,n)=>({from:n.doc.lineAt(t.from).to,to:t.to})),G_e.add(d8),Vh.add({Document:()=>null}),Wp.add({Document:K_e})]});function d8(e){let t=/^(?:ATX|Setext)Heading(\d)$/.exec(e.name);return t?+t[1]:void 0}function dRt(e){return e.name=="OrderedList"||e.name=="BulletList"}function fRt(e,t){let n=e;for(;;){let i=n.nextSibling,r;if(!i||(r=d8(i.type))!=null&&r<=t)break;n=i}return n.to}const hRt=m2e.of((e,t,n)=>{for(let i=Nr(e).resolveInner(n,-1);i&&!(i.fromn)return{from:n,to:s}}return null});function FQ(e){return new tc(K_e,e,[],"markdown")}const pRt=FQ(X_e),mRt=X_e.configure([RNt,PNt,INt,DNt,{props:[Hh.add({Table:(e,t)=>({from:t.doc.lineAt(e.from).to,to:e.to})})]}]),rj=FQ(mRt);function gRt(e,t){return n=>{if(n&&e){let i=null;if(n=/\S*/.exec(n)[0],typeof e=="function"?i=e(n):i=qN.matchLanguageName(e,n,!0),i instanceof qN)return i.support?i.support.language.parser:$b.getSkippingParser(i.load());if(i)return i.parser}return t?t.parser:null}}let V5=class{constructor(t,n,i,r,s,a,l){this.node=t,this.from=n,this.to=i,this.spaceBefore=r,this.spaceAfter=s,this.type=a,this.item=l}blank(t,n=!0){let i=this.spaceBefore+(this.node.name=="Blockquote"?">":"");if(t!=null){for(;i.length0;r--)i+=" ";return i+(n?this.spaceAfter:"")}}marker(t,n){let i=this.node.name=="OrderedList"?String(+Z_e(this.item,t)[2]+n):"";return this.spaceBefore+i+this.type+this.spaceAfter}};function Y_e(e,t){let n=[],i=[];for(let r=e;r;r=r.parent){if(r.name=="FencedCode")return i;(r.name=="ListItem"||r.name=="Blockquote")&&n.push(r)}for(let r=n.length-1;r>=0;r--){let s=n[r],a,l=t.lineAt(s.from),c=s.from-l.from;if(s.name=="Blockquote"&&(a=/^ *>( ?)/.exec(l.text.slice(c))))i.push(new V5(s,c,c+a[0].length,"",a[1],">",null));else if(s.name=="ListItem"&&s.parent.name=="OrderedList"&&(a=/^( *)\d+([.)])( *)/.exec(l.text.slice(c)))){let u=a[3],d=a[0].length;u.length>=4&&(u=u.slice(0,u.length-4),d-=4),i.push(new V5(s.parent,c,c+d,a[1],u,a[2],s))}else if(s.name=="ListItem"&&s.parent.name=="BulletList"&&(a=/^( *)([-+*])( {1,4}\[[ xX]\])?( +)/.exec(l.text.slice(c)))){let u=a[4],d=a[0].length;u.length>4&&(u=u.slice(0,u.length-4),d-=4);let f=a[2];a[3]&&(f+=a[3].replace(/[xX]/," ")),i.push(new V5(s.parent,c,c+d,a[1],u,f,s))}}return i}function Z_e(e,t){return/^(\s*)(\d+)(?=[.)])/.exec(t.sliceString(e.from,e.from+10))}function H5(e,t,n,i=0){for(let r=-1,s=e;;){if(s.name=="ListItem"){let l=Z_e(s,t),c=+l[2];if(r>=0){if(c!=r+1)return;n.push({from:s.from+l[1].length,to:s.from+l[0].length,insert:String(r+2+i)})}r=c}let a=s.nextSibling;if(!a)break;s=a}}function BQ(e,t){let n=/^[ \t]*/.exec(e)[0].length;if(!n||t.facet(l1)!=" ")return e;let i=Qu(e,4,n),r="";for(let s=i;s>0;)s>=4?(r+=" ",s-=4):(r+=" ",s--);return r+e.slice(n)}const bRt=(e={})=>({state:t,dispatch:n})=>{let i=Nr(t),{doc:r}=t,s=null,a=t.changeByRange(l=>{if(!l.empty||!rj.isActiveAt(t,l.from,-1)&&!rj.isActiveAt(t,l.from,1))return s={range:l};let c=l.from,u=r.lineAt(c),d=Y_e(i.resolveInner(c,-1),r);for(;d.length&&d[d.length-1].from>c-u.from;)d.pop();if(!d.length)return s={range:l};let f=d[d.length-1];if(f.to-f.spaceAfter.length>c-u.from)return s={range:l};let h=c>=f.to-f.spaceAfter.length&&!/\S/.test(u.text.slice(f.to));if(f.item&&h){let y=f.node.firstChild,x=f.node.getChild("ListItem","ListItem");if(y.to>=c||x&&x.to0&&!/[^\s>]/.test(r.lineAt(u.from-1).text)||e.nonTightLists===!1){let O=d.length>1?d[d.length-2]:null,w,k="";O&&O.item?(w=u.from+O.from,k=O.marker(r,1)):w=u.from+(O?O.to:0);let S=[{from:w,to:c,insert:k}];return f.node.name=="OrderedList"&&H5(f.item,r,S,-2),O&&O.node.name=="OrderedList"&&H5(O.item,r,S),{range:rt.cursor(w+k.length),changes:S}}else{let O=Ree(d,t,u);return{range:rt.cursor(c+O.length+1),changes:{from:u.from,insert:O+t.lineBreak}}}}if(f.node.name=="Blockquote"&&h&&u.from){let y=r.lineAt(u.from-1),x=/>\s*$/.exec(y.text);if(x&&x.index==f.from){let O=t.changes([{from:y.from+x.index,to:y.to},{from:u.from+f.from,to:u.to}]);return{range:l.map(O),changes:O}}}let m=[];f.node.name=="OrderedList"&&H5(f.item,r,m);let g=f.item&&f.item.from]*/.exec(u.text)[0].length>=f.to)for(let y=0,x=d.length-1;y<=x;y++)b+=y==x&&!g?d[y].marker(r,1):d[y].blank(yu.from&&/\s/.test(u.text.charAt(v-u.from-1));)v--;return b=BQ(b,t),vRt(f.node,t.doc)&&(b=Ree(d,t,u)+t.lineBreak+b),m.push({from:v,to:c,insert:t.lineBreak+b}),{range:rt.cursor(v+b.length+1),changes:m}});return s?!1:(n(t.update(a,{scrollIntoView:!0,userEvent:"input"})),!0)},yRt=bRt();function jee(e){return e.name=="QuoteMark"||e.name=="ListMark"}function vRt(e,t){if(e.name!="OrderedList"&&e.name!="BulletList")return!1;let n=e.firstChild,i=e.getChild("ListItem","ListItem");if(!i)return!1;let r=t.lineAt(n.to),s=t.lineAt(i.from),a=/^[\s>]*$/.test(r.text);return r.number+(a?0:1){let n=Nr(e),i=null,r=e.changeByRange(s=>{let a=s.from,{doc:l}=e;if(s.empty&&rj.isActiveAt(e,s.from)){let c=l.lineAt(a),u=Y_e(xRt(n,a),l);if(u.length){let d=u[u.length-1],f=d.to-d.spaceAfter.length+(d.spaceAfter?1:0);if(a-c.from>f&&!/\S/.test(c.text.slice(f,a-c.from)))return{range:rt.cursor(c.from+f),changes:{from:c.from+f,to:a}};if(a-c.from==f&&(d.item&&c.from<=d.item.from||/^[\s>]*$/.test(c.text.slice(0,d.to)))){let h=c.from+d.from;if(d.item&&d.node.from{var n;let{main:i}=t.state.selection;if(i.empty)return!1;let r=(n=e.clipboardData)===null||n===void 0?void 0:n.getData("text/plain");if(!r||!/^(https?:\/\/|mailto:|xmpp:|www\.)/.test(r)||(/^www\./.test(r)&&(r="https://"+r),!rj.isActiveAt(t.state,i.from,1)))return!1;let s=Nr(t.state),a=!1;return s.iterate({from:i.from,to:i.to,enter:l=>{(l.from>i.from||CRt.test(l.name))&&(a=!0)},leave:l=>{l.to=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102}const TIt=new Hs((e,t)=>{let n;if(e.next<0)e.acceptToken(jRt);else if(t.context.flags&z2)W5(e.next)&&e.acceptToken(NRt,1);else if(((n=e.peek(-1))<0||W5(n))&&t.canShift(Iee)){let i=0;for(;e.next==UQ||e.next==$I;)e.advance(),i++;(e.next==Ub||e.next==xk||e.next==QQ)&&e.acceptToken(Iee,-i)}else W5(e.next)&&e.acceptToken(_Rt,1)},{contextual:!0}),AIt=new Hs((e,t)=>{let n=t.context;if(n.flags)return;let i=e.peek(-1);if(i==Ub||i==xk){let r=0,s=0;for(;;){if(e.next==UQ)r++;else if(e.next==$I)r+=8-r%8;else break;e.advance(),s++}r!=n.indent&&e.next!=Ub&&e.next!=xk&&e.next!=QQ&&(r[e,t|aNe])),jIt=new DI({start:_It,reduce(e,t,n,i){return e.flags&z2&&CIt.has(t)||(t==KRt||t==iNe)&&e.flags&aNe?e.parent:e},shift(e,t,n,i){return t==eNe?new V2(e,NIt(i.read(i.pos,n.pos)),0):t==tNe?e.parent:t==PRt||t==$Rt||t==URt||t==nNe?new V2(e,0,z2):Lee.has(t)?new V2(e,0,Lee.get(t)|e.flags&z2):e},hash(e){return e.hash}}),RIt=new Hs(e=>{for(let t=0;t<5;t++){if(e.next!="print".charCodeAt(t))return;e.advance()}if(!/\w/.test(String.fromCharCode(e.next)))for(let t=0;;t++){let n=e.peek(t);if(!(n==UQ||n==$I)){n!=vIt&&n!=xIt&&n!=Ub&&n!=xk&&n!=QQ&&e.acceptToken(ARt);return}}}),IIt=new Hs((e,t)=>{let{flags:n}=t.context,i=n&Cf?sNe:rNe,r=(n&Tf)>0,s=!(n&Af),a=(n&_f)>0,l=e.pos;for(;!(e.next<0);)if(a&&e.next==f8)if(e.peek(1)==f8)e.advance(2);else{if(e.pos==l){e.acceptToken(nNe,1);return}break}else if(s&&e.next==Mee){if(e.pos==l){e.advance();let c=e.next;c>=0&&(e.advance(),PIt(e,c)),e.acceptToken(IRt);return}break}else if(e.next==Mee&&!s&&e.peek(1)>-1)e.advance(2);else if(e.next==i&&(!r||e.peek(1)==i&&e.peek(2)==i)){if(e.pos==l){e.acceptToken(Pee,r?3:1);return}break}else if(e.next==Ub){if(r)e.advance();else if(e.pos==l){e.acceptToken(Pee);return}break}else e.advance();e.pos>l&&e.acceptToken(RRt)});function PIt(e,t){if(t==wIt)for(let n=0;n<2&&e.next>=48&&e.next<=55;n++)e.advance();else if(t==OIt)for(let n=0;n<2&&K5(e.next);n++)e.advance();else if(t==kIt)for(let n=0;n<4&&K5(e.next);n++)e.advance();else if(t==EIt)for(let n=0;n<8&&K5(e.next);n++)e.advance();else if(t==SIt&&e.next==f8){for(e.advance();e.next>=0&&e.next!=Dee&&e.next!=rNe&&e.next!=sNe&&e.next!=Ub;)e.advance();e.next==Dee&&e.advance()}}const DIt=zh({'async "*" "**" FormatConversion FormatSpec':ne.modifier,"for while if elif else try except finally return raise break continue with pass assert await yield match case":ne.controlKeyword,"in not and or is del":ne.operatorKeyword,"from def class global nonlocal lambda":ne.definitionKeyword,import:ne.moduleKeyword,"with as print":ne.keyword,Boolean:ne.bool,None:ne.null,VariableName:ne.variableName,"CallExpression/VariableName":ne.function(ne.variableName),"FunctionDefinition/VariableName":ne.function(ne.definition(ne.variableName)),"ClassDefinition/VariableName":ne.definition(ne.className),PropertyName:ne.propertyName,"CallExpression/MemberExpression/PropertyName":ne.function(ne.propertyName),Comment:ne.lineComment,Number:ne.number,String:ne.string,FormatString:ne.special(ne.string),Escape:ne.escape,UpdateOp:ne.updateOperator,"ArithOp!":ne.arithmeticOperator,BitOp:ne.bitwiseOperator,CompareOp:ne.compareOperator,AssignOp:ne.definitionOperator,Ellipsis:ne.punctuation,At:ne.meta,"( )":ne.paren,"[ ]":ne.squareBracket,"{ }":ne.brace,".":ne.derefOperator,", ;":ne.separator}),MIt={__proto__:null,await:44,or:54,and:56,in:60,not:62,is:64,if:70,else:72,lambda:76,yield:94,from:96,async:102,for:104,None:162,True:164,False:164,del:178,pass:182,break:186,continue:190,return:194,raise:202,import:206,as:208,global:212,nonlocal:214,assert:218,type:223,elif:236,while:240,try:246,except:248,finally:250,with:254,def:258,class:268,match:279,case:285},LIt=jh.deserialize({version:14,states:"##jQ`QeOOP$}OSOOO&WQtO'#HUOOQS'#Co'#CoOOQS'#Cp'#CpO'vQdO'#CnO*UQtO'#HTOOQS'#HU'#HUOOQS'#DU'#DUOOQS'#HT'#HTO*rQdO'#D_O+VQdO'#DfO+gQdO'#DjO+zOWO'#DuO,VOWO'#DvO.[QtO'#GuOOQS'#Gu'#GuO'vQdO'#GtO0ZQtO'#GtOOQS'#Eb'#EbO0rQdO'#EcOOQS'#Gs'#GsO0|QdO'#GrOOQV'#Gr'#GrO1XQdO'#FYOOQS'#G^'#G^O1^QdO'#FXOOQV'#IS'#ISOOQV'#Gq'#GqOOQV'#Fq'#FqQ`QeOOO'vQdO'#CqO1lQdO'#C}O1sQdO'#DRO2RQdO'#HYO2cQtO'#EVO'vQdO'#EWOOQS'#EY'#EYOOQS'#E['#E[OOQS'#E^'#E^O2wQdO'#E`O3_QdO'#EdO3rQdO'#EfO3zQtO'#EfO1XQdO'#EiO0rQdO'#ElO1XQdO'#EnO0rQdO'#EtO0rQdO'#EwO4VQdO'#EyO4^QdO'#FOO4iQdO'#EzO0rQdO'#FOO1XQdO'#FQO1XQdO'#FVO4nQdO'#F[P4uOdO'#GpPOOO)CBd)CBdOOQS'#Ce'#CeOOQS'#Cf'#CfOOQS'#Cg'#CgOOQS'#Ch'#ChOOQS'#Ci'#CiOOQS'#Cj'#CjOOQS'#Cl'#ClO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO5TQdO'#DoOOQS,5:Y,5:YO5hQdO'#HdOOQS,5:],5:]O5uQ!fO,5:]O5zQtO,59YO1lQdO,59bO1lQdO,59bO1lQdO,59bO8jQdO,59bO8oQdO,59bO8vQdO,59jO8}QdO'#HTO:TQdO'#HSOOQS'#HS'#HSOOQS'#D['#D[O:lQdO,59aO'vQdO,59aO:zQdO,59aOOQS,59y,59yO;PQdO,5:RO'vQdO,5:ROOQS,5:Q,5:QO;_QdO,5:QO;dQdO,5:XO'vQdO,5:XO'vQdO,5:VOOQS,5:U,5:UO;uQdO,5:UO;zQdO,5:WOOOW'#Fy'#FyOOOOQS'#Ds'#DsOOQS1G/w1G/wOOQS1G.|1G.|O!/[QtO1G.|O!/cQtO1G.|O1lQdO1G.|O!0OQdO1G/UOOQS'#DZ'#DZO0rQdO,59tOOQS1G.{1G.{O!0VQdO1G/eO!0gQdO1G/eO!0oQdO1G/fO'vQdO'#H[O!0tQdO'#H[O!0yQtO1G.{O!1ZQdO,59iO!2aQdO,5=zO!2qQdO,5=zO!2yQdO1G/mO!3OQtO1G/mOOQS1G/l1G/lO!3`QdO,5=uO!4VQdO,5=uO0rQdO1G/qO!4tQdO1G/sO!4yQtO1G/sO!5ZQtO1G/qOOQS1G/p1G/pOOQS1G/r1G/rOOOW-E9w-E9wOOQS1G/{1G/{O!5kQdO'#HxO0rQdO'#HxO!5|QdO,5>cOOOW-E9x-E9xOOQS1G/|1G/|OOQS-E9{-E9{O!6[Q#xO1G2zO!6{QtO1G2zO'vQdO,5kOOQS1G1`1G1`O!8RQdO1G1`OOQS'#DV'#DVO0rQdO,5=qOOQS,5=q,5=qO!8WQdO'#FrO!8cQdO,59oO!8kQdO1G/XO!8uQtO,5=uOOQS1G3`1G3`OOQS,5:m,5:mO!9fQdO'#GtOOQS,5jO!;ZQdO,5>jO1XQdO,5>jO!;lQdO,5>iOOQS-E:R-E:RO!;qQdO1G0lO!;|QdO1G0lO!lO!lO!hO!=VQdO,5>hO!=hQdO'#EpO0rQdO1G0tO!=sQdO1G0tO!=xQgO1G0zO!AvQgO1G0}O!EqQdO,5>oO!E{QdO,5>oO!FTQtO,5>oO0rQdO1G1PO!F_QdO1G1PO4iQdO1G1UO!!vQdO1G1WOOQV,5;a,5;aO!FdQfO,5;aO!FiQgO1G1QO!JjQdO'#GZO4iQdO1G1QO4iQdO1G1QO!JzQdO,5>pO!KXQdO,5>pO1XQdO,5>pOOQV1G1U1G1UO!KaQdO'#FSO!KrQ!fO1G1WO!KzQdO1G1WOOQV1G1]1G1]O4iQdO1G1]O!LPQdO1G1]O!LXQdO'#F^OOQV1G1b1G1bO!#ZQtO1G1bPOOO1G2v1G2vP!L^OSO1G2vOOQS,5=},5=}OOQS'#Dp'#DpO0rQdO,5=}O!LfQdO,5=|O!LyQdO,5=|OOQS1G/u1G/uO!MRQdO,5>PO!McQdO,5>PO!MkQdO,5>PO!NOQdO,5>PO!N`QdO,5>POOQS1G3j1G3jOOQS7+$h7+$hO!8kQdO7+$pO#!RQdO1G.|O#!YQdO1G.|OOQS1G/`1G/`OOQS,5<`,5<`O'vQdO,5<`OOQS7+%P7+%PO#!aQdO7+%POOQS-E9r-E9rOOQS7+%Q7+%QO#!qQdO,5=vO'vQdO,5=vOOQS7+$g7+$gO#!vQdO7+%PO##OQdO7+%QO##TQdO1G3fOOQS7+%X7+%XO##eQdO1G3fO##mQdO7+%XOOQS,5<_,5<_O'vQdO,5<_O##rQdO1G3aOOQS-E9q-E9qO#$iQdO7+%]OOQS7+%_7+%_O#$wQdO1G3aO#%fQdO7+%_O#%kQdO1G3gO#%{QdO1G3gO#&TQdO7+%]O#&YQdO,5>dO#&sQdO,5>dO#&sQdO,5>dOOQS'#Dx'#DxO#'UO&jO'#DzO#'aO`O'#HyOOOW1G3}1G3}O#'fQdO1G3}O#'nQdO1G3}O#'yQ#xO7+(fO#(jQtO1G2UP#)TQdO'#GOOOQS,5nQdO,5sQdO1G4OOOQS-E9y-E9yO#?^QdO1G4OO<[QdO'#H{OOOO'#D{'#D{OOOO'#F|'#F|O#?oO&jO,5:fOOOW,5>e,5>eOOOW7+)i7+)iO#?zQdO7+)iO#@SQdO1G2zO#@mQdO1G2zP'vQdO'#FuO0rQdO<mO#BQQdO,5>mOOQS1G0v1G0vOOQS<rO#KgQdO,5>rO#KrQdO,5>rO#K}QdO,5>qO#L`QdO,5>qOOQS1G1Y1G1YOOQS,5;p,5;pOOQV<VAN>VO$ oQdO<cAN>cO0rQdO1G1|O$!PQtO1G1|P$!ZQdO'#FvOOQS1G2R1G2RP$!hQdO'#F{O$!uQdO7+)jO$#`QdO,5>gOOOO-E9z-E9zOOOW<tO$4{QdO,5>tO1XQdO,5vO$)nQdO,5>vOOQS1G1p1G1pOOQS,5<[,5<[OOQU7+'P7+'PO$+zQdO1G/iO$)nQdO,5wO$8zQdO,5>wOOQS1G1s1G1sOOQS7+'S7+'SP$)nQdO'#GdO$9SQdO1G4bO$9^QdO1G4bO$9fQdO1G4bOOQS7+%T7+%TO$9tQdO1G1tO$:SQtO'#FaO$:ZQdO,5<}OOQS,5<},5<}O$:iQdO1G4cOOQS-E:a-E:aO$)nQdO,5<|O$:pQdO,5<|O$:uQdO7+)|OOQS-E:`-E:`O$;PQdO7+)|O$)nQdO,5S~O%cOS%^OSSOS%]PQ~OPdOVaOfoOhYOopOs!POvqO!PrO!Q{O!T!SO!U!RO!XZO!][O!h`O!r`O!s`O!t`O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO#l!QO#o!TO#s!UO#u!VO#z!WO#}hO$P!XO%oRO%pRO%tSO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O~O%]!YO~OV!aO_!aOa!bOh!iO!X!kO!f!mO%j![O%k!]O%l!^O%m!_O%n!_O%o!`O%p!`O%q!aO%r!aO%s!aO~Ok%xXl%xXm%xXn%xXo%xXp%xXs%xXz%xX{%xX!x%xX#g%xX%[%xX%_%xX%z%xXg%xX!T%xX!U%xX%{%xX!W%xX![%xX!Q%xX#[%xXt%xX!m%xX~P%SOfoOhYO!XZO!][O!h`O!r`O!s`O!t`O%oRO%pRO%tSO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O~Oz%wX{%wX#g%wX%[%wX%_%wX%z%wX~Ok!pOl!qOm!oOn!oOo!rOp!sOs!tO!x%wX~P)pOV!zOg!|Oo0cOv0qO!PrO~P'vOV#OOo0cOv0qO!W#PO~P'vOV#SOa#TOo0cOv0qO![#UO~P'vOQ#XO%`#XO%a#ZO~OQ#^OR#[O%`#^O%a#`O~OV%iX_%iXa%iXh%iXk%iXl%iXm%iXn%iXo%iXp%iXs%iXz%iX!X%iX!f%iX%j%iX%k%iX%l%iX%m%iX%n%iX%o%iX%p%iX%q%iX%r%iX%s%iXg%iX!T%iX!U%iX~O&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O&c^O&d^O&e^O&f^O&g^O&h^O&i^O&j^O{%iX!x%iX#g%iX%[%iX%_%iX%z%iX%{%iX!W%iX![%iX!Q%iX#[%iXt%iX!m%iX~P,eOz#dO{%hX!x%hX#g%hX%[%hX%_%hX%z%hX~Oo0cOv0qO~P'vO#g#gO%[#iO%_#iO~O%uWO~O!T#nO#u!VO#z!WO#}hO~OopO~P'vOV#sOa#tO%uWO{wP~OV#xOo0cOv0qO!Q#yO~P'vO{#{O!x$QO%z#|O#g!yX%[!yX%_!yX~OV#xOo0cOv0qO#g#SX%[#SX%_#SX~P'vOo0cOv0qO#g#WX%[#WX%_#WX~P'vOh$WO%uWO~O!f$YO!r$YO%uWO~OV$eO~P'vO!U$gO#s$hO#u$iO~O{$jO~OV$qO~P'vOS$sO%[$rO%_$rO%c$tO~OV$}Oa$}Og%POo0cOv0qO~P'vOo0cOv0qO{%SO~P'vO&Y%UO~Oa!bOh!iO!X!kO!f!mOVba_bakbalbambanbaobapbasbazba{ba!xba#gba%[ba%_ba%jba%kba%lba%mba%nba%oba%pba%qba%rba%sba%zbagba!Tba!Uba%{ba!Wba![ba!Qba#[batba!mba~On%ZO~Oo%ZO~P'vOo0cO~P'vOk0eOl0fOm0dOn0dOo0mOp0nOs0rOg%wX!T%wX!U%wX%{%wX!W%wX![%wX!Q%wX#[%wX!m%wX~P)pO%{%]Og%vXz%vX!T%vX!U%vX!W%vX{%vX~Og%_Oz%`O!T%dO!U%cO~Og%_O~Oz%gO!T%dO!U%cO!W&SX~O!W%kO~Oz%lO{%nO!T%dO!U%cO![%}X~O![%rO~O![%sO~OQ#XO%`#XO%a%uO~OV%wOo0cOv0qO!PrO~P'vOQ#^OR#[O%`#^O%a%zO~OV!qa_!qaa!qah!qak!qal!qam!qan!qao!qap!qas!qaz!qa{!qa!X!qa!f!qa!x!qa#g!qa%[!qa%_!qa%j!qa%k!qa%l!qa%m!qa%n!qa%o!qa%p!qa%q!qa%r!qa%s!qa%z!qag!qa!T!qa!U!qa%{!qa!W!qa![!qa!Q!qa#[!qat!qa!m!qa~P#yOz%|O{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~P%SOV&OOopOvqO{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~P'vOz%|O{%ha!x%ha#g%ha%[%ha%_%ha%z%ha~OPdOVaOopOvqO!PrO!Q{O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO#g$zX%[$zX%_$zX~P'vO#g#gO%[&TO%_&TO~O!f&UOh&sX%[&sXz&sX#[&sX#g&sX%_&sX#Z&sXg&sX~Oh!iO%[&WO~Okealeameaneaoeapeaseazea{ea!xea#gea%[ea%_ea%zeagea!Tea!Uea%{ea!Wea![ea!Qea#[eatea!mea~P%SOsqazqa{qa#gqa%[qa%_qa%zqa~Ok!pOl!qOm!oOn!oOo!rOp!sO!xqa~PEcO%z&YOz%yX{%yX~O%uWOz%yX{%yX~Oz&]O{wX~O{&_O~Oz%lO#g%}X%[%}X%_%}Xg%}X{%}X![%}X!m%}X%z%}X~OV0lOo0cOv0qO!PrO~P'vO%z#|O#gUa%[Ua%_Ua~Oz&hO#g&PX%[&PX%_&PXn&PX~P%SOz&kO!Q&jO#g#Wa%[#Wa%_#Wa~Oz&lO#[&nO#g&rX%[&rX%_&rXg&rX~O!f$YO!r$YO#Z&qO%uWO~O#Z&qO~Oz&sO#g&tX%[&tX%_&tX~Oz&uO#g&pX%[&pX%_&pX{&pX~O!X&wO%z&xO~Oz&|On&wX~P%SOn'PO~OPdOVaOopOvqO!PrO!Q{O!{tO!}uO#PvO#RwO#TxO#XyO#ZzO#^|O#_|O#a}O#c!OO%['UO~P'vOt'YO#p'WO#q'XOP#naV#naf#nah#nao#nas#nav#na!P#na!Q#na!T#na!U#na!X#na!]#na!h#na!r#na!s#na!t#na!{#na!}#na#P#na#R#na#T#na#X#na#Z#na#^#na#_#na#a#na#c#na#l#na#o#na#s#na#u#na#z#na#}#na$P#na%X#na%o#na%p#na%t#na%u#na&Z#na&[#na&]#na&^#na&_#na&`#na&a#na&b#na&c#na&d#na&e#na&f#na&g#na&h#na&i#na&j#na%Z#na%_#na~Oz'ZO#[']O{&xX~Oh'_O!X&wO~Oh!iO{$jO!X&wO~O{'eO~P%SO%['hO%_'hO~OS'iO%['hO%_'hO~OV!aO_!aOa!bOh!iO!X!kO!f!mO%l!^O%m!_O%n!_O%o!`O%p!`O%q!aO%r!aO%s!aOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~O%k!]O~P!#uO%kWi~P!#uOV!aO_!aOa!bOh!iO!X!kO!f!mO%o!`O%p!`O%q!aO%r!aO%s!aOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%kWi%lWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~O%m!_O%n!_O~P!&pO%mWi%nWi~P!&pOa!bOh!iO!X!kO!f!mOkWilWimWinWioWipWisWizWi{Wi!xWi#gWi%[Wi%_Wi%jWi%kWi%lWi%mWi%nWi%oWi%pWi%zWigWi!TWi!UWi%{Wi!WWi![Wi!QWi#[WitWi!mWi~OV!aO_!aO%q!aO%r!aO%s!aO~P!)nOVWi_Wi%qWi%rWi%sWi~P!)nO!T%dO!U%cOg&VXz&VX~O%z'kO%{'kO~P,eOz'mOg&UX~Og'oO~Oz'pO{'rO!W&XX~Oo0cOv0qOz'pO{'sO!W&XX~P'vO!W'uO~Om!oOn!oOo!rOp!sOkjisjizji{ji!xji#gji%[ji%_ji%zji~Ol!qO~P!.aOlji~P!.aOk0eOl0fOm0dOn0dOo0mOp0nO~Ot'wO~P!/jOV'|Og'}Oo0cOv0qO~P'vOg'}Oz(OO~Og(QO~O!U(SO~Og(TOz(OO!T%dO!U%cO~P%SOk0eOl0fOm0dOn0dOo0mOp0nOgqa!Tqa!Uqa%{qa!Wqa![qa!Qqa#[qatqa!mqa~PEcOV'|Oo0cOv0qO!W&Sa~P'vOz(WO!W&Sa~O!W(XO~Oz(WO!T%dO!U%cO!W&Sa~P%SOV(]Oo0cOv0qO![%}a#g%}a%[%}a%_%}ag%}a{%}a!m%}a%z%}a~P'vOz(^O![%}a#g%}a%[%}a%_%}ag%}a{%}a!m%}a%z%}a~O![(aO~Oz(^O!T%dO!U%cO![%}a~P%SOz(dO!T%dO!U%cO![&Ta~P%SOz(gO{&lX![&lX!m&lX%z&lX~O{(kO![(mO!m(nO%z(jO~OV&OOopOvqO{%hi!x%hi#g%hi%[%hi%_%hi%z%hi~P'vOz(pO{%hi!x%hi#g%hi%[%hi%_%hi%z%hi~O!f&UOh&sa%[&saz&sa#[&sa#g&sa%_&sa#Z&sag&sa~O%[(uO~OV#sOa#tO%uWO~Oz&]O{wa~OopOvqO~P'vOz(^O#g%}a%[%}a%_%}ag%}a{%}a![%}a!m%}a%z%}a~P%SOz(zO#g%hX%[%hX%_%hX%z%hX~O%z#|O#gUi%[Ui%_Ui~O#g&Pa%[&Pa%_&Pan&Pa~P'vOz(}O#g&Pa%[&Pa%_&Pan&Pa~O%uWO#g&ra%[&ra%_&rag&ra~Oz)SO#g&ra%[&ra%_&rag&ra~Og)VO~OV)WOh$WO%uWO~O#Z)XO~O%uWO#g&ta%[&ta%_&ta~Oz)ZO#g&ta%[&ta%_&ta~Oo0cOv0qO#g&pa%[&pa%_&pa{&pa~P'vOz)^O#g&pa%[&pa%_&pa{&pa~OV)`Oa)`O%uWO~O%z)eO~Ot)hO#j)gOP#hiV#hif#hih#hio#his#hiv#hi!P#hi!Q#hi!T#hi!U#hi!X#hi!]#hi!h#hi!r#hi!s#hi!t#hi!{#hi!}#hi#P#hi#R#hi#T#hi#X#hi#Z#hi#^#hi#_#hi#a#hi#c#hi#l#hi#o#hi#s#hi#u#hi#z#hi#}#hi$P#hi%X#hi%o#hi%p#hi%t#hi%u#hi&Z#hi&[#hi&]#hi&^#hi&_#hi&`#hi&a#hi&b#hi&c#hi&d#hi&e#hi&f#hi&g#hi&h#hi&i#hi&j#hi%Z#hi%_#hi~Ot)iOP#kiV#kif#kih#kio#kis#kiv#ki!P#ki!Q#ki!T#ki!U#ki!X#ki!]#ki!h#ki!r#ki!s#ki!t#ki!{#ki!}#ki#P#ki#R#ki#T#ki#X#ki#Z#ki#^#ki#_#ki#a#ki#c#ki#l#ki#o#ki#s#ki#u#ki#z#ki#}#ki$P#ki%X#ki%o#ki%p#ki%t#ki%u#ki&Z#ki&[#ki&]#ki&^#ki&_#ki&`#ki&a#ki&b#ki&c#ki&d#ki&e#ki&f#ki&g#ki&h#ki&i#ki&j#ki%Z#ki%_#ki~OV)kOn&wa~P'vOz)lOn&wa~Oz)lOn&wa~P%SOn)pO~O%Y)tO~Ot)wO#p'WO#q)vOP#niV#nif#nih#nio#nis#niv#ni!P#ni!Q#ni!T#ni!U#ni!X#ni!]#ni!h#ni!r#ni!s#ni!t#ni!{#ni!}#ni#P#ni#R#ni#T#ni#X#ni#Z#ni#^#ni#_#ni#a#ni#c#ni#l#ni#o#ni#s#ni#u#ni#z#ni#}#ni$P#ni%X#ni%o#ni%p#ni%t#ni%u#ni&Z#ni&[#ni&]#ni&^#ni&_#ni&`#ni&a#ni&b#ni&c#ni&d#ni&e#ni&f#ni&g#ni&h#ni&i#ni&j#ni%Z#ni%_#ni~OV)zOo0cOv0qO{$jO~P'vOo0cOv0qO{&xa~P'vOz*OO{&xa~OV*SOa*TOg*WO%q*UO%uWO~O{$jO&{*YO~Oh'_O~Oh!iO{$jO~O%[*_O~O%[*aO%_*aO~OV$}Oa$}Oo0cOv0qOg&Ua~P'vOz*dOg&Ua~Oo0cOv0qO{*gO!W&Xa~P'vOz*hO!W&Xa~Oo0cOv0qOz*hO{*kO!W&Xa~P'vOo0cOv0qOz*hO!W&Xa~P'vOz*hO{*kO!W&Xa~Om0dOn0dOo0mOp0nOgjikjisjizji!Tji!Uji%{ji!Wji{ji![ji#gji%[ji%_ji!Qji#[jitji!mji%zji~Ol0fO~P!NkOlji~P!NkOV'|Og*pOo0cOv0qO~P'vOn*rO~Og*pOz*tO~Og*uO~OV'|Oo0cOv0qO!W&Si~P'vOz*vO!W&Si~O!W*wO~OV(]Oo0cOv0qO![%}i#g%}i%[%}i%_%}ig%}i{%}i!m%}i%z%}i~P'vOz*zO!T%dO!U%cO![&Ti~Oz*}O![%}i#g%}i%[%}i%_%}ig%}i{%}i!m%}i%z%}i~O![+OO~Oa+QOo0cOv0qO![&Ti~P'vOz*zO![&Ti~O![+SO~OV+UOo0cOv0qO{&la![&la!m&la%z&la~P'vOz+VO{&la![&la!m&la%z&la~O!]+YO&n+[O![!nX~O![+^O~O{(kO![+_O~O{(kO![+_O!m+`O~OV&OOopOvqO{%hq!x%hq#g%hq%[%hq%_%hq%z%hq~P'vOz$ri{$ri!x$ri#g$ri%[$ri%_$ri%z$ri~P%SOV&OOopOvqO~P'vOV&OOo0cOv0qO#g%ha%[%ha%_%ha%z%ha~P'vOz+aO#g%ha%[%ha%_%ha%z%ha~Oz$ia#g$ia%[$ia%_$ian$ia~P%SO#g&Pi%[&Pi%_&Pin&Pi~P'vOz+dO#g#Wq%[#Wq%_#Wq~O#[+eOz$va#g$va%[$va%_$vag$va~O%uWO#g&ri%[&ri%_&rig&ri~Oz+gO#g&ri%[&ri%_&rig&ri~OV+iOh$WO%uWO~O%uWO#g&ti%[&ti%_&ti~Oo0cOv0qO#g&pi%[&pi%_&pi{&pi~P'vO{#{Oz#eX!W#eX~Oz+mO!W&uX~O!W+oO~Ot+rO#j)gOP#hqV#hqf#hqh#hqo#hqs#hqv#hq!P#hq!Q#hq!T#hq!U#hq!X#hq!]#hq!h#hq!r#hq!s#hq!t#hq!{#hq!}#hq#P#hq#R#hq#T#hq#X#hq#Z#hq#^#hq#_#hq#a#hq#c#hq#l#hq#o#hq#s#hq#u#hq#z#hq#}#hq$P#hq%X#hq%o#hq%p#hq%t#hq%u#hq&Z#hq&[#hq&]#hq&^#hq&_#hq&`#hq&a#hq&b#hq&c#hq&d#hq&e#hq&f#hq&g#hq&h#hq&i#hq&j#hq%Z#hq%_#hq~On$|az$|a~P%SOV)kOn&wi~P'vOz+yOn&wi~Oz,TO{$jO#[,TO~O#q,VOP#nqV#nqf#nqh#nqo#nqs#nqv#nq!P#nq!Q#nq!T#nq!U#nq!X#nq!]#nq!h#nq!r#nq!s#nq!t#nq!{#nq!}#nq#P#nq#R#nq#T#nq#X#nq#Z#nq#^#nq#_#nq#a#nq#c#nq#l#nq#o#nq#s#nq#u#nq#z#nq#}#nq$P#nq%X#nq%o#nq%p#nq%t#nq%u#nq&Z#nq&[#nq&]#nq&^#nq&_#nq&`#nq&a#nq&b#nq&c#nq&d#nq&e#nq&f#nq&g#nq&h#nq&i#nq&j#nq%Z#nq%_#nq~O#[,WOz%Oa{%Oa~Oo0cOv0qO{&xi~P'vOz,YO{&xi~O{#{O%z,[Og&zXz&zX~O%uWOg&zXz&zX~Oz,`Og&yX~Og,bO~O%Y,eO~O!T%dO!U%cOg&Viz&Vi~OV$}Oa$}Oo0cOv0qOg&Ui~P'vO{,hOz$la!W$la~Oo0cOv0qO{,iOz$la!W$la~P'vOo0cOv0qO{*gO!W&Xi~P'vOz,lO!W&Xi~Oo0cOv0qOz,lO!W&Xi~P'vOz,lO{,oO!W&Xi~Og$hiz$hi!W$hi~P%SOV'|Oo0cOv0qO~P'vOn,qO~OV'|Og,rOo0cOv0qO~P'vOV'|Oo0cOv0qO!W&Sq~P'vOz$gi![$gi#g$gi%[$gi%_$gig$gi{$gi!m$gi%z$gi~P%SOV(]Oo0cOv0qO~P'vOa+QOo0cOv0qO![&Tq~P'vOz,sO![&Tq~O![,tO~OV(]Oo0cOv0qO![%}q#g%}q%[%}q%_%}qg%}q{%}q!m%}q%z%}q~P'vO{,uO~OV+UOo0cOv0qO{&li![&li!m&li%z&li~P'vOz,zO{&li![&li!m&li%z&li~O!]+YO&n+[O![!na~O{(kO![,}O~OV&OOo0cOv0qO#g%hi%[%hi%_%hi%z%hi~P'vOz-OO#g%hi%[%hi%_%hi%z%hi~O%uWO#g&rq%[&rq%_&rqg&rq~Oz-RO#g&rq%[&rq%_&rqg&rq~OV)`Oa)`O%uWO!W&ua~Oz-TO!W&ua~On$|iz$|i~P%SOV)kO~P'vOV)kOn&wq~P'vOt-XOP#myV#myf#myh#myo#mys#myv#my!P#my!Q#my!T#my!U#my!X#my!]#my!h#my!r#my!s#my!t#my!{#my!}#my#P#my#R#my#T#my#X#my#Z#my#^#my#_#my#a#my#c#my#l#my#o#my#s#my#u#my#z#my#}#my$P#my%X#my%o#my%p#my%t#my%u#my&Z#my&[#my&]#my&^#my&_#my&`#my&a#my&b#my&c#my&d#my&e#my&f#my&g#my&h#my&i#my&j#my%Z#my%_#my~O%Z-]O%_-]O~P`O#q-^OP#nyV#nyf#nyh#nyo#nys#nyv#ny!P#ny!Q#ny!T#ny!U#ny!X#ny!]#ny!h#ny!r#ny!s#ny!t#ny!{#ny!}#ny#P#ny#R#ny#T#ny#X#ny#Z#ny#^#ny#_#ny#a#ny#c#ny#l#ny#o#ny#s#ny#u#ny#z#ny#}#ny$P#ny%X#ny%o#ny%p#ny%t#ny%u#ny&Z#ny&[#ny&]#ny&^#ny&_#ny&`#ny&a#ny&b#ny&c#ny&d#ny&e#ny&f#ny&g#ny&h#ny&i#ny&j#ny%Z#ny%_#ny~Oz-aO{$jO#[-aO~Oo0cOv0qO{&xq~P'vOz-dO{&xq~O%z,[Og&zaz&za~O{#{Og&zaz&za~OV*SOa*TO%q*UO%uWOg&ya~Oz-hOg&ya~O$S-lO~OV$}Oa$}Oo0cOv0qO~P'vOo0cOv0qO{-mOz$li!W$li~P'vOo0cOv0qOz$li!W$li~P'vO{-mOz$li!W$li~Oo0cOv0qO{*gO~P'vOo0cOv0qO{*gO!W&Xq~P'vOz-pO!W&Xq~Oo0cOv0qOz-pO!W&Xq~P'vOs-sO!T%dO!U%cOg&Oq!W&Oq![&Oqz&Oq~P!/jOa+QOo0cOv0qO![&Ty~P'vOz$ji![$ji~P%SOa+QOo0cOv0qO~P'vOV+UOo0cOv0qO~P'vOV+UOo0cOv0qO{&lq![&lq!m&lq%z&lq~P'vO{(kO![-xO!m-yO%z-wO~OV&OOo0cOv0qO#g%hq%[%hq%_%hq%z%hq~P'vO%uWO#g&ry%[&ry%_&ryg&ry~OV)`Oa)`O%uWO!W&ui~Ot-}OP#m!RV#m!Rf#m!Rh#m!Ro#m!Rs#m!Rv#m!R!P#m!R!Q#m!R!T#m!R!U#m!R!X#m!R!]#m!R!h#m!R!r#m!R!s#m!R!t#m!R!{#m!R!}#m!R#P#m!R#R#m!R#T#m!R#X#m!R#Z#m!R#^#m!R#_#m!R#a#m!R#c#m!R#l#m!R#o#m!R#s#m!R#u#m!R#z#m!R#}#m!R$P#m!R%X#m!R%o#m!R%p#m!R%t#m!R%u#m!R&Z#m!R&[#m!R&]#m!R&^#m!R&_#m!R&`#m!R&a#m!R&b#m!R&c#m!R&d#m!R&e#m!R&f#m!R&g#m!R&h#m!R&i#m!R&j#m!R%Z#m!R%_#m!R~Oo0cOv0qO{&xy~P'vOV*SOa*TO%q*UO%uWOg&yi~O$S-lO%Z.VO%_.VO~OV.aOh._O!X.^O!].`O!h.YO!s.[O!t.[O%p.XO%uWO&Z]O&[]O&]]O&^]O&_]O&`]O&a]O&b]O~Oo0cOv0qOz$lq!W$lq~P'vO{.fOz$lq!W$lq~Oo0cOv0qO{*gO!W&Xy~P'vOz.gO!W&Xy~Oo0cOv.kO~P'vOs-sO!T%dO!U%cOg&Oy!W&Oy![&Oyz&Oy~P!/jO{(kO![.nO~O{(kO![.nO!m.oO~OV*SOa*TO%q*UO%uWO~Oh.tO!f.rOz$TX#[$TX%j$TXg$TX~Os$TX{$TX!W$TX![$TX~P$-bO%o.vO%p.vOs$UXz$UX{$UX#[$UX%j$UX!W$UXg$UX![$UX~O!h.xO~Oz.|O#[/OO%j.yOs&|X{&|X!W&|Xg&|X~Oa/RO~P$)zOh.tOs&}Xz&}X{&}X#[&}X%j&}X!W&}Xg&}X![&}X~Os/VO{$jO~Oo0cOv0qOz$ly!W$ly~P'vOo0cOv0qO{*gO!W&X!R~P'vOz/ZO!W&X!R~Og&RXs&RX!T&RX!U&RX!W&RX![&RXz&RX~P!/jOs-sO!T%dO!U%cOg&Qa!W&Qa![&Qaz&Qa~O{(kO![/^O~O!f.rOh$[as$[az$[a{$[a#[$[a%j$[a!W$[ag$[a![$[a~O!h/eO~O%o.vO%p.vOs$Uaz$Ua{$Ua#[$Ua%j$Ua!W$Uag$Ua![$Ua~O%j.yOs$Yaz$Ya{$Ya#[$Ya!W$Yag$Ya![$Ya~Os&|a{&|a!W&|ag&|a~P$)nOz/jOs&|a{&|a!W&|ag&|a~O!W/mO~Og/mO~O{/oO~O![/pO~Oo0cOv0qO{*gO!W&X!Z~P'vO{/sO~O%z/tO~P$-bOz/uO#[/OO%j.yOg'PX~Oz/uOg'PX~Og/wO~O!h/xO~O#[/OOs%Saz%Sa{%Sa%j%Sa!W%Sag%Sa![%Sa~O#[/OO%j.yOs%Waz%Wa{%Wa!W%Wag%Wa~Os&|i{&|i!W&|ig&|i~P$)nOz/zO#[/OO%j.yO!['Oa~Og'Pa~P$)nOz0SOg'Pa~Oa0UO!['Oi~P$)zOz0WO!['Oi~Oz0WO#[/OO%j.yO!['Oi~O#[/OO%j.yOg$biz$bi~O%z0ZO~P$-bO#[/OO%j.yOg%Vaz%Va~Og'Pi~P$)nO{0^O~Oa0UO!['Oq~P$)zOz0`O!['Oq~O#[/OO%j.yOz%Ui![%Ui~Oa0UO~P$)zOa0UO!['Oy~P$)zO#[/OO%j.yOg$ciz$ci~O#[/OO%j.yOz%Uq![%Uq~Oz+aO#g%ha%[%ha%_%ha%z%ha~P%SOV&OOo0cOv0qO~P'vOn0hO~Oo0hO~P'vO{0iO~Ot0jO~P!/jO&]&Z&j&h&i&g&f&d&e&c&b&`&a&_&^&[%u~",goto:"!=j'QPPPPPP'RP'Z*s+[+t,_,y-fP.SP'Z.r.r'ZPPP'Z2[PPPPPP2[5PPP5PP7b7k=sPP=v>h>kPP'Z'ZPP>zPP'Z'ZPP'Z'Z'Z'Z'Z?O?w'ZP?zP@QDXGuGyPG|HWH['ZPPPH_Hk'RP'R'RP'RP'RP'RP'RP'R'R'RP'RPP'RPP'RP'RPHqH}IVPI^IdPI^PI^I^PPPI^PKrPK{LVL]KrPI^LfPI^PLmLsPLwM]MzNeLwLwNkNxLwLwLwLw! ^! d! g! l! o! y!!P!!]!!o!!u!#P!#V!#s!#y!$P!$Z!$a!$g!$y!%T!%Z!%a!%k!%q!%w!%}!&T!&Z!&e!&k!&u!&{!'U!'[!'k!'s!'}!(UPPPPPPPPPPP!([!(_!(e!(n!(x!)TPPPPPPPPPPPP!-u!/Z!3^!6oPP!6w!7W!7a!8Y!8P!8c!8i!8l!8o!8r!8z!9jPPPPPPPPPPPPPPPPP!9m!9q!9wP!:]!:a!:m!:v!;S!;j!;m!;p!;v!;|!_![!]Do!]!^Es!^!_FZ!_!`Gk!`!aHX!a!b%T!b!cIf!c!dJU!d!eK^!e!hJU!h!i!#f!i!tJU!t!u!,|!u!wJU!w!x!.t!x!}JU!}#O!0S#O#P&o#P#Q!0j#Q#R!1Q#R#SJU#S#T%T#T#UJU#U#VK^#V#YJU#Y#Z!#f#Z#fJU#f#g!,|#g#iJU#i#j!.t#j#oJU#o#p!1n#p#q!1s#q#r!2a#r#s!2f#s$g%T$g;'SJU;'S;=`KW<%lOJU`%YT&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T`%lP;=`<%l%To%v]&n`%c_OX%TXY%oY[%T[]%o]p%Tpq%oq#O%T#O#P&o#P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To&tX&n`OY%TYZ%oZ]%T]^%o^#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc'f[&n`O!_%T!_!`([!`#T%T#T#U(r#U#f%T#f#g(r#g#h(r#h#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(cTmR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(yT!mR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk)aV&n`&[ZOr%Trs)vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk){V&n`Or%Trs*bs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk*iT&n`&^ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To+PZS_&n`OY*xYZ%TZ]*x]^%T^#o*x#o#p+r#p#q*x#q#r+r#r;'S*x;'S;=`,^<%lO*x_+wTS_OY+rZ]+r^;'S+r;'S;=`,W<%lO+r_,ZP;=`<%l+ro,aP;=`<%l*xj,kV%rQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-XT!xY&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-oV%lQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.]V&n`&ZZOw%Twx.rx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.wV&n`Ow%Twx/^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/eT&n`&]ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/{ThZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc0cTgR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk0yXVZ&n`Oz%Tz{1f{!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk1mVaR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk2ZV%oZ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc2wTzR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To3_W%pZ&n`O!_%T!_!`-Q!`!a3w!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Td4OT&{S&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk4fX!fQ&n`O!O%T!O!P5R!P!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5WV&n`O!O%T!O!P5m!P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5tT!rZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti6[a!hX&n`O!Q%T!Q![6T![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S6T#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti7fZ&n`O{%T{|8X|}%T}!O8X!O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8^V&n`O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8z]!hX&n`O!Q%T!Q![8s![!l%T!l!m9s!m#R%T#R#S8s#S#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti9zT!hX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk:bX%qR&n`O!P%T!P!Q:}!Q!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj;UV%sQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti;ro!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!d%T!d!e?q!e!g%T!g!h7a!h!l%T!l!m9s!m!q%T!q!rA]!r!z%T!z!{Bq!{#R%T#R#S>_#S#U%T#U#V?q#V#X%T#X#Y7a#Y#^%T#^#_9s#_#c%T#c#dA]#d#l%T#l#mBq#m#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti=xV&n`O!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti>fc!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S>_#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti?vY&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti@mY!hX&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiAbX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBUX!hX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBv]&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiCv]!hX&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToDvV{_&n`O!_%T!_!`E]!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TcEdT%{R&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkEzT#gZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkFbXmR&n`O!^%T!^!_F}!_!`([!`!a([!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjGUV%mQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkGrV%zZ&n`O!_%T!_!`([!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkH`WmR&n`O!_%T!_!`([!`!aHx!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjIPV%nQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkIoV_Q#}P&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToJ_]&n`&YS%uZO!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoKZP;=`<%lJUoKge&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!tJU!t!uLx!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#gLx#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoMRa&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUkN_V&n`&`ZOr%TrsNts#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkNyV&n`Or%Trs! `s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! gT&n`&bZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! }V&n`&_ZOw%Twx!!dx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!!iV&n`Ow%Twx!#Ox#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!#VT&n`&aZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!#oe&n`&YS%uZOr%Trs!%Qsw%Twx!&px!Q%T!Q![JU![!c%T!c!tJU!t!u!(`!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#g!(`#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!%XV&n`&dZOr%Trs!%ns#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!%sV&n`Or%Trs!&Ys#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&aT&n`&fZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&wV&n`&cZOw%Twx!'^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!'cV&n`Ow%Twx!'xx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!(PT&n`&eZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!(ia&n`&YS%uZOr%Trs!)nsw%Twx!+^x!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!)uV&n`&hZOr%Trs!*[s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*aV&n`Or%Trs!*vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*}T&n`&jZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!+eV&n`&gZOw%Twx!+zx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,PV&n`Ow%Twx!,fx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,mT&n`&iZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!-Vi&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!dJU!d!eLx!e!hJU!h!i!(`!i!}JU!}#R%T#R#SJU#S#T%T#T#UJU#U#VLx#V#YJU#Y#Z!(`#Z#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUo!.}a&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!0ZT!XZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc!0qT!WR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj!1XV%kQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!1sO!]~k!1zV%jR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!2fO![~i!2mT%tX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T",tokenizers:[RIt,AIt,TIt,IIt,0,1,2,3,4],topRules:{Script:[0,5]},specialized:[{term:221,get:e=>MIt[e]||-1}],tokenPrec:7668}),$ee=new KU,oNe=new Set(["Script","Body","FunctionDefinition","ClassDefinition","LambdaExpression","ForStatement","MatchClause"]);function mA(e){return(t,n,i)=>{if(i)return!1;let r=t.node.getChild("VariableName");return r&&n(r,e),!0}}const $It={FunctionDefinition:mA("function"),ClassDefinition:mA("class"),ForStatement(e,t,n){if(n){for(let i=e.node.firstChild;i;i=i.nextSibling)if(i.name=="VariableName")t(i,"variable");else if(i.name=="in")break}},ImportStatement(e,t){var n,i;let{node:r}=e,s=((n=r.firstChild)===null||n===void 0?void 0:n.name)=="from";for(let a=r.getChild("import");a;a=a.nextSibling)a.name=="VariableName"&&((i=a.nextSibling)===null||i===void 0?void 0:i.name)!="as"&&t(a,s?"variable":"namespace")},AssignStatement(e,t){for(let n=e.node.firstChild;n;n=n.nextSibling)if(n.name=="VariableName")t(n,"variable");else if(n.name==":"||n.name=="AssignOp")break},ParamList(e,t){for(let n=null,i=e.node.firstChild;i;i=i.nextSibling)i.name=="VariableName"&&(!n||!/\*|AssignOp/.test(n.name))&&t(i,"variable"),n=i},CapturePattern:mA("variable"),AsPattern:mA("variable"),__proto__:null};function lNe(e,t){let n=$ee.get(t);if(n)return n;let i=[],r=!0;function s(a,l){let c=e.sliceString(a.from,a.to);i.push({label:c,type:l})}return t.cursor(ir.IncludeAnonymous).iterate(a=>{if(a.name){let l=$It[a.name];if(l&&l(a,s,r)||!r&&oNe.has(a.name))return!1;r=!1}else if(a.to-a.from>8192){for(let l of lNe(e,a.node))i.push(l);return!1}}),$ee.set(t,i),i}const Fee=/^[\w\xa1-\uffff][\w\d\xa1-\uffff]*$/,cNe=["String","FormatString","Comment","PropertyName"];function FIt(e){let t=Nr(e.state).resolveInner(e.pos,-1);if(cNe.indexOf(t.name)>-1)return null;let n=t.name=="VariableName"||t.to-t.from<20&&Fee.test(e.state.sliceDoc(t.from,t.to));if(!n&&!e.explicit)return null;let i=[];for(let r=t;r;r=r.parent)oNe.has(r.name)&&(i=i.concat(lNe(e.state.doc,r)));return{options:i,from:n?t.from:e.pos,validFor:Fee}}const BIt=["__annotations__","__builtins__","__debug__","__doc__","__import__","__name__","__loader__","__package__","__spec__","False","None","True"].map(e=>({label:e,type:"constant"})).concat(["ArithmeticError","AssertionError","AttributeError","BaseException","BlockingIOError","BrokenPipeError","BufferError","BytesWarning","ChildProcessError","ConnectionAbortedError","ConnectionError","ConnectionRefusedError","ConnectionResetError","DeprecationWarning","EOFError","Ellipsis","EncodingWarning","EnvironmentError","Exception","FileExistsError","FileNotFoundError","FloatingPointError","FutureWarning","GeneratorExit","IOError","ImportError","ImportWarning","IndentationError","IndexError","InterruptedError","IsADirectoryError","KeyError","KeyboardInterrupt","LookupError","MemoryError","ModuleNotFoundError","NameError","NotADirectoryError","NotImplemented","NotImplementedError","OSError","OverflowError","PendingDeprecationWarning","PermissionError","ProcessLookupError","RecursionError","ReferenceError","ResourceWarning","RuntimeError","RuntimeWarning","StopAsyncIteration","StopIteration","SyntaxError","SyntaxWarning","SystemError","SystemExit","TabError","TimeoutError","TypeError","UnboundLocalError","UnicodeDecodeError","UnicodeEncodeError","UnicodeError","UnicodeTranslateError","UnicodeWarning","UserWarning","ValueError","Warning","ZeroDivisionError"].map(e=>({label:e,type:"type"}))).concat(["bool","bytearray","bytes","classmethod","complex","float","frozenset","int","list","map","memoryview","object","range","set","staticmethod","str","super","tuple","type"].map(e=>({label:e,type:"class"}))).concat(["abs","aiter","all","anext","any","ascii","bin","breakpoint","callable","chr","compile","delattr","dict","dir","divmod","enumerate","eval","exec","exit","filter","format","getattr","globals","hasattr","hash","help","hex","id","input","isinstance","issubclass","iter","len","license","locals","max","min","next","oct","open","ord","pow","print","property","quit","repr","reversed","round","setattr","slice","sorted","sum","vars","zip"].map(e=>({label:e,type:"function"}))),UIt=[hs("def ${name}(${params}):\n ${}",{label:"def",detail:"function",type:"keyword"}),hs("for ${name} in ${collection}:\n ${}",{label:"for",detail:"loop",type:"keyword"}),hs("while ${}:\n ${}",{label:"while",detail:"loop",type:"keyword"}),hs("try:\n ${}\nexcept ${error}:\n ${}",{label:"try",detail:"/ except block",type:"keyword"}),hs(`if \${}: -`,{label:"if",detail:"block",type:"keyword"}),ys("if ${}:\n ${}\nelse:\n ${}",{label:"if",detail:"/ else block",type:"keyword"}),ys("class ${name}:\n def __init__(self, ${params}):\n ${}",{label:"class",detail:"definition",type:"keyword"}),ys("import ${module}",{label:"import",detail:"statement",type:"keyword"}),ys("from ${module} import ${names}",{label:"from",detail:"import",type:"keyword"})],EIt=kAe(X_e,gQ(SIt.concat(kIt)));function V5(e){let{node:t,pos:n}=e,i=e.lineIndent(n,-1),r=null;for(;;){let s=t.childBefore(n);if(s)if(s.name=="Comment")n=s.from;else if(s.name=="Body"||s.name=="MatchBody")e.baseIndentFor(s)+e.unit<=i&&(r=s),t=s;else if(s.name=="MatchClause")t=s;else if(s.type.is("Statement"))t=s;else break;else break}return r}function H5(e,t){let n=e.baseIndentFor(t),i=e.lineAt(e.pos,-1),r=i.from+i.text.length;return/^\s*($|#)/.test(i.text)&&e.node.ton?null:n+e.unit}const q5=jh.define({name:"python",parser:xIt.configure({props:[Hh.add({Body:e=>{var t;let n=/^\s*(#|$)/.test(e.textAfter)&&V5(e)||e.node;return(t=H5(e,n))!==null&&t!==void 0?t:e.continue()},MatchBody:e=>{var t;let n=V5(e);return(t=H5(e,n||e.node))!==null&&t!==void 0?t:e.continue()},IfStatement:e=>/^\s*(else:|elif )/.test(e.textAfter)?e.baseIndent:e.continue(),"ForStatement WhileStatement":e=>/^\s*else:/.test(e.textAfter)?e.baseIndent:e.continue(),TryStatement:e=>/^\s*(except[ :]|finally:|else:)/.test(e.textAfter)?e.baseIndent:e.continue(),MatchStatement:e=>/^\s*case /.test(e.textAfter)?e.baseIndent+e.unit:e.continue(),"TupleExpression ComprehensionExpression ParamList ArgList ParenthesizedExpression":hv({closing:")"}),"DictionaryExpression DictionaryComprehensionExpression SetExpression SetComprehensionExpression":hv({closing:"}"}),"ArrayExpression ArrayComprehensionExpression":hv({closing:"]"}),MemberExpression:e=>e.baseIndent+e.unit,"String FormatString":()=>null,Script:e=>{var t;let n=V5(e);return(t=n&&H5(e,n))!==null&&t!==void 0?t:e.continue()}}),qh.add({"ArrayExpression DictionaryExpression SetExpression TupleExpression":LE,Body:(e,t)=>({from:e.from+1,to:e.to-(e.to==t.doc.length?0:1)}),"String FormatString":(e,t)=>({from:t.doc.lineAt(e.from).to,to:e.to})})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"'''",'"""'],stringPrefixes:["f","fr","rf","r","u","b","br","rb","F","FR","RF","R","U","B","BR","RB"]},commentTokens:{line:"#"},indentOnInput:/^\s*([\}\]\)]|else:|elif |except |finally:|case\s+[^:]*:?)$/}});function CIt(){return new Nm(q5,[q5.data.of({autocomplete:OIt}),q5.data.of({autocomplete:EIt})])}const ay=63,jee=64,TIt=1,AIt=2,Y_e=3,_It=4,Z_e=5,NIt=6,jIt=7,J_e=65,RIt=66,IIt=8,PIt=9,DIt=10,MIt=11,LIt=12,eNe=13,$It=19,FIt=20,BIt=29,UIt=33,QIt=34,zIt=47,VIt=0,$Q=1,l8=2,bk=3,c8=4;class Ng{constructor(t,n,i){this.parent=t,this.depth=n,this.type=i,this.hash=(t?t.hash+t.hash<<8:0)+n+(n<<4)+i}}Ng.top=new Ng(null,-1,VIt);function qO(e,t){for(let n=0,i=t-e.pos-1;;i--,n++){let r=e.peek(i);if(Ih(r)||r==-1)return n}}function u8(e){return e==32||e==9}function Ih(e){return e==10||e==13}function tNe(e){return u8(e)||Ih(e)}function Vg(e){return e<0||tNe(e)}const HIt=new _I({start:Ng.top,reduce(e,t){return e.type==bk&&(t==FIt||t==QIt)?e.parent:e},shift(e,t,n,i){if(t==Y_e)return new Ng(e,qO(i,i.pos),$Q);if(t==J_e||t==Z_e)return new Ng(e,qO(i,i.pos),l8);if(t==ay)return e.parent;if(t==$It||t==UIt)return new Ng(e,0,bk);if(t==eNe&&e.type==c8)return e.parent;if(t==zIt){let r=/[1-9]/.exec(i.read(i.pos,n.pos));if(r)return new Ng(e,e.depth+ +r[0],c8)}return e},hash(e){return e.hash}});function fx(e,t,n=0){return e.peek(n)==t&&e.peek(n+1)==t&&e.peek(n+2)==t&&Vg(e.peek(n+3))}const qIt=new zs((e,t)=>{if(e.next==-1&&t.canShift(jee))return e.acceptToken(jee);let n=e.peek(-1);if((Ih(n)||n<0)&&t.context.type!=bk){if(fx(e,45))if(t.canShift(ay))e.acceptToken(ay);else return e.acceptToken(TIt,3);if(fx(e,46))if(t.canShift(ay))e.acceptToken(ay);else return e.acceptToken(AIt,3);let i=0;for(;e.next==32;)i++,e.advance();(i{if(t.context.type==bk){e.next==63&&(e.advance(),Vg(e.next)&&e.acceptToken(jIt));return}if(e.next==45)e.advance(),Vg(e.next)&&e.acceptToken(t.context.type==$Q&&t.context.depth==qO(e,e.pos-1)?_It:Y_e);else if(e.next==63)e.advance(),Vg(e.next)&&e.acceptToken(t.context.type==l8&&t.context.depth==qO(e,e.pos-1)?NIt:Z_e);else{let n=e.pos;for(;;)if(u8(e.next)){if(e.pos==n)return;e.advance()}else if(e.next==33)nNe(e);else if(e.next==38)d8(e);else if(e.next==42){d8(e);break}else if(e.next==39||e.next==34){if(FQ(e,!0))break;return}else if(e.next==91||e.next==123){if(!KIt(e))return;break}else{iNe(e,!0,!1,0);break}for(;u8(e.next);)e.advance();if(e.next==58){if(e.pos==n&&t.canShift(BIt))return;let i=e.peek(1);Vg(i)&&e.acceptTokenTo(t.context.type==l8&&t.context.depth==qO(e,n)?RIt:J_e,n)}}},{contextual:!0});function GIt(e){return e>32&&e<127&&e!=34&&e!=37&&e!=44&&e!=60&&e!=62&&e!=92&&e!=94&&e!=96&&e!=123&&e!=124&&e!=125}function Ree(e){return e>=48&&e<=57||e>=97&&e<=102||e>=65&&e<=70}function Iee(e,t){return e.next==37?(e.advance(),Ree(e.next)&&e.advance(),Ree(e.next)&&e.advance(),!0):GIt(e.next)||t&&e.next==44?(e.advance(),!0):!1}function nNe(e){if(e.advance(),e.next==60){for(e.advance();;)if(!Iee(e,!0)){e.next==62&&e.advance();break}}else for(;Iee(e,!1););}function d8(e){for(e.advance();!Vg(e.next)&&ej(e.next)!="f";)e.advance()}function FQ(e,t){let n=e.next,i=!1,r=e.pos;for(e.advance();;){let s=e.next;if(s<0)break;if(e.advance(),s==n)if(s==39)if(e.next==39)e.advance();else break;else break;else if(s==92&&n==34)e.next>=0&&e.advance();else if(Ih(s)){if(t)return!1;i=!0}else if(t&&e.pos>=r+1024)return!1}return!i}function KIt(e){for(let t=[],n=e.pos+1024;;)if(e.next==91||e.next==123)t.push(e.next),e.advance();else if(e.next==39||e.next==34){if(!FQ(e,!0))return!1}else if(e.next==93||e.next==125){if(t[t.length-1]!=e.next-2)return!1;if(t.pop(),e.advance(),!t.length)return!0}else{if(e.next<0||e.pos>n||Ih(e.next))return!1;e.advance()}}const XIt="iiisiiissisfissssssssssssisssiiissssssssssssssssssssssssssfsfssissssssssssssssssssssssssssfif";function ej(e){return e<33?"u":e>125?"s":XIt[e-33]}function W5(e,t){let n=ej(e);return n!="u"&&!(t&&n=="f")}function iNe(e,t,n,i){if(ej(e.next)=="s"||(e.next==63||e.next==58||e.next==45)&&W5(e.peek(1),n))e.advance();else return!1;let r=e.pos;for(;;){let s=e.next,a=0,l=i+1;for(;tNe(s);){if(Ih(s)){if(t)return!1;l=0}else l++;s=e.peek(++a)}if(!(s>=0&&(s==58?W5(e.peek(a+1),n):s==35?e.peek(a-1)!=32:W5(s,n)))||!n&&l<=i||l==0&&!n&&(fx(e,45,a)||fx(e,46,a)))break;if(t&&ej(s)=="f")return!1;for(let u=a;u>=0;u--)e.advance();if(t&&e.pos>r+1024)return!1}return!0}const YIt=new zs((e,t)=>{if(e.next==33)nNe(e),e.acceptToken(LIt);else if(e.next==38||e.next==42){let n=e.next==38?DIt:MIt;d8(e),e.acceptToken(n)}else e.next==39||e.next==34?(FQ(e,!1),e.acceptToken(PIt)):iNe(e,!1,t.context.type==bk,t.context.depth)&&e.acceptToken(IIt)}),ZIt=new zs((e,t)=>{let n=t.context.type==c8?t.context.depth:-1,i=e.pos;e:for(;;){let r=0,s=e.next;for(;s==32;)s=e.peek(++r);if(!r&&(fx(e,45,r)||fx(e,46,r))||!Ih(s)&&(n<0&&(n=Math.max(t.context.depth+1,r)),rYAN>Y",stateData:";S~O!fOS!gOS^OS~OP_OQbORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!V[O!cTO~O`cO~P]OVkOWROXROYeOZfO[dOcPOmhOqQO~OboO~P!bOVtOWROXROYeOZfO[dOcPOmrOqQO~OpwO~P#WORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!cTO~OSvP!avP!bvP~P#|OWROXROYeOZfO[dOcPOqQO~OmzO~P%OOm!OOUzP!azP!bzP!dzP~P#|O^!SO!b!QO!f!TO!g!RO~ORSOTUOWROXROcPOqQO!PVO!cTO~OY!UOP!QXQ!QX!V!QX!`!QXS!QX!a!QX!b!QXU!QXm!QX!d!QX~P&aO[!WOP!SXQ!SX!V!SX!`!SXS!SX!a!SX!b!SXU!SXm!SX!d!SX~P&aO^!ZO!W![O!b!YO!f!]O!g!YO~OP!_O!V[OQaX!`aX~OPaXQaX!VaX!`aX~P#|OP!bOQ!cO!V[O~OP_O!V[O~P#|OWROXROY!fOcPOqQObfXmfXofXpfX~OWROXRO[!hOcPOqQObhXmhXohXphX~ObeXmlXoeX~ObkXokX~P%OOm!kO~Om!lObnPonP~P%OOb!pOo!oO~Ob!pO~P!bOm!sOosXpsX~OosXpsX~P%OOm!uOotPptP~P%OOo!xOp!yO~Op!yO~P#WOS!|O!a#OO!b#OO~OUyX!ayX!byX!dyX~P#|Om#QO~OU#SO!a#UO!b#UO!d#RO~Om#WOUzX!azX!bzX!dzX~O]#XO~O!b#XO!g#YO~O^#ZO!b#XO!g#YO~OP!RXQ!RX!V!RX!`!RXS!RX!a!RX!b!RXU!RXm!RX!d!RX~P&aOP!TXQ!TX!V!TX!`!TXS!TX!a!TX!b!TXU!TXm!TX!d!TX~P&aO!b#^O!g#^O~O^#_O!b#^O!f#`O!g#^O~O^#_O!W#aO!b#^O!g#^O~OPaaQaa!Vaa!`aa~P#|OP#cO!V[OQ!XX!`!XX~OP!XXQ!XX!V!XX!`!XX~P#|OP_O!V[OQ!_X!`!_X~P#|OWROXROcPOqQObgXmgXogXpgX~OWROXROcPOqQObiXmiXoiXpiX~Obkaoka~P%OObnXonX~P%OOm#kO~Ob#lOo!oO~Oosapsa~P%OOotXptX~P%OOm#pO~Oo!xOp#qO~OSwP!awP!bwP~P#|OS!|O!a#vO!b#vO~OUya!aya!bya!dya~P#|Om#xO~P%OOm#{OU}P!a}P!b}P!d}P~P#|OU#SO!a$OO!b$OO!d#RO~O]$QO~O!b$QO!g$RO~O!b$SO!g$SO~O^$TO!b$SO!g$SO~O^$TO!b$SO!f$UO!g$SO~OP!XaQ!Xa!V!Xa!`!Xa~P#|Obnaona~P%OOotapta~P%OOo!xO~OU|X!a|X!b|X!d|X~P#|Om$ZO~Om$]OU}X!a}X!b}X!d}X~O]$^O~O!b$_O!g$_O~O^$`O!b$_O!g$_O~OU|a!a|a!b|a!d|a~P#|O!b$cO!g$cO~O",goto:",]!mPPPPPPPPPPPPPPPPP!nPP!v#v#|$`#|$c$f$j$nP%VPPP!v%Y%^%a%{&O%a&R&U&X&_&b%aP&e&{&e'O'RPP']'a'g'm's'y(XPPPPPPPP(_)e*X+c,VUaObcR#e!c!{ROPQSTUXY_bcdehknrtvz!O!U!W!_!b!c!f!h!k!l!s!u!|#Q#R#S#W#c#k#p#x#{$Z$]QmPR!qnqfPQThknrtv!k!l!s!u#R#k#pR!gdR!ieTlPnTjPnSiPnSqQvQ{TQ!mkQ!trQ!vtR#y#RR!nkTsQvR!wt!RWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]RySR#t!|R|TR|UQ!PUR#|#SR#z#RR#z#SyZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]R!VXR!XYa]O^abc!a!c!eT!da!eQnPR!rnQvQR!{vQ!}yR#u!}Q#T|R#}#TW^Obc!cS!^^!aT!aa!eQ!eaR#f!eW`Obc!cQxSS}U#SQ!`_Q#PzQ#V!OQ#b!_Q#d!bQ#s!|Q#w#QQ$P#WQ$V#cQ$Y#xQ$[#{Q$a$ZR$b$]xZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]Q!VXQ!XYQ#[!UR#]!W!QWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]pfPQThknrtv!k!l!s!u#R#k#pQ!gdQ!ieQ#g!fR#h!hSgPn^pQTkrtv#RQ!jhQ#i!kQ#j!lQ#n!sQ#o!uQ$W#kR$X#pQuQR!zv",nodeNames:"⚠ DirectiveEnd DocEnd - - ? ? ? Literal QuotedLiteral Anchor Alias Tag BlockLiteralContent Comment Stream BOM Document ] [ FlowSequence Item Tagged Anchored Anchored Tagged FlowMapping Pair Key : Pair , } { FlowMapping Pair Pair BlockSequence Item Item BlockMapping Pair Pair Key Pair Pair BlockLiteral BlockLiteralHeader Tagged Anchored Anchored Tagged Directive DirectiveName DirectiveContent Document",maxTerm:74,context:HIt,nodeProps:[["isolate",-3,8,9,14,""],["openedBy",18,"[",32,"{"],["closedBy",19,"]",33,"}"]],propSources:[JIt],skippedNodes:[0],repeatNodeCount:6,tokenData:"-Y~RnOX#PXY$QYZ$]Z]#P]^$]^p#Ppq$Qqs#Pst$btu#Puv$yv|#P|}&e}![#P![!]'O!]!`#P!`!a'i!a!}#P!}#O*g#O#P#P#P#Q+Q#Q#o#P#o#p+k#p#q'i#q#r,U#r;'S#P;'S;=`#z<%l?HT#P?HT?HU,o?HUO#PQ#UU!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PQ#kTOY#PZs#Pt;'S#P;'S;=`#z<%lO#PQ#}P;=`<%l#P~$VQ!f~XY$Qpq$Q~$bO!g~~$gS^~OY$bZ;'S$b;'S;=`$s<%lO$b~$vP;=`<%l$bR%OX!WQOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR%rX!WQ!VPOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR&bP;=`<%l%kR&lUoP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'VUmP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'p[!PP!WQOY#PZp#Ppq#hq{#P{|(f|}#P}!O(f!O!R#P!R![)p![;'S#P;'S;=`#z<%lO#PR(mW!PP!WQOY#PZp#Ppq#hq!R#P!R![)V![;'S#P;'S;=`#z<%lO#PR)^U!PP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR)wY!PP!WQOY#PZp#Ppq#hq{#P{|)V|}#P}!O)V!O;'S#P;'S;=`#z<%lO#PR*nUcP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+XUbP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+rUqP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,]UpP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,vU`P!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#P",tokenizers:[qIt,WIt,YIt,ZIt,0,1],topRules:{Stream:[0,15]},tokenPrec:0}),tPt=jh.define({name:"yaml",parser:ePt.configure({props:[Hh.add({Stream:e=>{for(let t=e.node.resolve(e.pos,-1);t&&t.to>=e.pos;t=t.parent){if(t.name=="BlockLiteralContent"&&t.frome.pos)return null}}return null},FlowMapping:hv({closing:"}"}),FlowSequence:hv({closing:"]"})}),qh.add({"FlowMapping FlowSequence":LE,"Item Pair BlockLiteral":(e,t)=>({from:t.doc.lineAt(e.from).to,to:e.to})})]}),languageData:{commentTokens:{line:"#"},indentOnInput:/^\s*[\]\}]$/}});function nPt(){return new Nm(tPt)}function iPt(e){rNe(e,"start");var t={},n=e.languageData||{},i=!1;for(var r in e)if(r!=n&&e.hasOwnProperty(r))for(var s=t[r]=[],a=e[r],l=0;l2&&a.token&&typeof a.token!="string"){n.pending=[];for(var u=2;u-1)return null;var r=n.indent.length-1,s=e[n.state];e:for(;;){for(var a=0;a{let{state:t}=e,n=t.doc.lineAt(t.selection.main.from),i=UQ(e.state,n.from);return i.line?vPt(e):i.block?wPt(e):!1};function BQ(e,t){return({state:n,dispatch:i})=>{if(n.readOnly)return!1;let r=e(t,n);return r?(i(n.update(r)),!0):!1}}const vPt=BQ(kPt,0),xPt=BQ(cNe,0),wPt=BQ((e,t)=>cNe(e,t,SPt(t)),0);function UQ(e,t){let n=e.languageDataAt("commentTokens",t,1);return n.length?n[0]:{}}const rw=50;function OPt(e,{open:t,close:n},i,r){let s=e.sliceDoc(i-rw,i),a=e.sliceDoc(r,r+rw),l=/\s*$/.exec(s)[0].length,c=/^\s*/.exec(a)[0].length,u=s.length-l;if(s.slice(u-t.length,u)==t&&a.slice(c,c+n.length)==n)return{open:{pos:i-l,margin:l&&1},close:{pos:r+c,margin:c&&1}};let d,f;r-i<=2*rw?d=f=e.sliceDoc(i,r):(d=e.sliceDoc(i,i+rw),f=e.sliceDoc(r-rw,r));let h=/^\s*/.exec(d)[0].length,m=/\s*$/.exec(f)[0].length,g=f.length-m-n.length;return d.slice(h,h+t.length)==t&&f.slice(g,g+n.length)==n?{open:{pos:i+h+t.length,margin:/\s/.test(d.charAt(h+t.length))?1:0},close:{pos:r-m-n.length,margin:/\s/.test(f.charAt(g-1))?1:0}}:null}function SPt(e){let t=[];for(let n of e.selection.ranges){let i=e.doc.lineAt(n.from),r=n.to<=i.to?i:e.doc.lineAt(n.to);r.from>i.from&&r.from==n.to&&(r=n.to==i.to+1?i:e.doc.lineAt(n.to-1));let s=t.length-1;s>=0&&t[s].to>i.from?t[s].to=r.to:t.push({from:i.from+/^\s*/.exec(i.text)[0].length,to:r.to})}return t}function cNe(e,t,n=t.selection.ranges){let i=n.map(s=>UQ(t,s.from).block);if(!i.every(s=>s))return null;let r=n.map((s,a)=>OPt(t,i[a],s.from,s.to));if(e!=2&&!r.every(s=>s))return{changes:t.changes(n.map((s,a)=>r[a]?[]:[{from:s.from,insert:i[a].open+" "},{from:s.to,insert:" "+i[a].close}]))};if(e!=1&&r.some(s=>s)){let s=[];for(let a=0,l;ar&&(s==a||a>f.from)){r=f.from;let h=/^\s*/.exec(f.text)[0].length,m=h==f.length,g=f.text.slice(h,h+u.length)==u?h:-1;hs.comment<0&&(!s.empty||s.single))){let s=[];for(let{line:l,token:c,indent:u,empty:d,single:f}of i)(f||!d)&&s.push({from:l.from+u,insert:c+" "});let a=t.changes(s);return{changes:a,selection:t.selection.map(a,1)}}else if(e!=1&&i.some(s=>s.comment>=0)){let s=[];for(let{line:a,comment:l,token:c}of i)if(l>=0){let u=a.from+l,d=u+c.length;a.text[d-a.from]==" "&&d++,s.push({from:u,to:d})}return{changes:s}}return null}const h8=Jd.define(),EPt=Jd.define(),CPt=Zt.define(),uNe=Zt.define({combine(e){return ef(e,{minDepth:100,newGroupDelay:500,joinToEvent:(t,n)=>n},{minDepth:Math.max,newGroupDelay:Math.min,joinToEvent:(t,n)=>(i,r)=>t(i,r)||n(i,r)})}}),dNe=ro.define({create(){return Nd.empty},update(e,t){let n=t.state.facet(uNe),i=t.annotation(h8);if(i){let c=pl.fromTransaction(t,i.selection),u=i.side,d=u==0?e.undone:e.done;return c?d=tj(d,d.length,n.minDepth,c):d=pNe(d,t.startState.selection),new Nd(u==0?i.rest:d,u==0?d:i.rest)}let r=t.annotation(EPt);if((r=="full"||r=="before")&&(e=e.isolate()),t.annotation(Js.addToHistory)===!1)return t.changes.empty?e:e.addMapping(t.changes.desc);let s=pl.fromTransaction(t),a=t.annotation(Js.time),l=t.annotation(Js.userEvent);return s?e=e.addChanges(s,a,l,n,t):t.selection&&(e=e.addSelection(t.startState.selection,a,l,n.newGroupDelay)),(r=="full"||r=="after")&&(e=e.isolate()),e},toJSON(e){return{done:e.done.map(t=>t.toJSON()),undone:e.undone.map(t=>t.toJSON())}},fromJSON(e){return new Nd(e.done.map(pl.fromJSON),e.undone.map(pl.fromJSON))}});function TPt(e={}){return[dNe,uNe.of(e),Ft.domEventHandlers({beforeinput(t,n){let i=t.inputType=="historyUndo"?fNe:t.inputType=="historyRedo"?p8:null;return i?(t.preventDefault(),i(n)):!1}})]}function II(e,t){return function({state:n,dispatch:i}){if(!t&&n.readOnly)return!1;let r=n.field(dNe,!1);if(!r)return!1;let s=r.pop(e,n,t);return s?(i(s),!0):!1}}const fNe=II(0,!1),p8=II(1,!1),APt=II(0,!0),_Pt=II(1,!0);class pl{constructor(t,n,i,r,s){this.changes=t,this.effects=n,this.mapped=i,this.startSelection=r,this.selectionsAfter=s}setSelAfter(t){return new pl(this.changes,this.effects,this.mapped,this.startSelection,t)}toJSON(){var t,n,i;return{changes:(t=this.changes)===null||t===void 0?void 0:t.toJSON(),mapped:(n=this.mapped)===null||n===void 0?void 0:n.toJSON(),startSelection:(i=this.startSelection)===null||i===void 0?void 0:i.toJSON(),selectionsAfter:this.selectionsAfter.map(r=>r.toJSON())}}static fromJSON(t){return new pl(t.changes&&ma.fromJSON(t.changes),[],t.mapped&&Ld.fromJSON(t.mapped),t.startSelection&&it.fromJSON(t.startSelection),t.selectionsAfter.map(it.fromJSON))}static fromTransaction(t,n){let i=Xc;for(let r of t.startState.facet(CPt)){let s=r(t);s.length&&(i=i.concat(s))}return!i.length&&t.changes.empty?null:new pl(t.changes.invert(t.startState.doc),i,void 0,n||t.startState.selection,Xc)}static selection(t){return new pl(void 0,Xc,void 0,void 0,t)}}function tj(e,t,n,i){let r=t+1>n+20?t-n-1:0,s=e.slice(r,t);return s.push(i),s}function NPt(e,t){let n=[],i=!1;return e.iterChangedRanges((r,s)=>n.push(r,s)),t.iterChangedRanges((r,s,a,l)=>{for(let c=0;c=u&&a<=d&&(i=!0)}}),i}function jPt(e,t){return e.ranges.length==t.ranges.length&&e.ranges.filter((n,i)=>n.empty!=t.ranges[i].empty).length===0}function hNe(e,t){return e.length?t.length?e.concat(t):e:t}const Xc=[],RPt=200;function pNe(e,t){if(e.length){let n=e[e.length-1],i=n.selectionsAfter.slice(Math.max(0,n.selectionsAfter.length-RPt));return i.length&&i[i.length-1].eq(t)?e:(i.push(t),tj(e,e.length-1,1e9,n.setSelAfter(i)))}else return[pl.selection([t])]}function IPt(e){let t=e[e.length-1],n=e.slice();return n[e.length-1]=t.setSelAfter(t.selectionsAfter.slice(0,t.selectionsAfter.length-1)),n}function G5(e,t){if(!e.length)return e;let n=e.length,i=Xc;for(;n;){let r=PPt(e[n-1],t,i);if(r.changes&&!r.changes.empty||r.effects.length){let s=e.slice(0,n);return s[n-1]=r,s}else t=r.mapped,n--,i=r.selectionsAfter}return i.length?[pl.selection(i)]:Xc}function PPt(e,t,n){let i=hNe(e.selectionsAfter.length?e.selectionsAfter.map(l=>l.map(t)):Xc,n);if(!e.changes)return pl.selection(i);let r=e.changes.map(t),s=t.mapDesc(e.changes,!0),a=e.mapped?e.mapped.composeDesc(s):s;return new pl(r,Fn.mapEffects(e.effects,t),a,e.startSelection.map(s),i)}const DPt=/^(input\.type|delete)($|\.)/;class Nd{constructor(t,n,i=0,r=void 0){this.done=t,this.undone=n,this.prevTime=i,this.prevUserEvent=r}isolate(){return this.prevTime?new Nd(this.done,this.undone):this}addChanges(t,n,i,r,s){let a=this.done,l=a[a.length-1];return l&&l.changes&&!l.changes.empty&&t.changes&&(!i||DPt.test(i))&&(!l.selectionsAfter.length&&n-this.prevTime0&&n-this.prevTimen.empty?e.moveByChar(n,t):PI(n,t))}function ko(e){return e.textDirectionAt(e.state.selection.main.head)==Cr.LTR}const gNe=e=>mNe(e,!ko(e)),bNe=e=>mNe(e,ko(e));function yNe(e,t){return Ju(e,n=>n.empty?e.moveByGroup(n,t):PI(n,t))}const LPt=e=>yNe(e,!ko(e)),$Pt=e=>yNe(e,ko(e));function FPt(e,t,n){if(t.type.prop(n))return!0;let i=t.to-t.from;return i&&(i>2||/[^\s,.;:]/.test(e.sliceDoc(t.from,t.to)))||t.firstChild}function DI(e,t,n){let i=Or(e).resolveInner(t.head),r=n?Ln.closedBy:Ln.openedBy;for(let c=t.head;;){let u=n?i.childAfter(c):i.childBefore(c);if(!u)break;FPt(e,u,r)?i=u:c=n?u.to:u.from}let s=i.type.prop(r),a,l;return s&&(a=n?_d(e,i.from,1):_d(e,i.to,-1))&&a.matched?l=n?a.end.to:a.end.from:l=n?i.to:i.from,it.cursor(l,n?-1:1)}const BPt=e=>Ju(e,t=>DI(e.state,t,!ko(e))),UPt=e=>Ju(e,t=>DI(e.state,t,ko(e)));function vNe(e,t){return Ju(e,n=>{if(!n.empty)return PI(n,t);let i=e.moveVertically(n,t);return i.head!=n.head?i:e.moveToLineBoundary(n,t)})}const xNe=e=>vNe(e,!1),wNe=e=>vNe(e,!0);function ONe(e){let t=e.scrollDOM.clientHeighta.empty?e.moveVertically(a,t,n.height):PI(a,t));if(r.eq(i.selection))return!1;let s;if(n.selfScroll){let a=e.coordsAtPos(i.selection.main.head),l=e.scrollDOM.getBoundingClientRect(),c=l.top+n.marginTop,u=l.bottom-n.marginBottom;a&&a.top>c&&a.bottomSNe(e,!1),m8=e=>SNe(e,!0);function Hm(e,t,n){let i=e.lineBlockAt(t.head),r=e.moveToLineBoundary(t,n);if(r.head==t.head&&r.head!=(n?i.to:i.from)&&(r=e.moveToLineBoundary(t,n,!1)),!n&&r.head==i.from&&i.length){let s=/^\s*/.exec(e.state.sliceDoc(i.from,Math.min(i.from+100,i.to)))[0].length;s&&t.head!=i.from+s&&(r=it.cursor(i.from+s))}return r}const QPt=e=>Ju(e,t=>Hm(e,t,!0)),zPt=e=>Ju(e,t=>Hm(e,t,!1)),VPt=e=>Ju(e,t=>Hm(e,t,!ko(e))),HPt=e=>Ju(e,t=>Hm(e,t,ko(e))),qPt=e=>Ju(e,t=>it.cursor(e.lineBlockAt(t.head).from,1)),WPt=e=>Ju(e,t=>it.cursor(e.lineBlockAt(t.head).to,-1));function GPt(e,t,n){let i=!1,r=s1(e.selection,s=>{let a=_d(e,s.head,-1)||_d(e,s.head,1)||s.head>0&&_d(e,s.head-1,1)||s.headGPt(e,t);function lu(e,t,n){let i=s1(e.state.selection,r=>{r.undirectional&&r.head>=r.anchor!=t&&(r=it.range(r.head,r.anchor));let s=n(r);return it.range(r.anchor,s.head,s.goalColumn,s.bidiLevel||void 0,s.assoc)});return i.eq(e.state.selection)?!1:(e.dispatch(Zu(e.state,i)),!0)}function kNe(e,t){return lu(e,t,n=>e.moveByChar(n,t))}const ENe=e=>kNe(e,!ko(e)),CNe=e=>kNe(e,ko(e));function TNe(e,t){return lu(e,t,n=>e.moveByGroup(n,t))}const XPt=e=>TNe(e,!ko(e)),YPt=e=>TNe(e,ko(e)),ZPt=e=>{let t=!ko(e);return lu(e,t,n=>DI(e.state,n,t))},JPt=e=>{let t=ko(e);return lu(e,t,n=>DI(e.state,n,t))};function ANe(e,t){return lu(e,t,n=>e.moveVertically(n,t))}const _Ne=e=>ANe(e,!1),NNe=e=>ANe(e,!0);function jNe(e,t){return lu(e,t,n=>e.moveVertically(n,t,ONe(e).height))}const Dee=e=>jNe(e,!1),Mee=e=>jNe(e,!0),eDt=e=>lu(e,!0,t=>Hm(e,t,!0)),tDt=e=>lu(e,!1,t=>Hm(e,t,!1)),nDt=e=>{let t=!ko(e);return lu(e,t,n=>Hm(e,n,t))},iDt=e=>{let t=ko(e);return lu(e,t,n=>Hm(e,n,t))},rDt=e=>lu(e,!1,t=>it.cursor(e.lineBlockAt(t.head).from)),sDt=e=>lu(e,!0,t=>it.cursor(e.lineBlockAt(t.head).to)),Lee=({state:e,dispatch:t})=>(t(Zu(e,{anchor:0})),!0),$ee=({state:e,dispatch:t})=>(t(Zu(e,{anchor:e.doc.length})),!0),Fee=({state:e,dispatch:t})=>(t(Zu(e,{anchor:e.selection.main.anchor,head:0})),!0),Bee=({state:e,dispatch:t})=>(t(Zu(e,{anchor:e.selection.main.anchor,head:e.doc.length})),!0),aDt=({state:e,dispatch:t})=>(t(e.update({selection:{anchor:0,head:e.doc.length},userEvent:"select"})),!0),oDt=({state:e,dispatch:t})=>{let n=MI(e).map(({from:i,to:r})=>it.range(i,Math.min(r+1,e.doc.length)));return t(e.update({selection:it.create(n),userEvent:"select"})),!0},lDt=({state:e,dispatch:t})=>{let n=s1(e.selection,i=>{let r=Or(e),s=r.resolveStack(i.from,1);if(i.empty){let a=r.resolveStack(i.from,-1);a.node.from>=s.node.from&&a.node.to<=s.node.to&&(s=a)}for(let a=s;a;a=a.next){let{node:l}=a;if((l.from=i.to||l.to>i.to&&l.from<=i.from)&&a.next)return it.range(l.to,l.from)}return i});return n.eq(e.selection)?!1:(t(Zu(e,n)),!0)};function RNe(e,t){let{state:n}=e,i=n.selection,r=n.selection.ranges.slice();for(let s of n.selection.ranges){let a=n.doc.lineAt(s.head);if(t?a.to0)for(let l=s;;){let c=e.moveVertically(l,t);if(c.heada.to){r.some(u=>u.head==c.head)||r.push(c);break}else{if(c.head==l.head)break;l=c}}}return r.length==i.ranges.length?!1:(e.dispatch(Zu(n,it.create(r,r.length-1))),!0)}const cDt=e=>RNe(e,!1),uDt=e=>RNe(e,!0),dDt=({state:e,dispatch:t})=>{let n=e.selection,i=null;return n.ranges.length>1?i=it.create([n.main]):n.main.empty||(i=it.create([it.cursor(n.main.head)])),i?(t(Zu(e,i)),!0):!1};function UE(e,t){if(e.state.readOnly)return!1;let n="delete.selection",{state:i}=e,r=i.changeByRange(s=>{let{from:a,to:l}=s;if(a==l){let c=t(s);ca&&(n="delete.forward",c=h2(e,c,!0)),a=Math.min(a,c),l=Math.max(l,c)}else a=h2(e,a,!1),l=h2(e,l,!0);return a==l?{range:s}:{changes:{from:a,to:l},range:it.cursor(a,ar(e)))i.between(t,t,(r,s)=>{rt&&(t=n?s:r)});return t}const INe=(e,t,n)=>UE(e,i=>{let r=i.from,{state:s}=e,a=s.doc.lineAt(r),l,c;if(n&&!t&&r>a.from&&rINe(e,!1,!0),PNe=e=>INe(e,!0,!1),DNe=(e,t)=>UE(e,n=>{let i=n.head,{state:r}=e,s=r.doc.lineAt(i),a=r.charCategorizer(i);for(let l=null;;){if(i==(t?s.to:s.from)){i==n.head&&s.number!=(t?r.doc.lines:1)&&(i+=t?1:-1);break}let c=$a(s.text,i-s.from,t)+s.from,u=s.text.slice(Math.min(i,c)-s.from,Math.max(i,c)-s.from),d=a(u);if(l!=null&&d!=l)break;(u!=" "||i!=n.head)&&(l=d),i=c}return i}),MNe=e=>DNe(e,!1),fDt=e=>DNe(e,!0),hDt=e=>UE(e,t=>{let n=e.lineBlockAt(t.head).to;return t.headUE(e,t=>{let n=e.moveToLineBoundary(t,!1).head;return t.head>n?n:Math.max(0,t.head-1)}),mDt=e=>UE(e,t=>{let n=e.moveToLineBoundary(t,!0).head;return t.head{if(e.readOnly)return!1;let n=e.changeByRange(i=>({changes:{from:i.from,to:i.to,insert:Gi.of(["",""])},range:it.cursor(i.from)}));return t(e.update(n,{scrollIntoView:!0,userEvent:"input"})),!0},bDt=({state:e,dispatch:t})=>{if(e.readOnly)return!1;let n=e.changeByRange(i=>{if(!i.empty||i.from==0||i.from==e.doc.length)return{range:i};let r=i.from,s=e.doc.lineAt(r),a=r==s.from?r-1:$a(s.text,r-s.from,!1)+s.from,l=r==s.to?r+1:$a(s.text,r-s.from,!0)+s.from;return{changes:{from:a,to:l,insert:e.doc.slice(r,l).append(e.doc.slice(a,r))},range:it.cursor(l)}});return n.changes.empty?!1:(t(e.update(n,{scrollIntoView:!0,userEvent:"move.character"})),!0)};function MI(e){let t=[],n=-1;for(let i of e.selection.ranges){let r=e.doc.lineAt(i.from),s=e.doc.lineAt(i.to);if(!i.empty&&i.to==s.from&&(s=e.doc.lineAt(i.to-1)),n>=r.number){let a=t[t.length-1];a.to=s.to,a.ranges.push(i)}else t.push({from:r.from,to:s.to,ranges:[i]});n=s.number+1}return t}function LNe(e,t,n){if(e.readOnly)return!1;let i=[],r=[];for(let s of MI(e)){if(n?s.to==e.doc.length:s.from==0)continue;let a=e.doc.lineAt(n?s.to+1:s.from-1),l=a.length+1;if(n){i.push({from:s.to,to:a.to},{from:s.from,insert:a.text+e.lineBreak});for(let c of s.ranges)r.push(it.range(Math.min(e.doc.length,c.anchor+l),Math.min(e.doc.length,c.head+l)))}else{i.push({from:a.from,to:s.from},{from:s.to,insert:e.lineBreak+a.text});for(let c of s.ranges)r.push(it.range(c.anchor-l,c.head-l))}}return i.length?(t(e.update({changes:i,scrollIntoView:!0,selection:it.create(r,e.selection.mainIndex),userEvent:"move.line"})),!0):!1}const yDt=({state:e,dispatch:t})=>LNe(e,t,!1),vDt=({state:e,dispatch:t})=>LNe(e,t,!0);function $Ne(e,t,n){if(e.readOnly)return!1;let i=[];for(let s of MI(e))n?i.push({from:s.from,insert:e.doc.slice(s.from,s.to)+e.lineBreak}):i.push({from:s.to,insert:e.lineBreak+e.doc.slice(s.from,s.to)});let r=e.changes(i);return t(e.update({changes:r,selection:e.selection.map(r,n?1:-1),scrollIntoView:!0,userEvent:"input.copyline"})),!0}const xDt=({state:e,dispatch:t})=>$Ne(e,t,!1),wDt=({state:e,dispatch:t})=>$Ne(e,t,!0),ODt=e=>{if(e.state.readOnly)return!1;let{state:t}=e,n=t.changes(MI(t).map(({from:r,to:s})=>(r>0?r--:s{let s;if(e.lineWrapping){let a=e.lineBlockAt(r.head),l=e.coordsAtPos(r.head,r.assoc||1);l&&(s=a.bottom+e.documentTop-l.bottom+e.defaultLineHeight/2)}return e.moveVertically(r,!0,s)}).map(n);return e.dispatch({changes:n,selection:i,scrollIntoView:!0,userEvent:"delete.line"}),!0};function SDt(e,t){if(/\(\)|\[\]|\{\}/.test(e.sliceDoc(t-1,t+1)))return{from:t,to:t};let n=Or(e).resolveInner(t),i=n.childBefore(t),r=n.childAfter(t),s;return i&&r&&i.to<=t&&r.from>=t&&(s=i.type.prop(Ln.closedBy))&&s.indexOf(r.name)>-1&&e.doc.lineAt(i.to).from==e.doc.lineAt(r.from).from&&!/\S/.test(e.sliceDoc(i.to,r.from))?{from:i.to,to:r.from}:null}const Uee=FNe(!1),kDt=FNe(!0);function FNe(e){return({state:t,dispatch:n})=>{if(t.readOnly)return!1;let i=t.changeByRange(r=>{let{from:s,to:a}=r,l=t.doc.lineAt(s),c=!e&&s==a&&SDt(t,s);e&&(s=a=(a<=l.to?l:t.doc.lineAt(a)).to);let u=new TI(t,{simulateBreak:s,simulateDoubleBreak:!!c}),d=uQ(u,s);for(d==null&&(d=Uu(/^\s*/.exec(t.doc.lineAt(s).text)[0],t.tabSize));al.from&&s{let r=[];for(let a=i.from;a<=i.to;){let l=e.doc.lineAt(a);l.number>n&&(i.empty||i.to>l.from)&&(t(l,r,i),n=l.number),a=l.to+1}let s=e.changes(r);return{changes:r,range:it.range(s.mapPos(i.anchor,1),s.mapPos(i.head,1))}})}const EDt=({state:e,dispatch:t})=>{if(e.readOnly)return!1;let n=Object.create(null),i=new TI(e,{overrideIndentation:s=>{let a=n[s];return a??-1}}),r=QQ(e,(s,a,l)=>{let c=uQ(i,s.from);if(c==null)return;/\S/.test(s.text)||(c=0);let u=/^\s*/.exec(s.text)[0],d=ok(e,c);(u!=d||l.frome.readOnly?!1:(t(e.update(QQ(e,(n,i)=>{i.push({from:n.from,insert:e.facet(i1)})}),{userEvent:"input.indent"})),!0),UNe=({state:e,dispatch:t})=>e.readOnly?!1:(t(e.update(QQ(e,(n,i)=>{let r=/^\s*/.exec(n.text)[0];if(!r)return;let s=Uu(r,e.tabSize),a=0,l=ok(e,Math.max(0,s-Pb(e)));for(;a(e.setTabFocusMode(),!0),TDt=[{key:"Ctrl-b",run:gNe,shift:ENe,preventDefault:!0},{key:"Ctrl-f",run:bNe,shift:CNe},{key:"Ctrl-p",run:xNe,shift:_Ne},{key:"Ctrl-n",run:wNe,shift:NNe},{key:"Ctrl-a",run:qPt,shift:rDt},{key:"Ctrl-e",run:WPt,shift:sDt},{key:"Ctrl-d",run:PNe},{key:"Ctrl-h",run:g8},{key:"Ctrl-k",run:hDt},{key:"Ctrl-Alt-h",run:MNe},{key:"Ctrl-o",run:gDt},{key:"Ctrl-t",run:bDt},{key:"Ctrl-v",run:m8}],ADt=[{key:"ArrowLeft",run:gNe,shift:ENe,preventDefault:!0},{key:"Mod-ArrowLeft",mac:"Alt-ArrowLeft",run:LPt,shift:XPt,preventDefault:!0},{mac:"Cmd-ArrowLeft",run:VPt,shift:nDt,preventDefault:!0},{key:"ArrowRight",run:bNe,shift:CNe,preventDefault:!0},{key:"Mod-ArrowRight",mac:"Alt-ArrowRight",run:$Pt,shift:YPt,preventDefault:!0},{mac:"Cmd-ArrowRight",run:HPt,shift:iDt,preventDefault:!0},{key:"ArrowUp",run:xNe,shift:_Ne,preventDefault:!0},{mac:"Cmd-ArrowUp",run:Lee,shift:Fee},{mac:"Ctrl-ArrowUp",run:Pee,shift:Dee},{key:"ArrowDown",run:wNe,shift:NNe,preventDefault:!0},{mac:"Cmd-ArrowDown",run:$ee,shift:Bee},{mac:"Ctrl-ArrowDown",run:m8,shift:Mee},{key:"PageUp",run:Pee,shift:Dee},{key:"PageDown",run:m8,shift:Mee},{key:"Home",run:zPt,shift:tDt,preventDefault:!0},{key:"Mod-Home",run:Lee,shift:Fee},{key:"End",run:QPt,shift:eDt,preventDefault:!0},{key:"Mod-End",run:$ee,shift:Bee},{key:"Enter",run:Uee,shift:Uee},{key:"Mod-a",run:aDt},{key:"Backspace",run:g8,shift:g8,preventDefault:!0},{key:"Delete",run:PNe,preventDefault:!0},{key:"Mod-Backspace",mac:"Alt-Backspace",run:MNe,preventDefault:!0},{key:"Mod-Delete",mac:"Alt-Delete",run:fDt,preventDefault:!0},{mac:"Mod-Backspace",run:pDt,preventDefault:!0},{mac:"Mod-Delete",run:mDt,preventDefault:!0}].concat(TDt.map(e=>({mac:e.key,run:e.run,shift:e.shift}))),_Dt=[{key:"Alt-ArrowLeft",mac:"Ctrl-ArrowLeft",run:BPt,shift:ZPt},{key:"Alt-ArrowRight",mac:"Ctrl-ArrowRight",run:UPt,shift:JPt},{key:"Alt-ArrowUp",run:yDt},{key:"Shift-Alt-ArrowUp",run:xDt},{key:"Alt-ArrowDown",run:vDt},{key:"Shift-Alt-ArrowDown",run:wDt},{key:"Mod-Alt-ArrowUp",run:cDt},{key:"Mod-Alt-ArrowDown",run:uDt},{key:"Escape",run:dDt},{key:"Mod-Enter",run:kDt},{key:"Alt-l",mac:"Ctrl-l",run:oDt},{key:"Mod-i",run:lDt,preventDefault:!0},{key:"Mod-[",run:UNe},{key:"Mod-]",run:BNe},{key:"Mod-Alt-\\",run:EDt},{key:"Shift-Mod-k",run:ODt},{key:"Shift-Mod-\\",run:KPt},{key:"Mod-/",run:yPt},{key:"Alt-A",run:xPt},{key:"Ctrl-m",mac:"Shift-Alt-m",run:CDt}].concat(ADt),NDt={key:"Tab",run:BNe,shift:UNe},Qee=typeof String.prototype.normalize=="function"?e=>e.normalize("NFKD"):e=>e;class hx{constructor(t,n,i=0,r=t.length,s,a){this.test=a,this.value={from:0,to:0,precise:!1},this.done=!1,this.matches=[],this.buffer="",this.bufferPos=0,this.iter=t.iterRange(i,r),this.bufferStart=i,this.normalize=s?l=>s(Qee(l)):Qee,this.query=this.normalize(n)}peek(){if(this.bufferPos==this.buffer.length){if(this.bufferStart+=this.buffer.length,this.iter.next(),this.iter.done)return-1;this.bufferPos=0,this.buffer=this.iter.value}return ol(this.buffer,this.bufferPos)}next(){for(;this.matches.length;)this.matches.pop();return this.nextOverlapping()}nextOverlapping(){for(;;){let t=this.peek();if(t<0)return this.done=!0,this;let n=VU(t),i=this.bufferStart+this.bufferPos;this.bufferPos+=vd(t);let r=this.normalize(n);if(r.length)for(let s=0,a=i,l=!0;;s++){let c=r.charCodeAt(s),u=this.match(c,a,l,this.bufferPos+this.bufferStart,s==r.length-1);if(u)return this.value=u,this;if(s==r.length-1)break;l&&sthis.to&&(this.curLine=this.curLine.slice(0,this.to-this.curLineStart)),this.iter.next())}nextLine(){this.curLineStart=this.curLineStart+this.curLine.length+1,this.curLineStart>this.to?this.curLine="":this.getLine(0)}next(){for(let t=this.matchPos-this.curLineStart;;){this.re.lastIndex=t;let n=this.matchPos<=this.to&&this.re.exec(this.curLine);if(n){let i=this.curLineStart+n.index,r=i+n[0].length;if(this.matchPos=nj(this.text,r+(i==r?1:0)),i==this.curLineStart+this.curLine.length&&this.nextLine(),(ithis.value.to)&&(!this.test||this.test(i,r,n)))return this.value={from:i,to:r,precise:!0,match:n},this;t=this.matchPos-this.curLineStart}else if(this.curLineStart+this.curLine.length=i||r.to<=n){let l=new bv(n,t.sliceString(n,i));return K5.set(t,l),l}if(r.from==n&&r.to==i)return r;let{text:s,from:a}=r;return a>n&&(s=t.sliceString(n,a)+s,a=n),r.to=this.to?this.to:this.text.lineAt(t).to}next(){for(;;){let t=this.re.lastIndex=this.matchPos-this.flat.from,n=this.re.exec(this.flat.text);if(n&&!n[0]&&n.index==t&&(this.re.lastIndex=t+1,n=this.re.exec(this.flat.text)),n){let i=this.flat.from+n.index,r=i+n[0].length;if((this.flat.to>=this.to||n.index+n[0].length<=this.flat.text.length-10)&&(!this.test||this.test(i,r,n)))return this.value={from:i,to:r,precise:!0,match:n},this.matchPos=nj(this.text,r+(i==r?1:0)),this}if(this.flat.to==this.to)return this.done=!0,this;this.flat=bv.get(this.text,this.flat.from,this.chunkEnd(this.flat.from+this.flat.text.length*2))}}}typeof Symbol<"u"&&(zNe.prototype[Symbol.iterator]=VNe.prototype[Symbol.iterator]=function(){return this});function jDt(e){try{return new RegExp(e,zQ),!0}catch{return!1}}function nj(e,t){if(t>=e.length)return t;let n=e.lineAt(t),i;for(;t=56320&&i<57344;)t++;return t}const RDt=e=>{let{state:t}=e,n=String(t.doc.lineAt(e.state.selection.main.head).number),{close:i,result:r}=zTt(e,{label:t.phrase("Go to line"),input:{type:"text",name:"line",value:n},focus:!0,submitLabel:t.phrase("go")});return r.then(s=>{let a=s&&/^([+-])?(\d+)?(:\d+)?(%)?$/.exec(s.elements.line.value);if(!a){e.dispatch({effects:i});return}let l=t.doc.lineAt(t.selection.main.head),[,c,u,d,f]=a,h=d?+d.slice(1):0,m=u?+u:l.number;if(u&&f){let v=m/100;c&&(v=v*(c=="-"?-1:1)+l.number/t.doc.lines),m=Math.round(t.doc.lines*v)}else u&&c&&(m=m*(c=="-"?-1:1)+l.number);let g=t.doc.line(Math.max(1,Math.min(t.doc.lines,m))),b=it.cursor(g.from+Math.max(0,Math.min(h,g.length)));e.dispatch({effects:[i,Ft.scrollIntoView(b.from,{y:"center"})],selection:b})}),!0},IDt={highlightWordAroundCursor:!1,minSelectionLength:1,maxMatches:100,wholeWords:!1},PDt=Zt.define({combine(e){return ef(e,IDt,{highlightWordAroundCursor:(t,n)=>t||n,minSelectionLength:Math.min,maxMatches:Math.min})}});function DDt(e){return[BDt,FDt]}const MDt=gn.mark({class:"cm-selectionMatch"}),LDt=gn.mark({class:"cm-selectionMatch cm-selectionMatch-main"});function zee(e,t,n,i){return(n==0||e(t.sliceDoc(n-1,n))!=ns.Word)&&(i==t.doc.length||e(t.sliceDoc(i,i+1))!=ns.Word)}function $Dt(e,t,n,i){return e(t.sliceDoc(n,n+1))==ns.Word&&e(t.sliceDoc(i-1,i))==ns.Word}const FDt=Ts.fromClass(class{constructor(e){this.decorations=this.getDeco(e)}update(e){(e.selectionSet||e.docChanged||e.viewportChanged)&&(this.decorations=this.getDeco(e.view))}getDeco(e){let t=e.state.facet(PDt),{state:n}=e,i=n.selection;if(i.ranges.length>1)return gn.none;let r=i.main,s,a=null;if(r.empty){if(!t.highlightWordAroundCursor)return gn.none;let c=n.wordAt(r.head);if(!c)return gn.none;a=n.charCategorizer(r.head),s=n.sliceDoc(c.from,c.to)}else{let c=r.to-r.from;if(c200)return gn.none;if(t.wholeWords){if(s=n.sliceDoc(r.from,r.to),a=n.charCategorizer(r.head),!(zee(a,n,r.from,r.to)&&$Dt(a,n,r.from,r.to)))return gn.none}else if(s=n.sliceDoc(r.from,r.to),!s)return gn.none}let l=[];for(let c of e.visibleRanges){let u=new hx(n.doc,s,c.from,c.to);for(;!u.next().done;){let{from:d,to:f}=u.value;if((!a||zee(a,n,d,f))&&(r.empty&&d<=r.from&&f>=r.to?l.push(LDt.range(d,f)):(d>=r.to||f<=r.from)&&l.push(MDt.range(d,f)),l.length>t.maxMatches))return gn.none}}return gn.set(l)}},{decorations:e=>e.decorations}),BDt=Ft.baseTheme({".cm-selectionMatch":{backgroundColor:"#99ff7780"},".cm-searchMatch .cm-selectionMatch":{backgroundColor:"transparent"}}),UDt=({state:e,dispatch:t})=>{let{selection:n}=e,i=it.create(n.ranges.map(r=>e.wordAt(r.head)||it.cursor(r.head)),n.mainIndex);return i.eq(n)?!1:(t(e.update({selection:i})),!0)};function QDt(e,t){let{main:n,ranges:i}=e.selection,r=e.wordAt(n.head),s=r&&r.from==n.from&&r.to==n.to;for(let a=!1,l=new hx(e.doc,t,i[i.length-1].to);;)if(l.next(),l.done){if(a)return null;l=new hx(e.doc,t,0,Math.max(0,i[i.length-1].from-1)),a=!0}else{if(a&&i.some(c=>c.from==l.value.from))continue;if(s){let c=e.wordAt(l.value.from);if(!c||c.from!=l.value.from||c.to!=l.value.to)continue}return l.value}}const zDt=({state:e,dispatch:t})=>{let{ranges:n}=e.selection;if(n.some(s=>s.from===s.to))return UDt({state:e,dispatch:t});let i=e.sliceDoc(n[0].from,n[0].to);if(e.selection.ranges.some(s=>e.sliceDoc(s.from,s.to)!=i))return!1;let r=QDt(e,i);return r?(t(e.update({selection:e.selection.addRange(it.range(r.from,r.to),!1),effects:Ft.scrollIntoView(r.to)})),!0):!1},a1=Zt.define({combine(e){return ef(e,{top:!1,caseSensitive:!1,literal:!1,regexp:!1,wholeWord:!1,createPanel:t=>new iMt(t),scrollToMatch:t=>Ft.scrollIntoView(t)})}});class HNe{constructor(t){this.search=t.search,this.caseSensitive=!!t.caseSensitive,this.literal=!!t.literal,this.regexp=!!t.regexp,this.replace=t.replace||"",this.valid=!!this.search&&(!this.regexp||jDt(this.search)),this.unquoted=this.unquote(this.search),this.wholeWord=!!t.wholeWord,this.test=t.test}unquote(t){return this.literal?t:t.replace(/\\([nrt\\])/g,(n,i)=>i=="n"?` -`:i=="r"?"\r":i=="t"?" ":"\\")}eq(t){return this.search==t.search&&this.replace==t.replace&&this.caseSensitive==t.caseSensitive&&this.regexp==t.regexp&&this.wholeWord==t.wholeWord&&this.test==t.test}create(){return this.regexp?new KDt(this):new qDt(this)}getCursor(t,n=0,i){let r=t.doc?t:Ti.create({doc:t});return i==null&&(i=r.doc.length),this.regexp?ly(this,r,n,i):oy(this,r,n,i)}}class qNe{constructor(t){this.spec=t}}function VDt(e,t,n){return(i,r,s,a)=>{if(n&&!n(i,r,s,a))return!1;let l=i>=a&&r<=a+s.length?s.slice(i-a,r-a):t.doc.sliceString(i,r);return e(l,t,i,r)}}function oy(e,t,n,i){let r;return e.wholeWord&&(r=HDt(t.doc,t.charCategorizer(t.selection.main.head))),e.test&&(r=VDt(e.test,t,r)),new hx(t.doc,e.unquoted,n,i,e.caseSensitive?void 0:s=>s.toLowerCase(),r)}function HDt(e,t){return(n,i,r,s)=>((s>n||s+r.length=n)return null;r.push(i.value)}return r}highlight(t,n,i,r){let s=oy(this.spec,t,Math.max(0,n-this.spec.unquoted.length),Math.min(i+this.spec.unquoted.length,t.doc.length));for(;!s.next().done;)r(s.value.from,s.value.to)}}function WDt(e,t,n){return(i,r,s)=>(!n||n(i,r,s))&&e(s[0],t,i,r)}function ly(e,t,n,i){let r;return e.wholeWord&&(r=GDt(t.charCategorizer(t.selection.main.head))),e.test&&(r=WDt(e.test,t,r)),new zNe(t.doc,e.search,{ignoreCase:!e.caseSensitive,test:r},n,i)}function ij(e,t){return e.slice($a(e,t,!1),t)}function rj(e,t){return e.slice(t,$a(e,t))}function GDt(e){return(t,n,i)=>!i[0].length||(e(ij(i.input,i.index))!=ns.Word||e(rj(i.input,i.index))!=ns.Word)&&(e(rj(i.input,i.index+i[0].length))!=ns.Word||e(ij(i.input,i.index+i[0].length))!=ns.Word)}class KDt extends qNe{nextMatch(t,n,i){let r=ly(this.spec,t,i,t.doc.length).next();return r.done&&(r=ly(this.spec,t,0,n).next()),r.done?null:r.value}prevMatchInRange(t,n,i){for(let r=1;;r++){let s=Math.max(n,i-r*1e4),a=ly(this.spec,t,s,i),l=null;for(;!a.next().done;)l=a.value;if(l&&(s==n||l.from>s+10))return l;if(s==n)return null}}prevMatch(t,n,i){return this.prevMatchInRange(t,0,n)||this.prevMatchInRange(t,i,t.doc.length)}getReplacement(t){return this.spec.unquote(this.spec.replace).replace(/\$([$&]|\d+)/g,(n,i)=>{if(i=="&")return t.match[0];if(i=="$")return"$";for(let r=i.length;r>0;r--){let s=+i.slice(0,r);if(s>0&&s=n)return null;r.push(i.value)}return r}highlight(t,n,i,r){let s=ly(this.spec,t,Math.max(0,n-250),Math.min(i+250,t.doc.length));for(;!s.next().done;)r(s.value.from,s.value.to)}}const yk=Fn.define(),VQ=Fn.define(),sm=ro.define({create(e){return new X5(b8(e).create(),null)},update(e,t){for(let n of t.effects)n.is(yk)?e=new X5(n.value.create(),e.panel):n.is(VQ)&&(e=new X5(e.query,n.value?HQ:null));return e},provide:e=>sk.from(e,t=>t.panel)});class X5{constructor(t,n){this.query=t,this.panel=n}}const XDt=gn.mark({class:"cm-searchMatch"}),YDt=gn.mark({class:"cm-searchMatch cm-searchMatch-selected"}),ZDt=Ts.fromClass(class{constructor(e){this.view=e,this.decorations=this.highlight(e.state.field(sm))}update(e){let t=e.state.field(sm);(t!=e.startState.field(sm)||e.docChanged||e.selectionSet||e.viewportChanged)&&(this.decorations=this.highlight(t))}highlight({query:e,panel:t}){if(!t||!e.spec.valid)return gn.none;let{view:n}=this,i=new Ah;for(let r=0,s=n.visibleRanges,a=s.length;rs[r+1].from-2*250;)c=s[++r].to;e.highlight(n.state,l,c,(u,d)=>{let f=n.state.selection.ranges.some(h=>h.from==u&&h.to==d);i.add(u,d,f?YDt:XDt)})}return i.finish()}},{decorations:e=>e.decorations});function QE(e){return t=>{let n=t.state.field(sm,!1);return n&&n.query.spec.valid?e(t,n):KNe(t)}}const sj=QE((e,{query:t})=>{let{to:n}=e.state.selection.main,i=t.nextMatch(e.state,n,n);if(!i)return!1;let r=it.single(i.from,i.to),s=e.state.facet(a1);return e.dispatch({selection:r,effects:[qQ(e,i),s.scrollToMatch(r.main,e)],userEvent:"select.search"}),GNe(e),!0}),aj=QE((e,{query:t})=>{let{state:n}=e,{from:i}=n.selection.main,r=t.prevMatch(n,i,i);if(!r)return!1;let s=it.single(r.from,r.to),a=e.state.facet(a1);return e.dispatch({selection:s,effects:[qQ(e,r),a.scrollToMatch(s.main,e)],userEvent:"select.search"}),GNe(e),!0}),JDt=QE((e,{query:t})=>{let n=t.matchAll(e.state,1e3);return!n||!n.length?!1:(e.dispatch({selection:it.create(n.map(i=>it.range(i.from,i.to))),userEvent:"select.search.matches"}),!0)}),eMt=({state:e,dispatch:t})=>{let n=e.selection;if(n.ranges.length>1||n.main.empty)return!1;let{from:i,to:r}=n.main,s=[],a=0;for(let l=new hx(e.doc,e.sliceDoc(i,r));!l.next().done;){if(s.length>1e3)return!1;l.value.from==i&&(a=s.length),s.push(it.range(l.value.from,l.value.to))}return t(e.update({selection:it.create(s,a),userEvent:"select.search.matches"})),!0},Vee=QE((e,{query:t})=>{let{state:n}=e,{from:i,to:r}=n.selection.main;if(n.readOnly)return!1;let s=t.nextMatch(n,i,i);if(!s)return!1;let a=s,l=[],c,u,d=[];a.precise?a.from==i&&a.to==r&&(u=n.toText(t.getReplacement(a)),l.push({from:a.from,to:a.to,insert:u}),a=t.nextMatch(n,a.from,a.to),d.push(Ft.announce.of(n.phrase("replaced match on line $",n.doc.lineAt(i).number)+"."))):a=t.nextMatch(n,a.from,a.to);let f=e.state.changes(l);return a&&(c=it.single(a.from,a.to).map(f),d.push(qQ(e,a)),d.push(n.facet(a1).scrollToMatch(c.main,e))),e.dispatch({changes:f,selection:c,effects:d,userEvent:"input.replace"}),!0}),tMt=QE((e,{query:t})=>{if(e.state.readOnly)return!1;let n=[];for(let r of t.matchAll(e.state,1e9)){let{from:s,to:a,precise:l}=r;l&&n.push({from:s,to:a,insert:t.getReplacement(r)})}if(!n.length)return!1;let i=e.state.phrase("replaced $ matches",n.length)+".";return e.dispatch({changes:n,effects:Ft.announce.of(i),userEvent:"input.replace.all"}),!0});function HQ(e){return e.state.facet(a1).createPanel(e)}function b8(e,t){var n,i,r,s,a;let l=e.selection.main,c=l.empty||l.to>l.from+100?"":e.sliceDoc(l.from,l.to);if(t&&!c)return t;let u=e.facet(a1);return new HNe({search:((n=t==null?void 0:t.literal)!==null&&n!==void 0?n:u.literal)?c:c.replace(/\n/g,"\\n"),caseSensitive:(i=t==null?void 0:t.caseSensitive)!==null&&i!==void 0?i:u.caseSensitive,literal:(r=t==null?void 0:t.literal)!==null&&r!==void 0?r:u.literal,regexp:(s=t==null?void 0:t.regexp)!==null&&s!==void 0?s:u.regexp,wholeWord:(a=t==null?void 0:t.wholeWord)!==null&&a!==void 0?a:u.wholeWord})}function WNe(e){let t=lQ(e,HQ);return t&&t.dom.querySelector("[main-field]")}function GNe(e){let t=WNe(e);t&&t==e.root.activeElement&&t.select()}const KNe=e=>{let t=e.state.field(sm,!1);if(t&&t.panel){let n=WNe(e);if(n&&n!=e.root.activeElement){let i=b8(e.state,t.query.spec);i.valid&&e.dispatch({effects:yk.of(i)}),n.focus(),n.select()}}else e.dispatch({effects:[VQ.of(!0),t?yk.of(b8(e.state,t.query.spec)):Fn.appendConfig.of(sMt)]});return!0},XNe=e=>{let t=e.state.field(sm,!1);if(!t||!t.panel)return!1;let n=lQ(e,HQ);return n&&n.dom.contains(e.root.activeElement)&&e.focus(),e.dispatch({effects:VQ.of(!1)}),!0},nMt=[{key:"Mod-f",run:KNe,scope:"editor search-panel"},{key:"F3",run:sj,shift:aj,scope:"editor search-panel",preventDefault:!0},{key:"Mod-g",run:sj,shift:aj,scope:"editor search-panel",preventDefault:!0},{key:"Escape",run:XNe,scope:"editor search-panel"},{key:"Mod-Shift-l",run:eMt},{key:"Mod-Alt-g",run:RDt},{key:"Mod-d",run:zDt,preventDefault:!0}];class iMt{constructor(t){this.view=t;let n=this.query=t.state.field(sm).query.spec;this.commit=this.commit.bind(this),this.searchField=yr("input",{value:n.search,placeholder:Ll(t,"Find"),"aria-label":Ll(t,"Find"),class:"cm-textfield",name:"search",form:"","main-field":"true",onchange:this.commit,onkeyup:this.commit}),this.replaceField=yr("input",{value:n.replace,placeholder:Ll(t,"Replace"),"aria-label":Ll(t,"Replace"),class:"cm-textfield",name:"replace",form:"",onchange:this.commit,onkeyup:this.commit}),this.caseField=yr("input",{type:"checkbox",name:"case",form:"",checked:n.caseSensitive,onchange:this.commit}),this.reField=yr("input",{type:"checkbox",name:"re",form:"",checked:n.regexp,onchange:this.commit}),this.wordField=yr("input",{type:"checkbox",name:"word",form:"",checked:n.wholeWord,onchange:this.commit});function i(r,s,a){return yr("button",{class:"cm-button",name:r,onclick:s,type:"button"},a)}this.dom=yr("div",{onkeydown:r=>this.keydown(r),class:"cm-search"},[this.searchField,i("next",()=>sj(t),[Ll(t,"next")]),i("prev",()=>aj(t),[Ll(t,"previous")]),i("select",()=>JDt(t),[Ll(t,"all")]),yr("label",null,[this.caseField,Ll(t,"match case")]),yr("label",null,[this.reField,Ll(t,"regexp")]),yr("label",null,[this.wordField,Ll(t,"by word")]),...t.state.readOnly?[]:[yr("br"),this.replaceField,i("replace",()=>Vee(t),[Ll(t,"replace")]),i("replaceAll",()=>tMt(t),[Ll(t,"replace all")])],yr("button",{name:"close",onclick:()=>XNe(t),"aria-label":Ll(t,"close"),type:"button"},["×"])])}commit(){let t=new HNe({search:this.searchField.value,caseSensitive:this.caseField.checked,regexp:this.reField.checked,wholeWord:this.wordField.checked,replace:this.replaceField.value});t.eq(this.query)||(this.query=t,this.view.dispatch({effects:yk.of(t)}))}keydown(t){ZCt(this.view,t,"search-panel")?t.preventDefault():t.keyCode==13&&t.target==this.searchField?(t.preventDefault(),(t.shiftKey?aj:sj)(this.view)):t.keyCode==13&&t.target==this.replaceField&&(t.preventDefault(),Vee(this.view))}update(t){for(let n of t.transactions)for(let i of n.effects)i.is(yk)&&!i.value.eq(this.query)&&this.setQuery(i.value)}setQuery(t){this.query=t,this.searchField.value=t.search,this.replaceField.value=t.replace,this.caseField.checked=t.caseSensitive,this.reField.checked=t.regexp,this.wordField.checked=t.wholeWord}mount(){this.searchField.select()}get pos(){return 80}get top(){return this.view.state.facet(a1).top}}function Ll(e,t){return e.state.phrase(t)}const p2=30,m2=/[\s\.,:;?!]/;function qQ(e,{from:t,to:n}){let i=e.state.doc.lineAt(t),r=e.state.doc.lineAt(n).to,s=Math.max(i.from,t-p2),a=Math.min(r,n+p2),l=e.state.sliceDoc(s,a);if(s!=i.from){for(let c=0;cl.length-p2;c--)if(!m2.test(l[c-1])&&m2.test(l[c])){l=l.slice(0,c);break}}return Ft.announce.of(`${e.state.phrase("current match")}. ${l} ${e.state.phrase("on line")} ${i.number}.`)}const rMt=Ft.baseTheme({".cm-panel.cm-search":{padding:"2px 6px 4px",position:"relative","& [name=close]":{position:"absolute",top:"0",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",padding:0,margin:0},"& input, & button, & label":{margin:".2em .6em .2em 0"},"& input[type=checkbox]":{marginRight:".2em"},"& label":{fontSize:"80%",whiteSpace:"pre"}},"&light .cm-searchMatch":{backgroundColor:"#ffff0054"},"&dark .cm-searchMatch":{backgroundColor:"#00ffff8a"},"&light .cm-searchMatch-selected":{backgroundColor:"#ff6a0054"},"&dark .cm-searchMatch-selected":{backgroundColor:"#ff00ff8a"}}),sMt=[sm,zh.low(ZDt),rMt];class Hee{constructor(t,n,i){this.from=t,this.to=n,this.diagnostic=i}}class jg{constructor(t,n,i){this.diagnostics=t,this.panel=n,this.selected=i}static init(t,n,i){let r=i.facet(vk).markerFilter;r&&(t=r(t,i));let s=t.slice().sort((m,g)=>m.from-g.from||m.to-g.to),a=new Ah,l=[],c=0,u=i.doc.iter(),d=0,f=i.doc.length;for(let m=0;;){let g=m==s.length?null:s[m];if(!g&&!l.length)break;let b,v;if(l.length)b=c,v=l.reduce((O,w)=>Math.min(O,w.to),g&&g.from>b?g.from:1e8);else{if(b=g.from,b>f)break;v=g.to,l.push(g),m++}for(;mO.from||O.to==b))l.push(O),m++,v=Math.min(O.to,v);else{v=Math.min(O.from,v);break}}v=Math.min(v,f);let y=!1;if(l.some(O=>O.from==b&&(O.to==v||v==f))&&(y=b==v,!y&&v-b<10)){let O=b-(d+u.value.length);O>0&&(u.next(O),d=b);for(let w=b;;){if(w>=v){y=!0;break}if(!u.lineBreak&&d+u.value.length>w)break;w=d+u.value.length,d+=u.value.length,u.next()}}let x=yMt(l);if(y)a.add(b,b,gn.widget({widget:new pMt(x),diagnostics:l.slice()}));else{let O=l.reduce((w,k)=>k.markClass?w+" "+k.markClass:w,"");a.add(b,v,gn.mark({class:"cm-lintRange cm-lintRange-"+x+O,diagnostics:l.slice(),inclusiveEnd:l.some(w=>w.to>v)}))}if(c=v,c==f)break;for(let O=0;O{if(!(t&&a.diagnostics.indexOf(t)<0))if(!i)i=new Hee(r,s,t||a.diagnostics[0]);else{if(a.diagnostics.indexOf(i.diagnostic)<0)return!1;i=new Hee(i.from,s,i.diagnostic)}}),i}function aMt(e,t){let n=t.pos,i=t.end||n,r=e.state.facet(vk).hideOn(e,n,i);if(r!=null)return r;let s=e.startState.doc.lineAt(t.pos);return!!(e.effects.some(a=>a.is(YNe))||e.changes.touchesRange(s.from,Math.max(s.to,i)))}function oMt(e,t){return e.field(tc,!1)?t:t.concat(Fn.appendConfig.of(vMt))}const YNe=Fn.define(),WQ=Fn.define(),ZNe=Fn.define(),tc=ro.define({create(){return new jg(gn.none,null,null)},update(e,t){if(t.docChanged&&e.diagnostics.size){let n=e.diagnostics.map(t.changes),i=null,r=e.panel;if(e.selected){let s=t.changes.mapPos(e.selected.from,1);i=jm(n,e.selected.diagnostic,s)||jm(n,null,s)}!n.size&&r&&t.state.facet(vk).autoPanel&&(r=null),e=new jg(n,r,i)}for(let n of t.effects)if(n.is(YNe)){let i=t.state.facet(vk).autoPanel?n.value.length?xk.open:null:e.panel;e=jg.init(n.value,i,t.state)}else n.is(WQ)?e=new jg(e.diagnostics,n.value?xk.open:null,e.selected):n.is(ZNe)&&(e=new jg(e.diagnostics,e.panel,n.value));return e},provide:e=>[sk.from(e,t=>t.panel),Ft.decorations.from(e,t=>t.diagnostics)]}),lMt=gn.mark({class:"cm-lintRange cm-lintRange-active"});function cMt(e,t,n){let{diagnostics:i}=e.state.field(tc),r,s=-1,a=-1;i.between(t-(n<0?1:0),t+(n>0?1:0),(c,u,{spec:d})=>{if(t>=c&&t<=u&&(c==u||(t>c||n>0)&&(teje(e,n,!1)))}const dMt=e=>{let t=e.state.field(tc,!1);(!t||!t.panel)&&e.dispatch({effects:oMt(e.state,[WQ.of(!0)])});let n=lQ(e,xk.open);return n&&n.dom.querySelector(".cm-panel-lint ul").focus(),!0},qee=e=>{let t=e.state.field(tc,!1);return!t||!t.panel?!1:(e.dispatch({effects:WQ.of(!1)}),!0)},fMt=e=>{let t=e.state.field(tc,!1);if(!t)return!1;let n=e.state.selection.main,i=jm(t.diagnostics,null,n.to+1);return!i&&(i=jm(t.diagnostics,null,0),!i||i.from==n.from&&i.to==n.to)?!1:(e.dispatch({selection:{anchor:i.from,head:i.to},scrollIntoView:!0}),UTt(e,i.from,1,{tooltip:tje,until:r=>r.docChanged||r.newSelection.main.headi.to}),!0)},hMt=[{key:"Mod-Shift-m",run:dMt,preventDefault:!0},{key:"F8",run:fMt}],vk=Zt.define({combine(e){return{sources:e.map(t=>t.source).filter(t=>t!=null),...ef(e.map(t=>t.config),{delay:750,markerFilter:null,tooltipFilter:null,needsRefresh:null,hideOn:()=>null},{delay:Math.max,markerFilter:Wee,tooltipFilter:Wee,needsRefresh:(t,n)=>t?n?i=>t(i)||n(i):t:n,hideOn:(t,n)=>t?n?(i,r,s)=>t(i,r,s)||n(i,r,s):t:n,autoPanel:(t,n)=>t||n})}}});function Wee(e,t){return e?t?(n,i)=>t(e(n,i),i):e:t}function JNe(e){let t=[];if(e)e:for(let{name:n}of e){for(let i=0;is.toLowerCase()==r.toLowerCase())){t.push(r);continue e}}t.push("")}return t}function eje(e,t,n){var i;let r=n?JNe(t.actions):[];return yr("li",{class:"cm-diagnostic cm-diagnostic-"+t.severity},yr("span",{class:"cm-diagnosticText"},t.renderMessage?t.renderMessage(e):t.message),(i=t.actions)===null||i===void 0?void 0:i.map((s,a)=>{let l=!1,c=m=>{if(m.preventDefault(),l)return;l=!0;let g=jm(e.state.field(tc).diagnostics,t);g&&s.apply(e,g.from,g.to)},{name:u}=s,d=r[a]?u.indexOf(r[a]):-1,f=d<0?u:[u.slice(0,d),yr("u",u.slice(d,d+1)),u.slice(d+1)],h=s.markClass?" "+s.markClass:"";return yr("button",{type:"button",class:"cm-diagnosticAction"+h,onclick:c,onmousedown:c,"aria-label":` Action: ${u}${d<0?"":` (access key "${r[a]})"`}.`},f)}),t.source&&yr("div",{class:"cm-diagnosticSource"},t.source))}class pMt extends Yu{constructor(t){super(),this.sev=t}eq(t){return t.sev==this.sev}toDOM(){return yr("span",{class:"cm-lintPoint cm-lintPoint-"+this.sev})}}class Gee{constructor(t,n){this.diagnostic=n,this.id="item_"+Math.floor(Math.random()*4294967295).toString(16),this.dom=eje(t,n,!0),this.dom.id=this.id,this.dom.setAttribute("role","option")}}class xk{constructor(t){this.view=t,this.items=[];let n=r=>{if(!(r.ctrlKey||r.altKey||r.metaKey)){if(r.keyCode==27)qee(this.view),this.view.focus();else if(r.keyCode==38||r.keyCode==33)this.moveSelection((this.selectedIndex-1+this.items.length)%this.items.length);else if(r.keyCode==40||r.keyCode==34)this.moveSelection((this.selectedIndex+1)%this.items.length);else if(r.keyCode==36)this.moveSelection(0);else if(r.keyCode==35)this.moveSelection(this.items.length-1);else if(r.keyCode==13)this.view.focus();else if(r.keyCode>=65&&r.keyCode<=90&&this.selectedIndex>=0){let{diagnostic:s}=this.items[this.selectedIndex],a=JNe(s.actions);for(let l=0;l{for(let s=0;sqee(this.view)},"×")),this.update()}get selectedIndex(){let t=this.view.state.field(tc).selected;if(!t)return-1;for(let n=0;n{for(let d of u.diagnostics){if(a.has(d))continue;a.add(d);let f=-1,h;for(let m=i;mi&&(this.items.splice(i,f-i),r=!0)),n&&h.diagnostic==n.diagnostic?h.dom.hasAttribute("aria-selected")||(h.dom.setAttribute("aria-selected","true"),s=h):h.dom.hasAttribute("aria-selected")&&h.dom.removeAttribute("aria-selected"),i++}});i({sel:s.dom.getBoundingClientRect(),panel:this.list.getBoundingClientRect()}),write:({sel:l,panel:c})=>{let u=c.height/this.list.offsetHeight;l.topc.bottom&&(this.list.scrollTop+=(l.bottom-c.bottom)/u)}})):this.selectedIndex<0&&this.list.removeAttribute("aria-activedescendant"),r&&this.sync()}sync(){let t=this.list.firstChild;function n(){let i=t;t=i.nextSibling,i.remove()}for(let i of this.items)if(i.dom.parentNode==this.list){for(;t!=i.dom;)n();t=i.dom.nextSibling}else this.list.insertBefore(i.dom,t);for(;t;)n()}moveSelection(t){if(this.selectedIndex<0)return;let n=this.view.state.field(tc),i=jm(n.diagnostics,this.items[t].diagnostic);i&&this.view.dispatch({selection:{anchor:i.from,head:i.to},scrollIntoView:!0,effects:ZNe.of(i)})}static open(t){return new xk(t)}}function mMt(e,t='viewBox="0 0 40 40"'){return`url('data:image/svg+xml,${encodeURIComponent(e)}')`}function g2(e){return mMt(``,'width="6" height="3"')}const gMt=Ft.baseTheme({".cm-diagnostic":{padding:"3px 6px 3px 8px",marginLeft:"-1px",display:"block",whiteSpace:"pre-wrap"},".cm-diagnostic-error":{borderLeft:"5px solid #d11"},".cm-diagnostic-warning":{borderLeft:"5px solid orange"},".cm-diagnostic-info":{borderLeft:"5px solid #999"},".cm-diagnostic-hint":{borderLeft:"5px solid #66d"},".cm-diagnosticAction":{font:"inherit",border:"none",padding:"2px 4px",backgroundColor:"#444",color:"white",borderRadius:"3px",marginLeft:"8px",cursor:"pointer"},".cm-diagnosticSource":{fontSize:"70%",opacity:.7},".cm-lintRange":{backgroundPosition:"left bottom",backgroundRepeat:"repeat-x",paddingBottom:"0.7px"},".cm-lintRange-error":{backgroundImage:g2("#f11")},".cm-lintRange-warning":{backgroundImage:g2("orange")},".cm-lintRange-info":{backgroundImage:g2("#999")},".cm-lintRange-hint":{backgroundImage:g2("#66d")},".cm-lintRange-active":{backgroundColor:"#ffdd9980"},".cm-tooltip-lint":{padding:0,margin:0},".cm-lintPoint":{position:"relative","&:after":{content:'""',position:"absolute",bottom:0,left:"-2px",borderLeft:"3px solid transparent",borderRight:"3px solid transparent",borderBottom:"4px solid #d11"}},".cm-lintPoint-warning":{"&:after":{borderBottomColor:"orange"}},".cm-lintPoint-info":{"&:after":{borderBottomColor:"#999"}},".cm-lintPoint-hint":{"&:after":{borderBottomColor:"#66d"}},".cm-panel.cm-panel-lint":{position:"relative","& ul":{maxHeight:"100px",overflowY:"auto","& [aria-selected]":{backgroundColor:"#ddd","& u":{textDecoration:"underline"}},"&:focus [aria-selected]":{background_fallback:"#bdf",backgroundColor:"Highlight",color_fallback:"white",color:"HighlightText"},"& u":{textDecoration:"none"},padding:0,margin:0},"& [name=close]":{position:"absolute",top:"0",right:"2px",background:"inherit",border:"none",font:"inherit",padding:0,margin:0}},"&dark .cm-lintRange-active":{backgroundColor:"#86714a80"},"&dark .cm-panel.cm-panel-lint ul":{"& [aria-selected]":{backgroundColor:"#2e343e"}}});function bMt(e){return e=="error"?4:e=="warning"?3:e=="info"?2:1}function yMt(e){let t="hint",n=1;for(let i of e){let r=bMt(i.severity);r>n&&(n=r,t=i.severity)}return t}const tje=BTt(cMt,{hideOn:aMt}),vMt=[tc,Ft.decorations.compute([tc],e=>{let{selected:t,panel:n}=e.field(tc);return!t||!n||t.from==t.to?gn.none:gn.set([lMt.range(t.from,t.to)])}),tje,gMt];var Kee=function(t){t===void 0&&(t={});var n=t,i=n.crosshairCursor,r=i===void 0?!1:i,s=[];t.closeBracketsKeymap!==!1&&(s=s.concat(C_t)),t.defaultKeymap!==!1&&(s=s.concat(_Dt)),t.searchKeymap!==!1&&(s=s.concat(nMt)),t.historyKeymap!==!1&&(s=s.concat(MPt)),t.foldKeymap!==!1&&(s=s.concat(N2t)),t.completionKeymap!==!1&&(s=s.concat(IAe)),t.lintKeymap!==!1&&(s=s.concat(hMt));var a=[];return t.lineNumbers!==!1&&a.push(X2e()),t.highlightActiveLineGutter!==!1&&a.push(n2t()),t.highlightSpecialChars!==!1&&a.push(mTt()),t.history!==!1&&a.push(TPt()),t.foldGutter!==!1&&a.push(P2t()),t.drawSelection!==!1&&a.push(rTt()),t.dropCursor!==!1&&a.push(cTt()),t.allowMultipleSelections!==!1&&a.push(Ti.allowMultipleSelections.of(!0)),t.indentOnInput!==!1&&a.push(O2t()),t.syntaxHighlighting!==!1&&a.push(dAe($2t,{fallback:!0})),t.bracketMatching!==!1&&a.push(H2t()),t.closeBrackets!==!1&&a.push(O_t()),t.autocompletion!==!1&&a.push(I_t()),t.rectangularSelection!==!1&&a.push(_Tt()),r!==!1&&a.push(RTt()),t.highlightActiveLine!==!1&&a.push(wTt()),t.highlightSelectionMatches!==!1&&a.push(DDt()),t.tabSize&&typeof t.tabSize=="number"&&a.push(i1.of(" ".repeat(t.tabSize))),a.concat([n1.of(s.flat())]).filter(Boolean)};const xMt="#e5c07b",Xee="#e06c75",wMt="#56b6c2",OMt="#ffffff",BA="#abb2bf",y8="#7d8799",SMt="#61afef",kMt="#98c379",Yee="#d19a66",EMt="#c678dd",CMt="#21252b",Zee="#2c313a",Jee="#282c34",Y5="#353a42",TMt="#3E4451",ete="#528bff",AMt=Ft.theme({"&":{color:BA,backgroundColor:Jee},".cm-content":{caretColor:ete},".cm-cursor, .cm-dropCursor":{borderLeftColor:ete},"&.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground, .cm-selectionBackground, .cm-content ::selection":{backgroundColor:TMt},".cm-panels":{backgroundColor:CMt,color:BA},".cm-panels.cm-panels-top":{borderBottom:"2px solid black"},".cm-panels.cm-panels-bottom":{borderTop:"2px solid black"},".cm-searchMatch":{backgroundColor:"#72a1ff59",outline:"1px solid #457dff"},".cm-searchMatch.cm-searchMatch-selected":{backgroundColor:"#6199ff2f"},".cm-activeLine":{backgroundColor:"#6699ff0b"},".cm-selectionMatch":{backgroundColor:"#aafe661a"},"&.cm-focused .cm-matchingBracket, &.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bad0f847"},".cm-gutters":{backgroundColor:Jee,color:y8,border:"none"},".cm-activeLineGutter":{backgroundColor:Zee},".cm-foldPlaceholder":{backgroundColor:"transparent",border:"none",color:"#ddd"},".cm-tooltip":{border:"none",backgroundColor:Y5},".cm-tooltip .cm-tooltip-arrow:before":{borderTopColor:"transparent",borderBottomColor:"transparent"},".cm-tooltip .cm-tooltip-arrow:after":{borderTopColor:Y5,borderBottomColor:Y5},".cm-tooltip-autocomplete":{"& > ul > li[aria-selected]":{backgroundColor:Zee,color:BA}}},{dark:!0}),_Mt=FE.define([{tag:ne.keyword,color:EMt},{tag:[ne.name,ne.deleted,ne.character,ne.propertyName,ne.macroName],color:Xee},{tag:[ne.function(ne.variableName),ne.labelName],color:SMt},{tag:[ne.color,ne.constant(ne.name),ne.standard(ne.name)],color:Yee},{tag:[ne.definition(ne.name),ne.separator],color:BA},{tag:[ne.typeName,ne.className,ne.number,ne.changed,ne.annotation,ne.modifier,ne.self,ne.namespace],color:xMt},{tag:[ne.operator,ne.operatorKeyword,ne.url,ne.escape,ne.regexp,ne.link,ne.special(ne.string)],color:wMt},{tag:[ne.meta,ne.comment],color:y8},{tag:ne.strong,fontWeight:"bold"},{tag:ne.emphasis,fontStyle:"italic"},{tag:ne.strikethrough,textDecoration:"line-through"},{tag:ne.link,color:y8,textDecoration:"underline"},{tag:ne.heading,fontWeight:"bold",color:Xee},{tag:[ne.atom,ne.bool,ne.special(ne.variableName)],color:Yee},{tag:[ne.processingInstruction,ne.string,ne.inserted],color:kMt},{tag:ne.invalid,color:OMt}]),NMt=[AMt,dAe(_Mt)];var jMt=Ft.theme({"&":{backgroundColor:"#fff"}},{dark:!1}),RMt=function(t){t===void 0&&(t={});var n=t,i=n.indentWithTab,r=i===void 0?!0:i,s=n.editable,a=s===void 0?!0:s,l=n.readOnly,c=l===void 0?!1:l,u=n.theme,d=u===void 0?"light":u,f=n.placeholder,h=f===void 0?"":f,m=n.basicSetup,g=m===void 0?!0:m,b=[];switch(r&&b.unshift(n1.of([NDt])),g&&(typeof g=="boolean"?b.unshift(Kee()):b.unshift(Kee(g))),h&&b.unshift(ETt(h)),d){case"light":b.push(jMt);break;case"dark":b.push(NMt);break;case"none":break;default:b.push(d);break}return a===!1&&b.push(Ft.editable.of(!1)),c&&b.push(Ti.readOnly.of(!0)),[...b]},IMt=e=>({line:e.state.doc.lineAt(e.state.selection.main.from),lineCount:e.state.doc.lines,lineBreak:e.state.lineBreak,length:e.state.doc.length,readOnly:e.state.readOnly,tabSize:e.state.tabSize,selection:e.state.selection,selectionAsSingle:e.state.selection.asSingle().main,ranges:e.state.selection.ranges,selectionCode:e.state.sliceDoc(e.state.selection.main.from,e.state.selection.main.to),selections:e.state.selection.ranges.map(t=>e.state.sliceDoc(t.from,t.to)),selectedText:e.state.selection.ranges.some(t=>!t.empty)});class PMt{constructor(t,n){this.timeLeftMS=void 0,this.timeoutMS=void 0,this.isCancelled=!1,this.isTimeExhausted=!1,this.callbacks=[],this.timeLeftMS=n,this.timeoutMS=n,this.callbacks.push(t)}tick(){if(!this.isCancelled&&!this.isTimeExhausted&&(this.timeLeftMS--,this.timeLeftMS<=0)){this.isTimeExhausted=!0;var t=this.callbacks.slice();this.callbacks.length=0,t.forEach(n=>{try{n()}catch(i){console.error("TimeoutLatch callback error:",i)}})}}cancel(){this.isCancelled=!0,this.callbacks.length=0}reset(){this.timeLeftMS=this.timeoutMS,this.isCancelled=!1,this.isTimeExhausted=!1}get isDone(){return this.isCancelled||this.isTimeExhausted}}class tte{constructor(){this.interval=null,this.latches=new Set}add(t){this.latches.add(t),this.start()}remove(t){this.latches.delete(t),this.latches.size===0&&this.stop()}start(){this.interval===null&&(this.interval=setInterval(()=>{this.latches.forEach(t=>{t.tick(),t.isDone&&this.remove(t)})},1))}stop(){this.interval!==null&&(clearInterval(this.interval),this.interval=null)}}var Z5=null,DMt=()=>typeof window>"u"?new tte:(Z5||(Z5=new tte),Z5),MMt=Ft.theme({"& .cm-scroller":{height:"100% !important"}}),nte=null,J5=null;function LMt(e,t,n,i,r,s){if(!e&&!t&&!n&&!i&&!r&&!s)return null;var a=JSON.stringify({height:e,minHeight:t,maxHeight:n,width:i,minWidth:r,maxWidth:s});return a===nte||(nte=a,J5=Ft.theme({"&":{height:e,minHeight:t,maxHeight:n,width:i,minWidth:r,maxWidth:s}})),J5}var ite=Jd.define(),$Mt=200,FMt=[];function BMt(e){var t=e.value,n=e.selection,i=e.onChange,r=e.onStatistics,s=e.onCreateEditor,a=e.onUpdate,l=e.extensions,c=l===void 0?FMt:l,u=e.autoFocus,d=e.theme,f=d===void 0?"light":d,h=e.height,m=h===void 0?null:h,g=e.minHeight,b=g===void 0?null:g,v=e.maxHeight,y=v===void 0?null:v,x=e.width,O=x===void 0?null:x,w=e.minWidth,k=w===void 0?null:w,S=e.maxWidth,E=S===void 0?null:S,C=e.placeholder,N=C===void 0?"":C,_=e.editable,j=_===void 0?!0:_,A=e.readOnly,F=A===void 0?!1:A,T=e.indentWithTab,P=T===void 0?!0:T,R=e.basicSetup,L=R===void 0?!0:R,M=e.root,U=e.initialState,I=p.useState(),H=I[0],K=I[1],Q=p.useState(),q=Q[0],B=Q[1],ee=p.useState(),le=ee[0],se=ee[1],re=p.useState(()=>({current:null}))[0],ge=p.useState(()=>({current:null}))[0],W=LMt(m,b,y,O,k,E),X=Ft.updateListener.of(Oe=>{if(Oe.docChanged&&typeof i=="function"&&!Oe.transactions.some(Le=>Le.annotation(ite))){re.current?re.current.reset():(re.current=new PMt(()=>{if(ge.current){var Le=ge.current;ge.current=null,Le()}re.current=null},$Mt),DMt().add(re.current));var ke=Oe.state.doc,st=ke.toString();i(st,Oe)}r&&r(IMt(Oe))}),ae=RMt({theme:f,editable:j,readOnly:F,placeholder:N,indentWithTab:P,basicSetup:L}),ue=[X,...W?[W]:[],MMt,...ae];return a&&typeof a=="function"&&ue.push(Ft.updateListener.of(a)),ue=ue.concat(c),p.useLayoutEffect(()=>{if(H&&!le){var Oe={doc:t,selection:n,extensions:ue},ke=U?Ti.fromJSON(U.json,Oe,U.fields):Ti.create(Oe);if(se(ke),!q){var st=new Ft({state:ke,parent:H,root:M});B(st),s&&s(st,ke)}}return()=>{q&&(se(void 0),B(void 0))}},[H,le]),p.useEffect(()=>{e.container&&K(e.container)},[e.container]),p.useEffect(()=>()=>{q&&(q.destroy(),B(void 0)),re.current&&(re.current.cancel(),re.current=null)},[q]),p.useEffect(()=>{u&&q&&q.focus()},[u,q]),p.useEffect(()=>{q&&q.dispatch({effects:Fn.reconfigure.of(ue)})},[f,c,m,b,y,O,k,E,N,j,F,P,L,i,a]),p.useEffect(()=>{if(t!==void 0){var Oe=q?q.state.doc.toString():"";if(q&&t!==Oe){var ke=re.current&&!re.current.isDone,st=()=>{q&&t!==q.state.doc.toString()&&q.dispatch({changes:{from:0,to:q.state.doc.toString().length,insert:t||""},annotations:[ite.of(!0)]})};ke?ge.current=st:st()}}},[t,q]),{state:le,setState:se,view:q,setView:B,container:H,setContainer:K}}var UMt=["className","value","selection","extensions","onChange","onStatistics","onCreateEditor","onUpdate","autoFocus","theme","height","minHeight","maxHeight","width","minWidth","maxWidth","basicSetup","placeholder","indentWithTab","editable","readOnly","root","initialState"],nje=p.forwardRef((e,t)=>{var n=e.className,i=e.value,r=i===void 0?"":i,s=e.selection,a=e.extensions,l=a===void 0?[]:a,c=e.onChange,u=e.onStatistics,d=e.onCreateEditor,f=e.onUpdate,h=e.autoFocus,m=e.theme,g=m===void 0?"light":m,b=e.height,v=e.minHeight,y=e.maxHeight,x=e.width,O=e.minWidth,w=e.maxWidth,k=e.basicSetup,S=e.placeholder,E=e.indentWithTab,C=e.editable,N=e.readOnly,_=e.root,j=e.initialState,A=bPt(e,UMt),F=p.useRef(null),T=BMt({root:_,value:r,autoFocus:h,theme:g,height:b,minHeight:v,maxHeight:y,width:x,minWidth:O,maxWidth:w,basicSetup:k,placeholder:S,indentWithTab:E,editable:C,readOnly:N,selection:s,onChange:c,onStatistics:u,onCreateEditor:d,onUpdate:f,extensions:l,initialState:j}),P=T.state,R=T.view,L=T.container,M=T.setContainer;p.useImperativeHandle(t,()=>({editor:F.current,state:P,view:R}),[F,L,P,R]);var U=p.useCallback(H=>{F.current=H,M(H)},[M]);if(typeof r!="string")throw new Error("value must be typeof string but got "+typeof r);var I=typeof g=="string"?"cm-theme-"+g:"cm-theme";return o.jsx("div",f8({ref:U,className:""+I+(n?" "+n:"")},A))});nje.displayName="CodeMirror";function ije(e){const t=e.toLowerCase(),n=t.split("/").pop()??t,i=n.includes(".")?n.split(".").pop():"";return n==="dockerfile"||n.startsWith("dockerfile.")||n.endsWith(".dockerfile")?[fQ.define(gPt)]:i==="py"||i==="pyi"?[CIt()]:["ts","tsx","mts","cts"].includes(i??"")?[J$({typescript:!0,jsx:i==="tsx"})]:["js","jsx","mjs","cjs"].includes(i??"")?[J$({jsx:i==="jsx"})]:i==="json"||i==="jsonc"?[q_t()]:i==="yaml"||i==="yml"?[nPt()]:["md","markdown"].includes(i??"")?[aRt()]:[]}function zE({value:e,path:t,onChange:n,readOnly:i=!1,theme:r="light",lineNumberStart:s=1,height:a="100%",minHeight:l,maxHeight:c}){const u=p.useMemo(()=>[...ije(t),...s===1?[]:[X2e({formatNumber:d=>String(d+s-1)})]],[s,t]);return o.jsx(nje,{value:e,height:a,minHeight:l,maxHeight:c,theme:r,extensions:u,editable:!i,onChange:n,basicSetup:{lineNumbers:s===1,foldGutter:!0,highlightActiveLine:!0,highlightActiveLineGutter:!0,autocompletion:!1}})}const rje=Object.freeze(Object.defineProperty({__proto__:null,default:zE,languageFor:ije},Symbol.toStringTag,{value:"Module"}));function QMt(e){var s;const t=e.split(/\r?\n/);if(((s=t[0])==null?void 0:s.trim())!=="---")return{body:e,frontmatter:[]};const n=t.findIndex((a,l)=>l>0&&a.trim()==="---");if(n<0)return{body:e,frontmatter:[]};const i=vTe(t.slice(1,n).join(` +`,{label:"if",detail:"block",type:"keyword"}),hs("if ${}:\n ${}\nelse:\n ${}",{label:"if",detail:"/ else block",type:"keyword"}),hs("class ${name}:\n def __init__(self, ${params}):\n ${}",{label:"class",detail:"definition",type:"keyword"}),hs("import ${module}",{label:"import",detail:"statement",type:"keyword"}),hs("from ${module} import ${names}",{label:"from",detail:"import",type:"keyword"})],QIt=L2e(cNe,wQ(BIt.concat(UIt)));function G5(e){let{node:t,pos:n}=e,i=e.lineIndent(n,-1),r=null;for(;;){let s=t.childBefore(n);if(s)if(s.name=="Comment")n=s.from;else if(s.name=="Body"||s.name=="MatchBody")e.baseIndentFor(s)+e.unit<=i&&(r=s),t=s;else if(s.name=="MatchClause")t=s;else if(s.type.is("Statement"))t=s;else break;else break}return r}function X5(e,t){let n=e.baseIndentFor(t),i=e.lineAt(e.pos,-1),r=i.from+i.text.length;return/^\s*($|#)/.test(i.text)&&e.node.ton?null:n+e.unit}const Y5=Nh.define({name:"python",parser:LIt.configure({props:[Vh.add({Body:e=>{var t;let n=/^\s*(#|$)/.test(e.textAfter)&&G5(e)||e.node;return(t=X5(e,n))!==null&&t!==void 0?t:e.continue()},MatchBody:e=>{var t;let n=G5(e);return(t=X5(e,n||e.node))!==null&&t!==void 0?t:e.continue()},IfStatement:e=>/^\s*(else:|elif )/.test(e.textAfter)?e.baseIndent:e.continue(),"ForStatement WhileStatement":e=>/^\s*else:/.test(e.textAfter)?e.baseIndent:e.continue(),TryStatement:e=>/^\s*(except[ :]|finally:|else:)/.test(e.textAfter)?e.baseIndent:e.continue(),MatchStatement:e=>/^\s*case /.test(e.textAfter)?e.baseIndent+e.unit:e.continue(),"TupleExpression ComprehensionExpression ParamList ArgList ParenthesizedExpression":yv({closing:")"}),"DictionaryExpression DictionaryComprehensionExpression SetExpression SetComprehensionExpression":yv({closing:"}"}),"ArrayExpression ArrayComprehensionExpression":yv({closing:"]"}),MemberExpression:e=>e.baseIndent+e.unit,"String FormatString":()=>null,Script:e=>{var t;let n=G5(e);return(t=n&&X5(e,n))!==null&&t!==void 0?t:e.continue()}}),Hh.add({"ArrayExpression DictionaryExpression SetExpression TupleExpression":UE,Body:(e,t)=>({from:e.from+1,to:e.to-(e.to==t.doc.length?0:1)}),"String FormatString":(e,t)=>({from:t.doc.lineAt(e.from).to,to:e.to})})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"'''",'"""'],stringPrefixes:["f","fr","rf","r","u","b","br","rb","F","FR","RF","R","U","B","BR","RB"]},commentTokens:{line:"#"},indentOnInput:/^\s*([\}\]\)]|else:|elif |except |finally:|case\s+[^:]*:?)$/}});function zIt(){return new Pm(Y5,[Y5.data.of({autocomplete:FIt}),Y5.data.of({autocomplete:QIt})])}const dy=63,Bee=64,VIt=1,HIt=2,uNe=3,qIt=4,dNe=5,WIt=6,KIt=7,fNe=65,GIt=66,XIt=8,YIt=9,ZIt=10,JIt=11,ePt=12,hNe=13,tPt=19,nPt=20,iPt=29,rPt=33,sPt=34,aPt=47,oPt=0,zQ=1,h8=2,wk=3,p8=4;class Dg{constructor(t,n,i){this.parent=t,this.depth=n,this.type=i,this.hash=(t?t.hash+t.hash<<8:0)+n+(n<<4)+i}}Dg.top=new Dg(null,-1,oPt);function XO(e,t){for(let n=0,i=t-e.pos-1;;i--,n++){let r=e.peek(i);if(Rh(r)||r==-1)return n}}function m8(e){return e==32||e==9}function Rh(e){return e==10||e==13}function pNe(e){return m8(e)||Rh(e)}function Gg(e){return e<0||pNe(e)}const lPt=new DI({start:Dg.top,reduce(e,t){return e.type==wk&&(t==nPt||t==sPt)?e.parent:e},shift(e,t,n,i){if(t==uNe)return new Dg(e,XO(i,i.pos),zQ);if(t==fNe||t==dNe)return new Dg(e,XO(i,i.pos),h8);if(t==dy)return e.parent;if(t==tPt||t==rPt)return new Dg(e,0,wk);if(t==hNe&&e.type==p8)return e.parent;if(t==aPt){let r=/[1-9]/.exec(i.read(i.pos,n.pos));if(r)return new Dg(e,e.depth+ +r[0],p8)}return e},hash(e){return e.hash}});function bx(e,t,n=0){return e.peek(n)==t&&e.peek(n+1)==t&&e.peek(n+2)==t&&Gg(e.peek(n+3))}const cPt=new Hs((e,t)=>{if(e.next==-1&&t.canShift(Bee))return e.acceptToken(Bee);let n=e.peek(-1);if((Rh(n)||n<0)&&t.context.type!=wk){if(bx(e,45))if(t.canShift(dy))e.acceptToken(dy);else return e.acceptToken(VIt,3);if(bx(e,46))if(t.canShift(dy))e.acceptToken(dy);else return e.acceptToken(HIt,3);let i=0;for(;e.next==32;)i++,e.advance();(i{if(t.context.type==wk){e.next==63&&(e.advance(),Gg(e.next)&&e.acceptToken(KIt));return}if(e.next==45)e.advance(),Gg(e.next)&&e.acceptToken(t.context.type==zQ&&t.context.depth==XO(e,e.pos-1)?qIt:uNe);else if(e.next==63)e.advance(),Gg(e.next)&&e.acceptToken(t.context.type==h8&&t.context.depth==XO(e,e.pos-1)?WIt:dNe);else{let n=e.pos;for(;;)if(m8(e.next)){if(e.pos==n)return;e.advance()}else if(e.next==33)mNe(e);else if(e.next==38)g8(e);else if(e.next==42){g8(e);break}else if(e.next==39||e.next==34){if(VQ(e,!0))break;return}else if(e.next==91||e.next==123){if(!fPt(e))return;break}else{gNe(e,!0,!1,0);break}for(;m8(e.next);)e.advance();if(e.next==58){if(e.pos==n&&t.canShift(iPt))return;let i=e.peek(1);Gg(i)&&e.acceptTokenTo(t.context.type==h8&&t.context.depth==XO(e,n)?GIt:fNe,n)}}},{contextual:!0});function dPt(e){return e>32&&e<127&&e!=34&&e!=37&&e!=44&&e!=60&&e!=62&&e!=92&&e!=94&&e!=96&&e!=123&&e!=124&&e!=125}function Uee(e){return e>=48&&e<=57||e>=97&&e<=102||e>=65&&e<=70}function Qee(e,t){return e.next==37?(e.advance(),Uee(e.next)&&e.advance(),Uee(e.next)&&e.advance(),!0):dPt(e.next)||t&&e.next==44?(e.advance(),!0):!1}function mNe(e){if(e.advance(),e.next==60){for(e.advance();;)if(!Qee(e,!0)){e.next==62&&e.advance();break}}else for(;Qee(e,!1););}function g8(e){for(e.advance();!Gg(e.next)&&sj(e.next)!="f";)e.advance()}function VQ(e,t){let n=e.next,i=!1,r=e.pos;for(e.advance();;){let s=e.next;if(s<0)break;if(e.advance(),s==n)if(s==39)if(e.next==39)e.advance();else break;else break;else if(s==92&&n==34)e.next>=0&&e.advance();else if(Rh(s)){if(t)return!1;i=!0}else if(t&&e.pos>=r+1024)return!1}return!i}function fPt(e){for(let t=[],n=e.pos+1024;;)if(e.next==91||e.next==123)t.push(e.next),e.advance();else if(e.next==39||e.next==34){if(!VQ(e,!0))return!1}else if(e.next==93||e.next==125){if(t[t.length-1]!=e.next-2)return!1;if(t.pop(),e.advance(),!t.length)return!0}else{if(e.next<0||e.pos>n||Rh(e.next))return!1;e.advance()}}const hPt="iiisiiissisfissssssssssssisssiiissssssssssssssssssssssssssfsfssissssssssssssssssssssssssssfif";function sj(e){return e<33?"u":e>125?"s":hPt[e-33]}function Z5(e,t){let n=sj(e);return n!="u"&&!(t&&n=="f")}function gNe(e,t,n,i){if(sj(e.next)=="s"||(e.next==63||e.next==58||e.next==45)&&Z5(e.peek(1),n))e.advance();else return!1;let r=e.pos;for(;;){let s=e.next,a=0,l=i+1;for(;pNe(s);){if(Rh(s)){if(t)return!1;l=0}else l++;s=e.peek(++a)}if(!(s>=0&&(s==58?Z5(e.peek(a+1),n):s==35?e.peek(a-1)!=32:Z5(s,n)))||!n&&l<=i||l==0&&!n&&(bx(e,45,a)||bx(e,46,a)))break;if(t&&sj(s)=="f")return!1;for(let u=a;u>=0;u--)e.advance();if(t&&e.pos>r+1024)return!1}return!0}const pPt=new Hs((e,t)=>{if(e.next==33)mNe(e),e.acceptToken(ePt);else if(e.next==38||e.next==42){let n=e.next==38?ZIt:JIt;g8(e),e.acceptToken(n)}else e.next==39||e.next==34?(VQ(e,!1),e.acceptToken(YIt)):gNe(e,!1,t.context.type==wk,t.context.depth)&&e.acceptToken(XIt)}),mPt=new Hs((e,t)=>{let n=t.context.type==p8?t.context.depth:-1,i=e.pos;e:for(;;){let r=0,s=e.next;for(;s==32;)s=e.peek(++r);if(!r&&(bx(e,45,r)||bx(e,46,r))||!Rh(s)&&(n<0&&(n=Math.max(t.context.depth+1,r)),rYAN>Y",stateData:";S~O!fOS!gOS^OS~OP_OQbORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!V[O!cTO~O`cO~P]OVkOWROXROYeOZfO[dOcPOmhOqQO~OboO~P!bOVtOWROXROYeOZfO[dOcPOmrOqQO~OpwO~P#WORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!cTO~OSvP!avP!bvP~P#|OWROXROYeOZfO[dOcPOqQO~OmzO~P%OOm!OOUzP!azP!bzP!dzP~P#|O^!SO!b!QO!f!TO!g!RO~ORSOTUOWROXROcPOqQO!PVO!cTO~OY!UOP!QXQ!QX!V!QX!`!QXS!QX!a!QX!b!QXU!QXm!QX!d!QX~P&aO[!WOP!SXQ!SX!V!SX!`!SXS!SX!a!SX!b!SXU!SXm!SX!d!SX~P&aO^!ZO!W![O!b!YO!f!]O!g!YO~OP!_O!V[OQaX!`aX~OPaXQaX!VaX!`aX~P#|OP!bOQ!cO!V[O~OP_O!V[O~P#|OWROXROY!fOcPOqQObfXmfXofXpfX~OWROXRO[!hOcPOqQObhXmhXohXphX~ObeXmlXoeX~ObkXokX~P%OOm!kO~Om!lObnPonP~P%OOb!pOo!oO~Ob!pO~P!bOm!sOosXpsX~OosXpsX~P%OOm!uOotPptP~P%OOo!xOp!yO~Op!yO~P#WOS!|O!a#OO!b#OO~OUyX!ayX!byX!dyX~P#|Om#QO~OU#SO!a#UO!b#UO!d#RO~Om#WOUzX!azX!bzX!dzX~O]#XO~O!b#XO!g#YO~O^#ZO!b#XO!g#YO~OP!RXQ!RX!V!RX!`!RXS!RX!a!RX!b!RXU!RXm!RX!d!RX~P&aOP!TXQ!TX!V!TX!`!TXS!TX!a!TX!b!TXU!TXm!TX!d!TX~P&aO!b#^O!g#^O~O^#_O!b#^O!f#`O!g#^O~O^#_O!W#aO!b#^O!g#^O~OPaaQaa!Vaa!`aa~P#|OP#cO!V[OQ!XX!`!XX~OP!XXQ!XX!V!XX!`!XX~P#|OP_O!V[OQ!_X!`!_X~P#|OWROXROcPOqQObgXmgXogXpgX~OWROXROcPOqQObiXmiXoiXpiX~Obkaoka~P%OObnXonX~P%OOm#kO~Ob#lOo!oO~Oosapsa~P%OOotXptX~P%OOm#pO~Oo!xOp#qO~OSwP!awP!bwP~P#|OS!|O!a#vO!b#vO~OUya!aya!bya!dya~P#|Om#xO~P%OOm#{OU}P!a}P!b}P!d}P~P#|OU#SO!a$OO!b$OO!d#RO~O]$QO~O!b$QO!g$RO~O!b$SO!g$SO~O^$TO!b$SO!g$SO~O^$TO!b$SO!f$UO!g$SO~OP!XaQ!Xa!V!Xa!`!Xa~P#|Obnaona~P%OOotapta~P%OOo!xO~OU|X!a|X!b|X!d|X~P#|Om$ZO~Om$]OU}X!a}X!b}X!d}X~O]$^O~O!b$_O!g$_O~O^$`O!b$_O!g$_O~OU|a!a|a!b|a!d|a~P#|O!b$cO!g$cO~O",goto:",]!mPPPPPPPPPPPPPPPPP!nPP!v#v#|$`#|$c$f$j$nP%VPPP!v%Y%^%a%{&O%a&R&U&X&_&b%aP&e&{&e'O'RPP']'a'g'm's'y(XPPPPPPPP(_)e*X+c,VUaObcR#e!c!{ROPQSTUXY_bcdehknrtvz!O!U!W!_!b!c!f!h!k!l!s!u!|#Q#R#S#W#c#k#p#x#{$Z$]QmPR!qnqfPQThknrtv!k!l!s!u#R#k#pR!gdR!ieTlPnTjPnSiPnSqQvQ{TQ!mkQ!trQ!vtR#y#RR!nkTsQvR!wt!RWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]RySR#t!|R|TR|UQ!PUR#|#SR#z#RR#z#SyZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]R!VXR!XYa]O^abc!a!c!eT!da!eQnPR!rnQvQR!{vQ!}yR#u!}Q#T|R#}#TW^Obc!cS!^^!aT!aa!eQ!eaR#f!eW`Obc!cQxSS}U#SQ!`_Q#PzQ#V!OQ#b!_Q#d!bQ#s!|Q#w#QQ$P#WQ$V#cQ$Y#xQ$[#{Q$a$ZR$b$]xZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]Q!VXQ!XYQ#[!UR#]!W!QWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]pfPQThknrtv!k!l!s!u#R#k#pQ!gdQ!ieQ#g!fR#h!hSgPn^pQTkrtv#RQ!jhQ#i!kQ#j!lQ#n!sQ#o!uQ$W#kR$X#pQuQR!zv",nodeNames:"⚠ DirectiveEnd DocEnd - - ? ? ? Literal QuotedLiteral Anchor Alias Tag BlockLiteralContent Comment Stream BOM Document ] [ FlowSequence Item Tagged Anchored Anchored Tagged FlowMapping Pair Key : Pair , } { FlowMapping Pair Pair BlockSequence Item Item BlockMapping Pair Pair Key Pair Pair BlockLiteral BlockLiteralHeader Tagged Anchored Anchored Tagged Directive DirectiveName DirectiveContent Document",maxTerm:74,context:lPt,nodeProps:[["isolate",-3,8,9,14,""],["openedBy",18,"[",32,"{"],["closedBy",19,"]",33,"}"]],propSources:[gPt],skippedNodes:[0],repeatNodeCount:6,tokenData:"-Y~RnOX#PXY$QYZ$]Z]#P]^$]^p#Ppq$Qqs#Pst$btu#Puv$yv|#P|}&e}![#P![!]'O!]!`#P!`!a'i!a!}#P!}#O*g#O#P#P#P#Q+Q#Q#o#P#o#p+k#p#q'i#q#r,U#r;'S#P;'S;=`#z<%l?HT#P?HT?HU,o?HUO#PQ#UU!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PQ#kTOY#PZs#Pt;'S#P;'S;=`#z<%lO#PQ#}P;=`<%l#P~$VQ!f~XY$Qpq$Q~$bO!g~~$gS^~OY$bZ;'S$b;'S;=`$s<%lO$b~$vP;=`<%l$bR%OX!WQOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR%rX!WQ!VPOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR&bP;=`<%l%kR&lUoP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'VUmP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'p[!PP!WQOY#PZp#Ppq#hq{#P{|(f|}#P}!O(f!O!R#P!R![)p![;'S#P;'S;=`#z<%lO#PR(mW!PP!WQOY#PZp#Ppq#hq!R#P!R![)V![;'S#P;'S;=`#z<%lO#PR)^U!PP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR)wY!PP!WQOY#PZp#Ppq#hq{#P{|)V|}#P}!O)V!O;'S#P;'S;=`#z<%lO#PR*nUcP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+XUbP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+rUqP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,]UpP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,vU`P!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#P",tokenizers:[cPt,uPt,pPt,mPt,0,1],topRules:{Stream:[0,15]},tokenPrec:0}),yPt=Nh.define({name:"yaml",parser:bPt.configure({props:[Vh.add({Stream:e=>{for(let t=e.node.resolve(e.pos,-1);t&&t.to>=e.pos;t=t.parent){if(t.name=="BlockLiteralContent"&&t.frome.pos)return null}}return null},FlowMapping:yv({closing:"}"}),FlowSequence:yv({closing:"]"})}),Hh.add({"FlowMapping FlowSequence":UE,"Item Pair BlockLiteral":(e,t)=>({from:t.doc.lineAt(e.from).to,to:e.to})})]}),languageData:{commentTokens:{line:"#"},indentOnInput:/^\s*[\]\}]$/}});function vPt(){return new Pm(yPt)}function xPt(e){bNe(e,"start");var t={},n=e.languageData||{},i=!1;for(var r in e)if(r!=n&&e.hasOwnProperty(r))for(var s=t[r]=[],a=e[r],l=0;l2&&a.token&&typeof a.token!="string"){n.pending=[];for(var u=2;u-1)return null;var r=n.indent.length-1,s=e[n.state];e:for(;;){for(var a=0;a{let{state:t}=e,n=t.doc.lineAt(t.selection.main.from),i=qQ(e.state,n.from);return i.line?MPt(e):i.block?$Pt(e):!1};function HQ(e,t){return({state:n,dispatch:i})=>{if(n.readOnly)return!1;let r=e(t,n);return r?(i(n.update(r)),!0):!1}}const MPt=HQ(UPt,0),LPt=HQ(ONe,0),$Pt=HQ((e,t)=>ONe(e,t,BPt(t)),0);function qQ(e,t){let n=e.languageDataAt("commentTokens",t,1);return n.length?n[0]:{}}const lw=50;function FPt(e,{open:t,close:n},i,r){let s=e.sliceDoc(i-lw,i),a=e.sliceDoc(r,r+lw),l=/\s*$/.exec(s)[0].length,c=/^\s*/.exec(a)[0].length,u=s.length-l;if(s.slice(u-t.length,u)==t&&a.slice(c,c+n.length)==n)return{open:{pos:i-l,margin:l&&1},close:{pos:r+c,margin:c&&1}};let d,f;r-i<=2*lw?d=f=e.sliceDoc(i,r):(d=e.sliceDoc(i,i+lw),f=e.sliceDoc(r-lw,r));let h=/^\s*/.exec(d)[0].length,m=/\s*$/.exec(f)[0].length,g=f.length-m-n.length;return d.slice(h,h+t.length)==t&&f.slice(g,g+n.length)==n?{open:{pos:i+h+t.length,margin:/\s/.test(d.charAt(h+t.length))?1:0},close:{pos:r-m-n.length,margin:/\s/.test(f.charAt(g-1))?1:0}}:null}function BPt(e){let t=[];for(let n of e.selection.ranges){let i=e.doc.lineAt(n.from),r=n.to<=i.to?i:e.doc.lineAt(n.to);r.from>i.from&&r.from==n.to&&(r=n.to==i.to+1?i:e.doc.lineAt(n.to-1));let s=t.length-1;s>=0&&t[s].to>i.from?t[s].to=r.to:t.push({from:i.from+/^\s*/.exec(i.text)[0].length,to:r.to})}return t}function ONe(e,t,n=t.selection.ranges){let i=n.map(s=>qQ(t,s.from).block);if(!i.every(s=>s))return null;let r=n.map((s,a)=>FPt(t,i[a],s.from,s.to));if(e!=2&&!r.every(s=>s))return{changes:t.changes(n.map((s,a)=>r[a]?[]:[{from:s.from,insert:i[a].open+" "},{from:s.to,insert:" "+i[a].close}]))};if(e!=1&&r.some(s=>s)){let s=[];for(let a=0,l;ar&&(s==a||a>f.from)){r=f.from;let h=/^\s*/.exec(f.text)[0].length,m=h==f.length,g=f.text.slice(h,h+u.length)==u?h:-1;hs.comment<0&&(!s.empty||s.single))){let s=[];for(let{line:l,token:c,indent:u,empty:d,single:f}of i)(f||!d)&&s.push({from:l.from+u,insert:c+" "});let a=t.changes(s);return{changes:a,selection:t.selection.map(a,1)}}else if(e!=1&&i.some(s=>s.comment>=0)){let s=[];for(let{line:a,comment:l,token:c}of i)if(l>=0){let u=a.from+l,d=u+c.length;a.text[d-a.from]==" "&&d++,s.push({from:u,to:d})}return{changes:s}}return null}const y8=tf.define(),QPt=tf.define(),zPt=Jt.define(),SNe=Jt.define({combine(e){return nf(e,{minDepth:100,newGroupDelay:500,joinToEvent:(t,n)=>n},{minDepth:Math.max,newGroupDelay:Math.min,joinToEvent:(t,n)=>(i,r)=>t(i,r)||n(i,r)})}}),kNe=so.define({create(){return Rd.empty},update(e,t){let n=t.state.facet(SNe),i=t.annotation(y8);if(i){let c=gl.fromTransaction(t,i.selection),u=i.side,d=u==0?e.undone:e.done;return c?d=aj(d,d.length,n.minDepth,c):d=TNe(d,t.startState.selection),new Rd(u==0?i.rest:d,u==0?d:i.rest)}let r=t.annotation(QPt);if((r=="full"||r=="before")&&(e=e.isolate()),t.annotation(ea.addToHistory)===!1)return t.changes.empty?e:e.addMapping(t.changes.desc);let s=gl.fromTransaction(t),a=t.annotation(ea.time),l=t.annotation(ea.userEvent);return s?e=e.addChanges(s,a,l,n,t):t.selection&&(e=e.addSelection(t.startState.selection,a,l,n.newGroupDelay)),(r=="full"||r=="after")&&(e=e.isolate()),e},toJSON(e){return{done:e.done.map(t=>t.toJSON()),undone:e.undone.map(t=>t.toJSON())}},fromJSON(e){return new Rd(e.done.map(gl.fromJSON),e.undone.map(gl.fromJSON))}});function VPt(e={}){return[kNe,SNe.of(e),Qt.domEventHandlers({beforeinput(t,n){let i=t.inputType=="historyUndo"?ENe:t.inputType=="historyRedo"?v8:null;return i?(t.preventDefault(),i(n)):!1}})]}function FI(e,t){return function({state:n,dispatch:i}){if(!t&&n.readOnly)return!1;let r=n.field(kNe,!1);if(!r)return!1;let s=r.pop(e,n,t);return s?(i(s),!0):!1}}const ENe=FI(0,!1),v8=FI(1,!1),HPt=FI(0,!0),qPt=FI(1,!0);class gl{constructor(t,n,i,r,s){this.changes=t,this.effects=n,this.mapped=i,this.startSelection=r,this.selectionsAfter=s}setSelAfter(t){return new gl(this.changes,this.effects,this.mapped,this.startSelection,t)}toJSON(){var t,n,i;return{changes:(t=this.changes)===null||t===void 0?void 0:t.toJSON(),mapped:(n=this.mapped)===null||n===void 0?void 0:n.toJSON(),startSelection:(i=this.startSelection)===null||i===void 0?void 0:i.toJSON(),selectionsAfter:this.selectionsAfter.map(r=>r.toJSON())}}static fromJSON(t){return new gl(t.changes&&ga.fromJSON(t.changes),[],t.mapped&&Fd.fromJSON(t.mapped),t.startSelection&&rt.fromJSON(t.startSelection),t.selectionsAfter.map(rt.fromJSON))}static fromTransaction(t,n){let i=Yc;for(let r of t.startState.facet(zPt)){let s=r(t);s.length&&(i=i.concat(s))}return!i.length&&t.changes.empty?null:new gl(t.changes.invert(t.startState.doc),i,void 0,n||t.startState.selection,Yc)}static selection(t){return new gl(void 0,Yc,void 0,void 0,t)}}function aj(e,t,n,i){let r=t+1>n+20?t-n-1:0,s=e.slice(r,t);return s.push(i),s}function WPt(e,t){let n=[],i=!1;return e.iterChangedRanges((r,s)=>n.push(r,s)),t.iterChangedRanges((r,s,a,l)=>{for(let c=0;c=u&&a<=d&&(i=!0)}}),i}function KPt(e,t){return e.ranges.length==t.ranges.length&&e.ranges.filter((n,i)=>n.empty!=t.ranges[i].empty).length===0}function CNe(e,t){return e.length?t.length?e.concat(t):e:t}const Yc=[],GPt=200;function TNe(e,t){if(e.length){let n=e[e.length-1],i=n.selectionsAfter.slice(Math.max(0,n.selectionsAfter.length-GPt));return i.length&&i[i.length-1].eq(t)?e:(i.push(t),aj(e,e.length-1,1e9,n.setSelAfter(i)))}else return[gl.selection([t])]}function XPt(e){let t=e[e.length-1],n=e.slice();return n[e.length-1]=t.setSelAfter(t.selectionsAfter.slice(0,t.selectionsAfter.length-1)),n}function J5(e,t){if(!e.length)return e;let n=e.length,i=Yc;for(;n;){let r=YPt(e[n-1],t,i);if(r.changes&&!r.changes.empty||r.effects.length){let s=e.slice(0,n);return s[n-1]=r,s}else t=r.mapped,n--,i=r.selectionsAfter}return i.length?[gl.selection(i)]:Yc}function YPt(e,t,n){let i=CNe(e.selectionsAfter.length?e.selectionsAfter.map(l=>l.map(t)):Yc,n);if(!e.changes)return gl.selection(i);let r=e.changes.map(t),s=t.mapDesc(e.changes,!0),a=e.mapped?e.mapped.composeDesc(s):s;return new gl(r,Qn.mapEffects(e.effects,t),a,e.startSelection.map(s),i)}const ZPt=/^(input\.type|delete)($|\.)/;class Rd{constructor(t,n,i=0,r=void 0){this.done=t,this.undone=n,this.prevTime=i,this.prevUserEvent=r}isolate(){return this.prevTime?new Rd(this.done,this.undone):this}addChanges(t,n,i,r,s){let a=this.done,l=a[a.length-1];return l&&l.changes&&!l.changes.empty&&t.changes&&(!i||ZPt.test(i))&&(!l.selectionsAfter.length&&n-this.prevTime0&&n-this.prevTimen.empty?e.moveByChar(n,t):BI(n,t))}function Ao(e){return e.textDirectionAt(e.state.selection.main.head)==Pr.LTR}const _Ne=e=>ANe(e,!Ao(e)),NNe=e=>ANe(e,Ao(e));function jNe(e,t){return ed(e,n=>n.empty?e.moveByGroup(n,t):BI(n,t))}const eDt=e=>jNe(e,!Ao(e)),tDt=e=>jNe(e,Ao(e));function nDt(e,t,n){if(t.type.prop(n))return!0;let i=t.to-t.from;return i&&(i>2||/[^\s,.;:]/.test(e.sliceDoc(t.from,t.to)))||t.firstChild}function UI(e,t,n){let i=Nr(e).resolveInner(t.head),r=n?Un.closedBy:Un.openedBy;for(let c=t.head;;){let u=n?i.childAfter(c):i.childBefore(c);if(!u)break;nDt(e,u,r)?i=u:c=n?u.to:u.from}let s=i.type.prop(r),a,l;return s&&(a=n?jd(e,i.from,1):jd(e,i.to,-1))&&a.matched?l=n?a.end.to:a.end.from:l=n?i.to:i.from,rt.cursor(l,n?-1:1)}const iDt=e=>ed(e,t=>UI(e.state,t,!Ao(e))),rDt=e=>ed(e,t=>UI(e.state,t,Ao(e)));function RNe(e,t){return ed(e,n=>{if(!n.empty)return BI(n,t);let i=e.moveVertically(n,t);return i.head!=n.head?i:e.moveToLineBoundary(n,t)})}const INe=e=>RNe(e,!1),PNe=e=>RNe(e,!0);function DNe(e){let t=e.scrollDOM.clientHeighta.empty?e.moveVertically(a,t,n.height):BI(a,t));if(r.eq(i.selection))return!1;let s;if(n.selfScroll){let a=e.coordsAtPos(i.selection.main.head),l=e.scrollDOM.getBoundingClientRect(),c=l.top+n.marginTop,u=l.bottom-n.marginBottom;a&&a.top>c&&a.bottomMNe(e,!1),x8=e=>MNe(e,!0);function Gm(e,t,n){let i=e.lineBlockAt(t.head),r=e.moveToLineBoundary(t,n);if(r.head==t.head&&r.head!=(n?i.to:i.from)&&(r=e.moveToLineBoundary(t,n,!1)),!n&&r.head==i.from&&i.length){let s=/^\s*/.exec(e.state.sliceDoc(i.from,Math.min(i.from+100,i.to)))[0].length;s&&t.head!=i.from+s&&(r=rt.cursor(i.from+s))}return r}const sDt=e=>ed(e,t=>Gm(e,t,!0)),aDt=e=>ed(e,t=>Gm(e,t,!1)),oDt=e=>ed(e,t=>Gm(e,t,!Ao(e))),lDt=e=>ed(e,t=>Gm(e,t,Ao(e))),cDt=e=>ed(e,t=>rt.cursor(e.lineBlockAt(t.head).from,1)),uDt=e=>ed(e,t=>rt.cursor(e.lineBlockAt(t.head).to,-1));function dDt(e,t,n){let i=!1,r=u1(e.selection,s=>{let a=jd(e,s.head,-1)||jd(e,s.head,1)||s.head>0&&jd(e,s.head-1,1)||s.headdDt(e,t);function cu(e,t,n){let i=u1(e.state.selection,r=>{r.undirectional&&r.head>=r.anchor!=t&&(r=rt.range(r.head,r.anchor));let s=n(r);return rt.range(r.anchor,s.head,s.goalColumn,s.bidiLevel||void 0,s.assoc)});return i.eq(e.state.selection)?!1:(e.dispatch(Ju(e.state,i)),!0)}function LNe(e,t){return cu(e,t,n=>e.moveByChar(n,t))}const $Ne=e=>LNe(e,!Ao(e)),FNe=e=>LNe(e,Ao(e));function BNe(e,t){return cu(e,t,n=>e.moveByGroup(n,t))}const hDt=e=>BNe(e,!Ao(e)),pDt=e=>BNe(e,Ao(e)),mDt=e=>{let t=!Ao(e);return cu(e,t,n=>UI(e.state,n,t))},gDt=e=>{let t=Ao(e);return cu(e,t,n=>UI(e.state,n,t))};function UNe(e,t){return cu(e,t,n=>e.moveVertically(n,t))}const QNe=e=>UNe(e,!1),zNe=e=>UNe(e,!0);function VNe(e,t){return cu(e,t,n=>e.moveVertically(n,t,DNe(e).height))}const Vee=e=>VNe(e,!1),Hee=e=>VNe(e,!0),bDt=e=>cu(e,!0,t=>Gm(e,t,!0)),yDt=e=>cu(e,!1,t=>Gm(e,t,!1)),vDt=e=>{let t=!Ao(e);return cu(e,t,n=>Gm(e,n,t))},xDt=e=>{let t=Ao(e);return cu(e,t,n=>Gm(e,n,t))},wDt=e=>cu(e,!1,t=>rt.cursor(e.lineBlockAt(t.head).from)),ODt=e=>cu(e,!0,t=>rt.cursor(e.lineBlockAt(t.head).to)),qee=({state:e,dispatch:t})=>(t(Ju(e,{anchor:0})),!0),Wee=({state:e,dispatch:t})=>(t(Ju(e,{anchor:e.doc.length})),!0),Kee=({state:e,dispatch:t})=>(t(Ju(e,{anchor:e.selection.main.anchor,head:0})),!0),Gee=({state:e,dispatch:t})=>(t(Ju(e,{anchor:e.selection.main.anchor,head:e.doc.length})),!0),SDt=({state:e,dispatch:t})=>(t(e.update({selection:{anchor:0,head:e.doc.length},userEvent:"select"})),!0),kDt=({state:e,dispatch:t})=>{let n=QI(e).map(({from:i,to:r})=>rt.range(i,Math.min(r+1,e.doc.length)));return t(e.update({selection:rt.create(n),userEvent:"select"})),!0},EDt=({state:e,dispatch:t})=>{let n=u1(e.selection,i=>{let r=Nr(e),s=r.resolveStack(i.from,1);if(i.empty){let a=r.resolveStack(i.from,-1);a.node.from>=s.node.from&&a.node.to<=s.node.to&&(s=a)}for(let a=s;a;a=a.next){let{node:l}=a;if((l.from=i.to||l.to>i.to&&l.from<=i.from)&&a.next)return rt.range(l.to,l.from)}return i});return n.eq(e.selection)?!1:(t(Ju(e,n)),!0)};function HNe(e,t){let{state:n}=e,i=n.selection,r=n.selection.ranges.slice();for(let s of n.selection.ranges){let a=n.doc.lineAt(s.head);if(t?a.to0)for(let l=s;;){let c=e.moveVertically(l,t);if(c.heada.to){r.some(u=>u.head==c.head)||r.push(c);break}else{if(c.head==l.head)break;l=c}}}return r.length==i.ranges.length?!1:(e.dispatch(Ju(n,rt.create(r,r.length-1))),!0)}const CDt=e=>HNe(e,!1),TDt=e=>HNe(e,!0),ADt=({state:e,dispatch:t})=>{let n=e.selection,i=null;return n.ranges.length>1?i=rt.create([n.main]):n.main.empty||(i=rt.create([rt.cursor(n.main.head)])),i?(t(Ju(e,i)),!0):!1};function HE(e,t){if(e.state.readOnly)return!1;let n="delete.selection",{state:i}=e,r=i.changeByRange(s=>{let{from:a,to:l}=s;if(a==l){let c=t(s);ca&&(n="delete.forward",c=gA(e,c,!0)),a=Math.min(a,c),l=Math.max(l,c)}else a=gA(e,a,!1),l=gA(e,l,!0);return a==l?{range:s}:{changes:{from:a,to:l},range:rt.cursor(a,ar(e)))i.between(t,t,(r,s)=>{rt&&(t=n?s:r)});return t}const qNe=(e,t,n)=>HE(e,i=>{let r=i.from,{state:s}=e,a=s.doc.lineAt(r),l,c;if(n&&!t&&r>a.from&&rqNe(e,!1,!0),WNe=e=>qNe(e,!0,!1),KNe=(e,t)=>HE(e,n=>{let i=n.head,{state:r}=e,s=r.doc.lineAt(i),a=r.charCategorizer(i);for(let l=null;;){if(i==(t?s.to:s.from)){i==n.head&&s.number!=(t?r.doc.lines:1)&&(i+=t?1:-1);break}let c=Ma(s.text,i-s.from,t)+s.from,u=s.text.slice(Math.min(i,c)-s.from,Math.max(i,c)-s.from),d=a(u);if(l!=null&&d!=l)break;(u!=" "||i!=n.head)&&(l=d),i=c}return i}),GNe=e=>KNe(e,!1),_Dt=e=>KNe(e,!0),NDt=e=>HE(e,t=>{let n=e.lineBlockAt(t.head).to;return t.headHE(e,t=>{let n=e.moveToLineBoundary(t,!1).head;return t.head>n?n:Math.max(0,t.head-1)}),RDt=e=>HE(e,t=>{let n=e.moveToLineBoundary(t,!0).head;return t.head{if(e.readOnly)return!1;let n=e.changeByRange(i=>({changes:{from:i.from,to:i.to,insert:Ji.of(["",""])},range:rt.cursor(i.from)}));return t(e.update(n,{scrollIntoView:!0,userEvent:"input"})),!0},PDt=({state:e,dispatch:t})=>{if(e.readOnly)return!1;let n=e.changeByRange(i=>{if(!i.empty||i.from==0||i.from==e.doc.length)return{range:i};let r=i.from,s=e.doc.lineAt(r),a=r==s.from?r-1:Ma(s.text,r-s.from,!1)+s.from,l=r==s.to?r+1:Ma(s.text,r-s.from,!0)+s.from;return{changes:{from:a,to:l,insert:e.doc.slice(r,l).append(e.doc.slice(a,r))},range:rt.cursor(l)}});return n.changes.empty?!1:(t(e.update(n,{scrollIntoView:!0,userEvent:"move.character"})),!0)};function QI(e){let t=[],n=-1;for(let i of e.selection.ranges){let r=e.doc.lineAt(i.from),s=e.doc.lineAt(i.to);if(!i.empty&&i.to==s.from&&(s=e.doc.lineAt(i.to-1)),n>=r.number){let a=t[t.length-1];a.to=s.to,a.ranges.push(i)}else t.push({from:r.from,to:s.to,ranges:[i]});n=s.number+1}return t}function XNe(e,t,n){if(e.readOnly)return!1;let i=[],r=[];for(let s of QI(e)){if(n?s.to==e.doc.length:s.from==0)continue;let a=e.doc.lineAt(n?s.to+1:s.from-1),l=a.length+1;if(n){i.push({from:s.to,to:a.to},{from:s.from,insert:a.text+e.lineBreak});for(let c of s.ranges)r.push(rt.range(Math.min(e.doc.length,c.anchor+l),Math.min(e.doc.length,c.head+l)))}else{i.push({from:a.from,to:s.from},{from:s.to,insert:e.lineBreak+a.text});for(let c of s.ranges)r.push(rt.range(c.anchor-l,c.head-l))}}return i.length?(t(e.update({changes:i,scrollIntoView:!0,selection:rt.create(r,e.selection.mainIndex),userEvent:"move.line"})),!0):!1}const DDt=({state:e,dispatch:t})=>XNe(e,t,!1),MDt=({state:e,dispatch:t})=>XNe(e,t,!0);function YNe(e,t,n){if(e.readOnly)return!1;let i=[];for(let s of QI(e))n?i.push({from:s.from,insert:e.doc.slice(s.from,s.to)+e.lineBreak}):i.push({from:s.to,insert:e.lineBreak+e.doc.slice(s.from,s.to)});let r=e.changes(i);return t(e.update({changes:r,selection:e.selection.map(r,n?1:-1),scrollIntoView:!0,userEvent:"input.copyline"})),!0}const LDt=({state:e,dispatch:t})=>YNe(e,t,!1),$Dt=({state:e,dispatch:t})=>YNe(e,t,!0),FDt=e=>{if(e.state.readOnly)return!1;let{state:t}=e,n=t.changes(QI(t).map(({from:r,to:s})=>(r>0?r--:s{let s;if(e.lineWrapping){let a=e.lineBlockAt(r.head),l=e.coordsAtPos(r.head,r.assoc||1);l&&(s=a.bottom+e.documentTop-l.bottom+e.defaultLineHeight/2)}return e.moveVertically(r,!0,s)}).map(n);return e.dispatch({changes:n,selection:i,scrollIntoView:!0,userEvent:"delete.line"}),!0};function BDt(e,t){if(/\(\)|\[\]|\{\}/.test(e.sliceDoc(t-1,t+1)))return{from:t,to:t};let n=Nr(e).resolveInner(t),i=n.childBefore(t),r=n.childAfter(t),s;return i&&r&&i.to<=t&&r.from>=t&&(s=i.type.prop(Un.closedBy))&&s.indexOf(r.name)>-1&&e.doc.lineAt(i.to).from==e.doc.lineAt(r.from).from&&!/\S/.test(e.sliceDoc(i.to,r.from))?{from:i.to,to:r.from}:null}const Xee=ZNe(!1),UDt=ZNe(!0);function ZNe(e){return({state:t,dispatch:n})=>{if(t.readOnly)return!1;let i=t.changeByRange(r=>{let{from:s,to:a}=r,l=t.doc.lineAt(s),c=!e&&s==a&&BDt(t,s);e&&(s=a=(a<=l.to?l:t.doc.lineAt(a)).to);let u=new II(t,{simulateBreak:s,simulateDoubleBreak:!!c}),d=mQ(u,s);for(d==null&&(d=Qu(/^\s*/.exec(t.doc.lineAt(s).text)[0],t.tabSize));al.from&&s{let r=[];for(let a=i.from;a<=i.to;){let l=e.doc.lineAt(a);l.number>n&&(i.empty||i.to>l.from)&&(t(l,r,i),n=l.number),a=l.to+1}let s=e.changes(r);return{changes:r,range:rt.range(s.mapPos(i.anchor,1),s.mapPos(i.head,1))}})}const QDt=({state:e,dispatch:t})=>{if(e.readOnly)return!1;let n=Object.create(null),i=new II(e,{overrideIndentation:s=>{let a=n[s];return a??-1}}),r=WQ(e,(s,a,l)=>{let c=mQ(i,s.from);if(c==null)return;/\S/.test(s.text)||(c=0);let u=/^\s*/.exec(s.text)[0],d=dk(e,c);(u!=d||l.frome.readOnly?!1:(t(e.update(WQ(e,(n,i)=>{i.push({from:n.from,insert:e.facet(l1)})}),{userEvent:"input.indent"})),!0),eje=({state:e,dispatch:t})=>e.readOnly?!1:(t(e.update(WQ(e,(n,i)=>{let r=/^\s*/.exec(n.text)[0];if(!r)return;let s=Qu(r,e.tabSize),a=0,l=dk(e,Math.max(0,s-Fb(e)));for(;a(e.setTabFocusMode(),!0),VDt=[{key:"Ctrl-b",run:_Ne,shift:$Ne,preventDefault:!0},{key:"Ctrl-f",run:NNe,shift:FNe},{key:"Ctrl-p",run:INe,shift:QNe},{key:"Ctrl-n",run:PNe,shift:zNe},{key:"Ctrl-a",run:cDt,shift:wDt},{key:"Ctrl-e",run:uDt,shift:ODt},{key:"Ctrl-d",run:WNe},{key:"Ctrl-h",run:w8},{key:"Ctrl-k",run:NDt},{key:"Ctrl-Alt-h",run:GNe},{key:"Ctrl-o",run:IDt},{key:"Ctrl-t",run:PDt},{key:"Ctrl-v",run:x8}],HDt=[{key:"ArrowLeft",run:_Ne,shift:$Ne,preventDefault:!0},{key:"Mod-ArrowLeft",mac:"Alt-ArrowLeft",run:eDt,shift:hDt,preventDefault:!0},{mac:"Cmd-ArrowLeft",run:oDt,shift:vDt,preventDefault:!0},{key:"ArrowRight",run:NNe,shift:FNe,preventDefault:!0},{key:"Mod-ArrowRight",mac:"Alt-ArrowRight",run:tDt,shift:pDt,preventDefault:!0},{mac:"Cmd-ArrowRight",run:lDt,shift:xDt,preventDefault:!0},{key:"ArrowUp",run:INe,shift:QNe,preventDefault:!0},{mac:"Cmd-ArrowUp",run:qee,shift:Kee},{mac:"Ctrl-ArrowUp",run:zee,shift:Vee},{key:"ArrowDown",run:PNe,shift:zNe,preventDefault:!0},{mac:"Cmd-ArrowDown",run:Wee,shift:Gee},{mac:"Ctrl-ArrowDown",run:x8,shift:Hee},{key:"PageUp",run:zee,shift:Vee},{key:"PageDown",run:x8,shift:Hee},{key:"Home",run:aDt,shift:yDt,preventDefault:!0},{key:"Mod-Home",run:qee,shift:Kee},{key:"End",run:sDt,shift:bDt,preventDefault:!0},{key:"Mod-End",run:Wee,shift:Gee},{key:"Enter",run:Xee,shift:Xee},{key:"Mod-a",run:SDt},{key:"Backspace",run:w8,shift:w8,preventDefault:!0},{key:"Delete",run:WNe,preventDefault:!0},{key:"Mod-Backspace",mac:"Alt-Backspace",run:GNe,preventDefault:!0},{key:"Mod-Delete",mac:"Alt-Delete",run:_Dt,preventDefault:!0},{mac:"Mod-Backspace",run:jDt,preventDefault:!0},{mac:"Mod-Delete",run:RDt,preventDefault:!0}].concat(VDt.map(e=>({mac:e.key,run:e.run,shift:e.shift}))),qDt=[{key:"Alt-ArrowLeft",mac:"Ctrl-ArrowLeft",run:iDt,shift:mDt},{key:"Alt-ArrowRight",mac:"Ctrl-ArrowRight",run:rDt,shift:gDt},{key:"Alt-ArrowUp",run:DDt},{key:"Shift-Alt-ArrowUp",run:LDt},{key:"Alt-ArrowDown",run:MDt},{key:"Shift-Alt-ArrowDown",run:$Dt},{key:"Mod-Alt-ArrowUp",run:CDt},{key:"Mod-Alt-ArrowDown",run:TDt},{key:"Escape",run:ADt},{key:"Mod-Enter",run:UDt},{key:"Alt-l",mac:"Ctrl-l",run:kDt},{key:"Mod-i",run:EDt,preventDefault:!0},{key:"Mod-[",run:eje},{key:"Mod-]",run:JNe},{key:"Mod-Alt-\\",run:QDt},{key:"Shift-Mod-k",run:FDt},{key:"Shift-Mod-\\",run:fDt},{key:"Mod-/",run:DPt},{key:"Alt-A",run:LPt},{key:"Ctrl-m",mac:"Shift-Alt-m",run:zDt}].concat(HDt),WDt={key:"Tab",run:JNe,shift:eje},Yee=typeof String.prototype.normalize=="function"?e=>e.normalize("NFKD"):e=>e;class yx{constructor(t,n,i=0,r=t.length,s,a){this.test=a,this.value={from:0,to:0,precise:!1},this.done=!1,this.matches=[],this.buffer="",this.bufferPos=0,this.iter=t.iterRange(i,r),this.bufferStart=i,this.normalize=s?l=>s(Yee(l)):Yee,this.query=this.normalize(n)}peek(){if(this.bufferPos==this.buffer.length){if(this.bufferStart+=this.buffer.length,this.iter.next(),this.iter.done)return-1;this.bufferPos=0,this.buffer=this.iter.value}return cl(this.buffer,this.bufferPos)}next(){for(;this.matches.length;)this.matches.pop();return this.nextOverlapping()}nextOverlapping(){for(;;){let t=this.peek();if(t<0)return this.done=!0,this;let n=GU(t),i=this.bufferStart+this.bufferPos;this.bufferPos+=xd(t);let r=this.normalize(n);if(r.length)for(let s=0,a=i,l=!0;;s++){let c=r.charCodeAt(s),u=this.match(c,a,l,this.bufferPos+this.bufferStart,s==r.length-1);if(u)return this.value=u,this;if(s==r.length-1)break;l&&sthis.to&&(this.curLine=this.curLine.slice(0,this.to-this.curLineStart)),this.iter.next())}nextLine(){this.curLineStart=this.curLineStart+this.curLine.length+1,this.curLineStart>this.to?this.curLine="":this.getLine(0)}next(){for(let t=this.matchPos-this.curLineStart;;){this.re.lastIndex=t;let n=this.matchPos<=this.to&&this.re.exec(this.curLine);if(n){let i=this.curLineStart+n.index,r=i+n[0].length;if(this.matchPos=oj(this.text,r+(i==r?1:0)),i==this.curLineStart+this.curLine.length&&this.nextLine(),(ithis.value.to)&&(!this.test||this.test(i,r,n)))return this.value={from:i,to:r,precise:!0,match:n},this;t=this.matchPos-this.curLineStart}else if(this.curLineStart+this.curLine.length=i||r.to<=n){let l=new Ov(n,t.sliceString(n,i));return eL.set(t,l),l}if(r.from==n&&r.to==i)return r;let{text:s,from:a}=r;return a>n&&(s=t.sliceString(n,a)+s,a=n),r.to=this.to?this.to:this.text.lineAt(t).to}next(){for(;;){let t=this.re.lastIndex=this.matchPos-this.flat.from,n=this.re.exec(this.flat.text);if(n&&!n[0]&&n.index==t&&(this.re.lastIndex=t+1,n=this.re.exec(this.flat.text)),n){let i=this.flat.from+n.index,r=i+n[0].length;if((this.flat.to>=this.to||n.index+n[0].length<=this.flat.text.length-10)&&(!this.test||this.test(i,r,n)))return this.value={from:i,to:r,precise:!0,match:n},this.matchPos=oj(this.text,r+(i==r?1:0)),this}if(this.flat.to==this.to)return this.done=!0,this;this.flat=Ov.get(this.text,this.flat.from,this.chunkEnd(this.flat.from+this.flat.text.length*2))}}}typeof Symbol<"u"&&(nje.prototype[Symbol.iterator]=ije.prototype[Symbol.iterator]=function(){return this});function KDt(e){try{return new RegExp(e,KQ),!0}catch{return!1}}function oj(e,t){if(t>=e.length)return t;let n=e.lineAt(t),i;for(;t=56320&&i<57344;)t++;return t}const GDt=e=>{let{state:t}=e,n=String(t.doc.lineAt(e.state.selection.main.head).number),{close:i,result:r}=aAt(e,{label:t.phrase("Go to line"),input:{type:"text",name:"line",value:n},focus:!0,submitLabel:t.phrase("go")});return r.then(s=>{let a=s&&/^([+-])?(\d+)?(:\d+)?(%)?$/.exec(s.elements.line.value);if(!a){e.dispatch({effects:i});return}let l=t.doc.lineAt(t.selection.main.head),[,c,u,d,f]=a,h=d?+d.slice(1):0,m=u?+u:l.number;if(u&&f){let v=m/100;c&&(v=v*(c=="-"?-1:1)+l.number/t.doc.lines),m=Math.round(t.doc.lines*v)}else u&&c&&(m=m*(c=="-"?-1:1)+l.number);let g=t.doc.line(Math.max(1,Math.min(t.doc.lines,m))),b=rt.cursor(g.from+Math.max(0,Math.min(h,g.length)));e.dispatch({effects:[i,Qt.scrollIntoView(b.from,{y:"center"})],selection:b})}),!0},XDt={highlightWordAroundCursor:!1,minSelectionLength:1,maxMatches:100,wholeWords:!1},YDt=Jt.define({combine(e){return nf(e,XDt,{highlightWordAroundCursor:(t,n)=>t||n,minSelectionLength:Math.min,maxMatches:Math.min})}});function ZDt(e){return[iMt,nMt]}const JDt=xn.mark({class:"cm-selectionMatch"}),eMt=xn.mark({class:"cm-selectionMatch cm-selectionMatch-main"});function Zee(e,t,n,i){return(n==0||e(t.sliceDoc(n-1,n))!=is.Word)&&(i==t.doc.length||e(t.sliceDoc(i,i+1))!=is.Word)}function tMt(e,t,n,i){return e(t.sliceDoc(n,n+1))==is.Word&&e(t.sliceDoc(i-1,i))==is.Word}const nMt=Ts.fromClass(class{constructor(e){this.decorations=this.getDeco(e)}update(e){(e.selectionSet||e.docChanged||e.viewportChanged)&&(this.decorations=this.getDeco(e.view))}getDeco(e){let t=e.state.facet(YDt),{state:n}=e,i=n.selection;if(i.ranges.length>1)return xn.none;let r=i.main,s,a=null;if(r.empty){if(!t.highlightWordAroundCursor)return xn.none;let c=n.wordAt(r.head);if(!c)return xn.none;a=n.charCategorizer(r.head),s=n.sliceDoc(c.from,c.to)}else{let c=r.to-r.from;if(c200)return xn.none;if(t.wholeWords){if(s=n.sliceDoc(r.from,r.to),a=n.charCategorizer(r.head),!(Zee(a,n,r.from,r.to)&&tMt(a,n,r.from,r.to)))return xn.none}else if(s=n.sliceDoc(r.from,r.to),!s)return xn.none}let l=[];for(let c of e.visibleRanges){let u=new yx(n.doc,s,c.from,c.to);for(;!u.next().done;){let{from:d,to:f}=u.value;if((!a||Zee(a,n,d,f))&&(r.empty&&d<=r.from&&f>=r.to?l.push(eMt.range(d,f)):(d>=r.to||f<=r.from)&&l.push(JDt.range(d,f)),l.length>t.maxMatches))return xn.none}}return xn.set(l)}},{decorations:e=>e.decorations}),iMt=Qt.baseTheme({".cm-selectionMatch":{backgroundColor:"#99ff7780"},".cm-searchMatch .cm-selectionMatch":{backgroundColor:"transparent"}}),rMt=({state:e,dispatch:t})=>{let{selection:n}=e,i=rt.create(n.ranges.map(r=>e.wordAt(r.head)||rt.cursor(r.head)),n.mainIndex);return i.eq(n)?!1:(t(e.update({selection:i})),!0)};function sMt(e,t){let{main:n,ranges:i}=e.selection,r=e.wordAt(n.head),s=r&&r.from==n.from&&r.to==n.to;for(let a=!1,l=new yx(e.doc,t,i[i.length-1].to);;)if(l.next(),l.done){if(a)return null;l=new yx(e.doc,t,0,Math.max(0,i[i.length-1].from-1)),a=!0}else{if(a&&i.some(c=>c.from==l.value.from))continue;if(s){let c=e.wordAt(l.value.from);if(!c||c.from!=l.value.from||c.to!=l.value.to)continue}return l.value}}const aMt=({state:e,dispatch:t})=>{let{ranges:n}=e.selection;if(n.some(s=>s.from===s.to))return rMt({state:e,dispatch:t});let i=e.sliceDoc(n[0].from,n[0].to);if(e.selection.ranges.some(s=>e.sliceDoc(s.from,s.to)!=i))return!1;let r=sMt(e,i);return r?(t(e.update({selection:e.selection.addRange(rt.range(r.from,r.to),!1),effects:Qt.scrollIntoView(r.to)})),!0):!1},d1=Jt.define({combine(e){return nf(e,{top:!1,caseSensitive:!1,literal:!1,regexp:!1,wholeWord:!1,createPanel:t=>new xMt(t),scrollToMatch:t=>Qt.scrollIntoView(t)})}});class rje{constructor(t){this.search=t.search,this.caseSensitive=!!t.caseSensitive,this.literal=!!t.literal,this.regexp=!!t.regexp,this.replace=t.replace||"",this.valid=!!this.search&&(!this.regexp||KDt(this.search)),this.unquoted=this.unquote(this.search),this.wholeWord=!!t.wholeWord,this.test=t.test}unquote(t){return this.literal?t:t.replace(/\\([nrt\\])/g,(n,i)=>i=="n"?` +`:i=="r"?"\r":i=="t"?" ":"\\")}eq(t){return this.search==t.search&&this.replace==t.replace&&this.caseSensitive==t.caseSensitive&&this.regexp==t.regexp&&this.wholeWord==t.wholeWord&&this.test==t.test}create(){return this.regexp?new fMt(this):new cMt(this)}getCursor(t,n=0,i){let r=t.doc?t:ji.create({doc:t});return i==null&&(i=r.doc.length),this.regexp?hy(this,r,n,i):fy(this,r,n,i)}}class sje{constructor(t){this.spec=t}}function oMt(e,t,n){return(i,r,s,a)=>{if(n&&!n(i,r,s,a))return!1;let l=i>=a&&r<=a+s.length?s.slice(i-a,r-a):t.doc.sliceString(i,r);return e(l,t,i,r)}}function fy(e,t,n,i){let r;return e.wholeWord&&(r=lMt(t.doc,t.charCategorizer(t.selection.main.head))),e.test&&(r=oMt(e.test,t,r)),new yx(t.doc,e.unquoted,n,i,e.caseSensitive?void 0:s=>s.toLowerCase(),r)}function lMt(e,t){return(n,i,r,s)=>((s>n||s+r.length=n)return null;r.push(i.value)}return r}highlight(t,n,i,r){let s=fy(this.spec,t,Math.max(0,n-this.spec.unquoted.length),Math.min(i+this.spec.unquoted.length,t.doc.length));for(;!s.next().done;)r(s.value.from,s.value.to)}}function uMt(e,t,n){return(i,r,s)=>(!n||n(i,r,s))&&e(s[0],t,i,r)}function hy(e,t,n,i){let r;return e.wholeWord&&(r=dMt(t.charCategorizer(t.selection.main.head))),e.test&&(r=uMt(e.test,t,r)),new nje(t.doc,e.search,{ignoreCase:!e.caseSensitive,test:r},n,i)}function lj(e,t){return e.slice(Ma(e,t,!1),t)}function cj(e,t){return e.slice(t,Ma(e,t))}function dMt(e){return(t,n,i)=>!i[0].length||(e(lj(i.input,i.index))!=is.Word||e(cj(i.input,i.index))!=is.Word)&&(e(cj(i.input,i.index+i[0].length))!=is.Word||e(lj(i.input,i.index+i[0].length))!=is.Word)}class fMt extends sje{nextMatch(t,n,i){let r=hy(this.spec,t,i,t.doc.length).next();return r.done&&(r=hy(this.spec,t,0,n).next()),r.done?null:r.value}prevMatchInRange(t,n,i){for(let r=1;;r++){let s=Math.max(n,i-r*1e4),a=hy(this.spec,t,s,i),l=null;for(;!a.next().done;)l=a.value;if(l&&(s==n||l.from>s+10))return l;if(s==n)return null}}prevMatch(t,n,i){return this.prevMatchInRange(t,0,n)||this.prevMatchInRange(t,i,t.doc.length)}getReplacement(t){return this.spec.unquote(this.spec.replace).replace(/\$([$&]|\d+)/g,(n,i)=>{if(i=="&")return t.match[0];if(i=="$")return"$";for(let r=i.length;r>0;r--){let s=+i.slice(0,r);if(s>0&&s=n)return null;r.push(i.value)}return r}highlight(t,n,i,r){let s=hy(this.spec,t,Math.max(0,n-250),Math.min(i+250,t.doc.length));for(;!s.next().done;)r(s.value.from,s.value.to)}}const Ok=Qn.define(),GQ=Qn.define(),cm=so.define({create(e){return new tL(O8(e).create(),null)},update(e,t){for(let n of t.effects)n.is(Ok)?e=new tL(n.value.create(),e.panel):n.is(GQ)&&(e=new tL(e.query,n.value?XQ:null));return e},provide:e=>ck.from(e,t=>t.panel)});class tL{constructor(t,n){this.query=t,this.panel=n}}const hMt=xn.mark({class:"cm-searchMatch"}),pMt=xn.mark({class:"cm-searchMatch cm-searchMatch-selected"}),mMt=Ts.fromClass(class{constructor(e){this.view=e,this.decorations=this.highlight(e.state.field(cm))}update(e){let t=e.state.field(cm);(t!=e.startState.field(cm)||e.docChanged||e.selectionSet||e.viewportChanged)&&(this.decorations=this.highlight(t))}highlight({query:e,panel:t}){if(!t||!e.spec.valid)return xn.none;let{view:n}=this,i=new Th;for(let r=0,s=n.visibleRanges,a=s.length;rs[r+1].from-2*250;)c=s[++r].to;e.highlight(n.state,l,c,(u,d)=>{let f=n.state.selection.ranges.some(h=>h.from==u&&h.to==d);i.add(u,d,f?pMt:hMt)})}return i.finish()}},{decorations:e=>e.decorations});function qE(e){return t=>{let n=t.state.field(cm,!1);return n&&n.query.spec.valid?e(t,n):lje(t)}}const uj=qE((e,{query:t})=>{let{to:n}=e.state.selection.main,i=t.nextMatch(e.state,n,n);if(!i)return!1;let r=rt.single(i.from,i.to),s=e.state.facet(d1);return e.dispatch({selection:r,effects:[YQ(e,i),s.scrollToMatch(r.main,e)],userEvent:"select.search"}),oje(e),!0}),dj=qE((e,{query:t})=>{let{state:n}=e,{from:i}=n.selection.main,r=t.prevMatch(n,i,i);if(!r)return!1;let s=rt.single(r.from,r.to),a=e.state.facet(d1);return e.dispatch({selection:s,effects:[YQ(e,r),a.scrollToMatch(s.main,e)],userEvent:"select.search"}),oje(e),!0}),gMt=qE((e,{query:t})=>{let n=t.matchAll(e.state,1e3);return!n||!n.length?!1:(e.dispatch({selection:rt.create(n.map(i=>rt.range(i.from,i.to))),userEvent:"select.search.matches"}),!0)}),bMt=({state:e,dispatch:t})=>{let n=e.selection;if(n.ranges.length>1||n.main.empty)return!1;let{from:i,to:r}=n.main,s=[],a=0;for(let l=new yx(e.doc,e.sliceDoc(i,r));!l.next().done;){if(s.length>1e3)return!1;l.value.from==i&&(a=s.length),s.push(rt.range(l.value.from,l.value.to))}return t(e.update({selection:rt.create(s,a),userEvent:"select.search.matches"})),!0},Jee=qE((e,{query:t})=>{let{state:n}=e,{from:i,to:r}=n.selection.main;if(n.readOnly)return!1;let s=t.nextMatch(n,i,i);if(!s)return!1;let a=s,l=[],c,u,d=[];a.precise?a.from==i&&a.to==r&&(u=n.toText(t.getReplacement(a)),l.push({from:a.from,to:a.to,insert:u}),a=t.nextMatch(n,a.from,a.to),d.push(Qt.announce.of(n.phrase("replaced match on line $",n.doc.lineAt(i).number)+"."))):a=t.nextMatch(n,a.from,a.to);let f=e.state.changes(l);return a&&(c=rt.single(a.from,a.to).map(f),d.push(YQ(e,a)),d.push(n.facet(d1).scrollToMatch(c.main,e))),e.dispatch({changes:f,selection:c,effects:d,userEvent:"input.replace"}),!0}),yMt=qE((e,{query:t})=>{if(e.state.readOnly)return!1;let n=[];for(let r of t.matchAll(e.state,1e9)){let{from:s,to:a,precise:l}=r;l&&n.push({from:s,to:a,insert:t.getReplacement(r)})}if(!n.length)return!1;let i=e.state.phrase("replaced $ matches",n.length)+".";return e.dispatch({changes:n,effects:Qt.announce.of(i),userEvent:"input.replace.all"}),!0});function XQ(e){return e.state.facet(d1).createPanel(e)}function O8(e,t){var n,i,r,s,a;let l=e.selection.main,c=l.empty||l.to>l.from+100?"":e.sliceDoc(l.from,l.to);if(t&&!c)return t;let u=e.facet(d1);return new rje({search:((n=t==null?void 0:t.literal)!==null&&n!==void 0?n:u.literal)?c:c.replace(/\n/g,"\\n"),caseSensitive:(i=t==null?void 0:t.caseSensitive)!==null&&i!==void 0?i:u.caseSensitive,literal:(r=t==null?void 0:t.literal)!==null&&r!==void 0?r:u.literal,regexp:(s=t==null?void 0:t.regexp)!==null&&s!==void 0?s:u.regexp,wholeWord:(a=t==null?void 0:t.wholeWord)!==null&&a!==void 0?a:u.wholeWord})}function aje(e){let t=hQ(e,XQ);return t&&t.dom.querySelector("[main-field]")}function oje(e){let t=aje(e);t&&t==e.root.activeElement&&t.select()}const lje=e=>{let t=e.state.field(cm,!1);if(t&&t.panel){let n=aje(e);if(n&&n!=e.root.activeElement){let i=O8(e.state,t.query.spec);i.valid&&e.dispatch({effects:Ok.of(i)}),n.focus(),n.select()}}else e.dispatch({effects:[GQ.of(!0),t?Ok.of(O8(e.state,t.query.spec)):Qn.appendConfig.of(OMt)]});return!0},cje=e=>{let t=e.state.field(cm,!1);if(!t||!t.panel)return!1;let n=hQ(e,XQ);return n&&n.dom.contains(e.root.activeElement)&&e.focus(),e.dispatch({effects:GQ.of(!1)}),!0},vMt=[{key:"Mod-f",run:lje,scope:"editor search-panel"},{key:"F3",run:uj,shift:dj,scope:"editor search-panel",preventDefault:!0},{key:"Mod-g",run:uj,shift:dj,scope:"editor search-panel",preventDefault:!0},{key:"Escape",run:cje,scope:"editor search-panel"},{key:"Mod-Shift-l",run:bMt},{key:"Mod-Alt-g",run:GDt},{key:"Mod-d",run:aMt,preventDefault:!0}];class xMt{constructor(t){this.view=t;let n=this.query=t.state.field(cm).query.spec;this.commit=this.commit.bind(this),this.searchField=Cr("input",{value:n.search,placeholder:$l(t,"Find"),"aria-label":$l(t,"Find"),class:"cm-textfield",name:"search",form:"","main-field":"true",onchange:this.commit,onkeyup:this.commit}),this.replaceField=Cr("input",{value:n.replace,placeholder:$l(t,"Replace"),"aria-label":$l(t,"Replace"),class:"cm-textfield",name:"replace",form:"",onchange:this.commit,onkeyup:this.commit}),this.caseField=Cr("input",{type:"checkbox",name:"case",form:"",checked:n.caseSensitive,onchange:this.commit}),this.reField=Cr("input",{type:"checkbox",name:"re",form:"",checked:n.regexp,onchange:this.commit}),this.wordField=Cr("input",{type:"checkbox",name:"word",form:"",checked:n.wholeWord,onchange:this.commit});function i(r,s,a){return Cr("button",{class:"cm-button",name:r,onclick:s,type:"button"},a)}this.dom=Cr("div",{onkeydown:r=>this.keydown(r),class:"cm-search"},[this.searchField,i("next",()=>uj(t),[$l(t,"next")]),i("prev",()=>dj(t),[$l(t,"previous")]),i("select",()=>gMt(t),[$l(t,"all")]),Cr("label",null,[this.caseField,$l(t,"match case")]),Cr("label",null,[this.reField,$l(t,"regexp")]),Cr("label",null,[this.wordField,$l(t,"by word")]),...t.state.readOnly?[]:[Cr("br"),this.replaceField,i("replace",()=>Jee(t),[$l(t,"replace")]),i("replaceAll",()=>yMt(t),[$l(t,"replace all")])],Cr("button",{name:"close",onclick:()=>cje(t),"aria-label":$l(t,"close"),type:"button"},["×"])])}commit(){let t=new rje({search:this.searchField.value,caseSensitive:this.caseField.checked,regexp:this.reField.checked,wholeWord:this.wordField.checked,replace:this.replaceField.value});t.eq(this.query)||(this.query=t,this.view.dispatch({effects:Ok.of(t)}))}keydown(t){mTt(this.view,t,"search-panel")?t.preventDefault():t.keyCode==13&&t.target==this.searchField?(t.preventDefault(),(t.shiftKey?dj:uj)(this.view)):t.keyCode==13&&t.target==this.replaceField&&(t.preventDefault(),Jee(this.view))}update(t){for(let n of t.transactions)for(let i of n.effects)i.is(Ok)&&!i.value.eq(this.query)&&this.setQuery(i.value)}setQuery(t){this.query=t,this.searchField.value=t.search,this.replaceField.value=t.replace,this.caseField.checked=t.caseSensitive,this.reField.checked=t.regexp,this.wordField.checked=t.wholeWord}mount(){this.searchField.select()}get pos(){return 80}get top(){return this.view.state.facet(d1).top}}function $l(e,t){return e.state.phrase(t)}const bA=30,yA=/[\s\.,:;?!]/;function YQ(e,{from:t,to:n}){let i=e.state.doc.lineAt(t),r=e.state.doc.lineAt(n).to,s=Math.max(i.from,t-bA),a=Math.min(r,n+bA),l=e.state.sliceDoc(s,a);if(s!=i.from){for(let c=0;cl.length-bA;c--)if(!yA.test(l[c-1])&&yA.test(l[c])){l=l.slice(0,c);break}}return Qt.announce.of(`${e.state.phrase("current match")}. ${l} ${e.state.phrase("on line")} ${i.number}.`)}const wMt=Qt.baseTheme({".cm-panel.cm-search":{padding:"2px 6px 4px",position:"relative","& [name=close]":{position:"absolute",top:"0",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",padding:0,margin:0},"& input, & button, & label":{margin:".2em .6em .2em 0"},"& input[type=checkbox]":{marginRight:".2em"},"& label":{fontSize:"80%",whiteSpace:"pre"}},"&light .cm-searchMatch":{backgroundColor:"#ffff0054"},"&dark .cm-searchMatch":{backgroundColor:"#00ffff8a"},"&light .cm-searchMatch-selected":{backgroundColor:"#ff6a0054"},"&dark .cm-searchMatch-selected":{backgroundColor:"#ff00ff8a"}}),OMt=[cm,Qh.low(mMt),wMt];class ete{constructor(t,n,i){this.from=t,this.to=n,this.diagnostic=i}}class Mg{constructor(t,n,i){this.diagnostics=t,this.panel=n,this.selected=i}static init(t,n,i){let r=i.facet(Sk).markerFilter;r&&(t=r(t,i));let s=t.slice().sort((m,g)=>m.from-g.from||m.to-g.to),a=new Th,l=[],c=0,u=i.doc.iter(),d=0,f=i.doc.length;for(let m=0;;){let g=m==s.length?null:s[m];if(!g&&!l.length)break;let b,v;if(l.length)b=c,v=l.reduce((O,w)=>Math.min(O,w.to),g&&g.from>b?g.from:1e8);else{if(b=g.from,b>f)break;v=g.to,l.push(g),m++}for(;mO.from||O.to==b))l.push(O),m++,v=Math.min(O.to,v);else{v=Math.min(O.from,v);break}}v=Math.min(v,f);let y=!1;if(l.some(O=>O.from==b&&(O.to==v||v==f))&&(y=b==v,!y&&v-b<10)){let O=b-(d+u.value.length);O>0&&(u.next(O),d=b);for(let w=b;;){if(w>=v){y=!0;break}if(!u.lineBreak&&d+u.value.length>w)break;w=d+u.value.length,d+=u.value.length,u.next()}}let x=DMt(l);if(y)a.add(b,b,xn.widget({widget:new jMt(x),diagnostics:l.slice()}));else{let O=l.reduce((w,k)=>k.markClass?w+" "+k.markClass:w,"");a.add(b,v,xn.mark({class:"cm-lintRange cm-lintRange-"+x+O,diagnostics:l.slice(),inclusiveEnd:l.some(w=>w.to>v)}))}if(c=v,c==f)break;for(let O=0;O{if(!(t&&a.diagnostics.indexOf(t)<0))if(!i)i=new ete(r,s,t||a.diagnostics[0]);else{if(a.diagnostics.indexOf(i.diagnostic)<0)return!1;i=new ete(i.from,s,i.diagnostic)}}),i}function SMt(e,t){let n=t.pos,i=t.end||n,r=e.state.facet(Sk).hideOn(e,n,i);if(r!=null)return r;let s=e.startState.doc.lineAt(t.pos);return!!(e.effects.some(a=>a.is(uje))||e.changes.touchesRange(s.from,Math.max(s.to,i)))}function kMt(e,t){return e.field(nc,!1)?t:t.concat(Qn.appendConfig.of(MMt))}const uje=Qn.define(),ZQ=Qn.define(),dje=Qn.define(),nc=so.define({create(){return new Mg(xn.none,null,null)},update(e,t){if(t.docChanged&&e.diagnostics.size){let n=e.diagnostics.map(t.changes),i=null,r=e.panel;if(e.selected){let s=t.changes.mapPos(e.selected.from,1);i=Dm(n,e.selected.diagnostic,s)||Dm(n,null,s)}!n.size&&r&&t.state.facet(Sk).autoPanel&&(r=null),e=new Mg(n,r,i)}for(let n of t.effects)if(n.is(uje)){let i=t.state.facet(Sk).autoPanel?n.value.length?kk.open:null:e.panel;e=Mg.init(n.value,i,t.state)}else n.is(ZQ)?e=new Mg(e.diagnostics,n.value?kk.open:null,e.selected):n.is(dje)&&(e=new Mg(e.diagnostics,e.panel,n.value));return e},provide:e=>[ck.from(e,t=>t.panel),Qt.decorations.from(e,t=>t.diagnostics)]}),EMt=xn.mark({class:"cm-lintRange cm-lintRange-active"});function CMt(e,t,n){let{diagnostics:i}=e.state.field(nc),r,s=-1,a=-1;i.between(t-(n<0?1:0),t+(n>0?1:0),(c,u,{spec:d})=>{if(t>=c&&t<=u&&(c==u||(t>c||n>0)&&(thje(e,n,!1)))}const AMt=e=>{let t=e.state.field(nc,!1);(!t||!t.panel)&&e.dispatch({effects:kMt(e.state,[ZQ.of(!0)])});let n=hQ(e,kk.open);return n&&n.dom.querySelector(".cm-panel-lint ul").focus(),!0},tte=e=>{let t=e.state.field(nc,!1);return!t||!t.panel?!1:(e.dispatch({effects:ZQ.of(!1)}),!0)},_Mt=e=>{let t=e.state.field(nc,!1);if(!t)return!1;let n=e.state.selection.main,i=Dm(t.diagnostics,null,n.to+1);return!i&&(i=Dm(t.diagnostics,null,0),!i||i.from==n.from&&i.to==n.to)?!1:(e.dispatch({selection:{anchor:i.from,head:i.to},scrollIntoView:!0}),rAt(e,i.from,1,{tooltip:pje,until:r=>r.docChanged||r.newSelection.main.headi.to}),!0)},NMt=[{key:"Mod-Shift-m",run:AMt,preventDefault:!0},{key:"F8",run:_Mt}],Sk=Jt.define({combine(e){return{sources:e.map(t=>t.source).filter(t=>t!=null),...nf(e.map(t=>t.config),{delay:750,markerFilter:null,tooltipFilter:null,needsRefresh:null,hideOn:()=>null},{delay:Math.max,markerFilter:nte,tooltipFilter:nte,needsRefresh:(t,n)=>t?n?i=>t(i)||n(i):t:n,hideOn:(t,n)=>t?n?(i,r,s)=>t(i,r,s)||n(i,r,s):t:n,autoPanel:(t,n)=>t||n})}}});function nte(e,t){return e?t?(n,i)=>t(e(n,i),i):e:t}function fje(e){let t=[];if(e)e:for(let{name:n}of e){for(let i=0;is.toLowerCase()==r.toLowerCase())){t.push(r);continue e}}t.push("")}return t}function hje(e,t,n){var i;let r=n?fje(t.actions):[];return Cr("li",{class:"cm-diagnostic cm-diagnostic-"+t.severity},Cr("span",{class:"cm-diagnosticText"},t.renderMessage?t.renderMessage(e):t.message),(i=t.actions)===null||i===void 0?void 0:i.map((s,a)=>{let l=!1,c=m=>{if(m.preventDefault(),l)return;l=!0;let g=Dm(e.state.field(nc).diagnostics,t);g&&s.apply(e,g.from,g.to)},{name:u}=s,d=r[a]?u.indexOf(r[a]):-1,f=d<0?u:[u.slice(0,d),Cr("u",u.slice(d,d+1)),u.slice(d+1)],h=s.markClass?" "+s.markClass:"";return Cr("button",{type:"button",class:"cm-diagnosticAction"+h,onclick:c,onmousedown:c,"aria-label":` Action: ${u}${d<0?"":` (access key "${r[a]})"`}.`},f)}),t.source&&Cr("div",{class:"cm-diagnosticSource"},t.source))}class jMt extends Zu{constructor(t){super(),this.sev=t}eq(t){return t.sev==this.sev}toDOM(){return Cr("span",{class:"cm-lintPoint cm-lintPoint-"+this.sev})}}class ite{constructor(t,n){this.diagnostic=n,this.id="item_"+Math.floor(Math.random()*4294967295).toString(16),this.dom=hje(t,n,!0),this.dom.id=this.id,this.dom.setAttribute("role","option")}}class kk{constructor(t){this.view=t,this.items=[];let n=r=>{if(!(r.ctrlKey||r.altKey||r.metaKey)){if(r.keyCode==27)tte(this.view),this.view.focus();else if(r.keyCode==38||r.keyCode==33)this.moveSelection((this.selectedIndex-1+this.items.length)%this.items.length);else if(r.keyCode==40||r.keyCode==34)this.moveSelection((this.selectedIndex+1)%this.items.length);else if(r.keyCode==36)this.moveSelection(0);else if(r.keyCode==35)this.moveSelection(this.items.length-1);else if(r.keyCode==13)this.view.focus();else if(r.keyCode>=65&&r.keyCode<=90&&this.selectedIndex>=0){let{diagnostic:s}=this.items[this.selectedIndex],a=fje(s.actions);for(let l=0;l{for(let s=0;stte(this.view)},"×")),this.update()}get selectedIndex(){let t=this.view.state.field(nc).selected;if(!t)return-1;for(let n=0;n{for(let d of u.diagnostics){if(a.has(d))continue;a.add(d);let f=-1,h;for(let m=i;mi&&(this.items.splice(i,f-i),r=!0)),n&&h.diagnostic==n.diagnostic?h.dom.hasAttribute("aria-selected")||(h.dom.setAttribute("aria-selected","true"),s=h):h.dom.hasAttribute("aria-selected")&&h.dom.removeAttribute("aria-selected"),i++}});i({sel:s.dom.getBoundingClientRect(),panel:this.list.getBoundingClientRect()}),write:({sel:l,panel:c})=>{let u=c.height/this.list.offsetHeight;l.topc.bottom&&(this.list.scrollTop+=(l.bottom-c.bottom)/u)}})):this.selectedIndex<0&&this.list.removeAttribute("aria-activedescendant"),r&&this.sync()}sync(){let t=this.list.firstChild;function n(){let i=t;t=i.nextSibling,i.remove()}for(let i of this.items)if(i.dom.parentNode==this.list){for(;t!=i.dom;)n();t=i.dom.nextSibling}else this.list.insertBefore(i.dom,t);for(;t;)n()}moveSelection(t){if(this.selectedIndex<0)return;let n=this.view.state.field(nc),i=Dm(n.diagnostics,this.items[t].diagnostic);i&&this.view.dispatch({selection:{anchor:i.from,head:i.to},scrollIntoView:!0,effects:dje.of(i)})}static open(t){return new kk(t)}}function RMt(e,t='viewBox="0 0 40 40"'){return`url('data:image/svg+xml,${encodeURIComponent(e)}')`}function vA(e){return RMt(``,'width="6" height="3"')}const IMt=Qt.baseTheme({".cm-diagnostic":{padding:"3px 6px 3px 8px",marginLeft:"-1px",display:"block",whiteSpace:"pre-wrap"},".cm-diagnostic-error":{borderLeft:"5px solid #d11"},".cm-diagnostic-warning":{borderLeft:"5px solid orange"},".cm-diagnostic-info":{borderLeft:"5px solid #999"},".cm-diagnostic-hint":{borderLeft:"5px solid #66d"},".cm-diagnosticAction":{font:"inherit",border:"none",padding:"2px 4px",backgroundColor:"#444",color:"white",borderRadius:"3px",marginLeft:"8px",cursor:"pointer"},".cm-diagnosticSource":{fontSize:"70%",opacity:.7},".cm-lintRange":{backgroundPosition:"left bottom",backgroundRepeat:"repeat-x",paddingBottom:"0.7px"},".cm-lintRange-error":{backgroundImage:vA("#f11")},".cm-lintRange-warning":{backgroundImage:vA("orange")},".cm-lintRange-info":{backgroundImage:vA("#999")},".cm-lintRange-hint":{backgroundImage:vA("#66d")},".cm-lintRange-active":{backgroundColor:"#ffdd9980"},".cm-tooltip-lint":{padding:0,margin:0},".cm-lintPoint":{position:"relative","&:after":{content:'""',position:"absolute",bottom:0,left:"-2px",borderLeft:"3px solid transparent",borderRight:"3px solid transparent",borderBottom:"4px solid #d11"}},".cm-lintPoint-warning":{"&:after":{borderBottomColor:"orange"}},".cm-lintPoint-info":{"&:after":{borderBottomColor:"#999"}},".cm-lintPoint-hint":{"&:after":{borderBottomColor:"#66d"}},".cm-panel.cm-panel-lint":{position:"relative","& ul":{maxHeight:"100px",overflowY:"auto","& [aria-selected]":{backgroundColor:"#ddd","& u":{textDecoration:"underline"}},"&:focus [aria-selected]":{background_fallback:"#bdf",backgroundColor:"Highlight",color_fallback:"white",color:"HighlightText"},"& u":{textDecoration:"none"},padding:0,margin:0},"& [name=close]":{position:"absolute",top:"0",right:"2px",background:"inherit",border:"none",font:"inherit",padding:0,margin:0}},"&dark .cm-lintRange-active":{backgroundColor:"#86714a80"},"&dark .cm-panel.cm-panel-lint ul":{"& [aria-selected]":{backgroundColor:"#2e343e"}}});function PMt(e){return e=="error"?4:e=="warning"?3:e=="info"?2:1}function DMt(e){let t="hint",n=1;for(let i of e){let r=PMt(i.severity);r>n&&(n=r,t=i.severity)}return t}const pje=iAt(CMt,{hideOn:SMt}),MMt=[nc,Qt.decorations.compute([nc],e=>{let{selected:t,panel:n}=e.field(nc);return!t||!n||t.from==t.to?xn.none:xn.set([EMt.range(t.from,t.to)])}),pje,IMt];var rte=function(t){t===void 0&&(t={});var n=t,i=n.crosshairCursor,r=i===void 0?!1:i,s=[];t.closeBracketsKeymap!==!1&&(s=s.concat(z_t)),t.defaultKeymap!==!1&&(s=s.concat(qDt)),t.searchKeymap!==!1&&(s=s.concat(vMt)),t.historyKeymap!==!1&&(s=s.concat(JPt)),t.foldKeymap!==!1&&(s=s.concat(WAt)),t.completionKeymap!==!1&&(s=s.concat(q2e)),t.lintKeymap!==!1&&(s=s.concat(NMt));var a=[];return t.lineNumbers!==!1&&a.push(c2e()),t.highlightActiveLineGutter!==!1&&a.push(vAt()),t.highlightSpecialChars!==!1&&a.push(RTt()),t.history!==!1&&a.push(VPt()),t.foldGutter!==!1&&a.push(YAt()),t.drawSelection!==!1&&a.push(wTt()),t.dropCursor!==!1&&a.push(CTt()),t.allowMultipleSelections!==!1&&a.push(ji.allowMultipleSelections.of(!0)),t.indentOnInput!==!1&&a.push(FAt()),t.syntaxHighlighting!==!1&&a.push(k2e(t2t,{fallback:!0})),t.bracketMatching!==!1&&a.push(l2t()),t.closeBrackets!==!1&&a.push(F_t()),t.autocompletion!==!1&&a.push(X_t()),t.rectangularSelection!==!1&&a.push(qTt()),r!==!1&&a.push(GTt()),t.highlightActiveLine!==!1&&a.push($Tt()),t.highlightSelectionMatches!==!1&&a.push(ZDt()),t.tabSize&&typeof t.tabSize=="number"&&a.push(l1.of(" ".repeat(t.tabSize))),a.concat([o1.of(s.flat())]).filter(Boolean)};const LMt="#e5c07b",ste="#e06c75",$Mt="#56b6c2",FMt="#ffffff",H2="#abb2bf",S8="#7d8799",BMt="#61afef",UMt="#98c379",ate="#d19a66",QMt="#c678dd",zMt="#21252b",ote="#2c313a",lte="#282c34",nL="#353a42",VMt="#3E4451",cte="#528bff",HMt=Qt.theme({"&":{color:H2,backgroundColor:lte},".cm-content":{caretColor:cte},".cm-cursor, .cm-dropCursor":{borderLeftColor:cte},"&.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground, .cm-selectionBackground, .cm-content ::selection":{backgroundColor:VMt},".cm-panels":{backgroundColor:zMt,color:H2},".cm-panels.cm-panels-top":{borderBottom:"2px solid black"},".cm-panels.cm-panels-bottom":{borderTop:"2px solid black"},".cm-searchMatch":{backgroundColor:"#72a1ff59",outline:"1px solid #457dff"},".cm-searchMatch.cm-searchMatch-selected":{backgroundColor:"#6199ff2f"},".cm-activeLine":{backgroundColor:"#6699ff0b"},".cm-selectionMatch":{backgroundColor:"#aafe661a"},"&.cm-focused .cm-matchingBracket, &.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bad0f847"},".cm-gutters":{backgroundColor:lte,color:S8,border:"none"},".cm-activeLineGutter":{backgroundColor:ote},".cm-foldPlaceholder":{backgroundColor:"transparent",border:"none",color:"#ddd"},".cm-tooltip":{border:"none",backgroundColor:nL},".cm-tooltip .cm-tooltip-arrow:before":{borderTopColor:"transparent",borderBottomColor:"transparent"},".cm-tooltip .cm-tooltip-arrow:after":{borderTopColor:nL,borderBottomColor:nL},".cm-tooltip-autocomplete":{"& > ul > li[aria-selected]":{backgroundColor:ote,color:H2}}},{dark:!0}),qMt=zE.define([{tag:ne.keyword,color:QMt},{tag:[ne.name,ne.deleted,ne.character,ne.propertyName,ne.macroName],color:ste},{tag:[ne.function(ne.variableName),ne.labelName],color:BMt},{tag:[ne.color,ne.constant(ne.name),ne.standard(ne.name)],color:ate},{tag:[ne.definition(ne.name),ne.separator],color:H2},{tag:[ne.typeName,ne.className,ne.number,ne.changed,ne.annotation,ne.modifier,ne.self,ne.namespace],color:LMt},{tag:[ne.operator,ne.operatorKeyword,ne.url,ne.escape,ne.regexp,ne.link,ne.special(ne.string)],color:$Mt},{tag:[ne.meta,ne.comment],color:S8},{tag:ne.strong,fontWeight:"bold"},{tag:ne.emphasis,fontStyle:"italic"},{tag:ne.strikethrough,textDecoration:"line-through"},{tag:ne.link,color:S8,textDecoration:"underline"},{tag:ne.heading,fontWeight:"bold",color:ste},{tag:[ne.atom,ne.bool,ne.special(ne.variableName)],color:ate},{tag:[ne.processingInstruction,ne.string,ne.inserted],color:UMt},{tag:ne.invalid,color:FMt}]),WMt=[HMt,k2e(qMt)];var KMt=Qt.theme({"&":{backgroundColor:"#fff"}},{dark:!1}),GMt=function(t){t===void 0&&(t={});var n=t,i=n.indentWithTab,r=i===void 0?!0:i,s=n.editable,a=s===void 0?!0:s,l=n.readOnly,c=l===void 0?!1:l,u=n.theme,d=u===void 0?"light":u,f=n.placeholder,h=f===void 0?"":f,m=n.basicSetup,g=m===void 0?!0:m,b=[];switch(r&&b.unshift(o1.of([WDt])),g&&(typeof g=="boolean"?b.unshift(rte()):b.unshift(rte(g))),h&&b.unshift(QTt(h)),d){case"light":b.push(KMt);break;case"dark":b.push(WMt);break;case"none":break;default:b.push(d);break}return a===!1&&b.push(Qt.editable.of(!1)),c&&b.push(ji.readOnly.of(!0)),[...b]},XMt=e=>({line:e.state.doc.lineAt(e.state.selection.main.from),lineCount:e.state.doc.lines,lineBreak:e.state.lineBreak,length:e.state.doc.length,readOnly:e.state.readOnly,tabSize:e.state.tabSize,selection:e.state.selection,selectionAsSingle:e.state.selection.asSingle().main,ranges:e.state.selection.ranges,selectionCode:e.state.sliceDoc(e.state.selection.main.from,e.state.selection.main.to),selections:e.state.selection.ranges.map(t=>e.state.sliceDoc(t.from,t.to)),selectedText:e.state.selection.ranges.some(t=>!t.empty)});class YMt{constructor(t,n){this.timeLeftMS=void 0,this.timeoutMS=void 0,this.isCancelled=!1,this.isTimeExhausted=!1,this.callbacks=[],this.timeLeftMS=n,this.timeoutMS=n,this.callbacks.push(t)}tick(){if(!this.isCancelled&&!this.isTimeExhausted&&(this.timeLeftMS--,this.timeLeftMS<=0)){this.isTimeExhausted=!0;var t=this.callbacks.slice();this.callbacks.length=0,t.forEach(n=>{try{n()}catch(i){console.error("TimeoutLatch callback error:",i)}})}}cancel(){this.isCancelled=!0,this.callbacks.length=0}reset(){this.timeLeftMS=this.timeoutMS,this.isCancelled=!1,this.isTimeExhausted=!1}get isDone(){return this.isCancelled||this.isTimeExhausted}}class ute{constructor(){this.interval=null,this.latches=new Set}add(t){this.latches.add(t),this.start()}remove(t){this.latches.delete(t),this.latches.size===0&&this.stop()}start(){this.interval===null&&(this.interval=setInterval(()=>{this.latches.forEach(t=>{t.tick(),t.isDone&&this.remove(t)})},1))}stop(){this.interval!==null&&(clearInterval(this.interval),this.interval=null)}}var iL=null,ZMt=()=>typeof window>"u"?new ute:(iL||(iL=new ute),iL),JMt=Qt.theme({"& .cm-scroller":{height:"100% !important"}}),dte=null,rL=null;function e5t(e,t,n,i,r,s){if(!e&&!t&&!n&&!i&&!r&&!s)return null;var a=JSON.stringify({height:e,minHeight:t,maxHeight:n,width:i,minWidth:r,maxWidth:s});return a===dte||(dte=a,rL=Qt.theme({"&":{height:e,minHeight:t,maxHeight:n,width:i,minWidth:r,maxWidth:s}})),rL}var fte=tf.define(),t5t=200,n5t=[];function i5t(e){var t=e.value,n=e.selection,i=e.onChange,r=e.onStatistics,s=e.onCreateEditor,a=e.onUpdate,l=e.extensions,c=l===void 0?n5t:l,u=e.autoFocus,d=e.theme,f=d===void 0?"light":d,h=e.height,m=h===void 0?null:h,g=e.minHeight,b=g===void 0?null:g,v=e.maxHeight,y=v===void 0?null:v,x=e.width,O=x===void 0?null:x,w=e.minWidth,k=w===void 0?null:w,S=e.maxWidth,E=S===void 0?null:S,C=e.placeholder,N=C===void 0?"":C,T=e.editable,j=T===void 0?!0:T,A=e.readOnly,L=A===void 0?!1:A,_=e.indentWithTab,P=_===void 0?!0:_,I=e.basicSetup,$=I===void 0?!0:I,M=e.root,B=e.initialState,R=p.useState(),V=R[0],K=R[1],Q=p.useState(),q=Q[0],U=Q[1],G=p.useState(),ae=G[0],re=G[1],se=p.useState(()=>({current:null}))[0],me=p.useState(()=>({current:null}))[0],Z=e5t(m,b,y,O,k,E),X=Qt.updateListener.of(Ee=>{if(Ee.docChanged&&typeof i=="function"&&!Ee.transactions.some(De=>De.annotation(fte))){se.current?se.current.reset():(se.current=new YMt(()=>{if(me.current){var De=me.current;me.current=null,De()}se.current=null},t5t),ZMt().add(se.current));var he=Ee.state.doc,Me=he.toString();i(Me,Ee)}r&&r(XMt(Ee))}),J=GMt({theme:f,editable:j,readOnly:L,placeholder:N,indentWithTab:P,basicSetup:$}),oe=[X,...Z?[Z]:[],JMt,...J];return a&&typeof a=="function"&&oe.push(Qt.updateListener.of(a)),oe=oe.concat(c),p.useLayoutEffect(()=>{if(V&&!ae){var Ee={doc:t,selection:n,extensions:oe},he=B?ji.fromJSON(B.json,Ee,B.fields):ji.create(Ee);if(re(he),!q){var Me=new Qt({state:he,parent:V,root:M});U(Me),s&&s(Me,he)}}return()=>{q&&(re(void 0),U(void 0))}},[V,ae]),p.useEffect(()=>{e.container&&K(e.container)},[e.container]),p.useEffect(()=>()=>{q&&(q.destroy(),U(void 0)),se.current&&(se.current.cancel(),se.current=null)},[q]),p.useEffect(()=>{u&&q&&q.focus()},[u,q]),p.useEffect(()=>{q&&q.dispatch({effects:Qn.reconfigure.of(oe)})},[f,c,m,b,y,O,k,E,N,j,L,P,$,i,a]),p.useEffect(()=>{if(t!==void 0){var Ee=q?q.state.doc.toString():"";if(q&&t!==Ee){var he=se.current&&!se.current.isDone,Me=()=>{q&&t!==q.state.doc.toString()&&q.dispatch({changes:{from:0,to:q.state.doc.toString().length,insert:t||""},annotations:[fte.of(!0)]})};he?me.current=Me:Me()}}},[t,q]),{state:ae,setState:re,view:q,setView:U,container:V,setContainer:K}}var r5t=["className","value","selection","extensions","onChange","onStatistics","onCreateEditor","onUpdate","autoFocus","theme","height","minHeight","maxHeight","width","minWidth","maxWidth","basicSetup","placeholder","indentWithTab","editable","readOnly","root","initialState"],mje=p.forwardRef((e,t)=>{var n=e.className,i=e.value,r=i===void 0?"":i,s=e.selection,a=e.extensions,l=a===void 0?[]:a,c=e.onChange,u=e.onStatistics,d=e.onCreateEditor,f=e.onUpdate,h=e.autoFocus,m=e.theme,g=m===void 0?"light":m,b=e.height,v=e.minHeight,y=e.maxHeight,x=e.width,O=e.minWidth,w=e.maxWidth,k=e.basicSetup,S=e.placeholder,E=e.indentWithTab,C=e.editable,N=e.readOnly,T=e.root,j=e.initialState,A=PPt(e,r5t),L=p.useRef(null),_=i5t({root:T,value:r,autoFocus:h,theme:g,height:b,minHeight:v,maxHeight:y,width:x,minWidth:O,maxWidth:w,basicSetup:k,placeholder:S,indentWithTab:E,editable:C,readOnly:N,selection:s,onChange:c,onStatistics:u,onCreateEditor:d,onUpdate:f,extensions:l,initialState:j}),P=_.state,I=_.view,$=_.container,M=_.setContainer;p.useImperativeHandle(t,()=>({editor:L.current,state:P,view:I}),[L,$,P,I]);var B=p.useCallback(V=>{L.current=V,M(V)},[M]);if(typeof r!="string")throw new Error("value must be typeof string but got "+typeof r);var R=typeof g=="string"?"cm-theme-"+g:"cm-theme";return o.jsx("div",b8({ref:B,className:""+R+(n?" "+n:"")},A))});mje.displayName="CodeMirror";function gje(e){const t=e.toLowerCase(),n=t.split("/").pop()??t,i=n.includes(".")?n.split(".").pop():"";return n==="dockerfile"||n.startsWith("dockerfile.")||n.endsWith(".dockerfile")?[bQ.define(IPt)]:i==="py"||i==="pyi"?[zIt()]:["ts","tsx","mts","cts"].includes(i??"")?[r8({typescript:!0,jsx:i==="tsx"})]:["js","jsx","mjs","cjs"].includes(i??"")?[r8({jsx:i==="jsx"})]:i==="json"||i==="jsonc"?[cNt()]:i==="yaml"||i==="yml"?[vPt()]:["md","markdown"].includes(i??"")?[SRt()]:[]}function WE({value:e,path:t,onChange:n,readOnly:i=!1,theme:r="light",lineNumberStart:s=1,height:a="100%",minHeight:l,maxHeight:c}){const u=p.useMemo(()=>[...gje(t),...s===1?[]:[c2e({formatNumber:d=>String(d+s-1)})]],[s,t]);return o.jsx(mje,{value:e,height:a,minHeight:l,maxHeight:c,theme:r,extensions:u,editable:!i,onChange:n,basicSetup:{lineNumbers:s===1,foldGutter:!0,highlightActiveLine:!0,highlightActiveLineGutter:!0,autocompletion:!1}})}const bje=Object.freeze(Object.defineProperty({__proto__:null,default:WE,languageFor:gje},Symbol.toStringTag,{value:"Module"}));function s5t(e){var s;const t=e.split(/\r?\n/);if(((s=t[0])==null?void 0:s.trim())!=="---")return{body:e,frontmatter:[]};const n=t.findIndex((a,l)=>l>0&&a.trim()==="---");if(n<0)return{body:e,frontmatter:[]};const i=RTe(t.slice(1,n).join(` `));if(i.errors.length>0)return{body:e,frontmatter:[]};const r=i.toJS();return!r||typeof r!="object"||Array.isArray(r)?{body:e,frontmatter:[]}:{body:t.slice(n+1).join(` -`).replace(/^\s*\n/,""),frontmatter:Object.entries(r).map(([a,l])=>({key:a,value:typeof l=="string"?l:FU(l).trim()}))}}function zMt(){return o.jsx("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"M2.75 5.5h5l1.5 1.75h8v7.25a1.75 1.75 0 0 1-1.75 1.75h-11a1.75 1.75 0 0 1-1.75-1.75v-9Z"})})}function VMt(){return o.jsxs("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",children:[o.jsx("path",{d:"M5 2.75h6l4 4v10.5H5z"}),o.jsx("path",{d:"M11 2.75v4h4"})]})}function HMt(e){const t={children:[]};for(const i of e){let r=t;const s=i.path.split("/").filter(Boolean);s.forEach((a,l)=>{let c=r.children.find(u=>u.name===a);if(!c){const u=s.slice(0,l+1).join("/");c={name:a,path:u,children:[]},r.children.push(c)}l===s.length-1&&(c.file=i),r=c})}const n=i=>{i.sort((r,s)=>+!!r.file-+!!s.file||r.name.localeCompare(s.name)),i.forEach(r=>n(r.children))};return n(t.children),t.children}function sje({nodes:e,depth:t,activePath:n,onSelect:i}){return e.map(r=>o.jsxs("div",{children:[r.file?o.jsxs("button",{type:"button",className:`skill-file-tree__row${r.path===n?" is-active":""}`,style:{paddingLeft:`${12+t*16}px`},onClick:()=>i(r.file),title:r.path,children:[o.jsx(VMt,{}),o.jsx("span",{children:r.name}),o.jsxs("small",{children:[r.file.size.toLocaleString()," B"]})]}):o.jsxs("div",{className:"skill-file-tree__row is-folder",style:{paddingLeft:`${12+t*16}px`},title:r.path,children:[o.jsx(zMt,{}),o.jsx("span",{children:r.name})]}),r.children.length>0?o.jsx(sje,{nodes:r.children,depth:t+1,activePath:n,onSelect:i}):null]},r.path))}function qMt(e){if(e.content===void 0)return;if(e.content.startsWith("data:")){const i=document.createElement("a");i.href=e.content,i.download=e.path.split("/").pop()||"skill-file",i.click();return}const t=URL.createObjectURL(new Blob([e.content])),n=document.createElement("a");n.href=t,n.download=e.path.split("/").pop()||"skill-file",n.click(),URL.revokeObjectURL(t)}function aje({files:e}){var m;const{t,i18n:n}=Te("skills"),i=p.useMemo(()=>HMt(e),[e]),[r,s]=p.useState(((m=e[0])==null?void 0:m.path)||""),[a,l]=p.useState("preview"),c=e.find(g=>g.path===r)||e[0],u=(c==null?void 0:c.path.toLowerCase())||"",d=u.endsWith(".md")||u.endsWith(".markdown"),f=/\.(png|jpe?g|gif|webp|svg)$/.test(u),h=p.useMemo(()=>QMt(d&&(c==null?void 0:c.content)!==void 0?c.content:""),[c==null?void 0:c.content,d]);return o.jsxs("div",{className:"skill-file-browser",children:[o.jsx("aside",{className:"skill-file-tree","aria-label":t("fileTree.ariaLabel"),children:o.jsx(sje,{nodes:i,depth:0,activePath:(c==null?void 0:c.path)||"",onSelect:g=>s(g.path)})}),o.jsx("section",{className:"skill-file-preview",children:c?o.jsxs(o.Fragment,{children:[o.jsxs("header",{children:[o.jsx("span",{title:c.path,children:c.path}),o.jsxs("div",{children:[d?o.jsx("button",{type:"button",onClick:()=>l(g=>g==="preview"?"source":"preview"),children:t(a==="preview"?"fileTree.viewSource":"fileTree.viewPreview")}):null,o.jsx("button",{type:"button",disabled:c.content===void 0,onClick:()=>qMt(c),children:t("fileTree.download")})]})]}),o.jsx("div",{className:"skill-file-preview__body",children:c.kind==="binary"||c.content===void 0?o.jsxs("div",{className:"skill-file-preview__binary",children:[o.jsx("strong",{children:t("fileTree.binaryFile")}),o.jsx("span",{children:t("fileTree.bytes",{value:new Intl.NumberFormat(n.resolvedLanguage).format(c.size)})}),o.jsx("span",{children:t("fileTree.binaryDescription")})]}):f?o.jsx("img",{src:c.content.startsWith("data:")?c.content:`data:image/svg+xml;charset=utf-8,${encodeURIComponent(c.content)}`,alt:c.path}):d&&a==="preview"?o.jsxs("div",{className:"skill-file-preview__markdown",children:[h.frontmatter.length>0?o.jsx("dl",{className:"skill-file-preview__frontmatter","aria-label":t("fileTree.metadata"),children:h.frontmatter.map(g=>o.jsxs("div",{children:[o.jsx("dt",{children:g.key}),o.jsx("dd",{children:g.value})]},g.key))}):null,o.jsx(Bu,{text:h.body,allowRawHtml:!1,className:"skill-file-preview__markdown-body"})]}):o.jsx(zE,{value:c.content,path:c.path,readOnly:!0,onChange:()=>{}})})]}):o.jsx("div",{className:"skill-file-preview__binary",children:t("fileTree.noFiles")})})]})}const WMt=1200,GMt=3,oje=2,KMt=/SKILL\.md|frontmatter|Skill name|description|根目录|目录名|UTF-8|文本文件|文件数|符号链接|敏感凭证/i,rte={concise:"generation.styles.concise",strict:"generation.styles.strict",tutorial:"generation.styles.tutorial",automation:"generation.styles.automation"};function ste(e,t){var n;return{id:`group-${Date.now()}-${e}`,model:((n=t.models[e%Math.max(1,t.models.length)])==null?void 0:n.id)||"",style:"concise",customStyle:""}}function XMt(e){return e?e.state==="ready"?Ut("generation.stages.ready"):e.state==="failed"?Ut("generation.stages.failed"):e.state==="cancelled"?Ut("generation.stages.cancelled"):e.stage==="validating"?Ut("generation.stages.validating"):e.stage==="packaging"?Ut("generation.stages.packaging"):Ut("generation.stages.generating"):Ut("generation.stages.preparing")}function eL(e){var t;return e.state==="failed"&&((t=e.validation)==null?void 0:t.valid)===!1&&e.validation.errors.some(n=>KMt.test(n))}function ate(e){var n;const t=((n=e.validation)==null?void 0:n.errors.join(` -`))||e.error||Ut("generation.validation.fallback");return[Ut("generation.validation.repairInstruction"),Ut("generation.validation.recheckInstruction"),t.slice(0,2e3)].join(` +`).replace(/^\s*\n/,""),frontmatter:Object.entries(r).map(([a,l])=>({key:a,value:typeof l=="string"?l:VU(l).trim()}))}}function a5t(){return o.jsx("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"M2.75 5.5h5l1.5 1.75h8v7.25a1.75 1.75 0 0 1-1.75 1.75h-11a1.75 1.75 0 0 1-1.75-1.75v-9Z"})})}function o5t(){return o.jsxs("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",children:[o.jsx("path",{d:"M5 2.75h6l4 4v10.5H5z"}),o.jsx("path",{d:"M11 2.75v4h4"})]})}function l5t(e){const t={children:[]};for(const i of e){let r=t;const s=i.path.split("/").filter(Boolean);s.forEach((a,l)=>{let c=r.children.find(u=>u.name===a);if(!c){const u=s.slice(0,l+1).join("/");c={name:a,path:u,children:[]},r.children.push(c)}l===s.length-1&&(c.file=i),r=c})}const n=i=>{i.sort((r,s)=>+!!r.file-+!!s.file||r.name.localeCompare(s.name)),i.forEach(r=>n(r.children))};return n(t.children),t.children}function yje({nodes:e,depth:t,activePath:n,onSelect:i}){return e.map(r=>o.jsxs("div",{children:[r.file?o.jsxs("button",{type:"button",className:`skill-file-tree__row${r.path===n?" is-active":""}`,style:{paddingLeft:`${12+t*16}px`},onClick:()=>i(r.file),title:r.path,children:[o.jsx(o5t,{}),o.jsx("span",{children:r.name}),o.jsxs("small",{children:[r.file.size.toLocaleString()," B"]})]}):o.jsxs("div",{className:"skill-file-tree__row is-folder",style:{paddingLeft:`${12+t*16}px`},title:r.path,children:[o.jsx(a5t,{}),o.jsx("span",{children:r.name})]}),r.children.length>0?o.jsx(yje,{nodes:r.children,depth:t+1,activePath:n,onSelect:i}):null]},r.path))}function c5t(e){if(e.content===void 0)return;if(e.content.startsWith("data:")){const i=document.createElement("a");i.href=e.content,i.download=e.path.split("/").pop()||"skill-file",i.click();return}const t=URL.createObjectURL(new Blob([e.content])),n=document.createElement("a");n.href=t,n.download=e.path.split("/").pop()||"skill-file",n.click(),URL.revokeObjectURL(t)}function vje({files:e}){var m;const{t,i18n:n}=Ae("skills"),i=p.useMemo(()=>l5t(e),[e]),[r,s]=p.useState(((m=e[0])==null?void 0:m.path)||""),[a,l]=p.useState("preview"),c=e.find(g=>g.path===r)||e[0],u=(c==null?void 0:c.path.toLowerCase())||"",d=u.endsWith(".md")||u.endsWith(".markdown"),f=/\.(png|jpe?g|gif|webp|svg)$/.test(u),h=p.useMemo(()=>s5t(d&&(c==null?void 0:c.content)!==void 0?c.content:""),[c==null?void 0:c.content,d]);return o.jsxs("div",{className:"skill-file-browser",children:[o.jsx("aside",{className:"skill-file-tree","aria-label":t("fileTree.ariaLabel"),children:o.jsx(yje,{nodes:i,depth:0,activePath:(c==null?void 0:c.path)||"",onSelect:g=>s(g.path)})}),o.jsx("section",{className:"skill-file-preview",children:c?o.jsxs(o.Fragment,{children:[o.jsxs("header",{children:[o.jsx("span",{title:c.path,children:c.path}),o.jsxs("div",{children:[d?o.jsx("button",{type:"button",onClick:()=>l(g=>g==="preview"?"source":"preview"),children:t(a==="preview"?"fileTree.viewSource":"fileTree.viewPreview")}):null,o.jsx("button",{type:"button",disabled:c.content===void 0,onClick:()=>c5t(c),children:t("fileTree.download")})]})]}),o.jsx("div",{className:"skill-file-preview__body",children:c.kind==="binary"||c.content===void 0?o.jsxs("div",{className:"skill-file-preview__binary",children:[o.jsx("strong",{children:t("fileTree.binaryFile")}),o.jsx("span",{children:t("fileTree.bytes",{value:new Intl.NumberFormat(n.resolvedLanguage).format(c.size)})}),o.jsx("span",{children:t("fileTree.binaryDescription")})]}):f?o.jsx("img",{src:c.content.startsWith("data:")?c.content:`data:image/svg+xml;charset=utf-8,${encodeURIComponent(c.content)}`,alt:c.path}):d&&a==="preview"?o.jsxs("div",{className:"skill-file-preview__markdown",children:[h.frontmatter.length>0?o.jsx("dl",{className:"skill-file-preview__frontmatter","aria-label":t("fileTree.metadata"),children:h.frontmatter.map(g=>o.jsxs("div",{children:[o.jsx("dt",{children:g.key}),o.jsx("dd",{children:g.value})]},g.key))}):null,o.jsx(Uu,{text:h.body,allowRawHtml:!1,className:"skill-file-preview__markdown-body"})]}):o.jsx(WE,{value:c.content,path:c.path,readOnly:!0,onChange:()=>{}})})]}):o.jsx("div",{className:"skill-file-preview__binary",children:t("fileTree.noFiles")})})]})}const u5t=1200,d5t=3,xje=2,f5t=/SKILL\.md|frontmatter|Skill name|description|根目录|目录名|UTF-8|文本文件|文件数|符号链接|敏感凭证/i,hte={concise:"generation.styles.concise",strict:"generation.styles.strict",tutorial:"generation.styles.tutorial",automation:"generation.styles.automation"};function pte(e,t){var n;return{id:`group-${Date.now()}-${e}`,model:((n=t.models[e%Math.max(1,t.models.length)])==null?void 0:n.id)||"",style:"concise",customStyle:""}}function h5t(e){return e?e.state==="ready"?zt("generation.stages.ready"):e.state==="failed"?zt("generation.stages.failed"):e.state==="cancelled"?zt("generation.stages.cancelled"):e.stage==="validating"?zt("generation.stages.validating"):e.stage==="packaging"?zt("generation.stages.packaging"):zt("generation.stages.generating"):zt("generation.stages.preparing")}function sL(e){var t;return e.state==="failed"&&((t=e.validation)==null?void 0:t.valid)===!1&&e.validation.errors.some(n=>f5t.test(n))}function mte(e){var n;const t=((n=e.validation)==null?void 0:n.errors.join(` +`))||e.error||zt("generation.validation.fallback");return[zt("generation.validation.repairInstruction"),zt("generation.validation.recheckInstruction"),t.slice(0,2e3)].join(` -`)}function YMt(e){var t;if(e.repairing||((t=e.task)==null?void 0:t.state)==="running"&&e.repairMode){if(e.repairMode==="manual")return Ut("generation.stages.repairingAgain");const n=Math.max(1,e.repairAttempts||1);return Ut("generation.stages.autoRepairing",{attempt:n,max:oje})}return XMt(e.task)}function ote(){return o.jsxs("svg",{className:"skill-generation__spinner",viewBox:"0 0 20 20","aria-hidden":"true",children:[o.jsx("circle",{cx:"10",cy:"10",r:"7"}),o.jsx("path",{d:"M10 3a7 7 0 0 1 7 7"})]})}function ZMt(e,t=Date.now()){if(!(e!=null&&e.expiresAt))return Ut("generation.sessionMax");const n=Math.max(0,new Date(e.expiresAt).getTime()-t),i=Math.floor(n/6e4),r=Math.floor(n%6e4/1e3);return Ut("generation.remaining",{minutes:i,seconds:String(r).padStart(2,"0")})}function JMt(e){return e?e.length>64?Ut("generation.validation.nameTooLong"):/^[a-z0-9-]+$/.test(e)?"":Ut("generation.validation.invalidName"):""}function lte(e){return e?e.length>128?Ut("generation.validation.modelTooLong"):/^[A-Za-z0-9][A-Za-z0-9._:/-]*$/.test(e)?"":Ut("generation.validation.invalidModel"):""}function tL(e){return`${e.region||""}:${e.id}`}function e5t(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m14.5 6-6 6 6 6",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round"})})}function t5t({operation:e,cloudProvider:t,space:n,availableSpaces:i=[],spacesLoading:r=!1,initialIntent:s="",source:a,onBack:l,onPublished:c}){var _e,Ze,at,wt;const{t:u}=Te("skills"),[d,f]=p.useState(null),[h,m]=p.useState(null),[g,b]=p.useState(s),[v,y]=p.useState(""),[x,O]=p.useState([]),[w,k]=p.useState([]),[S,E]=p.useState(""),[C,N]=p.useState(!1),[_,j]=p.useState(""),[A,F]=p.useState(""),[T,P]=p.useState(null),[R,L]=p.useState(""),[M,U]=p.useState(""),[I,H]=p.useState(n?tL(n):""),[K,Q]=p.useState(Date.now()),q=p.useRef([]);p.useEffect(()=>{const Se=new AbortController;return sI(Se.signal).then(ve=>{f(ve),O([ste(0,ve)])}).catch(ve=>{Se.signal.aborted||m(ja(ve,Ut("generation.errors.loadCapability")))}),()=>Se.abort()},[]),p.useEffect(()=>{q.current=w},[w]),p.useEffect(()=>{const Se=window.setInterval(()=>Q(Date.now()),1e3);return()=>window.clearInterval(Se)},[]),p.useEffect(()=>{const Se=ve=>{q.current.some(He=>{var Je;return((Je=He.task)==null?void 0:Je.state)==="running"||He.repairing})&&ve.preventDefault()};return window.addEventListener("beforeunload",Se),()=>{var ve;window.removeEventListener("beforeunload",Se);for(const He of q.current)(ve=He.task)!=null&&ve.jobId&&L1t(He.task.jobId).catch(()=>{})}},[]),p.useEffect(()=>{if(!w.some(Je=>{var Ce;return((Ce=Je.task)==null?void 0:Ce.state)==="running"||Je.repairing}))return;let Se=!1,ve;const He=async()=>{const Je=q.current,Ce=await Promise.all(Je.map(async Wt=>{var ln;if(((ln=Wt.task)==null?void 0:ln.state)!=="running")return Wt;try{const cn=await P1t(Wt.task.jobId);if(eL(cn)&&(Wt.repairAttempts||0)ot.map(gt=>gt.id===Wt.id?{...gt,task:cn,repairing:!0,repairMode:"auto",repairAttempts:jt,repairError:void 0}:gt));try{const ot=await HM({jobId:cn.jobId,intent:ate(cn),expectedRevision:cn.revision});return{...Wt,task:ot,artifact:void 0,repairing:!1,repairMode:"auto",repairAttempts:jt,repairError:void 0,error:void 0,pollError:void 0}}catch(ot){return{...Wt,task:cn,repairing:!1,repairMode:void 0,repairAttempts:jt,repairError:ja(ot,Ut("generation.errors.autoRepair")),pollError:void 0}}}let Ot=Wt.artifact;return cn.state==="ready"&&(Ot=await VM(cn.jobId,cn.revision)),{...Wt,task:cn,artifact:Ot,repairing:!1,repairMode:cn.state==="running"?Wt.repairMode:void 0,repairError:void 0,error:void 0,pollError:void 0}}catch(cn){return{...Wt,pollError:ja(cn,Ut("generation.errors.pollCandidate"))}}}));Se||(k(Ce),ve=window.setTimeout(()=>void He(),WMt))};return He(),()=>{Se=!0,ve!==void 0&&window.clearTimeout(ve)}},[w.some(Se=>{var ve;return((ve=Se.task)==null?void 0:ve.state)==="running"||Se.repairing})]);const B=w.find(Se=>Se.id===S)||w[0],ee=e==="create"&&!n,le=i.find(Se=>tL(Se)===I)??null,se=n??le,re=i.map(Se=>({value:tL(Se),label:`${Se.name.trim()||u("generation.unnamedSpace")} · ${xh(Se.region||"cn-beijing",t)}`})),ge=JMt(v),W=!!(d!=null&&d.enabled&&g.trim()&&!ge&&x.length>0&&x.every(Se=>Se.model.trim()&&!lte(Se.model.trim()))),X=(Se,ve)=>{O(He=>He.map(Je=>Je.id===Se?{...Je,...ve}:Je))},ae=async Se=>{const ve={...Se,model:Se.model.trim()},He=Se.style==="custom"?Se.customStyle.trim():Se.style;try{const Je=await I1t({operation:e,intent:g.trim(),model:ve.model,style:He,name:v.trim()||void 0,source:a});return{id:Se.id,config:ve,task:Je}}catch(Je){return{id:Se.id,config:ve,error:ja(Je,Ut("generation.errors.createCandidate"))}}},ue=async()=>{if(!W)return;N(!0),P(null);const Se=x.map(He=>({id:He.id,config:He}));k(Se),E(x[0].id);const ve=await Promise.all(x.map(ae));k(ve)},Oe=async Se=>{k(He=>He.map(Je=>Je.id===Se.id?{...Je,error:void 0}:Je));const ve=await ae(Se.config);k(He=>He.map(Je=>Je.id===Se.id?ve:Je))},ke=async()=>{if(!(!(B!=null&&B.task)||!_.trim()||B.task.state!=="ready")){F("refine"),P(null);try{const Se=await HM({jobId:B.task.jobId,intent:_.trim(),expectedRevision:B.task.revision});k(ve=>ve.map(He=>He.id===B.id?{...He,task:Se,artifact:void 0}:He)),j("")}catch(Se){P(ja(Se,Ut("generation.errors.refine")))}finally{F("")}}},st=async()=>{if(!(!(B!=null&&B.task)||!eL(B.task))){F("refine"),P(null),k(Se=>Se.map(ve=>ve.id===B.id?{...ve,repairing:!0,repairMode:"manual",repairError:void 0}:ve));try{const Se=await HM({jobId:B.task.jobId,intent:ate(B.task),expectedRevision:B.task.revision});k(ve=>ve.map(He=>He.id===B.id?{...He,task:Se,artifact:void 0,repairing:!1,repairMode:"manual",repairError:void 0}:He))}catch(Se){k(ve=>ve.map(He=>He.id===B.id?{...He,repairing:!1,repairMode:void 0,repairError:ja(Se,Ut("generation.errors.repairAgain"))}:He))}finally{F("")}}},Le=async()=>{if(!(!(B!=null&&B.task)||B.task.state!=="ready"||M)){F("publish"),P(null);try{if(!se)throw new Error(Ut("generation.errors.selectSpace"));const Se=B.artifact||await VM(B.task.jobId,B.task.revision),ve=(a==null?void 0:a.region)||se.region||"";if(!tR(ve))throw new Error(Ut("generation.errors.unsupportedRegion"));await M1t({jobId:B.task.jobId,expectedRevision:B.task.revision,expectedArtifactSha256:Se.sha256,disposition:e==="optimize"?"update-source":"create-new",skillSpaceIds:[se.id],projectName:(a==null?void 0:a.projectName)||se.projectName,region:ve,onProgress:He=>L(He.message)}),U(B.id),c()}catch(Se){P(ja(Se,Ut("generation.errors.upload")))}finally{F(""),L("")}}},Me=async()=>{if(!(!(B!=null&&B.task)||B.task.state!=="ready")){F("download");try{const Se=B.artifact||await VM(B.task.jobId,B.task.revision);await $1t(B.task.jobId,B.task.revision,Se.sha256)}catch(Se){P(ja(Se,Ut("generation.errors.download")))}finally{F("")}}},Ie=async()=>{w.some(Se=>{var ve;return((ve=Se.task)==null?void 0:ve.state)==="running"})&&!window.confirm(Ut("generation.leaveConfirmation"))||(await Promise.allSettled(w.flatMap(Se=>{var ve;return((ve=Se.task)==null?void 0:ve.state)==="running"?[D1t({jobId:Se.task.jobId,expectedRevision:Se.task.revision})]:[]})),l())},qe=e==="create"?u("generation.createTitle"):u("generation.optimizeTitle",{name:(a==null?void 0:a.name)||u("generation.skillFallback")}),Ae=Se=>{var ve;return((ve=d==null?void 0:d.models.find(He=>He.id===Se))==null?void 0:ve.label)||Se},ze=Se=>Se.config.style==="custom"?Se.config.customStyle.trim()||u("generation.styles.customFallback"):u(rte[Se.config.style]),Ee=[...Object.entries(rte).map(([Se,ve])=>({value:Se,label:u(ve)})),{value:"custom",label:u("generation.styles.custom")}],De=Se=>Se.error||Se.repairError?u("generation.stages.failed"):YMt(Se),J=Se=>!Se.error&&!Se.repairError&&(Se.repairing||!Se.task||Se.task.state==="running"),he=w.some(Se=>{var ve;return((ve=Se.task)==null?void 0:ve.state)==="ready"});return o.jsxs("section",{className:"skill-generation",children:[o.jsxs("header",{className:"skill-generation__header",children:[o.jsx("button",{type:"button",className:"skillcenter-back",onClick:()=>void Ie(),"aria-label":u("generation.back"),children:o.jsx(e5t,{})}),o.jsxs("div",{children:[o.jsx("h1",{children:qe}),o.jsx("p",{children:(n==null?void 0:n.name)||u("generation.home")})]}),w.length>0?o.jsx("span",{className:"skill-generation__ttl",children:ZMt(B==null?void 0:B.task,K)}):null]}),C?o.jsxs("div",{className:"skill-generation__workspace",children:[o.jsx("div",{className:"skill-generation__candidate-tabs",role:"tablist","aria-label":u("generation.candidates"),children:w.map(Se=>o.jsxs("button",{type:"button",role:"tab","aria-selected":(B==null?void 0:B.id)===Se.id,className:(B==null?void 0:B.id)===Se.id?"is-active":"",onClick:()=>E(Se.id),children:[o.jsxs("span",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.style")}),o.jsx("strong",{children:ze(Se)})]}),o.jsxs("span",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.model")}),o.jsx("strong",{children:Ae(Se.config.model)})]}),o.jsxs("span",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.progress")}),o.jsxs("strong",{children:[J(Se)?o.jsx(ote,{}):null,De(Se)]})]})]},Se.id))}),B?o.jsxs("div",{className:"skill-generation__candidate",children:[o.jsxs("section",{className:"skill-generation__activity",children:[o.jsx("header",{children:o.jsxs("div",{className:"skill-generation__candidate-summary",children:[o.jsxs("div",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.style")}),o.jsx("strong",{children:ze(B)})]}),o.jsxs("div",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.model")}),o.jsx("strong",{children:Ae(B.config.model)})]}),o.jsxs("div",{className:"skill-generation__summary-row","aria-live":"polite",children:[o.jsx("span",{children:u("generation.progress")}),o.jsxs("strong",{children:[J(B)?o.jsx(ote,{}):null,J(B)?o.jsx(xn,{children:De(B)}):De(B)]})]})]})}),B.task?o.jsx(OSt,{activities:B.task.activities}):null,B.pollError?o.jsx("div",{className:"skill-inline-notice",children:o.jsx(cl,{error:B.pollError})}):null,B.repairError?o.jsx("div",{className:"skill-inline-notice",children:o.jsx(cl,{error:B.repairError})}):null,B.error?o.jsxs("div",{className:"skill-inline-error",children:[o.jsx(cl,{error:B.error}),o.jsx("button",{type:"button",onClick:()=>void Oe(B),children:u("generation.retryCandidate")})]}):null,(_e=B.task)!=null&&_e.validation&&!B.task.validation.valid&&!B.repairing&&B.task.state==="failed"?o.jsxs("div",{className:"skill-validation-errors",children:[o.jsx("strong",{children:u("generation.formatValidationFailed")}),B.task.validation.errors.map(Se=>o.jsx("p",{children:Se},Se)),eL(B.task)?o.jsx("button",{type:"button",disabled:!!A,onClick:()=>void st(),children:u("generation.repairAgain")}):null]}):null]}),o.jsxs("section",{className:"skill-generation__files",children:[o.jsxs("header",{children:[o.jsx("h2",{children:u("generation.files")}),((Ze=B.task)==null?void 0:Ze.state)==="ready"?o.jsx("button",{type:"button",onClick:()=>void Me(),disabled:!!A,children:u("generation.downloadZip")}):null]}),B.artifact?o.jsx(aje,{files:B.artifact.files}):o.jsx("div",{className:"skill-generation__files-empty",children:((at=B.task)==null?void 0:at.state)==="ready"?u("generation.loadingFiles"):u("generation.filesPending")})]}),((wt=B.task)==null?void 0:wt.state)==="ready"?o.jsxs("div",{className:"skill-generation__ready-actions",children:[ee?o.jsx("div",{className:"skill-generation__publish-target",children:o.jsx(SA,{label:u("generation.uploadToSpace"),value:I,options:re,onChange:H,disabled:r,placeholder:u(r?"generation.loadingSpaces":"generation.selectSpace")})}):null,o.jsxs("footer",{className:"skill-generation__followup",children:[o.jsx("textarea",{value:_,onChange:Se=>j(Se.target.value),placeholder:u("generation.continuePlaceholder")}),o.jsx("button",{type:"button",className:"skill-button",disabled:!_.trim()||!!A,onClick:()=>void ke(),children:u("generation.continue")}),o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!!A||!!M||!se,onClick:()=>void Le(),children:A==="publish"?R||u("generation.uploading"):u(e==="optimize"?"generation.overwrite":ee?"generation.uploadToSelectedSpace":"generation.uploadToCurrentSpace")})]})]}):null,T?o.jsx("div",{className:"skill-inline-error skill-generation__action-error",children:o.jsx(cl,{error:T})}):null]}):null,!he&&w.every(Se=>Se.error)?o.jsx("div",{className:"skill-inline-error",children:u("generation.allCandidatesFailed")}):null]}):o.jsxs("div",{className:"skill-generation__setup",children:[o.jsx("div",{className:"skill-generation__section-head is-basic",children:o.jsx("div",{children:o.jsx("strong",{children:u("generation.basicInfo")})})}),o.jsxs("label",{children:[o.jsxs("span",{children:[u("generation.goal"),o.jsx("span",{className:"skill-required-mark","aria-hidden":"true",children:"*"})]}),o.jsx("textarea",{required:!0,value:g,onChange:Se=>b(Se.target.value),placeholder:u(e==="create"?"generation.createIntentPlaceholder":"generation.optimizeIntentPlaceholder")})]}),o.jsxs("label",{children:[o.jsx("span",{children:u("generation.skillName")}),o.jsx("input",{value:v,onChange:Se=>y(Se.target.value),placeholder:u("generation.autoNamePlaceholder"),"aria-invalid":!!ge,"aria-describedby":"skill-name-help"}),ge?o.jsx("span",{id:"skill-name-help",className:"skill-generation__field-error",role:"alert",children:ge}):o.jsx("span",{id:"skill-name-help",className:"skill-generation__field-help",children:u("generation.nameHelp")})]}),o.jsx("div",{className:"skill-generation__section-head",children:o.jsxs("div",{children:[o.jsx("strong",{children:u(e==="create"?"generation.createPlans":"generation.optimizePlans")}),o.jsx("span",{children:u(e==="create"?"generation.createPlansDescription":"generation.optimizePlansDescription")})]})}),o.jsxs("div",{className:"skill-generation__groups",children:[x.map((Se,ve)=>o.jsxs("article",{className:"skill-generation__group",children:[o.jsxs("header",{children:[o.jsx("strong",{children:u("generation.plan",{count:ve+1})}),x.length>1?o.jsx("button",{type:"button",onClick:()=>O(He=>He.filter(Je=>Je.id!==Se.id)),children:u("generation.remove")}):null]}),o.jsx(SA,{label:u("generation.model"),required:!0,value:Se.model,options:(d==null?void 0:d.models.map(He=>({value:He.id,label:He.label})))||[],onChange:He=>X(Se.id,{model:He}),allowCustom:!0,placeholder:u("generation.modelPlaceholder"),error:lte(Se.model.trim())}),o.jsx(SA,{label:u("generation.style"),required:!0,value:Se.style,options:Ee,onChange:He=>X(Se.id,{style:He})}),Se.style==="custom"?o.jsxs("label",{children:[o.jsx("span",{children:u("generation.customStyle")}),o.jsx("textarea",{value:Se.customStyle,onChange:He=>X(Se.id,{customStyle:He.target.value}),placeholder:u("generation.customStylePlaceholder")})]}):null]},Se.id)),d&&x.lengthO(Se=>[...Se,ste(Se.length,d)]),children:u("generation.addConfiguration")}):null]}),h?o.jsx("div",{className:"skill-inline-error",children:o.jsx(cl,{error:h})}):null,d&&!d.enabled?o.jsx("div",{className:"skill-inline-notice",children:u("generation.notConfigured")}):null,o.jsx("div",{className:"skill-generation__setup-actions",children:o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!W,onClick:()=>void ue(),children:u("generation.generate")})})]})]})}function GQ({title:e,children:t,onClose:n,className:i=""}){const{t:r}=Te("skills"),s=p.useRef(null);return p.useEffect(()=>{var l;(l=s.current)==null||l.focus();const a=c=>c.key==="Escape"&&n();return window.addEventListener("keydown",a),()=>window.removeEventListener("keydown",a)},[n]),o.jsx("div",{className:"skill-dialog-backdrop",onMouseDown:n,children:o.jsxs("section",{className:`skill-dialog${i?` ${i}`:""}`,role:"dialog","aria-modal":"true","aria-label":e,onMouseDown:a=>a.stopPropagation(),children:[o.jsxs("header",{children:[o.jsx("h2",{children:e}),o.jsx("button",{ref:s,type:"button",onClick:n,"aria-label":r("management.close"),children:r("management.close")})]}),t]})})}function n5t({region:e,regionOptions:t,onClose:n,onCreated:i}){const{t:r}=Te("skills"),[s,a]=p.useState(""),[l,c]=p.useState(""),[u,d]=p.useState(e),[f,h]=p.useState(!1),[m,g]=p.useState(null),b=async()=>{if(s.trim()){h(!0),g(null);try{const v=await b1t({name:s.trim(),description:l.trim()||void 0,region:u});i({...v,region:v.region||u})}catch(v){g(ja(v,r("management.createSpaceFailed")))}finally{h(!1)}}};return o.jsxs(GQ,{title:r("management.createSpaceTitle"),onClose:n,children:[o.jsxs("div",{className:"skill-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:r("management.name")}),o.jsx("input",{autoFocus:!0,value:s,maxLength:128,onChange:v=>a(v.target.value)})]}),o.jsx(SA,{label:r("management.region"),value:u,options:t,onChange:d,required:!0}),o.jsxs("label",{children:[o.jsx("span",{children:r("management.optionalDescription")}),o.jsx("textarea",{value:l,maxLength:1024,onChange:v=>c(v.target.value)})]}),m?o.jsx("div",{className:"skill-inline-error",children:o.jsx(cl,{error:m})}):null]}),o.jsxs("footer",{children:[o.jsx("button",{type:"button",className:"skill-button",onClick:n,children:r("management.cancel")}),o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!s.trim()||f,onClick:()=>void b(),children:r(f?"management.creating":"management.create")})]})]})}function i5t({space:e,region:t,onClose:n,onUpdated:i}){const{t:r}=Te("skills"),[s,a]=p.useState(e.name),[l,c]=p.useState(e.description||""),[u,d]=p.useState(!1),[f,h]=p.useState(null),m=async()=>{if(s.trim()){d(!0),h(null);try{const g=await y1t({spaceId:e.id,name:s.trim(),description:l.trim()||void 0,region:t});i({...e,...g,skillCount:e.skillCount})}catch(g){h(ja(g,r("management.updateSpaceFailed")))}finally{d(!1)}}};return o.jsxs(GQ,{title:r("management.editSpaceTitle"),onClose:n,children:[o.jsxs("div",{className:"skill-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:r("management.name")}),o.jsx("input",{autoFocus:!0,value:s,maxLength:128,onChange:g=>a(g.target.value)})]}),o.jsxs("label",{children:[o.jsx("span",{children:r("management.optionalDescription")}),o.jsx("textarea",{value:l,maxLength:1024,onChange:g=>c(g.target.value)})]}),f?o.jsx("div",{className:"skill-inline-error",children:o.jsx(cl,{error:f})}):null]}),o.jsxs("footer",{children:[o.jsx("button",{type:"button",className:"skill-button",onClick:n,children:r("management.cancel")}),o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!s.trim()||u,onClick:()=>void m(),children:r(u?"management.saving":"management.save")})]})]})}function r5t({space:e,region:t,onClose:n,onUploaded:i}){const{t:r,i18n:s}=Te("skills"),[a,l]=p.useState(null),[c,u]=p.useState(null),[d,f]=p.useState(!1),[h,m]=p.useState(!1),[g,b]=p.useState(null),[v,y]=p.useState(!1),x=p.useRef(0),O=p.useRef(null),w=async S=>{const E=x.current+1;if(x.current=E,l(S),u(null),b(null),f(!!S),!!S)try{const C=await w1t(S);x.current===E&&u({name:C.name,fileCount:C.files.length})}catch(C){x.current===E&&b(ja(C,r("management.archiveValidationFailed")))}finally{x.current===E&&f(!1)}},k=async()=>{if(!(!a||!c)){m(!0),b(null);try{await x1t({spaceId:e.id,region:t,project:e.projectName,file:a}),i()}catch(S){b(ja(S,r("management.uploadFailed")))}finally{m(!1)}}};return o.jsxs(GQ,{title:r("management.uploadTitle",{name:e.name}),className:"skill-upload-dialog",onClose:n,children:[o.jsxs("div",{className:"skill-dialog__body",children:[o.jsx("input",{ref:O,className:"skill-upload-dialog__input",type:"file",accept:".zip,application/zip",onChange:S=>{var E;return void w(((E=S.target.files)==null?void 0:E[0])||null)}}),o.jsxs("button",{type:"button",className:`skill-upload-dropzone${v?" is-dragging":""}`,onClick:()=>{var S;return(S=O.current)==null?void 0:S.click()},onDragEnter:S=>{S.preventDefault(),y(!0)},onDragOver:S=>{S.preventDefault(),S.dataTransfer.dropEffect="copy",y(!0)},onDragLeave:S=>{S.currentTarget.contains(S.relatedTarget)||y(!1)},onDrop:S=>{var E;S.preventDefault(),y(!1),w(((E=S.dataTransfer.files)==null?void 0:E[0])||null)},children:[o.jsx("strong",{children:a?a.name:r("management.dropzone")}),o.jsx("span",{children:a?r("fileTree.bytes",{value:new Intl.NumberFormat(s.resolvedLanguage).format(a.size)}):r("management.chooseLocalFile")})]}),o.jsx("p",{children:r("management.archiveHelp")}),d?o.jsx("div",{className:"skill-inline-notice",children:r("management.validating")}):null,c?o.jsx("div",{className:"skill-inline-notice",children:r("management.validationPassed",{name:c.name,count:c.fileCount})}):null,g?o.jsx("div",{className:"skill-inline-error",children:o.jsx(cl,{error:g})}):null]}),o.jsxs("footer",{children:[o.jsx("button",{type:"button",className:"skill-button",onClick:n,children:r("management.cancel")}),o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!a||!c||d||h,onClick:()=>void k(),children:r(h?"management.uploading":"management.upload")})]})]})}function s5t(e){if(typeof e=="number")return e<1e12?e*1e3:e;const t=e.trim(),n=Number(t);return/^\d+(?:\.\d+)?$/.test(t)?n<1e12?n*1e3:n:Date.parse(t)}function KQ(e,t=Date.now(),n="zh-CN"){if(e===void 0||e==="")return"—";const i=s5t(e);if(!Number.isFinite(i))return"—";const r=Math.floor(Math.max(0,t-i)/1e3),s=new Intl.RelativeTimeFormat(n,{numeric:"always"}),a=(f,h,m)=>n.toLowerCase().startsWith("zh")?`${f} ${m}前`:s.format(-f,h);if(r<60)return a(r,"second","秒");const l=Math.floor(r/60);if(l<60)return a(l,"minute","分钟");const c=Math.floor(l/60);if(c<24)return a(c,"hour","小时");const u=Math.floor(c/24);if(u<30)return a(u,"day","天");const d=Math.floor(u/30);return d<12?a(d,"month","个月"):a(Math.floor(d/12),"year","年")}const a5t=12,cte=12;function oj({disabled:e,placement:t="top",children:n}){const{t:i}=Te("ui"),r=p.useId();return o.jsxs("span",{className:`skillcenter-disabled-action${e?" is-disabled":""} is-${t}`,tabIndex:e?0:void 0,"aria-describedby":e?r:void 0,children:[n,e?o.jsx("span",{id:r,className:"skillcenter-disabled-tooltip",role:"tooltip",children:i("skillCenter.sandboxNotConfigured")}):null]})}const o5t=new Set(["active","available","creating","disabled","enabled","failed","inactive","pending","published","ready","released","running","success","unavailable","unreleased","updating"]);function lje(e,t){const n=(e||"").trim().toLowerCase();return o5t.has(n)?t(`skillCenter.status.${n}`):t("skillCenter.status.unknown")}function l5t(e){const t=(e||"").toLowerCase();return["active","available","enabled","published","ready","released","success"].includes(t)||t==="running"?"is-positive":["creating","pending","updating"].includes(t)?"is-progress":["failed","unavailable"].includes(t)?"is-danger":"is-muted"}function c5t(e,t){if(!e)return"";const n=e.trim(),i=Number(n),r=/^\d+(?:\.\d+)?$/.test(n)?new Date(i<1e12?i*1e3:i):new Date(n);return Number.isNaN(r.getTime())?e:new Intl.DateTimeFormat(t,{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"}).format(r)}function ute(e){if(!e)return 0;const t=e.trim(),n=Number(t),i=/^\d+(?:\.\d+)?$/.test(t)?new Date(n<1e12?n*1e3:n):new Date(t);return Number.isNaN(i.getTime())?0:i.getTime()}function zl(e){return`${e.region||"default"}:${e.projectName||"default"}:${e.id}`}function u5t(e,t){const n=new Map(e.map(i=>[zl(i),i]));for(const i of t)n.set(zl(i),i);return[...n.values()].sort((i,r)=>ute(r.updatedAt)-ute(i.updatedAt))}function d5t(e){const t=e.replace(/\r\n/g,` +`)}function p5t(e){var t;if(e.repairing||((t=e.task)==null?void 0:t.state)==="running"&&e.repairMode){if(e.repairMode==="manual")return zt("generation.stages.repairingAgain");const n=Math.max(1,e.repairAttempts||1);return zt("generation.stages.autoRepairing",{attempt:n,max:xje})}return h5t(e.task)}function gte(){return o.jsxs("svg",{className:"skill-generation__spinner",viewBox:"0 0 20 20","aria-hidden":"true",children:[o.jsx("circle",{cx:"10",cy:"10",r:"7"}),o.jsx("path",{d:"M10 3a7 7 0 0 1 7 7"})]})}function m5t(e,t=Date.now()){if(!(e!=null&&e.expiresAt))return zt("generation.sessionMax");const n=Math.max(0,new Date(e.expiresAt).getTime()-t),i=Math.floor(n/6e4),r=Math.floor(n%6e4/1e3);return zt("generation.remaining",{minutes:i,seconds:String(r).padStart(2,"0")})}function g5t(e){return e?e.length>64?zt("generation.validation.nameTooLong"):/^[a-z0-9-]+$/.test(e)?"":zt("generation.validation.invalidName"):""}function bte(e){return e?e.length>128?zt("generation.validation.modelTooLong"):/^[A-Za-z0-9][A-Za-z0-9._:/-]*$/.test(e)?"":zt("generation.validation.invalidModel"):""}function aL(e){return`${e.region||""}:${e.id}`}function b5t(){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m14.5 6-6 6 6 6",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round"})})}function y5t({operation:e,cloudProvider:t,space:n,availableSpaces:i=[],spacesLoading:r=!1,initialIntent:s="",source:a,onBack:l,onPublished:c}){var Te,We,nt,$t;const{t:u}=Ae("skills"),[d,f]=p.useState(null),[h,m]=p.useState(null),[g,b]=p.useState(s),[v,y]=p.useState(""),[x,O]=p.useState([]),[w,k]=p.useState([]),[S,E]=p.useState(""),[C,N]=p.useState(!1),[T,j]=p.useState(""),[A,L]=p.useState(""),[_,P]=p.useState(null),[I,$]=p.useState(""),[M,B]=p.useState(""),[R,V]=p.useState(n?aL(n):""),[K,Q]=p.useState(Date.now()),q=p.useRef([]);p.useEffect(()=>{const je=new AbortController;return dI(je.signal).then(ve=>{f(ve),O([pte(0,ve)])}).catch(ve=>{je.signal.aborted||m(_a(ve,zt("generation.errors.loadCapability")))}),()=>je.abort()},[]),p.useEffect(()=>{q.current=w},[w]),p.useEffect(()=>{const je=window.setInterval(()=>Q(Date.now()),1e3);return()=>window.clearInterval(je)},[]),p.useEffect(()=>{const je=ve=>{q.current.some(ze=>{var et;return((et=ze.task)==null?void 0:et.state)==="running"||ze.repairing})&&ve.preventDefault()};return window.addEventListener("beforeunload",je),()=>{var ve;window.removeEventListener("beforeunload",je);for(const ze of q.current)(ve=ze.task)!=null&&ve.jobId&&ewt(ze.task.jobId).catch(()=>{})}},[]),p.useEffect(()=>{if(!w.some(et=>{var Se;return((Se=et.task)==null?void 0:Se.state)==="running"||et.repairing}))return;let je=!1,ve;const ze=async()=>{const et=q.current,Se=await Promise.all(et.map(async Kt=>{var en;if(((en=Kt.task)==null?void 0:en.state)!=="running")return Kt;try{const cn=await Y1t(Kt.task.jobId);if(sL(cn)&&(Kt.repairAttempts||0)ut.map(gt=>gt.id===Kt.id?{...gt,task:cn,repairing:!0,repairMode:"auto",repairAttempts:Pt,repairError:void 0}:gt));try{const ut=await XM({jobId:cn.jobId,intent:mte(cn),expectedRevision:cn.revision});return{...Kt,task:ut,artifact:void 0,repairing:!1,repairMode:"auto",repairAttempts:Pt,repairError:void 0,error:void 0,pollError:void 0}}catch(ut){return{...Kt,task:cn,repairing:!1,repairMode:void 0,repairAttempts:Pt,repairError:_a(ut,zt("generation.errors.autoRepair")),pollError:void 0}}}let kt=Kt.artifact;return cn.state==="ready"&&(kt=await GM(cn.jobId,cn.revision)),{...Kt,task:cn,artifact:kt,repairing:!1,repairMode:cn.state==="running"?Kt.repairMode:void 0,repairError:void 0,error:void 0,pollError:void 0}}catch(cn){return{...Kt,pollError:_a(cn,zt("generation.errors.pollCandidate"))}}}));je||(k(Se),ve=window.setTimeout(()=>void ze(),u5t))};return ze(),()=>{je=!0,ve!==void 0&&window.clearTimeout(ve)}},[w.some(je=>{var ve;return((ve=je.task)==null?void 0:ve.state)==="running"||je.repairing})]);const U=w.find(je=>je.id===S)||w[0],G=e==="create"&&!n,ae=i.find(je=>aL(je)===R)??null,re=n??ae,se=i.map(je=>({value:aL(je),label:`${je.name.trim()||u("generation.unnamedSpace")} · ${vh(je.region||"cn-beijing",t)}`})),me=g5t(v),Z=!!(d!=null&&d.enabled&&g.trim()&&!me&&x.length>0&&x.every(je=>je.model.trim()&&!bte(je.model.trim()))),X=(je,ve)=>{O(ze=>ze.map(et=>et.id===je?{...et,...ve}:et))},J=async je=>{const ve={...je,model:je.model.trim()},ze=je.style==="custom"?je.customStyle.trim():je.style;try{const et=await X1t({operation:e,intent:g.trim(),model:ve.model,style:ze,name:v.trim()||void 0,source:a});return{id:je.id,config:ve,task:et}}catch(et){return{id:je.id,config:ve,error:_a(et,zt("generation.errors.createCandidate"))}}},oe=async()=>{if(!Z)return;N(!0),P(null);const je=x.map(ze=>({id:ze.id,config:ze}));k(je),E(x[0].id);const ve=await Promise.all(x.map(J));k(ve)},Ee=async je=>{k(ze=>ze.map(et=>et.id===je.id?{...et,error:void 0}:et));const ve=await J(je.config);k(ze=>ze.map(et=>et.id===je.id?ve:et))},he=async()=>{if(!(!(U!=null&&U.task)||!T.trim()||U.task.state!=="ready")){L("refine"),P(null);try{const je=await XM({jobId:U.task.jobId,intent:T.trim(),expectedRevision:U.task.revision});k(ve=>ve.map(ze=>ze.id===U.id?{...ze,task:je,artifact:void 0}:ze)),j("")}catch(je){P(_a(je,zt("generation.errors.refine")))}finally{L("")}}},Me=async()=>{if(!(!(U!=null&&U.task)||!sL(U.task))){L("refine"),P(null),k(je=>je.map(ve=>ve.id===U.id?{...ve,repairing:!0,repairMode:"manual",repairError:void 0}:ve));try{const je=await XM({jobId:U.task.jobId,intent:mte(U.task),expectedRevision:U.task.revision});k(ve=>ve.map(ze=>ze.id===U.id?{...ze,task:je,artifact:void 0,repairing:!1,repairMode:"manual",repairError:void 0}:ze))}catch(je){k(ve=>ve.map(ze=>ze.id===U.id?{...ze,repairing:!1,repairMode:void 0,repairError:_a(je,zt("generation.errors.repairAgain"))}:ze))}finally{L("")}}},De=async()=>{if(!(!(U!=null&&U.task)||U.task.state!=="ready"||M)){L("publish"),P(null);try{if(!re)throw new Error(zt("generation.errors.selectSpace"));const je=U.artifact||await GM(U.task.jobId,U.task.revision),ve=(a==null?void 0:a.region)||re.region||"";if(!oR(ve))throw new Error(zt("generation.errors.unsupportedRegion"));await J1t({jobId:U.task.jobId,expectedRevision:U.task.revision,expectedArtifactSha256:je.sha256,disposition:e==="optimize"?"update-source":"create-new",skillSpaceIds:[re.id],projectName:(a==null?void 0:a.projectName)||re.projectName,region:ve,onProgress:ze=>$(ze.message)}),B(U.id),c()}catch(je){P(_a(je,zt("generation.errors.upload")))}finally{L(""),$("")}}},_e=async()=>{if(!(!(U!=null&&U.task)||U.task.state!=="ready")){L("download");try{const je=U.artifact||await GM(U.task.jobId,U.task.revision);await twt(U.task.jobId,U.task.revision,je.sha256)}catch(je){P(_a(je,zt("generation.errors.download")))}finally{L("")}}},Re=async()=>{w.some(je=>{var ve;return((ve=je.task)==null?void 0:ve.state)==="running"})&&!window.confirm(zt("generation.leaveConfirmation"))||(await Promise.allSettled(w.flatMap(je=>{var ve;return((ve=je.task)==null?void 0:ve.state)==="running"?[Z1t({jobId:je.task.jobId,expectedRevision:je.task.revision})]:[]})),l())},Xe=e==="create"?u("generation.createTitle"):u("generation.optimizeTitle",{name:(a==null?void 0:a.name)||u("generation.skillFallback")}),Ce=je=>{var ve;return((ve=d==null?void 0:d.models.find(ze=>ze.id===je))==null?void 0:ve.label)||je},Fe=je=>je.config.style==="custom"?je.config.customStyle.trim()||u("generation.styles.customFallback"):u(hte[je.config.style]),Oe=[...Object.entries(hte).map(([je,ve])=>({value:je,label:u(ve)})),{value:"custom",label:u("generation.styles.custom")}],$e=je=>je.error||je.repairError?u("generation.stages.failed"):p5t(je),Y=je=>!je.error&&!je.repairError&&(je.repairing||!je.task||je.task.state==="running"),pe=w.some(je=>{var ve;return((ve=je.task)==null?void 0:ve.state)==="ready"});return o.jsxs("section",{className:"skill-generation",children:[o.jsxs("header",{className:"skill-generation__header",children:[o.jsx("button",{type:"button",className:"skillcenter-back",onClick:()=>void Re(),"aria-label":u("generation.back"),children:o.jsx(b5t,{})}),o.jsxs("div",{children:[o.jsx("h1",{children:Xe}),o.jsx("p",{children:(n==null?void 0:n.name)||u("generation.home")})]}),w.length>0?o.jsx("span",{className:"skill-generation__ttl",children:m5t(U==null?void 0:U.task,K)}):null]}),C?o.jsxs("div",{className:"skill-generation__workspace",children:[o.jsx("div",{className:"skill-generation__candidate-tabs",role:"tablist","aria-label":u("generation.candidates"),children:w.map(je=>o.jsxs("button",{type:"button",role:"tab","aria-selected":(U==null?void 0:U.id)===je.id,className:(U==null?void 0:U.id)===je.id?"is-active":"",onClick:()=>E(je.id),children:[o.jsxs("span",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.style")}),o.jsx("strong",{children:Fe(je)})]}),o.jsxs("span",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.model")}),o.jsx("strong",{children:Ce(je.config.model)})]}),o.jsxs("span",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.progress")}),o.jsxs("strong",{children:[Y(je)?o.jsx(gte,{}):null,$e(je)]})]})]},je.id))}),U?o.jsxs("div",{className:"skill-generation__candidate",children:[o.jsxs("section",{className:"skill-generation__activity",children:[o.jsx("header",{children:o.jsxs("div",{className:"skill-generation__candidate-summary",children:[o.jsxs("div",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.style")}),o.jsx("strong",{children:Fe(U)})]}),o.jsxs("div",{className:"skill-generation__summary-row",children:[o.jsx("span",{children:u("generation.model")}),o.jsx("strong",{children:Ce(U.config.model)})]}),o.jsxs("div",{className:"skill-generation__summary-row","aria-live":"polite",children:[o.jsx("span",{children:u("generation.progress")}),o.jsxs("strong",{children:[Y(U)?o.jsx(gte,{}):null,Y(U)?o.jsx(kn,{children:$e(U)}):$e(U)]})]})]})}),U.task?o.jsx(FSt,{activities:U.task.activities}):null,U.pollError?o.jsx("div",{className:"skill-inline-notice",children:o.jsx(dl,{error:U.pollError})}):null,U.repairError?o.jsx("div",{className:"skill-inline-notice",children:o.jsx(dl,{error:U.repairError})}):null,U.error?o.jsxs("div",{className:"skill-inline-error",children:[o.jsx(dl,{error:U.error}),o.jsx("button",{type:"button",onClick:()=>void Ee(U),children:u("generation.retryCandidate")})]}):null,(Te=U.task)!=null&&Te.validation&&!U.task.validation.valid&&!U.repairing&&U.task.state==="failed"?o.jsxs("div",{className:"skill-validation-errors",children:[o.jsx("strong",{children:u("generation.formatValidationFailed")}),U.task.validation.errors.map(je=>o.jsx("p",{children:je},je)),sL(U.task)?o.jsx("button",{type:"button",disabled:!!A,onClick:()=>void Me(),children:u("generation.repairAgain")}):null]}):null]}),o.jsxs("section",{className:"skill-generation__files",children:[o.jsxs("header",{children:[o.jsx("h2",{children:u("generation.files")}),((We=U.task)==null?void 0:We.state)==="ready"?o.jsx("button",{type:"button",onClick:()=>void _e(),disabled:!!A,children:u("generation.downloadZip")}):null]}),U.artifact?o.jsx(vje,{files:U.artifact.files}):o.jsx("div",{className:"skill-generation__files-empty",children:((nt=U.task)==null?void 0:nt.state)==="ready"?u("generation.loadingFiles"):u("generation.filesPending")})]}),(($t=U.task)==null?void 0:$t.state)==="ready"?o.jsxs("div",{className:"skill-generation__ready-actions",children:[G?o.jsx("div",{className:"skill-generation__publish-target",children:o.jsx(A2,{label:u("generation.uploadToSpace"),value:R,options:se,onChange:V,disabled:r,placeholder:u(r?"generation.loadingSpaces":"generation.selectSpace")})}):null,o.jsxs("footer",{className:"skill-generation__followup",children:[o.jsx("textarea",{value:T,onChange:je=>j(je.target.value),placeholder:u("generation.continuePlaceholder")}),o.jsx("button",{type:"button",className:"skill-button",disabled:!T.trim()||!!A,onClick:()=>void he(),children:u("generation.continue")}),o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!!A||!!M||!re,onClick:()=>void De(),children:A==="publish"?I||u("generation.uploading"):u(e==="optimize"?"generation.overwrite":G?"generation.uploadToSelectedSpace":"generation.uploadToCurrentSpace")})]})]}):null,_?o.jsx("div",{className:"skill-inline-error skill-generation__action-error",children:o.jsx(dl,{error:_})}):null]}):null,!pe&&w.every(je=>je.error)?o.jsx("div",{className:"skill-inline-error",children:u("generation.allCandidatesFailed")}):null]}):o.jsxs("div",{className:"skill-generation__setup",children:[o.jsx("div",{className:"skill-generation__section-head is-basic",children:o.jsx("div",{children:o.jsx("strong",{children:u("generation.basicInfo")})})}),o.jsxs("label",{children:[o.jsxs("span",{children:[u("generation.goal"),o.jsx("span",{className:"skill-required-mark","aria-hidden":"true",children:"*"})]}),o.jsx("textarea",{required:!0,value:g,onChange:je=>b(je.target.value),placeholder:u(e==="create"?"generation.createIntentPlaceholder":"generation.optimizeIntentPlaceholder")})]}),o.jsxs("label",{children:[o.jsx("span",{children:u("generation.skillName")}),o.jsx("input",{value:v,onChange:je=>y(je.target.value),placeholder:u("generation.autoNamePlaceholder"),"aria-invalid":!!me,"aria-describedby":"skill-name-help"}),me?o.jsx("span",{id:"skill-name-help",className:"skill-generation__field-error",role:"alert",children:me}):o.jsx("span",{id:"skill-name-help",className:"skill-generation__field-help",children:u("generation.nameHelp")})]}),o.jsx("div",{className:"skill-generation__section-head",children:o.jsxs("div",{children:[o.jsx("strong",{children:u(e==="create"?"generation.createPlans":"generation.optimizePlans")}),o.jsx("span",{children:u(e==="create"?"generation.createPlansDescription":"generation.optimizePlansDescription")})]})}),o.jsxs("div",{className:"skill-generation__groups",children:[x.map((je,ve)=>o.jsxs("article",{className:"skill-generation__group",children:[o.jsxs("header",{children:[o.jsx("strong",{children:u("generation.plan",{count:ve+1})}),x.length>1?o.jsx("button",{type:"button",onClick:()=>O(ze=>ze.filter(et=>et.id!==je.id)),children:u("generation.remove")}):null]}),o.jsx(A2,{label:u("generation.model"),required:!0,value:je.model,options:(d==null?void 0:d.models.map(ze=>({value:ze.id,label:ze.label})))||[],onChange:ze=>X(je.id,{model:ze}),allowCustom:!0,placeholder:u("generation.modelPlaceholder"),error:bte(je.model.trim())}),o.jsx(A2,{label:u("generation.style"),required:!0,value:je.style,options:Oe,onChange:ze=>X(je.id,{style:ze})}),je.style==="custom"?o.jsxs("label",{children:[o.jsx("span",{children:u("generation.customStyle")}),o.jsx("textarea",{value:je.customStyle,onChange:ze=>X(je.id,{customStyle:ze.target.value}),placeholder:u("generation.customStylePlaceholder")})]}):null]},je.id)),d&&x.lengthO(je=>[...je,pte(je.length,d)]),children:u("generation.addConfiguration")}):null]}),h?o.jsx("div",{className:"skill-inline-error",children:o.jsx(dl,{error:h})}):null,d&&!d.enabled?o.jsx("div",{className:"skill-inline-notice",children:u("generation.notConfigured")}):null,o.jsx("div",{className:"skill-generation__setup-actions",children:o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!Z,onClick:()=>void oe(),children:u("generation.generate")})})]})]})}function JQ({title:e,children:t,onClose:n,className:i=""}){const{t:r}=Ae("skills"),s=p.useRef(null);return p.useEffect(()=>{var l;(l=s.current)==null||l.focus();const a=c=>c.key==="Escape"&&n();return window.addEventListener("keydown",a),()=>window.removeEventListener("keydown",a)},[n]),o.jsx("div",{className:"skill-dialog-backdrop",onMouseDown:n,children:o.jsxs("section",{className:`skill-dialog${i?` ${i}`:""}`,role:"dialog","aria-modal":"true","aria-label":e,onMouseDown:a=>a.stopPropagation(),children:[o.jsxs("header",{children:[o.jsx("h2",{children:e}),o.jsx("button",{ref:s,type:"button",onClick:n,"aria-label":r("management.close"),children:r("management.close")})]}),t]})})}function v5t({region:e,regionOptions:t,onClose:n,onCreated:i}){const{t:r}=Ae("skills"),[s,a]=p.useState(""),[l,c]=p.useState(""),[u,d]=p.useState(e),[f,h]=p.useState(!1),[m,g]=p.useState(null),b=async()=>{if(s.trim()){h(!0),g(null);try{const v=await P1t({name:s.trim(),description:l.trim()||void 0,region:u});i({...v,region:v.region||u})}catch(v){g(_a(v,r("management.createSpaceFailed")))}finally{h(!1)}}};return o.jsxs(JQ,{title:r("management.createSpaceTitle"),onClose:n,children:[o.jsxs("div",{className:"skill-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:r("management.name")}),o.jsx("input",{autoFocus:!0,value:s,maxLength:128,onChange:v=>a(v.target.value)})]}),o.jsx(A2,{label:r("management.region"),value:u,options:t,onChange:d,required:!0}),o.jsxs("label",{children:[o.jsx("span",{children:r("management.optionalDescription")}),o.jsx("textarea",{value:l,maxLength:1024,onChange:v=>c(v.target.value)})]}),m?o.jsx("div",{className:"skill-inline-error",children:o.jsx(dl,{error:m})}):null]}),o.jsxs("footer",{children:[o.jsx("button",{type:"button",className:"skill-button",onClick:n,children:r("management.cancel")}),o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!s.trim()||f,onClick:()=>void b(),children:r(f?"management.creating":"management.create")})]})]})}function x5t({space:e,region:t,onClose:n,onUpdated:i}){const{t:r}=Ae("skills"),[s,a]=p.useState(e.name),[l,c]=p.useState(e.description||""),[u,d]=p.useState(!1),[f,h]=p.useState(null),m=async()=>{if(s.trim()){d(!0),h(null);try{const g=await D1t({spaceId:e.id,name:s.trim(),description:l.trim()||void 0,region:t});i({...e,...g,skillCount:e.skillCount})}catch(g){h(_a(g,r("management.updateSpaceFailed")))}finally{d(!1)}}};return o.jsxs(JQ,{title:r("management.editSpaceTitle"),onClose:n,children:[o.jsxs("div",{className:"skill-dialog__body",children:[o.jsxs("label",{children:[o.jsx("span",{children:r("management.name")}),o.jsx("input",{autoFocus:!0,value:s,maxLength:128,onChange:g=>a(g.target.value)})]}),o.jsxs("label",{children:[o.jsx("span",{children:r("management.optionalDescription")}),o.jsx("textarea",{value:l,maxLength:1024,onChange:g=>c(g.target.value)})]}),f?o.jsx("div",{className:"skill-inline-error",children:o.jsx(dl,{error:f})}):null]}),o.jsxs("footer",{children:[o.jsx("button",{type:"button",className:"skill-button",onClick:n,children:r("management.cancel")}),o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!s.trim()||u,onClick:()=>void m(),children:r(u?"management.saving":"management.save")})]})]})}function w5t({space:e,region:t,onClose:n,onUploaded:i}){const{t:r,i18n:s}=Ae("skills"),[a,l]=p.useState(null),[c,u]=p.useState(null),[d,f]=p.useState(!1),[h,m]=p.useState(!1),[g,b]=p.useState(null),[v,y]=p.useState(!1),x=p.useRef(0),O=p.useRef(null),w=async S=>{const E=x.current+1;if(x.current=E,l(S),u(null),b(null),f(!!S),!!S)try{const C=await $1t(S);x.current===E&&u({name:C.name,fileCount:C.files.length})}catch(C){x.current===E&&b(_a(C,r("management.archiveValidationFailed")))}finally{x.current===E&&f(!1)}},k=async()=>{if(!(!a||!c)){m(!0),b(null);try{await L1t({spaceId:e.id,region:t,project:e.projectName,file:a}),i()}catch(S){b(_a(S,r("management.uploadFailed")))}finally{m(!1)}}};return o.jsxs(JQ,{title:r("management.uploadTitle",{name:e.name}),className:"skill-upload-dialog",onClose:n,children:[o.jsxs("div",{className:"skill-dialog__body",children:[o.jsx("input",{ref:O,className:"skill-upload-dialog__input",type:"file",accept:".zip,application/zip",onChange:S=>{var E;return void w(((E=S.target.files)==null?void 0:E[0])||null)}}),o.jsxs("button",{type:"button",className:`skill-upload-dropzone${v?" is-dragging":""}`,onClick:()=>{var S;return(S=O.current)==null?void 0:S.click()},onDragEnter:S=>{S.preventDefault(),y(!0)},onDragOver:S=>{S.preventDefault(),S.dataTransfer.dropEffect="copy",y(!0)},onDragLeave:S=>{S.currentTarget.contains(S.relatedTarget)||y(!1)},onDrop:S=>{var E;S.preventDefault(),y(!1),w(((E=S.dataTransfer.files)==null?void 0:E[0])||null)},children:[o.jsx("strong",{children:a?a.name:r("management.dropzone")}),o.jsx("span",{children:a?r("fileTree.bytes",{value:new Intl.NumberFormat(s.resolvedLanguage).format(a.size)}):r("management.chooseLocalFile")})]}),o.jsx("p",{children:r("management.archiveHelp")}),d?o.jsx("div",{className:"skill-inline-notice",children:r("management.validating")}):null,c?o.jsx("div",{className:"skill-inline-notice",children:r("management.validationPassed",{name:c.name,count:c.fileCount})}):null,g?o.jsx("div",{className:"skill-inline-error",children:o.jsx(dl,{error:g})}):null]}),o.jsxs("footer",{children:[o.jsx("button",{type:"button",className:"skill-button",onClick:n,children:r("management.cancel")}),o.jsx("button",{type:"button",className:"skill-button skill-button--primary",disabled:!a||!c||d||h,onClick:()=>void k(),children:r(h?"management.uploading":"management.upload")})]})]})}function O5t(e){if(typeof e=="number")return e<1e12?e*1e3:e;const t=e.trim(),n=Number(t);return/^\d+(?:\.\d+)?$/.test(t)?n<1e12?n*1e3:n:Date.parse(t)}function ez(e,t=Date.now(),n="zh-CN"){if(e===void 0||e==="")return"—";const i=O5t(e);if(!Number.isFinite(i))return"—";const r=Math.floor(Math.max(0,t-i)/1e3),s=new Intl.RelativeTimeFormat(n,{numeric:"always"}),a=(f,h,m)=>n.toLowerCase().startsWith("zh")?`${f} ${m}前`:s.format(-f,h);if(r<60)return a(r,"second","秒");const l=Math.floor(r/60);if(l<60)return a(l,"minute","分钟");const c=Math.floor(l/60);if(c<24)return a(c,"hour","小时");const u=Math.floor(c/24);if(u<30)return a(u,"day","天");const d=Math.floor(u/30);return d<12?a(d,"month","个月"):a(Math.floor(d/12),"year","年")}const S5t=12,yte=12;function fj({disabled:e,placement:t="top",children:n}){const{t:i}=Ae("ui"),r=p.useId();return o.jsxs("span",{className:`skillcenter-disabled-action${e?" is-disabled":""} is-${t}`,tabIndex:e?0:void 0,"aria-describedby":e?r:void 0,children:[n,e?o.jsx("span",{id:r,className:"skillcenter-disabled-tooltip",role:"tooltip",children:i("skillCenter.sandboxNotConfigured")}):null]})}const k5t=new Set(["active","available","creating","disabled","enabled","failed","inactive","pending","published","ready","released","running","success","unavailable","unreleased","updating"]);function wje(e,t){const n=(e||"").trim().toLowerCase();return k5t.has(n)?t(`skillCenter.status.${n}`):t("skillCenter.status.unknown")}function E5t(e){const t=(e||"").toLowerCase();return["active","available","enabled","published","ready","released","success"].includes(t)||t==="running"?"is-positive":["creating","pending","updating"].includes(t)?"is-progress":["failed","unavailable"].includes(t)?"is-danger":"is-muted"}function C5t(e,t){if(!e)return"";const n=e.trim(),i=Number(n),r=/^\d+(?:\.\d+)?$/.test(n)?new Date(i<1e12?i*1e3:i):new Date(n);return Number.isNaN(r.getTime())?e:new Intl.DateTimeFormat(t,{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"}).format(r)}function vte(e){if(!e)return 0;const t=e.trim(),n=Number(t),i=/^\d+(?:\.\d+)?$/.test(t)?new Date(n<1e12?n*1e3:n):new Date(t);return Number.isNaN(i.getTime())?0:i.getTime()}function Vl(e){return`${e.region||"default"}:${e.projectName||"default"}:${e.id}`}function T5t(e,t){const n=new Map(e.map(i=>[Vl(i),i]));for(const i of t)n.set(Vl(i),i);return[...n.values()].sort((i,r)=>vte(r.updatedAt)-vte(i.updatedAt))}function A5t(e){const t=e.replace(/\r\n/g,` `);if(!t.startsWith(`--- `))return e;const n=t.indexOf(` --- -`,4);return n>=0?t.slice(n+5).trimStart():e}function cje(e,t){const n=(e||"").trim();return!n||[">",">-","|","|-"].includes(n)?t("common.noDescription"):n}function f5t(){return o.jsx("svg",{className:"icon",viewBox:"0 0 24 24",fill:"none","aria-hidden":!0,children:o.jsx("path",{d:"m7.5 7.5 9 9m0-9-9 9",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})})}function h5t(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M12 5.5v13M5.5 12h13",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round"})})}function dte({direction:e}){return o.jsx("svg",{className:"icon",viewBox:"0 0 20 20",fill:"none","aria-hidden":!0,children:o.jsx("path",{d:e==="left"?"m11.7 5.5-4.2 4.5 4.2 4.5":"m8.3 5.5 4.2 4.5-4.2 4.5",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"})})}function p5t(){return o.jsx("span",{className:"skillcenter-loading-mark","aria-hidden":!0})}function m5t({page:e,total:t,pageSize:n,onPage:i}){const{t:r}=Te("ui"),s=Math.max(1,Math.ceil(t/n));return o.jsxs("footer",{className:"skillcenter-pager",children:[o.jsx("span",{children:r("skillCenter.totalItems",{count:t})}),o.jsxs("div",{className:"skillcenter-pager-actions",children:[o.jsx("button",{type:"button",onClick:()=>i(e-1),disabled:e<=1,"aria-label":r("common.previousPage"),children:o.jsx(dte,{direction:"left"})}),o.jsxs("span",{children:[e," / ",s]}),o.jsx("button",{type:"button",onClick:()=>i(e+1),disabled:e>=s,"aria-label":r("common.nextPage"),children:o.jsx(dte,{direction:"right"})})]})]})}function g5t({children:e}){return o.jsx("div",{className:"skillcenter-empty",children:e})}function nL({kind:e,title:t,description:n,error:i,action:r}){return o.jsx("div",{className:`skillcenter-page-state is-${e}`,role:e==="error"?"alert":"status",children:o.jsxs(Cn,{fill:"none",children:[o.jsx(Cn.Title,{children:t}),n?o.jsx(Cn.Description,{children:n}):null,i?o.jsx(cl,{error:i}):null,r?o.jsx(Cn.ActionRow,{children:o.jsx(Ht,{color:"secondary",size:"lg",onClick:r.onClick,children:r.label})}):null]})})}function fte({errors:e,cloudProvider:t,fullPage:n=!1,onRetry:i}){const{t:r}=Te("ui");return o.jsxs("div",{className:`skillcenter-space-errors${n?" is-full-page":""}`,role:"alert",children:[o.jsxs("div",{className:"skillcenter-space-errors__content",children:[o.jsx("strong",{children:r(n?"skillCenter.cannotLoadSpaces":"skillCenter.someSpacesFailed")}),e.map(({region:s,error:a})=>o.jsxs("section",{children:[o.jsx("span",{children:xh(s,t)}),o.jsx(cl,{error:a})]},s))]}),o.jsx("button",{type:"button",onClick:i,children:r("common.reload")})]})}function b5t({skill:e,space:t,region:n,cloudProvider:i,detail:r,files:s,loading:a,error:l,canOptimize:c,onOptimize:u,onDownload:d,onClose:f}){const{t:h}=Te("ui");return p.useEffect(()=>{const m=g=>{g.key==="Escape"&&f()};return window.addEventListener("keydown",m),()=>window.removeEventListener("keydown",m)},[f]),o.jsx("div",{className:"skill-detail-backdrop",role:"presentation",onMouseDown:f,children:o.jsxs("section",{className:"skill-detail-dialog",role:"dialog","aria-modal":"true","aria-labelledby":"skill-detail-title",onMouseDown:m=>m.stopPropagation(),children:[o.jsxs("header",{className:"skill-detail-head",children:[o.jsx("div",{className:"skill-detail-heading",children:o.jsxs("div",{children:[o.jsx("h2",{id:"skill-detail-title",children:(r==null?void 0:r.name)||e.skillName}),o.jsx("p",{children:cje((r==null?void 0:r.description)||e.skillDescription,h)})]})}),o.jsxs("div",{className:"skill-detail-actions",children:[o.jsx("button",{type:"button",onClick:d,disabled:s.length===0,children:h("skillCenter.downloadZip")}),o.jsx(oj,{disabled:!c,placement:"bottom",children:o.jsx("button",{type:"button",onClick:u,disabled:!c,children:h("skillCenter.optimize")})}),o.jsx("button",{type:"button",className:"skill-detail-close",onClick:f,"aria-label":h("skillCenter.closeSkillDetails"),children:o.jsx(f5t,{})})]})]}),o.jsxs("dl",{className:"skill-detail-meta",children:[o.jsxs("div",{children:[o.jsx("dt",{children:h("skillCenter.skillId")}),o.jsx("dd",{title:e.skillId,children:e.skillId})]}),o.jsxs("div",{children:[o.jsx("dt",{children:h("agentSelector.version")}),o.jsx("dd",{children:(r==null?void 0:r.version)||e.version||"—"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:h("agentSelector.status")}),o.jsx("dd",{children:lje(e.skillStatus,h)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:h("skillCenter.skillSpace")}),o.jsx("dd",{title:t.name,children:t.name})]}),o.jsxs("div",{children:[o.jsx("dt",{children:h("myAgents.region")}),o.jsx("dd",{children:xh(n,i)})]})]}),o.jsxs("div",{className:"skill-detail-content skill-detail-content--files",children:[o.jsx("div",{className:"skill-detail-content-title",children:h("skillCenter.allFiles")}),a?o.jsxs("div",{className:"skillcenter-loading",children:[o.jsx(p5t,{}),h("skillCenter.loadingSkillContent")]}):l?o.jsx("div",{className:"skillcenter-error",children:o.jsx(cl,{error:l})}):s.length>0?o.jsx(aje,{files:s.map(m=>m.path.endsWith("SKILL.md")&&m.content?{...m,content:d5t(m.content)}:m)}):o.jsx(g5t,{children:h("skillCenter.noSkillContent")})]})]})})}function y5t({space:e,canUseSandbox:t,onUpload:n,onSandbox:i,onClose:r}){const{t:s}=Te("ui");return p.useEffect(()=>{const a=l=>{l.key==="Escape"&&r()};return window.addEventListener("keydown",a),()=>window.removeEventListener("keydown",a)},[r]),o.jsx("div",{className:"skill-dialog-backdrop",role:"presentation",onMouseDown:r,children:o.jsxs("section",{className:"skill-dialog skill-add-dialog",role:"dialog","aria-modal":"true","aria-labelledby":"skill-add-dialog-title",onMouseDown:a=>a.stopPropagation(),children:[o.jsxs("header",{children:[o.jsxs("div",{children:[o.jsx("h2",{id:"skill-add-dialog-title",children:s("skillCenter.addSkill")}),o.jsx("p",{title:e.name,children:e.name})]}),o.jsx("button",{type:"button",onClick:r,children:s("common.cancel")})]}),o.jsxs("div",{className:"skill-add-dialog__options",children:[o.jsxs("button",{type:"button",onClick:n,children:[o.jsx("strong",{children:s("skillCenter.localUpload")}),o.jsx("span",{children:s("skillCenter.localUploadDescription")})]}),o.jsx(oj,{disabled:!t,placement:"inside",children:o.jsxs("button",{type:"button",disabled:!t,onClick:i,children:[o.jsx("strong",{children:s("skillCenter.autoCreate")}),o.jsx("span",{children:s("skillCenter.autoCreateDescription")})]})})]})]})})}function v5t({cloudProvider:e="volcengine",region:t,active:n=!0,activationRevision:i=0,initialWorkspace:r=null,onInitialWorkspaceConsumed:s,onPageTitleChange:a,toolbarLeading:l,toolbarFilters:c}){var ht;const{t:u,i18n:d}=Te("ui"),f=p.useMemo(()=>[t],[t]),[h,m]=p.useState([]),[g,b]=p.useState({}),[v,y]=p.useState(!1),[x,O]=p.useState(""),[w,k]=p.useState((r==null?void 0:r.space)??null),[S,E]=p.useState([]),[C,N]=p.useState(1),[_,j]=p.useState(0),[A,F]=p.useState(!1),[T,P]=p.useState(null),[R,L]=p.useState(!1),[M,U]=p.useState(""),[I,H]=p.useState("overview"),[K,Q]=p.useState(null),[q,B]=p.useState(null),[ee,le]=p.useState([]),[se,re]=p.useState(!1),[ge,W]=p.useState(null),[X,ae]=p.useState(null),[ue,Oe]=p.useState(!1),[ke,st]=p.useState(null),[Le,Me]=p.useState(null),[Ie,qe]=p.useState(null),[Ae,ze]=p.useState(0),[Ee,De]=p.useState(0),[J,he]=p.useState(""),[_e,Ze]=p.useState(""),[at,wt]=p.useState(null),[Se,ve]=p.useState(r),He=p.useRef(0),Je=p.useRef(0),Ce=p.useRef(!1),Wt=p.useRef(null),ln=p.useRef(null),cn=p.useRef(null),Ot=p.useDeferredValue(x),jt=p.useDeferredValue(M),gt=(Se&&(w||Se.selectPublishSpace)?Se.operation==="create"?u("skillCenter.createSkill"):u("skillCenter.optimizeNamed",{name:((ht=Se.source)==null?void 0:ht.name)||u("skillCenter.skill")}):"")||(w==null?void 0:w.name)||u("skillCenter.library");p.useEffect(()=>{n&&(a==null||a(gt))},[n,a,gt]),p.useEffect(()=>{r&&(s==null||s())},[r,s]);const Pe=p.useMemo(()=>{const pe=Ot.trim().toLocaleLowerCase();return pe?h.filter(We=>`${We.name} ${We.description||""} ${We.projectName||""}`.toLocaleLowerCase().includes(pe)):h},[Ot,h]),Et=p.useMemo(()=>{const pe=jt.trim().toLocaleLowerCase();return pe?S.filter(We=>`${We.skillName} ${We.skillDescription||""}`.toLocaleLowerCase().includes(pe)):S},[jt,S]),bt=(w==null?void 0:w.region)||Ji(e),Mt=p.useMemo(()=>f.flatMap(pe=>{var vt;const We=(vt=g[pe])==null?void 0:vt.error;return We?[{region:pe,error:We}]:[]}),[g,f]),$e=f.some(pe=>{const We=g[pe];return!!(We&&!We.done&&!We.error)}),ye=Mt.length===f.length;p.useEffect(()=>{const pe=new AbortController;return sI(pe.signal).then(ae).catch(()=>ae({enabled:!1,reason:u("skillCenter.adminNotConfigured"),operations:["create","optimize"],models:[],styles:{}})),()=>pe.abort()},[u]);const Ue=p.useCallback(async(pe,We)=>{var pn;if(Ce.current||pe.length===0)return;Ce.current=!0,y(!0),We&&((pn=Wt.current)==null||pn.abort(),m([]),b(Object.fromEntries(pe.map(({region:Jt})=>[Jt,{nextPage:1,loadedCount:0,done:!1,error:null}]))));const vt=new AbortController;Wt.current=vt;const vn=++Je.current,Ki=await Promise.allSettled(pe.map(async({region:Jt,page:en})=>({region:Jt,page:en,result:await g1t({region:Jt,page:en,pageSize:a5t,signal:vt.signal})})));if(Je.current!==vn)return;const Fe=Ki.map((Jt,en)=>{const Un=pe[en];return Jt.status==="rejected"?{request:Un,error:ja(Jt.reason,u("skillCenter.errors.loadSpaces")),items:[],totalCount:0}:{request:Un,error:null,items:(Jt.value.result.items||[]).map(wn=>({...wn,region:wn.region||Jt.value.region})),totalCount:Jt.value.result.totalCount||0}}),Pt=Fe.flatMap(Jt=>Jt.items);b(Jt=>{const en={...Jt};return Fe.forEach(({request:Un,error:wn,items:oi,totalCount:Oi})=>{const mi=en[Un.region]||{nextPage:Un.page,loadedCount:0,done:!1,error:null};if(wn){en[Un.region]={...mi,error:wn};return}const bn=mi.loadedCount+oi.length;en[Un.region]={nextPage:Un.page+1,loadedCount:bn,done:oi.length===0||bn>=Oi,error:null}}),en}),m(Jt=>u5t(We?[]:Jt,Pt)),k(Jt=>Jt&&(Pt.find(en=>zl(en)===zl(Jt))||Jt)),Ce.current=!1,y(!1)},[]),Ke=p.useCallback(()=>{if(Ce.current)return;const pe=f.flatMap(We=>{const vt=g[We];return vt&&!vt.done&&!vt.error?[{region:We,page:vt.nextPage}]:[]});Ue(pe,!1)},[Ue,g,f]);p.useEffect(()=>{Rt(),k(null),E([]),N(1)},[e]),p.useEffect(()=>{if(n)return Ue(f.map(pe=>({region:pe,page:1})),!0),()=>{var pe;Je.current+=1,(pe=Wt.current)==null||pe.abort(),Ce.current=!1}},[n,i,Ue,f,Ae]),p.useEffect(()=>{const pe=cn.current,We=ln.current;if(!pe||!We||!$e||v)return;const vt=new IntersectionObserver(([vn])=>{vn.isIntersecting&&Ke()},{root:We,rootMargin:"240px 0px",threshold:.01});return vt.observe(pe),()=>vt.disconnect()},[$e,Ke,v]);const ft=()=>{const pe=ln.current;!pe||!$e||v||pe.scrollHeight-pe.scrollTop-pe.clientHeight<=240&&Ke()};p.useEffect(()=>{if(!w){E([]),j(0),L(!1);return}let pe=!0;return F(!0),P(null),E1t(w.id,{region:bt,page:C,pageSize:cte,project:w.projectName}).then(We=>{pe&&(E(We.items||[]),j(We.totalCount||0),L(We.degraded===!0))}).catch(We=>{pe&&(E([]),j(0),L(!1),P(ja(We,u("skillCenter.errors.loadSkills"))))}).finally(()=>{pe&&F(!1)}),()=>{pe=!1}},[bt,w,C,Ee,u]);const ut=pe=>{Rt(),k(pe),H("overview"),N(1),U("")},Gt=()=>{Rt(),k(null),E([]),j(0),L(!1),H("overview"),N(1),U(""),wt(null)},Rt=()=>{He.current+=1,Q(null),B(null),le([]),W(null),re(!1)},zt=async pe=>{if(!w)return;const We=Fg(pe),vt=He.current+1;He.current=vt,Q(pe),B(null),W(null),re(!0);try{const[vn,Ki]=await Promise.all([C1t(w.id,We,pe.version,bt,w.projectName,pe.skillName,w.name),S1t({spaceId:w.id,skillId:We,version:pe.version,region:bt,skillSpaceName:w.name,skillName:pe.skillName})]);He.current===vt&&(B(vn),le(Ki))}catch(vn){He.current===vt&&W(ja(vn,u("skillCenter.errors.loadSkillDetails")))}finally{He.current===vt&&re(!1)}},Z=pe=>{if(w)return{kind:"skill-center",skillId:Fg(pe),version:pe.version,region:bt,projectName:w.projectName,skillSpaceId:w.id,skillSpaceName:w.name,name:pe.skillName,description:pe.skillDescription}},Bt=pe=>{const We=Z(pe);!We||!(X!=null&&X.enabled)||(Rt(),ve({operation:"optimize",source:We}))},Qe=async pe=>{if(!(!w||!window.confirm(u("skillCenter.deleteSkillConfirm",{name:pe.skillName})))){he(pe.skillId),wt(null);try{await O1t({spaceId:w.id,skillId:pe.skillId,region:bt}),De(We=>We+1),ze(We=>We+1)}catch(We){wt(ja(We,u("skillCenter.errors.deleteSkill")))}finally{he("")}}},tt=async pe=>{if(!window.confirm(u("skillCenter.deleteSpaceConfirm",{name:pe.name})))return;const We=zl(pe);Ze(We),wt(null);try{await v1t({spaceId:pe.id,region:pe.region||Ji(e)}),w&&zl(w)===We&&Gt(),ze(vt=>vt+1)}catch(vt){wt(ja(vt,u("skillCenter.errors.deleteSpace")))}finally{Ze("")}};return Se&&(w||Se.selectPublishSpace)?o.jsx(t5t,{operation:Se.operation,cloudProvider:e,space:w??void 0,availableSpaces:h,spacesLoading:v,initialIntent:Se.initialIntent,source:Se.source,onBack:()=>ve(null),onPublished:()=>{De(pe=>pe+1),ze(pe=>pe+1)}}):o.jsxs("section",{className:`skillcenter${w?" is-space":" resource-collection"}`,children:[w?o.jsx(uE,{className:"skillcenter-detail",title:w.name,description:w.description||u("skillCenter.manageSpaceDescription"),identitySeed:w.name,backLabel:u("skillCenter.backToSpaces"),onBack:Gt,sections:[{key:"overview",label:u("skillCenter.overview"),content:o.jsxs(o.Fragment,{children:[at?o.jsx("div",{className:"skillcenter-inline-error",role:"alert",children:o.jsx(cl,{error:at})}):null,o.jsx("section",{className:"skillcenter-overview",children:o.jsxs(jB,{className:"skillcenter-detail-facts",children:[o.jsxs("div",{children:[o.jsx("dt",{children:u("skillCenter.skillCount")}),o.jsx("dd",{children:_})]}),o.jsxs("div",{children:[o.jsx("dt",{children:u("skillCenter.updatedAt")}),o.jsx("dd",{children:w.updatedAt?c5t(w.updatedAt,d.resolvedLanguage??d.language):"—"})]})]})})]})},{key:"skills",label:u("skillCenter.skills"),content:o.jsxs(o.Fragment,{children:[at?o.jsx("div",{className:"skillcenter-inline-error",role:"alert",children:o.jsx(cl,{error:at})}):null,o.jsxs("section",{className:"skillcenter-results","aria-label":u("skillCenter.skillsInSpace",{name:w.name}),children:[o.jsx(BOe,{title:u("skillCenter.skills"),description:u("skillCenter.totalItems",{count:_}),actions:o.jsx(wm,{"aria-label":u("skillCenter.searchSkills"),value:M,onChange:pe=>U(pe.target.value),placeholder:u("skillCenter.searchSkills")})}),R?o.jsx("div",{className:"skillcenter-inline-warning",role:"status",children:u("skillCenter.degradedRelationWarning")}):null,A&&S.length===0?o.jsx(Ud,{}):T&&S.length===0?o.jsx(nL,{kind:"error",title:u("skillCenter.cannotLoadSkills"),error:T,action:{label:u("common.reload"),onClick:()=>De(pe=>pe+1)}}):Et.length===0?o.jsx(nL,{kind:"empty",title:M.trim()?u("skillCenter.noMatchingSkills"):u("skillCenter.noSkills"),description:M.trim()?u("skillCenter.tryAnotherName"):u("skillCenter.emptySkillsDescription"),action:M.trim()?void 0:{label:u("skillCenter.localUpload"),onClick:()=>qe(w)}}):o.jsx("div",{className:"skillcenter-table-wrap",children:o.jsxs("table",{className:"skillcenter-table",children:[o.jsx("thead",{children:o.jsxs("tr",{children:[o.jsx("th",{scope:"col",children:u("skillCenter.skills")}),o.jsx("th",{scope:"col",children:u("agentSelector.status")}),o.jsx("th",{scope:"col",className:"skillcenter-table__actions-heading",children:u("skillCenter.actions")})]})}),o.jsx("tbody",{children:Et.map(pe=>o.jsxs("tr",{children:[o.jsx("td",{className:"skillcenter-table__skill",children:o.jsxs("button",{type:"button",onClick:()=>void zt(pe),children:[o.jsxs("span",{className:"skillcenter-table__title-row",children:[o.jsx("strong",{title:pe.skillName,children:pe.skillName}),pe.version?o.jsx("span",{className:"skillcenter-table__version-badge",children:pe.version}):null]}),o.jsx("span",{className:"skillcenter-table__description",children:cje(pe.skillDescription,u)})]})}),o.jsx("td",{children:o.jsx("span",{className:`skillcenter-status ${l5t(pe.skillStatus)}`,children:lje(pe.skillStatus,u)})}),o.jsx("td",{children:o.jsxs("div",{className:"skillcenter-table__actions",children:[o.jsx("button",{type:"button",onClick:()=>void zt(pe),children:u("common.view")}),o.jsx(oj,{disabled:!(X!=null&&X.enabled),children:o.jsx("button",{type:"button",disabled:!(X!=null&&X.enabled),onClick:()=>Bt(pe),children:u("skillCenter.optimize")})}),pe.lookupByName?null:o.jsx("button",{type:"button",className:"is-danger",disabled:J===pe.skillId,onClick:()=>void Qe(pe),children:J===pe.skillId?u("common.deleting"):u("common.delete")})]})})]},`${Fg(pe)}:${pe.version}`))})]})}),!M.trim()&&!A&&!T&&_>0?o.jsx(m5t,{page:C,total:_,pageSize:cte,onPage:N}):null]})]})}],activeSectionKey:I,navigationLabel:u("skillCenter.spaceDetails"),onSectionChange:pe=>H(pe),actionsClassName:"skillcenter-toolbar-actions",actions:o.jsxs(o.Fragment,{children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"outline",size:"lg",pill:!1,onClick:()=>st(w),children:u("skillCenter.editSpace")}),o.jsx(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,disabled:_e===zl(w),onClick:()=>void tt(w),children:_e===zl(w)?u("common.deleting"):u("skillCenter.deleteSpace")}),o.jsx(Ht,{type:"button",color:"secondary",variant:"outline",size:"lg",pill:!1,onClick:()=>qe(w),children:u("skillCenter.localUpload")}),o.jsx(oj,{disabled:!(X!=null&&X.enabled),children:o.jsxs(Ht,{type:"button",color:"primary",size:"lg",pill:!1,disabled:!(X!=null&&X.enabled),onClick:()=>ve({operation:"create"}),children:[o.jsx(xbe,{"aria-hidden":"true"}),o.jsx("span",{children:u("skillCenter.createSkill")})]})})]})}):o.jsxs(o.Fragment,{children:[o.jsxs(Zb,{className:"skillcenter-list-toolbar library-resource-toolbar",children:[l,o.jsxs("div",{className:"resource-toolbar__actions",children:[c,o.jsx(wm,{"aria-label":u("skillCenter.searchSpaces"),value:x,onChange:pe=>O(pe.target.value),placeholder:u("skillCenter.searchSpaces")})]})]}),at?o.jsx("div",{className:"skillcenter-inline-error",role:"alert",children:o.jsx(cl,{error:at})}):null,o.jsxs(Jb,{className:"skillcenter-list-results",ref:ln,"aria-label":u("skillCenter.spaceList"),onScroll:ft,children:[Mt.length>0&&!ye?o.jsx(fte,{errors:Mt,cloudProvider:e,onRetry:()=>ze(pe=>pe+1)}):null,v&&h.length===0?o.jsx(Ud,{}):ye&&h.length===0?o.jsx(fte,{errors:Mt,cloudProvider:e,fullPage:!0,onRetry:()=>ze(pe=>pe+1)}):Pe.length===0&&x.trim()?o.jsx(nL,{kind:"empty",title:u("skillCenter.noMatchingSpaces"),description:u("skillCenter.tryAnotherName")}):o.jsxs(Vx,{children:[x.trim()?null:o.jsx(Cb,{"aria-label":u("skillCenter.createSpace"),icon:o.jsx(h5t,{}),onClick:()=>Oe(!0),children:u("skillCenter.newSpace")}),Pe.map(pe=>{const We=zl(pe);return o.jsx(pE,{className:"skillcenter-space-card",title:pe.name,description:pe.description||u("common.noDescription"),metadata:[{label:u("skillCenter.skillCount"),value:u("skillCenter.skillCountValue",{count:pe.skillCount??0})},{label:u("skillCenter.updatedAt"),value:KQ(pe.updatedAt,Date.now(),d.resolvedLanguage??d.language)}],action:{label:u("skillCenter.addSkill"),icon:"plus",onClick:()=>Me(pe)},detailAction:{label:u("common.viewDetails"),onClick:()=>ut(pe)}},We)})]}),!ye&&h.length>0?o.jsx("div",{className:"my-agent-load-more",ref:cn,"aria-live":"polite",children:v?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"my-agent-loading-mark","aria-hidden":"true"}),o.jsx("span",{children:u("skillCenter.loadingMoreSpaces")})]}):$e?o.jsx("span",{children:u("skillCenter.scrollForMore")}):Mt.length>0?o.jsx("span",{children:u("skillCenter.someSpacesFailed")}):o.jsx("span",{children:u("skillCenter.allSpacesLoaded")})}):null]})]}),K&&w&&o.jsx(b5t,{skill:K,space:w,region:bt,cloudProvider:e,detail:q,files:ee,loading:se,error:ge,canOptimize:(X==null?void 0:X.enabled)===!0,onOptimize:()=>Bt(K),onDownload:()=>void k1t({spaceId:w.id,skillId:Fg(K),version:K.version,region:bt,fallbackName:K.skillName,skillSpaceName:w.name,skillName:K.skillName}).catch(pe=>W(ja(pe,u("skillCenter.errors.downloadSkill")))),onClose:Rt}),ue?o.jsx(n5t,{region:t,regionOptions:Iu(e),onClose:()=>Oe(!1),onCreated:pe=>{Oe(!1),ze(We=>We+1),k({...pe,region:pe.region||t})}}):null,ke?o.jsx(i5t,{space:ke,region:ke.region||Ji(e),onClose:()=>st(null),onUpdated:pe=>{const We={...pe,region:pe.region||ke.region||Ji(e)};st(null),k(vt=>vt&&zl(vt)===zl(We)?We:vt),m(vt=>vt.map(vn=>zl(vn)===zl(We)?We:vn)),ze(vt=>vt+1)}}):null,Le?o.jsx(y5t,{space:Le,canUseSandbox:(X==null?void 0:X.enabled)===!0,onClose:()=>Me(null),onUpload:()=>{qe(Le),Me(null)},onSandbox:()=>{const pe=Le;Me(null),ut(pe),ve({operation:"create"})}}):null,Ie?o.jsx(r5t,{space:Ie,region:Ie.region||Ji(e),onClose:()=>qe(null),onUploaded:()=>{qe(null),De(pe=>pe+1),ze(pe=>pe+1)}}):null]})}function x5t(e){return[{id:"skills",label:e("library.tabs.skills"),panelId:"library-skills-panel"},{id:"knowledge",label:e("library.tabs.knowledge"),panelId:"library-knowledge-panel"},{id:"artifacts",label:e("library.tabs.artifacts"),panelId:"library-artifacts-panel"}]}function w5t({cloudProvider:e,studioRegion:t="",activeTab:n,onTabChange:i,onPageTitleChange:r,skillInitialWorkspace:s=null,onSkillInitialWorkspaceConsumed:a,artifactSources:l=[],artifactUserId:c="",onArtifactActivate:u,onArtifactSourceOpen:d}){const{t:f,i18n:h}=Te("workspaceTools"),m=p.useMemo(()=>x5t(f),[f]),g=f("library.tabs.skills"),b=tR(t)?t:Ji(e),[v,y]=p.useState(b),[x,O]=p.useState(g),w=p.useRef(g),[k,S]=p.useState(!1),[E,C]=p.useState(()=>new Set(["skills",n])),[N,_]=p.useState({skills:0,knowledge:0,artifacts:0}),j=p.useRef(u),[A,F]=p.useState([]),[T,P]=p.useState(!1),[R,L]=p.useState(""),M=p.useMemo(()=>{const le=Qot(l,f("library.untitledSession"));return{key:JSON.stringify(le),candidates:le}},[l,f]),U=p.useRef(M);U.current.key!==M.key&&(U.current=M);const I=U.current.candidates,H=p.useMemo(()=>Iu(e),[e]);p.useEffect(()=>{y(b)},[b]),p.useEffect(()=>{const le=w.current;O(se=>se===le?g:se),w.current=g},[g]),p.useEffect(()=>{j.current=u},[u]),p.useEffect(()=>{C(le=>{if(le.has(n))return le;const se=new Set(le);return se.add(n),se})},[n]),p.useEffect(()=>{var se;const le=n==="skills"?x:((se=m.find(re=>re.id===n))==null?void 0:se.label)||f("library.title");r==null||r(le)},[n,r,x,f,m]),p.useEffect(()=>{var le;n==="artifacts"&&((le=j.current)==null||le.call(j))},[n,N.artifacts]);const K=p.useCallback(async()=>{P(!0),L("");try{F(await Yot(I))}catch(le){L(le instanceof Error?le.message:String(le))}finally{P(!1)}},[I]);p.useEffect(()=>{n==="artifacts"&&K()},[n,N.artifacts,K]);const Q=le=>{C(se=>{if(se.has(le))return se;const re=new Set(se);return re.add(le),re}),_(se=>({...se,[le]:se[le]+1})),i(le)},q=o.jsx(dE,{idPrefix:"library",ariaLabel:f("library.categoryAria"),value:n,items:m,onChange:Q}),B=le=>o.jsx(lN,{id:le,ariaLabel:f("library.regionAria"),value:v,options:H,onChange:y}),ee=n==="skills"?x!==g:n==="knowledge"&&k;return o.jsxs(Th,{className:`library-view${ee?" is-detail":""}`,"aria-label":f("library.title"),children:[ee?null:o.jsx(zx,{className:"library-view__header",title:f("library.title")}),o.jsxs("div",{className:"library-panels",children:[E.has("skills")?o.jsx("div",{id:"library-skills-panel",className:"library-panel",role:"tabpanel","aria-labelledby":"library-skills-tab",hidden:n!=="skills",children:o.jsx(v5t,{cloudProvider:e,region:v,active:n==="skills",activationRevision:N.skills,onPageTitleChange:O,initialWorkspace:s,onInitialWorkspaceConsumed:a,toolbarLeading:q,toolbarFilters:B("library-skills-region-filter")})}):null,E.has("knowledge")?o.jsx("div",{id:"library-knowledge-panel",className:"library-panel",role:"tabpanel","aria-labelledby":"library-knowledge-tab",hidden:n!=="knowledge",children:o.jsx(r1t,{cloudProvider:e,region:v,active:n==="knowledge",activationRevision:N.knowledge,onDetailChange:S,toolbarLeading:q,toolbarFilters:B("library-knowledge-region-filter")})}):null,E.has("artifacts")?o.jsx("div",{id:"library-artifacts-panel",className:"library-panel",role:"tabpanel","aria-labelledby":"library-artifacts-tab",hidden:n!=="artifacts",children:o.jsx(Got,{items:A,region:v,userId:c,active:n==="artifacts",activationRevision:N.artifacts,loading:T,error:R?jd(R,h.resolvedLanguage||h.language)||f("artifactLibrary.loadDetailFallback"):"",onRetry:()=>void K(),onEdit:Zot,onDelete:Jot,onDownload:elt,onOpenSource:d?le=>d(le.appName,le.sessionId):void 0,toolbarLeading:q,toolbarFilters:B("library-artifacts-region-filter")})}):null]})]})}const uje="veadk_agentkit_connections",O5t=3e3,hte=6e4;function ku(){try{const e=localStorage.getItem(uje);return(e?JSON.parse(e):[]).filter(n=>!n.runtimeId||!!n.region)}catch{return[]}}function LI(e){try{localStorage.setItem(uje,JSON.stringify(e))}catch{}}function Lu(e,t){return`agentkit:${e}:${t}`}function dje(e){try{return new URL(e).host}catch{return e}}function o1(e){Mbe();for(const t of e)if(!(t.runtimeId&&!t.region))for(const n of t.apps)Dbe(Lu(t.id,n),t.runtimeId?{app:n,runtimeId:t.runtimeId,region:t.region}:{app:n,base:t.base,apiKey:t.apiKey})}function fje(e,t,n,i,r,s){const a={id:`rt_${e}`,name:t||e,runtimeId:e,region:n,apps:i,appLabels:r,currentVersion:s},l=ku(),c=l.findIndex(u=>u.runtimeId===e);return c===-1?l.push(a):l[c]=a,LI(l),o1(l),a}async function S5t(e,t,n,i,r){let s=null,a=n||"cn-beijing",l=null;for(const f of Qk(n))try{const h=await Fv(e,f,{retryProbe:!0,preferCached:!0,currentVersion:i});if(h&&h.length>0){await J0e(e,f),s=h,a=f;break}}catch(h){if(h instanceof Cx)throw lj(e),h;if(h instanceof Ds&&h.unsupported){l=h;continue}throw h}if(!s||s.length===0)throw lj(e),l||new Ds(V("connections.runtimeUnsupported"),!0,!0);const c=(r==null?void 0:r.trim())||s[0],u=Object.fromEntries(s.map(f=>[f,f===s[0]?c:f])),d=fje(e,t,a,s,u,i);return Lu(d.id,s[0])}function k5t(e){return new Promise(t=>window.setTimeout(t,e))}async function UA(e,t,n,i,r={}){const s=Date.now();for(;;)try{return await S5t(e,t,n,i,r.agentName)}catch(a){const l=Date.now()-s;if(!r.waitForReady||!(a instanceof Ds)||!a.retryable||l>=hte)throw a;const c=Math.min(O5t,hte-l);await k5t(c)}}async function hje(e,t,n,i){const r=t.trim().replace(/\/+$/,""),s=await zk(r,n.trim()),a={id:Date.now().toString(36),name:e.trim()||dje(r),base:r,apiKey:n.trim(),apps:s,appLabels:i&&s.length>0?{[s[0]]:i}:void 0},l=[...ku().filter(c=>c.base!==r),a];return LI(l),o1(l),a}function E5t(e){const t=ku().filter(n=>n.id!==e);return LI(t),o1(t),t}function lj(e){const t=ku().filter(n=>n.runtimeId!==e);return LI(t),o1(t),t}function pje(e,t){const n=e.map(r=>({id:r,label:r,app:r,remote:!1})),i=t.flatMap(r=>r.apps.map(s=>{var l;const a=((l=r.appLabels)==null?void 0:l[s])??s;return{id:Lu(r.id,s),label:a,app:s,remote:!0,host:r.runtimeId?r.name:dje(r.base??""),runtimeId:r.runtimeId,region:r.region,currentVersion:r.currentVersion}}));return[...n,...i]}const pte=Object.freeze(Object.defineProperty({__proto__:null,addConnection:hje,addRuntimeConnection:fje,buildAgentEntries:pje,connectRuntime:UA,loadConnections:ku,registerConnections:o1,remoteAppId:Lu,removeConnection:E5t,removeRuntimeConnection:lj},Symbol.toStringTag,{value:"Module"}));function C5t({onAdded:e,onCancel:t}){const{t:n}=Te("conversation"),[i,r]=p.useState(""),[s,a]=p.useState(""),[l,c]=p.useState(""),[u,d]=p.useState(!1),[f,h]=p.useState(""),m=i.trim().length>0&&s.trim().length>0&&!u;async function g(){if(m){d(!0),h("");try{const b=await hje(l,i,s,l);if(b.apps.length===0){h(n("addAgentKit.noAgents")),d(!1);return}e(Lu(b.id,b.apps[0]))}catch(b){h(n("addAgentKit.connectionFailed",{error:String(b)})),d(!1)}}}return o.jsx("div",{className:"addagent",children:o.jsxs("div",{className:"addagent-card",children:[o.jsx("h2",{className:"addagent-title",children:n("addAgentKit.title")}),o.jsx("p",{className:"addagent-sub",children:n("addAgentKit.description")}),o.jsxs("label",{className:"addagent-field",children:[o.jsx("span",{className:"addagent-label",children:n("addAgentKit.url")}),o.jsx("input",{className:"addagent-input",value:i,onChange:b=>r(b.target.value),placeholder:"https://xxxxx.apigateway-cn-beijing.volceapi.com",autoFocus:!0})]}),o.jsxs("label",{className:"addagent-field",children:[o.jsx("span",{className:"addagent-label",children:"API Key"}),o.jsx("input",{className:"addagent-input",type:"password",value:s,onChange:b=>a(b.target.value),placeholder:n("addAgentKit.apiKeyHint")})]}),o.jsxs("label",{className:"addagent-field",children:[o.jsx("span",{className:"addagent-label",children:n("addAgentKit.displayName")}),o.jsx("input",{className:"addagent-input",value:l,onChange:b=>c(b.target.value),placeholder:n("addAgentKit.displayNameHint")})]}),f&&o.jsx("div",{className:"addagent-error",children:f}),o.jsxs("div",{className:"addagent-actions",children:[o.jsx("button",{className:"addagent-btn addagent-btn--ghost",onClick:t,disabled:u,children:n("addAgentKit.cancel")}),o.jsxs("button",{className:"addagent-btn addagent-btn--primary",onClick:g,disabled:!m,children:[u?o.jsx(fi,{className:"icon spin"}):null,n(u?"addAgentKit.connecting":"addAgentKit.connect")]})]})]})})}const T5t=/[\u3400-\u4dbf\u4e00-\u9fff\uf900-\ufaff]/u,A5t={"deploy.build.logs_syncing":"client.deploymentProgress.buildLogsSyncing","deploy.build.logs_complete":"client.deploymentProgress.buildLogsComplete","deploy.build.failed_logs_synced":"client.deploymentProgress.buildFailedLogsSynced","deploy.build.logs_unavailable":"client.deploymentProgress.buildLogsUnavailable","deploy.build.final_logs_unavailable":"client.deploymentProgress.finalBuildLogsUnavailable"},_5t={prepare:"client.deploymentProgress.preparing",upload:"client.deploymentProgress.uploading",build:"client.deploymentProgress.building",deploy:"client.deploymentProgress.deploying",publish:"client.deploymentProgress.publishing",evaluation:"client.deploymentProgress.evaluating",update:"client.deploymentProgress.updating",complete:"client.deploymentProgress.completing",github:"client.deploymentProgress.github"};function $I(e){var r,s;const t=((r=e.message)==null?void 0:r.trim())??"",n=e.messageCode?A5t[e.messageCode]:void 0;if(n)return V(n);if(t&&(F7e().toLowerCase()==="zh-cn"||!T5t.test(t)))return t;if(e.phase==="build"&&((s=e.buildLog)!=null&&s.status)){const a={running:"client.deploymentProgress.buildLogsSyncing",complete:"client.deploymentProgress.buildLogsComplete",error:"client.deploymentProgress.buildLogsUnavailable"}[e.buildLog.status];if(a)return V(a)}const i=e.phase?_5t[e.phase]:void 0;return i?V(i):t||V("client.deploymentProgress.inProgress")}function N5t(e){return[{id:"case-1",itemKey:"case-1",kind:"good",input:e("agentWorkspace.defaultCases.weeklyFeedback.input"),output:e("agentWorkspace.defaultCases.weeklyFeedback.output"),referenceOutput:e("agentWorkspace.defaultCases.weeklyFeedback.output"),comment:"",agentName:e("agentWorkspace.defaultCases.agentName"),sessionId:"",messageId:"",runtimeId:"",invocationId:"",userId:"",createdAt:"2026-08-05T09:12:00+08:00",evaluationSetId:"",evaluationSetName:e("agentWorkspace.defaultCases.goodSetName"),workspaceId:"",tag:e("agentWorkspace.defaultCases.weeklyFeedback.tag"),source:"auto",score:.92,reason:e("agentWorkspace.defaultCases.weeklyFeedback.reason")},{id:"case-2",itemKey:"case-2",kind:"good",input:e("agentWorkspace.defaultCases.research.input"),output:e("agentWorkspace.defaultCases.research.output"),referenceOutput:e("agentWorkspace.defaultCases.research.output"),comment:"",agentName:e("agentWorkspace.defaultCases.agentName"),sessionId:"",messageId:"",runtimeId:"",invocationId:"",userId:"",createdAt:"2026-08-05T08:47:00+08:00",evaluationSetId:"",evaluationSetName:e("agentWorkspace.defaultCases.goodSetName"),workspaceId:"",tag:e("agentWorkspace.defaultCases.research.tag"),source:"user"},{id:"case-3",itemKey:"case-3",kind:"bad",input:e("agentWorkspace.defaultCases.uncertainConclusion.input"),output:e("agentWorkspace.defaultCases.uncertainConclusion.output"),referenceOutput:"",comment:"",agentName:e("agentWorkspace.defaultCases.agentName"),sessionId:"",messageId:"",runtimeId:"",invocationId:"",userId:"",createdAt:"2026-08-05T07:35:00+08:00",evaluationSetId:"",evaluationSetName:e("agentWorkspace.defaultCases.badSetName"),workspaceId:"",tag:e("agentWorkspace.defaultCases.uncertainConclusion.tag"),source:"auto",score:.28,reason:e("agentWorkspace.defaultCases.uncertainConclusion.reason")},{id:"case-4",itemKey:"case-4",kind:"bad",input:e("agentWorkspace.defaultCases.repeatedTool.input"),output:e("agentWorkspace.defaultCases.repeatedTool.output"),referenceOutput:"",comment:"",agentName:e("agentWorkspace.defaultCases.agentName"),sessionId:"",messageId:"",runtimeId:"",invocationId:"",userId:"",createdAt:"2026-08-05T06:58:00+08:00",evaluationSetId:"",evaluationSetName:e("agentWorkspace.defaultCases.badSetName"),workspaceId:"",tag:e("agentWorkspace.defaultCases.repeatedTool.tag"),source:"user"}]}const j5t=[{id:"eval-regression",name:"核心能力回归",agentIds:[],caseSet:"核心回归集",evaluator:"综合质量评估器",metrics:["回答质量","工具调用"],concurrency:"4",history:[{id:"run-1",createdAt:"今天 10:32",score:88,status:"completed"},{id:"run-2",createdAt:"昨天 16:08",score:84,status:"completed"}]},{id:"eval-safety",name:"安全与幻觉检查",agentIds:[],caseSet:"安全边界集",evaluator:"事实一致性评估器",metrics:["事实准确性","拒答合理性"],concurrency:"2",history:[{id:"run-3",createdAt:"7 月 25 日 14:20",score:91,status:"completed"}]}],R5t={核心能力回归:"agentWorkspace.evaluationDefaults.coreRegression",安全与幻觉检查:"agentWorkspace.evaluationDefaults.safetyCheck",核心回归集:"agentWorkspace.evaluationDefaults.coreSet",安全边界集:"agentWorkspace.evaluationDefaults.safetySet",工具调用集:"agentWorkspace.evaluationDefaults.toolSet",综合质量评估器:"agentWorkspace.evaluationDefaults.qualityEvaluator",事实一致性评估器:"agentWorkspace.evaluationDefaults.factualEvaluator",工具调用评估器:"agentWorkspace.evaluationDefaults.toolEvaluator",回答质量:"agentWorkspace.evaluationDefaults.responseQuality",事实准确性:"agentWorkspace.evaluationDefaults.factualAccuracy",工具调用:"agentWorkspace.evaluationDefaults.toolUse",响应效率:"agentWorkspace.evaluationDefaults.responseEfficiency","今天 10:32":"agentWorkspace.evaluationDefaults.todayTime","昨天 16:08":"agentWorkspace.evaluationDefaults.yesterdayTime","7 月 25 日 14:20":"agentWorkspace.evaluationDefaults.julyTime",刚刚:"agentWorkspace.evaluationDefaults.justNow"};function Ww(e,t){const n=R5t[e];return n?t(n):e}const mte=["basic","usage","evaluations","optimizations","integrations","versions"],I5t=20;function P5t(e,t,n){const i=Date.parse(e);return Number.isNaN(i)?n("agentWorkspace.notProvided"):new Intl.DateTimeFormat(t,{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1}).format(i)}const sw=[{id:"api-server",label:"API Server"},{id:"a2a",label:"A2A"}];function iL(e,t){return e?`${e.replace(/\/+$/,"")}${t}`:""}function D5t(e,t){const n=e.trim();if(!n||!t)return n;try{const i=new URL(n),r=i.hostname.replace(/^\[|\]$/g,"").toLowerCase();if(!["localhost","127.0.0.1","::1"].includes(r))return n;const s=new URL(t);return i.protocol=s.protocol,i.hostname=s.hostname,i.port=s.port,i.toString()}catch{return n}}function gte(e,t){return e==="key_auth"?"API Key":e==="custom_jwt"?"OAuth / JWT":t(e==="none"?"agentWorkspace.noAuthentication":"agentWorkspace.notAvailable")}function bte(e,t){return t(e==="published"?"agentWorkspace.githubStatus.published":e==="publishing"?"agentWorkspace.githubStatus.publishing":e==="failed"?"agentWorkspace.githubStatus.failed":e==="pending"?"agentWorkspace.githubStatus.pending":"agentWorkspace.githubStatus.unknown")}function M5t(e,t){return e.changeType==="rollback"?t("agentWorkspace.rollbackEvent"):e.version}function v8(e){return JSON.stringify(e)}function mje(e){return e==="key_auth"?`API_KEY = "" +`,4);return n>=0?t.slice(n+5).trimStart():e}function Oje(e,t){const n=(e||"").trim();return!n||[">",">-","|","|-"].includes(n)?t("common.noDescription"):n}function _5t(){return o.jsx("svg",{className:"icon",viewBox:"0 0 24 24",fill:"none","aria-hidden":!0,children:o.jsx("path",{d:"m7.5 7.5 9 9m0-9-9 9",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})})}function N5t(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M12 5.5v13M5.5 12h13",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round"})})}function xte({direction:e}){return o.jsx("svg",{className:"icon",viewBox:"0 0 20 20",fill:"none","aria-hidden":!0,children:o.jsx("path",{d:e==="left"?"m11.7 5.5-4.2 4.5 4.2 4.5":"m8.3 5.5 4.2 4.5-4.2 4.5",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"})})}function j5t(){return o.jsx("span",{className:"skillcenter-loading-mark","aria-hidden":!0})}function R5t({page:e,total:t,pageSize:n,onPage:i}){const{t:r}=Ae("ui"),s=Math.max(1,Math.ceil(t/n));return o.jsxs("footer",{className:"skillcenter-pager",children:[o.jsx("span",{children:r("skillCenter.totalItems",{count:t})}),o.jsxs("div",{className:"skillcenter-pager-actions",children:[o.jsx("button",{type:"button",onClick:()=>i(e-1),disabled:e<=1,"aria-label":r("common.previousPage"),children:o.jsx(xte,{direction:"left"})}),o.jsxs("span",{children:[e," / ",s]}),o.jsx("button",{type:"button",onClick:()=>i(e+1),disabled:e>=s,"aria-label":r("common.nextPage"),children:o.jsx(xte,{direction:"right"})})]})]})}function I5t({children:e}){return o.jsx("div",{className:"skillcenter-empty",children:e})}function oL({kind:e,title:t,description:n,error:i,action:r}){return o.jsx("div",{className:`skillcenter-page-state is-${e}`,role:e==="error"?"alert":"status",children:o.jsxs(Tn,{fill:"none",children:[o.jsx(Tn.Title,{children:t}),n?o.jsx(Tn.Description,{children:n}):null,i?o.jsx(dl,{error:i}):null,r?o.jsx(Tn.ActionRow,{children:o.jsx(Ht,{color:"secondary",size:"lg",onClick:r.onClick,children:r.label})}):null]})})}function wte({errors:e,cloudProvider:t,fullPage:n=!1,onRetry:i}){const{t:r}=Ae("ui");return o.jsxs("div",{className:`skillcenter-space-errors${n?" is-full-page":""}`,role:"alert",children:[o.jsxs("div",{className:"skillcenter-space-errors__content",children:[o.jsx("strong",{children:r(n?"skillCenter.cannotLoadSpaces":"skillCenter.someSpacesFailed")}),e.map(({region:s,error:a})=>o.jsxs("section",{children:[o.jsx("span",{children:vh(s,t)}),o.jsx(dl,{error:a})]},s))]}),o.jsx("button",{type:"button",onClick:i,children:r("common.reload")})]})}function P5t({skill:e,space:t,region:n,cloudProvider:i,detail:r,files:s,loading:a,error:l,canOptimize:c,onOptimize:u,onDownload:d,onClose:f}){const{t:h}=Ae("ui");return p.useEffect(()=>{const m=g=>{g.key==="Escape"&&f()};return window.addEventListener("keydown",m),()=>window.removeEventListener("keydown",m)},[f]),o.jsx("div",{className:"skill-detail-backdrop",role:"presentation",onMouseDown:f,children:o.jsxs("section",{className:"skill-detail-dialog",role:"dialog","aria-modal":"true","aria-labelledby":"skill-detail-title",onMouseDown:m=>m.stopPropagation(),children:[o.jsxs("header",{className:"skill-detail-head",children:[o.jsx("div",{className:"skill-detail-heading",children:o.jsxs("div",{children:[o.jsx("h2",{id:"skill-detail-title",children:(r==null?void 0:r.name)||e.skillName}),o.jsx("p",{children:Oje((r==null?void 0:r.description)||e.skillDescription,h)})]})}),o.jsxs("div",{className:"skill-detail-actions",children:[o.jsx("button",{type:"button",onClick:d,disabled:s.length===0,children:h("skillCenter.downloadZip")}),o.jsx(fj,{disabled:!c,placement:"bottom",children:o.jsx("button",{type:"button",onClick:u,disabled:!c,children:h("skillCenter.optimize")})}),o.jsx("button",{type:"button",className:"skill-detail-close",onClick:f,"aria-label":h("skillCenter.closeSkillDetails"),children:o.jsx(_5t,{})})]})]}),o.jsxs("dl",{className:"skill-detail-meta",children:[o.jsxs("div",{children:[o.jsx("dt",{children:h("skillCenter.skillId")}),o.jsx("dd",{title:e.skillId,children:e.skillId})]}),o.jsxs("div",{children:[o.jsx("dt",{children:h("agentSelector.version")}),o.jsx("dd",{children:(r==null?void 0:r.version)||e.version||"—"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:h("agentSelector.status")}),o.jsx("dd",{children:wje(e.skillStatus,h)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:h("skillCenter.skillSpace")}),o.jsx("dd",{title:t.name,children:t.name})]}),o.jsxs("div",{children:[o.jsx("dt",{children:h("myAgents.region")}),o.jsx("dd",{children:vh(n,i)})]})]}),o.jsxs("div",{className:"skill-detail-content skill-detail-content--files",children:[o.jsx("div",{className:"skill-detail-content-title",children:h("skillCenter.allFiles")}),a?o.jsxs("div",{className:"skillcenter-loading",children:[o.jsx(j5t,{}),h("skillCenter.loadingSkillContent")]}):l?o.jsx("div",{className:"skillcenter-error",children:o.jsx(dl,{error:l})}):s.length>0?o.jsx(vje,{files:s.map(m=>m.path.endsWith("SKILL.md")&&m.content?{...m,content:A5t(m.content)}:m)}):o.jsx(I5t,{children:h("skillCenter.noSkillContent")})]})]})})}function D5t({space:e,canUseSandbox:t,onUpload:n,onSandbox:i,onClose:r}){const{t:s}=Ae("ui");return p.useEffect(()=>{const a=l=>{l.key==="Escape"&&r()};return window.addEventListener("keydown",a),()=>window.removeEventListener("keydown",a)},[r]),o.jsx("div",{className:"skill-dialog-backdrop",role:"presentation",onMouseDown:r,children:o.jsxs("section",{className:"skill-dialog skill-add-dialog",role:"dialog","aria-modal":"true","aria-labelledby":"skill-add-dialog-title",onMouseDown:a=>a.stopPropagation(),children:[o.jsxs("header",{children:[o.jsxs("div",{children:[o.jsx("h2",{id:"skill-add-dialog-title",children:s("skillCenter.addSkill")}),o.jsx("p",{title:e.name,children:e.name})]}),o.jsx("button",{type:"button",onClick:r,children:s("common.cancel")})]}),o.jsxs("div",{className:"skill-add-dialog__options",children:[o.jsxs("button",{type:"button",onClick:n,children:[o.jsx("strong",{children:s("skillCenter.localUpload")}),o.jsx("span",{children:s("skillCenter.localUploadDescription")})]}),o.jsx(fj,{disabled:!t,placement:"inside",children:o.jsxs("button",{type:"button",disabled:!t,onClick:i,children:[o.jsx("strong",{children:s("skillCenter.autoCreate")}),o.jsx("span",{children:s("skillCenter.autoCreateDescription")})]})})]})]})})}function M5t({cloudProvider:e="volcengine",region:t,active:n=!0,activationRevision:i=0,initialWorkspace:r=null,onInitialWorkspaceConsumed:s,onPageTitleChange:a,toolbarLeading:l,toolbarFilters:c}){var we;const{t:u,i18n:d}=Ae("ui"),f=p.useMemo(()=>[t],[t]),[h,m]=p.useState([]),[g,b]=p.useState({}),[v,y]=p.useState(!1),[x,O]=p.useState(""),[w,k]=p.useState((r==null?void 0:r.space)??null),[S,E]=p.useState([]),[C,N]=p.useState(1),[T,j]=p.useState(0),[A,L]=p.useState(!1),[_,P]=p.useState(null),[I,$]=p.useState(!1),[M,B]=p.useState(""),[R,V]=p.useState("overview"),[K,Q]=p.useState(null),[q,U]=p.useState(null),[G,ae]=p.useState([]),[re,se]=p.useState(!1),[me,Z]=p.useState(null),[X,J]=p.useState(null),[oe,Ee]=p.useState(!1),[he,Me]=p.useState(null),[De,_e]=p.useState(null),[Re,Xe]=p.useState(null),[Ce,Fe]=p.useState(0),[Oe,$e]=p.useState(0),[Y,pe]=p.useState(""),[Te,We]=p.useState(""),[nt,$t]=p.useState(null),[je,ve]=p.useState(r),ze=p.useRef(0),et=p.useRef(0),Se=p.useRef(!1),Kt=p.useRef(null),en=p.useRef(null),cn=p.useRef(null),kt=p.useDeferredValue(x),Pt=p.useDeferredValue(M),gt=(je&&(w||je.selectPublishSpace)?je.operation==="create"?u("skillCenter.createSkill"):u("skillCenter.optimizeNamed",{name:((we=je.source)==null?void 0:we.name)||u("skillCenter.skill")}):"")||(w==null?void 0:w.name)||u("skillCenter.library");p.useEffect(()=>{n&&(a==null||a(gt))},[n,a,gt]),p.useEffect(()=>{r&&(s==null||s())},[r,s]);const Le=p.useMemo(()=>{const ke=kt.trim().toLocaleLowerCase();return ke?h.filter(Ge=>`${Ge.name} ${Ge.description||""} ${Ge.projectName||""}`.toLocaleLowerCase().includes(ke)):h},[kt,h]),xt=p.useMemo(()=>{const ke=Pt.trim().toLocaleLowerCase();return ke?S.filter(Ge=>`${Ge.skillName} ${Ge.skillDescription||""}`.toLocaleLowerCase().includes(ke)):S},[Pt,S]),wt=(w==null?void 0:w.region)||nr(e),Et=p.useMemo(()=>f.flatMap(ke=>{var yt;const Ge=(yt=g[ke])==null?void 0:yt.error;return Ge?[{region:ke,error:Ge}]:[]}),[g,f]),Qe=f.some(ke=>{const Ge=g[ke];return!!(Ge&&!Ge.done&&!Ge.error)}),ye=Et.length===f.length;p.useEffect(()=>{const ke=new AbortController;return dI(ke.signal).then(J).catch(()=>J({enabled:!1,reason:u("skillCenter.adminNotConfigured"),operations:["create","optimize"],models:[],styles:{}})),()=>ke.abort()},[u]);const Ve=p.useCallback(async(ke,Ge)=>{var Mn;if(Se.current||ke.length===0)return;Se.current=!0,y(!0),Ge&&((Mn=Kt.current)==null||Mn.abort(),m([]),b(Object.fromEntries(ke.map(({region:Ot})=>[Ot,{nextPage:1,loadedCount:0,done:!1,error:null}]))));const yt=new AbortController;Kt.current=yt;const lt=++et.current,ci=await Promise.allSettled(ke.map(async({region:Ot,page:nn})=>({region:Ot,page:nn,result:await I1t({region:Ot,page:nn,pageSize:S5t,signal:yt.signal})})));if(et.current!==lt)return;const Ke=ci.map((Ot,nn)=>{const wn=ke[nn];return Ot.status==="rejected"?{request:wn,error:_a(Ot.reason,u("skillCenter.errors.loadSpaces")),items:[],totalCount:0}:{request:wn,error:null,items:(Ot.value.result.items||[]).map(Nn=>({...Nn,region:Nn.region||Ot.value.region})),totalCount:Ot.value.result.totalCount||0}}),Dt=Ke.flatMap(Ot=>Ot.items);b(Ot=>{const nn={...Ot};return Ke.forEach(({request:wn,error:Nn,items:di,totalCount:Ei})=>{const fi=nn[wn.region]||{nextPage:wn.page,loadedCount:0,done:!1,error:null};if(Nn){nn[wn.region]={...fi,error:Nn};return}const On=fi.loadedCount+di.length;nn[wn.region]={nextPage:wn.page+1,loadedCount:On,done:di.length===0||On>=Ei,error:null}}),nn}),m(Ot=>T5t(Ge?[]:Ot,Dt)),k(Ot=>Ot&&(Dt.find(nn=>Vl(nn)===Vl(Ot))||Ot)),Se.current=!1,y(!1)},[]),Ye=p.useCallback(()=>{if(Se.current)return;const ke=f.flatMap(Ge=>{const yt=g[Ge];return yt&&!yt.done&&!yt.error?[{region:Ge,page:yt.nextPage}]:[]});Ve(ke,!1)},[Ve,g,f]);p.useEffect(()=>{Rt(),k(null),E([]),N(1)},[e]),p.useEffect(()=>{if(n)return Ve(f.map(ke=>({region:ke,page:1})),!0),()=>{var ke;et.current+=1,(ke=Kt.current)==null||ke.abort(),Se.current=!1}},[n,i,Ve,f,Ce]),p.useEffect(()=>{const ke=cn.current,Ge=en.current;if(!ke||!Ge||!Qe||v)return;const yt=new IntersectionObserver(([lt])=>{lt.isIntersecting&&Ye()},{root:Ge,rootMargin:"240px 0px",threshold:.01});return yt.observe(ke),()=>yt.disconnect()},[Qe,Ye,v]);const ht=()=>{const ke=en.current;!ke||!Qe||v||ke.scrollHeight-ke.scrollTop-ke.clientHeight<=240&&Ye()};p.useEffect(()=>{if(!w){E([]),j(0),$(!1);return}let ke=!0;return L(!0),P(null),Q1t(w.id,{region:wt,page:C,pageSize:yte,project:w.projectName}).then(Ge=>{ke&&(E(Ge.items||[]),j(Ge.totalCount||0),$(Ge.degraded===!0))}).catch(Ge=>{ke&&(E([]),j(0),$(!1),P(_a(Ge,u("skillCenter.errors.loadSkills"))))}).finally(()=>{ke&&L(!1)}),()=>{ke=!1}},[wt,w,C,Oe,u]);const ct=ke=>{Rt(),k(ke),V("overview"),N(1),B("")},Gt=()=>{Rt(),k(null),E([]),j(0),$(!1),V("overview"),N(1),B(""),$t(null)},Rt=()=>{ze.current+=1,Q(null),U(null),ae([]),Z(null),se(!1)},qt=async ke=>{if(!w)return;const Ge=Vg(ke),yt=ze.current+1;ze.current=yt,Q(ke),U(null),Z(null),se(!0);try{const[lt,ci]=await Promise.all([z1t(w.id,Ge,ke.version,wt,w.projectName,ke.skillName,w.name),B1t({spaceId:w.id,skillId:Ge,version:ke.version,region:wt,skillSpaceName:w.name,skillName:ke.skillName})]);ze.current===yt&&(U(lt),ae(ci))}catch(lt){ze.current===yt&&Z(_a(lt,u("skillCenter.errors.loadSkillDetails")))}finally{ze.current===yt&&se(!1)}},ue=ke=>{if(w)return{kind:"skill-center",skillId:Vg(ke),version:ke.version,region:wt,projectName:w.projectName,skillSpaceId:w.id,skillSpaceName:w.name,name:ke.skillName,description:ke.skillDescription}},_n=ke=>{const Ge=ue(ke);!Ge||!(X!=null&&X.enabled)||(Rt(),ve({operation:"optimize",source:Ge}))},He=async ke=>{if(!(!w||!window.confirm(u("skillCenter.deleteSkillConfirm",{name:ke.skillName})))){pe(ke.skillId),$t(null);try{await F1t({spaceId:w.id,skillId:ke.skillId,region:wt}),$e(Ge=>Ge+1),Fe(Ge=>Ge+1)}catch(Ge){$t(_a(Ge,u("skillCenter.errors.deleteSkill")))}finally{pe("")}}},at=async ke=>{if(!window.confirm(u("skillCenter.deleteSpaceConfirm",{name:ke.name})))return;const Ge=Vl(ke);We(Ge),$t(null);try{await M1t({spaceId:ke.id,region:ke.region||nr(e)}),w&&Vl(w)===Ge&&Gt(),Fe(yt=>yt+1)}catch(yt){$t(_a(yt,u("skillCenter.errors.deleteSpace")))}finally{We("")}};return je&&(w||je.selectPublishSpace)?o.jsx(y5t,{operation:je.operation,cloudProvider:e,space:w??void 0,availableSpaces:h,spacesLoading:v,initialIntent:je.initialIntent,source:je.source,onBack:()=>ve(null),onPublished:()=>{$e(ke=>ke+1),Fe(ke=>ke+1)}}):o.jsxs("section",{className:`skillcenter${w?" is-space":" resource-collection"}`,children:[w?o.jsx(pE,{className:"skillcenter-detail",title:w.name,description:w.description||u("skillCenter.manageSpaceDescription"),identitySeed:w.name,backLabel:u("skillCenter.backToSpaces"),onBack:Gt,sections:[{key:"overview",label:u("skillCenter.overview"),content:o.jsxs(o.Fragment,{children:[nt?o.jsx("div",{className:"skillcenter-inline-error",role:"alert",children:o.jsx(dl,{error:nt})}):null,o.jsx("section",{className:"skillcenter-overview",children:o.jsxs(MB,{className:"skillcenter-detail-facts",children:[o.jsxs("div",{children:[o.jsx("dt",{children:u("skillCenter.skillCount")}),o.jsx("dd",{children:T})]}),o.jsxs("div",{children:[o.jsx("dt",{children:u("skillCenter.updatedAt")}),o.jsx("dd",{children:w.updatedAt?C5t(w.updatedAt,d.resolvedLanguage??d.language):"—"})]})]})})]})},{key:"skills",label:u("skillCenter.skills"),content:o.jsxs(o.Fragment,{children:[nt?o.jsx("div",{className:"skillcenter-inline-error",role:"alert",children:o.jsx(dl,{error:nt})}):null,o.jsxs("section",{className:"skillcenter-results","aria-label":u("skillCenter.skillsInSpace",{name:w.name}),children:[o.jsx(JOe,{title:u("skillCenter.skills"),description:u("skillCenter.totalItems",{count:T}),actions:o.jsx(Em,{"aria-label":u("skillCenter.searchSkills"),value:M,onChange:ke=>B(ke.target.value),placeholder:u("skillCenter.searchSkills")})}),I?o.jsx("div",{className:"skillcenter-inline-warning",role:"status",children:u("skillCenter.degradedRelationWarning")}):null,A&&S.length===0?o.jsx(zd,{}):_&&S.length===0?o.jsx(oL,{kind:"error",title:u("skillCenter.cannotLoadSkills"),error:_,action:{label:u("common.reload"),onClick:()=>$e(ke=>ke+1)}}):xt.length===0?o.jsx(oL,{kind:"empty",title:M.trim()?u("skillCenter.noMatchingSkills"):u("skillCenter.noSkills"),description:M.trim()?u("skillCenter.tryAnotherName"):u("skillCenter.emptySkillsDescription"),action:M.trim()?void 0:{label:u("skillCenter.localUpload"),onClick:()=>Xe(w)}}):o.jsx("div",{className:"skillcenter-table-wrap",children:o.jsxs("table",{className:"skillcenter-table",children:[o.jsx("thead",{children:o.jsxs("tr",{children:[o.jsx("th",{scope:"col",children:u("skillCenter.skills")}),o.jsx("th",{scope:"col",children:u("agentSelector.status")}),o.jsx("th",{scope:"col",className:"skillcenter-table__actions-heading",children:u("skillCenter.actions")})]})}),o.jsx("tbody",{children:xt.map(ke=>o.jsxs("tr",{children:[o.jsx("td",{className:"skillcenter-table__skill",children:o.jsxs("button",{type:"button",onClick:()=>void qt(ke),children:[o.jsxs("span",{className:"skillcenter-table__title-row",children:[o.jsx("strong",{title:ke.skillName,children:ke.skillName}),ke.version?o.jsx("span",{className:"skillcenter-table__version-badge",children:ke.version}):null]}),o.jsx("span",{className:"skillcenter-table__description",children:Oje(ke.skillDescription,u)})]})}),o.jsx("td",{children:o.jsx("span",{className:`skillcenter-status ${E5t(ke.skillStatus)}`,children:wje(ke.skillStatus,u)})}),o.jsx("td",{children:o.jsxs("div",{className:"skillcenter-table__actions",children:[o.jsx("button",{type:"button",onClick:()=>void qt(ke),children:u("common.view")}),o.jsx(fj,{disabled:!(X!=null&&X.enabled),children:o.jsx("button",{type:"button",disabled:!(X!=null&&X.enabled),onClick:()=>_n(ke),children:u("skillCenter.optimize")})}),ke.lookupByName?null:o.jsx("button",{type:"button",className:"is-danger",disabled:Y===ke.skillId,onClick:()=>void He(ke),children:Y===ke.skillId?u("common.deleting"):u("common.delete")})]})})]},`${Vg(ke)}:${ke.version}`))})]})}),!M.trim()&&!A&&!_&&T>0?o.jsx(R5t,{page:C,total:T,pageSize:yte,onPage:N}):null]})]})}],activeSectionKey:R,navigationLabel:u("skillCenter.spaceDetails"),onSectionChange:ke=>V(ke),actionsClassName:"skillcenter-toolbar-actions",actions:o.jsxs(o.Fragment,{children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"outline",size:"lg",pill:!1,onClick:()=>Me(w),children:u("skillCenter.editSpace")}),o.jsx(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,disabled:Te===Vl(w),onClick:()=>void at(w),children:Te===Vl(w)?u("common.deleting"):u("skillCenter.deleteSpace")}),o.jsx(Ht,{type:"button",color:"secondary",variant:"outline",size:"lg",pill:!1,onClick:()=>Xe(w),children:u("skillCenter.localUpload")}),o.jsx(fj,{disabled:!(X!=null&&X.enabled),children:o.jsxs(Ht,{type:"button",color:"primary",size:"lg",pill:!1,disabled:!(X!=null&&X.enabled),onClick:()=>ve({operation:"create"}),children:[o.jsx(Ibe,{"aria-hidden":"true"}),o.jsx("span",{children:u("skillCenter.createSkill")})]})})]})}):o.jsxs(o.Fragment,{children:[o.jsxs(i0,{className:"skillcenter-list-toolbar library-resource-toolbar",children:[l,o.jsxs("div",{className:"resource-toolbar__actions",children:[c,o.jsx(Em,{"aria-label":u("skillCenter.searchSpaces"),value:x,onChange:ke=>O(ke.target.value),placeholder:u("skillCenter.searchSpaces")})]})]}),nt?o.jsx("div",{className:"skillcenter-inline-error",role:"alert",children:o.jsx(dl,{error:nt})}):null,o.jsxs(r0,{className:"skillcenter-list-results",ref:en,"aria-label":u("skillCenter.spaceList"),onScroll:ht,children:[Et.length>0&&!ye?o.jsx(wte,{errors:Et,cloudProvider:e,onRetry:()=>Fe(ke=>ke+1)}):null,v&&h.length===0?o.jsx(zd,{}):ye&&h.length===0?o.jsx(wte,{errors:Et,cloudProvider:e,fullPage:!0,onRetry:()=>Fe(ke=>ke+1)}):Le.length===0&&x.trim()?o.jsx(oL,{kind:"empty",title:u("skillCenter.noMatchingSpaces"),description:u("skillCenter.tryAnotherName")}):o.jsxs(Gx,{children:[x.trim()?null:o.jsx(jb,{"aria-label":u("skillCenter.createSpace"),icon:o.jsx(N5t,{}),onClick:()=>Ee(!0),children:u("skillCenter.newSpace")}),Le.map(ke=>{const Ge=Vl(ke);return o.jsx(yE,{className:"skillcenter-space-card",title:ke.name,description:ke.description||u("common.noDescription"),metadata:[{label:u("skillCenter.skillCount"),value:u("skillCenter.skillCountValue",{count:ke.skillCount??0})},{label:u("skillCenter.updatedAt"),value:ez(ke.updatedAt,Date.now(),d.resolvedLanguage??d.language)}],action:{label:u("skillCenter.addSkill"),icon:"plus",onClick:()=>_e(ke)},detailAction:{label:u("common.viewDetails"),onClick:()=>ct(ke)}},Ge)})]}),!ye&&h.length>0?o.jsx("div",{className:"my-agent-load-more",ref:cn,"aria-live":"polite",children:v?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"my-agent-loading-mark","aria-hidden":"true"}),o.jsx("span",{children:u("skillCenter.loadingMoreSpaces")})]}):Qe?o.jsx("span",{children:u("skillCenter.scrollForMore")}):Et.length>0?o.jsx("span",{children:u("skillCenter.someSpacesFailed")}):o.jsx("span",{children:u("skillCenter.allSpacesLoaded")})}):null]})]}),K&&w&&o.jsx(P5t,{skill:K,space:w,region:wt,cloudProvider:e,detail:q,files:G,loading:re,error:me,canOptimize:(X==null?void 0:X.enabled)===!0,onOptimize:()=>_n(K),onDownload:()=>void U1t({spaceId:w.id,skillId:Vg(K),version:K.version,region:wt,fallbackName:K.skillName,skillSpaceName:w.name,skillName:K.skillName}).catch(ke=>Z(_a(ke,u("skillCenter.errors.downloadSkill")))),onClose:Rt}),oe?o.jsx(v5t,{region:t,regionOptions:Pu(e),onClose:()=>Ee(!1),onCreated:ke=>{Ee(!1),Fe(Ge=>Ge+1),k({...ke,region:ke.region||t})}}):null,he?o.jsx(x5t,{space:he,region:he.region||nr(e),onClose:()=>Me(null),onUpdated:ke=>{const Ge={...ke,region:ke.region||he.region||nr(e)};Me(null),k(yt=>yt&&Vl(yt)===Vl(Ge)?Ge:yt),m(yt=>yt.map(lt=>Vl(lt)===Vl(Ge)?Ge:lt)),Fe(yt=>yt+1)}}):null,De?o.jsx(D5t,{space:De,canUseSandbox:(X==null?void 0:X.enabled)===!0,onClose:()=>_e(null),onUpload:()=>{Xe(De),_e(null)},onSandbox:()=>{const ke=De;_e(null),ct(ke),ve({operation:"create"})}}):null,Re?o.jsx(w5t,{space:Re,region:Re.region||nr(e),onClose:()=>Xe(null),onUploaded:()=>{Xe(null),$e(ke=>ke+1),Fe(ke=>ke+1)}}):null]})}function L5t(e){return[{id:"skills",label:e("library.tabs.skills"),panelId:"library-skills-panel"},{id:"knowledge",label:e("library.tabs.knowledge"),panelId:"library-knowledge-panel"},{id:"artifacts",label:e("library.tabs.artifacts"),panelId:"library-artifacts-panel"}]}function $5t({cloudProvider:e,studioRegion:t="",activeTab:n,onTabChange:i,onPageTitleChange:r,skillInitialWorkspace:s=null,onSkillInitialWorkspaceConsumed:a,artifactSources:l=[],artifactUserId:c="",onArtifactActivate:u,onArtifactSourceOpen:d}){const{t:f,i18n:h}=Ae("workspaceTools"),m=p.useMemo(()=>L5t(f),[f]),g=f("library.tabs.skills"),b=oR(t)?t:nr(e),[v,y]=p.useState(b),[x,O]=p.useState(g),w=p.useRef(g),[k,S]=p.useState(!1),[E,C]=p.useState(()=>new Set(["skills",n])),[N,T]=p.useState({skills:0,knowledge:0,artifacts:0}),j=p.useRef(u),[A,L]=p.useState([]),[_,P]=p.useState(!1),[I,$]=p.useState(""),M=p.useMemo(()=>{const ae=slt(l,f("library.untitledSession"));return{key:JSON.stringify(ae),candidates:ae}},[l,f]),B=p.useRef(M);B.current.key!==M.key&&(B.current=M);const R=B.current.candidates,V=p.useMemo(()=>Pu(e),[e]);p.useEffect(()=>{y(b)},[b]),p.useEffect(()=>{const ae=w.current;O(re=>re===ae?g:re),w.current=g},[g]),p.useEffect(()=>{j.current=u},[u]),p.useEffect(()=>{C(ae=>{if(ae.has(n))return ae;const re=new Set(ae);return re.add(n),re})},[n]),p.useEffect(()=>{var re;const ae=n==="skills"?x:((re=m.find(se=>se.id===n))==null?void 0:re.label)||f("library.title");r==null||r(ae)},[n,r,x,f,m]),p.useEffect(()=>{var ae;n==="artifacts"&&((ae=j.current)==null||ae.call(j))},[n,N.artifacts]);const K=p.useCallback(async()=>{P(!0),$("");try{L(await plt(R))}catch(ae){$(ae instanceof Error?ae.message:String(ae))}finally{P(!1)}},[R]);p.useEffect(()=>{n==="artifacts"&&K()},[n,N.artifacts,K]);const Q=ae=>{C(re=>{if(re.has(ae))return re;const se=new Set(re);return se.add(ae),se}),T(re=>({...re,[ae]:re[ae]+1})),i(ae)},q=o.jsx(mE,{idPrefix:"library",ariaLabel:f("library.categoryAria"),value:n,items:m,onChange:Q}),U=ae=>o.jsx(hN,{id:ae,ariaLabel:f("library.regionAria"),value:v,options:V,onChange:y}),G=n==="skills"?x!==g:n==="knowledge"&&k;return o.jsxs(Ch,{className:`library-view${G?" is-detail":""}`,"aria-label":f("library.title"),children:[G?null:o.jsx(Kx,{className:"library-view__header",title:f("library.title")}),o.jsxs("div",{className:"library-panels",children:[E.has("skills")?o.jsx("div",{id:"library-skills-panel",className:"library-panel",role:"tabpanel","aria-labelledby":"library-skills-tab",hidden:n!=="skills",children:o.jsx(M5t,{cloudProvider:e,region:v,active:n==="skills",activationRevision:N.skills,onPageTitleChange:O,initialWorkspace:s,onInitialWorkspaceConsumed:a,toolbarLeading:q,toolbarFilters:U("library-skills-region-filter")})}):null,E.has("knowledge")?o.jsx("div",{id:"library-knowledge-panel",className:"library-panel",role:"tabpanel","aria-labelledby":"library-knowledge-tab",hidden:n!=="knowledge",children:o.jsx(w1t,{cloudProvider:e,region:v,active:n==="knowledge",activationRevision:N.knowledge,onDetailChange:S,toolbarLeading:q,toolbarFilters:U("library-knowledge-region-filter")})}):null,E.has("artifacts")?o.jsx("div",{id:"library-artifacts-panel",className:"library-panel",role:"tabpanel","aria-labelledby":"library-artifacts-tab",hidden:n!=="artifacts",children:o.jsx(dlt,{items:A,region:v,userId:c,active:n==="artifacts",activationRevision:N.artifacts,loading:_,error:I?Id(I,h.resolvedLanguage||h.language)||f("artifactLibrary.loadDetailFallback"):"",onRetry:()=>void K(),onEdit:mlt,onDelete:glt,onDownload:blt,onOpenSource:d?ae=>d(ae.appName,ae.sessionId):void 0,toolbarLeading:q,toolbarFilters:U("library-artifacts-region-filter")})}):null]})]})}const Sje="veadk_agentkit_connections",F5t=3e3,Ote=6e4;function Eu(){try{const e=localStorage.getItem(Sje);return(e?JSON.parse(e):[]).filter(n=>!n.runtimeId||!!n.region)}catch{return[]}}function zI(e){try{localStorage.setItem(Sje,JSON.stringify(e))}catch{}}function $u(e,t){return`agentkit:${e}:${t}`}function kje(e){try{return new URL(e).host}catch{return e}}function f1(e){Gbe();for(const t of e)if(!(t.runtimeId&&!t.region))for(const n of t.apps)Kbe($u(t.id,n),t.runtimeId?{app:n,runtimeId:t.runtimeId,region:t.region}:{app:n,base:t.base,apiKey:t.apiKey})}function Eje(e,t,n,i,r,s){const a={id:`rt_${e}`,name:t||e,runtimeId:e,region:n,apps:i,appLabels:r,currentVersion:s},l=Eu(),c=l.findIndex(u=>u.runtimeId===e);return c===-1?l.push(a):l[c]=a,zI(l),f1(l),a}async function B5t(e,t,n,i,r){let s=null,a=n||"cn-beijing",l=null;for(const f of qk(n))try{const h=await Vv(e,f,{retryProbe:!0,preferCached:!0,currentVersion:i});if(h&&h.length>0){await fye(e,f),s=h,a=f;break}}catch(h){if(h instanceof jx)throw hj(e),h;if(h instanceof $s&&h.unsupported){l=h;continue}throw h}if(!s||s.length===0)throw hj(e),l||new $s(H("connections.runtimeUnsupported"),!0,!0);const c=(r==null?void 0:r.trim())||s[0],u=Object.fromEntries(s.map(f=>[f,f===s[0]?c:f])),d=Eje(e,t,a,s,u,i);return $u(d.id,s[0])}function U5t(e){return new Promise(t=>window.setTimeout(t,e))}async function q2(e,t,n,i,r={}){const s=Date.now();for(;;)try{return await B5t(e,t,n,i,r.agentName)}catch(a){const l=Date.now()-s;if(!r.waitForReady||!(a instanceof $s)||!a.retryable||l>=Ote)throw a;const c=Math.min(F5t,Ote-l);await U5t(c)}}async function Cje(e,t,n,i){const r=t.trim().replace(/\/+$/,""),s=await Wk(r,n.trim()),a={id:Date.now().toString(36),name:e.trim()||kje(r),base:r,apiKey:n.trim(),apps:s,appLabels:i&&s.length>0?{[s[0]]:i}:void 0},l=[...Eu().filter(c=>c.base!==r),a];return zI(l),f1(l),a}function Q5t(e){const t=Eu().filter(n=>n.id!==e);return zI(t),f1(t),t}function hj(e){const t=Eu().filter(n=>n.runtimeId!==e);return zI(t),f1(t),t}function Tje(e,t){const n=e.map(r=>({id:r,label:r,app:r,remote:!1})),i=t.flatMap(r=>r.apps.map(s=>{var l;const a=((l=r.appLabels)==null?void 0:l[s])??s;return{id:$u(r.id,s),label:a,app:s,remote:!0,host:r.runtimeId?r.name:kje(r.base??""),runtimeId:r.runtimeId,region:r.region,currentVersion:r.currentVersion}}));return[...n,...i]}const Ste=Object.freeze(Object.defineProperty({__proto__:null,addConnection:Cje,addRuntimeConnection:Eje,buildAgentEntries:Tje,connectRuntime:q2,loadConnections:Eu,registerConnections:f1,remoteAppId:$u,removeConnection:Q5t,removeRuntimeConnection:hj},Symbol.toStringTag,{value:"Module"}));function z5t({onAdded:e,onCancel:t}){const{t:n}=Ae("conversation"),[i,r]=p.useState(""),[s,a]=p.useState(""),[l,c]=p.useState(""),[u,d]=p.useState(!1),[f,h]=p.useState(""),m=i.trim().length>0&&s.trim().length>0&&!u;async function g(){if(m){d(!0),h("");try{const b=await Cje(l,i,s,l);if(b.apps.length===0){h(n("addAgentKit.noAgents")),d(!1);return}e($u(b.id,b.apps[0]))}catch(b){h(n("addAgentKit.connectionFailed",{error:String(b)})),d(!1)}}}return o.jsx("div",{className:"addagent",children:o.jsxs("div",{className:"addagent-card",children:[o.jsx("h2",{className:"addagent-title",children:n("addAgentKit.title")}),o.jsx("p",{className:"addagent-sub",children:n("addAgentKit.description")}),o.jsxs("label",{className:"addagent-field",children:[o.jsx("span",{className:"addagent-label",children:n("addAgentKit.url")}),o.jsx("input",{className:"addagent-input",value:i,onChange:b=>r(b.target.value),placeholder:"https://xxxxx.apigateway-cn-beijing.volceapi.com",autoFocus:!0})]}),o.jsxs("label",{className:"addagent-field",children:[o.jsx("span",{className:"addagent-label",children:"API Key"}),o.jsx("input",{className:"addagent-input",type:"password",value:s,onChange:b=>a(b.target.value),placeholder:n("addAgentKit.apiKeyHint")})]}),o.jsxs("label",{className:"addagent-field",children:[o.jsx("span",{className:"addagent-label",children:n("addAgentKit.displayName")}),o.jsx("input",{className:"addagent-input",value:l,onChange:b=>c(b.target.value),placeholder:n("addAgentKit.displayNameHint")})]}),f&&o.jsx("div",{className:"addagent-error",children:f}),o.jsxs("div",{className:"addagent-actions",children:[o.jsx("button",{className:"addagent-btn addagent-btn--ghost",onClick:t,disabled:u,children:n("addAgentKit.cancel")}),o.jsxs("button",{className:"addagent-btn addagent-btn--primary",onClick:g,disabled:!m,children:[u?o.jsx(gi,{className:"icon spin"}):null,n(u?"addAgentKit.connecting":"addAgentKit.connect")]})]})]})})}const V5t=/[\u3400-\u4dbf\u4e00-\u9fff\uf900-\ufaff]/u,H5t={"deploy.build.logs_syncing":"client.deploymentProgress.buildLogsSyncing","deploy.build.logs_complete":"client.deploymentProgress.buildLogsComplete","deploy.build.failed_logs_synced":"client.deploymentProgress.buildFailedLogsSynced","deploy.build.logs_unavailable":"client.deploymentProgress.buildLogsUnavailable","deploy.build.final_logs_unavailable":"client.deploymentProgress.finalBuildLogsUnavailable"},q5t={prepare:"client.deploymentProgress.preparing",upload:"client.deploymentProgress.uploading",build:"client.deploymentProgress.building",deploy:"client.deploymentProgress.deploying",publish:"client.deploymentProgress.publishing",evaluation:"client.deploymentProgress.evaluating",update:"client.deploymentProgress.updating",complete:"client.deploymentProgress.completing",github:"client.deploymentProgress.github"};function VI(e){var r,s;const t=((r=e.message)==null?void 0:r.trim())??"",n=e.messageCode?H5t[e.messageCode]:void 0;if(n)return H(n);if(t&&(nBe().toLowerCase()==="zh-cn"||!V5t.test(t)))return t;if(e.phase==="build"&&((s=e.buildLog)!=null&&s.status)){const a={running:"client.deploymentProgress.buildLogsSyncing",complete:"client.deploymentProgress.buildLogsComplete",error:"client.deploymentProgress.buildLogsUnavailable"}[e.buildLog.status];if(a)return H(a)}const i=e.phase?q5t[e.phase]:void 0;return i?H(i):t||H("client.deploymentProgress.inProgress")}function W5t(e){return[{id:"case-1",itemKey:"case-1",kind:"good",input:e("agentWorkspace.defaultCases.weeklyFeedback.input"),output:e("agentWorkspace.defaultCases.weeklyFeedback.output"),referenceOutput:e("agentWorkspace.defaultCases.weeklyFeedback.output"),comment:"",agentName:e("agentWorkspace.defaultCases.agentName"),sessionId:"",messageId:"",runtimeId:"",invocationId:"",userId:"",createdAt:"2026-08-05T09:12:00+08:00",evaluationSetId:"",evaluationSetName:e("agentWorkspace.defaultCases.goodSetName"),workspaceId:"",tag:e("agentWorkspace.defaultCases.weeklyFeedback.tag"),source:"auto",score:.92,reason:e("agentWorkspace.defaultCases.weeklyFeedback.reason")},{id:"case-2",itemKey:"case-2",kind:"good",input:e("agentWorkspace.defaultCases.research.input"),output:e("agentWorkspace.defaultCases.research.output"),referenceOutput:e("agentWorkspace.defaultCases.research.output"),comment:"",agentName:e("agentWorkspace.defaultCases.agentName"),sessionId:"",messageId:"",runtimeId:"",invocationId:"",userId:"",createdAt:"2026-08-05T08:47:00+08:00",evaluationSetId:"",evaluationSetName:e("agentWorkspace.defaultCases.goodSetName"),workspaceId:"",tag:e("agentWorkspace.defaultCases.research.tag"),source:"user"},{id:"case-3",itemKey:"case-3",kind:"bad",input:e("agentWorkspace.defaultCases.uncertainConclusion.input"),output:e("agentWorkspace.defaultCases.uncertainConclusion.output"),referenceOutput:"",comment:"",agentName:e("agentWorkspace.defaultCases.agentName"),sessionId:"",messageId:"",runtimeId:"",invocationId:"",userId:"",createdAt:"2026-08-05T07:35:00+08:00",evaluationSetId:"",evaluationSetName:e("agentWorkspace.defaultCases.badSetName"),workspaceId:"",tag:e("agentWorkspace.defaultCases.uncertainConclusion.tag"),source:"auto",score:.28,reason:e("agentWorkspace.defaultCases.uncertainConclusion.reason")},{id:"case-4",itemKey:"case-4",kind:"bad",input:e("agentWorkspace.defaultCases.repeatedTool.input"),output:e("agentWorkspace.defaultCases.repeatedTool.output"),referenceOutput:"",comment:"",agentName:e("agentWorkspace.defaultCases.agentName"),sessionId:"",messageId:"",runtimeId:"",invocationId:"",userId:"",createdAt:"2026-08-05T06:58:00+08:00",evaluationSetId:"",evaluationSetName:e("agentWorkspace.defaultCases.badSetName"),workspaceId:"",tag:e("agentWorkspace.defaultCases.repeatedTool.tag"),source:"user"}]}const K5t=[{id:"eval-regression",name:"核心能力回归",agentIds:[],caseSet:"核心回归集",evaluator:"综合质量评估器",metrics:["回答质量","工具调用"],concurrency:"4",history:[{id:"run-1",createdAt:"今天 10:32",score:88,status:"completed"},{id:"run-2",createdAt:"昨天 16:08",score:84,status:"completed"}]},{id:"eval-safety",name:"安全与幻觉检查",agentIds:[],caseSet:"安全边界集",evaluator:"事实一致性评估器",metrics:["事实准确性","拒答合理性"],concurrency:"2",history:[{id:"run-3",createdAt:"7 月 25 日 14:20",score:91,status:"completed"}]}],G5t={核心能力回归:"agentWorkspace.evaluationDefaults.coreRegression",安全与幻觉检查:"agentWorkspace.evaluationDefaults.safetyCheck",核心回归集:"agentWorkspace.evaluationDefaults.coreSet",安全边界集:"agentWorkspace.evaluationDefaults.safetySet",工具调用集:"agentWorkspace.evaluationDefaults.toolSet",综合质量评估器:"agentWorkspace.evaluationDefaults.qualityEvaluator",事实一致性评估器:"agentWorkspace.evaluationDefaults.factualEvaluator",工具调用评估器:"agentWorkspace.evaluationDefaults.toolEvaluator",回答质量:"agentWorkspace.evaluationDefaults.responseQuality",事实准确性:"agentWorkspace.evaluationDefaults.factualAccuracy",工具调用:"agentWorkspace.evaluationDefaults.toolUse",响应效率:"agentWorkspace.evaluationDefaults.responseEfficiency","今天 10:32":"agentWorkspace.evaluationDefaults.todayTime","昨天 16:08":"agentWorkspace.evaluationDefaults.yesterdayTime","7 月 25 日 14:20":"agentWorkspace.evaluationDefaults.julyTime",刚刚:"agentWorkspace.evaluationDefaults.justNow"};function Yw(e,t){const n=G5t[e];return n?t(n):e}const kte=["basic","usage","evaluations","optimizations","integrations","versions"],X5t=20;function Y5t(e,t,n){const i=Date.parse(e);return Number.isNaN(i)?n("agentWorkspace.notProvided"):new Intl.DateTimeFormat(t,{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1}).format(i)}const cw=[{id:"api-server",label:"API Server"},{id:"a2a",label:"A2A"}];function lL(e,t){return e?`${e.replace(/\/+$/,"")}${t}`:""}function Z5t(e,t){const n=e.trim();if(!n||!t)return n;try{const i=new URL(n),r=i.hostname.replace(/^\[|\]$/g,"").toLowerCase();if(!["localhost","127.0.0.1","::1"].includes(r))return n;const s=new URL(t);return i.protocol=s.protocol,i.hostname=s.hostname,i.port=s.port,i.toString()}catch{return n}}function Ete(e,t){return e==="key_auth"?"API Key":e==="custom_jwt"?"OAuth / JWT":t(e==="none"?"agentWorkspace.noAuthentication":"agentWorkspace.notAvailable")}function Cte(e,t){return t(e==="published"?"agentWorkspace.githubStatus.published":e==="publishing"?"agentWorkspace.githubStatus.publishing":e==="failed"?"agentWorkspace.githubStatus.failed":e==="pending"?"agentWorkspace.githubStatus.pending":"agentWorkspace.githubStatus.unknown")}function J5t(e,t){return e.changeType==="rollback"?t("agentWorkspace.rollbackEvent"):e.version}function k8(e){return JSON.stringify(e)}function Aje(e){return e==="key_auth"?`API_KEY = "" HEADERS = {"Authorization": f"Bearer {API_KEY}"}`:e==="custom_jwt"?`ACCESS_TOKEN = "" HEADERS = {"Authorization": f"Bearer {ACCESS_TOKEN}"}`:e==="none"?"HEADERS = {}":`AUTH_TOKEN = "" -HEADERS = {"Authorization": f"Bearer {AUTH_TOKEN}"}`}function L5t(e,t,n){const i=e.replace(/\/+$/,"");return`\`\`\`python +HEADERS = {"Authorization": f"Bearer {AUTH_TOKEN}"}`}function eLt(e,t,n){const i=e.replace(/\/+$/,"");return`\`\`\`python import uuid import requests -BASE_URL = ${v8(i)} -APP_NAME = ${v8(t)} +BASE_URL = ${k8(i)} +APP_NAME = ${k8(t)} USER_ID = "demo-user" SESSION_ID = str(uuid.uuid4()) -${mje(n)} +${Aje(n)} session_response = requests.post( f"{BASE_URL}/apps/{APP_NAME}/users/{USER_ID}/sessions/{SESSION_ID}", @@ -783,13 +783,13 @@ with requests.post( for line in response.iter_lines(): if line: print(line.decode("utf-8")) -\`\`\``}function $5t(e,t){return`\`\`\`python +\`\`\``}function tLt(e,t){return`\`\`\`python import uuid import requests -AGENT_URL = ${v8(e)} -${mje(t)} +AGENT_URL = ${k8(e)} +${Aje(t)} response = requests.post( AGENT_URL, @@ -810,24 +810,24 @@ response = requests.post( ) response.raise_for_status() print(response.json()) -\`\`\``}function F5t({visible:e}){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"M2.8 12s3.3-5.4 9.2-5.4 9.2 5.4 9.2 5.4-3.3 5.4-9.2 5.4S2.8 12 2.8 12Z"}),o.jsx("circle",{cx:"12",cy:"12",r:"2.4"}),!e&&o.jsx("path",{d:"m4.2 4.2 15.6 15.6"})]})}function yte({available:e,authType:t,value:n,visible:i,loading:r,error:s,onToggle:a}){const{t:l}=Te("ui");return e?t==="none"?l("agentWorkspace.noApiKeyRequired"):t==="custom_jwt"?l("agentWorkspace.usesOauthJwt"):t!=="key_auth"?l("agentWorkspace.notAvailable"):o.jsxs("span",{className:"aw-integration-secret",children:[o.jsx("span",{className:"aw-integration-secret-value","aria-live":"polite",children:i&&n?n:"****"}),o.jsx("button",{type:"button",className:"aw-integration-secret-toggle","aria-label":l(i?"agentWorkspace.hideApiKey":"agentWorkspace.showApiKey"),title:l(i?"agentWorkspace.hideApiKey":"agentWorkspace.showApiKey"),disabled:r,onClick:a,children:r?o.jsx("span",{className:"loading-gap-spinner","aria-hidden":"true"}):o.jsx(F5t,{visible:i})}),s&&o.jsx("span",{className:"aw-integration-secret-error",role:"alert",children:s})]}):l("agentWorkspace.notAvailable")}function vte({protocol:e,title:t,available:n,fields:i,example:r}){const{t:s}=Te("ui");return o.jsxs("section",{className:`aw-integration-panel${n&&r?" has-example":""}`,id:`integration-${e}-panel`,role:"tabpanel","aria-labelledby":`integration-${e}-tab`,children:[o.jsx("header",{children:o.jsx("h3",{children:t})}),o.jsx("dl",{children:i.map(a=>o.jsxs("div",{children:[o.jsx("dt",{children:a.label}),o.jsx("dd",{children:a.value||s("agentWorkspace.notAvailable")})]},a.label))}),n&&r&&o.jsxs("section",{className:"aw-integration-example",children:[o.jsx("h4",{children:s("agentWorkspace.pythonExample")}),o.jsx(Bu,{text:r,className:"aw-integration-example-code",allowRawHtml:!1})]})]})}function B5t(e,t,n){var i;return CB({appName:((i=e==null?void 0:e.appName)==null?void 0:i.trim())||t,name:e==null?void 0:e.name,description:e==null?void 0:e.description,type:e==null?void 0:e.type,model:e==null?void 0:e.model,tools:e==null?void 0:e.tools,skills:e==null?void 0:e.skills,graph:e==null?void 0:e.graph,draft:e==null?void 0:e.draft},n)}function gje(e){return e?1+e.children.reduce((t,n)=>t+gje(n),0):1}function bje(e){return 1+e.subAgents.reduce((t,n)=>t+bje(n),0)}function x8(e){if(!e)return 0;const t=Number(e);if(Number.isFinite(t))return t<1e12?t*1e3:t;const n=Date.parse(e);return Number.isFinite(n)?n:0}function U5t(e,t,n){const i=x8(e);return i?new Intl.DateTimeFormat(t,{month:"numeric",day:"numeric",hour:"2-digit",minute:"2-digit"}).format(new Date(i)):n("agentWorkspace.unknownTime")}function Q5t(e,t){return typeof e.score!="number"||!Number.isFinite(e.score)?"—":t("agentWorkspace.scoreValue",{score:Math.round(e.score*100)})}function z5t(e,t){return t(`agentWorkspace.priority.${e}`)}const V5t={agent_structure:"agentWorkspace.modules.agentStructure",prompt:"agentWorkspace.modules.prompt",tool:"agentWorkspace.modules.tool",knowledge:"agentWorkspace.modules.knowledge",memory:"agentWorkspace.modules.memory",workflow:"agentWorkspace.modules.workflow",other:"agentWorkspace.modules.other"};function H5t(e,t){var n;return e.module==="other"?((n=e.customModule)==null?void 0:n.trim())||t("agentWorkspace.modules.other"):t(V5t[e.module])}function q5t(e,t){return e.find(n=>n.kind===t)}function xte(e,t){return e.items.map(n=>({...n,tag:t(n.kind==="good"?"agentWorkspace.goodCase":"agentWorkspace.badCase")})).sort((n,i)=>x8(i.createdAt)-x8(n.createdAt))}function W5t(e){const t=n=>[n.name,n.description,n.agentType??"llm",n.modelName??"",n.tools??[],n.builtinTools??[],(n.customTools??[]).map(i=>i.name),(n.mcpTools??[]).map(i=>i.name),n.skills??[],(n.selectedSkills??[]).map(i=>i.name),(n.subAgents??[]).map(t)];return JSON.stringify(t(e))}function G5t(e){return[{phase:"prepare",label:e("agentWorkspace.deploymentSteps.prepare.label"),description:e("agentWorkspace.deploymentSteps.prepare.description")},{phase:"build",label:e("agentWorkspace.deploymentSteps.build.label"),description:e("agentWorkspace.deploymentSteps.build.description")},{phase:"deploy",label:e("agentWorkspace.deploymentSteps.deploy.label"),description:e("agentWorkspace.deploymentSteps.deploy.description")},{phase:"publish",label:e("agentWorkspace.deploymentSteps.publish.label"),description:e("agentWorkspace.deploymentSteps.publish.description")},{phase:"complete",label:e("agentWorkspace.deploymentSteps.complete.label"),description:e("agentWorkspace.deploymentSteps.complete.description")}]}function K5t(e,t){return{phase:"update",label:t("agentWorkspace.deploymentSteps.update.label"),description:t("agentWorkspace.deploymentSteps.update.description",e)}}function yje(e,t){const n=G5t(t),i=[...n.slice(0,-1)];return e.instanceRange&&i.push(K5t(e.instanceRange,t)),e.createEvaluationSets&&i.push({phase:"evaluation",label:t("agentWorkspace.deploymentSteps.evaluation.label"),description:t("agentWorkspace.deploymentSteps.evaluation.description")}),e.githubDelivery&&i.push({phase:"github",label:t("agentWorkspace.deploymentSteps.github.label"),description:t("agentWorkspace.deploymentSteps.github.description")}),i.push(n[n.length-1]),i}function vje(e,t){const n=yje(e,t);if(e.status==="success")return n.length-1;const i=e.phase??{准备部署:"prepare",构建镜像:"build",部署:"deploy",发布:"publish",创建评测集:"evaluation","挂载 GitHub 持续交付":"github",部署完成:"complete"}[e.label],r=n.findIndex(s=>s.phase===i);return r<0?0:r}function X5t(e,t){if(!e)return"";try{return new Intl.DateTimeFormat(t,{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1}).format(new Date(e))}catch{return""}}function xje({log:e,autoExpand:t,title:n,ariaLabel:i,copyLabel:r,defaultPendingMessage:s}){const{t:a,i18n:l}=Te("ui"),c=p.useRef(null),u=!!((e==null?void 0:e.status)!=="complete"&&t),[d,f]=p.useState(u),[h,m]=p.useState(!1),g=!!(e!=null&&e.text||e!=null&&e.error),b=(e==null?void 0:e.text)||(e==null?void 0:e.error)||"",v=b.split(` +\`\`\``}function nLt({visible:e}){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"M2.8 12s3.3-5.4 9.2-5.4 9.2 5.4 9.2 5.4-3.3 5.4-9.2 5.4S2.8 12 2.8 12Z"}),o.jsx("circle",{cx:"12",cy:"12",r:"2.4"}),!e&&o.jsx("path",{d:"m4.2 4.2 15.6 15.6"})]})}function Tte({available:e,authType:t,value:n,visible:i,loading:r,error:s,onToggle:a}){const{t:l}=Ae("ui");return e?t==="none"?l("agentWorkspace.noApiKeyRequired"):t==="custom_jwt"?l("agentWorkspace.usesOauthJwt"):t!=="key_auth"?l("agentWorkspace.notAvailable"):o.jsxs("span",{className:"aw-integration-secret",children:[o.jsx("span",{className:"aw-integration-secret-value","aria-live":"polite",children:i&&n?n:"****"}),o.jsx("button",{type:"button",className:"aw-integration-secret-toggle","aria-label":l(i?"agentWorkspace.hideApiKey":"agentWorkspace.showApiKey"),title:l(i?"agentWorkspace.hideApiKey":"agentWorkspace.showApiKey"),disabled:r,onClick:a,children:r?o.jsx("span",{className:"loading-gap-spinner","aria-hidden":"true"}):o.jsx(nLt,{visible:i})}),s&&o.jsx("span",{className:"aw-integration-secret-error",role:"alert",children:s})]}):l("agentWorkspace.notAvailable")}function Ate({protocol:e,title:t,available:n,fields:i,example:r}){const{t:s}=Ae("ui");return o.jsxs("section",{className:`aw-integration-panel${n&&r?" has-example":""}`,id:`integration-${e}-panel`,role:"tabpanel","aria-labelledby":`integration-${e}-tab`,children:[o.jsx("header",{children:o.jsx("h3",{children:t})}),o.jsx("dl",{children:i.map(a=>o.jsxs("div",{children:[o.jsx("dt",{children:a.label}),o.jsx("dd",{children:a.value||s("agentWorkspace.notAvailable")})]},a.label))}),n&&r&&o.jsxs("section",{className:"aw-integration-example",children:[o.jsx("h4",{children:s("agentWorkspace.pythonExample")}),o.jsx(Uu,{text:r,className:"aw-integration-example-code",allowRawHtml:!1})]})]})}function iLt(e,t,n){var i;return jB({appName:((i=e==null?void 0:e.appName)==null?void 0:i.trim())||t,name:e==null?void 0:e.name,description:e==null?void 0:e.description,type:e==null?void 0:e.type,model:e==null?void 0:e.model,tools:e==null?void 0:e.tools,skills:e==null?void 0:e.skills,graph:e==null?void 0:e.graph,draft:e==null?void 0:e.draft},n)}function _je(e){return e?1+e.children.reduce((t,n)=>t+_je(n),0):1}function Nje(e){return 1+e.subAgents.reduce((t,n)=>t+Nje(n),0)}function E8(e){if(!e)return 0;const t=Number(e);if(Number.isFinite(t))return t<1e12?t*1e3:t;const n=Date.parse(e);return Number.isFinite(n)?n:0}function rLt(e,t,n){const i=E8(e);return i?new Intl.DateTimeFormat(t,{month:"numeric",day:"numeric",hour:"2-digit",minute:"2-digit"}).format(new Date(i)):n("agentWorkspace.unknownTime")}function sLt(e,t){return typeof e.score!="number"||!Number.isFinite(e.score)?"—":t("agentWorkspace.scoreValue",{score:Math.round(e.score*100)})}function aLt(e,t){return t(`agentWorkspace.priority.${e}`)}const oLt={agent_structure:"agentWorkspace.modules.agentStructure",prompt:"agentWorkspace.modules.prompt",tool:"agentWorkspace.modules.tool",knowledge:"agentWorkspace.modules.knowledge",memory:"agentWorkspace.modules.memory",workflow:"agentWorkspace.modules.workflow",other:"agentWorkspace.modules.other"};function lLt(e,t){var n;return e.module==="other"?((n=e.customModule)==null?void 0:n.trim())||t("agentWorkspace.modules.other"):t(oLt[e.module])}function cLt(e,t){return e.find(n=>n.kind===t)}function _te(e,t){return e.items.map(n=>({...n,tag:t(n.kind==="good"?"agentWorkspace.goodCase":"agentWorkspace.badCase")})).sort((n,i)=>E8(i.createdAt)-E8(n.createdAt))}function uLt(e){const t=n=>[n.name,n.description,n.agentType??"llm",n.modelName??"",n.tools??[],n.builtinTools??[],(n.customTools??[]).map(i=>i.name),(n.mcpTools??[]).map(i=>i.name),n.skills??[],(n.selectedSkills??[]).map(i=>i.name),(n.subAgents??[]).map(t)];return JSON.stringify(t(e))}function dLt(e){return[{phase:"prepare",label:e("agentWorkspace.deploymentSteps.prepare.label"),description:e("agentWorkspace.deploymentSteps.prepare.description")},{phase:"build",label:e("agentWorkspace.deploymentSteps.build.label"),description:e("agentWorkspace.deploymentSteps.build.description")},{phase:"deploy",label:e("agentWorkspace.deploymentSteps.deploy.label"),description:e("agentWorkspace.deploymentSteps.deploy.description")},{phase:"publish",label:e("agentWorkspace.deploymentSteps.publish.label"),description:e("agentWorkspace.deploymentSteps.publish.description")},{phase:"complete",label:e("agentWorkspace.deploymentSteps.complete.label"),description:e("agentWorkspace.deploymentSteps.complete.description")}]}function fLt(e,t){return{phase:"update",label:t("agentWorkspace.deploymentSteps.update.label"),description:t("agentWorkspace.deploymentSteps.update.description",e)}}function jje(e,t){const n=dLt(t),i=[...n.slice(0,-1)];return e.instanceRange&&i.push(fLt(e.instanceRange,t)),e.createEvaluationSets&&i.push({phase:"evaluation",label:t("agentWorkspace.deploymentSteps.evaluation.label"),description:t("agentWorkspace.deploymentSteps.evaluation.description")}),e.githubDelivery&&i.push({phase:"github",label:t("agentWorkspace.deploymentSteps.github.label"),description:t("agentWorkspace.deploymentSteps.github.description")}),i.push(n[n.length-1]),i}function Rje(e,t){const n=jje(e,t);if(e.status==="success")return n.length-1;const i=e.phase??{准备部署:"prepare",构建镜像:"build",部署:"deploy",发布:"publish",创建评测集:"evaluation","挂载 GitHub 持续交付":"github",部署完成:"complete"}[e.label],r=n.findIndex(s=>s.phase===i);return r<0?0:r}function hLt(e,t){if(!e)return"";try{return new Intl.DateTimeFormat(t,{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1}).format(new Date(e))}catch{return""}}function Ije({log:e,autoExpand:t,title:n,ariaLabel:i,copyLabel:r,defaultPendingMessage:s}){const{t:a,i18n:l}=Ae("ui"),c=p.useRef(null),u=!!((e==null?void 0:e.status)!=="complete"&&t),[d,f]=p.useState(u),[h,m]=p.useState(!1),g=!!(e!=null&&e.text||e!=null&&e.error),b=(e==null?void 0:e.text)||(e==null?void 0:e.error)||"",v=b.split(` `),y=d?b:v.slice(-36).join(` -`),x=(e==null?void 0:e.pendingMessage)||s;if(p.useEffect(()=>{e&&f(u)},[e==null?void 0:e.status,u]),p.useEffect(()=>{if(!d||!g)return;const C=c.current;C&&(C.scrollTop=C.scrollHeight)},[d,g,y]),!e||!e.text&&e.status!=="error"&&!e.pendingMessage)return null;const O=X5t(e.updatedAt,l.resolvedLanguage??l.language),w=e.status==="complete"?a("agentWorkspace.logStatus.synced"):e.status==="error"?a("agentWorkspace.logStatus.failed"):a("agentWorkspace.logStatus.syncing"),k=e.omittedEarly?a("agentWorkspace.logStatus.earlyOmitted"):e.snapshotTruncated?a("agentWorkspace.logStatus.recentOnly"):e.truncated?a("agentWorkspace.logStatus.partiallyOmitted"):"",S=[w,e.lineCount?a("agentWorkspace.logLines",{count:e.lineCount}):"",k,O].filter(Boolean).join(" · ");async function E(){try{await navigator.clipboard.writeText(b),m(!0),window.setTimeout(()=>m(!1),1500)}catch{m(!1)}}return o.jsxs("section",{className:`aw-deploy-log is-${e.status}${d?"":" is-collapsed"}`,"aria-label":i,children:[o.jsxs("header",{children:[o.jsxs("div",{children:[o.jsx("strong",{children:n}),o.jsx("span",{children:S})]}),o.jsxs("div",{className:"aw-deploy-log-actions",children:[g&&o.jsx("button",{type:"button",onClick:()=>f(C=>!C),children:a(d?"common.collapse":"common.expand")}),g&&o.jsxs("button",{type:"button",onClick:()=>void E(),"aria-label":h?a("agentWorkspace.copiedLabel",{label:r}):a("agentWorkspace.copyLabel",{label:r}),title:h?a("agentWorkspace.copied"):a("agentWorkspace.copyLabel",{label:r}),children:[h?o.jsx(Vu,{"aria-hidden":!0}):o.jsx(Xj,{"aria-hidden":!0}),o.jsx("span",{children:a(h?"agentWorkspace.copied":"agentWorkspace.copy")})]})]})]}),d&&(g?o.jsx("pre",{ref:c,children:y}):o.jsx("div",{className:"aw-deploy-log-empty",children:x}))]})}function Y5t({task:e}){var n;const{t}=Te("ui");return o.jsx(xje,{log:e.buildLog,autoExpand:((n=e.buildLog)==null?void 0:n.status)!=="complete"&&(e.status==="running"||e.status==="error")&&vje(e,t)===1,title:t("agentWorkspace.buildLog"),ariaLabel:t("agentWorkspace.buildLog"),copyLabel:t("agentWorkspace.buildLog"),defaultPendingMessage:t("agentWorkspace.waitingBuildLog")})}function Z5t({task:e}){var n;const{t}=Te("ui");return o.jsx(xje,{log:e.githubLog,autoExpand:((n=e.githubLog)==null?void 0:n.status)!=="complete"&&(e.status==="running"||e.status==="error")&&e.phase==="github",title:t("agentWorkspace.githubMountLog"),ariaLabel:t("agentWorkspace.githubDeliveryMountLog"),copyLabel:t("agentWorkspace.githubMountLog"),defaultPendingMessage:t("agentWorkspace.waitingGithubMountLog")})}function J5t({task:e,onReturnToEdit:t}){const{t:n}=Te("ui"),i=yje(e,n),r=vje(e,n),s=e.status==="success"?100:Math.max(6,Math.min(100,e.pct??6)),a=e.status==="running"&&e.statusUnconfirmed?n("agentWorkspace.deployStatus.unconfirmed"):e.status==="running"?n("agentWorkspace.deployStatus.running"):e.status==="success"?n("agentWorkspace.deployStatus.success"):e.status==="error"?n("agentWorkspace.deployStatus.error"):n("agentWorkspace.deployStatus.cancelled");return o.jsxs("section",{className:`aw-deploy-progress-card is-${e.status}`,"aria-live":"polite",children:[o.jsxs("div",{className:"aw-deploy-progress-head",children:[o.jsxs("div",{children:[o.jsx("span",{className:"aw-deploy-progress-icon","aria-hidden":!0,children:e.status==="running"&&e.statusUnconfirmed?o.jsx(X2,{}):e.status==="running"?o.jsx(fi,{className:"spin"}):e.status==="success"?o.jsx(u7e,{}):e.status==="error"?o.jsx(X2,{}):o.jsx(h4,{})}),o.jsxs("div",{children:[o.jsx("h3",{children:a}),o.jsx("p",{children:e.runtimeName})]})]}),o.jsx("strong",{children:e.status==="running"&&!e.statusUnconfirmed?`${Math.round(s)}%`:e.label})]}),o.jsx("div",{className:"aw-deploy-progress-track",role:"progressbar","aria-label":n("agentWorkspace.deploymentProgress"),"aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":Math.round(s),children:o.jsx("span",{style:{width:`${s}%`}})}),o.jsx("ol",{className:"aw-deploy-steps",children:i.map((l,c)=>{const u=e.status==="success"||cnew Set),[Pt,pn]=p.useState(()=>new Set),[Jt,en]=p.useState(!1),[Un,wn]=p.useState(""),[oi,Oi]=p.useState(null),[mi,bn]=p.useState([]),[qi,ri]=p.useState([]),[zi,as]=p.useState(!1),[Lr,_r]=p.useState(""),[xs,os]=p.useState(""),[ia,Nr]=p.useState(0),[As,Vs]=p.useState([]),[Yr,ra]=p.useState(!1),[sa,ls]=p.useState(""),[va,aa]=p.useState(0),[ws,Ua]=p.useState(null),[oa,Qa]=p.useState(1),[Jn,Ni]=p.useState(!1),[Eo,xa]=p.useState(""),[Xi,Co]=p.useState(0),[xe,Xe]=p.useState(!1),[Yt,tn]=p.useState(()=>new Set),[In,mr]=p.useState(!1),[jr,_s]=p.useState(""),[Si,la]=p.useState(""),[Hs,$r]=p.useState(()=>new Set),wa=p.useRef(!1),cs=p.useRef(""),Vi=p.useRef(null),so=p.useRef(0),ao=p.useRef(0),Go=p.useRef(0),[oo,ed]=p.useState(j5t),[bc,uu]=p.useState("");p.useEffect(()=>{e.length!==0&&ed(te=>te.map((je,Ve)=>Ve===0&&je.agentIds.length===0?{...je,agentIds:e.slice(0,2).map(mt=>mt.id)}:je))},[e]);const To=p.useMemo(()=>{const te=new Map;for(const je of e)je.runtimeId&&te.set(je.runtimeId,je);return te},[e]),yc=p.useMemo(()=>{var je;const te=new Map;for(const Ve of t){const mt=(je=Ve.deploymentTarget)==null?void 0:je.runtimeId;if(!mt||!To.has(mt))continue;const dn=te.get(mt);(!dn||Ve.updatedAt>dn.updatedAt)&&te.set(mt,Ve)}return te},[To,t]),Cl=p.useMemo(()=>{const te=new Map;for(const je of f){if(!je.runtimeId)continue;const Ve=te.get(je.runtimeId);(!Ve||je.startedAt>Ve.startedAt)&&te.set(je.runtimeId,je)}return te},[f]),td=p.useMemo(()=>{const te=Ue.trim().toLowerCase();return te?e.filter(je=>{const Ve=je.runtimeId?yc.get(je.runtimeId):void 0,mt=je.runtimeId?Cl.get(je.runtimeId):void 0;return[je.label,je.app,je.host??"",(Ve==null?void 0:Ve.draft.name)??"",(Ve==null?void 0:Ve.draft.description)??"",(mt==null?void 0:mt.runtimeName)??""].join(" ").toLowerCase().includes(te)}):e},[e,Cl,Ue,yc]),Oa=p.useMemo(()=>{const te=Ue.trim().toLowerCase();return t.filter(je=>{var mt;const Ve=(mt=je.deploymentTarget)==null?void 0:mt.runtimeId;return Ve&&To.has(Ve)?!1:te?`${je.draft.name} ${je.draft.description}`.toLowerCase().includes(te):!0})},[To,t,Ue]),Wh=p.useMemo(()=>t.filter(te=>{var Ve;const je=(Ve=te.deploymentTarget)==null?void 0:Ve.runtimeId;return!je||!To.has(je)}).length,[To,t]),Gh=p.useMemo(()=>{const te=Ue.trim().toLowerCase();return te?oo.filter(je=>je.name.toLowerCase().includes(te)):oo},[oo,Ue]),ce=e.find(te=>te.id===I),li=t.find(te=>te.id===K),ci=h?f.find(te=>te.id===h):void 0,Sa=ce!=null&&ce.runtimeId?yc.get(ce.runtimeId):void 0,Hn=y?ln:I&&r===I?i:null,ji=(Hn==null?void 0:Hn.appName)||(ce==null?void 0:ce.runtimeApp)||(ce==null?void 0:ce.app)||"",vc=(c&&(ce!=null&&ce.runtimeId)?mte:mte.filter(te=>te!=="usage")).map(te=>({id:te,label:T(`agentWorkspace.sections.${te}`)})),du=JSON.stringify([(ce==null?void 0:ce.runtimeId)??"",(ce==null?void 0:ce.region)??"cn-beijing",ji,oa]),us=(ws==null?void 0:ws.requestKey)===du?ws.value:null,Tl=`${(ce==null?void 0:ce.region)??"cn-beijing"}:${(ce==null?void 0:ce.runtimeId)??""}`,xc=(ke==null?void 0:ke.requestKey)===Tl?ke.value:"",Sr=(ee==null?void 0:ee.requestKey)===Tl?ee:null,Qn=!!((f0=Sr==null?void 0:Sr.apiApps)!=null&&f0.length),za=!!(Sr!=null&&Sr.a2a),rf=((rC=Sr==null?void 0:Sr.apiApps)==null?void 0:rC[0])??ji,Al=(q==null?void 0:q.endpoint)??"",be=D5t(((kc=Sr==null?void 0:Sr.a2a)==null?void 0:kc.endpoint)??"",Al),Ye=(ce==null?void 0:ce.runtimeApp)||"",Ct=JSON.stringify([(ce==null?void 0:ce.runtimeId)??"",(ce==null?void 0:ce.region)??"",(ce==null?void 0:ce.currentVersion)??null,Ye]),_n=l&&(ce!=null&&ce.runtimeId)&&ce.region&&$e===0?T4({runtimeId:ce.runtimeId,region:ce.region,appName:Ye,currentVersion:ce.currentVersion}):null,Dt=(Se==null?void 0:Se.requestKey)===Ct?Se.value:_n,fn=Dt!=null&&Dt.reason?jd(Dt.reason,P.resolvedLanguage||P.language):"",On=(Dt==null?void 0:Dt.warnings.filter(te=>jd(te,P.resolvedLanguage||P.language)))??[];p.useEffect(()=>{const te=so.current+1;so.current=te,ve(null),Wt("");const je=(ce==null?void 0:ce.runtimeId)??"",Ve=(ce==null?void 0:ce.region)??"";if(!l||!je||!Ve){Je(!1);return}const mt=$e===0?T4({runtimeId:je,region:Ve,appName:Ye,currentVersion:ce==null?void 0:ce.currentVersion}):null;if(mt){ve({requestKey:Ct,value:mt}),Je(!1);return}const dn=new AbortController;let nt,ei=0;const ua=60;Je(!0);const Xn=Ns=>{oR({runtimeId:je,region:Ve,appName:Ye,currentVersion:ce==null?void 0:ce.currentVersion,signal:dn.signal,force:Ns&&$e>0}).then(Ao=>{var oC,Gm;if(te!==so.current)return;const m1=Ao.recoveryStatus==="preparing";if(Ao.runtime.runtimeId!==je||Ao.runtime.region!==Ve||!m1&&Ye&&((oC=Ao.agent)==null?void 0:oC.appName)!==Ye||Ao.canUpdate&&!((Gm=Ao.agent)!=null&&Gm.appName)){Wt(T("agentWorkspace.errors.updateCapabilityMismatch"));return}if(ve({requestKey:Ct,value:Ao}),Je(!1),!!m1){if(ei+=1,ei>=ua){Wt(T("agentWorkspace.errors.updateConfigRestoring"));return}nt=window.setTimeout(()=>Xn(!1),1e3)}}).catch(()=>{te!==so.current||dn.signal.aborted||Wt(T("agentWorkspace.errors.checkUpdateCapability"))}).finally(()=>{te===so.current&&!dn.signal.aborted&&Je(!1)})};return Xn(!0),()=>{dn.abort(),nt!=null&&window.clearTimeout(nt)}},[l,Ye,$e,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId,Ct]);const Y=p.useMemo(()=>{const te=new Map(e.map((Ve,mt)=>[Ve.id,mt])),je=new Map(n.map((Ve,mt)=>[Ve,mt]));return[...td].sort((Ve,mt)=>{const dn=Ve.runtimeId?Cl.get(Ve.runtimeId):void 0,nt=mt.runtimeId?Cl.get(mt.runtimeId):void 0,ei=(dn==null?void 0:dn.status)==="running"?dn.startedAt:0,ua=(nt==null?void 0:nt.status)==="running"?nt.startedAt:0;if(ei!==ua)return ua-ei;const Xn=je.get(Ve.id),Ns=je.get(mt.id);return Xn!=null&&Ns!=null?Xn-Ns:Xn!=null?-1:Ns!=null?1:(te.get(Ve.id)??0)-(te.get(mt.id)??0)})},[n,e,td,Cl]),we=(ce==null?void 0:ce.label)||(Hn==null?void 0:Hn.name)||(li==null?void 0:li.draft.name)||(ci==null?void 0:ci.agentName)||((sC=ci==null?void 0:ci.agentDraft)==null?void 0:sC.name)||T("agentWorkspace.noAgentSelected"),Ge=oo.find(te=>te.id===bc),_t=Y.filter(te=>te.canDelete===!0),un=Y.filter(te=>Ki.has(te.id)&&te.canDelete===!0),Nn=Oa.filter(te=>Pt.has(te.id)),Yi=_t.length+Oa.length,Ri=un.length+Nn.length,Kn=p.useMemo(()=>{var je;if(ci!=null&&ci.agentDraft)return ci.agentDraft;if(li!=null&&li.draft)return li.draft;const te=(je=ce==null?void 0:ce.region)!=null&&je.startsWith("ap-")?"byteplus":"volcengine";return Dt!=null&&Dt.agent&&(Dt.recoveryStatus==="complete"||Dt.recoveryStatus==="draft-only")?CB(Dt.agent,te,Dt.runtime.configuredEnvKeys):B5t(Hn,ji||(ce==null?void 0:ce.label)||"agent",te)},[Hn,ji,ce==null?void 0:ce.label,ce==null?void 0:ce.region,li==null?void 0:li.draft,ci==null?void 0:ci.agentDraft,Dt]),zn=((Yh=Hn==null?void 0:Hn.draft)==null?void 0:Yh.harnessSidecar)??Lst(q==null?void 0:q.envs),ds=zn?Ux.filter(te=>zn.componentOverrides[te]):[],$n=li?a?"":T("agentWorkspace.errors.noCreatePermission"):l?ce!=null&&ce.runtimeId?ce.region?He?T("agentWorkspace.errors.checkingUpdateConfig"):Ce||(Dt?Dt.recoveryStatus!=="complete"&&Dt.recoveryStatus!=="draft-only"?fn||T("agentWorkspace.errors.originalConfigUnavailable"):Dt.canUpdate?(aC=Dt.agent)!=null&&aC.appName?"":T("agentWorkspace.errors.agentInfoMissing"):fn||T("agentWorkspace.errors.updateUnsupported"):T("agentWorkspace.errors.updateCapabilityPending")):T("agentWorkspace.errors.runtimeRegionMissing"):T("agentWorkspace.errors.cloudOnlyUpdate"):T("agentWorkspace.errors.noManagePermission"),ca="aw-update-disabled-reason",lt=p.useMemo(()=>{if(Hn)return Hn.tools;const te=(Kn.builtinTools??[]).map(je=>{var Ve;return((Ve=Bx.find(mt=>mt.id===je))==null?void 0:Ve.label)??je});return Array.from(new Set([...Kn.tools,...te,...(Kn.customTools??[]).map(je=>je.name),...(Kn.mcpTools??[]).map(je=>je.name)].filter(Boolean)))},[Kn,Hn]),Sn=p.useMemo(()=>Hn?Hn.skillsPreviewSupported?Hn.skills.map(te=>te.name):null:Array.from(new Set([...(Kn.selectedSkills??[]).map(te=>te.name),...Kn.skills].filter(Boolean))),[Kn,Hn]),Qt=p.useMemo(()=>{if(ci)return ci;if(li){const te=f.filter(je=>je.draftId===li.id).sort((je,Ve)=>Ve.startedAt-je.startedAt)[0];return te||f.filter(je=>{var Ve,mt;return((Ve=je.agentDraft)==null?void 0:Ve.name)===li.draft.name||je.agentName===li.draft.name||!!((mt=li.deploymentTarget)!=null&&mt.runtimeId)&&je.runtimeId===li.deploymentTarget.runtimeId}).sort((je,Ve)=>Ve.startedAt-je.startedAt)[0]}if(ce)return f.filter(te=>!!ce.runtimeId&&te.runtimeId===ce.runtimeId||te.agentName===ce.label).sort((te,je)=>je.startedAt-te.startedAt)[0]},[f,ce,li,ci]),si=!!(h&&Qt&&Qt.id===h),fs=!!(Qt&&(Qt.status!=="success"||si)),or=(Qt==null?void 0:Qt.status)==="running",hs=Qt!=null&&Qt.draftId?t.find(te=>te.id===Qt.draftId)??(Qt.agentDraft?{id:Qt.draftId,draft:Qt.agentDraft,updatedAt:Qt.startedAt}:void 0):void 0,wc=p.useMemo(()=>W5t(Kn),[Kn]),Oc=(ce==null?void 0:ce.currentVersion)??(q==null?void 0:q.currentVersion)??null,Kh=Oc??(ci==null?void 0:ci.startedAt)??"unknown",Ko=Hn?`runtime:${(ce==null?void 0:ce.runtimeId)??Hn.name}:v${Kh}:${wc}`:`draft:${(ci==null?void 0:ci.id)??(li==null?void 0:li.id)??(ce==null?void 0:ce.id)??we}:${wc}`;p.useEffect(()=>{M==="usage"&&!c&&U("basic")},[c,M]),p.useEffect(()=>{if(!h)return;const te=f.find(Ve=>Ve.id===h),je=te!=null&&te.runtimeId?To.get(te.runtimeId):void 0;if(je){Q(""),H(je.id),U("basic");return}H(""),Q(""),U("basic")},[To,f,h]),p.useEffect(()=>{if(!m){cs.current="";return}const te=`${m}:${g}:${b}:${c}`;cs.current!==te&&e.some(je=>je.id===m)&&(cs.current=te,Q(""),H(m),U(g==="usage"&&!c?"basic":g),g==="evaluations"&&(ut(b),Rt("")))},[e,c,m,g,b]),p.useEffect(()=>{for(const te of Y.slice(0,8)){if(!te.runtimeId)continue;const je=te.region??"cn-beijing";rye(te.runtimeId,je),i0e(te.runtimeId,je,te.runtimeApp??"")}},[Y]),p.useEffect(()=>{let te=!1;const je=(ce==null?void 0:ce.runtimeId)??"",Ve=(ce==null?void 0:ce.region)??"cn-beijing",mt=(ce==null?void 0:ce.runtimeApp)??"",dn=je?n0e(je,Ve,mt):null;if(cn(dn),gt(""),Et(!1),jt(!!dn||!y||!je),!(!y||!je))return YF(je,Ve,mt,{force:!0}).then(nt=>{te||cn(nt)}).catch(nt=>{!te&&!dn&&cn(null),te||(Et(nt instanceof Ds&&nt.unsupported),gt(T("agentWorkspace.errors.loadAgentInfo")))}).finally(()=>{te||jt(!0)}),()=>{te=!0}},[y,$e,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeApp,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{let te=!1;const je=(ce==null?void 0:ce.runtimeId)??"",Ve=(ce==null?void 0:ce.region)??"cn-beijing";if(Vs([]),ls(""),M!=="optimizations"||!je){ra(!1);return}if(y&&!ji){ra(!Ot);return}return ra(!0),qbe({runtimeId:je,region:Ve,appName:ji}).then(mt=>{te||Vs(mt.groups)}).catch(()=>{te||ls(T("agentWorkspace.errors.loadOptimizations"))}).finally(()=>{te||ra(!1)}),()=>{te=!0}},[Ot,y,va,M,ji,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{Qa(1)},[ce==null?void 0:ce.runtimeId,ji]),p.useEffect(()=>{const te=Go.current+1;Go.current=te;const je=(ce==null?void 0:ce.runtimeId)??"",Ve=(ce==null?void 0:ce.region)??"cn-beijing",mt=ji;if(xa(""),M!=="usage"||!je){Ni(!1);return}if(!mt){Ni(y&&!Ot);return}const dn=new AbortController;return Ni(!0),H0e({runtimeId:je,region:Ve,appName:mt,page:oa,pageSize:I5t,signal:dn.signal}).then(nt=>{if(te===Go.current){if(nt.runtimeId!==je||nt.appName!==mt||nt.page!==oa){xa(T("agentWorkspace.errors.usageMismatch"));return}Ua({requestKey:du,value:nt})}}).catch(()=>{te!==Go.current||dn.signal.aborted||xa(T("agentWorkspace.errors.loadUsage"))}).finally(()=>{te===Go.current&&Ni(!1)}),()=>{dn.abort()}},[oa,Xi,du,Ot,y,M,ji,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{ao.current+=1,st(null),Me(!1),qe(!1),ze(""),Oe("api-server")},[Tl,M]);function fu(){ao.current+=1,st(null),Me(!1),qe(!1),ze("")}function sf(te){te!==ue&&(fu(),Oe(te))}async function af(){if(Le){fu();return}const te=(ce==null?void 0:ce.runtimeId)??"",je=(ce==null?void 0:ce.region)??"cn-beijing";if(!te)return;const Ve=ao.current+1;ao.current=Ve,qe(!0),ze("");try{const mt=await tye(te,je);if(Ve!==ao.current)return;st({requestKey:Tl,value:mt}),Me(!0)}catch(mt){if(Ve!==ao.current)return;st(null),Me(!1),ze(mt instanceof Error?mt.message:T("agentWorkspace.errors.loadApiKey"))}finally{Ve===ao.current&&qe(!1)}}p.useEffect(()=>{let te=!1;const je=(ce==null?void 0:ce.runtimeId)??"",Ve=(ce==null?void 0:ce.region)??"cn-beijing",mt=je?iye(je,Ve):null;if(B(mt),Mt(""),!!je)return r7(je,Ve,{force:!0}).then(dn=>{te||B(dn)}).catch(()=>{!te&&!mt&&B(null),te||Mt(T("agentWorkspace.errors.loadRuntimeDetails"))}),()=>{te=!0}},[$e,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{let te=!1;const je=(ce==null?void 0:ce.runtimeId)??"";if(Ze(""),M!=="versions"||!je){he(!1),je||De(null);return}return he(!0),nA(je).then(Ve=>{te||De(Ve)}).catch(()=>{te||(De(null),Ze(T("agentWorkspace.errors.loadGithubVersions")))}).finally(()=>{te||he(!1)}),()=>{te=!0}},[M,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{let te=!1;const je=(ce==null?void 0:ce.runtimeId)??"",Ve=(ce==null?void 0:ce.region)??"cn-beijing",mt=`${Ve}:${je}`;if(W(""),M!=="integrations"||!je){re(!1),je||le(null);return}re(!0);const dn=Fv(je,Ve,{retryProbe:!0}).catch(nt=>{if(nt instanceof Ds&&nt.unsupported)return null;throw nt});return Promise.all([dn,eye(je,Ve,{retryProbe:!0})]).then(([nt,ei])=>{te||le({requestKey:mt,apiApps:nt,a2a:ei})}).catch(()=>{te||(le(null),W(T("agentWorkspace.errors.probeIntegration")))}).finally(()=>{te||re(!1)}),()=>{te=!0}},[X,M,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{let te=!1;const je=(ce==null?void 0:ce.runtimeId)??"",Ve=(ce==null?void 0:ce.region)??"cn-beijing",mt=je&&ji?Wbe({runtimeId:je,region:Ve,appName:ji,pageSize:100}):null;if(bn(mt?xte(mt,T):[]),ri((mt==null?void 0:mt.sets)??[]),_r(""),os((mt==null?void 0:mt.unsupportedMessage)??""),M!=="evaluations"||!je){as(!1);return}if(y&&!ji){as(!Ot);return}return as(!mt),rR({runtimeId:je,region:Ve,appName:ji,pageSize:100},{force:!0}).then(dn=>{te||(ri(dn.sets),bn(xte(dn,T)),os(dn.unsupportedMessage??""))}).catch(()=>{te||(_r(T("agentWorkspace.errors.loadEvaluations")),os(""))}).finally(()=>{te||as(!1)}),()=>{te=!0}},[Ot,y,ia,M,ji,Hn==null?void 0:Hn.appName,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId,T]);async function Sc(te){const je=(ce==null?void 0:ce.runtimeId)??"",Ve=te.commitSha??"";if(!(!je||!Ve||at)){wt(Ve),Ze("");try{await M0e({runtimeId:je,targetCommitSha:Ve});const mt=await nA(je);De(mt)}catch(mt){Ze(mt instanceof Error?mt.message:T("agentWorkspace.errors.rollbackVersion"))}finally{wt("")}}}p.useEffect(()=>{const te=new Set(mi.map(je=>je.id));tn(je=>{const Ve=new Set([...je].filter(mt=>te.has(mt)));return Ve.size===je.size?je:Ve}),$r(je=>{const Ve=new Set([...je].filter(mt=>te.has(mt)));return Ve.size===je.size?je:Ve}),Si&&!te.has(Si)&&la("")},[mi,Si]),p.useEffect(()=>{Xe(!1),tn(new Set),$r(new Set),_s(""),la("")},[ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{const te=new Set(Y.filter(je=>je.canDelete===!0).map(je=>je.id));Fe(je=>{const Ve=new Set([...je].filter(mt=>te.has(mt)));return Ve.size===je.size?je:Ve})},[Y]),p.useEffect(()=>{const te=new Set(Oa.map(je=>je.id));pn(je=>{const Ve=new Set([...je].filter(mt=>te.has(mt)));return Ve.size===je.size?je:Ve})},[Oa]);const Xo=p.useMemo(()=>!v||!(ce!=null&&ce.runtimeId)||v.runtimeId!==ce.runtimeId||ji&&v.agentName&&v.agentName!==ji?null:{...v,tag:T(v.kind==="good"?"agentWorkspace.goodCase":"agentWorkspace.badCase")},[v,ce==null?void 0:ce.runtimeId,ji,T]),lo=p.useMemo(()=>N5t(T),[T]),ka=p.useMemo(()=>ce!=null&&ce.runtimeId?Xo?[Xo,...mi.filter(te=>te.id!==Xo.id&&(!te.messageId||te.messageId!==Xo.messageId))]:mi:lo,[lo,mi,Xo,ce==null?void 0:ce.runtimeId]),_l=ka.filter(te=>{if(te.kind!==ft||(te.source==="auto"?"auto":"user")!==zt)return!1;const Ve=Gt.trim().toLowerCase();return Ve?[te.input,te.output,te.referenceOutput,te.comment,te.tag??"",te.sessionId,te.messageId,te.userId,te.evaluationSetName].join(" ").toLowerCase().includes(Ve):!0}),of=_l.filter(te=>Yt.has(te.id)),qm=!!(ce!=null&&ce.runtimeId),lf=te=>{ut(te),Rt(""),_s("");const je=ka.find(Ve=>Ve.kind===te);la((je==null?void 0:je.id)??""),window.setTimeout(()=>{var Ve;(Ve=Vi.current)==null||Ve.scrollIntoView({behavior:"smooth",block:"start"})},0)},Fr=te=>{_s(""),tn(je=>{const Ve=new Set(je);return Ve.has(te.id)?Ve.delete(te.id):Ve.add(te.id),Ve})},cf=()=>{_s(""),tn(new Set(_l.map(te=>te.id)))},eP=()=>{_s(""),tn(new Set),Xe(!1)},Br=te=>{$r(je=>{const Ve=new Set(je);return Ve.has(te)?Ve.delete(te):Ve.add(te),Ve})},l0=te=>{la(te.id),_s(""),!(!te.sessionId||!te.messageId)&&(N==null||N(te))},YE=async te=>{if(!(ce!=null&&ce.runtimeId)||!ji||In||te.length===0)return;const je=te.length===1?T("agentWorkspace.deleteOneCaseConfirm"):T("agentWorkspace.deleteCasesConfirm",{count:te.length});if(!window.confirm(je))return;const Ve=te.map(dn=>dn.id),mt=new Set(Ve);mr(!0),_s("");try{await Xbe({runtimeId:ce.runtimeId,region:ce.region??"cn-beijing",appName:ji,itemIds:Ve});const dn=new Map;for(const nt of te)dn.set(nt.kind,(dn.get(nt.kind)??0)+1);bn(nt=>nt.filter(ei=>!mt.has(ei.id))),ri(nt=>nt.map(ei=>({...ei,itemCount:Math.max(0,ei.itemCount-(dn.get(ei.kind)??0))}))),tn(nt=>new Set([...nt].filter(ei=>!mt.has(ei)))),$r(nt=>new Set([...nt].filter(ei=>!mt.has(ei)))),Si&&mt.has(Si)&&la(""),te.length>1&&Xe(!1),_==null||_(te)}catch(dn){_s(dn instanceof Error?dn.message:String(dn))}finally{mr(!1)}},h1=te=>{ed(je=>je.map(Ve=>Ve.id===te.id?te:Ve))},ZE=()=>{const te=new Set(e.map(mt=>mt.id)),je=n.filter(mt=>te.has(mt)),Ve=new Set(je);return[...je,...e.filter(mt=>!Ve.has(mt.id)).map(mt=>mt.id)]},JE=(te,je,Ve)=>{if(!w||te===je)return;const mt=ZE().filter(ei=>ei!==te),dn=mt.indexOf(je),nt=dn<0?mt.length:Ve==="after"?dn+1:dn;mt.splice(nt,0,te),w(mt)},eC=(te,je)=>{if(!Bt||Bt===je)return;const Ve=te.currentTarget.getBoundingClientRect();ht(je),We(te.clientY>Ve.top+Ve.height/2?"after":"before")},Wm=(te,je)=>{if(!w)return;const Ve=ZE(),mt=Ve.indexOf(te),dn=Math.max(0,Math.min(Ve.length-1,mt+je));mt<0||mt===dn||(Ve.splice(mt,1),Ve.splice(dn,0,te),w(Ve))},c0=te=>{te.canDelete===!0&&(wn(""),Fe(je=>{const Ve=new Set(je);return Ve.has(te.id)?Ve.delete(te.id):Ve.add(te.id),Ve}))},tC=te=>{wn(""),pn(je=>{const Ve=new Set(je);return Ve.has(te.id)?Ve.delete(te.id):Ve.add(te.id),Ve})},nC=()=>{wn(""),Fe(new Set(_t.map(te=>te.id))),pn(new Set(Oa.map(te=>te.id)))},Lt=()=>{wn(""),Fe(new Set),pn(new Set),vn(!1)},u0=()=>{if(Ri===0||Jt)return;const te=un.length,je=Nn.length;wn(""),Oi({kind:"selection",title:T(te===1&&je===0?"agentWorkspace.deleteAgentTitle":te===0&&je===1?"myAgents.deleteDraftTitle":"agentWorkspace.deleteSelectedTitle"),description:te===1&&je===0?T("agentWorkspace.deleteAgentDescription",{name:un[0].label}):te===0&&je===1?T("agentWorkspace.deleteDraftDescription",{name:Nn[0].draft.name||T("agentSelector.unnamedAgent")}):T("agentWorkspace.deleteSelectionDescription",{count:Ri,warning:te>0?T("agentWorkspace.runtimeDeletionWarning",{count:te}):T("agentWorkspace.draftDeletionWarning")}),confirmLabel:T(te===0&&je===1?"myAgents.deleteDraft":"agentWorkspace.deleteSelected"),agents:un,drafts:Nn})},p1=async()=>{if(!(!oi||Jt)){en(!0),wn("");try{if(oi.kind==="selection"){const{agents:te,drafts:je}=oi;if(te.length>0){if(!k)throw new Error(T("agentWorkspace.errors.deleteDeployedUnsupported"));await k(te)}je.length>0&&(S==null||S(je)),Fe(new Set),pn(new Set),vn(!1),te.some(Ve=>Ve.id===I)&&H(""),je.some(Ve=>Ve.id===K)&&Q("")}else if(oi.kind==="agent"){if(!k)throw new Error(T("agentWorkspace.errors.deleteDeployedUnsupported"));await k([oi.agent]),I===oi.agent.id&&H("")}else{if(!S)throw new Error(T("agentWorkspace.errors.deleteDraftUnsupported"));S([oi.draft]),K===oi.draft.id&&Q("")}Oi(null)}catch(te){wn(te instanceof Error?te.message:String(te))}finally{en(!1)}}},d0=te=>{!k||te.canDelete!==!0||Jt||(wn(""),Oi({kind:"agent",title:T("agentWorkspace.deleteAgentTitle"),description:T("agentWorkspace.deleteAgentDescription",{name:te.label}),confirmLabel:T("agentWorkspace.deleteAgent"),agent:te}))},Wi=te=>{if(!S||Jt)return;const je=te.draft.name||T("agentSelector.unnamedAgent");wn(""),Oi({kind:"draft",title:T("myAgents.deleteDraftTitle"),description:T("agentWorkspace.deleteDraftDescription",{name:je}),confirmLabel:T("myAgents.deleteDraft"),draft:te})},Xh=()=>{const te=`eval-${Date.now()}`,je={id:te,name:T("agentWorkspace.newEvaluationGroupName",{count:oo.length+1}),agentIds:[],caseSet:"核心回归集",evaluator:"综合质量评估器",metrics:["回答质量"],concurrency:"4",history:[]};ed(Ve=>[je,...Ve]),uu(te)},iC=te=>{h1({...te,history:[{id:`run-${Date.now()}`,createdAt:T("agentWorkspace.evaluationDefaults.justNow"),score:86+te.history.length%7,status:"completed"},...te.history]})};return o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:`aw-root${y?" is-detail-only":""}`,children:[o.jsxs("nav",{className:"aw-view-tabs","aria-label":T("agentWorkspace.workspace"),children:[o.jsx("button",{type:"button",className:R==="library"?"is-active":"","aria-pressed":R==="library",onClick:()=>{L("library"),Ke("")},children:T("agentWorkspace.library")}),o.jsx("button",{type:"button",className:R==="evaluation"?"is-active":"","aria-pressed":R==="evaluation",onClick:()=>{L("evaluation"),Ke("")},children:T("agentWorkspace.evaluation")})]}),o.jsxs("div",{className:"aw-workspace-frame",children:[o.jsxs("div",{className:"aw-workspace","aria-hidden":R==="evaluation"||void 0,ref:te=>{te==null||te.toggleAttribute("inert",R==="evaluation")},children:[o.jsxs("aside",{className:"aw-sidebar","aria-label":T(R==="library"?"agentWorkspace.agentList":"agentWorkspace.evaluationGroupList"),children:[o.jsxs("label",{className:"aw-search",children:[o.jsx(P_,{"aria-hidden":!0}),o.jsx("input",{value:Ue,onChange:te=>Ke(te.currentTarget.value),placeholder:T(R==="library"?"myAgents.searchAgents":"agentWorkspace.searchEvaluationGroups"),"aria-label":T(R==="library"?"myAgents.searchAgents":"agentWorkspace.searchEvaluationGroups")})]}),o.jsxs("button",{type:"button",className:"aw-create-card",onClick:R==="library"?j:Xh,disabled:R==="library"&&!a,children:[o.jsx(Fo,{"aria-hidden":!0}),o.jsx("span",{children:T(R==="library"?"agentWorkspace.newAgent":"agentWorkspace.newEvaluationGroup")})]}),R==="library"&&(k||S)&&o.jsx("div",{className:`aw-selection-toolbar${vt?" is-active":""}`,children:vt?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"aw-selection-count",children:T("agentWorkspace.selectedCount",{count:Ri})}),o.jsx("button",{type:"button",onClick:nC,disabled:Yi===0||Jt,children:T("agentWorkspace.selectAll")}),o.jsx("button",{type:"button",className:"aw-selection-danger",onClick:()=>void u0(),disabled:Ri===0||Jt,children:T(Jt?"common.deleting":"agentWorkspace.deleteSelected")}),o.jsx("button",{type:"button",onClick:Lt,disabled:Jt,children:T("common.cancel")})]}):o.jsx("button",{type:"button",onClick:()=>{wn(""),vn(!0)},disabled:Yi===0,children:T("common.select")})}),R==="library"&&Un&&o.jsx("div",{className:"aw-delete-error",role:"alert",children:Un}),o.jsx("div",{className:"aw-agent-list",children:R==="evaluation"?Gh.length===0?o.jsx("div",{className:"aw-list-empty",children:T("agentWorkspace.noMatchingEvaluationGroups")}):Gh.map(te=>o.jsxs("button",{type:"button",className:`aw-agent-item${te.id===bc?" is-active":""}`,onClick:()=>uu(te.id),children:[o.jsxs("span",{className:"aw-agent-copy aw-eval-group-copy",children:[o.jsx("strong",{children:Ww(te.name,T)}),o.jsx("small",{children:T("agentWorkspace.groupStats",{agents:te.agentIds.length,runs:te.history.length})})]}),o.jsx(bO,{"aria-hidden":!0})]},te.id)):u&&Y.length===0&&Oa.length===0?o.jsx("div",{className:"aw-list-empty",children:T("agentWorkspace.loadingCloudAgents")}):d&&Y.length===0&&Oa.length===0?o.jsxs("div",{className:"aw-list-empty aw-list-error",children:[o.jsx("span",{children:d}),O&&o.jsx("button",{type:"button",onClick:O,children:T("common.retry")})]}):Y.length===0&&Oa.length===0?o.jsx("div",{className:"aw-list-empty",children:T("myAgents.noMatchingAgents")}):o.jsxs(o.Fragment,{children:[Oa.map(te=>{const Ve=f.filter(dn=>dn.draftId===te.id).sort((dn,nt)=>nt.startedAt-dn.startedAt)[0]??f.filter(dn=>{var nt,ei;return((nt=dn.agentDraft)==null?void 0:nt.name)===te.draft.name||dn.agentName===te.draft.name||!!((ei=te.deploymentTarget)!=null&&ei.runtimeId)&&dn.runtimeId===te.deploymentTarget.runtimeId}).sort((dn,nt)=>nt.startedAt-dn.startedAt)[0],mt=Pt.has(te.id);return o.jsxs("button",{type:"button",className:["aw-agent-item",vt?"is-selecting":"",mt?"is-selected-for-delete":"",te.id===K?"is-active":""].filter(Boolean).join(" "),"aria-pressed":vt?mt:void 0,onClick:()=>{if(vt){tC(te);return}H(""),Q(te.id),U("basic")},children:[vt&&o.jsx("span",{className:`aw-select-marker${mt?" is-checked":""}`,"aria-hidden":"true"}),o.jsxs("span",{className:"aw-agent-copy",children:[o.jsxs("span",{className:"aw-agent-name-row",children:[o.jsx("strong",{children:te.draft.name||T("agentSelector.unnamedAgent")}),o.jsx("span",{className:`aw-draft-badge${(Ve==null?void 0:Ve.status)==="running"?" is-deploying":""}`,children:(Ve==null?void 0:Ve.status)==="running"?T("myAgents.deploying"):T("myAgents.draft")})]}),o.jsx("small",{children:te.deploymentTarget?T("agentWorkspace.updatePending"):T("agentWorkspace.notPublished")})]}),o.jsx(bO,{"aria-hidden":!0})]},te.id)}),Y.map(te=>{const je=te.runtimeId?Cl.get(te.runtimeId):void 0,Ve=te.runtimeId?yc.get(te.runtimeId):void 0,mt=Ki.has(te.id),dn=te.canDelete===!0,nt=(je==null?void 0:je.status)==="running"?{label:T("myAgents.deploying"),className:" is-deploying"}:(je==null?void 0:je.status)==="error"?{label:T("agentWorkspace.failed"),className:" is-error"}:(je==null?void 0:je.status)==="cancelled"?{label:T("agentWorkspace.cancelled"),className:" is-muted"}:Ve?{label:T("agentWorkspace.updatePending"),className:""}:null,ei=(je==null?void 0:je.status)==="running"?T("agentWorkspace.updatingDeployment"):Ve?T("agentWorkspace.updatePending"):te.remote?te.host||T("agentWorkspace.remoteAgent"):T("agentWorkspace.localAgent"),ua=["aw-agent-item","aw-agent-item--sortable",te.id===I?"is-active":"",vt?"is-selecting":"",mt?"is-selected-for-delete":"",vt&&!dn?"is-selection-disabled":"",te.id===Bt?"is-dragging":"",te.id===tt&&te.id!==Bt?`is-drop-target is-drop-${pe}`:""].filter(Boolean).join(" ");return o.jsxs("button",{type:"button",draggable:!!w&&!vt,className:ua,"aria-pressed":vt?mt:void 0,"aria-keyshortcuts":w?"Alt+ArrowUp Alt+ArrowDown":void 0,onDragStart:Xn=>{w&&(wa.current=!0,Qe(te.id),Xn.dataTransfer.effectAllowed="move",Xn.dataTransfer.setData("text/plain",te.id))},onDragEnter:Xn=>{eC(Xn,te.id)},onDragOver:Xn=>{!Bt||Bt===te.id||(Xn.preventDefault(),Xn.dataTransfer.dropEffect="move",eC(Xn,te.id))},onDragLeave:Xn=>{const Ns=Xn.relatedTarget;Ns instanceof Node&&Xn.currentTarget.contains(Ns)||tt===te.id&&ht("")},onDrop:Xn=>{Xn.preventDefault();const Ns=Xn.dataTransfer.getData("text/plain")||Bt;JE(Ns,te.id,pe),Qe(""),ht(""),We("before")},onDragEnd:()=>{Qe(""),ht(""),We("before"),window.setTimeout(()=>{wa.current=!1},0)},onKeyDown:Xn=>{Xn.altKey&&(Xn.key==="ArrowUp"?(Xn.preventDefault(),Wm(te.id,-1)):Xn.key==="ArrowDown"&&(Xn.preventDefault(),Wm(te.id,1)))},onClick:Xn=>{if(vt){Xn.preventDefault(),c0(te);return}if(wa.current){Xn.preventDefault(),wa.current=!1;return}Q(""),H(te.id),U("basic"),E(te.id)},children:[vt&&o.jsx("span",{className:`aw-select-marker${mt?" is-checked":""}`,"aria-hidden":"true"}),o.jsxs("span",{className:"aw-agent-copy",children:[o.jsxs("span",{className:"aw-agent-name-row",children:[o.jsx("strong",{children:te.label}),te.currentVersion!=null&&o.jsxs("span",{className:"aw-version-badge",children:["v",te.currentVersion]}),nt&&o.jsx("span",{className:`aw-draft-badge${nt.className}`,children:nt.label})]}),o.jsx("small",{children:ei})]}),o.jsx(bO,{"aria-hidden":!0})]},te.id)})]})}),o.jsx("div",{className:"aw-list-count",children:T("agentWorkspace.totalCount",{count:R==="library"?e.length+Wh:oo.length})})]}),R==="evaluation"&&Ge?o.jsx(rLt,{group:Ge,agents:e,cases:ka,onChange:h1,onRun:iC}):R==="evaluation"?o.jsx("main",{className:"aw-main aw-empty-selection",children:o.jsx("p",{children:T("agentWorkspace.noEvaluationGroupSelected")})}):!ce&&!li&&!ci?o.jsx("main",{className:"aw-main aw-empty-selection",children:o.jsx("p",{children:T("agentWorkspace.noAgentSelected")})}):o.jsxs("main",{className:`aw-main${or?" is-deploying":""}${y?" resource-page":""}`,children:[ce&&!Hn&&s&&o.jsx("div",{className:"aw-detail-loading",role:"status","aria-live":"polite",children:o.jsxs("div",{className:"aw-detail-loading-card",children:[o.jsx("span",{className:"loading-gap-spinner","aria-hidden":"true"}),o.jsxs("span",{children:[o.jsx("strong",{children:T("agentWorkspace.loadingAgent")}),o.jsx("small",{children:T("agentWorkspace.loadingAgentDescription")})]})]})}),M==="integrations"&&se&&o.jsx("div",{className:"aw-detail-loading",role:"status","aria-live":"polite",children:o.jsxs("div",{className:"aw-detail-loading-card",children:[o.jsx("span",{className:"loading-gap-spinner","aria-hidden":"true"}),o.jsxs("span",{children:[o.jsx("strong",{children:T("agentWorkspace.probingIntegration")}),o.jsx("small",{children:T("agentWorkspace.probingIntegrationDescription")})]})]})}),o.jsx(uE,{className:"aw-agent-detail",title:we,description:Kn.description||T(s||y&&!Ot?"agentWorkspace.loadingAgentInfo":"common.noDescription"),identitySeed:we,backLabel:T("agentWorkspace.backToAgentList"),onBack:y?x:void 0,meta:o.jsxs(o.Fragment,{children:[Oc!=null&&o.jsxs("span",{className:"aw-agent-meta",children:["v",Oc]}),li&&o.jsx("span",{className:"aw-agent-meta",children:T("myAgents.draft")}),Sa&&o.jsx("span",{className:"aw-agent-meta",children:T("agentWorkspace.updatePending")}),!ce&&!li&&ci&&o.jsx("span",{className:"aw-agent-meta",children:ci.label})]}),actionsClassName:"aw-head-actions",bodyClassName:"aw-agent-detail__body",actions:li||Sa||ce!=null&&ce.canDelete?o.jsxs(o.Fragment,{children:[(li||Sa)&&o.jsxs(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,onClick:()=>{const te=li??Sa;te&&Wi(te)},disabled:Jt,"aria-label":T("myAgents.deleteDraft"),title:T("myAgents.deleteDraft"),children:[o.jsx(pm,{"aria-hidden":!0}),o.jsx("span",{children:T("myAgents.deleteDraft")})]}),(ce==null?void 0:ce.canDelete)&&o.jsxs(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,onClick:()=>void d0(ce),disabled:Jt,"aria-label":T("agentWorkspace.deleteAgent"),title:T("agentWorkspace.deleteAgent"),children:[o.jsx(pm,{"aria-hidden":!0}),o.jsx("span",{children:T(Jt?"common.deleting":"agentWorkspace.deleteAgent")})]})]}):void 0,sections:vc.map(te=>{var je,Ve,mt,dn;return{key:te.id,label:te.label,disabled:or,content:te.id===M?o.jsxs(o.Fragment,{children:[Qt&&fs&&o.jsx("div",{className:`aw-detail-deployment${or?" is-running":""}`,children:o.jsx(J5t,{task:Qt,onReturnToEdit:hs&&F?()=>F(hs):void 0})}),o.jsxs("div",{className:"aw-content",children:[M==="basic"&&o.jsxs("div",{className:"aw-basic-stack",children:[Pe&&o.jsx(Eb,{className:"aw-detail-fetch-alert",color:"warning",variant:"soft",title:T("agentWorkspace.partialInfoUnavailable"),description:T("agentWorkspace.upgradeRuntimeForDetails")}),(ot&&!Pe||bt)&&o.jsx(Eb,{className:"aw-detail-fetch-alert",color:"danger",variant:"soft",title:T("agentWorkspace.detailLoadFailed"),description:T("agentWorkspace.detailLoadFailedDescription"),actions:o.jsx(Ht,{type:"button",color:"danger",variant:"soft",size:"sm",pill:!1,onClick:()=>ye(nt=>nt+1),children:T("common.retry")})}),ce&&Dt&&!Dt.canUpdate&&o.jsxs("div",{className:"aw-update-recovery-notice",role:Dt.recoveryStatus==="preparing"?"status":"alert",children:[o.jsx("strong",{children:Dt.recoveryStatus==="preparing"?T("agentWorkspace.restoringUpdateConfig"):T("agentWorkspace.updateConfigUnavailable")}),fn&&o.jsx("span",{children:fn}),On.map(nt=>o.jsx("span",{children:nt},nt))]}),o.jsxs("section",{className:"aw-deployment-panel aw-settings-card",children:[o.jsx("div",{className:"aw-section-head",children:o.jsxs("div",{children:[o.jsx("h3",{children:T("agentWorkspace.deploymentConfig")}),o.jsx("p",{children:T("agentWorkspace.deploymentConfigDescription")})]})}),o.jsxs("dl",{className:"aw-readonly-config",children:[o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.runtimeStatus")}),o.jsxs("dd",{className:(q==null?void 0:q.status.toLowerCase())==="ready"?"is-ready":void 0,children:[(q==null?void 0:q.status.toLowerCase())==="ready"&&o.jsx("span",{className:"aw-status-dot"}),(q==null?void 0:q.status)||T("agentWorkspace.loading")]})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.deploymentRegion")}),o.jsx("dd",{children:(q==null?void 0:q.region)||(ce==null?void 0:ce.region)||(Qt==null?void 0:Qt.region)||T("agentWorkspace.notAvailable")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.networkAccess")}),o.jsx("dd",{children:q!=null&&q.networkTypes.length?q.networkTypes.join(" / "):T("agentWorkspace.notAvailable")})]})]})]}),o.jsxs("section",{className:"aw-canvas-card",children:[o.jsx("div",{className:"aw-card-head",children:o.jsx("strong",{children:T("agentWorkspace.executionFlow")})}),o.jsx("div",{className:"aw-canvas",children:o.jsx(LS,{draft:Kn,direction:"horizontal",selectedPath:[],onSelect:()=>{},onAdd:()=>{},onInsert:()=>{},onDelete:()=>{},readOnly:!0,interactivePreview:!0},Ko)})]}),o.jsxs("section",{className:"aw-details-card",children:[o.jsx("div",{className:"aw-card-head",children:o.jsx("strong",{children:T("agentWorkspace.details")})}),o.jsxs("dl",{className:"aw-facts",children:[o.jsxs("div",{children:[o.jsx("dt",{children:T("agentSelector.model")}),o.jsx("dd",{children:EB(Hn==null?void 0:Hn.model)||Kn.modelName||T("agentWorkspace.notAvailable")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.agentCountLabel")}),o.jsx("dd",{children:Hn!=null&&Hn.graph?gje(Hn.graph):bje(Kn)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentSelector.tools")}),o.jsx("dd",{className:"aw-fact-badges",children:lt.length?lt.map(nt=>o.jsx("span",{children:nt},nt)):T("agentWorkspace.none")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentSelector.skills")}),o.jsx("dd",{className:"aw-fact-badges",children:Sn===null?T("agentSelector.previewUnsupported"):Sn.length?Sn.map(nt=>o.jsx("span",{children:nt},nt)):T("agentWorkspace.none")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("systemInfo.currentVersion")}),o.jsx("dd",{children:Oc!=null?`v${Oc}`:T("agentWorkspace.notAvailable")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentSelector.status")}),o.jsx("dd",{children:li?T("myAgents.draft"):(Qt==null?void 0:Qt.status)==="error"?T("agentWorkspace.deploymentFailed"):(Qt==null?void 0:Qt.status)==="cancelled"?T("agentWorkspace.cancelled"):Sa?T("agentWorkspace.updatePending"):o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"aw-status-dot"}),T("skillCenter.status.available")]})})]})]})]}),o.jsxs("section",{className:"aw-sidecar-panel aw-settings-card","aria-label":T("agentWorkspace.selectedOptimizations"),children:[o.jsx("div",{className:"aw-section-head",children:o.jsxs("div",{children:[o.jsx("h3",{children:T("agentWorkspace.selectedOptimizations")}),o.jsx("p",{children:T("agentWorkspace.selectedOptimizationsDescription")})]})}),o.jsxs("dl",{className:"aw-readonly-config",children:[o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.configurationStatus")}),o.jsx("dd",{className:zn!=null&&zn.enabled?"is-ready":void 0,children:zn?zn.enabled?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"aw-status-dot"}),T("skillCenter.status.enabled")]}):T("skillCenter.status.inactive"):T("agentWorkspace.notRecorded")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.optimizationProfile")}),o.jsx("dd",{children:zn?Dst(zn.profile):T("agentWorkspace.legacyConfigMissing")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.selectedOptimizations")}),o.jsx("dd",{className:"aw-fact-badges",children:zn?ds.length?ds.map(nt=>o.jsx("span",{children:mA(nt)},nt)):T("agentWorkspace.noneSelected"):T("agentWorkspace.legacyConfigMissing")})]})]})]})]}),M==="usage"&&(ce==null?void 0:ce.runtimeId)&&o.jsxs("section",{className:"aw-usage","aria-busy":Jn,children:[o.jsx("div",{className:"aw-usage-intro",children:o.jsx("h3",{children:T("agentWorkspace.usageOverview")})}),Jn&&!us&&o.jsx("div",{className:"aw-usage-state",role:"status","aria-live":"polite",children:o.jsx(xn,{as:"span",children:T("agentWorkspace.loadingUsage")})}),Eo&&o.jsxs("div",{className:"aw-usage-state is-error",role:"alert",children:[o.jsx("span",{children:Eo}),o.jsx("button",{type:"button",onClick:()=>Co(nt=>nt+1),children:T("common.retry")})]}),!Jn&&!Eo&&!us&&!ji&&o.jsx("div",{className:"aw-usage-state",children:T("agentWorkspace.usageUnavailable")}),us&&o.jsxs(o.Fragment,{children:[o.jsxs("dl",{className:"aw-usage-summary","aria-label":T("agentWorkspace.usageSummary"),children:[o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.totalCalls")}),o.jsx("dd",{children:us.totalInvocations.toLocaleString(P.resolvedLanguage??P.language)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:T("agentWorkspace.userCount")}),o.jsx("dd",{children:us.totalUsers.toLocaleString(P.resolvedLanguage??P.language)})]})]}),o.jsxs("div",{className:"aw-usage-users-head",children:[o.jsx("h3",{children:T("agentWorkspace.userDetails")}),Jn&&o.jsx(xn,{as:"span",role:"status","aria-live":"polite",children:T("agentWorkspace.refreshing")})]}),us.users.length===0?o.jsx("div",{className:"aw-usage-state",children:T("agentWorkspace.noUsage")}):o.jsx("div",{className:"aw-usage-table-wrap",children:o.jsxs("table",{className:"aw-usage-table",children:[o.jsx("caption",{children:T("agentWorkspace.usageUserList")}),o.jsx("thead",{children:o.jsxs("tr",{children:[o.jsx("th",{scope:"col",children:T("agentWorkspace.user")}),o.jsx("th",{scope:"col",children:T("agentWorkspace.callCount")}),o.jsx("th",{scope:"col",children:T("agentWorkspace.lastUsed")})]})}),o.jsx("tbody",{children:us.users.map(nt=>o.jsxs("tr",{children:[o.jsxs("td",{children:[o.jsx("strong",{children:nt.displayName||nt.userId||T("agentWorkspace.unknownUser")}),nt.displayName&&nt.userId&&o.jsx("small",{title:nt.userId,children:nt.userId})]}),o.jsx("td",{children:nt.invocationCount.toLocaleString(P.resolvedLanguage??P.language)}),o.jsx("td",{children:o.jsx("time",{dateTime:nt.lastUsedAt,children:P5t(nt.lastUsedAt,P.resolvedLanguage??P.language,T)})})]},nt.userId))})]})}),us.totalPages>1&&o.jsxs("nav",{className:"aw-usage-pagination","aria-label":T("agentWorkspace.usagePagination"),children:[o.jsx("button",{type:"button",disabled:Jn||us.page<=1,onClick:()=>Qa(nt=>Math.max(1,nt-1)),children:T("common.previousPage")}),o.jsx("span",{"aria-live":"polite",children:T("agentWorkspace.pageOf",{page:us.page,total:us.totalPages})}),o.jsx("button",{type:"button",disabled:Jn||us.page>=us.totalPages,onClick:()=>Qa(nt=>nt+1),children:T("common.nextPage")})]})]})]}),M==="versions"&&o.jsxs("section",{className:"aw-version-stack",children:[o.jsxs("div",{className:"aw-integration-intro",children:[o.jsx("h3",{children:T("agentWorkspace.githubVersions")}),o.jsx("p",{children:(je=Ee==null?void 0:Ee.cicd)!=null&&je.enabled?T("agentWorkspace.githubVersionsDescription"):T("agentWorkspace.currentVersionOnly")})]}),J&&o.jsx("div",{className:"aw-case-empty",children:T("agentWorkspace.loadingVersions")}),_e&&o.jsxs("div",{className:"aw-integration-error",role:"alert",children:[o.jsx("span",{children:_e}),(ce==null?void 0:ce.runtimeId)&&o.jsx("button",{type:"button",onClick:()=>void nA(ce.runtimeId??"").then(De),children:T("common.retry")})]}),!J&&!_e&&o.jsxs("div",{className:"aw-version-list",children:[(Ee==null?void 0:Ee.githubSyncError)&&o.jsx("div",{className:"aw-integration-error",role:"alert",children:o.jsx("span",{children:Ee.githubSyncError})}),(Ee==null?void 0:Ee.latestSourceRuntimeStatus)&&Ee.latestSourceRuntimeStatus!=="published"&&((Ve=Ee.versions[0])==null?void 0:Ve.commitSha)&&Ee.versions[0].commitSha!==Ee.currentCommitSha&&o.jsx("div",{className:"aw-integration-notice",role:"status",children:o.jsxs("span",{children:[T("agentWorkspace.sourceMergedRuntimeStill"),bte(Ee.latestSourceRuntimeStatus,T),T("agentWorkspace.currentProductionVersionHint")]})}),Ee!=null&&Ee.versions.length?Ee.versions.map(nt=>{var Ao;const ei=nt.commitSha??"",ua=nt.runtimeStatus??nt.status,Xn=nt.changeType==="rollback",Ns=!!((Ao=Ee.cicd)!=null&&Ao.enabled)&&!!ei&&!Xn&&ei!==Ee.currentCommitSha;return o.jsxs("article",{className:"aw-version-row",children:[o.jsxs("div",{children:[o.jsx("strong",{children:M5t(nt,T)}),o.jsx("small",{children:nt.createdAt||T("agentWorkspace.noTime")})]}),o.jsxs("div",{children:[o.jsx("span",{children:T("agentWorkspace.prLink")}),nt.pullRequestUrl?o.jsx("a",{href:nt.pullRequestUrl,target:"_blank",rel:"noopener noreferrer",children:T("agentWorkspace.viewPr")}):o.jsx("em",{children:T("agentWorkspace.noPr")})]}),o.jsxs("div",{children:[o.jsx("span",{children:T("agentWorkspace.author")}),o.jsx("em",{children:nt.author||"Studio"})]}),o.jsxs("div",{children:[o.jsx("span",{children:T("agentWorkspace.publishStatus")}),o.jsx("em",{children:bte(ua,T)})]}),o.jsxs("div",{className:"aw-version-actions",children:[o.jsx("button",{type:"button",disabled:!Ns||at===ei,onClick:()=>void Sc(nt),children:T(at===ei?"agentWorkspace.rollingBack":"agentWorkspace.rollbackToVersion")}),nt.workflowRunUrl&&o.jsx("a",{href:nt.workflowRunUrl,target:"_blank",rel:"noopener noreferrer",children:T("agentWorkspace.viewRelease")})]})]},`${nt.version}-${ei||nt.createdAt}`)}):o.jsxs("article",{className:"aw-version-row",children:[o.jsxs("div",{children:[o.jsx("strong",{children:Oc!=null?`v${Oc}`:T("agentWorkspace.noVersion")}),o.jsx("small",{children:(q==null?void 0:q.updatedAt)||T("agentWorkspace.noTime")})]}),o.jsx("p",{children:T("agentWorkspace.currentVersionOnly")})]})]})]}),M==="integrations"&&o.jsxs("div",{className:"aw-integration-stack",children:[o.jsxs("div",{className:"aw-integration-intro",children:[o.jsx("h3",{children:T("agentWorkspace.integrationMethods")}),o.jsx("p",{children:T("agentWorkspace.integrationDescription")})]}),ge&&o.jsxs("div",{className:"aw-integration-error",role:"alert",children:[o.jsx("span",{children:ge}),o.jsx("button",{type:"button",onClick:()=>ae(nt=>nt+1),children:T("common.retry")})]}),!ge&&o.jsxs("div",{className:"aw-integration-body",children:[o.jsxs("div",{className:`aw-integration-protocol-tabs${ue==="a2a"?" is-a2a":""}`,role:"tablist","aria-label":T("agentWorkspace.integrationProtocol"),children:[o.jsx("span",{className:"aw-integration-protocol-slider","aria-hidden":"true"}),sw.map((nt,ei)=>o.jsx("button",{type:"button",id:`integration-${nt.id}-tab`,role:"tab","aria-selected":ue===nt.id,"aria-controls":`integration-${nt.id}-panel`,tabIndex:ue===nt.id?0:-1,onClick:()=>sf(nt.id),onKeyDown:ua=>{var Ao;if(!["ArrowLeft","ArrowRight","Home","End"].includes(ua.key))return;ua.preventDefault();const Xn=ua.key==="Home"?0:ua.key==="End"?sw.length-1:(ei+(ua.key==="ArrowRight"?1:-1)+sw.length)%sw.length,Ns=sw[Xn];sf(Ns.id),(Ao=document.getElementById(`integration-${Ns.id}-tab`))==null||Ao.focus()},children:nt.label},nt.id))]}),ue==="api-server"?o.jsx(vte,{protocol:"api-server",title:"API Server",available:Qn,fields:[{label:"Agent",value:Qn?((mt=Sr==null?void 0:Sr.apiApps)==null?void 0:mt.join("、"))??"":""},{label:T("agentWorkspace.discoveryEndpoint"),value:Qn?iL(Al,"/list-apps"):""},{label:T("agentWorkspace.invocationEndpoint"),value:Qn?iL(Al,"/run_sse"):""},{label:T("agentWorkspace.authentication"),value:Qn?gte(q==null?void 0:q.authType,T):""},{label:"API Key",value:o.jsx(yte,{available:Qn,authType:q==null?void 0:q.authType,value:xc,visible:Le&&!!xc,loading:Ie,error:Ae,onToggle:()=>void af()})}],example:Qn?L5t(Al,rf,q==null?void 0:q.authType):""}):o.jsx(vte,{protocol:"a2a",title:"A2A",available:za,fields:[{label:"Agent",value:((dn=Sr==null?void 0:Sr.a2a)==null?void 0:dn.name)??""},{label:"Agent Card",value:za?iL(Al,"/.well-known/agent-card.json"):""},{label:T("agentWorkspace.invocationUrl"),value:be},{label:T("agentWorkspace.authentication"),value:za?gte(q==null?void 0:q.authType,T):""},{label:"API Key",value:o.jsx(yte,{available:za,authType:q==null?void 0:q.authType,value:xc,visible:Le&&!!xc,loading:Ie,error:Ae,onToggle:()=>void af()})}],example:za?$5t(be,q==null?void 0:q.authType):""})]})]}),M==="evaluations"&&o.jsxs("section",{className:"aw-cases",children:[(ce==null?void 0:ce.runtimeId)&&o.jsx("div",{className:"aw-case-summary",children:["good","bad"].map(nt=>{const ei=q5t(qi,nt),ua=ka.filter(Ns=>Ns.kind===nt).length,Xn=Xo?ua:(ei==null?void 0:ei.itemCount)??ua;return o.jsxs("button",{type:"button",onClick:()=>lf(nt),children:[o.jsx("strong",{children:Xn}),o.jsx("span",{children:T(nt==="good"?"agentWorkspace.goodCases":"agentWorkspace.badCases")})]},nt)})}),o.jsxs("div",{className:"aw-case-filter-bar",children:[o.jsxs("div",{className:"aw-case-filter-stack",children:[o.jsx("div",{className:"aw-case-filters","aria-label":T("agentWorkspace.caseResultFilter"),children:["good","bad"].map(nt=>o.jsx("button",{type:"button",className:ft===nt?"is-active":"","aria-pressed":ft===nt,onClick:()=>ut(nt),children:T(nt==="good"?"agentWorkspace.goodCase":"agentWorkspace.badCase")},nt))}),o.jsx("div",{className:"aw-case-source-filters","aria-label":T("agentWorkspace.feedbackSourceFilter"),children:["auto","user"].map(nt=>o.jsx("button",{type:"button",className:zt===nt?"is-active":"","aria-pressed":zt===nt,onClick:()=>Z(nt),children:T(nt==="auto"?"agentWorkspace.automaticFeedback":"agentWorkspace.manualFeedback")},nt))})]}),o.jsxs("label",{className:"aw-case-search",children:[o.jsx(P_,{"aria-hidden":!0}),o.jsx("input",{type:"search",value:Gt,onChange:nt=>Rt(nt.currentTarget.value),placeholder:T("agentWorkspace.searchCasesPlaceholder"),"aria-label":T("agentWorkspace.searchCases")})]})]}),qm&&o.jsx("div",{className:`aw-case-toolbar${xe?" is-active":""}`,children:xe?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"aw-selection-count",children:T("agentWorkspace.selectedCaseCount",{count:of.length})}),o.jsx("button",{type:"button",onClick:cf,disabled:_l.length===0||In,children:T("agentWorkspace.selectAllVisible")}),o.jsx("button",{type:"button",className:"aw-selection-danger",onClick:()=>void YE(of),disabled:of.length===0||In,children:T(In?"common.deleting":"agentWorkspace.deleteSelected")}),o.jsx("button",{type:"button",onClick:eP,disabled:In,children:T("common.cancel")})]}):o.jsx("button",{type:"button",onClick:()=>{_s(""),Xe(!0)},disabled:_l.length===0||In,children:T("agentWorkspace.selectCases")})}),jr&&o.jsx("div",{className:"aw-delete-error",role:"alert",children:jr}),o.jsx("div",{ref:Vi,children:o.jsx(iLt,{cases:_l,loading:zi&&_l.length===0,error:Lr,notice:xs,runtimeBacked:!!(ce!=null&&ce.runtimeId),selectionMode:xe,selectedCaseIds:Yt,focusedCaseId:Si,expandedCaseIds:Hs,deleting:In,canDelete:qm,onOpenCase:l0,onToggleCase:Fr,onToggleExpanded:Br,onDeleteCase:nt=>void YE([nt]),onRetry:()=>Nr(nt=>nt+1)})})]}),M==="optimizations"&&o.jsxs("section",{className:"aw-optimizations",children:[o.jsxs("div",{className:"aw-optimization-intro",children:[o.jsx("h3",{children:T("agentWorkspace.optimizations")}),o.jsx("p",{children:T("agentWorkspace.optimizationsDescription")})]}),Yr?o.jsxs("div",{className:"aw-optimization-state",role:"status",children:[o.jsx("span",{className:"loading-gap-spinner","aria-hidden":"true"}),o.jsx("span",{children:T("agentWorkspace.loadingOptimizations")})]}):sa?o.jsxs("div",{className:"aw-optimization-state is-error",role:"alert",children:[o.jsx("span",{children:sa}),o.jsx("button",{type:"button",onClick:()=>aa(nt=>nt+1),children:T("common.retry")})]}):As.length>0?o.jsx(tLt,{groups:As}):o.jsx("div",{className:"aw-optimization-state",children:T("agentWorkspace.noOptimizations")})]})]}),M==="basic"&&(ce||li)&&o.jsxs("div",{className:"aw-basic-actions",children:[ce&&o.jsxs("button",{type:"button",className:"aw-talk studio-update-action",onClick:()=>C==null?void 0:C(ce),children:[o.jsx(T7e,{"aria-hidden":!0}),o.jsx("span",{children:T("agentWorkspace.chat")})]}),o.jsxs("span",{className:`aw-update-wrap${$n?" is-disabled":""}`,tabIndex:$n?0:void 0,"aria-describedby":$n?ca:void 0,children:[o.jsx("button",{type:"button",className:"aw-update studio-update-action",disabled:!!$n,"aria-busy":He||void 0,"aria-describedby":$n?ca:void 0,onClick:()=>li?F==null?void 0:F(li):Dt?A(Dt):void 0,children:He?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"loading-gap-spinner aw-update-spinner","aria-hidden":"true"}),o.jsx("span",{children:T("agentWorkspace.preparing")})]}):T(li||Sa?"agentWorkspace.continueEditing":"agentWorkspace.update")}),$n&&o.jsx("span",{id:ca,className:"aw-update-disabled-reason",role:"tooltip",children:$n})]})]})]}):null}}),activeSectionKey:M,navigationLabel:T("agentWorkspace.agentDetails"),onSectionChange:U})]})]}),R==="evaluation"&&o.jsx("div",{className:"aw-evaluation-glass",role:"status",children:o.jsx("span",{children:T("agentWorkspace.comingSoon")})})]})]}),oi&&o.jsx(pc,{variant:"danger",title:oi.title,description:oi.description,confirmLabel:Jt?T("common.deleting"):oi.confirmLabel,closeLabel:T("agentWorkspace.closeDeleteConfirmation"),busy:Jt,onCancel:()=>Oi(null),onConfirm:()=>void p1()})]})}function tLt({groups:e}){const{t}=Te("ui");return o.jsx("div",{className:"aw-optimization-table-wrap",children:o.jsxs("table",{className:"aw-optimization-table",children:[o.jsx("thead",{children:o.jsxs("tr",{children:[o.jsx("th",{scope:"col",children:t("agentWorkspace.fixPriority")}),o.jsx("th",{scope:"col",children:t("agentWorkspace.suggestedModule")}),o.jsx("th",{scope:"col",children:t("agentWorkspace.suggestionAndReason")})]})}),o.jsx("tbody",{children:e.map(n=>o.jsxs("tr",{children:[o.jsx("td",{children:o.jsx("span",{className:`aw-priority is-${n.priority}`,children:z5t(n.priority,t)})}),o.jsx("td",{children:o.jsx("span",{className:"aw-optimization-module",children:H5t(n,t)})}),o.jsx("td",{children:o.jsx("ul",{className:"aw-optimization-list",children:n.items.map(i=>o.jsxs("li",{children:[o.jsx("strong",{children:i.suggestion}),o.jsx("p",{children:i.reason})]},`${i.suggestion}:${i.reason}`))})})]},`${n.priority}:${n.module}:${n.customModule??""}`))})]})})}function nLt(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"M4.5 7h15"}),o.jsx("path",{d:"M9 7V4.8h6V7"}),o.jsx("path",{d:"m6.5 7 .8 12h9.4l.8-12"}),o.jsx("path",{d:"M10 10.5v5M14 10.5v5"})]})}function iLt({cases:e,loading:t=!1,error:n="",notice:i="",runtimeBacked:r=!1,selectionMode:s=!1,selectedCaseIds:a,focusedCaseId:l="",expandedCaseIds:c,deleting:u=!1,canDelete:d=!1,onOpenCase:f,onToggleCase:h,onToggleExpanded:m,onDeleteCase:g,onRetry:b}){const{t:v,i18n:y}=Te("ui");return o.jsxs("div",{className:"aw-case-table",children:[o.jsxs("div",{className:"aw-case-row aw-case-row-head",children:[o.jsx("span",{children:v("agentWorkspace.userInput")}),o.jsx("span",{children:v("agentWorkspace.agentOutput")}),o.jsx("span",{children:v("agentWorkspace.score")}),o.jsx("span",{children:v("agentWorkspace.scoreReason")}),o.jsx("span",{className:"aw-case-action-head",children:v("skillCenter.actions")})]}),t?o.jsx("div",{className:"aw-case-empty",children:v("agentWorkspace.loadingEvaluationSet")}):n?o.jsxs("div",{className:"aw-case-empty aw-case-error",children:[o.jsx("span",{children:n}),b&&o.jsx("button",{type:"button",onClick:b,children:v("common.retry")})]}):i?o.jsx("div",{className:"aw-case-empty",children:i}):e.length===0?o.jsx("div",{className:"aw-case-empty",children:v(r?"agentWorkspace.noFeedbackCases":"agentWorkspace.noMatchingCases")}):e.map(x=>{var _,j;const O=x.id.startsWith("local:"),w=(a==null?void 0:a.has(x.id))??!1,k=(c==null?void 0:c.has(x.id))??!1,E=x.output.length+x.referenceOutput.length>220||(((_=x.reason)==null?void 0:_.length)??0)>120,C=d&&!O,N=!!(x.comment&&x.comment.trim()!==((j=x.reason)==null?void 0:j.trim()));return o.jsxs("div",{className:["aw-case-row",l===x.id?"is-focused":"",s?"is-selecting":"",w?"is-selected-for-delete":""].filter(Boolean).join(" "),role:"row",tabIndex:0,"aria-selected":s?w:void 0,onClick:()=>{if(s){C&&(h==null||h(x));return}f==null||f(x)},onKeyDown:A=>{A.target===A.currentTarget&&(A.key!=="Enter"&&A.key!==" "||(A.preventDefault(),s?C&&(h==null||h(x)):f==null||f(x)))},children:[o.jsxs("div",{className:"aw-case-text aw-case-cell","data-label":v("agentWorkspace.userInput"),children:[o.jsxs("span",{className:"aw-case-title-line",children:[s&&C&&o.jsx("span",{className:`aw-select-marker${w?" is-checked":""}`,"aria-hidden":"true"}),o.jsx("strong",{title:x.input,children:x.input||v("agentWorkspace.noUserInput")})]}),N&&o.jsxs("small",{title:x.comment,children:[v("agentWorkspace.note"),x.comment]}),o.jsx("small",{className:"aw-case-time",children:U5t(x.createdAt,y.resolvedLanguage??y.language,v)}),(x.userId||x.sessionId)&&o.jsx("small",{title:[x.userId,x.sessionId].filter(Boolean).join(" · "),children:[x.userId,x.sessionId].filter(Boolean).join(" · ")})]}),o.jsxs("div",{className:`aw-case-output aw-case-cell${k?" is-expanded":""}`,"data-label":v("agentWorkspace.agentOutput"),children:[o.jsx("p",{className:"aw-case-output-preview",title:x.output,children:x.output||v("agentWorkspace.noVisibleResponse")}),x.referenceOutput&&o.jsxs("small",{className:"aw-case-output-preview",title:x.referenceOutput,children:[v("agentWorkspace.reference"),": ",x.referenceOutput]}),E&&o.jsx("button",{type:"button",className:"aw-case-expand",onClick:A=>{A.stopPropagation(),m==null||m(x.id)},children:v(k?"common.collapse":"common.expand")})]}),o.jsx("div",{className:"aw-case-score aw-case-cell","data-label":v("agentWorkspace.score"),children:Q5t(x,v)}),o.jsx("div",{className:`aw-case-reason aw-case-cell${k?" is-expanded":""}`,"data-label":v("agentWorkspace.scoreReason"),children:o.jsx("p",{title:x.reason||void 0,children:x.reason||"—"})}),o.jsx("div",{className:"aw-case-actions aw-case-cell","data-label":v("skillCenter.actions"),children:C&&o.jsx("button",{type:"button",className:"aw-case-delete",onClick:A=>{A.stopPropagation(),g==null||g(x)},disabled:u,title:v("agentWorkspace.deleteFeedbackCase"),"aria-label":v("agentWorkspace.deleteFeedbackCase"),children:o.jsx(nLt,{})})})]},x.id)})]})}function rLt({group:e,agents:t,cases:n,onChange:i,onRun:r}){const{t:s}=Te("ui"),[a,l]=p.useState("config"),c=e.agentIds.map(h=>t.find(m=>m.id===h)).filter(h=>!!h),u=["回答质量","事实准确性","工具调用","响应效率"];p.useEffect(()=>l("config"),[e.id]);const d=h=>{i({...e,agentIds:e.agentIds.includes(h)?e.agentIds.filter(m=>m!==h):[...e.agentIds,h]})},f=h=>{i({...e,metrics:e.metrics.includes(h)?e.metrics.filter(m=>m!==h):[...e.metrics,h]})};return o.jsxs("main",{className:"aw-main",children:[o.jsxs("div",{className:"aw-eval-head",children:[o.jsxs("div",{children:[o.jsxs("div",{className:"aw-agent-title-row",children:[o.jsx("h2",{children:Ww(e.name,s)}),o.jsx("span",{children:s("agentWorkspace.evaluationGroup")})]}),o.jsx("p",{children:s("agentWorkspace.evaluationGroupStats",{agents:c.length,caseSet:Ww(e.caseSet,s),runs:e.history.length})})]}),o.jsxs("button",{type:"button",className:"aw-run",onClick:()=>r(e),disabled:!0,children:[o.jsx(x7e,{"aria-hidden":!0}),s("agentWorkspace.startEvaluation")]})]}),o.jsxs("nav",{className:"aw-agent-tabs","aria-label":s("agentWorkspace.evaluationGroupDetails"),children:[o.jsx("button",{type:"button",className:a==="config"?"is-active":"","aria-pressed":a==="config",onClick:()=>l("config"),disabled:!0,children:s("agentWorkspace.evaluationConfig")}),o.jsx("button",{type:"button",className:a==="history"?"is-active":"","aria-pressed":a==="history",onClick:()=>l("history"),disabled:!0,children:s("agentWorkspace.historyResults")})]}),o.jsx("div",{className:"aw-content",children:a==="config"?o.jsxs("div",{className:"aw-eval-setup",children:[o.jsxs("section",{className:"aw-eval-block",children:[o.jsxs("div",{className:"aw-card-head",children:[o.jsx("strong",{children:s("agentWorkspace.participatingAgents")}),o.jsx("span",{children:s("agentWorkspace.selectedCount",{count:c.length})})]}),o.jsx("div",{className:"aw-eval-agent-grid",children:t.map(h=>o.jsxs("label",{children:[o.jsx("input",{type:"checkbox",checked:e.agentIds.includes(h.id),onChange:()=>d(h.id)}),o.jsxs("span",{children:[o.jsx("strong",{children:h.label}),o.jsx("small",{children:h.remote?s("agentWorkspace.remote"):s("agentWorkspace.local")})]})]},h.id))})]}),o.jsxs("div",{className:"aw-eval-setting-grid",children:[o.jsxs("section",{className:"aw-eval-block",children:[o.jsx("div",{className:"aw-card-head",children:o.jsx("strong",{children:s("agentWorkspace.evaluationResources")})}),o.jsxs("div",{className:"aw-eval-fields",children:[o.jsxs("label",{children:[o.jsx("span",{children:s("agentWorkspace.evaluationSet")}),o.jsxs("select",{value:e.caseSet,onChange:h=>i({...e,caseSet:h.currentTarget.value}),children:[o.jsx("option",{value:"核心回归集",children:s("agentWorkspace.evaluationDefaults.coreSet")}),o.jsx("option",{value:"安全边界集",children:s("agentWorkspace.evaluationDefaults.safetySet")}),o.jsx("option",{value:"工具调用集",children:s("agentWorkspace.evaluationDefaults.toolSet")})]}),o.jsx("small",{children:s("agentWorkspace.caseCount",{count:n.length})})]}),o.jsxs("label",{children:[o.jsx("span",{children:s("agentWorkspace.evaluator")}),o.jsxs("select",{value:e.evaluator,onChange:h=>i({...e,evaluator:h.currentTarget.value}),children:[o.jsx("option",{value:"综合质量评估器",children:s("agentWorkspace.evaluationDefaults.qualityEvaluator")}),o.jsx("option",{value:"事实一致性评估器",children:s("agentWorkspace.evaluationDefaults.factualEvaluator")}),o.jsx("option",{value:"工具调用评估器",children:s("agentWorkspace.evaluationDefaults.toolEvaluator")})]})]}),o.jsxs("label",{children:[o.jsx("span",{children:s("agentWorkspace.concurrency")}),o.jsxs("select",{value:e.concurrency,onChange:h=>i({...e,concurrency:h.currentTarget.value}),children:[o.jsx("option",{value:"2",children:"2"}),o.jsx("option",{value:"4",children:"4"}),o.jsx("option",{value:"8",children:"8"})]})]})]})]}),o.jsxs("section",{className:"aw-eval-block",children:[o.jsxs("div",{className:"aw-card-head",children:[o.jsx("strong",{children:s("agentWorkspace.evaluationMetrics")}),o.jsx("span",{children:s("agentWorkspace.selectedMetricCount",{count:e.metrics.length})})]}),o.jsx("div",{className:"aw-metric-list",children:u.map(h=>o.jsxs("label",{children:[o.jsx("input",{type:"checkbox",checked:e.metrics.includes(h),onChange:()=>f(h)}),o.jsx("span",{children:Ww(h,s)})]},h))})]})]})]}):o.jsxs("section",{className:"aw-eval-history",children:[o.jsx("div",{className:"aw-section-head",children:o.jsxs("div",{children:[o.jsx("h3",{children:s("agentWorkspace.historyResults")}),o.jsx("p",{children:s("agentWorkspace.historyDescription")})]})}),e.history.length===0?o.jsxs("div",{className:"aw-results-empty",children:[o.jsx("strong",{children:s("agentWorkspace.noHistory")}),o.jsx("span",{children:s("agentWorkspace.noHistoryDescription")})]}):o.jsx("div",{className:"aw-history-list",children:e.history.map((h,m)=>o.jsxs("button",{type:"button",children:[o.jsxs("span",{children:[o.jsx("strong",{children:s("agentWorkspace.evaluationRun",{index:e.history.length-m})}),o.jsx("small",{children:s("agentWorkspace.evaluationRunMeta",{time:Ww(h.createdAt,s),agents:c.length})})]}),o.jsxs("span",{className:"aw-history-score",children:[o.jsx("strong",{children:h.score}),o.jsx("small",{children:s("agentWorkspace.overallScore")})]}),o.jsxs("span",{className:"aw-complete",children:[o.jsx(Vu,{}),s("agentWorkspace.completed")]}),o.jsx(bO,{"aria-hidden":!0})]},h.id))})]})})]})}const sLt=5e3,aLt=4;let rL=0;const wte=[];function Ote(e){return e instanceof Error&&e.name==="AbortError"}function oLt(e){return e instanceof Error&&e.name==="TimeoutError"}function lLt(e){return oLt(e)||e instanceof i7&&[500,502,503,504].includes(e.status)}function cLt(e,t){return t!=null&&t.aborted?Promise.reject(t.reason??new DOMException("Request aborted","AbortError")):new Promise((n,i)=>{const r=()=>{globalThis.clearTimeout(s),i((t==null?void 0:t.reason)??new DOMException("Request aborted","AbortError"))},s=globalThis.setTimeout(()=>{t==null||t.removeEventListener("abort",r),n()},e);t==null||t.addEventListener("abort",r,{once:!0})})}async function uLt(e={},t={}){const n=t.request??_x,i=t.wait??cLt;try{return await n(e)}catch(r){if(!lLt(r))throw r;return await i(sLt,e.signal),n(e)}}async function wje(e){var t;rL>=aLt&&await new Promise(n=>wte.push(n)),rL+=1;try{return await e()}finally{rL-=1,(t=wte.shift())==null||t()}}async function dLt(e,t){await Promise.allSettled(e.map(n=>wje(()=>t(n))))}const fLt="/web/sandbox/sessions",Ste="/web/sandbox/codex-project-handoff",kte=3e4,sL=33e4,hLt=6e4,pLt=6e5,aw=15e3,If=6e4,mLt=33e4,Ete=3e4,gLt=60*60,Cte=40;function FI(e){const t=e.trim().toLowerCase();return["ready","running","wakeable"].includes(t)?"ready":t}function XQ(e){switch(e.trim().toLowerCase()){case"ready":return V("sandbox.status.ready");case"wakeable":return V("sandbox.status.wakeable");case"creating":return V("sandbox.status.creating");case"starting":case"initializing":return V("sandbox.status.starting");case"pending":return V("sandbox.status.pending");case"running":return V("sandbox.status.running");case"failed":case"error":return V("sandbox.status.failed");case"stopped":return V("sandbox.status.stopped");case"expired":return V("sandbox.status.expired");case"deleting":return V("sandbox.status.deleting");case"deleted":return V("sandbox.status.deleted");default:return V("sandbox.status.unknown")}}function Jr(e){const t=Hu(e);return t.has("Accept")||t.set("Accept","application/json"),t}class BI extends Error{constructor(n,i={}){var r;super(n);ki(this,"code");ki(this,"retryable");ki(this,"publicMessage");ki(this,"httpStatus");this.name="SandboxServiceError",this.code=i.code??"",this.retryable=i.retryable===!0,this.publicMessage=((r=i.publicMessage)==null?void 0:r.trim())||n,this.httpStatus=i.httpStatus}}function Tte(e){return e instanceof BI?e.publicMessage:e instanceof Error&&e.name==="TimeoutError"?V("sandbox.developmentTimeout"):e instanceof TypeError?V("sandbox.developmentDisconnected"):V("sandbox.developmentFailed")}async function es(e,t){const n=await e.text().catch(()=>"");let i={};try{i=JSON.parse(n)}catch{const d=V("common.fallbackWithHttpStatus",{fallback:t,status:e.status});return new Error(n?V("common.fallbackWithDetail",{fallback:d,detail:n}):d)}const r=i.detail,s=r&&typeof r=="object"?r:i,a=r&&typeof r=="object"&&"message"in r?r.message:r??i.error??i.message,l=typeof a=="string"?a:a==null?"":JSON.stringify(a),c=V("common.fallbackWithHttpStatus",{fallback:t,status:e.status}),u=l?V("common.fallbackWithDetail",{fallback:c,detail:l}):c;return new BI(u,{code:typeof s.code=="string"?s.code:"",retryable:s.retryable===!0,publicMessage:l||c,httpStatus:e.status})}async function Ate(e,t){const n=await e.text().catch(()=>"");try{return JSON.parse(n)}catch{throw new Error(V("sandbox.invalidStudioResponse",{fallback:t}))}}function og(e,t="codex"){if(!e.sessionId||!e.status)throw new Error(V("sandbox.invalidSession"));return{resourceType:"session",id:e.sessionId,toolName:t,userSessionId:e.userSessionId??"",displayName:e.displayName??"",status:e.status,createdAt:e.createdAt??"",expireAt:e.expireAt??"",persistent:e.persistent!==!1,toolType:e.toolType??"",intelligentDevelopment:e.toolName==="intelligent-development",createdBy:e.createdBy??"",region:e.region??"",isMine:e.isMine===!0,threadId:e.threadId??"",cwd:e.cwd??"",workspaceLocked:e.workspaceLocked===!0,busy:e.busy===!0,...typeof e.model=="string"?{model:e.model}:{},permissions:UI(e.permissions),...e.conversation===void 0?{}:{restoredConversation:Eg(e.conversation)}}}function _te(e,t="codex"){if(!e.snapshotId||!e.status)throw new Error(V("sandbox.invalidSnapshot"));return{resourceType:"snapshot",id:e.snapshotId,snapshotId:e.snapshotId,sourceSessionId:e.sessionId??"",toolName:t,userSessionId:e.userSessionId??"",displayName:e.displayName??"",status:e.status,snapshotStatus:e.snapshotStatus??"Unknown",reason:e.reason??"",createdAt:e.createdAt??"",createdBy:e.createdBy??"",region:e.region??"",isMine:e.isMine===!0}}function Nte(e,t){if((t==null?void 0:t.autoResumeSnapshots)===void 0)return e;const n=new URLSearchParams({autoResumeSnapshots:String(t.autoResumeSnapshots)});return`${e}?${n.toString()}`}const ow={approvalPolicy:"on-request",approvalsReviewer:"user",sandboxMode:"workspace-write",networkAccess:!1};function UI(e){if(!e||typeof e!="object")return{...ow};const t=e,n=t.approvalPolicy,i=t.approvalsReviewer,r=t.sandboxMode;return{approvalPolicy:n==="untrusted"||n==="on-request"||n==="never"?n:ow.approvalPolicy,approvalsReviewer:i==="user"||i==="auto_review"?i:ow.approvalsReviewer,sandboxMode:r==="read-only"||r==="workspace-write"||r==="danger-full-access"?r:ow.sandboxMode,networkAccess:typeof t.networkAccess=="boolean"?t.networkAccess:ow.networkAccess}}function jte(e){if(!e||typeof e!="object")throw new Error(V("sandbox.invalidSettings"));const t=e;return{threadId:typeof t.threadId=="string"?t.threadId:"",cwd:typeof t.cwd=="string"?t.cwd:"",...typeof t.model=="string"?{model:t.model}:{},workspaceLocked:t.workspaceLocked===!0,busy:t.busy===!0,permissions:UI(t.permissions)}}function _a(e){return e&&typeof e=="object"&&!Array.isArray(e)?e:void 0}function bLt(e){const t=_a(e);if(!(!t||typeof t.id!="string"||!t.id))return{id:t.id,displayName:typeof t.displayName=="string"?t.displayName:t.id,description:typeof t.description=="string"?t.description:"",isDefault:t.isDefault===!0}}function yLt(e){const t=_a(e);if(!(!t||typeof t.id!="string"||!t.id||typeof t.name!="string"||!t.name))return{id:t.id,name:t.name,description:typeof t.description=="string"?t.description:""}}function Oje(e){const t=_a(e);if(!(!t||typeof t.id!="string"||!t.id))return{id:t.id,...typeof t.name=="string"&&t.name?{name:t.name}:{},preview:typeof t.preview=="string"?t.preview:"",cwd:typeof t.cwd=="string"?t.cwd:"",modelProvider:typeof t.modelProvider=="string"?t.modelProvider:"",createdAt:typeof t.createdAt=="number"&&Number.isFinite(t.createdAt)?t.createdAt:0,updatedAt:typeof t.updatedAt=="number"&&Number.isFinite(t.updatedAt)?t.updatedAt:0,status:typeof t.status=="string"?t.status:"unknown"}}function Eg(e){const t=_a(e),n=Oje(t==null?void 0:t.thread);if(!t||!n||typeof t.threadId!="string"||!Array.isArray(t.messages))throw new Error(V("sandbox.invalidThreadSnapshot"));const i=t.messages.flatMap(r=>{const s=_a(r);if(!s||typeof s.id!="string"||s.role!=="user"&&s.role!=="assistant"||typeof s.content!="string"||typeof s.timestamp!="number")return[];const a=Array.isArray(s.skillNames)?s.skillNames.filter(c=>typeof c=="string"&&!!c):[],l=Array.isArray(s.images)?s.images.flatMap(c=>{const u=_a(c);return!u||typeof u.mimeType!="string"||!u.mimeType.startsWith("image/")||typeof u.data!="string"||!u.data?[]:[{mimeType:u.mimeType,data:u.data,...typeof u.name=="string"&&u.name?{name:u.name}:{},...typeof u.alt=="string"&&u.alt?{alt:u.alt}:{}}]}):[];return[{id:s.id,role:s.role,content:s.content,timestamp:s.timestamp,...a.length?{skillNames:a}:{},...l.length?{images:l}:{}}]});return{thread:n,threadId:t.threadId,messages:i,...typeof t.model=="string"?{model:t.model}:{},...typeof t.cwd=="string"?{cwd:t.cwd}:{},workspaceLocked:t.workspaceLocked===!0,permissions:UI(t.permissions)}}function w8(e){if(!e||typeof e!="object")return;const t=e;if(![t.totalTokens,t.inputTokens,t.cachedInputTokens,t.outputTokens,t.reasoningOutputTokens].some(i=>typeof i!="number"||!Number.isFinite(i)||i<0))return{totalTokens:Math.trunc(t.totalTokens),inputTokens:Math.trunc(t.inputTokens),cachedInputTokens:Math.trunc(t.cachedInputTokens),outputTokens:Math.trunc(t.outputTokens),reasoningOutputTokens:Math.trunc(t.reasoningOutputTokens)}}function vLt(e){const t=w8(e.usage);if(!t||typeof e.turnId!="string")return;const n=w8(e.threadTotal),i=e.modelContextWindow;return{turnId:e.turnId,usage:t,...n?{threadTotal:n}:{},...typeof i=="number"&&Number.isFinite(i)&&i>=0?{modelContextWindow:Math.trunc(i)}:{}}}function xLt(e){return typeof e.id!="string"||e.kind!=="command"&&e.kind!=="file"||typeof e.method!="string"?null:{id:e.id,kind:e.kind,method:e.method,...typeof e.reason=="string"?{reason:e.reason}:{},...typeof e.command=="string"?{command:e.command}:{},...typeof e.cwd=="string"?{cwd:e.cwd}:{},...typeof e.grantRoot=="string"?{grantRoot:e.grantRoot}:{},...e.changes!==void 0?{changes:e.changes}:{},...typeof e.threadId=="string"?{threadId:e.threadId}:{},...typeof e.turnId=="string"?{turnId:e.turnId}:{},...typeof e.itemId=="string"?{itemId:e.itemId}:{}}}async function wLt(e,t={}){if(!e.body)throw new Error(V("sandbox.emptyConversationResponse"));const n=e.body.getReader(),i=new TextDecoder;let r="",s="";const a=[],l=new Map;let c,u;function d(){var b;const g=c?[...a,c]:a;(b=t.onBlocks)==null||b.call(t,g.map(v=>({...v})))}function f(g){s+=g;const b=a[a.length-1],v=a.length-1,y=[...l.values()].includes(v);(b==null?void 0:b.kind)==="text"&&!y?b.text+=g:a.push({kind:"text",text:g}),d()}function h(g){if(typeof g.id!="string"||g.kind!=="thinking"&&g.kind!=="commentary"&&g.kind!=="tool"||g.status!=="running"&&g.status!=="done")return;const b=g.status==="done";let v;if(g.kind==="thinking"){if(typeof g.text!="string"||!g.text)return;v={kind:"thinking",text:g.text,done:b}}else if(g.kind==="commentary"){if(typeof g.text!="string"||!g.text)return;v={kind:"text",text:g.text}}else{if(typeof g.name!="string"||!g.name)return;v={kind:"tool",name:g.name,args:g.args,response:g.response,done:b}}const y=l.get(g.id);y===void 0?(l.set(g.id,a.length),a.push(v)):a[y]=v,d()}function m(g){var x,O,w;let b="message";const v=[];for(const k of g.split(/\r?\n/))k.startsWith("event:")&&(b=k.slice(6).trim()),k.startsWith("data:")&&v.push(k.slice(5).trimStart());if(v.length===0)return;let y;try{y=JSON.parse(v.join(` -`))}catch{throw new Error(V("sandbox.invalidConversationResponse"))}if(b==="error"){const k=typeof y.message=="string"&&y.message?y.message:V("sandbox.conversationFailed");throw new BI(k,{code:typeof y.code=="string"?y.code:"",retryable:y.retryable===!0,publicMessage:k})}if(b==="progress"&&typeof y.text=="string"&&y.text&&(c={kind:"progress",text:y.text},d()),b==="activity"&&h(y),b==="development.source_ready"||b==="development.succeeded"){const k=_a(y.payload),S=_a(k==null?void 0:k.delivery),E=b==="development.succeeded";if(S&&typeof S.sessionId=="string"&&typeof S.artifactSha256=="string"&&typeof S.validationReportSha256=="string"&&typeof S.agentName=="string"&&typeof S.entryPoint=="string"&&typeof S.fileCount=="number"&&typeof S.artifactSize=="number"&&typeof S.validatedAt=="string"&&S.deployable===!0&&S.verified===E&&typeof S.validationSummary=="string"&&Array.isArray(S.gateSummary)&&S.gateSummary.every(C=>typeof C=="string")){const C={kind:"delivery",value:{sessionId:S.sessionId,...typeof S.projectId=="string"&&typeof S.versionId=="string"?{projectId:S.projectId,versionId:S.versionId,...S.parentVersionId===null||typeof S.parentVersionId=="string"?{parentVersionId:S.parentVersionId}:{}}:{},artifactSha256:S.artifactSha256,validationReportSha256:S.validationReportSha256,agentName:S.agentName,entryPoint:S.entryPoint,fileCount:S.fileCount,artifactSize:S.artifactSize,validatedAt:S.validatedAt,gateSummary:S.gateSummary,deployable:S.deployable,verified:S.verified,validationSummary:S.validationSummary}},N=a.findIndex(_=>_.kind==="delivery"&&_.value.sessionId===S.sessionId&&_.value.artifactSha256===S.artifactSha256&&_.value.validationReportSha256===S.validationReportSha256);N===-1?a.push(C):a[N]=C,d()}}if(b==="approval"){const k=xLt(y);k&&((x=t.onApproval)==null||x.call(t,k))}if(b==="usage"){const k=vLt(y);k&&(u=k,(O=t.onUsage)==null||O.call(t,k))}b==="approval_resolved"&&typeof y.approvalId=="string"&&((w=t.onApprovalResolved)==null||w.call(t,y.approvalId)),b==="delta"&&typeof y.text=="string"&&f(y.text),b==="done"&&!s&&typeof y.text=="string"&&f(y.text),b==="done"&&c&&(c=void 0,d())}for(;;){const{done:g,value:b}=await n.read();r+=i.decode(b,{stream:!g});const v=r.split(/\r?\n\r?\n/);if(r=v.pop()??"",v.forEach(m),g)break}if(r.trim()&&m(r),c&&(c=void 0,d()),a.length===0)throw new Error(V("sandbox.emptyReply"));return{text:s,blocks:a,...u?{usage:u}:{}}}async function $l(e,t,n,{method:i="GET",body:r,options:s={},fallback:a}){if(!t)throw new Error(V("sandbox.missingSession"));const l=await An(`${e}/${encodeURIComponent(t)}/${n}`,{method:i,headers:Jr(r===void 0?void 0:{"Content-Type":"application/json"}),...r===void 0?{}:{body:JSON.stringify(r)},signal:s.signal},If);if(!l.ok)throw await es(l,a);return l.json()}function Sje(e,t={}){return{async listSessions(n={}){const i=await An(Nte(e,n),{method:"GET",headers:Jr(),signal:n.signal},kte);if(!i.ok)throw await es(i,V("sandbox.listCodexFailed"));const r=await i.json();if(!Array.isArray(r.sessions))throw new Error(V("sandbox.invalidSessionList"));if(r.snapshots!==void 0&&!Array.isArray(r.snapshots))throw new Error(V("sandbox.invalidSnapshotList"));return[...r.sessions.map(s=>og(s)),...(r.snapshots??[]).map(s=>_te(s))]},async startSession(n={}){var r,s;const i=await An(e,{method:"POST",headers:Jr({"Content-Type":"application/json"}),body:JSON.stringify({displayName:((r=n.displayName)==null?void 0:r.trim())??"",...(s=n.modelId)!=null&&s.trim()?{modelId:n.modelId.trim()}:{},...t.textOnly&&n.projectId?{projectId:n.projectId,...n.baseVersionId?{baseVersionId:n.baseVersionId}:{}}:{},...t.textOnly?{}:{persistent:n.persistent??!0},...n.diskGb!==void 0?{diskGb:n.diskGb}:{}}),signal:n.signal},sL);if(!i.ok)throw await es(i,V("sandbox.startFailed"));return og(await i.json())},async listAgentSessions(n,i={}){const r=await An(Nte(`/web/${n}/sessions`,i),{method:"GET",headers:Jr(),signal:i.signal},kte);if(!r.ok)throw await es(r,V("sandbox.listAgentFailed",{kind:n}));const s=await r.json();if(!Array.isArray(s.sessions))throw new Error(V("sandbox.invalidKindSessionList",{kind:n}));if(s.snapshots!==void 0&&!Array.isArray(s.snapshots))throw new Error(V("sandbox.invalidKindSnapshotList",{kind:n}));return[...s.sessions.map(a=>og(a,n)),...(s.snapshots??[]).map(a=>_te(a,n))]},async startAgentSession(n,i={}){var s;const r=await An(`/web/${n}/sessions`,{method:"POST",headers:Jr({"Content-Type":"application/json"}),body:JSON.stringify({displayName:((s=i.displayName)==null?void 0:s.trim())??"",persistent:i.persistent??!0,...i.diskGb!==void 0?{diskGb:i.diskGb}:{}}),signal:i.signal},sL);if(!r.ok)throw await es(r,V("sandbox.createAgentFailed",{kind:n}));return og(await r.json(),n)},async openAgentSession(n,i,r={}){if(!i)throw new Error(V("sandbox.missingSessionToOpen"));const s=await An(`/web/${n}/sessions/${encodeURIComponent(i)}/open`,{method:"POST",headers:Jr(),signal:r.signal},If);if(!s.ok)throw await es(s,V("sandbox.openAgentFailed",{kind:n}));const a=await s.json();if(typeof a.webuiUrl!="string"||!a.webuiUrl.startsWith("/"))throw new Error(V("sandbox.invalidAgentHomeUrl",{kind:n}));return{session:og(a,n),kind:n,webuiUrl:Uo(a.webuiUrl)}},async launchAgentTerminal(n,i,r={}){if(!i)throw new Error(V("sandbox.missingSessionForTerminal"));const s=await An(`/web/${n}/sessions/${encodeURIComponent(i)}/terminal`,{method:"POST",headers:Jr(),signal:r.signal},If);if(!s.ok)throw await es(s,V("sandbox.openTerminalFailed",{kind:n}));const a=await s.json();return{url:kje(a.url,`${n} Terminal`),...typeof a.shellSessionId=="string"?{shellSessionId:a.shellSessionId}:{}}},async deleteAgentSession(n,i,r={}){if(!i)return;const s=await An(`/web/${n}/sessions/${encodeURIComponent(i)}`,{method:"DELETE",headers:Jr(),signal:r.signal},aw);if(!s.ok&&s.status!==404)throw await es(s,V("sandbox.deleteAgentFailed",{kind:n}))},async resumeSnapshot(n,i,r={}){if(!i)throw new Error(V("sandbox.missingSnapshot"));const s=n==="codex"?"/web/sandbox":`/web/${n}`,a=await An(`${s}/snapshots/${encodeURIComponent(i)}/resume`,{method:"POST",headers:Jr(),signal:r.signal},sL);if(!a.ok)throw await es(a,V("sandbox.resumeSnapshotFailed"));return og(await a.json(),n)},async deleteSnapshot(n,i,r={}){if(!i)return;const s=n==="codex"?"/web/sandbox":`/web/${n}`,a=await An(`${s}/snapshots/${encodeURIComponent(i)}`,{method:"DELETE",headers:Jr(),signal:r.signal},aw);if(!a.ok&&a.status!==404)throw await es(a,V("sandbox.deleteSnapshotFailed"))},async connectSession(n,i={}){if(!n)throw new Error(V("sandbox.missingSessionToConnect"));const r=await An(`${e}/${encodeURIComponent(n)}/connect`,{method:"POST",headers:Jr({"Content-Type":"application/json"}),signal:i.signal},hLt);if(!r.ok)throw await es(r,V("sandbox.connectCodexFailed"));const s=og(await r.json());if(s.status.toLowerCase()!=="ready")throw new Error(V("sandbox.sessionNotReady",{status:s.status}));return s},async sendMessage(n,i={}){var s;if(!n.sessionId||!n.text.trim())throw new Error(V("sandbox.invalidMessage"));const r=await An(`${e}/${encodeURIComponent(n.sessionId)}/messages`,{method:"POST",headers:Jr({Accept:"text/event-stream","Content-Type":"application/json"}),body:JSON.stringify({message:n.text,...!t.textOnly&&((s=n.skillIds)!=null&&s.length)?{skillIds:n.skillIds}:{}}),signal:i.signal},t.messageTimeoutMs??pLt);if(!r.ok)throw await es(r,V("sandbox.conversationFailed"));return wLt(r,i)},async interruptSession(n,i={}){if(!n)return;const r=await An(`${e}/${encodeURIComponent(n)}/interrupt`,{method:"POST",headers:Jr(),signal:i.signal},t.interruptTimeoutMs??aw);if(!r.ok&&![404,409].includes(r.status))throw await es(r,V("sandbox.interruptFailed"))},async getStatus(n,i={}){const r=await $l(e,n,"status",{options:i,fallback:V("sandbox.getStatusFailed")}),s=jte(r),a=_a(r),l=w8(a==null?void 0:a.threadTotal),c=a==null?void 0:a.modelContextWindow;return{...s,...l?{threadTotal:l}:{},...typeof c=="number"&&Number.isFinite(c)&&c>=0?{modelContextWindow:Math.trunc(c)}:{}}},async getEndpoint(n,i={}){const r=_a(await $l(e,n,"endpoint",{options:i,fallback:V("sandbox.getEndpointFailed")}));if(typeof(r==null?void 0:r.endpoint)!="string"||!r.endpoint.trim())throw new Error(V("sandbox.invalidEndpoint"));return{endpoint:r.endpoint,sessionId:typeof r.sessionId=="string"?r.sessionId:n,...typeof r.expireAt=="string"?{expireAt:r.expireAt}:{}}},async createCodexProjectHandoffPairing(n={}){const i=await An(`${Ste}/pairings`,{method:"POST",headers:Jr({Accept:"application/json","Content-Type":"application/json"}),body:JSON.stringify({ttlSeconds:gLt}),signal:n.signal},Ete);if(!i.ok)throw await es(i,V("sandbox.createHandoffPairingFailed"));const r=_a(await Ate(i,V("sandbox.createHandoffPairingFailed")));if(typeof(r==null?void 0:r.pairingCode)!="string"||!r.pairingCode.trim()||typeof r.expireAt!="string"||!r.expireAt.trim())throw new Error(V("sandbox.invalidHandoffPairing"));const s=typeof r.studioUrl=="string"&&r.studioUrl.trim()?r.studioUrl.trim():window.location.origin;return{pairingCode:r.pairingCode,expireAt:r.expireAt,studioUrl:s}},async getCodexProjectHandoffStatus(n,i={}){const r=await An(`${Ste}/pairings/${encodeURIComponent(n)}`,{headers:Jr({Accept:"application/json"}),signal:i.signal},Ete);if(!r.ok)throw await es(r,V("sandbox.getHandoffStatusFailed"));const s=_a(await Ate(r,V("sandbox.getHandoffStatusFailed"))),a=new Set(["issued","creating","session-created","continuing","running","completed","failed"]);if(typeof(s==null?void 0:s.state)!="string"||!a.has(s.state)||typeof s.expireAt!="string"||!s.expireAt.trim())throw new Error(V("sandbox.invalidHandoffStatus"));return{state:s.state,expireAt:s.expireAt,...typeof s.projectName=="string"?{projectName:s.projectName}:{},...typeof s.agentName=="string"?{agentName:s.agentName}:{},...typeof s.sessionId=="string"?{sessionId:s.sessionId}:{},...typeof s.error=="string"?{error:s.error}:{},...s.failedStage==="creating-session"||s.failedStage==="uploading-project"||s.failedStage==="restoring-project"||s.failedStage==="continuing-task"?{failedStage:s.failedStage}:{}}},async listModels(n,i={}){const r=_a(await $l(e,n,"models",{options:i,fallback:V("sandbox.listModelsFailed")}));if(!Array.isArray(r==null?void 0:r.models))throw new Error(V("sandbox.invalidModelList"));return r.models.flatMap(s=>{const a=bLt(s);return a?[a]:[]})},async setModel(n,i,r={}){const s=_a(await $l(e,n,"model",{method:"PUT",body:{model:i},options:r,fallback:V("sandbox.setModelFailed")}));if(typeof(s==null?void 0:s.model)!="string"||!s.model)throw new Error(V("sandbox.invalidModel"));return s.model},async listSkills(n,i=!1,r={}){const a=_a(await $l(e,n,`skills${i?"?force_reload=true":""}`,{options:r,fallback:V("sandbox.listSkillsFailed")}));if(!Array.isArray(a==null?void 0:a.skills))throw new Error(V("sandbox.invalidSkillList"));return a.skills.flatMap(l=>{const c=yLt(l);return c?[c]:[]})},async listThreads(n,i={},r={}){const s=new URLSearchParams;i.cursor&&s.set("cursor",i.cursor),i.search&&s.set("search",i.search),i.archived&&s.set("archived","true");const a=s.size?`?${s}`:"",l=_a(await $l(e,n,`threads${a}`,{options:r,fallback:V("sandbox.listThreadsFailed")}));if(!Array.isArray(l==null?void 0:l.threads))throw new Error(V("sandbox.invalidThreadList"));return{threads:l.threads.flatMap(c=>{const u=Oje(c);return u?[u]:[]}),...typeof l.nextCursor=="string"?{nextCursor:l.nextCursor}:{}}},async newThread(n,i={}){return Eg(await $l(e,n,"threads/new",{method:"POST",options:i,fallback:V("sandbox.createThreadFailed")}))},async readThread(n,i,r={}){if(!i)throw new Error(V("sandbox.missingThread"));return Eg(await $l(e,n,`threads/${encodeURIComponent(i)}`,{options:r,fallback:V("sandbox.readThreadFailed")}))},async resumeThread(n,i,r={}){return Eg(await $l(e,n,"threads/resume",{method:"POST",body:{threadId:i},options:r,fallback:V("sandbox.resumeThreadFailed")}))},async forkThread(n,i={}){return Eg(await $l(e,n,"threads/fork",{method:"POST",options:i,fallback:V("sandbox.forkThreadFailed")}))},async archiveThread(n,i,r={}){const s=_a(await $l(e,n,"threads/archive",{method:"POST",body:{threadId:i},options:r,fallback:V("sandbox.archiveThreadFailed")}));if((s==null?void 0:s.archived)!==!0)throw new Error(V("sandbox.invalidArchiveResult"));return{archived:!0,...s.thread?{snapshot:Eg(s)}:{}}},async deleteThread(n,i,r={}){const s=_a(await $l(e,n,"threads/delete",{method:"POST",body:{threadId:i},options:r,fallback:V("sandbox.deleteThreadFailed")}));if((s==null?void 0:s.deleted)!==!0)throw new Error(V("sandbox.invalidDeleteResult"));return{deleted:!0,...s.thread?{snapshot:Eg(s)}:{}}},async compactThread(n,i={}){await $l(e,n,"threads/compact",{method:"POST",options:i,fallback:V("sandbox.compactThreadFailed")})},async getSettings(n,i={}){const r=await An(`${e}/${encodeURIComponent(n)}/settings`,{method:"GET",headers:Jr(),signal:i.signal},If);if(!r.ok)throw await es(r,V("sandbox.getSettingsFailed"));return jte(await r.json())},async updatePermissions(n,i,r={}){const s=await An(`${e}/${encodeURIComponent(n)}/permissions`,{method:"PUT",headers:Jr({"Content-Type":"application/json"}),body:JSON.stringify(i),signal:r.signal},If);if(!s.ok)throw await es(s,V("sandbox.updatePermissionsFailed"));const a=await s.json();return UI(a.permissions)},async updateWorkspace(n,i,r={}){const s=await An(`${e}/${encodeURIComponent(n)}/workspace`,{method:"PUT",headers:Jr({"Content-Type":"application/json"}),body:JSON.stringify({cwd:i}),signal:r.signal},If);if(!s.ok)throw await es(s,V("sandbox.updateWorkspaceFailed"));const a=await s.json();if(typeof a.cwd!="string"||!a.cwd)throw new Error(V("sandbox.invalidWorkingDirectory"));return a.cwd},async listDirectories(n,i,r={}){const s=new URLSearchParams({path:i}),a=await An(`${e}/${encodeURIComponent(n)}/directories?${s}`,{method:"GET",headers:Jr(),signal:r.signal},If);if(!a.ok)throw await es(a,V("sandbox.listDirectoriesFailed"));const l=await a.json();if(typeof l.path!="string"||!Array.isArray(l.directories)||l.directories.some(c=>!c||typeof c.name!="string"||typeof c.path!="string"))throw new Error(V("sandbox.invalidDirectoryList"));return{path:l.path,...typeof l.parent=="string"?{parent:l.parent}:{},directories:l.directories}},async resolveApproval(n,i,r,s={}){const a=await An(`${e}/${encodeURIComponent(n)}/approvals/${encodeURIComponent(i)}`,{method:"POST",headers:Jr({"Content-Type":"application/json"}),body:JSON.stringify({decision:r}),signal:s.signal},If);if(!a.ok)throw await es(a,V("sandbox.resolveApprovalFailed"))},async launchTerminal(n,i={}){return Rte(e,n,"terminal",i)},async launchBrowser(n,i={}){return Rte(e,n,"browser",i)},async uploadFile(n,i,r={}){const s=new FormData;s.set("file",i,i.name);const a=await An(`${e}/${encodeURIComponent(n)}/files`,{method:"POST",headers:Jr(),body:s,signal:r.signal},mLt);if(!a.ok)throw await es(a,V("sandbox.uploadFileFailed"));const l=await a.json();if(typeof l.id!="string"||typeof l.path!="string"||typeof l.name!="string"||typeof l.mimeType!="string"||typeof l.sizeBytes!="number")throw new Error(V("sandbox.invalidUploadResult"));return l},async closeSession(n,i={}){if(!n)return;const r=await An(`${e}/${encodeURIComponent(n)}/disconnect`,{method:"POST",headers:Jr(),signal:i.signal},aw);if(!r.ok&&r.status!==404)throw await es(r,V("sandbox.disconnectCodexFailed"))},async deleteSession(n,i={}){if(!n)return;const r=await An(`${e}/${encodeURIComponent(n)}`,{method:"DELETE",headers:Jr(),signal:i.signal},aw);if(!r.ok&&r.status!==404)throw await es(r,V("sandbox.deleteCodexFailed"))}}}const dr=Sje(fLt),fp=Sje("/web/intelligent-development/sessions",{textOnly:!0,messageTimeoutMs:36e5,interruptTimeoutMs:45e3});async function Rte(e,t,n,i){const r=await An(`${e}/${encodeURIComponent(t)}/${n}`,{method:"POST",headers:Jr(),signal:i.signal},If);if(!r.ok)throw await es(r,V(n==="terminal"?"sandbox.openSandboxTerminalFailed":"sandbox.openSandboxBrowserFailed"));const s=await r.json();return{url:kje(s.url,V("sandbox.toolLabel")),...typeof s.shellSessionId=="string"?{shellSessionId:s.shellSessionId}:{}}}function kje(e,t){if(typeof e!="string")throw new Error(V("sandbox.invalidToolUrl",{label:t}));if(e.startsWith("/"))return Uo(e);let n;try{n=new URL(e)}catch{throw new Error(V("sandbox.invalidToolUrl",{label:t}))}const i=n.protocol==="http:"&&window.location.protocol==="http:";if(n.protocol!=="https:"&&!i)throw new Error(V("sandbox.unsafeToolUrl",{label:t}));return n.toString()}function Rg(e,t,n){const i=e instanceof Error?`${e.name}: ${e.message}`:String(e||V("common.unknownError"));return[V("requestError.actionFailed",{action:t}),V("requestError.detail",{detail:i}),n?V("requestError.request",{request:n}):""].filter(Boolean).join(` -`)}function Yf({className:e="icon"}){return o.jsxs("svg",{className:`${e} sidebar-agent-face`,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("rect",{x:"4.25",y:"5.25",width:"15.5",height:"13.5",rx:"4.75"}),o.jsx("path",{className:"sidebar-agent-face__eye",d:"M8.5 10.7v2"}),o.jsx("path",{className:"sidebar-agent-face__eye",d:"M15.5 10.7v2"})]})}function OLt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M8.4 18.4H7.2a4.2 4.2 0 0 1-.65-8.35A5.7 5.7 0 0 1 17.3 8.2a4.6 4.6 0 0 1-.4 9.2h-3.2"}),o.jsx("path",{d:"m7.8 12.3 2 2-2 2M12.2 16.3h3.2"})]})}function SLt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M18.9 6.25A8.4 8.4 0 1 0 19.6 16"}),o.jsx("path",{d:"M19 6.2c.1 2.1-.65 3.75-2.25 4.95-1.2.9-2.75 1.25-4.2.9"}),o.jsx("circle",{cx:"10.6",cy:"12.8",r:"2.45"}),o.jsx("path",{d:"m5.25 18.6 3.65-3.9M14.8 17.9c1.9-.45 3.55-1.65 4.65-3.35"})]})}function kLt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M6.2 20c.55-2.15.75-4.1.75-6.7V9.8A5.35 5.35 0 0 1 12.35 4c3.35 0 5.65 2.35 5.65 5.65v4.6c0 2.35.35 4.25 1.15 5.75"}),o.jsx("path",{d:"M8.05 10.2c1.35-.6 2.2-1.65 2.55-3.15.45 1.55 1.35 2.55 2.7 3.05.1-1 .4-1.95.85-2.75.45 1.25 1.2 2.2 2.15 2.75"}),o.jsx("path",{d:"M9.3 12.65h.01M14.9 12.65h.01M10.8 15.55c.8.5 1.65.5 2.45 0"}),o.jsx("path",{d:"M8.45 19.85c.95-.85 1.45-1.95 1.5-3.25M15.1 16.65c.05 1.2.55 2.3 1.55 3.2"})]})}function ELt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5.2 17.2V8.1a3 3 0 0 1 3-3h7.6a3 3 0 0 1 3 3v9.1"}),o.jsx("path",{d:"M7.4 17.2h9.2M9 19.9h6"}),o.jsx("path",{d:"M9.1 9.25h5.8M9.1 12h3.1"}),o.jsx("path",{d:"m14.1 12.4 2 2.1M16.2 12.4l-2.1 2.1"})]})}function wk({kind:e,...t}){return e==="codex"?o.jsx(OLt,{...t}):e==="deepseek-harness"?o.jsx(ELt,{...t}):e==="openclaw"?o.jsx(SLt,{...t}):o.jsx(kLt,{...t})}const CLt=["general","codex","deepseek-harness","openclaw","hermes"],TLt=24,ALt=3e4,_Lt=7e3,NLt=2e4,jLt=6,RLt=2,ILt=250,Vp=new Map,yv=new Map,PLt=new Set;function lg(e){const t=e.runtime;return t?`${t.region}:${t.runtimeId}:${t.currentVersion??""}`:""}function Ite(e,t){const n=e instanceof Error&&e.message.trim()?e.message.trim():t("myAgents.compatibility.unknownError");return{status:e instanceof Ds&&e.unsupported?"unsupported":"error",message:n}}function b2(e){if(!e){Vp.clear(),yv.clear(),_4();return}const t=new Set(e);if(t.size!==0){for(const[n,i]of yv)i.page.runtimes.some(r=>t.has(r.runtimeId))&&yv.delete(n);for(const n of t)_4(n);Vp.clear()}}function DLt(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8 3.25v9.5M3.25 8h9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})})}function MLt(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8.313 3.646a.5.5 0 0 1 .707 0l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.707-.708L11.46 8.5H3.333a.5.5 0 0 1 0-1h8.127L8.313 4.354a.5.5 0 0 1 0-.708Z",fill:"currentColor"})})}function LLt(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M2.75 5.25h8.75m0 0-2-2m2 2-2 2M13.25 10.75H4.5m0 0 2 2m-2-2 2-2",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}function $Lt({type:e}){return e==="general"?o.jsx(Yf,{}):o.jsx(wk,{kind:e})}function FLt(e,t=Date.now(),n){const i=Date.parse(e);if(!Number.isFinite(i)||i-t<6e4)return n("myAgents.expiringSoon");const r=Math.ceil((i-t)/6e4),s=Math.floor(r/60),a=r%60;return n("myAgents.sandboxRemaining",{hours:s,minutes:a})}function Pte(e,t){var n;return{id:e.runtimeId,name:e.name,description:((n=e.description)==null?void 0:n.trim())||t("common.noDescription"),createdAt:e.createdAt??"",specificationLabel:t("myAgents.creator"),specification:IEe(e.author),isMine:e.isMine,runtime:{runtimeId:e.runtimeId,region:e.region,currentVersion:e.currentVersion,canDelete:e.canDelete}}}function BLt(e,t){const n=FI(e.status);return{id:e.id,name:e.displayName||t("myAgents.namedAgent",{name:e.toolName}),description:t(`myAgents.sandboxStatus.${n}`,{defaultValue:t("myAgents.sandboxStatus.unknown")}),createdAt:e.createdAt,specificationLabel:t("myAgents.creator"),specification:IEe(e.createdBy),isMine:e.isMine,region:e.region,sandbox:e}}function ULt(e,t){var n,i;return{id:e.id,name:e.draft.name||t("agentSelector.unnamedAgent"),description:((n=e.draft.description)==null?void 0:n.trim())||t("common.noDescription"),createdAt:new Date(e.updatedAt).toISOString(),specificationLabel:t("myAgents.storageLocation"),specification:t("myAgents.currentBrowser"),isMine:!0,region:(i=e.deploymentTarget)==null?void 0:i.region,draft:e}}function QLt(e,t,n){if(!e.draft)return e;const i=e.draft.deploymentTarget;return i?t.find(r=>{var s;return((s=r.runtime)==null?void 0:s.runtimeId)===i.runtimeId&&r.runtime.region===i.region})??{id:i.runtimeId,appName:i.appName,name:i.name||e.name,description:e.description,createdAt:e.createdAt,specificationLabel:n("myAgents.region"),specification:i.region,isMine:!0,runtime:{runtimeId:i.runtimeId,region:i.region,currentVersion:i.currentVersion,canDelete:!1}}:null}function zLt(e,t){return e.trim()||Ji(t)}async function VLt(e,t,n,i,r,s){const a=`${e}:${t}:${n}`,l=yv.get(a);if(l&&l.expiresAt>Date.now())return i(l.page.runtimes.map(d=>Pte(d,r))),l.page.nextToken;l&&yv.delete(a);let c=Vp.get(a);c||(c=uLt({scope:e,region:t,pageSize:TLt,nextToken:n,signal:s}),Vp.set(a,c),c.then(()=>Vp.delete(a),()=>Vp.delete(a)));const u=await c;return yv.set(a,{page:u,expiresAt:Date.now()+ALt}),i(u.runtimes.map(d=>Pte(d,r))),u.nextToken}function HLt({agent:e,onUse:t,onViewDetails:n,onPrepareUpdate:i,compatibility:r,onRetryCompatibility:s,connecting:a,connectError:l,connected:c,deploymentTask:u,nowMs:d,onViewDeploymentTask:f,onEditDraft:h,onDeleteDraft:m}){var _,j,A,F;const{t:g,i18n:b}=Te("ui"),v=(_=e.sandbox)==null?void 0:_.status.toLowerCase(),y=((j=e.sandbox)==null?void 0:j.resourceType)==="snapshot",x=!!(e.runtime||v==="ready"||v==="wakeable"),O=(r==null?void 0:r.status)==="checking",w=(r==null?void 0:r.status)==="unsupported",k=(r==null?void 0:r.status)==="error",S=((A=e.sandbox)==null?void 0:A.resourceType)==="snapshot"?e.sandbox.sourceSessionId||e.sandbox.snapshotId:(F=e.sandbox)==null?void 0:F.id,E=()=>{if(e.draft){u?f==null||f(u):n==null||n(e);return}!x&&!e.sandbox||(u?f==null||f(u):n==null||n(e))},C=(e.draft||x||!!e.sandbox)&&!!(u?f:n),N=e.draft?u?g("myAgents.viewDeploymentProgress",{name:e.name}):g("myAgents.viewRuntimeDetails",{name:e.name}):u?g("myAgents.viewDeploymentProgress",{name:e.name}):g("myAgents.viewDetails",{name:e.name});return o.jsxs(RB,{className:a?"my-agent-card is-connecting":"my-agent-card",activateLabel:C?N:void 0,onActivate:C?E:void 0,onPointerEnter:()=>i==null?void 0:i(e),onFocusCapture:()=>i==null?void 0:i(e),footer:o.jsx(UOe,{className:"my-agent-meta",items:[{label:e.specificationLabel,value:e.specification,hideLabel:!0,className:"my-agent-region"},{label:g("myAgents.time"),value:KQ(e.createdAt,d,b.resolvedLanguage??b.language),hideLabel:!0,className:"my-agent-created-at"},...e.sandbox?[{label:g("myAgents.remainingTime"),value:e.sandbox.resourceType==="snapshot"||e.sandbox.persistent?g("myAgents.neverExpires"):FLt(e.sandbox.expireAt,d,g),className:`my-agent-expiry${e.sandbox.resourceType==="snapshot"||e.sandbox.persistent?"":" is-expiring"}`}]:[]]}),actions:e.draft?o.jsxs(o.Fragment,{children:[o.jsx(C6,{"aria-label":u?g("myAgents.viewDeploymentProgress",{name:e.name}):g("myAgents.editDraftNamed",{name:e.name}),onClick:()=>u?f==null?void 0:f(u):h==null?void 0:h(e.draft),children:g(u?"myAgents.viewProgress":"common.edit")}),o.jsx(C6,{tone:"danger","aria-label":g("myAgents.deleteDraftNamed",{name:e.name}),onClick:()=>m==null?void 0:m(e.draft),children:g("common.delete")})]}):k||w?o.jsxs(Ht,{type:"button",color:"primary",size:"sm",pill:!1,"aria-label":g("myAgents.recheckCompatibility",{name:e.name}),onClick:()=>s==null?void 0:s(e),children:[o.jsx(Kj,{}),g("common.retry")]}):o.jsx(T6,{className:c?"my-agent-use is-connected":"my-agent-use",disabled:!x||O||w||a||c,"aria-busy":a||void 0,label:c?g("myAgents.connectedNamed",{name:e.name}):y?g("myAgents.wakeAndChat",{name:e.name}):g("myAgents.chatWith",{name:e.name}),onClick:()=>void(t==null?void 0:t(e)),children:a?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"my-agent-use-spinner","aria-hidden":"true"}),o.jsx("span",{className:"sr-only",children:g(y?"myAgents.waking":"agentSelector.connecting")})]}):o.jsx(MLt,{})}),children:[o.jsx(IB,{leading:o.jsx(Xv,{seed:e.name}),title:e.name,subtitle:e.sandbox?o.jsx("span",{className:"my-agent-session-id",title:S,children:S}):void 0,status:e.draft?u?o.jsx("span",{className:"my-agent-deploying-badge",children:g("myAgents.deploying")}):o.jsx("span",{className:"my-agent-draft-badge",children:g("myAgents.draft")}):e.sandbox?o.jsx("span",{className:"my-agent-status-label","data-ready":FI(e.sandbox.status)==="ready"||void 0,children:e.description}):e.runtime&&u?o.jsx("span",{className:"my-agent-deploying-badge",children:g("myAgents.deploying")}):O?o.jsx(go,{content:r==null?void 0:r.message,contentClassName:"my-agent-compatibility-tooltip",maxWidth:360,align:"end",interactive:!0,preventUnintentionalClickToClose:!0,children:o.jsx("span",{className:"my-agent-compatibility-trigger",tabIndex:0,children:o.jsxs(ba,{className:"my-agent-compatibility-status",color:"secondary",variant:"soft",size:"sm",pill:!0,children:[o.jsx("span",{className:"my-agent-compatibility-spinner","aria-hidden":"true"}),o.jsx("span",{children:g("myAgents.checking")})]})})}):w?o.jsx(go,{content:r==null?void 0:r.message,contentClassName:"my-agent-compatibility-tooltip",maxWidth:360,align:"end",interactive:!0,preventUnintentionalClickToClose:!0,children:o.jsx("span",{className:"my-agent-compatibility-trigger",tabIndex:0,children:o.jsx(ba,{className:"my-agent-compatibility-status",color:"warning",variant:"soft",size:"sm",pill:!0,children:g("myAgents.chatUnsupported")})})}):k?o.jsx(go,{content:r==null?void 0:r.message,contentClassName:"my-agent-compatibility-tooltip",maxWidth:360,align:"end",interactive:!0,preventUnintentionalClickToClose:!0,children:o.jsx("span",{className:"my-agent-compatibility-trigger",tabIndex:0,children:o.jsx(ba,{className:"my-agent-compatibility-status",color:"danger",variant:"soft",size:"sm",pill:!0,children:g("myAgents.checkFailed")})})}):null}),l?o.jsx(go,{content:l,contentClassName:"my-agent-error-tooltip",maxWidth:360,interactive:!0,children:o.jsx("p",{className:"my-agent-wake-note",role:"alert",tabIndex:0,children:l})}):null,y&&a?o.jsx("p",{className:"my-agent-wake-note",role:"status",children:o.jsx(xn,{children:g("myAgents.wakingHint")})}):null,e.sandbox?null:o.jsx(PB,{children:e.description})]})}function qLt({cloudProvider:e,studioRegion:t,canCreateRuntimeAgents:n,canCreatePersonalAgents:i,canUpdate:r,runtimeScope:s,onCreateAgent:a,onOpenCodexProjectUpload:l,onUseAgent:c,onViewAgentDetails:u,onCreateSandboxAgent:d,onUseSandboxAgent:f,onViewSandboxAgentDetails:h,activeType:m,onActiveTypeChange:g,sandboxRefreshKey:b=0,connectedRuntimeId:v="",hiddenRuntimeIds:y=PLt,drafts:x=[],deploymentTasks:O=[],draftDeploymentTaskIds:w={},onViewDeploymentTask:k,onEditDraft:S,onDeleteDraft:E}){const{t:C}=Te("ui"),N=p.useRef(null),_=p.useRef(null),j=p.useRef(0),A=p.useRef(null),F=p.useRef(0),T=p.useRef(null),P=p.useRef(new Map),R=zLt(t,e),[L,M]=p.useState(""),[U,I]=p.useState(s==="mine"?"mine":"all"),[H,K]=p.useState(R),[Q,q]=p.useState([]),[B,ee]=p.useState(""),[le,se]=p.useState(!0),[re,ge]=p.useState(""),[W,X]=p.useState([]),[ae,ue]=p.useState(!1),[Oe,ke]=p.useState(""),[st,Le]=p.useState(""),[Me,Ie]=p.useState({}),[qe,Ae]=p.useState({}),[ze,Ee]=p.useState(null),[De,J]=p.useState(()=>Date.now()),he=p.useMemo(()=>CLt.map($e=>({value:$e,label:C(`myAgents.agentTypes.${$e}`)})),[C]),_e=p.useMemo(()=>{const $e=Iu(e);return $e.some(ye=>ye.value===R)?$e:[{value:R,label:R},...$e]},[e,R]);p.useEffect(()=>{s==="mine"&&I("mine")},[s]),p.useEffect(()=>{K(R)},[R]),p.useEffect(()=>{J(Date.now());const $e=window.setInterval(()=>J(Date.now()),1e3);return()=>window.clearInterval($e)},[]);const Ze=p.useMemo(()=>x.map($e=>ULt($e,C)),[x,C]),at=p.useMemo(()=>{const $e=new Map,ye=new Map,Ue=new Map;for(const Ke of O){if(Ke.status!=="running")continue;if($e.set(Ke.id,Ke),Ke.draftId){const ut=ye.get(Ke.draftId);(!ut||Ke.startedAt>ut.startedAt)&&ye.set(Ke.draftId,Ke)}if(!Ke.runtimeId)continue;const ft=Ue.get(Ke.runtimeId);(!ft||Ke.startedAt>ft.startedAt)&&Ue.set(Ke.runtimeId,Ke)}return{byId:$e,byDraftId:ye,byRuntimeId:Ue}},[O]),wt=p.useCallback($e=>{var Ue;if($e.draft){const Ke=w[$e.draft.id];return at.byDraftId.get($e.draft.id)??(Ke?at.byId.get(Ke):void 0)}const ye=(Ue=$e.runtime)==null?void 0:Ue.runtimeId;return ye?at.byRuntimeId.get(ye):void 0},[at,w]),Se=p.useCallback(($e,ye)=>{var ft;(ft=A.current)==null||ft.abort(),Vp.clear();const Ue=new AbortController;A.current=Ue;const Ke=++j.current;return se(!0),ge(""),VLt(U,H,$e,ut=>{j.current===Ke&&q(Gt=>ye?ut:[...Gt,...ut])},C,Ue.signal).then(ut=>{j.current===Ke&&ee(ut)}).catch(ut=>{j.current===Ke&&(Ote(ut)||ge(Rg(ut,C("myAgents.loadGeneralAgents"),"GET /web/runtimes")))}).finally(()=>{j.current===Ke&&se(!1),A.current===Ue&&(A.current=null)})},[U,H,C]);p.useEffect(()=>{if(m==="general")return q([]),ee(""),Se("",!0),()=>{var $e;($e=A.current)==null||$e.abort(),A.current=null,Vp.clear(),j.current+=1}},[m,Se]),p.useEffect(()=>{if(m!=="general"){for(const Ue of P.current.values())Ue.abort();P.current.clear();return}const $e=new Set(Q.filter(Ue=>{var Ke,ft;return((Ke=Ue.runtime)==null?void 0:Ke.runtimeId)!==v&&((ft=Ue.runtime)==null?void 0:ft.region)===H}).map(lg).filter(Boolean));for(const[Ue,Ke]of P.current)$e.has(Ue)||(Ke.abort(),P.current.delete(Ue));const ye=Q.filter(Ue=>{var Gt,Rt,zt;const Ke=(Gt=Ue.runtime)==null?void 0:Gt.runtimeId;if(!Ke||Ke===v||((Rt=Ue.runtime)==null?void 0:Rt.region)!==H)return!1;const ft=lg(Ue),ut=(zt=qe[ft])==null?void 0:zt.status;return!P.current.has(ft)&&(!ut||ut==="checking")});for(const Ue of ye)P.current.set(lg(Ue),new AbortController);Ae(Ue=>{var ut,Gt;let Ke=!1;const ft={...Ue};for(const Rt of Q){const zt=lg(Rt);if(!zt)continue;const Z=((ut=Rt.runtime)==null?void 0:ut.runtimeId)===v;Z&&((Gt=ft[zt])==null?void 0:Gt.status)!=="compatible"?(ft[zt]={status:"compatible",message:C("myAgents.compatibility.supported")},Ke=!0):!Z&&!ft[zt]&&(ft[zt]={status:"checking",message:C("myAgents.compatibility.checking")},Ke=!0)}return Ke?ft:Ue}),dLt(ye,async Ue=>{const Ke=Ue.runtime;if(!Ke)return;const ft=lg(Ue),ut=P.current.get(ft);if(ut)try{const Gt=await Fv(Ke.runtimeId,Ke.region,{signal:ut.signal,preferCached:!0,timeoutMs:_Lt,currentVersion:Ke.currentVersion});if(ut.signal.aborted)return;Ae(Rt=>({...Rt,[ft]:Gt&&Gt.length>0?{status:"compatible",message:C("myAgents.compatibility.supported")}:{status:"unsupported",message:C("myAgents.compatibility.empty")}}))}catch(Gt){if(ut.signal.aborted||(Gt==null?void 0:Gt.name)==="AbortError")return;Ae(Rt=>({...Rt,[ft]:Ite(Gt,C)}))}finally{P.current.get(ft)===ut&&P.current.delete(ft)}})},[m,v,H,Q,C]),p.useEffect(()=>()=>{var $e;($e=A.current)==null||$e.abort();for(const ye of P.current.values())ye.abort();P.current.clear()},[]);const ve=p.useCallback(async $e=>{var Ke;(Ke=T.current)==null||Ke.abort();const ye=new AbortController;T.current=ye;const Ue=++F.current;ue(!0),ke(""),X([]);try{const ft=$e==="codex"?await dr.listSessions({signal:ye.signal,autoResumeSnapshots:!1}):await dr.listAgentSessions($e,{signal:ye.signal,autoResumeSnapshots:!1});if(F.current!==Ue)return;X(ft.map(ut=>BLt(ut,C)))}catch(ft){if((ft==null?void 0:ft.name)==="AbortError"||F.current!==Ue)return;ke(Rg(ft,C("myAgents.loadAgentType",{type:C(`myAgents.agentTypes.${$e}`)}),`GET /web/${$e==="codex"?"sandbox":$e}/sessions`))}finally{T.current===ye&&(T.current=null),F.current===Ue&&ue(!1)}},[C]);function He($e){var ye;$e!==m&&($e==="general"?(j.current+=1,q([]),ee(""),ge(""),se(!0)):((ye=T.current)==null||ye.abort(),T.current=null,F.current+=1,X([]),ke(""),ue(!0)),g($e))}function Je(){m==="general"&&(j.current+=1,q([]),ee(""),ge(""),se(!0))}function Ce($e){$e!==U&&(Je(),I($e))}function Wt($e){$e!==H&&(Je(),K($e))}p.useEffect(()=>{var $e;if(m==="general"){($e=T.current)==null||$e.abort(),T.current=null,F.current+=1;return}return ve(m),()=>{var ye;(ye=T.current)==null||ye.abort(),T.current=null,F.current+=1}},[m,ve,b]),p.useEffect(()=>{const $e=_.current,ye=N.current;if(!$e||!ye||m!=="general"||!B||le)return;const Ue=new IntersectionObserver(([Ke])=>{Ke.isIntersecting&&Se(B,!1)},{root:ye,rootMargin:"240px 0px",threshold:.01});return Ue.observe($e),()=>Ue.disconnect()},[m,Se,le,B]);const ln=p.useCallback(async $e=>{if(!st){Le($e.id),Ie(ye=>({...ye,[$e.id]:""}));try{await new Promise(ye=>requestAnimationFrame(()=>ye())),$e.sandbox?await f($e.sandbox):await c($e)}catch(ye){Ie(Ue=>({...Ue,[$e.id]:ye instanceof Error?ye.message:String(ye)}))}finally{Le("")}}},[st,c,f]),cn=p.useCallback(async $e=>{var ft;const ye=$e.runtime;if(!ye)return;const Ue=lg($e);Ae(ut=>({...ut,[Ue]:{status:"checking",message:C("myAgents.compatibility.checking")}})),(ft=P.current.get(Ue))==null||ft.abort();const Ke=new AbortController;P.current.set(Ue,Ke);try{const ut=await wje(()=>Fv(ye.runtimeId,ye.region,{retryProbe:!0,signal:Ke.signal,timeoutMs:NLt,currentVersion:ye.currentVersion}));if(Ke.signal.aborted)return;Ae(Gt=>({...Gt,[Ue]:ut&&ut.length>0?{status:"compatible",message:C("myAgents.compatibility.supported")}:{status:"unsupported",message:C("myAgents.compatibility.empty")}}))}catch(ut){if(Ke.signal.aborted||Ote(ut))return;Ae(Gt=>({...Gt,[Ue]:Ite(ut,C)}))}finally{P.current.get(Ue)===Ke&&P.current.delete(Ue)}},[C]),Ot=p.useCallback($e=>{const ye=$e.runtime;!r||!ye||wt($e)||A4({runtimeId:ye.runtimeId,region:ye.region,appName:$e.appName,currentVersion:ye.currentVersion})},[r,wt]),jt=p.useMemo(()=>{const $e=L.trim().toLocaleLowerCase(),ye=m==="general"?[...Ze,...Q]:W,Ke=(U==="mine"?ye.filter(Rt=>Rt.isMine):ye).filter(Rt=>{var Z;const zt=((Z=Rt.runtime)==null?void 0:Z.region)??Rt.region;return!zt||zt===H}),ft=$e?Ke.filter(Rt=>Rt.name.toLocaleLowerCase().includes($e)):Ke;if(m!=="general")return ft;const ut=y.size>0?ft.filter(Rt=>!Rt.runtime||!y.has(Rt.runtime.runtimeId)):ft,Gt=ut.findIndex(Rt=>{var zt;return((zt=Rt.runtime)==null?void 0:zt.runtimeId)===v});return Gt<=0?ut:[ut[Gt],...ut.slice(0,Gt),...ut.slice(Gt+1)]},[m,v,Ze,y,L,U,H,Q,W]);p.useEffect(()=>{if(!r||m!=="general")return;const $e=jt.filter(ut=>!!ut.runtime).filter(ut=>!wt(ut)).slice(0,jLt);if($e.length===0)return;let ye=!1,Ue=0;const Ke=async()=>{for(;!ye;){const ut=$e[Ue];if(Ue+=1,!(ut!=null&&ut.runtime)||(await A4({runtimeId:ut.runtime.runtimeId,region:ut.runtime.region,appName:ut.appName,currentVersion:ut.runtime.currentVersion}),ye))return}},ft=window.setTimeout(()=>{for(let ut=0;ut{ye=!0,window.clearTimeout(ft)}},[m,r,wt,jt]);const ot=C(`myAgents.agentTypes.${m}`,{defaultValue:C("myAgents.agent")}),gt=m==="general"?le&&Q.length===0&&Ze.length===0:ae&&W.length===0,Pe=!gt&&jt.length===0,bt=(m==="general"?n:i)?m==="general"?()=>a(H):()=>d(m):void 0,Mt=m==="codex"&&i&&!!l;return o.jsxs(Th,{className:"my-agents-page","aria-label":C("myAgents.agent"),children:[o.jsx(zx,{title:C("myAgents.agent"),className:"my-agents-header"}),o.jsxs(Zb,{className:"my-agent-toolbar",children:[o.jsx(dE,{idPrefix:"my-agent-ownership",ariaLabel:C("myAgents.creatorFilter"),value:U,items:[{id:"all",label:C("common.all"),disabled:s==="mine"},{id:"mine",label:C("agentSelector.createdByMe")}],onChange:Ce}),o.jsxs("div",{className:"resource-toolbar__actions",children:[o.jsx(lN,{id:"my-agent-type-filter",ariaLabel:C("myAgents.agentType"),value:m,options:he,onChange:He}),o.jsx(lN,{id:"my-agent-region-filter",ariaLabel:C("myAgents.region"),value:H,options:_e,onChange:Wt}),o.jsx(wm,{className:"my-agent-search","aria-label":C("myAgents.searchAgents"),value:L,onChange:$e=>M($e.target.value),placeholder:C("common.search")}),Mt?o.jsxs("button",{type:"button",className:"my-agent-create-secondary",onClick:l,children:[o.jsx(LLt,{}),o.jsx("span",{children:C("myAgents.handoff")})]}):null]})]}),o.jsxs(Jb,{className:"my-agent-results",ref:N,"aria-label":C("myAgents.agentList",{type:ot}),children:[gt?o.jsx(Ud,{}):(m==="general"?re:Oe)&&jt.length===0?o.jsxs("div",{className:"my-agent-empty",role:"alert",children:[o.jsx("p",{children:m==="general"?re:Oe}),o.jsx("button",{type:"button",onClick:()=>{m==="general"?Se("",!0):ve(m)},children:C("common.reload")})]}):Pe&&!bt?L.trim()||U==="mine"||H!==R?o.jsx("div",{className:"my-agent-empty-message",children:o.jsxs(Cn,{fill:"none",children:[o.jsx(Cn.Icon,{children:o.jsx(QFe,{})}),o.jsx(Cn.Title,{children:C("myAgents.noMatchingAgents")}),o.jsx(Cn.Description,{children:C("myAgents.adjustSearch")})]})}):m!=="general"?o.jsx("div",{className:"my-agent-empty-message",children:o.jsxs(Cn,{fill:"none",children:[o.jsx(Cn.Icon,{children:o.jsx($Lt,{type:m})}),o.jsx(Cn.Title,{className:"my-agent-sandbox-empty-title",children:C("myAgents.noAgentType",{type:ot})})]})}):o.jsx("div",{className:"my-agent-empty-message",children:o.jsxs(Cn,{fill:"none",children:[o.jsx(Cn.Icon,{children:o.jsx(Yf,{})}),o.jsx(Cn.Title,{children:C("myAgents.noGeneralAgents")}),o.jsx(Cn.Description,{children:C("myAgents.createGeneralAgentDescription")})]})}):o.jsxs(o.Fragment,{children:[m==="general"&&re?o.jsxs("div",{className:"my-agent-inline-error",role:"alert",children:[o.jsx("span",{children:re}),o.jsx("button",{type:"button",onClick:()=>void Se("",!0),children:C("common.reload")})]}):null,o.jsxs(Vx,{className:"my-agent-grid",children:[bt?o.jsx(Cb,{className:"my-agent-create-card","aria-label":C("myAgents.createAgentType",{type:ot}),onClick:bt,icon:o.jsx(DLt,{}),children:C("myAgents.createAgent")}):null,jt.map($e=>{var Ue;const ye=QLt($e,Q,C);return o.jsx(HLt,{agent:$e,deploymentTask:wt($e),nowMs:De,onViewDeploymentTask:k,onUse:ln,compatibility:$e.runtime?qe[lg($e)]??{status:"checking",message:C("myAgents.compatibility.checking")}:void 0,onRetryCompatibility:cn,onPrepareUpdate:Ot,onViewDetails:ye?()=>{ye.sandbox?h(ye.sandbox):u(ye)}:void 0,connecting:$e.id===st,connectError:Me[$e.id],connected:((Ue=$e.runtime)==null?void 0:Ue.runtimeId)===v,onEditDraft:S,onDeleteDraft:Ee},$e.id)})]})]}),m==="general"&&!re&&!gt&&(jt.length>0||!!B)&&o.jsx("div",{className:"my-agent-load-more",ref:_,"aria-live":"polite",children:le?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"my-agent-loading-mark","aria-hidden":"true"}),o.jsx("span",{children:C("myAgents.loadingMore")})]}):B?o.jsx("span",{children:C("myAgents.scrollForMore")}):o.jsx("span",{children:C("myAgents.allLoaded")})})]}),ze?o.jsx(pc,{title:C("myAgents.deleteDraftTitle"),description:C("myAgents.deleteDraftDescription",{name:ze.draft.name||C("agentSelector.unnamedAgent")}),confirmLabel:C("myAgents.deleteDraft"),variant:"danger",onCancel:()=>Ee(null),onConfirm:()=>{E==null||E(ze),Ee(null)}}):null]})}const WLt="_Container_13560_1",GLt="_Textarea_13560_174",Dte={Container:WLt,Textarea:GLt},Rm=e=>{const t=p.useRef(null),i=`search-ui-input-${p.useId()}`,{id:r,name:s,variant:a="outline",size:l="md",gutterSize:c,className:u,autoComplete:d,disabled:f=!1,readOnly:h=!1,invalid:m=!1,allowAutofillExtensions:g=!!s,onFocus:b,onBlur:v,onAnimationStart:y,onAutofill:x,autoSelect:O,rows:w=3,maxRows:k,autoResize:S,ref:E,onChange:C,...N}=e,[_,j]=p.useState(!1),A=S?Math.max(k??10,w):w;p.useEffect(()=>{var P;O&&((P=t.current)==null||P.select())},[O]);const F=P=>{y==null||y(P),P.animationName==="native-autofill-in"&&(x==null||x())},T=p.useCallback(()=>{if(!S||!t.current||A===void 0)return;t.current.style.height="0px";const P=t.current.scrollHeight;t.current.style.height=P+"px"},[S,A]);return p.useEffect(()=>{T()},[e.value,w,T]),o.jsx("div",{className:pi(Dte.Container,u),"data-variant":a,"data-size":l,"data-gutter-size":c,"data-focused":_,"data-disabled":f?"":void 0,"data-readonly":h?"":void 0,"data-invalid":m?"":void 0,style:Wb({"textarea-min-rows":`${w}`,"textarea-max-rows":`${A}`}),children:o.jsx("textarea",{...N,onChange:P=>{C==null||C(P),T()},ref:Zk([t,E]),id:r||(g?void 0:i),className:Dte.Textarea,name:s,readOnly:h,disabled:f,rows:w,onFocus:P=>{j(!0),b==null||b(P)},onBlur:P=>{j(!1),v==null||v(P)},onAnimationStart:F,"data-lpignore":g?void 0:!0,"data-1p-ignore":g?void 0:!0})})},QI="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2048%2048'%3e%3cimage%20width='48'%20height='48'%20href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAMKADAAQAAAABAAAAMAAAAADbN2wMAAAH7UlEQVRoBdVZWWwbVRQ9492Onc1xTfaWLukq9oSqLKnYBZRSNgn6AagsAgmJRfzxg4SEEDtiER8IBKKAChK0FS1tKYWW0lZQKKV0gxCVJm3ikDiO17EdzrUzSdw4jj1OpeQqNzO237vvnHfvu/e9GWVwcBBDYue1mrqE2kI1UqeSJAnmIHUzNUCNUmGiKtQy6oPUR6geqnw/FSVOUH9R36KupfaDHnBQn6MGqEnqVJcEAfZTBbNL4b+lZPI1VbwwnaSfYO8z8N+TVMd0Qj6EVdbs3eIBP29cVFkL00kk+wSEwHAamgh9bDAJSQWTITZFnF+85J1tBPyOUC9OqqnsVdTIRkVBi70Msy125uriHJ8XAXFRfzKBTQM+rO0/hc54cSQE8iyzAx/XLcEltjIU44uCQijOaHvPfxIv97TjWCzEcMo7+sZ4TGa+2V6KT2rPQ73ZptsPBZE30fVrymvxTvUCtDoqYC0ijhMk/3MkgDd62xFheOqVggjIIAbOVaujEh/ULsaNzioUsxhVAv/A34GD0YBubxZMQJupWpMNr58zHytcHth1ekICsDcRx4u+fxBK6vOCbgKyEIXEK975WOmaoZuErKv1QR8ORQd0eUE3Ac0TNSYrXvI24fZSLxwGfebiDKW3e08gln9J0oYvKoMNG6kmiRdmzMOtTi8sOsJJJfANA93oiseGbeZ7k1EHZAKCEcApu4wCxUsSz3rm4HQiim3B/wpOsBJA2yP/4cZIJYIBFcGwCjWeSKEwm4wosZtR7rKizGXJQJZRB1TuttftAprnAbOrM9rl9UHqwg+s1o+eOow/GNN5CaPOklSgdKq4us+Ji7pt6Dw1AF9vBOGImjJht5lRVWFDY7UL58/3wOt2YPEcN2xWVpPRe6EQC+y9rwINPNKsuRaYX5cXhIxGkks+Y7V+6vQRdLBi5yx1bGwicFebivj+ARgOhZGMJMFyQyWpoV2GRIa2ZXOX2bDyqnPxzEPNKC+1Zj957eDBTbz34PXAwvoMfBN+kGV8Bxf00VgQz/vaEB6nSCnRQVj2h2DZG4TyZwQWlSils3m8RDDEhk2uaqlHaYklVb3Ha42dh4B3eMzZ//eEmMc0kGL3cEU9WksqU4XvzAYKZ9n6fQCOz3thORCGkhgCf2bDMz4bjQpW39yE65Y1QO5FxiUgP+76E3hzI7D1VyBcwP5NTFcZzXjaPRMNZmvGPkfA23YMwLHRD0Mf3ZwTgaBIi8GgYMGsSjx2z3kEP9Jp5E5rOeoqQH75C3htPfDpD4CskXxFvHC5vQKPVjSwPqQfcKTAfxuA/Ws/lBAXwEhUTGjWSAL3r1qYykSju+UkIFbZDx09wPvb0iH1W9uEYw03MHAV3ltew1CqgDkyCNtWgt/cnwY/3GriG5n9hbMrccNljRmzLz0nJCCNJBsEwsCH24E3NgDr96brhfyWS2Sm3EYLVsOL0i0DsG8h+LDkqcLExHhfc9siVDDrjJ59sZJRyHKZFRKybiSkTtIjR08CrXwEdtGcXL2A4+192LOuDeatfqg6wMvsL5lbhWuWysIdO995E9BgSkh19THX7wQOtANXLgKWLQSaarUWI9dNP7bjo68OY9uef6GqhcW8ZkViX2a/nBWYQ4+RggmIBfFGnHgOcD0c7wD2HgOW0xuXk0xN5SDaOwL4cnsb1m05joPHejKK0hgEOb4Q8Muba3H1pXUwZZl96aqLgHSU2RCbEe6/9hzh875OYPdhYF5NDLt/Oohd+46gNxBjm2zzJhZyi/RyV5TggdsvRJnTOm5j3QQ0i9ra6OHj1u9+B/YdNcLXVQdDmYNPy9oZ971IcIPHjUHadVrHHFfZNphtTtx508W4eJEHsg7Gk6IJaIZlDEn3EdUEl7sBg4la2MtqkYgNIOz/F9FgF6IhX6p5mozcjgbGasw/xWCCs7IeN7U24b4VddwZj26jjTZynTQCmknxSBqIETanh7ceWEpmpIiokT7E6JFosBvxaD/iJCeNDQYzTFYnzHY3SsobmfM9eOyucjTO0KyOf510AqOHkl2kiMlSQoAlsPLAk4hHSCaIJMMqmUgfYBQeggxGK4xmOxprXHh8lYK51em+E/0/qwQyBh8iY+Q52pjlOZD8XFcFPHELcGlT3stlbBaymtOROTReBoZJ+0DjZ9pv4SFq9fL0YWqcjJl1+AwP8OSGS+amq6y4P/fyyWqvoC9lDAG7ainPEJcBs7xMBGOLbU6bGQTMJHAnDUlG2biPFZevEM4GCZl9sSsnPgG+bAHfa+l8vZJxpNSo+oPp/c4XP6bPBN0kog2qtdFz1WzIkfXmZuAKVm6JewlbvZKVgGZMilMPwW9ngdr5B3CEG7iEbCY5ffl6RgPtYDGdybS4ogW4YDbgLefTD5s2kv5rTgKaWdlKi1fau4BDJ3jM5I70NDd0J7grzfZEUMg5CM5Tmg4TiW3ZtVYxTKpcgM2iWS7+mhcBbRiZ/TBTd4jPjtSEVF3AxxdUPgkxTrUUMTcBykKUmLZwhQlYPhWBeCBV5DRjk3QtiEC2McUDsjPVCEhWEQ8Umk2y2c7nOyEwrV/ySdbdQo3nw3aKtRHM3wiBtVQu02knISJ+SQh8Q32TyqTJJ6xTXyQzyzb2LeoBWQOy5pjwcDf1YSqzNIooLex99kTCppsq4N+l+oUArylhoku9sb+O18VU8c5UEiZu7KGyrKKTmgr7/wGxhy03aZIycwAAAABJRU5ErkJggg=='%20/%3e%3c/svg%3e",KLt="data:image/svg+xml,%3c?xml%20version='1.0'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%20100%20100'%3e%3ctitle%3ePandoc%20Icon%3c/title%3e%3cdesc%20property='dc:creator'%3eAlbert%20Krewinkel%3c/desc%3e%3cmetadata%20id='license'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3ccc:license%20rdf:resource='http://creativecommons.org/licenses/by-sa/4.0/'%20/%3e%3c/cc:Work%3e%3ccc:License%20rdf:about='http://creativecommons.org/licenses/by-sa/4.0/'%3e%3ccc:permits%20rdf:resource='http://creativecommons.org/ns%23Reproduction'%20/%3e%3ccc:permits%20rdf:resource='http://creativecommons.org/ns%23Distribution'%20/%3e%3ccc:requires%20rdf:resource='http://creativecommons.org/ns%23Notice'%20/%3e%3ccc:requires%20rdf:resource='http://creativecommons.org/ns%23Attribution'%20/%3e%3ccc:permits%20rdf:resource='http://creativecommons.org/ns%23DerivativeWorks'%20/%3e%3ccc:requires%20rdf:resource='http://creativecommons.org/ns%23ShareAlike'%20/%3e%3c/cc:License%3e%3c/rdf:RDF%3e%3c/metadata%3e%3crect%20fill='%23fed'%20stroke='%23fed'%20width='100'%20height='100'/%3e%3cg%20fill='none'%20stroke='%234093da'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='8'%20transform='skewX(-6)%20translate(8%201)'%3e%3cpath%20d='M%2030,10%20l%200,80%20M%2045,10%20l%200,80%20M%2020,10%20l%2040,0%20l%2018,18%20l%200,25%20l%20-33,0'%20/%3e%3cpath%20fill='%234093da'%20stroke-width='6'%20d='M%2061,10%20l%2017,17%20l%20-17,0%20l%200,-17'%20/%3e%3c/g%3e%3c/svg%3e",XLt="data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20width='100%25'%20height='100%25'%20viewBox='0%200%20100%20100'%20version='1.1'%20id='svg4'%20sodipodi:docname='favicon.svg'%20inkscape:version='1.4.4%20(dcaf3e7,%202026-05-05)'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:svg='http://www.w3.org/2000/svg'%3e%3csodipodi:namedview%20id='namedview4'%20pagecolor='%23ffffff'%20bordercolor='%23000000'%20borderopacity='0.25'%20inkscape:showpageshadow='2'%20inkscape:pageopacity='0.0'%20inkscape:pagecheckerboard='0'%20inkscape:deskcolor='%23d1d1d1'%20showgrid='true'%20inkscape:zoom='8.2236519'%20inkscape:cx='34.534536'%20inkscape:cy='45.174577'%20inkscape:window-width='1881'%20inkscape:window-height='1382'%20inkscape:window-x='1512'%20inkscape:window-y='30'%20inkscape:window-maximized='0'%20inkscape:current-layer='svg4'%3e%3cinkscape:grid%20type='axonomgrid'%20id='grid4'%20units='px'%20originx='0'%20originy='0'%20spacingx='3.7795276'%20spacingy='3.7795276'%20empcolor='%230099e5'%20empopacity='0.30196078'%20color='%230099e5'%20opacity='0.14901961'%20empspacing='0'%20dotted='false'%20gridanglex='40'%20gridanglez='40'%20enabled='true'%20visible='true'%20/%3e%3c/sodipodi:namedview%3e%3cdefs%20id='defs1'%3e%3cfilter%20id='shadow'%20x='0'%20y='0'%20width='1'%20height='1'%3e%3cfeDropShadow%20dx='0'%20dy='2'%20stdDeviation='3'%20flood-color='rgba(50,%2050,%2093,%200.18)'%20/%3e%3c/filter%3e%3c/defs%3e%3crect%20x='4'%20y='4'%20width='92'%20height='92'%20rx='22.08'%20fill='%23e8efff'%20filter='url(%23shadow)'%20id='rect1'%20transform='matrix(1.0869565,0,0,1.0869565,-4.347826,-4.347826)'%20style='stroke-width:0.92'%20ry='22.08'%20/%3e%3cpath%20style='fill:%230a2540;fill-opacity:1;stroke-width:1.88976'%20d='M%2049.999999,6.535431%204.9573423,44.330708%2049.999999,82.125984%2092.790523,46.220471%2095.042656,44.330708%20Z'%20id='path1'%20/%3e%3cpath%20style='fill:%23425466;fill-opacity:1;stroke-width:1.88976'%20d='M%204.9573423,44.330708%20V%2055.669291%20L%2049.999999,93.464567%20V%2082.125984%20Z'%20id='path2'%20/%3e%3cpath%20style='fill:%231a3550;fill-opacity:1;stroke-width:1.88976'%20d='M%2049.999999,82.125984%2095.042656,44.330708%20V%2055.669291%20L%2049.999999,93.464567%20Z'%20id='path3'%20/%3e%3cpath%20style='fill:%234ade80;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;fill-opacity:1'%20d='m%2045.042657,30.236221%209.008531,-7.559055%2022.521328,18.897638%20-9.008531,7.559056%20z'%20id='path5'%20/%3e%3cpath%20style='fill:none;fill-opacity:1;stroke:%234ade80;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1'%20d='M%2027.025594,49.133859%2047.29479,47.244096%2045.042657,64.25197'%20id='path6'%20/%3e%3c/svg%3e",YLt="data:image/svg+xml,%3csvg%20fill='%23261230'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3eAstral%3c/title%3e%3cpath%20d='M1.44%200C.6422%200%200%20.6422%200%201.44v21.12C0%2023.3578.6422%2024%201.44%2024h21.12c.7978%200%201.44-.6422%201.44-1.44V1.44C24%20.6422%2023.3578%200%2022.56%200Zm4.7998%204.8h11.5199c.7953%200%201.44.6447%201.44%201.44V19.2h-6.624v-4.32h-1.152v4.32H4.8V6.24c0-.7953.6446-1.44%201.4398-1.44m4.032%205.472v1.152h3.456v-1.152z'/%3e%3c/svg%3e",ZLt="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1.34em'%20height='1em'%20viewBox='0%200%20256%20192'%3e%3cpath%20fill='%232d4552'%20d='M84.38%20108.352c-9.556%202.712-15.826%207.467-19.956%2012.218c3.956-3.461%209.255-6.639%2016.402-8.665c7.311-2.072%2013.548-2.057%2018.702-1.062v-4.03c-4.397-.402-9.437-.082-15.148%201.539M63.987%2074.475l-35.49%209.35s.646.914%201.844%202.133l30.092-7.93s-.427%205.495-4.13%2010.41c7.005-5.299%207.684-13.963%207.684-13.963m29.709%2083.41c-49.946%2013.452-76.37-44.43-84.37-74.472c-3.696-13.868-5.31-24.37-5.74-31.148a11.5%2011.5%200%200%201%20.025-1.84C1.021%2050.58-.22%2051.927.032%2055.82c.43%206.773%202.044%2017.275%205.74%2031.147c7.997%2030.038%2034.424%2087.92%2084.37%2074.468c10.871-2.929%2019.038-8.263%2025.17-15.073c-5.652%205.104-12.724%209.123-21.616%2011.523M103.08%2039.05v3.555h19.59c-.401-1.259-.806-2.393-1.208-3.555z'/%3e%3cpath%20fill='%232d4552'%20d='M127.05%2068.325c8.81%202.503%2013.47%208.68%2015.933%2014.146l9.824%202.79s-1.34-19.132-18.645-24.047c-16.189-4.6-26.151%208.995-27.363%2010.754c4.71-3.355%2011.586-6.102%2020.251-3.643m78.197%2014.234c-16.204-4.62-26.162%209.003-27.356%2010.737c4.713-3.351%2011.586-6.099%2020.247-3.629c8.797%202.506%2013.452%208.676%2015.923%2014.146l9.837%202.8s-1.361-19.135-18.651-24.054m-9.76%2050.443l-81.718-22.845s.885%204.485%204.279%2010.293l68.803%2019.234c5.664-3.277%208.636-6.682%208.636-6.682m-56.655%2049.174C74.127%20164.828%2081.949%2082.386%2092.419%2043.32c4.311-16.1%208.743-28.066%2012.419-36.088c-2.193-.451-4.01.704-5.804%204.354C95.13%2019.5%2090.14%2032.387%2085.312%2050.427c-10.467%2039.066-18.29%20121.506%2046.412%20138.854c30.497%208.17%2054.256-4.247%2071.966-23.749c-16.81%2015.226-38.274%2023.763-64.858%2016.644'/%3e%3cpath%20fill='%23e2574c'%20d='M103.081%20138.565v-16.637l-46.223%2013.108s3.415-19.846%2027.522-26.684c7.311-2.072%2013.549-2.058%2018.701-1.063V39.05h23.145c-2.52-7.787-4.958-13.782-7.006-17.948c-3.387-6.895-6.859-2.324-14.741%204.269c-5.552%204.638-19.583%2014.533-40.698%2020.222c-21.114%205.694-38.185%204.184-45.307%202.95c-10.097-1.742-15.378-3.96-14.884%203.721c.43%206.774%202.043%2017.277%205.74%2031.148c7.996%2030.039%2034.424%2087.92%2084.37%2074.468c13.046-3.515%2022.254-10.464%2028.637-19.32h-19.256zm-74.588-54.74l35.494-9.35s-1.034%2013.654-14.34%2017.162c-13.31%203.504-21.154-7.812-21.154-7.812'/%3e%3cpath%20fill='%232ead33'%20d='M236.664%2039.84c-9.226%201.617-31.361%203.632-58.716-3.7c-27.363-7.328-45.517-20.144-52.71-26.168c-10.197-8.54-14.682-14.476-19.096-5.498c-3.902%207.918-8.893%2020.805-13.723%2038.846c-10.466%2039.066-18.289%20121.505%2046.413%20138.853c64.687%2017.333%2099.126-57.978%20109.593-97.047c4.83-18.037%206.948-31.695%207.53-40.502c.665-9.976-6.187-7.08-19.29-4.784M106.668%2072.161s10.196-15.859%2027.49-10.943c17.305%204.915%2018.645%2024.046%2018.645%2024.046zm42.215%2071.163c-30.419-8.91-35.11-33.167-35.11-33.167l81.714%2022.846c0-.004-16.494%2019.12-46.604%2010.32m28.89-49.85s10.183-15.847%2027.474-10.918c17.29%204.923%2018.651%2024.054%2018.651%2024.054z'/%3e%3cpath%20fill='%23d65348'%20d='m86.928%20126.51l-30.07%208.522s3.266-18.609%2025.418-25.983L65.25%2045.147l-1.471.447c-21.115%205.694-38.185%204.184-45.307%202.95c-10.097-1.741-15.379-3.96-14.885%203.722c.43%206.774%202.044%2017.276%205.74%2031.147c7.997%2030.039%2034.425%2087.92%2084.37%2074.468l1.471-.462zM28.493%2083.825l35.494-9.351s-1.034%2013.654-14.34%2017.162c-13.31%203.504-21.154-7.811-21.154-7.811'/%3e%3cpath%20fill='%231d8d22'%20d='m150.255%20143.658l-1.376-.335c-30.419-8.91-35.11-33.166-35.11-33.166l42.137%2011.778l22.308-85.724l-.27-.07c-27.362-7.329-45.516-20.145-52.71-26.17c-10.196-8.54-14.682-14.475-19.096-5.497c-3.898%207.918-8.889%2020.805-13.719%2038.846c-10.466%2039.066-18.289%20121.505%2046.413%20138.852l1.326.3zM106.668%2072.16s10.196-15.859%2027.49-10.943c17.305%204.915%2018.645%2024.046%2018.645%2024.046z'/%3e%3cpath%20fill='%23c04b41'%20d='m88.46%20126.072l-8.064%202.289c1.906%2010.74%205.264%2021.047%2010.534%2030.152c.918-.202%201.828-.376%202.762-.632c2.449-.66%204.72-1.479%206.906-2.371c-5.89-8.74-9.785-18.804-12.137-29.438m-3.148-75.644c-4.144%2015.467-7.852%2037.73-6.831%2060.06c1.826-.793%203.756-1.532%205.9-2.14l1.492-.334c-1.82-23.852%202.114-48.157%206.546-64.694a323%20323%200%200%201%203.373-11.704a105%20105%200%200%201-5.974%203.547a307%20307%200%200%200-4.506%2015.265'/%3e%3c/svg%3e",JLt="data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='512'%20height='512'%20version='1.1'%20viewBox='0%200%20135.47%20135.47'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='m67.733%2067.733%2029.33%2016.933-29.33%2050.8c37.408%200%2067.733-30.325%2067.733-67.733%200-12.341-3.3168-23.901-9.0837-33.867h-58.65z'%20fill='%23afccf9'/%3e%3cpath%20d='m67.733-1e-6c-25.07%200-46.942%2013.63-58.654%2033.875l29.324%2050.792%2029.33-16.933v-33.867h58.65c-11.714-20.24-33.583-33.867-58.65-33.867z'%20fill='%231767d1'/%3e%3cpath%20d='m0%2067.733c0%2037.408%2030.324%2067.733%2067.733%2067.733l29.33-50.8-29.33-16.933-29.33%2016.933-29.324-50.792c-5.7637%209.9632-9.0794%2021.519-9.0794%2033.858'%20fill='%23679ef5'/%3e%3cpath%20d='m101.6%2067.733c0%2018.704-15.163%2033.867-33.867%2033.867-18.704%200-33.867-15.163-33.867-33.867s15.163-33.867%2033.867-33.867c18.704%200%2033.867%2015.163%2033.867%2033.867'%20fill='%23fff'/%3e%3cpath%20d='m95.25%2067.733c0%2015.197-12.32%2027.517-27.517%2027.517-15.197%200-27.517-12.32-27.517-27.517%200-15.197%2012.32-27.517%2027.517-27.517%2015.197%200%2027.517%2012.32%2027.517%2027.517'%20fill='%231a74e7'/%3e%3c/svg%3e",e3t="data:image/svg+xml,%3csvg%20fill='%23F03C2E'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3eGit%3c/title%3e%3cpath%20d='M13.09%2023.549a1.54%201.54%200%200%201-2.18%200L.451%2013.089a1.54%201.54%200%200%201%200-2.179l7.191-7.19%202.733%202.733a1.85%201.85%200%200%200%20.964%202.326v6.66a1.849%201.849%200%201%200%201.54%200V8.957l2.508%202.508a1.85%201.85%200%201%200%201.09-1.09l-2.634-2.634a1.85%201.85%200%200%200-2.378-2.377L8.73%202.63%2010.91.451a1.54%201.54%200%200%201%202.179%200l10.459%2010.46a1.54%201.54%200%200%201%200%202.179z'/%3e%3c/svg%3e",t3t="data:image/svg+xml,%3csvg%20fill='%23073551'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3ecurl%3c/title%3e%3cpath%20d='M.803%2014.8169c0-.5342.433-.9665.9665-.9665.5335%200%20.9665.4323.9665.9665%200%20.5335-.433.9657-.9665.9657-.5335%200-.9666-.4322-.9666-.9657m2.736%200c0-.1963-.0532-.376-.1119-.5525-.2344-.7024-.876-1.2169-1.6575-1.2169-.1249%200-.2344.0465-.3524.0708C.6149%2013.2865%200%2013.9646%200%2014.817c0%20.9764.7923%201.7694%201.7695%201.7694.9772%200%201.7694-.793%201.7694-1.7694m-1.7694-7.149c.5335%200%20.9665.433.9665.9665%200%20.5335-.433.9665-.9665.9665-.5343%200-.9666-.433-.9666-.9665%200-.5335.4323-.9665.9666-.9665m0%202.7359c.9772%200%201.7694-.7923%201.7694-1.7694%200-.1956-.0532-.376-.1119-.5525-.2344-.7024-.8767-1.2169-1.6575-1.2169-.1249%200-.2344.0465-.3524.0716C.6149%207.104%200%207.782%200%208.6344c0%20.9771.7923%201.7694%201.7695%201.7694m13.221-5.694c-.5342%200-.9665-.433-.9665-.9664a.966.966%200%2001.9666-.9665c.5335%200%20.9658.4322.9658.9665%200%20.5334-.4323.9664-.9658.9664m-9.6%2016.5133c-.5335%200-.9666-.433-.9666-.9665%200-.5342.433-.9665.9666-.9665a.966.966%200%2001.9665.9665c0%20.5335-.4323.9665-.9665.9665m9.6-19.2491c-.978%200-1.7695.7922-1.7695%201.7694%200%20.2085.0525.4025.1187.5882L5.039%2018.5581c-.803.1681-1.4179.8462-1.4179%201.6985%200%20.9772.7923%201.7694%201.7695%201.7694.9772%200%201.7694-.7922%201.7694-1.7694%200-.1963-.0525-.3759-.111-.5525l8.3427-14.2728c.7778-.1865%201.3683-.8531%201.3683-1.688%200-.977-.793-1.7693-1.7694-1.7693m7.24%202.7359c-.5343%200-.9666-.433-.9666-.9665a.966.966%200%2001.9665-.9665c.5335%200%20.9666.4322.9666.9665%200%20.5334-.433.9665-.9666.9665M12.6313%2021.223c-.5343%200-.9665-.433-.9665-.9665a.966.966%200%2001.9665-.9665c.5335%200%20.9658.4323.9658.9665%200%20.5335-.4323.9665-.9658.9665M22.2305%201.974c-.9772%200-1.7694.7922-1.7694%201.7694%200%20.2085.0525.4025.1187.5882l-8.3009%2014.2265c-.8021.1681-1.417.8462-1.417%201.6985%200%20.9772.7922%201.7694%201.7694%201.7694.9764%200%201.7687-.7922%201.7687-1.7694%200-.1963-.0525-.3759-.1111-.5525l8.3427-14.2728C23.4094%205.2448%2024%204.5782%2024%203.7433c0-.977-.7923-1.7693-1.7695-1.7693'/%3e%3c/svg%3e",n3t="data:image/svg+xml,%3csvg%20fill='%23007808'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3eFFmpeg%3c/title%3e%3cpath%20d='M21.72%2017.91V6.5l-.53-.49L9.05%2018.52l-1.29-.06L24%201.53l-.33-.95-11.93%201-5.75%206.6v-.23l4.7-5.39-1.38-.77-9.11.77v2.85l1.91.46v.01l.19-.01-.56.66v10.6c.609-.126%201.22-.241%201.83-.36L14.12%205.22l.83-.04L0%2021.44l9.67.82%201.35-.77%206.82-6.74v2.15l-5.72%205.57%2011.26.95.35-.94v-3.16l-3.29-.18c.434-.403.858-.816%201.28-1.23z'/%3e%3c/svg%3e",i3t="data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%201080%201080'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2030.3.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.3%20Build%20182)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23ff0;%20}%20.st1%20{%20fill:%20%23333;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M660.52,419.49l-195.15-52.98c-15.84-4.3-19.16-25.29-5.43-34.28l169.23-110.7-9.91-201.97c-.8-16.39,18.13-26.04,30.92-15.76l157.57,126.74,189.03-71.84c15.34-5.83,30.37,9.2,24.54,24.54l-71.84,189.03,126.74,157.57c10.29,12.79.64,31.73-15.76,30.92l-201.97-9.91-110.7,169.23c-8.98,13.73-29.98,10.41-34.28-5.43l-52.98-195.15h-.01Z'/%3e%3cpath%20class='st1'%20d='M603.34,476.66l32.94,121.68,4.45,16.23-429.11,429.11c-48.45,48.45-126.85,48.45-175.3,0C12.16,1019.51,0,987.89,0,956.15s12.02-63.48,36.31-87.77l429.11-429.11,16.35,4.33,121.56,33.06h0Z'/%3e%3c/svg%3e";function YQ(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true",...e,children:o.jsx("path",{d:"M12 .5C5.65.5.5 5.65.5 12c0 5.08 3.29 9.39 7.86 10.91 .58 .11 .79-.25.79-.56v-2.02c-3.2.7-3.88-1.36-3.88-1.36-.52-1.33-1.28-1.69-1.28-1.69-1.05-.72.08-.7.08-.7 1.16.08 1.77 1.19 1.77 1.19 1.03 1.77 2.71 1.26 3.37.96.1-.75.4-1.26.73-1.55-2.56-.29-5.25-1.28-5.25-5.7 0-1.26.45-2.29 1.19-3.1-.12-.29-.52-1.47.11-3.06 0 0 .97-.31 3.16 1.18A10.98 10.98 0 0 1 12 6.11c.98 0 1.96.13 2.87.39 2.19-1.49 3.16-1.18 3.16-1.18.63 1.59.23 2.77.11 3.06.74.81 1.19 1.84 1.19 3.1 0 4.43-2.7 5.4-5.27 5.69.42.36.78 1.06.78 2.14v3.04c0 .31.21.67.8.56A11.51 11.51 0 0 0 23.5 12C23.5 5.65 18.35.5 12 .5Z"})})}xo.registerLanguage("bash",JB);const r3t=48;function s3t(e,t=r3t){return e.scrollHeight-e.scrollTop-e.clientHeight<=t}function a3t(e){return xo.highlight(e,{language:"bash",ignoreIllegals:!0}).value}function o3t({status:e}){return e==="succeeded"?o.jsx(Vu,{"aria-hidden":!0}):e==="failed"?o.jsx(h4,{"aria-hidden":!0}):e==="running"?o.jsx(fi,{className:"studio-build-progress__spinner","aria-hidden":!0}):o.jsx(d7e,{"aria-hidden":!0})}function Mte(e,t){if(!e)return"";const n=Date.parse(e);return Number.isNaN(n)?"":new Intl.DateTimeFormat(t,{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1}).format(n)}function l3t({steps:e,log:t,logError:n="",logTruncated:i=!1,logUpdatedAt:r,loading:s=!1}){const{t:a,i18n:l}=Te("ui"),c=p.useRef(null),u=p.useRef(!0),[d,f]=p.useState(!1),h=p.useMemo(()=>a3t(t),[t]);p.useEffect(()=>{const g=c.current;g&&t&&u.current&&(g.scrollTop=g.scrollHeight)},[t]);const m=async()=>{try{await navigator.clipboard.writeText(t),f(!0),window.setTimeout(()=>f(!1),1500)}catch{f(!1)}};return o.jsxs("div",{className:"studio-build-progress",children:[o.jsx("ol",{className:"studio-build-progress__steps","aria-label":a("studioBuildProgress.steps"),children:e.map(g=>o.jsxs("li",{className:`is-${g.status}`,children:[o.jsx("span",{className:"studio-build-progress__step-icon",children:o.jsx(o3t,{status:g.status})}),o.jsx("span",{children:g.label})]},g.key))}),o.jsxs("section",{className:"studio-build-progress__log","aria-label":a("studioBuildProgress.log"),children:[o.jsxs("header",{children:[o.jsxs("div",{children:[o.jsx("strong",{children:a("studioBuildProgress.log")}),o.jsxs("span",{children:[a(s?"studioBuildProgress.syncing":n?"studioBuildProgress.loadFailed":"studioBuildProgress.synced"),i?a("studioBuildProgress.recentOnly"):"",Mte(r,l.resolvedLanguage??l.language)?` · ${Mte(r,l.resolvedLanguage??l.language)}`:""]})]}),o.jsxs(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",disabled:!t,onClick:()=>void m(),"aria-label":a(d?"studioBuildProgress.copiedLog":"studioBuildProgress.copyLog"),children:[d?o.jsx(Vu,{"aria-hidden":!0}):o.jsx(Xj,{"aria-hidden":!0}),a(d?"studioBuildProgress.copied":"studioBuildProgress.copy")]})]}),t?o.jsx("pre",{ref:c,tabIndex:0,"aria-label":a("studioBuildProgress.logContent"),onScroll:g=>{u.current=s3t(g.currentTarget)},children:o.jsx("code",{className:"hljs language-bash",dangerouslySetInnerHTML:{__html:h}})}):o.jsx("div",{className:`studio-build-progress__log-empty${n?" is-error":""}`,children:n||a(s?"studioBuildProgress.waiting":"studioBuildProgress.empty")})]})]})}function Lte({name:e,description:t,icon:n,selected:i,disabled:r=!1,onChange:s,className:a=""}){return o.jsxs("button",{type:"button",className:`studio-package-option${i?" is-selected":""}${a?` ${a}`:""}`,"aria-pressed":i,disabled:r,onClick:()=>s(!i),children:[o.jsx("span",{className:"studio-package-option__icon","aria-hidden":"true",children:n}),o.jsxs("span",{className:"studio-package-option__content",children:[o.jsx("strong",{children:e}),t?o.jsx("span",{children:t}):null]}),o.jsx("span",{className:"studio-package-option__action","aria-hidden":"true",children:i?o.jsx(HFe,{}):o.jsx(GFe,{})})]})}function cg(e,t){return e[t]|e[t+1]<<8}function Q0(e,t){return(e[t]|e[t+1]<<8|e[t+2]<<16|e[t+3]<<24)>>>0}async function c3t(e){const t=new DecompressionStream("deflate-raw"),n=new Blob([new Uint8Array(e)]).stream().pipeThrough(t);return new Uint8Array(await new Response(n).arrayBuffer())}async function Eje(e,t={}){let i=-1;for(let u=e.length-22;u>=0&&u>e.length-65557;u--)if(Q0(e,u)===101010256){i=u;break}if(i<0)throw new Error($t("helpers.zip.invalid"));const r=cg(e,i+10);if(t.maxEntries!==void 0&&r>t.maxEntries)throw new Error($t("helpers.zip.tooManyFiles",{count:t.maxEntries}));let s=Q0(e,i+16);const a=new TextDecoder("utf-8"),l=[];let c=0;for(let u=0;ut.maxUncompressedBytes)throw new Error($t("helpers.zip.tooLarge"));const x=cg(e,v+26),O=cg(e,v+28),w=v+30+x+O,k=e.subarray(w,w+f);let S;if(d===0)S=k;else if(d===8)S=await c3t(k);else{s+=46+m+g+b;continue}l.push({name:y,text:a.decode(S)}),s+=46+m+g+b}return l}const O8=/(^|\/)skill\.md$/i;function u3t(e){const t=(e??"").replace(/\r\n?/g,` +`),x=(e==null?void 0:e.pendingMessage)||s;if(p.useEffect(()=>{e&&f(u)},[e==null?void 0:e.status,u]),p.useEffect(()=>{if(!d||!g)return;const C=c.current;C&&(C.scrollTop=C.scrollHeight)},[d,g,y]),!e||!e.text&&e.status!=="error"&&!e.pendingMessage)return null;const O=hLt(e.updatedAt,l.resolvedLanguage??l.language),w=e.status==="complete"?a("agentWorkspace.logStatus.synced"):e.status==="error"?a("agentWorkspace.logStatus.failed"):a("agentWorkspace.logStatus.syncing"),k=e.omittedEarly?a("agentWorkspace.logStatus.earlyOmitted"):e.snapshotTruncated?a("agentWorkspace.logStatus.recentOnly"):e.truncated?a("agentWorkspace.logStatus.partiallyOmitted"):"",S=[w,e.lineCount?a("agentWorkspace.logLines",{count:e.lineCount}):"",k,O].filter(Boolean).join(" · ");async function E(){try{await navigator.clipboard.writeText(b),m(!0),window.setTimeout(()=>m(!1),1500)}catch{m(!1)}}return o.jsxs("section",{className:`aw-deploy-log is-${e.status}${d?"":" is-collapsed"}`,"aria-label":i,children:[o.jsxs("header",{children:[o.jsxs("div",{children:[o.jsx("strong",{children:n}),o.jsx("span",{children:S})]}),o.jsxs("div",{className:"aw-deploy-log-actions",children:[g&&o.jsx("button",{type:"button",onClick:()=>f(C=>!C),children:a(d?"common.collapse":"common.expand")}),g&&o.jsxs("button",{type:"button",onClick:()=>void E(),"aria-label":h?a("agentWorkspace.copiedLabel",{label:r}):a("agentWorkspace.copyLabel",{label:r}),title:h?a("agentWorkspace.copied"):a("agentWorkspace.copyLabel",{label:r}),children:[h?o.jsx(Hu,{"aria-hidden":!0}):o.jsx(nR,{"aria-hidden":!0}),o.jsx("span",{children:a(h?"agentWorkspace.copied":"agentWorkspace.copy")})]})]})]}),d&&(g?o.jsx("pre",{ref:c,children:y}):o.jsx("div",{className:"aw-deploy-log-empty",children:x}))]})}function pLt({task:e}){var n;const{t}=Ae("ui");return o.jsx(Ije,{log:e.buildLog,autoExpand:((n=e.buildLog)==null?void 0:n.status)!=="complete"&&(e.status==="running"||e.status==="error")&&Rje(e,t)===1,title:t("agentWorkspace.buildLog"),ariaLabel:t("agentWorkspace.buildLog"),copyLabel:t("agentWorkspace.buildLog"),defaultPendingMessage:t("agentWorkspace.waitingBuildLog")})}function mLt({task:e}){var n;const{t}=Ae("ui");return o.jsx(Ije,{log:e.githubLog,autoExpand:((n=e.githubLog)==null?void 0:n.status)!=="complete"&&(e.status==="running"||e.status==="error")&&e.phase==="github",title:t("agentWorkspace.githubMountLog"),ariaLabel:t("agentWorkspace.githubDeliveryMountLog"),copyLabel:t("agentWorkspace.githubMountLog"),defaultPendingMessage:t("agentWorkspace.waitingGithubMountLog")})}function gLt({task:e,onReturnToEdit:t}){const{t:n}=Ae("ui"),i=jje(e,n),r=Rje(e,n),s=e.status==="success"?100:Math.max(6,Math.min(100,e.pct??6)),a=e.status==="running"&&e.statusUnconfirmed?n("agentWorkspace.deployStatus.unconfirmed"):e.status==="running"?n("agentWorkspace.deployStatus.running"):e.status==="success"?n("agentWorkspace.deployStatus.success"):e.status==="error"?n("agentWorkspace.deployStatus.error"):n("agentWorkspace.deployStatus.cancelled");return o.jsxs("section",{className:`aw-deploy-progress-card is-${e.status}`,"aria-live":"polite",children:[o.jsxs("div",{className:"aw-deploy-progress-head",children:[o.jsxs("div",{children:[o.jsx("span",{className:"aw-deploy-progress-icon","aria-hidden":!0,children:e.status==="running"&&e.statusUnconfirmed?o.jsx(t2,{}):e.status==="running"?o.jsx(gi,{className:"spin"}):e.status==="success"?o.jsx(T7e,{}):e.status==="error"?o.jsx(t2,{}):o.jsx(y4,{})}),o.jsxs("div",{children:[o.jsx("h3",{children:a}),o.jsx("p",{children:e.runtimeName})]})]}),o.jsx("strong",{children:e.status==="running"&&!e.statusUnconfirmed?`${Math.round(s)}%`:e.label})]}),o.jsx("div",{className:"aw-deploy-progress-track",role:"progressbar","aria-label":n("agentWorkspace.deploymentProgress"),"aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":Math.round(s),children:o.jsx("span",{style:{width:`${s}%`}})}),o.jsx("ol",{className:"aw-deploy-steps",children:i.map((l,c)=>{const u=e.status==="success"||cnew Set),[Dt,Mn]=p.useState(()=>new Set),[Ot,nn]=p.useState(!1),[wn,Nn]=p.useState(""),[di,Ei]=p.useState(null),[fi,On]=p.useState([]),[Ki,Ci]=p.useState([]),[er,os]=p.useState(!1),[fr,Or]=p.useState(""),[ms,ls]=p.useState(""),[Fa,As]=p.useState(0),[_s,ra]=p.useState([]),[hr,Ba]=p.useState(!1),[Ns,gs]=p.useState(""),[Ua,sa]=p.useState(0),[bs,aa]=p.useState(null),[js,_o]=p.useState(1),[ei,Zo]=p.useState(!1),[No,jo]=p.useState(""),[Fn,ao]=p.useState(0),[xe,Ze]=p.useState(!1),[Xt,un]=p.useState(()=>new Set),[jn,pr]=p.useState(!1),[Gi,ys]=p.useState(""),[Ti,oa]=p.useState(""),[la,or]=p.useState(()=>new Set),xa=p.useRef(!1),Rs=p.useRef(""),Xi=p.useRef(null),Qa=p.useRef(0),oo=p.useRef(0),Tl=p.useRef(0),[ca,du]=p.useState(K5t),[vc,af]=p.useState("");p.useEffect(()=>{e.length!==0&&du(ee=>ee.map((Ie,qe)=>qe===0&&Ie.agentIds.length===0?{...Ie,agentIds:e.slice(0,2).map(bt=>bt.id)}:Ie))},[e]);const lo=p.useMemo(()=>{const ee=new Map;for(const Ie of e)Ie.runtimeId&&ee.set(Ie.runtimeId,Ie);return ee},[e]),xc=p.useMemo(()=>{var Ie;const ee=new Map;for(const qe of t){const bt=(Ie=qe.deploymentTarget)==null?void 0:Ie.runtimeId;if(!bt||!lo.has(bt))continue;const hn=ee.get(bt);(!hn||qe.updatedAt>hn.updatedAt)&&ee.set(bt,qe)}return ee},[lo,t]),Al=p.useMemo(()=>{const ee=new Map;for(const Ie of f){if(!Ie.runtimeId)continue;const qe=ee.get(Ie.runtimeId);(!qe||Ie.startedAt>qe.startedAt)&&ee.set(Ie.runtimeId,Ie)}return ee},[f]),td=p.useMemo(()=>{const ee=Ve.trim().toLowerCase();return ee?e.filter(Ie=>{const qe=Ie.runtimeId?xc.get(Ie.runtimeId):void 0,bt=Ie.runtimeId?Al.get(Ie.runtimeId):void 0;return[Ie.label,Ie.app,Ie.host??"",(qe==null?void 0:qe.draft.name)??"",(qe==null?void 0:qe.draft.description)??"",(bt==null?void 0:bt.runtimeName)??""].join(" ").toLowerCase().includes(ee)}):e},[e,Al,Ve,xc]),ua=p.useMemo(()=>{const ee=Ve.trim().toLowerCase();return t.filter(Ie=>{var bt;const qe=(bt=Ie.deploymentTarget)==null?void 0:bt.runtimeId;return qe&&lo.has(qe)?!1:ee?`${Ie.draft.name} ${Ie.draft.description}`.toLowerCase().includes(ee):!0})},[lo,t,Ve]),qh=p.useMemo(()=>t.filter(ee=>{var qe;const Ie=(qe=ee.deploymentTarget)==null?void 0:qe.runtimeId;return!Ie||!lo.has(Ie)}).length,[lo,t]),Wh=p.useMemo(()=>{const ee=Ve.trim().toLowerCase();return ee?ca.filter(Ie=>Ie.name.toLowerCase().includes(ee)):ca},[ca,Ve]),ce=e.find(ee=>ee.id===R),hi=t.find(ee=>ee.id===K),Bi=h?f.find(ee=>ee.id===h):void 0,wc=ce!=null&&ce.runtimeId?xc.get(ce.runtimeId):void 0,Kn=y?en:R&&r===R?i:null,Pi=(Kn==null?void 0:Kn.appName)||(ce==null?void 0:ce.runtimeApp)||(ce==null?void 0:ce.app)||"",za=(c&&(ce!=null&&ce.runtimeId)?kte:kte.filter(ee=>ee!=="usage")).map(ee=>({id:ee,label:_(`agentWorkspace.sections.${ee}`)})),co=JSON.stringify([(ce==null?void 0:ce.runtimeId)??"",(ce==null?void 0:ce.region)??"cn-beijing",Pi,js]),vs=(bs==null?void 0:bs.requestKey)===co?bs.value:null,_l=`${(ce==null?void 0:ce.region)??"cn-beijing"}:${(ce==null?void 0:ce.runtimeId)??""}`,Oc=(he==null?void 0:he.requestKey)===_l?he.value:"",jr=(G==null?void 0:G.requestKey)===_l?G:null,Hn=!!((b0=jr==null?void 0:jr.apiApps)!=null&&b0.length),Va=!!(jr!=null&&jr.a2a),of=((oC=jr==null?void 0:jr.apiApps)==null?void 0:oC[0])??Pi,Nl=(q==null?void 0:q.endpoint)??"",be=Z5t(((Ec=jr==null?void 0:jr.a2a)==null?void 0:Ec.endpoint)??"",Nl),Je=(ce==null?void 0:ce.runtimeApp)||"",At=JSON.stringify([(ce==null?void 0:ce.runtimeId)??"",(ce==null?void 0:ce.region)??"",(ce==null?void 0:ce.currentVersion)??null,Je]),En=l&&(ce!=null&&ce.runtimeId)&&ce.region&&Qe===0?R4({runtimeId:ce.runtimeId,region:ce.region,appName:Je,currentVersion:ce.currentVersion}):null,Lt=(je==null?void 0:je.requestKey)===At?je.value:En,pn=Lt!=null&&Lt.reason?Id(Lt.reason,P.resolvedLanguage||P.language):"",yn=(Lt==null?void 0:Lt.warnings.filter(ee=>Id(ee,P.resolvedLanguage||P.language)))??[];p.useEffect(()=>{const ee=Qa.current+1;Qa.current=ee,ve(null),Kt("");const Ie=(ce==null?void 0:ce.runtimeId)??"",qe=(ce==null?void 0:ce.region)??"";if(!l||!Ie||!qe){et(!1);return}const bt=Qe===0?R4({runtimeId:Ie,region:qe,appName:Je,currentVersion:ce==null?void 0:ce.currentVersion}):null;if(bt){ve({requestKey:At,value:bt}),et(!1);return}const hn=new AbortController;let it,si=0;const da=60;et(!0);const ni=Is=>{hR({runtimeId:Ie,region:qe,appName:Je,currentVersion:ce==null?void 0:ce.currentVersion,signal:hn.signal,force:Is&&Qe>0}).then(Ro=>{var uC,Jm;if(ee!==Qa.current)return;const v1=Ro.recoveryStatus==="preparing";if(Ro.runtime.runtimeId!==Ie||Ro.runtime.region!==qe||!v1&&Je&&((uC=Ro.agent)==null?void 0:uC.appName)!==Je||Ro.canUpdate&&!((Jm=Ro.agent)!=null&&Jm.appName)){Kt(_("agentWorkspace.errors.updateCapabilityMismatch"));return}if(ve({requestKey:At,value:Ro}),et(!1),!!v1){if(si+=1,si>=da){Kt(_("agentWorkspace.errors.updateConfigRestoring"));return}it=window.setTimeout(()=>ni(!1),1e3)}}).catch(()=>{ee!==Qa.current||hn.signal.aborted||Kt(_("agentWorkspace.errors.checkUpdateCapability"))}).finally(()=>{ee===Qa.current&&!hn.signal.aborted&&et(!1)})};return ni(!0),()=>{hn.abort(),it!=null&&window.clearTimeout(it)}},[l,Je,Qe,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId,At]);const Bt=p.useMemo(()=>{const ee=new Map(e.map((qe,bt)=>[qe.id,bt])),Ie=new Map(n.map((qe,bt)=>[qe,bt]));return[...td].sort((qe,bt)=>{const hn=qe.runtimeId?Al.get(qe.runtimeId):void 0,it=bt.runtimeId?Al.get(bt.runtimeId):void 0,si=(hn==null?void 0:hn.status)==="running"?hn.startedAt:0,da=(it==null?void 0:it.status)==="running"?it.startedAt:0;if(si!==da)return da-si;const ni=Ie.get(qe.id),Is=Ie.get(bt.id);return ni!=null&&Is!=null?ni-Is:ni!=null?-1:Is!=null?1:(ee.get(qe.id)??0)-(ee.get(bt.id)??0)})},[n,e,td,Al]),gn=(ce==null?void 0:ce.label)||(Kn==null?void 0:Kn.name)||(hi==null?void 0:hi.draft.name)||(Bi==null?void 0:Bi.agentName)||((lC=Bi==null?void 0:Bi.agentDraft)==null?void 0:lC.name)||_("agentWorkspace.noAgentSelected"),zn=ca.find(ee=>ee.id===vc),Gn=Bt.filter(ee=>ee.canDelete===!0),xs=Bt.filter(ee=>ci.has(ee.id)&&ee.canDelete===!0),te=ua.filter(ee=>Dt.has(ee.id)),Be=Gn.length+ua.length,pt=xs.length+te.length,tn=p.useMemo(()=>{var Ie;if(Bi!=null&&Bi.agentDraft)return Bi.agentDraft;if(hi!=null&&hi.draft)return hi.draft;const ee=(Ie=ce==null?void 0:ce.region)!=null&&Ie.startsWith("ap-")?"byteplus":"volcengine";return Lt!=null&&Lt.agent&&(Lt.recoveryStatus==="complete"||Lt.recoveryStatus==="draft-only")?jB(Lt.agent,ee,Lt.runtime.configuredEnvKeys):iLt(Kn,Pi||(ce==null?void 0:ce.label)||"agent",ee)},[Kn,Pi,ce==null?void 0:ce.label,ce==null?void 0:ce.region,hi==null?void 0:hi.draft,Bi==null?void 0:Bi.agentDraft,Lt]),fn=((tp=Kn==null?void 0:Kn.draft)==null?void 0:tp.harnessSidecar)??eat(q==null?void 0:q.envs),ti=fn?qx.filter(ee=>fn.componentOverrides[ee]):[],vn=hi?a?"":_("agentWorkspace.errors.noCreatePermission"):l?ce!=null&&ce.runtimeId?ce.region?ze?_("agentWorkspace.errors.checkingUpdateConfig"):Se||(Lt?Lt.recoveryStatus!=="complete"&&Lt.recoveryStatus!=="draft-only"?pn||_("agentWorkspace.errors.originalConfigUnavailable"):Lt.canUpdate?(cC=Lt.agent)!=null&&cC.appName?"":_("agentWorkspace.errors.agentInfoMissing"):pn||_("agentWorkspace.errors.updateUnsupported"):_("agentWorkspace.errors.updateCapabilityPending")):_("agentWorkspace.errors.runtimeRegionMissing"):_("agentWorkspace.errors.cloudOnlyUpdate"):_("agentWorkspace.errors.noManagePermission"),Yi="aw-update-disabled-reason",ot=p.useMemo(()=>{if(Kn)return Kn.tools;const ee=(tn.builtinTools??[]).map(Ie=>{var qe;return((qe=Hx.find(bt=>bt.id===Ie))==null?void 0:qe.label)??Ie});return Array.from(new Set([...tn.tools,...ee,...(tn.customTools??[]).map(Ie=>Ie.name),...(tn.mcpTools??[]).map(Ie=>Ie.name)].filter(Boolean)))},[tn,Kn]),dn=p.useMemo(()=>Kn?Kn.skillsPreviewSupported?Kn.skills.map(ee=>ee.name):null:Array.from(new Set([...(tn.selectedSkills??[]).map(ee=>ee.name),...tn.skills].filter(Boolean))),[tn,Kn]),Mt=p.useMemo(()=>{if(Bi)return Bi;if(hi){const ee=f.filter(Ie=>Ie.draftId===hi.id).sort((Ie,qe)=>qe.startedAt-Ie.startedAt)[0];return ee||f.filter(Ie=>{var qe,bt;return((qe=Ie.agentDraft)==null?void 0:qe.name)===hi.draft.name||Ie.agentName===hi.draft.name||!!((bt=hi.deploymentTarget)!=null&&bt.runtimeId)&&Ie.runtimeId===hi.deploymentTarget.runtimeId}).sort((Ie,qe)=>qe.startedAt-Ie.startedAt)[0]}if(ce)return f.filter(ee=>!!ce.runtimeId&&ee.runtimeId===ce.runtimeId||ee.agentName===ce.label).sort((ee,Ie)=>Ie.startedAt-ee.startedAt)[0]},[f,ce,hi,Bi]),Xn=!!(h&&Mt&&Mt.id===h),lr=!!(Mt&&(Mt.status!=="success"||Xn)),qn=(Mt==null?void 0:Mt.status)==="running",qi=Mt!=null&&Mt.draftId?t.find(ee=>ee.id===Mt.draftId)??(Mt.agentDraft?{id:Mt.draftId,draft:Mt.agentDraft,updatedAt:Mt.startedAt}:void 0):void 0,wa=p.useMemo(()=>uLt(tn),[tn]),uo=(ce==null?void 0:ce.currentVersion)??(q==null?void 0:q.currentVersion)??null,Kh=uo??(Bi==null?void 0:Bi.startedAt)??"unknown",Xm=Kn?`runtime:${(ce==null?void 0:ce.runtimeId)??Kn.name}:v${Kh}:${wa}`:`draft:${(Bi==null?void 0:Bi.id)??(hi==null?void 0:hi.id)??(ce==null?void 0:ce.id)??gn}:${wa}`;p.useEffect(()=>{M==="usage"&&!c&&B("basic")},[c,M]),p.useEffect(()=>{if(!h)return;const ee=f.find(qe=>qe.id===h),Ie=ee!=null&&ee.runtimeId?lo.get(ee.runtimeId):void 0;if(Ie){Q(""),V(Ie.id),B("basic");return}V(""),Q(""),B("basic")},[lo,f,h]),p.useEffect(()=>{if(!m){Rs.current="";return}const ee=`${m}:${g}:${b}:${c}`;Rs.current!==ee&&e.some(Ie=>Ie.id===m)&&(Rs.current=ee,Q(""),V(m),B(g==="usage"&&!c?"basic":g),g==="evaluations"&&(ct(b),Rt("")))},[e,c,m,g,b]),p.useEffect(()=>{for(const ee of Bt.slice(0,8)){if(!ee.runtimeId)continue;const Ie=ee.region??"cn-beijing";bye(ee.runtimeId,Ie),g0e(ee.runtimeId,Ie,ee.runtimeApp??"")}},[Bt]),p.useEffect(()=>{let ee=!1;const Ie=(ce==null?void 0:ce.runtimeId)??"",qe=(ce==null?void 0:ce.region)??"cn-beijing",bt=(ce==null?void 0:ce.runtimeApp)??"",hn=Ie?m0e(Ie,qe,bt):null;if(cn(hn),gt(""),xt(!1),Pt(!!hn||!y||!Ie),!(!y||!Ie))return n7(Ie,qe,bt,{force:!0}).then(it=>{ee||cn(it)}).catch(it=>{!ee&&!hn&&cn(null),ee||(xt(it instanceof $s&&it.unsupported),gt(_("agentWorkspace.errors.loadAgentInfo")))}).finally(()=>{ee||Pt(!0)}),()=>{ee=!0}},[y,Qe,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeApp,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{let ee=!1;const Ie=(ce==null?void 0:ce.runtimeId)??"",qe=(ce==null?void 0:ce.region)??"cn-beijing";if(ra([]),gs(""),M!=="optimizations"||!Ie){Ba(!1);return}if(y&&!Pi){Ba(!kt);return}return Ba(!0),s0e({runtimeId:Ie,region:qe,appName:Pi}).then(bt=>{ee||ra(bt.groups)}).catch(()=>{ee||gs(_("agentWorkspace.errors.loadOptimizations"))}).finally(()=>{ee||Ba(!1)}),()=>{ee=!0}},[kt,y,Ua,M,Pi,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{_o(1)},[ce==null?void 0:ce.runtimeId,Pi]),p.useEffect(()=>{const ee=Tl.current+1;Tl.current=ee;const Ie=(ce==null?void 0:ce.runtimeId)??"",qe=(ce==null?void 0:ce.region)??"cn-beijing",bt=Pi;if(jo(""),M!=="usage"||!Ie){Zo(!1);return}if(!bt){Zo(y&&!kt);return}const hn=new AbortController;return Zo(!0),rye({runtimeId:Ie,region:qe,appName:bt,page:js,pageSize:X5t,signal:hn.signal}).then(it=>{if(ee===Tl.current){if(it.runtimeId!==Ie||it.appName!==bt||it.page!==js){jo(_("agentWorkspace.errors.usageMismatch"));return}aa({requestKey:co,value:it})}}).catch(()=>{ee!==Tl.current||hn.signal.aborted||jo(_("agentWorkspace.errors.loadUsage"))}).finally(()=>{ee===Tl.current&&Zo(!1)}),()=>{hn.abort()}},[js,Fn,co,kt,y,M,Pi,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{oo.current+=1,Me(null),_e(!1),Xe(!1),Fe(""),Ee("api-server")},[_l,M]);function Gh(){oo.current+=1,Me(null),_e(!1),Xe(!1),Fe("")}function Xh(ee){ee!==oe&&(Gh(),Ee(ee))}async function Yh(){if(De){Gh();return}const ee=(ce==null?void 0:ce.runtimeId)??"",Ie=(ce==null?void 0:ce.region)??"cn-beijing";if(!ee)return;const qe=oo.current+1;oo.current=qe,Xe(!0),Fe("");try{const bt=await pye(ee,Ie);if(qe!==oo.current)return;Me({requestKey:_l,value:bt}),_e(!0)}catch(bt){if(qe!==oo.current)return;Me(null),_e(!1),Fe(bt instanceof Error?bt.message:_("agentWorkspace.errors.loadApiKey"))}finally{qe===oo.current&&Xe(!1)}}p.useEffect(()=>{let ee=!1;const Ie=(ce==null?void 0:ce.runtimeId)??"",qe=(ce==null?void 0:ce.region)??"cn-beijing",bt=Ie?gye(Ie,qe):null;if(U(bt),Et(""),!!Ie)return c7(Ie,qe,{force:!0}).then(hn=>{ee||U(hn)}).catch(()=>{!ee&&!bt&&U(null),ee||Et(_("agentWorkspace.errors.loadRuntimeDetails"))}),()=>{ee=!0}},[Qe,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{let ee=!1;const Ie=(ce==null?void 0:ce.runtimeId)??"";if(We(""),M!=="versions"||!Ie){pe(!1),Ie||$e(null);return}return pe(!0),o2(Ie).then(qe=>{ee||$e(qe)}).catch(()=>{ee||($e(null),We(_("agentWorkspace.errors.loadGithubVersions")))}).finally(()=>{ee||pe(!1)}),()=>{ee=!0}},[M,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{let ee=!1;const Ie=(ce==null?void 0:ce.runtimeId)??"",qe=(ce==null?void 0:ce.region)??"cn-beijing",bt=`${qe}:${Ie}`;if(Z(""),M!=="integrations"||!Ie){se(!1),Ie||ae(null);return}se(!0);const hn=Vv(Ie,qe,{retryProbe:!0}).catch(it=>{if(it instanceof $s&&it.unsupported)return null;throw it});return Promise.all([hn,hye(Ie,qe,{retryProbe:!0})]).then(([it,si])=>{ee||ae({requestKey:bt,apiApps:it,a2a:si})}).catch(()=>{ee||(ae(null),Z(_("agentWorkspace.errors.probeIntegration")))}).finally(()=>{ee||se(!1)}),()=>{ee=!0}},[X,M,ce==null?void 0:ce.currentVersion,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{let ee=!1;const Ie=(ce==null?void 0:ce.runtimeId)??"",qe=(ce==null?void 0:ce.region)??"cn-beijing",bt=Ie&&Pi?a0e({runtimeId:Ie,region:qe,appName:Pi,pageSize:100}):null;if(On(bt?_te(bt,_):[]),Ci((bt==null?void 0:bt.sets)??[]),Or(""),ls((bt==null?void 0:bt.unsupportedMessage)??""),M!=="evaluations"||!Ie){os(!1);return}if(y&&!Pi){os(!kt);return}return os(!bt),uR({runtimeId:Ie,region:qe,appName:Pi,pageSize:100},{force:!0}).then(hn=>{ee||(Ci(hn.sets),On(_te(hn,_)),ls(hn.unsupportedMessage??""))}).catch(()=>{ee||(Or(_("agentWorkspace.errors.loadEvaluations")),ls(""))}).finally(()=>{ee||os(!1)}),()=>{ee=!0}},[kt,y,Fa,M,Pi,Kn==null?void 0:Kn.appName,ce==null?void 0:ce.region,ce==null?void 0:ce.runtimeId,_]);async function fu(ee){const Ie=(ce==null?void 0:ce.runtimeId)??"",qe=ee.commitSha??"";if(!(!Ie||!qe||nt)){$t(qe),We("");try{await G0e({runtimeId:Ie,targetCommitSha:qe});const bt=await o2(Ie);$e(bt)}catch(bt){We(bt instanceof Error?bt.message:_("agentWorkspace.errors.rollbackVersion"))}finally{$t("")}}}p.useEffect(()=>{const ee=new Set(fi.map(Ie=>Ie.id));un(Ie=>{const qe=new Set([...Ie].filter(bt=>ee.has(bt)));return qe.size===Ie.size?Ie:qe}),or(Ie=>{const qe=new Set([...Ie].filter(bt=>ee.has(bt)));return qe.size===Ie.size?Ie:qe}),Ti&&!ee.has(Ti)&&oa("")},[fi,Ti]),p.useEffect(()=>{Ze(!1),un(new Set),or(new Set),ys(""),oa("")},[ce==null?void 0:ce.runtimeId]),p.useEffect(()=>{const ee=new Set(Bt.filter(Ie=>Ie.canDelete===!0).map(Ie=>Ie.id));Ke(Ie=>{const qe=new Set([...Ie].filter(bt=>ee.has(bt)));return qe.size===Ie.size?Ie:qe})},[Bt]),p.useEffect(()=>{const ee=new Set(ua.map(Ie=>Ie.id));Mn(Ie=>{const qe=new Set([...Ie].filter(bt=>ee.has(bt)));return qe.size===Ie.size?Ie:qe})},[ua]);const qs=p.useMemo(()=>!v||!(ce!=null&&ce.runtimeId)||v.runtimeId!==ce.runtimeId||Pi&&v.agentName&&v.agentName!==Pi?null:{...v,tag:_(v.kind==="good"?"agentWorkspace.goodCase":"agentWorkspace.badCase")},[v,ce==null?void 0:ce.runtimeId,Pi,_]),fo=p.useMemo(()=>W5t(_),[_]),Oa=p.useMemo(()=>ce!=null&&ce.runtimeId?qs?[qs,...fi.filter(ee=>ee.id!==qs.id&&(!ee.messageId||ee.messageId!==qs.messageId))]:fi:fo,[fo,fi,qs,ce==null?void 0:ce.runtimeId]),Sc=Oa.filter(ee=>{if(ee.kind!==ht||(ee.source==="auto"?"auto":"user")!==qt)return!1;const qe=Gt.trim().toLowerCase();return qe?[ee.input,ee.output,ee.referenceOutput,ee.comment,ee.tag??"",ee.sessionId,ee.messageId,ee.userId,ee.evaluationSetName].join(" ").toLowerCase().includes(qe):!0}),id=Sc.filter(ee=>Xt.has(ee.id)),Zh=!!(ce!=null&&ce.runtimeId),lf=ee=>{ct(ee),Rt(""),ys("");const Ie=Oa.find(qe=>qe.kind===ee);oa((Ie==null?void 0:Ie.id)??""),window.setTimeout(()=>{var qe;(qe=Xi.current)==null||qe.scrollIntoView({behavior:"smooth",block:"start"})},0)},Ym=ee=>{ys(""),un(Ie=>{const qe=new Set(Ie);return qe.has(ee.id)?qe.delete(ee.id):qe.add(ee.id),qe})},Jh=()=>{ys(""),un(new Set(Sc.map(ee=>ee.id)))},h0=()=>{ys(""),un(new Set),Ze(!1)},Sr=ee=>{or(Ie=>{const qe=new Set(Ie);return qe.has(ee)?qe.delete(ee):qe.add(ee),qe})},kc=ee=>{oa(ee.id),ys(""),!(!ee.sessionId||!ee.messageId)&&(N==null||N(ee))},Lr=async ee=>{if(!(ce!=null&&ce.runtimeId)||!Pi||jn||ee.length===0)return;const Ie=ee.length===1?_("agentWorkspace.deleteOneCaseConfirm"):_("agentWorkspace.deleteCasesConfirm",{count:ee.length});if(!window.confirm(Ie))return;const qe=ee.map(hn=>hn.id),bt=new Set(qe);pr(!0),ys("");try{await c0e({runtimeId:ce.runtimeId,region:ce.region??"cn-beijing",appName:Pi,itemIds:qe});const hn=new Map;for(const it of ee)hn.set(it.kind,(hn.get(it.kind)??0)+1);On(it=>it.filter(si=>!bt.has(si.id))),Ci(it=>it.map(si=>({...si,itemCount:Math.max(0,si.itemCount-(hn.get(si.kind)??0))}))),un(it=>new Set([...it].filter(si=>!bt.has(si)))),or(it=>new Set([...it].filter(si=>!bt.has(si)))),Ti&&bt.has(Ti)&&oa(""),ee.length>1&&Ze(!1),T==null||T(ee)}catch(hn){ys(hn instanceof Error?hn.message:String(hn))}finally{pr(!1)}},hu=ee=>{du(Ie=>Ie.map(qe=>qe.id===ee.id?ee:qe))},tC=()=>{const ee=new Set(e.map(bt=>bt.id)),Ie=n.filter(bt=>ee.has(bt)),qe=new Set(Ie);return[...Ie,...e.filter(bt=>!qe.has(bt.id)).map(bt=>bt.id)]},nC=(ee,Ie,qe)=>{if(!w||ee===Ie)return;const bt=tC().filter(si=>si!==ee),hn=bt.indexOf(Ie),it=hn<0?bt.length:qe==="after"?hn+1:hn;bt.splice(it,0,ee),w(bt)},iC=(ee,Ie)=>{if(!_n||_n===Ie)return;const qe=ee.currentTarget.getBoundingClientRect();we(Ie),Ge(ee.clientY>qe.top+qe.height/2?"after":"before")},Zm=(ee,Ie)=>{if(!w)return;const qe=tC(),bt=qe.indexOf(ee),hn=Math.max(0,Math.min(qe.length-1,bt+Ie));bt<0||bt===hn||(qe.splice(bt,1),qe.splice(hn,0,ee),w(qe))},p0=ee=>{ee.canDelete===!0&&(Nn(""),Ke(Ie=>{const qe=new Set(Ie);return qe.has(ee.id)?qe.delete(ee.id):qe.add(ee.id),qe}))},rC=ee=>{Nn(""),Mn(Ie=>{const qe=new Set(Ie);return qe.has(ee.id)?qe.delete(ee.id):qe.add(ee.id),qe})},sC=()=>{Nn(""),Ke(new Set(Gn.map(ee=>ee.id))),Mn(new Set(ua.map(ee=>ee.id)))},Ut=()=>{Nn(""),Ke(new Set),Mn(new Set),lt(!1)},m0=()=>{if(pt===0||Ot)return;const ee=xs.length,Ie=te.length;Nn(""),Ei({kind:"selection",title:_(ee===1&&Ie===0?"agentWorkspace.deleteAgentTitle":ee===0&&Ie===1?"myAgents.deleteDraftTitle":"agentWorkspace.deleteSelectedTitle"),description:ee===1&&Ie===0?_("agentWorkspace.deleteAgentDescription",{name:xs[0].label}):ee===0&&Ie===1?_("agentWorkspace.deleteDraftDescription",{name:te[0].draft.name||_("agentSelector.unnamedAgent")}):_("agentWorkspace.deleteSelectionDescription",{count:pt,warning:ee>0?_("agentWorkspace.runtimeDeletionWarning",{count:ee}):_("agentWorkspace.draftDeletionWarning")}),confirmLabel:_(ee===0&&Ie===1?"myAgents.deleteDraft":"agentWorkspace.deleteSelected"),agents:xs,drafts:te})},y1=async()=>{if(!(!di||Ot)){nn(!0),Nn("");try{if(di.kind==="selection"){const{agents:ee,drafts:Ie}=di;if(ee.length>0){if(!k)throw new Error(_("agentWorkspace.errors.deleteDeployedUnsupported"));await k(ee)}Ie.length>0&&(S==null||S(Ie)),Ke(new Set),Mn(new Set),lt(!1),ee.some(qe=>qe.id===R)&&V(""),Ie.some(qe=>qe.id===K)&&Q("")}else if(di.kind==="agent"){if(!k)throw new Error(_("agentWorkspace.errors.deleteDeployedUnsupported"));await k([di.agent]),R===di.agent.id&&V("")}else{if(!S)throw new Error(_("agentWorkspace.errors.deleteDraftUnsupported"));S([di.draft]),K===di.draft.id&&Q("")}Ei(null)}catch(ee){Nn(ee instanceof Error?ee.message:String(ee))}finally{nn(!1)}}},g0=ee=>{!k||ee.canDelete!==!0||Ot||(Nn(""),Ei({kind:"agent",title:_("agentWorkspace.deleteAgentTitle"),description:_("agentWorkspace.deleteAgentDescription",{name:ee.label}),confirmLabel:_("agentWorkspace.deleteAgent"),agent:ee}))},Zi=ee=>{if(!S||Ot)return;const Ie=ee.draft.name||_("agentSelector.unnamedAgent");Nn(""),Ei({kind:"draft",title:_("myAgents.deleteDraftTitle"),description:_("agentWorkspace.deleteDraftDescription",{name:Ie}),confirmLabel:_("myAgents.deleteDraft"),draft:ee})},ep=()=>{const ee=`eval-${Date.now()}`,Ie={id:ee,name:_("agentWorkspace.newEvaluationGroupName",{count:ca.length+1}),agentIds:[],caseSet:"核心回归集",evaluator:"综合质量评估器",metrics:["回答质量"],concurrency:"4",history:[]};du(qe=>[Ie,...qe]),af(ee)},aC=ee=>{hu({...ee,history:[{id:`run-${Date.now()}`,createdAt:_("agentWorkspace.evaluationDefaults.justNow"),score:86+ee.history.length%7,status:"completed"},...ee.history]})};return o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:`aw-root${y?" is-detail-only":""}`,children:[o.jsxs("nav",{className:"aw-view-tabs","aria-label":_("agentWorkspace.workspace"),children:[o.jsx("button",{type:"button",className:I==="library"?"is-active":"","aria-pressed":I==="library",onClick:()=>{$("library"),Ye("")},children:_("agentWorkspace.library")}),o.jsx("button",{type:"button",className:I==="evaluation"?"is-active":"","aria-pressed":I==="evaluation",onClick:()=>{$("evaluation"),Ye("")},children:_("agentWorkspace.evaluation")})]}),o.jsxs("div",{className:"aw-workspace-frame",children:[o.jsxs("div",{className:"aw-workspace","aria-hidden":I==="evaluation"||void 0,ref:ee=>{ee==null||ee.toggleAttribute("inert",I==="evaluation")},children:[o.jsxs("aside",{className:"aw-sidebar","aria-label":_(I==="library"?"agentWorkspace.agentList":"agentWorkspace.evaluationGroupList"),children:[o.jsxs("label",{className:"aw-search",children:[o.jsx(F_,{"aria-hidden":!0}),o.jsx("input",{value:Ve,onChange:ee=>Ye(ee.currentTarget.value),placeholder:_(I==="library"?"myAgents.searchAgents":"agentWorkspace.searchEvaluationGroups"),"aria-label":_(I==="library"?"myAgents.searchAgents":"agentWorkspace.searchEvaluationGroups")})]}),o.jsxs("button",{type:"button",className:"aw-create-card",onClick:I==="library"?j:ep,disabled:I==="library"&&!a,children:[o.jsx(zo,{"aria-hidden":!0}),o.jsx("span",{children:_(I==="library"?"agentWorkspace.newAgent":"agentWorkspace.newEvaluationGroup")})]}),I==="library"&&(k||S)&&o.jsx("div",{className:`aw-selection-toolbar${yt?" is-active":""}`,children:yt?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"aw-selection-count",children:_("agentWorkspace.selectedCount",{count:pt})}),o.jsx("button",{type:"button",onClick:sC,disabled:Be===0||Ot,children:_("agentWorkspace.selectAll")}),o.jsx("button",{type:"button",className:"aw-selection-danger",onClick:()=>void m0(),disabled:pt===0||Ot,children:_(Ot?"common.deleting":"agentWorkspace.deleteSelected")}),o.jsx("button",{type:"button",onClick:Ut,disabled:Ot,children:_("common.cancel")})]}):o.jsx("button",{type:"button",onClick:()=>{Nn(""),lt(!0)},disabled:Be===0,children:_("common.select")})}),I==="library"&&wn&&o.jsx("div",{className:"aw-delete-error",role:"alert",children:wn}),o.jsx("div",{className:"aw-agent-list",children:I==="evaluation"?Wh.length===0?o.jsx("div",{className:"aw-list-empty",children:_("agentWorkspace.noMatchingEvaluationGroups")}):Wh.map(ee=>o.jsxs("button",{type:"button",className:`aw-agent-item${ee.id===vc?" is-active":""}`,onClick:()=>af(ee.id),children:[o.jsxs("span",{className:"aw-agent-copy aw-eval-group-copy",children:[o.jsx("strong",{children:Yw(ee.name,_)}),o.jsx("small",{children:_("agentWorkspace.groupStats",{agents:ee.agentIds.length,runs:ee.history.length})})]}),o.jsx(wO,{"aria-hidden":!0})]},ee.id)):u&&Bt.length===0&&ua.length===0?o.jsx("div",{className:"aw-list-empty",children:_("agentWorkspace.loadingCloudAgents")}):d&&Bt.length===0&&ua.length===0?o.jsxs("div",{className:"aw-list-empty aw-list-error",children:[o.jsx("span",{children:d}),O&&o.jsx("button",{type:"button",onClick:O,children:_("common.retry")})]}):Bt.length===0&&ua.length===0?o.jsx("div",{className:"aw-list-empty",children:_("myAgents.noMatchingAgents")}):o.jsxs(o.Fragment,{children:[ua.map(ee=>{const qe=f.filter(hn=>hn.draftId===ee.id).sort((hn,it)=>it.startedAt-hn.startedAt)[0]??f.filter(hn=>{var it,si;return((it=hn.agentDraft)==null?void 0:it.name)===ee.draft.name||hn.agentName===ee.draft.name||!!((si=ee.deploymentTarget)!=null&&si.runtimeId)&&hn.runtimeId===ee.deploymentTarget.runtimeId}).sort((hn,it)=>it.startedAt-hn.startedAt)[0],bt=Dt.has(ee.id);return o.jsxs("button",{type:"button",className:["aw-agent-item",yt?"is-selecting":"",bt?"is-selected-for-delete":"",ee.id===K?"is-active":""].filter(Boolean).join(" "),"aria-pressed":yt?bt:void 0,onClick:()=>{if(yt){rC(ee);return}V(""),Q(ee.id),B("basic")},children:[yt&&o.jsx("span",{className:`aw-select-marker${bt?" is-checked":""}`,"aria-hidden":"true"}),o.jsxs("span",{className:"aw-agent-copy",children:[o.jsxs("span",{className:"aw-agent-name-row",children:[o.jsx("strong",{children:ee.draft.name||_("agentSelector.unnamedAgent")}),o.jsx("span",{className:`aw-draft-badge${(qe==null?void 0:qe.status)==="running"?" is-deploying":""}`,children:(qe==null?void 0:qe.status)==="running"?_("myAgents.deploying"):_("myAgents.draft")})]}),o.jsx("small",{children:ee.deploymentTarget?_("agentWorkspace.updatePending"):_("agentWorkspace.notPublished")})]}),o.jsx(wO,{"aria-hidden":!0})]},ee.id)}),Bt.map(ee=>{const Ie=ee.runtimeId?Al.get(ee.runtimeId):void 0,qe=ee.runtimeId?xc.get(ee.runtimeId):void 0,bt=ci.has(ee.id),hn=ee.canDelete===!0,it=(Ie==null?void 0:Ie.status)==="running"?{label:_("myAgents.deploying"),className:" is-deploying"}:(Ie==null?void 0:Ie.status)==="error"?{label:_("agentWorkspace.failed"),className:" is-error"}:(Ie==null?void 0:Ie.status)==="cancelled"?{label:_("agentWorkspace.cancelled"),className:" is-muted"}:qe?{label:_("agentWorkspace.updatePending"),className:""}:null,si=(Ie==null?void 0:Ie.status)==="running"?_("agentWorkspace.updatingDeployment"):qe?_("agentWorkspace.updatePending"):ee.remote?ee.host||_("agentWorkspace.remoteAgent"):_("agentWorkspace.localAgent"),da=["aw-agent-item","aw-agent-item--sortable",ee.id===R?"is-active":"",yt?"is-selecting":"",bt?"is-selected-for-delete":"",yt&&!hn?"is-selection-disabled":"",ee.id===_n?"is-dragging":"",ee.id===at&&ee.id!==_n?`is-drop-target is-drop-${ke}`:""].filter(Boolean).join(" ");return o.jsxs("button",{type:"button",draggable:!!w&&!yt,className:da,"aria-pressed":yt?bt:void 0,"aria-keyshortcuts":w?"Alt+ArrowUp Alt+ArrowDown":void 0,onDragStart:ni=>{w&&(xa.current=!0,He(ee.id),ni.dataTransfer.effectAllowed="move",ni.dataTransfer.setData("text/plain",ee.id))},onDragEnter:ni=>{iC(ni,ee.id)},onDragOver:ni=>{!_n||_n===ee.id||(ni.preventDefault(),ni.dataTransfer.dropEffect="move",iC(ni,ee.id))},onDragLeave:ni=>{const Is=ni.relatedTarget;Is instanceof Node&&ni.currentTarget.contains(Is)||at===ee.id&&we("")},onDrop:ni=>{ni.preventDefault();const Is=ni.dataTransfer.getData("text/plain")||_n;nC(Is,ee.id,ke),He(""),we(""),Ge("before")},onDragEnd:()=>{He(""),we(""),Ge("before"),window.setTimeout(()=>{xa.current=!1},0)},onKeyDown:ni=>{ni.altKey&&(ni.key==="ArrowUp"?(ni.preventDefault(),Zm(ee.id,-1)):ni.key==="ArrowDown"&&(ni.preventDefault(),Zm(ee.id,1)))},onClick:ni=>{if(yt){ni.preventDefault(),p0(ee);return}if(xa.current){ni.preventDefault(),xa.current=!1;return}Q(""),V(ee.id),B("basic"),E(ee.id)},children:[yt&&o.jsx("span",{className:`aw-select-marker${bt?" is-checked":""}`,"aria-hidden":"true"}),o.jsxs("span",{className:"aw-agent-copy",children:[o.jsxs("span",{className:"aw-agent-name-row",children:[o.jsx("strong",{children:ee.label}),ee.currentVersion!=null&&o.jsxs("span",{className:"aw-version-badge",children:["v",ee.currentVersion]}),it&&o.jsx("span",{className:`aw-draft-badge${it.className}`,children:it.label})]}),o.jsx("small",{children:si})]}),o.jsx(wO,{"aria-hidden":!0})]},ee.id)})]})}),o.jsx("div",{className:"aw-list-count",children:_("agentWorkspace.totalCount",{count:I==="library"?e.length+qh:ca.length})})]}),I==="evaluation"&&zn?o.jsx(wLt,{group:zn,agents:e,cases:Oa,onChange:hu,onRun:aC}):I==="evaluation"?o.jsx("main",{className:"aw-main aw-empty-selection",children:o.jsx("p",{children:_("agentWorkspace.noEvaluationGroupSelected")})}):!ce&&!hi&&!Bi?o.jsx("main",{className:"aw-main aw-empty-selection",children:o.jsx("p",{children:_("agentWorkspace.noAgentSelected")})}):o.jsxs("main",{className:`aw-main${qn?" is-deploying":""}${y?" resource-page":""}`,children:[ce&&!Kn&&s&&o.jsx("div",{className:"aw-detail-loading",role:"status","aria-live":"polite",children:o.jsxs("div",{className:"aw-detail-loading-card",children:[o.jsx("span",{className:"loading-gap-spinner","aria-hidden":"true"}),o.jsxs("span",{children:[o.jsx("strong",{children:_("agentWorkspace.loadingAgent")}),o.jsx("small",{children:_("agentWorkspace.loadingAgentDescription")})]})]})}),M==="integrations"&&re&&o.jsx("div",{className:"aw-detail-loading",role:"status","aria-live":"polite",children:o.jsxs("div",{className:"aw-detail-loading-card",children:[o.jsx("span",{className:"loading-gap-spinner","aria-hidden":"true"}),o.jsxs("span",{children:[o.jsx("strong",{children:_("agentWorkspace.probingIntegration")}),o.jsx("small",{children:_("agentWorkspace.probingIntegrationDescription")})]})]})}),o.jsx(pE,{className:"aw-agent-detail",title:gn,description:tn.description||_(s||y&&!kt?"agentWorkspace.loadingAgentInfo":"common.noDescription"),identitySeed:gn,backLabel:_("agentWorkspace.backToAgentList"),onBack:y?x:void 0,meta:o.jsxs(o.Fragment,{children:[uo!=null&&o.jsxs("span",{className:"aw-agent-meta",children:["v",uo]}),hi&&o.jsx("span",{className:"aw-agent-meta",children:_("myAgents.draft")}),wc&&o.jsx("span",{className:"aw-agent-meta",children:_("agentWorkspace.updatePending")}),!ce&&!hi&&Bi&&o.jsx("span",{className:"aw-agent-meta",children:Bi.label})]}),actionsClassName:"aw-head-actions",bodyClassName:"aw-agent-detail__body",actions:hi||wc||ce!=null&&ce.canDelete?o.jsxs(o.Fragment,{children:[(hi||wc)&&o.jsxs(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,onClick:()=>{const ee=hi??wc;ee&&Zi(ee)},disabled:Ot,"aria-label":_("myAgents.deleteDraft"),title:_("myAgents.deleteDraft"),children:[o.jsx(ym,{"aria-hidden":!0}),o.jsx("span",{children:_("myAgents.deleteDraft")})]}),(ce==null?void 0:ce.canDelete)&&o.jsxs(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,onClick:()=>void g0(ce),disabled:Ot,"aria-label":_("agentWorkspace.deleteAgent"),title:_("agentWorkspace.deleteAgent"),children:[o.jsx(ym,{"aria-hidden":!0}),o.jsx("span",{children:_(Ot?"common.deleting":"agentWorkspace.deleteAgent")})]})]}):void 0,sections:za.map(ee=>{var Ie,qe,bt,hn;return{key:ee.id,label:ee.label,disabled:qn,content:ee.id===M?o.jsxs(o.Fragment,{children:[Mt&&lr&&o.jsx("div",{className:`aw-detail-deployment${qn?" is-running":""}`,children:o.jsx(gLt,{task:Mt,onReturnToEdit:qi&&L?()=>L(qi):void 0})}),o.jsxs("div",{className:"aw-content",children:[M==="basic"&&o.jsxs("div",{className:"aw-basic-stack",children:[Le&&o.jsx(Nb,{className:"aw-detail-fetch-alert",color:"warning",variant:"soft",title:_("agentWorkspace.partialInfoUnavailable"),description:_("agentWorkspace.upgradeRuntimeForDetails")}),(ut&&!Le||wt)&&o.jsx(Nb,{className:"aw-detail-fetch-alert",color:"danger",variant:"soft",title:_("agentWorkspace.detailLoadFailed"),description:_("agentWorkspace.detailLoadFailedDescription"),actions:o.jsx(Ht,{type:"button",color:"danger",variant:"soft",size:"sm",pill:!1,onClick:()=>ye(it=>it+1),children:_("common.retry")})}),ce&&Lt&&!Lt.canUpdate&&o.jsxs("div",{className:"aw-update-recovery-notice",role:Lt.recoveryStatus==="preparing"?"status":"alert",children:[o.jsx("strong",{children:Lt.recoveryStatus==="preparing"?_("agentWorkspace.restoringUpdateConfig"):_("agentWorkspace.updateConfigUnavailable")}),pn&&o.jsx("span",{children:pn}),yn.map(it=>o.jsx("span",{children:it},it))]}),o.jsxs("section",{className:"aw-deployment-panel aw-settings-card",children:[o.jsx("div",{className:"aw-section-head",children:o.jsxs("div",{children:[o.jsx("h3",{children:_("agentWorkspace.deploymentConfig")}),o.jsx("p",{children:_("agentWorkspace.deploymentConfigDescription")})]})}),o.jsxs("dl",{className:"aw-readonly-config",children:[o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.runtimeStatus")}),o.jsxs("dd",{className:(q==null?void 0:q.status.toLowerCase())==="ready"?"is-ready":void 0,children:[(q==null?void 0:q.status.toLowerCase())==="ready"&&o.jsx("span",{className:"aw-status-dot"}),(q==null?void 0:q.status)||_("agentWorkspace.loading")]})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.deploymentRegion")}),o.jsx("dd",{children:(q==null?void 0:q.region)||(ce==null?void 0:ce.region)||(Mt==null?void 0:Mt.region)||_("agentWorkspace.notAvailable")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.networkAccess")}),o.jsx("dd",{children:q!=null&&q.networkTypes.length?q.networkTypes.join(" / "):_("agentWorkspace.notAvailable")})]})]})]}),o.jsxs("section",{className:"aw-canvas-card",children:[o.jsx("div",{className:"aw-card-head",children:o.jsx("strong",{children:_("agentWorkspace.executionFlow")})}),o.jsx("div",{className:"aw-canvas",children:o.jsx(US,{draft:tn,direction:"horizontal",selectedPath:[],onSelect:()=>{},onAdd:()=>{},onInsert:()=>{},onDelete:()=>{},readOnly:!0,interactivePreview:!0},Xm)})]}),o.jsxs("section",{className:"aw-details-card",children:[o.jsx("div",{className:"aw-card-head",children:o.jsx("strong",{children:_("agentWorkspace.details")})}),o.jsxs("dl",{className:"aw-facts",children:[o.jsxs("div",{children:[o.jsx("dt",{children:_("agentSelector.model")}),o.jsx("dd",{children:NB(Kn==null?void 0:Kn.model)||tn.modelName||_("agentWorkspace.notAvailable")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.agentCountLabel")}),o.jsx("dd",{children:Kn!=null&&Kn.graph?_je(Kn.graph):Nje(tn)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentSelector.tools")}),o.jsx("dd",{className:"aw-fact-badges",children:ot.length?ot.map(it=>o.jsx("span",{children:it},it)):_("agentWorkspace.none")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentSelector.skills")}),o.jsx("dd",{className:"aw-fact-badges",children:dn===null?_("agentSelector.previewUnsupported"):dn.length?dn.map(it=>o.jsx("span",{children:it},it)):_("agentWorkspace.none")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("systemInfo.currentVersion")}),o.jsx("dd",{children:uo!=null?`v${uo}`:_("agentWorkspace.notAvailable")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentSelector.status")}),o.jsx("dd",{children:hi?_("myAgents.draft"):(Mt==null?void 0:Mt.status)==="error"?_("agentWorkspace.deploymentFailed"):(Mt==null?void 0:Mt.status)==="cancelled"?_("agentWorkspace.cancelled"):wc?_("agentWorkspace.updatePending"):o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"aw-status-dot"}),_("skillCenter.status.available")]})})]})]})]}),o.jsxs("section",{className:"aw-sidecar-panel aw-settings-card","aria-label":_("agentWorkspace.selectedOptimizations"),children:[o.jsx("div",{className:"aw-section-head",children:o.jsxs("div",{children:[o.jsx("h3",{children:_("agentWorkspace.selectedOptimizations")}),o.jsx("p",{children:_("agentWorkspace.selectedOptimizationsDescription")})]})}),o.jsxs("dl",{className:"aw-readonly-config",children:[o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.configurationStatus")}),o.jsx("dd",{className:fn!=null&&fn.enabled?"is-ready":void 0,children:fn?fn.enabled?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"aw-status-dot"}),_("skillCenter.status.enabled")]}):_("skillCenter.status.inactive"):_("agentWorkspace.notRecorded")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.optimizationProfile")}),o.jsx("dd",{children:fn?Zst(fn.profile):_("agentWorkspace.legacyConfigMissing")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.selectedOptimizations")}),o.jsx("dd",{className:"aw-fact-badges",children:fn?ti.length?ti.map(it=>o.jsx("span",{children:x2(it)},it)):_("agentWorkspace.noneSelected"):_("agentWorkspace.legacyConfigMissing")})]})]})]})]}),M==="usage"&&(ce==null?void 0:ce.runtimeId)&&o.jsxs("section",{className:"aw-usage","aria-busy":ei,children:[o.jsx("div",{className:"aw-usage-intro",children:o.jsx("h3",{children:_("agentWorkspace.usageOverview")})}),ei&&!vs&&o.jsx("div",{className:"aw-usage-state",role:"status","aria-live":"polite",children:o.jsx(kn,{as:"span",children:_("agentWorkspace.loadingUsage")})}),No&&o.jsxs("div",{className:"aw-usage-state is-error",role:"alert",children:[o.jsx("span",{children:No}),o.jsx("button",{type:"button",onClick:()=>ao(it=>it+1),children:_("common.retry")})]}),!ei&&!No&&!vs&&!Pi&&o.jsx("div",{className:"aw-usage-state",children:_("agentWorkspace.usageUnavailable")}),vs&&o.jsxs(o.Fragment,{children:[o.jsxs("dl",{className:"aw-usage-summary","aria-label":_("agentWorkspace.usageSummary"),children:[o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.totalCalls")}),o.jsx("dd",{children:vs.totalInvocations.toLocaleString(P.resolvedLanguage??P.language)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:_("agentWorkspace.userCount")}),o.jsx("dd",{children:vs.totalUsers.toLocaleString(P.resolvedLanguage??P.language)})]})]}),o.jsxs("div",{className:"aw-usage-users-head",children:[o.jsx("h3",{children:_("agentWorkspace.userDetails")}),ei&&o.jsx(kn,{as:"span",role:"status","aria-live":"polite",children:_("agentWorkspace.refreshing")})]}),vs.users.length===0?o.jsx("div",{className:"aw-usage-state",children:_("agentWorkspace.noUsage")}):o.jsx("div",{className:"aw-usage-table-wrap",children:o.jsxs("table",{className:"aw-usage-table",children:[o.jsx("caption",{children:_("agentWorkspace.usageUserList")}),o.jsx("thead",{children:o.jsxs("tr",{children:[o.jsx("th",{scope:"col",children:_("agentWorkspace.user")}),o.jsx("th",{scope:"col",children:_("agentWorkspace.callCount")}),o.jsx("th",{scope:"col",children:_("agentWorkspace.lastUsed")})]})}),o.jsx("tbody",{children:vs.users.map(it=>o.jsxs("tr",{children:[o.jsxs("td",{children:[o.jsx("strong",{children:it.displayName||it.userId||_("agentWorkspace.unknownUser")}),it.displayName&&it.userId&&o.jsx("small",{title:it.userId,children:it.userId})]}),o.jsx("td",{children:it.invocationCount.toLocaleString(P.resolvedLanguage??P.language)}),o.jsx("td",{children:o.jsx("time",{dateTime:it.lastUsedAt,children:Y5t(it.lastUsedAt,P.resolvedLanguage??P.language,_)})})]},it.userId))})]})}),vs.totalPages>1&&o.jsxs("nav",{className:"aw-usage-pagination","aria-label":_("agentWorkspace.usagePagination"),children:[o.jsx("button",{type:"button",disabled:ei||vs.page<=1,onClick:()=>_o(it=>Math.max(1,it-1)),children:_("common.previousPage")}),o.jsx("span",{"aria-live":"polite",children:_("agentWorkspace.pageOf",{page:vs.page,total:vs.totalPages})}),o.jsx("button",{type:"button",disabled:ei||vs.page>=vs.totalPages,onClick:()=>_o(it=>it+1),children:_("common.nextPage")})]})]})]}),M==="versions"&&o.jsxs("section",{className:"aw-version-stack",children:[o.jsxs("div",{className:"aw-integration-intro",children:[o.jsx("h3",{children:_("agentWorkspace.githubVersions")}),o.jsx("p",{children:(Ie=Oe==null?void 0:Oe.cicd)!=null&&Ie.enabled?_("agentWorkspace.githubVersionsDescription"):_("agentWorkspace.currentVersionOnly")})]}),Y&&o.jsx("div",{className:"aw-case-empty",children:_("agentWorkspace.loadingVersions")}),Te&&o.jsxs("div",{className:"aw-integration-error",role:"alert",children:[o.jsx("span",{children:Te}),(ce==null?void 0:ce.runtimeId)&&o.jsx("button",{type:"button",onClick:()=>void o2(ce.runtimeId??"").then($e),children:_("common.retry")})]}),!Y&&!Te&&o.jsxs("div",{className:"aw-version-list",children:[(Oe==null?void 0:Oe.githubSyncError)&&o.jsx("div",{className:"aw-integration-error",role:"alert",children:o.jsx("span",{children:Oe.githubSyncError})}),(Oe==null?void 0:Oe.latestSourceRuntimeStatus)&&Oe.latestSourceRuntimeStatus!=="published"&&((qe=Oe.versions[0])==null?void 0:qe.commitSha)&&Oe.versions[0].commitSha!==Oe.currentCommitSha&&o.jsx("div",{className:"aw-integration-notice",role:"status",children:o.jsxs("span",{children:[_("agentWorkspace.sourceMergedRuntimeStill"),Cte(Oe.latestSourceRuntimeStatus,_),_("agentWorkspace.currentProductionVersionHint")]})}),Oe!=null&&Oe.versions.length?Oe.versions.map(it=>{var Ro;const si=it.commitSha??"",da=it.runtimeStatus??it.status,ni=it.changeType==="rollback",Is=!!((Ro=Oe.cicd)!=null&&Ro.enabled)&&!!si&&!ni&&si!==Oe.currentCommitSha;return o.jsxs("article",{className:"aw-version-row",children:[o.jsxs("div",{children:[o.jsx("strong",{children:J5t(it,_)}),o.jsx("small",{children:it.createdAt||_("agentWorkspace.noTime")})]}),o.jsxs("div",{children:[o.jsx("span",{children:_("agentWorkspace.prLink")}),it.pullRequestUrl?o.jsx("a",{href:it.pullRequestUrl,target:"_blank",rel:"noopener noreferrer",children:_("agentWorkspace.viewPr")}):o.jsx("em",{children:_("agentWorkspace.noPr")})]}),o.jsxs("div",{children:[o.jsx("span",{children:_("agentWorkspace.author")}),o.jsx("em",{children:it.author||"Studio"})]}),o.jsxs("div",{children:[o.jsx("span",{children:_("agentWorkspace.publishStatus")}),o.jsx("em",{children:Cte(da,_)})]}),o.jsxs("div",{className:"aw-version-actions",children:[o.jsx("button",{type:"button",disabled:!Is||nt===si,onClick:()=>void fu(it),children:_(nt===si?"agentWorkspace.rollingBack":"agentWorkspace.rollbackToVersion")}),it.workflowRunUrl&&o.jsx("a",{href:it.workflowRunUrl,target:"_blank",rel:"noopener noreferrer",children:_("agentWorkspace.viewRelease")})]})]},`${it.version}-${si||it.createdAt}`)}):o.jsxs("article",{className:"aw-version-row",children:[o.jsxs("div",{children:[o.jsx("strong",{children:uo!=null?`v${uo}`:_("agentWorkspace.noVersion")}),o.jsx("small",{children:(q==null?void 0:q.updatedAt)||_("agentWorkspace.noTime")})]}),o.jsx("p",{children:_("agentWorkspace.currentVersionOnly")})]})]})]}),M==="integrations"&&o.jsxs("div",{className:"aw-integration-stack",children:[o.jsxs("div",{className:"aw-integration-intro",children:[o.jsx("h3",{children:_("agentWorkspace.integrationMethods")}),o.jsx("p",{children:_("agentWorkspace.integrationDescription")})]}),me&&o.jsxs("div",{className:"aw-integration-error",role:"alert",children:[o.jsx("span",{children:me}),o.jsx("button",{type:"button",onClick:()=>J(it=>it+1),children:_("common.retry")})]}),!me&&o.jsxs("div",{className:"aw-integration-body",children:[o.jsxs("div",{className:`aw-integration-protocol-tabs${oe==="a2a"?" is-a2a":""}`,role:"tablist","aria-label":_("agentWorkspace.integrationProtocol"),children:[o.jsx("span",{className:"aw-integration-protocol-slider","aria-hidden":"true"}),cw.map((it,si)=>o.jsx("button",{type:"button",id:`integration-${it.id}-tab`,role:"tab","aria-selected":oe===it.id,"aria-controls":`integration-${it.id}-panel`,tabIndex:oe===it.id?0:-1,onClick:()=>Xh(it.id),onKeyDown:da=>{var Ro;if(!["ArrowLeft","ArrowRight","Home","End"].includes(da.key))return;da.preventDefault();const ni=da.key==="Home"?0:da.key==="End"?cw.length-1:(si+(da.key==="ArrowRight"?1:-1)+cw.length)%cw.length,Is=cw[ni];Xh(Is.id),(Ro=document.getElementById(`integration-${Is.id}-tab`))==null||Ro.focus()},children:it.label},it.id))]}),oe==="api-server"?o.jsx(Ate,{protocol:"api-server",title:"API Server",available:Hn,fields:[{label:"Agent",value:Hn?((bt=jr==null?void 0:jr.apiApps)==null?void 0:bt.join("、"))??"":""},{label:_("agentWorkspace.discoveryEndpoint"),value:Hn?lL(Nl,"/list-apps"):""},{label:_("agentWorkspace.invocationEndpoint"),value:Hn?lL(Nl,"/run_sse"):""},{label:_("agentWorkspace.authentication"),value:Hn?Ete(q==null?void 0:q.authType,_):""},{label:"API Key",value:o.jsx(Tte,{available:Hn,authType:q==null?void 0:q.authType,value:Oc,visible:De&&!!Oc,loading:Re,error:Ce,onToggle:()=>void Yh()})}],example:Hn?eLt(Nl,of,q==null?void 0:q.authType):""}):o.jsx(Ate,{protocol:"a2a",title:"A2A",available:Va,fields:[{label:"Agent",value:((hn=jr==null?void 0:jr.a2a)==null?void 0:hn.name)??""},{label:"Agent Card",value:Va?lL(Nl,"/.well-known/agent-card.json"):""},{label:_("agentWorkspace.invocationUrl"),value:be},{label:_("agentWorkspace.authentication"),value:Va?Ete(q==null?void 0:q.authType,_):""},{label:"API Key",value:o.jsx(Tte,{available:Va,authType:q==null?void 0:q.authType,value:Oc,visible:De&&!!Oc,loading:Re,error:Ce,onToggle:()=>void Yh()})}],example:Va?tLt(be,q==null?void 0:q.authType):""})]})]}),M==="evaluations"&&o.jsxs("section",{className:"aw-cases",children:[(ce==null?void 0:ce.runtimeId)&&o.jsx("div",{className:"aw-case-summary",children:["good","bad"].map(it=>{const si=cLt(Ki,it),da=Oa.filter(Is=>Is.kind===it).length,ni=qs?da:(si==null?void 0:si.itemCount)??da;return o.jsxs("button",{type:"button",onClick:()=>lf(it),children:[o.jsx("strong",{children:ni}),o.jsx("span",{children:_(it==="good"?"agentWorkspace.goodCases":"agentWorkspace.badCases")})]},it)})}),o.jsxs("div",{className:"aw-case-filter-bar",children:[o.jsxs("div",{className:"aw-case-filter-stack",children:[o.jsx("div",{className:"aw-case-filters","aria-label":_("agentWorkspace.caseResultFilter"),children:["good","bad"].map(it=>o.jsx("button",{type:"button",className:ht===it?"is-active":"","aria-pressed":ht===it,onClick:()=>ct(it),children:_(it==="good"?"agentWorkspace.goodCase":"agentWorkspace.badCase")},it))}),o.jsx("div",{className:"aw-case-source-filters","aria-label":_("agentWorkspace.feedbackSourceFilter"),children:["auto","user"].map(it=>o.jsx("button",{type:"button",className:qt===it?"is-active":"","aria-pressed":qt===it,onClick:()=>ue(it),children:_(it==="auto"?"agentWorkspace.automaticFeedback":"agentWorkspace.manualFeedback")},it))})]}),o.jsxs("label",{className:"aw-case-search",children:[o.jsx(F_,{"aria-hidden":!0}),o.jsx("input",{type:"search",value:Gt,onChange:it=>Rt(it.currentTarget.value),placeholder:_("agentWorkspace.searchCasesPlaceholder"),"aria-label":_("agentWorkspace.searchCases")})]})]}),Zh&&o.jsx("div",{className:`aw-case-toolbar${xe?" is-active":""}`,children:xe?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"aw-selection-count",children:_("agentWorkspace.selectedCaseCount",{count:id.length})}),o.jsx("button",{type:"button",onClick:Jh,disabled:Sc.length===0||jn,children:_("agentWorkspace.selectAllVisible")}),o.jsx("button",{type:"button",className:"aw-selection-danger",onClick:()=>void Lr(id),disabled:id.length===0||jn,children:_(jn?"common.deleting":"agentWorkspace.deleteSelected")}),o.jsx("button",{type:"button",onClick:h0,disabled:jn,children:_("common.cancel")})]}):o.jsx("button",{type:"button",onClick:()=>{ys(""),Ze(!0)},disabled:Sc.length===0||jn,children:_("agentWorkspace.selectCases")})}),Gi&&o.jsx("div",{className:"aw-delete-error",role:"alert",children:Gi}),o.jsx("div",{ref:Xi,children:o.jsx(xLt,{cases:Sc,loading:er&&Sc.length===0,error:fr,notice:ms,runtimeBacked:!!(ce!=null&&ce.runtimeId),selectionMode:xe,selectedCaseIds:Xt,focusedCaseId:Ti,expandedCaseIds:la,deleting:jn,canDelete:Zh,onOpenCase:kc,onToggleCase:Ym,onToggleExpanded:Sr,onDeleteCase:it=>void Lr([it]),onRetry:()=>As(it=>it+1)})})]}),M==="optimizations"&&o.jsxs("section",{className:"aw-optimizations",children:[o.jsxs("div",{className:"aw-optimization-intro",children:[o.jsx("h3",{children:_("agentWorkspace.optimizations")}),o.jsx("p",{children:_("agentWorkspace.optimizationsDescription")})]}),hr?o.jsxs("div",{className:"aw-optimization-state",role:"status",children:[o.jsx("span",{className:"loading-gap-spinner","aria-hidden":"true"}),o.jsx("span",{children:_("agentWorkspace.loadingOptimizations")})]}):Ns?o.jsxs("div",{className:"aw-optimization-state is-error",role:"alert",children:[o.jsx("span",{children:Ns}),o.jsx("button",{type:"button",onClick:()=>sa(it=>it+1),children:_("common.retry")})]}):_s.length>0?o.jsx(yLt,{groups:_s}):o.jsx("div",{className:"aw-optimization-state",children:_("agentWorkspace.noOptimizations")})]})]}),M==="basic"&&(ce||hi)&&o.jsxs("div",{className:"aw-basic-actions",children:[ce&&o.jsxs("button",{type:"button",className:"aw-talk studio-update-action",onClick:()=>C==null?void 0:C(ce),children:[o.jsx(V7e,{"aria-hidden":!0}),o.jsx("span",{children:_("agentWorkspace.chat")})]}),o.jsxs("span",{className:`aw-update-wrap${vn?" is-disabled":""}`,tabIndex:vn?0:void 0,"aria-describedby":vn?Yi:void 0,children:[o.jsx("button",{type:"button",className:"aw-update studio-update-action",disabled:!!vn,"aria-busy":ze||void 0,"aria-describedby":vn?Yi:void 0,onClick:()=>hi?L==null?void 0:L(hi):Lt?A(Lt):void 0,children:ze?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"loading-gap-spinner aw-update-spinner","aria-hidden":"true"}),o.jsx("span",{children:_("agentWorkspace.preparing")})]}):_(hi||wc?"agentWorkspace.continueEditing":"agentWorkspace.update")}),vn&&o.jsx("span",{id:Yi,className:"aw-update-disabled-reason",role:"tooltip",children:vn})]})]})]}):null}}),activeSectionKey:M,navigationLabel:_("agentWorkspace.agentDetails"),onSectionChange:B})]})]}),I==="evaluation"&&o.jsx("div",{className:"aw-evaluation-glass",role:"status",children:o.jsx("span",{children:_("agentWorkspace.comingSoon")})})]})]}),di&&o.jsx(gc,{variant:"danger",title:di.title,description:di.description,confirmLabel:Ot?_("common.deleting"):di.confirmLabel,closeLabel:_("agentWorkspace.closeDeleteConfirmation"),busy:Ot,onCancel:()=>Ei(null),onConfirm:()=>void y1()})]})}function yLt({groups:e}){const{t}=Ae("ui");return o.jsx("div",{className:"aw-optimization-table-wrap",children:o.jsxs("table",{className:"aw-optimization-table",children:[o.jsx("thead",{children:o.jsxs("tr",{children:[o.jsx("th",{scope:"col",children:t("agentWorkspace.fixPriority")}),o.jsx("th",{scope:"col",children:t("agentWorkspace.suggestedModule")}),o.jsx("th",{scope:"col",children:t("agentWorkspace.suggestionAndReason")})]})}),o.jsx("tbody",{children:e.map(n=>o.jsxs("tr",{children:[o.jsx("td",{children:o.jsx("span",{className:`aw-priority is-${n.priority}`,children:aLt(n.priority,t)})}),o.jsx("td",{children:o.jsx("span",{className:"aw-optimization-module",children:lLt(n,t)})}),o.jsx("td",{children:o.jsx("ul",{className:"aw-optimization-list",children:n.items.map(i=>o.jsxs("li",{children:[o.jsx("strong",{children:i.suggestion}),o.jsx("p",{children:i.reason})]},`${i.suggestion}:${i.reason}`))})})]},`${n.priority}:${n.module}:${n.customModule??""}`))})]})})}function vLt(){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"M4.5 7h15"}),o.jsx("path",{d:"M9 7V4.8h6V7"}),o.jsx("path",{d:"m6.5 7 .8 12h9.4l.8-12"}),o.jsx("path",{d:"M10 10.5v5M14 10.5v5"})]})}function xLt({cases:e,loading:t=!1,error:n="",notice:i="",runtimeBacked:r=!1,selectionMode:s=!1,selectedCaseIds:a,focusedCaseId:l="",expandedCaseIds:c,deleting:u=!1,canDelete:d=!1,onOpenCase:f,onToggleCase:h,onToggleExpanded:m,onDeleteCase:g,onRetry:b}){const{t:v,i18n:y}=Ae("ui");return o.jsxs("div",{className:"aw-case-table",children:[o.jsxs("div",{className:"aw-case-row aw-case-row-head",children:[o.jsx("span",{children:v("agentWorkspace.userInput")}),o.jsx("span",{children:v("agentWorkspace.agentOutput")}),o.jsx("span",{children:v("agentWorkspace.score")}),o.jsx("span",{children:v("agentWorkspace.scoreReason")}),o.jsx("span",{className:"aw-case-action-head",children:v("skillCenter.actions")})]}),t?o.jsx("div",{className:"aw-case-empty",children:v("agentWorkspace.loadingEvaluationSet")}):n?o.jsxs("div",{className:"aw-case-empty aw-case-error",children:[o.jsx("span",{children:n}),b&&o.jsx("button",{type:"button",onClick:b,children:v("common.retry")})]}):i?o.jsx("div",{className:"aw-case-empty",children:i}):e.length===0?o.jsx("div",{className:"aw-case-empty",children:v(r?"agentWorkspace.noFeedbackCases":"agentWorkspace.noMatchingCases")}):e.map(x=>{var T,j;const O=x.id.startsWith("local:"),w=(a==null?void 0:a.has(x.id))??!1,k=(c==null?void 0:c.has(x.id))??!1,E=x.output.length+x.referenceOutput.length>220||(((T=x.reason)==null?void 0:T.length)??0)>120,C=d&&!O,N=!!(x.comment&&x.comment.trim()!==((j=x.reason)==null?void 0:j.trim()));return o.jsxs("div",{className:["aw-case-row",l===x.id?"is-focused":"",s?"is-selecting":"",w?"is-selected-for-delete":""].filter(Boolean).join(" "),role:"row",tabIndex:0,"aria-selected":s?w:void 0,onClick:()=>{if(s){C&&(h==null||h(x));return}f==null||f(x)},onKeyDown:A=>{A.target===A.currentTarget&&(A.key!=="Enter"&&A.key!==" "||(A.preventDefault(),s?C&&(h==null||h(x)):f==null||f(x)))},children:[o.jsxs("div",{className:"aw-case-text aw-case-cell","data-label":v("agentWorkspace.userInput"),children:[o.jsxs("span",{className:"aw-case-title-line",children:[s&&C&&o.jsx("span",{className:`aw-select-marker${w?" is-checked":""}`,"aria-hidden":"true"}),o.jsx("strong",{title:x.input,children:x.input||v("agentWorkspace.noUserInput")})]}),N&&o.jsxs("small",{title:x.comment,children:[v("agentWorkspace.note"),x.comment]}),o.jsx("small",{className:"aw-case-time",children:rLt(x.createdAt,y.resolvedLanguage??y.language,v)}),(x.userId||x.sessionId)&&o.jsx("small",{title:[x.userId,x.sessionId].filter(Boolean).join(" · "),children:[x.userId,x.sessionId].filter(Boolean).join(" · ")})]}),o.jsxs("div",{className:`aw-case-output aw-case-cell${k?" is-expanded":""}`,"data-label":v("agentWorkspace.agentOutput"),children:[o.jsx("p",{className:"aw-case-output-preview",title:x.output,children:x.output||v("agentWorkspace.noVisibleResponse")}),x.referenceOutput&&o.jsxs("small",{className:"aw-case-output-preview",title:x.referenceOutput,children:[v("agentWorkspace.reference"),": ",x.referenceOutput]}),E&&o.jsx("button",{type:"button",className:"aw-case-expand",onClick:A=>{A.stopPropagation(),m==null||m(x.id)},children:v(k?"common.collapse":"common.expand")})]}),o.jsx("div",{className:"aw-case-score aw-case-cell","data-label":v("agentWorkspace.score"),children:sLt(x,v)}),o.jsx("div",{className:`aw-case-reason aw-case-cell${k?" is-expanded":""}`,"data-label":v("agentWorkspace.scoreReason"),children:o.jsx("p",{title:x.reason||void 0,children:x.reason||"—"})}),o.jsx("div",{className:"aw-case-actions aw-case-cell","data-label":v("skillCenter.actions"),children:C&&o.jsx("button",{type:"button",className:"aw-case-delete",onClick:A=>{A.stopPropagation(),g==null||g(x)},disabled:u,title:v("agentWorkspace.deleteFeedbackCase"),"aria-label":v("agentWorkspace.deleteFeedbackCase"),children:o.jsx(vLt,{})})})]},x.id)})]})}function wLt({group:e,agents:t,cases:n,onChange:i,onRun:r}){const{t:s}=Ae("ui"),[a,l]=p.useState("config"),c=e.agentIds.map(h=>t.find(m=>m.id===h)).filter(h=>!!h),u=["回答质量","事实准确性","工具调用","响应效率"];p.useEffect(()=>l("config"),[e.id]);const d=h=>{i({...e,agentIds:e.agentIds.includes(h)?e.agentIds.filter(m=>m!==h):[...e.agentIds,h]})},f=h=>{i({...e,metrics:e.metrics.includes(h)?e.metrics.filter(m=>m!==h):[...e.metrics,h]})};return o.jsxs("main",{className:"aw-main",children:[o.jsxs("div",{className:"aw-eval-head",children:[o.jsxs("div",{children:[o.jsxs("div",{className:"aw-agent-title-row",children:[o.jsx("h2",{children:Yw(e.name,s)}),o.jsx("span",{children:s("agentWorkspace.evaluationGroup")})]}),o.jsx("p",{children:s("agentWorkspace.evaluationGroupStats",{agents:c.length,caseSet:Yw(e.caseSet,s),runs:e.history.length})})]}),o.jsxs("button",{type:"button",className:"aw-run",onClick:()=>r(e),disabled:!0,children:[o.jsx(L7e,{"aria-hidden":!0}),s("agentWorkspace.startEvaluation")]})]}),o.jsxs("nav",{className:"aw-agent-tabs","aria-label":s("agentWorkspace.evaluationGroupDetails"),children:[o.jsx("button",{type:"button",className:a==="config"?"is-active":"","aria-pressed":a==="config",onClick:()=>l("config"),disabled:!0,children:s("agentWorkspace.evaluationConfig")}),o.jsx("button",{type:"button",className:a==="history"?"is-active":"","aria-pressed":a==="history",onClick:()=>l("history"),disabled:!0,children:s("agentWorkspace.historyResults")})]}),o.jsx("div",{className:"aw-content",children:a==="config"?o.jsxs("div",{className:"aw-eval-setup",children:[o.jsxs("section",{className:"aw-eval-block",children:[o.jsxs("div",{className:"aw-card-head",children:[o.jsx("strong",{children:s("agentWorkspace.participatingAgents")}),o.jsx("span",{children:s("agentWorkspace.selectedCount",{count:c.length})})]}),o.jsx("div",{className:"aw-eval-agent-grid",children:t.map(h=>o.jsxs("label",{children:[o.jsx("input",{type:"checkbox",checked:e.agentIds.includes(h.id),onChange:()=>d(h.id)}),o.jsxs("span",{children:[o.jsx("strong",{children:h.label}),o.jsx("small",{children:h.remote?s("agentWorkspace.remote"):s("agentWorkspace.local")})]})]},h.id))})]}),o.jsxs("div",{className:"aw-eval-setting-grid",children:[o.jsxs("section",{className:"aw-eval-block",children:[o.jsx("div",{className:"aw-card-head",children:o.jsx("strong",{children:s("agentWorkspace.evaluationResources")})}),o.jsxs("div",{className:"aw-eval-fields",children:[o.jsxs("label",{children:[o.jsx("span",{children:s("agentWorkspace.evaluationSet")}),o.jsxs("select",{value:e.caseSet,onChange:h=>i({...e,caseSet:h.currentTarget.value}),children:[o.jsx("option",{value:"核心回归集",children:s("agentWorkspace.evaluationDefaults.coreSet")}),o.jsx("option",{value:"安全边界集",children:s("agentWorkspace.evaluationDefaults.safetySet")}),o.jsx("option",{value:"工具调用集",children:s("agentWorkspace.evaluationDefaults.toolSet")})]}),o.jsx("small",{children:s("agentWorkspace.caseCount",{count:n.length})})]}),o.jsxs("label",{children:[o.jsx("span",{children:s("agentWorkspace.evaluator")}),o.jsxs("select",{value:e.evaluator,onChange:h=>i({...e,evaluator:h.currentTarget.value}),children:[o.jsx("option",{value:"综合质量评估器",children:s("agentWorkspace.evaluationDefaults.qualityEvaluator")}),o.jsx("option",{value:"事实一致性评估器",children:s("agentWorkspace.evaluationDefaults.factualEvaluator")}),o.jsx("option",{value:"工具调用评估器",children:s("agentWorkspace.evaluationDefaults.toolEvaluator")})]})]}),o.jsxs("label",{children:[o.jsx("span",{children:s("agentWorkspace.concurrency")}),o.jsxs("select",{value:e.concurrency,onChange:h=>i({...e,concurrency:h.currentTarget.value}),children:[o.jsx("option",{value:"2",children:"2"}),o.jsx("option",{value:"4",children:"4"}),o.jsx("option",{value:"8",children:"8"})]})]})]})]}),o.jsxs("section",{className:"aw-eval-block",children:[o.jsxs("div",{className:"aw-card-head",children:[o.jsx("strong",{children:s("agentWorkspace.evaluationMetrics")}),o.jsx("span",{children:s("agentWorkspace.selectedMetricCount",{count:e.metrics.length})})]}),o.jsx("div",{className:"aw-metric-list",children:u.map(h=>o.jsxs("label",{children:[o.jsx("input",{type:"checkbox",checked:e.metrics.includes(h),onChange:()=>f(h)}),o.jsx("span",{children:Yw(h,s)})]},h))})]})]})]}):o.jsxs("section",{className:"aw-eval-history",children:[o.jsx("div",{className:"aw-section-head",children:o.jsxs("div",{children:[o.jsx("h3",{children:s("agentWorkspace.historyResults")}),o.jsx("p",{children:s("agentWorkspace.historyDescription")})]})}),e.history.length===0?o.jsxs("div",{className:"aw-results-empty",children:[o.jsx("strong",{children:s("agentWorkspace.noHistory")}),o.jsx("span",{children:s("agentWorkspace.noHistoryDescription")})]}):o.jsx("div",{className:"aw-history-list",children:e.history.map((h,m)=>o.jsxs("button",{type:"button",children:[o.jsxs("span",{children:[o.jsx("strong",{children:s("agentWorkspace.evaluationRun",{index:e.history.length-m})}),o.jsx("small",{children:s("agentWorkspace.evaluationRunMeta",{time:Yw(h.createdAt,s),agents:c.length})})]}),o.jsxs("span",{className:"aw-history-score",children:[o.jsx("strong",{children:h.score}),o.jsx("small",{children:s("agentWorkspace.overallScore")})]}),o.jsxs("span",{className:"aw-complete",children:[o.jsx(Hu,{}),s("agentWorkspace.completed")]}),o.jsx(wO,{"aria-hidden":!0})]},h.id))})]})})]})}const OLt=5e3,SLt=4;let cL=0;const Nte=[];function jte(e){return e instanceof Error&&e.name==="AbortError"}function kLt(e){return e instanceof Error&&e.name==="TimeoutError"}function ELt(e){return kLt(e)||e instanceof l7&&[500,502,503,504].includes(e.status)}function CLt(e,t){return t!=null&&t.aborted?Promise.reject(t.reason??new DOMException("Request aborted","AbortError")):new Promise((n,i)=>{const r=()=>{globalThis.clearTimeout(s),i((t==null?void 0:t.reason)??new DOMException("Request aborted","AbortError"))},s=globalThis.setTimeout(()=>{t==null||t.removeEventListener("abort",r),n()},e);t==null||t.addEventListener("abort",r,{once:!0})})}async function TLt(e={},t={}){const n=t.request??Px,i=t.wait??CLt;try{return await n(e)}catch(r){if(!ELt(r))throw r;return await i(OLt,e.signal),n(e)}}async function Pje(e){var t;cL>=SLt&&await new Promise(n=>Nte.push(n)),cL+=1;try{return await e()}finally{cL-=1,(t=Nte.shift())==null||t()}}async function ALt(e,t){await Promise.allSettled(e.map(n=>Pje(()=>t(n))))}const _Lt="/web/sandbox/sessions",Rte="/web/sandbox/codex-project-handoff",Ite=3e4,uL=33e4,NLt=6e4,jLt=6e5,uw=15e3,Rf=6e4,RLt=33e4,Pte=3e4,ILt=60*60,Dte=40;function HI(e){const t=e.trim().toLowerCase();return["ready","running","wakeable"].includes(t)?"ready":t}function tz(e){switch(e.trim().toLowerCase()){case"ready":return H("sandbox.status.ready");case"wakeable":return H("sandbox.status.wakeable");case"creating":return H("sandbox.status.creating");case"starting":case"initializing":return H("sandbox.status.starting");case"pending":return H("sandbox.status.pending");case"running":return H("sandbox.status.running");case"failed":case"error":return H("sandbox.status.failed");case"stopped":return H("sandbox.status.stopped");case"expired":return H("sandbox.status.expired");case"deleting":return H("sandbox.status.deleting");case"deleted":return H("sandbox.status.deleted");default:return H("sandbox.status.unknown")}}function es(e){const t=qu(e);return t.has("Accept")||t.set("Accept","application/json"),t}class qI extends Error{constructor(n,i={}){var r;super(n);Ai(this,"code");Ai(this,"retryable");Ai(this,"publicMessage");Ai(this,"httpStatus");this.name="SandboxServiceError",this.code=i.code??"",this.retryable=i.retryable===!0,this.publicMessage=((r=i.publicMessage)==null?void 0:r.trim())||n,this.httpStatus=i.httpStatus}}function Mte(e){return e instanceof qI?e.publicMessage:e instanceof Error&&e.name==="TimeoutError"?H("sandbox.developmentTimeout"):e instanceof TypeError?H("sandbox.developmentDisconnected"):H("sandbox.developmentFailed")}async function ts(e,t){const n=await e.text().catch(()=>"");let i={};try{i=JSON.parse(n)}catch{const d=H("common.fallbackWithHttpStatus",{fallback:t,status:e.status});return new Error(n?H("common.fallbackWithDetail",{fallback:d,detail:n}):d)}const r=i.detail,s=r&&typeof r=="object"?r:i,a=r&&typeof r=="object"&&"message"in r?r.message:r??i.error??i.message,l=typeof a=="string"?a:a==null?"":JSON.stringify(a),c=H("common.fallbackWithHttpStatus",{fallback:t,status:e.status}),u=l?H("common.fallbackWithDetail",{fallback:c,detail:l}):c;return new qI(u,{code:typeof s.code=="string"?s.code:"",retryable:s.retryable===!0,publicMessage:l||c,httpStatus:e.status})}async function Lte(e,t){const n=await e.text().catch(()=>"");try{return JSON.parse(n)}catch{throw new Error(H("sandbox.invalidStudioResponse",{fallback:t}))}}function fg(e,t="codex"){if(!e.sessionId||!e.status)throw new Error(H("sandbox.invalidSession"));return{resourceType:"session",id:e.sessionId,toolName:t,userSessionId:e.userSessionId??"",displayName:e.displayName??"",status:e.status,createdAt:e.createdAt??"",expireAt:e.expireAt??"",persistent:e.persistent!==!1,toolType:e.toolType??"",intelligentDevelopment:e.toolName==="intelligent-development",createdBy:e.createdBy??"",region:e.region??"",isMine:e.isMine===!0,threadId:e.threadId??"",cwd:e.cwd??"",workspaceLocked:e.workspaceLocked===!0,busy:e.busy===!0,...typeof e.model=="string"?{model:e.model}:{},permissions:WI(e.permissions),...e.conversation===void 0?{}:{restoredConversation:Ng(e.conversation)}}}function $te(e,t="codex"){if(!e.snapshotId||!e.status)throw new Error(H("sandbox.invalidSnapshot"));return{resourceType:"snapshot",id:e.snapshotId,snapshotId:e.snapshotId,sourceSessionId:e.sessionId??"",toolName:t,userSessionId:e.userSessionId??"",displayName:e.displayName??"",status:e.status,snapshotStatus:e.snapshotStatus??"Unknown",reason:e.reason??"",createdAt:e.createdAt??"",createdBy:e.createdBy??"",region:e.region??"",isMine:e.isMine===!0}}function Fte(e,t){if((t==null?void 0:t.autoResumeSnapshots)===void 0)return e;const n=new URLSearchParams({autoResumeSnapshots:String(t.autoResumeSnapshots)});return`${e}?${n.toString()}`}const dw={approvalPolicy:"on-request",approvalsReviewer:"user",sandboxMode:"workspace-write",networkAccess:!1};function WI(e){if(!e||typeof e!="object")return{...dw};const t=e,n=t.approvalPolicy,i=t.approvalsReviewer,r=t.sandboxMode;return{approvalPolicy:n==="untrusted"||n==="on-request"||n==="never"?n:dw.approvalPolicy,approvalsReviewer:i==="user"||i==="auto_review"?i:dw.approvalsReviewer,sandboxMode:r==="read-only"||r==="workspace-write"||r==="danger-full-access"?r:dw.sandboxMode,networkAccess:typeof t.networkAccess=="boolean"?t.networkAccess:dw.networkAccess}}function Bte(e){if(!e||typeof e!="object")throw new Error(H("sandbox.invalidSettings"));const t=e;return{threadId:typeof t.threadId=="string"?t.threadId:"",cwd:typeof t.cwd=="string"?t.cwd:"",...typeof t.model=="string"?{model:t.model}:{},workspaceLocked:t.workspaceLocked===!0,busy:t.busy===!0,permissions:WI(t.permissions)}}function Ta(e){return e&&typeof e=="object"&&!Array.isArray(e)?e:void 0}function PLt(e){const t=Ta(e);if(!(!t||typeof t.id!="string"||!t.id))return{id:t.id,displayName:typeof t.displayName=="string"?t.displayName:t.id,description:typeof t.description=="string"?t.description:"",isDefault:t.isDefault===!0}}function DLt(e){const t=Ta(e);if(!(!t||typeof t.id!="string"||!t.id||typeof t.name!="string"||!t.name))return{id:t.id,name:t.name,description:typeof t.description=="string"?t.description:""}}function Dje(e){const t=Ta(e);if(!(!t||typeof t.id!="string"||!t.id))return{id:t.id,...typeof t.name=="string"&&t.name?{name:t.name}:{},preview:typeof t.preview=="string"?t.preview:"",cwd:typeof t.cwd=="string"?t.cwd:"",modelProvider:typeof t.modelProvider=="string"?t.modelProvider:"",createdAt:typeof t.createdAt=="number"&&Number.isFinite(t.createdAt)?t.createdAt:0,updatedAt:typeof t.updatedAt=="number"&&Number.isFinite(t.updatedAt)?t.updatedAt:0,status:typeof t.status=="string"?t.status:"unknown"}}function Ng(e){const t=Ta(e),n=Dje(t==null?void 0:t.thread);if(!t||!n||typeof t.threadId!="string"||!Array.isArray(t.messages))throw new Error(H("sandbox.invalidThreadSnapshot"));const i=t.messages.flatMap(r=>{const s=Ta(r);if(!s||typeof s.id!="string"||s.role!=="user"&&s.role!=="assistant"||typeof s.content!="string"||typeof s.timestamp!="number")return[];const a=Array.isArray(s.skillNames)?s.skillNames.filter(c=>typeof c=="string"&&!!c):[],l=Array.isArray(s.images)?s.images.flatMap(c=>{const u=Ta(c);return!u||typeof u.mimeType!="string"||!u.mimeType.startsWith("image/")||typeof u.data!="string"||!u.data?[]:[{mimeType:u.mimeType,data:u.data,...typeof u.name=="string"&&u.name?{name:u.name}:{},...typeof u.alt=="string"&&u.alt?{alt:u.alt}:{}}]}):[];return[{id:s.id,role:s.role,content:s.content,timestamp:s.timestamp,...a.length?{skillNames:a}:{},...l.length?{images:l}:{}}]});return{thread:n,threadId:t.threadId,messages:i,...typeof t.model=="string"?{model:t.model}:{},...typeof t.cwd=="string"?{cwd:t.cwd}:{},workspaceLocked:t.workspaceLocked===!0,permissions:WI(t.permissions)}}function C8(e){if(!e||typeof e!="object")return;const t=e;if(![t.totalTokens,t.inputTokens,t.cachedInputTokens,t.outputTokens,t.reasoningOutputTokens].some(i=>typeof i!="number"||!Number.isFinite(i)||i<0))return{totalTokens:Math.trunc(t.totalTokens),inputTokens:Math.trunc(t.inputTokens),cachedInputTokens:Math.trunc(t.cachedInputTokens),outputTokens:Math.trunc(t.outputTokens),reasoningOutputTokens:Math.trunc(t.reasoningOutputTokens)}}function MLt(e){const t=C8(e.usage);if(!t||typeof e.turnId!="string")return;const n=C8(e.threadTotal),i=e.modelContextWindow;return{turnId:e.turnId,usage:t,...n?{threadTotal:n}:{},...typeof i=="number"&&Number.isFinite(i)&&i>=0?{modelContextWindow:Math.trunc(i)}:{}}}function LLt(e){return typeof e.id!="string"||e.kind!=="command"&&e.kind!=="file"||typeof e.method!="string"?null:{id:e.id,kind:e.kind,method:e.method,...typeof e.reason=="string"?{reason:e.reason}:{},...typeof e.command=="string"?{command:e.command}:{},...typeof e.cwd=="string"?{cwd:e.cwd}:{},...typeof e.grantRoot=="string"?{grantRoot:e.grantRoot}:{},...e.changes!==void 0?{changes:e.changes}:{},...typeof e.threadId=="string"?{threadId:e.threadId}:{},...typeof e.turnId=="string"?{turnId:e.turnId}:{},...typeof e.itemId=="string"?{itemId:e.itemId}:{}}}async function $Lt(e,t={}){if(!e.body)throw new Error(H("sandbox.emptyConversationResponse"));const n=e.body.getReader(),i=new TextDecoder;let r="",s="";const a=[],l=new Map;let c,u;function d(){var b;const g=c?[...a,c]:a;(b=t.onBlocks)==null||b.call(t,g.map(v=>({...v})))}function f(g){s+=g;const b=a[a.length-1],v=a.length-1,y=[...l.values()].includes(v);(b==null?void 0:b.kind)==="text"&&!y?b.text+=g:a.push({kind:"text",text:g}),d()}function h(g){if(typeof g.id!="string"||g.kind!=="thinking"&&g.kind!=="commentary"&&g.kind!=="tool"||g.status!=="running"&&g.status!=="done")return;const b=g.status==="done";let v;if(g.kind==="thinking"){if(typeof g.text!="string"||!g.text)return;v={kind:"thinking",text:g.text,done:b}}else if(g.kind==="commentary"){if(typeof g.text!="string"||!g.text)return;v={kind:"text",text:g.text}}else{if(typeof g.name!="string"||!g.name)return;v={kind:"tool",name:g.name,args:g.args,response:g.response,done:b}}const y=l.get(g.id);y===void 0?(l.set(g.id,a.length),a.push(v)):a[y]=v,d()}function m(g){var x,O,w;let b="message";const v=[];for(const k of g.split(/\r?\n/))k.startsWith("event:")&&(b=k.slice(6).trim()),k.startsWith("data:")&&v.push(k.slice(5).trimStart());if(v.length===0)return;let y;try{y=JSON.parse(v.join(` +`))}catch{throw new Error(H("sandbox.invalidConversationResponse"))}if(b==="error"){const k=typeof y.message=="string"&&y.message?y.message:H("sandbox.conversationFailed");throw new qI(k,{code:typeof y.code=="string"?y.code:"",retryable:y.retryable===!0,publicMessage:k})}if(b==="progress"&&typeof y.text=="string"&&y.text&&(c={kind:"progress",text:y.text},d()),b==="activity"&&h(y),b==="development.source_ready"||b==="development.succeeded"){const k=Ta(y.payload),S=Ta(k==null?void 0:k.delivery),E=b==="development.succeeded";if(S&&typeof S.sessionId=="string"&&typeof S.artifactSha256=="string"&&typeof S.validationReportSha256=="string"&&typeof S.agentName=="string"&&typeof S.entryPoint=="string"&&typeof S.fileCount=="number"&&typeof S.artifactSize=="number"&&typeof S.validatedAt=="string"&&S.deployable===!0&&S.verified===E&&typeof S.validationSummary=="string"&&Array.isArray(S.gateSummary)&&S.gateSummary.every(C=>typeof C=="string")){const C={kind:"delivery",value:{sessionId:S.sessionId,...typeof S.projectId=="string"&&typeof S.versionId=="string"?{projectId:S.projectId,versionId:S.versionId,...S.parentVersionId===null||typeof S.parentVersionId=="string"?{parentVersionId:S.parentVersionId}:{}}:{},artifactSha256:S.artifactSha256,validationReportSha256:S.validationReportSha256,agentName:S.agentName,entryPoint:S.entryPoint,fileCount:S.fileCount,artifactSize:S.artifactSize,validatedAt:S.validatedAt,gateSummary:S.gateSummary,deployable:S.deployable,verified:S.verified,validationSummary:S.validationSummary}},N=a.findIndex(T=>T.kind==="delivery"&&T.value.sessionId===S.sessionId&&T.value.artifactSha256===S.artifactSha256&&T.value.validationReportSha256===S.validationReportSha256);N===-1?a.push(C):a[N]=C,d()}}if(b==="approval"){const k=LLt(y);k&&((x=t.onApproval)==null||x.call(t,k))}if(b==="usage"){const k=MLt(y);k&&(u=k,(O=t.onUsage)==null||O.call(t,k))}b==="approval_resolved"&&typeof y.approvalId=="string"&&((w=t.onApprovalResolved)==null||w.call(t,y.approvalId)),b==="delta"&&typeof y.text=="string"&&f(y.text),b==="done"&&!s&&typeof y.text=="string"&&f(y.text),b==="done"&&c&&(c=void 0,d())}for(;;){const{done:g,value:b}=await n.read();r+=i.decode(b,{stream:!g});const v=r.split(/\r?\n\r?\n/);if(r=v.pop()??"",v.forEach(m),g)break}if(r.trim()&&m(r),c&&(c=void 0,d()),a.length===0)throw new Error(H("sandbox.emptyReply"));return{text:s,blocks:a,...u?{usage:u}:{}}}async function Fl(e,t,n,{method:i="GET",body:r,options:s={},fallback:a}){if(!t)throw new Error(H("sandbox.missingSession"));const l=await Rn(`${e}/${encodeURIComponent(t)}/${n}`,{method:i,headers:es(r===void 0?void 0:{"Content-Type":"application/json"}),...r===void 0?{}:{body:JSON.stringify(r)},signal:s.signal},Rf);if(!l.ok)throw await ts(l,a);return l.json()}function Mje(e,t={}){return{async listSessions(n={}){const i=await Rn(Fte(e,n),{method:"GET",headers:es(),signal:n.signal},Ite);if(!i.ok)throw await ts(i,H("sandbox.listCodexFailed"));const r=await i.json();if(!Array.isArray(r.sessions))throw new Error(H("sandbox.invalidSessionList"));if(r.snapshots!==void 0&&!Array.isArray(r.snapshots))throw new Error(H("sandbox.invalidSnapshotList"));return[...r.sessions.map(s=>fg(s)),...(r.snapshots??[]).map(s=>$te(s))]},async startSession(n={}){var r,s;const i=await Rn(e,{method:"POST",headers:es({"Content-Type":"application/json"}),body:JSON.stringify({displayName:((r=n.displayName)==null?void 0:r.trim())??"",...(s=n.modelId)!=null&&s.trim()?{modelId:n.modelId.trim()}:{},...t.textOnly&&n.projectId?{projectId:n.projectId,...n.baseVersionId?{baseVersionId:n.baseVersionId}:{}}:{},...t.textOnly?{}:{persistent:n.persistent??!0},...n.diskGb!==void 0?{diskGb:n.diskGb}:{}}),signal:n.signal},uL);if(!i.ok)throw await ts(i,H("sandbox.startFailed"));return fg(await i.json())},async listAgentSessions(n,i={}){const r=await Rn(Fte(`/web/${n}/sessions`,i),{method:"GET",headers:es(),signal:i.signal},Ite);if(!r.ok)throw await ts(r,H("sandbox.listAgentFailed",{kind:n}));const s=await r.json();if(!Array.isArray(s.sessions))throw new Error(H("sandbox.invalidKindSessionList",{kind:n}));if(s.snapshots!==void 0&&!Array.isArray(s.snapshots))throw new Error(H("sandbox.invalidKindSnapshotList",{kind:n}));return[...s.sessions.map(a=>fg(a,n)),...(s.snapshots??[]).map(a=>$te(a,n))]},async startAgentSession(n,i={}){var s;const r=await Rn(`/web/${n}/sessions`,{method:"POST",headers:es({"Content-Type":"application/json"}),body:JSON.stringify({displayName:((s=i.displayName)==null?void 0:s.trim())??"",persistent:i.persistent??!0,...i.diskGb!==void 0?{diskGb:i.diskGb}:{}}),signal:i.signal},uL);if(!r.ok)throw await ts(r,H("sandbox.createAgentFailed",{kind:n}));return fg(await r.json(),n)},async openAgentSession(n,i,r={}){if(!i)throw new Error(H("sandbox.missingSessionToOpen"));const s=await Rn(`/web/${n}/sessions/${encodeURIComponent(i)}/open`,{method:"POST",headers:es(),signal:r.signal},Rf);if(!s.ok)throw await ts(s,H("sandbox.openAgentFailed",{kind:n}));const a=await s.json();if(typeof a.webuiUrl!="string"||!a.webuiUrl.startsWith("/"))throw new Error(H("sandbox.invalidAgentHomeUrl",{kind:n}));return{session:fg(a,n),kind:n,webuiUrl:Ho(a.webuiUrl)}},async launchAgentTerminal(n,i,r={}){if(!i)throw new Error(H("sandbox.missingSessionForTerminal"));const s=await Rn(`/web/${n}/sessions/${encodeURIComponent(i)}/terminal`,{method:"POST",headers:es(),signal:r.signal},Rf);if(!s.ok)throw await ts(s,H("sandbox.openTerminalFailed",{kind:n}));const a=await s.json();return{url:Lje(a.url,`${n} Terminal`),...typeof a.shellSessionId=="string"?{shellSessionId:a.shellSessionId}:{}}},async deleteAgentSession(n,i,r={}){if(!i)return;const s=await Rn(`/web/${n}/sessions/${encodeURIComponent(i)}`,{method:"DELETE",headers:es(),signal:r.signal},uw);if(!s.ok&&s.status!==404)throw await ts(s,H("sandbox.deleteAgentFailed",{kind:n}))},async resumeSnapshot(n,i,r={}){if(!i)throw new Error(H("sandbox.missingSnapshot"));const s=n==="codex"?"/web/sandbox":`/web/${n}`,a=await Rn(`${s}/snapshots/${encodeURIComponent(i)}/resume`,{method:"POST",headers:es(),signal:r.signal},uL);if(!a.ok)throw await ts(a,H("sandbox.resumeSnapshotFailed"));return fg(await a.json(),n)},async deleteSnapshot(n,i,r={}){if(!i)return;const s=n==="codex"?"/web/sandbox":`/web/${n}`,a=await Rn(`${s}/snapshots/${encodeURIComponent(i)}`,{method:"DELETE",headers:es(),signal:r.signal},uw);if(!a.ok&&a.status!==404)throw await ts(a,H("sandbox.deleteSnapshotFailed"))},async connectSession(n,i={}){if(!n)throw new Error(H("sandbox.missingSessionToConnect"));const r=await Rn(`${e}/${encodeURIComponent(n)}/connect`,{method:"POST",headers:es({"Content-Type":"application/json"}),signal:i.signal},NLt);if(!r.ok)throw await ts(r,H("sandbox.connectCodexFailed"));const s=fg(await r.json());if(s.status.toLowerCase()!=="ready")throw new Error(H("sandbox.sessionNotReady",{status:s.status}));return s},async sendMessage(n,i={}){var s;if(!n.sessionId||!n.text.trim())throw new Error(H("sandbox.invalidMessage"));const r=await Rn(`${e}/${encodeURIComponent(n.sessionId)}/messages`,{method:"POST",headers:es({Accept:"text/event-stream","Content-Type":"application/json"}),body:JSON.stringify({message:n.text,...!t.textOnly&&((s=n.skillIds)!=null&&s.length)?{skillIds:n.skillIds}:{}}),signal:i.signal},t.messageTimeoutMs??jLt);if(!r.ok)throw await ts(r,H("sandbox.conversationFailed"));return $Lt(r,i)},async interruptSession(n,i={}){if(!n)return;const r=await Rn(`${e}/${encodeURIComponent(n)}/interrupt`,{method:"POST",headers:es(),signal:i.signal},t.interruptTimeoutMs??uw);if(!r.ok&&![404,409].includes(r.status))throw await ts(r,H("sandbox.interruptFailed"))},async getStatus(n,i={}){const r=await Fl(e,n,"status",{options:i,fallback:H("sandbox.getStatusFailed")}),s=Bte(r),a=Ta(r),l=C8(a==null?void 0:a.threadTotal),c=a==null?void 0:a.modelContextWindow;return{...s,...l?{threadTotal:l}:{},...typeof c=="number"&&Number.isFinite(c)&&c>=0?{modelContextWindow:Math.trunc(c)}:{}}},async getEndpoint(n,i={}){const r=Ta(await Fl(e,n,"endpoint",{options:i,fallback:H("sandbox.getEndpointFailed")}));if(typeof(r==null?void 0:r.endpoint)!="string"||!r.endpoint.trim())throw new Error(H("sandbox.invalidEndpoint"));return{endpoint:r.endpoint,sessionId:typeof r.sessionId=="string"?r.sessionId:n,...typeof r.expireAt=="string"?{expireAt:r.expireAt}:{}}},async createCodexProjectHandoffPairing(n={}){const i=await Rn(`${Rte}/pairings`,{method:"POST",headers:es({Accept:"application/json","Content-Type":"application/json"}),body:JSON.stringify({ttlSeconds:ILt}),signal:n.signal},Pte);if(!i.ok)throw await ts(i,H("sandbox.createHandoffPairingFailed"));const r=Ta(await Lte(i,H("sandbox.createHandoffPairingFailed")));if(typeof(r==null?void 0:r.pairingCode)!="string"||!r.pairingCode.trim()||typeof r.expireAt!="string"||!r.expireAt.trim())throw new Error(H("sandbox.invalidHandoffPairing"));const s=typeof r.studioUrl=="string"&&r.studioUrl.trim()?r.studioUrl.trim():window.location.origin;return{pairingCode:r.pairingCode,expireAt:r.expireAt,studioUrl:s}},async getCodexProjectHandoffStatus(n,i={}){const r=await Rn(`${Rte}/pairings/${encodeURIComponent(n)}`,{headers:es({Accept:"application/json"}),signal:i.signal},Pte);if(!r.ok)throw await ts(r,H("sandbox.getHandoffStatusFailed"));const s=Ta(await Lte(r,H("sandbox.getHandoffStatusFailed"))),a=new Set(["issued","creating","session-created","continuing","running","completed","failed"]);if(typeof(s==null?void 0:s.state)!="string"||!a.has(s.state)||typeof s.expireAt!="string"||!s.expireAt.trim())throw new Error(H("sandbox.invalidHandoffStatus"));return{state:s.state,expireAt:s.expireAt,...typeof s.projectName=="string"?{projectName:s.projectName}:{},...typeof s.agentName=="string"?{agentName:s.agentName}:{},...typeof s.sessionId=="string"?{sessionId:s.sessionId}:{},...typeof s.error=="string"?{error:s.error}:{},...s.failedStage==="creating-session"||s.failedStage==="uploading-project"||s.failedStage==="restoring-project"||s.failedStage==="continuing-task"?{failedStage:s.failedStage}:{}}},async listModels(n,i={}){const r=Ta(await Fl(e,n,"models",{options:i,fallback:H("sandbox.listModelsFailed")}));if(!Array.isArray(r==null?void 0:r.models))throw new Error(H("sandbox.invalidModelList"));return r.models.flatMap(s=>{const a=PLt(s);return a?[a]:[]})},async setModel(n,i,r={}){const s=Ta(await Fl(e,n,"model",{method:"PUT",body:{model:i},options:r,fallback:H("sandbox.setModelFailed")}));if(typeof(s==null?void 0:s.model)!="string"||!s.model)throw new Error(H("sandbox.invalidModel"));return s.model},async listSkills(n,i=!1,r={}){const a=Ta(await Fl(e,n,`skills${i?"?force_reload=true":""}`,{options:r,fallback:H("sandbox.listSkillsFailed")}));if(!Array.isArray(a==null?void 0:a.skills))throw new Error(H("sandbox.invalidSkillList"));return a.skills.flatMap(l=>{const c=DLt(l);return c?[c]:[]})},async listThreads(n,i={},r={}){const s=new URLSearchParams;i.cursor&&s.set("cursor",i.cursor),i.search&&s.set("search",i.search),i.archived&&s.set("archived","true");const a=s.size?`?${s}`:"",l=Ta(await Fl(e,n,`threads${a}`,{options:r,fallback:H("sandbox.listThreadsFailed")}));if(!Array.isArray(l==null?void 0:l.threads))throw new Error(H("sandbox.invalidThreadList"));return{threads:l.threads.flatMap(c=>{const u=Dje(c);return u?[u]:[]}),...typeof l.nextCursor=="string"?{nextCursor:l.nextCursor}:{}}},async newThread(n,i={}){return Ng(await Fl(e,n,"threads/new",{method:"POST",options:i,fallback:H("sandbox.createThreadFailed")}))},async readThread(n,i,r={}){if(!i)throw new Error(H("sandbox.missingThread"));return Ng(await Fl(e,n,`threads/${encodeURIComponent(i)}`,{options:r,fallback:H("sandbox.readThreadFailed")}))},async resumeThread(n,i,r={}){return Ng(await Fl(e,n,"threads/resume",{method:"POST",body:{threadId:i},options:r,fallback:H("sandbox.resumeThreadFailed")}))},async forkThread(n,i={}){return Ng(await Fl(e,n,"threads/fork",{method:"POST",options:i,fallback:H("sandbox.forkThreadFailed")}))},async archiveThread(n,i,r={}){const s=Ta(await Fl(e,n,"threads/archive",{method:"POST",body:{threadId:i},options:r,fallback:H("sandbox.archiveThreadFailed")}));if((s==null?void 0:s.archived)!==!0)throw new Error(H("sandbox.invalidArchiveResult"));return{archived:!0,...s.thread?{snapshot:Ng(s)}:{}}},async deleteThread(n,i,r={}){const s=Ta(await Fl(e,n,"threads/delete",{method:"POST",body:{threadId:i},options:r,fallback:H("sandbox.deleteThreadFailed")}));if((s==null?void 0:s.deleted)!==!0)throw new Error(H("sandbox.invalidDeleteResult"));return{deleted:!0,...s.thread?{snapshot:Ng(s)}:{}}},async compactThread(n,i={}){await Fl(e,n,"threads/compact",{method:"POST",options:i,fallback:H("sandbox.compactThreadFailed")})},async getSettings(n,i={}){const r=await Rn(`${e}/${encodeURIComponent(n)}/settings`,{method:"GET",headers:es(),signal:i.signal},Rf);if(!r.ok)throw await ts(r,H("sandbox.getSettingsFailed"));return Bte(await r.json())},async updatePermissions(n,i,r={}){const s=await Rn(`${e}/${encodeURIComponent(n)}/permissions`,{method:"PUT",headers:es({"Content-Type":"application/json"}),body:JSON.stringify(i),signal:r.signal},Rf);if(!s.ok)throw await ts(s,H("sandbox.updatePermissionsFailed"));const a=await s.json();return WI(a.permissions)},async updateWorkspace(n,i,r={}){const s=await Rn(`${e}/${encodeURIComponent(n)}/workspace`,{method:"PUT",headers:es({"Content-Type":"application/json"}),body:JSON.stringify({cwd:i}),signal:r.signal},Rf);if(!s.ok)throw await ts(s,H("sandbox.updateWorkspaceFailed"));const a=await s.json();if(typeof a.cwd!="string"||!a.cwd)throw new Error(H("sandbox.invalidWorkingDirectory"));return a.cwd},async listDirectories(n,i,r={}){const s=new URLSearchParams({path:i}),a=await Rn(`${e}/${encodeURIComponent(n)}/directories?${s}`,{method:"GET",headers:es(),signal:r.signal},Rf);if(!a.ok)throw await ts(a,H("sandbox.listDirectoriesFailed"));const l=await a.json();if(typeof l.path!="string"||!Array.isArray(l.directories)||l.directories.some(c=>!c||typeof c.name!="string"||typeof c.path!="string"))throw new Error(H("sandbox.invalidDirectoryList"));return{path:l.path,...typeof l.parent=="string"?{parent:l.parent}:{},directories:l.directories}},async resolveApproval(n,i,r,s={}){const a=await Rn(`${e}/${encodeURIComponent(n)}/approvals/${encodeURIComponent(i)}`,{method:"POST",headers:es({"Content-Type":"application/json"}),body:JSON.stringify({decision:r}),signal:s.signal},Rf);if(!a.ok)throw await ts(a,H("sandbox.resolveApprovalFailed"))},async launchTerminal(n,i={}){return Ute(e,n,"terminal",i)},async launchBrowser(n,i={}){return Ute(e,n,"browser",i)},async uploadFile(n,i,r={}){const s=new FormData;s.set("file",i,i.name);const a=await Rn(`${e}/${encodeURIComponent(n)}/files`,{method:"POST",headers:es(),body:s,signal:r.signal},RLt);if(!a.ok)throw await ts(a,H("sandbox.uploadFileFailed"));const l=await a.json();if(typeof l.id!="string"||typeof l.path!="string"||typeof l.name!="string"||typeof l.mimeType!="string"||typeof l.sizeBytes!="number")throw new Error(H("sandbox.invalidUploadResult"));return l},async closeSession(n,i={}){if(!n)return;const r=await Rn(`${e}/${encodeURIComponent(n)}/disconnect`,{method:"POST",headers:es(),signal:i.signal},uw);if(!r.ok&&r.status!==404)throw await ts(r,H("sandbox.disconnectCodexFailed"))},async deleteSession(n,i={}){if(!n)return;const r=await Rn(`${e}/${encodeURIComponent(n)}`,{method:"DELETE",headers:es(),signal:i.signal},uw);if(!r.ok&&r.status!==404)throw await ts(r,H("sandbox.deleteCodexFailed"))}}}const yr=Mje(_Lt),gp=Mje("/web/intelligent-development/sessions",{textOnly:!0,messageTimeoutMs:36e5,interruptTimeoutMs:45e3});async function Ute(e,t,n,i){const r=await Rn(`${e}/${encodeURIComponent(t)}/${n}`,{method:"POST",headers:es(),signal:i.signal},Rf);if(!r.ok)throw await ts(r,H(n==="terminal"?"sandbox.openSandboxTerminalFailed":"sandbox.openSandboxBrowserFailed"));const s=await r.json();return{url:Lje(s.url,H("sandbox.toolLabel")),...typeof s.shellSessionId=="string"?{shellSessionId:s.shellSessionId}:{}}}function Lje(e,t){if(typeof e!="string")throw new Error(H("sandbox.invalidToolUrl",{label:t}));if(e.startsWith("/"))return Ho(e);let n;try{n=new URL(e)}catch{throw new Error(H("sandbox.invalidToolUrl",{label:t}))}const i=n.protocol==="http:"&&window.location.protocol==="http:";if(n.protocol!=="https:"&&!i)throw new Error(H("sandbox.unsafeToolUrl",{label:t}));return n.toString()}function Lg(e,t,n){const i=e instanceof Error?`${e.name}: ${e.message}`:String(e||H("common.unknownError"));return[H("requestError.actionFailed",{action:t}),H("requestError.detail",{detail:i}),n?H("requestError.request",{request:n}):""].filter(Boolean).join(` +`)}function Xf({className:e="icon"}){return o.jsxs("svg",{className:`${e} sidebar-agent-face`,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("rect",{x:"4.25",y:"5.25",width:"15.5",height:"13.5",rx:"4.75"}),o.jsx("path",{className:"sidebar-agent-face__eye",d:"M8.5 10.7v2"}),o.jsx("path",{className:"sidebar-agent-face__eye",d:"M15.5 10.7v2"})]})}function FLt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M8.4 18.4H7.2a4.2 4.2 0 0 1-.65-8.35A5.7 5.7 0 0 1 17.3 8.2a4.6 4.6 0 0 1-.4 9.2h-3.2"}),o.jsx("path",{d:"m7.8 12.3 2 2-2 2M12.2 16.3h3.2"})]})}function BLt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M18.9 6.25A8.4 8.4 0 1 0 19.6 16"}),o.jsx("path",{d:"M19 6.2c.1 2.1-.65 3.75-2.25 4.95-1.2.9-2.75 1.25-4.2.9"}),o.jsx("circle",{cx:"10.6",cy:"12.8",r:"2.45"}),o.jsx("path",{d:"m5.25 18.6 3.65-3.9M14.8 17.9c1.9-.45 3.55-1.65 4.65-3.35"})]})}function ULt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M6.2 20c.55-2.15.75-4.1.75-6.7V9.8A5.35 5.35 0 0 1 12.35 4c3.35 0 5.65 2.35 5.65 5.65v4.6c0 2.35.35 4.25 1.15 5.75"}),o.jsx("path",{d:"M8.05 10.2c1.35-.6 2.2-1.65 2.55-3.15.45 1.55 1.35 2.55 2.7 3.05.1-1 .4-1.95.85-2.75.45 1.25 1.2 2.2 2.15 2.75"}),o.jsx("path",{d:"M9.3 12.65h.01M14.9 12.65h.01M10.8 15.55c.8.5 1.65.5 2.45 0"}),o.jsx("path",{d:"M8.45 19.85c.95-.85 1.45-1.95 1.5-3.25M15.1 16.65c.05 1.2.55 2.3 1.55 3.2"})]})}function QLt(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5.2 17.2V8.1a3 3 0 0 1 3-3h7.6a3 3 0 0 1 3 3v9.1"}),o.jsx("path",{d:"M7.4 17.2h9.2M9 19.9h6"}),o.jsx("path",{d:"M9.1 9.25h5.8M9.1 12h3.1"}),o.jsx("path",{d:"m14.1 12.4 2 2.1M16.2 12.4l-2.1 2.1"})]})}function Ek({kind:e,...t}){return e==="codex"?o.jsx(FLt,{...t}):e==="deepseek-harness"?o.jsx(QLt,{...t}):e==="openclaw"?o.jsx(BLt,{...t}):o.jsx(ULt,{...t})}const zLt=["general","codex","deepseek-harness","openclaw","hermes"],VLt=24,HLt=3e4,qLt=7e3,WLt=2e4,KLt=6,GLt=2,XLt=250,Kp=new Map,Sv=new Map,YLt=new Set;function hg(e){const t=e.runtime;return t?`${t.region}:${t.runtimeId}:${t.currentVersion??""}`:""}function Qte(e,t){const n=e instanceof Error&&e.message.trim()?e.message.trim():t("myAgents.compatibility.unknownError");return{status:e instanceof $s&&e.unsupported?"unsupported":"error",message:n}}function xA(e){if(!e){Kp.clear(),Sv.clear(),P4();return}const t=new Set(e);if(t.size!==0){for(const[n,i]of Sv)i.page.runtimes.some(r=>t.has(r.runtimeId))&&Sv.delete(n);for(const n of t)P4(n);Kp.clear()}}function ZLt(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8 3.25v9.5M3.25 8h9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})})}function JLt(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8.313 3.646a.5.5 0 0 1 .707 0l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.707-.708L11.46 8.5H3.333a.5.5 0 0 1 0-1h8.127L8.313 4.354a.5.5 0 0 1 0-.708Z",fill:"currentColor"})})}function e3t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M2.75 5.25h8.75m0 0-2-2m2 2-2 2M13.25 10.75H4.5m0 0 2 2m-2-2 2-2",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}function t3t({type:e}){return e==="general"?o.jsx(Xf,{}):o.jsx(Ek,{kind:e})}function n3t(e,t=Date.now(),n){const i=Date.parse(e);if(!Number.isFinite(i)||i-t<6e4)return n("myAgents.expiringSoon");const r=Math.ceil((i-t)/6e4),s=Math.floor(r/60),a=r%60;return n("myAgents.sandboxRemaining",{hours:s,minutes:a})}function zte(e,t){var n;return{id:e.runtimeId,name:e.name,description:((n=e.description)==null?void 0:n.trim())||t("common.noDescription"),createdAt:e.createdAt??"",specificationLabel:t("myAgents.creator"),specification:qEe(e.author),isMine:e.isMine,runtime:{runtimeId:e.runtimeId,region:e.region,currentVersion:e.currentVersion,canDelete:e.canDelete}}}function i3t(e,t){const n=HI(e.status);return{id:e.id,name:e.displayName||t("myAgents.namedAgent",{name:e.toolName}),description:t(`myAgents.sandboxStatus.${n}`,{defaultValue:t("myAgents.sandboxStatus.unknown")}),createdAt:e.createdAt,specificationLabel:t("myAgents.creator"),specification:qEe(e.createdBy),isMine:e.isMine,region:e.region,sandbox:e}}function r3t(e,t){var n,i;return{id:e.id,name:e.draft.name||t("agentSelector.unnamedAgent"),description:((n=e.draft.description)==null?void 0:n.trim())||t("common.noDescription"),createdAt:new Date(e.updatedAt).toISOString(),specificationLabel:t("myAgents.storageLocation"),specification:t("myAgents.currentBrowser"),isMine:!0,region:(i=e.deploymentTarget)==null?void 0:i.region,draft:e}}function s3t(e,t,n){if(!e.draft)return e;const i=e.draft.deploymentTarget;return i?t.find(r=>{var s;return((s=r.runtime)==null?void 0:s.runtimeId)===i.runtimeId&&r.runtime.region===i.region})??{id:i.runtimeId,appName:i.appName,name:i.name||e.name,description:e.description,createdAt:e.createdAt,specificationLabel:n("myAgents.region"),specification:i.region,isMine:!0,runtime:{runtimeId:i.runtimeId,region:i.region,currentVersion:i.currentVersion,canDelete:!1}}:null}function a3t(e,t){return e.trim()||nr(t)}async function o3t(e,t,n,i,r,s){const a=`${e}:${t}:${n}`,l=Sv.get(a);if(l&&l.expiresAt>Date.now())return i(l.page.runtimes.map(d=>zte(d,r))),l.page.nextToken;l&&Sv.delete(a);let c=Kp.get(a);c||(c=TLt({scope:e,region:t,pageSize:VLt,nextToken:n,signal:s}),Kp.set(a,c),c.then(()=>Kp.delete(a),()=>Kp.delete(a)));const u=await c;return Sv.set(a,{page:u,expiresAt:Date.now()+HLt}),i(u.runtimes.map(d=>zte(d,r))),u.nextToken}function l3t({agent:e,onUse:t,onViewDetails:n,onPrepareUpdate:i,compatibility:r,onRetryCompatibility:s,connecting:a,connectError:l,connected:c,deploymentTask:u,nowMs:d,onViewDeploymentTask:f,onEditDraft:h,onDeleteDraft:m}){var T,j,A,L;const{t:g,i18n:b}=Ae("ui"),v=(T=e.sandbox)==null?void 0:T.status.toLowerCase(),y=((j=e.sandbox)==null?void 0:j.resourceType)==="snapshot",x=!!(e.runtime||v==="ready"||v==="wakeable"),O=(r==null?void 0:r.status)==="checking",w=(r==null?void 0:r.status)==="unsupported",k=(r==null?void 0:r.status)==="error",S=((A=e.sandbox)==null?void 0:A.resourceType)==="snapshot"?e.sandbox.sourceSessionId||e.sandbox.snapshotId:(L=e.sandbox)==null?void 0:L.id,E=()=>{if(e.draft){u?f==null||f(u):n==null||n(e);return}!x&&!e.sandbox||(u?f==null||f(u):n==null||n(e))},C=(e.draft||x||!!e.sandbox)&&!!(u?f:n),N=e.draft?u?g("myAgents.viewDeploymentProgress",{name:e.name}):g("myAgents.viewRuntimeDetails",{name:e.name}):u?g("myAgents.viewDeploymentProgress",{name:e.name}):g("myAgents.viewDetails",{name:e.name});return o.jsxs(LB,{className:a?"my-agent-card is-connecting":"my-agent-card",activateLabel:C?N:void 0,onActivate:C?E:void 0,onPointerEnter:()=>i==null?void 0:i(e),onFocusCapture:()=>i==null?void 0:i(e),footer:o.jsx(eSe,{className:"my-agent-meta",items:[{label:e.specificationLabel,value:e.specification,hideLabel:!0,className:"my-agent-region"},{label:g("myAgents.time"),value:ez(e.createdAt,d,b.resolvedLanguage??b.language),hideLabel:!0,className:"my-agent-created-at"},...e.sandbox?[{label:g("myAgents.remainingTime"),value:e.sandbox.resourceType==="snapshot"||e.sandbox.persistent?g("myAgents.neverExpires"):n3t(e.sandbox.expireAt,d,g),className:`my-agent-expiry${e.sandbox.resourceType==="snapshot"||e.sandbox.persistent?"":" is-expiring"}`}]:[]]}),actions:e.draft?o.jsxs(o.Fragment,{children:[o.jsx(j6,{"aria-label":u?g("myAgents.viewDeploymentProgress",{name:e.name}):g("myAgents.editDraftNamed",{name:e.name}),onClick:()=>u?f==null?void 0:f(u):h==null?void 0:h(e.draft),children:g(u?"myAgents.viewProgress":"common.edit")}),o.jsx(j6,{tone:"danger","aria-label":g("myAgents.deleteDraftNamed",{name:e.name}),onClick:()=>m==null?void 0:m(e.draft),children:g("common.delete")})]}):k||w?o.jsxs(Ht,{type:"button",color:"primary",size:"sm",pill:!1,"aria-label":g("myAgents.recheckCompatibility",{name:e.name}),onClick:()=>s==null?void 0:s(e),children:[o.jsx(tR,{}),g("common.retry")]}):o.jsx(R6,{className:c?"my-agent-use is-connected":"my-agent-use",disabled:!x||O||w||a||c,"aria-busy":a||void 0,label:c?g("myAgents.connectedNamed",{name:e.name}):y?g("myAgents.wakeAndChat",{name:e.name}):g("myAgents.chatWith",{name:e.name}),onClick:()=>void(t==null?void 0:t(e)),children:a?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"my-agent-use-spinner","aria-hidden":"true"}),o.jsx("span",{className:"sr-only",children:g(y?"myAgents.waking":"agentSelector.connecting")})]}):o.jsx(JLt,{})}),children:[o.jsx($B,{leading:o.jsx(tx,{seed:e.name}),title:e.name,subtitle:e.sandbox?o.jsx("span",{className:"my-agent-session-id",title:S,children:S}):void 0,status:e.draft?u?o.jsx("span",{className:"my-agent-deploying-badge",children:g("myAgents.deploying")}):o.jsx("span",{className:"my-agent-draft-badge",children:g("myAgents.draft")}):e.sandbox?o.jsx("span",{className:"my-agent-status-label","data-ready":HI(e.sandbox.status)==="ready"||void 0,children:e.description}):e.runtime&&u?o.jsx("span",{className:"my-agent-deploying-badge",children:g("myAgents.deploying")}):O?o.jsx(vo,{content:r==null?void 0:r.message,contentClassName:"my-agent-compatibility-tooltip",maxWidth:360,align:"end",interactive:!0,preventUnintentionalClickToClose:!0,children:o.jsx("span",{className:"my-agent-compatibility-trigger",tabIndex:0,children:o.jsxs(ya,{className:"my-agent-compatibility-status",color:"secondary",variant:"soft",size:"sm",pill:!0,children:[o.jsx("span",{className:"my-agent-compatibility-spinner","aria-hidden":"true"}),o.jsx("span",{children:g("myAgents.checking")})]})})}):w?o.jsx(vo,{content:r==null?void 0:r.message,contentClassName:"my-agent-compatibility-tooltip",maxWidth:360,align:"end",interactive:!0,preventUnintentionalClickToClose:!0,children:o.jsx("span",{className:"my-agent-compatibility-trigger",tabIndex:0,children:o.jsx(ya,{className:"my-agent-compatibility-status",color:"warning",variant:"soft",size:"sm",pill:!0,children:g("myAgents.chatUnsupported")})})}):k?o.jsx(vo,{content:r==null?void 0:r.message,contentClassName:"my-agent-compatibility-tooltip",maxWidth:360,align:"end",interactive:!0,preventUnintentionalClickToClose:!0,children:o.jsx("span",{className:"my-agent-compatibility-trigger",tabIndex:0,children:o.jsx(ya,{className:"my-agent-compatibility-status",color:"danger",variant:"soft",size:"sm",pill:!0,children:g("myAgents.checkFailed")})})}):null}),l?o.jsx(vo,{content:l,contentClassName:"my-agent-error-tooltip",maxWidth:360,interactive:!0,children:o.jsx("p",{className:"my-agent-wake-note",role:"alert",tabIndex:0,children:l})}):null,y&&a?o.jsx("p",{className:"my-agent-wake-note",role:"status",children:o.jsx(kn,{children:g("myAgents.wakingHint")})}):null,e.sandbox?null:o.jsx(FB,{children:e.description})]})}function c3t({cloudProvider:e,studioRegion:t,canCreateRuntimeAgents:n,canCreatePersonalAgents:i,canUpdate:r,runtimeScope:s,onCreateAgent:a,onOpenCodexProjectUpload:l,onUseAgent:c,onViewAgentDetails:u,onCreateSandboxAgent:d,onUseSandboxAgent:f,onViewSandboxAgentDetails:h,activeType:m,onActiveTypeChange:g,sandboxRefreshKey:b=0,connectedRuntimeId:v="",hiddenRuntimeIds:y=YLt,drafts:x=[],deploymentTasks:O=[],draftDeploymentTaskIds:w={},onViewDeploymentTask:k,onEditDraft:S,onDeleteDraft:E}){const{t:C}=Ae("ui"),N=p.useRef(null),T=p.useRef(null),j=p.useRef(0),A=p.useRef(null),L=p.useRef(0),_=p.useRef(null),P=p.useRef(new Map),I=a3t(t,e),[$,M]=p.useState(""),[B,R]=p.useState(s==="mine"?"mine":"all"),[V,K]=p.useState(I),[Q,q]=p.useState([]),[U,G]=p.useState(""),[ae,re]=p.useState(!0),[se,me]=p.useState(""),[Z,X]=p.useState([]),[J,oe]=p.useState(!1),[Ee,he]=p.useState(""),[Me,De]=p.useState(""),[_e,Re]=p.useState({}),[Xe,Ce]=p.useState({}),[Fe,Oe]=p.useState(null),[$e,Y]=p.useState(()=>Date.now()),pe=p.useMemo(()=>zLt.map(Qe=>({value:Qe,label:C(`myAgents.agentTypes.${Qe}`)})),[C]),Te=p.useMemo(()=>{const Qe=Pu(e);return Qe.some(ye=>ye.value===I)?Qe:[{value:I,label:I},...Qe]},[e,I]);p.useEffect(()=>{s==="mine"&&R("mine")},[s]),p.useEffect(()=>{K(I)},[I]),p.useEffect(()=>{Y(Date.now());const Qe=window.setInterval(()=>Y(Date.now()),1e3);return()=>window.clearInterval(Qe)},[]);const We=p.useMemo(()=>x.map(Qe=>r3t(Qe,C)),[x,C]),nt=p.useMemo(()=>{const Qe=new Map,ye=new Map,Ve=new Map;for(const Ye of O){if(Ye.status!=="running")continue;if(Qe.set(Ye.id,Ye),Ye.draftId){const ct=ye.get(Ye.draftId);(!ct||Ye.startedAt>ct.startedAt)&&ye.set(Ye.draftId,Ye)}if(!Ye.runtimeId)continue;const ht=Ve.get(Ye.runtimeId);(!ht||Ye.startedAt>ht.startedAt)&&Ve.set(Ye.runtimeId,Ye)}return{byId:Qe,byDraftId:ye,byRuntimeId:Ve}},[O]),$t=p.useCallback(Qe=>{var Ve;if(Qe.draft){const Ye=w[Qe.draft.id];return nt.byDraftId.get(Qe.draft.id)??(Ye?nt.byId.get(Ye):void 0)}const ye=(Ve=Qe.runtime)==null?void 0:Ve.runtimeId;return ye?nt.byRuntimeId.get(ye):void 0},[nt,w]),je=p.useCallback((Qe,ye)=>{var ht;(ht=A.current)==null||ht.abort(),Kp.clear();const Ve=new AbortController;A.current=Ve;const Ye=++j.current;return re(!0),me(""),o3t(B,V,Qe,ct=>{j.current===Ye&&q(Gt=>ye?ct:[...Gt,...ct])},C,Ve.signal).then(ct=>{j.current===Ye&&G(ct)}).catch(ct=>{j.current===Ye&&(jte(ct)||me(Lg(ct,C("myAgents.loadGeneralAgents"),"GET /web/runtimes")))}).finally(()=>{j.current===Ye&&re(!1),A.current===Ve&&(A.current=null)})},[B,V,C]);p.useEffect(()=>{if(m==="general")return q([]),G(""),je("",!0),()=>{var Qe;(Qe=A.current)==null||Qe.abort(),A.current=null,Kp.clear(),j.current+=1}},[m,je]),p.useEffect(()=>{if(m!=="general"){for(const Ve of P.current.values())Ve.abort();P.current.clear();return}const Qe=new Set(Q.filter(Ve=>{var Ye,ht;return((Ye=Ve.runtime)==null?void 0:Ye.runtimeId)!==v&&((ht=Ve.runtime)==null?void 0:ht.region)===V}).map(hg).filter(Boolean));for(const[Ve,Ye]of P.current)Qe.has(Ve)||(Ye.abort(),P.current.delete(Ve));const ye=Q.filter(Ve=>{var Gt,Rt,qt;const Ye=(Gt=Ve.runtime)==null?void 0:Gt.runtimeId;if(!Ye||Ye===v||((Rt=Ve.runtime)==null?void 0:Rt.region)!==V)return!1;const ht=hg(Ve),ct=(qt=Xe[ht])==null?void 0:qt.status;return!P.current.has(ht)&&(!ct||ct==="checking")});for(const Ve of ye)P.current.set(hg(Ve),new AbortController);Ce(Ve=>{var ct,Gt;let Ye=!1;const ht={...Ve};for(const Rt of Q){const qt=hg(Rt);if(!qt)continue;const ue=((ct=Rt.runtime)==null?void 0:ct.runtimeId)===v;ue&&((Gt=ht[qt])==null?void 0:Gt.status)!=="compatible"?(ht[qt]={status:"compatible",message:C("myAgents.compatibility.supported")},Ye=!0):!ue&&!ht[qt]&&(ht[qt]={status:"checking",message:C("myAgents.compatibility.checking")},Ye=!0)}return Ye?ht:Ve}),ALt(ye,async Ve=>{const Ye=Ve.runtime;if(!Ye)return;const ht=hg(Ve),ct=P.current.get(ht);if(ct)try{const Gt=await Vv(Ye.runtimeId,Ye.region,{signal:ct.signal,preferCached:!0,timeoutMs:qLt,currentVersion:Ye.currentVersion});if(ct.signal.aborted)return;Ce(Rt=>({...Rt,[ht]:Gt&&Gt.length>0?{status:"compatible",message:C("myAgents.compatibility.supported")}:{status:"unsupported",message:C("myAgents.compatibility.empty")}}))}catch(Gt){if(ct.signal.aborted||(Gt==null?void 0:Gt.name)==="AbortError")return;Ce(Rt=>({...Rt,[ht]:Qte(Gt,C)}))}finally{P.current.get(ht)===ct&&P.current.delete(ht)}})},[m,v,V,Q,C]),p.useEffect(()=>()=>{var Qe;(Qe=A.current)==null||Qe.abort();for(const ye of P.current.values())ye.abort();P.current.clear()},[]);const ve=p.useCallback(async Qe=>{var Ye;(Ye=_.current)==null||Ye.abort();const ye=new AbortController;_.current=ye;const Ve=++L.current;oe(!0),he(""),X([]);try{const ht=Qe==="codex"?await yr.listSessions({signal:ye.signal,autoResumeSnapshots:!1}):await yr.listAgentSessions(Qe,{signal:ye.signal,autoResumeSnapshots:!1});if(L.current!==Ve)return;X(ht.map(ct=>i3t(ct,C)))}catch(ht){if((ht==null?void 0:ht.name)==="AbortError"||L.current!==Ve)return;he(Lg(ht,C("myAgents.loadAgentType",{type:C(`myAgents.agentTypes.${Qe}`)}),`GET /web/${Qe==="codex"?"sandbox":Qe}/sessions`))}finally{_.current===ye&&(_.current=null),L.current===Ve&&oe(!1)}},[C]);function ze(Qe){var ye;Qe!==m&&(Qe==="general"?(j.current+=1,q([]),G(""),me(""),re(!0)):((ye=_.current)==null||ye.abort(),_.current=null,L.current+=1,X([]),he(""),oe(!0)),g(Qe))}function et(){m==="general"&&(j.current+=1,q([]),G(""),me(""),re(!0))}function Se(Qe){Qe!==B&&(et(),R(Qe))}function Kt(Qe){Qe!==V&&(et(),K(Qe))}p.useEffect(()=>{var Qe;if(m==="general"){(Qe=_.current)==null||Qe.abort(),_.current=null,L.current+=1;return}return ve(m),()=>{var ye;(ye=_.current)==null||ye.abort(),_.current=null,L.current+=1}},[m,ve,b]),p.useEffect(()=>{const Qe=T.current,ye=N.current;if(!Qe||!ye||m!=="general"||!U||ae)return;const Ve=new IntersectionObserver(([Ye])=>{Ye.isIntersecting&&je(U,!1)},{root:ye,rootMargin:"240px 0px",threshold:.01});return Ve.observe(Qe),()=>Ve.disconnect()},[m,je,ae,U]);const en=p.useCallback(async Qe=>{if(!Me){De(Qe.id),Re(ye=>({...ye,[Qe.id]:""}));try{await new Promise(ye=>requestAnimationFrame(()=>ye())),Qe.sandbox?await f(Qe.sandbox):await c(Qe)}catch(ye){Re(Ve=>({...Ve,[Qe.id]:ye instanceof Error?ye.message:String(ye)}))}finally{De("")}}},[Me,c,f]),cn=p.useCallback(async Qe=>{var ht;const ye=Qe.runtime;if(!ye)return;const Ve=hg(Qe);Ce(ct=>({...ct,[Ve]:{status:"checking",message:C("myAgents.compatibility.checking")}})),(ht=P.current.get(Ve))==null||ht.abort();const Ye=new AbortController;P.current.set(Ve,Ye);try{const ct=await Pje(()=>Vv(ye.runtimeId,ye.region,{retryProbe:!0,signal:Ye.signal,timeoutMs:WLt,currentVersion:ye.currentVersion}));if(Ye.signal.aborted)return;Ce(Gt=>({...Gt,[Ve]:ct&&ct.length>0?{status:"compatible",message:C("myAgents.compatibility.supported")}:{status:"unsupported",message:C("myAgents.compatibility.empty")}}))}catch(ct){if(Ye.signal.aborted||jte(ct))return;Ce(Gt=>({...Gt,[Ve]:Qte(ct,C)}))}finally{P.current.get(Ve)===Ye&&P.current.delete(Ve)}},[C]),kt=p.useCallback(Qe=>{const ye=Qe.runtime;!r||!ye||$t(Qe)||I4({runtimeId:ye.runtimeId,region:ye.region,appName:Qe.appName,currentVersion:ye.currentVersion})},[r,$t]),Pt=p.useMemo(()=>{const Qe=$.trim().toLocaleLowerCase(),ye=m==="general"?[...We,...Q]:Z,Ye=(B==="mine"?ye.filter(Rt=>Rt.isMine):ye).filter(Rt=>{var ue;const qt=((ue=Rt.runtime)==null?void 0:ue.region)??Rt.region;return!qt||qt===V}),ht=Qe?Ye.filter(Rt=>Rt.name.toLocaleLowerCase().includes(Qe)):Ye;if(m!=="general")return ht;const ct=y.size>0?ht.filter(Rt=>!Rt.runtime||!y.has(Rt.runtime.runtimeId)):ht,Gt=ct.findIndex(Rt=>{var qt;return((qt=Rt.runtime)==null?void 0:qt.runtimeId)===v});return Gt<=0?ct:[ct[Gt],...ct.slice(0,Gt),...ct.slice(Gt+1)]},[m,v,We,y,$,B,V,Q,Z]);p.useEffect(()=>{if(!r||m!=="general")return;const Qe=Pt.filter(ct=>!!ct.runtime).filter(ct=>!$t(ct)).slice(0,KLt);if(Qe.length===0)return;let ye=!1,Ve=0;const Ye=async()=>{for(;!ye;){const ct=Qe[Ve];if(Ve+=1,!(ct!=null&&ct.runtime)||(await I4({runtimeId:ct.runtime.runtimeId,region:ct.runtime.region,appName:ct.appName,currentVersion:ct.runtime.currentVersion}),ye))return}},ht=window.setTimeout(()=>{for(let ct=0;ct{ye=!0,window.clearTimeout(ht)}},[m,r,$t,Pt]);const ut=C(`myAgents.agentTypes.${m}`,{defaultValue:C("myAgents.agent")}),gt=m==="general"?ae&&Q.length===0&&We.length===0:J&&Z.length===0,Le=!gt&&Pt.length===0,wt=(m==="general"?n:i)?m==="general"?()=>a(V):()=>d(m):void 0,Et=m==="codex"&&i&&!!l;return o.jsxs(Ch,{className:"my-agents-page","aria-label":C("myAgents.agent"),children:[o.jsx(Kx,{title:C("myAgents.agent"),className:"my-agents-header"}),o.jsxs(i0,{className:"my-agent-toolbar",children:[o.jsx(mE,{idPrefix:"my-agent-ownership",ariaLabel:C("myAgents.creatorFilter"),value:B,items:[{id:"all",label:C("common.all"),disabled:s==="mine"},{id:"mine",label:C("agentSelector.createdByMe")}],onChange:Se}),o.jsxs("div",{className:"resource-toolbar__actions",children:[o.jsx(hN,{id:"my-agent-type-filter",ariaLabel:C("myAgents.agentType"),value:m,options:pe,onChange:ze}),o.jsx(hN,{id:"my-agent-region-filter",ariaLabel:C("myAgents.region"),value:V,options:Te,onChange:Kt}),o.jsx(Em,{className:"my-agent-search","aria-label":C("myAgents.searchAgents"),value:$,onChange:Qe=>M(Qe.target.value),placeholder:C("common.search")}),Et?o.jsxs("button",{type:"button",className:"my-agent-create-secondary",onClick:l,children:[o.jsx(e3t,{}),o.jsx("span",{children:C("myAgents.handoff")})]}):null]})]}),o.jsxs(r0,{className:"my-agent-results",ref:N,"aria-label":C("myAgents.agentList",{type:ut}),children:[gt?o.jsx(zd,{}):(m==="general"?se:Ee)&&Pt.length===0?o.jsxs("div",{className:"my-agent-empty",role:"alert",children:[o.jsx("p",{children:m==="general"?se:Ee}),o.jsx("button",{type:"button",onClick:()=>{m==="general"?je("",!0):ve(m)},children:C("common.reload")})]}):Le&&!wt?$.trim()||B==="mine"||V!==I?o.jsx("div",{className:"my-agent-empty-message",children:o.jsxs(Tn,{fill:"none",children:[o.jsx(Tn.Icon,{children:o.jsx(s7e,{})}),o.jsx(Tn.Title,{children:C("myAgents.noMatchingAgents")}),o.jsx(Tn.Description,{children:C("myAgents.adjustSearch")})]})}):m!=="general"?o.jsx("div",{className:"my-agent-empty-message",children:o.jsxs(Tn,{fill:"none",children:[o.jsx(Tn.Icon,{children:o.jsx(t3t,{type:m})}),o.jsx(Tn.Title,{className:"my-agent-sandbox-empty-title",children:C("myAgents.noAgentType",{type:ut})})]})}):o.jsx("div",{className:"my-agent-empty-message",children:o.jsxs(Tn,{fill:"none",children:[o.jsx(Tn.Icon,{children:o.jsx(Xf,{})}),o.jsx(Tn.Title,{children:C("myAgents.noGeneralAgents")}),o.jsx(Tn.Description,{children:C("myAgents.createGeneralAgentDescription")})]})}):o.jsxs(o.Fragment,{children:[m==="general"&&se?o.jsxs("div",{className:"my-agent-inline-error",role:"alert",children:[o.jsx("span",{children:se}),o.jsx("button",{type:"button",onClick:()=>void je("",!0),children:C("common.reload")})]}):null,o.jsxs(Gx,{className:"my-agent-grid",children:[wt?o.jsx(jb,{className:"my-agent-create-card","aria-label":C("myAgents.createAgentType",{type:ut}),onClick:wt,icon:o.jsx(ZLt,{}),children:C("myAgents.createAgent")}):null,Pt.map(Qe=>{var Ve;const ye=s3t(Qe,Q,C);return o.jsx(l3t,{agent:Qe,deploymentTask:$t(Qe),nowMs:$e,onViewDeploymentTask:k,onUse:en,compatibility:Qe.runtime?Xe[hg(Qe)]??{status:"checking",message:C("myAgents.compatibility.checking")}:void 0,onRetryCompatibility:cn,onPrepareUpdate:kt,onViewDetails:ye?()=>{ye.sandbox?h(ye.sandbox):u(ye)}:void 0,connecting:Qe.id===Me,connectError:_e[Qe.id],connected:((Ve=Qe.runtime)==null?void 0:Ve.runtimeId)===v,onEditDraft:S,onDeleteDraft:Oe},Qe.id)})]})]}),m==="general"&&!se&&!gt&&(Pt.length>0||!!U)&&o.jsx("div",{className:"my-agent-load-more",ref:T,"aria-live":"polite",children:ae?o.jsxs(o.Fragment,{children:[o.jsx("span",{className:"my-agent-loading-mark","aria-hidden":"true"}),o.jsx("span",{children:C("myAgents.loadingMore")})]}):U?o.jsx("span",{children:C("myAgents.scrollForMore")}):o.jsx("span",{children:C("myAgents.allLoaded")})})]}),Fe?o.jsx(gc,{title:C("myAgents.deleteDraftTitle"),description:C("myAgents.deleteDraftDescription",{name:Fe.draft.name||C("agentSelector.unnamedAgent")}),confirmLabel:C("myAgents.deleteDraft"),variant:"danger",onCancel:()=>Oe(null),onConfirm:()=>{E==null||E(Fe),Oe(null)}}):null]})}const u3t="_Container_13560_1",d3t="_Textarea_13560_174",Vte={Container:u3t,Textarea:d3t},Mm=e=>{const t=p.useRef(null),i=`search-ui-input-${p.useId()}`,{id:r,name:s,variant:a="outline",size:l="md",gutterSize:c,className:u,autoComplete:d,disabled:f=!1,readOnly:h=!1,invalid:m=!1,allowAutofillExtensions:g=!!s,onFocus:b,onBlur:v,onAnimationStart:y,onAutofill:x,autoSelect:O,rows:w=3,maxRows:k,autoResize:S,ref:E,onChange:C,...N}=e,[T,j]=p.useState(!1),A=S?Math.max(k??10,w):w;p.useEffect(()=>{var P;O&&((P=t.current)==null||P.select())},[O]);const L=P=>{y==null||y(P),P.animationName==="native-autofill-in"&&(x==null||x())},_=p.useCallback(()=>{if(!S||!t.current||A===void 0)return;t.current.style.height="0px";const P=t.current.scrollHeight;t.current.style.height=P+"px"},[S,A]);return p.useEffect(()=>{_()},[e.value,w,_]),o.jsx("div",{className:yi(Vte.Container,u),"data-variant":a,"data-size":l,"data-gutter-size":c,"data-focused":T,"data-disabled":f?"":void 0,"data-readonly":h?"":void 0,"data-invalid":m?"":void 0,style:Zb({"textarea-min-rows":`${w}`,"textarea-max-rows":`${A}`}),children:o.jsx("textarea",{...N,onChange:P=>{C==null||C(P),_()},ref:nE([t,E]),id:r||(g?void 0:i),className:Vte.Textarea,name:s,readOnly:h,disabled:f,rows:w,onFocus:P=>{j(!0),b==null||b(P)},onBlur:P=>{j(!1),v==null||v(P)},onAnimationStart:L,"data-lpignore":g?void 0:!0,"data-1p-ignore":g?void 0:!0})})},KI="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2048%2048'%3e%3cimage%20width='48'%20height='48'%20href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAMKADAAQAAAABAAAAMAAAAADbN2wMAAAH7UlEQVRoBdVZWWwbVRQ9492Onc1xTfaWLukq9oSqLKnYBZRSNgn6AagsAgmJRfzxg4SEEDtiER8IBKKAChK0FS1tKYWW0lZQKKV0gxCVJm3ikDiO17EdzrUzSdw4jj1OpeQqNzO237vvnHfvu/e9GWVwcBBDYue1mrqE2kI1UqeSJAnmIHUzNUCNUmGiKtQy6oPUR6geqnw/FSVOUH9R36KupfaDHnBQn6MGqEnqVJcEAfZTBbNL4b+lZPI1VbwwnaSfYO8z8N+TVMd0Qj6EVdbs3eIBP29cVFkL00kk+wSEwHAamgh9bDAJSQWTITZFnF+85J1tBPyOUC9OqqnsVdTIRkVBi70Msy125uriHJ8XAXFRfzKBTQM+rO0/hc54cSQE8iyzAx/XLcEltjIU44uCQijOaHvPfxIv97TjWCzEcMo7+sZ4TGa+2V6KT2rPQ73ZptsPBZE30fVrymvxTvUCtDoqYC0ijhMk/3MkgDd62xFheOqVggjIIAbOVaujEh/ULsaNzioUsxhVAv/A34GD0YBubxZMQJupWpMNr58zHytcHth1ekICsDcRx4u+fxBK6vOCbgKyEIXEK975WOmaoZuErKv1QR8ORQd0eUE3Ac0TNSYrXvI24fZSLxwGfebiDKW3e08gln9J0oYvKoMNG6kmiRdmzMOtTi8sOsJJJfANA93oiseGbeZ7k1EHZAKCEcApu4wCxUsSz3rm4HQiim3B/wpOsBJA2yP/4cZIJYIBFcGwCjWeSKEwm4wosZtR7rKizGXJQJZRB1TuttftAprnAbOrM9rl9UHqwg+s1o+eOow/GNN5CaPOklSgdKq4us+Ji7pt6Dw1AF9vBOGImjJht5lRVWFDY7UL58/3wOt2YPEcN2xWVpPRe6EQC+y9rwINPNKsuRaYX5cXhIxGkks+Y7V+6vQRdLBi5yx1bGwicFebivj+ARgOhZGMJMFyQyWpoV2GRIa2ZXOX2bDyqnPxzEPNKC+1Zj957eDBTbz34PXAwvoMfBN+kGV8Bxf00VgQz/vaEB6nSCnRQVj2h2DZG4TyZwQWlSils3m8RDDEhk2uaqlHaYklVb3Ha42dh4B3eMzZ//eEmMc0kGL3cEU9WksqU4XvzAYKZ9n6fQCOz3thORCGkhgCf2bDMz4bjQpW39yE65Y1QO5FxiUgP+76E3hzI7D1VyBcwP5NTFcZzXjaPRMNZmvGPkfA23YMwLHRD0Mf3ZwTgaBIi8GgYMGsSjx2z3kEP9Jp5E5rOeoqQH75C3htPfDpD4CskXxFvHC5vQKPVjSwPqQfcKTAfxuA/Ws/lBAXwEhUTGjWSAL3r1qYykSju+UkIFbZDx09wPvb0iH1W9uEYw03MHAV3ltew1CqgDkyCNtWgt/cnwY/3GriG5n9hbMrccNljRmzLz0nJCCNJBsEwsCH24E3NgDr96brhfyWS2Sm3EYLVsOL0i0DsG8h+LDkqcLExHhfc9siVDDrjJ59sZJRyHKZFRKybiSkTtIjR08CrXwEdtGcXL2A4+192LOuDeatfqg6wMvsL5lbhWuWysIdO995E9BgSkh19THX7wQOtANXLgKWLQSaarUWI9dNP7bjo68OY9uef6GqhcW8ZkViX2a/nBWYQ4+RggmIBfFGnHgOcD0c7wD2HgOW0xuXk0xN5SDaOwL4cnsb1m05joPHejKK0hgEOb4Q8Muba3H1pXUwZZl96aqLgHSU2RCbEe6/9hzh875OYPdhYF5NDLt/Oohd+46gNxBjm2zzJhZyi/RyV5TggdsvRJnTOm5j3QQ0i9ra6OHj1u9+B/YdNcLXVQdDmYNPy9oZ971IcIPHjUHadVrHHFfZNphtTtx508W4eJEHsg7Gk6IJaIZlDEn3EdUEl7sBg4la2MtqkYgNIOz/F9FgF6IhX6p5mozcjgbGasw/xWCCs7IeN7U24b4VddwZj26jjTZynTQCmknxSBqIETanh7ceWEpmpIiokT7E6JFosBvxaD/iJCeNDQYzTFYnzHY3SsobmfM9eOyucjTO0KyOf510AqOHkl2kiMlSQoAlsPLAk4hHSCaIJMMqmUgfYBQeggxGK4xmOxprXHh8lYK51em+E/0/qwQyBh8iY+Q52pjlOZD8XFcFPHELcGlT3stlbBaymtOROTReBoZJ+0DjZ9pv4SFq9fL0YWqcjJl1+AwP8OSGS+amq6y4P/fyyWqvoC9lDAG7ainPEJcBs7xMBGOLbU6bGQTMJHAnDUlG2biPFZevEM4GCZl9sSsnPgG+bAHfa+l8vZJxpNSo+oPp/c4XP6bPBN0kog2qtdFz1WzIkfXmZuAKVm6JewlbvZKVgGZMilMPwW9ngdr5B3CEG7iEbCY5ffl6RgPtYDGdybS4ogW4YDbgLefTD5s2kv5rTgKaWdlKi1fau4BDJ3jM5I70NDd0J7grzfZEUMg5CM5Tmg4TiW3ZtVYxTKpcgM2iWS7+mhcBbRiZ/TBTd4jPjtSEVF3AxxdUPgkxTrUUMTcBykKUmLZwhQlYPhWBeCBV5DRjk3QtiEC2McUDsjPVCEhWEQ8Umk2y2c7nOyEwrV/ySdbdQo3nw3aKtRHM3wiBtVQu02knISJ+SQh8Q32TyqTJJ6xTXyQzyzb2LeoBWQOy5pjwcDf1YSqzNIooLex99kTCppsq4N+l+oUArylhoku9sb+O18VU8c5UEiZu7KGyrKKTmgr7/wGxhy03aZIycwAAAABJRU5ErkJggg=='%20/%3e%3c/svg%3e",f3t="data:image/svg+xml,%3c?xml%20version='1.0'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%20100%20100'%3e%3ctitle%3ePandoc%20Icon%3c/title%3e%3cdesc%20property='dc:creator'%3eAlbert%20Krewinkel%3c/desc%3e%3cmetadata%20id='license'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3ccc:license%20rdf:resource='http://creativecommons.org/licenses/by-sa/4.0/'%20/%3e%3c/cc:Work%3e%3ccc:License%20rdf:about='http://creativecommons.org/licenses/by-sa/4.0/'%3e%3ccc:permits%20rdf:resource='http://creativecommons.org/ns%23Reproduction'%20/%3e%3ccc:permits%20rdf:resource='http://creativecommons.org/ns%23Distribution'%20/%3e%3ccc:requires%20rdf:resource='http://creativecommons.org/ns%23Notice'%20/%3e%3ccc:requires%20rdf:resource='http://creativecommons.org/ns%23Attribution'%20/%3e%3ccc:permits%20rdf:resource='http://creativecommons.org/ns%23DerivativeWorks'%20/%3e%3ccc:requires%20rdf:resource='http://creativecommons.org/ns%23ShareAlike'%20/%3e%3c/cc:License%3e%3c/rdf:RDF%3e%3c/metadata%3e%3crect%20fill='%23fed'%20stroke='%23fed'%20width='100'%20height='100'/%3e%3cg%20fill='none'%20stroke='%234093da'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='8'%20transform='skewX(-6)%20translate(8%201)'%3e%3cpath%20d='M%2030,10%20l%200,80%20M%2045,10%20l%200,80%20M%2020,10%20l%2040,0%20l%2018,18%20l%200,25%20l%20-33,0'%20/%3e%3cpath%20fill='%234093da'%20stroke-width='6'%20d='M%2061,10%20l%2017,17%20l%20-17,0%20l%200,-17'%20/%3e%3c/g%3e%3c/svg%3e",h3t="data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20width='100%25'%20height='100%25'%20viewBox='0%200%20100%20100'%20version='1.1'%20id='svg4'%20sodipodi:docname='favicon.svg'%20inkscape:version='1.4.4%20(dcaf3e7,%202026-05-05)'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:svg='http://www.w3.org/2000/svg'%3e%3csodipodi:namedview%20id='namedview4'%20pagecolor='%23ffffff'%20bordercolor='%23000000'%20borderopacity='0.25'%20inkscape:showpageshadow='2'%20inkscape:pageopacity='0.0'%20inkscape:pagecheckerboard='0'%20inkscape:deskcolor='%23d1d1d1'%20showgrid='true'%20inkscape:zoom='8.2236519'%20inkscape:cx='34.534536'%20inkscape:cy='45.174577'%20inkscape:window-width='1881'%20inkscape:window-height='1382'%20inkscape:window-x='1512'%20inkscape:window-y='30'%20inkscape:window-maximized='0'%20inkscape:current-layer='svg4'%3e%3cinkscape:grid%20type='axonomgrid'%20id='grid4'%20units='px'%20originx='0'%20originy='0'%20spacingx='3.7795276'%20spacingy='3.7795276'%20empcolor='%230099e5'%20empopacity='0.30196078'%20color='%230099e5'%20opacity='0.14901961'%20empspacing='0'%20dotted='false'%20gridanglex='40'%20gridanglez='40'%20enabled='true'%20visible='true'%20/%3e%3c/sodipodi:namedview%3e%3cdefs%20id='defs1'%3e%3cfilter%20id='shadow'%20x='0'%20y='0'%20width='1'%20height='1'%3e%3cfeDropShadow%20dx='0'%20dy='2'%20stdDeviation='3'%20flood-color='rgba(50,%2050,%2093,%200.18)'%20/%3e%3c/filter%3e%3c/defs%3e%3crect%20x='4'%20y='4'%20width='92'%20height='92'%20rx='22.08'%20fill='%23e8efff'%20filter='url(%23shadow)'%20id='rect1'%20transform='matrix(1.0869565,0,0,1.0869565,-4.347826,-4.347826)'%20style='stroke-width:0.92'%20ry='22.08'%20/%3e%3cpath%20style='fill:%230a2540;fill-opacity:1;stroke-width:1.88976'%20d='M%2049.999999,6.535431%204.9573423,44.330708%2049.999999,82.125984%2092.790523,46.220471%2095.042656,44.330708%20Z'%20id='path1'%20/%3e%3cpath%20style='fill:%23425466;fill-opacity:1;stroke-width:1.88976'%20d='M%204.9573423,44.330708%20V%2055.669291%20L%2049.999999,93.464567%20V%2082.125984%20Z'%20id='path2'%20/%3e%3cpath%20style='fill:%231a3550;fill-opacity:1;stroke-width:1.88976'%20d='M%2049.999999,82.125984%2095.042656,44.330708%20V%2055.669291%20L%2049.999999,93.464567%20Z'%20id='path3'%20/%3e%3cpath%20style='fill:%234ade80;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;fill-opacity:1'%20d='m%2045.042657,30.236221%209.008531,-7.559055%2022.521328,18.897638%20-9.008531,7.559056%20z'%20id='path5'%20/%3e%3cpath%20style='fill:none;fill-opacity:1;stroke:%234ade80;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1'%20d='M%2027.025594,49.133859%2047.29479,47.244096%2045.042657,64.25197'%20id='path6'%20/%3e%3c/svg%3e",p3t="data:image/svg+xml,%3csvg%20fill='%23261230'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3eAstral%3c/title%3e%3cpath%20d='M1.44%200C.6422%200%200%20.6422%200%201.44v21.12C0%2023.3578.6422%2024%201.44%2024h21.12c.7978%200%201.44-.6422%201.44-1.44V1.44C24%20.6422%2023.3578%200%2022.56%200Zm4.7998%204.8h11.5199c.7953%200%201.44.6447%201.44%201.44V19.2h-6.624v-4.32h-1.152v4.32H4.8V6.24c0-.7953.6446-1.44%201.4398-1.44m4.032%205.472v1.152h3.456v-1.152z'/%3e%3c/svg%3e",m3t="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1.34em'%20height='1em'%20viewBox='0%200%20256%20192'%3e%3cpath%20fill='%232d4552'%20d='M84.38%20108.352c-9.556%202.712-15.826%207.467-19.956%2012.218c3.956-3.461%209.255-6.639%2016.402-8.665c7.311-2.072%2013.548-2.057%2018.702-1.062v-4.03c-4.397-.402-9.437-.082-15.148%201.539M63.987%2074.475l-35.49%209.35s.646.914%201.844%202.133l30.092-7.93s-.427%205.495-4.13%2010.41c7.005-5.299%207.684-13.963%207.684-13.963m29.709%2083.41c-49.946%2013.452-76.37-44.43-84.37-74.472c-3.696-13.868-5.31-24.37-5.74-31.148a11.5%2011.5%200%200%201%20.025-1.84C1.021%2050.58-.22%2051.927.032%2055.82c.43%206.773%202.044%2017.275%205.74%2031.147c7.997%2030.038%2034.424%2087.92%2084.37%2074.468c10.871-2.929%2019.038-8.263%2025.17-15.073c-5.652%205.104-12.724%209.123-21.616%2011.523M103.08%2039.05v3.555h19.59c-.401-1.259-.806-2.393-1.208-3.555z'/%3e%3cpath%20fill='%232d4552'%20d='M127.05%2068.325c8.81%202.503%2013.47%208.68%2015.933%2014.146l9.824%202.79s-1.34-19.132-18.645-24.047c-16.189-4.6-26.151%208.995-27.363%2010.754c4.71-3.355%2011.586-6.102%2020.251-3.643m78.197%2014.234c-16.204-4.62-26.162%209.003-27.356%2010.737c4.713-3.351%2011.586-6.099%2020.247-3.629c8.797%202.506%2013.452%208.676%2015.923%2014.146l9.837%202.8s-1.361-19.135-18.651-24.054m-9.76%2050.443l-81.718-22.845s.885%204.485%204.279%2010.293l68.803%2019.234c5.664-3.277%208.636-6.682%208.636-6.682m-56.655%2049.174C74.127%20164.828%2081.949%2082.386%2092.419%2043.32c4.311-16.1%208.743-28.066%2012.419-36.088c-2.193-.451-4.01.704-5.804%204.354C95.13%2019.5%2090.14%2032.387%2085.312%2050.427c-10.467%2039.066-18.29%20121.506%2046.412%20138.854c30.497%208.17%2054.256-4.247%2071.966-23.749c-16.81%2015.226-38.274%2023.763-64.858%2016.644'/%3e%3cpath%20fill='%23e2574c'%20d='M103.081%20138.565v-16.637l-46.223%2013.108s3.415-19.846%2027.522-26.684c7.311-2.072%2013.549-2.058%2018.701-1.063V39.05h23.145c-2.52-7.787-4.958-13.782-7.006-17.948c-3.387-6.895-6.859-2.324-14.741%204.269c-5.552%204.638-19.583%2014.533-40.698%2020.222c-21.114%205.694-38.185%204.184-45.307%202.95c-10.097-1.742-15.378-3.96-14.884%203.721c.43%206.774%202.043%2017.277%205.74%2031.148c7.996%2030.039%2034.424%2087.92%2084.37%2074.468c13.046-3.515%2022.254-10.464%2028.637-19.32h-19.256zm-74.588-54.74l35.494-9.35s-1.034%2013.654-14.34%2017.162c-13.31%203.504-21.154-7.812-21.154-7.812'/%3e%3cpath%20fill='%232ead33'%20d='M236.664%2039.84c-9.226%201.617-31.361%203.632-58.716-3.7c-27.363-7.328-45.517-20.144-52.71-26.168c-10.197-8.54-14.682-14.476-19.096-5.498c-3.902%207.918-8.893%2020.805-13.723%2038.846c-10.466%2039.066-18.289%20121.505%2046.413%20138.853c64.687%2017.333%2099.126-57.978%20109.593-97.047c4.83-18.037%206.948-31.695%207.53-40.502c.665-9.976-6.187-7.08-19.29-4.784M106.668%2072.161s10.196-15.859%2027.49-10.943c17.305%204.915%2018.645%2024.046%2018.645%2024.046zm42.215%2071.163c-30.419-8.91-35.11-33.167-35.11-33.167l81.714%2022.846c0-.004-16.494%2019.12-46.604%2010.32m28.89-49.85s10.183-15.847%2027.474-10.918c17.29%204.923%2018.651%2024.054%2018.651%2024.054z'/%3e%3cpath%20fill='%23d65348'%20d='m86.928%20126.51l-30.07%208.522s3.266-18.609%2025.418-25.983L65.25%2045.147l-1.471.447c-21.115%205.694-38.185%204.184-45.307%202.95c-10.097-1.741-15.379-3.96-14.885%203.722c.43%206.774%202.044%2017.276%205.74%2031.147c7.997%2030.039%2034.425%2087.92%2084.37%2074.468l1.471-.462zM28.493%2083.825l35.494-9.351s-1.034%2013.654-14.34%2017.162c-13.31%203.504-21.154-7.811-21.154-7.811'/%3e%3cpath%20fill='%231d8d22'%20d='m150.255%20143.658l-1.376-.335c-30.419-8.91-35.11-33.166-35.11-33.166l42.137%2011.778l22.308-85.724l-.27-.07c-27.362-7.329-45.516-20.145-52.71-26.17c-10.196-8.54-14.682-14.475-19.096-5.497c-3.898%207.918-8.889%2020.805-13.719%2038.846c-10.466%2039.066-18.289%20121.505%2046.413%20138.852l1.326.3zM106.668%2072.16s10.196-15.859%2027.49-10.943c17.305%204.915%2018.645%2024.046%2018.645%2024.046z'/%3e%3cpath%20fill='%23c04b41'%20d='m88.46%20126.072l-8.064%202.289c1.906%2010.74%205.264%2021.047%2010.534%2030.152c.918-.202%201.828-.376%202.762-.632c2.449-.66%204.72-1.479%206.906-2.371c-5.89-8.74-9.785-18.804-12.137-29.438m-3.148-75.644c-4.144%2015.467-7.852%2037.73-6.831%2060.06c1.826-.793%203.756-1.532%205.9-2.14l1.492-.334c-1.82-23.852%202.114-48.157%206.546-64.694a323%20323%200%200%201%203.373-11.704a105%20105%200%200%201-5.974%203.547a307%20307%200%200%200-4.506%2015.265'/%3e%3c/svg%3e",g3t="data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='512'%20height='512'%20version='1.1'%20viewBox='0%200%20135.47%20135.47'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='m67.733%2067.733%2029.33%2016.933-29.33%2050.8c37.408%200%2067.733-30.325%2067.733-67.733%200-12.341-3.3168-23.901-9.0837-33.867h-58.65z'%20fill='%23afccf9'/%3e%3cpath%20d='m67.733-1e-6c-25.07%200-46.942%2013.63-58.654%2033.875l29.324%2050.792%2029.33-16.933v-33.867h58.65c-11.714-20.24-33.583-33.867-58.65-33.867z'%20fill='%231767d1'/%3e%3cpath%20d='m0%2067.733c0%2037.408%2030.324%2067.733%2067.733%2067.733l29.33-50.8-29.33-16.933-29.33%2016.933-29.324-50.792c-5.7637%209.9632-9.0794%2021.519-9.0794%2033.858'%20fill='%23679ef5'/%3e%3cpath%20d='m101.6%2067.733c0%2018.704-15.163%2033.867-33.867%2033.867-18.704%200-33.867-15.163-33.867-33.867s15.163-33.867%2033.867-33.867c18.704%200%2033.867%2015.163%2033.867%2033.867'%20fill='%23fff'/%3e%3cpath%20d='m95.25%2067.733c0%2015.197-12.32%2027.517-27.517%2027.517-15.197%200-27.517-12.32-27.517-27.517%200-15.197%2012.32-27.517%2027.517-27.517%2015.197%200%2027.517%2012.32%2027.517%2027.517'%20fill='%231a74e7'/%3e%3c/svg%3e",b3t="data:image/svg+xml,%3csvg%20fill='%23F03C2E'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3eGit%3c/title%3e%3cpath%20d='M13.09%2023.549a1.54%201.54%200%200%201-2.18%200L.451%2013.089a1.54%201.54%200%200%201%200-2.179l7.191-7.19%202.733%202.733a1.85%201.85%200%200%200%20.964%202.326v6.66a1.849%201.849%200%201%200%201.54%200V8.957l2.508%202.508a1.85%201.85%200%201%200%201.09-1.09l-2.634-2.634a1.85%201.85%200%200%200-2.378-2.377L8.73%202.63%2010.91.451a1.54%201.54%200%200%201%202.179%200l10.459%2010.46a1.54%201.54%200%200%201%200%202.179z'/%3e%3c/svg%3e",y3t="data:image/svg+xml,%3csvg%20fill='%23073551'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3ecurl%3c/title%3e%3cpath%20d='M.803%2014.8169c0-.5342.433-.9665.9665-.9665.5335%200%20.9665.4323.9665.9665%200%20.5335-.433.9657-.9665.9657-.5335%200-.9666-.4322-.9666-.9657m2.736%200c0-.1963-.0532-.376-.1119-.5525-.2344-.7024-.876-1.2169-1.6575-1.2169-.1249%200-.2344.0465-.3524.0708C.6149%2013.2865%200%2013.9646%200%2014.817c0%20.9764.7923%201.7694%201.7695%201.7694.9772%200%201.7694-.793%201.7694-1.7694m-1.7694-7.149c.5335%200%20.9665.433.9665.9665%200%20.5335-.433.9665-.9665.9665-.5343%200-.9666-.433-.9666-.9665%200-.5335.4323-.9665.9666-.9665m0%202.7359c.9772%200%201.7694-.7923%201.7694-1.7694%200-.1956-.0532-.376-.1119-.5525-.2344-.7024-.8767-1.2169-1.6575-1.2169-.1249%200-.2344.0465-.3524.0716C.6149%207.104%200%207.782%200%208.6344c0%20.9771.7923%201.7694%201.7695%201.7694m13.221-5.694c-.5342%200-.9665-.433-.9665-.9664a.966.966%200%2001.9666-.9665c.5335%200%20.9658.4322.9658.9665%200%20.5334-.4323.9664-.9658.9664m-9.6%2016.5133c-.5335%200-.9666-.433-.9666-.9665%200-.5342.433-.9665.9666-.9665a.966.966%200%2001.9665.9665c0%20.5335-.4323.9665-.9665.9665m9.6-19.2491c-.978%200-1.7695.7922-1.7695%201.7694%200%20.2085.0525.4025.1187.5882L5.039%2018.5581c-.803.1681-1.4179.8462-1.4179%201.6985%200%20.9772.7923%201.7694%201.7695%201.7694.9772%200%201.7694-.7922%201.7694-1.7694%200-.1963-.0525-.3759-.111-.5525l8.3427-14.2728c.7778-.1865%201.3683-.8531%201.3683-1.688%200-.977-.793-1.7693-1.7694-1.7693m7.24%202.7359c-.5343%200-.9666-.433-.9666-.9665a.966.966%200%2001.9665-.9665c.5335%200%20.9666.4322.9666.9665%200%20.5334-.433.9665-.9666.9665M12.6313%2021.223c-.5343%200-.9665-.433-.9665-.9665a.966.966%200%2001.9665-.9665c.5335%200%20.9658.4323.9658.9665%200%20.5335-.4323.9665-.9658.9665M22.2305%201.974c-.9772%200-1.7694.7922-1.7694%201.7694%200%20.2085.0525.4025.1187.5882l-8.3009%2014.2265c-.8021.1681-1.417.8462-1.417%201.6985%200%20.9772.7922%201.7694%201.7694%201.7694.9764%200%201.7687-.7922%201.7687-1.7694%200-.1963-.0525-.3759-.1111-.5525l8.3427-14.2728C23.4094%205.2448%2024%204.5782%2024%203.7433c0-.977-.7923-1.7693-1.7695-1.7693'/%3e%3c/svg%3e",v3t="data:image/svg+xml,%3csvg%20fill='%23007808'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3eFFmpeg%3c/title%3e%3cpath%20d='M21.72%2017.91V6.5l-.53-.49L9.05%2018.52l-1.29-.06L24%201.53l-.33-.95-11.93%201-5.75%206.6v-.23l4.7-5.39-1.38-.77-9.11.77v2.85l1.91.46v.01l.19-.01-.56.66v10.6c.609-.126%201.22-.241%201.83-.36L14.12%205.22l.83-.04L0%2021.44l9.67.82%201.35-.77%206.82-6.74v2.15l-5.72%205.57%2011.26.95.35-.94v-3.16l-3.29-.18c.434-.403.858-.816%201.28-1.23z'/%3e%3c/svg%3e",x3t="data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%201080%201080'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2030.3.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.3%20Build%20182)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23ff0;%20}%20.st1%20{%20fill:%20%23333;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M660.52,419.49l-195.15-52.98c-15.84-4.3-19.16-25.29-5.43-34.28l169.23-110.7-9.91-201.97c-.8-16.39,18.13-26.04,30.92-15.76l157.57,126.74,189.03-71.84c15.34-5.83,30.37,9.2,24.54,24.54l-71.84,189.03,126.74,157.57c10.29,12.79.64,31.73-15.76,30.92l-201.97-9.91-110.7,169.23c-8.98,13.73-29.98,10.41-34.28-5.43l-52.98-195.15h-.01Z'/%3e%3cpath%20class='st1'%20d='M603.34,476.66l32.94,121.68,4.45,16.23-429.11,429.11c-48.45,48.45-126.85,48.45-175.3,0C12.16,1019.51,0,987.89,0,956.15s12.02-63.48,36.31-87.77l429.11-429.11,16.35,4.33,121.56,33.06h0Z'/%3e%3c/svg%3e";function nz(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true",...e,children:o.jsx("path",{d:"M12 .5C5.65.5.5 5.65.5 12c0 5.08 3.29 9.39 7.86 10.91 .58 .11 .79-.25.79-.56v-2.02c-3.2.7-3.88-1.36-3.88-1.36-.52-1.33-1.28-1.69-1.28-1.69-1.05-.72.08-.7.08-.7 1.16.08 1.77 1.19 1.77 1.19 1.03 1.77 2.71 1.26 3.37.96.1-.75.4-1.26.73-1.55-2.56-.29-5.25-1.28-5.25-5.7 0-1.26.45-2.29 1.19-3.1-.12-.29-.52-1.47.11-3.06 0 0 .97-.31 3.16 1.18A10.98 10.98 0 0 1 12 6.11c.98 0 1.96.13 2.87.39 2.19-1.49 3.16-1.18 3.16-1.18.63 1.59.23 2.77.11 3.06.74.81 1.19 1.84 1.19 3.1 0 4.43-2.7 5.4-5.27 5.69.42.36.78 1.06.78 2.14v3.04c0 .31.21.67.8.56A11.51 11.51 0 0 0 23.5 12C23.5 5.65 18.35.5 12 .5Z"})})}So.registerLanguage("bash",rU);const w3t=48;function O3t(e,t=w3t){return e.scrollHeight-e.scrollTop-e.clientHeight<=t}function S3t(e){return So.highlight(e,{language:"bash",ignoreIllegals:!0}).value}function k3t({status:e}){return e==="succeeded"?o.jsx(Hu,{"aria-hidden":!0}):e==="failed"?o.jsx(y4,{"aria-hidden":!0}):e==="running"?o.jsx(gi,{className:"studio-build-progress__spinner","aria-hidden":!0}):o.jsx(A7e,{"aria-hidden":!0})}function Hte(e,t){if(!e)return"";const n=Date.parse(e);return Number.isNaN(n)?"":new Intl.DateTimeFormat(t,{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1}).format(n)}function E3t({steps:e,log:t,logError:n="",logTruncated:i=!1,logUpdatedAt:r,loading:s=!1}){const{t:a,i18n:l}=Ae("ui"),c=p.useRef(null),u=p.useRef(!0),[d,f]=p.useState(!1),h=p.useMemo(()=>S3t(t),[t]);p.useEffect(()=>{const g=c.current;g&&t&&u.current&&(g.scrollTop=g.scrollHeight)},[t]);const m=async()=>{try{await navigator.clipboard.writeText(t),f(!0),window.setTimeout(()=>f(!1),1500)}catch{f(!1)}};return o.jsxs("div",{className:"studio-build-progress",children:[o.jsx("ol",{className:"studio-build-progress__steps","aria-label":a("studioBuildProgress.steps"),children:e.map(g=>o.jsxs("li",{className:`is-${g.status}`,children:[o.jsx("span",{className:"studio-build-progress__step-icon",children:o.jsx(k3t,{status:g.status})}),o.jsx("span",{children:g.label})]},g.key))}),o.jsxs("section",{className:"studio-build-progress__log","aria-label":a("studioBuildProgress.log"),children:[o.jsxs("header",{children:[o.jsxs("div",{children:[o.jsx("strong",{children:a("studioBuildProgress.log")}),o.jsxs("span",{children:[a(s?"studioBuildProgress.syncing":n?"studioBuildProgress.loadFailed":"studioBuildProgress.synced"),i?a("studioBuildProgress.recentOnly"):"",Hte(r,l.resolvedLanguage??l.language)?` · ${Hte(r,l.resolvedLanguage??l.language)}`:""]})]}),o.jsxs(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",disabled:!t,onClick:()=>void m(),"aria-label":a(d?"studioBuildProgress.copiedLog":"studioBuildProgress.copyLog"),children:[d?o.jsx(Hu,{"aria-hidden":!0}):o.jsx(nR,{"aria-hidden":!0}),a(d?"studioBuildProgress.copied":"studioBuildProgress.copy")]})]}),t?o.jsx("pre",{ref:c,tabIndex:0,"aria-label":a("studioBuildProgress.logContent"),onScroll:g=>{u.current=O3t(g.currentTarget)},children:o.jsx("code",{className:"hljs language-bash",dangerouslySetInnerHTML:{__html:h}})}):o.jsx("div",{className:`studio-build-progress__log-empty${n?" is-error":""}`,children:n||a(s?"studioBuildProgress.waiting":"studioBuildProgress.empty")})]})]})}function qte({name:e,description:t,icon:n,selected:i,disabled:r=!1,onChange:s,className:a=""}){return o.jsxs("button",{type:"button",className:`studio-package-option${i?" is-selected":""}${a?` ${a}`:""}`,"aria-pressed":i,disabled:r,onClick:()=>s(!i),children:[o.jsx("span",{className:"studio-package-option__icon","aria-hidden":"true",children:n}),o.jsxs("span",{className:"studio-package-option__content",children:[o.jsx("strong",{children:e}),t?o.jsx("span",{children:t}):null]}),o.jsx("span",{className:"studio-package-option__action","aria-hidden":"true",children:i?o.jsx(l7e,{}):o.jsx(d7e,{})})]})}function pg(e,t){return e[t]|e[t+1]<<8}function W0(e,t){return(e[t]|e[t+1]<<8|e[t+2]<<16|e[t+3]<<24)>>>0}async function C3t(e){const t=new DecompressionStream("deflate-raw"),n=new Blob([new Uint8Array(e)]).stream().pipeThrough(t);return new Uint8Array(await new Response(n).arrayBuffer())}async function $je(e,t={}){let i=-1;for(let u=e.length-22;u>=0&&u>e.length-65557;u--)if(W0(e,u)===101010256){i=u;break}if(i<0)throw new Error(Ft("helpers.zip.invalid"));const r=pg(e,i+10);if(t.maxEntries!==void 0&&r>t.maxEntries)throw new Error(Ft("helpers.zip.tooManyFiles",{count:t.maxEntries}));let s=W0(e,i+16);const a=new TextDecoder("utf-8"),l=[];let c=0;for(let u=0;ut.maxUncompressedBytes)throw new Error(Ft("helpers.zip.tooLarge"));const x=pg(e,v+26),O=pg(e,v+28),w=v+30+x+O,k=e.subarray(w,w+f);let S;if(d===0)S=k;else if(d===8)S=await C3t(k);else{s+=46+m+g+b;continue}l.push({name:y,text:a.decode(S)}),s+=46+m+g+b}return l}const T8=/(^|\/)skill\.md$/i;function T3t(e){const t=(e??"").replace(/\r\n?/g,` `).split(` -`);if(!t.length||t[0].trim()!=="---")return{name:"",description:""};let n=-1;for(let r=1;r=2&&(e.startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'"))}function f3t(...e){var t;for(const n of e){const i=(t=n.trim().replace(/\\/g,"/").split("/").filter(Boolean).pop())==null?void 0:t.replace(/[^A-Za-z0-9_-]+/g,"-").replace(/^-+|-+$/g,"");if(i)return i.slice(0,64)}return"local-skill"}function h3t(e,t){return t.trim()||e}function Cje(e){const t=e.map(i=>({path:i.path.replace(/\\/g,"/").replace(/^\.\//,""),text:i.text})).filter(i=>i.path.length>0&&!i.path.endsWith("/")),n=new Set(t.map(i=>i.path.split("/")[0]));if(n.size===1&&t.every(i=>i.path.includes("/"))){const i=[...n][0]+"/";return t.map(r=>({path:r.path.slice(i.length),text:r.text}))}return t}function p3t(e){const t=new Map,n=new Set;for(const i of e)if(O8.test("/"+i.path)){const r=i.path.split("/");n.add(r.slice(0,-1).join("/"))}for(const i of e){const r=i.path.split("/");let s="";for(let u=r.length-1;u>=0;u--){const d=r.slice(0,u).join("/");if(n.has(d)){s=d;break}}const a=O8.test("/"+i.path);if(!s&&!a&&!n.has("")||!n.has(s)&&!a)continue;const l=s?i.path.slice(s.length+1):i.path,c=t.get(s)||[];c.push({path:l,text:i.text}),t.set(s,c)}return t}function m3t(e,t,n){const i=`${n}${e?"/"+e:""}`,r=t.find(c=>O8.test("/"+c.path));if(!r)return{hit:null,error:$t("helpers.skills.missingManifest",{location:i})};const s=u3t(r.text),a=f3t(s.name,e,n.replace(/\.[^.]+$/,"")),l=[];for(const c of t){if(c.path.split("/").some(f=>f===".."))return{hit:null,error:$t("helpers.skills.invalidParentPath",{location:i,path:c.path})};const d=`skills/${a}/${c.path}`;if(!d.startsWith(`skills/${a}/`))return{hit:null,error:$t("helpers.skills.invalidPath",{location:i,path:c.path})};l.push({path:d,content:c.text})}return{hit:{source:"local",id:`local:${a}:${t.length}`,name:h3t(a,s.name),description:s.description||$t("helpers.skills.localDescription"),folder:a,localFiles:l},error:null}}async function g3t(e){const t=new Uint8Array(await e.arrayBuffer()),i=(await Eje(t)).map(r=>({path:r.name,text:r.text}));return Tje(Cje(i),e.name)}async function b3t(e,t=new Map){const n=[];for(let i=0;ie.file(t,n))}async function v3t(e){const t=e.createReader(),n=[];for(;;){const i=await new Promise((r,s)=>t.readEntries(r,s));if(i.length===0)return n;n.push(...i)}}async function Aje(e,t=""){const n=t?`${t}/${e.name}`:e.name;if(e.isFile)return[{file:await y3t(e),path:n}];if(!e.isDirectory)return[];const i=await v3t(e);return(await Promise.all(i.map(r=>Aje(r,n)))).flat()}function x3t({selected:e,onChange:t}){const{t:n}=Te("create"),[i,r]=p.useState([]),[s,a]=p.useState([]),[l,c]=p.useState(!1),[u,d]=p.useState(!1),f=p.useRef(0),h=w=>e.some(k=>k.source==="local"&&k.folder===w),m=w=>{w.localFiles&&(h(w.folder||w.name)?t(e.filter(k=>!(k.source==="local"&&k.folder===(w.folder||w.name)))):t([...e,{source:"local",folder:w.folder||w.name,name:w.name,description:w.description,localFiles:w.localFiles}]))},g=p.useRef([]),b=p.useRef(e);p.useEffect(()=>{g.current=s},[s]),p.useEffect(()=>{b.current=e},[e]);const v=w=>{const k=new Set([...g.current.map(N=>N.folder||N.name),...b.current.filter(N=>N.source==="local").map(N=>N.folder)]),S=[],E=[];for(const N of w.hits){const _=N.folder||N.name;if(k.has(_)){S.push(N.name);continue}k.add(_),E.push(N)}a(N=>[...N,...E]);const C=[...w.errors];if(S.length>0&&C.push(n("skills.local.duplicatesSkipped",{names:S.join(", ")})),r(C),E.length===1&&w.errors.length===0&&S.length===0){const N=E[0];N.localFiles&&t([...b.current,{source:"local",folder:N.folder||N.name,name:N.name,description:N.description,localFiles:N.localFiles}])}},y=w=>{w.preventDefault(),f.current+=1,d(!0)},x=w=>{w.preventDefault(),f.current=Math.max(0,f.current-1),f.current===0&&d(!1)},O=async w=>{if(w.preventDefault(),f.current=0,d(!1),l)return;const k=Array.from(w.dataTransfer.items).map(S=>{var E;return(E=S.webkitGetAsEntry)==null?void 0:E.call(S)}).filter(S=>S!==null);if(k.length===0){r([n("skills.local.invalidDrop")]);return}c(!0);try{const S=(await Promise.all(k.map(N=>Aje(N)))).flat(),E=k.some(N=>N.isDirectory);if(!E&&S.length===1&&S[0].file.name.toLowerCase().endsWith(".zip")){v(await g3t(S[0].file));return}if(!E){r([n("skills.local.invalidDrop")]);return}const C=new Map(S.map(({file:N,path:_})=>[N,_]));v(await b3t(S.map(({file:N})=>N),C))}catch(S){r([n("skills.local.readError",{detail:S instanceof Error?S.message:String(S)})])}finally{c(!1)}};return o.jsxs("div",{className:"cw-local",children:[o.jsxs("div",{className:`cw-local-dropzone ${u?"is-dragging":""}`,role:"group","aria-label":n("skills.local.dropLabel"),onDragEnter:y,onDragOver:w=>w.preventDefault(),onDragLeave:x,onDrop:w=>void O(w),children:[o.jsx(LF,{className:"cw-local-drop-icon","aria-hidden":!0}),o.jsx("p",{className:"cw-local-drop-hint",children:n("skills.local.dropLabel")})]}),o.jsx("p",{className:"cw-local-hint",children:n("skills.local.hint")}),l&&o.jsx("p",{className:"cw-empty-line",children:n("skills.local.reading")}),i.length>0&&o.jsxs("div",{className:"cw-banner",children:[o.jsx(Wd,{className:"cw-i"}),o.jsx("span",{children:i.join(";")})]}),s.length>0&&o.jsx("div",{className:"cw-skill-results",children:s.map(w=>{var S;const k=h(w.folder||w.name);return o.jsxs("button",{type:"button",className:`cw-skill-result ${k?"is-on":""}`,onClick:()=>m(w),"aria-pressed":k,children:[o.jsx("span",{className:"cw-skill-result-icon","aria-hidden":!0,children:k?o.jsx(Vu,{className:"cw-i cw-i-sm"}):o.jsx(Fo,{className:"cw-i cw-i-sm"})}),o.jsxs("span",{className:"cw-skill-result-meta",children:[o.jsx("span",{className:"cw-skill-result-name",children:w.name}),w.description&&o.jsx("span",{className:"cw-skill-result-desc",children:Ok(w.description)}),o.jsx("span",{className:"cw-skill-result-repo",children:n("skills.local.fileCount",{count:((S=w.localFiles)==null?void 0:S.length)??0})})]})]},w.id)})})]})}const w3t="/harness/skills/findskill";async function O3t(e,t="public"){const n=e.trim(),i=new URLSearchParams({query:n,page_number:"1",page_size:"20"}),r=`${w3t}?${i.toString()}`,s=await fetch(r,{headers:{accept:"application/json"},signal:Ol(void 0,Wo)});if(!s.ok)throw new Error($t("helpers.skills.searchFailed",{status:s.status}));return((await s.json()).items??[]).map(l=>({source:"skillhub",id:l.slug??l.name??"",slug:l.slug??"",name:l.name??l.slug??"",description:l.description??"",namespace:t,sourceRepo:l.sourceRepo,downloadCount:l.downloadCount,version:l.version}))}function S3t({selected:e,onChange:t}){const{t:n}=Te("create"),[i,r]=p.useState(""),[s,a]=p.useState([]),[l,c]=p.useState(!1),[u,d]=p.useState(null),[f,h]=p.useState(!1),m=v=>e.some(y=>y.source==="skillhub"&&y.slug===v),g=v=>{v.slug&&(m(v.slug)?t(e.filter(y=>!(y.source==="skillhub"&&y.slug===v.slug))):t([...e,{source:"skillhub",slug:v.slug,name:v.name,folder:v.slug.split("/").pop()||v.name,namespace:v.namespace||"public",description:v.description}]))},b=async v=>{c(!0),d(null),h(!0);try{const y=await O3t(v);a(y)}catch(y){d(y instanceof Error?y.message:n("skills.hub.searchError")),a([])}finally{c(!1)}};return p.useEffect(()=>{const v=i.trim();if(!v){a([]),h(!1),d(null);return}const y=setTimeout(()=>b(v),300);return()=>clearTimeout(y)},[i,n]),o.jsxs("div",{className:"cw-skillhub",children:[o.jsxs("div",{className:"cw-skill-searchrow",children:[o.jsxs("div",{className:"cw-skill-searchbox",children:[o.jsx(P_,{className:"cw-i cw-skill-searchicon","aria-hidden":!0}),o.jsx("input",{className:"cw-input cw-skill-input",value:i,placeholder:n("skills.hub.searchPlaceholder"),onChange:v=>r(v.target.value),onKeyDown:v=>{v.key==="Enter"&&(v.preventDefault(),i.trim()&&b(i))}})]}),o.jsxs("button",{type:"button",className:"cw-btn cw-btn-soft",onClick:()=>i.trim()&&b(i),disabled:!i.trim()||l,children:[l?o.jsx(fi,{className:"cw-i cw-spin"}):o.jsx(P_,{className:"cw-i"}),n("skills.hub.search")]})]}),u&&o.jsxs("div",{className:"cw-banner",children:[o.jsx(Wd,{className:"cw-i"}),o.jsx("span",{children:u})]}),l&&s.length===0?o.jsxs("p",{className:"cw-empty-line cw-skill-loading",role:"status",children:[o.jsx(fi,{className:"cw-i cw-spin"})," ",n("skills.hub.searching")]}):s.length>0?o.jsx("div",{className:"cw-skill-results",children:s.map(v=>{const y=m(v.slug||"");return o.jsxs("button",{type:"button",className:`cw-skill-result ${y?"is-on":""}`,onClick:()=>g(v),"aria-pressed":y,children:[o.jsx("span",{className:"cw-skill-result-icon","aria-hidden":!0,children:y?o.jsx(Vu,{className:"cw-i cw-i-sm"}):o.jsx(Fo,{className:"cw-i cw-i-sm"})}),o.jsxs("span",{className:"cw-skill-result-meta",children:[o.jsx("span",{className:"cw-skill-result-name",children:v.name}),v.description&&o.jsx("span",{className:"cw-skill-result-desc",children:Ok(v.description)}),v.sourceRepo&&o.jsx("span",{className:"cw-skill-result-repo",children:v.sourceRepo})]})]},v.id||v.slug)})}):f&&!u?o.jsx("p",{className:"cw-empty-line",children:n("skills.hub.noResults")}):!f&&o.jsx("p",{className:"cw-empty-line",children:n("skills.hub.hint")})]})}function k3t({selected:e,onChange:t,cloudProvider:n="volcengine"}){const{t:i}=Te("create"),[r,s]=p.useState([]),[a,l]=p.useState([]),[c,u]=p.useState(""),[d,f]=p.useState(!0),[h,m]=p.useState(!1),[g,b]=p.useState(null);p.useEffect(()=>{let w=!1;return(async()=>{f(!0),b(null);try{const k=await QEe();w||(s(k),k.length>0&&u(k[0].id))}catch(k){w||b(k instanceof Error?k.message:i("skills.space.loadError"))}finally{w||f(!1)}})(),()=>{w=!0}},[i]),p.useEffect(()=>{if(!c){l([]);return}const w=r.find(S=>S.id===c);let k=!1;return(async()=>{m(!0),b(null);try{const S=await zEe(c,w==null?void 0:w.region);k||l(S)}catch(S){k||b(S instanceof Error?S.message:i("skills.space.loadError"))}finally{k||m(!1)}})(),()=>{k=!0}},[c,r,i]);const v=r.find(w=>w.id===c),y=v?A1t(v.id,v.region,n):"",x=(w,k)=>e.some(S=>S.source==="skillspace"&&S.skillId===w&&(S.version||"")===k),O=w=>{if(!v)return;const k=Fg(w);if(x(k,w.version))t(e.filter(S=>!(S.source==="skillspace"&&S.skillId===k&&(S.version||"")===w.version)));else{const S=T1t(v,w);t([...e,{source:"skillspace",folder:S.folder||w.skillName,name:S.name,description:S.description,skillSpaceId:S.skillSpaceId,skillSpaceName:S.skillSpaceName,skillSpaceRegion:S.skillSpaceRegion,skillId:S.skillId,version:S.version}])}};return o.jsx("div",{className:"cw-skillspace",children:d?o.jsxs("p",{className:"cw-empty-line cw-skill-loading",role:"status",children:[o.jsx(fi,{className:"cw-i cw-spin"})," ",i("skills.space.loadingSpaces")]}):g?o.jsxs("div",{className:"cw-banner",children:[o.jsx(Wd,{className:"cw-i"}),o.jsx("span",{children:g})]}):r.length===0?o.jsx("p",{className:"cw-empty-line",children:i("skills.space.noSpaces")}):o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:"cw-skillspace-header",children:[o.jsx("select",{className:"cw-input cw-skillspace-select",value:c,onChange:w=>u(w.target.value),"aria-label":i("skills.space.selectSpace"),children:r.map(w=>o.jsxs("option",{value:w.id,children:[w.name||w.id,w.description?` — ${Ok(w.description)}`:""]},w.id))}),v&&o.jsxs(o.Fragment,{children:[v.region&&o.jsx("span",{className:"cw-skillspace-region-label",title:v.region,children:xh(v.region,n)}),y&&o.jsx("a",{href:y,target:"_blank",rel:"noopener noreferrer",className:"cw-button cw-button-secondary cw-skillspace-console-link",title:i("skills.space.openConsole"),"aria-label":i("skills.space.openConsole"),children:o.jsx(gb,{className:"cw-i cw-i-sm"})})]})]}),h?o.jsxs("p",{className:"cw-empty-line cw-skill-loading",role:"status",children:[o.jsx(fi,{className:"cw-i cw-spin"})," ",i("skills.space.loadingSkills")]}):a.length===0?o.jsx("p",{className:"cw-empty-line",children:i("skills.space.noSkills")}):o.jsx("div",{className:"cw-skill-results",children:a.map(w=>{const k=Fg(w),S=x(k,w.version);return o.jsxs("button",{type:"button",className:`cw-skill-result ${S?"is-on":""}`,onClick:()=>O(w),"aria-pressed":S,children:[o.jsx("span",{className:"cw-skill-result-icon","aria-hidden":!0,children:S?o.jsx(Vu,{className:"cw-i cw-i-sm"}):o.jsx(Fo,{className:"cw-i cw-i-sm"})}),o.jsxs("span",{className:"cw-skill-result-meta",children:[o.jsxs("span",{className:"cw-skill-result-name",children:[w.skillName,w.version&&o.jsxs("span",{className:"cw-skill-result-version",children:[" ","v",w.version]})]}),w.skillDescription&&o.jsx("span",{className:"cw-skill-result-desc",children:Ok(w.skillDescription)}),o.jsxs("span",{className:"cw-skill-result-repo",children:[o.jsx(f7e,{className:"cw-i cw-i-sm"})," ",(v==null?void 0:v.name)||c]})]})]},`${k}/${w.version}`)})})]})})}function _je({className:e}){return o.jsxs("svg",{className:e,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"M5.5 7.5h10.75a2 2 0 0 1 2 2v7.75a2 2 0 0 1-2 2H5.5a2 2 0 0 1-2-2V9.5a2 2 0 0 1 2-2Z"}),o.jsx("path",{d:"M7 4.75h9.5a2 2 0 0 1 2 2",opacity:".58"}),o.jsx("path",{d:"m11 10.25.72 1.48 1.63.24-1.18 1.15.28 1.62-1.45-.77-1.45.77.28-1.62-1.18-1.15 1.63-.24.72-1.48Z"}),o.jsx("path",{d:"M19.25 11.25h1.5M20 10.5V12",opacity:".72"})]})}function aL(e){return e.source==="runtime"?`runtime:${e.folder}`:e.source==="skillhub"?`hub:${e.namespace}/${e.slug}`:e.source==="local"?`local:${e.folder}`:`ss:${e.skillSpaceId}/${e.skillId}/${e.version||""}`}function E3t(e){return e.source==="runtime"?"skillSourcePicker.sources.runtime":e.source==="local"?"skillSourcePicker.sources.local":e.source==="skillspace"?"skillSourcePicker.sources.skillspace":"skillSourcePicker.sources.skillhub"}function C3t({skill:e,onRemove:t,disabled:n}){const{t:i}=Te("ui");let r=mS;e.source==="local"||e.source==="runtime"?r=LF:e.source==="skillspace"&&(r=_je);const s=`${i(E3t(e))}${e.description?` · ${Ok(e.description)}`:""}`;return o.jsxs(pr.div,{className:"cw-selected-skill-row",layout:!0,initial:{opacity:0,y:-4},animate:{opacity:1,y:0},exit:{opacity:0,y:-4},transition:{duration:.16},children:[o.jsx("span",{className:"cw-selected-skill-icon","aria-hidden":"true",children:o.jsx(r,{className:"cw-i cw-i-sm"})}),o.jsxs("span",{className:"cw-selected-skill-meta",children:[o.jsx("span",{className:"cw-selected-skill-name",children:e.name}),o.jsx("span",{className:"cw-selected-skill-detail",tabIndex:0,title:s,children:s})]}),o.jsx("button",{type:"button",className:"cw-selected-skill-remove",onClick:t,disabled:n,"aria-label":i("skillSourcePicker.remove",{name:e.name}),title:i("skillSourcePicker.remove",{name:e.name}),children:o.jsx(Ba,{className:"cw-i cw-i-sm"})})]})}const oL=[{id:"local",labelKey:"skillSourcePicker.tabs.local",shortLabelKey:"skillSourcePicker.tabs.localShort",icon:LF},{id:"skillspace",labelKey:"skillSourcePicker.tabs.skillspace",shortLabelKey:"skillSourcePicker.tabs.skillspaceShort",icon:_je},{id:"skillhub",labelKey:"skillSourcePicker.tabs.skillhub",shortLabelKey:"skillSourcePicker.tabs.skillhubShort",icon:Zj}];function ZQ({selected:e,onChange:t,cloudProvider:n,disabled:i=!1,addLabel:r,showSelectedCount:s=!0}){const{t:a}=Te("ui"),[l,c]=p.useState("local"),[u,d]=p.useState(!1),f=p.useId(),h=p.useId(),m=p.useRef(null),g=oL.findIndex(x=>x.id===l),b=r??a("skillSourcePicker.addSkill");p.useEffect(()=>{var k;if(!u)return;const x=document.body.style.overflow,O=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(k=m.current)==null||k.focus();const w=S=>{S.key==="Escape"&&d(!1)};return window.addEventListener("keydown",w),()=>{document.body.style.overflow=x,window.removeEventListener("keydown",w),O!=null&&O.isConnected&&O.focus()}},[u]);const v=(x,O)=>{O.source==="runtime"&&!window.confirm(a("skillSourcePicker.confirmRemoveRuntime",{name:O.name}))||t(e.filter(w=>aL(w)!==x))},y=x=>{const O=new Set(x.filter(w=>w.source!=="runtime").map(w=>w.folder));t(x.filter(w=>w.source!=="runtime"||!O.has(w.folder)))};return o.jsxs("div",{className:"cw-skillspane",children:[o.jsxs("button",{type:"button",className:"cw-skill-add","aria-haspopup":"dialog",disabled:i,onClick:()=>d(!0),children:[o.jsx("span",{className:"cw-skill-add-icon","aria-hidden":"true",children:o.jsx(Fo,{className:"cw-i"})}),o.jsx("span",{children:b})]}),e.length>0&&o.jsxs("div",{className:"cw-skill-selected",children:[s?o.jsx("span",{className:"cw-skill-selected-label",children:a("skillSourcePicker.selectedCount",{count:e.length})}):null,o.jsx("div",{className:"cw-selected-skill-list",children:o.jsx(Ru,{initial:!1,children:e.map(x=>o.jsx(C3t,{skill:x,disabled:i,onRemove:()=>v(aL(x),x)},aL(x)))})})]}),Li.createPortal(o.jsx(Ru,{children:u&&o.jsx(pr.div,{className:"cw-skill-dialog-backdrop",initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},transition:{duration:.16},onMouseDown:x=>{x.target===x.currentTarget&&d(!1)},children:o.jsxs(pr.section,{className:"cw-skill-dialog",role:"dialog","aria-modal":"true","aria-labelledby":f,initial:{opacity:0,y:10,scale:.985},animate:{opacity:1,y:0,scale:1},exit:{opacity:0,y:6,scale:.99},transition:{duration:.18,ease:"easeOut"},children:[o.jsxs("header",{className:"cw-skill-dialog-head",children:[o.jsx("h3",{id:f,children:b}),o.jsx("button",{ref:m,type:"button",className:"cw-skill-dialog-close","aria-label":a("skillSourcePicker.close",{label:b}),onClick:()=>d(!1),children:o.jsx(Ba,{className:"cw-i"})})]}),o.jsxs("div",{className:"cw-skill-dialog-body",children:[o.jsxs("div",{className:"cw-skill-sourcetabs",role:"tablist",style:{"--cw-skill-tab-slider-width":`calc((100% - 16px) / ${oL.length})`,"--cw-active-skill-tab-offset":`calc(${g*100}% + ${g*4}px)`},children:[o.jsx("span",{className:"cw-skill-tab-slider","aria-hidden":"true"}),oL.map(({id:x,labelKey:O,shortLabelKey:w,icon:k})=>o.jsxs("button",{type:"button",role:"tab",id:`${h}-${x}`,"aria-controls":h,"aria-selected":l===x,className:`cw-skill-pickertab ${l===x?"is-on":""}`,onClick:()=>c(x),children:[o.jsx(k,{className:"cw-i cw-i-sm"}),o.jsx("span",{className:"cw-skill-tab-label-full",children:a(O)}),o.jsx("span",{className:"cw-skill-tab-label-short",children:a(w)})]},x))]}),o.jsxs("div",{id:h,className:"cw-skill-tabbody",role:"tabpanel","aria-labelledby":`${h}-${l}`,children:[l==="skillhub"&&o.jsx(S3t,{selected:e,onChange:y}),l==="local"&&o.jsx(x3t,{selected:e,onChange:y}),l==="skillspace"&&o.jsx(k3t,{selected:e,onChange:y,cloudProvider:n})]})]})]})})}),document.body)]})}const Nje=128*1024,T3t={baseImageRequired:"请填写基础镜像。",duplicateFrom:"基础镜像已固定在第一行,请删除 Dockerfile 正文中的 FROM 指令。",tooLarge:"Dockerfile 不能超过 128 KiB。",empty:"Dockerfile 内容不能为空。",missingFrom:"Dockerfile 缺少 FROM 指令。"};function vv(e,t){return(t==null?void 0:t(`environmentCenter.dockerfileValidation.${e}`))??T3t[e]}function zI(e){return e.replace(/^\uFEFF/,"").replace(/\r\n?/g,` -`)}function jje(e){return new TextEncoder().encode(e).byteLength}function A3t(e,t="ubuntu:22.04"){const n=zI(e).match(/^\s*FROM(?:\s+--platform=\S+)?\s+(\S+)/im);return(n==null?void 0:n[1])??t}function _3t(e){const t=zI(e).split(` +`);if(!t.length||t[0].trim()!=="---")return{name:"",description:""};let n=-1;for(let r=1;r=2&&(e.startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'"))}function _3t(...e){var t;for(const n of e){const i=(t=n.trim().replace(/\\/g,"/").split("/").filter(Boolean).pop())==null?void 0:t.replace(/[^A-Za-z0-9_-]+/g,"-").replace(/^-+|-+$/g,"");if(i)return i.slice(0,64)}return"local-skill"}function N3t(e,t){return t.trim()||e}function Fje(e){const t=e.map(i=>({path:i.path.replace(/\\/g,"/").replace(/^\.\//,""),text:i.text})).filter(i=>i.path.length>0&&!i.path.endsWith("/")),n=new Set(t.map(i=>i.path.split("/")[0]));if(n.size===1&&t.every(i=>i.path.includes("/"))){const i=[...n][0]+"/";return t.map(r=>({path:r.path.slice(i.length),text:r.text}))}return t}function j3t(e){const t=new Map,n=new Set;for(const i of e)if(T8.test("/"+i.path)){const r=i.path.split("/");n.add(r.slice(0,-1).join("/"))}for(const i of e){const r=i.path.split("/");let s="";for(let u=r.length-1;u>=0;u--){const d=r.slice(0,u).join("/");if(n.has(d)){s=d;break}}const a=T8.test("/"+i.path);if(!s&&!a&&!n.has("")||!n.has(s)&&!a)continue;const l=s?i.path.slice(s.length+1):i.path,c=t.get(s)||[];c.push({path:l,text:i.text}),t.set(s,c)}return t}function R3t(e,t,n){const i=`${n}${e?"/"+e:""}`,r=t.find(c=>T8.test("/"+c.path));if(!r)return{hit:null,error:Ft("helpers.skills.missingManifest",{location:i})};const s=T3t(r.text),a=_3t(s.name,e,n.replace(/\.[^.]+$/,"")),l=[];for(const c of t){if(c.path.split("/").some(f=>f===".."))return{hit:null,error:Ft("helpers.skills.invalidParentPath",{location:i,path:c.path})};const d=`skills/${a}/${c.path}`;if(!d.startsWith(`skills/${a}/`))return{hit:null,error:Ft("helpers.skills.invalidPath",{location:i,path:c.path})};l.push({path:d,content:c.text})}return{hit:{source:"local",id:`local:${a}:${t.length}`,name:N3t(a,s.name),description:s.description||Ft("helpers.skills.localDescription"),folder:a,localFiles:l},error:null}}async function I3t(e){const t=new Uint8Array(await e.arrayBuffer()),i=(await $je(t)).map(r=>({path:r.name,text:r.text}));return Bje(Fje(i),e.name)}async function P3t(e,t=new Map){const n=[];for(let i=0;ie.file(t,n))}async function M3t(e){const t=e.createReader(),n=[];for(;;){const i=await new Promise((r,s)=>t.readEntries(r,s));if(i.length===0)return n;n.push(...i)}}async function Uje(e,t=""){const n=t?`${t}/${e.name}`:e.name;if(e.isFile)return[{file:await D3t(e),path:n}];if(!e.isDirectory)return[];const i=await M3t(e);return(await Promise.all(i.map(r=>Uje(r,n)))).flat()}function L3t({selected:e,onChange:t}){const{t:n}=Ae("create"),[i,r]=p.useState([]),[s,a]=p.useState([]),[l,c]=p.useState(!1),[u,d]=p.useState(!1),f=p.useRef(0),h=w=>e.some(k=>k.source==="local"&&k.folder===w),m=w=>{w.localFiles&&(h(w.folder||w.name)?t(e.filter(k=>!(k.source==="local"&&k.folder===(w.folder||w.name)))):t([...e,{source:"local",folder:w.folder||w.name,name:w.name,description:w.description,localFiles:w.localFiles}]))},g=p.useRef([]),b=p.useRef(e);p.useEffect(()=>{g.current=s},[s]),p.useEffect(()=>{b.current=e},[e]);const v=w=>{const k=new Set([...g.current.map(N=>N.folder||N.name),...b.current.filter(N=>N.source==="local").map(N=>N.folder)]),S=[],E=[];for(const N of w.hits){const T=N.folder||N.name;if(k.has(T)){S.push(N.name);continue}k.add(T),E.push(N)}a(N=>[...N,...E]);const C=[...w.errors];if(S.length>0&&C.push(n("skills.local.duplicatesSkipped",{names:S.join(", ")})),r(C),E.length===1&&w.errors.length===0&&S.length===0){const N=E[0];N.localFiles&&t([...b.current,{source:"local",folder:N.folder||N.name,name:N.name,description:N.description,localFiles:N.localFiles}])}},y=w=>{w.preventDefault(),f.current+=1,d(!0)},x=w=>{w.preventDefault(),f.current=Math.max(0,f.current-1),f.current===0&&d(!1)},O=async w=>{if(w.preventDefault(),f.current=0,d(!1),l)return;const k=Array.from(w.dataTransfer.items).map(S=>{var E;return(E=S.webkitGetAsEntry)==null?void 0:E.call(S)}).filter(S=>S!==null);if(k.length===0){r([n("skills.local.invalidDrop")]);return}c(!0);try{const S=(await Promise.all(k.map(N=>Uje(N)))).flat(),E=k.some(N=>N.isDirectory);if(!E&&S.length===1&&S[0].file.name.toLowerCase().endsWith(".zip")){v(await I3t(S[0].file));return}if(!E){r([n("skills.local.invalidDrop")]);return}const C=new Map(S.map(({file:N,path:T})=>[N,T]));v(await P3t(S.map(({file:N})=>N),C))}catch(S){r([n("skills.local.readError",{detail:S instanceof Error?S.message:String(S)})])}finally{c(!1)}};return o.jsxs("div",{className:"cw-local",children:[o.jsxs("div",{className:`cw-local-dropzone ${u?"is-dragging":""}`,role:"group","aria-label":n("skills.local.dropLabel"),onDragEnter:y,onDragOver:w=>w.preventDefault(),onDragLeave:x,onDrop:w=>void O(w),children:[o.jsx(Q9,{className:"cw-local-drop-icon","aria-hidden":!0}),o.jsx("p",{className:"cw-local-drop-hint",children:n("skills.local.dropLabel")})]}),o.jsx("p",{className:"cw-local-hint",children:n("skills.local.hint")}),l&&o.jsx("p",{className:"cw-empty-line",children:n("skills.local.reading")}),i.length>0&&o.jsxs("div",{className:"cw-banner",children:[o.jsx(Gd,{className:"cw-i"}),o.jsx("span",{children:i.join(";")})]}),s.length>0&&o.jsx("div",{className:"cw-skill-results",children:s.map(w=>{var S;const k=h(w.folder||w.name);return o.jsxs("button",{type:"button",className:`cw-skill-result ${k?"is-on":""}`,onClick:()=>m(w),"aria-pressed":k,children:[o.jsx("span",{className:"cw-skill-result-icon","aria-hidden":!0,children:k?o.jsx(Hu,{className:"cw-i cw-i-sm"}):o.jsx(zo,{className:"cw-i cw-i-sm"})}),o.jsxs("span",{className:"cw-skill-result-meta",children:[o.jsx("span",{className:"cw-skill-result-name",children:w.name}),w.description&&o.jsx("span",{className:"cw-skill-result-desc",children:Ck(w.description)}),o.jsx("span",{className:"cw-skill-result-repo",children:n("skills.local.fileCount",{count:((S=w.localFiles)==null?void 0:S.length)??0})})]})]},w.id)})})]})}const $3t="/harness/skills/findskill";async function F3t(e,t="public"){const n=e.trim(),i=new URLSearchParams({query:n,page_number:"1",page_size:"20"}),r=`${$3t}?${i.toString()}`,s=await fetch(r,{headers:{accept:"application/json"},signal:Sl(void 0,Yo)});if(!s.ok)throw new Error(Ft("helpers.skills.searchFailed",{status:s.status}));return((await s.json()).items??[]).map(l=>({source:"skillhub",id:l.slug??l.name??"",slug:l.slug??"",name:l.name??l.slug??"",description:l.description??"",namespace:t,sourceRepo:l.sourceRepo,downloadCount:l.downloadCount,version:l.version}))}function B3t({selected:e,onChange:t}){const{t:n}=Ae("create"),[i,r]=p.useState(""),[s,a]=p.useState([]),[l,c]=p.useState(!1),[u,d]=p.useState(null),[f,h]=p.useState(!1),m=v=>e.some(y=>y.source==="skillhub"&&y.slug===v),g=v=>{v.slug&&(m(v.slug)?t(e.filter(y=>!(y.source==="skillhub"&&y.slug===v.slug))):t([...e,{source:"skillhub",slug:v.slug,name:v.name,folder:v.slug.split("/").pop()||v.name,namespace:v.namespace||"public",description:v.description}]))},b=async v=>{c(!0),d(null),h(!0);try{const y=await F3t(v);a(y)}catch(y){d(y instanceof Error?y.message:n("skills.hub.searchError")),a([])}finally{c(!1)}};return p.useEffect(()=>{const v=i.trim();if(!v){a([]),h(!1),d(null);return}const y=setTimeout(()=>b(v),300);return()=>clearTimeout(y)},[i,n]),o.jsxs("div",{className:"cw-skillhub",children:[o.jsxs("div",{className:"cw-skill-searchrow",children:[o.jsxs("div",{className:"cw-skill-searchbox",children:[o.jsx(F_,{className:"cw-i cw-skill-searchicon","aria-hidden":!0}),o.jsx("input",{className:"cw-input cw-skill-input",value:i,placeholder:n("skills.hub.searchPlaceholder"),onChange:v=>r(v.target.value),onKeyDown:v=>{v.key==="Enter"&&(v.preventDefault(),i.trim()&&b(i))}})]}),o.jsxs("button",{type:"button",className:"cw-btn cw-btn-soft",onClick:()=>i.trim()&&b(i),disabled:!i.trim()||l,children:[l?o.jsx(gi,{className:"cw-i cw-spin"}):o.jsx(F_,{className:"cw-i"}),n("skills.hub.search")]})]}),u&&o.jsxs("div",{className:"cw-banner",children:[o.jsx(Gd,{className:"cw-i"}),o.jsx("span",{children:u})]}),l&&s.length===0?o.jsxs("p",{className:"cw-empty-line cw-skill-loading",role:"status",children:[o.jsx(gi,{className:"cw-i cw-spin"})," ",n("skills.hub.searching")]}):s.length>0?o.jsx("div",{className:"cw-skill-results",children:s.map(v=>{const y=m(v.slug||"");return o.jsxs("button",{type:"button",className:`cw-skill-result ${y?"is-on":""}`,onClick:()=>g(v),"aria-pressed":y,children:[o.jsx("span",{className:"cw-skill-result-icon","aria-hidden":!0,children:y?o.jsx(Hu,{className:"cw-i cw-i-sm"}):o.jsx(zo,{className:"cw-i cw-i-sm"})}),o.jsxs("span",{className:"cw-skill-result-meta",children:[o.jsx("span",{className:"cw-skill-result-name",children:v.name}),v.description&&o.jsx("span",{className:"cw-skill-result-desc",children:Ck(v.description)}),v.sourceRepo&&o.jsx("span",{className:"cw-skill-result-repo",children:v.sourceRepo})]})]},v.id||v.slug)})}):f&&!u?o.jsx("p",{className:"cw-empty-line",children:n("skills.hub.noResults")}):!f&&o.jsx("p",{className:"cw-empty-line",children:n("skills.hub.hint")})]})}function U3t({selected:e,onChange:t,cloudProvider:n="volcengine"}){const{t:i}=Ae("create"),[r,s]=p.useState([]),[a,l]=p.useState([]),[c,u]=p.useState(""),[d,f]=p.useState(!0),[h,m]=p.useState(!1),[g,b]=p.useState(null);p.useEffect(()=>{let w=!1;return(async()=>{f(!0),b(null);try{const k=await tCe();w||(s(k),k.length>0&&u(k[0].id))}catch(k){w||b(k instanceof Error?k.message:i("skills.space.loadError"))}finally{w||f(!1)}})(),()=>{w=!0}},[i]),p.useEffect(()=>{if(!c){l([]);return}const w=r.find(S=>S.id===c);let k=!1;return(async()=>{m(!0),b(null);try{const S=await nCe(c,w==null?void 0:w.region);k||l(S)}catch(S){k||b(S instanceof Error?S.message:i("skills.space.loadError"))}finally{k||m(!1)}})(),()=>{k=!0}},[c,r,i]);const v=r.find(w=>w.id===c),y=v?H1t(v.id,v.region,n):"",x=(w,k)=>e.some(S=>S.source==="skillspace"&&S.skillId===w&&(S.version||"")===k),O=w=>{if(!v)return;const k=Vg(w);if(x(k,w.version))t(e.filter(S=>!(S.source==="skillspace"&&S.skillId===k&&(S.version||"")===w.version)));else{const S=V1t(v,w);t([...e,{source:"skillspace",folder:S.folder||w.skillName,name:S.name,description:S.description,skillSpaceId:S.skillSpaceId,skillSpaceName:S.skillSpaceName,skillSpaceRegion:S.skillSpaceRegion,skillId:S.skillId,version:S.version}])}};return o.jsx("div",{className:"cw-skillspace",children:d?o.jsxs("p",{className:"cw-empty-line cw-skill-loading",role:"status",children:[o.jsx(gi,{className:"cw-i cw-spin"})," ",i("skills.space.loadingSpaces")]}):g?o.jsxs("div",{className:"cw-banner",children:[o.jsx(Gd,{className:"cw-i"}),o.jsx("span",{children:g})]}):r.length===0?o.jsx("p",{className:"cw-empty-line",children:i("skills.space.noSpaces")}):o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:"cw-skillspace-header",children:[o.jsx("select",{className:"cw-input cw-skillspace-select",value:c,onChange:w=>u(w.target.value),"aria-label":i("skills.space.selectSpace"),children:r.map(w=>o.jsxs("option",{value:w.id,children:[w.name||w.id,w.description?` — ${Ck(w.description)}`:""]},w.id))}),v&&o.jsxs(o.Fragment,{children:[v.region&&o.jsx("span",{className:"cw-skillspace-region-label",title:v.region,children:vh(v.region,n)}),y&&o.jsx("a",{href:y,target:"_blank",rel:"noopener noreferrer",className:"cw-button cw-button-secondary cw-skillspace-console-link",title:i("skills.space.openConsole"),"aria-label":i("skills.space.openConsole"),children:o.jsx(wb,{className:"cw-i cw-i-sm"})})]})]}),h?o.jsxs("p",{className:"cw-empty-line cw-skill-loading",role:"status",children:[o.jsx(gi,{className:"cw-i cw-spin"})," ",i("skills.space.loadingSkills")]}):a.length===0?o.jsx("p",{className:"cw-empty-line",children:i("skills.space.noSkills")}):o.jsx("div",{className:"cw-skill-results",children:a.map(w=>{const k=Vg(w),S=x(k,w.version);return o.jsxs("button",{type:"button",className:`cw-skill-result ${S?"is-on":""}`,onClick:()=>O(w),"aria-pressed":S,children:[o.jsx("span",{className:"cw-skill-result-icon","aria-hidden":!0,children:S?o.jsx(Hu,{className:"cw-i cw-i-sm"}):o.jsx(zo,{className:"cw-i cw-i-sm"})}),o.jsxs("span",{className:"cw-skill-result-meta",children:[o.jsxs("span",{className:"cw-skill-result-name",children:[w.skillName,w.version&&o.jsxs("span",{className:"cw-skill-result-version",children:[" ","v",w.version]})]}),w.skillDescription&&o.jsx("span",{className:"cw-skill-result-desc",children:Ck(w.skillDescription)}),o.jsxs("span",{className:"cw-skill-result-repo",children:[o.jsx(_7e,{className:"cw-i cw-i-sm"})," ",(v==null?void 0:v.name)||c]})]})]},`${k}/${w.version}`)})})]})})}function Qje({className:e}){return o.jsxs("svg",{className:e,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[o.jsx("path",{d:"M5.5 7.5h10.75a2 2 0 0 1 2 2v7.75a2 2 0 0 1-2 2H5.5a2 2 0 0 1-2-2V9.5a2 2 0 0 1 2-2Z"}),o.jsx("path",{d:"M7 4.75h9.5a2 2 0 0 1 2 2",opacity:".58"}),o.jsx("path",{d:"m11 10.25.72 1.48 1.63.24-1.18 1.15.28 1.62-1.45-.77-1.45.77.28-1.62-1.18-1.15 1.63-.24.72-1.48Z"}),o.jsx("path",{d:"M19.25 11.25h1.5M20 10.5V12",opacity:".72"})]})}function dL(e){return e.source==="runtime"?`runtime:${e.folder}`:e.source==="skillhub"?`hub:${e.namespace}/${e.slug}`:e.source==="local"?`local:${e.folder}`:`ss:${e.skillSpaceId}/${e.skillId}/${e.version||""}`}function Q3t(e){return e.source==="runtime"?"skillSourcePicker.sources.runtime":e.source==="local"?"skillSourcePicker.sources.local":e.source==="skillspace"?"skillSourcePicker.sources.skillspace":"skillSourcePicker.sources.skillhub"}function z3t({skill:e,onRemove:t,disabled:n}){const{t:i}=Ae("ui");let r=vS;e.source==="local"||e.source==="runtime"?r=Q9:e.source==="skillspace"&&(r=Qje);const s=`${i(Q3t(e))}${e.description?` · ${Ck(e.description)}`:""}`;return o.jsxs(wr.div,{className:"cw-selected-skill-row",layout:!0,initial:{opacity:0,y:-4},animate:{opacity:1,y:0},exit:{opacity:0,y:-4},transition:{duration:.16},children:[o.jsx("span",{className:"cw-selected-skill-icon","aria-hidden":"true",children:o.jsx(r,{className:"cw-i cw-i-sm"})}),o.jsxs("span",{className:"cw-selected-skill-meta",children:[o.jsx("span",{className:"cw-selected-skill-name",children:e.name}),o.jsx("span",{className:"cw-selected-skill-detail",tabIndex:0,title:s,children:s})]}),o.jsx("button",{type:"button",className:"cw-selected-skill-remove",onClick:t,disabled:n,"aria-label":i("skillSourcePicker.remove",{name:e.name}),title:i("skillSourcePicker.remove",{name:e.name}),children:o.jsx($a,{className:"cw-i cw-i-sm"})})]})}const fL=[{id:"local",labelKey:"skillSourcePicker.tabs.local",shortLabelKey:"skillSourcePicker.tabs.localShort",icon:Q9},{id:"skillspace",labelKey:"skillSourcePicker.tabs.skillspace",shortLabelKey:"skillSourcePicker.tabs.skillspaceShort",icon:Qje},{id:"skillhub",labelKey:"skillSourcePicker.tabs.skillhub",shortLabelKey:"skillSourcePicker.tabs.skillhubShort",icon:rR}];function iz({selected:e,onChange:t,cloudProvider:n,disabled:i=!1,addLabel:r,showSelectedCount:s=!0}){const{t:a}=Ae("ui"),[l,c]=p.useState("local"),[u,d]=p.useState(!1),f=p.useId(),h=p.useId(),m=p.useRef(null),g=fL.findIndex(x=>x.id===l),b=r??a("skillSourcePicker.addSkill");p.useEffect(()=>{var k;if(!u)return;const x=document.body.style.overflow,O=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(k=m.current)==null||k.focus();const w=S=>{S.key==="Escape"&&d(!1)};return window.addEventListener("keydown",w),()=>{document.body.style.overflow=x,window.removeEventListener("keydown",w),O!=null&&O.isConnected&&O.focus()}},[u]);const v=(x,O)=>{O.source==="runtime"&&!window.confirm(a("skillSourcePicker.confirmRemoveRuntime",{name:O.name}))||t(e.filter(w=>dL(w)!==x))},y=x=>{const O=new Set(x.filter(w=>w.source!=="runtime").map(w=>w.folder));t(x.filter(w=>w.source!=="runtime"||!O.has(w.folder)))};return o.jsxs("div",{className:"cw-skillspane",children:[o.jsxs("button",{type:"button",className:"cw-skill-add","aria-haspopup":"dialog",disabled:i,onClick:()=>d(!0),children:[o.jsx("span",{className:"cw-skill-add-icon","aria-hidden":"true",children:o.jsx(zo,{className:"cw-i"})}),o.jsx("span",{children:b})]}),e.length>0&&o.jsxs("div",{className:"cw-skill-selected",children:[s?o.jsx("span",{className:"cw-skill-selected-label",children:a("skillSourcePicker.selectedCount",{count:e.length})}):null,o.jsx("div",{className:"cw-selected-skill-list",children:o.jsx(Iu,{initial:!1,children:e.map(x=>o.jsx(z3t,{skill:x,disabled:i,onRemove:()=>v(dL(x),x)},dL(x)))})})]}),Fi.createPortal(o.jsx(Iu,{children:u&&o.jsx(wr.div,{className:"cw-skill-dialog-backdrop",initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},transition:{duration:.16},onMouseDown:x=>{x.target===x.currentTarget&&d(!1)},children:o.jsxs(wr.section,{className:"cw-skill-dialog",role:"dialog","aria-modal":"true","aria-labelledby":f,initial:{opacity:0,y:10,scale:.985},animate:{opacity:1,y:0,scale:1},exit:{opacity:0,y:6,scale:.99},transition:{duration:.18,ease:"easeOut"},children:[o.jsxs("header",{className:"cw-skill-dialog-head",children:[o.jsx("h3",{id:f,children:b}),o.jsx("button",{ref:m,type:"button",className:"cw-skill-dialog-close","aria-label":a("skillSourcePicker.close",{label:b}),onClick:()=>d(!1),children:o.jsx($a,{className:"cw-i"})})]}),o.jsxs("div",{className:"cw-skill-dialog-body",children:[o.jsxs("div",{className:"cw-skill-sourcetabs",role:"tablist",style:{"--cw-skill-tab-slider-width":`calc((100% - 16px) / ${fL.length})`,"--cw-active-skill-tab-offset":`calc(${g*100}% + ${g*4}px)`},children:[o.jsx("span",{className:"cw-skill-tab-slider","aria-hidden":"true"}),fL.map(({id:x,labelKey:O,shortLabelKey:w,icon:k})=>o.jsxs("button",{type:"button",role:"tab",id:`${h}-${x}`,"aria-controls":h,"aria-selected":l===x,className:`cw-skill-pickertab ${l===x?"is-on":""}`,onClick:()=>c(x),children:[o.jsx(k,{className:"cw-i cw-i-sm"}),o.jsx("span",{className:"cw-skill-tab-label-full",children:a(O)}),o.jsx("span",{className:"cw-skill-tab-label-short",children:a(w)})]},x))]}),o.jsxs("div",{id:h,className:"cw-skill-tabbody",role:"tabpanel","aria-labelledby":`${h}-${l}`,children:[l==="skillhub"&&o.jsx(B3t,{selected:e,onChange:y}),l==="local"&&o.jsx(L3t,{selected:e,onChange:y}),l==="skillspace"&&o.jsx(U3t,{selected:e,onChange:y,cloudProvider:n})]})]})]})})}),document.body)]})}const zje=128*1024,V3t={baseImageRequired:"请填写基础镜像。",duplicateFrom:"基础镜像已固定在第一行,请删除 Dockerfile 正文中的 FROM 指令。",tooLarge:"Dockerfile 不能超过 128 KiB。",empty:"Dockerfile 内容不能为空。",missingFrom:"Dockerfile 缺少 FROM 指令。"};function kv(e,t){return(t==null?void 0:t(`environmentCenter.dockerfileValidation.${e}`))??V3t[e]}function GI(e){return e.replace(/^\uFEFF/,"").replace(/\r\n?/g,` +`)}function Vje(e){return new TextEncoder().encode(e).byteLength}function H3t(e,t="ubuntu:22.04"){const n=GI(e).match(/^\s*FROM(?:\s+--platform=\S+)?\s+(\S+)/im);return(n==null?void 0:n[1])??t}function q3t(e){const t=GI(e).split(` `),n=t.findIndex(i=>/^\s*FROM(?:\s|$)/i.test(i));return(n>=0?t.slice(n+1):t).join(` -`).replace(/^\n+/,"")}function QA(e,t){const n=`FROM ${e.trim()}`,i=zI(t).replace(/^\n+/,"");return i?`${n} -${i}`:n}function N3t(e,t,n){return t.trim()?/^\s*FROM(?:\s|$)/im.test(e)?vv("duplicateFrom",n):JQ(QA(t,e),void 0,n):vv("baseImageRequired",n)}function JQ(e,t=jje(e),n){return t>Nje?vv("tooLarge",n):e.trim()?/^\s*FROM\s+\S+/im.test(e)?"":vv("missingFrom",n):vv("empty",n)}async function j3t(e,t){if(e.size>Nje)return{content:"",error:vv("tooLarge",t)};const n=zI(await e.text());return{content:n,error:JQ(n,e.size,t)}}function R3t(e){return FU(e,{lineWidth:0})}function I3t(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m7 9.5 5 5 5-5"})})}function P3t(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m6.5 12.5 3.5 3.5 7.5-8"})})}function VE({ariaLabel:e,value:t,valueLabel:n,placeholder:i,options:r,disabled:s=!1,searchValue:a,searchPlaceholder:l,loading:c=!1,hasMore:u=!1,emptyMessage:d,onSearchChange:f,onLoadMore:h,onChange:m}){const{t:g}=Te("ui"),b=l??g("deploymentSelect.searchPlaceholder"),v=d??g("deploymentSelect.emptyMessage"),y=p.useId(),x=p.useRef(null),O=p.useRef(null),w=p.useRef(null),k=p.useRef(null),S=p.useRef([]),[E,C]=p.useState(!1),[N,_]=p.useState(0),j=r.find(M=>M.value===t),A=(j==null?void 0:j.label)??(t?n:void 0),F=a!==void 0&&!!f,T=()=>{C(!1),F&&a&&(f==null||f(""))};p.useEffect(()=>{if(!E)return;const M=U=>{U.target instanceof Node&&x.current&&!x.current.contains(U.target)&&T()};return window.addEventListener("pointerdown",M),()=>window.removeEventListener("pointerdown",M)},[E,f,a,F]),p.useEffect(()=>{var M,U;if(E){if(F){(M=w.current)==null||M.focus();return}(U=S.current[N])==null||U.focus()}},[E,F]),p.useEffect(()=>{var M;!E||F&&document.activeElement===w.current||(M=S.current[N])==null||M.focus()},[N,E,F]),p.useEffect(()=>{_(M=>Math.min(M,Math.max(0,r.length-1)))},[r.length]),p.useEffect(()=>{if(!E||!u||c||!h)return;const M=window.requestAnimationFrame(()=>{const U=k.current;U&&U.scrollHeight<=U.clientHeight+1&&h()});return()=>window.cancelAnimationFrame(M)},[u,c,h,E,r.length]);const P=(M=1)=>{const U=r.findIndex(H=>H.value===t),I=U>=0?U:M===1?0:Math.max(0,r.length-1);_(I),C(!0)},R=M=>{r.length!==0&&_((M+r.length)%r.length)},L=M=>{var U;m(M.value),T(),(U=O.current)==null||U.focus()};return o.jsxs("div",{className:"pp-deployment-select",ref:x,onKeyDown:M=>{var I,H;const U=M.target===w.current;if(M.key==="Escape"&&E){M.preventDefault(),T(),(I=O.current)==null||I.focus();return}if(M.key==="Tab"){T();return}if(U){M.key==="ArrowDown"&&r.length>0&&(M.preventDefault(),_(0),(H=S.current[0])==null||H.focus());return}M.key==="ArrowDown"?(M.preventDefault(),E?R(N+1):P(1)):M.key==="ArrowUp"?(M.preventDefault(),E?R(N-1):P(-1)):E&&M.key==="Home"?(M.preventDefault(),_(0)):E&&M.key==="End"&&(M.preventDefault(),_(Math.max(0,r.length-1)))},children:[o.jsxs("button",{ref:O,type:"button",className:"pp-deployment-select-trigger","aria-label":e,"aria-haspopup":"listbox","aria-expanded":E,"aria-controls":E?y:void 0,disabled:s,onClick:()=>{E?T():P()},children:[o.jsx("span",{className:A?void 0:"is-placeholder",children:A??i}),o.jsx(I3t,{className:`pp-deployment-select-chevron${E?" is-open":""}`})]}),E&&o.jsxs("div",{className:"pp-deployment-select-menu",children:[F&&o.jsx("div",{className:"pp-deployment-select-search",children:o.jsx("input",{ref:w,type:"search",value:a,"aria-label":g("deploymentSelect.searchAriaLabel",{label:e}),placeholder:b,autoComplete:"off",onChange:M=>f==null?void 0:f(M.currentTarget.value)})}),o.jsx("div",{id:y,ref:k,className:"pp-deployment-select-options",role:"listbox","aria-label":e,"aria-busy":c||void 0,onScroll:M=>{if(!u||c||!h)return;const U=M.currentTarget;U.scrollHeight-U.scrollTop-U.clientHeight<=24&&h()},children:r.map((M,U)=>{const I=M.value===t;return o.jsxs("button",{ref:H=>{S.current[U]=H},type:"button",role:"option","aria-selected":I,tabIndex:U===N?0:-1,className:`pp-deployment-select-option${I?" is-selected":""}`,title:M.description,onFocus:()=>_(U),onClick:()=>L(M),children:[o.jsxs("span",{className:"pp-deployment-select-copy",children:[o.jsxs("span",{className:"pp-deployment-select-name",children:[M.label,M.badge&&o.jsx("span",{className:"pp-deployment-select-badge",children:M.badge})]}),M.description&&o.jsx("small",{children:M.description})]}),I&&o.jsx(P3t,{})]},M.value)})}),c&&o.jsx("div",{className:"pp-deployment-select-state","aria-live":"polite",children:g("deploymentSelect.loadingMore")}),!c&&r.length===0&&o.jsx("div",{className:"pp-deployment-select-state",children:v})]})]})}function D3t(e){return[{value:"auto",label:e("deploymentResources.mode.auto"),description:e("deploymentResources.mode.autoDescription"),badge:e("deploymentResources.mode.recommended")},{value:"create",label:e("deploymentResources.mode.create"),description:e("deploymentResources.mode.createDescription")},{value:"existing",label:e("deploymentResources.mode.existing"),description:e("deploymentResources.mode.existingDescription")}]}const Rje={tos:{mode:"auto"},cr:{mode:"auto"},codePipeline:{mode:"auto"}};function $f(e){const[t,n]=p.useState([]),[i,r]=p.useState(""),[s,a]=p.useState(1),[l,c]=p.useState(0),[u,d]=p.useState(!1),[f,h]=p.useState(!1),[m,g]=p.useState(null),[b,v]=p.useState(""),[y,x]=p.useState(""),[O,w]=p.useState(""),[k,S]=p.useState(0),E=p.useRef(!1),C=p.useRef(null),N=e?JSON.stringify(e):"",_=e?JSON.stringify({...e,search:y}):"";p.useEffect(()=>{const P=window.setTimeout(()=>{x(b.trim())},250);return()=>window.clearTimeout(P)},[b]),p.useEffect(()=>{v(""),x("")},[N]);const j=p.useCallback((P,R)=>{var U;if(!_)return;(U=C.current)==null||U.abort();const L=new AbortController;C.current=L;const M=JSON.parse(_);R&&n([]),E.current=!0,h(!0),g(null),l0e({...M,pageNumber:P,pageSize:100},L.signal).then(I=>{n(H=>{if(R)return I.items;const K=new Set(H.map(Q=>`${Q.id}\0${Q.name}`));return[...H,...I.items.filter(Q=>!K.has(`${Q.id}\0${Q.name}`))]}),r(I.serviceRegion),a(I.pageNumber),c(I.totalCount),d(I.hasMore),w(_)}).catch(I=>{I instanceof DOMException&&I.name==="AbortError"||(w(_),g(I instanceof Error?I.message:String(I)))}).finally(()=>{C.current===L&&(C.current=null,E.current=!1,h(!1))})},[_]);p.useEffect(()=>{var P;if(!_){(P=C.current)==null||P.abort(),C.current=null,E.current=!1,n([]),r(""),a(1),c(0),d(!1),w(""),h(!1),g(null);return}return j(1,!0),()=>{var R;return(R=C.current)==null?void 0:R.abort()}},[j,_,k]);const A=!!_&&O===_&&b.trim()===y,F=p.useCallback(()=>{w(""),S(P=>P+1)},[]),T=p.useCallback(()=>{!A||E.current||!u||j(s+1,!1)},[u,j,s,A]);return{items:t,serviceRegion:i,totalCount:l,hasMore:A?u:!1,loading:!!_&&(!A||f),error:m,search:b,setSearch:v,reload:F,loadMore:T}}function M3t(e,t){return e.map(n=>({value:n[t],label:n.name,description:[n.status,n.region,n.id].filter(Boolean).join(" · ")}))}function Ff({ariaLabel:e,value:t,valueLabel:n,state:i,disabled:r,disabledMessage:s,valueField:a="id",onChange:l}){const{t:c}=Te("ui"),u=p.useMemo(()=>M3t(i.items,a),[i.items,a]);return o.jsxs("div",{className:"pp-resource-picker",children:[o.jsx(VE,{ariaLabel:e,value:t,valueLabel:n,placeholder:i.loading?c("common.loading"):c("deploymentResources.selectExisting"),options:u,disabled:r||!!i.error,searchValue:i.search,searchPlaceholder:c("deploymentResources.searchResource"),loading:i.loading,hasMore:i.hasMore,emptyMessage:i.search.trim()?c("deploymentResources.noMatch"):c("deploymentResources.noAvailable"),onSearchChange:i.setSearch,onLoadMore:i.loadMore,onChange:d=>{const f=i.items.find(h=>h[a]===d);f&&l(f)}}),s?o.jsx("span",{className:"pp-resource-status",children:s}):i.error?o.jsxs("div",{className:"pp-resource-error",role:"alert",children:[o.jsx("span",{children:i.error}),o.jsx("button",{type:"button",onClick:i.reload,children:c("common.retry")})]}):i.loading&&i.items.length===0?o.jsx("span",{className:"pp-resource-status","aria-live":"polite",children:i.search.trim()?c("deploymentResources.searching"):c("deploymentResources.loading")}):i.items.length===0?o.jsx("span",{className:"pp-resource-status",children:i.search.trim()?c("deploymentResources.noMatchSentence"):c("deploymentResources.noAvailableSentence")}):i.serviceRegion?o.jsx("span",{className:"pp-resource-status",children:c("deploymentResources.loadedSummary",{region:i.serviceRegion,loaded:i.items.length,total:i.totalCount>0?`/${i.totalCount}`:""})}):null]})}function Ije({region:e,value:t,disabled:n=!1,onChange:i}){const{t:r}=Te("ui"),s=$f(e?{kind:"cr-registry",region:e}:null),a=$f(e&&(t!=null&&t.registry)?{kind:"cr-namespace",region:e,registry:t.registry}:null),l=$f(e&&(t!=null&&t.registry)&&t.namespace?{kind:"cr-repository",region:e,registry:t.registry,namespace:t.namespace}:null),c=t??{region:e,registry:"",namespace:"",repository:""};return o.jsxs("div",{className:"pp-resource-fields pp-resource-fields-three environment-repository-fields",children:[o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:r("deploymentResources.registryInstance")}),o.jsx(Ff,{ariaLabel:r("deploymentResources.registryAriaLabel"),value:c.registry,valueLabel:c.registry,state:s,disabled:n||!e,valueField:"name",onChange:u=>i({region:e,registry:u.name,namespace:"",repository:""})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:r("deploymentResources.namespace")}),o.jsx(Ff,{ariaLabel:r("deploymentResources.namespaceAriaLabel"),value:c.namespace,valueLabel:c.namespace,state:a,disabled:n||!c.registry,disabledMessage:c.registry?void 0:r("deploymentResources.selectRegistryFirst"),valueField:"name",onChange:u=>i({...c,region:e,namespace:u.name,repository:""})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:r("deploymentResources.repository")}),o.jsx(Ff,{ariaLabel:r("deploymentResources.existingRepository"),value:c.repository,valueLabel:c.repository,state:l,disabled:n||!c.registry||!c.namespace,disabledMessage:c.registry?c.namespace?void 0:r("deploymentResources.selectNamespaceFirst"):r("deploymentResources.selectRegistryFirst"),valueField:"name",onChange:u=>i({...c,region:e,repository:u.name})})]})]})}function lL({resource:e,value:t,disabled:n,onChange:i}){const{t:r}=Te("ui");return o.jsxs("label",{className:"pp-resource-field pp-resource-mode",children:[o.jsx("span",{children:r("deploymentResources.configurationMode")}),o.jsx(VE,{ariaLabel:r("deploymentResources.configurationModeAriaLabel",{resource:e}),value:t,placeholder:r("deploymentResources.selectConfigurationMode"),options:D3t(r),disabled:n,onChange:s=>i(s)})]})}function z0({label:e,value:t,placeholder:n,disabled:i,onChange:r}){return o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:e}),o.jsx("input",{value:t,placeholder:n,disabled:i,autoComplete:"off",onChange:s=>r(s.currentTarget.value)})]})}function cL({items:e,note:t}){const{t:n}=Te("ui");return o.jsxs("div",{className:"pp-resource-auto-names",children:[o.jsx("span",{children:n("deploymentResources.automaticNames")}),o.jsx("dl",{children:e.map(i=>o.jsxs("div",{children:[o.jsx("dt",{children:i.label}),o.jsx("dd",{title:i.name,children:i.name})]},i.label))}),t&&o.jsx("small",{children:t})]})}function Pje(e){var t,n,i,r,s,a,l,c;return e.tos.mode!=="auto"&&!((t=e.tos.bucket)!=null&&t.trim())?an.t("ui:deploymentResources.validation.tos"):e.cr.mode!=="auto"&&(!((n=e.cr.instance)!=null&&n.trim())||!((i=e.cr.namespace)!=null&&i.trim())||!((r=e.cr.repository)!=null&&r.trim()))?an.t("ui:deploymentResources.validation.cr"):e.codePipeline.mode!=="auto"&&(!((s=e.codePipeline.workspaceName)!=null&&s.trim())||!((a=e.codePipeline.pipelineName)!=null&&a.trim()))?an.t("ui:deploymentResources.validation.codePipeline"):e.codePipeline.mode==="existing"&&(!((l=e.codePipeline.workspaceId)!=null&&l.trim())||!((c=e.codePipeline.pipelineId)!=null&&c.trim()))?an.t("ui:deploymentResources.validation.existingCodePipeline"):null}function Dje({value:e,agentName:t,runtimeName:n,region:i,disabled:r,validationError:s,onChange:a}){const{t:l}=Te("ui"),c=t.trim()||"agentkit-app",u=n.trim()||c,d=i&&i!=="cn-beijing"?l("deploymentResources.autoBucketWithRegion",{region:i.startsWith("cn-")?i.slice(3):i}):l("deploymentResources.autoBucket"),f=$f(e.tos.mode==="existing"?{kind:"tos-bucket",region:i}:null),h=$f(e.cr.mode==="existing"?{kind:"cr-registry",region:i}:null),m=$f(e.cr.mode==="existing"&&e.cr.instance?{kind:"cr-namespace",region:i,registry:e.cr.instance}:null),g=$f(e.cr.mode==="existing"&&e.cr.instance&&e.cr.namespace?{kind:"cr-repository",region:i,registry:e.cr.instance,namespace:e.cr.namespace}:null),b=$f(e.codePipeline.mode==="existing"?{kind:"cp-workspace",region:i}:null),v=$f(e.codePipeline.mode==="existing"&&e.codePipeline.workspaceId?{kind:"cp-pipeline",region:i,workspaceId:e.codePipeline.workspaceId}:null),y=x=>a({...e,...x});return o.jsxs("div",{className:"pp-resource-list",children:[o.jsxs("div",{className:"pp-resource-item",children:[o.jsx("div",{className:"pp-resource-name",children:l("deploymentResources.tosBucket")}),o.jsxs("div",{className:"pp-resource-grid",children:[o.jsx(lL,{resource:l("deploymentResources.tosBucket"),value:e.tos.mode,disabled:r,onChange:x=>y({tos:{mode:x}})}),e.tos.mode==="create"&&o.jsx(z0,{label:l("deploymentResources.bucketName"),value:e.tos.bucket??"",placeholder:l("deploymentResources.bucketNamePlaceholder"),disabled:r,onChange:x=>y({tos:{...e.tos,bucket:x}})}),e.tos.mode==="existing"&&o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.existingBucket")}),o.jsx(Ff,{ariaLabel:l("deploymentResources.existingTosBucket"),value:e.tos.bucket??"",valueLabel:e.tos.bucket,state:f,disabled:r,onChange:x=>y({tos:{...e.tos,bucket:x.name}})})]}),e.tos.mode==="auto"&&o.jsx(cL,{items:[{label:l("deploymentResources.bucket"),name:d}],note:l("deploymentResources.accountIdResolved")})]})]}),o.jsxs("div",{className:"pp-resource-item",children:[o.jsx("div",{className:"pp-resource-name",children:l("deploymentResources.containerRegistry")}),o.jsxs("div",{className:"pp-resource-grid",children:[o.jsx(lL,{resource:"CR",value:e.cr.mode,disabled:r,onChange:x=>y({cr:{mode:x}})}),e.cr.mode==="create"&&o.jsxs("div",{className:"pp-resource-fields pp-resource-fields-three",children:[o.jsx(z0,{label:l("deploymentResources.instanceName"),value:e.cr.instance??"",placeholder:l("deploymentResources.crInstance"),disabled:r,onChange:x=>y({cr:{...e.cr,instance:x}})}),o.jsx(z0,{label:l("deploymentResources.namespace"),value:e.cr.namespace??"",placeholder:l("deploymentResources.namespace"),disabled:r,onChange:x=>y({cr:{...e.cr,namespace:x}})}),o.jsx(z0,{label:l("deploymentResources.repository"),value:e.cr.repository??"",placeholder:l("deploymentResources.repository"),disabled:r,onChange:x=>y({cr:{...e.cr,repository:x}})})]}),e.cr.mode==="existing"&&o.jsxs("div",{className:"pp-resource-fields pp-resource-fields-three",children:[o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.crInstance")}),o.jsx(Ff,{ariaLabel:l("deploymentResources.existingCrInstance"),value:e.cr.instance??"",valueLabel:e.cr.instance,state:h,disabled:r,valueField:"name",onChange:x=>y({cr:{mode:"existing",instance:x.name}})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.namespace")}),o.jsx(Ff,{ariaLabel:l("deploymentResources.existingCrNamespace"),value:e.cr.namespace??"",valueLabel:e.cr.namespace,state:m,disabled:r||!e.cr.instance,valueField:"name",onChange:x=>y({cr:{...e.cr,namespace:x.name,repository:void 0}})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.repository")}),o.jsx(Ff,{ariaLabel:l("deploymentResources.existingCrRepository"),value:e.cr.repository??"",valueLabel:e.cr.repository,state:g,disabled:r||!e.cr.namespace,valueField:"name",onChange:x=>y({cr:{...e.cr,repository:x.name}})})]})]}),e.cr.mode==="auto"&&o.jsx(cL,{items:[{label:l("deploymentResources.crInstance"),name:l("deploymentResources.autoRegistry")},{label:l("deploymentResources.namespace"),name:"agentkit"},{label:l("deploymentResources.repository"),name:l("deploymentResources.autoRepositoryName",{name:c})}],note:l("deploymentResources.registryNameNote")})]})]}),o.jsxs("div",{className:"pp-resource-item",children:[o.jsx("div",{className:"pp-resource-name",children:"CodePipeline"}),o.jsxs("div",{className:"pp-resource-grid",children:[o.jsx(lL,{resource:"CodePipeline",value:e.codePipeline.mode,disabled:r,onChange:x=>y({codePipeline:{mode:x}})}),e.codePipeline.mode==="create"&&o.jsxs("div",{className:"pp-resource-fields",children:[o.jsx(z0,{label:l("deploymentResources.workspaceName"),value:e.codePipeline.workspaceName??"",placeholder:l("deploymentResources.workspaceName"),disabled:r,onChange:x=>y({codePipeline:{...e.codePipeline,workspaceName:x}})}),o.jsx(z0,{label:l("deploymentResources.pipelineName"),value:e.codePipeline.pipelineName??"",placeholder:l("deploymentResources.pipelineName"),disabled:r,onChange:x=>y({codePipeline:{...e.codePipeline,pipelineName:x}})})]}),e.codePipeline.mode==="existing"&&o.jsxs("div",{className:"pp-resource-fields",children:[o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.workspace")}),o.jsx(Ff,{ariaLabel:l("deploymentResources.existingWorkspace"),value:e.codePipeline.workspaceId??"",valueLabel:e.codePipeline.workspaceName,state:b,disabled:r,onChange:x=>y({codePipeline:{mode:"existing",workspaceId:x.id,workspaceName:x.name}})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.compatiblePipeline")}),o.jsx(Ff,{ariaLabel:l("deploymentResources.existingPipeline"),value:e.codePipeline.pipelineId??"",valueLabel:e.codePipeline.pipelineName,state:v,disabled:r||!e.codePipeline.workspaceId,onChange:x=>y({codePipeline:{...e.codePipeline,pipelineId:x.id,pipelineName:x.name}})})]})]}),e.codePipeline.mode==="auto"&&o.jsx(cL,{items:[{label:l("deploymentResources.workspace"),name:"agentkit-cli-workspace"},{label:l("deploymentResources.pipeline"),name:u}],note:l("deploymentResources.pipelineNameNote")})]})]}),s&&o.jsx("p",{className:"pp-resource-validation",role:"alert",children:s})]})}function L3t(e){return[{value:"custom",label:e("environmentCenter.creation.custom.label"),description:e("environmentCenter.creation.custom.description")},{value:"dockerfile",label:e("environmentCenter.creation.dockerfile.label"),description:e("environmentCenter.creation.dockerfile.description")},{value:"git",label:e("environmentCenter.creation.git.label"),description:e("environmentCenter.creation.git.description")},{value:"image",label:e("environmentCenter.creation.image.label"),description:e("environmentCenter.creation.image.description")}]}const $3t=wOe.map(e=>({value:e.id,label:e.label,description:e.description}));function F3t(e){return[{value:"none",label:e("common.none"),description:e("environmentCenter.presets.none")},{value:"aio-sandbox",label:"AIO Sandbox",description:e("environmentCenter.presets.aio")},{value:"codex-sandbox",label:"Codex Sandbox",description:e("environmentCenter.presets.codex")}]}function B3t(e){const t=A3t(e,"");return t===TB?"aio-sandbox":t.includes("/codexenv:")?"codex-sandbox":"none"}const U3t=oN.map(e=>({value:e.id,label:e.label})),$te=SOe.map(e=>({value:e.id,label:e.label}));function Q3t(e){return[{value:"managed",label:e("environmentCenter.repository.managed")},{value:"existing",label:e("environmentCenter.repository.existing")}]}const S8=20,Fte=new Set;async function z3t(){var e;if(typeof navigator>"u"||!((e=navigator.permissions)!=null&&e.query))return!1;try{return(await navigator.permissions.query({name:"clipboard-read"})).state==="denied"}catch{return!1}}const V3t={opencli:XLt,uv:YLt,playwright:ZLt,chromium:JLt,git:e3t,curl:t3t,ffmpeg:n3t,imagemagick:i3t};function H3t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8 3.25v9.5M3.25 8h9.5"})})}function Eu(){return o.jsx("span",{className:"environment-required-mark","aria-hidden":"true",children:"*"})}function q3t(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M12 3v11m0 0 4-4m-4 4-4-4"}),o.jsx("path",{d:"M5 16v2.5A2.5 2.5 0 0 0 7.5 21h9a2.5 2.5 0 0 0 2.5-2.5V16"})]})}function k8(e,t){const n=e.trim();if(!n)return t("environmentCenter.errors.repositoryRequired");try{const i=new URL(n);if(i.protocol!=="https:"||!i.hostname)return t("environmentCenter.errors.repositoryHttps")}catch{return t("environmentCenter.errors.repositoryInvalid")}return""}function Bte(e){return!!(e!=null&&e.region&&e.registry&&e.namespace&&e.repository)}function Mje(e,t){const n=e.trim();return n?/\s/.test(n)?t("environmentCenter.errors.imageReferenceWhitespace"):n.startsWith("sha256:")?/^sha256:[0-9a-fA-F]{64}$/.test(n)?"":t("environmentCenter.errors.imageDigestInvalid"):/[@/]/.test(n)?t("environmentCenter.errors.imageTagOnly"):"":""}function W3t(e){return(e instanceof Error?e.message:String(e)).split(` -原始响应:`,1)[0].trim()}function G3t(e){return o.jsxs("svg",{viewBox:"0 0 32 32",fill:"none",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5.5 10.5 16 5l10.5 5.5L16 16 5.5 10.5Z"}),o.jsx("path",{d:"M5.5 16 16 21.5 26.5 16M5.5 21.5 16 27l10.5-5.5"})]})}function K3t({label:e}){return o.jsx("span",{className:"environment-package-fallback",children:e.slice(0,1).toUpperCase()})}function X3t({option:e}){if(e.id==="lark-cli")return o.jsx("img",{src:QI,alt:""});if(e.id==="pandoc")return o.jsx("img",{src:KLt,alt:""});if(e.id==="github-cli")return o.jsx(YQ,{});const t=V3t[e.id];return t?o.jsx("img",{src:t,alt:""}):o.jsx(K3t,{label:e.label})}function Y3t(e,t){return e?{name:e.name,description:e.description,baseEnvironment:e.baseEnvironment,operatingSystem:e.operatingSystem,language:e.language,optionIds:[...e.optionIds],selectedSkills:[...e.selectedSkills],dockerfile:e.dockerfile===_B(e,t)?void 0:e.dockerfile,gitSource:e.gitSource,containerRepository:e.containerRepository,imageSource:e.imageSource}:{...gM,optionIds:[...gM.optionIds],selectedSkills:[...gM.selectedSkills]}}const Hg=new Set(["preparing","queued","building","scanning"]),Ute=3e3,uL={preparing:"environmentCenter.buildStatus.preparing",queued:"environmentCenter.buildStatus.queued",building:"environmentCenter.buildStatus.building",scanning:"environmentCenter.buildStatus.scanning",available:"environmentCenter.buildStatus.available",failed:"environmentCenter.buildStatus.failed"};function Lje(e,t){var i;const n=(i=e.latestVersion)==null?void 0:i.status;return n?n==="available"?{label:t(uL[n]),color:"success"}:n==="failed"?{label:t(uL[n]),color:"danger"}:{label:t(uL[n]),color:"warning"}:{label:t("environmentCenter.buildStatus.notBuilt"),color:"secondary"}}function Z3t(e,t){return KQ(e,Date.now(),t)}function J3t(e,t){const n=Date.parse(e);return Number.isNaN(n)?e:new Intl.DateTimeFormat(t,{dateStyle:"medium",timeStyle:"medium"}).format(n)}function e4t(e,t,n=Date.now()){const i=Date.parse(e.createdAt),s=Hg.has(e.status)?n:Date.parse(e.updatedAt);if(Number.isNaN(i)||Number.isNaN(s))return"";const a=Math.max(0,Math.floor((s-i)/1e3));if(a<60)return t("environmentCenter.duration.seconds",{count:a});const l=Math.floor(a/60),c=a%60;return l<60?t("environmentCenter.duration.minutesSeconds",{minutes:l,seconds:c}):t("environmentCenter.duration.hoursMinutes",{hours:Math.floor(l/60),minutes:l%60})}function t4t({environment:e,onClose:t}){var O;const{t:n}=Te("ui"),i=((O=e.latestVersion)==null?void 0:O.versionId)??"",r=p.useId(),s=p.useRef(null),a=p.useRef(t),[l,c]=p.useState(null),[u,d]=p.useState(!0),[f,h]=p.useState(""),[m,g]=p.useState(0),[b,v]=p.useState("idle"),y=p.useMemo(()=>l?R3t(l):"",[l]);a.current=t,p.useEffect(()=>{var E;const w=document.body.style.overflow,k=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(E=s.current)==null||E.focus();const S=C=>{if(C.key==="Escape"){C.preventDefault(),a.current();return}if(C.key!=="Tab"||!s.current)return;const N=Array.from(s.current.querySelectorAll('button:not([disabled]), [href], [tabindex]:not([tabindex="-1"])')).filter(A=>A.getClientRects().length>0);if(!N.length)return;const _=N[0],j=N[N.length-1];C.shiftKey&&document.activeElement===_?(C.preventDefault(),j.focus()):!C.shiftKey&&document.activeElement===j&&(C.preventDefault(),_.focus())};return window.addEventListener("keydown",S),()=>{document.body.style.overflow=w,window.removeEventListener("keydown",S),k!=null&&k.isConnected&&k.focus()}},[]),p.useEffect(()=>{const w=new AbortController;return d(!0),h(""),N0e(e.id,i,w.signal).then(c).catch(k=>{(k==null?void 0:k.name)!=="AbortError"&&h(k instanceof Error?k.message:String(k))}).finally(()=>{w.signal.aborted||d(!1)}),()=>w.abort()},[e.id,m,i]),p.useEffect(()=>{if(b!=="copied")return;const w=window.setTimeout(()=>v("idle"),1500);return()=>window.clearTimeout(w)},[b]);const x=async()=>{try{await navigator.clipboard.writeText(y),v("copied")}catch{v("error")}};return Li.createPortal(o.jsx("div",{className:"environment-build-dialog__backdrop",onMouseDown:w=>{w.target===w.currentTarget&&t()},children:o.jsxs("section",{ref:s,className:"environment-build-dialog environment-manifest-dialog",role:"dialog","aria-modal":"true","aria-labelledby":r,"aria-busy":u||void 0,tabIndex:-1,children:[o.jsxs("header",{className:"environment-build-dialog__header",children:[o.jsxs("div",{children:[o.jsx("div",{className:"environment-build-dialog__title-row",children:o.jsx("h2",{id:r,children:n("environmentCenter.manifest.title")})}),o.jsxs("p",{children:[e.name," / ",i]})]}),o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,onClick:t,"aria-label":n("environmentCenter.manifest.closeLabel"),children:o.jsx(Ba,{"aria-hidden":!0})})]}),o.jsx("div",{className:"environment-manifest-dialog__body",children:u?o.jsx("div",{className:"environment-manifest-dialog__state",role:"status",children:o.jsx(xn,{as:"span",children:n("environmentCenter.manifest.loading")})}):f?o.jsxs("div",{className:"environment-manifest-dialog__state is-error",role:"alert",children:[o.jsx("p",{children:f}),o.jsx(Ht,{type:"button",color:"secondary",variant:"soft",size:"sm",onClick:()=>g(w=>w+1),children:n("common.reload")})]}):o.jsx("div",{className:"environment-manifest-dialog__editor","aria-label":n("environmentCenter.manifest.editorLabel"),children:o.jsx(zE,{value:y,path:"environment.yaml",readOnly:!0,onChange:()=>{}})})}),o.jsxs("footer",{className:"environment-build-dialog__actions",children:[b==="error"?o.jsx("span",{className:"environment-manifest-dialog__copy-error",role:"alert",children:n("environmentCenter.manifest.copyFailed")}):null,o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",onClick:t,children:n("common.close")}),o.jsx(Ht,{type:"button",color:"info",size:"sm",disabled:!y,onClick:()=>void x(),children:n(b==="copied"?"environmentCenter.manifest.copied":"environmentCenter.manifest.copy")})]})]})}),document.body)}function n4t({environment:e,onClose:t,onBuildUpdate:n,onRebuild:i}){var S,E;const{t:r}=Te("ui"),s=e.latestVersion,[a,l]=p.useState(s),[c,u]=p.useState(!!s),[d,f]=p.useState(""),[h,m]=p.useState(Date.now()),[g,b]=p.useState(!1),v=p.useId(),y=p.useRef(null),x=p.useRef(t),O=p.useRef(n);p.useEffect(()=>{x.current=t,O.current=n},[n,t]),p.useEffect(()=>{var j;const C=document.body.style.overflow,N=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(j=y.current)==null||j.focus();const _=A=>{var R;if(A.key==="Escape"&&x.current(),A.key!=="Tab")return;const F=Array.from(((R=y.current)==null?void 0:R.querySelectorAll('button:not([disabled]), a[href], [tabindex]:not([tabindex="-1"])'))??[]).filter(L=>L.getClientRects().length>0);if(!F.length)return;const T=F[0],P=F[F.length-1];A.shiftKey&&document.activeElement===T?(A.preventDefault(),P.focus()):!A.shiftKey&&document.activeElement===P&&(A.preventDefault(),T.focus())};return window.addEventListener("keydown",_),()=>{document.body.style.overflow=C,window.removeEventListener("keydown",_),N!=null&&N.isConnected&&N.focus()}},[]),p.useEffect(()=>{if(!s)return;let C=0;const N=new AbortController,_=async()=>{u(!0);try{const j=await _0e(e.id,s.versionId,{includeLogs:!0,signal:N.signal});l(j),f(""),O.current(j),Hg.has(j.status)&&(C=window.setTimeout(_,Ute))}catch(j){if((j==null?void 0:j.name)==="AbortError")return;f(j instanceof Error?j.message:String(j)),C=window.setTimeout(_,Ute)}finally{N.signal.aborted||u(!1)}};return _(),()=>{N.abort(),window.clearTimeout(C)}},[e.id,s==null?void 0:s.versionId]),p.useEffect(()=>{if(!a||!Hg.has(a.status))return;const C=window.setInterval(()=>m(Date.now()),1e3);return()=>window.clearInterval(C)},[a==null?void 0:a.status]);const w=a?Lje({...e,latestVersion:a},r):{label:r("environmentCenter.buildStatus.notBuilt"),color:"secondary"},k=e.imageSource||(E=(S=a==null?void 0:a.resources)==null?void 0:S.codePipeline)==null?void 0:E.consoleUrl;return Li.createPortal(o.jsx("div",{className:"environment-build-dialog__backdrop",onMouseDown:C=>{C.target===C.currentTarget&&t()},children:o.jsxs("section",{ref:y,className:"environment-build-dialog",role:"dialog","aria-modal":"true","aria-labelledby":v,tabIndex:-1,children:[o.jsxs("header",{className:"environment-build-dialog__header",children:[o.jsxs("div",{children:[o.jsxs("div",{className:"environment-build-dialog__title-row",children:[o.jsx("h2",{id:v,children:r("environmentCenter.buildDetails.title")}),o.jsx(ba,{color:w.color,size:"sm",children:w.label})]}),o.jsx("p",{children:e.name})]}),o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,onClick:t,"aria-label":r("environmentCenter.buildDetails.closeLabel"),children:o.jsx(Ba,{"aria-hidden":!0})})]}),o.jsxs("div",{className:"environment-build-dialog__summary",children:[o.jsxs("div",{children:[o.jsx("span",{children:r("environmentCenter.buildDetails.currentStep")}),o.jsx("strong",{children:(a==null?void 0:a.currentStep)||r("environmentCenter.buildDetails.waiting")})]}),o.jsxs("div",{children:[o.jsx("span",{children:r("environmentCenter.buildDetails.elapsed")}),o.jsx("strong",{children:a?e4t(a,r,h):"-"})]}),a!=null&&a.sourceCommitSha?o.jsxs("div",{children:[o.jsx("span",{children:r("environmentCenter.buildDetails.sourceCommit")}),o.jsx("strong",{title:a.sourceCommitSha,children:a.sourceCommitSha.slice(0,12)})]}):null,k?o.jsxs("a",{href:k,target:"_blank",rel:"noreferrer",children:[r("environmentCenter.buildDetails.openCodePipeline")," ",o.jsx(gb,{"aria-hidden":!0})]}):null]}),o.jsxs("div",{className:"environment-build-dialog__body",children:[d?o.jsx("p",{className:"environment-build-dialog__error",role:"alert",children:d}):null,a!=null&&a.progressError?o.jsx("p",{className:"environment-build-dialog__notice",children:a.progressError}):null,o.jsx(l3t,{steps:(a==null?void 0:a.steps)??[],log:(a==null?void 0:a.logTail)??"",logError:a==null?void 0:a.logError,logTruncated:a==null?void 0:a.logTruncated,logUpdatedAt:a==null?void 0:a.logUpdatedAt,loading:c&&!!(a&&Hg.has(a.status))}),(a==null?void 0:a.status)==="failed"&&a.error?o.jsx("p",{className:"environment-build-dialog__failure",role:"alert",children:a.error}):null]}),o.jsxs("footer",{className:"environment-build-dialog__actions",children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",onClick:t,children:r("common.close")}),a&&!e.imageSource&&!Hg.has(a.status)?o.jsx(Ht,{type:"button",color:"info",size:"sm",disabled:g,onClick:()=>{b(!0),i().then(t).finally(()=>b(!1))},children:r(g?"environmentCenter.buildDetails.starting":"environmentCenter.buildDetails.rebuild")}):null]})]})}),document.body)}function $je({cloudProvider:e,value:t,disabled:n,onChange:i}){const{t:r}=Te("ui"),s=Iu(e).map(a=>({value:a.value,label:a.label}));return o.jsxs("label",{className:"environment-field environment-region-field",children:[o.jsxs("span",{children:[r("environmentCenter.region"),o.jsx(Eu,{})]}),o.jsx(Ls,{id:"environment-region",value:t,options:s,optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,disabled:n,triggerClassName:"environment-select-trigger",onChange:a=>i(a.value)})]})}function i4t({repositoryUrl:e,gitRef:t,dockerfilePath:n,inspection:i,inspectedKey:r,disabled:s,onRepositoryUrlChange:a,onGitRefChange:l,onDockerfilePathChange:c,onInspectionChange:u,onInspectedKeyChange:d}){const{t:f}=Te("ui"),[h,m]=p.useState(!1),[g,b]=p.useState(""),v=p.useRef(null),y=p.useRef(""),x=`${e.trim()}\0${t.trim()}`,O=r===x;p.useEffect(()=>()=>{const E=v.current;v.current=null,E==null||E.abort()},[]);const w=()=>{var E;(E=v.current)==null||E.abort(),v.current=null,m(!1),b(""),u(null),d(""),c(""),y.current=""},k=p.useCallback(async()=>{var N;const E=k8(e,f);if(E){b(E);return}y.current=x,(N=v.current)==null||N.abort();const C=new AbortController;v.current=C,m(!0),b("");try{const _=await w0e({repositoryUrl:e.trim(),...t.trim()?{ref:t.trim()}:{}},C.signal);if(v.current!==C)return;u(_),d(x),c(_.dockerfiles.length===1?_.dockerfiles[0]:"")}catch(_){if((_==null?void 0:_.name)==="AbortError")return;b(W3t(_)),u(null),d(""),c("")}finally{v.current===C&&(v.current=null,m(!1))}},[x,t,c,d,u,e,f]);p.useEffect(()=>{if(s||O||y.current===x||k8(e,f))return;const E=window.setTimeout(()=>void k(),600);return()=>window.clearTimeout(E)},[x,s,k,O,e,f]);const S=O?(i==null?void 0:i.dockerfiles)??[]:[];return o.jsxs("section",{className:"environment-source-section","aria-label":f("environmentCenter.git.sectionLabel"),children:[o.jsxs("div",{className:"environment-form-grid environment-git-fields",children:[o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[f("environmentCenter.git.address"),o.jsx(Eu,{})]}),o.jsx(qr,{size:"lg",type:"url",required:!0,value:e,placeholder:"https://github.com/owner/repository.git",autoComplete:"url",disabled:s,"aria-invalid":!!g,onChange:E=>{w(),a(E.currentTarget.value)}})]}),o.jsxs("label",{className:"environment-field",children:[o.jsx("span",{children:f("environmentCenter.git.ref")}),o.jsx(qr,{size:"lg",value:t,placeholder:f("environmentCenter.git.defaultBranch"),autoComplete:"off",disabled:s,onChange:E=>{w(),l(E.currentTarget.value)}})]})]}),o.jsxs("div",{className:"environment-inspection-status environment-form-feedback","aria-live":"polite",children:[h?o.jsx(xn,{as:"span",children:f("environmentCenter.git.inspecting")}):null,g?o.jsxs("div",{className:"environment-source-error",role:"alert",children:[o.jsx("span",{children:g}),o.jsxs(Ht,{type:"button",color:"primary",size:"sm",pill:!1,disabled:s,onClick:()=>void k(),children:[o.jsx(Kj,{}),f("common.retry")]})]}):null,!h&&!g&&O&&i?S.length>0?o.jsx("span",{children:i.commitSha?f("environmentCenter.git.foundDockerfiles",{commit:i.commitSha.slice(0,12),count:S.length}):f("environmentCenter.git.savedDockerfileLoaded")}):o.jsxs("div",{className:"environment-source-error",role:"alert",children:[o.jsx("span",{children:f("environmentCenter.git.noDockerfile")}),o.jsx("button",{type:"button",disabled:s,onClick:()=>void k(),children:f("environmentCenter.git.inspectAgain")})]}):null]}),S.length>0?o.jsxs("label",{className:"environment-field environment-dockerfile-picker",children:[o.jsxs("span",{children:["Dockerfile",o.jsx(Eu,{})]}),o.jsx(VE,{ariaLabel:f("environmentCenter.git.selectDockerfile"),value:n,valueLabel:n,placeholder:f("environmentCenter.git.selectDockerfile"),options:S.map(E=>({value:E,label:E})),disabled:s||h,onChange:c})]}):null]})}function r4t({cloudProvider:e,mode:t,region:n,value:i,disabled:r,onModeChange:s,onRegionChange:a,onChange:l}){const{t:c}=Te("ui");return o.jsx("section",{className:"environment-source-section","aria-label":c("environmentCenter.repository.outputSection"),children:o.jsxs("div",{className:"environment-form-grid",children:[o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[c("environmentCenter.repository.type"),o.jsx(Eu,{})]}),o.jsx(Ls,{id:"environment-repository-mode",value:t,options:Q3t(c),optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,disabled:r,triggerClassName:"environment-select-trigger",onChange:u=>s(u.value)})]}),o.jsx($je,{cloudProvider:e,value:n,disabled:r,onChange:a}),t==="existing"?o.jsx(Ije,{region:n,value:i,disabled:r,onChange:l}):o.jsx("p",{className:"environment-source-note environment-form-feedback",children:c("environmentCenter.repository.managedHint")})]})})}function s4t({cloudProvider:e,region:t,repository:n,reference:i,disabled:r,onRegionChange:s,onRepositoryChange:a,onReferenceChange:l}){const{t:c}=Te("ui"),u=Mje(i,c);return o.jsx("section",{className:"environment-source-section","aria-label":c("environmentCenter.existingImage.sectionLabel"),children:o.jsxs("div",{className:"environment-form-grid",children:[o.jsx($je,{cloudProvider:e,value:t,disabled:r,onChange:s}),o.jsx(Ije,{region:t,value:n,disabled:r,onChange:a}),o.jsxs("label",{className:"environment-field environment-image-reference",children:[o.jsxs("span",{children:[c("environmentCenter.existingImage.reference"),o.jsx(Eu,{})]}),o.jsx(qr,{size:"lg",value:i,required:!0,placeholder:c("environmentCenter.existingImage.placeholder"),autoComplete:"off",disabled:r,"aria-invalid":!!u,onChange:d=>l(d.currentTarget.value)}),u?o.jsx("small",{className:"environment-source-field__error",role:"alert",children:u}):o.jsx("small",{children:c("environmentCenter.existingImage.hint")})]})]})})}function Fje(e,t,n,i){const r=p.useRef(n),s=p.useRef(i);r.current=n,s.current=i,p.useEffect(()=>{const a=document.body.style.overflow,l=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden";const c=window.requestAnimationFrame(()=>{var d;return(d=t.current)==null?void 0:d.focus()}),u=d=>{var g;if(d.key==="Escape"&&!s.current){d.preventDefault(),r.current();return}if(d.key!=="Tab")return;const f=Array.from(((g=e.current)==null?void 0:g.querySelectorAll('button:not([disabled]), textarea:not([disabled]), input:not([disabled]), [tabindex]:not([tabindex="-1"])'))??[]).filter(b=>b.getClientRects().length>0);if(!f.length)return;const h=f[0],m=f[f.length-1];d.shiftKey&&document.activeElement===h?(d.preventDefault(),m.focus()):!d.shiftKey&&document.activeElement===m&&(d.preventDefault(),h.focus())};return window.addEventListener("keydown",u),()=>{window.cancelAnimationFrame(c),document.body.style.overflow=a,window.removeEventListener("keydown",u),l!=null&&l.isConnected&&l.focus()}},[e,t])}function a4t({environment:e,onClose:t}){const{t:n}=Te("ui"),i=p.useId(),r=p.useId(),s=p.useRef(null),a=p.useRef(null),[l,c]=p.useState(""),[u,d]=p.useState("loading"),[f,h]=p.useState(""),m=u==="loading";Fje(s,a,t,m);const g=async(b="",v)=>{d("loading"),h("");try{const y=b||(await O0e(e.id,v)).shareCode;c(y),await d0e(y),v!=null&&v.aborted||d("copied")}catch(y){if((y==null?void 0:y.name)==="AbortError")return;h(y instanceof Error?y.message:String(y)),d("error")}};return p.useEffect(()=>{const b=new AbortController;return g("",b.signal),()=>b.abort()},[e.id]),Li.createPortal(o.jsx("div",{className:"environment-build-dialog__backdrop",onMouseDown:b=>{b.target===b.currentTarget&&!m&&t()},children:o.jsxs("section",{ref:s,className:"environment-share-dialog",role:"dialog","aria-modal":"true","aria-labelledby":i,"aria-describedby":r,"aria-busy":m||void 0,children:[o.jsxs("header",{className:"environment-build-dialog__header",children:[o.jsxs("div",{children:[o.jsx("h2",{id:i,children:n("environmentCenter.share.title")}),o.jsx("p",{id:r,children:e.name})]}),o.jsx(Ht,{ref:a,type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,disabled:m,onClick:t,"aria-label":n("environmentCenter.share.closeLabel"),children:o.jsx(Ba,{"aria-hidden":!0})})]}),o.jsx("div",{className:"environment-share-dialog__body",children:u==="loading"?o.jsx(xn,{as:"p",children:n("environmentCenter.share.generating")}):o.jsxs("div",{className:"environment-share-dialog__result",children:[u==="copied"?o.jsx("p",{className:"environment-share-dialog__success",role:"status","aria-live":"polite",children:n("environmentCenter.share.copied")}):o.jsxs("div",{className:"environment-share-dialog__error",role:"alert",children:[o.jsx("strong",{children:n("environmentCenter.share.failed")}),o.jsx("span",{children:f})]}),l?o.jsxs("label",{className:"environment-share-dialog__field environment-share-dialog__manual-code",children:[o.jsx("span",{children:n("environmentCenter.share.code")}),o.jsx(Rm,{size:"lg",rows:4,value:l,readOnly:!0,"aria-label":n("environmentCenter.share.fullCode"),onFocus:b=>b.currentTarget.select(),onClick:b=>b.currentTarget.select()}),o.jsx("small",{children:n(u==="copied"?"environmentCenter.share.copiedHint":"environmentCenter.share.copyFailedHint")})]}):null,o.jsx("p",{className:"environment-share-dialog__safety",children:n("environmentCenter.share.safety")})]})}),o.jsxs("footer",{className:"environment-build-dialog__actions",children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",disabled:m,onClick:t,children:n("common.close")}),u==="error"?o.jsx(Ht,{type:"button",color:"info",size:"sm",onClick:()=>void g(l),children:n("common.retry")}):u==="copied"?o.jsx(Ht,{type:"button",color:"info",size:"sm",onClick:()=>void g(l),children:n("environmentCenter.share.copyAgain")}):null]})]})}),document.body)}function o4t({initialValue:e,autoInspect:t,onClose:n,onImported:i}){const{t:r}=Te("ui"),s=p.useId(),a=p.useId(),l=p.useId(),c=p.useRef(null),u=p.useRef(null),d=p.useRef(!1),[f,h]=p.useState(e),[m,g]=p.useState("editing"),[b,v]=p.useState([]),[y,x]=p.useState(""),[O,w]=p.useState([]),k=p.useMemo(()=>ZF(f),[f]),S=k.length>S8,E=m==="inspecting"||m==="importing",C=b.filter(T=>T.status==="valid"),N=b.filter(T=>T.status==="invalid"),_=m==="ready"&&C.length>0;Fje(c,u,n,E);const j=p.useCallback(async()=>{if(!(!k.length||S)){g("inspecting"),x(""),w([]);try{const T=await S0e(k);v([...T].sort((P,R)=>P.index-R.index)),g("ready")}catch(T){x(T instanceof Error?T.message:String(T)),g("editing")}}},[k,S]);p.useEffect(()=>{!t||d.current||(d.current=!0,j())},[t,j]);const A=async()=>{if(_){g("importing"),x(""),w([]);try{const T=C.map(Q=>({code:k[Q.index],name:Q.name})).filter(Q=>!!Q.code),P=await k0e(T.map(Q=>Q.code)),R=P.filter(Q=>Q.status==="created").length,L=P.filter(Q=>Q.status==="duplicate").length,M=new Map(P.map(Q=>[Q.index,Q])),U=T.flatMap(({code:Q,name:q},B)=>{const ee=M.get(B);return!ee||ee.status==="failed"?[{code:Q,name:q,status:"valid",error:(ee==null?void 0:ee.error)||r("environmentCenter.import.noResult")}]:[]}),H=[...N.flatMap(Q=>{const q=k[Q.index];return q?[{code:q,name:"",status:"invalid",error:Q.error||r("environmentCenter.import.invalidCode")}]:[]}),...U],K=new Map;if(P.forEach(Q=>{Q.environment&&K.set(Q.environment.id,Q.environment)}),i([...K.values()],R,L,H.length),!H.length){n();return}h(H.map(Q=>Q.code).join(` -`)),w(U),v(H.map((Q,q)=>({index:q,status:Q.status,name:Q.name,error:Q.status==="invalid"?Q.error:""}))),x(r("environmentCenter.import.partial",{created:R,remaining:H.length})),g("ready")}catch(T){x(T instanceof Error?T.message:String(T)),g("ready")}}},F=m==="inspecting"?r("environmentCenter.import.inspecting"):m==="importing"?r("environmentCenter.import.importing"):_?O.length?r("environmentCenter.import.retryImport"):r("environmentCenter.import.confirm"):r("environmentCenter.import.inspectCodes");return Li.createPortal(o.jsx("div",{className:"environment-build-dialog__backdrop",onMouseDown:T=>{T.target===T.currentTarget&&!E&&n()},children:o.jsxs("section",{ref:c,className:"environment-share-dialog environment-import-dialog",role:"dialog","aria-modal":"true","aria-labelledby":s,"aria-describedby":a,"aria-busy":E||void 0,children:[o.jsxs("header",{className:"environment-build-dialog__header",children:[o.jsxs("div",{children:[o.jsx("h2",{id:s,children:r("environmentCenter.import.title")}),o.jsx("p",{id:a,children:r("environmentCenter.import.description")})]}),o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,disabled:E,onClick:n,"aria-label":r("environmentCenter.import.closeLabel"),children:o.jsx(Ba,{"aria-hidden":!0})})]}),o.jsxs("div",{className:"environment-share-dialog__body",children:[o.jsxs("label",{className:"environment-share-dialog__field",children:[o.jsx("span",{children:r("environmentCenter.import.code")}),o.jsx(Rm,{ref:u,size:"lg",rows:6,value:f,disabled:E,"aria-invalid":S||N.length>0||void 0,"aria-describedby":l,placeholder:"akenv://v1/...",onChange:T=>{h(T.currentTarget.value),g("editing"),v([]),x(""),w([])}})]}),o.jsx("p",{id:l,className:`environment-share-dialog__help${S?" is-error":""}`,children:S?r("environmentCenter.import.tooMany",{max:S8,count:k.length}):r("environmentCenter.import.multipleHint")}),o.jsx("p",{className:"environment-share-dialog__safety",children:r("environmentCenter.import.safety")}),m==="inspecting"?o.jsx(xn,{as:"p",children:r("environmentCenter.import.inspectingCodes")}):C.length?o.jsx("p",{className:"environment-share-dialog__summary",role:"status","aria-live":"polite",children:r("environmentCenter.import.found",{count:C.length,names:C.map(T=>T.name||r("environmentCenter.unnamed")).join(r("environmentCenter.listSeparator"))})}):null,N.length?o.jsx("ul",{className:"environment-share-dialog__failures",role:"alert",children:N.map(T=>o.jsx("li",{children:r("environmentCenter.import.itemError",{index:T.index+1,error:T.error||r("environmentCenter.import.invalidCode")})},T.index))}):null,O.length?o.jsx("ul",{className:"environment-share-dialog__failures",role:"alert",children:O.map((T,P)=>o.jsx("li",{children:r("environmentCenter.import.itemError",{index:P+1,error:T.error})},`${T.code}:${P}`))}):null,y?o.jsx("p",{className:"environment-share-dialog__error-text",role:"alert",children:y}):null]}),o.jsxs("footer",{className:"environment-build-dialog__actions",children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",disabled:E,onClick:n,children:r("common.cancel")}),o.jsx(Ht,{type:"button",color:"info",size:"sm",loading:E,disabled:E||!k.length||S||m==="ready"&&!_,onClick:()=>_?void A():void j(),children:F})]})]})}),document.body)}function l4t({environment:e,cloudProvider:t,onCancel:n,onDelete:i,onShare:r,onSave:s}){var Je,Ce,Wt,ln,cn,Ot,jt;const{t:a,i18n:l}=Te("ui"),c=L3t(a),u=Y3t(e,t),d=u.dockerfile!==void 0,[f,h]=p.useState(()=>({...u,dockerfile:d?void 0:u.dockerfile})),[m,g]=p.useState(u.gitSource?"git":u.imageSource?"image":d?"dockerfile":"custom"),[b,v]=p.useState(d?(e==null?void 0:e.dockerfile)??"":""),[y,x]=p.useState(""),O=p.useRef(null),[w,k]=p.useState(()=>d?B3t((e==null?void 0:e.dockerfile)??""):u.baseEnvironment==="aio-sandbox"||u.baseEnvironment==="codex-sandbox"?u.baseEnvironment:"none"),[S,E]=p.useState(((Je=u.gitSource)==null?void 0:Je.repositoryUrl)??""),[C,N]=p.useState(((Ce=u.gitSource)==null?void 0:Ce.ref)??""),[_,j]=p.useState(((Wt=u.gitSource)==null?void 0:Wt.dockerfilePath)??""),[A,F]=p.useState(u.gitSource?{repositoryUrl:u.gitSource.repositoryUrl,ref:u.gitSource.ref??"",commitSha:"",dockerfiles:[u.gitSource.dockerfilePath]}:null),[T,P]=p.useState(u.gitSource?`${u.gitSource.repositoryUrl}\0${u.gitSource.ref??""}`:""),[R,L]=p.useState(u.containerRepository?"existing":"managed"),[M,U]=p.useState(((ln=u.containerRepository)==null?void 0:ln.region)??Ji(t)),[I,H]=p.useState(u.containerRepository??void 0),[K,Q]=p.useState(((cn=u.imageSource)==null?void 0:cn.region)??Ji(t)),[q,B]=p.useState(u.imageSource?{region:u.imageSource.region,registry:u.imageSource.registry,namespace:u.imageSource.namespace,repository:u.imageSource.repository}:void 0),[ee,le]=p.useState(((Ot=u.imageSource)==null?void 0:Ot.reference)??""),[se,re]=p.useState(!1),ge=p.useMemo(()=>_B(f,t),[t,f.baseEnvironment,f.operatingSystem,f.language,f.optionIds]),W=f.dockerfile??ge,X=w!=="none",ae=w==="aio-sandbox"?TB:w==="codex-sandbox"?OOe[t]:"",ue=X?_3t(b):b,Oe=X?QA(ae,""):"",ke=X?QA(ae,ue):b,st=y||(X?N3t(ue,ae,a):JQ(b,void 0,a)),Le=!!e,Me="environment-editor-form",[Ie,qe]=p.useState(!1),[Ae,ze]=p.useState(""),Ee=!!ke.trim()&&!st,De=`${S.trim()}\0${C.trim()}`,J=!k8(S,a)&&T===De&&!!_&&(R==="managed"||Bte(I)),he=Bte(q)&&!!ee.trim()&&!Mje(ee,a),_e=!!f.name.trim()&&!Ie&&(m==="custom"||m==="dockerfile"&&Ee||m==="git"&&J||m==="image"&&he),Ze=(ot,gt)=>{h(Pe=>({...Pe,optionIds:gt?[...Pe.optionIds,ot]:Pe.optionIds.filter(Et=>Et!==ot)}))},at=ot=>{x(""),v(X?QA(ae,ot):ot)},wt=async ot=>{if(!ot)return;const gt=await j3t(ot,a);x(gt.error),gt.content&&v(gt.content)},Se=()=>{x(""),v(Oe)},ve=async ot=>{if(ot.preventDefault(),!!_e){qe(!0),ze("");try{const gt=sat(ke);await s({...f,name:f.name.trim(),description:f.description.trim(),optionIds:m==="custom"?f.optionIds:[],selectedSkills:m==="custom"?f.selectedSkills:[],dockerfile:m==="dockerfile"?ke:m==="custom"?W:"",gitSource:m==="git"?{repositoryUrl:S.trim(),...C.trim()?{ref:C.trim()}:{},dockerfilePath:_}:null,containerRepository:m==="git"&&R==="existing"?I:null,imageSource:m==="image"&&q?{...q,reference:ee.trim()}:null,...m==="dockerfile"?gt:{}})}catch(gt){ze(gt instanceof Error?gt.message:String(gt)),qe(!1)}}},He=f.name.trim()||(Le?(e==null?void 0:e.name)||a("environmentCenter.configure"):a("environmentCenter.create"));return o.jsx(Th,{className:"environment-editor","aria-label":a(Le?"environmentCenter.details":"environmentCenter.create"),children:o.jsx(uE,{title:He,description:a("environmentCenter.editorDescription"),identitySeed:He,backLabel:a("environmentCenter.backToList"),onBack:n,actions:o.jsxs(o.Fragment,{children:[i?o.jsx(Ht,{type:"button",color:"danger",variant:"ghost",size:"sm",onClick:i,disabled:Ie,children:a("common.delete")}):null,r?o.jsx(Ht,{color:"secondary",variant:"soft",size:"sm",onClick:r,disabled:Ie,children:a("environmentCenter.share.action")}):null,o.jsx(Ht,{color:"secondary",variant:"soft",size:"sm",onClick:n,disabled:Ie,children:a("common.cancel")}),o.jsx(Ht,{color:"info",size:"sm",type:"submit",form:Me,disabled:!_e,children:a(Ie?"common.saving":m==="image"?Le?"environmentCenter.save":"environmentCenter.create":Le?"environmentCenter.saveAndBuild":"environmentCenter.createAndBuild")})]}),children:o.jsxs("form",{id:Me,className:"environment-form",onSubmit:ve,children:[o.jsxs("div",{className:"environment-fields",children:[o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[a("environmentCenter.name"),o.jsx(Eu,{})]}),o.jsx(qr,{className:"environment-text-input",type:"text",size:"lg",required:!0,value:f.name,maxLength:60,placeholder:a("environmentCenter.namePlaceholder"),onChange:ot=>h(gt=>({...gt,name:ot.target.value}))})]}),o.jsxs("label",{className:"environment-field",children:[o.jsx("span",{children:a("common.description")}),o.jsx(Rm,{className:"environment-description-input",size:"lg",rows:3,value:f.description,maxLength:180,placeholder:a("environmentCenter.descriptionPlaceholder"),onChange:ot=>h(gt=>({...gt,description:ot.target.value}))})]})]}),o.jsxs("label",{className:"environment-field environment-creation-method",children:[o.jsxs("span",{children:[a("environmentCenter.creationMethod"),o.jsx(Eu,{})]}),o.jsx(Ls,{id:"environment-creation-method",value:m,options:c,optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,triggerClassName:"environment-select-trigger",onChange:ot=>{const gt=ot.value;g(gt),gt==="dockerfile"&&!b.trim()&&v(Oe),ze("")}}),o.jsx("small",{children:(jt=c.find(ot=>ot.value===m))==null?void 0:jt.description})]}),Ae?o.jsx("p",{className:"environment-form-error",role:"alert",children:Ae}):null,m==="custom"?o.jsxs("div",{className:"environment-configuration",children:[o.jsx("section",{className:"environment-section environment-form-section","aria-label":a("environmentCenter.baseConfiguration"),children:o.jsxs("div",{className:"environment-form-grid",children:[o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[a("environmentCenter.baseEnvironment"),o.jsx(Eu,{})]}),o.jsx(Ls,{id:"environment-base-environment",value:f.baseEnvironment,options:$3t.map(ot=>({...ot,description:a(`environmentCenter.baseDescriptions.${ot.value}`)})),optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,triggerClassName:"environment-select-trigger",onChange:ot=>{const gt=ot.value,Pe=gt==="aio-sandbox"||gt==="codex-sandbox";h(Et=>({...Et,baseEnvironment:gt,operatingSystem:Pe?"ubuntu-22.04":Et.operatingSystem,language:Pe?"python-3.12":Et.language}))}}),o.jsx("small",{children:a(`environmentCenter.baseDescriptions.${f.baseEnvironment}`)})]}),o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[a("environmentCenter.operatingSystem"),o.jsx(Eu,{})]}),o.jsx(Ls,{id:"environment-operating-system",value:f.operatingSystem,options:U3t,optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,disabled:f.baseEnvironment!=="ubuntu",triggerClassName:"environment-select-trigger",onChange:ot=>h(gt=>({...gt,operatingSystem:ot.value}))}),o.jsx("small",{children:f.baseEnvironment!=="ubuntu"?a("environmentCenter.fixedByBase",{base:S6(f.baseEnvironment),value:"Ubuntu 22.04"}):a("environmentCenter.selectUbuntuVersion")})]}),o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[a("environmentCenter.pythonVersion"),o.jsx(Eu,{})]}),o.jsx(Ls,{id:"environment-python-version",value:f.language,options:f.baseEnvironment!=="ubuntu"?$te.filter(ot=>ot.value==="python-3.12"):$te,optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,disabled:f.baseEnvironment!=="ubuntu",triggerClassName:"environment-select-trigger",onChange:ot=>h(gt=>({...gt,language:ot.value}))}),o.jsx("small",{children:f.baseEnvironment!=="ubuntu"?a("environmentCenter.fixedByBase",{base:S6(f.baseEnvironment),value:"Python 3.12"}):a("environmentCenter.selectPythonVersion")})]})]})}),o.jsxs("section",{className:"environment-section","aria-labelledby":"environment-skills-title",children:[o.jsx("h2",{id:"environment-skills-title",children:a("environmentCenter.skills")}),o.jsxs("div",{className:"environment-skill-grid",children:[o.jsx(Lte,{name:"VeADK",description:a("environmentCenter.veadkDescription"),selected:se,disabled:Ie,onChange:re,icon:o.jsx("img",{src:ER,alt:""})}),o.jsx(ZQ,{selected:f.selectedSkills,onChange:ot=>h(gt=>({...gt,selectedSkills:ot})),cloudProvider:t,disabled:Ie,addLabel:a("environmentCenter.addSkill"),showSelectedCount:!1})]})]}),AB.map(ot=>o.jsxs("section",{className:"environment-section","aria-labelledby":`environment-${ot.id}-title`,children:[o.jsx("h2",{id:`environment-${ot.id}-title`,children:a(`environmentCenter.categories.${ot.id}`)}),o.jsx("div",{className:"environment-option-grid",children:ot.options.map(gt=>{const Pe=f.optionIds.includes(gt.id);return o.jsx(Lte,{name:gt.label,description:a(`environmentCenter.options.${gt.id}`,{defaultValue:gt.description}),selected:Pe,onChange:Et=>Ze(gt.id,Et),icon:o.jsx(X3t,{option:gt})},gt.id)})})]},ot.id))]}):m==="dockerfile"?o.jsxs("section",{className:"environment-upload","aria-label":a("environmentCenter.customDockerfile"),children:[o.jsx("div",{className:"environment-dockerfile-settings environment-form-grid",children:o.jsxs("label",{className:"environment-field",children:[o.jsx("span",{children:a("environmentCenter.presetEnvironment")}),o.jsx(Ls,{id:"environment-dockerfile-base-environment",value:w,options:F3t(a),optionClassName:"environment-select-option",size:"lg",block:!0,pill:!1,triggerClassName:"environment-select-trigger",onChange:ot=>{x(""),k(ot.value)}}),o.jsx("small",{children:a("environmentCenter.presetHint")})]})}),o.jsxs("div",{className:"environment-upload__preview",children:[o.jsxs("div",{children:[o.jsxs("h3",{children:["Dockerfile",o.jsx(Eu,{})]}),o.jsxs("div",{className:"environment-upload__actions",children:[o.jsx("span",{className:"environment-upload__size",children:a("environmentCenter.dockerfileSize",{size:jje(ke).toLocaleString(l.resolvedLanguage??l.language),max:131072 .toLocaleString(l.resolvedLanguage??l.language)})}),o.jsx("input",{ref:O,className:"environment-upload__file-input",type:"file",accept:".dockerfile,text/plain",tabIndex:-1,hidden:!0,onChange:ot=>{var Pe;const gt=ot.currentTarget;wt((Pe=gt.files)==null?void 0:Pe[0]).finally(()=>{gt.value=""})}}),o.jsx(Ht,{className:"environment-upload__action",type:"button",color:"secondary",variant:"soft",size:"sm",pill:!1,disabled:Ie,onClick:()=>{var ot;return(ot=O.current)==null?void 0:ot.click()},children:a("environmentCenter.upload")}),o.jsx(Ht,{className:"environment-upload__action",type:"button",color:"secondary",variant:"ghost",size:"sm",pill:!1,disabled:Ie||!ue,onClick:Se,children:a("environmentCenter.reset")})]})]}),o.jsxs("div",{className:`environment-dockerfile-editor${X?" has-fixed-base":""}${st?" is-invalid":""}`,children:[X?o.jsxs("div",{className:"environment-dockerfile-from","aria-label":a("environmentCenter.dockerfileBaseImage"),children:[o.jsx("span",{className:"environment-dockerfile-from__line","aria-hidden":"true",children:"1"}),o.jsxs("code",{children:[o.jsx("span",{className:"environment-dockerfile-from__keyword",children:"FROM"}),o.jsx("span",{title:ae,children:ae})]})]}):null,o.jsx("div",{className:"environment-dockerfile__editor environment-upload__editor","aria-label":a("environmentCenter.dockerfileContent"),children:o.jsx(zE,{value:ue,path:"Dockerfile",lineNumberStart:X?2:1,height:"auto",minHeight:"28px",maxHeight:"var(--environment-dockerfile-editor-max-height)",onChange:at})})]})]}),st?o.jsx("p",{className:"environment-upload__error environment-upload__error--below",role:"alert",children:st}):null]}):m==="git"?o.jsxs("div",{className:"environment-source-workflow",children:[o.jsx(i4t,{repositoryUrl:S,gitRef:C,dockerfilePath:_,inspection:A,inspectedKey:T,disabled:Ie,onRepositoryUrlChange:E,onGitRefChange:N,onDockerfilePathChange:j,onInspectionChange:F,onInspectedKeyChange:P}),o.jsx(r4t,{cloudProvider:t,mode:R,region:M,value:I,disabled:Ie,onModeChange:ot=>{L(ot),ze("")},onRegionChange:ot=>{U(ot),H(void 0),ze("")},onChange:H})]}):o.jsx(s4t,{cloudProvider:t,region:K,repository:q,reference:ee,disabled:Ie,onRegionChange:ot=>{Q(ot),B(void 0),ze("")},onRepositoryChange:B,onReferenceChange:le})]})})})}function Bje({cloudProvider:e="volcengine",onWorkspace:t,clipboardImport:n=null,clipboardReadError:i=""}){const{t:r,i18n:s}=Te("ui"),[a,l]=p.useState([]),[c,u]=p.useState({kind:"list"}),[d,f]=p.useState(""),[h,m]=p.useState(null),[g,b]=p.useState(null),[v,y]=p.useState(null),[x,O]=p.useState(null),[w,k]=p.useState(null),S=p.useRef(0),[E,C]=p.useState(""),[N,_]=p.useState(!1),[j,A]=p.useState(i),[F,T]=p.useState(!0),[P,R]=p.useState(""),[L,M]=p.useState(0),[U,I]=p.useState(()=>new Set),H=p.useDeferredValue(d),K=p.useMemo(()=>{const W=H.trim().toLocaleLowerCase();return W?a.filter(X=>`${X.name} ${X.description} ${O6(X.operatingSystem)} ${oh(X.language)} ${S6(X.baseEnvironment)}`.toLocaleLowerCase().includes(W)):a},[H,a]),Q=p.useCallback((W="",X=!1)=>{S.current+=1,k({key:S.current,initialValue:W,autoInspect:X})},[]),q=p.useCallback((W,X=!1)=>{const ae=W.trim();if(!ae.startsWith("akenv://")||!X&&Fte.has(ae))return!1;const ue=ZF(ae);return!ue.length||ue.length>S8?!1:(Fte.add(ae),A(""),Q(ae,!0),!0)},[Q]),B=p.useCallback(async()=>{var W;if(!(c.kind!=="list"||w)){if(typeof navigator>"u"||!((W=navigator.clipboard)!=null&&W.readText)){A(r("environmentCenter.clipboardUnsupported"));return}try{const X=await navigator.clipboard.readText();!q(X)&&!X.trim()&&await z3t()&&A(r("environmentCenter.clipboardReadError"))}catch{A(r("environmentCenter.clipboardReadError"))}}},[w,q,r,c.kind]);p.useEffect(()=>{const W=new AbortController;return a.length===0&&T(!0),R(""),Vk(W.signal).then(X=>{l(X)}).catch(X=>{(X==null?void 0:X.name)!=="AbortError"&&R(X instanceof Error?X.message:String(X))}).finally(()=>{W.signal.aborted||T(!1)}),()=>W.abort()},[L]),p.useEffect(()=>{if(!a.some(X=>X.latestVersion&&Hg.has(X.latestVersion.status)))return;const W=window.setTimeout(()=>M(X=>X+1),2500);return()=>window.clearTimeout(W)},[a]),p.useEffect(()=>{if(!E||N)return;const W=window.setTimeout(()=>C(""),2800);return()=>window.clearTimeout(W)},[N,E]),p.useEffect(()=>{i&&A(i)},[i]),p.useEffect(()=>{n&&q(n.text)},[n,q]),p.useEffect(()=>{if(c.kind!=="list")return;const W=()=>void B(),X=()=>{document.visibilityState==="visible"&&B()},ae=ue=>{var st;const Oe=ue.target;if(Oe instanceof HTMLInputElement||Oe instanceof HTMLTextAreaElement||Oe instanceof HTMLElement&&Oe.isContentEditable)return;const ke=((st=ue.clipboardData)==null?void 0:st.getData("text/plain"))??"";q(ke,!0)&&ue.preventDefault()};return window.addEventListener("focus",W),document.addEventListener("visibilitychange",X),window.addEventListener("paste",ae),()=>{window.removeEventListener("focus",W),document.removeEventListener("visibilitychange",X),window.removeEventListener("paste",ae)}},[q,B,c.kind]);const ee=c.kind==="editor"&&c.environmentId?a.find(W=>W.id===c.environmentId):void 0,le=async W=>{const X={...W,dockerfile:W.dockerfile??_B(W,e)},ae=ee?await T0e(ee.id,X):await C0e(X);if(l(ue=>[ae,...ue.filter(Oe=>Oe.id!==ae.id)]),u({kind:"list"}),_(!1),X.imageSource){C(r("environmentCenter.status.boundImage",{name:ae.name}));return}try{const ue=await S4(ae.id);l(Oe=>Oe.map(ke=>ke.id===ae.id?{...ke,latestVersion:ue}:ke)),C(r("environmentCenter.status.queued",{name:ae.name}))}catch(ue){_(!0),C(r("environmentCenter.status.savedBuildFailed",{error:ue instanceof Error?ue.message:String(ue)}))}},se=async W=>{if(!U.has(W.id)){I(X=>new Set(X).add(W.id)),_(!1);try{const X=await S4(W.id);l(ae=>ae.map(ue=>ue.id===W.id?{...ue,latestVersion:X}:ue)),C(r("environmentCenter.status.queued",{name:W.name}))}catch(X){_(!0),C(X instanceof Error?X.message:String(X))}finally{I(X=>{const ae=new Set(X);return ae.delete(W.id),ae})}}},re=(W,X,ae,ue)=>{W.length&&l(Oe=>{const ke=new Set(W.map(st=>st.id));return[...W,...Oe.filter(st=>!ke.has(st.id))]}),_(ue>0),C(ue>0?r("environmentCenter.status.importedFailed",{created:X,failed:ue}):ae>0?r("environmentCenter.status.importedDuplicate",{created:X,duplicate:ae}):r("environmentCenter.status.imported",{count:X}))},ge=h?o.jsx(pc,{title:r("environmentCenter.deleteTitle"),description:r("environmentCenter.deleteDescription",{name:h.name}),confirmLabel:r("common.delete"),variant:"danger",onCancel:()=>m(null),onConfirm:()=>{const W=h;m(null),u({kind:"list"}),A0e(W.id).then(()=>{l(X=>X.filter(ae=>ae.id!==W.id)),_(!1),C(r("environmentCenter.status.deleted",{name:W.name}))}).catch(X=>{_(!0),C(X instanceof Error?X.message:String(X))})}}):null;return c.kind==="editor"?o.jsxs(o.Fragment,{children:[o.jsx(l4t,{environment:ee,cloudProvider:e,onCancel:()=>u({kind:"list"}),onDelete:ee?()=>m(ee):void 0,onShare:ee?()=>O(ee):void 0,onSave:le},c.environmentId??"new"),x?o.jsx(a4t,{environment:x,onClose:()=>O(null)}):null,ge]}):o.jsxs(Th,{className:"environment-center","aria-label":r("environmentCenter.title"),children:[o.jsx(zx,{title:r("environmentCenter.title")}),o.jsxs(Zb,{className:"environment-toolbar",children:[t?o.jsx(dE,{items:[{id:"workspaces",label:r("workspace.title")},{id:"environments",label:r("environmentCenter.title")}],value:"environments",onChange:W=>{W==="workspaces"&&t()},ariaLabel:r("workspace.resourceType"),idPrefix:"environment-center"}):null,o.jsxs("div",{className:"resource-toolbar__actions",children:[E?o.jsx("span",{className:`environment-status${N?" is-error":""}`,role:N?"alert":"status","aria-live":"polite",children:E}):null,o.jsx(wm,{"aria-label":r("environmentCenter.search"),value:d,onChange:W=>f(W.target.value),placeholder:r("environmentCenter.search")})]})]}),j?o.jsxs("div",{className:"environment-clipboard-notice",role:"alert",children:[o.jsx("span",{children:j}),o.jsx(Ht,{type:"button",color:"secondary",variant:"soft",size:"sm",onClick:()=>{A(""),Q()},children:r("environmentCenter.manualImport")})]}):null,o.jsx(Jb,{"aria-live":"polite",children:F?o.jsx(Ud,{}):P?o.jsxs("div",{className:"environment-load-error",role:"alert",children:[o.jsx("p",{children:jd(P,s.resolvedLanguage||s.language)||r("environmentCenter.loadFailed")}),o.jsx(Ht,{color:"secondary",variant:"soft",size:"sm",onClick:()=>M(W=>W+1),children:r("common.reload")})]}):K.length===0&&d.trim()?o.jsx("div",{className:"environment-empty",children:o.jsxs(Cn,{fill:"none",children:[o.jsx(Cn.Icon,{children:o.jsx(G3t,{})}),o.jsx(Cn.Title,{children:r("environmentCenter.noMatches")}),o.jsx(Cn.Description,{children:r("environmentCenter.tryAnotherName")})]})}):o.jsxs(Vx,{children:[d.trim()?null:o.jsxs(o.Fragment,{children:[o.jsx(Cb,{"aria-label":r("environmentCenter.create"),icon:o.jsx(H3t,{}),onClick:()=>u({kind:"editor",environmentId:null}),children:r("environmentCenter.create")}),o.jsx(Cb,{"aria-label":r("environmentCenter.import.title"),icon:o.jsx(q3t,{}),onClick:()=>Q(),children:r("environmentCenter.import.title")})]}),K.map(W=>{var Oe,ke;const X=Lje(W,r),ae=!!(W.latestVersion&&Hg.has(W.latestVersion.status)),ue=U.has(W.id);return o.jsx(pE,{className:"environment-card",title:W.name,status:o.jsx(ba,{color:X.color,size:"sm",children:X.label}),description:((Oe=W.latestVersion)==null?void 0:Oe.error)||(ae?(ke=W.latestVersion)==null?void 0:ke.currentStep:"")||W.description||r("common.noDescription"),metadata:[{label:r("workspace.updated"),value:Z3t(W.updatedAt,s.resolvedLanguage??s.language),title:J3t(W.updatedAt,s.resolvedLanguage??s.language)}],action:{label:W.latestVersion?r("environmentCenter.buildDetails.title"):r(ue?"environmentCenter.buildDetails.starting":"environmentCenter.startBuild"),icon:"play",title:r("environmentCenter.build"),disabled:ue,onClick:()=>W.latestVersion?b(W.id):void se(W)},auxiliaryAction:{label:r("environmentCenter.manifest.view"),icon:o.jsx(zFe,{}),title:W.latestVersion?r("environmentCenter.manifest.viewShort"):r("environmentCenter.manifest.unavailable"),disabled:!W.latestVersion,onClick:()=>y(W)},detailAction:{label:r("environmentCenter.configure"),onClick:()=>u({kind:"editor",environmentId:W.id})}},W.id)})]})}),g?(()=>{const W=a.find(X=>X.id===g);return W?o.jsx(n4t,{environment:W,onClose:()=>b(null),onBuildUpdate:X=>{l(ae=>ae.map(ue=>ue.id===W.id?{...ue,latestVersion:X}:ue))},onRebuild:()=>se(W)}):null})():null,v!=null&&v.latestVersion?o.jsx(t4t,{environment:v,onClose:()=>y(null)}):null,ge,w?o.jsx(o4t,{initialValue:w.initialValue,autoInspect:w.autoInspect,onClose:()=>k(null),onImported:re},w.key):null]})}function c4t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8 3.25v9.5M3.25 8h9.5"})})}function u4t(e){return o.jsxs("svg",{viewBox:"0 0 32 32",fill:"none",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"4.5",y:"7",width:"23",height:"18",rx:"3"}),o.jsx("path",{d:"M10 7V5.5A1.5 1.5 0 0 1 11.5 4h4A1.5 1.5 0 0 1 17 5.5V7M9 13h5v5H9zM18 13h5M18 17h5M9 22h14"})]})}function E8(e,t){const n=Date.parse(e);return Number.isNaN(n)?e:new Intl.DateTimeFormat(t,{month:"short",day:"numeric",hour:"2-digit",minute:"2-digit"}).format(n)}function d4t(e,t){return e.environmentIds.reduce((n,i)=>{var r,s;return((s=(r=t.get(i))==null?void 0:r.latestVersion)==null?void 0:s.status)==="available"?n+1:n},0)}function f4t({workspace:e,environments:t,onBack:n,onSave:i,onDelete:r}){const{t:s,i18n:a}=Te("ui"),[l,c]=p.useState((e==null?void 0:e.name)??""),[u,d]=p.useState((e==null?void 0:e.description)??""),[f,h]=p.useState((e==null?void 0:e.environmentIds)??[]),[m,g]=p.useState(""),[b,v]=p.useState(!1),[y,x]=p.useState(""),O=m.trim().toLocaleLowerCase(),w=t.filter(S=>`${S.name} ${S.description} ${oh(S.language)}`.toLocaleLowerCase().includes(O)),k=async S=>{if(S.preventDefault(),!(!l.trim()||b)){v(!0),x("");try{await i({name:l.trim(),description:u.trim(),environmentIds:f})}catch(E){x(E instanceof Error?E.message:String(E)),v(!1)}}};return o.jsx(Th,{className:"workspace-center","aria-label":s(e?"workspace.detail":"workspace.create"),children:o.jsxs(uE,{title:e?e.name:s("workspace.create"),description:s("workspace.editorDescription"),identitySeed:(e==null?void 0:e.name)||s("workspace.create"),backLabel:s("workspace.backToList"),onBack:n,actions:o.jsxs(o.Fragment,{children:[r?o.jsx("button",{type:"button",className:"is-danger",onClick:r,children:s("common.delete")}):null,o.jsx("button",{type:"submit",form:"workspace-form",disabled:b||!l.trim(),children:s(b?"common.saving":"common.save")})]}),children:[e?o.jsxs(jB,{children:[o.jsxs("div",{children:[o.jsx("dt",{children:s("common.environment")}),o.jsx("dd",{children:s("workspace.environmentCount",{count:f.length})})]}),o.jsxs("div",{children:[o.jsx("dt",{children:s("workspace.createdAt")}),o.jsx("dd",{children:E8(e.createdAt,a.resolvedLanguage??a.language)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:s("workspace.updatedAt")}),o.jsx("dd",{children:E8(e.updatedAt,a.resolvedLanguage??a.language)})]})]}):null,o.jsxs("form",{id:"workspace-form",className:"workspace-form",onSubmit:k,children:[o.jsxs("section",{className:"workspace-fields","aria-label":s("workspace.basicInfo"),children:[o.jsxs("label",{children:[o.jsx("span",{children:s("common.name")}),o.jsx(qr,{value:l,maxLength:128,autoFocus:!0,onChange:S=>c(S.target.value),placeholder:s("workspace.namePlaceholder")})]}),o.jsxs("label",{children:[o.jsx("span",{children:s("common.description")}),o.jsx(Rm,{value:u,maxLength:2e3,onChange:S=>d(S.target.value),placeholder:s("workspace.descriptionPlaceholder")})]})]}),o.jsxs("section",{className:"workspace-environments",children:[o.jsx(BOe,{title:s("common.environment"),description:s("workspace.selectedEnvironmentCount",{count:f.length}),actions:o.jsx(wm,{"aria-label":s("workspace.searchAvailableEnvironments"),value:m,onChange:S=>g(S.target.value),placeholder:s("workspace.searchEnvironments")})}),t.length===0?o.jsxs("div",{className:"workspace-environment-empty",children:[o.jsx("p",{children:s("workspace.noAvailableEnvironments")}),o.jsx("span",{children:s("workspace.createEnvironmentFirst")})]}):w.length===0?o.jsxs("div",{className:"workspace-environment-empty",children:[o.jsx("p",{children:s("workspace.noMatchingEnvironments")}),o.jsx("span",{children:s("workspace.tryAnotherName")})]}):o.jsx("div",{className:"workspace-environment-list",children:w.map(S=>{var N;const E=f.includes(S.id),C=((N=S.latestVersion)==null?void 0:N.status)==="available"?s("workspace.environmentStatus.available"):S.latestVersion?s("workspace.environmentStatus.building"):s("workspace.environmentStatus.notBuilt");return o.jsxs("label",{className:`workspace-environment-option${E?" is-selected":""}`,children:[o.jsx("input",{type:"checkbox",checked:E,onChange:()=>h(_=>E?_.filter(j=>j!==S.id):[..._,S.id])}),o.jsxs("span",{className:"workspace-environment-option__copy",children:[o.jsx("strong",{title:S.name,children:S.name}),o.jsxs("span",{children:[oh(S.language)," · ",C]})]}),o.jsx("span",{className:"workspace-environment-option__action",children:s(E?"workspace.added":"common.add")})]},S.id)})})]}),y?o.jsx("p",{className:"workspace-form-error",role:"alert",children:y}):null]})]})})}function h4t({onEnvironment:e}){const{t,i18n:n}=Te("ui"),[i,r]=p.useState([]),[s,a]=p.useState([]),[l,c]=p.useState({kind:"list"}),[u,d]=p.useState(""),[f,h]=p.useState(!0),[m,g]=p.useState(""),[b,v]=p.useState(""),[y,x]=p.useState(!1),[O,w]=p.useState(null),[k,S]=p.useState(0),E=p.useDeferredValue(u);p.useEffect(()=>{const j=new AbortController;return h(!0),g(""),Promise.all([t7(j.signal),Vk(j.signal)]).then(([A,F])=>{r(A),a(F)}).catch(A=>{(A==null?void 0:A.name)!=="AbortError"&&(console.warn("Unable to load Studio workspaces",A),g(t("workspace.loadFailed")))}).finally(()=>{j.signal.aborted||h(!1)}),()=>j.abort()},[k,t]),p.useEffect(()=>{if(!b||y)return;const j=window.setTimeout(()=>v(""),2800);return()=>window.clearTimeout(j)},[y,b]);const C=p.useMemo(()=>new Map(s.map(j=>[j.id,j])),[s]),N=p.useMemo(()=>{const j=E.trim().toLocaleLowerCase();return j?i.filter(A=>{const F=A.environmentIds.map(T=>{var P;return((P=C.get(T))==null?void 0:P.name)??""}).join(" ");return`${A.name} ${A.description} ${F}`.toLocaleLowerCase().includes(j)}):i},[E,C,i]),_=l.kind==="detail"&&l.workspaceId?i.find(j=>j.id===l.workspaceId):void 0;return l.kind==="detail"?o.jsx(f4t,{workspace:_,environments:s,onBack:()=>c({kind:"list"}),onDelete:_?()=>w(_):null,onSave:async j=>{const A=_?await v0e(_.id,j):await y0e(j);r(F=>[A,...F.filter(T=>T.id!==A.id)]),x(!1),v(t("workspace.saved",{name:A.name})),c({kind:"list"})}},l.workspaceId??"new"):o.jsxs(Th,{className:"workspace-center","aria-label":t("workspace.title"),children:[o.jsx(zx,{title:t("workspace.title")}),o.jsxs(Zb,{children:[o.jsx(dE,{items:[{id:"workspaces",label:t("workspace.title")},{id:"environments",label:t("common.environment")}],value:"workspaces",onChange:j=>{j==="environments"&&e()},ariaLabel:t("workspace.resourceType"),idPrefix:"workspace-center"}),o.jsxs("div",{className:"resource-toolbar__actions",children:[b?o.jsx("span",{className:`workspace-status${y?" is-error":""}`,role:y?"alert":"status","aria-live":"polite",children:b}):null,o.jsx(wm,{"aria-label":t("workspace.searchWorkspaces"),value:u,onChange:j=>d(j.target.value),placeholder:t("workspace.searchWorkspaces")})]})]}),o.jsx(Jb,{"aria-live":"polite",children:f?o.jsx(Ud,{}):m?o.jsxs("div",{className:"workspace-load-error",role:"alert",children:[o.jsx("p",{children:m}),o.jsx(Ht,{color:"secondary",variant:"soft",size:"sm",onClick:()=>S(j=>j+1),children:t("common.reload")})]}):N.length===0&&u.trim()?o.jsx("div",{className:"workspace-empty",children:o.jsxs(Cn,{fill:"none",children:[o.jsx(Cn.Icon,{children:o.jsx(u4t,{})}),o.jsx(Cn.Title,{children:t("workspace.noMatchingWorkspaces")}),o.jsx(Cn.Description,{children:t("workspace.tryAnotherNameOrEnvironment")})]})}):o.jsxs(Vx,{children:[u.trim()?null:o.jsx(Cb,{"aria-label":t("workspace.create"),icon:o.jsx(c4t,{}),onClick:()=>c({kind:"detail",workspaceId:null}),children:t("workspace.create")}),N.map(j=>{const A=d4t(j,C),F=j.environmentIds.filter(T=>!C.has(T)).length;return o.jsx(pE,{className:"workspace-card",title:j.name,status:o.jsx(ba,{color:F?"danger":A===j.environmentIds.length&&A>0?"success":"secondary",size:"sm",children:j.environmentIds.length===0?t("workspace.noEnvironmentAdded"):F?t("workspace.environmentMissing"):t("workspace.availableFraction",{available:A,total:j.environmentIds.length})}),description:j.description||t("common.noDescription"),metadata:[{label:t("common.environment"),value:t("workspace.environmentCount",{count:j.environmentIds.length})},{label:t("workspace.available"),value:t("workspace.availableCount",{count:A})},{label:t("workspace.updated"),value:E8(j.updatedAt,n.resolvedLanguage??n.language)}],detailAction:{label:t("common.manage"),onClick:()=>c({kind:"detail",workspaceId:j.id})},action:{label:t("workspace.addEnvironment"),icon:"plus",onClick:()=>c({kind:"detail",workspaceId:j.id})}},j.id)})]})}),O?o.jsx(pc,{title:t("workspace.deleteTitle"),description:t("workspace.deleteDescription",{name:O.name}),confirmLabel:t("common.delete"),variant:"danger",onCancel:()=>w(null),onConfirm:()=>{const j=O;w(null),x0e(j.id).then(()=>{r(A=>A.filter(F=>F.id!==j.id)),x(!1),v(t("workspace.deleted",{name:j.name})),c({kind:"list"})}).catch(A=>{x(!0),v(A instanceof Error?A.message:String(A))})}}):null]})}function p4t({cloudProvider:e}){const{t}=Te("ui"),[n,i]=p.useState("workspaces"),[r,s]=p.useState(null),[a,l]=p.useState(""),c=p.useRef(0),u=()=>{var h;c.current+=1;const d=c.current;l("");let f=null;if(typeof navigator<"u"&&((h=navigator.clipboard)!=null&&h.readText))try{f=navigator.clipboard.readText()}catch{l(t("workspace.clipboardPermissionError"))}else l(t("workspace.clipboardUnsupported"));i("environments"),f&&f.then(async m=>{var g;if(c.current===d){if(m.trim()){s({key:d,text:m});return}try{const b=await((g=navigator.permissions)==null?void 0:g.query({name:"clipboard-read"}));c.current===d&&(b==null?void 0:b.state)==="denied"&&l(t("workspace.clipboardPermissionError"))}catch{}}}).catch(()=>{c.current===d&&l(t("workspace.clipboardPermissionError"))})};return n==="environments"?o.jsx(Bje,{cloudProvider:e,onWorkspace:()=>i("workspaces"),clipboardImport:r,clipboardReadError:a}):o.jsx(h4t,{onEnvironment:u})}function m4t(e){return e==="127.0.0.1"}const g4t={id:"coding-agents",kind:"coding-agent",category:"development",icon:"coding-agents",name:"Configure coding agents",badge:"Local",badgeTone:"success",description:"Install built-in VeADK and AgentKit skills globally for Trae, Claude Code, or Codex."},b4t={id:"feishu",kind:"feishu",category:"channels",icon:"feishu",name:"Feishu bot",badge:"Beta",description:"Create a Feishu bot and connect its messages directly to AgentKit Runtime."};an.hasResourceBundle("en-US","automations")||an.addResourceBundle("en-US","automations",Qre,!0,!0);an.hasResourceBundle("zh-CN","automations")||an.addResourceBundle("zh-CN","automations",sce,!0,!0);function Vd(e,t={}){return an.t(e,{...t,ns:"automations"})}const Uje={name:"repository",label:"GitHub Repo",placeholder:"owner/repository",help:"Enter owner/repository or a full github.com URL",required:!0},Qje={name:"baseBranch",label:"Target branch",placeholder:"main",help:"Defaults to main; the pull request will use this branch as its base",required:!1},zje={name:"runtimeName",label:"Runtime name",placeholder:"support-agent",help:"Used by the AgentKit delivery configuration",required:!0},Vje={name:"runtimeId",label:"Runtime ID",placeholder:"rt-xxxxxxxx",help:"The AgentKit Runtime that will receive continuous updates",required:!0},y4t="https://ark.cn-beijing.volces.com/api/coding/v3";function v4t(e){return e==="byteplus"?xl(e):y4t}function ez(e){return e==="byteplus"?{accessKey:"BYTEPLUS_ACCESS_KEY",secretKey:"BYTEPLUS_SECRET_KEY",sessionToken:"BYTEPLUS_SESSION_TOKEN"}:{accessKey:"VOLCENGINE_ACCESS_KEY",secretKey:"VOLCENGINE_SECRET_KEY",sessionToken:"VOLCENGINE_SESSION_TOKEN"}}function Hje(e){const t=ez(e);return[Vd("github.secretPair",{accessKey:t.accessKey,secretKey:t.secretKey}),Vd("github.sessionToken",{sessionToken:t.sessionToken})]}function tz(e){return e==="byteplus"?"BytePlus":"Volcengine"}function nz(e,t={}){return{repository:"",baseBranch:"main",projectPath:".",runtimeName:"",runtimeId:"",modelName:"",modelBaseUrl:v4t(e),region:Ji(e),token:"",...t}}function qje(e){return{repository:e.repository.trim(),baseBranch:e.baseBranch.trim()||"main",region:e.region,token:e.token.trim()}}const x4t={id:"review",kind:"github",category:"development",icon:"github",name:"Automated PR review",description:"Use a GitHub App to review pull requests in an isolated Sandbox.",title:"Automated PR review",subtitle:"Trigger Sandbox reviews through the GitHub App and publish results to pull requests",panel:"Install the GitHub App to target repositories, then enable automated review for each repository.",submitLabel:"Install GitHub App",fields:[],initialValues:({cloudProvider:e})=>nz(e),regionHelp:"",secrets:()=>[],async submit(){throw new Error("PR 自动评审已切换为 GitHub App 授权模式。")}},w4t="https://api.github.com",O4t=/^[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+$/,Qte=/^[A-Za-z0-9][A-Za-z0-9._/-]{0,199}$/,S4t=/^[A-Za-z0-9._/-]+$/;function k4t(e,t,n){const i=String((t==null?void 0:t.message)||"");return e===403&&/workflow/i.test(i)?"GitHub Token 缺少 Workflows 写权限,无法创建或更新 .github/workflows 下的文件":e===401||e===403?V("github.invalidToken"):e===404?V("github.notFound"):e===422?V("github.rejectedCommit"):i.split(n).join("***").trim().slice(0,240)||V("github.requestFailed",{status:e})}async function ug(e,t){const n={Accept:"application/vnd.github+json",Authorization:`Bearer ${t.token}`,"X-GitHub-Api-Version":"2022-11-28"};t.body&&(n["Content-Type"]="application/json");let i;try{i=await fetch(`${w4t}${e}`,{method:t.method||"GET",headers:n,body:t.body?JSON.stringify(t.body):void 0,signal:t.signal})}catch(s){throw t.signal.aborted?s:new Error(V("github.networkFailed"))}const r=await i.json().catch(()=>null);if(!t.expected.includes(i.status))throw new Error(k4t(i.status,r,t.token));return{status:i.status,payload:r}}function dL(e){return e.split("/").map(encodeURIComponent).join("/")}function E4t(e){const t=new TextEncoder().encode(e);let n="";const i=32768;for(let r=0;r({...h,path:rz(h.path,"")})),s=AbortSignal.any([t,AbortSignal.timeout(6e4)]),a=`/repos/${n}`;await ug(`${a}`,{token:e.token,expected:[200],signal:s});const c=(f=(await ug(`${a}/git/ref/heads/${dL(i)}`,{token:e.token,expected:[200],signal:s})).payload.object)==null?void 0:f.sha;if(!c)throw new Error(V("github.missingBaseSha"));const u=C4t(e.branchPrefix);await ug(`${a}/git/refs`,{token:e.token,expected:[201],signal:s,method:"POST",body:{ref:`refs/heads/${u}`,sha:c}});let d=!0;try{for(const m of r){const g=dL(m.path),b=await ug(`${a}/contents/${g}?ref=${encodeURIComponent(i)}`,{token:e.token,expected:[200,404],signal:s});if(m.mustBeNew&&b.status===200)throw new Error(V("github.fileAlreadyExists",{path:m.path}));if(b.status===200&&!b.payload.sha)throw new Error(V("github.pathNotUpdatable",{path:m.path}));await ug(`${a}/contents/${g}`,{token:e.token,expected:[200,201],signal:s,method:"PUT",body:{message:m.commitMessage,content:E4t(m.content),branch:u,...b.payload.sha?{sha:b.payload.sha}:{}}})}const h=await ug(`${a}/pulls`,{token:e.token,expected:[201],signal:s,method:"POST",body:{title:e.title,head:u,base:i,body:e.description}});if(!h.payload.number||!h.payload.html_url)throw new Error(V("github.invalidPullRequest"));return d=!1,{number:h.payload.number,url:h.payload.html_url,branch:u}}finally{d&&await ug(`${a}/git/refs/heads/${dL(u)}`,{token:e.token,expected:[204],signal:AbortSignal.timeout(15e3),method:"DELETE"}).catch(()=>{})}}async function T4t(e,t){const n=await An("/web/github/pull-request-reviews",{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify(e),signal:t});if(!n.ok)throw await HE(n);const i=await n.json();if(i.status!=="started"||typeof i.sessionId!="string"||!i.sessionId||typeof i.displayName!="string")throw new Error("PR 评审服务返回了无效结果。");return i}async function A4t(e){const t=await An("/web/github/app/config",{method:"GET",headers:{Accept:"application/json"},signal:e});if(!t.ok)throw await HE(t);const n=await t.json();if(typeof n.configured!="boolean"||typeof n.appSlug!="string"||typeof n.installUrl!="string"||typeof n.reason!="string")throw new Error("GitHub App 配置响应格式无效。");return n}async function _4t(e,t){var s;const n=new URLSearchParams({page:String(t.page),pageSize:String(t.pageSize)});(s=t.query)!=null&&s.trim()&&n.set("q",t.query.trim());const i=await An(`/web/github/app/repositories?${n.toString()}`,{method:"GET",headers:{Accept:"application/json"},signal:e});if(!i.ok)throw await HE(i);const r=await i.json();if(!Array.isArray(r.repositories)||typeof r.page!="number"||typeof r.pageSize!="number"||typeof r.hasNextPage!="boolean"||typeof r.reviewSettingsConfigured!="boolean"||typeof r.reviewSettingsReason!="string"||r.repositories.some(a=>typeof a!="object"||a===null||typeof a.installationId!="number"||typeof a.account!="string"||typeof a.fullName!="string"||typeof a.htmlUrl!="string"||typeof a.private!="boolean"||typeof a.reviewEnabled!="boolean"))throw new Error("GitHub App 仓库列表响应格式无效。");return r}async function N4t(e,t){const n=new URLSearchParams({page:String(t.page),pageSize:String(t.pageSize)}),i=await An(`/web/github/app/review-records?${n.toString()}`,{method:"GET",headers:{Accept:"application/json"},signal:e});if(!i.ok)throw await HE(i);const r=await i.json();if(!Array.isArray(r.records)||typeof r.page!="number"||typeof r.pageSize!="number"||typeof r.hasNextPage!="boolean"||typeof r.reviewSettingsConfigured!="boolean"||typeof r.reviewSettingsReason!="string"||r.records.some(s=>typeof s!="object"||s===null||typeof s.id!="string"||typeof s.repository!="string"||typeof s.pullRequestUrl!="string"||typeof s.pullRequestNumber!="number"||!["started","completed","ignored","failed"].includes(String(s.status))||!["manual","webhook"].includes(String(s.trigger))||typeof s.createdAt!="string"||typeof s.deliveryId!="string"||typeof s.action!="string"||typeof s.sessionId!="string"||typeof s.displayName!="string"||typeof s.reason!="string"))throw new Error("PR 评审记录响应格式无效。");return r}async function j4t(e,t){const n=await An("/web/github/app/review-repositories",{method:"PUT",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify(e),signal:t});if(!n.ok)throw await HE(n);const i=await n.json();if(!Array.isArray(i.repositories)||i.repositories.some(r=>typeof r!="string"))throw new Error("GitHub App 评审仓库保存响应格式无效。");return i.repositories}async function HE(e){const t=await e.text().catch(()=>"");try{const n=JSON.parse(t),i=typeof n.detail=="object"&&n.detail?n.detail.message:n.detail??n.message??n.error,r=typeof i=="string"?i:"";return new Error(r||`PR 评审发起失败(HTTP ${e.status})`)}catch{return new Error(t||`PR 评审发起失败(HTTP ${e.status})`)}}const R4t=/^[A-Za-z0-9_-]+$/,Gje=4,cj=64,uj=6,Vte="agent-runtime";function Kje(e){const t=e.trim();if(!t)return Vte;let n=t.replace(/[^A-Za-z0-9_-]+/g,"-").replace(/-+/g,"-").replace(/^-+|-+$/g,"").slice(0,cj);return n?(n.length$t(`validation.runtimeName.${n}`)){return e?R4t.test(e)?e.lengthcj?t("length"):null:t("characters"):t("required")}const D4t=/^[A-Za-z0-9][A-Za-z0-9._:-]{0,127}$/,M4t="cn-hongkong";function L4t(e){const t=qE(e.runtimeName,n=>Vd(`github.validation.runtimeName.${n}`));if(t)throw new Error(t);if(!D4t.test(e.runtimeId))throw new Error(Vd("github.validation.runtimeId"))}function Yje(e){L4t(e);const t=e.cloudProvider??"volcengine",n=ez(t),i=t==="byteplus"?` +`).replace(/^\n+/,"")}function W2(e,t){const n=`FROM ${e.trim()}`,i=GI(t).replace(/^\n+/,"");return i?`${n} +${i}`:n}function W3t(e,t,n){return t.trim()?/^\s*FROM(?:\s|$)/im.test(e)?kv("duplicateFrom",n):rz(W2(t,e),void 0,n):kv("baseImageRequired",n)}function rz(e,t=Vje(e),n){return t>zje?kv("tooLarge",n):e.trim()?/^\s*FROM\s+\S+/im.test(e)?"":kv("missingFrom",n):kv("empty",n)}async function K3t(e,t){if(e.size>zje)return{content:"",error:kv("tooLarge",t)};const n=GI(await e.text());return{content:n,error:rz(n,e.size,t)}}function G3t(e){return VU(e,{lineWidth:0})}function X3t(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m7 9.5 5 5 5-5"})})}function Y3t(e){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"m6.5 12.5 3.5 3.5 7.5-8"})})}function KE({ariaLabel:e,value:t,valueLabel:n,placeholder:i,options:r,disabled:s=!1,searchValue:a,searchPlaceholder:l,loading:c=!1,hasMore:u=!1,emptyMessage:d,onSearchChange:f,onLoadMore:h,onChange:m}){const{t:g}=Ae("ui"),b=l??g("deploymentSelect.searchPlaceholder"),v=d??g("deploymentSelect.emptyMessage"),y=p.useId(),x=p.useRef(null),O=p.useRef(null),w=p.useRef(null),k=p.useRef(null),S=p.useRef([]),[E,C]=p.useState(!1),[N,T]=p.useState(0),j=r.find(M=>M.value===t),A=(j==null?void 0:j.label)??(t?n:void 0),L=a!==void 0&&!!f,_=()=>{C(!1),L&&a&&(f==null||f(""))};p.useEffect(()=>{if(!E)return;const M=B=>{B.target instanceof Node&&x.current&&!x.current.contains(B.target)&&_()};return window.addEventListener("pointerdown",M),()=>window.removeEventListener("pointerdown",M)},[E,f,a,L]),p.useEffect(()=>{var M,B;if(E){if(L){(M=w.current)==null||M.focus();return}(B=S.current[N])==null||B.focus()}},[E,L]),p.useEffect(()=>{var M;!E||L&&document.activeElement===w.current||(M=S.current[N])==null||M.focus()},[N,E,L]),p.useEffect(()=>{T(M=>Math.min(M,Math.max(0,r.length-1)))},[r.length]),p.useEffect(()=>{if(!E||!u||c||!h)return;const M=window.requestAnimationFrame(()=>{const B=k.current;B&&B.scrollHeight<=B.clientHeight+1&&h()});return()=>window.cancelAnimationFrame(M)},[u,c,h,E,r.length]);const P=(M=1)=>{const B=r.findIndex(V=>V.value===t),R=B>=0?B:M===1?0:Math.max(0,r.length-1);T(R),C(!0)},I=M=>{r.length!==0&&T((M+r.length)%r.length)},$=M=>{var B;m(M.value),_(),(B=O.current)==null||B.focus()};return o.jsxs("div",{className:"pp-deployment-select",ref:x,onKeyDown:M=>{var R,V;const B=M.target===w.current;if(M.key==="Escape"&&E){M.preventDefault(),_(),(R=O.current)==null||R.focus();return}if(M.key==="Tab"){_();return}if(B){M.key==="ArrowDown"&&r.length>0&&(M.preventDefault(),T(0),(V=S.current[0])==null||V.focus());return}M.key==="ArrowDown"?(M.preventDefault(),E?I(N+1):P(1)):M.key==="ArrowUp"?(M.preventDefault(),E?I(N-1):P(-1)):E&&M.key==="Home"?(M.preventDefault(),T(0)):E&&M.key==="End"&&(M.preventDefault(),T(Math.max(0,r.length-1)))},children:[o.jsxs("button",{ref:O,type:"button",className:"pp-deployment-select-trigger","aria-label":e,"aria-haspopup":"listbox","aria-expanded":E,"aria-controls":E?y:void 0,disabled:s,onClick:()=>{E?_():P()},children:[o.jsx("span",{className:A?void 0:"is-placeholder",children:A??i}),o.jsx(X3t,{className:`pp-deployment-select-chevron${E?" is-open":""}`})]}),E&&o.jsxs("div",{className:"pp-deployment-select-menu",children:[L&&o.jsx("div",{className:"pp-deployment-select-search",children:o.jsx("input",{ref:w,type:"search",value:a,"aria-label":g("deploymentSelect.searchAriaLabel",{label:e}),placeholder:b,autoComplete:"off",onChange:M=>f==null?void 0:f(M.currentTarget.value)})}),o.jsx("div",{id:y,ref:k,className:"pp-deployment-select-options",role:"listbox","aria-label":e,"aria-busy":c||void 0,onScroll:M=>{if(!u||c||!h)return;const B=M.currentTarget;B.scrollHeight-B.scrollTop-B.clientHeight<=24&&h()},children:r.map((M,B)=>{const R=M.value===t;return o.jsxs("button",{ref:V=>{S.current[B]=V},type:"button",role:"option","aria-selected":R,tabIndex:B===N?0:-1,className:`pp-deployment-select-option${R?" is-selected":""}`,title:M.description,onFocus:()=>T(B),onClick:()=>$(M),children:[o.jsxs("span",{className:"pp-deployment-select-copy",children:[o.jsxs("span",{className:"pp-deployment-select-name",children:[M.label,M.badge&&o.jsx("span",{className:"pp-deployment-select-badge",children:M.badge})]}),M.description&&o.jsx("small",{children:M.description})]}),R&&o.jsx(Y3t,{})]},M.value)})}),c&&o.jsx("div",{className:"pp-deployment-select-state","aria-live":"polite",children:g("deploymentSelect.loadingMore")}),!c&&r.length===0&&o.jsx("div",{className:"pp-deployment-select-state",children:v})]})]})}function Z3t(e){return[{value:"auto",label:e("deploymentResources.mode.auto"),description:e("deploymentResources.mode.autoDescription"),badge:e("deploymentResources.mode.recommended")},{value:"create",label:e("deploymentResources.mode.create"),description:e("deploymentResources.mode.createDescription")},{value:"existing",label:e("deploymentResources.mode.existing"),description:e("deploymentResources.mode.existingDescription")}]}const Hje={tos:{mode:"auto"},cr:{mode:"auto"},codePipeline:{mode:"auto"}};function Lf(e){const[t,n]=p.useState([]),[i,r]=p.useState(""),[s,a]=p.useState(1),[l,c]=p.useState(0),[u,d]=p.useState(!1),[f,h]=p.useState(!1),[m,g]=p.useState(null),[b,v]=p.useState(""),[y,x]=p.useState(""),[O,w]=p.useState(""),[k,S]=p.useState(0),E=p.useRef(!1),C=p.useRef(null),N=e?JSON.stringify(e):"",T=e?JSON.stringify({...e,search:y}):"";p.useEffect(()=>{const P=window.setTimeout(()=>{x(b.trim())},250);return()=>window.clearTimeout(P)},[b]),p.useEffect(()=>{v(""),x("")},[N]);const j=p.useCallback((P,I)=>{var B;if(!T)return;(B=C.current)==null||B.abort();const $=new AbortController;C.current=$;const M=JSON.parse(T);I&&n([]),E.current=!0,h(!0),g(null),w0e({...M,pageNumber:P,pageSize:100},$.signal).then(R=>{n(V=>{if(I)return R.items;const K=new Set(V.map(Q=>`${Q.id}\0${Q.name}`));return[...V,...R.items.filter(Q=>!K.has(`${Q.id}\0${Q.name}`))]}),r(R.serviceRegion),a(R.pageNumber),c(R.totalCount),d(R.hasMore),w(T)}).catch(R=>{R instanceof DOMException&&R.name==="AbortError"||(w(T),g(R instanceof Error?R.message:String(R)))}).finally(()=>{C.current===$&&(C.current=null,E.current=!1,h(!1))})},[T]);p.useEffect(()=>{var P;if(!T){(P=C.current)==null||P.abort(),C.current=null,E.current=!1,n([]),r(""),a(1),c(0),d(!1),w(""),h(!1),g(null);return}return j(1,!0),()=>{var I;return(I=C.current)==null?void 0:I.abort()}},[j,T,k]);const A=!!T&&O===T&&b.trim()===y,L=p.useCallback(()=>{w(""),S(P=>P+1)},[]),_=p.useCallback(()=>{!A||E.current||!u||j(s+1,!1)},[u,j,s,A]);return{items:t,serviceRegion:i,totalCount:l,hasMore:A?u:!1,loading:!!T&&(!A||f),error:m,search:b,setSearch:v,reload:L,loadMore:_}}function J3t(e,t){return e.map(n=>({value:n[t],label:n.name,description:[n.status,n.region,n.id].filter(Boolean).join(" · ")}))}function $f({ariaLabel:e,value:t,valueLabel:n,state:i,disabled:r,disabledMessage:s,valueField:a="id",onChange:l}){const{t:c}=Ae("ui"),u=p.useMemo(()=>J3t(i.items,a),[i.items,a]);return o.jsxs("div",{className:"pp-resource-picker",children:[o.jsx(KE,{ariaLabel:e,value:t,valueLabel:n,placeholder:i.loading?c("common.loading"):c("deploymentResources.selectExisting"),options:u,disabled:r||!!i.error,searchValue:i.search,searchPlaceholder:c("deploymentResources.searchResource"),loading:i.loading,hasMore:i.hasMore,emptyMessage:i.search.trim()?c("deploymentResources.noMatch"):c("deploymentResources.noAvailable"),onSearchChange:i.setSearch,onLoadMore:i.loadMore,onChange:d=>{const f=i.items.find(h=>h[a]===d);f&&l(f)}}),s?o.jsx("span",{className:"pp-resource-status",children:s}):i.error?o.jsxs("div",{className:"pp-resource-error",role:"alert",children:[o.jsx("span",{children:i.error}),o.jsx("button",{type:"button",onClick:i.reload,children:c("common.retry")})]}):i.loading&&i.items.length===0?o.jsx("span",{className:"pp-resource-status","aria-live":"polite",children:i.search.trim()?c("deploymentResources.searching"):c("deploymentResources.loading")}):i.items.length===0?o.jsx("span",{className:"pp-resource-status",children:i.search.trim()?c("deploymentResources.noMatchSentence"):c("deploymentResources.noAvailableSentence")}):i.serviceRegion?o.jsx("span",{className:"pp-resource-status",children:c("deploymentResources.loadedSummary",{region:i.serviceRegion,loaded:i.items.length,total:i.totalCount>0?`/${i.totalCount}`:""})}):null]})}function qje({region:e,value:t,disabled:n=!1,onChange:i}){const{t:r}=Ae("ui"),s=Lf(e?{kind:"cr-registry",region:e}:null),a=Lf(e&&(t!=null&&t.registry)?{kind:"cr-namespace",region:e,registry:t.registry}:null),l=Lf(e&&(t!=null&&t.registry)&&t.namespace?{kind:"cr-repository",region:e,registry:t.registry,namespace:t.namespace}:null),c=t??{region:e,registry:"",namespace:"",repository:""};return o.jsxs("div",{className:"pp-resource-fields pp-resource-fields-three environment-repository-fields",children:[o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:r("deploymentResources.registryInstance")}),o.jsx($f,{ariaLabel:r("deploymentResources.registryAriaLabel"),value:c.registry,valueLabel:c.registry,state:s,disabled:n||!e,valueField:"name",onChange:u=>i({region:e,registry:u.name,namespace:"",repository:""})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:r("deploymentResources.namespace")}),o.jsx($f,{ariaLabel:r("deploymentResources.namespaceAriaLabel"),value:c.namespace,valueLabel:c.namespace,state:a,disabled:n||!c.registry,disabledMessage:c.registry?void 0:r("deploymentResources.selectRegistryFirst"),valueField:"name",onChange:u=>i({...c,region:e,namespace:u.name,repository:""})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:r("deploymentResources.repository")}),o.jsx($f,{ariaLabel:r("deploymentResources.existingRepository"),value:c.repository,valueLabel:c.repository,state:l,disabled:n||!c.registry||!c.namespace,disabledMessage:c.registry?c.namespace?void 0:r("deploymentResources.selectNamespaceFirst"):r("deploymentResources.selectRegistryFirst"),valueField:"name",onChange:u=>i({...c,region:e,repository:u.name})})]})]})}function hL({resource:e,value:t,disabled:n,onChange:i}){const{t:r}=Ae("ui");return o.jsxs("label",{className:"pp-resource-field pp-resource-mode",children:[o.jsx("span",{children:r("deploymentResources.configurationMode")}),o.jsx(KE,{ariaLabel:r("deploymentResources.configurationModeAriaLabel",{resource:e}),value:t,placeholder:r("deploymentResources.selectConfigurationMode"),options:Z3t(r),disabled:n,onChange:s=>i(s)})]})}function K0({label:e,value:t,placeholder:n,disabled:i,onChange:r}){return o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:e}),o.jsx("input",{value:t,placeholder:n,disabled:i,autoComplete:"off",onChange:s=>r(s.currentTarget.value)})]})}function pL({items:e,note:t}){const{t:n}=Ae("ui");return o.jsxs("div",{className:"pp-resource-auto-names",children:[o.jsx("span",{children:n("deploymentResources.automaticNames")}),o.jsx("dl",{children:e.map(i=>o.jsxs("div",{children:[o.jsx("dt",{children:i.label}),o.jsx("dd",{title:i.name,children:i.name})]},i.label))}),t&&o.jsx("small",{children:t})]})}function Wje(e){var t,n,i,r,s,a,l,c;return e.tos.mode!=="auto"&&!((t=e.tos.bucket)!=null&&t.trim())?on.t("ui:deploymentResources.validation.tos"):e.cr.mode!=="auto"&&(!((n=e.cr.instance)!=null&&n.trim())||!((i=e.cr.namespace)!=null&&i.trim())||!((r=e.cr.repository)!=null&&r.trim()))?on.t("ui:deploymentResources.validation.cr"):e.codePipeline.mode!=="auto"&&(!((s=e.codePipeline.workspaceName)!=null&&s.trim())||!((a=e.codePipeline.pipelineName)!=null&&a.trim()))?on.t("ui:deploymentResources.validation.codePipeline"):e.codePipeline.mode==="existing"&&(!((l=e.codePipeline.workspaceId)!=null&&l.trim())||!((c=e.codePipeline.pipelineId)!=null&&c.trim()))?on.t("ui:deploymentResources.validation.existingCodePipeline"):null}function Kje({value:e,agentName:t,runtimeName:n,region:i,disabled:r,validationError:s,onChange:a}){const{t:l}=Ae("ui"),c=t.trim()||"agentkit-app",u=n.trim()||c,d=i&&i!=="cn-beijing"?l("deploymentResources.autoBucketWithRegion",{region:i.startsWith("cn-")?i.slice(3):i}):l("deploymentResources.autoBucket"),f=Lf(e.tos.mode==="existing"?{kind:"tos-bucket",region:i}:null),h=Lf(e.cr.mode==="existing"?{kind:"cr-registry",region:i}:null),m=Lf(e.cr.mode==="existing"&&e.cr.instance?{kind:"cr-namespace",region:i,registry:e.cr.instance}:null),g=Lf(e.cr.mode==="existing"&&e.cr.instance&&e.cr.namespace?{kind:"cr-repository",region:i,registry:e.cr.instance,namespace:e.cr.namespace}:null),b=Lf(e.codePipeline.mode==="existing"?{kind:"cp-workspace",region:i}:null),v=Lf(e.codePipeline.mode==="existing"&&e.codePipeline.workspaceId?{kind:"cp-pipeline",region:i,workspaceId:e.codePipeline.workspaceId}:null),y=x=>a({...e,...x});return o.jsxs("div",{className:"pp-resource-list",children:[o.jsxs("div",{className:"pp-resource-item",children:[o.jsx("div",{className:"pp-resource-name",children:l("deploymentResources.tosBucket")}),o.jsxs("div",{className:"pp-resource-grid",children:[o.jsx(hL,{resource:l("deploymentResources.tosBucket"),value:e.tos.mode,disabled:r,onChange:x=>y({tos:{mode:x}})}),e.tos.mode==="create"&&o.jsx(K0,{label:l("deploymentResources.bucketName"),value:e.tos.bucket??"",placeholder:l("deploymentResources.bucketNamePlaceholder"),disabled:r,onChange:x=>y({tos:{...e.tos,bucket:x}})}),e.tos.mode==="existing"&&o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.existingBucket")}),o.jsx($f,{ariaLabel:l("deploymentResources.existingTosBucket"),value:e.tos.bucket??"",valueLabel:e.tos.bucket,state:f,disabled:r,onChange:x=>y({tos:{...e.tos,bucket:x.name}})})]}),e.tos.mode==="auto"&&o.jsx(pL,{items:[{label:l("deploymentResources.bucket"),name:d}],note:l("deploymentResources.accountIdResolved")})]})]}),o.jsxs("div",{className:"pp-resource-item",children:[o.jsx("div",{className:"pp-resource-name",children:l("deploymentResources.containerRegistry")}),o.jsxs("div",{className:"pp-resource-grid",children:[o.jsx(hL,{resource:"CR",value:e.cr.mode,disabled:r,onChange:x=>y({cr:{mode:x}})}),e.cr.mode==="create"&&o.jsxs("div",{className:"pp-resource-fields pp-resource-fields-three",children:[o.jsx(K0,{label:l("deploymentResources.instanceName"),value:e.cr.instance??"",placeholder:l("deploymentResources.crInstance"),disabled:r,onChange:x=>y({cr:{...e.cr,instance:x}})}),o.jsx(K0,{label:l("deploymentResources.namespace"),value:e.cr.namespace??"",placeholder:l("deploymentResources.namespace"),disabled:r,onChange:x=>y({cr:{...e.cr,namespace:x}})}),o.jsx(K0,{label:l("deploymentResources.repository"),value:e.cr.repository??"",placeholder:l("deploymentResources.repository"),disabled:r,onChange:x=>y({cr:{...e.cr,repository:x}})})]}),e.cr.mode==="existing"&&o.jsxs("div",{className:"pp-resource-fields pp-resource-fields-three",children:[o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.crInstance")}),o.jsx($f,{ariaLabel:l("deploymentResources.existingCrInstance"),value:e.cr.instance??"",valueLabel:e.cr.instance,state:h,disabled:r,valueField:"name",onChange:x=>y({cr:{mode:"existing",instance:x.name}})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.namespace")}),o.jsx($f,{ariaLabel:l("deploymentResources.existingCrNamespace"),value:e.cr.namespace??"",valueLabel:e.cr.namespace,state:m,disabled:r||!e.cr.instance,valueField:"name",onChange:x=>y({cr:{...e.cr,namespace:x.name,repository:void 0}})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.repository")}),o.jsx($f,{ariaLabel:l("deploymentResources.existingCrRepository"),value:e.cr.repository??"",valueLabel:e.cr.repository,state:g,disabled:r||!e.cr.namespace,valueField:"name",onChange:x=>y({cr:{...e.cr,repository:x.name}})})]})]}),e.cr.mode==="auto"&&o.jsx(pL,{items:[{label:l("deploymentResources.crInstance"),name:l("deploymentResources.autoRegistry")},{label:l("deploymentResources.namespace"),name:"agentkit"},{label:l("deploymentResources.repository"),name:l("deploymentResources.autoRepositoryName",{name:c})}],note:l("deploymentResources.registryNameNote")})]})]}),o.jsxs("div",{className:"pp-resource-item",children:[o.jsx("div",{className:"pp-resource-name",children:"CodePipeline"}),o.jsxs("div",{className:"pp-resource-grid",children:[o.jsx(hL,{resource:"CodePipeline",value:e.codePipeline.mode,disabled:r,onChange:x=>y({codePipeline:{mode:x}})}),e.codePipeline.mode==="create"&&o.jsxs("div",{className:"pp-resource-fields",children:[o.jsx(K0,{label:l("deploymentResources.workspaceName"),value:e.codePipeline.workspaceName??"",placeholder:l("deploymentResources.workspaceName"),disabled:r,onChange:x=>y({codePipeline:{...e.codePipeline,workspaceName:x}})}),o.jsx(K0,{label:l("deploymentResources.pipelineName"),value:e.codePipeline.pipelineName??"",placeholder:l("deploymentResources.pipelineName"),disabled:r,onChange:x=>y({codePipeline:{...e.codePipeline,pipelineName:x}})})]}),e.codePipeline.mode==="existing"&&o.jsxs("div",{className:"pp-resource-fields",children:[o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.workspace")}),o.jsx($f,{ariaLabel:l("deploymentResources.existingWorkspace"),value:e.codePipeline.workspaceId??"",valueLabel:e.codePipeline.workspaceName,state:b,disabled:r,onChange:x=>y({codePipeline:{mode:"existing",workspaceId:x.id,workspaceName:x.name}})})]}),o.jsxs("label",{className:"pp-resource-field",children:[o.jsx("span",{children:l("deploymentResources.compatiblePipeline")}),o.jsx($f,{ariaLabel:l("deploymentResources.existingPipeline"),value:e.codePipeline.pipelineId??"",valueLabel:e.codePipeline.pipelineName,state:v,disabled:r||!e.codePipeline.workspaceId,onChange:x=>y({codePipeline:{...e.codePipeline,pipelineId:x.id,pipelineName:x.name}})})]})]}),e.codePipeline.mode==="auto"&&o.jsx(pL,{items:[{label:l("deploymentResources.workspace"),name:"agentkit-cli-workspace"},{label:l("deploymentResources.pipeline"),name:u}],note:l("deploymentResources.pipelineNameNote")})]})]}),s&&o.jsx("p",{className:"pp-resource-validation",role:"alert",children:s})]})}function e4t(e){return[{value:"custom",label:e("environmentCenter.creation.custom.label"),description:e("environmentCenter.creation.custom.description")},{value:"dockerfile",label:e("environmentCenter.creation.dockerfile.label"),description:e("environmentCenter.creation.dockerfile.description")},{value:"git",label:e("environmentCenter.creation.git.label"),description:e("environmentCenter.creation.git.description")},{value:"image",label:e("environmentCenter.creation.image.label"),description:e("environmentCenter.creation.image.description")}]}const t4t=POe.map(e=>({value:e.id,label:e.label,description:e.description}));function n4t(e){return[{value:"none",label:e("common.none"),description:e("environmentCenter.presets.none")},{value:"aio-sandbox",label:"AIO Sandbox",description:e("environmentCenter.presets.aio")},{value:"codex-sandbox",label:"Codex Sandbox",description:e("environmentCenter.presets.codex")}]}function i4t(e){const t=H3t(e,"");return t===RB?"aio-sandbox":t.includes("/codexenv:")?"codex-sandbox":"none"}const r4t=fN.map(e=>({value:e.id,label:e.label})),Wte=MOe.map(e=>({value:e.id,label:e.label}));function s4t(e){return[{value:"managed",label:e("environmentCenter.repository.managed")},{value:"existing",label:e("environmentCenter.repository.existing")}]}const A8=20,Kte=new Set;async function a4t(){var e;if(typeof navigator>"u"||!((e=navigator.permissions)!=null&&e.query))return!1;try{return(await navigator.permissions.query({name:"clipboard-read"})).state==="denied"}catch{return!1}}const o4t={opencli:h3t,uv:p3t,playwright:m3t,chromium:g3t,git:b3t,curl:y3t,ffmpeg:v3t,imagemagick:x3t};function l4t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8 3.25v9.5M3.25 8h9.5"})})}function Cu(){return o.jsx("span",{className:"environment-required-mark","aria-hidden":"true",children:"*"})}function c4t(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M12 3v11m0 0 4-4m-4 4-4-4"}),o.jsx("path",{d:"M5 16v2.5A2.5 2.5 0 0 0 7.5 21h9a2.5 2.5 0 0 0 2.5-2.5V16"})]})}function _8(e,t){const n=e.trim();if(!n)return t("environmentCenter.errors.repositoryRequired");try{const i=new URL(n);if(i.protocol!=="https:"||!i.hostname)return t("environmentCenter.errors.repositoryHttps")}catch{return t("environmentCenter.errors.repositoryInvalid")}return""}function Gte(e){return!!(e!=null&&e.region&&e.registry&&e.namespace&&e.repository)}function Gje(e,t){const n=e.trim();return n?/\s/.test(n)?t("environmentCenter.errors.imageReferenceWhitespace"):n.startsWith("sha256:")?/^sha256:[0-9a-fA-F]{64}$/.test(n)?"":t("environmentCenter.errors.imageDigestInvalid"):/[@/]/.test(n)?t("environmentCenter.errors.imageTagOnly"):"":""}function u4t(e){return(e instanceof Error?e.message:String(e)).split(` +原始响应:`,1)[0].trim()}function d4t(e){return o.jsxs("svg",{viewBox:"0 0 32 32",fill:"none",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M5.5 10.5 16 5l10.5 5.5L16 16 5.5 10.5Z"}),o.jsx("path",{d:"M5.5 16 16 21.5 26.5 16M5.5 21.5 16 27l10.5-5.5"})]})}function f4t({label:e}){return o.jsx("span",{className:"environment-package-fallback",children:e.slice(0,1).toUpperCase()})}function h4t({option:e}){if(e.id==="lark-cli")return o.jsx("img",{src:KI,alt:""});if(e.id==="pandoc")return o.jsx("img",{src:f3t,alt:""});if(e.id==="github-cli")return o.jsx(nz,{});const t=o4t[e.id];return t?o.jsx("img",{src:t,alt:""}):o.jsx(f4t,{label:e.label})}function p4t(e,t){return e?{name:e.name,description:e.description,baseEnvironment:e.baseEnvironment,operatingSystem:e.operatingSystem,language:e.language,optionIds:[...e.optionIds],selectedSkills:[...e.selectedSkills],dockerfile:e.dockerfile===PB(e,t)?void 0:e.dockerfile,gitSource:e.gitSource,containerRepository:e.containerRepository,imageSource:e.imageSource}:{...wM,optionIds:[...wM.optionIds],selectedSkills:[...wM.selectedSkills]}}const Xg=new Set(["preparing","queued","building","scanning"]),Xte=3e3,mL={preparing:"environmentCenter.buildStatus.preparing",queued:"environmentCenter.buildStatus.queued",building:"environmentCenter.buildStatus.building",scanning:"environmentCenter.buildStatus.scanning",available:"environmentCenter.buildStatus.available",failed:"environmentCenter.buildStatus.failed"};function Xje(e,t){var i;const n=(i=e.latestVersion)==null?void 0:i.status;return n?n==="available"?{label:t(mL[n]),color:"success"}:n==="failed"?{label:t(mL[n]),color:"danger"}:{label:t(mL[n]),color:"warning"}:{label:t("environmentCenter.buildStatus.notBuilt"),color:"secondary"}}function m4t(e,t){return ez(e,Date.now(),t)}function g4t(e,t){const n=Date.parse(e);return Number.isNaN(n)?e:new Intl.DateTimeFormat(t,{dateStyle:"medium",timeStyle:"medium"}).format(n)}function b4t(e,t,n=Date.now()){const i=Date.parse(e.createdAt),s=Xg.has(e.status)?n:Date.parse(e.updatedAt);if(Number.isNaN(i)||Number.isNaN(s))return"";const a=Math.max(0,Math.floor((s-i)/1e3));if(a<60)return t("environmentCenter.duration.seconds",{count:a});const l=Math.floor(a/60),c=a%60;return l<60?t("environmentCenter.duration.minutesSeconds",{minutes:l,seconds:c}):t("environmentCenter.duration.hoursMinutes",{hours:Math.floor(l/60),minutes:l%60})}function y4t({environment:e,onClose:t}){var O;const{t:n}=Ae("ui"),i=((O=e.latestVersion)==null?void 0:O.versionId)??"",r=p.useId(),s=p.useRef(null),a=p.useRef(t),[l,c]=p.useState(null),[u,d]=p.useState(!0),[f,h]=p.useState(""),[m,g]=p.useState(0),[b,v]=p.useState("idle"),y=p.useMemo(()=>l?G3t(l):"",[l]);a.current=t,p.useEffect(()=>{var E;const w=document.body.style.overflow,k=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(E=s.current)==null||E.focus();const S=C=>{if(C.key==="Escape"){C.preventDefault(),a.current();return}if(C.key!=="Tab"||!s.current)return;const N=Array.from(s.current.querySelectorAll('button:not([disabled]), [href], [tabindex]:not([tabindex="-1"])')).filter(A=>A.getClientRects().length>0);if(!N.length)return;const T=N[0],j=N[N.length-1];C.shiftKey&&document.activeElement===T?(C.preventDefault(),j.focus()):!C.shiftKey&&document.activeElement===j&&(C.preventDefault(),T.focus())};return window.addEventListener("keydown",S),()=>{document.body.style.overflow=w,window.removeEventListener("keydown",S),k!=null&&k.isConnected&&k.focus()}},[]),p.useEffect(()=>{const w=new AbortController;return d(!0),h(""),z0e(e.id,i,w.signal).then(c).catch(k=>{(k==null?void 0:k.name)!=="AbortError"&&h(k instanceof Error?k.message:String(k))}).finally(()=>{w.signal.aborted||d(!1)}),()=>w.abort()},[e.id,m,i]),p.useEffect(()=>{if(b!=="copied")return;const w=window.setTimeout(()=>v("idle"),1500);return()=>window.clearTimeout(w)},[b]);const x=async()=>{try{await navigator.clipboard.writeText(y),v("copied")}catch{v("error")}};return Fi.createPortal(o.jsx("div",{className:"environment-build-dialog__backdrop",onMouseDown:w=>{w.target===w.currentTarget&&t()},children:o.jsxs("section",{ref:s,className:"environment-build-dialog environment-manifest-dialog",role:"dialog","aria-modal":"true","aria-labelledby":r,"aria-busy":u||void 0,tabIndex:-1,children:[o.jsxs("header",{className:"environment-build-dialog__header",children:[o.jsxs("div",{children:[o.jsx("div",{className:"environment-build-dialog__title-row",children:o.jsx("h2",{id:r,children:n("environmentCenter.manifest.title")})}),o.jsxs("p",{children:[e.name," / ",i]})]}),o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,onClick:t,"aria-label":n("environmentCenter.manifest.closeLabel"),children:o.jsx($a,{"aria-hidden":!0})})]}),o.jsx("div",{className:"environment-manifest-dialog__body",children:u?o.jsx("div",{className:"environment-manifest-dialog__state",role:"status",children:o.jsx(kn,{as:"span",children:n("environmentCenter.manifest.loading")})}):f?o.jsxs("div",{className:"environment-manifest-dialog__state is-error",role:"alert",children:[o.jsx("p",{children:f}),o.jsx(Ht,{type:"button",color:"secondary",variant:"soft",size:"sm",onClick:()=>g(w=>w+1),children:n("common.reload")})]}):o.jsx("div",{className:"environment-manifest-dialog__editor","aria-label":n("environmentCenter.manifest.editorLabel"),children:o.jsx(WE,{value:y,path:"environment.yaml",readOnly:!0,onChange:()=>{}})})}),o.jsxs("footer",{className:"environment-build-dialog__actions",children:[b==="error"?o.jsx("span",{className:"environment-manifest-dialog__copy-error",role:"alert",children:n("environmentCenter.manifest.copyFailed")}):null,o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",onClick:t,children:n("common.close")}),o.jsx(Ht,{type:"button",color:"info",size:"sm",disabled:!y,onClick:()=>void x(),children:n(b==="copied"?"environmentCenter.manifest.copied":"environmentCenter.manifest.copy")})]})]})}),document.body)}function v4t({environment:e,onClose:t,onBuildUpdate:n,onRebuild:i}){var S,E;const{t:r}=Ae("ui"),s=e.latestVersion,[a,l]=p.useState(s),[c,u]=p.useState(!!s),[d,f]=p.useState(""),[h,m]=p.useState(Date.now()),[g,b]=p.useState(!1),v=p.useId(),y=p.useRef(null),x=p.useRef(t),O=p.useRef(n);p.useEffect(()=>{x.current=t,O.current=n},[n,t]),p.useEffect(()=>{var j;const C=document.body.style.overflow,N=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(j=y.current)==null||j.focus();const T=A=>{var I;if(A.key==="Escape"&&x.current(),A.key!=="Tab")return;const L=Array.from(((I=y.current)==null?void 0:I.querySelectorAll('button:not([disabled]), a[href], [tabindex]:not([tabindex="-1"])'))??[]).filter($=>$.getClientRects().length>0);if(!L.length)return;const _=L[0],P=L[L.length-1];A.shiftKey&&document.activeElement===_?(A.preventDefault(),P.focus()):!A.shiftKey&&document.activeElement===P&&(A.preventDefault(),_.focus())};return window.addEventListener("keydown",T),()=>{document.body.style.overflow=C,window.removeEventListener("keydown",T),N!=null&&N.isConnected&&N.focus()}},[]),p.useEffect(()=>{if(!s)return;let C=0;const N=new AbortController,T=async()=>{u(!0);try{const j=await Q0e(e.id,s.versionId,{includeLogs:!0,signal:N.signal});l(j),f(""),O.current(j),Xg.has(j.status)&&(C=window.setTimeout(T,Xte))}catch(j){if((j==null?void 0:j.name)==="AbortError")return;f(j instanceof Error?j.message:String(j)),C=window.setTimeout(T,Xte)}finally{N.signal.aborted||u(!1)}};return T(),()=>{N.abort(),window.clearTimeout(C)}},[e.id,s==null?void 0:s.versionId]),p.useEffect(()=>{if(!a||!Xg.has(a.status))return;const C=window.setInterval(()=>m(Date.now()),1e3);return()=>window.clearInterval(C)},[a==null?void 0:a.status]);const w=a?Xje({...e,latestVersion:a},r):{label:r("environmentCenter.buildStatus.notBuilt"),color:"secondary"},k=e.imageSource||(E=(S=a==null?void 0:a.resources)==null?void 0:S.codePipeline)==null?void 0:E.consoleUrl;return Fi.createPortal(o.jsx("div",{className:"environment-build-dialog__backdrop",onMouseDown:C=>{C.target===C.currentTarget&&t()},children:o.jsxs("section",{ref:y,className:"environment-build-dialog",role:"dialog","aria-modal":"true","aria-labelledby":v,tabIndex:-1,children:[o.jsxs("header",{className:"environment-build-dialog__header",children:[o.jsxs("div",{children:[o.jsxs("div",{className:"environment-build-dialog__title-row",children:[o.jsx("h2",{id:v,children:r("environmentCenter.buildDetails.title")}),o.jsx(ya,{color:w.color,size:"sm",children:w.label})]}),o.jsx("p",{children:e.name})]}),o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,onClick:t,"aria-label":r("environmentCenter.buildDetails.closeLabel"),children:o.jsx($a,{"aria-hidden":!0})})]}),o.jsxs("div",{className:"environment-build-dialog__summary",children:[o.jsxs("div",{children:[o.jsx("span",{children:r("environmentCenter.buildDetails.currentStep")}),o.jsx("strong",{children:(a==null?void 0:a.currentStep)||r("environmentCenter.buildDetails.waiting")})]}),o.jsxs("div",{children:[o.jsx("span",{children:r("environmentCenter.buildDetails.elapsed")}),o.jsx("strong",{children:a?b4t(a,r,h):"-"})]}),a!=null&&a.sourceCommitSha?o.jsxs("div",{children:[o.jsx("span",{children:r("environmentCenter.buildDetails.sourceCommit")}),o.jsx("strong",{title:a.sourceCommitSha,children:a.sourceCommitSha.slice(0,12)})]}):null,k?o.jsxs("a",{href:k,target:"_blank",rel:"noreferrer",children:[r("environmentCenter.buildDetails.openCodePipeline")," ",o.jsx(wb,{"aria-hidden":!0})]}):null]}),o.jsxs("div",{className:"environment-build-dialog__body",children:[d?o.jsx("p",{className:"environment-build-dialog__error",role:"alert",children:d}):null,a!=null&&a.progressError?o.jsx("p",{className:"environment-build-dialog__notice",children:a.progressError}):null,o.jsx(E3t,{steps:(a==null?void 0:a.steps)??[],log:(a==null?void 0:a.logTail)??"",logError:a==null?void 0:a.logError,logTruncated:a==null?void 0:a.logTruncated,logUpdatedAt:a==null?void 0:a.logUpdatedAt,loading:c&&!!(a&&Xg.has(a.status))}),(a==null?void 0:a.status)==="failed"&&a.error?o.jsx("p",{className:"environment-build-dialog__failure",role:"alert",children:a.error}):null]}),o.jsxs("footer",{className:"environment-build-dialog__actions",children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",onClick:t,children:r("common.close")}),a&&!e.imageSource&&!Xg.has(a.status)?o.jsx(Ht,{type:"button",color:"info",size:"sm",disabled:g,onClick:()=>{b(!0),i().then(t).finally(()=>b(!1))},children:r(g?"environmentCenter.buildDetails.starting":"environmentCenter.buildDetails.rebuild")}):null]})]})}),document.body)}function Yje({cloudProvider:e,value:t,disabled:n,onChange:i}){const{t:r}=Ae("ui"),s=Pu(e).map(a=>({value:a.value,label:a.label}));return o.jsxs("label",{className:"environment-field environment-region-field",children:[o.jsxs("span",{children:[r("environmentCenter.region"),o.jsx(Cu,{})]}),o.jsx(Es,{id:"environment-region",value:t,options:s,optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,disabled:n,triggerClassName:"environment-select-trigger",onChange:a=>i(a.value)})]})}function x4t({repositoryUrl:e,gitRef:t,dockerfilePath:n,inspection:i,inspectedKey:r,disabled:s,onRepositoryUrlChange:a,onGitRefChange:l,onDockerfilePathChange:c,onInspectionChange:u,onInspectedKeyChange:d}){const{t:f}=Ae("ui"),[h,m]=p.useState(!1),[g,b]=p.useState(""),v=p.useRef(null),y=p.useRef(""),x=`${e.trim()}\0${t.trim()}`,O=r===x;p.useEffect(()=>()=>{const E=v.current;v.current=null,E==null||E.abort()},[]);const w=()=>{var E;(E=v.current)==null||E.abort(),v.current=null,m(!1),b(""),u(null),d(""),c(""),y.current=""},k=p.useCallback(async()=>{var N;const E=_8(e,f);if(E){b(E);return}y.current=x,(N=v.current)==null||N.abort();const C=new AbortController;v.current=C,m(!0),b("");try{const T=await P0e({repositoryUrl:e.trim(),...t.trim()?{ref:t.trim()}:{}},C.signal);if(v.current!==C)return;u(T),d(x),c(T.dockerfiles.length===1?T.dockerfiles[0]:"")}catch(T){if((T==null?void 0:T.name)==="AbortError")return;b(u4t(T)),u(null),d(""),c("")}finally{v.current===C&&(v.current=null,m(!1))}},[x,t,c,d,u,e,f]);p.useEffect(()=>{if(s||O||y.current===x||_8(e,f))return;const E=window.setTimeout(()=>void k(),600);return()=>window.clearTimeout(E)},[x,s,k,O,e,f]);const S=O?(i==null?void 0:i.dockerfiles)??[]:[];return o.jsxs("section",{className:"environment-source-section","aria-label":f("environmentCenter.git.sectionLabel"),children:[o.jsxs("div",{className:"environment-form-grid environment-git-fields",children:[o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[f("environmentCenter.git.address"),o.jsx(Cu,{})]}),o.jsx(Kr,{size:"lg",type:"url",required:!0,value:e,placeholder:"https://github.com/owner/repository.git",autoComplete:"url",disabled:s,"aria-invalid":!!g,onChange:E=>{w(),a(E.currentTarget.value)}})]}),o.jsxs("label",{className:"environment-field",children:[o.jsx("span",{children:f("environmentCenter.git.ref")}),o.jsx(Kr,{size:"lg",value:t,placeholder:f("environmentCenter.git.defaultBranch"),autoComplete:"off",disabled:s,onChange:E=>{w(),l(E.currentTarget.value)}})]})]}),o.jsxs("div",{className:"environment-inspection-status environment-form-feedback","aria-live":"polite",children:[h?o.jsx(kn,{as:"span",children:f("environmentCenter.git.inspecting")}):null,g?o.jsxs("div",{className:"environment-source-error",role:"alert",children:[o.jsx("span",{children:g}),o.jsxs(Ht,{type:"button",color:"primary",size:"sm",pill:!1,disabled:s,onClick:()=>void k(),children:[o.jsx(tR,{}),f("common.retry")]})]}):null,!h&&!g&&O&&i?S.length>0?o.jsx("span",{children:i.commitSha?f("environmentCenter.git.foundDockerfiles",{commit:i.commitSha.slice(0,12),count:S.length}):f("environmentCenter.git.savedDockerfileLoaded")}):o.jsxs("div",{className:"environment-source-error",role:"alert",children:[o.jsx("span",{children:f("environmentCenter.git.noDockerfile")}),o.jsx("button",{type:"button",disabled:s,onClick:()=>void k(),children:f("environmentCenter.git.inspectAgain")})]}):null]}),S.length>0?o.jsxs("label",{className:"environment-field environment-dockerfile-picker",children:[o.jsxs("span",{children:["Dockerfile",o.jsx(Cu,{})]}),o.jsx(KE,{ariaLabel:f("environmentCenter.git.selectDockerfile"),value:n,valueLabel:n,placeholder:f("environmentCenter.git.selectDockerfile"),options:S.map(E=>({value:E,label:E})),disabled:s||h,onChange:c})]}):null]})}function w4t({cloudProvider:e,mode:t,region:n,value:i,disabled:r,onModeChange:s,onRegionChange:a,onChange:l}){const{t:c}=Ae("ui");return o.jsx("section",{className:"environment-source-section","aria-label":c("environmentCenter.repository.outputSection"),children:o.jsxs("div",{className:"environment-form-grid",children:[o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[c("environmentCenter.repository.type"),o.jsx(Cu,{})]}),o.jsx(Es,{id:"environment-repository-mode",value:t,options:s4t(c),optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,disabled:r,triggerClassName:"environment-select-trigger",onChange:u=>s(u.value)})]}),o.jsx(Yje,{cloudProvider:e,value:n,disabled:r,onChange:a}),t==="existing"?o.jsx(qje,{region:n,value:i,disabled:r,onChange:l}):o.jsx("p",{className:"environment-source-note environment-form-feedback",children:c("environmentCenter.repository.managedHint")})]})})}function O4t({cloudProvider:e,region:t,repository:n,reference:i,disabled:r,onRegionChange:s,onRepositoryChange:a,onReferenceChange:l}){const{t:c}=Ae("ui"),u=Gje(i,c);return o.jsx("section",{className:"environment-source-section","aria-label":c("environmentCenter.existingImage.sectionLabel"),children:o.jsxs("div",{className:"environment-form-grid",children:[o.jsx(Yje,{cloudProvider:e,value:t,disabled:r,onChange:s}),o.jsx(qje,{region:t,value:n,disabled:r,onChange:a}),o.jsxs("label",{className:"environment-field environment-image-reference",children:[o.jsxs("span",{children:[c("environmentCenter.existingImage.reference"),o.jsx(Cu,{})]}),o.jsx(Kr,{size:"lg",value:i,required:!0,placeholder:c("environmentCenter.existingImage.placeholder"),autoComplete:"off",disabled:r,"aria-invalid":!!u,onChange:d=>l(d.currentTarget.value)}),u?o.jsx("small",{className:"environment-source-field__error",role:"alert",children:u}):o.jsx("small",{children:c("environmentCenter.existingImage.hint")})]})]})})}function Zje(e,t,n,i){const r=p.useRef(n),s=p.useRef(i);r.current=n,s.current=i,p.useEffect(()=>{const a=document.body.style.overflow,l=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden";const c=window.requestAnimationFrame(()=>{var d;return(d=t.current)==null?void 0:d.focus()}),u=d=>{var g;if(d.key==="Escape"&&!s.current){d.preventDefault(),r.current();return}if(d.key!=="Tab")return;const f=Array.from(((g=e.current)==null?void 0:g.querySelectorAll('button:not([disabled]), textarea:not([disabled]), input:not([disabled]), [tabindex]:not([tabindex="-1"])'))??[]).filter(b=>b.getClientRects().length>0);if(!f.length)return;const h=f[0],m=f[f.length-1];d.shiftKey&&document.activeElement===h?(d.preventDefault(),m.focus()):!d.shiftKey&&document.activeElement===m&&(d.preventDefault(),h.focus())};return window.addEventListener("keydown",u),()=>{window.cancelAnimationFrame(c),document.body.style.overflow=a,window.removeEventListener("keydown",u),l!=null&&l.isConnected&&l.focus()}},[e,t])}function S4t({environment:e,onClose:t}){const{t:n}=Ae("ui"),i=p.useId(),r=p.useId(),s=p.useRef(null),a=p.useRef(null),[l,c]=p.useState(""),[u,d]=p.useState("loading"),[f,h]=p.useState(""),m=u==="loading";Zje(s,a,t,m);const g=async(b="",v)=>{d("loading"),h("");try{const y=b||(await D0e(e.id,v)).shareCode;c(y),await k0e(y),v!=null&&v.aborted||d("copied")}catch(y){if((y==null?void 0:y.name)==="AbortError")return;h(y instanceof Error?y.message:String(y)),d("error")}};return p.useEffect(()=>{const b=new AbortController;return g("",b.signal),()=>b.abort()},[e.id]),Fi.createPortal(o.jsx("div",{className:"environment-build-dialog__backdrop",onMouseDown:b=>{b.target===b.currentTarget&&!m&&t()},children:o.jsxs("section",{ref:s,className:"environment-share-dialog",role:"dialog","aria-modal":"true","aria-labelledby":i,"aria-describedby":r,"aria-busy":m||void 0,children:[o.jsxs("header",{className:"environment-build-dialog__header",children:[o.jsxs("div",{children:[o.jsx("h2",{id:i,children:n("environmentCenter.share.title")}),o.jsx("p",{id:r,children:e.name})]}),o.jsx(Ht,{ref:a,type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,disabled:m,onClick:t,"aria-label":n("environmentCenter.share.closeLabel"),children:o.jsx($a,{"aria-hidden":!0})})]}),o.jsx("div",{className:"environment-share-dialog__body",children:u==="loading"?o.jsx(kn,{as:"p",children:n("environmentCenter.share.generating")}):o.jsxs("div",{className:"environment-share-dialog__result",children:[u==="copied"?o.jsx("p",{className:"environment-share-dialog__success",role:"status","aria-live":"polite",children:n("environmentCenter.share.copied")}):o.jsxs("div",{className:"environment-share-dialog__error",role:"alert",children:[o.jsx("strong",{children:n("environmentCenter.share.failed")}),o.jsx("span",{children:f})]}),l?o.jsxs("label",{className:"environment-share-dialog__field environment-share-dialog__manual-code",children:[o.jsx("span",{children:n("environmentCenter.share.code")}),o.jsx(Mm,{size:"lg",rows:4,value:l,readOnly:!0,"aria-label":n("environmentCenter.share.fullCode"),onFocus:b=>b.currentTarget.select(),onClick:b=>b.currentTarget.select()}),o.jsx("small",{children:n(u==="copied"?"environmentCenter.share.copiedHint":"environmentCenter.share.copyFailedHint")})]}):null,o.jsx("p",{className:"environment-share-dialog__safety",children:n("environmentCenter.share.safety")})]})}),o.jsxs("footer",{className:"environment-build-dialog__actions",children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",disabled:m,onClick:t,children:n("common.close")}),u==="error"?o.jsx(Ht,{type:"button",color:"info",size:"sm",onClick:()=>void g(l),children:n("common.retry")}):u==="copied"?o.jsx(Ht,{type:"button",color:"info",size:"sm",onClick:()=>void g(l),children:n("environmentCenter.share.copyAgain")}):null]})]})}),document.body)}function k4t({initialValue:e,autoInspect:t,onClose:n,onImported:i}){const{t:r}=Ae("ui"),s=p.useId(),a=p.useId(),l=p.useId(),c=p.useRef(null),u=p.useRef(null),d=p.useRef(!1),[f,h]=p.useState(e),[m,g]=p.useState("editing"),[b,v]=p.useState([]),[y,x]=p.useState(""),[O,w]=p.useState([]),k=p.useMemo(()=>i7(f),[f]),S=k.length>A8,E=m==="inspecting"||m==="importing",C=b.filter(_=>_.status==="valid"),N=b.filter(_=>_.status==="invalid"),T=m==="ready"&&C.length>0;Zje(c,u,n,E);const j=p.useCallback(async()=>{if(!(!k.length||S)){g("inspecting"),x(""),w([]);try{const _=await M0e(k);v([..._].sort((P,I)=>P.index-I.index)),g("ready")}catch(_){x(_ instanceof Error?_.message:String(_)),g("editing")}}},[k,S]);p.useEffect(()=>{!t||d.current||(d.current=!0,j())},[t,j]);const A=async()=>{if(T){g("importing"),x(""),w([]);try{const _=C.map(Q=>({code:k[Q.index],name:Q.name})).filter(Q=>!!Q.code),P=await L0e(_.map(Q=>Q.code)),I=P.filter(Q=>Q.status==="created").length,$=P.filter(Q=>Q.status==="duplicate").length,M=new Map(P.map(Q=>[Q.index,Q])),B=_.flatMap(({code:Q,name:q},U)=>{const G=M.get(U);return!G||G.status==="failed"?[{code:Q,name:q,status:"valid",error:(G==null?void 0:G.error)||r("environmentCenter.import.noResult")}]:[]}),V=[...N.flatMap(Q=>{const q=k[Q.index];return q?[{code:q,name:"",status:"invalid",error:Q.error||r("environmentCenter.import.invalidCode")}]:[]}),...B],K=new Map;if(P.forEach(Q=>{Q.environment&&K.set(Q.environment.id,Q.environment)}),i([...K.values()],I,$,V.length),!V.length){n();return}h(V.map(Q=>Q.code).join(` +`)),w(B),v(V.map((Q,q)=>({index:q,status:Q.status,name:Q.name,error:Q.status==="invalid"?Q.error:""}))),x(r("environmentCenter.import.partial",{created:I,remaining:V.length})),g("ready")}catch(_){x(_ instanceof Error?_.message:String(_)),g("ready")}}},L=m==="inspecting"?r("environmentCenter.import.inspecting"):m==="importing"?r("environmentCenter.import.importing"):T?O.length?r("environmentCenter.import.retryImport"):r("environmentCenter.import.confirm"):r("environmentCenter.import.inspectCodes");return Fi.createPortal(o.jsx("div",{className:"environment-build-dialog__backdrop",onMouseDown:_=>{_.target===_.currentTarget&&!E&&n()},children:o.jsxs("section",{ref:c,className:"environment-share-dialog environment-import-dialog",role:"dialog","aria-modal":"true","aria-labelledby":s,"aria-describedby":a,"aria-busy":E||void 0,children:[o.jsxs("header",{className:"environment-build-dialog__header",children:[o.jsxs("div",{children:[o.jsx("h2",{id:s,children:r("environmentCenter.import.title")}),o.jsx("p",{id:a,children:r("environmentCenter.import.description")})]}),o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,disabled:E,onClick:n,"aria-label":r("environmentCenter.import.closeLabel"),children:o.jsx($a,{"aria-hidden":!0})})]}),o.jsxs("div",{className:"environment-share-dialog__body",children:[o.jsxs("label",{className:"environment-share-dialog__field",children:[o.jsx("span",{children:r("environmentCenter.import.code")}),o.jsx(Mm,{ref:u,size:"lg",rows:6,value:f,disabled:E,"aria-invalid":S||N.length>0||void 0,"aria-describedby":l,placeholder:"akenv://v1/...",onChange:_=>{h(_.currentTarget.value),g("editing"),v([]),x(""),w([])}})]}),o.jsx("p",{id:l,className:`environment-share-dialog__help${S?" is-error":""}`,children:S?r("environmentCenter.import.tooMany",{max:A8,count:k.length}):r("environmentCenter.import.multipleHint")}),o.jsx("p",{className:"environment-share-dialog__safety",children:r("environmentCenter.import.safety")}),m==="inspecting"?o.jsx(kn,{as:"p",children:r("environmentCenter.import.inspectingCodes")}):C.length?o.jsx("p",{className:"environment-share-dialog__summary",role:"status","aria-live":"polite",children:r("environmentCenter.import.found",{count:C.length,names:C.map(_=>_.name||r("environmentCenter.unnamed")).join(r("environmentCenter.listSeparator"))})}):null,N.length?o.jsx("ul",{className:"environment-share-dialog__failures",role:"alert",children:N.map(_=>o.jsx("li",{children:r("environmentCenter.import.itemError",{index:_.index+1,error:_.error||r("environmentCenter.import.invalidCode")})},_.index))}):null,O.length?o.jsx("ul",{className:"environment-share-dialog__failures",role:"alert",children:O.map((_,P)=>o.jsx("li",{children:r("environmentCenter.import.itemError",{index:P+1,error:_.error})},`${_.code}:${P}`))}):null,y?o.jsx("p",{className:"environment-share-dialog__error-text",role:"alert",children:y}):null]}),o.jsxs("footer",{className:"environment-build-dialog__actions",children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",disabled:E,onClick:n,children:r("common.cancel")}),o.jsx(Ht,{type:"button",color:"info",size:"sm",loading:E,disabled:E||!k.length||S||m==="ready"&&!T,onClick:()=>T?void A():void j(),children:L})]})]})}),document.body)}function E4t({environment:e,cloudProvider:t,onCancel:n,onDelete:i,onShare:r,onSave:s}){var et,Se,Kt,en,cn,kt,Pt;const{t:a,i18n:l}=Ae("ui"),c=e4t(a),u=p4t(e,t),d=u.dockerfile!==void 0,[f,h]=p.useState(()=>({...u,dockerfile:d?void 0:u.dockerfile})),[m,g]=p.useState(u.gitSource?"git":u.imageSource?"image":d?"dockerfile":"custom"),[b,v]=p.useState(d?(e==null?void 0:e.dockerfile)??"":""),[y,x]=p.useState(""),O=p.useRef(null),[w,k]=p.useState(()=>d?i4t((e==null?void 0:e.dockerfile)??""):u.baseEnvironment==="aio-sandbox"||u.baseEnvironment==="codex-sandbox"?u.baseEnvironment:"none"),[S,E]=p.useState(((et=u.gitSource)==null?void 0:et.repositoryUrl)??""),[C,N]=p.useState(((Se=u.gitSource)==null?void 0:Se.ref)??""),[T,j]=p.useState(((Kt=u.gitSource)==null?void 0:Kt.dockerfilePath)??""),[A,L]=p.useState(u.gitSource?{repositoryUrl:u.gitSource.repositoryUrl,ref:u.gitSource.ref??"",commitSha:"",dockerfiles:[u.gitSource.dockerfilePath]}:null),[_,P]=p.useState(u.gitSource?`${u.gitSource.repositoryUrl}\0${u.gitSource.ref??""}`:""),[I,$]=p.useState(u.containerRepository?"existing":"managed"),[M,B]=p.useState(((en=u.containerRepository)==null?void 0:en.region)??nr(t)),[R,V]=p.useState(u.containerRepository??void 0),[K,Q]=p.useState(((cn=u.imageSource)==null?void 0:cn.region)??nr(t)),[q,U]=p.useState(u.imageSource?{region:u.imageSource.region,registry:u.imageSource.registry,namespace:u.imageSource.namespace,repository:u.imageSource.repository}:void 0),[G,ae]=p.useState(((kt=u.imageSource)==null?void 0:kt.reference)??""),[re,se]=p.useState(!1),me=p.useMemo(()=>PB(f,t),[t,f.baseEnvironment,f.operatingSystem,f.language,f.optionIds]),Z=f.dockerfile??me,X=w!=="none",J=w==="aio-sandbox"?RB:w==="codex-sandbox"?DOe[t]:"",oe=X?q3t(b):b,Ee=X?W2(J,""):"",he=X?W2(J,oe):b,Me=y||(X?W3t(oe,J,a):rz(b,void 0,a)),De=!!e,_e="environment-editor-form",[Re,Xe]=p.useState(!1),[Ce,Fe]=p.useState(""),Oe=!!he.trim()&&!Me,$e=`${S.trim()}\0${C.trim()}`,Y=!_8(S,a)&&_===$e&&!!T&&(I==="managed"||Gte(R)),pe=Gte(q)&&!!G.trim()&&!Gje(G,a),Te=!!f.name.trim()&&!Re&&(m==="custom"||m==="dockerfile"&&Oe||m==="git"&&Y||m==="image"&&pe),We=(ut,gt)=>{h(Le=>({...Le,optionIds:gt?[...Le.optionIds,ut]:Le.optionIds.filter(xt=>xt!==ut)}))},nt=ut=>{x(""),v(X?W2(J,ut):ut)},$t=async ut=>{if(!ut)return;const gt=await K3t(ut,a);x(gt.error),gt.content&&v(gt.content)},je=()=>{x(""),v(Ee)},ve=async ut=>{if(ut.preventDefault(),!!Te){Xe(!0),Fe("");try{const gt=Oat(he);await s({...f,name:f.name.trim(),description:f.description.trim(),optionIds:m==="custom"?f.optionIds:[],selectedSkills:m==="custom"?f.selectedSkills:[],dockerfile:m==="dockerfile"?he:m==="custom"?Z:"",gitSource:m==="git"?{repositoryUrl:S.trim(),...C.trim()?{ref:C.trim()}:{},dockerfilePath:T}:null,containerRepository:m==="git"&&I==="existing"?R:null,imageSource:m==="image"&&q?{...q,reference:G.trim()}:null,...m==="dockerfile"?gt:{}})}catch(gt){Fe(gt instanceof Error?gt.message:String(gt)),Xe(!1)}}},ze=f.name.trim()||(De?(e==null?void 0:e.name)||a("environmentCenter.configure"):a("environmentCenter.create"));return o.jsx(Ch,{className:"environment-editor","aria-label":a(De?"environmentCenter.details":"environmentCenter.create"),children:o.jsx(pE,{title:ze,description:a("environmentCenter.editorDescription"),identitySeed:ze,backLabel:a("environmentCenter.backToList"),onBack:n,actions:o.jsxs(o.Fragment,{children:[i?o.jsx(Ht,{type:"button",color:"danger",variant:"ghost",size:"sm",onClick:i,disabled:Re,children:a("common.delete")}):null,r?o.jsx(Ht,{color:"secondary",variant:"soft",size:"sm",onClick:r,disabled:Re,children:a("environmentCenter.share.action")}):null,o.jsx(Ht,{color:"secondary",variant:"soft",size:"sm",onClick:n,disabled:Re,children:a("common.cancel")}),o.jsx(Ht,{color:"info",size:"sm",type:"submit",form:_e,disabled:!Te,children:a(Re?"common.saving":m==="image"?De?"environmentCenter.save":"environmentCenter.create":De?"environmentCenter.saveAndBuild":"environmentCenter.createAndBuild")})]}),children:o.jsxs("form",{id:_e,className:"environment-form",onSubmit:ve,children:[o.jsxs("div",{className:"environment-fields",children:[o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[a("environmentCenter.name"),o.jsx(Cu,{})]}),o.jsx(Kr,{className:"environment-text-input",type:"text",size:"lg",required:!0,value:f.name,maxLength:60,placeholder:a("environmentCenter.namePlaceholder"),onChange:ut=>h(gt=>({...gt,name:ut.target.value}))})]}),o.jsxs("label",{className:"environment-field",children:[o.jsx("span",{children:a("common.description")}),o.jsx(Mm,{className:"environment-description-input",size:"lg",rows:3,value:f.description,maxLength:180,placeholder:a("environmentCenter.descriptionPlaceholder"),onChange:ut=>h(gt=>({...gt,description:ut.target.value}))})]})]}),o.jsxs("label",{className:"environment-field environment-creation-method",children:[o.jsxs("span",{children:[a("environmentCenter.creationMethod"),o.jsx(Cu,{})]}),o.jsx(Es,{id:"environment-creation-method",value:m,options:c,optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,triggerClassName:"environment-select-trigger",onChange:ut=>{const gt=ut.value;g(gt),gt==="dockerfile"&&!b.trim()&&v(Ee),Fe("")}}),o.jsx("small",{children:(Pt=c.find(ut=>ut.value===m))==null?void 0:Pt.description})]}),Ce?o.jsx("p",{className:"environment-form-error",role:"alert",children:Ce}):null,m==="custom"?o.jsxs("div",{className:"environment-configuration",children:[o.jsx("section",{className:"environment-section environment-form-section","aria-label":a("environmentCenter.baseConfiguration"),children:o.jsxs("div",{className:"environment-form-grid",children:[o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[a("environmentCenter.baseEnvironment"),o.jsx(Cu,{})]}),o.jsx(Es,{id:"environment-base-environment",value:f.baseEnvironment,options:t4t.map(ut=>({...ut,description:a(`environmentCenter.baseDescriptions.${ut.value}`)})),optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,triggerClassName:"environment-select-trigger",onChange:ut=>{const gt=ut.value,Le=gt==="aio-sandbox"||gt==="codex-sandbox";h(xt=>({...xt,baseEnvironment:gt,operatingSystem:Le?"ubuntu-22.04":xt.operatingSystem,language:Le?"python-3.12":xt.language}))}}),o.jsx("small",{children:a(`environmentCenter.baseDescriptions.${f.baseEnvironment}`)})]}),o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[a("environmentCenter.operatingSystem"),o.jsx(Cu,{})]}),o.jsx(Es,{id:"environment-operating-system",value:f.operatingSystem,options:r4t,optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,disabled:f.baseEnvironment!=="ubuntu",triggerClassName:"environment-select-trigger",onChange:ut=>h(gt=>({...gt,operatingSystem:ut.value}))}),o.jsx("small",{children:f.baseEnvironment!=="ubuntu"?a("environmentCenter.fixedByBase",{base:A6(f.baseEnvironment),value:"Ubuntu 22.04"}):a("environmentCenter.selectUbuntuVersion")})]}),o.jsxs("label",{className:"environment-field",children:[o.jsxs("span",{children:[a("environmentCenter.pythonVersion"),o.jsx(Cu,{})]}),o.jsx(Es,{id:"environment-python-version",value:f.language,options:f.baseEnvironment!=="ubuntu"?Wte.filter(ut=>ut.value==="python-3.12"):Wte,optionClassName:"environment-select-option",required:!0,size:"lg",block:!0,pill:!1,disabled:f.baseEnvironment!=="ubuntu",triggerClassName:"environment-select-trigger",onChange:ut=>h(gt=>({...gt,language:ut.value}))}),o.jsx("small",{children:f.baseEnvironment!=="ubuntu"?a("environmentCenter.fixedByBase",{base:A6(f.baseEnvironment),value:"Python 3.12"}):a("environmentCenter.selectPythonVersion")})]})]})}),o.jsxs("section",{className:"environment-section","aria-labelledby":"environment-skills-title",children:[o.jsx("h2",{id:"environment-skills-title",children:a("environmentCenter.skills")}),o.jsxs("div",{className:"environment-skill-grid",children:[o.jsx(qte,{name:"VeADK",description:a("environmentCenter.veadkDescription"),selected:re,disabled:Re,onChange:se,icon:o.jsx("img",{src:jR,alt:""})}),o.jsx(iz,{selected:f.selectedSkills,onChange:ut=>h(gt=>({...gt,selectedSkills:ut})),cloudProvider:t,disabled:Re,addLabel:a("environmentCenter.addSkill"),showSelectedCount:!1})]})]}),IB.map(ut=>o.jsxs("section",{className:"environment-section","aria-labelledby":`environment-${ut.id}-title`,children:[o.jsx("h2",{id:`environment-${ut.id}-title`,children:a(`environmentCenter.categories.${ut.id}`)}),o.jsx("div",{className:"environment-option-grid",children:ut.options.map(gt=>{const Le=f.optionIds.includes(gt.id);return o.jsx(qte,{name:gt.label,description:a(`environmentCenter.options.${gt.id}`,{defaultValue:gt.description}),selected:Le,onChange:xt=>We(gt.id,xt),icon:o.jsx(h4t,{option:gt})},gt.id)})})]},ut.id))]}):m==="dockerfile"?o.jsxs("section",{className:"environment-upload","aria-label":a("environmentCenter.customDockerfile"),children:[o.jsx("div",{className:"environment-dockerfile-settings environment-form-grid",children:o.jsxs("label",{className:"environment-field",children:[o.jsx("span",{children:a("environmentCenter.presetEnvironment")}),o.jsx(Es,{id:"environment-dockerfile-base-environment",value:w,options:n4t(a),optionClassName:"environment-select-option",size:"lg",block:!0,pill:!1,triggerClassName:"environment-select-trigger",onChange:ut=>{x(""),k(ut.value)}}),o.jsx("small",{children:a("environmentCenter.presetHint")})]})}),o.jsxs("div",{className:"environment-upload__preview",children:[o.jsxs("div",{children:[o.jsxs("h3",{children:["Dockerfile",o.jsx(Cu,{})]}),o.jsxs("div",{className:"environment-upload__actions",children:[o.jsx("span",{className:"environment-upload__size",children:a("environmentCenter.dockerfileSize",{size:Vje(he).toLocaleString(l.resolvedLanguage??l.language),max:131072 .toLocaleString(l.resolvedLanguage??l.language)})}),o.jsx("input",{ref:O,className:"environment-upload__file-input",type:"file",accept:".dockerfile,text/plain",tabIndex:-1,hidden:!0,onChange:ut=>{var Le;const gt=ut.currentTarget;$t((Le=gt.files)==null?void 0:Le[0]).finally(()=>{gt.value=""})}}),o.jsx(Ht,{className:"environment-upload__action",type:"button",color:"secondary",variant:"soft",size:"sm",pill:!1,disabled:Re,onClick:()=>{var ut;return(ut=O.current)==null?void 0:ut.click()},children:a("environmentCenter.upload")}),o.jsx(Ht,{className:"environment-upload__action",type:"button",color:"secondary",variant:"ghost",size:"sm",pill:!1,disabled:Re||!oe,onClick:je,children:a("environmentCenter.reset")})]})]}),o.jsxs("div",{className:`environment-dockerfile-editor${X?" has-fixed-base":""}${Me?" is-invalid":""}`,children:[X?o.jsxs("div",{className:"environment-dockerfile-from","aria-label":a("environmentCenter.dockerfileBaseImage"),children:[o.jsx("span",{className:"environment-dockerfile-from__line","aria-hidden":"true",children:"1"}),o.jsxs("code",{children:[o.jsx("span",{className:"environment-dockerfile-from__keyword",children:"FROM"}),o.jsx("span",{title:J,children:J})]})]}):null,o.jsx("div",{className:"environment-dockerfile__editor environment-upload__editor","aria-label":a("environmentCenter.dockerfileContent"),children:o.jsx(WE,{value:oe,path:"Dockerfile",lineNumberStart:X?2:1,height:"auto",minHeight:"28px",maxHeight:"var(--environment-dockerfile-editor-max-height)",onChange:nt})})]})]}),Me?o.jsx("p",{className:"environment-upload__error environment-upload__error--below",role:"alert",children:Me}):null]}):m==="git"?o.jsxs("div",{className:"environment-source-workflow",children:[o.jsx(x4t,{repositoryUrl:S,gitRef:C,dockerfilePath:T,inspection:A,inspectedKey:_,disabled:Re,onRepositoryUrlChange:E,onGitRefChange:N,onDockerfilePathChange:j,onInspectionChange:L,onInspectedKeyChange:P}),o.jsx(w4t,{cloudProvider:t,mode:I,region:M,value:R,disabled:Re,onModeChange:ut=>{$(ut),Fe("")},onRegionChange:ut=>{B(ut),V(void 0),Fe("")},onChange:V})]}):o.jsx(O4t,{cloudProvider:t,region:K,repository:q,reference:G,disabled:Re,onRegionChange:ut=>{Q(ut),U(void 0),Fe("")},onRepositoryChange:U,onReferenceChange:ae})]})})})}function Jje({cloudProvider:e="volcengine",onWorkspace:t,clipboardImport:n=null,clipboardReadError:i=""}){const{t:r,i18n:s}=Ae("ui"),[a,l]=p.useState([]),[c,u]=p.useState({kind:"list"}),[d,f]=p.useState(""),[h,m]=p.useState(null),[g,b]=p.useState(null),[v,y]=p.useState(null),[x,O]=p.useState(null),[w,k]=p.useState(null),S=p.useRef(0),[E,C]=p.useState(""),[N,T]=p.useState(!1),[j,A]=p.useState(i),[L,_]=p.useState(!0),[P,I]=p.useState(""),[$,M]=p.useState(0),[B,R]=p.useState(()=>new Set),V=p.useDeferredValue(d),K=p.useMemo(()=>{const Z=V.trim().toLocaleLowerCase();return Z?a.filter(X=>`${X.name} ${X.description} ${T6(X.operatingSystem)} ${ah(X.language)} ${A6(X.baseEnvironment)}`.toLocaleLowerCase().includes(Z)):a},[V,a]),Q=p.useCallback((Z="",X=!1)=>{S.current+=1,k({key:S.current,initialValue:Z,autoInspect:X})},[]),q=p.useCallback((Z,X=!1)=>{const J=Z.trim();if(!J.startsWith("akenv://")||!X&&Kte.has(J))return!1;const oe=i7(J);return!oe.length||oe.length>A8?!1:(Kte.add(J),A(""),Q(J,!0),!0)},[Q]),U=p.useCallback(async()=>{var Z;if(!(c.kind!=="list"||w)){if(typeof navigator>"u"||!((Z=navigator.clipboard)!=null&&Z.readText)){A(r("environmentCenter.clipboardUnsupported"));return}try{const X=await navigator.clipboard.readText();!q(X)&&!X.trim()&&await a4t()&&A(r("environmentCenter.clipboardReadError"))}catch{A(r("environmentCenter.clipboardReadError"))}}},[w,q,r,c.kind]);p.useEffect(()=>{const Z=new AbortController;return a.length===0&&_(!0),I(""),Kk(Z.signal).then(X=>{l(X)}).catch(X=>{(X==null?void 0:X.name)!=="AbortError"&&I(X instanceof Error?X.message:String(X))}).finally(()=>{Z.signal.aborted||_(!1)}),()=>Z.abort()},[$]),p.useEffect(()=>{if(!a.some(X=>X.latestVersion&&Xg.has(X.latestVersion.status)))return;const Z=window.setTimeout(()=>M(X=>X+1),2500);return()=>window.clearTimeout(Z)},[a]),p.useEffect(()=>{if(!E||N)return;const Z=window.setTimeout(()=>C(""),2800);return()=>window.clearTimeout(Z)},[N,E]),p.useEffect(()=>{i&&A(i)},[i]),p.useEffect(()=>{n&&q(n.text)},[n,q]),p.useEffect(()=>{if(c.kind!=="list")return;const Z=()=>void U(),X=()=>{document.visibilityState==="visible"&&U()},J=oe=>{var Me;const Ee=oe.target;if(Ee instanceof HTMLInputElement||Ee instanceof HTMLTextAreaElement||Ee instanceof HTMLElement&&Ee.isContentEditable)return;const he=((Me=oe.clipboardData)==null?void 0:Me.getData("text/plain"))??"";q(he,!0)&&oe.preventDefault()};return window.addEventListener("focus",Z),document.addEventListener("visibilitychange",X),window.addEventListener("paste",J),()=>{window.removeEventListener("focus",Z),document.removeEventListener("visibilitychange",X),window.removeEventListener("paste",J)}},[q,U,c.kind]);const G=c.kind==="editor"&&c.environmentId?a.find(Z=>Z.id===c.environmentId):void 0,ae=async Z=>{const X={...Z,dockerfile:Z.dockerfile??PB(Z,e)},J=G?await B0e(G.id,X):await F0e(X);if(l(oe=>[J,...oe.filter(Ee=>Ee.id!==J.id)]),u({kind:"list"}),T(!1),X.imageSource){C(r("environmentCenter.status.boundImage",{name:J.name}));return}try{const oe=await A4(J.id);l(Ee=>Ee.map(he=>he.id===J.id?{...he,latestVersion:oe}:he)),C(r("environmentCenter.status.queued",{name:J.name}))}catch(oe){T(!0),C(r("environmentCenter.status.savedBuildFailed",{error:oe instanceof Error?oe.message:String(oe)}))}},re=async Z=>{if(!B.has(Z.id)){R(X=>new Set(X).add(Z.id)),T(!1);try{const X=await A4(Z.id);l(J=>J.map(oe=>oe.id===Z.id?{...oe,latestVersion:X}:oe)),C(r("environmentCenter.status.queued",{name:Z.name}))}catch(X){T(!0),C(X instanceof Error?X.message:String(X))}finally{R(X=>{const J=new Set(X);return J.delete(Z.id),J})}}},se=(Z,X,J,oe)=>{Z.length&&l(Ee=>{const he=new Set(Z.map(Me=>Me.id));return[...Z,...Ee.filter(Me=>!he.has(Me.id))]}),T(oe>0),C(oe>0?r("environmentCenter.status.importedFailed",{created:X,failed:oe}):J>0?r("environmentCenter.status.importedDuplicate",{created:X,duplicate:J}):r("environmentCenter.status.imported",{count:X}))},me=h?o.jsx(gc,{title:r("environmentCenter.deleteTitle"),description:r("environmentCenter.deleteDescription",{name:h.name}),confirmLabel:r("common.delete"),variant:"danger",onCancel:()=>m(null),onConfirm:()=>{const Z=h;m(null),u({kind:"list"}),U0e(Z.id).then(()=>{l(X=>X.filter(J=>J.id!==Z.id)),T(!1),C(r("environmentCenter.status.deleted",{name:Z.name}))}).catch(X=>{T(!0),C(X instanceof Error?X.message:String(X))})}}):null;return c.kind==="editor"?o.jsxs(o.Fragment,{children:[o.jsx(E4t,{environment:G,cloudProvider:e,onCancel:()=>u({kind:"list"}),onDelete:G?()=>m(G):void 0,onShare:G?()=>O(G):void 0,onSave:ae},c.environmentId??"new"),x?o.jsx(S4t,{environment:x,onClose:()=>O(null)}):null,me]}):o.jsxs(Ch,{className:"environment-center","aria-label":r("environmentCenter.title"),children:[o.jsx(Kx,{title:r("environmentCenter.title")}),o.jsxs(i0,{className:"environment-toolbar",children:[t?o.jsx(mE,{items:[{id:"workspaces",label:r("workspace.title")},{id:"environments",label:r("environmentCenter.title")}],value:"environments",onChange:Z=>{Z==="workspaces"&&t()},ariaLabel:r("workspace.resourceType"),idPrefix:"environment-center"}):null,o.jsxs("div",{className:"resource-toolbar__actions",children:[E?o.jsx("span",{className:`environment-status${N?" is-error":""}`,role:N?"alert":"status","aria-live":"polite",children:E}):null,o.jsx(Em,{"aria-label":r("environmentCenter.search"),value:d,onChange:Z=>f(Z.target.value),placeholder:r("environmentCenter.search")})]})]}),j?o.jsxs("div",{className:"environment-clipboard-notice",role:"alert",children:[o.jsx("span",{children:j}),o.jsx(Ht,{type:"button",color:"secondary",variant:"soft",size:"sm",onClick:()=>{A(""),Q()},children:r("environmentCenter.manualImport")})]}):null,o.jsx(r0,{"aria-live":"polite",children:L?o.jsx(zd,{}):P?o.jsxs("div",{className:"environment-load-error",role:"alert",children:[o.jsx("p",{children:Id(P,s.resolvedLanguage||s.language)||r("environmentCenter.loadFailed")}),o.jsx(Ht,{color:"secondary",variant:"soft",size:"sm",onClick:()=>M(Z=>Z+1),children:r("common.reload")})]}):K.length===0&&d.trim()?o.jsx("div",{className:"environment-empty",children:o.jsxs(Tn,{fill:"none",children:[o.jsx(Tn.Icon,{children:o.jsx(d4t,{})}),o.jsx(Tn.Title,{children:r("environmentCenter.noMatches")}),o.jsx(Tn.Description,{children:r("environmentCenter.tryAnotherName")})]})}):o.jsxs(Gx,{children:[d.trim()?null:o.jsxs(o.Fragment,{children:[o.jsx(jb,{"aria-label":r("environmentCenter.create"),icon:o.jsx(l4t,{}),onClick:()=>u({kind:"editor",environmentId:null}),children:r("environmentCenter.create")}),o.jsx(jb,{"aria-label":r("environmentCenter.import.title"),icon:o.jsx(c4t,{}),onClick:()=>Q(),children:r("environmentCenter.import.title")})]}),K.map(Z=>{var Ee,he;const X=Xje(Z,r),J=!!(Z.latestVersion&&Xg.has(Z.latestVersion.status)),oe=B.has(Z.id);return o.jsx(yE,{className:"environment-card",title:Z.name,status:o.jsx(ya,{color:X.color,size:"sm",children:X.label}),description:((Ee=Z.latestVersion)==null?void 0:Ee.error)||(J?(he=Z.latestVersion)==null?void 0:he.currentStep:"")||Z.description||r("common.noDescription"),metadata:[{label:r("workspace.updated"),value:m4t(Z.updatedAt,s.resolvedLanguage??s.language),title:g4t(Z.updatedAt,s.resolvedLanguage??s.language)}],action:{label:Z.latestVersion?r("environmentCenter.buildDetails.title"):r(oe?"environmentCenter.buildDetails.starting":"environmentCenter.startBuild"),icon:"play",title:r("environmentCenter.build"),disabled:oe,onClick:()=>Z.latestVersion?b(Z.id):void re(Z)},auxiliaryAction:{label:r("environmentCenter.manifest.view"),icon:o.jsx(a7e,{}),title:Z.latestVersion?r("environmentCenter.manifest.viewShort"):r("environmentCenter.manifest.unavailable"),disabled:!Z.latestVersion,onClick:()=>y(Z)},detailAction:{label:r("environmentCenter.configure"),onClick:()=>u({kind:"editor",environmentId:Z.id})}},Z.id)})]})}),g?(()=>{const Z=a.find(X=>X.id===g);return Z?o.jsx(v4t,{environment:Z,onClose:()=>b(null),onBuildUpdate:X=>{l(J=>J.map(oe=>oe.id===Z.id?{...oe,latestVersion:X}:oe))},onRebuild:()=>re(Z)}):null})():null,v!=null&&v.latestVersion?o.jsx(y4t,{environment:v,onClose:()=>y(null)}):null,me,w?o.jsx(k4t,{initialValue:w.initialValue,autoInspect:w.autoInspect,onClose:()=>k(null),onImported:se},w.key):null]})}function C4t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round","aria-hidden":"true",...e,children:o.jsx("path",{d:"M8 3.25v9.5M3.25 8h9.5"})})}function T4t(e){return o.jsxs("svg",{viewBox:"0 0 32 32",fill:"none",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"4.5",y:"7",width:"23",height:"18",rx:"3"}),o.jsx("path",{d:"M10 7V5.5A1.5 1.5 0 0 1 11.5 4h4A1.5 1.5 0 0 1 17 5.5V7M9 13h5v5H9zM18 13h5M18 17h5M9 22h14"})]})}function N8(e,t){const n=Date.parse(e);return Number.isNaN(n)?e:new Intl.DateTimeFormat(t,{month:"short",day:"numeric",hour:"2-digit",minute:"2-digit"}).format(n)}function A4t(e,t){return e.environmentIds.reduce((n,i)=>{var r,s;return((s=(r=t.get(i))==null?void 0:r.latestVersion)==null?void 0:s.status)==="available"?n+1:n},0)}function _4t({workspace:e,environments:t,onBack:n,onSave:i,onDelete:r}){const{t:s,i18n:a}=Ae("ui"),[l,c]=p.useState((e==null?void 0:e.name)??""),[u,d]=p.useState((e==null?void 0:e.description)??""),[f,h]=p.useState((e==null?void 0:e.environmentIds)??[]),[m,g]=p.useState(""),[b,v]=p.useState(!1),[y,x]=p.useState(""),O=m.trim().toLocaleLowerCase(),w=t.filter(S=>`${S.name} ${S.description} ${ah(S.language)}`.toLocaleLowerCase().includes(O)),k=async S=>{if(S.preventDefault(),!(!l.trim()||b)){v(!0),x("");try{await i({name:l.trim(),description:u.trim(),environmentIds:f})}catch(E){x(E instanceof Error?E.message:String(E)),v(!1)}}};return o.jsx(Ch,{className:"workspace-center","aria-label":s(e?"workspace.detail":"workspace.create"),children:o.jsxs(pE,{title:e?e.name:s("workspace.create"),description:s("workspace.editorDescription"),identitySeed:(e==null?void 0:e.name)||s("workspace.create"),backLabel:s("workspace.backToList"),onBack:n,actions:o.jsxs(o.Fragment,{children:[r?o.jsx("button",{type:"button",className:"is-danger",onClick:r,children:s("common.delete")}):null,o.jsx("button",{type:"submit",form:"workspace-form",disabled:b||!l.trim(),children:s(b?"common.saving":"common.save")})]}),children:[e?o.jsxs(MB,{children:[o.jsxs("div",{children:[o.jsx("dt",{children:s("common.environment")}),o.jsx("dd",{children:s("workspace.environmentCount",{count:f.length})})]}),o.jsxs("div",{children:[o.jsx("dt",{children:s("workspace.createdAt")}),o.jsx("dd",{children:N8(e.createdAt,a.resolvedLanguage??a.language)})]}),o.jsxs("div",{children:[o.jsx("dt",{children:s("workspace.updatedAt")}),o.jsx("dd",{children:N8(e.updatedAt,a.resolvedLanguage??a.language)})]})]}):null,o.jsxs("form",{id:"workspace-form",className:"workspace-form",onSubmit:k,children:[o.jsxs("section",{className:"workspace-fields","aria-label":s("workspace.basicInfo"),children:[o.jsxs("label",{children:[o.jsx("span",{children:s("common.name")}),o.jsx(Kr,{value:l,maxLength:128,autoFocus:!0,onChange:S=>c(S.target.value),placeholder:s("workspace.namePlaceholder")})]}),o.jsxs("label",{children:[o.jsx("span",{children:s("common.description")}),o.jsx(Mm,{value:u,maxLength:2e3,onChange:S=>d(S.target.value),placeholder:s("workspace.descriptionPlaceholder")})]})]}),o.jsxs("section",{className:"workspace-environments",children:[o.jsx(JOe,{title:s("common.environment"),description:s("workspace.selectedEnvironmentCount",{count:f.length}),actions:o.jsx(Em,{"aria-label":s("workspace.searchAvailableEnvironments"),value:m,onChange:S=>g(S.target.value),placeholder:s("workspace.searchEnvironments")})}),t.length===0?o.jsxs("div",{className:"workspace-environment-empty",children:[o.jsx("p",{children:s("workspace.noAvailableEnvironments")}),o.jsx("span",{children:s("workspace.createEnvironmentFirst")})]}):w.length===0?o.jsxs("div",{className:"workspace-environment-empty",children:[o.jsx("p",{children:s("workspace.noMatchingEnvironments")}),o.jsx("span",{children:s("workspace.tryAnotherName")})]}):o.jsx("div",{className:"workspace-environment-list",children:w.map(S=>{var N;const E=f.includes(S.id),C=((N=S.latestVersion)==null?void 0:N.status)==="available"?s("workspace.environmentStatus.available"):S.latestVersion?s("workspace.environmentStatus.building"):s("workspace.environmentStatus.notBuilt");return o.jsxs("label",{className:`workspace-environment-option${E?" is-selected":""}`,children:[o.jsx("input",{type:"checkbox",checked:E,onChange:()=>h(T=>E?T.filter(j=>j!==S.id):[...T,S.id])}),o.jsxs("span",{className:"workspace-environment-option__copy",children:[o.jsx("strong",{title:S.name,children:S.name}),o.jsxs("span",{children:[ah(S.language)," · ",C]})]}),o.jsx("span",{className:"workspace-environment-option__action",children:s(E?"workspace.added":"common.add")})]},S.id)})})]}),y?o.jsx("p",{className:"workspace-form-error",role:"alert",children:y}):null]})]})})}function N4t({onEnvironment:e}){const{t,i18n:n}=Ae("ui"),[i,r]=p.useState([]),[s,a]=p.useState([]),[l,c]=p.useState({kind:"list"}),[u,d]=p.useState(""),[f,h]=p.useState(!0),[m,g]=p.useState(""),[b,v]=p.useState(""),[y,x]=p.useState(!1),[O,w]=p.useState(null),[k,S]=p.useState(0),E=p.useDeferredValue(u);p.useEffect(()=>{const j=new AbortController;return h(!0),g(""),Promise.all([a7(j.signal),Kk(j.signal)]).then(([A,L])=>{r(A),a(L)}).catch(A=>{(A==null?void 0:A.name)!=="AbortError"&&(console.warn("Unable to load Studio workspaces",A),g(t("workspace.loadFailed")))}).finally(()=>{j.signal.aborted||h(!1)}),()=>j.abort()},[k,t]),p.useEffect(()=>{if(!b||y)return;const j=window.setTimeout(()=>v(""),2800);return()=>window.clearTimeout(j)},[y,b]);const C=p.useMemo(()=>new Map(s.map(j=>[j.id,j])),[s]),N=p.useMemo(()=>{const j=E.trim().toLocaleLowerCase();return j?i.filter(A=>{const L=A.environmentIds.map(_=>{var P;return((P=C.get(_))==null?void 0:P.name)??""}).join(" ");return`${A.name} ${A.description} ${L}`.toLocaleLowerCase().includes(j)}):i},[E,C,i]),T=l.kind==="detail"&&l.workspaceId?i.find(j=>j.id===l.workspaceId):void 0;return l.kind==="detail"?o.jsx(_4t,{workspace:T,environments:s,onBack:()=>c({kind:"list"}),onDelete:T?()=>w(T):null,onSave:async j=>{const A=T?await R0e(T.id,j):await j0e(j);r(L=>[A,...L.filter(_=>_.id!==A.id)]),x(!1),v(t("workspace.saved",{name:A.name})),c({kind:"list"})}},l.workspaceId??"new"):o.jsxs(Ch,{className:"workspace-center","aria-label":t("workspace.title"),children:[o.jsx(Kx,{title:t("workspace.title")}),o.jsxs(i0,{children:[o.jsx(mE,{items:[{id:"workspaces",label:t("workspace.title")},{id:"environments",label:t("common.environment")}],value:"workspaces",onChange:j=>{j==="environments"&&e()},ariaLabel:t("workspace.resourceType"),idPrefix:"workspace-center"}),o.jsxs("div",{className:"resource-toolbar__actions",children:[b?o.jsx("span",{className:`workspace-status${y?" is-error":""}`,role:y?"alert":"status","aria-live":"polite",children:b}):null,o.jsx(Em,{"aria-label":t("workspace.searchWorkspaces"),value:u,onChange:j=>d(j.target.value),placeholder:t("workspace.searchWorkspaces")})]})]}),o.jsx(r0,{"aria-live":"polite",children:f?o.jsx(zd,{}):m?o.jsxs("div",{className:"workspace-load-error",role:"alert",children:[o.jsx("p",{children:m}),o.jsx(Ht,{color:"secondary",variant:"soft",size:"sm",onClick:()=>S(j=>j+1),children:t("common.reload")})]}):N.length===0&&u.trim()?o.jsx("div",{className:"workspace-empty",children:o.jsxs(Tn,{fill:"none",children:[o.jsx(Tn.Icon,{children:o.jsx(T4t,{})}),o.jsx(Tn.Title,{children:t("workspace.noMatchingWorkspaces")}),o.jsx(Tn.Description,{children:t("workspace.tryAnotherNameOrEnvironment")})]})}):o.jsxs(Gx,{children:[u.trim()?null:o.jsx(jb,{"aria-label":t("workspace.create"),icon:o.jsx(C4t,{}),onClick:()=>c({kind:"detail",workspaceId:null}),children:t("workspace.create")}),N.map(j=>{const A=A4t(j,C),L=j.environmentIds.filter(_=>!C.has(_)).length;return o.jsx(yE,{className:"workspace-card",title:j.name,status:o.jsx(ya,{color:L?"danger":A===j.environmentIds.length&&A>0?"success":"secondary",size:"sm",children:j.environmentIds.length===0?t("workspace.noEnvironmentAdded"):L?t("workspace.environmentMissing"):t("workspace.availableFraction",{available:A,total:j.environmentIds.length})}),description:j.description||t("common.noDescription"),metadata:[{label:t("common.environment"),value:t("workspace.environmentCount",{count:j.environmentIds.length})},{label:t("workspace.available"),value:t("workspace.availableCount",{count:A})},{label:t("workspace.updated"),value:N8(j.updatedAt,n.resolvedLanguage??n.language)}],detailAction:{label:t("common.manage"),onClick:()=>c({kind:"detail",workspaceId:j.id})},action:{label:t("workspace.addEnvironment"),icon:"plus",onClick:()=>c({kind:"detail",workspaceId:j.id})}},j.id)})]})}),O?o.jsx(gc,{title:t("workspace.deleteTitle"),description:t("workspace.deleteDescription",{name:O.name}),confirmLabel:t("common.delete"),variant:"danger",onCancel:()=>w(null),onConfirm:()=>{const j=O;w(null),I0e(j.id).then(()=>{r(A=>A.filter(L=>L.id!==j.id)),x(!1),v(t("workspace.deleted",{name:j.name})),c({kind:"list"})}).catch(A=>{x(!0),v(A instanceof Error?A.message:String(A))})}}):null]})}function j4t({cloudProvider:e}){const{t}=Ae("ui"),[n,i]=p.useState("workspaces"),[r,s]=p.useState(null),[a,l]=p.useState(""),c=p.useRef(0),u=()=>{var h;c.current+=1;const d=c.current;l("");let f=null;if(typeof navigator<"u"&&((h=navigator.clipboard)!=null&&h.readText))try{f=navigator.clipboard.readText()}catch{l(t("workspace.clipboardPermissionError"))}else l(t("workspace.clipboardUnsupported"));i("environments"),f&&f.then(async m=>{var g;if(c.current===d){if(m.trim()){s({key:d,text:m});return}try{const b=await((g=navigator.permissions)==null?void 0:g.query({name:"clipboard-read"}));c.current===d&&(b==null?void 0:b.state)==="denied"&&l(t("workspace.clipboardPermissionError"))}catch{}}}).catch(()=>{c.current===d&&l(t("workspace.clipboardPermissionError"))})};return n==="environments"?o.jsx(Jje,{cloudProvider:e,onWorkspace:()=>i("workspaces"),clipboardImport:r,clipboardReadError:a}):o.jsx(N4t,{onEnvironment:u})}function R4t(e){return e==="127.0.0.1"}const I4t={id:"coding-agents",kind:"coding-agent",category:"development",icon:"coding-agents",name:"Configure coding agents",badge:"Local",badgeTone:"success",description:"Install built-in VeADK and AgentKit skills globally for Trae, Claude Code, or Codex."},P4t={id:"feishu",kind:"feishu",category:"channels",icon:"feishu",name:"Feishu bot",badge:"Beta",description:"Create a Feishu bot and connect its messages directly to AgentKit Runtime."};on.hasResourceBundle("en-US","automations")||on.addResourceBundle("en-US","automations",tse,!0,!0);on.hasResourceBundle("zh-CN","automations")||on.addResourceBundle("zh-CN","automations",yce,!0,!0);function qd(e,t={}){return on.t(e,{...t,ns:"automations"})}const eRe={name:"repository",label:"GitHub Repo",placeholder:"owner/repository",help:"Enter owner/repository or a full github.com URL",required:!0},tRe={name:"baseBranch",label:"Target branch",placeholder:"main",help:"Defaults to main; the pull request will use this branch as its base",required:!1},nRe={name:"runtimeName",label:"Runtime name",placeholder:"support-agent",help:"Used by the AgentKit delivery configuration",required:!0},iRe={name:"runtimeId",label:"Runtime ID",placeholder:"rt-xxxxxxxx",help:"The AgentKit Runtime that will receive continuous updates",required:!0},D4t="https://ark.cn-beijing.volces.com/api/coding/v3";function M4t(e){return e==="byteplus"?Eo(e):D4t}function sz(e){return e==="byteplus"?{accessKey:"BYTEPLUS_ACCESS_KEY",secretKey:"BYTEPLUS_SECRET_KEY",sessionToken:"BYTEPLUS_SESSION_TOKEN"}:{accessKey:"VOLCENGINE_ACCESS_KEY",secretKey:"VOLCENGINE_SECRET_KEY",sessionToken:"VOLCENGINE_SESSION_TOKEN"}}function rRe(e){const t=sz(e);return[qd("github.secretPair",{accessKey:t.accessKey,secretKey:t.secretKey}),qd("github.sessionToken",{sessionToken:t.sessionToken})]}function az(e){return e==="byteplus"?"BytePlus":"Volcengine"}function oz(e,t={}){return{repository:"",baseBranch:"main",projectPath:".",runtimeName:"",runtimeId:"",modelName:"",modelBaseUrl:M4t(e),region:nr(e),token:"",...t}}function sRe(e){return{repository:e.repository.trim(),baseBranch:e.baseBranch.trim()||"main",region:e.region,token:e.token.trim()}}const L4t={id:"review",kind:"github",category:"development",icon:"github",name:"Automated PR review",description:"Use a GitHub App to review pull requests in an isolated Sandbox.",title:"Automated PR review",subtitle:"Trigger Sandbox reviews through the GitHub App and publish results to pull requests",panel:"Install the GitHub App to target repositories, then enable automated review for each repository.",submitLabel:"Install GitHub App",fields:[],initialValues:({cloudProvider:e})=>oz(e),regionHelp:"",secrets:()=>[],async submit(){throw new Error("PR 自动评审已切换为 GitHub App 授权模式。")}},$4t="https://api.github.com",F4t=/^[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+$/,Yte=/^[A-Za-z0-9][A-Za-z0-9._/-]{0,199}$/,B4t=/^[A-Za-z0-9._/-]+$/;function U4t(e,t,n){const i=String((t==null?void 0:t.message)||"");return e===403&&/workflow/i.test(i)?"GitHub Token 缺少 Workflows 写权限,无法创建或更新 .github/workflows 下的文件":e===401||e===403?H("github.invalidToken"):e===404?H("github.notFound"):e===422?H("github.rejectedCommit"):i.split(n).join("***").trim().slice(0,240)||H("github.requestFailed",{status:e})}async function mg(e,t){const n={Accept:"application/vnd.github+json",Authorization:`Bearer ${t.token}`,"X-GitHub-Api-Version":"2022-11-28"};t.body&&(n["Content-Type"]="application/json");let i;try{i=await fetch(`${$4t}${e}`,{method:t.method||"GET",headers:n,body:t.body?JSON.stringify(t.body):void 0,signal:t.signal})}catch(s){throw t.signal.aborted?s:new Error(H("github.networkFailed"))}const r=await i.json().catch(()=>null);if(!t.expected.includes(i.status))throw new Error(U4t(i.status,r,t.token));return{status:i.status,payload:r}}function gL(e){return e.split("/").map(encodeURIComponent).join("/")}function Q4t(e){const t=new TextEncoder().encode(e);let n="";const i=32768;for(let r=0;r({...h,path:cz(h.path,"")})),s=AbortSignal.any([t,AbortSignal.timeout(6e4)]),a=`/repos/${n}`;await mg(`${a}`,{token:e.token,expected:[200],signal:s});const c=(f=(await mg(`${a}/git/ref/heads/${gL(i)}`,{token:e.token,expected:[200],signal:s})).payload.object)==null?void 0:f.sha;if(!c)throw new Error(H("github.missingBaseSha"));const u=z4t(e.branchPrefix);await mg(`${a}/git/refs`,{token:e.token,expected:[201],signal:s,method:"POST",body:{ref:`refs/heads/${u}`,sha:c}});let d=!0;try{for(const m of r){const g=gL(m.path),b=await mg(`${a}/contents/${g}?ref=${encodeURIComponent(i)}`,{token:e.token,expected:[200,404],signal:s});if(m.mustBeNew&&b.status===200)throw new Error(H("github.fileAlreadyExists",{path:m.path}));if(b.status===200&&!b.payload.sha)throw new Error(H("github.pathNotUpdatable",{path:m.path}));await mg(`${a}/contents/${g}`,{token:e.token,expected:[200,201],signal:s,method:"PUT",body:{message:m.commitMessage,content:Q4t(m.content),branch:u,...b.payload.sha?{sha:b.payload.sha}:{}}})}const h=await mg(`${a}/pulls`,{token:e.token,expected:[201],signal:s,method:"POST",body:{title:e.title,head:u,base:i,body:e.description}});if(!h.payload.number||!h.payload.html_url)throw new Error(H("github.invalidPullRequest"));return d=!1,{number:h.payload.number,url:h.payload.html_url,branch:u}}finally{d&&await mg(`${a}/git/refs/heads/${gL(u)}`,{token:e.token,expected:[204],signal:AbortSignal.timeout(15e3),method:"DELETE"}).catch(()=>{})}}async function V4t(e,t){const n=await Rn("/web/github/pull-request-reviews",{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify(e),signal:t});if(!n.ok)throw await GE(n);const i=await n.json();if(i.status!=="started"||typeof i.sessionId!="string"||!i.sessionId||typeof i.displayName!="string")throw new Error("PR 评审服务返回了无效结果。");return i}async function H4t(e){const t=await Rn("/web/github/app/config",{method:"GET",headers:{Accept:"application/json"},signal:e});if(!t.ok)throw await GE(t);const n=await t.json();if(typeof n.configured!="boolean"||typeof n.appSlug!="string"||typeof n.installUrl!="string"||typeof n.reason!="string")throw new Error("GitHub App 配置响应格式无效。");return n}async function q4t(e,t){var s;const n=new URLSearchParams({page:String(t.page),pageSize:String(t.pageSize)});(s=t.query)!=null&&s.trim()&&n.set("q",t.query.trim());const i=await Rn(`/web/github/app/repositories?${n.toString()}`,{method:"GET",headers:{Accept:"application/json"},signal:e});if(!i.ok)throw await GE(i);const r=await i.json();if(!Array.isArray(r.repositories)||typeof r.page!="number"||typeof r.pageSize!="number"||typeof r.hasNextPage!="boolean"||typeof r.reviewSettingsConfigured!="boolean"||typeof r.reviewSettingsReason!="string"||r.repositories.some(a=>typeof a!="object"||a===null||typeof a.installationId!="number"||typeof a.account!="string"||typeof a.fullName!="string"||typeof a.htmlUrl!="string"||typeof a.private!="boolean"||typeof a.reviewEnabled!="boolean"))throw new Error("GitHub App 仓库列表响应格式无效。");return r}async function W4t(e,t){const n=new URLSearchParams({page:String(t.page),pageSize:String(t.pageSize)}),i=await Rn(`/web/github/app/review-records?${n.toString()}`,{method:"GET",headers:{Accept:"application/json"},signal:e});if(!i.ok)throw await GE(i);const r=await i.json();if(!Array.isArray(r.records)||typeof r.page!="number"||typeof r.pageSize!="number"||typeof r.hasNextPage!="boolean"||typeof r.reviewSettingsConfigured!="boolean"||typeof r.reviewSettingsReason!="string"||r.records.some(s=>typeof s!="object"||s===null||typeof s.id!="string"||typeof s.repository!="string"||typeof s.pullRequestUrl!="string"||typeof s.pullRequestNumber!="number"||!["started","completed","ignored","failed"].includes(String(s.status))||!["manual","webhook"].includes(String(s.trigger))||typeof s.createdAt!="string"||typeof s.deliveryId!="string"||typeof s.action!="string"||typeof s.sessionId!="string"||typeof s.displayName!="string"||typeof s.reason!="string"))throw new Error("PR 评审记录响应格式无效。");return r}async function K4t(e,t){const n=await Rn("/web/github/app/review-repositories",{method:"PUT",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify(e),signal:t});if(!n.ok)throw await GE(n);const i=await n.json();if(!Array.isArray(i.repositories)||i.repositories.some(r=>typeof r!="string"))throw new Error("GitHub App 评审仓库保存响应格式无效。");return i.repositories}async function GE(e){const t=await e.text().catch(()=>"");try{const n=JSON.parse(t),i=typeof n.detail=="object"&&n.detail?n.detail.message:n.detail??n.message??n.error,r=typeof i=="string"?i:"";return new Error(r||`PR 评审发起失败(HTTP ${e.status})`)}catch{return new Error(t||`PR 评审发起失败(HTTP ${e.status})`)}}const G4t=/^[A-Za-z0-9_-]+$/,oRe=4,pj=64,mj=6,Jte="agent-runtime";function lRe(e){const t=e.trim();if(!t)return Jte;let n=t.replace(/[^A-Za-z0-9_-]+/g,"-").replace(/-+/g,"-").replace(/^-+|-+$/g,"").slice(0,pj);return n?(n.lengthFt(`validation.runtimeName.${n}`)){return e?G4t.test(e)?e.lengthpj?t("length"):null:t("characters"):t("required")}const Z4t=/^[A-Za-z0-9][A-Za-z0-9._:-]{0,127}$/,J4t="cn-hongkong";function e6t(e){const t=XE(e.runtimeName,n=>qd(`github.validation.runtimeName.${n}`));if(t)throw new Error(t);if(!Z4t.test(e.runtimeId))throw new Error(qd("github.validation.runtimeId"))}function uRe(e){e6t(e);const t=e.cloudProvider??"volcengine",n=sz(t),i=t==="byteplus"?` VOLCENGINE_ACCESS_KEY: \${{ secrets.${n.accessKey} }} VOLCENGINE_SECRET_KEY: \${{ secrets.${n.secretKey} }} VOLCENGINE_SESSION_TOKEN: \${{ secrets.${n.sessionToken} }} BYTEPLUS_REGION: ${JSON.stringify(e.region)}`:"",r=t==="byteplus"?` - "DATABASE_VIKING_REGION": ${JSON.stringify(M4t)},`:"",s=`name: Publish to AgentKit Runtime + "DATABASE_VIKING_REGION": ${JSON.stringify(J4t)},`:"",s=`name: Publish to AgentKit Runtime on: push: @@ -934,25 +934,25 @@ jobs: if not result.success: raise SystemExit(f"AgentKit publish failed: {result.error}") PY -`,a={__BASE_BRANCH__:JSON.stringify(e.baseBranch),__PROJECT_PATH__:JSON.stringify(e.projectPath),__RUNTIME_NAME__:JSON.stringify(e.runtimeName),__RUNTIME_ID__:JSON.stringify(e.runtimeId),__REGION__:JSON.stringify(e.region),__CLOUD_PROVIDER__:JSON.stringify(t),__ACCESS_KEY_SECRET__:n.accessKey,__SECRET_KEY_SECRET__:n.secretKey,__SESSION_TOKEN_SECRET__:n.sessionToken,__BYTEPLUS_ENV__:i,__BYTEPLUS_RUNTIME_ENV__:r,__CONCURRENCY_GROUP__:JSON.stringify(`agentkit-runtime-${e.runtimeId}`)};return Object.entries(a).reduce((l,[c,u])=>l.split(c).join(u),s)}const $4t={id:"delivery",kind:"github",category:"development",icon:"github",name:"AgentKit Runtime delivery",description:"Add a workflow that continuously delivers your repository to AgentKit Runtime.",title:"AgentKit Runtime delivery",subtitle:"Add continuous delivery to the repository through a pull request",panel:"This creates a release branch and opens a pull request containing the GitHub Actions workflow.",submitLabel:"Confirm and create PR",fields:[Uje,Qje,{name:"projectPath",label:"Agent project directory",placeholder:".",help:"Defaults to the repository root; the directory must contain an app.py that mounts the complete Studio App Server",required:!1},zje,Vje],initialValues:({cloudProvider:e})=>nz(e),regionHelp:"Must match the target Runtime region",secrets:({cloudProvider:e})=>Hje(e),submit(e,t,n){const i=qje(e),r=rz(e.projectPath,"."),s=tz(t.cloudProvider);return Wje({...i,files:[{path:".github/workflows/publish-agentkit.yml",content:Yje({baseBranch:i.baseBranch,projectPath:r,runtimeName:e.runtimeName.trim(),runtimeId:e.runtimeId.trim(),region:i.region,cloudProvider:t.cloudProvider}),commitMessage:"feat: publish Agent to AgentKit Runtime"}],branchPrefix:"feat/agentkit-release",title:Vd("cards.delivery.pullRequest.title"),description:Vd("cards.delivery.pullRequest.description",{provider:s})},n)}};function F4t(e,t){return e==="."?t:`${e}/${t}`}function B4t(e){return`.github/workflows/publish-agentkit-${e.replace(/[^A-Za-z0-9]+/g,"-").replace(/^-|-$/g,"").toLowerCase()||"root"}.yml`}const U4t={volcengine:"agentkit-prod-public-cn-beijing.cr.volces.com/base/py-simple:python3.12-bookworm-slim-latest",byteplus:"agentkit-prod-public-ap-southeast-1.cr.bytepluses.com/base/py-simple:python3.12-bookworm-slim-latest"},Q4t="1.1.9",z4t=["https://repo.huaweicloud.com/repository/pypi/simple","https://mirrors.aliyun.com/pypi/simple/","https://pypi.org/simple"];function V4t(e){return e!=="volcengine"?"RUN uv pip install -r requirements.txt":`RUN ${z4t.map(n=>`uv pip install --index-url ${n} -r requirements.txt`).join(` || \\ - `)}`}function H4t(e){const t=ez(e);return`# Local ${tz(e)} credentials. Never commit real values. +`,a={__BASE_BRANCH__:JSON.stringify(e.baseBranch),__PROJECT_PATH__:JSON.stringify(e.projectPath),__RUNTIME_NAME__:JSON.stringify(e.runtimeName),__RUNTIME_ID__:JSON.stringify(e.runtimeId),__REGION__:JSON.stringify(e.region),__CLOUD_PROVIDER__:JSON.stringify(t),__ACCESS_KEY_SECRET__:n.accessKey,__SECRET_KEY_SECRET__:n.secretKey,__SESSION_TOKEN_SECRET__:n.sessionToken,__BYTEPLUS_ENV__:i,__BYTEPLUS_RUNTIME_ENV__:r,__CONCURRENCY_GROUP__:JSON.stringify(`agentkit-runtime-${e.runtimeId}`)};return Object.entries(a).reduce((l,[c,u])=>l.split(c).join(u),s)}const t6t={id:"delivery",kind:"github",category:"development",icon:"github",name:"AgentKit Runtime delivery",description:"Add a workflow that continuously delivers your repository to AgentKit Runtime.",title:"AgentKit Runtime delivery",subtitle:"Add continuous delivery to the repository through a pull request",panel:"This creates a release branch and opens a pull request containing the GitHub Actions workflow.",submitLabel:"Confirm and create PR",fields:[eRe,tRe,{name:"projectPath",label:"Agent project directory",placeholder:".",help:"Defaults to the repository root; the directory must contain an app.py that mounts the complete Studio App Server",required:!1},nRe,iRe],initialValues:({cloudProvider:e})=>oz(e),regionHelp:"Must match the target Runtime region",secrets:({cloudProvider:e})=>rRe(e),submit(e,t,n){const i=sRe(e),r=cz(e.projectPath,"."),s=az(t.cloudProvider);return aRe({...i,files:[{path:".github/workflows/publish-agentkit.yml",content:uRe({baseBranch:i.baseBranch,projectPath:r,runtimeName:e.runtimeName.trim(),runtimeId:e.runtimeId.trim(),region:i.region,cloudProvider:t.cloudProvider}),commitMessage:"feat: publish Agent to AgentKit Runtime"}],branchPrefix:"feat/agentkit-release",title:qd("cards.delivery.pullRequest.title"),description:qd("cards.delivery.pullRequest.description",{provider:s})},n)}};function n6t(e,t){return e==="."?t:`${e}/${t}`}function i6t(e){return`.github/workflows/publish-agentkit-${e.replace(/[^A-Za-z0-9]+/g,"-").replace(/^-|-$/g,"").toLowerCase()||"root"}.yml`}const r6t={volcengine:"agentkit-prod-public-cn-beijing.cr.volces.com/base/py-simple:python3.12-bookworm-slim-latest",byteplus:"agentkit-prod-public-ap-southeast-1.cr.bytepluses.com/base/py-simple:python3.12-bookworm-slim-latest"},s6t="1.1.9",a6t=["https://repo.huaweicloud.com/repository/pypi/simple","https://mirrors.aliyun.com/pypi/simple/","https://pypi.org/simple"];function o6t(e){return e!=="volcengine"?"RUN uv pip install -r requirements.txt":`RUN ${a6t.map(n=>`uv pip install --index-url ${n} -r requirements.txt`).join(` || \\ + `)}`}function l6t(e){const t=sz(e);return`# Local ${az(e)} credentials. Never commit real values. ${t.accessKey}= ${t.secretKey}= # ${t.sessionToken}= -${e==="byteplus"?"BYTEPLUS_REGION":"VOLCENGINE_REGION"}=${Ji(e)} +${e==="byteplus"?"BYTEPLUS_REGION":"VOLCENGINE_REGION"}=${nr(e)} CLOUD_PROVIDER=${e} AGENTKIT_CLOUD_PROVIDER=${e} # Optional model overrides. # MODEL_AGENT_PROVIDER=openai -# MODEL_AGENT_NAME=${wh(e)} -# MODEL_AGENT_API_BASE=${xl(e)} +# MODEL_AGENT_NAME=${xh(e)} +# MODEL_AGENT_API_BASE=${Eo(e)} # MODEL_AGENT_API_KEY= # Optional Feishu Channel credentials. Studio can create and bind these. FEISHU_APP_ID= FEISHU_APP_SECRET= -`}function q4t(e,t="volcengine"){const n={"app.py":`"""__PROJECT_NAME__ — a VeADK agent with the full Studio App Server.""" +`}function c6t(e,t="volcengine"){const n={"app.py":`"""__PROJECT_NAME__ — a VeADK agent with the full Studio App Server.""" from assistant import root_agent from veadk.integrations.agentkit import create_agentkit_app, run_agentkit_app @@ -996,19 +996,19 @@ root_agent = Agent( instruction="You are a helpful assistant. Use your tools when relevant.", tools=[get_city_weather], ) -`,"requirements.txt":`veadk-python==${Q4t} +`,"requirements.txt":`veadk-python==${s6t} agentkit-sdk-python==0.8.4 google-adk==2.1.0 lark-channel-sdk==1.2.0 lark-oapi==1.7.3 starlette==0.52.1 -`,Dockerfile:`FROM ${U4t[t]} +`,Dockerfile:`FROM ${r6t[t]} ENV UV_SYSTEM_PYTHON=1 UV_COMPILE_BYTECODE=1 PYTHONUNBUFFERED=1 WORKDIR /app COPY requirements.txt ./ -${V4t(t)} +${o6t(t)} COPY . . @@ -1033,7 +1033,7 @@ and local short-term memory fallback. Pushes to the configured target branch are continuously published by the GitHub Actions workflow added with this project. -`,".env.example":H4t(t),".gitignore":`__pycache__/ +`,".env.example":l6t(t),".gitignore":`__pycache__/ *.pyc .venv/ .env @@ -1047,35 +1047,35 @@ __pycache__/ Dockerfile .dockerignore README.md -`};return Object.fromEntries(Object.entries(n).map(([i,r])=>[i,r.split("__PROJECT_NAME__").join(e)]))}const W4t={id:"template",kind:"github",category:"development",icon:"github",name:"Import starter project",description:"Create a minimal Agent project in your repository with continuous delivery to AgentKit Runtime.",title:"Import starter project",subtitle:"Add a ready-to-run basic Agent and continuous delivery configuration to your repository",panel:"This creates a pull request containing the basic project and AgentKit Runtime delivery workflow.",submitLabel:"Import template and create PR",fields:[Uje,Qje,{name:"projectPath",label:"Agent project directory",placeholder:"agentkit-basic-agent",help:"The basic project will be added here; app.py mounts the complete Studio App Server and serves as the entry point",required:!0},zje,Vje],initialValues:({cloudProvider:e})=>nz(e,{projectPath:"agentkit-basic-agent"}),regionHelp:"Must match the target Runtime region",secrets:({cloudProvider:e})=>Hje(e),submit(e,t,n){const i=qje(e),r=iz(i.repository),s=rz(e.projectPath,"agentkit-basic-agent"),a=s==="."?r.split("/").slice(-1)[0]||"agentkit-basic-agent":s.split("/").slice(-1)[0]||"agentkit-basic-agent",l=Object.entries(q4t(a,t.cloudProvider)).map(([c,u])=>({path:F4t(s,c),content:u,commitMessage:"feat: import AgentKit basic template",mustBeNew:!0}));return l.push({path:B4t(s),content:Yje({baseBranch:i.baseBranch,projectPath:s,runtimeName:e.runtimeName.trim(),runtimeId:e.runtimeId.trim(),region:i.region,cloudProvider:t.cloudProvider}),commitMessage:"feat: add AgentKit Runtime delivery",mustBeNew:!0}),Wje({...i,repository:r,files:l,branchPrefix:"feat/agentkit-basic-template",title:Vd("cards.template.pullRequest.title"),description:Vd("cards.template.pullRequest.description",{provider:tz(t.cloudProvider)})},n)}},G4t={id:"website-integration",kind:"website-integration",category:"channels",icon:"website-integration",name:"Website integration",description:"Embed an AgentKit Runtime on your website as a floating chat window."},Hte=[{id:"development",label:"Development"},{id:"channels",label:"Messaging channels"}],Zje=[g4t,W4t,$4t,x4t,b4t,G4t],K4t=new Map(Zje.map(e=>[e.id,e]));function X4t(e){const t=K4t.get(e);if(!t)throw new Error(`Unknown automation: ${e}`);return t}function Y4t(e){const t=X4t(e);if(t.kind!=="github")throw new Error(`Automation is not backed by GitHub: ${e}`);return t}function qte(e){return o.jsxs("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",...e,children:[o.jsx("circle",{cx:"10.8",cy:"10.8",r:"6.2",stroke:"currentColor",strokeWidth:"1.7"}),o.jsx("path",{d:"m15.4 15.4 4 4",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round"})]})}function Z4t(e){return o.jsxs("svg",{viewBox:"0 0 36 36",fill:"none","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"3.5",y:"5",width:"18",height:"18",rx:"5",fill:"currentColor",opacity:"0.1"}),o.jsx("rect",{x:"3.5",y:"5",width:"18",height:"18",rx:"5",stroke:"currentColor",strokeWidth:"1.6"}),o.jsx("path",{d:"m9.2 11.2-2.8 2.7 2.8 2.7M12.1 17.4h4.3",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"}),o.jsx("circle",{cx:"26.5",cy:"12",r:"3",fill:"hsl(var(--background))",stroke:"currentColor",strokeWidth:"1.6"}),o.jsx("circle",{cx:"27",cy:"26.5",r:"3",fill:"hsl(var(--background))",stroke:"currentColor",strokeWidth:"1.6"}),o.jsx("path",{d:"M21.5 12h2M19.3 21l5.6 3.8M27 15v8.5",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round"})]})}function J4t(e){return o.jsxs("svg",{viewBox:"0 0 36 36",fill:"none","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"3.5",y:"5",width:"22",height:"18",rx:"4",stroke:"currentColor",strokeWidth:"1.6"}),o.jsx("path",{d:"M4.5 10h20M9 7.5h.1M12 7.5h.1",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round"}),o.jsx("path",{d:"M18 18.5c0-3 2.5-5.5 5.5-5.5h3c3 0 5.5 2.5 5.5 5.5v5c0 3-2.5 5.5-5.5 5.5H25l-4 3v-3.6a5.5 5.5 0 0 1-3-4.9v-5Z",fill:"hsl(var(--background))",stroke:"currentColor",strokeWidth:"1.6",strokeLinejoin:"round"}),o.jsx("path",{d:"M22 19.5h6M22 23h4",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round"})]})}function e6t({onOpen:e}){var d;const{t}=Te("automations"),[n,i]=p.useState("development"),[r,s]=p.useState(""),a=p.useDeferredValue(r),l=p.useMemo(()=>{const f=a.trim().toLocaleLowerCase();return Zje.filter(h=>h.category===n).filter(h=>!f||`${t(`cards.${h.id}.name`)} ${t(`cards.${h.id}.description`)}`.toLocaleLowerCase().includes(f))},[n,a,t]),c=(d=Hte.find(f=>f.id===n))==null?void 0:d.id,u=m4t(window.location.hostname);return o.jsxs("div",{className:"applications-page",children:[o.jsxs("header",{className:"applications-header",children:[o.jsxs("div",{children:[o.jsx("h1",{children:t("title")}),o.jsx("p",{children:t("description")})]}),o.jsxs("label",{className:"applications-search",children:[o.jsx(qte,{}),o.jsx("input",{type:"search","aria-label":t("search"),value:r,onChange:f=>s(f.target.value),placeholder:t("search")})]})]}),o.jsx("nav",{className:"applications-categories","aria-label":t("categoriesLabel"),children:Hte.map(f=>o.jsx("button",{type:"button",className:n===f.id?"is-active":"","aria-pressed":n===f.id,onClick:()=>i(f.id),children:t(`categories.${f.id}`)},f.id))}),o.jsx("section",{className:"applications-results","aria-label":t("resultsLabel",{category:t(`categories.${c}`)}),children:l.length?o.jsx("div",{className:"applications-grid",children:l.map(f=>{const h=f.id==="coding-agents"&&!u,m=h?"coding-agents-local-only-tooltip":void 0;return o.jsxs("div",{className:`application-card-wrap${h?" is-disabled":""}`,tabIndex:h?0:void 0,"aria-describedby":m,children:[o.jsxs("button",{type:"button",className:"application-card",onClick:()=>e(f.id),"aria-label":t("open",{name:t(`cards.${f.id}.name`)}),disabled:h,children:[f.icon==="feishu"?o.jsx("img",{className:"application-card-icon application-card-brand-icon",src:QI,alt:"","aria-hidden":"true"}):f.icon==="coding-agents"?o.jsx(Z4t,{className:"application-card-icon"}):f.icon==="website-integration"?o.jsx(J4t,{className:"application-card-icon"}):o.jsx(YQ,{className:"application-card-icon"}),o.jsxs("div",{className:"application-card-copy",children:[o.jsxs("div",{className:"application-card-title",children:[o.jsx("h2",{children:t(`cards.${f.id}.name`)}),f.badge?o.jsx("span",{className:`application-card-badge is-${f.badgeTone||"default"}`,children:t(`cards.${f.id}.badge`,{defaultValue:f.badge})}):null]}),o.jsx("p",{children:t(`cards.${f.id}.description`)})]})]}),h?o.jsx("span",{id:m,className:"application-card-tooltip",role:"tooltip",children:t("localOnly")}):null]},f.id)})}):o.jsxs("div",{className:"applications-empty",role:"status",children:[o.jsx(qte,{}),o.jsx("h2",{children:t("emptyTitle")}),o.jsx("p",{children:t("emptyDescription")})]})})]})}const t6t="_Container_1bl61_1",n6t="_Track_1bl61_16",i6t="_Thumb_1bl61_56",r6t="_Label_1bl61_78",y2={Container:t6t,Track:n6t,Thumb:i6t,Label:r6t},C8=({className:e,label:t,id:n,disabled:i,labelPosition:r="end",...s})=>{const a=p.useId(),l=n??a;return o.jsxs("div",{className:pi(y2.Container,e),"data-disabled":i?"":void 0,"data-has-label":t?"":void 0,"data-label-position":r,children:[o.jsx(mWe,{id:l,className:y2.Track,disabled:i,...s,children:o.jsx(bWe,{className:y2.Thumb})}),t&&o.jsx("label",{htmlFor:l,className:y2.Label,children:t})]})};function Lb({message:e,className:t="",onRetry:n,retryLabel:i,defaultExpanded:r=!0}){const{t:s}=Te("ui"),a=i??s("deploymentError.retryDeployment"),[l,c]=p.useState(r),[u,d]=p.useState(!1),f=async()=>{if(!(!n||u)){d(!0);try{await n()}finally{d(!1)}}};return o.jsxs("div",{className:`deploy-error-message${l?" is-expanded":""}${t?` ${t}`:""}`,role:"alert",children:[o.jsx("p",{className:"deploy-error-message-text",children:e}),o.jsxs("div",{className:"deploy-error-message-actions",children:[n&&o.jsxs(Ht,{type:"button",className:"deploy-error-retry",color:"danger",variant:"soft",size:"sm",pill:!1,loading:u,onClick:()=>void f(),children:[!u&&o.jsx(jFe,{}),u?s("deploymentError.retrying"):a]}),o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"sm",uniform:!0,pill:!1,title:s(l?"deploymentError.collapse":"deploymentError.expand"),"aria-label":s(l?"deploymentError.collapse":"deploymentError.expand"),onClick:()=>c(h=>!h),children:l?o.jsx(MFe,{}):o.jsx(UFe,{})}),o.jsx(X7,{copyValue:e,color:"secondary",variant:"ghost",size:"sm",uniform:!0,pill:!1,title:s("deploymentError.copy"),"aria-label":s("deploymentError.copy"),children:({copied:h})=>h?o.jsx(Lv,{}):o.jsx(PF,{})})]})]})}const s6t={queued:"status.queued",pending:"status.pending",running:"status.running",retrying:"status.retrying",success:"status.success",failed:"status.failed",cancelled:"status.cancelled",skipped:"status.skipped"},Jje=["weekdays.sunday","weekdays.monday","weekdays.tuesday","weekdays.wednesday","weekdays.thursday","weekdays.friday","weekdays.saturday"];function T8(e){if(!e)return"-";const t=new Date(e);return Number.isNaN(t.getTime())?e:new Intl.DateTimeFormat(an.resolvedLanguage,{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1}).format(t).replace(/\//g,"-")}function a6t(e){if(!e.startedAt)return"-";const t=Date.parse(e.startedAt),n=e.finishedAt?Date.parse(e.finishedAt):Date.now();if(!Number.isFinite(t)||!Number.isFinite(n)||n{const d=i.current;!d||r.current||c(d.scrollHeight>d.clientHeight+1)},[]);return p.useLayoutEffect(()=>{r.current=s,s||u()},[s,u,e]),p.useEffect(()=>{const d=i.current;if(!d||typeof ResizeObserver>"u")return;const f=new ResizeObserver(u);return f.observe(d),()=>f.disconnect()},[u]),o.jsxs("div",{className:`cronjobs-run-output-body${s?" is-expanded":""}`,children:[o.jsx("p",{id:n,ref:i,children:e}),l?o.jsx(Ht,{type:"button",className:"cronjobs-run-output-toggle",color:"secondary",variant:"ghost",size:"sm",pill:!1,"aria-expanded":s,"aria-controls":n,onClick:()=>a(d=>!d),children:t(s?"actions.collapse":"actions.expand")}):null]})}const _8="Asia/Shanghai",l6t=3e3,c6t=["Asia/Shanghai","Asia/Singapore","Asia/Tokyo","Europe/London","America/Los_Angeles","America/New_York","UTC"];function St(e,t){return an.t(e,{ns:"cronjobs",...t})}function u6t(){try{return Intl.DateTimeFormat().resolvedOptions().timeZone||_8}catch{return _8}}function d6t(){const e=u6t(),t=new Date(Date.now()+24*60*60*1e3);return t.setSeconds(0,0),{name:"",runtimeId:"",prompt:"",scheduleType:"daily",onceAt:new Date(t.getTime()-t.getTimezoneOffset()*6e4).toISOString().slice(0,16),time:"09:00",weekday:1,cron:"0 9 * * *",timezone:e,enabled:!0}}function f6t(e){return{name:e.name,runtimeId:e.runtimeId,prompt:e.prompt,scheduleType:e.schedule.type,onceAt:e.schedule.onceAt??"",time:e.schedule.time??"09:00",weekday:e.schedule.weekday??1,cron:e.schedule.cron??"0 9 * * *",timezone:e.schedule.timezone||_8,enabled:e.enabled}}function h6t({run:e}){const t=e?e.status==="success"?"success":e.status==="failed"?"danger":["queued","pending","running","retrying"].includes(e.status)?"info":"secondary":"secondary";return o.jsx(ba,{className:"cronjobs-status",color:t,variant:"soft",size:"sm",pill:!0,children:St(e?s6t[e.status]:"status.notRun")})}function Wte({job:e,runtimes:t,cloudProvider:n,busy:i,onClose:r,onSubmit:s}){const[a,l]=p.useState(()=>e?f6t(e):d6t()),[c,u]=p.useState(""),[d,f]=p.useState(!1),h=p.useRef(null),m=p.useRef(null),g=p.useRef(null),b=i||d,v=p.useRef(b),y=p.useRef(r),x=p.useMemo(()=>Array.from(new Set([a.timezone,...c6t])),[a.timezone]),O=p.useMemo(()=>t.map(E=>({value:E.runtimeId,label:E.name,description:xh(E.region,n)})),[n,t]),w=p.useMemo(()=>Jje.map((E,C)=>({value:String(C),label:St(E)})),[]),k=p.useMemo(()=>x.map(E=>({value:E,label:E})),[x]);p.useEffect(()=>{v.current=b,y.current=r},[b,r]),p.useEffect(()=>{var _;const E=document.body.style.overflow,C=document.activeElement instanceof HTMLElement?document.activeElement:null;document.body.style.overflow="hidden",(_=m.current)==null||_.focus();const N=j=>{var R,L;if(j.key==="Escape"&&!v.current){y.current();return}if(j.key!=="Tab")return;const A=Array.from(((R=h.current)==null?void 0:R.querySelectorAll('button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])'))??[]).filter(M=>!M.hidden&&M.getClientRects().length>0);if(A.length===0){j.preventDefault();return}const F=A[0],T=A[A.length-1],P=document.activeElement;j.shiftKey&&(P===F||!((L=h.current)!=null&&L.contains(P)))?(j.preventDefault(),T.focus()):!j.shiftKey&&P===T&&(j.preventDefault(),F.focus())};return window.addEventListener("keydown",N),()=>{document.body.style.overflow=E,window.removeEventListener("keydown",N),C!=null&&C.isConnected&&C.focus()}},[]);const S=async E=>{E.preventDefault();const C=a.name.trim(),N=a.prompt.trim(),_=t.find(A=>A.runtimeId===a.runtimeId);if(!C)return u(St("validation.nameRequired"));if(!_)return u(St("validation.runtimeRequired"));if(!N)return u(St("validation.promptRequired"));if(a.scheduleType==="once"&&!a.onceAt||(a.scheduleType==="daily"||a.scheduleType==="weekly")&&!a.time)return u(St("validation.timeRequired"));const j=a.cron.trim().split(/\s+/);if(a.scheduleType==="cron"&&j.length!==5)return u(St("validation.cronFields"));u(""),f(!0);try{let A=(e==null?void 0:e.runtimeId)===_.runtimeId?e.agentName.trim():"";if(!A){const[F]=await zk("","",{runtimeId:_.runtimeId,region:_.region});A=(F==null?void 0:F.trim())??""}if(!A)throw new Error(St("validation.runtimeAppMissing"));await s({name:C,runtimeId:_.runtimeId,runtimeName:_.name,agentName:A,region:_.region,prompt:N,enabled:a.enabled,schedule:{type:a.scheduleType,timezone:a.timezone,...a.scheduleType==="once"?{onceAt:a.onceAt}:{},...a.scheduleType==="daily"?{time:a.time}:{},...a.scheduleType==="weekly"?{time:a.time,weekday:a.weekday}:{},...a.scheduleType==="cron"?{cron:a.cron.trim()}:{}}})}catch(A){u(A instanceof Error?A.message:String(A)),window.requestAnimationFrame(()=>{var F;return(F=g.current)==null?void 0:F.focus()})}finally{f(!1)}};return o.jsx("div",{className:"cronjobs-drawer-backdrop",onMouseDown:E=>{E.target===E.currentTarget&&!b&&r()},children:o.jsxs("aside",{ref:h,className:"cronjobs-drawer",role:"dialog","aria-modal":"true","aria-labelledby":"cronjobs-drawer-title",children:[o.jsxs("header",{className:"cronjobs-drawer-head",children:[o.jsxs("div",{children:[o.jsx("h2",{id:"cronjobs-drawer-title",children:St(e?"drawer.editTitle":"drawer.createTitle")}),o.jsx("p",{children:St("drawer.description")})]}),o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"lg",uniform:!0,pill:!1,onClick:r,disabled:b,"aria-label":St("actions.closeDrawer"),children:o.jsx(DF,{})})]}),o.jsxs("form",{className:"cronjobs-form",onSubmit:E=>void S(E),children:[o.jsxs("div",{className:"cronjobs-form-scroll",children:[o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.name")}),o.jsx(qr,{ref:m,size:"lg",value:a.name,maxLength:80,invalid:!!c&&!a.name.trim(),onChange:E=>l({...a,name:E.target.value}),placeholder:St("fields.namePlaceholder")})]}),o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.runtimeAgent")}),o.jsx(Ls,{value:a.runtimeId,options:O,size:"lg",disabled:t.length===0,placeholder:St(t.length?"fields.runtimePlaceholder":"fields.noRuntime"),onChange:E=>l({...a,runtimeId:E.value})}),o.jsx("small",{children:St("fields.runtimeHelp")})]}),o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.prompt")}),o.jsx(Rm,{value:a.prompt,rows:5,maxRows:10,autoResize:!0,maxLength:2e4,invalid:!!c&&!a.prompt.trim(),onChange:E=>l({...a,prompt:E.target.value}),placeholder:St("fields.promptPlaceholder")}),o.jsxs("small",{className:"cronjobs-character-count",children:[a.prompt.length.toLocaleString()," / 20,000"]})]}),o.jsxs("fieldset",{className:"cronjobs-fieldset",children:[o.jsx("legend",{children:St("fields.schedule")}),o.jsxs(zc,{className:"cronjobs-schedule-types",value:a.scheduleType,size:"lg",block:!0,"aria-label":St("fields.scheduleType"),onChange:E=>l({...a,scheduleType:E}),children:[o.jsx(zc.Option,{value:"once",children:St("scheduleTypes.once")}),o.jsx(zc.Option,{value:"daily",children:St("scheduleTypes.daily")}),o.jsx(zc.Option,{value:"weekly",children:St("scheduleTypes.weekly")}),o.jsx(zc.Option,{value:"cron",children:"Cron"})]}),a.scheduleType==="once"?o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.runAt")}),o.jsx(qr,{size:"lg",type:"datetime-local",value:a.onceAt,onChange:E=>l({...a,onceAt:E.target.value})})]}):null,a.scheduleType==="daily"?o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.dailyTime")}),o.jsx(qr,{size:"lg",type:"time",value:a.time,onChange:E=>l({...a,time:E.target.value})})]}):null,a.scheduleType==="weekly"?o.jsxs("div",{className:"cronjobs-inline-fields",children:[o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.weekday")}),o.jsx(Ls,{value:String(a.weekday),options:w,size:"lg",onChange:E=>l({...a,weekday:Number(E.value)})})]}),o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.runAt")}),o.jsx(qr,{size:"lg",type:"time",value:a.time,onChange:E=>l({...a,time:E.target.value})})]})]}):null,a.scheduleType==="cron"?o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.cronExpression")}),o.jsx(qr,{size:"lg",value:a.cron,onChange:E=>l({...a,cron:E.target.value}),placeholder:"0 9 * * *"}),o.jsx("small",{children:St("fields.cronHelp")})]}):null,o.jsxs("label",{className:"cronjobs-field",children:[o.jsx("span",{children:St("fields.timezone")}),o.jsx(Ls,{value:a.timezone,options:k,size:"lg",onChange:E=>l({...a,timezone:E.value})})]})]}),o.jsxs("div",{className:"cronjobs-switch-row",children:[o.jsxs("span",{children:[o.jsx("strong",{children:St("fields.enableAfterCreate")}),o.jsx("small",{children:St("fields.enableHelp")})]}),o.jsx(C8,{checked:a.enabled,onCheckedChange:E=>l({...a,enabled:E}),"aria-label":St("fields.enableAfterCreate")})]}),c?o.jsx("div",{ref:g,className:"cronjobs-inline-error",tabIndex:-1,children:o.jsx(Eb,{color:"danger",variant:"soft",description:c})}):null]}),o.jsxs("footer",{className:"cronjobs-drawer-actions",children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"lg",pill:!1,onClick:r,disabled:b,children:St("actions.cancel")}),o.jsx(Ht,{type:"submit",color:"primary",size:"lg",pill:!1,loading:b,disabled:t.length===0,"aria-busy":b||void 0,children:St(d?"actions.connectingRuntime":i?"actions.saving":e?"actions.saveChanges":"actions.createTask")})]})]})]})})}function p6t({jobs:e,canCreate:t,onCreate:n,onSelect:i}){return o.jsxs(Vx,{children:[o.jsx(Cb,{icon:o.jsx(vbe,{}),onClick:n,disabled:!t,title:St(t?"actions.createScheduledTask":"fields.noRuntime"),children:St("actions.createScheduledTask")}),e.map(r=>{const s=eRe(r.schedule);return o.jsx(pE,{className:"cronjobs-card",title:r.name,status:o.jsx(ba,{color:r.enabled?"success":"secondary",variant:"soft",size:"sm",pill:!0,children:St(r.enabled?"status.enabled":"status.paused")}),description:r.prompt,metadata:[{label:St("fields.schedule"),value:s,title:s}],detailAction:{label:St("actions.viewDetails"),onClick:()=>i(r)}},r.jobId)})]})}function m6t({job:e,runs:t,runsLoading:n,runsError:i,busyAction:r,onBack:s,onEdit:a,onToggle:l,onRun:c,onDelete:u,onCancel:d,onRetryRun:f,onRetryRuns:h}){const m=t.find(b=>b.status==="queued"||b.status==="running"||b.status==="retrying"||b.status==="pending")??(A8(e)?e.latestRun:void 0),g=r.includes(e.jobId);return o.jsxs("div",{className:"cronjobs-detail",children:[o.jsxs("header",{className:"cronjobs-detail-head",children:[o.jsxs("div",{className:"cronjobs-detail-title",children:[o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"lg",uniform:!0,pill:!1,onClick:s,"aria-label":St("actions.backToList"),children:o.jsx(_Fe,{})}),o.jsxs("div",{children:[o.jsx("h1",{children:e.name}),o.jsxs("p",{children:[e.runtimeName||e.agentName," · ",eRe(e.schedule)]})]})]}),o.jsxs("div",{className:"cronjobs-detail-actions",children:[o.jsxs(Ht,{type:"button",color:"secondary",variant:"outline",size:"lg",pill:!1,onClick:a,disabled:g,children:[o.jsx(BFe,{}),St("actions.edit")]}),o.jsxs(Ht,{type:"button",color:"secondary",variant:"outline",size:"lg",pill:!1,onClick:l,disabled:g,children:[e.enabled?o.jsx(qFe,{}):o.jsx(vW,{}),St(e.enabled?"actions.pause":"actions.enable")]}),m?o.jsxs(Ht,{type:"button",color:"danger",variant:"soft",size:"lg",pill:!1,onClick:()=>d(m),disabled:g||!!m.cancellationRequestedAt,children:[o.jsx(YFe,{}),St(m.cancellationRequestedAt?m.status==="queued"?"actions.cancelling":"actions.stopping":m.status==="queued"?"actions.cancelQueue":"actions.stopRun")]}):o.jsxs(Ht,{type:"button",color:"primary",size:"lg",pill:!1,onClick:c,disabled:g||!e.enabled,children:[o.jsx(vW,{}),St("actions.runNow")]}),o.jsx(go,{compact:!0,content:St(m?m.status==="queued"?"actions.cancelQueueFirst":"actions.stopRunFirst":"actions.deleteTask"),children:o.jsxs(Ht,{type:"button",color:"danger",variant:"ghost",size:"lg",pill:!1,onClick:u,disabled:g||!!m,"aria-label":St("actions.deleteTask"),children:[o.jsx(LFe,{}),St("actions.delete")]})})]})]}),o.jsxs("div",{className:"cronjobs-detail-scroll",children:[o.jsxs("section",{className:"cronjobs-summary-grid","aria-label":St("detail.configuration"),children:[o.jsxs("dl",{children:[o.jsxs("div",{children:[o.jsx("dt",{children:St("detail.status")}),o.jsx("dd",{children:St(e.enabled?"status.enabled":"status.paused")})]}),o.jsxs("div",{children:[o.jsx("dt",{children:St("detail.nextRun")}),o.jsx("dd",{children:e.enabled?T8(e.nextRunAt):"-"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:St("detail.runtime")}),o.jsx("dd",{title:e.runtimeName,children:e.runtimeName})]}),o.jsxs("div",{children:[o.jsx("dt",{children:St("detail.region")}),o.jsx("dd",{children:e.region})]})]}),o.jsxs("div",{className:"cronjobs-prompt",children:[o.jsx("span",{children:St("fields.prompt")}),o.jsx("p",{children:e.prompt})]})]}),o.jsxs("section",{className:"cronjobs-history",children:[o.jsxs("header",{children:[o.jsxs("div",{children:[o.jsx("h2",{children:St("history.title")}),o.jsx("p",{children:St("history.description")})]}),o.jsx(go,{compact:!0,content:St("actions.refresh"),children:o.jsx(Ht,{type:"button",color:"secondary",variant:"ghost",size:"lg",uniform:!0,pill:!1,onClick:h,disabled:n,"aria-label":St("actions.refreshHistory"),children:o.jsx(Kj,{})})})]}),n&&t.length===0?o.jsx(Ud,{}):i?o.jsx(Eb,{className:"cronjobs-history-alert",color:"danger",variant:"soft",title:St("history.loadFailed"),description:i,actions:o.jsx(Ht,{type:"button",color:"danger",variant:"soft",size:"sm",pill:!1,onClick:h,children:St("actions.retry")})}):t.length===0?o.jsxs(Cn,{className:"cronjobs-history-state",fill:"none",children:[o.jsx(Cn.Icon,{children:o.jsx(IF,{})}),o.jsx(Cn.Title,{children:St("history.emptyTitle")}),o.jsx(Cn.Description,{children:St("history.emptyDescription")})]}):o.jsx("div",{className:"cronjobs-runs",children:t.map(b=>o.jsxs("article",{className:"cronjobs-run",children:[o.jsxs("div",{className:"cronjobs-run-main",children:[o.jsx(h6t,{run:b}),o.jsxs("div",{children:[o.jsx("strong",{children:T8(b.startedAt||b.scheduledAt)}),o.jsxs("span",{children:[St("history.duration",{duration:a6t(b)}),b.runtimeVersion?` · Runtime v${b.runtimeVersion}`:""]})]})]}),b.sessionId?o.jsxs("div",{className:"cronjobs-run-meta",children:[o.jsx("span",{children:St("history.session")}),o.jsx("strong",{title:b.sessionId,children:b.sessionId})]}):null,b.output?o.jsxs("div",{className:"cronjobs-run-output",children:[o.jsx("span",{children:St("history.finalAnswer")}),o.jsx(o6t,{output:b.output})]}):null,b.error?o.jsxs("div",{className:"cronjobs-run-output is-error",children:[o.jsx("span",{children:St("history.errorDetails")}),o.jsx(Lb,{message:b.error,className:"cronjobs-run-error-detail",defaultExpanded:!1,onRetry:b.status==="failed"?f:void 0,retryLabel:St("actions.rerun")})]}):null,b.status==="queued"||b.status==="running"||b.status==="retrying"||b.status==="pending"?o.jsx(Ht,{type:"button",className:"cronjobs-run-cancel",color:"danger",variant:"soft",size:"sm",pill:!1,onClick:()=>d(b),disabled:g||!!b.cancellationRequestedAt,loading:!!b.cancellationRequestedAt,children:St(b.cancellationRequestedAt?"actions.stopping":b.status==="queued"?"actions.cancelQueue":"actions.stop")}):null]},b.runId))})]})]})]})}function g6t({cloudProvider:e}){Te("cronjobs");const[t,n]=p.useState([]),[i,r]=p.useState([]),[s,a]=p.useState(!0),[l,c]=p.useState(""),[u,d]=p.useState(""),[f,h]=p.useState(void 0),[m,g]=p.useState([]),[b,v]=p.useState(!1),[y,x]=p.useState(""),[O,w]=p.useState(""),[k,S]=p.useState("all"),[E,C]=p.useState(""),[N,_]=p.useState(null),[j,A]=p.useState(""),F=t.find(B=>B.jobId===u),T=k==="all"?t:t.filter(B=>k==="enabled"?B.enabled:!B.enabled),P=p.useCallback(async B=>{a(!0),c("");try{const[ee,le]=await Promise.all([E4(B),_x({scope:"all",region:"all",pageSize:100})]);if(B!=null&&B.aborted)return;n(ee),r(le.runtimes.filter(se=>se.status.toLowerCase()==="ready"))}catch(ee){if(B!=null&&B.aborted)return;console.warn("Unable to load scheduled tasks",ee),c(St("page.loadFailedDescription"))}finally{B!=null&&B.aborted||a(!1)}},[]);p.useEffect(()=>{const B=new AbortController;return P(B.signal),()=>B.abort()},[P]);const R=p.useCallback(async(B,ee)=>{v(!0),x("");try{const le=await C4(B,ee);ee!=null&&ee.aborted||g(le)}catch(le){ee!=null&&ee.aborted||(console.warn("Unable to load scheduled-task history",le),x(St("history.loadFailedDescription")))}finally{ee!=null&&ee.aborted||v(!1)}},[]);p.useEffect(()=>{if(!u){g([]),x("");return}const B=new AbortController;return R(u,B.signal),()=>B.abort()},[R,u]);const L=t.some(A8);p.useEffect(()=>{!L&&E===St("notices.queued")&&C("")},[L,E]),p.useEffect(()=>{if(!L)return;const B=new AbortController,ee=async()=>{try{const[se,re]=await Promise.all([E4(B.signal),u?C4(u,B.signal):Promise.resolve(null)]);if(B.signal.aborted)return;n(se),re&&g(re),se.some(A8)||C("")}catch(se){B.signal.aborted||C(se instanceof Error?se.message:String(se))}},le=window.setInterval(()=>void ee(),l6t);return()=>{window.clearInterval(le),B.abort()}},[L,u]);const M=B=>n(ee=>ee.some(le=>le.jobId===B.jobId)?ee.map(le=>le.jobId===B.jobId?B:le):[B,...ee]),U=async(B,ee,le,se=!1)=>{w(B),C("");try{await ee(),C(le)}catch(re){const ge=re instanceof Error?re.message:String(re);if(se)throw new Error(ge);C(ge)}finally{w("")}},I=async B=>{const ee=f??null;await U(`${(ee==null?void 0:ee.jobId)??"new"}:save`,async()=>{const le=ee?await W0e(ee.jobId,B):await q0e(B);M(le),h(void 0),ee&&d(le.jobId)},St(ee?"notices.updated":"notices.created"),!0)},H=B=>void U(`${B.jobId}:toggle`,async()=>M(await G0e(B.jobId,!B.enabled)),St(B.enabled?"notices.paused":"notices.enabled")),K=(B,ee)=>U(`${B.jobId}:run`,async()=>{const le=await K0e(B.jobId);M({...B,latestRun:le}),u===B.jobId&&g(se=>[le,...se.filter(re=>re.runId!==le.runId)])},ee),Q=B=>void K(B,St("notices.queued")),q=()=>{if(!N)return;A("");const B=N;B.kind==="delete"?U(`${B.job.jobId}:delete`,async()=>{await Y0e(B.job.jobId),n(ee=>ee.filter(le=>le.jobId!==B.job.jobId)),d(""),_(null)},St("notices.deleted"),!0).catch(ee=>{A(ee instanceof Error?ee.message:String(ee))}):U(`${B.job.jobId}:cancel`,async()=>{var le;const ee=await X0e(B.job.jobId,B.run.runId);g(se=>se.map(re=>re.runId===ee.runId?ee:re)),M({...B.job,latestRun:((le=B.job.latestRun)==null?void 0:le.runId)===ee.runId?ee:B.job.latestRun}),_(null)},St("notices.cancelRequested"),!0).catch(ee=>{A(ee instanceof Error?ee.message:String(ee))})};return F?o.jsxs(Th,{className:"cronjobs-page","aria-label":St("detail.pageLabel"),children:[o.jsx(m6t,{job:F,runs:m,runsLoading:b,runsError:y,busyAction:O,onBack:()=>d(""),onEdit:()=>h(F),onToggle:()=>H(F),onRun:()=>Q(F),onDelete:()=>{A(""),_({kind:"delete",job:F})},onCancel:B=>{A(""),_({kind:"cancel",job:F,run:B})},onRetryRun:()=>K(F,St("notices.requeued")),onRetryRuns:()=>void R(F.jobId)}),E?o.jsx("div",{className:"cronjobs-notice",role:"status",children:o.jsx(Eb,{color:"info",variant:"soft",description:E})}):null,f!==void 0?o.jsx(Wte,{job:f,runtimes:i,cloudProvider:e,busy:O.endsWith(":save"),onClose:()=>h(void 0),onSubmit:I}):null,N?o.jsx(pc,{title:St(N.kind==="delete"?"confirm.deleteTitle":"confirm.cancelTitle"),description:N.kind==="delete"?St("confirm.deleteDescription",{name:N.job.name}):St("confirm.cancelDescription"),error:j,confirmLabel:St(N.kind==="delete"?"actions.deleteTask":"actions.stop"),variant:"danger",busy:O.endsWith(N.kind),onCancel:()=>{A(""),_(null)},onConfirm:q}):null]}):o.jsxs(Th,{className:"cronjobs-page","aria-label":St("page.title"),children:[o.jsx(zx,{className:"cronjobs-page-head",title:St("page.title")}),o.jsx(Zb,{children:o.jsx(dE,{idPrefix:"cronjobs-filter",ariaLabel:St("page.filterLabel"),value:k,items:[{id:"all",label:St("filters.all")},{id:"enabled",label:St("status.enabled")},{id:"paused",label:St("status.paused")}],onChange:S})}),E?o.jsx("div",{className:"cronjobs-banner",role:"status",children:o.jsx(Eb,{color:"info",variant:"soft",description:E})}):null,o.jsx(Jb,{"aria-label":St("page.listLabel"),children:s&&t.length===0?o.jsx(Ud,{}):l?o.jsxs(Cn,{className:"cronjobs-state",fill:"none",children:[o.jsx(Cn.Icon,{color:"danger",children:o.jsx(IF,{})}),o.jsx(Cn.Title,{color:"danger",children:St("page.loadFailed")}),o.jsx(Cn.Description,{children:l}),o.jsx(Cn.ActionRow,{children:o.jsxs(Ht,{type:"button",color:"secondary",variant:"outline",size:"lg",pill:!1,onClick:()=>void P(),children:[o.jsx(Kj,{}),St("actions.retry")]})})]}):o.jsx(p6t,{jobs:T,canCreate:!s&&i.length>0,onCreate:()=>h(null),onSelect:B=>d(B.jobId)})}),f!==void 0?o.jsx(Wte,{job:f,runtimes:i,cloudProvider:e,busy:O.endsWith(":save"),onClose:()=>h(void 0),onSubmit:I}):null]})}function tRe({label:e,onClick:t}){return o.jsx("button",{type:"button",className:"page-back-button","aria-label":e,title:e,onClick:t,children:o.jsx("svg",{viewBox:"0 0 24 24",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m14.5 6-6 6 6 6"})})})}const b6t={volcengine:"https://console.volcengine.com",byteplus:"https://console.byteplus.com"};function Sk(e){return e.trim()}function sz(e){return b6t[e]}function y6t(e){const t=Sk(e);if(!t)return null;let n=t;try{n=new URL(t.includes("://")?t:`https://${t}`).hostname}catch{return null}const i=n.match(/^(.+)\.tos-([a-z0-9-]+)\.(?:volces|bytepluses)\.com$/i);return i?{bucket:i[1],region:i[2]}:null}function v6t(e,t){const n=y6t(t);if(!n)return null;const i=new URLSearchParams({id:n.bucket,region:n.region,type:"objects"});return`${sz(e)}/tos/bucket/setting?${i.toString()}`}function x6t(e,t,n){const i=Sk(t),r=Sk(n);return!i||!r?null:`${sz(e)}/agentkit/region:agentkit+${encodeURIComponent(i)}/builtintools/${encodeURIComponent(r)}/detail`}function w6t(e,t,n){const i=Sk(t),r=Sk(n);return!i||!r?null:`${sz(e)}/identity/region:identity+${encodeURIComponent(i)}/user-pools/${encodeURIComponent(r)}/info`}function lw({href:e,label:t,children:n}){return e?o.jsxs("a",{className:"system-info-resource-link",href:e,target:"_blank",rel:"noreferrer","aria-label":t,title:t,children:[o.jsx("span",{children:n}),o.jsxs("svg",{viewBox:"0 0 20 20","aria-hidden":"true",children:[o.jsx("path",{d:"M7.75 5.25h-2.5a1.5 1.5 0 0 0-1.5 1.5v8a1.5 1.5 0 0 0 1.5 1.5h8a1.5 1.5 0 0 0 1.5-1.5v-2.5"}),o.jsx("path",{d:"M10.25 3.75h6v6M16 4 9 11"})]})]}):o.jsx("span",{children:n})}function O6t(e){return e instanceof Error&&e.message.includes("Volcengine credentials not found")}function S6t({spinning:e}){return o.jsx("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.75",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",className:e?"is-spinning":"",children:o.jsx("path",{d:"M19.5 9A8 8 0 0 0 5 6L3 9m0-5v5h5M4.5 15A8 8 0 0 0 19 18l2-3m0 5v-5h-5"})})}function k6t(){return{busy:!1,error:"",message:""}}function E6t({version:e,localMode:t,role:n,provider:i,region:r,onBack:s}){const{t:a}=Te("ui"),l=n==="admin",[c,u]=p.useState(""),[d,f]=p.useState([]),[h,m]=p.useState([]),[g,b]=p.useState(null),[v,y]=p.useState(!0),[x,O]=p.useState(""),[w,k]=p.useState(!0),[S,E]=p.useState(""),[C,N]=p.useState(!0),[_,j]=p.useState(""),[A,F]=p.useState(0),[T,P]=p.useState(0),[R,L]=p.useState(0),M=p.useRef(!1),[U,I]=p.useState({}),[H,K]=p.useState({}),[Q,q]=p.useState(""),[B,ee]=p.useState(!0),le=p.useRef(new Set),se=p.useRef(0),re=`${i}:${r}`,ge=p.useRef(re);ge.current=re,p.useEffect(()=>{K({}),I({})},[re]),p.useEffect(()=>(M.current=!0,()=>{M.current=!1}),[]);function W(ae,ue){I(Oe=>({...Oe,[ae]:{...k6t(),...Oe[ae],...ue}}))}async function X(ae){if(!ae.toolId||le.current.has(ae.toolId))return;const ue=re;le.current.add(ae.toolId),se.current+=1,W(ae.toolId,{busy:!0,error:"",message:""});try{const Oe=await fye(ae.kind);if(!M.current||ge.current!==ue)return;se.current+=1,K(ke=>({...ke,[ae.toolId]:Oe.state})),W(ae.toolId,{busy:!1,error:"",message:Oe.updated?a("systemInfo.modelEnvUpdated"):a("systemInfo.modelEnvAlreadyCurrent")})}catch{if(!M.current||ge.current!==ue)return;se.current+=1,W(ae.toolId,{busy:!1,error:a("systemInfo.sandboxUpdateError"),message:""})}finally{le.current.delete(ae.toolId)}}return p.useEffect(()=>{if(!l)return;const ae=new AbortController,ue=++se.current;return q(""),ee(!0),dye(ae.signal).then(Oe=>{ae.signal.aborted||ue!==se.current||K(Object.fromEntries(Oe.map(ke=>[ke.toolId,ke])))}).catch(()=>{!ae.signal.aborted&&ue===se.current&&q(a("systemInfo.versionCheckError"))}).finally(()=>{ae.signal.aborted||ee(!1)}),()=>ae.abort()},[l,i,r,A]),p.useEffect(()=>{if(!Object.values(H).some(ue=>ue.status==="Updating"||ue.status==="Creating"))return;const ae=window.setTimeout(()=>F(ue=>ue+1),5e3);return()=>window.clearTimeout(ae)},[H]),p.useEffect(()=>{if(!l){u(""),f([]),y(!1),O("");return}const ae=new AbortController;return y(!0),O(""),f0e(ae.signal).then(ue=>{ae.signal.aborted||(u(ue.storage.tosAddress),f(ue.sandboxTools))}).catch(ue=>{(ue==null?void 0:ue.name)!=="AbortError"&&O(a("systemInfo.sandboxInfoError"))}).finally(()=>{ae.signal.aborted||y(!1)}),()=>ae.abort()},[l,i,r,A]),p.useEffect(()=>{if(!l){m([]),k(!1),E("");return}const ae=new AbortController;return k(!0),E(""),aR(ae.signal).then(ue=>{m(ue.filter(Oe=>Oe.isCurrent))}).catch(ue=>{if((ue==null?void 0:ue.name)!=="AbortError"){if(t&&O6t(ue)){m([]);return}E(a("systemInfo.userPoolError"))}}).finally(()=>{ae.signal.aborted||k(!1)}),()=>ae.abort()},[l,t,T]),p.useEffect(()=>{if(!l){b(null),N(!1),j("");return}const ae=new AbortController;return N(!0),j(""),j0e(ae.signal).then(b).catch(ue=>{(ue==null?void 0:ue.name)!=="AbortError"&&j(a("systemInfo.environmentResourcesError"))}).finally(()=>{ae.signal.aborted||N(!1)}),()=>ae.abort()},[l,R]),o.jsxs("div",{className:"system-info-page",children:[o.jsxs("header",{className:"system-info-page-header",children:[o.jsx(tRe,{label:a("common.back"),onClick:s}),o.jsxs("div",{children:[o.jsx("h1",{children:a("systemInfo.title")}),o.jsx("p",{children:a("systemInfo.description")})]})]}),o.jsxs("div",{className:"system-info-scroll",children:[o.jsxs("section",{className:"system-info-section","aria-labelledby":"studio-info-title",children:[o.jsx("h2",{id:"studio-info-title",children:a("systemInfo.general")}),o.jsx("dl",{className:"system-info-summary",children:o.jsxs("div",{children:[o.jsx("dt",{children:a("systemInfo.currentVersion")}),o.jsx("dd",{children:e||"—"})]})})]}),l?o.jsxs(o.Fragment,{children:[o.jsxs("section",{className:"system-info-section","aria-labelledby":"storage-info-title",children:[o.jsx("h2",{id:"storage-info-title",children:a("systemInfo.storage")}),v?o.jsx("div",{className:"system-info-loading",role:"status","aria-live":"polite",children:o.jsx(xn,{as:"span",children:a("systemInfo.loadingStorage")})}):x?o.jsxs("div",{className:"system-info-error",role:"alert",children:[o.jsx("p",{children:x}),o.jsx("button",{type:"button",onClick:()=>F(ae=>ae+1),children:a("common.reload")})]}):o.jsx("dl",{className:"system-info-summary",children:o.jsxs("div",{className:"system-info-resource-row",children:[o.jsx("dt",{children:a("systemInfo.tosAddress")}),o.jsx("dd",{className:`system-info-resource-value${c?"":" is-empty"}`,children:o.jsx(lw,{href:v6t(i,c),label:a("systemInfo.openTosConsole"),children:c||a("common.notConfigured")})})]})})]}),o.jsxs("section",{className:"system-info-section","aria-labelledby":"environment-build-info-title",children:[o.jsx("h2",{id:"environment-build-info-title",children:a("systemInfo.environmentBuild")}),C?o.jsx("div",{className:"system-info-loading",role:"status","aria-live":"polite",children:o.jsx(xn,{as:"span",children:a("systemInfo.loadingEnvironmentResources")})}):_?o.jsxs("div",{className:"system-info-error",role:"alert",children:[o.jsx("p",{children:_}),o.jsx("button",{type:"button",onClick:()=>L(ae=>ae+1),children:a("common.reload")})]}):g?o.jsxs("dl",{className:"system-info-summary",children:[o.jsxs("div",{className:"system-info-resource-row",children:[o.jsx("dt",{children:a("systemInfo.codePipelineWorkspace")}),o.jsx("dd",{className:"system-info-resource-value",children:o.jsx(lw,{href:g.codePipeline.consoleUrl||null,label:a("systemInfo.openCodePipelineWorkspace"),children:g.codePipeline.workspaceName||g.codePipeline.workspaceId||a("systemInfo.createdOnFirstBuild")})})]}),o.jsxs("div",{className:"system-info-resource-row",children:[o.jsx("dt",{children:a("systemInfo.codePipelinePipeline")}),o.jsx("dd",{className:"system-info-resource-value",children:g.codePipeline.pipelineName||g.codePipeline.pipelineId||a("systemInfo.createdOnFirstBuild")})]}),o.jsxs("div",{className:"system-info-resource-row",children:[o.jsx("dt",{children:a("systemInfo.containerRegistryRepository")}),o.jsx("dd",{className:"system-info-resource-value",children:o.jsx(lw,{href:g.containerRegistry.consoleUrl||null,label:a("systemInfo.openContainerRegistryRepository"),children:g.containerRegistry.imageRepository||[g.containerRegistry.registry,g.containerRegistry.namespace,g.containerRegistry.repository].filter(Boolean).join("/")||a("systemInfo.createdOnFirstBuild")})})]})]}):null]}),o.jsxs("section",{className:"system-info-section","aria-labelledby":"sandbox-tool-title",children:[o.jsx("h2",{id:"sandbox-tool-title",children:a("systemInfo.sandboxInfo")}),o.jsx("button",{type:"button",className:"system-info-refresh",disabled:B,onClick:()=>F(ae=>ae+1),children:a(B?"systemInfo.checkingVersions":"systemInfo.checkUpdates")}),v?o.jsx("div",{className:"system-info-loading",role:"status","aria-live":"polite",children:o.jsx(xn,{as:"span",children:a("systemInfo.loadingSandboxInfo")})}):x?o.jsxs("div",{className:"system-info-error",role:"alert",children:[o.jsx("p",{children:x}),o.jsx("button",{type:"button",onClick:()=>F(ae=>ae+1),children:a("common.reload")})]}):o.jsxs("div",{className:"system-info-tool-list",children:[Q?o.jsx("span",{className:"system-info-inline-error",role:"alert",children:Q}):null,d.map(ae=>{var Le;const ue=H[ae.toolId],Oe=U[ae.toolId],ke=!!ae.toolId&&!!(ue!=null&&ue.canUpdate),st=(Oe==null?void 0:Oe.error)||(ue!=null&&ue.error?a("systemInfo.versionCheckError"):ue!=null&&ue.modelEnvError?a("systemInfo.modelEnvRepairUnavailable"):"");return o.jsx("dl",{className:"system-info-tool",children:o.jsxs("div",{className:"system-info-resource-row",children:[o.jsxs("dt",{className:"system-info-tool-label",children:[o.jsx("span",{children:ae.label}),ae.snapshot?o.jsx("span",{className:"system-info-tool-badge",children:a("systemInfo.snapshot")}):null]}),o.jsxs("dd",{className:`system-info-resource-value${ae.toolId?"":" is-empty"}`,children:[o.jsx(lw,{href:x6t(i,(ue==null?void 0:ue.region)||r,ae.toolId),label:a("systemInfo.openToolConsole",{name:ae.label}),children:ae.toolId||a("common.notConfigured")}),ke?o.jsx("button",{type:"button",className:"system-info-resource-update",disabled:Oe==null?void 0:Oe.busy,"aria-busy":(Oe==null?void 0:Oe.busy)||void 0,"aria-label":a("systemInfo.updateSandbox",{name:ae.label,variant:ae.snapshot?a("systemInfo.snapshotWithSpace"):""}),title:a("systemInfo.updateSandbox",{name:ae.label,variant:ae.snapshot?a("systemInfo.snapshotWithSpace"):""}),onClick:()=>void X(ae),children:o.jsx(S6t,{spinning:(Oe==null?void 0:Oe.busy)||!1})}):null,ue!=null&&ue.currentImage?o.jsxs("span",{className:"system-info-inline-status",title:`${ue.currentImage} → ${ue.latestImage}`,children:[ue.currentImage.split(":").pop(),ue.needsImageUpdate?` → ${(Le=ue.latestImage)==null?void 0:Le.split(":").pop()}`:"",ue.status==="Updating"?` · ${a("systemInfo.updatingSandbox")}`:""]}):null,Oe!=null&&Oe.message?o.jsx("span",{className:"system-info-inline-status",role:"status",children:Oe.message}):null,st?o.jsx("span",{className:"system-info-inline-error",role:"alert",children:st}):null]})]})},ae.kind)})]})]}),o.jsxs("section",{className:"system-info-section","aria-labelledby":"user-pool-title",children:[o.jsx("h2",{id:"user-pool-title",children:a("systemInfo.userPool")}),w?o.jsx("div",{className:"system-info-loading",role:"status","aria-live":"polite",children:o.jsx(xn,{as:"span",children:a("systemInfo.loadingUserPool")})}):S?o.jsxs("div",{className:"system-info-error",role:"alert",children:[o.jsx("p",{children:S}),o.jsx("button",{type:"button",onClick:()=>P(ae=>ae+1),children:a("common.reload")})]}):h.length>0?o.jsx("div",{className:"system-info-pool-list",children:h.map(ae=>o.jsxs("dl",{className:"system-info-pool",children:[o.jsxs("div",{children:[o.jsx("dt",{children:a("common.name")}),o.jsx("dd",{className:"system-info-resource-value",children:o.jsx(lw,{href:w6t(i,ae.region||r,ae.uid),label:a("systemInfo.openUserPoolConsole",{name:ae.name||""}),children:ae.name||a("systemInfo.unnamedUserPool")})})]}),o.jsxs("div",{children:[o.jsx("dt",{children:a("systemInfo.id")}),o.jsx("dd",{children:ae.uid||"—"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:a("systemInfo.domain")}),o.jsx("dd",{children:ae.domain||"—"})]}),o.jsxs("div",{children:[o.jsx("dt",{children:a("systemInfo.region")}),o.jsx("dd",{children:ae.region||"—"})]})]},ae.uid))}):o.jsx("p",{className:"system-info-empty",children:a(t?"systemInfo.noLocalUserPool":"systemInfo.noUserPool")})]})]}):null]})]})}const C6t="_TextLink_16uec_1",T6t={TextLink:C6t},v2=e=>{const{children:t,primary:n=!1,underline:i=!n,className:r,target:s,forceExternal:a,as:l,href:c,to:u,...d}=e,f=a??/^https?:\/\//.test(c??u??""),h=Bxe(),m=l||(f?"a":h),g={...d,className:pi(T6t.TextLink,r),"data-primary":n?"":void 0,"data-underline":i?"":void 0};if(!c&&!u)return o.jsx("span",{...g,role:"button",children:t});const b={...f?{target:"_blank",rel:"noopener noreferrer",href:c??u}:{href:c,to:u},...g};return o.jsx(m,{...b,children:t})},A6t="/assets/media/article-agent-workflow-GXPkXUjV.webp",_6t="/assets/media/article-tool-debugging-BxiMDz_8.webp",N6t="/assets/media/showcase-a2ui-BgBnE9RT.webp",j6t="/assets/media/showcase-customer-service-DNw0mUH1.webp",R6t="/assets/media/showcase-multimodal-BRTl8NLI.webp",I6t="/assets/media/showcase-research-assistant-CbfMFfhS.webp",P6t="/assets/media/showcase-web-search-D2kl1imN.webp",D6t={volcengine:{console:"https://console.volcengine.com/agentkit",docs:"https://www.volcengine.com/docs/86681/1844823"},byteplus:{console:"https://console.byteplus.com/agentkit",docs:"https://docs.byteplus.com/en/docs/AgentKit"}};function M6t(e){return D6t[e]}const L6t=[{id:"documentation",titleKey:"developerResources.sections.documentation.title",descriptionKey:"developerResources.sections.documentation.description"},{id:"best-practices",titleKey:"developerResources.sections.bestPractices.title",descriptionKey:"developerResources.sections.bestPractices.description"},{id:"showcases",titleKey:"developerResources.sections.showcases.title",descriptionKey:"developerResources.sections.showcases.description"}],$6t="https://volcengine.github.io/veadk-python/",F6t="https://volcengine.github.io/agentkit-sdk-python/content/2.agentkit-cli/1.overview.html",B6t=[{id:"veadk-development",titleKey:"developerResources.articles.veadkDevelopment.title",descriptionKey:"developerResources.articles.veadkDevelopment.description",meta:"AgentKit · VeADK",image:A6t,href:"https://docs.volcengine.com/docs/86681/2155817?lang=zh"},{id:"agentkit-cli-development",titleKey:"developerResources.articles.cliDevelopment.title",descriptionKey:"developerResources.articles.cliDevelopment.description",meta:"AgentKit · CLI",image:_6t,href:"https://docs.volcengine.com/docs/86681/1844871?lang=zh"}],U6t=[{id:"research-assistant",titleKey:"developerResources.showcases.researchAssistant.title",descriptionKey:"developerResources.showcases.researchAssistant.description",image:I6t,href:"https://github.com/volcengine/veadk-python/tree/main/examples/06_multi_agent"},{id:"multimodal-analysis",titleKey:"developerResources.showcases.multimodalAnalysis.title",descriptionKey:"developerResources.showcases.multimodalAnalysis.description",image:R6t,href:"https://github.com/volcengine/veadk-python/tree/main/examples/multimodal_agent"},{id:"customer-service",titleKey:"developerResources.showcases.customerService.title",descriptionKey:"developerResources.showcases.customerService.description",image:j6t,href:"https://github.com/volcengine/veadk-python/tree/main/examples/basic-app"},{id:"web-search",titleKey:"developerResources.showcases.webSearch.title",descriptionKey:"developerResources.showcases.webSearch.description",image:P6t,href:"https://github.com/volcengine/veadk-python/tree/main/examples/04_web_search"},{id:"a2ui-app",titleKey:"developerResources.showcases.a2uiApp.title",descriptionKey:"developerResources.showcases.a2uiApp.description",image:N6t,href:"https://github.com/volcengine/veadk-python/tree/main/examples/a2ui_agent"}];function Q6t({cloudProvider:e}){const{t}=Te("workspaceTools"),n=M6t(e);return o.jsxs(Th,{className:"developer-resources","aria-label":t("developerResources.title"),children:[o.jsx(zx,{title:t("developerResources.title")}),o.jsx("div",{className:"developer-resources__content",children:L6t.map(i=>o.jsxs("section",{className:"developer-resources__section","aria-labelledby":`developer-resources-${i.id}`,children:[o.jsxs("header",{className:"developer-resources__section-header",children:[o.jsx("h2",{id:`developer-resources-${i.id}`,children:t(i.titleKey)}),o.jsx("p",{children:t(i.descriptionKey)})]}),i.id==="documentation"?o.jsxs("ul",{className:"developer-resources__links",children:[o.jsx("li",{children:o.jsxs(v2,{className:"developer-resources__link",primary:!0,underline:!0,href:$6t,target:"_blank",rel:"noreferrer",children:[t("developerResources.links.veadkDocs"),o.jsx(YC,{"aria-hidden":"true"})]})}),o.jsx("li",{children:o.jsxs(v2,{className:"developer-resources__link",primary:!0,underline:!0,href:F6t,target:"_blank",rel:"noreferrer",children:[t("developerResources.links.cliDocs"),o.jsx(YC,{"aria-hidden":"true"})]})}),o.jsx("li",{children:o.jsxs(v2,{className:"developer-resources__link",primary:!0,underline:!0,href:n.docs,target:"_blank",rel:"noreferrer",children:[t("developerResources.links.platformDocs"),o.jsx(YC,{"aria-hidden":"true"})]})}),o.jsx("li",{children:o.jsxs(v2,{className:"developer-resources__link",primary:!0,underline:!0,href:n.console,target:"_blank",rel:"noreferrer",children:[t("developerResources.links.console"),o.jsx(YC,{"aria-hidden":"true"})]})})]}):i.id==="best-practices"?o.jsx("div",{className:"developer-resources__articles",children:B6t.map(r=>o.jsxs("a",{className:"developer-resources__article",href:r.href,target:"_blank",rel:"noreferrer",children:[o.jsx("img",{src:r.image,alt:t("developerResources.articles.coverAlt",{title:t(r.titleKey)}),loading:"lazy"}),o.jsxs("span",{className:"developer-resources__article-copy",children:[o.jsx("strong",{children:t(r.titleKey)}),o.jsx("span",{children:t(r.descriptionKey)}),o.jsx("small",{children:r.meta})]})]},r.id))}):i.id==="showcases"?o.jsx("div",{className:"developer-resources__showcases",children:U6t.map(r=>o.jsxs("a",{className:"developer-resources__showcase",href:r.href,target:"_blank",rel:"noreferrer",children:[o.jsx("span",{className:"developer-resources__showcase-media",children:o.jsx("img",{src:r.image,alt:t("developerResources.showcases.previewAlt",{title:t(r.titleKey)}),loading:"lazy"})}),o.jsx("strong",{children:t(r.titleKey)}),o.jsx("span",{children:t(r.descriptionKey)})]},r.id))}):null]},i.id))})]})}const x2=10;function z6t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m9.8 3.5-4.5 4.5 4.5 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}function V6t({hidden:e,...t}){return o.jsxs("svg",{viewBox:"0 0 20 20",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",...t,children:[o.jsx("path",{d:"M2.5 10s2.6-4 7.5-4 7.5 4 7.5 4-2.6 4-7.5 4-7.5-4-7.5-4Z"}),o.jsx("circle",{cx:"10",cy:"10",r:"1.8"}),e?o.jsx("path",{d:"m4 4 12 12"}):null]})}function dg(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M6.5 4H4.8A1.8 1.8 0 0 0 3 5.8v5.4A1.8 1.8 0 0 0 4.8 13h5.4a1.8 1.8 0 0 0 1.8-1.8V9.5M9 3h4v4M12.5 3.5 7.2 8.8",stroke:"currentColor",strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})})}function H6t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m4 6 4 4 4-4",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}function q6t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m3.5 8.2 2.8 2.8 6.2-6.2",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}function cw(e,t,n){const i=t.trim();if(!i)return n?"github.validation.required":"";if(e==="repository"&&!/^(?:https:\/\/github\.com\/)?[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+(?:\.git)?$/.test(i))return"github.validation.repository";if(e==="baseBranch"&&(!/^[A-Za-z0-9][A-Za-z0-9._/-]*$/.test(i)||i.includes("..")))return"github.validation.baseBranch";if(e==="projectPath"&&(i.startsWith("/")||i.split("/").includes("..")))return"github.validation.projectPath";if(e==="runtimeName")return qE(i,r=>`github.validation.runtimeName.${r}`)??"";if(e==="runtimeId"&&!/^[A-Za-z0-9][A-Za-z0-9._:-]{0,127}$/.test(i))return"github.validation.runtimeId";if(e==="modelName"&&!/^[A-Za-z0-9][A-Za-z0-9._:/-]{0,127}$/.test(i))return"github.validation.modelName";if(e==="modelBaseUrl")try{const r=new URL(i);if(r.protocol!=="https:"||r.username||r.password||r.search||r.hash)return"github.validation.modelBaseUrlSafe"}catch{return"github.validation.modelBaseUrl"}return e==="pullRequestUrl"&&!/^https:\/\/github\.com\/[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+\/pull\/[1-9][0-9]*\/?$/.test(i)?"请输入完整的 GitHub Pull Request URL":""}function W6t(e){try{return`https://github.com/${iz(e)}`}catch{return""}}function G6t(e){return e==="started"?"评审中":e==="completed"?"已完成":e==="ignored"?"已忽略":"失败"}function K6t(e){return e==="webhook"?"自动触发":"手动发起"}function X6t(e){return e.reason?e.status!=="ignored"?e.reason:e.reason==="repository-review-disabled"?"忽略原因:仓库未开启自动评审":e.reason==="pull-request-not-reviewable"?"忽略原因:该 PR 事件不需要评审,仅评审新建、更新、重新打开和转为可评审的非 Draft、非 fork PR":e.reason==="review-settings-unavailable"?"忽略原因:自动评审设置不可用":e.reason==="unsupported-event"?"忽略原因:不是 Pull Request 事件":`忽略原因:${e.reason}`:""}function Y6t(e){const t=new Date(e);return Number.isNaN(t.getTime())?e:t.toLocaleString("zh-CN",{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"})}function Gte(e,t,n,i){if(n===0)return`第 ${e} 页`;const r=(e-1)*t+1,s=r+n-1;return`第 ${e} 页 · ${r}-${s}${i?"+":""}`}function Z6t({automation:e,cloudProvider:t,onBack:n,onOpenSandboxSession:i}){const{t:r}=Te("automations"),s=Y4t(e),a=e==="review",l=Iu(t),c=s.secrets({cloudProvider:t}),[u,d]=p.useState(()=>({...s.initialValues({cloudProvider:t})})),f=l.find(Qe=>Qe.value===u.region),[h,m]=p.useState({}),[g,b]=p.useState(""),[v,y]=p.useState(!1),[x,O]=p.useState(!1),[w,k]=p.useState(!1),[S,E]=p.useState(null),[C,N]=p.useState(""),[_,j]=p.useState(null),[A,F]=p.useState(""),[T,P]=p.useState(!1),[R,L]=p.useState(null),[M,U]=p.useState(""),[I,H]=p.useState(a),[K,Q]=p.useState([]),[q,B]=p.useState(a),[ee,le]=p.useState(""),[se,re]=p.useState(null),[ge,W]=p.useState(1),[X,ae]=p.useState(!1),[ue,Oe]=p.useState(""),[ke,st]=p.useState(""),[Le,Me]=p.useState(""),[Ie,qe]=p.useState([]),[Ae,ze]=p.useState(a),[Ee,De]=p.useState(""),[J,he]=p.useState(null),[_e,Ze]=p.useState(1),[at,wt]=p.useState(!1),Se=p.useRef(null),ve=p.useRef(null),He=p.useRef(null),Je=p.useRef(null),Ce=p.useRef(null),Wt=W6t(u.repository),ln=Wt.replace("https://github.com/",""),cn=Wt?`${Wt}/settings/secrets/actions`:"",Ot=(R==null?void 0:R.appSlug)||"agentkit-veadk-studio",jt=(R==null?void 0:R.installUrl)||`https://github.com/apps/${Ot}/installations/new`,ot=zte(C),gt=K.filter(Qe=>Qe.reviewEnabled),Pe=ot?K.find(Qe=>Qe.fullName.toLowerCase()===ot.toLowerCase()):void 0,Et=ge>1||X,bt=_e>1||at;p.useEffect(()=>()=>{var Qe,tt,ht,pe,We;(Qe=Se.current)==null||Qe.abort(),(tt=ve.current)==null||tt.abort(),(ht=He.current)==null||ht.abort(),(pe=Je.current)==null||pe.abort(),(We=Ce.current)==null||We.abort()},[]),p.useEffect(()=>{var Qe,tt,ht;d({...s.initialValues({cloudProvider:t})}),m({}),b(""),E(null),k(!1),(Qe=Se.current)==null||Qe.abort(),(tt=ve.current)==null||tt.abort(),(ht=Ce.current)==null||ht.abort(),j(null),F(""),qe([]),De(""),he(null),W(1),ae(!1),Oe(""),st(""),Ze(1),wt(!1)},[e,t,s]),p.useEffect(()=>{var tt;if(!a)return;(tt=He.current)==null||tt.abort();const Qe=new AbortController;He.current=Qe,H(!0),U(""),A4t(Qe.signal).then(ht=>{He.current===Qe&&(L(ht),ht.configured||(B(!1),ze(!1)))}).catch(ht=>{Qe.signal.aborted||He.current!==Qe||(U(ht instanceof Error?ht.message:String(ht)),B(!1),ze(!1))}).finally(()=>{He.current===Qe&&(He.current=null,H(!1))})},[a]);const Mt=(Qe=ge,tt=ke)=>{var pe;(pe=Je.current)==null||pe.abort();const ht=new AbortController;Je.current=ht,B(!0),le(""),_4t(ht.signal,{page:Qe,pageSize:x2,query:tt}).then(We=>{if(Je.current===ht){if(We.repositories.length===0&&We.page>1){W(We.page-1),Mt(We.page-1);return}Q(We.repositories),W(We.page),ae(We.hasNextPage),re({reviewSettingsConfigured:We.reviewSettingsConfigured,reviewSettingsReason:We.reviewSettingsReason})}}).catch(We=>{ht.signal.aborted||Je.current!==ht||le(We instanceof Error?We.message:String(We))}).finally(()=>{Je.current===ht&&(Je.current=null,B(!1))})},$e=(Qe=_e)=>{var ht;(ht=Ce.current)==null||ht.abort();const tt=new AbortController;Ce.current=tt,ze(!0),De(""),N4t(tt.signal,{page:Qe,pageSize:x2}).then(pe=>{if(Ce.current===tt){if(pe.records.length===0&&pe.page>1){Ze(pe.page-1),$e(pe.page-1);return}qe(pe.records),Ze(pe.page),wt(pe.hasNextPage),he({reviewSettingsConfigured:pe.reviewSettingsConfigured,reviewSettingsReason:pe.reviewSettingsReason})}}).catch(pe=>{tt.signal.aborted||Ce.current!==tt||De(pe instanceof Error?pe.message:String(pe))}).finally(()=>{Ce.current===tt&&(Ce.current=null,ze(!1))})};p.useEffect(()=>{!a||(R==null?void 0:R.configured)!==!0||(Mt(1),$e(1))},[R==null?void 0:R.configured,a]);const ye=()=>{const Qe=ue.trim();st(Qe),W(1),Mt(1,Qe)},Ue=()=>{Oe(""),st(""),W(1),Mt(1,"")},Ke=(Qe,tt)=>{if(!(tt<1)){if(Qe==="repositories"){W(tt),Mt(tt,ke);return}Ze(tt),$e(tt)}},ft=async Qe=>{if((se==null?void 0:se.reviewSettingsConfigured)!==!0||Le)return;const tt=new AbortController;Me(Qe.fullName),le("");try{const ht=await j4t({repository:Qe.fullName,reviewEnabled:!Qe.reviewEnabled},tt.signal),pe=new Set(ht.map(We=>We.toLowerCase()));Q(We=>We.map(vt=>({...vt,reviewEnabled:pe.has(vt.fullName.toLowerCase())})))}catch(ht){le(ht instanceof Error?ht.message:String(ht))}finally{Me("")}},ut=(Qe,tt)=>{d(ht=>({...ht,[Qe]:tt})),h[Qe]&&m(ht=>({...ht,[Qe]:""}))},Gt=Qe=>{var We;const tt=!a&&Qe==="token"||Qe==="pullRequestUrl"||((We=s.fields.find(vt=>vt.name===Qe))==null?void 0:We.required)===!0,ht=Qe==="pullRequestUrl"?C:u[Qe],pe=cw(Qe,ht,tt);m(vt=>({...vt,[Qe]:pe}))},Rt=async Qe=>{var pe;if(Qe.preventDefault(),a)return;const tt={};for(const We of s.fields){const vt=cw(We.name,u[We.name],We.required);vt&&(tt[We.name]=vt)}if(!a){const We=cw("token",u.token,!0);We&&(tt.token=We)}if(m(tt),Object.keys(tt).length)return;(pe=Se.current)==null||pe.abort();const ht=new AbortController;Se.current=ht,y(!0),b(""),E(null);try{const We=await s.submit(u,{cloudProvider:t},ht.signal);if(Se.current!==ht)return;E(We),d(vt=>({...vt,token:""}))}catch(We){if(ht.signal.aborted||Se.current!==ht)return;b(We instanceof Error?We.message:String(We))}finally{Se.current===ht&&(Se.current=null,y(!1))}},zt=Qe=>{Qe.key==="Enter"&&(Qe.nativeEvent.isComposing||Qe.nativeEvent.keyCode===229)&&Qe.preventDefault()},Z=async()=>{var pe;const Qe={},tt=cw("pullRequestUrl",C,!0);if(tt&&(Qe.pullRequestUrl=tt),!tt){const We=zte(C),vt=K.find(vn=>vn.fullName.toLowerCase()===We.toLowerCase());vt?vt.reviewEnabled||(Qe.pullRequestUrl=`请先在下方开启 ${vt.fullName} 的评审`):Qe.pullRequestUrl="PR URL 所属仓库尚未安装 GitHub App"}if(m(Qe),Object.keys(Qe).length)return;(pe=ve.current)==null||pe.abort();const ht=new AbortController;ve.current=ht,P(!0),F(""),j(null);try{const We=await T4t({pullRequestUrl:C.trim()},ht.signal);if(ve.current!==ht)return;j(We),d(vt=>({...vt,token:""})),$e(),i==null||i(We.sessionId)}catch(We){if(ht.signal.aborted||ve.current!==ht)return;F(We instanceof Error?We.message:String(We))}finally{ve.current===ht&&(ve.current=null,P(!1))}},Bt=Qe=>{const{name:tt,placeholder:ht,required:pe}=Qe,We=tt==="repository",vt=`cards.${e}.fields.${tt}`;return o.jsxs("div",{className:"github-field",children:[o.jsxs("div",{className:"github-field-label-row",children:[o.jsxs("label",{htmlFor:`github-${tt}`,children:[o.jsx("span",{children:r(`${vt}.label`)}),o.jsx("span",{className:`github-field-requirement${pe?" is-required":""}`,children:r(pe?"github.required":"github.optional")})]}),We?o.jsxs("a",{className:"github-field-action",href:"https://github.com/",target:"_blank",rel:"noreferrer",children:["https://github.com/",o.jsx(dg,{})]}):null]}),o.jsx("input",{id:`github-${tt}`,value:u[tt],onChange:vn=>ut(tt,vn.target.value),onBlur:()=>Gt(tt),placeholder:r(`${vt}.placeholder`,{defaultValue:ht}),required:pe,"aria-invalid":!!h[tt],"aria-describedby":`github-${tt}-help${h[tt]?` github-${tt}-error`:""}`}),o.jsx("span",{id:`github-${tt}-help`,className:"github-field-help",children:We&&ln?a?r("github.repositoryReviewHelp",{repository:ln}):r("github.repositoryConfigHelp",{repository:ln}):r(`${vt}.help`)}),h[tt]?o.jsx("span",{id:`github-${tt}-error`,className:"github-field-error",role:"alert",children:r(h[tt])}):null]},tt)};return o.jsxs("div",{className:"github-integration-page",children:[o.jsxs("header",{className:"github-integration-header",children:[o.jsx("button",{type:"button",className:"github-back",onClick:n,"aria-label":r("backToAutomations"),children:o.jsx(z6t,{})}),o.jsx(YQ,{className:"github-integration-logo"}),o.jsxs("div",{children:[o.jsx("h1",{children:r(`cards.${e}.title`)}),o.jsx("p",{children:r(`cards.${e}.subtitle`)})]})]}),o.jsx("div",{className:"github-integration-layout",children:o.jsxs("section",{id:`github-panel-${e}`,className:"github-section-panel",children:[o.jsx("div",{className:"github-panel-heading",children:o.jsx("p",{children:r(`cards.${e}.panel`)})}),o.jsxs("form",{className:"github-release-form",onSubmit:Rt,onKeyDown:zt,noValidate:!0,children:[a?null:o.jsxs("div",{className:"github-field-grid",children:[s.fields.map(Bt),o.jsxs("div",{className:"github-field",children:[o.jsxs("label",{id:"github-region-label",children:[o.jsx("span",{children:r("github.region")}),o.jsx("span",{className:"github-field-requirement is-required",children:r("github.required")})]}),o.jsxs("div",{className:"pp-network-region github-region-picker",onKeyDown:Qe=>{Qe.key==="Escape"&&k(!1)},children:[o.jsxs("button",{type:"button",className:"pp-region-trigger","aria-labelledby":"github-region-label","aria-haspopup":"listbox","aria-expanded":w,onClick:()=>k(Qe=>!Qe),children:[o.jsx("span",{children:(f==null?void 0:f.label)??u.region}),o.jsx(H6t,{className:`pp-region-chevron${w?" is-open":""}`})]}),w?o.jsxs(o.Fragment,{children:[o.jsx("div",{className:"menu-scrim",onClick:()=>k(!1)}),o.jsx("div",{className:"pp-region-menu",role:"listbox","aria-label":r("github.region"),children:l.map(Qe=>{const tt=Qe.value===u.region;return o.jsxs("button",{type:"button",role:"option","aria-selected":tt,className:`pp-region-option${tt?" is-selected":""}`,onClick:()=>{ut("region",Qe.value),k(!1)},children:[o.jsx("span",{children:Qe.label}),tt?o.jsx(q6t,{}):null]},Qe.value)})})]}):null]}),o.jsx("span",{className:"github-field-help",children:r(`cards.${e}.regionHelp`)})]})]}),a?o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:`github-app-card${R!=null&&R.configured?" is-ready":""}`,children:[o.jsxs("div",{children:[o.jsx("strong",{children:"GitHub App 授权"}),o.jsx("span",{children:I?"正在检查中心服务配置...":R!=null&&R.configured?`安装 ${Ot} 到目标仓库后,可在下方开启自动评审。`:M||(R==null?void 0:R.reason)||"管理员未配置 GitHub App。"})]}),o.jsxs("a",{className:"github-app-install-link",href:jt,target:"_blank",rel:"noreferrer",children:["安装 GitHub App",o.jsx(dg,{})]})]}),o.jsxs("section",{className:"github-review-section github-app-repositories","aria-labelledby":"github-app-repositories-title",children:[o.jsxs("div",{className:"github-review-section-header",children:[o.jsxs("div",{children:[o.jsx("h2",{id:"github-app-repositories-title",children:"已安装仓库"}),o.jsx("p",{children:"只有开启评审的仓库会响应 GitHub webhook 自动触发。"})]}),o.jsx("button",{type:"button",onClick:()=>Mt(),disabled:!(R!=null&&R.configured)||q,children:q?"刷新中...":"刷新"})]}),ee?o.jsx("div",{className:"github-submit-message is-error",role:"alert",children:ee}):null,(se==null?void 0:se.reviewSettingsConfigured)===!1&&!ee?o.jsx("div",{className:"github-submit-message is-error",role:"alert",children:se.reviewSettingsReason||"管理员未配置 Studio 持久化存储,无法保存启用评审设置。"}):null,o.jsxs("div",{className:"github-app-repository-search",children:[o.jsx("input",{type:"search",value:ue,onChange:Qe=>Oe(Qe.target.value),onKeyDown:Qe=>{Qe.key==="Enter"&&(Qe.preventDefault(),ye())},placeholder:"搜索 owner 或仓库名","aria-label":"搜索已安装仓库"}),o.jsx("button",{type:"button",onClick:ye,disabled:!(R!=null&&R.configured)||q,children:"搜索"}),ke?o.jsx("button",{type:"button",onClick:Ue,disabled:q,children:"清除"}):null]}),q&&K.length===0?o.jsx("div",{className:"github-app-repository-empty",children:"正在读取 GitHub App 安装仓库..."}):null,!q&&K.length===0&&!ee?o.jsx("div",{className:"github-app-repository-empty",children:ke?`没有匹配 “${ke}” 的已安装仓库。`:"GitHub App 尚未安装到任何仓库。"}):null,K.length>0?o.jsx("div",{className:"github-app-repository-list",children:K.map(Qe=>{const tt=Le===Qe.fullName,ht=(se==null?void 0:se.reviewSettingsConfigured)!==!0||!!Le;return o.jsxs("div",{className:"github-app-repository-row",children:[o.jsxs("div",{className:"github-app-repository-main",children:[o.jsxs("a",{href:Qe.htmlUrl,target:"_blank",rel:"noreferrer",title:Qe.fullName,children:[Qe.fullName,o.jsx(dg,{})]}),o.jsxs("span",{children:[Qe.private?"Private":"Public"," · Installation ",Qe.installationId]})]}),o.jsx("button",{type:"button",className:`github-review-switch${Qe.reviewEnabled?" is-on":""}`,role:"switch","aria-checked":Qe.reviewEnabled,disabled:ht,onClick:()=>{ft(Qe)},children:o.jsx("span",{children:tt?"保存中":Qe.reviewEnabled?"已启用":"未启用"})})]},Qe.fullName)})}):null,Et?o.jsxs("div",{className:"github-list-pagination","aria-label":"已安装仓库分页",children:[o.jsx("span",{children:Gte(ge,x2,K.length,X)}),o.jsxs("div",{children:[o.jsx("button",{type:"button",onClick:()=>Ke("repositories",ge-1),disabled:ge<=1||q,children:"上一页"}),o.jsx("button",{type:"button",onClick:()=>Ke("repositories",ge+1),disabled:!X||q,children:"下一页"})]})]}):null]})]}):o.jsxs(o.Fragment,{children:[o.jsxs("div",{className:"github-field github-token-field",children:[o.jsxs("div",{className:"github-token-label-row",children:[o.jsxs("label",{htmlFor:"github-token",children:[o.jsx("span",{children:r("github.tokenLabel")}),o.jsx("span",{className:"github-field-requirement is-required",children:r("github.required")})]}),o.jsxs("a",{className:"github-field-action",href:"https://github.com/settings/personal-access-tokens/new?name=VeADK%20Studio&description=Create%20a%20GitHub%20automation%20pull%20request&contents=write&pull_requests=write&workflows=write",target:"_blank",rel:"noreferrer",children:[r("github.createToken"),o.jsx(dg,{})]})]}),o.jsxs("div",{className:"github-token-input",children:[o.jsx("input",{id:"github-token",type:x?"text":"password",value:u.token,onChange:Qe=>ut("token",Qe.target.value),onBlur:()=>Gt("token"),autoComplete:"off",required:!0,placeholder:r("github.tokenWorkflowPlaceholder"),"aria-invalid":!!h.token,"aria-describedby":`github-token-help${h.token?" github-token-error":""}`}),o.jsx("button",{type:"button",onClick:()=>O(Qe=>!Qe),"aria-label":r(x?"github.hideToken":"github.showToken"),title:r(x?"github.hideToken":"github.showToken"),children:o.jsx(V6t,{hidden:x})})]}),o.jsx("span",{id:"github-token-help",className:"github-field-help",children:r("github.tokenWorkflowHelp")}),h.token?o.jsx("span",{id:"github-token-error",className:"github-field-error",role:"alert",children:r(h.token)}):null]}),g?o.jsx("div",{className:"github-submit-message is-error",role:"alert",children:g}):null,S?o.jsxs("div",{className:"github-submit-message is-success github-result-message",role:"status",children:[o.jsxs("div",{children:[o.jsx("strong",{children:r("github.configPrCreated",{number:S.number})}),o.jsx("span",{children:r("github.configPrNextStep")})]}),o.jsxs("a",{className:"github-result-link",href:S.url,target:"_blank",rel:"noreferrer",children:[r("github.viewConfigPr"),o.jsx(dg,{})]})]}):null,o.jsxs("div",{className:"github-form-actions",children:[o.jsxs("div",{className:"github-secrets-note",children:[o.jsxs("div",{className:"github-secrets-header",children:[o.jsx("strong",{children:r("github.secretsConfigHeading")}),cn?o.jsxs("a",{className:"github-secrets-link",href:cn,target:"_blank",rel:"noreferrer",children:[r("github.openSecrets"),o.jsx(dg,{})]}):null]}),o.jsx("span",{className:"github-secrets-path",children:r("github.secretsPath")}),o.jsx("ul",{children:c.map(Qe=>{const[tt,...ht]=Qe.split(":");return o.jsxs("li",{children:[o.jsx("code",{children:tt}),ht.length?o.jsx("span",{children:ht.join(":")}):null]},Qe)})})]}),o.jsx("button",{type:"submit",disabled:v,children:r(v?"github.submitting":`cards.${e}.submitLabel`)})]})]})]}),a?o.jsxs("div",{className:"github-pr-review-sections",children:[o.jsxs("section",{className:"github-review-section github-review-now","aria-labelledby":"github-review-now-title",children:[o.jsx("div",{className:"github-review-section-header",children:o.jsxs("div",{children:[o.jsx("h2",{id:"github-review-now-title",children:"立刻评审"}),o.jsx("p",{children:"输入已安装且已启用仓库的 PR URL,立即创建 Sandbox 评审任务。"})]})}),o.jsxs("div",{className:"github-review-section-body",children:[o.jsxs("div",{className:"github-field",children:[o.jsx("input",{id:"github-pull-request-url","aria-label":"Pull Request URL",value:C,onChange:Qe=>{N(Qe.target.value),h.pullRequestUrl&&m(tt=>({...tt,pullRequestUrl:""}))},onBlur:()=>m(Qe=>({...Qe,pullRequestUrl:cw("pullRequestUrl",C,!0)})),placeholder:"https://github.com/owner/repository/pull/123","aria-invalid":!!h.pullRequestUrl,"aria-describedby":h.pullRequestUrl?"github-pull-request-url-error":void 0}),h.pullRequestUrl?o.jsx("span",{id:"github-pull-request-url-error",className:"github-field-error",role:"alert",children:h.pullRequestUrl}):null,!h.pullRequestUrl&&ot?o.jsx("span",{className:"github-field-help",children:Pe!=null&&Pe.reviewEnabled?`将使用 GitHub App 评审 ${Pe.fullName}`:Pe?`请先在下方开启 ${Pe.fullName} 的评审`:`PR URL 所属仓库 ${ot} 尚未安装 GitHub App`}):null,!h.pullRequestUrl&&!ot&>.length>0?o.jsxs("span",{className:"github-field-help",children:["已启用仓库:",gt.map(Qe=>Qe.fullName).join("、")]}):null]}),A?o.jsx("div",{className:"github-submit-message is-error",role:"alert",children:A}):null,_?o.jsx("div",{className:"github-submit-message is-success",role:"status",children:o.jsxs("span",{children:["已发起评审,Session ",_.sessionId," 正在运行。"]})}):null,o.jsx("div",{className:"github-review-section-actions",children:o.jsx("button",{type:"button",onClick:Z,disabled:T,children:T?"发起评审中…":"立即发起评审"})})]})]}),o.jsxs("section",{className:"github-review-section github-review-records","aria-labelledby":"github-review-records-title",children:[o.jsxs("div",{className:"github-review-section-header",children:[o.jsxs("div",{children:[o.jsx("h2",{id:"github-review-records-title",children:"评审记录"}),o.jsx("p",{children:"展示最近自动触发和手动发起的评审任务。"})]}),o.jsx("button",{type:"button",onClick:()=>$e(),disabled:!(R!=null&&R.configured)||Ae,children:Ae?"刷新中...":"刷新"})]}),Ee?o.jsx("div",{className:"github-submit-message is-error",role:"alert",children:Ee}):null,(J==null?void 0:J.reviewSettingsConfigured)===!1&&!Ee?o.jsx("div",{className:"github-submit-message is-error",role:"alert",children:J.reviewSettingsReason||"管理员未配置 Studio 持久化存储,无法读取评审记录。"}):null,Ae&&Ie.length===0?o.jsx("div",{className:"github-app-repository-empty",children:"正在读取 PR 评审记录..."}):null,!Ae&&Ie.length===0&&!Ee?o.jsx("div",{className:"github-app-repository-empty",children:"暂无 PR 评审记录。"}):null,Ie.length>0?o.jsx("div",{className:"github-review-record-list",children:Ie.map(Qe=>{const tt=X6t(Qe),ht=Qe.status==="completed"?"":Qe.sessionId;return o.jsxs("div",{className:"github-review-record-row",children:[o.jsxs("div",{className:"github-review-record-main",children:[o.jsxs("div",{className:"github-review-record-title",children:[o.jsxs("a",{href:Qe.pullRequestUrl,target:"_blank",rel:"noreferrer",children:[Qe.repository,"#",Qe.pullRequestNumber,o.jsx(dg,{})]}),o.jsx("span",{className:`github-review-record-status is-${Qe.status}`,children:G6t(Qe.status)})]}),o.jsxs("span",{children:[K6t(Qe.trigger),Qe.action?` · ${Qe.action}`:""," · ",Y6t(Qe.createdAt),tt?` · ${tt}`:""]})]}),o.jsx("div",{className:"github-review-record-actions",children:ht&&i?o.jsx("button",{type:"button",onClick:()=>i(ht),children:"打开 Session"}):null})]},Qe.id)})}):null,bt?o.jsxs("div",{className:"github-list-pagination","aria-label":"评审记录分页",children:[o.jsx("span",{children:Gte(_e,x2,Ie.length,at)}),o.jsxs("div",{children:[o.jsx("button",{type:"button",onClick:()=>Ke("records",_e-1),disabled:_e<=1||Ae,children:"上一页"}),o.jsx("button",{type:"button",onClick:()=>Ke("records",_e+1),disabled:!at||Ae,children:"下一页"})]})]}):null]})]}):null]})})]})}const J6t=1050062,Kte="1.0",e$t="https://lf-static.applogcdn.com/obj/applog-sdk-static/log-sdk/collect/5/collect.js";class t$t{constructor(){ki(this,"enabled",!1);ki(this,"initialized",!1);ki(this,"pending",[]);ki(this,"userUniqueId","");ki(this,"initPromise")}init(t){return this.enabled=t.enabled,this.enabled?this.initPromise?this.initPromise:(this.initPromise=Promise.resolve().then(()=>{const n=this.bootstrapCollector();n("init",{app_id:J6t,channel:"cn",disable_auto_pv:1}),this.userUniqueId&&n("config",{user_unique_id:this.userUniqueId}),n("config",{_staging_flag:t.environment==="prod"?0:1}),n("start"),this.initialized=!0;const i=this.pending;this.pending=[];for(const[r,s]of i)this.collect(r,s)}),this.initPromise):(this.pending=[],Promise.resolve())}identify(t){this.userUniqueId=t,this.initialized&&this.collect("config",{user_unique_id:t})}emit(t,n){if(this.enabled){if(this.initialized){this.collect(t,n);return}this.pending=[...this.pending.slice(-49),[t,n]]}}bootstrapCollector(){if(window.collectEvent)return window.collectEvent;window.LogAnalyticsObject="collectEvent";const t=function(){var r;(r=t.q)==null||r.push(arguments)};t.q=[],t.l=Date.now(),window.collectEvent=t;const n=document.createElement("script");return n.async=!0,n.src=e$t,n.onerror=()=>{this.enabled=!1,t.q=[],console.warn("[telemetry] TEA SDK script failed to load")},document.head.appendChild(n),t}collect(t,n){var i;(i=window.collectEvent)==null||i.call(window,t,n)}}const n$t=256,nRe=1024,fL="[REDACTED]";function i$t(e){if(typeof e!="string"&&typeof e!="number")return;const t=String(e).trim();return/^[A-Za-z0-9_.:-]{1,64}$/.test(t)?t:void 0}function wf(e,t){return t===void 0?{errorKind:e}:{errorKind:e,errorCode:t}}function iRe(e,t,n={}){if(e.length<=t)return e;if(n.preserveEnd){const r="[truncated] ...";return`${r}${e.slice(-Math.max(0,t-r.length))}`}const i="... [truncated]";return`${e.slice(0,Math.max(0,t-i.length))}${i}`}function r$t(e){return e.replace(/\b(Authorization\s*[:=]\s*)(Bearer\s+)?[^\s"',;&]+/gi,(t,n,i)=>`${n}${i??""}${fL}`).replace(/\bBearer\s+[A-Za-z0-9._~+/=-]+/gi,`Bearer ${fL}`).replace(/\b([\w.-]*(?:token|password|passwd|secret|api[_-]?key|access[_-]?key|secret[_-]?key|cookie)[\w.-]*\s*[:=]\s*)(["']?)[^\s"',;&]+/gi,(t,n,i)=>`${n}${i}${fL}`)}function qg(e,t={}){const n=e!==null&&typeof e=="object"?e:{},r=(typeof n.message=="string"?n.message:typeof e=="string"||typeof e=="number"||typeof e=="boolean"?String(e):"").replace(/\s+/g," ").trim();if(r)return iRe(r$t(r),nRe,t)}function Wa(e,t={}){const n=e!==null&&typeof e=="object"?e:{},i=i$t(n.code),r=typeof n.name=="string"?n.name:"";if(r==="RuntimeProbeError")return wf("runtime_probe_error",i);if(r==="AbortError")return wf("abort",i);if(r==="RuntimeAccessDeniedError"||r==="AuthError")return wf("auth",i);if(t.phase==="build")return wf("build_failed",i);if(r==="TimeoutError")return wf("timeout",i);if(r==="NetworkError"||r==="TypeError")return wf("network",i);if(r==="ValidationError")return wf("validation",i);if(r==="ServerError")return wf("server",i);const s=typeof n.status=="number"&&Number.isInteger(n.status)?n.status:void 0;if(s===void 0||s<400||s>599)return wf("unknown",i);const a=String(s);return s===401||s===403?{errorKind:"auth",errorCode:a}:s===400||s===409||s===422?{errorKind:"validation",errorCode:a}:s>=500?{errorKind:"server",errorCode:a}:{errorKind:"unknown",errorCode:a}}const s$t=["schema_version","event_id","operation_id","user_pool_id","studio_deploy_id","vefaas_application_id","vefaas_function_id","studio_region","studio_project","studio_version","environment","cloud_provider","account_id","account_id_resolution_error","user_role","user_source","page_instance_id"],a$t={studio_entry_viewed:["auth_state"],studio_session_started:["agents_source"],studio_agent_deploy:["status","agent_id","deploy_action","deploy_source","create_mode","ai_assisted","deploy_region","runtime_network_type","feishu_enabled","runtime_id","duration_ms","failed_phase","error_kind","error_code","error_message"],studio_sandbox_create:["status","sandbox_kind","sandbox_source","sandbox_id","duration_ms","error_kind","error_code"],studio_agent_debug:["status","agent_id","variant_type","debug_run_id","duration_ms","failed_phase","error_kind","error_code"],studio_agent_connect:["status","target_id","agent_kind","connect_source","runtime_region","runtime_is_mine","sandbox_status","duration_ms","error_kind","error_code"],studio_agent_message:["status","agent_id","agent_kind","message_source","session_state","session_id","duration_ms","failed_phase","error_kind","error_code"],studio_agent_source_download:["status","agent_id","deploy_action","deploy_source","create_mode","ai_assisted","duration_ms","file_count","zip_size_bytes","error_kind","error_code"]};function o$t(e){return typeof e=="string"||typeof e=="number"&&Number.isFinite(e)}function Xte(e,t){const n=new Set([...s$t,...a$t[e]]),i={};for(const[r,s]of Object.entries(t))!n.has(r)||!o$t(s)||(typeof s=="string"?i[r]=iRe(s,r==="error_message"?nRe:n$t):i[r]=s);return i}function l$t(){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?crypto.randomUUID():`${Date.now()}-${Math.random().toString(36).slice(2)}`}function c$t(){return typeof performance<"u"?performance.now():Date.now()}function V0(e){return Object.fromEntries(Object.entries(e).filter(([,t])=>t!==void 0))}class u$t{constructor(t){ki(this,"sink");ki(this,"createId");ki(this,"now");ki(this,"pageInstanceId");ki(this,"context");ki(this,"identity");ki(this,"entryViewed",!1);ki(this,"sessionStarted",!1);this.sink=t.sink,this.createId=t.createId??l$t,this.now=t.now??c$t,this.pageInstanceId=this.createId()}setContext(t){var n,i;this.context={...t,accountId:((n=t.accountId)==null?void 0:n.trim())??"",accountIdResolutionError:((i=t.accountIdResolutionError)==null?void 0:i.trim())??""}}identify(t){var i,r,s;const n=t.userUniqueId.trim();n&&(this.identity&&this.identity.userUniqueId!==n&&(this.pageInstanceId=this.createId(),this.sessionStarted=!1),this.identity={...t,userUniqueId:n,accountId:((i=t.accountId)==null?void 0:i.trim())??""},(s=(r=this.sink).identify)==null||s.call(r,n))}trackStudioSessionStarted(t){this.sessionStarted||!this.context||!this.identity||(this.sessionStarted=!0,this.emit("studio_session_started",{agents_source:t.agentsSource}))}trackStudioEntryViewed(t){if(this.entryViewed||!this.context)return;this.entryViewed=!0;const n=Xte("studio_entry_viewed",V0({schema_version:Kte,event_id:this.createId(),user_pool_id:this.context.userPoolId,studio_deploy_id:this.context.studioDeployId,vefaas_application_id:this.context.applicationId,vefaas_function_id:this.context.functionId,studio_region:this.context.studioRegion,studio_project:this.context.studioProject,studio_version:this.context.studioVersion,environment:this.context.environment,cloud_provider:this.context.cloudProvider,account_id:this.context.accountId,account_id_resolution_error:this.context.accountIdResolutionError||void 0,page_instance_id:this.pageInstanceId,auth_state:t.authState}));this.sink.emit("studio_entry_viewed",n)}beginAgentDeploy(t){return this.beginOperation("studio_agent_deploy",{agent_id:t.agentId,deploy_action:t.deployAction,deploy_source:t.deploySource,create_mode:t.createMode,ai_assisted:t.aiAssisted,deploy_region:t.deployRegion,runtime_network_type:t.runtimeNetworkType,feishu_enabled:t.feishuEnabled},n=>({runtime_id:n.runtimeId}),n=>({failed_phase:n.failedPhase,error_kind:n.errorKind,error_code:n.errorCode,error_message:n.errorMessage}))}beginSandboxCreate(t){return this.beginOperation("studio_sandbox_create",{sandbox_kind:t.sandboxKind,sandbox_source:t.sandboxSource},n=>({sandbox_id:n.sandboxId}),n=>({error_kind:n.errorKind,error_code:n.errorCode}))}beginAgentDebug(t){return this.beginOperation("studio_agent_debug",{agent_id:t.agentId,variant_type:t.variantType},n=>({debug_run_id:n.debugRunId}),n=>({failed_phase:n.failedPhase,error_kind:n.errorKind,error_code:n.errorCode}))}beginAgentConnect(t){return this.beginOperation("studio_agent_connect",{target_id:t.targetId,agent_kind:t.agentKind,connect_source:t.connectSource},n=>V0({runtime_region:n.runtimeRegion,runtime_is_mine:n.runtimeIsMine,sandbox_status:n.sandboxStatus}),n=>V0({error_kind:n.errorKind,error_code:n.errorCode}))}beginAgentMessage(t){return this.beginOperation("studio_agent_message",V0({agent_id:t.agentId,agent_kind:t.agentKind,message_source:t.messageSource,session_state:t.sessionState,session_id:t.sessionId}),n=>({session_id:n.sessionId}),n=>V0({session_id:n.sessionId,failed_phase:n.failedPhase,error_kind:n.errorKind,error_code:n.errorCode}))}beginAgentSourceDownload(t){return this.beginOperation("studio_agent_source_download",{agent_id:t.agentId,deploy_action:t.deployAction,deploy_source:t.deploySource,create_mode:t.createMode,ai_assisted:t.aiAssisted},n=>({file_count:n.fileCount,zip_size_bytes:n.zipSizeBytes}),n=>({file_count:n.fileCount,error_kind:n.errorKind,error_code:n.errorCode}))}beginOperation(t,n,i,r){const s=this.createId(),a=this.now(),l=!!(this.context&&this.identity);let c=!1;l&&this.emit(t,{...n,status:"started"},s);const u=(d,f)=>{c||(c=!0,l&&this.emit(t,{...n,...f,status:d,duration_ms:Math.max(0,this.now()-a)},s))};return{operationId:s,succeed:d=>u("succeeded",i(d)),fail:d=>u("failed",r(d))}}emit(t,n,i){if(!this.context||!this.identity)return;const r=Xte(t,V0({schema_version:Kte,event_id:this.createId(),operation_id:i,user_pool_id:this.context.userPoolId,studio_deploy_id:this.context.studioDeployId,vefaas_application_id:this.context.applicationId,vefaas_function_id:this.context.functionId,studio_region:this.context.studioRegion,studio_project:this.context.studioProject,studio_version:this.context.studioVersion,environment:this.context.environment,cloud_provider:this.context.cloudProvider,account_id:this.identity.accountId,account_id_resolution_error:this.context.accountIdResolutionError||void 0,user_role:this.identity.userRole,user_source:this.identity.userSource,page_instance_id:this.pageInstanceId,...n}));this.sink.emit(t,r)}}const rRe=new t$t,tf=new u$t({sink:rRe});function d$t(e){return rRe.init(e)}function f$t(e){tf.setContext(e)}function h$t(e){tf.identify(e)}function p$t(e){tf.trackStudioEntryViewed(e)}function m$t(e){tf.trackStudioSessionStarted(e)}function sRe(e){return tf.beginAgentDeploy(e)}function g$t(e){return tf.beginSandboxCreate(e)}function b$t(e){return tf.beginAgentDebug(e)}function w2(e){return tf.beginAgentConnect(e)}function Yte(e){return tf.beginAgentMessage(e)}function aRe(e){return tf.beginAgentSourceDownload(e)}const y$t=/^[A-Za-z_][A-Za-z0-9_]*$/;function WE(e,t=n=>$t(`validation.agentName.${n}`)){return e.trim().length===0?t("required"):e==="user"?t("reserved"):y$t.test(e)?null:t("characters")}function v$t(e){const t=new Set,n=new Set,i=r=>{WE(r.name)===null&&(t.has(r.name)?n.add(r.name):t.add(r.name)),r.subAgents.forEach(i)};return i(e),n}function x$t(e){return{...oc(),name:e,description:Vd("feishu.generatedAgent.description"),instruction:Vd("feishu.generatedAgent.instruction"),deployment:{feishuEnabled:!0}}}async function w$t(e){const t=x$t(e.agentName),n=await wO(t);return Ax(n.name,n.files,{region:e.region,projectName:"default"},{taskId:e.taskId,sessionStorage:"in-memory",minInstance:1,maxInstance:1,description:t.description,im:{feishu:{enabled:!0}},envs:[{key:"FEISHU_APP_ID",value:e.appId},{key:"FEISHU_APP_SECRET",value:e.appSecret}],onStage:e.onStage})}const ud=["cn-beijing","cn-shanghai"],oRe=["prepare","build","deploy","publish"];function O$t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m9.8 3.5-4.5 4.5 4.5 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}function S$t(e){return o.jsx("svg",{viewBox:"0 0 18 18",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m5 7 4 4 4-4",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"})})}function Zte(e){return o.jsx("svg",{viewBox:"0 0 18 18",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m4 9.2 3.1 3.1L14 5.8",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round"})})}function k$t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"M6.5 4H4.8A1.8 1.8 0 0 0 3 5.8v5.4A1.8 1.8 0 0 0 4.8 13h5.4a1.8 1.8 0 0 0 1.8-1.8V9.5M9 3h4v4M12.5 3.5 7.2 8.8",stroke:"currentColor",strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"})})}function E$t(e){if(!e||e==="upload")return 0;const t=oRe.findIndex(n=>n===e);return t<0?0:t}function hL(e){switch(e){case"prepare":case"upload":case"build":case"deploy":case"publish":case"update":case"evaluation":return e;default:return"unknown"}}function Jte(e){const t=WE(e,n=>n);return t?`feishu.validation.agentName.${t}`:""}function C$t({onBack:e}){const{t}=Te("automations"),[n,i]=p.useState("feishu_assistant"),[r,s]=p.useState(""),[a,l]=p.useState(""),[c,u]=p.useState(!1),[d,f]=p.useState("cn-beijing"),[h,m]=p.useState(!1),[g,b]=p.useState(""),[v,y]=p.useState(""),[x,O]=p.useState(""),[w,k]=p.useState("idle"),[S,E]=p.useState(null),[C,N]=p.useState(""),[_,j]=p.useState(null),A=p.useRef(null),F=p.useRef(null),T=p.useRef([]),P=p.useRef(0),R=p.useRef(null),L=p.useRef(null),M=p.useRef("prepare"),U=p.useRef(!1),I=p.useRef(!0),H=["preparing","running","cancelling"].includes(w);p.useEffect(()=>(I.current=!0,()=>{I.current=!1}),[]),p.useEffect(()=>{var W;if(!h)return;(W=T.current[P.current])==null||W.focus();const re=X=>{X.target instanceof Node&&A.current&&!A.current.contains(X.target)&&m(!1)},ge=X=>{var ae;X.key==="Escape"&&(m(!1),(ae=F.current)==null||ae.focus())};return window.addEventListener("pointerdown",re),window.addEventListener("keydown",ge),()=>{window.removeEventListener("pointerdown",re),window.removeEventListener("keydown",ge)}},[h]);const K=re=>{re.key==="Enter"&&(re.nativeEvent.isComposing||re.nativeEvent.keyCode===229)&&re.preventDefault()},Q=()=>{const re=Jte(n.trim()),ge=r.trim()?"":"feishu.validation.appId",W=a.trim()?"":"feishu.validation.appSecret";return b(re),y(ge),O(W),!re&&!ge&&!W},q=async re=>{if(re.preventDefault(),!Q()||H)return;const ge=crypto.randomUUID();R.current=ge,M.current="prepare",U.current=!1,k("preparing"),E(null),N(""),j(null);const W=sRe({agentId:String(n.trim()),deployAction:"create",deploySource:"feishu_automation",createMode:"feishu_template",aiAssisted:0,deployRegion:String(d),runtimeNetworkType:"public",feishuEnabled:1});L.current=W;try{const X=await w$t({agentName:n.trim(),appId:r.trim(),appSecret:a.trim(),region:d,taskId:ge,onStage:ae=>{M.current=ae.phase||"deploy",!(!I.current||U.current)&&(k("running"),E(ae))}});if(U.current){W.fail({failedPhase:hL(M.current),errorKind:"abort",errorMessage:qg("User cancelled deployment")});return}if(W.succeed({runtimeId:String(X.runtimeId||"")}),!I.current)return;j(X),l(""),u(!1),k("succeeded")}catch(X){if(W.fail({failedPhase:hL(M.current),...U.current?{errorKind:"abort"}:Wa(X,{phase:M.current}),errorMessage:qg(X)}),!I.current||U.current)return;k("failed"),N(X instanceof Error?X.message:String(X))}finally{R.current===ge&&(R.current=null),L.current===W&&(L.current=null)}},B=async()=>{var ge;const re=R.current;if(!(!re||w!=="running")&&window.confirm(t("feishu.confirmCancel"))){U.current=!0,k("cancelling"),N("");try{await $0e(re),(ge=L.current)==null||ge.fail({failedPhase:hL(M.current),errorKind:"abort",errorMessage:qg("User cancelled deployment")}),I.current&&k("cancelled")}catch(W){if(U.current=!1,!I.current)return;k("failed"),N(W instanceof Error?W.message:String(W))}}},ee=E$t((S==null?void 0:S.phase)??null),le=!!(n.trim()&&r.trim()&&a.trim()&&!H),se=t(`feishu.regions.${d}`);return o.jsxs("div",{className:"feishu-integration-page",children:[o.jsxs("header",{className:"feishu-integration-header",children:[o.jsx("button",{type:"button",className:"feishu-back",onClick:e,"aria-label":t("backToAutomations"),disabled:H,children:o.jsx(O$t,{})}),o.jsx("img",{className:"feishu-integration-logo",src:QI,alt:"","aria-hidden":"true"}),o.jsxs("div",{children:[o.jsx("h1",{children:t("feishu.title")}),o.jsx("p",{children:t("feishu.description")})]})]}),o.jsx("div",{className:"feishu-integration-layout",children:o.jsxs("section",{className:"feishu-section-panel",children:[o.jsx("p",{className:"feishu-panel-description",children:t("feishu.panel")}),o.jsxs("form",{className:"feishu-form",onSubmit:q,onKeyDown:K,noValidate:!0,children:[o.jsxs("div",{className:"feishu-field-grid",children:[o.jsxs("div",{className:"feishu-field",children:[o.jsx("label",{htmlFor:"feishu-agent-name",children:t("feishu.agentName")}),o.jsx("input",{id:"feishu-agent-name",value:n,maxLength:64,disabled:H,onChange:re=>{i(re.target.value),g&&b("")},onBlur:()=>b(Jte(n.trim())),"aria-invalid":!!g,"aria-describedby":`feishu-agent-name-help${g?" feishu-agent-name-error":""}`}),o.jsx("span",{id:"feishu-agent-name-help",className:"feishu-field-help",children:t("feishu.agentNameHelp")}),g?o.jsx("span",{id:"feishu-agent-name-error",className:"feishu-field-error",role:"alert",children:t(g)}):null]}),o.jsxs("div",{className:"feishu-field",children:[o.jsx("label",{id:"feishu-region-label",children:t("feishu.region")}),o.jsxs("div",{className:"feishu-region-picker",ref:A,children:[o.jsxs("button",{ref:F,type:"button",className:"feishu-region-trigger",disabled:H,"aria-haspopup":"listbox","aria-expanded":h,"aria-labelledby":"feishu-region-label feishu-region-value",onClick:()=>{P.current=ud.findIndex(re=>re===d),m(re=>!re)},onKeyDown:re=>{re.key!=="ArrowDown"&&re.key!=="ArrowUp"||(re.preventDefault(),P.current=re.key==="ArrowUp"?ud.length-1:ud.findIndex(ge=>ge===d),m(!0))},children:[o.jsx("span",{id:"feishu-region-value",children:se}),o.jsx(S$t,{})]}),h?o.jsx("div",{className:"feishu-region-menu",role:"listbox","aria-label":t("feishu.region"),onKeyDown:re=>{var X;const ge=T.current.findIndex(ae=>ae===document.activeElement);let W=null;re.key==="ArrowDown"?W=(ge+1)%ud.length:re.key==="ArrowUp"?W=(ge-1+ud.length)%ud.length:re.key==="Home"?W=0:re.key==="End"?W=ud.length-1:re.key==="Tab"&&m(!1),W!==null&&(re.preventDefault(),(X=T.current[W])==null||X.focus())},children:ud.map(re=>o.jsx("button",{ref:ge=>{const W=ud.findIndex(X=>X===re);T.current[W]=ge},type:"button",role:"option","aria-selected":d===re,className:`feishu-region-option${d===re?" is-selected":""}`,onClick:()=>{var ge;f(re),m(!1),(ge=F.current)==null||ge.focus()},children:t(`feishu.regions.${re}`)},re))}):null]}),o.jsx("span",{className:"feishu-field-help",children:t("feishu.regionHelp")})]}),o.jsxs("div",{className:"feishu-field",children:[o.jsx("label",{htmlFor:"feishu-app-id",children:t("feishu.appId")}),o.jsx("input",{id:"feishu-app-id",value:r,maxLength:128,autoComplete:"off",disabled:H,placeholder:"cli_xxxxxxxxxxxxxxxx",onChange:re=>{s(re.target.value),v&&y("")},onBlur:()=>y(r.trim()?"":"feishu.validation.appId"),"aria-invalid":!!v,"aria-describedby":`feishu-app-id-help${v?" feishu-app-id-error":""}`}),o.jsx("span",{id:"feishu-app-id-help",className:"feishu-field-help",children:t("feishu.appIdHelp")}),v?o.jsx("span",{id:"feishu-app-id-error",className:"feishu-field-error",role:"alert",children:t(v)}):null]}),o.jsxs("div",{className:"feishu-field",children:[o.jsx("label",{htmlFor:"feishu-app-secret",children:t("feishu.appSecret")}),o.jsxs("div",{className:"feishu-secret-input",children:[o.jsx("input",{id:"feishu-app-secret",type:c?"text":"password",value:a,maxLength:256,autoComplete:"off",disabled:H,placeholder:t("feishu.appSecretPlaceholder"),onChange:re=>{l(re.target.value),x&&O("")},onBlur:()=>O(a.trim()?"":"feishu.validation.appSecret"),"aria-invalid":!!x,"aria-describedby":`feishu-app-secret-help${x?" feishu-app-secret-error":""}`}),o.jsx("button",{type:"button",disabled:H,onClick:()=>u(re=>!re),"aria-label":t(c?"feishu.hideSecret":"feishu.showSecret"),children:t(c?"feishu.hide":"feishu.show")})]}),o.jsx("span",{id:"feishu-app-secret-help",className:"feishu-field-help",children:t("feishu.appSecretHelp")}),x?o.jsx("span",{id:"feishu-app-secret-error",className:"feishu-field-error",role:"alert",children:t(x)}):null]})]}),w!=="idle"?o.jsxs("div",{className:`feishu-deployment-status is-${w}`,role:w==="failed"?"alert":"status",children:[o.jsxs("div",{className:"feishu-deployment-heading",children:[w==="preparing"?o.jsx(xn,{as:"strong",children:t("feishu.status.preparing")}):null,w==="running"?o.jsx(xn,{as:"strong",children:S?$I(S):t("feishu.status.running")}):null,w==="cancelling"?o.jsx(xn,{as:"strong",children:t("feishu.status.cancelling")}):null,w==="succeeded"?o.jsxs("strong",{children:[o.jsx(Zte,{}),t("feishu.status.succeeded")]}):null,w==="cancelled"?o.jsx("strong",{children:t("feishu.status.cancelled")}):null,w==="failed"?o.jsx("strong",{children:t("feishu.status.failed")}):null]}),w==="preparing"||w==="running"||w==="cancelling"?o.jsx("ol",{className:"feishu-deployment-steps",children:oRe.map((re,ge)=>{const W=w==="running"&&gevoid B(),children:t("feishu.cancelDeployment")}):null,o.jsx("button",{type:"submit",className:"feishu-submit",disabled:!le,children:t(H?"feishu.creating":"feishu.create")})]})]})]})]})})]})}async function az(e,t,n,i=Wo){var s;const r=await An(e,{...t,headers:{accept:"application/json",...t.headers},signal:n},i);if(!r.ok){let a="";try{a=((s=(await r.json()).detail)==null?void 0:s.trim())||""}catch{}throw new Error(a||V("common.requestFailed",{status:r.status}))}return r.json()}function T$t(e){return az("/web/coding-agents/capabilities",{method:"GET"},e,FF)}function A$t(e,t){return az(`/web/coding-agents/skills/${encodeURIComponent(e)}/preview`,{method:"GET"},t)}function _$t(e,t){return az("/web/coding-agents/install",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)},t)}const N$t="data:image/svg+xml,%3csvg%20width='16'%20height='16'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20width='16'%20height='16'%20rx='3.692'%20fill='%231A1B1D'/%3e%3cpath%20d='M13.235%205.829V4.332H2.758v5.987h1.496v1.496h8.981V5.828Zm-1.497%204.49H4.254V5.83h7.484v4.49Z'%20fill='%2332F08C'/%3e%3cpath%20d='M6.937%206.993%205.88%208.051%206.937%209.11%207.995%208.05%206.937%206.993ZM9.931%206.992%208.873%208.05%209.931%209.11%2010.99%208.05%209.93%206.992Z'%20fill='%2332F08C'/%3e%3c/svg%3e";function j$t(){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"m4 4 8 8m0-8-8 8",stroke:"currentColor",strokeWidth:"1.4",strokeLinecap:"round"})})}function ene(){return o.jsxs("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",children:[o.jsx("path",{d:"M4 1.8h5l3 3V14H4z",stroke:"currentColor",strokeWidth:"1.2",strokeLinejoin:"round"}),o.jsx("path",{d:"M9 1.8V5h3M6 8h4M6 10.5h4",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round"})]})}function tne(){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",children:o.jsx("path",{d:"M1.8 4.5h4l1.2-1.3h2.2l1.2 1.3h3.8v8H1.8z",stroke:"currentColor",strokeWidth:"1.2",strokeLinejoin:"round"})})}function R$t(e){return e instanceof DOMException&&e.name==="AbortError"}function I$t(e){return e instanceof Error&&e.message?e.message:""}function P$t(e){return e<1024?`${e} B`:`${(e/1024).toFixed(e<10*1024?1:0)} KB`}function D$t(e){const t=e.split("/");return t[t.length-1]??e}function M$t(e){const t=new Map;for(const n of e){const i=n.path.split("/"),r=i.length>1?i.slice(0,-1).join("/"):"";t.set(r,[...t.get(r)??[],n])}return Array.from(t,([n,i])=>({directory:n,files:i})).sort((n,i)=>n.directory?i.directory?n.directory.localeCompare(i.directory):1:-1)}function L$t({skill:e,onClose:t}){const{t:n}=Te("automations"),i=p.useRef(null),r=p.useRef(null),s=p.useId(),a=p.useId(),[l,c]=p.useState(null),[u,d]=p.useState(""),[f,h]=p.useState(!0),[m,g]=p.useState(""),[b,v]=p.useState(0);p.useEffect(()=>{r.current=document.activeElement instanceof HTMLElement?document.activeElement:null;const w=i.current;return w&&!w.open&&w.showModal(),()=>{var k;w!=null&&w.open&&w.close(),(k=r.current)==null||k.focus()}},[]),p.useEffect(()=>{const w=new AbortController;return h(!0),g(""),c(null),d(""),A$t(e.id,w.signal).then(k=>{if(w.signal.aborted)return;c(k);const S=k.files.find(E=>E.path==="SKILL.md")??k.files[0];d((S==null?void 0:S.path)??"")}).catch(k=>{!w.signal.aborted&&!R$t(k)&&g(I$t(k))}).finally(()=>{w.signal.aborted||h(!1)}),()=>w.abort()},[b,e.id]);const y=p.useMemo(()=>M$t((l==null?void 0:l.files)??[]),[l]),x=(l==null?void 0:l.files.find(w=>w.path===u))??null,O=n(`codingAgents.skills.items.${e.id}.name`,{defaultValue:e.name});return o.jsxs("dialog",{ref:i,className:"coding-agents-preview-dialog","aria-labelledby":s,"aria-describedby":a,onCancel:w=>{w.preventDefault(),t()},onMouseDown:w=>{const k=w.currentTarget.getBoundingClientRect();(w.clientXk.right||w.clientYk.bottom)&&t()},children:[o.jsxs("header",{className:"coding-agents-preview-header",children:[o.jsx("span",{className:"coding-agents-preview-mark",children:o.jsx(tne,{})}),o.jsxs("div",{children:[o.jsx("h2",{id:s,children:O}),o.jsx("p",{id:a,children:n("codingAgents.preview.description")})]}),o.jsx("button",{type:"button",autoFocus:!0,"aria-label":n("codingAgents.preview.close"),onClick:t,children:o.jsx(j$t,{})})]}),f?o.jsxs("div",{className:"coding-agents-preview-state",children:[o.jsx("i",{}),n("codingAgents.preview.loading")]}):m?o.jsxs("div",{className:"coding-agents-preview-state is-error",role:"alert",children:[o.jsx("span",{children:m||n("codingAgents.preview.error")}),o.jsx("button",{type:"button",onClick:()=>v(w=>w+1),children:n("codingAgents.retry")})]}):o.jsxs("div",{className:"coding-agents-preview-layout",children:[o.jsxs("nav",{className:"coding-agents-preview-tree","aria-label":n("codingAgents.preview.skillFiles",{name:O}),children:[o.jsxs("div",{className:"coding-agents-preview-tree-title",children:[o.jsx("span",{children:n("codingAgents.preview.files")}),o.jsx("small",{children:(l==null?void 0:l.files.length)??0})]}),o.jsx("div",{className:"coding-agents-preview-tree-scroll",children:y.map(w=>w.directory?o.jsxs("details",{open:!0,children:[o.jsxs("summary",{children:[o.jsx(tne,{}),o.jsx("span",{children:w.directory})]}),o.jsx("div",{children:w.files.map(k=>o.jsxs("button",{type:"button",className:u===k.path?"is-selected":"","aria-current":u===k.path?"true":void 0,onClick:()=>d(k.path),children:[o.jsx(ene,{}),o.jsx("span",{children:D$t(k.path)})]},k.path))})]},w.directory):w.files.map(k=>o.jsxs("button",{type:"button",className:u===k.path?"is-selected":"","aria-current":u===k.path?"true":void 0,onClick:()=>d(k.path),children:[o.jsx(ene,{}),o.jsx("span",{children:k.path})]},k.path)))})]}),o.jsx("section",{className:"coding-agents-preview-file","aria-label":n("codingAgents.preview.fileContent"),children:x?o.jsxs(o.Fragment,{children:[o.jsxs("header",{children:[o.jsx("strong",{children:x.path}),o.jsx("span",{children:P$t(x.size)})]}),x.previewable&&x.content!==null?o.jsx("pre",{tabIndex:0,children:o.jsx("code",{children:x.content})}):o.jsx("div",{className:"coding-agents-preview-unavailable",children:n("codingAgents.preview.notPreviewable")})]}):o.jsx("div",{className:"coding-agents-preview-unavailable",children:n("codingAgents.preview.noFiles")})})]})]})}function $$t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m9.8 3.5-4.5 4.5 4.5 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}function F$t(e){return o.jsxs("svg",{viewBox:"0 0 32 32",fill:"none","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"3.5",y:"5",width:"16",height:"16",rx:"4.5",stroke:"currentColor",strokeWidth:"1.5"}),o.jsx("path",{d:"m8.5 11-2.4 2.4 2.4 2.4M11 16.5h3.8",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.jsx("circle",{cx:"24.5",cy:"10.5",r:"2.5",stroke:"currentColor",strokeWidth:"1.5"}),o.jsx("circle",{cx:"24.5",cy:"24.5",r:"2.5",stroke:"currentColor",strokeWidth:"1.5"}),o.jsx("path",{d:"M19.5 10.5H22M18.2 19l4.3 3.7M24.5 13v9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})]})}function B$t(e){return o.jsx("svg",{viewBox:"0 0 32 32",fill:"none","aria-hidden":"true",...e,children:o.jsxs("g",{stroke:"currentColor",strokeWidth:"2.4",strokeLinecap:"round",children:[o.jsx("path",{d:"M16 4.5v7M16 20.5v7"}),o.jsx("path",{d:"m9.3 6.3 3.5 6.1M19.2 19.6l3.5 6.1"}),o.jsx("path",{d:"m5.9 11.1 6.2 3.5M19.9 17.4l6.2 3.5"}),o.jsx("path",{d:"M4.7 16h7M20.3 16h7"}),o.jsx("path",{d:"m5.9 20.9 6.2-3.5M19.9 14.6l6.2-3.5"}),o.jsx("path",{d:"m9.3 25.7 3.5-6.1M19.2 12.4l3.5-6.1"})]})})}function U$t(e){return o.jsxs("svg",{viewBox:"0 0 32 32",fill:"none","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M15.8 4.2c2.4 0 4.5 1.2 5.7 3.1 2.2-.3 4.5.8 5.6 2.9 1.1 2 .8 4.4-.5 6.1 1.2 1.8 1.3 4.3.1 6.2-1.2 2-3.4 3-5.6 2.6-1.3 1.8-3.5 2.9-5.8 2.7-2.2-.2-4.1-1.5-5.1-3.4-2.2.1-4.4-1-5.4-3.1-1-2-.6-4.4.8-6.1-1.1-1.9-1.1-4.3.2-6.1 1.3-1.9 3.6-2.7 5.7-2.2 1.1-1.7 2.6-2.7 4.3-2.7Z",stroke:"currentColor",strokeWidth:"1.7",strokeLinejoin:"round"}),o.jsx("path",{d:"m10.7 12.2 3.1 3.8-3.1 3.8M17.1 20h4.3",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"round",strokeLinejoin:"round"})]})}function nne(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m3.4 8.2 3 3L12.8 5",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"})})}function Q$t(e){return o.jsxs("svg",{viewBox:"0 0 20 20",fill:"none","aria-hidden":"true",...e,children:[o.jsx("path",{d:"M2.8 6.3h14.4v8.3a1.6 1.6 0 0 1-1.6 1.6H4.4a1.6 1.6 0 0 1-1.6-1.6V6.3Z",stroke:"currentColor",strokeWidth:"1.4",strokeLinejoin:"round"}),o.jsx("path",{d:"M2.8 6.3V5.1a1.4 1.4 0 0 1 1.4-1.4h3.4l1.5 1.6h6.5a1.6 1.6 0 0 1 1.6 1.6",stroke:"currentColor",strokeWidth:"1.4",strokeLinejoin:"round"})]})}function z$t({agentId:e}){return e==="trae"?o.jsx("img",{src:N$t,alt:"","aria-hidden":"true"}):e==="claude-code"?o.jsx(B$t,{}):o.jsx(U$t,{})}function ine(e){return e instanceof DOMException&&e.name==="AbortError"}function rne(e,t){return e instanceof Error&&e.message?e.message:t}function V$t({onBack:e}){var j;const{t}=Te("automations"),[n,i]=p.useState(null),[r,s]=p.useState(!0),[a,l]=p.useState(null),[c,u]=p.useState(0),[d,f]=p.useState(new Set),[h,m]=p.useState(new Set),[g,b]=p.useState(null),[v,y]=p.useState(!1),[x,O]=p.useState(null),w=p.useRef(null);p.useEffect(()=>{const A=new AbortController;return s(!0),l(null),T$t(A.signal).then(F=>{if(A.signal.aborted)return;i(F);const T=F.agents.filter(P=>P.available);f(P=>{const R=T.filter(L=>P.has(L.id));return new Set((R.length?R:T.slice(0,1)).map(L=>L.id))}),m(P=>{const R=F.skills.filter(L=>P.has(L.id));return new Set((R.length?R:F.skills).map(L=>L.id))})}).catch(F=>{!ine(F)&&!A.signal.aborted&&(i(null),l(rne(F,"")))}).finally(()=>{A.signal.aborted||s(!1)}),()=>A.abort()},[c]),p.useEffect(()=>()=>{var A;return(A=w.current)==null?void 0:A.abort()},[]);const k=p.useMemo(()=>(n==null?void 0:n.agents.filter(A=>A.available&&d.has(A.id)))||[],[n,d]),S=p.useMemo(()=>(n==null?void 0:n.skills.filter(A=>h.has(A.id)))||[],[n,h]),E=!!(!v&&k.length&&S.length),C=(A,F)=>{!F||v||(O(null),f(T=>{const P=new Set(T);return P.has(A)?P.delete(A):P.add(A),P}))},N=A=>{v||(O(null),m(F=>{const T=new Set(F);return T.has(A)?T.delete(A):T.add(A),T}))},_=async()=>{var F;if(!E)return;(F=w.current)==null||F.abort();const A=new AbortController;w.current=A,y(!0),O(null);try{const T=await _$t({agents:k.map(R=>R.id),skills:S.map(R=>R.id)},A.signal);if(A.signal.aborted)return;const P=T.installations;O({tone:"success",agentCount:k.length,skillCount:S.length,installations:P})}catch(T){!ine(T)&&!A.signal.aborted&&O({tone:"error",message:rne(T,"")})}finally{w.current===A&&(w.current=null),A.signal.aborted||y(!1)}};return o.jsxs("section",{className:"coding-agents-page",children:[o.jsxs("header",{className:"coding-agents-header",children:[o.jsx("button",{type:"button",className:"coding-agents-back",onClick:e,disabled:v,"aria-label":t("backToAutomations"),children:o.jsx($$t,{})}),o.jsx(F$t,{className:"coding-agents-logo"}),o.jsxs("div",{children:[o.jsx("h1",{children:t("codingAgents.title")}),o.jsx("p",{children:t("codingAgents.description")})]})]}),o.jsx("div",{className:"coding-agents-scroll",children:o.jsxs("div",{className:"coding-agents-content",children:[o.jsxs("section",{className:"coding-agents-section","aria-label":t("codingAgents.clients.ariaLabel"),children:[o.jsxs("div",{className:"coding-agents-section-heading",children:[o.jsxs("div",{children:[o.jsx("span",{children:"1"}),o.jsx("h2",{children:t("codingAgents.clients.title")})]}),o.jsx("button",{type:"button",onClick:()=>u(A=>A+1),disabled:r||v,children:t("codingAgents.clients.detectAgain")})]}),r?o.jsxs("div",{className:"coding-agents-inline-state",children:[o.jsx("i",{}),t("codingAgents.clients.detecting")]}):a!==null?o.jsxs("div",{className:"coding-agents-error-row",role:"alert",children:[o.jsx("span",{children:a||t("codingAgents.errors.detect")}),o.jsx("button",{type:"button",onClick:()=>u(A=>A+1),children:t("codingAgents.retry")})]}):o.jsx("div",{className:"coding-agents-agent-grid",children:n==null?void 0:n.agents.map(A=>o.jsxs("button",{type:"button",className:`coding-agents-agent ${d.has(A.id)?"is-selected":""}`,"aria-pressed":d.has(A.id),disabled:!A.available||v,onClick:()=>C(A.id,A.available),title:A.available?A.name:A.reason,children:[o.jsx("span",{className:`coding-agents-agent-mark is-${A.id}`,children:o.jsx(z$t,{agentId:A.id})}),o.jsxs("span",{className:"coding-agents-agent-copy",children:[o.jsx("strong",{children:A.name}),o.jsx("small",{children:A.available?A.version||t("codingAgents.clients.detected"):A.reason})]}),o.jsx("span",{className:`coding-agents-status ${A.available?"is-ready":""}`,children:A.available?t("codingAgents.clients.available"):t("codingAgents.clients.unavailable")}),o.jsx("span",{className:"coding-agents-check",children:o.jsx(nne,{})})]},A.id))})]}),o.jsxs("section",{className:"coding-agents-section","aria-label":t("codingAgents.skills.ariaLabel"),children:[o.jsx("div",{className:"coding-agents-section-heading",children:o.jsxs("div",{children:[o.jsx("span",{children:"2"}),o.jsx("h2",{children:t("codingAgents.skills.title")})]})}),o.jsx("div",{className:"coding-agents-skill-list",children:n==null?void 0:n.skills.map(A=>o.jsxs("div",{className:`coding-agents-skill ${h.has(A.id)?"is-selected":""}`,children:[o.jsxs("label",{children:[o.jsx("input",{type:"checkbox",checked:h.has(A.id),onChange:()=>N(A.id),disabled:v}),o.jsx("span",{className:"coding-agents-skill-check","aria-hidden":"true",children:o.jsx(nne,{})}),o.jsxs("span",{children:[o.jsx("strong",{children:t(`codingAgents.skills.items.${A.id}.name`,{defaultValue:A.name})}),o.jsx("small",{children:t(`codingAgents.skills.items.${A.id}.description`,{defaultValue:A.description})})]})]}),o.jsx("button",{type:"button",onClick:()=>b(A),children:t("codingAgents.skills.viewFiles")})]},A.id))}),o.jsxs("div",{className:"coding-agents-global","aria-label":t("codingAgents.global.ariaLabel"),children:[o.jsxs("div",{className:"coding-agents-global-heading",children:[o.jsx(Q$t,{}),o.jsxs("div",{children:[o.jsx("strong",{children:t("codingAgents.global.title")}),o.jsx("span",{children:t("codingAgents.global.description")})]})]}),k.length?o.jsx("dl",{children:k.map(A=>o.jsxs("div",{children:[o.jsx("dt",{children:A.name}),o.jsx("dd",{children:A.globalSkillsPath})]},A.id))}):o.jsx("p",{children:t("codingAgents.global.empty")})]})]}),x?o.jsxs("div",{className:`coding-agents-result is-${x.tone}`,role:x.tone==="error"?"alert":"status",children:[o.jsx("strong",{children:x.tone==="success"?t("codingAgents.success",{agentCount:x.agentCount,skillCount:x.skillCount}):x.message||t("codingAgents.errors.configure")}),(j=x.installations)!=null&&j.length?o.jsx("ul",{children:x.installations.map(A=>o.jsxs("li",{children:[A.agentName," · ",t(`codingAgents.skills.items.${A.skillId}.name`,{defaultValue:A.skill})," → ",A.displayPath]},`${A.agent}:${A.skillId}`))}):null]}):null,o.jsxs("div",{className:"coding-agents-actions",children:[o.jsx("span",{children:k.length?t("codingAgents.selection",{agentCount:k.length,skillCount:S.length}):t("codingAgents.selectClient")}),o.jsx("button",{type:"button",onClick:()=>void _(),disabled:!E,children:t(v?"codingAgents.configuring":"codingAgents.configure")})]})]})}),g?o.jsx(L$t,{skill:g,onClose:()=>b(null)}):null]})}async function oz(e,t){const n=await e.json().catch(()=>null),i=typeof(n==null?void 0:n.detail)=="string"?n.detail:"";return new Error(i||V("common.fallbackWithHttpStatus",{fallback:t,status:e.status}))}async function H$t(e){const t=await An("/web/website-integrations",{cache:"no-store",signal:e});if(!t.ok)throw await oz(t,V("websiteIntegration.listFailed"));return(await t.json()).integrations??[]}async function q$t(e){const t=await An("/web/website-integrations",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)});if(!t.ok)throw await oz(t,V("websiteIntegration.createFailed"));return t.json()}async function W$t(e){const t=await An(`/web/website-integrations/${encodeURIComponent(e)}`,{method:"DELETE"});if(!t.ok)throw await oz(t,V("websiteIntegration.deleteFailed"))}function G$t(e){return o.jsx("svg",{viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",...e,children:o.jsx("path",{d:"m9.8 3.5-4.5 4.5 4.5 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}function sne(e){return o.jsxs("svg",{viewBox:"0 0 32 32",fill:"none","aria-hidden":"true",...e,children:[o.jsx("rect",{x:"3.5",y:"5",width:"20",height:"17",rx:"3.5",stroke:"currentColor",strokeWidth:"1.5"}),o.jsx("path",{d:"M4.5 10h18M8.5 7.5h.1M11.5 7.5h.1",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),o.jsx("path",{d:"M17 18.5a5 5 0 0 1 5-5h1.5a5 5 0 0 1 5 5V23a5 5 0 0 1-5 5H22l-3.5 2.5v-3.3A5 5 0 0 1 17 23v-4.5Z",fill:"hsl(var(--background))",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),o.jsx("path",{d:"M21 19h4M21 22.5h3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})]})}function K$t(e,t){const n=new Date(e);return Number.isNaN(n.getTime())?e:n.toLocaleString(t,{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"})}async function X$t(e){const t=[];let n="";for(let i=0;i<10;i+=1){const r=await _x({nextToken:n||void 0,pageSize:100,region:"all",scope:"all"});if(e.aborted)return[];if(t.push(...r.runtimes),n=r.nextToken,!n)break}return t}function Y$t({onBack:e}){const{t,i18n:n}=Te("websiteIntegration"),[i,r]=p.useState([]),[s,a]=p.useState([]),[l,c]=p.useState(""),[u,d]=p.useState(""),[f,h]=p.useState(""),[m,g]=p.useState(!0),[b,v]=p.useState(!1),[y,x]=p.useState(""),[O,w]=p.useState("");p.useEffect(()=>{const j=new AbortController;return g(!0),w(""),Promise.all([H$t(j.signal),X$t(j.signal)]).then(([A,F])=>{var P;if(j.signal.aborted)return;r(A),a(F),d(((P=A[0])==null?void 0:P.id)??"");const T=F[0];T&&c(`${T.region}::${T.runtimeId}`)}).catch(A=>{j.signal.aborted||w(A instanceof Error?A.message:t("errors.load"))}).finally(()=>{j.signal.aborted||g(!1)}),()=>j.abort()},[t]);const k=p.useMemo(()=>s.map(j=>({value:`${j.region}::${j.runtimeId}`,label:j.name||j.runtimeId,description:`${j.region} · ${j.status}`,runtime:j})),[s]),S=p.useMemo(()=>new Map(k.map(j=>[j.value,j.runtime])),[k]),E=i.find(j=>j.id===u)??i[0],C=E?` - + +
diff --git a/veadk/webui/website-integration.js b/veadk/webui/website-integration.js index e50d90693..7bc70b0a5 100644 --- a/veadk/webui/website-integration.js +++ b/veadk/webui/website-integration.js @@ -59,7 +59,7 @@ Your goal is to understand the user's request accurately and provide clear, conc Guidelines: - Ask clarifying questions when information is missing. Do not invent facts. - Use available tools when appropriate and explain key conclusions. -- Maintain a polite, professional tone.`},C8e={requestFailed:"Request failed ({{status}}){{detail}}",a2aSpaces:{credentialsMissing:"The server does not have cloud provider credentials configured, so AgentKit agent centers are unavailable",loginRequired:"Sign in to access AgentKit agent centers"},vikingKnowledge:{credentialsMissing:"The server does not have cloud provider credentials configured, so VikingDB knowledge bases are unavailable",loginRequired:"Sign in to access VikingDB knowledge bases"},vikingMemory:{credentialsMissing:"The server does not have cloud provider credentials configured, so VikingDB memory stores are unavailable",loginRequired:"Sign in to access VikingDB memory stores"},mcpGateway:{missingHttpTool:"Go back to Add MCP tool and add at least one HTTP MCP service. MCP resilience does not support stdio services.",missingUrl:"An HTTP MCP tool is missing a valid service URL. Go back to Add MCP tool and complete it before publishing."},customModel:{fallbackName:"Custom model",apiKeyLabel:"{{name}} model API Key"},deploymentEnv:{serverInjected:"Provided by the server",selectedApiKeyPlaceholder:"Provided by the selected API Key",mcpInjectedComment:"Provided by the added MCP tools",restoredPlaceholder:"Securely restored by the Studio server",generatedMcpPlaceholder:"Generated from the added HTTP MCP tools",restoredHelp:"When updating, the Studio server merges MCP addresses and authentication without returning existing secrets to the browser.",mergedMcpHelp:"The Studio server merges MCP addresses and optional authentication without returning existing secrets to the browser.",listSeparator:", ",requirementHint:"Required by the following optimizations: {{labels}}.",requiredBy:"Required by the following optimizations: {{labels}}. Enter {{key}}.",required:"Enter {{label}} ({{key}}).",invalidJson:"Invalid JSON format"},drafts:{unsupportedVersion:"This local draft version is not supported. Upgrade Studio and try again.",invalidFormat:"The local draft data is invalid.",readFailed:"Could not read local drafts. The browser data may be corrupted.",quotaExceeded:"Browser storage is full, so the draft was not saved. Delete unused drafts or clear this site's storage, then try again.",writeRejected:"The browser blocked saving this draft. Check the site's storage permissions and try again."},skills:{searchFailed:"Search failed ({{status}})",downloadFailed:"Skill download failed ({{status}})",agentKitRequestFailed:"AgentKit Skills request failed",missingManifest:"{{location}} is missing SKILL.md",invalidParentPath:"{{location}} contains an invalid parent path (..): {{path}}",invalidPath:"{{location}} contains an invalid path: {{path}}",localDescription:"Local skill",folderSource:"Folder",noManifest:"No SKILL.md was found in {{location}}"},zip:{invalid:"Invalid zip: EOCD was not found",tooManyFiles:"A zip file cannot contain more than {{count}} files",tooLarge:"The extracted zip content is too large"}},O8e={back:"Back to development session",runtimeName:"Runtime name",runtimeNameExists:"This Runtime name already exists. Choose another name.",checkingRuntimeName:"Checking Runtime name",verifiedSource:"Verified source",deployableSource:"Deployable source",verifiedByCodex:"Verified by Codex in the cloud",entryPoint:"Entry point",files:"Files",artifact:"Artifact",validationReport:"Validation report",verifiedHint:"The server materializes source from the verified artifact. Browser files cannot replace it.",unverifiedHint:"The server securely materialized the source. Confirm the Runtime configuration before deploying.",env:{requiredPlaceholder:"Enter {{key}}",optionalPlaceholder:"Optional: {{key}}"}},k8e={name:"Code package",back:"Back to creation methods",reading:"Reading the code package",readingEllipsis:"Reading the code package…",uploadFirst:"Upload a code package first",uploadAriaLabel:"Code package upload",upload:"Upload code package",reupload:"Upload a different code package",uploadPrompt:"Upload a code package",filesRecognized:"{{count}} files found. Select this area to upload a different package.",dropHint:"Select or drop a .zip file up to 50 MB. Use app.py or declare an entry point in agentkit.yaml.",viewFiles:"View files",chooseFile:"Choose code package",errors:{invalidFormat:"Choose a .zip code package.",tooLarge:"The code package must be 50 MB or smaller.",invalidPath:"The archive contains an invalid path: {{name}}",empty:"The archive does not contain any deployable files.",tooManyFiles:"A code package cannot contain more than {{count}} files.",duplicateFile:"The code package contains a duplicate file: {{path}}",manifestParse:"Could not parse agentkit.yaml: {{detail}}",manifestRoot:"The root of agentkit.yaml must be an object.",manifestCommon:"common in agentkit.yaml must be an object.",entryPointType:"common.entry_point in agentkit.yaml must be a file path.",entryPointInvalid:"common.entry_point in agentkit.yaml is not a valid file path.",entryPointMissing:"The entry point declared in agentkit.yaml is missing from the code package: {{entryPoint}}",defaultEntryPointMissing:"The code package root must contain app.py, or common.entry_point in agentkit.yaml must declare an existing entry point."}},E8e={label:"Agent execution canvas",readOnlyLabel:"Read-only agent execution canvas",minimapLabel:"Execution flow minimap",controls:{ariaLabel:"Execution flow controls",zoomIn:"Zoom in",zoomOut:"Zoom out",fitView:"Fit view"},rootAgent:"Main agent",unnamedStep:"Unnamed step",terminals:{input:"User request",output:"Final response"},edges:{then:"Then",continueLoop:"Continue loop",call:"Call"},patterns:{llm:{label:"Agent",description:"Understand a task and complete one specific job"},sequential:{label:"Sequential",description:"Run internal steps one after another"},parallel:{label:"Parallel",description:"Run internal steps together, then combine their results"},loop:{label:"Loop",description:"Repeat internal steps until the stop condition is met"},a2a:{label:"Remote agent",description:"Call an existing remote agent"}},actions:{insertHere:"Insert a step here",deleteNamed:"Delete {{name}}",deleteNode:"Delete node",addSubagent:"Add subagent",addParallelStep:"Add a parallel step",addLoopStep:"Add a loop step",addNextStep:"Add next step",addFirst:"Add at the beginning",addLast:"Add at the end"}},_8e={title:"Intelligent mode",subtitle:"Describe your goal and Codex will plan, build, debug, and temporarily validate the agent in a sandbox.",model:{label:"Model",placeholder:"Select a model",retiring:"Retiring soon",currentConfiguration:"Current configuration",loadError:"Failed to load models"},availability:{checking:"Checking intelligent development availability…",unavailable:"Intelligent mode is currently unavailable. Go back and try again."},goal:{title:"Start with a goal",continueTitle:"Continue improving the project",hint:"Describe the problem your agent should solve. We will ask about any details that could affect the result.",continueHint:"Describe what you want to change. The result will be saved as a new version.",basedOn:"Based on",clearSelection:"Clear selection",label:"Goal",optimizationLabel:"Optimization goal",placeholder:"For example: Build an agent that reads sales data, creates weekly reports, and validates the output format",optimizationPlaceholder:"For example: Cite data sources and ask the user when information is incomplete"},actions:{preparing:"Preparing…",build:"Start building",optimize:"Start optimizing"},preparation:{accepted:"Goal received. Implementation is starting now.",preparing:"Creating the task environment…",starting:"Environment ready. Starting Codex…",next:"Next, Codex will plan the approach, then build, run, and validate the agent."}},R8e={title:"Saved projects",description:"Continue improving an existing version, or view, download, and deploy its source.",refresh:"Refresh projects",checkingStorage:"Checking project storage…",unavailableTitle:"Projects are temporarily unavailable",storageCheckError:"Could not confirm project storage status. Try again shortly.",storageNotConfigured:"Project storage is not configured.",loadingMigrated:"Loading migrated projects…",loadingSaved:"Loading saved projects…",loadingVersions:"Loading project versions…",unknownTime:"Unknown time",sourceDownloaded:"Source downloaded.",projectSummary_one:"{{count}} version · Updated {{time}}",projectSummary_other:"{{count}} versions · Updated {{time}}",versionSummary_one:"{{time}} · {{count}} file",versionSummary_other:"{{time}} · {{count}} files",noVersionDescription:"No version description",latestVersion:"Latest version",verified:"Verified",pendingVerification:"Needs review",viewSource:"View source",download:"Download",downloading:"Downloading…",optimize:"Optimize",optimizeUnavailable:"Optimize, not supported",errors:{projects:"Could not load saved projects.",source:"Could not load project source.",versions:"Could not load project versions.",download:"Could not download the source.",prepareDeployment:"Could not prepare the source for deployment.",deleteVersion:"Could not delete the project version.",migrated:"Could not load migrated projects",saved:"Could not load saved projects"},empty:{migratedTitle:"No migrated projects yet",savedTitle:"No saved projects yet",migratedDescription:"Source will be saved here after your first migration.",savedDescription:"Source will be saved here after your first build.",noVersions:"This project has no available versions."},compare:{selected:"{{count}}/2 selected",selectedLabel:"Selected",select:"Select",view:"View comparison",start:"Compare versions"},delete:{title:"Delete this version?",onlyVersion:"“{{name}}” has only one version. Deleting it will also remove the project. This cannot be undone.",description:"This version's source and validation records will be permanently deleted. Other versions are not affected.",confirm:"Delete version"}},D8e={title:"Choose how to create",subtitle:"Build your agent with the workflow that fits your needs",features:"Features",quick:{title:"Quick mode",description:"Delegate tasks to dynamically created subagents",features:{dynamicSubagents:"Dynamic subagents",autonomousPlanning:"Autonomous planning",collaboration:"Multi-agent collaboration",summary:"Automatic result summaries",skills:"Skills on demand",trace:"Traceable task execution"}},traditional:{title:"Advanced mode",description:"Customize your agent structure in detail",features:{visualConfig:"Visual configuration",migration:"Existing agent migration",debugging:"Live debugging",optimization:"Optional optimization",parameters:"Fine-grained controls"}}},L8e={placeholder:"Enter a system prompt. Type ## followed by a space to add a level-two heading…",toolbar:{undo:"Undo {{shortcut}}",redo:"Redo {{shortcut}}",paragraph:"Paragraph",quote:"Quote",heading:"Heading {{level}}",selectBlockType:"Select text style",blockType:"Text style",bold:"Bold",removeBold:"Remove bold",italic:"Italic",removeItalic:"Remove italic",bulletedList:"Bulleted list",numberedList:"Numbered list"}},M8e={local:{duplicatesSkipped:"Skipped duplicate skills: {{names}}",invalidDrop:"Drop a folder containing SKILL.md or a .zip file",readError:"Could not read the files: {{detail}}",dropLabel:"Drop a folder or ZIP file to detect skills automatically",hint:"Each skill must contain a SKILL.md file. Directories can contain multiple skills.",reading:"Reading files…",fileCount:"Local · {{count}} files"},hub:{searchError:"Search failed. Try again shortly.",searchPlaceholder:"Search Volcano Find Skill, such as data analysis or PDF",search:"Search",searching:"Searching…",noResults:"No matching skills found. Try another keyword.",hint:"Search Volcano Find Skill by keyword. Selected skills are downloaded to the skills/ directory when the project is generated."},space:{loadError:"Failed to load",loadingSpaces:"Loading AgentKit Skills centers…",noSpaces:"This account has no AgentKit Skills centers.",selectSpace:"Select an AgentKit Skills center",openConsole:"Open in the Volcano Engine console",loadingSkills:"Loading skills…",noSkills:"This AgentKit Skills center has no skills."}},I8e={unnamedNode:"Unnamed node",editInstruction:"Select to edit instructions…",controls:{ariaLabel:"Workflow canvas controls",zoomIn:"Zoom in",zoomOut:"Zoom out",fitView:"Fit view"},sections:{info:"Workflow information",execution:"Execution mode",nodes:"Nodes",nodeConfig:"Node configuration"},types:{sequential:{label:"Sequential",description:"Run nodes one after another"},parallel:{label:"Parallel",description:"Run nodes at the same time"},loop:{label:"Loop",description:"Run nodes repeatedly"}},placeholders:{description:"Describe what this workflow does…",agentDescription:"Describe what this agent does…",instruction:"You are…"},errors:{workflowNameUnique:"The workflow name must be unique among agent node names",agentNameUnique:"Agent names must be unique within this workflow"},dragHint:"Drag onto the canvas, or use the button below",agentNode:"Agent node",addNode:"Add node",connectHint:"Drag between node handles to define the execution order.",create:"Create workflow",deleteNode:"Delete node",nameHelp:"Use only letters, numbers, and underscores. Names must be unique.",instruction:"Instructions",tools:"Tools (comma-separated)",nodeId:"Node ID",empty:{selectNode:"Select a node to edit its configuration",summary:"{{nodes}} nodes · {{edges}} connections"}},P8e={ariaLabel:"Quick mode creation",progress:"Quick mode creation progress",steps:{agent:{label:"Agent",title:"Basic information",description:"Set the agent's name, purpose, behavior, and capabilities"},environment:{label:"Environment",title:"Configure the environment",description:"Choose the default environment or a custom environment you have built"},deployment:{label:"Deployment",title:"Deployment preferences",description:"Configure AgentKit cloud settings"}},model:{label:"Model",source:"Model source",name:"Model name",provider:"Provider",volcengineArk:"Volcano Ark",custom:"Custom",gateway:"Model gateway",comingSoon:"Coming soon",currentApiKey:"Current API Key",loadingApiKeys:"Loading API Keys",selectApiKey:"Select an API Key",searchApiKeys:"Search API Key names",noApiKeys:"No API Keys available",loadingModels:"Loading models",selectModel:"Select a model",searchModels:"Search by name, Model ID, or provider",noModels:"No models available",apiKeyPlaceholder:"Enter a model API Key",credentialsLoadError:"Failed to load model credentials",modelsLoadError:"Failed to load models"},identity:{unnamedPool:"Unnamed user pool",currentPool:"{{value}} (current user pool)",userPool:"User pool",loading:"Loading user pools",placeholder:"Select a user pool",search:"Search user pools",empty:"This account has no Identity user pools",currentHint:"This Studio's login JWT will be forwarded to the Runtime",mismatchHint:"The selected user pool is not used by this Studio, so the Studio will not be able to call the Runtime after deployment",selectionHint:"The user pool used by this Studio is marked in the list"},agent:{namePlaceholder:"Enter an agent name",descriptionPlaceholder:"Describe what this agent can do",prompt:"Prompt",promptPlaceholder:"Define the role, goals, and behavior boundaries",skills:"Skills",addSkill:"Add skills"},validation:{descriptionRequired:"Enter a description",promptRequired:"Enter a prompt",modelRequired:"Select a model",instanceIntegers:"Minimum instances must be an integer of 0 or greater, and maximum instances must be an integer greater than 0",instanceOrder:"Minimum instances cannot exceed maximum instances",userPoolRequired:"Select a user pool for Runtime authentication"},deployment:{runtimeName:"Runtime name",runtimeNameUpdateHint:"The existing Runtime name is preserved during updates",runtimeNameHint:"Use only letters, numbers, underscores, and hyphens",region:"Deployment region",authentication:"Authentication",apiKeyDescription:"Default: access with the Runtime API Key",userPoolDescription:"Use a JWT issued by an Identity user pool",sessionStorage:"Session storage",inMemoryStorage:"Temporary in-memory storage",backends:{sqlite:"SQLite file",mysql:"MySQL",postgresql:"PostgreSQL"},instances:"Instance settings",minInstances:"Minimum instances",maxInstances:"Maximum instances",inMemoryHint:"To prevent session loss across instances, keep the Runtime at 1–1 instances",networkMode:"Network mode",network:{public:"Public",private:"Private",both:"Public and private"},subnetIds:"Subnet IDs (optional, comma-separated)",sharedInternet:"Shared public egress in the VPC",sharedInternetHint:"Allow private Runtimes to access the public internet through shared egress",evaluationSets:"Evaluation sets",createEvaluationSets:"Create evaluation sets automatically",evaluationSetsHint:"Create Good Case and Bad Case evaluation sets after deployment",resources:"Resource configuration",complete:"Deployment complete",preparing:"Preparing deployment…"},environmentVariables:{title:"Environment variables",add:"Add variable",nameAriaLabel:"Environment variable name",valueAriaLabel:"Value for {{name}}",deleteNamed:"Delete {{name}}"},actions:{updateAgain:"Update again",deployAgain:"Deploy again",updateAndPublish:"Update and publish"}},N8e={actions:{addSubagent:"Add subagent",clearRoot:"Clear main agent",clearRootConfirmation:"Clear all settings and subagents from the main agent? This cannot be undone."},workspace:{progress:"Agent creation progress",modes:{build:"Build",validate:"Debug",optimize:"Optimize",environment:"Environment",publish:"Publish"},titles:{build:"Customize your agent architecture",validate:"Debug your agent",optimize:"Choose optimizations for your agent",environment:"Configure the cloud environment",publish:"Prepare your agent for deployment"}},sections:{type:{label:"Agent type",hint:"Choose an agent type"},basic:{label:"Basic information",hint:"Name, description, and system prompt"},model:{label:"Model",hint:"Model and service (optional)"},tools:{label:"Tools",hint:"Callable capabilities"},skills:{label:"Skills",hint:"Declarative skills"},knowledge:{label:"Knowledge base",hint:"External knowledge retrieval"},memory:{label:"Memory",hint:"Short-term and long-term memory"},subagents:{label:"Subagents",hint:"Nested collaboration"},review:{label:"Finish",hint:"Preview and create"}},agentTypes:{ariaLabel:"Agent type",remoteChildOnly:"Remote agents can only be used as child steps",llm:{label:"Agent",fullLabel:"LLM agent",description:"Uses an LLM to complete tasks autonomously"},sequential:{label:"Sequential",fullLabel:"Sequential agent",description:"Runs subagents one after another"},parallel:{label:"Parallel",fullLabel:"Parallel agent",description:"Runs subagents in parallel, then combines their results"},loop:{label:"Loop",fullLabel:"Loop agent",description:"Repeats subagents until the stop condition is met"},a2a:{label:"Remote agent",fullLabel:"Remote agent",description:"Calls a remote agent through the A2A protocol"}},basic:{agentName:"Agent name",name:"Name",agentDescription:"Agent description",descriptionPlaceholder:"Briefly describe what this agent does so your team can identify it…",nameHelp:"Follow Google ADK naming rules and keep the name unique in the execution flow.",rootDescriptionHelp:"The full description is preserved and converted to a Runtime-compatible single line during deployment.",descriptionHelp:"The description appears in agent lists and selectors.",orchestratorHelp:"This is a collaboration container and does not answer directly. Add task steps on the canvas and drag them to reorder.",maxIterations:"Maximum iterations",maxIterationsHelp:"The loop repeats its subagents until the condition is met or this limit is reached.",agentCenter:"AgentKit agent center",agentCenterHelp:"The remote agent's name, description, and capabilities come from the Agent Card returned by the center. The system discovers and attaches matching agents for each task.",moreOptions:"More options",systemPrompt:"System prompt",loadingMarkdown:"Loading Markdown editor…",markdownHelp:"Markdown shortcuts are supported. For example, type ## followed by a space to create a level-two heading.",unnamed:"Unnamed",unnamedAgent:"Unnamed agent"},validation:{remoteRoot:"A remote agent can only be a subagent",missingRegistry:"Select an AgentKit agent center",name:{required:"Name is required",reserved:"user is reserved by Google ADK. Choose another name.",characters:"Start with a letter or underscore and use only letters, numbers, and underscores"},duplicateName:"Agent names must be unique within this structure",missingDescription:"Description is required",mcpAuthRequired:"Confirm how to handle authentication after changing the MCP address",mcpDuplicateName:"MCP names must be unique",mcpDuplicateUrl:"Remove the duplicate MCP endpoint before publishing",missingSubagent:"A subagent is required",missingPrompt:"System prompt is required",missingSubagentDetail:"Add at least one subagent to {{type}} before debugging or publishing.",problem:"{{name}}: {{problem}}"},ai:{ariaLabel:"Fill agent configuration with AI",minimumLength:"Enter at least {{count}} characters.",replaceConfirmation:"The generated configuration will replace the current canvas and settings. Continue?",placeholder:"Describe your goal and use {{model}} to generate the configuration",generate:"Generate",generating:"Generating",success:"Configuration generated",regenerate:"Generate again",failed:"Generation failed"},debug:{ariaLabel:"Agent debugging workspace",unavailable:"This backend does not currently support generated-agent debug runs.",baseline:"Baseline",comparison:"Variant {{count}}",selectModel:"Select a model",enterDescription:"Enter a description",enterPrompt:"Enter a system prompt",duplicateConfiguration:"Test configurations must be unique",starting:"Starting…",applyAndRestart:"Apply and restart",restart:"Restart",start:"Start environment",defaultModel:"Default model",testConfiguration:"Test configuration",deleteVariant:"Delete {{name}}",deleteVariantGroup:"Delete comparison variant",creatingEnvironment:"Creating the test environment…",configurationChanged:"The configuration changed. Restart the environment.",ready:"Environment ready",readyHint:"Send a message to compare agent responses.",startHint:"Complete the configuration, then start the environment.",viewTraceNamed:"View the trace for {{name}}",traceUnavailable:"Send a message to view its trace",trace:"Trace",useConfiguration:"Use this configuration",finishConfiguration:"Finish configuration",finishAndStart:"Finish and start",currentAgentModel:"Current agent model",configurationHint:"Changes apply only to this comparison. Select this configuration to continue to deployment.",messagePlaceholder:"Send a message to the running test environments…",startOneFirst:"Start at least one test environment first",addVariant:"Add variant",traceTitle:"Trace · {{name}}",leaveTitle:"Leave debugging?",leaveDescription:"The current environments will be removed when you leave. You can start new environments when you return.",cleaning:"Cleaning up…",confirmLeave:"Leave",closeLeaveConfirmation:"Close leave-debugging confirmation"},optimization:{ariaLabel:"Agent optimization options",scenario:"Optimization scenario",components:"Optimization components",bytePlusUnavailable:"Harness Sidecar optimizations are not available for BytePlus accounts yet. Leave all optimizations unselected to continue; regular BytePlus agents are not affected.",releaseScenario:"Optimization scenario: {{profile}}",profiles:{default:{label:"Custom",description:"Choose components as needed. The Sidecar stays off when none are selected."},ops:{label:"Operations",description:"For operations diagnostics, databases, logs, and monitoring MCP servers."}},groups:{quality:"Improve response quality",cost:"Reduce runtime cost",stability:"Improve runtime stability"},options:{context_engine:{label:"Context management",description:"Manage context assembly, task anchoring, and context budgets."},compressor:{label:"Context and result compression",description:"Compress long context and large tool results to reduce token usage."},verifier:{label:"Response verification and repair",description:"Verify evidence and responses, then repair or alert on failure."},long_run_control:{label:"Goal task control",description:"Manage progress, continuation, and completion conditions for Goal tasks."},mcp_resilience:{label:"MCP resilience",description:"Manage connections, timeouts, empty results, large responses, and call budgets. Includes read-only SQL protection by default."}}},model:{label:"Model",source:"Model source",volcanoArk:"Volcano Ark",volcengineArk:"Volcano Ark",bytePlusModelArk:"BytePlus ModelArk",custom:"Custom",gateway:"Model gateway",comingSoon:"Coming soon",configuration:"Model configuration",name:"Model name",provider:"Provider",liteLlmProviders:"LiteLLM providers",apiKeyPlaceholder:"Enter the model API Key",available:"Available",retiring:"Retiring soon",notActivated:"Not activated",unavailable:"Unavailable",apiKeyLoadError:"Failed to load Ark API Keys",loadingApiKeys:"Loading API Keys…",selectApiKey:"Select an API Key",currentApiKey:"Current API Key",apiKeyList:"API Key list",searchApiKey:"Search API Keys",searchApiKeyName:"Search API Key names",noApiKeys:"No API Keys available",noMatchingApiKey:"No matching API Keys",loading:"Loading models…",loaded:"{{count}} models loaded",loadError:"Failed to load models",selectModel:"Select a model",selectProviderModel:"Select a provider model",providerModels:"Provider models",search:"Search models",searchPlaceholder:"Search by name, Model ID, or provider",noMatches:"No matching models",empty:"No models available",unknownStatus:"Unknown status",refresh:"Refresh",refreshing:"Refreshing…",activate:"Activate",activateAction:"Open activation",currentConfiguration:"Current configuration"},tools:{builtIn:"Built-in tools",builtInHelp:"Select VeADK capabilities. Imports and required environment variables are added automatically.",codeExecution:"Code execution configuration",codeExecutionHelp:"Select the AgentKit code execution sandbox.",mcp:"MCP tools"},catalog:{web_search:{label:"Web search",description:"Get real-time information with Volcengine Web Search."},parallel_web_search:{label:"Parallel web search",description:"Run multiple search queries in parallel and combine the results faster."},link_reader:{label:"Link reader",description:"Fetch and read the main content from a URL."},web_scraper:{label:"Web scraper",description:"Crawl webpages into structured data. Requires the Scraper service."},image_generate:{label:"Image generation",description:"Generate images from text with Doubao Seedream."},image_edit:{label:"Image editing",description:"Edit or transform images with Doubao SeedEdit."},video_generate:{label:"Video generation",description:"Generate videos from text or images with Doubao Seedance, including task status queries."},text_to_speech:{label:"Text to speech (TTS)",description:"Convert text to speech with Volcengine Speech."},run_code:{label:"Code execution",description:"Run code in a sandbox."},vesearch:{label:"VeSearch",description:"Search with Volcengine VeSearch. Requires a bot endpoint."},links:{console:"Console",documentation:"Documentation"},env:{modelAgentName:{comment:"Model name"},embeddingModelName:{comment:"Embedding model required by memory and knowledge bases"},vikingMemoryProject:{comment:"VikingDB memory project"},vikingMemoryRegion:{comment:"VikingDB memory region"},vikingMemoryType:{comment:"Memory types"},feishuAppId:{comment:"Feishu app ID"},feishuAppSecret:{comment:"Feishu app secret",placeholder:"Enter the app secret"},registrySpaceId:{comment:"AgentKit agent center",placeholder:"Select an agent center"},registryTopK:{comment:"Number of agents to retrieve"},registryRegion:{comment:"AgentKit agent center region"},registryEndpoint:{comment:"AgentKit agent center OpenAPI endpoint"},agentKitToolId:{comment:"Code execution sandbox ID"},agentKitToolRegion:{comment:"AgentKit Tools region"},openVikingUrl:{comment:"OpenViking service URL"},openVikingMemoryUserId:{comment:"Memory owner ID",help:"The user segment in viking://user//peers//memories. Use it to isolate agents, tenants, or business scenarios. The default is default."},openVikingMemoryPolicy:{comment:"Memory policy",help:"Controls memory extraction and isolation. Leave it blank to use the official default policy."},openVikingKnowledgeUserId:{comment:"Knowledge base owner ID",help:"Used in the default path viking://user//resources// when no resource directory is configured. The default is default."},openVikingTargetUri:{comment:"Knowledge base resource directory",help:"Leave blank to generate it from the KnowledgeBase index. When provided, this OpenViking resource directory takes precedence."},tlsServiceName:{comment:"TLS topic_id. Leave blank to create one automatically"}}},backends:{shortTerm:{local:{label:"In-memory",description:"Stored in the process without persistence. Best for development and debugging."},sqlite:{label:"SQLite file",description:"Persist data to a local .db file."},mysql:{label:"MySQL",description:"Persist data to MySQL."},postgresql:{label:"PostgreSQL",description:"Persist data to PostgreSQL."}},longTerm:{local:{label:"Local vector store",description:"In-process llama-index vector store."},opensearch:{label:"OpenSearch",description:"Vector retrieval with OpenSearch."},redis:{label:"Redis",description:"Vector retrieval with Redis."},viking:{label:"VikingDB Memory",description:"VikingDB memory with user profile support."},openviking:{label:"OpenViking Memory",description:"Long-term memory that stores and retrieves preferences, events, and entities per user."},mem0:{label:"Mem0",description:"Managed memory from Mem0."}},knowledge:{viking:{label:"VikingDB Knowledge",description:"VikingDB knowledge base."},opensearch:{label:"OpenSearch",description:"Vector retrieval with OpenSearch."},context_search:{label:"Context Search",description:"Volcengine Context Search without embedding configuration."},openviking:{label:"OpenViking Knowledge",description:"OpenViking resource-directory knowledge base without embedding configuration."}}},exporters:{apmplus:{label:"APMPlus",description:"Volcengine APMPlus application performance monitoring."},cozeloop:{label:"CozeLoop",description:"Distributed tracing with CozeLoop."},tls:{label:"TLS (Log Service)",description:"Export logs to Volcengine TLS."}},knowledge:{title:"Knowledge base",description:"Enable external knowledge retrieval (RAG) so the agent can answer from your data.",backend:"Knowledge base backend",vikingDatabase:"VikingDB knowledge base"},memory:{shortTerm:"Short-term memory",shortTermDescription:"Store context for one session",shortTermBackend:"Short-term memory backend",longTerm:"Long-term memory",longTermDescription:"Store context across sessions, usually with vector retrieval",longTermBackend:"Long-term memory backend",vikingDatabase:"VikingDB memory",autoSave:"Save sessions to long-term memory automatically",autoSaveDescription:"Write session content to long-term memory when a session ends."},mcp:{removeTool:"Remove MCP tool",namePlaceholder:"Name (optional)",urlPlaceholder:"MCP service URL",pathWarning:"This address does not end with /mcp. Confirm that it is the complete MCP service URL.",configuredPlaceholder:"Authentication is stored securely",tokenPlaceholder:"Bearer token (optional)",changedUrlWarning:"The MCP address changed. Choose how to handle the stored authentication.",reuseCredential:"Keep using it",replaceCredential:"Replace authentication",noAuth:"Use no authentication",reuseHint:"The stored authentication will be reused when you publish.",changeToReplace:"Replace instead",credentialConfigured:"Studio securely stores the authentication.",removeCredential:"Remove authentication",commandPlaceholder:"Command, such as npx",argsPlaceholder:"Arguments separated by spaces",stdioHint:"The stdio tool starts in the deployment environment. Make sure its command and dependencies are available.",addTool:"Add MCP tool"},resources:{unnamedAgentCenter:"Unnamed agent center",unnamedKnowledgeBase:"Unnamed knowledge base",unnamedMemory:"Unnamed memory store",loadError:"Failed to load",loadingAgentCenters:"Loading agent centers…",agentCentersLoaded:"{{count}} agent centers loaded",noAgentCenters:"No agent centers available",noMatchingAgentCenters:"No matching agent centers",searchAgentKitCenter:"Search AgentKit agent centers",searchNameOrId:"Search by name or ID",selectAgentCenter:"Select an agent center",selectAgentKitCenter:"Select an AgentKit agent center",selectedAgentCenter:"Selected agent center",agentKitCenter:"AgentKit agent center",refreshAgentCenters:"Refresh agent centers",knowledgeBaseList:"Knowledge base list",knowledgeBasePlaceholder:"Select a knowledge base",loadingKnowledgeBases:"Loading knowledge bases…",knowledgeBasesLoaded:"{{count}} knowledge bases loaded",noKnowledgeBases:"No knowledge bases available",noMatchingKnowledgeBases:"No matching knowledge bases",searchKnowledgeBase:"Search knowledge bases",selectKnowledgeBase:"Select a knowledge base",refreshKnowledgeBases:"Refresh knowledge bases",memoryList:"Memory store list",memoryPlaceholder:"Select a memory store",loadingMemories:"Loading memory stores…",memoriesLoaded:"{{count}} memory stores loaded",noMemories:"No memory stores available",noMatchingMemories:"No matching memory stores",searchMemory:"Search memory stores",selectMemory:"Select a memory store",refreshMemories:"Refresh memory stores"},env:{noAdditionalParameters:"This backend needs no additional runtime parameters.",invalidJson:"Enter valid JSON.",helpAriaLabel:"Help for {{label}}: {{help}}",openOpenViking:"Open OpenViking {{label}}",valuePlaceholder:"Enter a value",openVikingIndex:"OpenViking resource index",openVikingIndexHelp:"Leave blank to generate an index from the agent name, such as my_agent_kb. Without DATABASE_OPENVIKING_TARGET_URI, the default URI is viking://user/{knowledge base owner ID, or default}/resources/{resource index}/. When DATABASE_OPENVIKING_TARGET_URI is set, that complete URI is used instead.",openVikingIndexAriaLabel:"OpenViking resource index help: {{help}}"},deployment:{vpcRequired:"Enter a VPC ID when using VPC networking.",apiKeyRequired:"Select the API Key used by the model.",invalidEnvName:"Invalid environment variable name: {{key}}",requiredEnv:"{{name}}: enter this required environment variable",generatingConfiguration:"Generating deployment configuration",runtimeNameExists:"This Runtime name already exists. Choose another name and try again.",preparing:"Preparing deployment",complete:"Deployment complete",failed:"Deployment failed",updateAndPublish:"Update and publish",stages:{build:"Build image",deploy:"Deploy Runtime",publish:"Publish service",running:"Deploying"}},publish:{generating:"Generating publish configuration",validating:"Validating the agent structure and preparing the deployment snapshot…"}},B8e={presets:{support:{name:"Customer support assistant",description:"Answer questions around the clock using your knowledge base and conversation history, with consistent and considerate responses.",instruction:"You are a professional and patient customer support assistant. Always use a courteous, friendly tone. Base answers on the knowledge base whenever possible. When the available information is insufficient, say so clearly and ask for the details you need instead of inventing an answer. Keep responses concise and well structured, and provide steps when useful.",subagents:{}},analyst:{name:"Data analyst",description:"Run code for statistics and visualization with tracing enabled, so every analysis is observable and reproducible.",instruction:"You are a rigorous data analyst. Clarify the objective and definitions before cleaning, analyzing, and visualizing data with executable code. Explain assumptions and methods at each step, support conclusions with key evidence, and identify possible bias or limitations.",subagents:{}},translator:{name:"Translation assistant",description:"Translate between Chinese and English accurately and naturally while preserving tone and terminology.",instruction:"You are a professional translator fluent in Chinese and English. Preserve the meaning of the source while producing natural language for the target audience. Keep proper nouns and technical terminology accurate and reflect the original tone and style. Return only the translation unless the user asks for an explanation.",subagents:{}},coder:{name:"Coding assistant",description:"Write, debug, and refactor code, validate it by running tests, and produce clear, maintainable implementations.",instruction:"You are a senior software engineer. Write correct, clear, maintainable code that follows the conventions and best practices of the target language. When uncertain, run the code to validate the implementation, cover important edge cases, and add concise comments for complex logic.",subagents:{}},researcher:{name:"Researcher",description:"Search primary sources online and combine them with knowledge and long-term memory to produce evidence-backed findings.",instruction:"You are a rigorous researcher. Break each question into key subproblems, collect multiple credible primary sources through web search, and cross-check the evidence before drawing conclusions. Cite sources, state uncertainty, distinguish facts from inference, and avoid overgeneralization.",subagents:{}},"research-team":{name:"Multi-agent research team",description:"Coordinate a researcher, analyst, and writer to produce an end-to-end research report.",instruction:"You coordinate a research team. Break down the user's research task, delegate search, analysis, and writing to the appropriate subagents, synthesize their work, and deliver a clear, evidence-backed report.",subagents:{0:{name:"Researcher",description:"Collect primary sources and data related to the topic online.",instruction:"You are the team's researcher. Find multiple credible sources about the topic, organize the key facts, data, and original citations, and hand them to the analyst without adding unsupported conclusions."},1:{name:"Analyst",description:"Cross-check and synthesize the collected material.",instruction:"You are the team's analyst. Cross-check, compare, and synthesize the research material. Extract insights, identify contradictions and uncertainty, and produce a structured set of findings."},2:{name:"Writer",description:"Turn the analysis into a clear report with reliable citations.",instruction:"You are the team's writer. Turn the analyst's findings into a clear, well-written report with consistent citations, ensuring every conclusion can be traced to a source."}}}},tags:{tools:"Tools",memory:"Memory",knowledgeBase:"Knowledge base",tracing:"Tracing",subagents:"{{count}} subagents"},gallery:{title:"Create from a template",subtitle:"Choose a prebuilt agent template and customize it to fit your needs."},detail:{back:"Back to templates",name:"Name",systemPrompt:"System prompt",model:"Model",tools:"Tools",memory:"Memory",knowledgeBase:"Knowledge base",tracing:"Tracing",subagents:"Subagents ({{count}})",create:"Create from this template",shortTermMemory:"Short-term",longTermMemory:"Long-term"}},Qtr=Object.freeze(Object.defineProperty({__proto__:null,buildCanvas:E8e,codePackage:k8e,common:w8e,default:{common:w8e,yaml:A8e,validation:T8e,defaults:S8e,helpers:C8e,intelligentDeployment:O8e,codePackage:k8e,buildCanvas:E8e,intelligent:_8e,projectLibrary:R8e,modePicker:D8e,promptEditor:L8e,skills:M8e,workflow:I8e,workbench:P8e,traditional:N8e,template:B8e},defaults:S8e,helpers:C8e,intelligent:_8e,intelligentDeployment:O8e,modePicker:D8e,projectLibrary:R8e,promptEditor:L8e,skills:M8e,template:B8e,traditional:N8e,validation:T8e,workbench:P8e,workflow:I8e,yaml:A8e},Symbol.toStringTag,{value:"Module"})),$8e={backToList:"Back to scheduled tasks",cancel:"Cancel",cancelQueue:"Cancel queued run",cancelQueueFirst:"Cancel the queued run first",cancelling:"Cancelling…",closeDrawer:"Close panel",collapse:"Collapse",connectingRuntime:"Connecting to Runtime…",createScheduledTask:"Create scheduled task",createTask:"Create task",delete:"Delete",deleteTask:"Delete task",edit:"Edit",enable:"Enable",expand:"Expand",pause:"Pause",refresh:"Refresh",refreshHistory:"Refresh run history",rerun:"Run again",retry:"Retry",runNow:"Run now",saveChanges:"Save changes",saving:"Saving…",stop:"Stop run",stopRun:"Stop this run",stopRunFirst:"Stop the current run first",stopping:"Stopping…",viewDetails:"View details"},F8e={cancelDescription:"This Session will be cancelled. Future scheduled runs will remain enabled.",cancelTitle:"Stop this run?",deleteDescription:"“{{name}}” and its complete run history will be permanently deleted.",deleteTitle:"Delete scheduled task?"},z8e={configuration:"Task configuration",nextRun:"Next run",pageLabel:"Scheduled task details",region:"Region",runtime:"Runtime",status:"Task status"},U8e={createTitle:"Create scheduled task",description:"Each trigger creates a separate Session for the Runtime Agent.",editTitle:"Edit scheduled task"},V8e={minutesSeconds:"{{minutes}} min {{seconds}} sec",seconds:"{{count}} sec"},Q8e={cronExpression:"Cron expression",cronHelp:"Enter minute, hour, day of month, month, and day of week.",dailyTime:"Daily run time",enableAfterCreate:"Enable after creation",enableHelp:"The task will run at its next scheduled time after it is enabled.",name:"Task name",namePlaceholder:"For example: Generate a daily operations summary",noRuntime:"No Runtime available",prompt:"Execution prompt",promptPlaceholder:"Enter the text to send to the Agent on every run",runAt:"Run time",runtimeAgent:"Runtime Agent",runtimeHelp:"The task always uses the Runtime's currently active version.",runtimePlaceholder:"Select a Runtime Agent",schedule:"Schedule",scheduleType:"Schedule type",timezone:"Time zone",weekday:"Day of week"},G8e={all:"All"},H8e={description:"Each run uses a separate Session. Results and errors are retained.",duration:"Duration: {{duration}}",emptyDescription:"Runs will appear here after the task is triggered or run manually.",emptyTitle:"No runs yet",errorDetails:"Error details",finalAnswer:"Final answer",loadFailed:"Unable to load run history",loadFailedDescription:"Check the Studio service and try again.",session:"Session",title:"Run history"},W8e={cancelRequested:"Stop request submitted.",created:"Task created.",deleted:"The task and its run history were deleted.",enabled:"Task enabled.",paused:"Task paused.",queued:"Task queued and will start within one minute.",requeued:"Task queued again and will start within one minute.",updated:"Task updated."},Y8e={filterLabel:"Filter scheduled tasks by status",listLabel:"Scheduled task list",loadFailed:"Unable to load scheduled tasks",loadFailedDescription:"Check the Studio service and try again.",title:"Cronjob"},q8e={cron:"Cron {{cron}}{{zone}}",daily:"Daily at {{time}}{{zone}}",once:"Once · {{date}}{{zone}}",weekly:"{{weekday}} at {{time}}{{zone}}"},j8e={daily:"Daily",once:"Once",weekly:"Weekly"},X8e={cancelled:"Cancelled",enabled:"Enabled",failed:"Failed",notRun:"Not run yet",paused:"Paused",pending:"Preparing",queued:"Queued",retrying:"Retrying",running:"Running",skipped:"Skipped",success:"Succeeded"},K8e={cronFields:"A Cron expression must contain five fields, for example 0 9 * * *.",nameRequired:"Enter a task name.",promptRequired:"Enter the text to send to the Agent on each run.",runtimeAppMissing:"The Runtime Agent did not return an appName. Confirm that the Runtime is ready and compatible.",runtimeRequired:"Select an available Runtime Agent.",timeRequired:"Select a run time."},Z8e={friday:"Friday",monday:"Monday",saturday:"Saturday",sunday:"Sunday",thursday:"Thursday",tuesday:"Tuesday",wednesday:"Wednesday"},Gtr=Object.freeze(Object.defineProperty({__proto__:null,actions:$8e,confirm:F8e,default:{actions:$8e,confirm:F8e,detail:z8e,drawer:U8e,duration:V8e,fields:Q8e,filters:G8e,history:H8e,notices:W8e,page:Y8e,schedule:q8e,scheduleTypes:j8e,status:X8e,validation:K8e,weekdays:Z8e},detail:z8e,drawer:U8e,duration:V8e,fields:Q8e,filters:G8e,history:H8e,notices:W8e,page:Y8e,schedule:q8e,scheduleTypes:j8e,status:X8e,validation:K8e,weekdays:Z8e},Symbol.toStringTag,{value:"Module"})),J8e="Report an issue",eBe="Description",tBe="Common issues",rBe="Cancel",nBe="Done",iBe="Submit feedback",aBe="Submitting…",sBe={title:"Feedback submitted. Thank you.",description:"The AgentKit team will review your report as soon as possible."},oBe={close:"Close issue report",intro:"Select the issues you encountered and add any useful details.",privacy:"Your conversation data will be shared with the AgentKit team. Please protect sensitive information.",descriptionPlaceholder:"Describe what happened (optional)",issues:{slow:"Slow execution",crash:"Runtime crash",incorrect:"Inaccurate result",tool_error:"Tool call failed",other:"Other issue"}},lBe={description:"Tell us about a problem you encountered while using AgentKit Studio.",module:"Area",modules:{conversation:"Conversation",agents:"Agents",applications:"Automations",search:"Search",other:"Other"},commonIssuesMultiple:"Common issues (select all that apply)",issueTypes:"Issue types",issues:{page_slow:"Page loads slowly",feature_unavailable:"Feature unavailable",display_error:"Display issue",no_response:"Action has no response",other:"Other issue"},descriptionPlaceholder:"Describe the page, action, and what happened",quickAdd:"Quick add",suggestionsLabel:"Suggested descriptions",suggestions:{noResponse:"Nothing happens after I click",loading:"The page remains in a loading state",incomplete:"Some content is missing or clipped",error:"An error appears after the action"},privacy:"Your data will be shared with the AgentKit team. Please protect sensitive information."},Htr=Object.freeze(Object.defineProperty({__proto__:null,cancel:rBe,commonIssues:tBe,default:{title:J8e,descriptionLabel:eBe,commonIssues:tBe,cancel:rBe,done:nBe,submit:iBe,submitting:aBe,success:sBe,dialog:oBe,page:lBe},descriptionLabel:eBe,dialog:oBe,done:nBe,page:lBe,submit:iBe,submitting:aBe,success:sBe,title:J8e},Symbol.toStringTag,{value:"Module"})),cBe={back:"Back",close:"Close"},uBe={title:"Optimize migrated project",closeAria:"Close optimization dialog"},hBe={title:"Migrated projects",description:"Manage migrated source versions or continue optimizing any version.",libraryTitle:"Projects and versions",libraryDescription:"View, download, deploy, or compare source versions, or continue optimizing any version.",emptyTitle:"No migrated projects yet",emptyDescription:"Migrated source code will be saved here automatically."},dBe={langchain:"LangChain",langgraph:"LangGraph",adk:"Google ADK",strands:"Strands",agentcore:"AgentCore",dify:"Dify",any:"Any (universal migration)"},fBe={awaitingUpload:"Awaiting upload",analyzing:"Analyzing",needsInput:"Needs input",analysisReady:"Awaiting confirmation",migrating:"Migrating",validating:"Validating",packaging:"Packaging",succeeded:"Completed",succeededWithWarnings:"Completed with notices",partial:"Partially completed",failed:"Failed",cancelled:"Stopped",expired:"Expired"},pBe={partialReady:"Migration output is ready, but delivery is incomplete. Review the migration notices.",readyWithWarnings:"Migration output is ready. Review the migration notices.",ready:"Migration output is ready."},gBe={passed:"Output verification passed",failed:"Output verification failed",degraded:"Output verification incomplete"},mBe={session:"Create migration environment",upload:"Upload project",analysis:"Analyze project"},vBe={agentNameRequired:"Enter an Agent name",agentNameInvalid:"Agent names must be 1–63 characters, contain only lowercase letters, numbers, and hyphens, and start and end with a letter or number"},yBe={seconds:"{{seconds}} sec",minutesSeconds:"{{minutes}} min {{seconds}} sec"},bBe={savedUnaffected:"Saved projects are unaffected",savingUnaffected:"Source is being saved and will be unaffected once complete",activeDetail:"Task history and temporary output will become unavailable after expiration",oneHour:"Temporary migration environment is retained for 1 hour",ended:"Temporary migration environment has ended",savedAvailable:"Saved projects remain available to view, download, deploy, or optimize",unavailable:"Task history and temporary output are no longer available",countdown:"Temporary migration environment ends in {{minutes}} min {{seconds}} sec",expiredSavedMessage:"The temporary migration environment has ended. Saved projects are unaffected.",expiredMessage:"The temporary migration environment has ended. Task history and temporary output are no longer available."},xBe={recommended:"Recommended migration method",scope:"Migration scope",excluded:"Out of scope",viewEvidence:"View analysis evidence",viewAssumptions:"View key assumptions",viewSourceEvidence:"View source evidence"},wBe={ariaLabel:"Codex activity",title:"Codex activity",startingAnalysis:"Codex is starting the analysis…",startingMigration:"Codex is starting the migration…",loadError:"Codex activity is temporarily unavailable. The current task is unaffected."},ABe={title:"Migration output",fileTooLarge:"This file exceeds 2 MiB. Download the complete output to view it.",unsupportedPreview:"This file cannot be previewed here. Download the complete output to view it.",filesAria:"Migration output files",searchAria:"Search output files",searchPlaceholder:"Search files",limit:"Showing the first {{count}} items. Search for a specific file.",noSelection:"No file selected",noPreview:"No files available to preview.",loadingFile:"Loading output file…",startupFile:"Startup file",fileCountLabel:"Files",saved:"Source has been saved. You can view, download, deploy, or optimize it.",saving:"Output is ready and the source version is being saved.",deployReady:"Output is available to preview, download, and deploy. Waiting for source save status.",deployUnavailable:"Output is available to preview and download, but its current delivery status does not support deployment.",viewProjects:"View migrated projects",downloading:"Downloading…",downloadZip:"Download ZIP",deployTitle:"Deploy migration output",deployUnavailableTitle:"Current delivery status does not support deployment",deployRuntime:"Deploy to Runtime",fileCount:"{{count}} files",startup:"Startup file {{module}}",loading:"Loading migration output…"},TBe={retiring:"Retiring soon",currentDefault:"Current default model",loadError:"Failed to load models",label:"Model",placeholder:"Select a model"},SBe={zipOnly:"Select a local project in .zip format.",invalidName:"The ZIP file name is invalid. Rename the file and select it again.",tooLarge:"The project ZIP cannot exceed {{size}}.",empty:"The project ZIP cannot be empty.",removeAria:"Remove project ZIP",reselectPrompt:"Select the project ZIP again",selectPrompt:"Select or drop a local project ZIP",reselect:"Select again",selectZip:"Select ZIP",continue:"Continue upload",start:"Start migration",inputAria:"Select a local project ZIP",retention:"The temporary migration environment is retained for 1 hour after creation. Successfully saved source versions are unaffected."},CBe={requiredPlaceholder:"Enter {{key}}",optionalPlaceholder:"Optional: {{key}}",notReady:"Migration output is not ready yet.",back:"Back to migration results"},OBe={backToAddAgent:"Back to Add Agent",title:"Migrate existing project",newMigration:"New migration",recent:"Recent migrations",sessionsAria:"Migration sessions",loadingSessions:"Loading migration sessions…",noSessions:"No migration sessions",heading:"Migrate an existing Agent project",intro:"Upload a local project ZIP. Codex will first perform a read-only analysis, then ask you to confirm the migration method."},kBe={stop:"Stop migration",stopping:"Stopping…",reload:"Reload",refreshStatus:"Refresh status"},EBe={unavailable:"Migration is currently unavailable",defaultReason:"Dev Sandbox is currently unavailable. Contact your administrator to check the configuration."},_Be={requestZip:"Provide a local project ZIP. After upload, I’ll identify the framework, entry point, and migration boundaries, then ask you to confirm the migration method before making changes.",zipHint:"Only local ZIP files are supported, up to {{size}}. The migration environment is retained for 1 hour after creation.",creatingSandbox:"Creating Dev Sandbox",initializing:"Initializing the migration workspace and checking AgentKit CLI, Codex, and migration capabilities. The project will upload automatically when the environment is ready.",elapsed:"Elapsed: {{duration}}",uploadThenAnalyze:"Read-only analysis will start automatically after the ZIP upload completes.",analyzing:"Codex is identifying the framework, entry point, and migration boundaries. No migration changes are being made.",migrationLocked:"Attachments and migration settings cannot be changed while migration is running. Wait for the task to finish or stop it.",analysisPaused:"Read-only analysis is paused. Answer only the questions below. After submission, analysis will continue in the same environment without starting the migration.",analysisComplete:"Read-only analysis is complete. Review the recommendation and confirm the final migration method.",awaitingUpload:"The migration environment is ready. Select the local ZIP again to continue uploading.",expiredTitle:"Migration environment expired",expiredDescription:"Migration content and output can no longer be previewed, downloaded, or deployed. If the Runtime deployment completed, return to the Agents page to continue using it.",unsupportedTitle:"This ZIP cannot be migrated yet",unsupportedHint:"Update the project as instructed, then create a new migration and upload it again.",failedTitle:"Migration incomplete",cancelled:"This migration was stopped. Create a new migration and upload the project again."},RBe={ariaLabel:"Provide project analysis details",title:"Additional information needed for analysis",description:"The attachment stays locked; submitting continues read-only analysis only",submitting:"Continuing analysis…",submit:"Submit and continue analysis"},DBe={ariaLabel:"Confirm migration method",title:"Confirm migration method",description:"Migration starts only after confirmation",framework:"Migration method",frameworkPlaceholder:"Select a migration method",agentName:"Agent name",entry:"Project entry point",entryPlaceholder:"Select a project entry point",entryExample:"For example, agent.py:agent",consent:"By selecting “Confirm and start migration,” you confirm the migration scope, exclusions, and key assumptions above.",starting:"Starting migration…",start:"Confirm and start migration"},LBe={closeAria:"Dismiss error",loadFailed:"Could not load migration data. Try again.",refreshFailed:"Could not refresh the migration status. Try again."},MBe={title:"Stop the current migration?",description:"Stopping ends the current analysis or migration process. Completed steps will not continue."},Wtr=Object.freeze(Object.defineProperty({__proto__:null,actions:kBe,activity:wBe,analysis:xBe,artifact:ABe,capability:EBe,common:cBe,confirmation:DBe,conversation:_Be,default:{common:cBe,optimization:uBe,projects:hBe,framework:dBe,state:fBe,task:pBe,verification:gBe,transfer:mBe,validation:vBe,duration:yBe,expiry:bBe,analysis:xBe,activity:wBe,artifact:ABe,model:TBe,upload:SBe,deployment:CBe,workspace:OBe,actions:kBe,capability:EBe,conversation:_Be,questions:RBe,confirmation:DBe,errors:LBe,stopDialog:MBe},deployment:CBe,duration:yBe,errors:LBe,expiry:bBe,framework:dBe,model:TBe,optimization:uBe,projects:hBe,questions:RBe,state:fBe,stopDialog:MBe,task:pBe,transfer:mBe,upload:SBe,validation:vBe,verification:gBe,workspace:OBe},Symbol.toStringTag,{value:"Module"})),IBe={loading:"Loading…",searchLabel:"Search {{label}}",searchPlaceholder:"Search {{label}}",retry:"Retry",noMatches:"No matches",noOptions:"No options available",selection:"{{label}}: {{value}}"},PBe={badge:"All new",view:"See what's new",title:"What's new",defaultNotes:{multiRegion:"Multi-region agents: load Beijing and Shanghai Runtimes in parallel, with more available as you scroll.",switchAgent:"Switch in conversation: choose an agent beside the composer and start a new conversation immediately.",visualCanvas:"Visual execution canvas: inspect multi-agent structures on a horizontal canvas with fullscreen support."}},NBe={label:"New conversation workspace",agent:"Agent",skill:"Skill customization",video:"Video creation"},BBe={select:"Select conversation mode",agent:{label:"Agent",description:"Chat with the selected Agent"},builtin:{label:"Built-in Agent",description:"Use an Agent provided by the platform"},codex:{label:"Codex Agent",description:"Run tasks in a sandbox"},deepseekHarness:{label:"DeepSeek Harness",description:"Open the DeepSeek Harness workspace"},arkClaw:"ArkClaw",hermes:"Hermes Agent",checking:"Checking configuration",notConfigured:"Not configured by an administrator",unavailable:"Unavailable"},$Be={select:"Select Agent",typesLabel:"Agent types",listLabel:"{{type}} list",types:{agent:"Agent",general:"General Agent",codex:"Codex Agent",deepseekHarness:"DeepSeek Harness",openclaw:"OpenClaw Agent",hermes:"Hermes Agent"},loading:"Loading Agents",reload:"Reload",empty:"No {{type}} yet",emptyLocal:"No local Agents yet",emptyGeneral:"No General Agents yet",createHint:"Create one from the Agents page",localHint:"Check the directory where Studio was started",waking:"Waking up",opening:"Opening",connecting:"Connecting",loadingMore:"Loading",loadMore:"Load more",runtimeTimeout:"Loading Agents timed out after 15 seconds. Check the network or Runtime service and retry.",loadGeneral:"Load General Agents",loadType:"Load {{type}}",connectGeneral:"Connect to General Agent",openLocal:"Open local Agent",openType:"Open {{type}}",wakingHint:"Waking the agent. This may take some time."},FBe={spaceAria:"Skill spaces",configuration:"Skill customization settings",actions:{create:"Generate Skill",optimize:"Optimize Skill"},selectAction:"Select a Skill customization action",actionList:"Skill customization actions",style:"Style",selectStyle:"Select style",model:"Model",selectModel:"Select model",styles:{concise:"Concise and practical",strict:"Rigorous and reliable",tutorial:"Tutorial-friendly",automation:"Automation-first"},modelLoadFailed:"Failed to load model configuration",spaceLoadFailed:"Failed to load Skill Spaces",skillLoadFailed:"Failed to load Skills",unnamedSpace:"Unnamed Skill Space",space:"Skill Space",select:"Select Skill",selectAria:"Select Skill: {{skill}}",loadingSpaces:"Loading Skill Spaces",reload:"Reload",emptySpaces:"No Skill Spaces yet",skillList:"{{space}} Skill list",loadingSkills:"Loading Skills",emptySkills:"No Skills yet"},zBe={modes:{auto:"Auto detect",text_to_video:"Text to video",reference_to_video:"Reference to video",video_editing:"Video editing",video_extension:"Video extension",first_last_frame:"First and last frames"},taskNames:{auto:"Video generation",text_to_video:"Text-to-video",reference_to_video:"Reference-to-video",video_editing:"Video editing",video_extension:"Video extension",first_last_frame:"First-and-last-frame generation"},controls:{label:"Video creation settings",aspectRatio:"Aspect ratio",selectAspectRatio:"Select aspect ratio",resolution:"Resolution",selectResolution:"Select resolution",duration:"Duration",durationShort:"{{count}}s",durationAria:"Video duration: {{count}} seconds",lastFrame:"Last frame",lastFrameHelper:"Add the video's ending frame",assistImage:"Supporting image",referenceImage:"Reference image",assistImageHelper:"Add visual guidance",imageHelper:"Supports common image formats",referenceVideo:"Reference video",videoHelper:"Supports common video formats",optional:"Optional",replace:"Replace",add:"Add",upload:"Upload {{label}}",replaceFile:"Replace {{label}}: {{name}}",removeFile:"Remove {{label}} {{name}}",storageUnavailable:"Persistent storage is not configured",loadingEnhancer:"Loading prompt enhancement model",enhancerHint:"Uses {{model}} for intent recognition and prompt enhancement",enhancerUnavailable:"Prompt enhancement model unavailable"},task:{title:"Video generation task",closeAria:"Close video generation task dialog",progressAria:"Video generation progress",optimizedPrompt:"Optimized prompt",processingAria:"{{task}} progress",waitingAria:"{{status}}, elapsed {{elapsed}}",elapsed:"Elapsed {{elapsed}}",previewAria:"Generated video preview",close:"Close",download:"Download video",retryOptimization:"Retry prompt optimization",retryGeneration:"Retry video generation",providerQueued:"Waiting for model scheduling",providerRunning:"Model generating",providerSubmitting:"Submitting task",queuedHint:"The task was submitted. Its status will update automatically when processing begins.",runningHint:"This may take several minutes. The video preview will appear here when complete.",backgroundHint:"You can close this dialog. The task will continue in the background.",successHint:"Your video is ready to preview or download.",activationHint:"Activate the service in the model console, then retry generation.",retryHint:"Fix the issue and retry the current step.",steps:{optimizationFailed:"Prompt optimization failed",optimizationDone:"Prompt optimization complete",optimizationActive:"Optimizing prompt",generationDone:"{{task}} complete",generationFailed:"{{task}} failed",generationQueued:"{{task}} queued",generationRunning:"Generating {{task}}",generationActive:"{{task}} in progress",generationPending:"Waiting for video generation",generationComplete:"Video generation complete"},elapsedHours:"{{hours}}h {{minutes}}m",elapsedMinutes:"{{minutes}}m {{seconds}}s",elapsedSeconds:"{{seconds}}s"}},Ytr=Object.freeze(Object.defineProperty({__proto__:null,agentPicker:$Be,compactSelect:IBe,default:{compactSelect:IBe,featureNotice:PBe,workspace:NBe,mode:BBe,agentPicker:$Be,skill:FBe,video:zBe},featureNotice:PBe,mode:BBe,skill:FBe,video:zBe,workspace:NBe},Symbol.toStringTag,{value:"Module"})),UBe={cancel:"Cancel",close:"Close",retry:"Retry",tryAgain:"Try again",closeDialog:"Close {{title}}",agentFallback:"{{agent}} Agent",unknownSource:"Unknown source"},VBe={terminalTitle:"Terminal",browserTitle:"Sandbox browser",terminalSubtitle:"Connect to the interactive terminal for the current AgentKit Session",browserSubtitle:"View and control the browser in the current AgentKit Session",connecting:"Connecting…",connected:"Connected",notConnected:"Not connected",opening:"Opening {{title}}",connectingSession:"Connecting the tool to the current AgentKit Session.",openFailed:"Failed to open {{title}}"},QBe={title:"Resume Codex conversation",subtitle:"Select a recently updated Thread from the current Sandbox Session",loading:"Loading conversation history",loadFailed:"Failed to load conversation history",empty:"No conversations to resume"},GBe={title:"Codex permissions",subtitle:"Settings are saved to the current Sandbox Session and applied to all of its Threads",sandboxMode:"Sandbox mode",approvalPolicy:"Approval policy",approvalMethod:"Approval method",networkAccess:"Allow network access",networkAccessHelp:"Control external network access in workspace-write and read-only modes.",fullAccessWarning:"Full access disables file system and network isolation. Use it only for trusted tasks.",save:"Save permissions",sandboxChoices:{readOnly:{label:"Read only",detail:"Allow reading files without writing to the workspace."},workspaceWrite:{label:"Workspace write",detail:"Allow reading and modifying files in the current workspace."},fullAccess:{label:"Full access",detail:"Disable sandbox isolation for explicitly trusted tasks."}},approvalChoices:{untrusted:{label:"Untrusted commands only",detail:"Request approval only for operations Codex considers untrusted."},onRequest:{label:"On request",detail:"Allow Codex to ask you to approve commands or file changes when needed."},never:{label:"Never ask",detail:"Codex will not pause to request manual approval."}},reviewerChoices:{user:{label:"Ask me",detail:"Approval requests appear in Studio for you to decide."},autoReview:{label:"Automatic review",detail:"Use the Codex automatic review flow to handle approval requests."}}},HBe={title:"Workspace",subtitle:"Choose the directory where the current Codex Thread runs commands and modifies files",absolutePath:"Absolute path",browse:"Browse",parent:"Parent directory",empty:"This directory has no subdirectories",locked:"The conversation has started and the workspace is locked. Start a new Sandbox Session to choose another workspace.",useDirectory:"Use this directory"},WBe={fileTitle:"Allow file changes?",commandTitle:"Allow command execution?",subtitle:"Codex is waiting for your decision",workingDirectory:"Working directory",decline:"Decline",acceptOnce:"Allow once",acceptSession:"Allow for session"},YBe={availableSkills:"Available Skills",selectModel:"Select model",commands:"Codex shortcuts",currentModel:"Current: {{model}}",loadingSkills:"Discovering Skills in the current workspace…",loadingModels:"Loading models…",noSkillMatches:"No matching Skills in the current workspace",noModelMatches:"No matching models. You can also enter a model ID directly",noCommandMatches:"No matching shortcuts",skillFallback:"Load and run this Skill",add:"Add",uploadImage:"Upload image",uploadDocument:"Upload document or PDF",uploadVideo:"Upload video",openTerminal:"Open terminal",viewBrowser:"View browser",permissions:"Codex permissions",workspaceLocked:"The conversation has started and the workspace is locked",selectWorkspace:"Select workspace",workspace:"Codex workspace",endpointCopied:"Endpoint copied",copyEndpoint:"Copy Sandbox Endpoint",continuePlaceholder:"Describe what you want to implement or adjust next",messagePlaceholder:"Message the AgentKit Sandbox. Type / for commands or $ to invoke a Skill…",stop:"Stop generating",send:"Send"},qBe={defaultName:"My Agent",namedDefault:"My {{agent}}",creatingTitle:"Creating {{agent}} Agent",failedTitle:"Launch failed",createTitle:"Create {{agent}} Agent",fallbackError:"AgentKit Sandbox initialization failed. Please try again later.",creatingDescription:"Creating the {{agent}} Agent and waiting for it to become ready. This usually takes about 30 seconds.",name:"Agent name",storageSize:"Storage size",storageHelp:"Data will be persisted. Choose {{min}}–{{max}} GiB.",persistent:"Persistent",persistenceUnsupported:"Snapshot persistence is not supported in the current environment",persistentHelp:"Keep Agent data so you can continue later.",temporaryHelp:"Agent data will be cleared after 8 hours",cancelCreation:"Cancel creation",confirm:"Create",retry:"Try again"},jBe={activeAria:"Codex Agent session is active",openAria:"Open a Codex Agent session",active:"Codex Agent session",entry:"Spark an idea",exit:"Exit current Agent",expired:"Expired",remainingHours:"{{hours}}h {{minutes}}m remaining",remainingMinutes:"{{minutes}}m remaining",expiryWarning:"The remote development environment is kept for up to 8 hours and expires at {{expiry}} ({{remaining}}). Conversations and files will then be deleted.",usingAgent:"You are currently using the {{agent}} Agent",activityAria:"Sandbox activity log",activity:"Activity log",tokenUsageAria:"Codex token usage",tokens:"{{label}}: {{value}} tokens",tokenLabels:{total:"Total",input:"Input",cachedInput:"Cached input",output:"Output",reasoningOutput:"Reasoning output"}},XBe={back:"Back to Agents",subtitle:"{{agent}} agent details",type:"Agent type",status:"Status",createdBy:"Created by",snapshotStatus:"Snapshot status",toolType:"Tool type",createdAt:"Created at",snapshotReason:"Snapshot reason",expiresAt:"Expires at",snapshotId:"Snapshot ID",sessionId:"Session ID",sourceSessionId:"Source Session ID",delete:"Delete Agent",waking:"Waking…",opening:"Opening…",wake:"Wake Agent",open:"Open Agent",deleteTitle:"Delete Agent?",deleteDescription:"Delete “{{name}}” and its saved data? This cannot be undone.",deleting:"Deleting…",confirmDelete:"Delete",sleepingHint:"This agent is asleep. Waking it before opening may take some time.",wakingHint:"Waking the agent. This may take some time.",agentId:"Agent ID"},KBe={back:"Back to Agents",createdBy:"Created by {{creator}}",ariaLabel:"Agent workspace",main:"Main",terminal:"Terminal",mainTitle:"{{agent}} main interface",openingTerminal:"Opening terminal…",terminalTitle:"{{agent}} terminal"},ZBe={prompt:`Use the AgentKit Studio Plugin to hand off the current conversation, project, and task to the cloud. Execute this directly; do not ask me to open a terminal manually. +- Maintain a polite, professional tone.`},C8e={requestFailed:"Request failed ({{status}}){{detail}}",a2aSpaces:{credentialsMissing:"The server does not have cloud provider credentials configured, so AgentKit agent centers are unavailable",loginRequired:"Sign in to access AgentKit agent centers"},vikingKnowledge:{credentialsMissing:"The server does not have cloud provider credentials configured, so VikingDB knowledge bases are unavailable",loginRequired:"Sign in to access VikingDB knowledge bases"},vikingMemory:{credentialsMissing:"The server does not have cloud provider credentials configured, so VikingDB memory stores are unavailable",loginRequired:"Sign in to access VikingDB memory stores"},mcpGateway:{missingHttpTool:"Go back to Add MCP tool and add at least one HTTP MCP service. MCP resilience does not support stdio services.",missingUrl:"An HTTP MCP tool is missing a valid service URL. Go back to Add MCP tool and complete it before publishing."},customModel:{fallbackName:"Custom model",apiKeyLabel:"{{name}} model API Key",fallbackApiKeyLabel:"{{name}} fallback model {{model}} API Key"},deploymentEnv:{serverInjected:"Provided by the server",selectedApiKeyPlaceholder:"Provided by the selected API Key",mcpInjectedComment:"Provided by the added MCP tools",restoredPlaceholder:"Securely restored by the Studio server",generatedMcpPlaceholder:"Generated from the added HTTP MCP tools",restoredHelp:"When updating, the Studio server merges MCP addresses and authentication without returning existing secrets to the browser.",mergedMcpHelp:"The Studio server merges MCP addresses and optional authentication without returning existing secrets to the browser.",listSeparator:", ",requirementHint:"Required by the following optimizations: {{labels}}.",requiredBy:"Required by the following optimizations: {{labels}}. Enter {{key}}.",required:"Enter {{label}} ({{key}}).",invalidJson:"Invalid JSON format"},drafts:{unsupportedVersion:"This local draft version is not supported. Upgrade Studio and try again.",invalidFormat:"The local draft data is invalid.",readFailed:"Could not read local drafts. The browser data may be corrupted.",quotaExceeded:"Browser storage is full, so the draft was not saved. Delete unused drafts or clear this site's storage, then try again.",writeRejected:"The browser blocked saving this draft. Check the site's storage permissions and try again."},skills:{searchFailed:"Search failed ({{status}})",downloadFailed:"Skill download failed ({{status}})",agentKitRequestFailed:"AgentKit Skills request failed",missingManifest:"{{location}} is missing SKILL.md",invalidParentPath:"{{location}} contains an invalid parent path (..): {{path}}",invalidPath:"{{location}} contains an invalid path: {{path}}",localDescription:"Local skill",folderSource:"Folder",noManifest:"No SKILL.md was found in {{location}}"},zip:{invalid:"Invalid zip: EOCD was not found",tooManyFiles:"A zip file cannot contain more than {{count}} files",tooLarge:"The extracted zip content is too large"}},O8e={back:"Back to development session",runtimeName:"Runtime name",runtimeNameExists:"This Runtime name already exists. Choose another name.",checkingRuntimeName:"Checking Runtime name",verifiedSource:"Verified source",deployableSource:"Deployable source",verifiedByCodex:"Verified by Codex in the cloud",entryPoint:"Entry point",files:"Files",artifact:"Artifact",validationReport:"Validation report",verifiedHint:"The server materializes source from the verified artifact. Browser files cannot replace it.",unverifiedHint:"The server securely materialized the source. Confirm the Runtime configuration before deploying.",env:{requiredPlaceholder:"Enter {{key}}",optionalPlaceholder:"Optional: {{key}}"}},k8e={name:"Code package",back:"Back to creation methods",reading:"Reading the code package",readingEllipsis:"Reading the code package…",uploadFirst:"Upload a code package first",uploadAriaLabel:"Code package upload",upload:"Upload code package",reupload:"Upload a different code package",uploadPrompt:"Upload a code package",filesRecognized:"{{count}} files found. Select this area to upload a different package.",dropHint:"Select or drop a .zip file up to 50 MB. Use app.py or declare an entry point in agentkit.yaml.",viewFiles:"View files",chooseFile:"Choose code package",errors:{invalidFormat:"Choose a .zip code package.",tooLarge:"The code package must be 50 MB or smaller.",invalidPath:"The archive contains an invalid path: {{name}}",empty:"The archive does not contain any deployable files.",tooManyFiles:"A code package cannot contain more than {{count}} files.",duplicateFile:"The code package contains a duplicate file: {{path}}",manifestParse:"Could not parse agentkit.yaml: {{detail}}",manifestRoot:"The root of agentkit.yaml must be an object.",manifestCommon:"common in agentkit.yaml must be an object.",entryPointType:"common.entry_point in agentkit.yaml must be a file path.",entryPointInvalid:"common.entry_point in agentkit.yaml is not a valid file path.",entryPointMissing:"The entry point declared in agentkit.yaml is missing from the code package: {{entryPoint}}",defaultEntryPointMissing:"The code package root must contain app.py, or common.entry_point in agentkit.yaml must declare an existing entry point."}},E8e={label:"Agent execution canvas",readOnlyLabel:"Read-only agent execution canvas",minimapLabel:"Execution flow minimap",controls:{ariaLabel:"Execution flow controls",zoomIn:"Zoom in",zoomOut:"Zoom out",fitView:"Fit view"},rootAgent:"Main agent",unnamedStep:"Unnamed step",terminals:{input:"User request",output:"Final response"},edges:{then:"Then",continueLoop:"Continue loop",call:"Call"},patterns:{llm:{label:"Agent",description:"Understand a task and complete one specific job"},sequential:{label:"Sequential",description:"Run internal steps one after another"},parallel:{label:"Parallel",description:"Run internal steps together, then combine their results"},loop:{label:"Loop",description:"Repeat internal steps until the stop condition is met"},a2a:{label:"Remote agent",description:"Call an existing remote agent"}},actions:{insertHere:"Insert a step here",deleteNamed:"Delete {{name}}",deleteNode:"Delete node",addSubagent:"Add subagent",addParallelStep:"Add a parallel step",addLoopStep:"Add a loop step",addNextStep:"Add next step",addFirst:"Add at the beginning",addLast:"Add at the end"}},_8e={title:"Intelligent mode",subtitle:"Describe your goal and Codex will plan, build, debug, and temporarily validate the agent in a sandbox.",model:{label:"Model",placeholder:"Select a model",retiring:"Retiring soon",currentConfiguration:"Current configuration",loadError:"Failed to load models"},availability:{checking:"Checking intelligent development availability…",unavailable:"Intelligent mode is currently unavailable. Go back and try again."},goal:{title:"Start with a goal",continueTitle:"Continue improving the project",hint:"Describe the problem your agent should solve. We will ask about any details that could affect the result.",continueHint:"Describe what you want to change. The result will be saved as a new version.",basedOn:"Based on",clearSelection:"Clear selection",label:"Goal",optimizationLabel:"Optimization goal",placeholder:"For example: Build an agent that reads sales data, creates weekly reports, and validates the output format",optimizationPlaceholder:"For example: Cite data sources and ask the user when information is incomplete"},actions:{preparing:"Preparing…",build:"Start building",optimize:"Start optimizing"},preparation:{accepted:"Goal received. Implementation is starting now.",preparing:"Creating the task environment…",starting:"Environment ready. Starting Codex…",next:"Next, Codex will plan the approach, then build, run, and validate the agent."}},R8e={title:"Saved projects",description:"Continue improving an existing version, or view, download, and deploy its source.",refresh:"Refresh projects",checkingStorage:"Checking project storage…",unavailableTitle:"Projects are temporarily unavailable",storageCheckError:"Could not confirm project storage status. Try again shortly.",storageNotConfigured:"Project storage is not configured.",loadingMigrated:"Loading migrated projects…",loadingSaved:"Loading saved projects…",loadingVersions:"Loading project versions…",unknownTime:"Unknown time",sourceDownloaded:"Source downloaded.",projectSummary_one:"{{count}} version · Updated {{time}}",projectSummary_other:"{{count}} versions · Updated {{time}}",versionSummary_one:"{{time}} · {{count}} file",versionSummary_other:"{{time}} · {{count}} files",noVersionDescription:"No version description",latestVersion:"Latest version",verified:"Verified",pendingVerification:"Needs review",viewSource:"View source",download:"Download",downloading:"Downloading…",optimize:"Optimize",optimizeUnavailable:"Optimize, not supported",errors:{projects:"Could not load saved projects.",source:"Could not load project source.",versions:"Could not load project versions.",download:"Could not download the source.",prepareDeployment:"Could not prepare the source for deployment.",deleteVersion:"Could not delete the project version.",migrated:"Could not load migrated projects",saved:"Could not load saved projects"},empty:{migratedTitle:"No migrated projects yet",savedTitle:"No saved projects yet",migratedDescription:"Source will be saved here after your first migration.",savedDescription:"Source will be saved here after your first build.",noVersions:"This project has no available versions."},compare:{selected:"{{count}}/2 selected",selectedLabel:"Selected",select:"Select",view:"View comparison",start:"Compare versions"},delete:{title:"Delete this version?",onlyVersion:"“{{name}}” has only one version. Deleting it will also remove the project. This cannot be undone.",description:"This version's source and validation records will be permanently deleted. Other versions are not affected.",confirm:"Delete version"}},D8e={title:"Choose how to create",subtitle:"Build your agent with the workflow that fits your needs",features:"Features",quick:{title:"Quick mode",description:"Delegate tasks to dynamically created subagents",features:{dynamicSubagents:"Dynamic subagents",autonomousPlanning:"Autonomous planning",collaboration:"Multi-agent collaboration",summary:"Automatic result summaries",skills:"Skills on demand",trace:"Traceable task execution"}},traditional:{title:"Advanced mode",description:"Customize your agent structure in detail",features:{visualConfig:"Visual configuration",migration:"Existing agent migration",debugging:"Live debugging",optimization:"Optional optimization",parameters:"Fine-grained controls"}}},L8e={placeholder:"Enter a system prompt. Type ## followed by a space to add a level-two heading…",toolbar:{undo:"Undo {{shortcut}}",redo:"Redo {{shortcut}}",paragraph:"Paragraph",quote:"Quote",heading:"Heading {{level}}",selectBlockType:"Select text style",blockType:"Text style",bold:"Bold",removeBold:"Remove bold",italic:"Italic",removeItalic:"Remove italic",bulletedList:"Bulleted list",numberedList:"Numbered list"}},M8e={local:{duplicatesSkipped:"Skipped duplicate skills: {{names}}",invalidDrop:"Drop a folder containing SKILL.md or a .zip file",readError:"Could not read the files: {{detail}}",dropLabel:"Drop a folder or ZIP file to detect skills automatically",hint:"Each skill must contain a SKILL.md file. Directories can contain multiple skills.",reading:"Reading files…",fileCount:"Local · {{count}} files"},hub:{searchError:"Search failed. Try again shortly.",searchPlaceholder:"Search Volcano Find Skill, such as data analysis or PDF",search:"Search",searching:"Searching…",noResults:"No matching skills found. Try another keyword.",hint:"Search Volcano Find Skill by keyword. Selected skills are downloaded to the skills/ directory when the project is generated."},space:{loadError:"Failed to load",loadingSpaces:"Loading AgentKit Skills centers…",noSpaces:"This account has no AgentKit Skills centers.",selectSpace:"Select an AgentKit Skills center",openConsole:"Open in the Volcano Engine console",loadingSkills:"Loading skills…",noSkills:"This AgentKit Skills center has no skills."}},I8e={unnamedNode:"Unnamed node",editInstruction:"Select to edit instructions…",controls:{ariaLabel:"Workflow canvas controls",zoomIn:"Zoom in",zoomOut:"Zoom out",fitView:"Fit view"},sections:{info:"Workflow information",execution:"Execution mode",nodes:"Nodes",nodeConfig:"Node configuration"},types:{sequential:{label:"Sequential",description:"Run nodes one after another"},parallel:{label:"Parallel",description:"Run nodes at the same time"},loop:{label:"Loop",description:"Run nodes repeatedly"}},placeholders:{description:"Describe what this workflow does…",agentDescription:"Describe what this agent does…",instruction:"You are…"},errors:{workflowNameUnique:"The workflow name must be unique among agent node names",agentNameUnique:"Agent names must be unique within this workflow"},dragHint:"Drag onto the canvas, or use the button below",agentNode:"Agent node",addNode:"Add node",connectHint:"Drag between node handles to define the execution order.",create:"Create workflow",deleteNode:"Delete node",nameHelp:"Use only letters, numbers, and underscores. Names must be unique.",instruction:"Instructions",tools:"Tools (comma-separated)",nodeId:"Node ID",empty:{selectNode:"Select a node to edit its configuration",summary:"{{nodes}} nodes · {{edges}} connections"}},P8e={ariaLabel:"Quick mode creation",progress:"Quick mode creation progress",steps:{agent:{label:"Agent",title:"Basic information",description:"Set the agent's name, purpose, behavior, and capabilities"},environment:{label:"Environment",title:"Configure the environment",description:"Choose the default environment or a custom environment you have built"},deployment:{label:"Deployment",title:"Deployment preferences",description:"Configure AgentKit cloud settings"}},model:{label:"Model",source:"Model source",name:"Model name",fallbacks:"Fallback models",fallbackPlaceholder:"Fallback model name",addFallback:"Add fallback model",addProviderFallback:"Add other provider",removeFallback:"Remove",fallbackType:"Fallback model type",fallbackSameProvider:"Same provider",fallbackOtherProvider:"Other provider",apiKeyEnv:"API Key environment variable",invalidApiKeyEnv:"Use letters, numbers, and underscores only, and do not start with a number.",fallbackHelp:"Same-provider fallbacks reuse the primary connection. Other providers use separate provider, API base, and API Key settings.",fallbackIgnored:"Empty, duplicate, or primary-model entries will be ignored.",provider:"Provider",invalidApiBase:"Enter a valid http:// or https:// URL.",volcengineArk:"Volcano Ark",custom:"Custom",gateway:"Model gateway",comingSoon:"Coming soon",currentApiKey:"Current API Key",currentConfiguration:"Current configuration",loadingApiKeys:"Loading API Keys",selectApiKey:"Select an API Key",searchApiKeys:"Search API Key names",noApiKeys:"No API Keys available",loadingModels:"Loading models",selectModel:"Select a model",searchModels:"Search by name, Model ID, or provider",noModels:"No models available",apiKeyPlaceholder:"Enter a model API Key",credentialsLoadError:"Failed to load model credentials",modelsLoadError:"Failed to load models"},identity:{unnamedPool:"Unnamed user pool",currentPool:"{{value}} (current user pool)",userPool:"User pool",loading:"Loading user pools",placeholder:"Select a user pool",search:"Search user pools",empty:"This account has no Identity user pools",currentHint:"This Studio's login JWT will be forwarded to the Runtime",mismatchHint:"The selected user pool is not used by this Studio, so the Studio will not be able to call the Runtime after deployment",selectionHint:"The user pool used by this Studio is marked in the list"},agent:{namePlaceholder:"Enter an agent name",descriptionPlaceholder:"Describe what this agent can do",prompt:"Prompt",promptPlaceholder:"Define the role, goals, and behavior boundaries",skills:"Skills",addSkill:"Add skills"},validation:{descriptionRequired:"Enter a description",promptRequired:"Enter a prompt",modelRequired:"Select a model",instanceIntegers:"Minimum instances must be an integer of 0 or greater, and maximum instances must be an integer greater than 0",instanceOrder:"Minimum instances cannot exceed maximum instances",userPoolRequired:"Select a user pool for Runtime authentication"},deployment:{runtimeName:"Runtime name",runtimeNameUpdateHint:"The existing Runtime name is preserved during updates",runtimeNameHint:"Use only letters, numbers, underscores, and hyphens",region:"Deployment region",authentication:"Authentication",apiKeyDescription:"Default: access with the Runtime API Key",userPoolDescription:"Use a JWT issued by an Identity user pool",sessionStorage:"Session storage",inMemoryStorage:"Temporary in-memory storage",backends:{sqlite:"SQLite file",mysql:"MySQL",postgresql:"PostgreSQL"},instances:"Instance settings",minInstances:"Minimum instances",maxInstances:"Maximum instances",inMemoryHint:"To prevent session loss across instances, keep the Runtime at 1–1 instances",networkMode:"Network mode",network:{public:"Public",private:"Private",both:"Public and private"},subnetIds:"Subnet IDs (optional, comma-separated)",sharedInternet:"Shared public egress in the VPC",sharedInternetHint:"Allow private Runtimes to access the public internet through shared egress",evaluationSets:"Evaluation sets",createEvaluationSets:"Create evaluation sets automatically",evaluationSetsHint:"Create Good Case and Bad Case evaluation sets after deployment",resources:"Resource configuration",complete:"Deployment complete",preparing:"Preparing deployment…"},environmentVariables:{title:"Environment variables",add:"Add variable",nameAriaLabel:"Environment variable name",valueAriaLabel:"Value for {{name}}",deleteNamed:"Delete {{name}}"},actions:{updateAgain:"Update again",deployAgain:"Deploy again",updateAndPublish:"Update and publish"}},N8e={actions:{addSubagent:"Add subagent",clearRoot:"Clear main agent",clearRootConfirmation:"Clear all settings and subagents from the main agent? This cannot be undone."},workspace:{progress:"Agent creation progress",modes:{build:"Build",validate:"Debug",optimize:"Optimize",environment:"Environment",publish:"Publish"},titles:{build:"Customize your agent architecture",validate:"Debug your agent",optimize:"Choose optimizations for your agent",environment:"Configure the cloud environment",publish:"Prepare your agent for deployment"}},sections:{type:{label:"Agent type",hint:"Choose an agent type"},basic:{label:"Basic information",hint:"Name, description, and system prompt"},model:{label:"Model",hint:"Model and service (optional)"},tools:{label:"Tools",hint:"Callable capabilities"},skills:{label:"Skills",hint:"Declarative skills"},knowledge:{label:"Knowledge base",hint:"External knowledge retrieval"},memory:{label:"Memory",hint:"Short-term and long-term memory"},subagents:{label:"Subagents",hint:"Nested collaboration"},review:{label:"Finish",hint:"Preview and create"}},agentTypes:{ariaLabel:"Agent type",remoteChildOnly:"Remote agents can only be used as child steps",llm:{label:"Agent",fullLabel:"LLM agent",description:"Uses an LLM to complete tasks autonomously"},sequential:{label:"Sequential",fullLabel:"Sequential agent",description:"Runs subagents one after another"},parallel:{label:"Parallel",fullLabel:"Parallel agent",description:"Runs subagents in parallel, then combines their results"},loop:{label:"Loop",fullLabel:"Loop agent",description:"Repeats subagents until the stop condition is met"},a2a:{label:"Remote agent",fullLabel:"Remote agent",description:"Calls a remote agent through the A2A protocol"}},basic:{agentName:"Agent name",name:"Name",agentDescription:"Agent description",descriptionPlaceholder:"Briefly describe what this agent does so your team can identify it…",nameHelp:"Follow Google ADK naming rules and keep the name unique in the execution flow.",rootDescriptionHelp:"The full description is preserved and converted to a Runtime-compatible single line during deployment.",descriptionHelp:"The description appears in agent lists and selectors.",orchestratorHelp:"This is a collaboration container and does not answer directly. Add task steps on the canvas and drag them to reorder.",maxIterations:"Maximum iterations",maxIterationsHelp:"The loop repeats its subagents until the condition is met or this limit is reached.",agentCenter:"AgentKit agent center",agentCenterHelp:"The remote agent's name, description, and capabilities come from the Agent Card returned by the center. The system discovers and attaches matching agents for each task.",moreOptions:"More options",systemPrompt:"System prompt",loadingMarkdown:"Loading Markdown editor…",markdownHelp:"Markdown shortcuts are supported. For example, type ## followed by a space to create a level-two heading.",unnamed:"Unnamed",unnamedAgent:"Unnamed agent"},validation:{remoteRoot:"A remote agent can only be a subagent",missingRegistry:"Select an AgentKit agent center",name:{required:"Name is required",reserved:"user is reserved by Google ADK. Choose another name.",characters:"Start with a letter or underscore and use only letters, numbers, and underscores"},duplicateName:"Agent names must be unique within this structure",missingDescription:"Description is required",mcpAuthRequired:"Confirm how to handle authentication after changing the MCP address",mcpDuplicateName:"MCP names must be unique",mcpDuplicateUrl:"Remove the duplicate MCP endpoint before publishing",missingSubagent:"A subagent is required",missingPrompt:"System prompt is required",missingSubagentDetail:"Add at least one subagent to {{type}} before debugging or publishing.",problem:"{{name}}: {{problem}}"},ai:{ariaLabel:"Fill agent configuration with AI",minimumLength:"Enter at least {{count}} characters.",replaceConfirmation:"The generated configuration will replace the current canvas and settings. Continue?",placeholder:"Describe your goal and use {{model}} to generate the configuration",generate:"Generate",generating:"Generating",success:"Configuration generated",regenerate:"Generate again",failed:"Generation failed"},debug:{ariaLabel:"Agent debugging workspace",unavailable:"This backend does not currently support generated-agent debug runs.",baseline:"Baseline",comparison:"Variant {{count}}",selectModel:"Select a model",enterDescription:"Enter a description",enterPrompt:"Enter a system prompt",duplicateConfiguration:"Test configurations must be unique",starting:"Starting…",applyAndRestart:"Apply and restart",restart:"Restart",start:"Start environment",defaultModel:"Default model",testConfiguration:"Test configuration",deleteVariant:"Delete {{name}}",deleteVariantGroup:"Delete comparison variant",creatingEnvironment:"Creating the test environment…",configurationChanged:"The configuration changed. Restart the environment.",ready:"Environment ready",readyHint:"Send a message to compare agent responses.",startHint:"Complete the configuration, then start the environment.",viewTraceNamed:"View the trace for {{name}}",traceUnavailable:"Send a message to view its trace",trace:"Trace",useConfiguration:"Use this configuration",finishConfiguration:"Finish configuration",finishAndStart:"Finish and start",currentAgentModel:"Current agent model",configurationHint:"Changes apply only to this comparison. Select this configuration to continue to deployment.",messagePlaceholder:"Send a message to the running test environments…",startOneFirst:"Start at least one test environment first",addVariant:"Add variant",traceTitle:"Trace · {{name}}",leaveTitle:"Leave debugging?",leaveDescription:"The current environments will be removed when you leave. You can start new environments when you return.",cleaning:"Cleaning up…",confirmLeave:"Leave",closeLeaveConfirmation:"Close leave-debugging confirmation"},optimization:{ariaLabel:"Agent optimization options",scenario:"Optimization scenario",components:"Optimization components",bytePlusUnavailable:"Harness Sidecar optimizations are not available for BytePlus accounts yet. Leave all optimizations unselected to continue; regular BytePlus agents are not affected.",releaseScenario:"Optimization scenario: {{profile}}",profiles:{default:{label:"Custom",description:"Choose components as needed. The Sidecar stays off when none are selected."},ops:{label:"Operations",description:"For operations diagnostics, databases, logs, and monitoring MCP servers."}},groups:{quality:"Improve response quality",cost:"Reduce runtime cost",stability:"Improve runtime stability"},options:{context_engine:{label:"Context management",description:"Manage context assembly, task anchoring, and context budgets."},compressor:{label:"Context and result compression",description:"Compress long context and large tool results to reduce token usage."},verifier:{label:"Response verification and repair",description:"Verify evidence and responses, then repair or alert on failure."},long_run_control:{label:"Goal task control",description:"Manage progress, continuation, and completion conditions for Goal tasks."},mcp_resilience:{label:"MCP resilience",description:"Manage connections, timeouts, empty results, large responses, and call budgets. Includes read-only SQL protection by default."}}},model:{label:"Model",source:"Model source",volcanoArk:"Volcano Ark",volcengineArk:"Volcano Ark",bytePlusModelArk:"BytePlus ModelArk",custom:"Custom",gateway:"Model gateway",comingSoon:"Coming soon",configuration:"Model configuration",name:"Model name",fallbacks:"Fallback models",fallbackPlaceholder:"Fallback model name",addFallback:"Add fallback model",addProviderFallback:"Add other provider",removeFallback:"Remove",fallbackType:"Fallback model type",fallbackSameProvider:"Same provider",fallbackOtherProvider:"Other provider",apiKeyEnv:"API Key environment variable",invalidApiKeyEnv:"Use letters, numbers, and underscores only, and do not start with a number.",fallbackHelp:"Same-provider fallbacks reuse the primary connection. Other providers use separate provider, API base, and API Key settings.",fallbackIgnored:"Empty, duplicate, or primary-model entries will be ignored.",provider:"Provider",invalidApiBase:"Enter a valid http:// or https:// URL.",liteLlmProviders:"LiteLLM providers",apiKeyPlaceholder:"Enter the model API Key",available:"Available",retiring:"Retiring soon",notActivated:"Not activated",unavailable:"Unavailable",apiKeyLoadError:"Failed to load Ark API Keys",loadingApiKeys:"Loading API Keys…",selectApiKey:"Select an API Key",currentApiKey:"Current API Key",apiKeyList:"API Key list",searchApiKey:"Search API Keys",searchApiKeyName:"Search API Key names",noApiKeys:"No API Keys available",noMatchingApiKey:"No matching API Keys",loading:"Loading models…",loaded:"{{count}} models loaded",loadError:"Failed to load models",selectModel:"Select a model",selectProviderModel:"Select a provider model",providerModels:"Provider models",search:"Search models",searchPlaceholder:"Search by name, Model ID, or provider",noMatches:"No matching models",empty:"No models available",unknownStatus:"Unknown status",refresh:"Refresh",refreshing:"Refreshing…",activate:"Activate",activateAction:"Open activation",currentConfiguration:"Current configuration"},tools:{builtIn:"Built-in tools",builtInHelp:"Select VeADK capabilities. Imports and required environment variables are added automatically.",codeExecution:"Code execution configuration",codeExecutionHelp:"Select the AgentKit code execution sandbox.",mcp:"MCP tools"},catalog:{web_search:{label:"Web search",description:"Get real-time information with Volcengine Web Search."},parallel_web_search:{label:"Parallel web search",description:"Run multiple search queries in parallel and combine the results faster."},link_reader:{label:"Link reader",description:"Fetch and read the main content from a URL."},web_scraper:{label:"Web scraper",description:"Crawl webpages into structured data. Requires the Scraper service."},image_generate:{label:"Image generation",description:"Generate images from text with Doubao Seedream."},image_edit:{label:"Image editing",description:"Edit or transform images with Doubao SeedEdit."},video_generate:{label:"Video generation",description:"Generate videos from text or images with Doubao Seedance, including task status queries."},text_to_speech:{label:"Text to speech (TTS)",description:"Convert text to speech with Volcengine Speech."},run_code:{label:"Code execution",description:"Run code in a sandbox."},vesearch:{label:"VeSearch",description:"Search with Volcengine VeSearch. Requires a bot endpoint."},links:{console:"Console",documentation:"Documentation"},env:{modelAgentName:{comment:"Model name"},embeddingModelName:{comment:"Embedding model required by memory and knowledge bases"},vikingMemoryProject:{comment:"VikingDB memory project"},vikingMemoryRegion:{comment:"VikingDB memory region"},vikingMemoryType:{comment:"Memory types"},feishuAppId:{comment:"Feishu app ID"},feishuAppSecret:{comment:"Feishu app secret",placeholder:"Enter the app secret"},registrySpaceId:{comment:"AgentKit agent center",placeholder:"Select an agent center"},registryTopK:{comment:"Number of agents to retrieve"},registryRegion:{comment:"AgentKit agent center region"},registryEndpoint:{comment:"AgentKit agent center OpenAPI endpoint"},agentKitToolId:{comment:"Code execution sandbox ID"},agentKitToolRegion:{comment:"AgentKit Tools region"},openVikingUrl:{comment:"OpenViking service URL"},openVikingMemoryUserId:{comment:"Memory owner ID",help:"The user segment in viking://user//peers//memories. Use it to isolate agents, tenants, or business scenarios. The default is default."},openVikingMemoryPolicy:{comment:"Memory policy",help:"Controls memory extraction and isolation. Leave it blank to use the official default policy."},openVikingKnowledgeUserId:{comment:"Knowledge base owner ID",help:"Used in the default path viking://user//resources// when no resource directory is configured. The default is default."},openVikingTargetUri:{comment:"Knowledge base resource directory",help:"Leave blank to generate it from the KnowledgeBase index. When provided, this OpenViking resource directory takes precedence."},tlsServiceName:{comment:"TLS topic_id. Leave blank to create one automatically"}}},backends:{shortTerm:{local:{label:"In-memory",description:"Stored in the process without persistence. Best for development and debugging."},sqlite:{label:"SQLite file",description:"Persist data to a local .db file."},mysql:{label:"MySQL",description:"Persist data to MySQL."},postgresql:{label:"PostgreSQL",description:"Persist data to PostgreSQL."}},longTerm:{local:{label:"Local vector store",description:"In-process llama-index vector store."},opensearch:{label:"OpenSearch",description:"Vector retrieval with OpenSearch."},redis:{label:"Redis",description:"Vector retrieval with Redis."},viking:{label:"VikingDB Memory",description:"VikingDB memory with user profile support."},openviking:{label:"OpenViking Memory",description:"Long-term memory that stores and retrieves preferences, events, and entities per user."},mem0:{label:"Mem0",description:"Managed memory from Mem0."}},knowledge:{viking:{label:"VikingDB Knowledge",description:"VikingDB knowledge base."},opensearch:{label:"OpenSearch",description:"Vector retrieval with OpenSearch."},context_search:{label:"Context Search",description:"Volcengine Context Search without embedding configuration."},openviking:{label:"OpenViking Knowledge",description:"OpenViking resource-directory knowledge base without embedding configuration."}}},exporters:{apmplus:{label:"APMPlus",description:"Volcengine APMPlus application performance monitoring."},cozeloop:{label:"CozeLoop",description:"Distributed tracing with CozeLoop."},tls:{label:"TLS (Log Service)",description:"Export logs to Volcengine TLS."}},knowledge:{title:"Knowledge base",description:"Enable external knowledge retrieval (RAG) so the agent can answer from your data.",backend:"Knowledge base backend",vikingDatabase:"VikingDB knowledge base"},memory:{shortTerm:"Short-term memory",shortTermDescription:"Store context for one session",shortTermBackend:"Short-term memory backend",longTerm:"Long-term memory",longTermDescription:"Store context across sessions, usually with vector retrieval",longTermBackend:"Long-term memory backend",vikingDatabase:"VikingDB memory",autoSave:"Save sessions to long-term memory automatically",autoSaveDescription:"Write session content to long-term memory when a session ends."},mcp:{removeTool:"Remove MCP tool",namePlaceholder:"Name (optional)",urlPlaceholder:"MCP service URL",pathWarning:"This address does not end with /mcp. Confirm that it is the complete MCP service URL.",configuredPlaceholder:"Authentication is stored securely",tokenPlaceholder:"Bearer token (optional)",changedUrlWarning:"The MCP address changed. Choose how to handle the stored authentication.",reuseCredential:"Keep using it",replaceCredential:"Replace authentication",noAuth:"Use no authentication",reuseHint:"The stored authentication will be reused when you publish.",changeToReplace:"Replace instead",credentialConfigured:"Studio securely stores the authentication.",removeCredential:"Remove authentication",commandPlaceholder:"Command, such as npx",argsPlaceholder:"Arguments separated by spaces",stdioHint:"The stdio tool starts in the deployment environment. Make sure its command and dependencies are available.",addTool:"Add MCP tool"},resources:{unnamedAgentCenter:"Unnamed agent center",unnamedKnowledgeBase:"Unnamed knowledge base",unnamedMemory:"Unnamed memory store",loadError:"Failed to load",loadingAgentCenters:"Loading agent centers…",agentCentersLoaded:"{{count}} agent centers loaded",noAgentCenters:"No agent centers available",noMatchingAgentCenters:"No matching agent centers",searchAgentKitCenter:"Search AgentKit agent centers",searchNameOrId:"Search by name or ID",selectAgentCenter:"Select an agent center",selectAgentKitCenter:"Select an AgentKit agent center",selectedAgentCenter:"Selected agent center",agentKitCenter:"AgentKit agent center",refreshAgentCenters:"Refresh agent centers",knowledgeBaseList:"Knowledge base list",knowledgeBasePlaceholder:"Select a knowledge base",loadingKnowledgeBases:"Loading knowledge bases…",knowledgeBasesLoaded:"{{count}} knowledge bases loaded",noKnowledgeBases:"No knowledge bases available",noMatchingKnowledgeBases:"No matching knowledge bases",searchKnowledgeBase:"Search knowledge bases",selectKnowledgeBase:"Select a knowledge base",refreshKnowledgeBases:"Refresh knowledge bases",memoryList:"Memory store list",memoryPlaceholder:"Select a memory store",loadingMemories:"Loading memory stores…",memoriesLoaded:"{{count}} memory stores loaded",noMemories:"No memory stores available",noMatchingMemories:"No matching memory stores",searchMemory:"Search memory stores",selectMemory:"Select a memory store",refreshMemories:"Refresh memory stores"},env:{noAdditionalParameters:"This backend needs no additional runtime parameters.",invalidJson:"Enter valid JSON.",helpAriaLabel:"Help for {{label}}: {{help}}",openOpenViking:"Open OpenViking {{label}}",valuePlaceholder:"Enter a value",openVikingIndex:"OpenViking resource index",openVikingIndexHelp:"Leave blank to generate an index from the agent name, such as my_agent_kb. Without DATABASE_OPENVIKING_TARGET_URI, the default URI is viking://user/{knowledge base owner ID, or default}/resources/{resource index}/. When DATABASE_OPENVIKING_TARGET_URI is set, that complete URI is used instead.",openVikingIndexAriaLabel:"OpenViking resource index help: {{help}}"},deployment:{vpcRequired:"Enter a VPC ID when using VPC networking.",apiKeyRequired:"Select the API Key used by the model.",invalidEnvName:"Invalid environment variable name: {{key}}",requiredEnv:"{{name}}: enter this required environment variable",generatingConfiguration:"Generating deployment configuration",runtimeNameExists:"This Runtime name already exists. Choose another name and try again.",preparing:"Preparing deployment",complete:"Deployment complete",failed:"Deployment failed",updateAndPublish:"Update and publish",stages:{build:"Build image",deploy:"Deploy Runtime",publish:"Publish service",running:"Deploying"}},publish:{generating:"Generating publish configuration",validating:"Validating the agent structure and preparing the deployment snapshot…"}},B8e={presets:{support:{name:"Customer support assistant",description:"Answer questions around the clock using your knowledge base and conversation history, with consistent and considerate responses.",instruction:"You are a professional and patient customer support assistant. Always use a courteous, friendly tone. Base answers on the knowledge base whenever possible. When the available information is insufficient, say so clearly and ask for the details you need instead of inventing an answer. Keep responses concise and well structured, and provide steps when useful.",subagents:{}},analyst:{name:"Data analyst",description:"Run code for statistics and visualization with tracing enabled, so every analysis is observable and reproducible.",instruction:"You are a rigorous data analyst. Clarify the objective and definitions before cleaning, analyzing, and visualizing data with executable code. Explain assumptions and methods at each step, support conclusions with key evidence, and identify possible bias or limitations.",subagents:{}},translator:{name:"Translation assistant",description:"Translate between Chinese and English accurately and naturally while preserving tone and terminology.",instruction:"You are a professional translator fluent in Chinese and English. Preserve the meaning of the source while producing natural language for the target audience. Keep proper nouns and technical terminology accurate and reflect the original tone and style. Return only the translation unless the user asks for an explanation.",subagents:{}},coder:{name:"Coding assistant",description:"Write, debug, and refactor code, validate it by running tests, and produce clear, maintainable implementations.",instruction:"You are a senior software engineer. Write correct, clear, maintainable code that follows the conventions and best practices of the target language. When uncertain, run the code to validate the implementation, cover important edge cases, and add concise comments for complex logic.",subagents:{}},researcher:{name:"Researcher",description:"Search primary sources online and combine them with knowledge and long-term memory to produce evidence-backed findings.",instruction:"You are a rigorous researcher. Break each question into key subproblems, collect multiple credible primary sources through web search, and cross-check the evidence before drawing conclusions. Cite sources, state uncertainty, distinguish facts from inference, and avoid overgeneralization.",subagents:{}},"research-team":{name:"Multi-agent research team",description:"Coordinate a researcher, analyst, and writer to produce an end-to-end research report.",instruction:"You coordinate a research team. Break down the user's research task, delegate search, analysis, and writing to the appropriate subagents, synthesize their work, and deliver a clear, evidence-backed report.",subagents:{0:{name:"Researcher",description:"Collect primary sources and data related to the topic online.",instruction:"You are the team's researcher. Find multiple credible sources about the topic, organize the key facts, data, and original citations, and hand them to the analyst without adding unsupported conclusions."},1:{name:"Analyst",description:"Cross-check and synthesize the collected material.",instruction:"You are the team's analyst. Cross-check, compare, and synthesize the research material. Extract insights, identify contradictions and uncertainty, and produce a structured set of findings."},2:{name:"Writer",description:"Turn the analysis into a clear report with reliable citations.",instruction:"You are the team's writer. Turn the analyst's findings into a clear, well-written report with consistent citations, ensuring every conclusion can be traced to a source."}}}},tags:{tools:"Tools",memory:"Memory",knowledgeBase:"Knowledge base",tracing:"Tracing",subagents:"{{count}} subagents"},gallery:{title:"Create from a template",subtitle:"Choose a prebuilt agent template and customize it to fit your needs."},detail:{back:"Back to templates",name:"Name",systemPrompt:"System prompt",model:"Model",tools:"Tools",memory:"Memory",knowledgeBase:"Knowledge base",tracing:"Tracing",subagents:"Subagents ({{count}})",create:"Create from this template",shortTermMemory:"Short-term",longTermMemory:"Long-term"}},Qtr=Object.freeze(Object.defineProperty({__proto__:null,buildCanvas:E8e,codePackage:k8e,common:w8e,default:{common:w8e,yaml:A8e,validation:T8e,defaults:S8e,helpers:C8e,intelligentDeployment:O8e,codePackage:k8e,buildCanvas:E8e,intelligent:_8e,projectLibrary:R8e,modePicker:D8e,promptEditor:L8e,skills:M8e,workflow:I8e,workbench:P8e,traditional:N8e,template:B8e},defaults:S8e,helpers:C8e,intelligent:_8e,intelligentDeployment:O8e,modePicker:D8e,projectLibrary:R8e,promptEditor:L8e,skills:M8e,template:B8e,traditional:N8e,validation:T8e,workbench:P8e,workflow:I8e,yaml:A8e},Symbol.toStringTag,{value:"Module"})),$8e={backToList:"Back to scheduled tasks",cancel:"Cancel",cancelQueue:"Cancel queued run",cancelQueueFirst:"Cancel the queued run first",cancelling:"Cancelling…",closeDrawer:"Close panel",collapse:"Collapse",connectingRuntime:"Connecting to Runtime…",createScheduledTask:"Create scheduled task",createTask:"Create task",delete:"Delete",deleteTask:"Delete task",edit:"Edit",enable:"Enable",expand:"Expand",pause:"Pause",refresh:"Refresh",refreshHistory:"Refresh run history",rerun:"Run again",retry:"Retry",runNow:"Run now",saveChanges:"Save changes",saving:"Saving…",stop:"Stop run",stopRun:"Stop this run",stopRunFirst:"Stop the current run first",stopping:"Stopping…",viewDetails:"View details"},F8e={cancelDescription:"This Session will be cancelled. Future scheduled runs will remain enabled.",cancelTitle:"Stop this run?",deleteDescription:"“{{name}}” and its complete run history will be permanently deleted.",deleteTitle:"Delete scheduled task?"},z8e={configuration:"Task configuration",nextRun:"Next run",pageLabel:"Scheduled task details",region:"Region",runtime:"Runtime",status:"Task status"},U8e={createTitle:"Create scheduled task",description:"Each trigger creates a separate Session for the Runtime Agent.",editTitle:"Edit scheduled task"},V8e={minutesSeconds:"{{minutes}} min {{seconds}} sec",seconds:"{{count}} sec"},Q8e={cronExpression:"Cron expression",cronHelp:"Enter minute, hour, day of month, month, and day of week.",dailyTime:"Daily run time",enableAfterCreate:"Enable after creation",enableHelp:"The task will run at its next scheduled time after it is enabled.",name:"Task name",namePlaceholder:"For example: Generate a daily operations summary",noRuntime:"No Runtime available",prompt:"Execution prompt",promptPlaceholder:"Enter the text to send to the Agent on every run",runAt:"Run time",runtimeAgent:"Runtime Agent",runtimeHelp:"The task always uses the Runtime's currently active version.",runtimePlaceholder:"Select a Runtime Agent",schedule:"Schedule",scheduleType:"Schedule type",timezone:"Time zone",weekday:"Day of week"},G8e={all:"All"},H8e={description:"Each run uses a separate Session. Results and errors are retained.",duration:"Duration: {{duration}}",emptyDescription:"Runs will appear here after the task is triggered or run manually.",emptyTitle:"No runs yet",errorDetails:"Error details",finalAnswer:"Final answer",loadFailed:"Unable to load run history",loadFailedDescription:"Check the Studio service and try again.",session:"Session",title:"Run history"},W8e={cancelRequested:"Stop request submitted.",created:"Task created.",deleted:"The task and its run history were deleted.",enabled:"Task enabled.",paused:"Task paused.",queued:"Task queued and will start within one minute.",requeued:"Task queued again and will start within one minute.",updated:"Task updated."},Y8e={filterLabel:"Filter scheduled tasks by status",listLabel:"Scheduled task list",loadFailed:"Unable to load scheduled tasks",loadFailedDescription:"Check the Studio service and try again.",title:"Cronjob"},q8e={cron:"Cron {{cron}}{{zone}}",daily:"Daily at {{time}}{{zone}}",once:"Once · {{date}}{{zone}}",weekly:"{{weekday}} at {{time}}{{zone}}"},j8e={daily:"Daily",once:"Once",weekly:"Weekly"},X8e={cancelled:"Cancelled",enabled:"Enabled",failed:"Failed",notRun:"Not run yet",paused:"Paused",pending:"Preparing",queued:"Queued",retrying:"Retrying",running:"Running",skipped:"Skipped",success:"Succeeded"},K8e={cronFields:"A Cron expression must contain five fields, for example 0 9 * * *.",nameRequired:"Enter a task name.",promptRequired:"Enter the text to send to the Agent on each run.",runtimeAppMissing:"The Runtime Agent did not return an appName. Confirm that the Runtime is ready and compatible.",runtimeRequired:"Select an available Runtime Agent.",timeRequired:"Select a run time."},Z8e={friday:"Friday",monday:"Monday",saturday:"Saturday",sunday:"Sunday",thursday:"Thursday",tuesday:"Tuesday",wednesday:"Wednesday"},Gtr=Object.freeze(Object.defineProperty({__proto__:null,actions:$8e,confirm:F8e,default:{actions:$8e,confirm:F8e,detail:z8e,drawer:U8e,duration:V8e,fields:Q8e,filters:G8e,history:H8e,notices:W8e,page:Y8e,schedule:q8e,scheduleTypes:j8e,status:X8e,validation:K8e,weekdays:Z8e},detail:z8e,drawer:U8e,duration:V8e,fields:Q8e,filters:G8e,history:H8e,notices:W8e,page:Y8e,schedule:q8e,scheduleTypes:j8e,status:X8e,validation:K8e,weekdays:Z8e},Symbol.toStringTag,{value:"Module"})),J8e="Report an issue",eBe="Description",tBe="Common issues",rBe="Cancel",nBe="Done",iBe="Submit feedback",aBe="Submitting…",sBe={title:"Feedback submitted. Thank you.",description:"The AgentKit team will review your report as soon as possible."},oBe={close:"Close issue report",intro:"Select the issues you encountered and add any useful details.",privacy:"Your conversation data will be shared with the AgentKit team. Please protect sensitive information.",descriptionPlaceholder:"Describe what happened (optional)",issues:{slow:"Slow execution",crash:"Runtime crash",incorrect:"Inaccurate result",tool_error:"Tool call failed",other:"Other issue"}},lBe={description:"Tell us about a problem you encountered while using AgentKit Studio.",module:"Area",modules:{conversation:"Conversation",agents:"Agents",applications:"Automations",search:"Search",other:"Other"},commonIssuesMultiple:"Common issues (select all that apply)",issueTypes:"Issue types",issues:{page_slow:"Page loads slowly",feature_unavailable:"Feature unavailable",display_error:"Display issue",no_response:"Action has no response",other:"Other issue"},descriptionPlaceholder:"Describe the page, action, and what happened",quickAdd:"Quick add",suggestionsLabel:"Suggested descriptions",suggestions:{noResponse:"Nothing happens after I click",loading:"The page remains in a loading state",incomplete:"Some content is missing or clipped",error:"An error appears after the action"},privacy:"Your data will be shared with the AgentKit team. Please protect sensitive information."},Htr=Object.freeze(Object.defineProperty({__proto__:null,cancel:rBe,commonIssues:tBe,default:{title:J8e,descriptionLabel:eBe,commonIssues:tBe,cancel:rBe,done:nBe,submit:iBe,submitting:aBe,success:sBe,dialog:oBe,page:lBe},descriptionLabel:eBe,dialog:oBe,done:nBe,page:lBe,submit:iBe,submitting:aBe,success:sBe,title:J8e},Symbol.toStringTag,{value:"Module"})),cBe={back:"Back",close:"Close"},uBe={title:"Optimize migrated project",closeAria:"Close optimization dialog"},hBe={title:"Migrated projects",description:"Manage migrated source versions or continue optimizing any version.",libraryTitle:"Projects and versions",libraryDescription:"View, download, deploy, or compare source versions, or continue optimizing any version.",emptyTitle:"No migrated projects yet",emptyDescription:"Migrated source code will be saved here automatically."},dBe={langchain:"LangChain",langgraph:"LangGraph",adk:"Google ADK",strands:"Strands",agentcore:"AgentCore",dify:"Dify",any:"Any (universal migration)"},fBe={awaitingUpload:"Awaiting upload",analyzing:"Analyzing",needsInput:"Needs input",analysisReady:"Awaiting confirmation",migrating:"Migrating",validating:"Validating",packaging:"Packaging",succeeded:"Completed",succeededWithWarnings:"Completed with notices",partial:"Partially completed",failed:"Failed",cancelled:"Stopped",expired:"Expired"},pBe={partialReady:"Migration output is ready, but delivery is incomplete. Review the migration notices.",readyWithWarnings:"Migration output is ready. Review the migration notices.",ready:"Migration output is ready."},gBe={passed:"Output verification passed",failed:"Output verification failed",degraded:"Output verification incomplete"},mBe={session:"Create migration environment",upload:"Upload project",analysis:"Analyze project"},vBe={agentNameRequired:"Enter an Agent name",agentNameInvalid:"Agent names must be 1–63 characters, contain only lowercase letters, numbers, and hyphens, and start and end with a letter or number"},yBe={seconds:"{{seconds}} sec",minutesSeconds:"{{minutes}} min {{seconds}} sec"},bBe={savedUnaffected:"Saved projects are unaffected",savingUnaffected:"Source is being saved and will be unaffected once complete",activeDetail:"Task history and temporary output will become unavailable after expiration",oneHour:"Temporary migration environment is retained for 1 hour",ended:"Temporary migration environment has ended",savedAvailable:"Saved projects remain available to view, download, deploy, or optimize",unavailable:"Task history and temporary output are no longer available",countdown:"Temporary migration environment ends in {{minutes}} min {{seconds}} sec",expiredSavedMessage:"The temporary migration environment has ended. Saved projects are unaffected.",expiredMessage:"The temporary migration environment has ended. Task history and temporary output are no longer available."},xBe={recommended:"Recommended migration method",scope:"Migration scope",excluded:"Out of scope",viewEvidence:"View analysis evidence",viewAssumptions:"View key assumptions",viewSourceEvidence:"View source evidence"},wBe={ariaLabel:"Codex activity",title:"Codex activity",startingAnalysis:"Codex is starting the analysis…",startingMigration:"Codex is starting the migration…",loadError:"Codex activity is temporarily unavailable. The current task is unaffected."},ABe={title:"Migration output",fileTooLarge:"This file exceeds 2 MiB. Download the complete output to view it.",unsupportedPreview:"This file cannot be previewed here. Download the complete output to view it.",filesAria:"Migration output files",searchAria:"Search output files",searchPlaceholder:"Search files",limit:"Showing the first {{count}} items. Search for a specific file.",noSelection:"No file selected",noPreview:"No files available to preview.",loadingFile:"Loading output file…",startupFile:"Startup file",fileCountLabel:"Files",saved:"Source has been saved. You can view, download, deploy, or optimize it.",saving:"Output is ready and the source version is being saved.",deployReady:"Output is available to preview, download, and deploy. Waiting for source save status.",deployUnavailable:"Output is available to preview and download, but its current delivery status does not support deployment.",viewProjects:"View migrated projects",downloading:"Downloading…",downloadZip:"Download ZIP",deployTitle:"Deploy migration output",deployUnavailableTitle:"Current delivery status does not support deployment",deployRuntime:"Deploy to Runtime",fileCount:"{{count}} files",startup:"Startup file {{module}}",loading:"Loading migration output…"},TBe={retiring:"Retiring soon",currentDefault:"Current default model",loadError:"Failed to load models",label:"Model",placeholder:"Select a model"},SBe={zipOnly:"Select a local project in .zip format.",invalidName:"The ZIP file name is invalid. Rename the file and select it again.",tooLarge:"The project ZIP cannot exceed {{size}}.",empty:"The project ZIP cannot be empty.",removeAria:"Remove project ZIP",reselectPrompt:"Select the project ZIP again",selectPrompt:"Select or drop a local project ZIP",reselect:"Select again",selectZip:"Select ZIP",continue:"Continue upload",start:"Start migration",inputAria:"Select a local project ZIP",retention:"The temporary migration environment is retained for 1 hour after creation. Successfully saved source versions are unaffected."},CBe={requiredPlaceholder:"Enter {{key}}",optionalPlaceholder:"Optional: {{key}}",notReady:"Migration output is not ready yet.",back:"Back to migration results"},OBe={backToAddAgent:"Back to Add Agent",title:"Migrate existing project",newMigration:"New migration",recent:"Recent migrations",sessionsAria:"Migration sessions",loadingSessions:"Loading migration sessions…",noSessions:"No migration sessions",heading:"Migrate an existing Agent project",intro:"Upload a local project ZIP. Codex will first perform a read-only analysis, then ask you to confirm the migration method."},kBe={stop:"Stop migration",stopping:"Stopping…",reload:"Reload",refreshStatus:"Refresh status"},EBe={unavailable:"Migration is currently unavailable",defaultReason:"Dev Sandbox is currently unavailable. Contact your administrator to check the configuration."},_Be={requestZip:"Provide a local project ZIP. After upload, I’ll identify the framework, entry point, and migration boundaries, then ask you to confirm the migration method before making changes.",zipHint:"Only local ZIP files are supported, up to {{size}}. The migration environment is retained for 1 hour after creation.",creatingSandbox:"Creating Dev Sandbox",initializing:"Initializing the migration workspace and checking AgentKit CLI, Codex, and migration capabilities. The project will upload automatically when the environment is ready.",elapsed:"Elapsed: {{duration}}",uploadThenAnalyze:"Read-only analysis will start automatically after the ZIP upload completes.",analyzing:"Codex is identifying the framework, entry point, and migration boundaries. No migration changes are being made.",migrationLocked:"Attachments and migration settings cannot be changed while migration is running. Wait for the task to finish or stop it.",analysisPaused:"Read-only analysis is paused. Answer only the questions below. After submission, analysis will continue in the same environment without starting the migration.",analysisComplete:"Read-only analysis is complete. Review the recommendation and confirm the final migration method.",awaitingUpload:"The migration environment is ready. Select the local ZIP again to continue uploading.",expiredTitle:"Migration environment expired",expiredDescription:"Migration content and output can no longer be previewed, downloaded, or deployed. If the Runtime deployment completed, return to the Agents page to continue using it.",unsupportedTitle:"This ZIP cannot be migrated yet",unsupportedHint:"Update the project as instructed, then create a new migration and upload it again.",failedTitle:"Migration incomplete",cancelled:"This migration was stopped. Create a new migration and upload the project again."},RBe={ariaLabel:"Provide project analysis details",title:"Additional information needed for analysis",description:"The attachment stays locked; submitting continues read-only analysis only",submitting:"Continuing analysis…",submit:"Submit and continue analysis"},DBe={ariaLabel:"Confirm migration method",title:"Confirm migration method",description:"Migration starts only after confirmation",framework:"Migration method",frameworkPlaceholder:"Select a migration method",agentName:"Agent name",entry:"Project entry point",entryPlaceholder:"Select a project entry point",entryExample:"For example, agent.py:agent",consent:"By selecting “Confirm and start migration,” you confirm the migration scope, exclusions, and key assumptions above.",starting:"Starting migration…",start:"Confirm and start migration"},LBe={closeAria:"Dismiss error",loadFailed:"Could not load migration data. Try again.",refreshFailed:"Could not refresh the migration status. Try again."},MBe={title:"Stop the current migration?",description:"Stopping ends the current analysis or migration process. Completed steps will not continue."},Wtr=Object.freeze(Object.defineProperty({__proto__:null,actions:kBe,activity:wBe,analysis:xBe,artifact:ABe,capability:EBe,common:cBe,confirmation:DBe,conversation:_Be,default:{common:cBe,optimization:uBe,projects:hBe,framework:dBe,state:fBe,task:pBe,verification:gBe,transfer:mBe,validation:vBe,duration:yBe,expiry:bBe,analysis:xBe,activity:wBe,artifact:ABe,model:TBe,upload:SBe,deployment:CBe,workspace:OBe,actions:kBe,capability:EBe,conversation:_Be,questions:RBe,confirmation:DBe,errors:LBe,stopDialog:MBe},deployment:CBe,duration:yBe,errors:LBe,expiry:bBe,framework:dBe,model:TBe,optimization:uBe,projects:hBe,questions:RBe,state:fBe,stopDialog:MBe,task:pBe,transfer:mBe,upload:SBe,validation:vBe,verification:gBe,workspace:OBe},Symbol.toStringTag,{value:"Module"})),IBe={loading:"Loading…",searchLabel:"Search {{label}}",searchPlaceholder:"Search {{label}}",retry:"Retry",noMatches:"No matches",noOptions:"No options available",selection:"{{label}}: {{value}}"},PBe={badge:"All new",view:"See what's new",title:"What's new",defaultNotes:{multiRegion:"Multi-region agents: load Beijing and Shanghai Runtimes in parallel, with more available as you scroll.",switchAgent:"Switch in conversation: choose an agent beside the composer and start a new conversation immediately.",visualCanvas:"Visual execution canvas: inspect multi-agent structures on a horizontal canvas with fullscreen support."}},NBe={label:"New conversation workspace",agent:"Agent",skill:"Skill customization",video:"Video creation"},BBe={select:"Select conversation mode",agent:{label:"Agent",description:"Chat with the selected Agent"},builtin:{label:"Built-in Agent",description:"Use an Agent provided by the platform"},codex:{label:"Codex Agent",description:"Run tasks in a sandbox"},deepseekHarness:{label:"DeepSeek Harness",description:"Open the DeepSeek Harness workspace"},arkClaw:"ArkClaw",hermes:"Hermes Agent",checking:"Checking configuration",notConfigured:"Not configured by an administrator",unavailable:"Unavailable"},$Be={select:"Select Agent",typesLabel:"Agent types",listLabel:"{{type}} list",types:{agent:"Agent",general:"General Agent",codex:"Codex Agent",deepseekHarness:"DeepSeek Harness",openclaw:"OpenClaw Agent",hermes:"Hermes Agent"},loading:"Loading Agents",reload:"Reload",empty:"No {{type}} yet",emptyLocal:"No local Agents yet",emptyGeneral:"No General Agents yet",createHint:"Create one from the Agents page",localHint:"Check the directory where Studio was started",waking:"Waking up",opening:"Opening",connecting:"Connecting",loadingMore:"Loading",loadMore:"Load more",runtimeTimeout:"Loading Agents timed out after 15 seconds. Check the network or Runtime service and retry.",loadGeneral:"Load General Agents",loadType:"Load {{type}}",connectGeneral:"Connect to General Agent",openLocal:"Open local Agent",openType:"Open {{type}}",wakingHint:"Waking the agent. This may take some time."},FBe={spaceAria:"Skill spaces",configuration:"Skill customization settings",actions:{create:"Generate Skill",optimize:"Optimize Skill"},selectAction:"Select a Skill customization action",actionList:"Skill customization actions",style:"Style",selectStyle:"Select style",model:"Model",selectModel:"Select model",styles:{concise:"Concise and practical",strict:"Rigorous and reliable",tutorial:"Tutorial-friendly",automation:"Automation-first"},modelLoadFailed:"Failed to load model configuration",spaceLoadFailed:"Failed to load Skill Spaces",skillLoadFailed:"Failed to load Skills",unnamedSpace:"Unnamed Skill Space",space:"Skill Space",select:"Select Skill",selectAria:"Select Skill: {{skill}}",loadingSpaces:"Loading Skill Spaces",reload:"Reload",emptySpaces:"No Skill Spaces yet",skillList:"{{space}} Skill list",loadingSkills:"Loading Skills",emptySkills:"No Skills yet"},zBe={modes:{auto:"Auto detect",text_to_video:"Text to video",reference_to_video:"Reference to video",video_editing:"Video editing",video_extension:"Video extension",first_last_frame:"First and last frames"},taskNames:{auto:"Video generation",text_to_video:"Text-to-video",reference_to_video:"Reference-to-video",video_editing:"Video editing",video_extension:"Video extension",first_last_frame:"First-and-last-frame generation"},controls:{label:"Video creation settings",aspectRatio:"Aspect ratio",selectAspectRatio:"Select aspect ratio",resolution:"Resolution",selectResolution:"Select resolution",duration:"Duration",durationShort:"{{count}}s",durationAria:"Video duration: {{count}} seconds",lastFrame:"Last frame",lastFrameHelper:"Add the video's ending frame",assistImage:"Supporting image",referenceImage:"Reference image",assistImageHelper:"Add visual guidance",imageHelper:"Supports common image formats",referenceVideo:"Reference video",videoHelper:"Supports common video formats",optional:"Optional",replace:"Replace",add:"Add",upload:"Upload {{label}}",replaceFile:"Replace {{label}}: {{name}}",removeFile:"Remove {{label}} {{name}}",storageUnavailable:"Persistent storage is not configured",loadingEnhancer:"Loading prompt enhancement model",enhancerHint:"Uses {{model}} for intent recognition and prompt enhancement",enhancerUnavailable:"Prompt enhancement model unavailable"},task:{title:"Video generation task",closeAria:"Close video generation task dialog",progressAria:"Video generation progress",optimizedPrompt:"Optimized prompt",processingAria:"{{task}} progress",waitingAria:"{{status}}, elapsed {{elapsed}}",elapsed:"Elapsed {{elapsed}}",previewAria:"Generated video preview",close:"Close",download:"Download video",retryOptimization:"Retry prompt optimization",retryGeneration:"Retry video generation",providerQueued:"Waiting for model scheduling",providerRunning:"Model generating",providerSubmitting:"Submitting task",queuedHint:"The task was submitted. Its status will update automatically when processing begins.",runningHint:"This may take several minutes. The video preview will appear here when complete.",backgroundHint:"You can close this dialog. The task will continue in the background.",successHint:"Your video is ready to preview or download.",activationHint:"Activate the service in the model console, then retry generation.",retryHint:"Fix the issue and retry the current step.",steps:{optimizationFailed:"Prompt optimization failed",optimizationDone:"Prompt optimization complete",optimizationActive:"Optimizing prompt",generationDone:"{{task}} complete",generationFailed:"{{task}} failed",generationQueued:"{{task}} queued",generationRunning:"Generating {{task}}",generationActive:"{{task}} in progress",generationPending:"Waiting for video generation",generationComplete:"Video generation complete"},elapsedHours:"{{hours}}h {{minutes}}m",elapsedMinutes:"{{minutes}}m {{seconds}}s",elapsedSeconds:"{{seconds}}s"}},Ytr=Object.freeze(Object.defineProperty({__proto__:null,agentPicker:$Be,compactSelect:IBe,default:{compactSelect:IBe,featureNotice:PBe,workspace:NBe,mode:BBe,agentPicker:$Be,skill:FBe,video:zBe},featureNotice:PBe,mode:BBe,skill:FBe,video:zBe,workspace:NBe},Symbol.toStringTag,{value:"Module"})),UBe={cancel:"Cancel",close:"Close",retry:"Retry",tryAgain:"Try again",closeDialog:"Close {{title}}",agentFallback:"{{agent}} Agent",unknownSource:"Unknown source"},VBe={terminalTitle:"Terminal",browserTitle:"Sandbox browser",terminalSubtitle:"Connect to the interactive terminal for the current AgentKit Session",browserSubtitle:"View and control the browser in the current AgentKit Session",connecting:"Connecting…",connected:"Connected",notConnected:"Not connected",opening:"Opening {{title}}",connectingSession:"Connecting the tool to the current AgentKit Session.",openFailed:"Failed to open {{title}}"},QBe={title:"Resume Codex conversation",subtitle:"Select a recently updated Thread from the current Sandbox Session",loading:"Loading conversation history",loadFailed:"Failed to load conversation history",empty:"No conversations to resume"},GBe={title:"Codex permissions",subtitle:"Settings are saved to the current Sandbox Session and applied to all of its Threads",sandboxMode:"Sandbox mode",approvalPolicy:"Approval policy",approvalMethod:"Approval method",networkAccess:"Allow network access",networkAccessHelp:"Control external network access in workspace-write and read-only modes.",fullAccessWarning:"Full access disables file system and network isolation. Use it only for trusted tasks.",save:"Save permissions",sandboxChoices:{readOnly:{label:"Read only",detail:"Allow reading files without writing to the workspace."},workspaceWrite:{label:"Workspace write",detail:"Allow reading and modifying files in the current workspace."},fullAccess:{label:"Full access",detail:"Disable sandbox isolation for explicitly trusted tasks."}},approvalChoices:{untrusted:{label:"Untrusted commands only",detail:"Request approval only for operations Codex considers untrusted."},onRequest:{label:"On request",detail:"Allow Codex to ask you to approve commands or file changes when needed."},never:{label:"Never ask",detail:"Codex will not pause to request manual approval."}},reviewerChoices:{user:{label:"Ask me",detail:"Approval requests appear in Studio for you to decide."},autoReview:{label:"Automatic review",detail:"Use the Codex automatic review flow to handle approval requests."}}},HBe={title:"Workspace",subtitle:"Choose the directory where the current Codex Thread runs commands and modifies files",absolutePath:"Absolute path",browse:"Browse",parent:"Parent directory",empty:"This directory has no subdirectories",locked:"The conversation has started and the workspace is locked. Start a new Sandbox Session to choose another workspace.",useDirectory:"Use this directory"},WBe={fileTitle:"Allow file changes?",commandTitle:"Allow command execution?",subtitle:"Codex is waiting for your decision",workingDirectory:"Working directory",decline:"Decline",acceptOnce:"Allow once",acceptSession:"Allow for session"},YBe={availableSkills:"Available Skills",selectModel:"Select model",commands:"Codex shortcuts",currentModel:"Current: {{model}}",loadingSkills:"Discovering Skills in the current workspace…",loadingModels:"Loading models…",noSkillMatches:"No matching Skills in the current workspace",noModelMatches:"No matching models. You can also enter a model ID directly",noCommandMatches:"No matching shortcuts",skillFallback:"Load and run this Skill",add:"Add",uploadImage:"Upload image",uploadDocument:"Upload document or PDF",uploadVideo:"Upload video",openTerminal:"Open terminal",viewBrowser:"View browser",permissions:"Codex permissions",workspaceLocked:"The conversation has started and the workspace is locked",selectWorkspace:"Select workspace",workspace:"Codex workspace",endpointCopied:"Endpoint copied",copyEndpoint:"Copy Sandbox Endpoint",continuePlaceholder:"Describe what you want to implement or adjust next",messagePlaceholder:"Message the AgentKit Sandbox. Type / for commands or $ to invoke a Skill…",stop:"Stop generating",send:"Send"},qBe={defaultName:"My Agent",namedDefault:"My {{agent}}",creatingTitle:"Creating {{agent}} Agent",failedTitle:"Launch failed",createTitle:"Create {{agent}} Agent",fallbackError:"AgentKit Sandbox initialization failed. Please try again later.",creatingDescription:"Creating the {{agent}} Agent and waiting for it to become ready. This usually takes about 30 seconds.",name:"Agent name",storageSize:"Storage size",storageHelp:"Data will be persisted. Choose {{min}}–{{max}} GiB.",persistent:"Persistent",persistenceUnsupported:"Snapshot persistence is not supported in the current environment",persistentHelp:"Keep Agent data so you can continue later.",temporaryHelp:"Agent data will be cleared after 8 hours",cancelCreation:"Cancel creation",confirm:"Create",retry:"Try again"},jBe={activeAria:"Codex Agent session is active",openAria:"Open a Codex Agent session",active:"Codex Agent session",entry:"Spark an idea",exit:"Exit current Agent",expired:"Expired",remainingHours:"{{hours}}h {{minutes}}m remaining",remainingMinutes:"{{minutes}}m remaining",expiryWarning:"The remote development environment is kept for up to 8 hours and expires at {{expiry}} ({{remaining}}). Conversations and files will then be deleted.",usingAgent:"You are currently using the {{agent}} Agent",activityAria:"Sandbox activity log",activity:"Activity log",tokenUsageAria:"Codex token usage",tokens:"{{label}}: {{value}} tokens",tokenLabels:{total:"Total",input:"Input",cachedInput:"Cached input",output:"Output",reasoningOutput:"Reasoning output"}},XBe={back:"Back to Agents",subtitle:"{{agent}} agent details",type:"Agent type",status:"Status",createdBy:"Created by",snapshotStatus:"Snapshot status",toolType:"Tool type",createdAt:"Created at",snapshotReason:"Snapshot reason",expiresAt:"Expires at",snapshotId:"Snapshot ID",sessionId:"Session ID",sourceSessionId:"Source Session ID",delete:"Delete Agent",waking:"Waking…",opening:"Opening…",wake:"Wake Agent",open:"Open Agent",deleteTitle:"Delete Agent?",deleteDescription:"Delete “{{name}}” and its saved data? This cannot be undone.",deleting:"Deleting…",confirmDelete:"Delete",sleepingHint:"This agent is asleep. Waking it before opening may take some time.",wakingHint:"Waking the agent. This may take some time.",agentId:"Agent ID"},KBe={back:"Back to Agents",createdBy:"Created by {{creator}}",ariaLabel:"Agent workspace",main:"Main",terminal:"Terminal",mainTitle:"{{agent}} main interface",openingTerminal:"Opening terminal…",terminalTitle:"{{agent}} terminal"},ZBe={prompt:`Use the AgentKit Studio Plugin to hand off the current conversation, project, and task to the cloud. Execute this directly; do not ask me to open a terminal manually. Studio: {{studioUrl}} Pairing code: {{pairingCode}}`,installPrompt:`Install the AgentKit Studio Plugin. Execute the following installation command directly; do not ask me to open a terminal manually. Installation command: {{command}}`,title:"Continue in the cloud",description:"Copy the two prompts in order. Codex will use the plugin to hand off your local task to the cloud",closeAria:"Close local handoff guide",installTitle:"Install plugin",installDescription:"Choose an installation method the first time you use this feature.",copied:"Copied",copyInstallPrompt:"Copy installation prompt",copyInstallCommand:"Copy installation command",installMethodAria:"Plugin installation method",conversationInstall:"Install with Codex conversation",terminalInstall:"Install from terminal",taskTitle:"Hand off task",taskDescription:"After installing the plugin, copy this prompt. Codex will migrate the current project and continue the task.",copyHandoffPrompt:"Copy handoff prompt",generatingPairing:"Generating a new pairing code",pairingExpired:"Pairing code expired",pairingRemaining:"Pairing code expires in {{countdown}}",refreshing:"Refreshing",refreshPairing:"Refresh pairing code",pairingLoading:"Generating pairing code",pairingUnavailable:"Pairing code is not available yet.",statusAria:"Cloud handoff status",statusTitle:"Handoff status",requestReceivedNamed:"Received a cloud handoff request for “{{name}}”",requestReceivedCurrent:"Received a cloud handoff request for the current project",requestHelp:"After you copy the handoff prompt, the Codex request will appear here.",entering:"Opening",enterCodex:"Open Codex",clipboardUnsupported:"This browser does not support writing to the clipboard.",steps:{request:"Wait for local request",session:"Create cloud Session",restore:"Restore project",continue:"Send continuation task"},status:{issued:"Waiting for request",creating:"Creating Session",sessionCreated:"Migrating project",continuing:"Starting cloud task",running:"Running in the cloud",completed:"Handoff complete",failed:"Handoff failed"}},JBe={model:{description:"Show or switch the current conversation model",keywords:"model switch"},models:{description:"List models available from app-server",keywords:"model list"},skill:{description:"Browse and invoke a Skill available in the current workspace",keywords:"skill workflow"},skills:{description:"Browse and invoke Skills available in the current workspace",keywords:"skills workflow list"},new:{description:"Start a new conversation",keywords:"new conversation"},resume:{description:"Open conversation history or resume a specific Thread",keywords:"history resume session"},fork:{description:"Fork a new conversation from the current context",keywords:"fork branch"},compact:{description:"Compact the current conversation context",keywords:"compact context"},archive:{description:"Archive the current conversation and start a new one",keywords:"archive close"},status:{description:"Show connection, Thread, model, and token status",keywords:"status connection token"},clear:{description:"Clear the current view and start a new conversation",keywords:"clear reset"},help:{description:"Show Sandbox shortcuts",keywords:"help commands"},currentModel:"Current model",availableModel:"Available model",workspace:"Workspace",notSet:"Not set",modelLabel:"Model",statusLabel:"Status",running:"Running",idle:"Idle",totalTokens:"Total tokens",contextWindow:"Context window",imageFallback:"Image",unknown:"Unknown shortcut: {{command}}. Type /help to see available commands.",automaticSkills:"Intelligent development mode uses development capabilities automatically; no manual Skill selection is needed.",activity:{new:"Started a new Codex conversation",resumed:"Resumed Codex conversation",deleted:"Deleted Codex conversation history",modelChanged:"Switched Codex model",availableModels:"Available Codex models",noModels:"No models are currently available",forked:"Forked Codex conversation",compacting:"Started compacting the current Codex conversation",archived:"Archived Codex conversation",status:"Current Codex status",help:"Codex shortcuts supported by Sandbox"}},qtr=Object.freeze(Object.defineProperty({__proto__:null,agentDetails:XBe,agentWorkspace:KBe,approval:WBe,commands:JBe,common:UBe,composer:YBe,default:{common:UBe,tool:VBe,threads:QBe,permissions:GBe,workspace:HBe,approval:WBe,composer:YBe,launch:qBe,session:jBe,agentDetails:XBe,agentWorkspace:KBe,handoff:ZBe,commands:JBe},handoff:ZBe,launch:qBe,permissions:GBe,session:jBe,threads:QBe,tool:VBe,workspace:HBe},Symbol.toStringTag,{value:"Module"})),e7e={retry:"Try again",signInToContinue:"Sign in to continue",signInWith:"Sign in with {{provider}}",enterUsername:"Enter a username to get started",usernamePlaceholder:"Username (letters and numbers, up to 16 characters)",enter:"Continue",usernameInvalid:"Use letters and numbers only, up to 16 characters.",identityProvider:{volcengine:"Volcengine Identity",byteplus:"BytePlus Identity"},powered:{volcengine:"Volcengine AgentKit provides enterprise-grade Agent solutions",byteplus:"BytePlus AgentKit provides enterprise-grade Agent solutions"},legalPrefix:"By continuing, you acknowledge that you have read and agree to the AgentKit",terms:"Product and Service Terms",copyright:"© {{year}} VeADK. All rights reserved."},t7e={title:"Your session has expired",description:"Your current edits are preserved. The previous action will continue after you sign in again.",waiting:"Waiting for sign-in…",signInAgain:"Sign in again"},r7e={breadcrumbs:"Breadcrumbs",selectAgent:"Select Agent",switchAgent:"Switch Agent"},n7e={cancel:"Cancel",close:"Close confirmation dialog"},jtr=Object.freeze(Object.defineProperty({__proto__:null,authExpired:t7e,confirm:n7e,default:{login:e7e,authExpired:t7e,navbar:r7e,confirm:n7e},login:e7e,navbar:r7e},Symbol.toStringTag,{value:"Module"})),i7e={defaultUser:"User",shortcuts:"Quick access",tryCli:"Try AgentKit CLI",developerResources:"Developer resources",systemInfo:"System information",language:"Language",issueFeedback:"Report an issue",logout:"Sign out",roles:{admin:"Administrator",developer:"Developer",user:"User"}},a7e={home:"Back to home",expand:"Expand sidebar",collapse:"Collapse sidebar",label:"Main navigation",newChat:"New chat",agents:"Agents",workspaces:"Workspaces",library:"Library",cronjobs:"Cronjob",automations:"Automations"},s7e={title:"Chat history",newConversation:"New conversation",create:"New chat",loading:"Loading chat history…",empty:"No conversations yet",current:"Current",manage:"Manage conversation: {{title}}",more:"More",delete:"Delete",loadingMore:"Loading…",loadMore:"Load more",evaluatingTitle:"Running automatic evaluation",evaluating:"Evaluating",generating:"Generating"},Xtr=Object.freeze(Object.defineProperty({__proto__:null,account:i7e,default:{account:i7e,navigation:a7e,history:s7e},history:s7e,navigation:a7e},Symbol.toStringTag,{value:"Module"})),o7e={placeholder:"Select an option",collapseOptions:"Collapse model options",expandOptions:"Expand model options",noOptions:"No options available",noMatches:"No matches. You can use the current model ID directly."},l7e={unsupportedActivity:"Unsupported Skill conversation activity",ariaLabel:"Skill generation conversation"},c7e={code:"Error code: {{code}}",type:"Error type: {{type}}",representation:"Exception representation: {{value}}",rawResponse:`Raw server response: @@ -77,7 +77,7 @@ Original error: {{message}}`,unavailable:"Connection unavailable",requestFailed: 约束: - 信息不足时主动提问澄清,不要臆造事实。 - 需要时合理调用可用的工具,并说明关键结论。 -- 保持礼貌、专业的语气。`},B9e={requestFailed:"请求失败 ({{status}}){{detail}}",a2aSpaces:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 AgentKit 智能体中心",loginRequired:"请先登录以访问 AgentKit 智能体中心"},vikingKnowledge:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 VikingDB 知识库",loginRequired:"请先登录以访问 VikingDB 知识库"},vikingMemory:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 VikingDB 记忆库",loginRequired:"请先登录以访问 VikingDB 记忆库"},mcpGateway:{missingHttpTool:"请返回“添加 MCP 工具”并添加至少一个 HTTP MCP 服务;MCP 稳定性治理不支持 stdio 服务。",missingUrl:"已添加的 HTTP MCP 工具缺少有效服务地址,请返回“添加 MCP 工具”补充后再发布。"},customModel:{fallbackName:"自定义模型",apiKeyLabel:"{{name}} 模型 API Key"},deploymentEnv:{serverInjected:"由服务端注入",selectedApiKeyPlaceholder:"由所选 API Key 注入",mcpInjectedComment:"由已添加的 MCP 工具注入",restoredPlaceholder:"由 Studio 服务端安全恢复",generatedMcpPlaceholder:"由已添加的 HTTP MCP 工具自动生成",restoredHelp:"更新时由 Studio 服务端合并 MCP 地址与认证,不向浏览器返回旧密钥。",mergedMcpHelp:"Studio 服务端自动合并 MCP 地址与可选认证,不向浏览器返回旧密钥。",listSeparator:"、",requirementHint:"优化项“{{labels}}”依赖此配置。",requiredBy:"优化项“{{labels}}”依赖此配置,请填写 {{key}}。",required:"请填写 {{label}}({{key}})。",invalidJson:"JSON 格式不正确"},drafts:{unsupportedVersion:"本机草稿版本暂不受支持,请升级 Studio 后重试。",invalidFormat:"本机草稿数据格式无效。",readFailed:"无法读取本机草稿,浏览器中的草稿数据可能已损坏。",quotaExceeded:"浏览器存储空间不足,草稿未保存。请删除不需要的草稿或清理此站点的浏览器存储后重试。",writeRejected:"浏览器拒绝保存草稿,请检查站点存储权限后重试。"},skills:{searchFailed:"搜索失败 ({{status}})",downloadFailed:"下载技能失败 ({{status}})",agentKitRequestFailed:"AgentKit Skills 请求失败",missingManifest:"{{location}} 缺少 SKILL.md",invalidParentPath:"{{location}} 包含非法路径(..):{{path}}",invalidPath:"{{location}} 包含非法路径:{{path}}",localDescription:"本地 Skill",folderSource:"文件夹",noManifest:"{{location}} 中未发现 SKILL.md"},zip:{invalid:"无效的 zip:找不到 EOCD",tooManyFiles:"zip 文件数不能超过 {{count}} 个",tooLarge:"zip 解压后的内容过大"}},$9e={back:"返回开发会话",runtimeName:"Runtime 名称",runtimeNameExists:"Runtime 名称已存在,请更换后重试",checkingRuntimeName:"正在检查 Runtime 名称",verifiedSource:"已验证源码",deployableSource:"可部署源码",verifiedByCodex:"已通过 Codex 云端验证",entryPoint:"入口",files:"文件",artifact:"构建产物",validationReport:"验证报告",verifiedHint:"源码由服务端从已验证交付物物化,浏览器文件不能替换。",unverifiedHint:"源码已由服务端安全物化,部署前请确认 Runtime 配置。",env:{requiredPlaceholder:"请输入 {{key}}",optionalPlaceholder:"可选:{{key}}"}},F9e={name:"代码包",back:"返回创建方式",reading:"正在读取代码包",readingEllipsis:"正在读取代码包…",uploadFirst:"请先上传代码包",uploadAriaLabel:"代码包上传",upload:"上传代码包",reupload:"重新上传代码包",uploadPrompt:"请上传代码包",filesRecognized:"已识别 {{count}} 个文件,点击区域可重新上传",dropHint:"点击或拖拽上传,支持 .zip 格式,最大 50 MB;可使用 app.py,或由 agentkit.yaml 声明入口",viewFiles:"查看文件",chooseFile:"选择代码包",errors:{invalidFormat:"请选择 .zip 格式的代码包。",tooLarge:"代码包不能超过 50 MB。",invalidPath:"压缩包包含非法路径:{{name}}",empty:"压缩包中没有可部署的文件。",tooManyFiles:"代码包文件数不能超过 {{count}} 个。",duplicateFile:"代码包包含重复文件:{{path}}",manifestParse:"agentkit.yaml 无法解析:{{detail}}",manifestRoot:"agentkit.yaml 根节点必须是对象。",manifestCommon:"agentkit.yaml 的 common 必须是对象。",entryPointType:"agentkit.yaml 的 common.entry_point 必须是文件路径。",entryPointInvalid:"agentkit.yaml 的 common.entry_point 不是有效文件路径。",entryPointMissing:"代码包中不存在 agentkit.yaml 声明的启动入口:{{entryPoint}}",defaultEntryPointMissing:"代码包根目录必须包含 app.py,或在 agentkit.yaml 的 common.entry_point 中声明已有入口。"}},z9e={label:"Agent 执行画布",readOnlyLabel:"只读 Agent 执行画布",minimapLabel:"执行流程缩略图",controls:{ariaLabel:"执行流程控制",zoomIn:"放大",zoomOut:"缩小",fitView:"适应视图"},rootAgent:"主 Agent",unnamedStep:"未命名步骤",terminals:{input:"用户请求",output:"最终回复"},edges:{then:"然后",continueLoop:"继续循环",call:"调用"},patterns:{llm:{label:"智能体",description:"理解任务并直接完成一个具体工作"},sequential:{label:"分步协作",description:"内部步骤按照顺序依次执行"},parallel:{label:"同时处理",description:"内部步骤同时工作,完成后统一汇总"},loop:{label:"循环执行",description:"重复执行内部步骤,直到满足停止条件"},a2a:{label:"远程智能体",description:"调用已经存在的远程 Agent"}},actions:{insertHere:"在这里插入步骤",deleteNamed:"删除 {{name}}",deleteNode:"删除节点",addSubagent:"添加子 Agent",addParallelStep:"添加一个同时处理的步骤",addLoopStep:"添加循环步骤",addNextStep:"添加下一个步骤",addFirst:"添加到最前",addLast:"添加到最后"}},U9e={title:"智能模式",subtitle:"描述目标后,沙箱中的 Codex 会判断你的意图,完成构建、调试和临时云端验证。",model:{label:"模型",placeholder:"选择模型",retiring:"即将下线",currentConfiguration:"当前配置",loadError:"加载模型列表失败"},availability:{checking:"正在检查智能开发能力…",unavailable:"当前无法使用智能模式,请返回后重试。"},goal:{title:"从目标开始",continueTitle:"继续优化项目",hint:"只需说明 Agent 要解决的问题;如有影响结果的关键信息,会在开始前向你确认。",continueHint:"说明这次要调整的内容,完成后会保存为新版本。",basedOn:"基于",clearSelection:"取消选择",label:"目标描述",optimizationLabel:"优化目标",placeholder:"例如:创建一个能读取销售数据、生成周报并校验输出格式的 Agent",optimizationPlaceholder:"例如:增加数据来源标注,并在信息不足时先向用户确认"},actions:{preparing:"准备中…",build:"开始构建",optimize:"开始优化"},preparation:{accepted:"目标已收到,马上开始实现",preparing:"正在创建任务环境…",starting:"环境已就绪,正在启动 Codex…",next:"接下来会先梳理目标和实现方式,再编写、运行和验证 Agent。"}},V9e={title:"已保存项目",description:"选择已有版本继续优化,或查看、下载和部署源码。",refresh:"刷新项目列表",checkingStorage:"正在检查项目存储…",unavailableTitle:"暂时无法读取项目",storageCheckError:"无法确认项目存储状态,请稍后重试。",storageNotConfigured:"项目存储尚未配置。",loadingMigrated:"正在读取已迁移项目…",loadingSaved:"正在读取已保存项目…",loadingVersions:"正在读取项目版本…",unknownTime:"时间未知",sourceDownloaded:"源码已下载。",projectSummary_one:"{{count}} 个版本 · 更新于 {{time}}",projectSummary_other:"{{count}} 个版本 · 更新于 {{time}}",versionSummary_one:"{{time}} · {{count}} 个文件",versionSummary_other:"{{time}} · {{count}} 个文件",noVersionDescription:"暂无版本描述",latestVersion:"最新版本",verified:"已验证",pendingVerification:"待确认",viewSource:"查看源码",download:"下载",downloading:"下载中…",optimize:"去优化",optimizeUnavailable:"去优化,暂不支持",errors:{projects:"无法读取已保存项目。",source:"无法读取项目源码。",versions:"无法读取项目版本。",download:"下载源码失败。",prepareDeployment:"无法准备部署源码。",deleteVersion:"删除项目版本失败。",migrated:"无法读取已迁移项目",saved:"无法读取已保存项目"},empty:{migratedTitle:"还没有已迁移的项目",savedTitle:"还没有已保存的项目",migratedDescription:"完成首次迁移后,源码会自动保存在这里。",savedDescription:"完成首次构建后,源码会自动保存在这里。",noVersions:"这个项目还没有可用版本。"},compare:{selected:"已选择 {{count}}/2",selectedLabel:"已选择",select:"选择",view:"查看对比",start:"对比版本"},delete:{title:"删除这个版本?",onlyVersion:"“{{name}}”只有这一个版本,删除后项目也会移除。此操作无法撤销。",description:"该版本的源码和验证记录将永久删除,其他版本不受影响。",confirm:"删除版本"}},Q9e={title:"选择创建方式",subtitle:"以不同模式构建您的智能体",features:"特性",quick:{title:"快速模式",description:"动态派生子智能体自主完成任务",features:{dynamicSubagents:"动态派生子智能体",autonomousPlanning:"自主规划执行",collaboration:"多智能体协作",summary:"自动汇总结果",skills:"按需调用技能",trace:"任务过程可追踪"}},traditional:{title:"传统模式",description:"高度自定义您的智能体结构",features:{visualConfig:"可视化配置",migration:"存量智能体迁移",debugging:"实时调试",optimization:"可选性能优化",parameters:"精细参数控制"}}},G9e={placeholder:"输入系统提示词;键入 ## 加空格可创建二级标题…",toolbar:{undo:"撤销 {{shortcut}}",redo:"重做 {{shortcut}}",paragraph:"正文",quote:"引用",heading:"标题 {{level}}",selectBlockType:"选择文本类型",blockType:"文本类型",bold:"加粗",removeBold:"取消加粗",italic:"斜体",removeItalic:"取消斜体",bulletedList:"无序列表",numberedList:"有序列表"}},H9e={local:{duplicatesSkipped:"已跳过重复技能:{{names}}",invalidDrop:"请拖入包含 SKILL.md 的文件夹或一个 .zip 文件",readError:"读取失败:{{detail}}",dropLabel:"拖入文件夹或 ZIP,自动识别 Skill",hint:"每个技能需包含 SKILL.md。支持包含多个技能的目录。",reading:"正在读取文件…",fileCount:"本地 · {{count}} 个文件"},hub:{searchError:"搜索失败,请稍后重试。",searchPlaceholder:"搜索火山 Find Skill 技能广场,例如 数据分析、PDF…",search:"搜索",searching:"正在搜索…",noResults:"没有找到匹配的技能,换个关键词试试。",hint:"输入关键词搜索火山 Find Skill 技能广场,所选技能会在生成项目时下载到 skills/ 目录。"},space:{loadError:"加载失败",loadingSpaces:"正在加载 AgentKit Skills 中心…",noSpaces:"此账号下没有 AgentKit Skills 中心。",selectSpace:"选择 AgentKit Skills 中心",openConsole:"在火山引擎控制台打开",loadingSkills:"正在加载技能列表…",noSkills:"此 AgentKit Skills 中心暂无技能。"}},W9e={unnamedNode:"未命名节点",editInstruction:"点击编辑指令…",controls:{ariaLabel:"工作流画布控制",zoomIn:"放大",zoomOut:"缩小",fitView:"适应视图"},sections:{info:"工作流信息",execution:"执行方式",nodes:"节点",nodeConfig:"节点配置"},types:{sequential:{label:"顺序",description:"节点依次执行"},parallel:{label:"并行",description:"节点同时执行"},loop:{label:"循环",description:"节点循环执行"}},placeholders:{description:"这个工作流做什么…",agentDescription:"这个 Agent 做什么…",instruction:"你是一个…"},errors:{workflowNameUnique:"名称须与 Agent 节点名称保持唯一",agentNameUnique:"Agent 名称在当前工作流中必须唯一"},dragHint:"拖拽到画布,或点击下方按钮添加",agentNode:"Agent 节点",addNode:"添加节点",connectHint:"拖拽节点的圆点连线以表达执行顺序。",create:"创建工作流",deleteNode:"删除节点",nameHelp:"仅使用英文字母、数字和下划线,且名称保持唯一。",instruction:"指令 (instruction)",tools:"工具 (逗号分隔)",nodeId:"节点 ID",empty:{selectNode:"选择一个节点以编辑其配置",summary:"共 {{nodes}} 个节点 · {{edges}} 条连线"}},Y9e={ariaLabel:"快速模式创建",progress:"快速模式创建进度",steps:{agent:{label:"智能体",title:"基本信息",description:"设置智能体的名称、用途、行为方式与能力"},environment:{label:"执行环境",title:"配置执行环境",description:"选择默认环境或已构建的自定义环境"},deployment:{label:"部署偏好",title:"部署偏好",description:"定义 AgentKit 云上参数"}},model:{label:"模型",source:"模型来源",name:"模型名称",provider:"服务商 Provider",volcengineArk:"火山方舟",custom:"自定义",gateway:"模型网关",comingSoon:"待上线",currentApiKey:"当前 API Key",loadingApiKeys:"正在加载 API Key",selectApiKey:"选择 API Key",searchApiKeys:"搜索 API Key 名称",noApiKeys:"暂无可用 API Key",loadingModels:"正在加载模型",selectModel:"选择模型",searchModels:"搜索名称、Model ID 或服务商",noModels:"没有可用的模型",apiKeyPlaceholder:"请输入模型 API Key",credentialsLoadError:"模型凭据加载失败",modelsLoadError:"模型列表加载失败"},identity:{unnamedPool:"未命名用户池",currentPool:"{{value}}(当前用户池)",userPool:"用户池",loading:"正在加载用户池",placeholder:"请选择用户池",search:"搜索用户池",empty:"当前账号下暂无 Identity 用户池",currentHint:"当前 Studio 的登录 JWT 将透传访问此 Runtime",mismatchHint:"所选用户池不是当前 Studio 使用的用户池,部署后无法从 Studio 调用此 Runtime",selectionHint:"当前 Studio 使用的用户池已在列表中标注"},agent:{namePlaceholder:"输入智能体名称",descriptionPlaceholder:"说明这个智能体可以做什么",prompt:"提示词",promptPlaceholder:"定义角色、目标和行为边界",skills:"技能",addSkill:"添加技能"},validation:{descriptionRequired:"请输入描述",promptRequired:"请输入提示词",modelRequired:"请选择模型",instanceIntegers:"最小实例数必须为大于等于 0 的整数,最大实例数必须为大于 0 的整数",instanceOrder:"最小实例数不能大于最大实例数",userPoolRequired:"请选择用于 Runtime 鉴权的用户池"},deployment:{runtimeName:"Runtime 名称",runtimeNameUpdateHint:"更新时保持现有 Runtime 名称不变",runtimeNameHint:"仅支持英文字母、数字、下划线和连字符",region:"发布区域",authentication:"鉴权方式",apiKeyDescription:"默认方式,使用 Runtime API Key 访问",userPoolDescription:"使用 Identity 用户池签发的 JWT",sessionStorage:"会话存储",inMemoryStorage:"In-memory 临时存储",backends:{sqlite:"SQLite 文件",mysql:"MySQL",postgresql:"PostgreSQL"},instances:"实例设置",minInstances:"最小实例数",maxInstances:"最大实例数",inMemoryHint:"为避免多实例间会话丢失,推荐将 Runtime 固定为 1~1",networkMode:"网络模式",network:{public:"公网",private:"私网",both:"公网与私网"},subnetIds:"子网 ID(可选,多个用逗号分隔)",sharedInternet:"VPC 内共享公网出口",sharedInternetHint:"允许私网 Runtime 通过共享出口访问公网",evaluationSets:"评测集",createEvaluationSets:"自动创建评测集",evaluationSetsHint:"部署成功后自动创建 Good Case 和 Bad Case 评测集",resources:"资源配置",complete:"部署已完成",preparing:"正在准备部署…"},environmentVariables:{title:"环境变量",add:"添加变量",nameAriaLabel:"环境变量名称",valueAriaLabel:"{{name}} 的值",deleteNamed:"删除 {{name}}"},actions:{updateAgain:"再次更新",deployAgain:"重新部署",updateAndPublish:"更新并发布"}},q9e={actions:{addSubagent:"添加子 Agent",clearRoot:"清空根 Agent",clearRootConfirmation:"清空根 Agent 的全部配置和子 Agent?此操作无法撤销。"},workspace:{progress:"Agent 创建进度",modes:{build:"架构",validate:"调试",optimize:"优化",environment:"环境",publish:"发布"},titles:{build:"个性化您的智能体架构",validate:"调试您的智能体",optimize:"为您的智能体选择优化项",environment:"配置云上环境",publish:"准备好部署您的智能体"}},sections:{type:{label:"Agent 类型",hint:"选择 Agent 类型"},basic:{label:"基本信息",hint:"名称、描述与系统提示词"},model:{label:"模型配置",hint:"模型与服务(可选)"},tools:{label:"工具",hint:"可调用的能力"},skills:{label:"技能",hint:"声明式技能"},knowledge:{label:"知识库",hint:"外部知识检索"},memory:{label:"记忆",hint:"短期与长期记忆"},subagents:{label:"子 Agent",hint:"嵌套协作"},review:{label:"完成",hint:"预览并创建"}},agentTypes:{ariaLabel:"Agent 类型",remoteChildOnly:"远程智能体只能作为子步骤使用",llm:{label:"智能体",fullLabel:"LLM 智能体",description:"大模型驱动,自主完成任务"},sequential:{label:"分步协作",fullLabel:"顺序型智能体",description:"子 Agent 按顺序依次执行"},parallel:{label:"同时处理",fullLabel:"并行型智能体",description:"子 Agent 并行执行后汇总"},loop:{label:"循环执行",fullLabel:"循环型智能体",description:"子 Agent 循环执行到满足条件"},a2a:{label:"远程智能体",fullLabel:"远程 Agent",description:"通过 A2A 协议调用远程 Agent"}},basic:{agentName:"Agent 名称",name:"名称",agentDescription:"智能体描述",descriptionPlaceholder:"简要描述这个 Agent 的用途,便于团队识别…",nameHelp:"遵循 Google ADK 命名规则,且在执行流程中保持唯一。",rootDescriptionHelp:"完整描述会保留;部署时会自动整理为符合 Runtime 规范的单行描述。",descriptionHelp:"描述会显示在 Agent 列表与选择器中。",orchestratorHelp:"这是一个协作容器,本身不生成回答。请在左侧画布中添加任务步骤,并通过拖拽调整它们的位置。",maxIterations:"最大轮次",maxIterationsHelp:"循环编排反复执行子 Agent,直到满足条件或达到该轮次上限。",agentCenter:"AgentKit 智能体中心",agentCenterHelp:"远程 Agent 的名称、描述和能力来自中心返回的 Agent Card。系统会根据每轮任务动态发现并挂载匹配的 Agent。",moreOptions:"更多选项",systemPrompt:"系统提示词",loadingMarkdown:"正在加载 Markdown 编辑器…",markdownHelp:"支持 Markdown 快捷输入,例如键入 ## 加空格创建二级标题。",unnamed:"未命名",unnamedAgent:"未命名智能体"},validation:{remoteRoot:"远程 Agent 只能作为子 Agent",missingRegistry:"请选择 AgentKit 智能体中心",name:{required:"名称为必填项",reserved:"user 是 Google ADK 保留名称,请使用其他名称",characters:"名称须以英文字母或下划线开头,且只能包含英文字母、数字和下划线"},duplicateName:"Agent 名称在当前结构中必须唯一",missingDescription:"描述为必填项",mcpAuthRequired:"MCP 地址变化后需要确认认证方式",mcpDuplicateName:"MCP 名称重复,请为每个服务使用唯一名称",mcpDuplicateUrl:"MCP 地址重复,请删除重复服务后再发布",missingSubagent:"缺少子 Agent",missingPrompt:"系统提示词为必填项",missingSubagentDetail:"{{type}}至少需要添加一个子 Agent 后才能调试或发布。",problem:"{{name}}:{{problem}}"},ai:{ariaLabel:"AI 自动填写 Agent 配置",minimumLength:"请至少输入 {{count}} 个字符。",replaceConfirmation:"生成的新配置会替换当前画布和属性,确定继续吗?",placeholder:"描述目标,使用 {{model}} 模型一键生成配置",generate:"智能生成",generating:"正在智能生成",success:"生成成功",regenerate:"重新生成",failed:"智能生成失败"},debug:{ariaLabel:"智能体调试工作区",unavailable:"当前后端暂不支持生成 Agent 调试运行。",baseline:"基准组",comparison:"对照组 {{count}}",selectModel:"请选择模型",enterDescription:"请输入描述",enterPrompt:"请输入系统提示词",duplicateConfiguration:"测试配置不能重复",starting:"启动中…",applyAndRestart:"应用并重启",restart:"重新启动",start:"启动环境",defaultModel:"默认模型",testConfiguration:"测试配置",deleteVariant:"删除 {{name}}",deleteVariantGroup:"删除对照组",creatingEnvironment:"正在创建测试环境…",configurationChanged:"配置已变更,请重新启动环境。",ready:"环境已就绪",readyHint:"发送消息以比较智能体回复。",startHint:"先完善配置,再启动环境。",viewTraceNamed:"查看 {{name}} 的调用链路",traceUnavailable:"发送消息后可查看调用链路",trace:"调用链路",useConfiguration:"使用此配置",finishConfiguration:"完成配置",finishAndStart:"完成并启动",currentAgentModel:"当前 Agent 模型",configurationHint:"修改仅用于本次对比,选择使用后才会进入部署流程。",messagePlaceholder:"向已启动的测试环境发送消息…",startOneFirst:"请先启动至少一个测试环境",addVariant:"添加对照组",traceTitle:"调用链路 · {{name}}",leaveTitle:"离开调试?",leaveDescription:"离开调试页面后,当前环境将被清理。您可以通过重新启动环境进行新的测试。",cleaning:"清理中…",confirmLeave:"确定离开",closeLeaveConfirmation:"关闭离开调试确认"},optimization:{ariaLabel:"智能体优化选项",scenario:"优化场景",components:"优化组件",bytePlusUnavailable:"BytePlus 账号暂不支持 Harness Sidecar 优化项。请保持优化项为空后继续部署,普通 BytePlus 智能体不受影响。",releaseScenario:"优化场景:{{profile}}",profiles:{default:{label:"自定义",description:"按需选择组件,不勾选时不启动 Sidecar。"},ops:{label:"运维场景",description:"适用于运维诊断、数据库、日志和监控 MCP。"}},groups:{quality:"提升回答质量",cost:"降低运行成本",stability:"增强运行稳定性"},options:{context_engine:{label:"上下文治理",description:"治理上下文组装、任务锚定和上下文预算。"},compressor:{label:"上下文与结果压缩",description:"压缩长上下文和大型工具结果,降低 Token 成本。"},verifier:{label:"回答校验与修复",description:"校验证据和回答,在失败时执行修复或告警。"},long_run_control:{label:"Goal 任务控制",description:"管理 Goal 任务的进度、续跑和结束条件。"},mcp_resilience:{label:"MCP 稳定性治理",description:"治理连接、超时、空结果、大返回和调用预算;默认包含 SQL 只读保护。"}}},model:{label:"模型",source:"模型来源",volcanoArk:"火山方舟",volcengineArk:"火山方舟",bytePlusModelArk:"BytePlus ModelArk",custom:"自定义",gateway:"模型网关",comingSoon:"待上线",configuration:"模型配置",name:"模型名称",provider:"服务商 Provider",liteLlmProviders:"LiteLLM 支持列表",apiKeyPlaceholder:"请输入模型 API Key",available:"已开通",retiring:"即将下线",notActivated:"未开通",unavailable:"暂不可用",apiKeyLoadError:"加载 Ark API Key 失败",loadingApiKeys:"正在加载 API Key…",selectApiKey:"选择 API Key",currentApiKey:"当前 API Key",apiKeyList:"API Key 列表",searchApiKey:"搜索 API Key",searchApiKeyName:"搜索 API Key 名称",noApiKeys:"暂无可用 API Key",noMatchingApiKey:"没有匹配的 API Key",loading:"正在加载模型…",loaded:"已加载 {{count}} 个模型",loadError:"加载模型失败",selectModel:"选择模型",selectProviderModel:"选择服务商模型",providerModels:"服务商模型",search:"搜索模型",searchPlaceholder:"搜索名称、Model ID 或服务商",noMatches:"没有匹配的模型",empty:"暂无可用模型",unknownStatus:"未知状态",refresh:"刷新",refreshing:"刷新中…",activate:"开通",activateAction:"前往开通",currentConfiguration:"当前配置"},tools:{builtIn:"内置工具",builtInHelp:"勾选 VeADK 提供的内置能力,生成时会自动补全 import 与所需环境变量。",codeExecution:"代码执行配置",codeExecutionHelp:"指定 AgentKit 代码执行沙箱。",mcp:"MCP 工具"},catalog:{web_search:{label:"联网搜索",description:"火山引擎 Web Search,获取实时信息。"},parallel_web_search:{label:"并行联网搜索",description:"并行发起多条搜索查询,更快汇总。"},link_reader:{label:"网页读取",description:"抓取并阅读给定链接的正文内容。"},web_scraper:{label:"网页爬取",description:"结构化爬取网页(需要 Scraper 服务)。"},image_generate:{label:"图像生成",description:"文生图(Doubao Seedream)。"},image_edit:{label:"图像编辑",description:"图生图 / 编辑(Doubao SeedEdit)。"},video_generate:{label:"视频生成",description:"文/图生视频(Doubao Seedance),含任务查询。"},text_to_speech:{label:"语音合成 (TTS)",description:"把文本转成语音(火山语音)。"},run_code:{label:"代码执行",description:"在沙箱中执行代码。"},vesearch:{label:"VeSearch 智能搜索",description:"火山 VeSearch(需要 bot 端点)。"},links:{console:"控制台",documentation:"文档"},env:{modelAgentName:{comment:"模型名称"},embeddingModelName:{comment:"向量化模型(记忆/知识库需要)"},vikingMemoryProject:{comment:"VikingDB 记忆库项目"},vikingMemoryRegion:{comment:"VikingDB 记忆库地域"},vikingMemoryType:{comment:"记忆类型"},feishuAppId:{comment:"飞书应用 App ID"},feishuAppSecret:{comment:"飞书应用 App Secret",placeholder:"输入 App Secret"},registrySpaceId:{comment:"AgentKit 智能体中心",placeholder:"请选择智能体中心"},registryTopK:{comment:"召回 Agent 数量"},registryRegion:{comment:"AgentKit 智能体中心地域"},registryEndpoint:{comment:"AgentKit 智能体中心 OpenAPI 地址"},agentKitToolId:{comment:"代码执行沙箱 ID"},agentKitToolRegion:{comment:"AgentKit Tools 地域"},openVikingUrl:{comment:"OpenViking 服务地址"},openVikingMemoryUserId:{comment:"记忆归属 ID",help:"对应 viking://user/<此值>/peers/<请求用户>/memories 中的 user 段;用于隔离 Agent、租户或业务场景,默认 default。"},openVikingMemoryPolicy:{comment:"记忆策略",help:"记忆的抽取策略和隔离策略,不填写时使用官方默认策略。"},openVikingKnowledgeUserId:{comment:"知识库归属 ID",help:"未配置资源目录时用于默认路径 viking://user/<此值>/resources/<知识库索引>/,默认 default。"},openVikingTargetUri:{comment:"知识库资源目录",help:"留空时由 KnowledgeBase index 自动生成;填写后直接检索该 OpenViking 资源目录,优先级最高。"},tlsServiceName:{comment:"TLS topic_id,留空自动创建"}}},backends:{shortTerm:{local:{label:"本地内存",description:"进程内,不持久化。适合开发调试。"},sqlite:{label:"SQLite 文件",description:"持久化到本地 .db 文件。"},mysql:{label:"MySQL",description:"持久化到 MySQL。"},postgresql:{label:"PostgreSQL",description:"持久化到 PostgreSQL。"}},longTerm:{local:{label:"本地向量库",description:"进程内 llama-index 向量库。"},opensearch:{label:"OpenSearch",description:"OpenSearch 向量检索。"},redis:{label:"Redis",description:"Redis 向量检索。"},viking:{label:"VikingDB Memory",description:"VikingDB 记忆库(支持用户画像)。"},openviking:{label:"OpenViking Memory",description:"OpenViking 长期记忆,按用户维度保存和检索偏好、事件与实体。"},mem0:{label:"Mem0",description:"Mem0 托管记忆服务。"}},knowledge:{viking:{label:"VikingDB Knowledge",description:"VikingDB 知识库。"},opensearch:{label:"OpenSearch",description:"OpenSearch 向量检索。"},context_search:{label:"Context Search",description:"火山 Context Search 引擎(无需向量化)。"},openviking:{label:"OpenViking Knowledge",description:"OpenViking 资源目录知识库,无需向量化模型配置。"}}},exporters:{apmplus:{label:"APMPlus",description:"火山 APMPlus 应用性能监控。"},cozeloop:{label:"CozeLoop",description:"扣子 CozeLoop 链路观测。"},tls:{label:"TLS (日志服务)",description:"火山 TLS 日志服务导出。"}},knowledge:{title:"知识库",description:"启用外部知识检索(RAG),让 Agent 基于你的资料作答。",backend:"知识库后端",vikingDatabase:"VikingDB 知识库"},memory:{shortTerm:"短期记忆",shortTermDescription:"存储单会话上下文",shortTermBackend:"短期记忆后端",longTerm:"长期记忆",longTermDescription:"存储跨会话上下文,通常使用向量化检索",longTermBackend:"长期记忆后端",vikingDatabase:"VikingDB 记忆库",autoSave:"自动保存会话到长期记忆",autoSaveDescription:"会话结束时自动把内容写入长期记忆,无需手动调用。"},mcp:{removeTool:"删除 MCP 工具",namePlaceholder:"名称(可选)",urlPlaceholder:"MCP 服务地址",pathWarning:"此地址未以 /mcp 结尾,请确认它是完整的 MCP 服务地址。",configuredPlaceholder:"已安全保存认证信息",tokenPlaceholder:"Bearer Token(可选)",changedUrlWarning:"MCP 地址已变化,请确认如何处理已保存的认证信息。",reuseCredential:"继续使用",replaceCredential:"替换认证",noAuth:"不使用认证",reuseHint:"发布时将继续使用已保存的认证信息。",changeToReplace:"改为替换",credentialConfigured:"认证信息已由 Studio 安全保存。",removeCredential:"移除认证",commandPlaceholder:"命令,例如 npx",argsPlaceholder:"参数,以空格分隔",stdioHint:"stdio 工具在部署环境中启动,请确保命令和依赖可用。",addTool:"添加 MCP 工具"},resources:{unnamedAgentCenter:"未命名智能体中心",unnamedKnowledgeBase:"未命名知识库",unnamedMemory:"未命名记忆库",loadError:"加载失败",loadingAgentCenters:"正在加载智能体中心…",agentCentersLoaded:"已加载 {{count}} 个智能体中心",noAgentCenters:"暂无智能体中心",noMatchingAgentCenters:"没有匹配的智能体中心",searchAgentKitCenter:"搜索 AgentKit 智能体中心",searchNameOrId:"搜索名称或 ID",selectAgentCenter:"选择智能体中心",selectAgentKitCenter:"选择 AgentKit 智能体中心",selectedAgentCenter:"已选智能体中心",agentKitCenter:"AgentKit 智能体中心",refreshAgentCenters:"刷新智能体中心",knowledgeBaseList:"知识库列表",knowledgeBasePlaceholder:"选择知识库",loadingKnowledgeBases:"正在加载知识库…",knowledgeBasesLoaded:"已加载 {{count}} 个知识库",noKnowledgeBases:"暂无知识库",noMatchingKnowledgeBases:"没有匹配的知识库",searchKnowledgeBase:"搜索知识库",selectKnowledgeBase:"选择知识库",refreshKnowledgeBases:"刷新知识库",memoryList:"记忆库列表",memoryPlaceholder:"选择记忆库",loadingMemories:"正在加载记忆库…",memoriesLoaded:"已加载 {{count}} 个记忆库",noMemories:"暂无记忆库",noMatchingMemories:"没有匹配的记忆库",searchMemory:"搜索记忆库",selectMemory:"选择记忆库",refreshMemories:"刷新记忆库"},env:{noAdditionalParameters:"此后端无需额外运行参数。",invalidJson:"请输入有效的 JSON。",helpAriaLabel:"{{label}}说明:{{help}}",openOpenViking:"打开 OpenViking {{label}}",valuePlaceholder:"请输入参数值",openVikingIndex:"OpenViking 资源索引",openVikingIndexHelp:"默认值:留空;生成项目时使用 Agent 名自动生成,例如 my_agent_kb。未配置 DATABASE_OPENVIKING_TARGET_URI 时,默认 URI 拼接为 viking://user/{知识库归属 ID,未填则 default}/resources/{资源索引}/;如果填写了 DATABASE_OPENVIKING_TARGET_URI,则直接使用该完整 URI。",openVikingIndexAriaLabel:"OpenViking 资源索引说明:{{help}}"},deployment:{vpcRequired:"使用 VPC 网络时,请填写 VPC ID。",apiKeyRequired:"请先选择模型使用的 API Key。",invalidEnvName:"环境变量名称不合法:{{key}}",requiredEnv:"{{name}}:请填写必填环境变量",generatingConfiguration:"正在生成部署配置",runtimeNameExists:"Runtime 名称已存在,请修改后重试。",preparing:"准备部署",complete:"部署完成",failed:"部署失败",updateAndPublish:"更新并发布",stages:{build:"构建镜像",deploy:"部署 Runtime",publish:"发布服务",running:"部署中"}},publish:{generating:"正在生成发布配置",validating:"校验 Agent 结构并准备部署快照…"}},j9e={presets:{support:{name:"客服助手",description:"7×24 在线答疑,结合知识库与历史对话,稳定、礼貌地解决用户问题。",instruction:"你是一名专业、耐心的客服助手。请始终保持礼貌、友好的语气,优先依据知识库中的资料回答用户问题;当资料不足以确定答案时,如实告知用户并主动引导其提供更多信息,切勿编造。回答尽量简洁、分点清晰,必要时给出操作步骤。",subagents:{}},analyst:{name:"数据分析师",description:"运行代码完成统计与可视化,开启链路追踪,分析过程可观测、可复现。",instruction:"你是一名严谨的数据分析师。面对数据问题时,先厘清分析目标与口径,再通过编写并运行代码完成清洗、统计与可视化。每一步都要说明你的假设与方法,给出结论时附上关键数据支撑,并指出潜在的偏差与局限。",subagents:{}},translator:{name:"翻译助手",description:"中英互译,忠实、通顺、地道,保留原文语气与专业术语。",instruction:"你是一名专业的翻译助手,精通中英互译。请在忠实于原文含义的前提下,使译文自然、地道、符合目标语言表达习惯;保留专有名词与专业术语的准确性,并尽量贴合原文的语气与风格。仅输出译文,除非用户额外要求解释。",subagents:{}},coder:{name:"代码助手",description:"编写、调试与重构代码,可运行代码验证结果,给出清晰可维护的实现。",instruction:"你是一名资深软件工程师。请根据需求编写正确、清晰、可维护的代码,遵循目标语言的惯用风格与最佳实践。在不确定时通过运行代码验证你的实现,给出关键的边界条件与测试思路,并对复杂逻辑附上简要注释。",subagents:{}},researcher:{name:"研究员",description:"联网检索一手资料,结合知识库与长期记忆,输出有据可查的研究结论。",instruction:"你是一名严谨的研究员。面对研究问题时,先拆解关键子问题,再通过联网检索收集多个一手、可信的来源,交叉验证后再下结论。结论需注明出处与不确定性,区分事实与推断,避免以偏概全。",subagents:{}},"research-team":{name:"多智能体研究团队",description:"由检索员、分析员、撰写员协作的研究编排,分工完成端到端调研报告。",instruction:"你是一支研究团队的总协调者。负责拆解用户的研究任务,将检索、分析、撰写分别委派给对应的子 Agent,汇总各子 Agent 的产出,把控整体质量,最终输出结构清晰、有据可查的研究报告。",subagents:{0:{name:"检索员",description:"联网搜集与课题相关的一手资料与数据。",instruction:"你是研究团队中的检索员。根据课题联网检索多个可信来源,整理出关键事实、数据与原文出处,交付给分析员,不做主观结论。"},1:{name:"分析员",description:"对检索到的材料做交叉验证与归纳分析。",instruction:"你是研究团队中的分析员。对检索员提供的材料做交叉验证、归纳与对比,提炼洞见、识别矛盾与不确定性,形成结构化的分析要点。"},2:{name:"撰写员",description:"将分析结论组织为结构清晰、引用规范的报告。",instruction:"你是研究团队中的撰写员。把分析员的要点组织成结构清晰、语言通顺、引用规范的研究报告,确保每个结论都能追溯到来源。"}}}},tags:{tools:"工具",memory:"记忆",knowledgeBase:"知识库",tracing:"观测",subagents:"子 Agent {{count}}"},gallery:{title:"从模板新建",subtitle:"选择一个预制 Agent 模板,按需微调后即可创建。"},detail:{back:"返回模板列表",name:"名称",systemPrompt:"系统提示词",model:"模型",tools:"工具",memory:"记忆",knowledgeBase:"知识库",tracing:"观测追踪",subagents:"子 Agent({{count}})",create:"使用此模板创建",shortTermMemory:"短期",longTermMemory:"长期"}},srr=Object.freeze(Object.defineProperty({__proto__:null,buildCanvas:z9e,codePackage:F9e,common:M9e,default:{common:M9e,yaml:I9e,validation:P9e,defaults:N9e,helpers:B9e,intelligentDeployment:$9e,codePackage:F9e,buildCanvas:z9e,intelligent:U9e,projectLibrary:V9e,modePicker:Q9e,promptEditor:G9e,skills:H9e,workflow:W9e,workbench:Y9e,traditional:q9e,template:j9e},defaults:N9e,helpers:B9e,intelligent:U9e,intelligentDeployment:$9e,modePicker:Q9e,projectLibrary:V9e,promptEditor:G9e,skills:H9e,template:j9e,traditional:q9e,validation:P9e,workbench:Y9e,workflow:W9e,yaml:I9e},Symbol.toStringTag,{value:"Module"})),X9e={backToList:"返回定时任务列表",cancel:"取消",cancelQueue:"取消排队",cancelQueueFirst:"请先取消排队",cancelling:"取消中…",closeDrawer:"关闭抽屉",collapse:"收起",connectingRuntime:"正在连接 Runtime…",createScheduledTask:"创建定时任务",createTask:"创建任务",delete:"删除",deleteTask:"删除任务",edit:"编辑",enable:"启用",expand:"展开",pause:"暂停",refresh:"刷新",refreshHistory:"刷新执行历史",rerun:"重新执行",retry:"重试",runNow:"立即执行",saveChanges:"保存更改",saving:"保存中…",stop:"终止执行",stopRun:"终止本次执行",stopRunFirst:"请先终止当前执行",stopping:"终止中…",viewDetails:"查看详情"},K9e={cancelDescription:"本次 Session 将被取消,后续计划不会暂停。",cancelTitle:"终止本次执行?",deleteDescription:"“{{name}}”及其全部执行历史将被永久删除。",deleteTitle:"删除定时任务?"},Z9e={configuration:"任务配置",nextRun:"下次执行",pageLabel:"定时任务详情",region:"地域",runtime:"运行时",status:"任务状态"},J9e={createTitle:"创建定时任务",description:"每次触发都会为 Runtime Agent 创建独立 Session。",editTitle:"编辑定时任务"},eFe={minutesSeconds:"{{minutes}} 分 {{seconds}} 秒",seconds:"{{count}} 秒"},tFe={cronExpression:"Cron 表达式",cronHelp:"依次填写分钟、小时、日期、月份、星期。",dailyTime:"每天执行时间",enableAfterCreate:"创建后启用",enableHelp:"启用后会从下一个计划时间开始执行。",name:"任务名称",namePlaceholder:"例如:每日生成运营摘要",noRuntime:"暂无可用 Runtime",prompt:"执行文本",promptPlaceholder:"输入每次执行时发送给 Agent 的固定文本",runAt:"执行时间",runtimeAgent:"运行时智能体",runtimeHelp:"任务始终跟随该 Runtime 当前生效版本。",runtimePlaceholder:"选择 Runtime Agent",schedule:"执行计划",scheduleType:"执行计划类型",timezone:"时区",weekday:"星期"},rFe={all:"全部"},nFe={description:"每次运行均使用独立 Session,结果与错误会永久保留。",duration:"耗时 {{duration}}",emptyDescription:"任务触发或立即执行后,记录会显示在这里。",emptyTitle:"暂无执行记录",errorDetails:"错误详情",finalAnswer:"最终回答",loadFailed:"无法加载执行历史",loadFailedDescription:"请检查 Studio 服务后重试。",session:"会话",title:"执行历史"},iFe={cancelRequested:"已提交终止请求。",created:"任务已创建。",deleted:"任务及其执行历史已删除。",enabled:"任务已启用。",paused:"任务已暂停。",queued:"任务已排队,将在一分钟内开始执行。",requeued:"任务已重新排队,将在一分钟内开始执行。",updated:"任务已更新。"},aFe={filterLabel:"定时任务状态筛选",listLabel:"定时任务列表",loadFailed:"无法加载定时任务",loadFailedDescription:"请检查 Studio 服务后重试。",title:"定时任务"},sFe={cron:"Cron {{cron}}{{zone}}",daily:"每天 {{time}}{{zone}}",once:"一次 · {{date}}{{zone}}",weekly:"{{weekday}} {{time}}{{zone}}"},oFe={daily:"每天",once:"一次性",weekly:"每周"},lFe={cancelled:"已取消",enabled:"已启用",failed:"失败",notRun:"尚未执行",paused:"已暂停",pending:"准备中",queued:"已排队",retrying:"自动重试中",running:"执行中",skipped:"已跳过",success:"成功"},cFe={cronFields:"Cron 表达式需要包含 5 个字段,例如 0 9 * * *。",nameRequired:"请输入任务名称。",promptRequired:"请输入每次执行时发送给 Agent 的文本。",runtimeAppMissing:"Runtime Agent 未返回可调用的 appName,请确认 Runtime 已就绪且版本兼容。",runtimeRequired:"请选择可用的 Runtime Agent。",timeRequired:"请选择执行时间。"},uFe={friday:"周五",monday:"周一",saturday:"周六",sunday:"周日",thursday:"周四",tuesday:"周二",wednesday:"周三"},orr=Object.freeze(Object.defineProperty({__proto__:null,actions:X9e,confirm:K9e,default:{actions:X9e,confirm:K9e,detail:Z9e,drawer:J9e,duration:eFe,fields:tFe,filters:rFe,history:nFe,notices:iFe,page:aFe,schedule:sFe,scheduleTypes:oFe,status:lFe,validation:cFe,weekdays:uFe},detail:Z9e,drawer:J9e,duration:eFe,fields:tFe,filters:rFe,history:nFe,notices:iFe,page:aFe,schedule:sFe,scheduleTypes:oFe,status:lFe,validation:cFe,weekdays:uFe},Symbol.toStringTag,{value:"Module"})),hFe="问题反馈",dFe="问题描述",fFe="常见问题",pFe="取消",gFe="完成",mFe="提交反馈",vFe="正在上报…",yFe={title:"上报成功,感谢您的反馈",description:"AgentKit 团队会尽快查看您提交的问题。"},bFe={close:"关闭问题反馈",intro:"请选择遇到的问题,也可以补充具体表现。",privacy:"您的对话数据将会上报到 AgentKit 团队,请注意隐私保护。",descriptionPlaceholder:"请描述问题发生时的表现(选填)",issues:{slow:"执行速度慢",crash:"运行崩溃",incorrect:"结果不准确",tool_error:"工具调用失败",other:"其他问题"}},xFe={description:"告诉我们您在使用 AgentKit Studio 时遇到的问题。",module:"所属模块",modules:{conversation:"对话",agents:"智能体",applications:"自动化",search:"搜索",other:"其他"},commonIssuesMultiple:"常见问题(可多选)",issueTypes:"问题类型",issues:{page_slow:"页面加载慢",feature_unavailable:"功能无法使用",display_error:"页面显示异常",no_response:"操作无响应",other:"其他问题"},descriptionPlaceholder:"请描述问题发生时的页面、操作和表现",quickAdd:"快捷补充",suggestionsLabel:"问题描述推荐",suggestions:{noResponse:"点击后没有反应",loading:"页面一直处于加载状态",incomplete:"部分内容显示不完整",error:"操作后出现错误提示"},privacy:"您的数据将会上报到 AgentKit 团队,请注意隐私保护。"},lrr=Object.freeze(Object.defineProperty({__proto__:null,cancel:pFe,commonIssues:fFe,default:{title:hFe,descriptionLabel:dFe,commonIssues:fFe,cancel:pFe,done:gFe,submit:mFe,submitting:vFe,success:yFe,dialog:bFe,page:xFe},descriptionLabel:dFe,dialog:bFe,done:gFe,page:xFe,submit:mFe,submitting:vFe,success:yFe,title:hFe},Symbol.toStringTag,{value:"Module"})),wFe={back:"返回",close:"关闭"},AFe={title:"优化迁移项目",closeAria:"关闭优化窗口"},TFe={title:"已迁移项目",description:"管理迁移后的源码版本,也可以选择任一版本继续优化。",libraryTitle:"项目与版本",libraryDescription:"查看、下载、部署或对比源码版本,也可以基于任一版本继续优化。",emptyTitle:"还没有已迁移的项目",emptyDescription:"迁移完成后,源码会自动保存在这里。"},SFe={langchain:"LangChain",langgraph:"LangGraph",adk:"Google ADK",strands:"Strands",agentcore:"AgentCore",dify:"Dify",any:"Any(通用迁移)"},CFe={awaitingUpload:"待上传",analyzing:"分析中",needsInput:"待补充",analysisReady:"待确认",migrating:"迁移中",validating:"校验中",packaging:"打包中",succeeded:"已完成",succeededWithWarnings:"已完成,有提示",partial:"部分完成",failed:"失败",cancelled:"已终止",expired:"已过期"},OFe={partialReady:"迁移产物已生成,但交付不完整,请查看迁移提示。",readyWithWarnings:"迁移产物已生成,请查看迁移提示。",ready:"迁移产物已生成。"},kFe={passed:"产物校验通过",failed:"产物校验未通过",degraded:"产物校验未完成"},EFe={session:"创建迁移环境",upload:"上传项目",analysis:"分析项目"},_Fe={agentNameRequired:"请输入 Agent 名称",agentNameInvalid:"Agent 名称必须为 1-63 位,只能包含小写字母、数字和连字符,且必须以字母或数字开头和结尾"},RFe={seconds:"{{seconds}} 秒",minutesSeconds:"{{minutes}} 分 {{seconds}} 秒"},DFe={savedUnaffected:"已保存项目不受影响",savingUnaffected:"源码正在保存,完成后不受环境期限影响",activeDetail:"到期后任务记录和临时产物将无法访问",oneHour:"临时迁移环境保留 1 小时",ended:"临时迁移环境已结束",savedAvailable:"已保存项目仍可查看、下载、部署或优化",unavailable:"任务记录和临时产物已无法访问",countdown:"临时迁移环境将在 {{minutes}} 分 {{seconds}} 秒后结束",expiredSavedMessage:"临时迁移环境已结束,已保存项目不受影响。",expiredMessage:"临时迁移环境已结束,任务记录和临时产物无法继续访问。"},LFe={recommended:"建议迁移方式",scope:"迁移范围",excluded:"不在本次范围",viewEvidence:"查看分析证据",viewAssumptions:"查看关键假设",viewSourceEvidence:"查看源码证据"},MFe={ariaLabel:"Codex 执行动态",title:"Codex 执行动态",startingAnalysis:"Codex 正在开始分析…",startingMigration:"Codex 正在开始迁移…",loadError:"暂时无法读取 Codex 执行动态,不影响当前任务。"},IFe={title:"迁移产物",fileTooLarge:"该文件超过 2 MiB,请下载完整产物后查看。",unsupportedPreview:"该文件不支持在线预览,请下载完整产物后查看。",filesAria:"迁移产物文件",searchAria:"搜索产物文件",searchPlaceholder:"搜索文件",limit:"仅展示前 {{count}} 项,请搜索具体文件。",noSelection:"未选择文件",noPreview:"暂无可预览文件。",loadingFile:"正在读取产物文件…",startupFile:"启动文件",fileCountLabel:"文件数",saved:"源码已保存,可继续查看、下载、部署或优化。",saving:"产物已生成,正在保存源码版本。",deployReady:"产物可预览、下载和部署,正在等待源码保存状态。",deployUnavailable:"产物可预览和下载,但当前交付状态不支持部署。",viewProjects:"查看已迁移项目",downloading:"下载中…",downloadZip:"下载 ZIP",deployTitle:"部署迁移产物",deployUnavailableTitle:"当前交付状态不支持部署",deployRuntime:"部署到 Runtime",fileCount:"{{count}} 个文件",startup:"启动文件 {{module}}",loading:"正在读取迁移产物…"},PFe={retiring:"即将下线",currentDefault:"当前默认模型",loadError:"加载模型列表失败",label:"模型",placeholder:"选择模型"},NFe={zipOnly:"请选择 .zip 格式的本地项目文件。",invalidName:"ZIP 文件名无效,请重命名后重新选择。",tooLarge:"项目 ZIP 不能超过 {{size}}。",empty:"项目 ZIP 不能为空。",removeAria:"移除项目 ZIP",reselectPrompt:"重新选择项目 ZIP",selectPrompt:"选择或拖入本地项目 ZIP",reselect:"重新选择",selectZip:"选择 ZIP",continue:"继续上传",start:"开始迁移",inputAria:"选择本地项目 ZIP",retention:"临时迁移环境从创建完成起保留 1 小时;保存成功的源码版本不受影响。"},BFe={requiredPlaceholder:"请输入 {{key}}",optionalPlaceholder:"可选:{{key}}",notReady:"迁移产物尚未准备完成。",back:"返回迁移结果"},$Fe={backToAddAgent:"返回添加 Agent",title:"从存量迁移",newMigration:"新建迁移",recent:"最近迁移",sessionsAria:"迁移会话",loadingSessions:"正在读取迁移会话…",noSessions:"暂无迁移会话",heading:"迁移存量 Agent 项目",intro:"上传本地项目 ZIP,Codex 将先进行只读分析,再由你确认迁移方式。"},FFe={stop:"终止迁移",stopping:"正在终止…",reload:"重新读取",refreshStatus:"刷新状态"},zFe={unavailable:"迁移能力暂不可用",defaultReason:"Dev Sandbox 暂不可用,请联系管理员检查配置。"},UFe={requestZip:"请提供本地项目 ZIP。上传后我会识别框架、入口和迁移边界,并在执行实际迁移前请你确认迁移方式。",zipHint:"仅支持本地 ZIP,最大 {{size}};迁移环境从创建起保留 1 小时。",creatingSandbox:"正在创建 Dev Sandbox",initializing:"正在初始化迁移工作目录,并检查 AgentKit CLI、Codex 和迁移能力。环境就绪后将自动上传项目。",elapsed:"已等待 {{duration}}",uploadThenAnalyze:"ZIP 上传完成后将自动开始只读分析。",analyzing:"Codex 正在识别框架、入口和迁移边界,不会执行实际迁移。",migrationLocked:"迁移执行中不能修改附件或迁移方式。你可以等待当前任务结束,或主动终止。",analysisPaused:"只读分析已暂停。请仅回答下面列出的问题,提交后会在同一迁移环境中重新分析,不会开始实际迁移。",analysisComplete:"只读分析已完成。请检查建议,并确认最终迁移方式。",awaitingUpload:"迁移环境已创建,请重新选择本地 ZIP 继续上传。",expiredTitle:"迁移环境已过期",expiredDescription:"迁移内容和产物已无法预览、下载或部署。如已完成 Runtime 部署,可返回智能体页面继续使用。",unsupportedTitle:"当前 ZIP 暂时无法迁移",unsupportedHint:"请按提示整理项目后,新建迁移并重新上传。",failedTitle:"迁移未完成",cancelled:"当前迁移已终止。你可以新建迁移并重新上传项目。"},VFe={ariaLabel:"补充项目分析信息",title:"补充分析所需信息",description:"附件保持锁定,提交后仅继续只读分析",submitting:"正在继续分析…",submit:"提交并继续分析"},QFe={ariaLabel:"确认迁移方式",title:"确认迁移方式",description:"确认后才会执行实际迁移",framework:"迁移方式",frameworkPlaceholder:"选择迁移方式",agentName:"Agent 名称",entry:"项目入口",entryPlaceholder:"选择项目入口",entryExample:"例如 agent.py:agent",consent:"点击“确认并开始迁移”即确认上述迁移范围、排除项和关键假设。",starting:"正在启动迁移…",start:"确认并开始迁移"},GFe={closeAria:"关闭错误提示",loadFailed:"无法读取迁移数据,请重试。",refreshFailed:"无法刷新迁移状态,请重试。"},HFe={title:"终止当前迁移?",description:"终止后,当前分析或迁移进程将停止,已执行的步骤不会继续。"},crr=Object.freeze(Object.defineProperty({__proto__:null,actions:FFe,activity:MFe,analysis:LFe,artifact:IFe,capability:zFe,common:wFe,confirmation:QFe,conversation:UFe,default:{common:wFe,optimization:AFe,projects:TFe,framework:SFe,state:CFe,task:OFe,verification:kFe,transfer:EFe,validation:_Fe,duration:RFe,expiry:DFe,analysis:LFe,activity:MFe,artifact:IFe,model:PFe,upload:NFe,deployment:BFe,workspace:$Fe,actions:FFe,capability:zFe,conversation:UFe,questions:VFe,confirmation:QFe,errors:GFe,stopDialog:HFe},deployment:BFe,duration:RFe,errors:GFe,expiry:DFe,framework:SFe,model:PFe,optimization:AFe,projects:TFe,questions:VFe,state:CFe,stopDialog:HFe,task:OFe,transfer:EFe,upload:NFe,validation:_Fe,verification:kFe,workspace:$Fe},Symbol.toStringTag,{value:"Module"})),WFe={loading:"加载中…",searchLabel:"搜索{{label}}",searchPlaceholder:"搜索{{label}}",retry:"重试",noMatches:"没有匹配项",noOptions:"暂无可选项",selection:"{{label}}:{{value}}"},YFe={badge:"焕然一新",view:"查看新特性",title:"本次更新",defaultNotes:{multiRegion:"多地域智能体:并行加载北京与上海 Runtime,列表下滑即可继续加载。",switchAgent:"会话内切换:在输入框旁选择智能体,并直接开启一段新会话。",visualCanvas:"可视化执行画布:通过横向画布查看多智能体结构,并支持全屏浏览。"}},qFe={label:"新会话模式",agent:"智能体",skill:"技能定制",video:"视频创作"},jFe={select:"选择新会话模式",agent:{label:"Agent",description:"与当前选择的 Agent 对话"},builtin:{label:"内置智能体",description:"使用平台提供的智能体"},codex:{label:"Codex 智能体",description:"在沙箱中执行任务"},deepseekHarness:{label:"DeepSeek Harness",description:"打开 DeepSeek Harness 工作区"},arkClaw:"ArkClaw",hermes:"Hermes 智能体",checking:"正在检查配置",notConfigured:"管理员未配置",unavailable:"暂不可用"},XFe={select:"选择智能体",typesLabel:"智能体类型",listLabel:"{{type}}列表",types:{agent:"智能体",general:"通用智能体",codex:"Codex 智能体",deepseekHarness:"DeepSeek Harness",openclaw:"OpenClaw 智能体",hermes:"Hermes 智能体"},loading:"正在加载智能体",reload:"重新加载",empty:"暂无{{type}}",emptyLocal:"暂无本地智能体",emptyGeneral:"暂无通用智能体",createHint:"请前往智能体页创建",localHint:"请检查当前 Studio 启动目录",waking:"正在唤醒",opening:"正在打开",connecting:"正在连接",loadingMore:"加载中",loadMore:"加载更多",runtimeTimeout:"加载智能体超时(15 秒),请检查网络或 Runtime 服务后重试",loadGeneral:"加载通用智能体",loadType:"加载 {{type}}",connectGeneral:"连接通用智能体",openLocal:"打开本地智能体",openType:"打开 {{type}}",wakingHint:"正在唤醒智能体,可能需要一些时间。"},KFe={spaceAria:"技能空间",configuration:"技能定制配置",actions:{create:"技能生成",optimize:"技能优化"},selectAction:"选择技能定制方式",actionList:"技能定制方式",style:"风格",selectStyle:"选择风格",model:"模型",selectModel:"选择模型",styles:{concise:"简洁实用",strict:"严谨稳健",tutorial:"教程友好",automation:"自动化优先"},modelLoadFailed:"模型配置加载失败",spaceLoadFailed:"Skill Space 加载失败",skillLoadFailed:"Skill 加载失败",unnamedSpace:"未命名 Skill Space",space:"技能空间",select:"选择 Skill",selectAria:"选择 Skill:{{skill}}",loadingSpaces:"正在加载 Skill Space",reload:"重新加载",emptySpaces:"暂无 Skill Space",skillList:"{{space}} Skill 列表",loadingSkills:"正在加载 Skill",emptySkills:"暂无 Skill"},ZFe={modes:{auto:"自动识别",text_to_video:"文生视频",reference_to_video:"参考素材生视频",video_editing:"视频编辑",video_extension:"视频续写",first_last_frame:"首尾帧生成"},taskNames:{auto:"视频生成",text_to_video:"文生视频",reference_to_video:"参考素材生视频",video_editing:"视频编辑",video_extension:"视频续写",first_last_frame:"首尾帧生成"},controls:{label:"视频创作配置",aspectRatio:"比例",selectAspectRatio:"选择比例",resolution:"清晰度",selectResolution:"选择清晰度",duration:"时长",durationShort:"{{count}} 秒",durationAria:"视频时长:{{count}} 秒",lastFrame:"尾帧",lastFrameHelper:"添加视频结束画面",assistImage:"辅助图片",referenceImage:"参考图片",assistImageHelper:"用于补充画面参考",imageHelper:"支持常见图片格式",referenceVideo:"参考视频",videoHelper:"支持常见视频格式",optional:"可选",replace:"更换",add:"添加",upload:"上传{{label}}",replaceFile:"更换{{label}}:{{name}}",removeFile:"移除{{label}} {{name}}",storageUnavailable:"管理员未配置持久化存储",loadingEnhancer:"正在加载增强模型",enhancerHint:"使用 {{model}} 模型进行意图识别和提示词增强",enhancerUnavailable:"增强模型不可用"},task:{title:"视频生成任务",closeAria:"关闭视频生成任务弹窗",progressAria:"视频生成进度",optimizedPrompt:"优化后的提示词",processingAria:"{{task}}处理进度",waitingAria:"{{status}},已等待{{elapsed}}",elapsed:"已等待 {{elapsed}}",previewAria:"生成结果预览",close:"关闭",download:"下载视频",retryOptimization:"重试提示词优化",retryGeneration:"重试视频生成",providerQueued:"等待模型调度",providerRunning:"模型生成中",providerSubmitting:"正在提交任务",queuedHint:"任务已提交,模型开始处理后状态会自动更新",runningHint:"这可能持续数分钟,完成后将在这里显示视频预览",backgroundHint:"可以关闭弹窗,任务会继续在后台运行",successHint:"视频已生成,可预览或下载",activationHint:"请先在模型控制台开通服务,再重试生成",retryHint:"修正问题后可重试当前步骤",steps:{optimizationFailed:"提示词优化失败",optimizationDone:"提示词优化完成",optimizationActive:"提示词优化中",generationDone:"{{task}}已完成",generationFailed:"{{task}}失败",generationQueued:"{{task}}排队中",generationRunning:"{{task}}生成中",generationActive:"{{task}}进行中",generationPending:"等待视频生成",generationComplete:"视频生成完成"},elapsedHours:"{{hours}}小时{{minutes}}分",elapsedMinutes:"{{minutes}}分{{seconds}}秒",elapsedSeconds:"{{seconds}}秒"}},urr=Object.freeze(Object.defineProperty({__proto__:null,agentPicker:XFe,compactSelect:WFe,default:{compactSelect:WFe,featureNotice:YFe,workspace:qFe,mode:jFe,agentPicker:XFe,skill:KFe,video:ZFe},featureNotice:YFe,mode:jFe,skill:KFe,video:ZFe,workspace:qFe},Symbol.toStringTag,{value:"Module"})),JFe={cancel:"取消",close:"关闭",retry:"重试",tryAgain:"重新尝试",closeDialog:"关闭{{title}}",agentFallback:"{{agent}} 智能体",unknownSource:"未知来源"},eze={terminalTitle:"终端",browserTitle:"沙箱浏览器",terminalSubtitle:"连接当前 AgentKit Session 的交互式终端",browserSubtitle:"在当前 AgentKit Session 中查看与操作浏览器",connecting:"正在连接…",connected:"已连接",notConnected:"尚未连接",opening:"正在打开 {{title}}",connectingSession:"工具正在连接当前 AgentKit Session。",openFailed:"{{title}} 打开失败"},tze={title:"恢复 Codex 对话",subtitle:"选择当前 Sandbox Session 中最近更新的 Thread",loading:"正在读取历史对话",loadFailed:"历史对话读取失败",empty:"暂无可恢复的对话"},rze={title:"Codex 权限",subtitle:"设置会保存到当前 Sandbox Session,并同步到其中的所有 Thread",sandboxMode:"沙箱模式",approvalPolicy:"审批策略",approvalMethod:"审批方式",networkAccess:"允许网络访问",networkAccessHelp:"控制 workspace-write 与只读模式中的外部网络访问。",fullAccessWarning:"完全访问会关闭文件系统与网络隔离,请只在可信任务中使用。",save:"保存权限",sandboxChoices:{readOnly:{label:"只读",detail:"允许读取文件,不允许写入工作空间。"},workspaceWrite:{label:"工作区写入",detail:"允许在当前工作空间内读取与修改文件。"},fullAccess:{label:"完全访问",detail:"不启用沙箱隔离,适合明确可信的任务。"}},approvalChoices:{untrusted:{label:"仅不可信命令",detail:"只对 Codex 判断为不可信的操作发起审批。"},onRequest:{label:"按需审批",detail:"Codex 可在必要时请求你确认命令或文件修改。"},never:{label:"不审批",detail:"Codex 不会暂停并请求人工批准。"}},reviewerChoices:{user:{label:"由我审批",detail:"审批请求会显示在 Studio 中,由你决定。"},autoReview:{label:"自动审查",detail:"使用 Codex 自动审查流程处理审批请求。"}}},nze={title:"工作空间",subtitle:"选择当前 Codex Thread 执行命令与修改文件的目录",absolutePath:"绝对路径",browse:"浏览",parent:"上一级",empty:"当前目录没有子目录",locked:"当前对话已经开始,工作空间已锁定。新建 Sandbox 会话后可重新选择。",useDirectory:"使用此目录"},ize={fileTitle:"允许修改文件?",commandTitle:"允许执行命令?",subtitle:"Codex 正在等待你的决定",workingDirectory:"执行目录",decline:"拒绝",acceptOnce:"仅本次允许",acceptSession:"本会话允许"},aze={availableSkills:"可用 Skills",selectModel:"选择模型",commands:"Codex 快捷命令",currentModel:"当前:{{model}}",loadingSkills:"正在发现当前工作区的 Skills…",loadingModels:"正在读取模型…",noSkillMatches:"当前工作区没有匹配的 Skill",noModelMatches:"没有匹配模型,也可以直接输入模型 ID",noCommandMatches:"没有匹配的快捷命令",skillFallback:"加载并执行该 Skill",add:"添加",uploadImage:"上传图片",uploadDocument:"上传文档或 PDF",uploadVideo:"上传视频",openTerminal:"进入终端",viewBrowser:"查看浏览器",permissions:"Codex 权限",workspaceLocked:"对话已开始,工作空间已锁定",selectWorkspace:"选择工作空间",workspace:"Codex 工作空间",endpointCopied:"Endpoint 已复制",copyEndpoint:"复制 Sandbox Endpoint",continuePlaceholder:"继续说明你想实现或调整的内容",messagePlaceholder:"向 AgentKit 沙箱发送消息,输入 / 查看命令,输入 $ 调用 Skill…",stop:"停止生成",send:"发送"},sze={defaultName:"我的智能体",namedDefault:"我的 {{agent}}",creatingTitle:"正在创建 {{agent}} 智能体",failedTitle:"启动失败",createTitle:"创建 {{agent}} 智能体",fallbackError:"AgentKit 沙箱初始化失败,请稍后重新尝试。",creatingDescription:"正在创建并等待 {{agent}} 智能体就绪,这通常需要半分钟",name:"智能体名称",storageSize:"存储大小",storageHelp:"数据将持久化保存,可设置 {{min}}–{{max}} GiB。",persistent:"持久化",persistenceUnsupported:"当前环境不支持快照持久化",persistentHelp:"保留智能体数据,后续可继续使用。",temporaryHelp:"智能体将在 8 小时后清空",cancelCreation:"取消创建",confirm:"确认创建",retry:"重新尝试"},oze={activeAria:"Codex 智能体会话已开启",openAria:"开启 Codex 智能体会话",active:"Codex 智能体会话中",entry:"灵光一现",exit:"退出当前智能体",expired:"已到期",remainingHours:"剩余 {{hours}} 小时 {{minutes}} 分钟",remainingMinutes:"剩余 {{minutes}} 分钟",expiryWarning:"远端开发环境最长保留 8 小时,将于 {{expiry}} 到期({{remaining}});到期后清除对话和文件。",usingAgent:"当前您在使用 {{agent}} 智能体",activityAria:"Sandbox 操作记录",activity:"操作记录",tokenUsageAria:"Codex Token 用量",tokens:"{{label}}:{{value}} tokens",tokenLabels:{total:"总计",input:"输入",cachedInput:"缓存输入",output:"输出",reasoningOutput:"推理输出"}},lze={back:"返回智能体列表",subtitle:"{{agent}} 智能体详情",type:"智能体类型",status:"状态",createdBy:"创建人",snapshotStatus:"快照状态",toolType:"工具类型",createdAt:"创建时间",snapshotReason:"快照原因",expiresAt:"过期时间",snapshotId:"快照 ID",sessionId:"会话 ID",sourceSessionId:"来源 Session ID",delete:"删除智能体",waking:"唤醒中…",opening:"打开中…",wake:"唤醒智能体",open:"打开智能体",deleteTitle:"删除智能体?",deleteDescription:"将删除“{{name}}”及其保存的数据,此操作无法撤销。",deleting:"删除中…",confirmDelete:"确认删除",sleepingHint:"该智能体已休眠,进入时需要唤醒,可能需要一些时间。",wakingHint:"正在唤醒智能体,可能需要一些时间。",agentId:"智能体 ID"},cze={back:"返回智能体列表",createdBy:"创建人 {{creator}}",ariaLabel:"智能体工作区",main:"主界面",terminal:"终端",mainTitle:"{{agent}} 主界面",openingTerminal:"正在打开终端…",terminalTitle:"{{agent}} 终端"},uze={prompt:`使用 AgentKit Studio Plugin 端云接力当前会话、项目和任务。请直接执行,不要让我手动打开终端。 +- 保持礼貌、专业的语气。`},B9e={requestFailed:"请求失败 ({{status}}){{detail}}",a2aSpaces:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 AgentKit 智能体中心",loginRequired:"请先登录以访问 AgentKit 智能体中心"},vikingKnowledge:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 VikingDB 知识库",loginRequired:"请先登录以访问 VikingDB 知识库"},vikingMemory:{credentialsMissing:"服务端未配置云厂商 AK/SK,无法访问 VikingDB 记忆库",loginRequired:"请先登录以访问 VikingDB 记忆库"},mcpGateway:{missingHttpTool:"请返回“添加 MCP 工具”并添加至少一个 HTTP MCP 服务;MCP 稳定性治理不支持 stdio 服务。",missingUrl:"已添加的 HTTP MCP 工具缺少有效服务地址,请返回“添加 MCP 工具”补充后再发布。"},customModel:{fallbackName:"自定义模型",apiKeyLabel:"{{name}} 模型 API Key",fallbackApiKeyLabel:"{{name}} 的备用模型 {{model}} API Key"},deploymentEnv:{serverInjected:"由服务端注入",selectedApiKeyPlaceholder:"由所选 API Key 注入",mcpInjectedComment:"由已添加的 MCP 工具注入",restoredPlaceholder:"由 Studio 服务端安全恢复",generatedMcpPlaceholder:"由已添加的 HTTP MCP 工具自动生成",restoredHelp:"更新时由 Studio 服务端合并 MCP 地址与认证,不向浏览器返回旧密钥。",mergedMcpHelp:"Studio 服务端自动合并 MCP 地址与可选认证,不向浏览器返回旧密钥。",listSeparator:"、",requirementHint:"优化项“{{labels}}”依赖此配置。",requiredBy:"优化项“{{labels}}”依赖此配置,请填写 {{key}}。",required:"请填写 {{label}}({{key}})。",invalidJson:"JSON 格式不正确"},drafts:{unsupportedVersion:"本机草稿版本暂不受支持,请升级 Studio 后重试。",invalidFormat:"本机草稿数据格式无效。",readFailed:"无法读取本机草稿,浏览器中的草稿数据可能已损坏。",quotaExceeded:"浏览器存储空间不足,草稿未保存。请删除不需要的草稿或清理此站点的浏览器存储后重试。",writeRejected:"浏览器拒绝保存草稿,请检查站点存储权限后重试。"},skills:{searchFailed:"搜索失败 ({{status}})",downloadFailed:"下载技能失败 ({{status}})",agentKitRequestFailed:"AgentKit Skills 请求失败",missingManifest:"{{location}} 缺少 SKILL.md",invalidParentPath:"{{location}} 包含非法路径(..):{{path}}",invalidPath:"{{location}} 包含非法路径:{{path}}",localDescription:"本地 Skill",folderSource:"文件夹",noManifest:"{{location}} 中未发现 SKILL.md"},zip:{invalid:"无效的 zip:找不到 EOCD",tooManyFiles:"zip 文件数不能超过 {{count}} 个",tooLarge:"zip 解压后的内容过大"}},$9e={back:"返回开发会话",runtimeName:"Runtime 名称",runtimeNameExists:"Runtime 名称已存在,请更换后重试",checkingRuntimeName:"正在检查 Runtime 名称",verifiedSource:"已验证源码",deployableSource:"可部署源码",verifiedByCodex:"已通过 Codex 云端验证",entryPoint:"入口",files:"文件",artifact:"构建产物",validationReport:"验证报告",verifiedHint:"源码由服务端从已验证交付物物化,浏览器文件不能替换。",unverifiedHint:"源码已由服务端安全物化,部署前请确认 Runtime 配置。",env:{requiredPlaceholder:"请输入 {{key}}",optionalPlaceholder:"可选:{{key}}"}},F9e={name:"代码包",back:"返回创建方式",reading:"正在读取代码包",readingEllipsis:"正在读取代码包…",uploadFirst:"请先上传代码包",uploadAriaLabel:"代码包上传",upload:"上传代码包",reupload:"重新上传代码包",uploadPrompt:"请上传代码包",filesRecognized:"已识别 {{count}} 个文件,点击区域可重新上传",dropHint:"点击或拖拽上传,支持 .zip 格式,最大 50 MB;可使用 app.py,或由 agentkit.yaml 声明入口",viewFiles:"查看文件",chooseFile:"选择代码包",errors:{invalidFormat:"请选择 .zip 格式的代码包。",tooLarge:"代码包不能超过 50 MB。",invalidPath:"压缩包包含非法路径:{{name}}",empty:"压缩包中没有可部署的文件。",tooManyFiles:"代码包文件数不能超过 {{count}} 个。",duplicateFile:"代码包包含重复文件:{{path}}",manifestParse:"agentkit.yaml 无法解析:{{detail}}",manifestRoot:"agentkit.yaml 根节点必须是对象。",manifestCommon:"agentkit.yaml 的 common 必须是对象。",entryPointType:"agentkit.yaml 的 common.entry_point 必须是文件路径。",entryPointInvalid:"agentkit.yaml 的 common.entry_point 不是有效文件路径。",entryPointMissing:"代码包中不存在 agentkit.yaml 声明的启动入口:{{entryPoint}}",defaultEntryPointMissing:"代码包根目录必须包含 app.py,或在 agentkit.yaml 的 common.entry_point 中声明已有入口。"}},z9e={label:"Agent 执行画布",readOnlyLabel:"只读 Agent 执行画布",minimapLabel:"执行流程缩略图",controls:{ariaLabel:"执行流程控制",zoomIn:"放大",zoomOut:"缩小",fitView:"适应视图"},rootAgent:"主 Agent",unnamedStep:"未命名步骤",terminals:{input:"用户请求",output:"最终回复"},edges:{then:"然后",continueLoop:"继续循环",call:"调用"},patterns:{llm:{label:"智能体",description:"理解任务并直接完成一个具体工作"},sequential:{label:"分步协作",description:"内部步骤按照顺序依次执行"},parallel:{label:"同时处理",description:"内部步骤同时工作,完成后统一汇总"},loop:{label:"循环执行",description:"重复执行内部步骤,直到满足停止条件"},a2a:{label:"远程智能体",description:"调用已经存在的远程 Agent"}},actions:{insertHere:"在这里插入步骤",deleteNamed:"删除 {{name}}",deleteNode:"删除节点",addSubagent:"添加子 Agent",addParallelStep:"添加一个同时处理的步骤",addLoopStep:"添加循环步骤",addNextStep:"添加下一个步骤",addFirst:"添加到最前",addLast:"添加到最后"}},U9e={title:"智能模式",subtitle:"描述目标后,沙箱中的 Codex 会判断你的意图,完成构建、调试和临时云端验证。",model:{label:"模型",placeholder:"选择模型",retiring:"即将下线",currentConfiguration:"当前配置",loadError:"加载模型列表失败"},availability:{checking:"正在检查智能开发能力…",unavailable:"当前无法使用智能模式,请返回后重试。"},goal:{title:"从目标开始",continueTitle:"继续优化项目",hint:"只需说明 Agent 要解决的问题;如有影响结果的关键信息,会在开始前向你确认。",continueHint:"说明这次要调整的内容,完成后会保存为新版本。",basedOn:"基于",clearSelection:"取消选择",label:"目标描述",optimizationLabel:"优化目标",placeholder:"例如:创建一个能读取销售数据、生成周报并校验输出格式的 Agent",optimizationPlaceholder:"例如:增加数据来源标注,并在信息不足时先向用户确认"},actions:{preparing:"准备中…",build:"开始构建",optimize:"开始优化"},preparation:{accepted:"目标已收到,马上开始实现",preparing:"正在创建任务环境…",starting:"环境已就绪,正在启动 Codex…",next:"接下来会先梳理目标和实现方式,再编写、运行和验证 Agent。"}},V9e={title:"已保存项目",description:"选择已有版本继续优化,或查看、下载和部署源码。",refresh:"刷新项目列表",checkingStorage:"正在检查项目存储…",unavailableTitle:"暂时无法读取项目",storageCheckError:"无法确认项目存储状态,请稍后重试。",storageNotConfigured:"项目存储尚未配置。",loadingMigrated:"正在读取已迁移项目…",loadingSaved:"正在读取已保存项目…",loadingVersions:"正在读取项目版本…",unknownTime:"时间未知",sourceDownloaded:"源码已下载。",projectSummary_one:"{{count}} 个版本 · 更新于 {{time}}",projectSummary_other:"{{count}} 个版本 · 更新于 {{time}}",versionSummary_one:"{{time}} · {{count}} 个文件",versionSummary_other:"{{time}} · {{count}} 个文件",noVersionDescription:"暂无版本描述",latestVersion:"最新版本",verified:"已验证",pendingVerification:"待确认",viewSource:"查看源码",download:"下载",downloading:"下载中…",optimize:"去优化",optimizeUnavailable:"去优化,暂不支持",errors:{projects:"无法读取已保存项目。",source:"无法读取项目源码。",versions:"无法读取项目版本。",download:"下载源码失败。",prepareDeployment:"无法准备部署源码。",deleteVersion:"删除项目版本失败。",migrated:"无法读取已迁移项目",saved:"无法读取已保存项目"},empty:{migratedTitle:"还没有已迁移的项目",savedTitle:"还没有已保存的项目",migratedDescription:"完成首次迁移后,源码会自动保存在这里。",savedDescription:"完成首次构建后,源码会自动保存在这里。",noVersions:"这个项目还没有可用版本。"},compare:{selected:"已选择 {{count}}/2",selectedLabel:"已选择",select:"选择",view:"查看对比",start:"对比版本"},delete:{title:"删除这个版本?",onlyVersion:"“{{name}}”只有这一个版本,删除后项目也会移除。此操作无法撤销。",description:"该版本的源码和验证记录将永久删除,其他版本不受影响。",confirm:"删除版本"}},Q9e={title:"选择创建方式",subtitle:"以不同模式构建您的智能体",features:"特性",quick:{title:"快速模式",description:"动态派生子智能体自主完成任务",features:{dynamicSubagents:"动态派生子智能体",autonomousPlanning:"自主规划执行",collaboration:"多智能体协作",summary:"自动汇总结果",skills:"按需调用技能",trace:"任务过程可追踪"}},traditional:{title:"传统模式",description:"高度自定义您的智能体结构",features:{visualConfig:"可视化配置",migration:"存量智能体迁移",debugging:"实时调试",optimization:"可选性能优化",parameters:"精细参数控制"}}},G9e={placeholder:"输入系统提示词;键入 ## 加空格可创建二级标题…",toolbar:{undo:"撤销 {{shortcut}}",redo:"重做 {{shortcut}}",paragraph:"正文",quote:"引用",heading:"标题 {{level}}",selectBlockType:"选择文本类型",blockType:"文本类型",bold:"加粗",removeBold:"取消加粗",italic:"斜体",removeItalic:"取消斜体",bulletedList:"无序列表",numberedList:"有序列表"}},H9e={local:{duplicatesSkipped:"已跳过重复技能:{{names}}",invalidDrop:"请拖入包含 SKILL.md 的文件夹或一个 .zip 文件",readError:"读取失败:{{detail}}",dropLabel:"拖入文件夹或 ZIP,自动识别 Skill",hint:"每个技能需包含 SKILL.md。支持包含多个技能的目录。",reading:"正在读取文件…",fileCount:"本地 · {{count}} 个文件"},hub:{searchError:"搜索失败,请稍后重试。",searchPlaceholder:"搜索火山 Find Skill 技能广场,例如 数据分析、PDF…",search:"搜索",searching:"正在搜索…",noResults:"没有找到匹配的技能,换个关键词试试。",hint:"输入关键词搜索火山 Find Skill 技能广场,所选技能会在生成项目时下载到 skills/ 目录。"},space:{loadError:"加载失败",loadingSpaces:"正在加载 AgentKit Skills 中心…",noSpaces:"此账号下没有 AgentKit Skills 中心。",selectSpace:"选择 AgentKit Skills 中心",openConsole:"在火山引擎控制台打开",loadingSkills:"正在加载技能列表…",noSkills:"此 AgentKit Skills 中心暂无技能。"}},W9e={unnamedNode:"未命名节点",editInstruction:"点击编辑指令…",controls:{ariaLabel:"工作流画布控制",zoomIn:"放大",zoomOut:"缩小",fitView:"适应视图"},sections:{info:"工作流信息",execution:"执行方式",nodes:"节点",nodeConfig:"节点配置"},types:{sequential:{label:"顺序",description:"节点依次执行"},parallel:{label:"并行",description:"节点同时执行"},loop:{label:"循环",description:"节点循环执行"}},placeholders:{description:"这个工作流做什么…",agentDescription:"这个 Agent 做什么…",instruction:"你是一个…"},errors:{workflowNameUnique:"名称须与 Agent 节点名称保持唯一",agentNameUnique:"Agent 名称在当前工作流中必须唯一"},dragHint:"拖拽到画布,或点击下方按钮添加",agentNode:"Agent 节点",addNode:"添加节点",connectHint:"拖拽节点的圆点连线以表达执行顺序。",create:"创建工作流",deleteNode:"删除节点",nameHelp:"仅使用英文字母、数字和下划线,且名称保持唯一。",instruction:"指令 (instruction)",tools:"工具 (逗号分隔)",nodeId:"节点 ID",empty:{selectNode:"选择一个节点以编辑其配置",summary:"共 {{nodes}} 个节点 · {{edges}} 条连线"}},Y9e={ariaLabel:"快速模式创建",progress:"快速模式创建进度",steps:{agent:{label:"智能体",title:"基本信息",description:"设置智能体的名称、用途、行为方式与能力"},environment:{label:"执行环境",title:"配置执行环境",description:"选择默认环境或已构建的自定义环境"},deployment:{label:"部署偏好",title:"部署偏好",description:"定义 AgentKit 云上参数"}},model:{label:"模型",source:"模型来源",name:"模型名称",fallbacks:"Fallback 模型",fallbackPlaceholder:"备用模型名称",addFallback:"添加备用模型",addProviderFallback:"添加其他服务商",removeFallback:"移除",fallbackType:"备用模型类型",fallbackSameProvider:"同服务商",fallbackOtherProvider:"其他服务商",apiKeyEnv:"API Key 环境变量",invalidApiKeyEnv:"环境变量名只能包含字母、数字和下划线,且不能以数字开头。",fallbackHelp:"同服务商备用模型复用主模型连接;其他服务商会使用单独的 provider、API Base 和 API Key。",fallbackIgnored:"空值、重复值或与主模型相同的模型会被忽略。",provider:"服务商 Provider",invalidApiBase:"请输入合法的 http:// 或 https:// 链接。",volcengineArk:"火山方舟",custom:"自定义",gateway:"模型网关",comingSoon:"待上线",currentApiKey:"当前 API Key",currentConfiguration:"当前配置",loadingApiKeys:"正在加载 API Key",selectApiKey:"选择 API Key",searchApiKeys:"搜索 API Key 名称",noApiKeys:"暂无可用 API Key",loadingModels:"正在加载模型",selectModel:"选择模型",searchModels:"搜索名称、Model ID 或服务商",noModels:"没有可用的模型",apiKeyPlaceholder:"请输入模型 API Key",credentialsLoadError:"模型凭据加载失败",modelsLoadError:"模型列表加载失败"},identity:{unnamedPool:"未命名用户池",currentPool:"{{value}}(当前用户池)",userPool:"用户池",loading:"正在加载用户池",placeholder:"请选择用户池",search:"搜索用户池",empty:"当前账号下暂无 Identity 用户池",currentHint:"当前 Studio 的登录 JWT 将透传访问此 Runtime",mismatchHint:"所选用户池不是当前 Studio 使用的用户池,部署后无法从 Studio 调用此 Runtime",selectionHint:"当前 Studio 使用的用户池已在列表中标注"},agent:{namePlaceholder:"输入智能体名称",descriptionPlaceholder:"说明这个智能体可以做什么",prompt:"提示词",promptPlaceholder:"定义角色、目标和行为边界",skills:"技能",addSkill:"添加技能"},validation:{descriptionRequired:"请输入描述",promptRequired:"请输入提示词",modelRequired:"请选择模型",instanceIntegers:"最小实例数必须为大于等于 0 的整数,最大实例数必须为大于 0 的整数",instanceOrder:"最小实例数不能大于最大实例数",userPoolRequired:"请选择用于 Runtime 鉴权的用户池"},deployment:{runtimeName:"Runtime 名称",runtimeNameUpdateHint:"更新时保持现有 Runtime 名称不变",runtimeNameHint:"仅支持英文字母、数字、下划线和连字符",region:"发布区域",authentication:"鉴权方式",apiKeyDescription:"默认方式,使用 Runtime API Key 访问",userPoolDescription:"使用 Identity 用户池签发的 JWT",sessionStorage:"会话存储",inMemoryStorage:"In-memory 临时存储",backends:{sqlite:"SQLite 文件",mysql:"MySQL",postgresql:"PostgreSQL"},instances:"实例设置",minInstances:"最小实例数",maxInstances:"最大实例数",inMemoryHint:"为避免多实例间会话丢失,推荐将 Runtime 固定为 1~1",networkMode:"网络模式",network:{public:"公网",private:"私网",both:"公网与私网"},subnetIds:"子网 ID(可选,多个用逗号分隔)",sharedInternet:"VPC 内共享公网出口",sharedInternetHint:"允许私网 Runtime 通过共享出口访问公网",evaluationSets:"评测集",createEvaluationSets:"自动创建评测集",evaluationSetsHint:"部署成功后自动创建 Good Case 和 Bad Case 评测集",resources:"资源配置",complete:"部署已完成",preparing:"正在准备部署…"},environmentVariables:{title:"环境变量",add:"添加变量",nameAriaLabel:"环境变量名称",valueAriaLabel:"{{name}} 的值",deleteNamed:"删除 {{name}}"},actions:{updateAgain:"再次更新",deployAgain:"重新部署",updateAndPublish:"更新并发布"}},q9e={actions:{addSubagent:"添加子 Agent",clearRoot:"清空根 Agent",clearRootConfirmation:"清空根 Agent 的全部配置和子 Agent?此操作无法撤销。"},workspace:{progress:"Agent 创建进度",modes:{build:"架构",validate:"调试",optimize:"优化",environment:"环境",publish:"发布"},titles:{build:"个性化您的智能体架构",validate:"调试您的智能体",optimize:"为您的智能体选择优化项",environment:"配置云上环境",publish:"准备好部署您的智能体"}},sections:{type:{label:"Agent 类型",hint:"选择 Agent 类型"},basic:{label:"基本信息",hint:"名称、描述与系统提示词"},model:{label:"模型配置",hint:"模型与服务(可选)"},tools:{label:"工具",hint:"可调用的能力"},skills:{label:"技能",hint:"声明式技能"},knowledge:{label:"知识库",hint:"外部知识检索"},memory:{label:"记忆",hint:"短期与长期记忆"},subagents:{label:"子 Agent",hint:"嵌套协作"},review:{label:"完成",hint:"预览并创建"}},agentTypes:{ariaLabel:"Agent 类型",remoteChildOnly:"远程智能体只能作为子步骤使用",llm:{label:"智能体",fullLabel:"LLM 智能体",description:"大模型驱动,自主完成任务"},sequential:{label:"分步协作",fullLabel:"顺序型智能体",description:"子 Agent 按顺序依次执行"},parallel:{label:"同时处理",fullLabel:"并行型智能体",description:"子 Agent 并行执行后汇总"},loop:{label:"循环执行",fullLabel:"循环型智能体",description:"子 Agent 循环执行到满足条件"},a2a:{label:"远程智能体",fullLabel:"远程 Agent",description:"通过 A2A 协议调用远程 Agent"}},basic:{agentName:"Agent 名称",name:"名称",agentDescription:"智能体描述",descriptionPlaceholder:"简要描述这个 Agent 的用途,便于团队识别…",nameHelp:"遵循 Google ADK 命名规则,且在执行流程中保持唯一。",rootDescriptionHelp:"完整描述会保留;部署时会自动整理为符合 Runtime 规范的单行描述。",descriptionHelp:"描述会显示在 Agent 列表与选择器中。",orchestratorHelp:"这是一个协作容器,本身不生成回答。请在左侧画布中添加任务步骤,并通过拖拽调整它们的位置。",maxIterations:"最大轮次",maxIterationsHelp:"循环编排反复执行子 Agent,直到满足条件或达到该轮次上限。",agentCenter:"AgentKit 智能体中心",agentCenterHelp:"远程 Agent 的名称、描述和能力来自中心返回的 Agent Card。系统会根据每轮任务动态发现并挂载匹配的 Agent。",moreOptions:"更多选项",systemPrompt:"系统提示词",loadingMarkdown:"正在加载 Markdown 编辑器…",markdownHelp:"支持 Markdown 快捷输入,例如键入 ## 加空格创建二级标题。",unnamed:"未命名",unnamedAgent:"未命名智能体"},validation:{remoteRoot:"远程 Agent 只能作为子 Agent",missingRegistry:"请选择 AgentKit 智能体中心",name:{required:"名称为必填项",reserved:"user 是 Google ADK 保留名称,请使用其他名称",characters:"名称须以英文字母或下划线开头,且只能包含英文字母、数字和下划线"},duplicateName:"Agent 名称在当前结构中必须唯一",missingDescription:"描述为必填项",mcpAuthRequired:"MCP 地址变化后需要确认认证方式",mcpDuplicateName:"MCP 名称重复,请为每个服务使用唯一名称",mcpDuplicateUrl:"MCP 地址重复,请删除重复服务后再发布",missingSubagent:"缺少子 Agent",missingPrompt:"系统提示词为必填项",missingSubagentDetail:"{{type}}至少需要添加一个子 Agent 后才能调试或发布。",problem:"{{name}}:{{problem}}"},ai:{ariaLabel:"AI 自动填写 Agent 配置",minimumLength:"请至少输入 {{count}} 个字符。",replaceConfirmation:"生成的新配置会替换当前画布和属性,确定继续吗?",placeholder:"描述目标,使用 {{model}} 模型一键生成配置",generate:"智能生成",generating:"正在智能生成",success:"生成成功",regenerate:"重新生成",failed:"智能生成失败"},debug:{ariaLabel:"智能体调试工作区",unavailable:"当前后端暂不支持生成 Agent 调试运行。",baseline:"基准组",comparison:"对照组 {{count}}",selectModel:"请选择模型",enterDescription:"请输入描述",enterPrompt:"请输入系统提示词",duplicateConfiguration:"测试配置不能重复",starting:"启动中…",applyAndRestart:"应用并重启",restart:"重新启动",start:"启动环境",defaultModel:"默认模型",testConfiguration:"测试配置",deleteVariant:"删除 {{name}}",deleteVariantGroup:"删除对照组",creatingEnvironment:"正在创建测试环境…",configurationChanged:"配置已变更,请重新启动环境。",ready:"环境已就绪",readyHint:"发送消息以比较智能体回复。",startHint:"先完善配置,再启动环境。",viewTraceNamed:"查看 {{name}} 的调用链路",traceUnavailable:"发送消息后可查看调用链路",trace:"调用链路",useConfiguration:"使用此配置",finishConfiguration:"完成配置",finishAndStart:"完成并启动",currentAgentModel:"当前 Agent 模型",configurationHint:"修改仅用于本次对比,选择使用后才会进入部署流程。",messagePlaceholder:"向已启动的测试环境发送消息…",startOneFirst:"请先启动至少一个测试环境",addVariant:"添加对照组",traceTitle:"调用链路 · {{name}}",leaveTitle:"离开调试?",leaveDescription:"离开调试页面后,当前环境将被清理。您可以通过重新启动环境进行新的测试。",cleaning:"清理中…",confirmLeave:"确定离开",closeLeaveConfirmation:"关闭离开调试确认"},optimization:{ariaLabel:"智能体优化选项",scenario:"优化场景",components:"优化组件",bytePlusUnavailable:"BytePlus 账号暂不支持 Harness Sidecar 优化项。请保持优化项为空后继续部署,普通 BytePlus 智能体不受影响。",releaseScenario:"优化场景:{{profile}}",profiles:{default:{label:"自定义",description:"按需选择组件,不勾选时不启动 Sidecar。"},ops:{label:"运维场景",description:"适用于运维诊断、数据库、日志和监控 MCP。"}},groups:{quality:"提升回答质量",cost:"降低运行成本",stability:"增强运行稳定性"},options:{context_engine:{label:"上下文治理",description:"治理上下文组装、任务锚定和上下文预算。"},compressor:{label:"上下文与结果压缩",description:"压缩长上下文和大型工具结果,降低 Token 成本。"},verifier:{label:"回答校验与修复",description:"校验证据和回答,在失败时执行修复或告警。"},long_run_control:{label:"Goal 任务控制",description:"管理 Goal 任务的进度、续跑和结束条件。"},mcp_resilience:{label:"MCP 稳定性治理",description:"治理连接、超时、空结果、大返回和调用预算;默认包含 SQL 只读保护。"}}},model:{label:"模型",source:"模型来源",volcanoArk:"火山方舟",volcengineArk:"火山方舟",bytePlusModelArk:"BytePlus ModelArk",custom:"自定义",gateway:"模型网关",comingSoon:"待上线",configuration:"模型配置",name:"模型名称",fallbacks:"Fallback 模型",fallbackPlaceholder:"备用模型名称",addFallback:"添加备用模型",addProviderFallback:"添加其他服务商",removeFallback:"移除",fallbackType:"备用模型类型",fallbackSameProvider:"同服务商",fallbackOtherProvider:"其他服务商",apiKeyEnv:"API Key 环境变量",invalidApiKeyEnv:"环境变量名只能包含字母、数字和下划线,且不能以数字开头。",fallbackHelp:"同服务商备用模型复用主模型连接;其他服务商会使用单独的 provider、API Base 和 API Key。",fallbackIgnored:"空值、重复值或与主模型相同的模型会被忽略。",provider:"服务商 Provider",invalidApiBase:"请输入合法的 http:// 或 https:// 链接。",liteLlmProviders:"LiteLLM 支持列表",apiKeyPlaceholder:"请输入模型 API Key",available:"已开通",retiring:"即将下线",notActivated:"未开通",unavailable:"暂不可用",apiKeyLoadError:"加载 Ark API Key 失败",loadingApiKeys:"正在加载 API Key…",selectApiKey:"选择 API Key",currentApiKey:"当前 API Key",apiKeyList:"API Key 列表",searchApiKey:"搜索 API Key",searchApiKeyName:"搜索 API Key 名称",noApiKeys:"暂无可用 API Key",noMatchingApiKey:"没有匹配的 API Key",loading:"正在加载模型…",loaded:"已加载 {{count}} 个模型",loadError:"加载模型失败",selectModel:"选择模型",selectProviderModel:"选择服务商模型",providerModels:"服务商模型",search:"搜索模型",searchPlaceholder:"搜索名称、Model ID 或服务商",noMatches:"没有匹配的模型",empty:"暂无可用模型",unknownStatus:"未知状态",refresh:"刷新",refreshing:"刷新中…",activate:"开通",activateAction:"前往开通",currentConfiguration:"当前配置"},tools:{builtIn:"内置工具",builtInHelp:"勾选 VeADK 提供的内置能力,生成时会自动补全 import 与所需环境变量。",codeExecution:"代码执行配置",codeExecutionHelp:"指定 AgentKit 代码执行沙箱。",mcp:"MCP 工具"},catalog:{web_search:{label:"联网搜索",description:"火山引擎 Web Search,获取实时信息。"},parallel_web_search:{label:"并行联网搜索",description:"并行发起多条搜索查询,更快汇总。"},link_reader:{label:"网页读取",description:"抓取并阅读给定链接的正文内容。"},web_scraper:{label:"网页爬取",description:"结构化爬取网页(需要 Scraper 服务)。"},image_generate:{label:"图像生成",description:"文生图(Doubao Seedream)。"},image_edit:{label:"图像编辑",description:"图生图 / 编辑(Doubao SeedEdit)。"},video_generate:{label:"视频生成",description:"文/图生视频(Doubao Seedance),含任务查询。"},text_to_speech:{label:"语音合成 (TTS)",description:"把文本转成语音(火山语音)。"},run_code:{label:"代码执行",description:"在沙箱中执行代码。"},vesearch:{label:"VeSearch 智能搜索",description:"火山 VeSearch(需要 bot 端点)。"},links:{console:"控制台",documentation:"文档"},env:{modelAgentName:{comment:"模型名称"},embeddingModelName:{comment:"向量化模型(记忆/知识库需要)"},vikingMemoryProject:{comment:"VikingDB 记忆库项目"},vikingMemoryRegion:{comment:"VikingDB 记忆库地域"},vikingMemoryType:{comment:"记忆类型"},feishuAppId:{comment:"飞书应用 App ID"},feishuAppSecret:{comment:"飞书应用 App Secret",placeholder:"输入 App Secret"},registrySpaceId:{comment:"AgentKit 智能体中心",placeholder:"请选择智能体中心"},registryTopK:{comment:"召回 Agent 数量"},registryRegion:{comment:"AgentKit 智能体中心地域"},registryEndpoint:{comment:"AgentKit 智能体中心 OpenAPI 地址"},agentKitToolId:{comment:"代码执行沙箱 ID"},agentKitToolRegion:{comment:"AgentKit Tools 地域"},openVikingUrl:{comment:"OpenViking 服务地址"},openVikingMemoryUserId:{comment:"记忆归属 ID",help:"对应 viking://user/<此值>/peers/<请求用户>/memories 中的 user 段;用于隔离 Agent、租户或业务场景,默认 default。"},openVikingMemoryPolicy:{comment:"记忆策略",help:"记忆的抽取策略和隔离策略,不填写时使用官方默认策略。"},openVikingKnowledgeUserId:{comment:"知识库归属 ID",help:"未配置资源目录时用于默认路径 viking://user/<此值>/resources/<知识库索引>/,默认 default。"},openVikingTargetUri:{comment:"知识库资源目录",help:"留空时由 KnowledgeBase index 自动生成;填写后直接检索该 OpenViking 资源目录,优先级最高。"},tlsServiceName:{comment:"TLS topic_id,留空自动创建"}}},backends:{shortTerm:{local:{label:"本地内存",description:"进程内,不持久化。适合开发调试。"},sqlite:{label:"SQLite 文件",description:"持久化到本地 .db 文件。"},mysql:{label:"MySQL",description:"持久化到 MySQL。"},postgresql:{label:"PostgreSQL",description:"持久化到 PostgreSQL。"}},longTerm:{local:{label:"本地向量库",description:"进程内 llama-index 向量库。"},opensearch:{label:"OpenSearch",description:"OpenSearch 向量检索。"},redis:{label:"Redis",description:"Redis 向量检索。"},viking:{label:"VikingDB Memory",description:"VikingDB 记忆库(支持用户画像)。"},openviking:{label:"OpenViking Memory",description:"OpenViking 长期记忆,按用户维度保存和检索偏好、事件与实体。"},mem0:{label:"Mem0",description:"Mem0 托管记忆服务。"}},knowledge:{viking:{label:"VikingDB Knowledge",description:"VikingDB 知识库。"},opensearch:{label:"OpenSearch",description:"OpenSearch 向量检索。"},context_search:{label:"Context Search",description:"火山 Context Search 引擎(无需向量化)。"},openviking:{label:"OpenViking Knowledge",description:"OpenViking 资源目录知识库,无需向量化模型配置。"}}},exporters:{apmplus:{label:"APMPlus",description:"火山 APMPlus 应用性能监控。"},cozeloop:{label:"CozeLoop",description:"扣子 CozeLoop 链路观测。"},tls:{label:"TLS (日志服务)",description:"火山 TLS 日志服务导出。"}},knowledge:{title:"知识库",description:"启用外部知识检索(RAG),让 Agent 基于你的资料作答。",backend:"知识库后端",vikingDatabase:"VikingDB 知识库"},memory:{shortTerm:"短期记忆",shortTermDescription:"存储单会话上下文",shortTermBackend:"短期记忆后端",longTerm:"长期记忆",longTermDescription:"存储跨会话上下文,通常使用向量化检索",longTermBackend:"长期记忆后端",vikingDatabase:"VikingDB 记忆库",autoSave:"自动保存会话到长期记忆",autoSaveDescription:"会话结束时自动把内容写入长期记忆,无需手动调用。"},mcp:{removeTool:"删除 MCP 工具",namePlaceholder:"名称(可选)",urlPlaceholder:"MCP 服务地址",pathWarning:"此地址未以 /mcp 结尾,请确认它是完整的 MCP 服务地址。",configuredPlaceholder:"已安全保存认证信息",tokenPlaceholder:"Bearer Token(可选)",changedUrlWarning:"MCP 地址已变化,请确认如何处理已保存的认证信息。",reuseCredential:"继续使用",replaceCredential:"替换认证",noAuth:"不使用认证",reuseHint:"发布时将继续使用已保存的认证信息。",changeToReplace:"改为替换",credentialConfigured:"认证信息已由 Studio 安全保存。",removeCredential:"移除认证",commandPlaceholder:"命令,例如 npx",argsPlaceholder:"参数,以空格分隔",stdioHint:"stdio 工具在部署环境中启动,请确保命令和依赖可用。",addTool:"添加 MCP 工具"},resources:{unnamedAgentCenter:"未命名智能体中心",unnamedKnowledgeBase:"未命名知识库",unnamedMemory:"未命名记忆库",loadError:"加载失败",loadingAgentCenters:"正在加载智能体中心…",agentCentersLoaded:"已加载 {{count}} 个智能体中心",noAgentCenters:"暂无智能体中心",noMatchingAgentCenters:"没有匹配的智能体中心",searchAgentKitCenter:"搜索 AgentKit 智能体中心",searchNameOrId:"搜索名称或 ID",selectAgentCenter:"选择智能体中心",selectAgentKitCenter:"选择 AgentKit 智能体中心",selectedAgentCenter:"已选智能体中心",agentKitCenter:"AgentKit 智能体中心",refreshAgentCenters:"刷新智能体中心",knowledgeBaseList:"知识库列表",knowledgeBasePlaceholder:"选择知识库",loadingKnowledgeBases:"正在加载知识库…",knowledgeBasesLoaded:"已加载 {{count}} 个知识库",noKnowledgeBases:"暂无知识库",noMatchingKnowledgeBases:"没有匹配的知识库",searchKnowledgeBase:"搜索知识库",selectKnowledgeBase:"选择知识库",refreshKnowledgeBases:"刷新知识库",memoryList:"记忆库列表",memoryPlaceholder:"选择记忆库",loadingMemories:"正在加载记忆库…",memoriesLoaded:"已加载 {{count}} 个记忆库",noMemories:"暂无记忆库",noMatchingMemories:"没有匹配的记忆库",searchMemory:"搜索记忆库",selectMemory:"选择记忆库",refreshMemories:"刷新记忆库"},env:{noAdditionalParameters:"此后端无需额外运行参数。",invalidJson:"请输入有效的 JSON。",helpAriaLabel:"{{label}}说明:{{help}}",openOpenViking:"打开 OpenViking {{label}}",valuePlaceholder:"请输入参数值",openVikingIndex:"OpenViking 资源索引",openVikingIndexHelp:"默认值:留空;生成项目时使用 Agent 名自动生成,例如 my_agent_kb。未配置 DATABASE_OPENVIKING_TARGET_URI 时,默认 URI 拼接为 viking://user/{知识库归属 ID,未填则 default}/resources/{资源索引}/;如果填写了 DATABASE_OPENVIKING_TARGET_URI,则直接使用该完整 URI。",openVikingIndexAriaLabel:"OpenViking 资源索引说明:{{help}}"},deployment:{vpcRequired:"使用 VPC 网络时,请填写 VPC ID。",apiKeyRequired:"请先选择模型使用的 API Key。",invalidEnvName:"环境变量名称不合法:{{key}}",requiredEnv:"{{name}}:请填写必填环境变量",generatingConfiguration:"正在生成部署配置",runtimeNameExists:"Runtime 名称已存在,请修改后重试。",preparing:"准备部署",complete:"部署完成",failed:"部署失败",updateAndPublish:"更新并发布",stages:{build:"构建镜像",deploy:"部署 Runtime",publish:"发布服务",running:"部署中"}},publish:{generating:"正在生成发布配置",validating:"校验 Agent 结构并准备部署快照…"}},j9e={presets:{support:{name:"客服助手",description:"7×24 在线答疑,结合知识库与历史对话,稳定、礼貌地解决用户问题。",instruction:"你是一名专业、耐心的客服助手。请始终保持礼貌、友好的语气,优先依据知识库中的资料回答用户问题;当资料不足以确定答案时,如实告知用户并主动引导其提供更多信息,切勿编造。回答尽量简洁、分点清晰,必要时给出操作步骤。",subagents:{}},analyst:{name:"数据分析师",description:"运行代码完成统计与可视化,开启链路追踪,分析过程可观测、可复现。",instruction:"你是一名严谨的数据分析师。面对数据问题时,先厘清分析目标与口径,再通过编写并运行代码完成清洗、统计与可视化。每一步都要说明你的假设与方法,给出结论时附上关键数据支撑,并指出潜在的偏差与局限。",subagents:{}},translator:{name:"翻译助手",description:"中英互译,忠实、通顺、地道,保留原文语气与专业术语。",instruction:"你是一名专业的翻译助手,精通中英互译。请在忠实于原文含义的前提下,使译文自然、地道、符合目标语言表达习惯;保留专有名词与专业术语的准确性,并尽量贴合原文的语气与风格。仅输出译文,除非用户额外要求解释。",subagents:{}},coder:{name:"代码助手",description:"编写、调试与重构代码,可运行代码验证结果,给出清晰可维护的实现。",instruction:"你是一名资深软件工程师。请根据需求编写正确、清晰、可维护的代码,遵循目标语言的惯用风格与最佳实践。在不确定时通过运行代码验证你的实现,给出关键的边界条件与测试思路,并对复杂逻辑附上简要注释。",subagents:{}},researcher:{name:"研究员",description:"联网检索一手资料,结合知识库与长期记忆,输出有据可查的研究结论。",instruction:"你是一名严谨的研究员。面对研究问题时,先拆解关键子问题,再通过联网检索收集多个一手、可信的来源,交叉验证后再下结论。结论需注明出处与不确定性,区分事实与推断,避免以偏概全。",subagents:{}},"research-team":{name:"多智能体研究团队",description:"由检索员、分析员、撰写员协作的研究编排,分工完成端到端调研报告。",instruction:"你是一支研究团队的总协调者。负责拆解用户的研究任务,将检索、分析、撰写分别委派给对应的子 Agent,汇总各子 Agent 的产出,把控整体质量,最终输出结构清晰、有据可查的研究报告。",subagents:{0:{name:"检索员",description:"联网搜集与课题相关的一手资料与数据。",instruction:"你是研究团队中的检索员。根据课题联网检索多个可信来源,整理出关键事实、数据与原文出处,交付给分析员,不做主观结论。"},1:{name:"分析员",description:"对检索到的材料做交叉验证与归纳分析。",instruction:"你是研究团队中的分析员。对检索员提供的材料做交叉验证、归纳与对比,提炼洞见、识别矛盾与不确定性,形成结构化的分析要点。"},2:{name:"撰写员",description:"将分析结论组织为结构清晰、引用规范的报告。",instruction:"你是研究团队中的撰写员。把分析员的要点组织成结构清晰、语言通顺、引用规范的研究报告,确保每个结论都能追溯到来源。"}}}},tags:{tools:"工具",memory:"记忆",knowledgeBase:"知识库",tracing:"观测",subagents:"子 Agent {{count}}"},gallery:{title:"从模板新建",subtitle:"选择一个预制 Agent 模板,按需微调后即可创建。"},detail:{back:"返回模板列表",name:"名称",systemPrompt:"系统提示词",model:"模型",tools:"工具",memory:"记忆",knowledgeBase:"知识库",tracing:"观测追踪",subagents:"子 Agent({{count}})",create:"使用此模板创建",shortTermMemory:"短期",longTermMemory:"长期"}},srr=Object.freeze(Object.defineProperty({__proto__:null,buildCanvas:z9e,codePackage:F9e,common:M9e,default:{common:M9e,yaml:I9e,validation:P9e,defaults:N9e,helpers:B9e,intelligentDeployment:$9e,codePackage:F9e,buildCanvas:z9e,intelligent:U9e,projectLibrary:V9e,modePicker:Q9e,promptEditor:G9e,skills:H9e,workflow:W9e,workbench:Y9e,traditional:q9e,template:j9e},defaults:N9e,helpers:B9e,intelligent:U9e,intelligentDeployment:$9e,modePicker:Q9e,projectLibrary:V9e,promptEditor:G9e,skills:H9e,template:j9e,traditional:q9e,validation:P9e,workbench:Y9e,workflow:W9e,yaml:I9e},Symbol.toStringTag,{value:"Module"})),X9e={backToList:"返回定时任务列表",cancel:"取消",cancelQueue:"取消排队",cancelQueueFirst:"请先取消排队",cancelling:"取消中…",closeDrawer:"关闭抽屉",collapse:"收起",connectingRuntime:"正在连接 Runtime…",createScheduledTask:"创建定时任务",createTask:"创建任务",delete:"删除",deleteTask:"删除任务",edit:"编辑",enable:"启用",expand:"展开",pause:"暂停",refresh:"刷新",refreshHistory:"刷新执行历史",rerun:"重新执行",retry:"重试",runNow:"立即执行",saveChanges:"保存更改",saving:"保存中…",stop:"终止执行",stopRun:"终止本次执行",stopRunFirst:"请先终止当前执行",stopping:"终止中…",viewDetails:"查看详情"},K9e={cancelDescription:"本次 Session 将被取消,后续计划不会暂停。",cancelTitle:"终止本次执行?",deleteDescription:"“{{name}}”及其全部执行历史将被永久删除。",deleteTitle:"删除定时任务?"},Z9e={configuration:"任务配置",nextRun:"下次执行",pageLabel:"定时任务详情",region:"地域",runtime:"运行时",status:"任务状态"},J9e={createTitle:"创建定时任务",description:"每次触发都会为 Runtime Agent 创建独立 Session。",editTitle:"编辑定时任务"},eFe={minutesSeconds:"{{minutes}} 分 {{seconds}} 秒",seconds:"{{count}} 秒"},tFe={cronExpression:"Cron 表达式",cronHelp:"依次填写分钟、小时、日期、月份、星期。",dailyTime:"每天执行时间",enableAfterCreate:"创建后启用",enableHelp:"启用后会从下一个计划时间开始执行。",name:"任务名称",namePlaceholder:"例如:每日生成运营摘要",noRuntime:"暂无可用 Runtime",prompt:"执行文本",promptPlaceholder:"输入每次执行时发送给 Agent 的固定文本",runAt:"执行时间",runtimeAgent:"运行时智能体",runtimeHelp:"任务始终跟随该 Runtime 当前生效版本。",runtimePlaceholder:"选择 Runtime Agent",schedule:"执行计划",scheduleType:"执行计划类型",timezone:"时区",weekday:"星期"},rFe={all:"全部"},nFe={description:"每次运行均使用独立 Session,结果与错误会永久保留。",duration:"耗时 {{duration}}",emptyDescription:"任务触发或立即执行后,记录会显示在这里。",emptyTitle:"暂无执行记录",errorDetails:"错误详情",finalAnswer:"最终回答",loadFailed:"无法加载执行历史",loadFailedDescription:"请检查 Studio 服务后重试。",session:"会话",title:"执行历史"},iFe={cancelRequested:"已提交终止请求。",created:"任务已创建。",deleted:"任务及其执行历史已删除。",enabled:"任务已启用。",paused:"任务已暂停。",queued:"任务已排队,将在一分钟内开始执行。",requeued:"任务已重新排队,将在一分钟内开始执行。",updated:"任务已更新。"},aFe={filterLabel:"定时任务状态筛选",listLabel:"定时任务列表",loadFailed:"无法加载定时任务",loadFailedDescription:"请检查 Studio 服务后重试。",title:"定时任务"},sFe={cron:"Cron {{cron}}{{zone}}",daily:"每天 {{time}}{{zone}}",once:"一次 · {{date}}{{zone}}",weekly:"{{weekday}} {{time}}{{zone}}"},oFe={daily:"每天",once:"一次性",weekly:"每周"},lFe={cancelled:"已取消",enabled:"已启用",failed:"失败",notRun:"尚未执行",paused:"已暂停",pending:"准备中",queued:"已排队",retrying:"自动重试中",running:"执行中",skipped:"已跳过",success:"成功"},cFe={cronFields:"Cron 表达式需要包含 5 个字段,例如 0 9 * * *。",nameRequired:"请输入任务名称。",promptRequired:"请输入每次执行时发送给 Agent 的文本。",runtimeAppMissing:"Runtime Agent 未返回可调用的 appName,请确认 Runtime 已就绪且版本兼容。",runtimeRequired:"请选择可用的 Runtime Agent。",timeRequired:"请选择执行时间。"},uFe={friday:"周五",monday:"周一",saturday:"周六",sunday:"周日",thursday:"周四",tuesday:"周二",wednesday:"周三"},orr=Object.freeze(Object.defineProperty({__proto__:null,actions:X9e,confirm:K9e,default:{actions:X9e,confirm:K9e,detail:Z9e,drawer:J9e,duration:eFe,fields:tFe,filters:rFe,history:nFe,notices:iFe,page:aFe,schedule:sFe,scheduleTypes:oFe,status:lFe,validation:cFe,weekdays:uFe},detail:Z9e,drawer:J9e,duration:eFe,fields:tFe,filters:rFe,history:nFe,notices:iFe,page:aFe,schedule:sFe,scheduleTypes:oFe,status:lFe,validation:cFe,weekdays:uFe},Symbol.toStringTag,{value:"Module"})),hFe="问题反馈",dFe="问题描述",fFe="常见问题",pFe="取消",gFe="完成",mFe="提交反馈",vFe="正在上报…",yFe={title:"上报成功,感谢您的反馈",description:"AgentKit 团队会尽快查看您提交的问题。"},bFe={close:"关闭问题反馈",intro:"请选择遇到的问题,也可以补充具体表现。",privacy:"您的对话数据将会上报到 AgentKit 团队,请注意隐私保护。",descriptionPlaceholder:"请描述问题发生时的表现(选填)",issues:{slow:"执行速度慢",crash:"运行崩溃",incorrect:"结果不准确",tool_error:"工具调用失败",other:"其他问题"}},xFe={description:"告诉我们您在使用 AgentKit Studio 时遇到的问题。",module:"所属模块",modules:{conversation:"对话",agents:"智能体",applications:"自动化",search:"搜索",other:"其他"},commonIssuesMultiple:"常见问题(可多选)",issueTypes:"问题类型",issues:{page_slow:"页面加载慢",feature_unavailable:"功能无法使用",display_error:"页面显示异常",no_response:"操作无响应",other:"其他问题"},descriptionPlaceholder:"请描述问题发生时的页面、操作和表现",quickAdd:"快捷补充",suggestionsLabel:"问题描述推荐",suggestions:{noResponse:"点击后没有反应",loading:"页面一直处于加载状态",incomplete:"部分内容显示不完整",error:"操作后出现错误提示"},privacy:"您的数据将会上报到 AgentKit 团队,请注意隐私保护。"},lrr=Object.freeze(Object.defineProperty({__proto__:null,cancel:pFe,commonIssues:fFe,default:{title:hFe,descriptionLabel:dFe,commonIssues:fFe,cancel:pFe,done:gFe,submit:mFe,submitting:vFe,success:yFe,dialog:bFe,page:xFe},descriptionLabel:dFe,dialog:bFe,done:gFe,page:xFe,submit:mFe,submitting:vFe,success:yFe,title:hFe},Symbol.toStringTag,{value:"Module"})),wFe={back:"返回",close:"关闭"},AFe={title:"优化迁移项目",closeAria:"关闭优化窗口"},TFe={title:"已迁移项目",description:"管理迁移后的源码版本,也可以选择任一版本继续优化。",libraryTitle:"项目与版本",libraryDescription:"查看、下载、部署或对比源码版本,也可以基于任一版本继续优化。",emptyTitle:"还没有已迁移的项目",emptyDescription:"迁移完成后,源码会自动保存在这里。"},SFe={langchain:"LangChain",langgraph:"LangGraph",adk:"Google ADK",strands:"Strands",agentcore:"AgentCore",dify:"Dify",any:"Any(通用迁移)"},CFe={awaitingUpload:"待上传",analyzing:"分析中",needsInput:"待补充",analysisReady:"待确认",migrating:"迁移中",validating:"校验中",packaging:"打包中",succeeded:"已完成",succeededWithWarnings:"已完成,有提示",partial:"部分完成",failed:"失败",cancelled:"已终止",expired:"已过期"},OFe={partialReady:"迁移产物已生成,但交付不完整,请查看迁移提示。",readyWithWarnings:"迁移产物已生成,请查看迁移提示。",ready:"迁移产物已生成。"},kFe={passed:"产物校验通过",failed:"产物校验未通过",degraded:"产物校验未完成"},EFe={session:"创建迁移环境",upload:"上传项目",analysis:"分析项目"},_Fe={agentNameRequired:"请输入 Agent 名称",agentNameInvalid:"Agent 名称必须为 1-63 位,只能包含小写字母、数字和连字符,且必须以字母或数字开头和结尾"},RFe={seconds:"{{seconds}} 秒",minutesSeconds:"{{minutes}} 分 {{seconds}} 秒"},DFe={savedUnaffected:"已保存项目不受影响",savingUnaffected:"源码正在保存,完成后不受环境期限影响",activeDetail:"到期后任务记录和临时产物将无法访问",oneHour:"临时迁移环境保留 1 小时",ended:"临时迁移环境已结束",savedAvailable:"已保存项目仍可查看、下载、部署或优化",unavailable:"任务记录和临时产物已无法访问",countdown:"临时迁移环境将在 {{minutes}} 分 {{seconds}} 秒后结束",expiredSavedMessage:"临时迁移环境已结束,已保存项目不受影响。",expiredMessage:"临时迁移环境已结束,任务记录和临时产物无法继续访问。"},LFe={recommended:"建议迁移方式",scope:"迁移范围",excluded:"不在本次范围",viewEvidence:"查看分析证据",viewAssumptions:"查看关键假设",viewSourceEvidence:"查看源码证据"},MFe={ariaLabel:"Codex 执行动态",title:"Codex 执行动态",startingAnalysis:"Codex 正在开始分析…",startingMigration:"Codex 正在开始迁移…",loadError:"暂时无法读取 Codex 执行动态,不影响当前任务。"},IFe={title:"迁移产物",fileTooLarge:"该文件超过 2 MiB,请下载完整产物后查看。",unsupportedPreview:"该文件不支持在线预览,请下载完整产物后查看。",filesAria:"迁移产物文件",searchAria:"搜索产物文件",searchPlaceholder:"搜索文件",limit:"仅展示前 {{count}} 项,请搜索具体文件。",noSelection:"未选择文件",noPreview:"暂无可预览文件。",loadingFile:"正在读取产物文件…",startupFile:"启动文件",fileCountLabel:"文件数",saved:"源码已保存,可继续查看、下载、部署或优化。",saving:"产物已生成,正在保存源码版本。",deployReady:"产物可预览、下载和部署,正在等待源码保存状态。",deployUnavailable:"产物可预览和下载,但当前交付状态不支持部署。",viewProjects:"查看已迁移项目",downloading:"下载中…",downloadZip:"下载 ZIP",deployTitle:"部署迁移产物",deployUnavailableTitle:"当前交付状态不支持部署",deployRuntime:"部署到 Runtime",fileCount:"{{count}} 个文件",startup:"启动文件 {{module}}",loading:"正在读取迁移产物…"},PFe={retiring:"即将下线",currentDefault:"当前默认模型",loadError:"加载模型列表失败",label:"模型",placeholder:"选择模型"},NFe={zipOnly:"请选择 .zip 格式的本地项目文件。",invalidName:"ZIP 文件名无效,请重命名后重新选择。",tooLarge:"项目 ZIP 不能超过 {{size}}。",empty:"项目 ZIP 不能为空。",removeAria:"移除项目 ZIP",reselectPrompt:"重新选择项目 ZIP",selectPrompt:"选择或拖入本地项目 ZIP",reselect:"重新选择",selectZip:"选择 ZIP",continue:"继续上传",start:"开始迁移",inputAria:"选择本地项目 ZIP",retention:"临时迁移环境从创建完成起保留 1 小时;保存成功的源码版本不受影响。"},BFe={requiredPlaceholder:"请输入 {{key}}",optionalPlaceholder:"可选:{{key}}",notReady:"迁移产物尚未准备完成。",back:"返回迁移结果"},$Fe={backToAddAgent:"返回添加 Agent",title:"从存量迁移",newMigration:"新建迁移",recent:"最近迁移",sessionsAria:"迁移会话",loadingSessions:"正在读取迁移会话…",noSessions:"暂无迁移会话",heading:"迁移存量 Agent 项目",intro:"上传本地项目 ZIP,Codex 将先进行只读分析,再由你确认迁移方式。"},FFe={stop:"终止迁移",stopping:"正在终止…",reload:"重新读取",refreshStatus:"刷新状态"},zFe={unavailable:"迁移能力暂不可用",defaultReason:"Dev Sandbox 暂不可用,请联系管理员检查配置。"},UFe={requestZip:"请提供本地项目 ZIP。上传后我会识别框架、入口和迁移边界,并在执行实际迁移前请你确认迁移方式。",zipHint:"仅支持本地 ZIP,最大 {{size}};迁移环境从创建起保留 1 小时。",creatingSandbox:"正在创建 Dev Sandbox",initializing:"正在初始化迁移工作目录,并检查 AgentKit CLI、Codex 和迁移能力。环境就绪后将自动上传项目。",elapsed:"已等待 {{duration}}",uploadThenAnalyze:"ZIP 上传完成后将自动开始只读分析。",analyzing:"Codex 正在识别框架、入口和迁移边界,不会执行实际迁移。",migrationLocked:"迁移执行中不能修改附件或迁移方式。你可以等待当前任务结束,或主动终止。",analysisPaused:"只读分析已暂停。请仅回答下面列出的问题,提交后会在同一迁移环境中重新分析,不会开始实际迁移。",analysisComplete:"只读分析已完成。请检查建议,并确认最终迁移方式。",awaitingUpload:"迁移环境已创建,请重新选择本地 ZIP 继续上传。",expiredTitle:"迁移环境已过期",expiredDescription:"迁移内容和产物已无法预览、下载或部署。如已完成 Runtime 部署,可返回智能体页面继续使用。",unsupportedTitle:"当前 ZIP 暂时无法迁移",unsupportedHint:"请按提示整理项目后,新建迁移并重新上传。",failedTitle:"迁移未完成",cancelled:"当前迁移已终止。你可以新建迁移并重新上传项目。"},VFe={ariaLabel:"补充项目分析信息",title:"补充分析所需信息",description:"附件保持锁定,提交后仅继续只读分析",submitting:"正在继续分析…",submit:"提交并继续分析"},QFe={ariaLabel:"确认迁移方式",title:"确认迁移方式",description:"确认后才会执行实际迁移",framework:"迁移方式",frameworkPlaceholder:"选择迁移方式",agentName:"Agent 名称",entry:"项目入口",entryPlaceholder:"选择项目入口",entryExample:"例如 agent.py:agent",consent:"点击“确认并开始迁移”即确认上述迁移范围、排除项和关键假设。",starting:"正在启动迁移…",start:"确认并开始迁移"},GFe={closeAria:"关闭错误提示",loadFailed:"无法读取迁移数据,请重试。",refreshFailed:"无法刷新迁移状态,请重试。"},HFe={title:"终止当前迁移?",description:"终止后,当前分析或迁移进程将停止,已执行的步骤不会继续。"},crr=Object.freeze(Object.defineProperty({__proto__:null,actions:FFe,activity:MFe,analysis:LFe,artifact:IFe,capability:zFe,common:wFe,confirmation:QFe,conversation:UFe,default:{common:wFe,optimization:AFe,projects:TFe,framework:SFe,state:CFe,task:OFe,verification:kFe,transfer:EFe,validation:_Fe,duration:RFe,expiry:DFe,analysis:LFe,activity:MFe,artifact:IFe,model:PFe,upload:NFe,deployment:BFe,workspace:$Fe,actions:FFe,capability:zFe,conversation:UFe,questions:VFe,confirmation:QFe,errors:GFe,stopDialog:HFe},deployment:BFe,duration:RFe,errors:GFe,expiry:DFe,framework:SFe,model:PFe,optimization:AFe,projects:TFe,questions:VFe,state:CFe,stopDialog:HFe,task:OFe,transfer:EFe,upload:NFe,validation:_Fe,verification:kFe,workspace:$Fe},Symbol.toStringTag,{value:"Module"})),WFe={loading:"加载中…",searchLabel:"搜索{{label}}",searchPlaceholder:"搜索{{label}}",retry:"重试",noMatches:"没有匹配项",noOptions:"暂无可选项",selection:"{{label}}:{{value}}"},YFe={badge:"焕然一新",view:"查看新特性",title:"本次更新",defaultNotes:{multiRegion:"多地域智能体:并行加载北京与上海 Runtime,列表下滑即可继续加载。",switchAgent:"会话内切换:在输入框旁选择智能体,并直接开启一段新会话。",visualCanvas:"可视化执行画布:通过横向画布查看多智能体结构,并支持全屏浏览。"}},qFe={label:"新会话模式",agent:"智能体",skill:"技能定制",video:"视频创作"},jFe={select:"选择新会话模式",agent:{label:"Agent",description:"与当前选择的 Agent 对话"},builtin:{label:"内置智能体",description:"使用平台提供的智能体"},codex:{label:"Codex 智能体",description:"在沙箱中执行任务"},deepseekHarness:{label:"DeepSeek Harness",description:"打开 DeepSeek Harness 工作区"},arkClaw:"ArkClaw",hermes:"Hermes 智能体",checking:"正在检查配置",notConfigured:"管理员未配置",unavailable:"暂不可用"},XFe={select:"选择智能体",typesLabel:"智能体类型",listLabel:"{{type}}列表",types:{agent:"智能体",general:"通用智能体",codex:"Codex 智能体",deepseekHarness:"DeepSeek Harness",openclaw:"OpenClaw 智能体",hermes:"Hermes 智能体"},loading:"正在加载智能体",reload:"重新加载",empty:"暂无{{type}}",emptyLocal:"暂无本地智能体",emptyGeneral:"暂无通用智能体",createHint:"请前往智能体页创建",localHint:"请检查当前 Studio 启动目录",waking:"正在唤醒",opening:"正在打开",connecting:"正在连接",loadingMore:"加载中",loadMore:"加载更多",runtimeTimeout:"加载智能体超时(15 秒),请检查网络或 Runtime 服务后重试",loadGeneral:"加载通用智能体",loadType:"加载 {{type}}",connectGeneral:"连接通用智能体",openLocal:"打开本地智能体",openType:"打开 {{type}}",wakingHint:"正在唤醒智能体,可能需要一些时间。"},KFe={spaceAria:"技能空间",configuration:"技能定制配置",actions:{create:"技能生成",optimize:"技能优化"},selectAction:"选择技能定制方式",actionList:"技能定制方式",style:"风格",selectStyle:"选择风格",model:"模型",selectModel:"选择模型",styles:{concise:"简洁实用",strict:"严谨稳健",tutorial:"教程友好",automation:"自动化优先"},modelLoadFailed:"模型配置加载失败",spaceLoadFailed:"Skill Space 加载失败",skillLoadFailed:"Skill 加载失败",unnamedSpace:"未命名 Skill Space",space:"技能空间",select:"选择 Skill",selectAria:"选择 Skill:{{skill}}",loadingSpaces:"正在加载 Skill Space",reload:"重新加载",emptySpaces:"暂无 Skill Space",skillList:"{{space}} Skill 列表",loadingSkills:"正在加载 Skill",emptySkills:"暂无 Skill"},ZFe={modes:{auto:"自动识别",text_to_video:"文生视频",reference_to_video:"参考素材生视频",video_editing:"视频编辑",video_extension:"视频续写",first_last_frame:"首尾帧生成"},taskNames:{auto:"视频生成",text_to_video:"文生视频",reference_to_video:"参考素材生视频",video_editing:"视频编辑",video_extension:"视频续写",first_last_frame:"首尾帧生成"},controls:{label:"视频创作配置",aspectRatio:"比例",selectAspectRatio:"选择比例",resolution:"清晰度",selectResolution:"选择清晰度",duration:"时长",durationShort:"{{count}} 秒",durationAria:"视频时长:{{count}} 秒",lastFrame:"尾帧",lastFrameHelper:"添加视频结束画面",assistImage:"辅助图片",referenceImage:"参考图片",assistImageHelper:"用于补充画面参考",imageHelper:"支持常见图片格式",referenceVideo:"参考视频",videoHelper:"支持常见视频格式",optional:"可选",replace:"更换",add:"添加",upload:"上传{{label}}",replaceFile:"更换{{label}}:{{name}}",removeFile:"移除{{label}} {{name}}",storageUnavailable:"管理员未配置持久化存储",loadingEnhancer:"正在加载增强模型",enhancerHint:"使用 {{model}} 模型进行意图识别和提示词增强",enhancerUnavailable:"增强模型不可用"},task:{title:"视频生成任务",closeAria:"关闭视频生成任务弹窗",progressAria:"视频生成进度",optimizedPrompt:"优化后的提示词",processingAria:"{{task}}处理进度",waitingAria:"{{status}},已等待{{elapsed}}",elapsed:"已等待 {{elapsed}}",previewAria:"生成结果预览",close:"关闭",download:"下载视频",retryOptimization:"重试提示词优化",retryGeneration:"重试视频生成",providerQueued:"等待模型调度",providerRunning:"模型生成中",providerSubmitting:"正在提交任务",queuedHint:"任务已提交,模型开始处理后状态会自动更新",runningHint:"这可能持续数分钟,完成后将在这里显示视频预览",backgroundHint:"可以关闭弹窗,任务会继续在后台运行",successHint:"视频已生成,可预览或下载",activationHint:"请先在模型控制台开通服务,再重试生成",retryHint:"修正问题后可重试当前步骤",steps:{optimizationFailed:"提示词优化失败",optimizationDone:"提示词优化完成",optimizationActive:"提示词优化中",generationDone:"{{task}}已完成",generationFailed:"{{task}}失败",generationQueued:"{{task}}排队中",generationRunning:"{{task}}生成中",generationActive:"{{task}}进行中",generationPending:"等待视频生成",generationComplete:"视频生成完成"},elapsedHours:"{{hours}}小时{{minutes}}分",elapsedMinutes:"{{minutes}}分{{seconds}}秒",elapsedSeconds:"{{seconds}}秒"}},urr=Object.freeze(Object.defineProperty({__proto__:null,agentPicker:XFe,compactSelect:WFe,default:{compactSelect:WFe,featureNotice:YFe,workspace:qFe,mode:jFe,agentPicker:XFe,skill:KFe,video:ZFe},featureNotice:YFe,mode:jFe,skill:KFe,video:ZFe,workspace:qFe},Symbol.toStringTag,{value:"Module"})),JFe={cancel:"取消",close:"关闭",retry:"重试",tryAgain:"重新尝试",closeDialog:"关闭{{title}}",agentFallback:"{{agent}} 智能体",unknownSource:"未知来源"},eze={terminalTitle:"终端",browserTitle:"沙箱浏览器",terminalSubtitle:"连接当前 AgentKit Session 的交互式终端",browserSubtitle:"在当前 AgentKit Session 中查看与操作浏览器",connecting:"正在连接…",connected:"已连接",notConnected:"尚未连接",opening:"正在打开 {{title}}",connectingSession:"工具正在连接当前 AgentKit Session。",openFailed:"{{title}} 打开失败"},tze={title:"恢复 Codex 对话",subtitle:"选择当前 Sandbox Session 中最近更新的 Thread",loading:"正在读取历史对话",loadFailed:"历史对话读取失败",empty:"暂无可恢复的对话"},rze={title:"Codex 权限",subtitle:"设置会保存到当前 Sandbox Session,并同步到其中的所有 Thread",sandboxMode:"沙箱模式",approvalPolicy:"审批策略",approvalMethod:"审批方式",networkAccess:"允许网络访问",networkAccessHelp:"控制 workspace-write 与只读模式中的外部网络访问。",fullAccessWarning:"完全访问会关闭文件系统与网络隔离,请只在可信任务中使用。",save:"保存权限",sandboxChoices:{readOnly:{label:"只读",detail:"允许读取文件,不允许写入工作空间。"},workspaceWrite:{label:"工作区写入",detail:"允许在当前工作空间内读取与修改文件。"},fullAccess:{label:"完全访问",detail:"不启用沙箱隔离,适合明确可信的任务。"}},approvalChoices:{untrusted:{label:"仅不可信命令",detail:"只对 Codex 判断为不可信的操作发起审批。"},onRequest:{label:"按需审批",detail:"Codex 可在必要时请求你确认命令或文件修改。"},never:{label:"不审批",detail:"Codex 不会暂停并请求人工批准。"}},reviewerChoices:{user:{label:"由我审批",detail:"审批请求会显示在 Studio 中,由你决定。"},autoReview:{label:"自动审查",detail:"使用 Codex 自动审查流程处理审批请求。"}}},nze={title:"工作空间",subtitle:"选择当前 Codex Thread 执行命令与修改文件的目录",absolutePath:"绝对路径",browse:"浏览",parent:"上一级",empty:"当前目录没有子目录",locked:"当前对话已经开始,工作空间已锁定。新建 Sandbox 会话后可重新选择。",useDirectory:"使用此目录"},ize={fileTitle:"允许修改文件?",commandTitle:"允许执行命令?",subtitle:"Codex 正在等待你的决定",workingDirectory:"执行目录",decline:"拒绝",acceptOnce:"仅本次允许",acceptSession:"本会话允许"},aze={availableSkills:"可用 Skills",selectModel:"选择模型",commands:"Codex 快捷命令",currentModel:"当前:{{model}}",loadingSkills:"正在发现当前工作区的 Skills…",loadingModels:"正在读取模型…",noSkillMatches:"当前工作区没有匹配的 Skill",noModelMatches:"没有匹配模型,也可以直接输入模型 ID",noCommandMatches:"没有匹配的快捷命令",skillFallback:"加载并执行该 Skill",add:"添加",uploadImage:"上传图片",uploadDocument:"上传文档或 PDF",uploadVideo:"上传视频",openTerminal:"进入终端",viewBrowser:"查看浏览器",permissions:"Codex 权限",workspaceLocked:"对话已开始,工作空间已锁定",selectWorkspace:"选择工作空间",workspace:"Codex 工作空间",endpointCopied:"Endpoint 已复制",copyEndpoint:"复制 Sandbox Endpoint",continuePlaceholder:"继续说明你想实现或调整的内容",messagePlaceholder:"向 AgentKit 沙箱发送消息,输入 / 查看命令,输入 $ 调用 Skill…",stop:"停止生成",send:"发送"},sze={defaultName:"我的智能体",namedDefault:"我的 {{agent}}",creatingTitle:"正在创建 {{agent}} 智能体",failedTitle:"启动失败",createTitle:"创建 {{agent}} 智能体",fallbackError:"AgentKit 沙箱初始化失败,请稍后重新尝试。",creatingDescription:"正在创建并等待 {{agent}} 智能体就绪,这通常需要半分钟",name:"智能体名称",storageSize:"存储大小",storageHelp:"数据将持久化保存,可设置 {{min}}–{{max}} GiB。",persistent:"持久化",persistenceUnsupported:"当前环境不支持快照持久化",persistentHelp:"保留智能体数据,后续可继续使用。",temporaryHelp:"智能体将在 8 小时后清空",cancelCreation:"取消创建",confirm:"确认创建",retry:"重新尝试"},oze={activeAria:"Codex 智能体会话已开启",openAria:"开启 Codex 智能体会话",active:"Codex 智能体会话中",entry:"灵光一现",exit:"退出当前智能体",expired:"已到期",remainingHours:"剩余 {{hours}} 小时 {{minutes}} 分钟",remainingMinutes:"剩余 {{minutes}} 分钟",expiryWarning:"远端开发环境最长保留 8 小时,将于 {{expiry}} 到期({{remaining}});到期后清除对话和文件。",usingAgent:"当前您在使用 {{agent}} 智能体",activityAria:"Sandbox 操作记录",activity:"操作记录",tokenUsageAria:"Codex Token 用量",tokens:"{{label}}:{{value}} tokens",tokenLabels:{total:"总计",input:"输入",cachedInput:"缓存输入",output:"输出",reasoningOutput:"推理输出"}},lze={back:"返回智能体列表",subtitle:"{{agent}} 智能体详情",type:"智能体类型",status:"状态",createdBy:"创建人",snapshotStatus:"快照状态",toolType:"工具类型",createdAt:"创建时间",snapshotReason:"快照原因",expiresAt:"过期时间",snapshotId:"快照 ID",sessionId:"会话 ID",sourceSessionId:"来源 Session ID",delete:"删除智能体",waking:"唤醒中…",opening:"打开中…",wake:"唤醒智能体",open:"打开智能体",deleteTitle:"删除智能体?",deleteDescription:"将删除“{{name}}”及其保存的数据,此操作无法撤销。",deleting:"删除中…",confirmDelete:"确认删除",sleepingHint:"该智能体已休眠,进入时需要唤醒,可能需要一些时间。",wakingHint:"正在唤醒智能体,可能需要一些时间。",agentId:"智能体 ID"},cze={back:"返回智能体列表",createdBy:"创建人 {{creator}}",ariaLabel:"智能体工作区",main:"主界面",terminal:"终端",mainTitle:"{{agent}} 主界面",openingTerminal:"正在打开终端…",terminalTitle:"{{agent}} 终端"},uze={prompt:`使用 AgentKit Studio Plugin 端云接力当前会话、项目和任务。请直接执行,不要让我手动打开终端。 Studio:{{studioUrl}} 配对码:{{pairingCode}}`,installPrompt:`请安装 AgentKit Studio Plugin。请直接执行以下安装命令,不要让我手动打开终端。 安装命令:{{command}}`,title:"接力到云端继续执行",description:"按顺序复制两段提示词,Codex 会通过插件将您的本地任务接力到云端",closeAria:"关闭本地迁移引导",installTitle:"安装插件",installDescription:"首次使用时,请选择一种安装方式。",copied:"已复制",copyInstallPrompt:"复制安装提示词",copyInstallCommand:"复制安装命令",installMethodAria:"插件安装方式",conversationInstall:"与 Codex 对话安装",terminalInstall:"从终端安装",taskTitle:"任务接力",taskDescription:"插件安装完成后复制,Codex 会迁移当前项目并继续执行任务。",copyHandoffPrompt:"复制接力提示词",generatingPairing:"正在生成新的配对码",pairingExpired:"配对码已过期",pairingRemaining:"配对码有效期剩余 {{countdown}}",refreshing:"刷新中",refreshPairing:"刷新配对码",pairingLoading:"正在生成配对码",pairingUnavailable:"配对码尚未生成。",statusAria:"端云接力状态",statusTitle:"接力状态",requestReceivedNamed:"已收到“{{name}}”的端云接力请求",requestReceivedCurrent:"已收到当前项目的端云接力请求",requestHelp:"复制接力提示词后,Codex 的请求会显示在这里。",entering:"正在进入",enterCodex:"进入 Codex",clipboardUnsupported:"当前浏览器不支持写入剪贴板。",steps:{request:"等待端侧请求",session:"创建云端 Session",restore:"恢复项目",continue:"发送续跑任务"},status:{issued:"等待请求",creating:"正在创建 Session",sessionCreated:"正在迁移项目",continuing:"正在启动云端任务",running:"云端执行中",completed:"接力完成",failed:"接力失败"}},hze={model:{description:"显示或切换当前对话模型",keywords:"模型 switch"},models:{description:"列出 app-server 可用模型",keywords:"模型列表 list"},skill:{description:"浏览并调用当前工作区可用的 Skill",keywords:"技能 workflow"},skills:{description:"浏览并调用当前工作区可用的 Skills",keywords:"技能列表 workflow list"},new:{description:"开始一个新对话",keywords:"新建 对话"},resume:{description:"打开历史会话或恢复指定 Thread",keywords:"历史 恢复 session"},fork:{description:"从当前上下文分叉一个新对话",keywords:"分叉 branch"},compact:{description:"压缩当前对话上下文",keywords:"压缩 上下文"},archive:{description:"归档当前对话并新建对话",keywords:"归档 关闭"},status:{description:"显示当前连接、Thread、模型与 Token 状态",keywords:"状态 连接 token"},clear:{description:"清空当前视图并开始新对话",keywords:"清空 重置"},help:{description:"显示 Sandbox 支持的快捷命令",keywords:"帮助 命令"},currentModel:"当前模型",availableModel:"可用模型",workspace:"工作空间",notSet:"未设置",modelLabel:"模型",statusLabel:"状态",running:"运行中",idle:"空闲",totalTokens:"累计 Token",contextWindow:"上下文窗口",imageFallback:"图片",unknown:"未知快捷命令:{{command}}。输入 /help 查看可用命令。",automaticSkills:"智能开发模式会自动使用开发能力,无需手动选择 Skill。",activity:{new:"已新建 Codex 对话",resumed:"已恢复 Codex 对话",deleted:"已删除 Codex 历史会话",modelChanged:"已切换 Codex 模型",availableModels:"Codex 可用模型",noModels:"当前没有可用模型",forked:"已分叉 Codex 对话",compacting:"已开始压缩当前 Codex 对话",archived:"已归档 Codex 对话",status:"Codex 当前状态",help:"Sandbox 支持的 Codex 快捷命令"}},hrr=Object.freeze(Object.defineProperty({__proto__:null,agentDetails:lze,agentWorkspace:cze,approval:ize,commands:hze,common:JFe,composer:aze,default:{common:JFe,tool:eze,threads:tze,permissions:rze,workspace:nze,approval:ize,composer:aze,launch:sze,session:oze,agentDetails:lze,agentWorkspace:cze,handoff:uze,commands:hze},handoff:uze,launch:sze,permissions:rze,session:oze,threads:tze,tool:eze,workspace:nze},Symbol.toStringTag,{value:"Module"})),dze={retry:"重试",signInToContinue:"登录以继续使用",signInWith:"使用 {{provider}} 登录",enterUsername:"输入一个用户名即可开始",usernamePlaceholder:"用户名(字母 + 数字,最多 16 位)",enter:"进入",usernameInvalid:"只能包含大小写字母和数字,最多 16 位。",identityProvider:{volcengine:"火山引擎 Identity",byteplus:"BytePlus Identity"},powered:{volcengine:"火山引擎 AgentKit 提供企业级 Agent 解决方案",byteplus:"BytePlus AgentKit 提供企业级 Agent 解决方案"},legalPrefix:"继续即表示你已阅读并同意 AgentKit",terms:"产品和服务条款",copyright:"© {{year}} VeADK。保留所有权利。"},fze={title:"登录状态已过期",description:"当前编辑内容会保留。重新登录后,刚才的操作将自动继续。",waiting:"等待登录完成…",signInAgain:"重新登录"},pze={breadcrumbs:"面包屑",selectAgent:"选择 Agent",switchAgent:"切换智能体"},gze={cancel:"取消",close:"关闭确认框"},drr=Object.freeze(Object.defineProperty({__proto__:null,authExpired:fze,confirm:gze,default:{login:dze,authExpired:fze,navbar:pze,confirm:gze},login:dze,navbar:pze},Symbol.toStringTag,{value:"Module"})),mze={defaultUser:"用户",shortcuts:"快捷入口",tryCli:"体验 AgentKit CLI",developerResources:"开发者资源",systemInfo:"系统信息",language:"语言",issueFeedback:"问题反馈",logout:"退出登录",roles:{admin:"管理员",developer:"开发者",user:"普通用户"}},vze={home:"返回首页",expand:"展开侧边栏",collapse:"收起侧边栏",label:"主导航",newChat:"新会话",agents:"智能体",workspaces:"工作区",library:"资源库",cronjobs:"定时任务",automations:"自动化"},yze={title:"历史会话",newConversation:"新会话",create:"新建会话",loading:"正在加载历史会话…",empty:"暂无会话",current:"当前",manage:"管理历史会话:{{title}}",more:"更多",delete:"删除",loadingMore:"加载中…",loadMore:"加载更多",evaluatingTitle:"正在自动评测",evaluating:"评测中",generating:"正在生成"},frr=Object.freeze(Object.defineProperty({__proto__:null,account:mze,default:{account:mze,navigation:vze,history:yze},history:yze,navigation:vze},Symbol.toStringTag,{value:"Module"})),bze={placeholder:"请选择",collapseOptions:"收起模型选项",expandOptions:"展开模型选项",noOptions:"暂无可用选项",noMatches:"没有匹配项,可直接使用当前模型 ID"},xze={unsupportedActivity:"不支持的 Skill 对话活动",ariaLabel:"Skill 生成对话"},wze={code:"错误码:{{code}}",type:"错误类型:{{type}}",representation:"异常表示:{{value}}",rawResponse:`服务端原始响应: