@bluefly/openstandardagents 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.buildkit/agent-first-policy.sh +65 -0
- package/.buildkit/branching-workflow.json +41 -0
- package/.buildkit/hooks.yaml +23 -0
- package/.buildkit/install-buildkit-setup.cjs +483 -0
- package/.cursor/plans/ossa-comprehensive-enhancement-issue-audit-plan.plan.md +735 -0
- package/.cursor/plans/ossa-enterprise-transformation-plan-0ccaf09b.plan.md +373 -0
- package/.cursor/plans/ossa-milestone-organization-and-v0-2-4-release-6dafa4ec.plan.md +214 -0
- package/.cursor/rules/problems.json +483 -0
- package/.cursor/settings.json +29 -0
- package/.cursor/worktrees.json +95 -0
- package/.env.example +41 -0
- package/.env.local +31 -0
- package/.github/ISSUE_TEMPLATE/README.md +33 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +61 -0
- package/.github/ISSUE_TEMPLATE/config.yml +12 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +75 -0
- package/.github/wiki_templates/home.md +39 -0
- package/.gitignore.bak +489 -0
- package/.gitlab-ci-trigger +1 -0
- package/.husky/pre-commit +31 -0
- package/.lintstagedrc.json +16 -0
- package/.redocly.yaml +63 -0
- package/.vscode/extensions.json +6 -0
- package/.vscode/settings.json +3 -0
- package/AUDIT_FIXES.md +139 -0
- package/AUDIT_REPORT.md +308 -0
- package/BUILDKIT_INTEGRATION.md +146 -0
- package/Dockerfile +35 -0
- package/README.md +559 -0
- package/dist/adk/adapters/index.d.ts +64 -0
- package/dist/adk/adapters/index.d.ts.map +1 -0
- package/dist/adk/adapters/index.js +257 -0
- package/dist/adk/adapters/index.js.map +1 -0
- package/dist/adk/agents/custom-agent.d.ts +55 -0
- package/dist/adk/agents/custom-agent.d.ts.map +1 -0
- package/dist/adk/agents/custom-agent.js +167 -0
- package/dist/adk/agents/custom-agent.js.map +1 -0
- package/dist/adk/agents/index.d.ts +64 -0
- package/dist/adk/agents/index.d.ts.map +1 -0
- package/dist/adk/agents/index.js +125 -0
- package/dist/adk/agents/index.js.map +1 -0
- package/dist/adk/agents/llm-agent.d.ts +27 -0
- package/dist/adk/agents/llm-agent.d.ts.map +1 -0
- package/dist/adk/agents/llm-agent.js +63 -0
- package/dist/adk/agents/llm-agent.js.map +1 -0
- package/dist/adk/agents/workflow-agent.d.ts +42 -0
- package/dist/adk/agents/workflow-agent.d.ts.map +1 -0
- package/dist/adk/agents/workflow-agent.js +144 -0
- package/dist/adk/agents/workflow-agent.js.map +1 -0
- package/dist/adk/index.d.ts +10 -0
- package/dist/adk/index.d.ts.map +1 -0
- package/dist/adk/index.js +10 -0
- package/dist/adk/index.js.map +1 -0
- package/dist/adk/orchestration/index.d.ts +63 -0
- package/dist/adk/orchestration/index.d.ts.map +1 -0
- package/dist/adk/orchestration/index.js +264 -0
- package/dist/adk/orchestration/index.js.map +1 -0
- package/dist/adk/state/index.d.ts +73 -0
- package/dist/adk/state/index.d.ts.map +1 -0
- package/dist/adk/state/index.js +177 -0
- package/dist/adk/state/index.js.map +1 -0
- package/dist/adk/tools/index.d.ts +65 -0
- package/dist/adk/tools/index.d.ts.map +1 -0
- package/dist/adk/tools/index.js +252 -0
- package/dist/adk/tools/index.js.map +1 -0
- package/dist/cli/agent-deployment.d.ts +34 -0
- package/dist/cli/agent-deployment.d.ts.map +1 -0
- package/dist/cli/agent-deployment.js +396 -0
- package/dist/cli/agent-deployment.js.map +1 -0
- package/dist/cli/commands/discover.command.d.ts +7 -0
- package/dist/cli/commands/discover.command.d.ts.map +1 -0
- package/dist/cli/commands/discover.command.js +80 -0
- package/dist/cli/commands/discover.command.js.map +1 -0
- package/dist/cli/commands/export.command.d.ts +7 -0
- package/dist/cli/commands/export.command.d.ts.map +1 -0
- package/dist/cli/commands/export.command.js +56 -0
- package/dist/cli/commands/export.command.js.map +1 -0
- package/dist/cli/commands/generate.command.d.ts +7 -0
- package/dist/cli/commands/generate.command.d.ts.map +1 -0
- package/dist/cli/commands/generate.command.js +66 -0
- package/dist/cli/commands/generate.command.js.map +1 -0
- package/dist/cli/commands/gitlab-agent.command.d.ts +8 -0
- package/dist/cli/commands/gitlab-agent.command.d.ts.map +1 -0
- package/dist/cli/commands/gitlab-agent.command.js +201 -0
- package/dist/cli/commands/gitlab-agent.command.js.map +1 -0
- package/dist/cli/commands/import.command.d.ts +7 -0
- package/dist/cli/commands/import.command.d.ts.map +1 -0
- package/dist/cli/commands/import.command.js +36 -0
- package/dist/cli/commands/import.command.js.map +1 -0
- package/dist/cli/commands/init.command.d.ts +7 -0
- package/dist/cli/commands/init.command.d.ts.map +1 -0
- package/dist/cli/commands/init.command.js +146 -0
- package/dist/cli/commands/init.command.js.map +1 -0
- package/dist/cli/commands/migrate.command.d.ts +7 -0
- package/dist/cli/commands/migrate.command.d.ts.map +1 -0
- package/dist/cli/commands/migrate.command.js +110 -0
- package/dist/cli/commands/migrate.command.js.map +1 -0
- package/dist/cli/commands/ossa.d.ts +9 -0
- package/dist/cli/commands/ossa.d.ts.map +1 -0
- package/dist/cli/commands/ossa.js +234 -0
- package/dist/cli/commands/ossa.js.map +1 -0
- package/dist/cli/commands/run.command.d.ts +7 -0
- package/dist/cli/commands/run.command.d.ts.map +1 -0
- package/dist/cli/commands/run.command.js +114 -0
- package/dist/cli/commands/run.command.js.map +1 -0
- package/dist/cli/commands/schema.command.d.ts +7 -0
- package/dist/cli/commands/schema.command.d.ts.map +1 -0
- package/dist/cli/commands/schema.command.js +72 -0
- package/dist/cli/commands/schema.command.js.map +1 -0
- package/dist/cli/commands/validate.command.d.ts +7 -0
- package/dist/cli/commands/validate.command.d.ts.map +1 -0
- package/dist/cli/commands/validate.command.js +125 -0
- package/dist/cli/commands/validate.command.js.map +1 -0
- package/dist/cli/commands/worktree.d.ts +7 -0
- package/dist/cli/commands/worktree.d.ts.map +1 -0
- package/dist/cli/commands/worktree.js +509 -0
- package/dist/cli/commands/worktree.js.map +1 -0
- package/dist/cli/index.d.ts +7 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +50 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/ossa-cli.d.ts +52 -0
- package/dist/cli/ossa-cli.d.ts.map +1 -0
- package/dist/cli/ossa-cli.js +1061 -0
- package/dist/cli/ossa-cli.js.map +1 -0
- package/dist/core/index.d.ts +31 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +37 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/mcp-server-implementation.d.ts +39 -0
- package/dist/core/mcp-server-implementation.d.ts.map +1 -0
- package/dist/core/mcp-server-implementation.js +1262 -0
- package/dist/core/mcp-server-implementation.js.map +1 -0
- package/dist/core/orchestrator/index.d.ts +156 -0
- package/dist/core/orchestrator/index.d.ts.map +1 -0
- package/dist/core/orchestrator/index.js +446 -0
- package/dist/core/orchestrator/index.js.map +1 -0
- package/dist/core/orchestrator/ossa-orchestrator.d.ts +106 -0
- package/dist/core/orchestrator/ossa-orchestrator.d.ts.map +1 -0
- package/dist/core/orchestrator/ossa-orchestrator.js +396 -0
- package/dist/core/orchestrator/ossa-orchestrator.js.map +1 -0
- package/dist/di-container.d.ts +18 -0
- package/dist/di-container.d.ts.map +1 -0
- package/dist/di-container.js +46 -0
- package/dist/di-container.js.map +1 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +37 -0
- package/dist/index.js.map +1 -0
- package/dist/protocols/acap.d.ts +61 -0
- package/dist/protocols/acap.d.ts.map +1 -0
- package/dist/protocols/acap.js +92 -0
- package/dist/protocols/acap.js.map +1 -0
- package/dist/protocols/index.d.ts +8 -0
- package/dist/protocols/index.d.ts.map +1 -0
- package/dist/protocols/index.js +8 -0
- package/dist/protocols/index.js.map +1 -0
- package/dist/protocols/rasp.d.ts +58 -0
- package/dist/protocols/rasp.d.ts.map +1 -0
- package/dist/protocols/rasp.js +212 -0
- package/dist/protocols/rasp.js.map +1 -0
- package/dist/repositories/manifest.repository.d.ts +26 -0
- package/dist/repositories/manifest.repository.d.ts.map +1 -0
- package/dist/repositories/manifest.repository.js +90 -0
- package/dist/repositories/manifest.repository.js.map +1 -0
- package/dist/repositories/schema.repository.d.ts +30 -0
- package/dist/repositories/schema.repository.d.ts.map +1 -0
- package/dist/repositories/schema.repository.js +144 -0
- package/dist/repositories/schema.repository.js.map +1 -0
- package/dist/server/simple-app.d.ts +18 -0
- package/dist/server/simple-app.d.ts.map +1 -0
- package/dist/server/simple-app.js +155 -0
- package/dist/server/simple-app.js.map +1 -0
- package/dist/server/types/agent.d.ts +498 -0
- package/dist/server/types/agent.d.ts.map +1 -0
- package/dist/server/types/agent.js +37 -0
- package/dist/server/types/agent.js.map +1 -0
- package/dist/server/types/server.d.ts +370 -0
- package/dist/server/types/server.d.ts.map +1 -0
- package/dist/server/types/server.js +68 -0
- package/dist/server/types/server.js.map +1 -0
- package/dist/services/discovery.service.d.ts +78 -0
- package/dist/services/discovery.service.d.ts.map +1 -0
- package/dist/services/discovery.service.js +212 -0
- package/dist/services/discovery.service.js.map +1 -0
- package/dist/services/generation.service.d.ts +54 -0
- package/dist/services/generation.service.d.ts.map +1 -0
- package/dist/services/generation.service.js +298 -0
- package/dist/services/generation.service.js.map +1 -0
- package/dist/services/gitlab-agent.service.d.ts +94 -0
- package/dist/services/gitlab-agent.service.d.ts.map +1 -0
- package/dist/services/gitlab-agent.service.js +158 -0
- package/dist/services/gitlab-agent.service.js.map +1 -0
- package/dist/services/migration.service.d.ts +30 -0
- package/dist/services/migration.service.d.ts.map +1 -0
- package/dist/services/migration.service.js +231 -0
- package/dist/services/migration.service.js.map +1 -0
- package/dist/services/orchestration/worktree-orchestrator.d.ts +146 -0
- package/dist/services/orchestration/worktree-orchestrator.d.ts.map +1 -0
- package/dist/services/orchestration/worktree-orchestrator.js +591 -0
- package/dist/services/orchestration/worktree-orchestrator.js.map +1 -0
- package/dist/services/runtime/openai.adapter.d.ts +94 -0
- package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
- package/dist/services/runtime/openai.adapter.js +209 -0
- package/dist/services/runtime/openai.adapter.js.map +1 -0
- package/dist/services/validation.service.d.ts +45 -0
- package/dist/services/validation.service.d.ts.map +1 -0
- package/dist/services/validation.service.js +362 -0
- package/dist/services/validation.service.js.map +1 -0
- package/dist/services/validators/anthropic.validator.d.ts +9 -0
- package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
- package/dist/services/validators/anthropic.validator.js +105 -0
- package/dist/services/validators/anthropic.validator.js.map +1 -0
- package/dist/services/validators/autogen.validator.d.ts +9 -0
- package/dist/services/validators/autogen.validator.d.ts.map +1 -0
- package/dist/services/validators/autogen.validator.js +111 -0
- package/dist/services/validators/autogen.validator.js.map +1 -0
- package/dist/services/validators/crewai.validator.d.ts +9 -0
- package/dist/services/validators/crewai.validator.d.ts.map +1 -0
- package/dist/services/validators/crewai.validator.js +117 -0
- package/dist/services/validators/crewai.validator.js.map +1 -0
- package/dist/services/validators/cursor.validator.d.ts +9 -0
- package/dist/services/validators/cursor.validator.d.ts.map +1 -0
- package/dist/services/validators/cursor.validator.js +88 -0
- package/dist/services/validators/cursor.validator.js.map +1 -0
- package/dist/services/validators/index.d.ts +15 -0
- package/dist/services/validators/index.d.ts.map +1 -0
- package/dist/services/validators/index.js +15 -0
- package/dist/services/validators/index.js.map +1 -0
- package/dist/services/validators/langchain.validator.d.ts +9 -0
- package/dist/services/validators/langchain.validator.d.ts.map +1 -0
- package/dist/services/validators/langchain.validator.js +103 -0
- package/dist/services/validators/langchain.validator.js.map +1 -0
- package/dist/services/validators/langflow.validator.d.ts +9 -0
- package/dist/services/validators/langflow.validator.d.ts.map +1 -0
- package/dist/services/validators/langflow.validator.js +92 -0
- package/dist/services/validators/langflow.validator.js.map +1 -0
- package/dist/services/validators/langgraph.validator.d.ts +9 -0
- package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
- package/dist/services/validators/langgraph.validator.js +123 -0
- package/dist/services/validators/langgraph.validator.js.map +1 -0
- package/dist/services/validators/llamaindex.validator.d.ts +9 -0
- package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
- package/dist/services/validators/llamaindex.validator.js +121 -0
- package/dist/services/validators/llamaindex.validator.js.map +1 -0
- package/dist/services/validators/openai.validator.d.ts +9 -0
- package/dist/services/validators/openai.validator.d.ts.map +1 -0
- package/dist/services/validators/openai.validator.js +126 -0
- package/dist/services/validators/openai.validator.js.map +1 -0
- package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
- package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
- package/dist/services/validators/vercel-ai.validator.js +99 -0
- package/dist/services/validators/vercel-ai.validator.js.map +1 -0
- package/dist/services/worktree/branching-strategy.d.ts +17 -0
- package/dist/services/worktree/branching-strategy.d.ts.map +1 -0
- package/dist/services/worktree/branching-strategy.js +66 -0
- package/dist/services/worktree/branching-strategy.js.map +1 -0
- package/dist/services/worktree/git-worktree-manager.d.ts +32 -0
- package/dist/services/worktree/git-worktree-manager.d.ts.map +1 -0
- package/dist/services/worktree/git-worktree-manager.js +61 -0
- package/dist/services/worktree/git-worktree-manager.js.map +1 -0
- package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
- package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
- package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
- package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
- package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
- package/dist/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
- package/dist/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
- package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
- package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
- package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
- package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
- package/dist/spec/v0.2.3/README.md +154 -0
- package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
- package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
- package/dist/spec/v0.2.4-dev/README.md +61 -0
- package/dist/spec/v0.2.4-dev/RELEASE-PROCESS.md +130 -0
- package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.4-dev/openapi/CHANGELOG-0.2.4.md +177 -0
- package/dist/spec/v0.2.4-dev/openapi/README-0.2.4.md +51 -0
- package/dist/spec/v0.2.4-dev/openapi/VERIFICATION-0.2.4.md +147 -0
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1717 -0
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
- package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
- package/dist/specification/validator.d.ts +82 -0
- package/dist/specification/validator.d.ts.map +1 -0
- package/dist/specification/validator.js +562 -0
- package/dist/specification/validator.js.map +1 -0
- package/dist/types/acdl-api.d.ts +335 -0
- package/dist/types/acdl-api.d.ts.map +1 -0
- package/dist/types/acdl-api.js +6 -0
- package/dist/types/acdl-api.js.map +1 -0
- package/dist/types/agents/index.d.ts +53 -0
- package/dist/types/agents/index.d.ts.map +1 -0
- package/dist/types/agents/index.js +5 -0
- package/dist/types/agents/index.js.map +1 -0
- package/dist/types/api.d.ts +225 -0
- package/dist/types/api.d.ts.map +1 -0
- package/dist/types/api.js +6 -0
- package/dist/types/api.js.map +1 -0
- package/dist/types/architecture/index.d.ts +530 -0
- package/dist/types/architecture/index.d.ts.map +1 -0
- package/dist/types/architecture/index.js +258 -0
- package/dist/types/architecture/index.js.map +1 -0
- package/dist/types/index.d.ts +279 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +68 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/openapi-extensions.d.ts +164 -0
- package/dist/types/openapi-extensions.d.ts.map +1 -0
- package/dist/types/openapi-extensions.js +6 -0
- package/dist/types/openapi-extensions.js.map +1 -0
- package/dist/types/policies/index.d.ts +35 -0
- package/dist/types/policies/index.d.ts.map +1 -0
- package/dist/types/policies/index.js +5 -0
- package/dist/types/policies/index.js.map +1 -0
- package/dist/types/workflows/index.d.ts +40 -0
- package/dist/types/workflows/index.d.ts.map +1 -0
- package/dist/types/workflows/index.js +5 -0
- package/dist/types/workflows/index.js.map +1 -0
- package/dist/utils/version-resolver.d.ts +28 -0
- package/dist/utils/version-resolver.d.ts.map +1 -0
- package/dist/utils/version-resolver.js +110 -0
- package/dist/utils/version-resolver.js.map +1 -0
- package/docker-compose.yml +160 -0
- package/junit.xml +1 -0
- package/package.json +105 -0
- package/public/api-docs.html +206 -0
- package/public/assets/favicon.svg +8 -0
- package/public/assets/script.js +279 -0
- package/public/assets/style.css +632 -0
- package/public/index.html +307 -0
- package/public/redocly-config.yaml +80 -0
- package/public/src/api/acdl-specification.yml +531 -0
- package/public/src/api/clean-architecture.openapi.yml +1435 -0
- package/public/src/api/context7-mcp.openapi.yml +313 -0
- package/public/src/api/magic-mcp.openapi.yml +647 -0
- package/public/src/api/mcp-infrastructure.openapi.yml +904 -0
- package/public/src/api/orchestration.openapi.yml +444 -0
- package/public/src/api/ossa-complete.openapi.yml +2250 -0
- package/public/src/api/project-discovery.openapi.yml +1293 -0
- package/public/src/api/rebuild-audit.openapi.yml +800 -0
- package/public/src/api/specification.openapi.yml +498 -0
- package/public/src/api/voice-agent-specification.yml +640 -0
- package/public/src/api/web-eval-mcp.openapi.yml +426 -0
- package/pyrightconfig.json +13 -0
- package/redocly.yaml +56 -0
- package/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
- package/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
- package/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
- package/spec/v0.2.4/ossa-0.2.4.schema.json +1717 -0
- package/spec/v0.2.4/ossa-0.2.4.yaml +581 -0
- package/specs/README.md +31 -0
- package/specs/acdl-specification.yml +531 -0
- package/specs/clean-architecture.openapi.yml +1435 -0
- package/specs/context7-mcp.openapi.yml +313 -0
- package/specs/magic-mcp.openapi.yml +647 -0
- package/specs/mcp-infrastructure.openapi.yml +904 -0
- package/specs/orchestration.openapi.yml +444 -0
- package/specs/ossa-complete.openapi.yml +2250 -0
- package/specs/project-discovery.openapi.yml +1293 -0
- package/specs/rebuild-audit.openapi.yml +800 -0
- package/specs/specification.openapi.yml +498 -0
- package/specs/test-api.openapi.yml +20 -0
- package/specs/voice-agent-specification.yml +640 -0
- package/specs/web-eval-mcp.openapi.yml +426 -0
- package/src/adk/adapters/index.ts +310 -0
- package/src/adk/agents/custom-agent.ts +206 -0
- package/src/adk/agents/index.ts +158 -0
- package/src/adk/agents/llm-agent.ts +76 -0
- package/src/adk/agents/workflow-agent.ts +191 -0
- package/src/adk/index.ts +10 -0
- package/src/adk/orchestration/index.ts +352 -0
- package/src/adk/state/index.ts +217 -0
- package/src/adk/tools/index.ts +291 -0
- package/src/api/acdl-specification.yml +531 -0
- package/src/api/agent-manifest.schema.json +859 -0
- package/src/api/agent-worktree-schema.json +320 -0
- package/src/api/clean-architecture.openapi.yml +1435 -0
- package/src/api/context7-mcp.openapi.yml +313 -0
- package/src/api/magic-mcp.openapi.yml +647 -0
- package/src/api/mcp-infrastructure.openapi.yml +904 -0
- package/src/api/openapi.redoc.config.json +6 -0
- package/src/api/orchestration.openapi.yml +444 -0
- package/src/api/ossa-complete.openapi.yml +2250 -0
- package/src/api/project-discovery.openapi.yml +1293 -0
- package/src/api/rebuild-audit.openapi.yml +800 -0
- package/src/api/specification.openapi.yml +498 -0
- package/src/api/test-api.openapi.yml +20 -0
- package/src/api/voice-agent-specification.yml +640 -0
- package/src/api/web-eval-mcp.openapi.yml +426 -0
- package/src/api/workflow.schema.json +524 -0
- package/src/cli/agent-deployment.ts +452 -0
- package/src/cli/commands/ossa.ts +272 -0
- package/src/cli/commands/worktree.ts +603 -0
- package/src/cli/ossa-cli.ts +1176 -0
- package/src/core/index.ts +42 -0
- package/src/core/mcp-server-implementation.ts +1409 -0
- package/src/core/orchestrator/index.ts +611 -0
- package/src/core/orchestrator/ossa-orchestrator.ts +504 -0
- package/src/mcp/simple-server.ts +322 -0
- package/src/protocols/acap.ts +146 -0
- package/src/protocols/index.ts +8 -0
- package/src/protocols/rasp.ts +263 -0
- package/src/server/app.ts +472 -0
- package/src/server/middleware/agentAccess.ts +10 -0
- package/src/server/middleware/asyncHandler.ts +10 -0
- package/src/server/middleware/auth.ts +10 -0
- package/src/server/middleware/errorHandler.ts +9 -0
- package/src/server/middleware/logging.ts +10 -0
- package/src/server/middleware/metrics.ts +10 -0
- package/src/server/middleware/validation.ts +10 -0
- package/src/server/routes/agents.ts +632 -0
- package/src/server/routes/monitoring.ts +13 -0
- package/src/server/routes/orchestration.ts +13 -0
- package/src/server/routes/specifications.ts +13 -0
- package/src/server/services/AgentService.ts +46 -0
- package/src/server/services/ExecutionService.ts +51 -0
- package/src/server/services/SpecificationService.ts +22 -0
- package/src/server/services/WebhookService.ts +24 -0
- package/src/server/simple-app.ts +174 -0
- package/src/server/types/agent.ts +612 -0
- package/src/server/types/server.ts +465 -0
- package/src/services/orchestration/worktree-orchestrator.ts +779 -0
- package/src/services/worktree/branching-strategy.ts +76 -0
- package/src/services/worktree/git-worktree-manager.ts +86 -0
- package/website/.next/BUILD_ID +1 -0
- package/website/.next/app-build-manifest.json +151 -0
- package/website/.next/app-path-routes-manifest.json +19 -0
- package/website/.next/build-manifest.json +33 -0
- package/website/.next/cache/.previewinfo +1 -0
- package/website/.next/cache/.rscinfo +1 -0
- package/website/.next/cache/.tsbuildinfo +1 -0
- package/website/.next/cache/fetch-cache/920aec34c288eefa97c5efba3baf95a846a0beb0c48a5064980a2c24b83e941c +1 -0
- package/website/.next/cache/fetch-cache/c2ad7a72b43463a0daaa85ca926a8af38defd17ecb64f1fdd2dd4fe2293e8b26 +1 -0
- package/website/.next/cache/fetch-cache/d10eb963d5980c8a50ee9ed24472339ee6da054ead33e00676e61e8b8e62cc83 +1 -0
- package/website/.next/cache/fetch-cache/f243d84640477f3205b74a85013018acd63b692144675630a74d1af8a3e9eab5 +1 -0
- package/website/.next/cache/webpack/client-production/0.pack +0 -0
- package/website/.next/cache/webpack/client-production/1.pack +0 -0
- package/website/.next/cache/webpack/client-production/10.pack +0 -0
- package/website/.next/cache/webpack/client-production/11.pack +0 -0
- package/website/.next/cache/webpack/client-production/12.pack +0 -0
- package/website/.next/cache/webpack/client-production/13.pack +0 -0
- package/website/.next/cache/webpack/client-production/14.pack +0 -0
- package/website/.next/cache/webpack/client-production/15.pack +0 -0
- package/website/.next/cache/webpack/client-production/16.pack +0 -0
- package/website/.next/cache/webpack/client-production/17.pack +0 -0
- package/website/.next/cache/webpack/client-production/18.pack +0 -0
- package/website/.next/cache/webpack/client-production/2.pack +0 -0
- package/website/.next/cache/webpack/client-production/3.pack +0 -0
- package/website/.next/cache/webpack/client-production/4.pack +0 -0
- package/website/.next/cache/webpack/client-production/5.pack +0 -0
- package/website/.next/cache/webpack/client-production/6.pack +0 -0
- package/website/.next/cache/webpack/client-production/7.pack +0 -0
- package/website/.next/cache/webpack/client-production/8.pack +0 -0
- package/website/.next/cache/webpack/client-production/9.pack +0 -0
- package/website/.next/cache/webpack/client-production/index.pack +0 -0
- package/website/.next/cache/webpack/client-production/index.pack.old +0 -0
- package/website/.next/cache/webpack/edge-server-production/0.pack +0 -0
- package/website/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/website/.next/cache/webpack/server-production/0.pack +0 -0
- package/website/.next/cache/webpack/server-production/1.pack +0 -0
- package/website/.next/cache/webpack/server-production/10.pack +0 -0
- package/website/.next/cache/webpack/server-production/11.pack +0 -0
- package/website/.next/cache/webpack/server-production/12.pack +0 -0
- package/website/.next/cache/webpack/server-production/2.pack +0 -0
- package/website/.next/cache/webpack/server-production/3.pack +0 -0
- package/website/.next/cache/webpack/server-production/4.pack +0 -0
- package/website/.next/cache/webpack/server-production/5.pack +0 -0
- package/website/.next/cache/webpack/server-production/6.pack +0 -0
- package/website/.next/cache/webpack/server-production/7.pack +0 -0
- package/website/.next/cache/webpack/server-production/8.pack +0 -0
- package/website/.next/cache/webpack/server-production/9.pack +0 -0
- package/website/.next/cache/webpack/server-production/index.pack +0 -0
- package/website/.next/cache/webpack/server-production/index.pack.old +0 -0
- package/website/.next/diagnostics/build-diagnostics.json +6 -0
- package/website/.next/diagnostics/framework.json +1 -0
- package/website/.next/export-detail.json +5 -0
- package/website/.next/export-marker.json +6 -0
- package/website/.next/images-manifest.json +57 -0
- package/website/.next/next-minimal-server.js.nft.json +1 -0
- package/website/.next/next-server.js.nft.json +1 -0
- package/website/.next/package.json +1 -0
- package/website/.next/prerender-manifest.json +2143 -0
- package/website/.next/react-loadable-manifest.json +1898 -0
- package/website/.next/required-server-files.json +320 -0
- package/website/.next/routes-manifest.json +161 -0
- package/website/.next/server/app/_not-found/page.js +2 -0
- package/website/.next/server/app/_not-found/page.js.nft.json +1 -0
- package/website/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/_not-found.html +1 -0
- package/website/.next/server/app/_not-found.meta +8 -0
- package/website/.next/server/app/_not-found.rsc +23 -0
- package/website/.next/server/app/about/page.js +2 -0
- package/website/.next/server/app/about/page.js.nft.json +1 -0
- package/website/.next/server/app/about/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/about.html +1 -0
- package/website/.next/server/app/about.meta +7 -0
- package/website/.next/server/app/about.rsc +40 -0
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.html +217 -0
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.meta +7 -0
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.rsc +308 -0
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.html +180 -0
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.meta +7 -0
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.rsc +232 -0
- package/website/.next/server/app/blog/[slug]/page.js +2 -0
- package/website/.next/server/app/blog/[slug]/page.js.nft.json +1 -0
- package/website/.next/server/app/blog/[slug]/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/blog/introducing-ossa-framework.html +263 -0
- package/website/.next/server/app/blog/introducing-ossa-framework.meta +7 -0
- package/website/.next/server/app/blog/introducing-ossa-framework.rsc +351 -0
- package/website/.next/server/app/blog/ossa-production-results.html +198 -0
- package/website/.next/server/app/blog/ossa-production-results.meta +7 -0
- package/website/.next/server/app/blog/ossa-production-results.rsc +302 -0
- package/website/.next/server/app/blog/page.js +2 -0
- package/website/.next/server/app/blog/page.js.nft.json +1 -0
- package/website/.next/server/app/blog/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/blog/welcome-to-ossa.html +22 -0
- package/website/.next/server/app/blog/welcome-to-ossa.meta +7 -0
- package/website/.next/server/app/blog/welcome-to-ossa.rsc +31 -0
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.html +63 -0
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.meta +7 -0
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.rsc +121 -0
- package/website/.next/server/app/blog.html +1 -0
- package/website/.next/server/app/blog.meta +7 -0
- package/website/.next/server/app/blog.rsc +35 -0
- package/website/.next/server/app/design-guide/page.js +12 -0
- package/website/.next/server/app/design-guide/page.js.nft.json +1 -0
- package/website/.next/server/app/design-guide/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/design-guide.html +11 -0
- package/website/.next/server/app/design-guide.meta +7 -0
- package/website/.next/server/app/design-guide.rsc +41 -0
- package/website/.next/server/app/docs.html +1 -0
- package/website/.next/server/app/docs.meta +7 -0
- package/website/.next/server/app/docs.rsc +42 -0
- package/website/.next/server/app/ecosystem/page.js +2 -0
- package/website/.next/server/app/ecosystem/page.js.nft.json +1 -0
- package/website/.next/server/app/ecosystem/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/ecosystem.html +1 -0
- package/website/.next/server/app/ecosystem.meta +7 -0
- package/website/.next/server/app/ecosystem.rsc +40 -0
- package/website/.next/server/app/examples.html +1 -0
- package/website/.next/server/app/examples.meta +7 -0
- package/website/.next/server/app/examples.rsc +14559 -0
- package/website/.next/server/app/index.html +3 -0
- package/website/.next/server/app/index.meta +7 -0
- package/website/.next/server/app/index.rsc +40 -0
- package/website/.next/server/app/license/page.js +2 -0
- package/website/.next/server/app/license/page.js.nft.json +1 -0
- package/website/.next/server/app/license/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/license.html +191 -0
- package/website/.next/server/app/license.meta +7 -0
- package/website/.next/server/app/license.rsc +222 -0
- package/website/.next/server/app/page.js +4 -0
- package/website/.next/server/app/page.js.nft.json +1 -0
- package/website/.next/server/app/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/playground/page.js +111 -0
- package/website/.next/server/app/playground/page.js.nft.json +1 -0
- package/website/.next/server/app/playground/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/playground.html +1 -0
- package/website/.next/server/app/playground.meta +7 -0
- package/website/.next/server/app/playground.rsc +30 -0
- package/website/.next/server/app/robots.txt/route.js +1 -0
- package/website/.next/server/app/robots.txt/route.js.nft.json +1 -0
- package/website/.next/server/app/robots.txt/route_client-reference-manifest.js +1 -0
- package/website/.next/server/app/robots.txt.body +6 -0
- package/website/.next/server/app/robots.txt.meta +1 -0
- package/website/.next/server/app/rss.xml/route.js +18 -0
- package/website/.next/server/app/rss.xml/route.js.nft.json +1 -0
- package/website/.next/server/app/rss.xml/route_client-reference-manifest.js +1 -0
- package/website/.next/server/app/rss.xml.body +11 -0
- package/website/.next/server/app/rss.xml.meta +1 -0
- package/website/.next/server/app/schema/page.js +76 -0
- package/website/.next/server/app/schema/page.js.nft.json +1 -0
- package/website/.next/server/app/schema/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/schema.html +1 -0
- package/website/.next/server/app/schema.meta +7 -0
- package/website/.next/server/app/schema.rsc +26 -0
- package/website/.next/server/app/sitemap.xml/route.js +1 -0
- package/website/.next/server/app/sitemap.xml/route.js.nft.json +1 -0
- package/website/.next/server/app/sitemap.xml/route_client-reference-manifest.js +1 -0
- package/website/.next/server/app/sitemap.xml.body +39 -0
- package/website/.next/server/app/sitemap.xml.meta +1 -0
- package/website/.next/server/app/specification/page.js +10 -0
- package/website/.next/server/app/specification/page.js.nft.json +1 -0
- package/website/.next/server/app/specification/page_client-reference-manifest.js +1 -0
- package/website/.next/server/app/specification.html +9 -0
- package/website/.next/server/app/specification.meta +7 -0
- package/website/.next/server/app/specification.rsc +32 -0
- package/website/.next/server/app-paths-manifest.json +19 -0
- package/website/.next/server/chunks/18.js +1 -0
- package/website/.next/server/chunks/227.js +9 -0
- package/website/.next/server/chunks/339.js +25 -0
- package/website/.next/server/chunks/49.js +1 -0
- package/website/.next/server/chunks/51.js +1 -0
- package/website/.next/server/chunks/57.js +1 -0
- package/website/.next/server/chunks/579.js +16 -0
- package/website/.next/server/chunks/611.js +6 -0
- package/website/.next/server/chunks/873.js +22 -0
- package/website/.next/server/chunks/900.js +1 -0
- package/website/.next/server/chunks/97.js +1 -0
- package/website/.next/server/functions-config-manifest.json +4 -0
- package/website/.next/server/interception-route-rewrite-manifest.js +1 -0
- package/website/.next/server/middleware-build-manifest.js +1 -0
- package/website/.next/server/middleware-manifest.json +6 -0
- package/website/.next/server/middleware-react-loadable-manifest.js +1 -0
- package/website/.next/server/next-font-manifest.js +1 -0
- package/website/.next/server/next-font-manifest.json +1 -0
- package/website/.next/server/pages/404.html +1 -0
- package/website/.next/server/pages/500.html +1 -0
- package/website/.next/server/pages/_app.js +1 -0
- package/website/.next/server/pages/_app.js.nft.json +1 -0
- package/website/.next/server/pages/_document.js +1 -0
- package/website/.next/server/pages/_document.js.nft.json +1 -0
- package/website/.next/server/pages/_error.js +19 -0
- package/website/.next/server/pages/_error.js.nft.json +1 -0
- package/website/.next/server/pages-manifest.json +6 -0
- package/website/.next/server/server-reference-manifest.js +1 -0
- package/website/.next/server/server-reference-manifest.json +1 -0
- package/website/.next/server/webpack-runtime.js +1 -0
- package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_buildManifest.js +1 -0
- package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_ssgManifest.js +1 -0
- package/website/.next/static/chunks/119.05f66060d7798fc9.js +25 -0
- package/website/.next/static/chunks/255-bf407b21685f2318.js +1 -0
- package/website/.next/static/chunks/451-235273497e501ae9.js +1 -0
- package/website/.next/static/chunks/4bd1b696-409494caf8c83275.js +1 -0
- package/website/.next/static/chunks/619-f072ac750404f9da.js +1 -0
- package/website/.next/static/chunks/651-5cd3c87d43b7eb46.js +1 -0
- package/website/.next/static/chunks/778.278ac2aadb2a1105.js +1 -0
- package/website/.next/static/chunks/890-ab915e0570e1961b.js +1 -0
- package/website/.next/static/chunks/app/_not-found/page-ccdaf9d90b537c5d.js +1 -0
- package/website/.next/static/chunks/app/about/page-bd4cb2219b41f933.js +1 -0
- package/website/.next/static/chunks/app/blog/[slug]/page-8fd43000c4969233.js +1 -0
- package/website/.next/static/chunks/app/blog/page-bd4cb2219b41f933.js +1 -0
- package/website/.next/static/chunks/app/design-guide/page-bd4cb2219b41f933.js +1 -0
- package/website/.next/static/chunks/app/ecosystem/page-bd4cb2219b41f933.js +1 -0
- package/website/.next/static/chunks/app/layout-ccacbd90656baa78.js +1 -0
- package/website/.next/static/chunks/app/license/page-bd4cb2219b41f933.js +1 -0
- package/website/.next/static/chunks/app/page-31241dc7465f9590.js +1 -0
- package/website/.next/static/chunks/app/playground/page-c2af00885374900f.js +1 -0
- package/website/.next/static/chunks/app/robots.txt/route-032c05054032342f.js +1 -0
- package/website/.next/static/chunks/app/rss.xml/route-032c05054032342f.js +1 -0
- package/website/.next/static/chunks/app/schema/page-f7c224b281771083.js +1 -0
- package/website/.next/static/chunks/app/sitemap.xml/route-032c05054032342f.js +1 -0
- package/website/.next/static/chunks/app/specification/page-bd4cb2219b41f933.js +1 -0
- package/website/.next/static/chunks/framework-1ce91eb6f9ecda85.js +1 -0
- package/website/.next/static/chunks/main-3099e141650ec47a.js +1 -0
- package/website/.next/static/chunks/main-app-a2fc6ac9305e3090.js +1 -0
- package/website/.next/static/chunks/pages/_app-5addca2b3b969fde.js +1 -0
- package/website/.next/static/chunks/pages/_error-022e4ac7bbb9914f.js +1 -0
- package/website/.next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
- package/website/.next/static/chunks/webpack-6ecb09e5c6e34cb4.js +1 -0
- package/website/.next/static/css/23135390005d4468.css +3 -0
- package/website/.next/static/media/19cfc7226ec3afaa-s.woff2 +0 -0
- package/website/.next/static/media/21350d82a1f187e9-s.woff2 +0 -0
- package/website/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
- package/website/.next/static/media/ba9851c3c22cd980-s.woff2 +0 -0
- package/website/.next/static/media/c5fe6dc8356a8c31-s.woff2 +0 -0
- package/website/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
- package/website/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
- package/website/.next/trace +3 -0
- package/website/.next/types/app/about/page.ts +84 -0
- package/website/.next/types/app/blog/[slug]/page.ts +84 -0
- package/website/.next/types/app/blog/page.ts +84 -0
- package/website/.next/types/app/design-guide/page.ts +84 -0
- package/website/.next/types/app/ecosystem/page.ts +84 -0
- package/website/.next/types/app/license/page.ts +84 -0
- package/website/.next/types/app/page.ts +84 -0
- package/website/.next/types/app/playground/page.ts +84 -0
- package/website/.next/types/app/rss.xml/route.ts +347 -0
- package/website/.next/types/app/schema/page.ts +84 -0
- package/website/.next/types/app/specification/page.ts +84 -0
- package/website/.next/types/cache-life.d.ts +141 -0
- package/website/.next/types/package.json +1 -0
- package/website/.next/types/routes.d.ts +85 -0
- package/website/.next/types/validator.ts +187 -0
- package/website/.wiki-export/Agent-Folder-Structure.md +215 -0
- package/website/.wiki-export/CI-STATUS.md +66 -0
- package/website/.wiki-export/COMPLETE-IMPLEMENTATION-CHECKLIST.md +74 -0
- package/website/.wiki-export/DRUPAL-MODULE-INTEGRATION.md +103 -0
- package/website/.wiki-export/FINAL-STATUS.md +63 -0
- package/website/.wiki-export/Getting-Started.md +87 -0
- package/website/.wiki-export/INSTRUCTIONS.md +46 -0
- package/website/.wiki-export/INTEGRATION-ANALYSIS.md +216 -0
- package/website/.wiki-export/MANIFEST.json +62 -0
- package/website/.wiki-export/OSSA-COMPLIANT-BADGE.md +247 -0
- package/website/.wiki-export/Openapi-Extensions.md +930 -0
- package/website/.wiki-export/README.md +31 -0
- package/website/.wiki-export/RELEASE-READINESS.md +95 -0
- package/website/.wiki-export/VERSIONING.md +284 -0
- package/website/lib/versions.json +77 -0
- package/website/next-env.d.ts +6 -0
- package/website/out/app-build-manifest.json +3 -0
- package/website/out/build-manifest.json +17 -0
- package/website/out/cache/.rscinfo +1 -0
- package/website/out/cache/next-devtools-config.json +1 -0
- package/website/out/cache/webpack/client-development/0.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/1.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/2.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/3.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/index.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/index.pack.gz.old +0 -0
- package/website/out/cache/webpack/client-development-fallback/0.pack.gz +0 -0
- package/website/out/cache/webpack/client-development-fallback/index.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/0.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/1.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/2.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/3.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/index.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/index.pack.gz.old +0 -0
- package/website/out/package.json +1 -0
- package/website/out/prerender-manifest.json +11 -0
- package/website/out/react-loadable-manifest.json +1 -0
- package/website/out/routes-manifest.json +1 -0
- package/website/out/server/app-paths-manifest.json +1 -0
- package/website/out/server/interception-route-rewrite-manifest.js +1 -0
- package/website/out/server/middleware-build-manifest.js +19 -0
- package/website/out/server/middleware-manifest.json +6 -0
- package/website/out/server/middleware-react-loadable-manifest.js +1 -0
- package/website/out/server/next-font-manifest.js +1 -0
- package/website/out/server/next-font-manifest.json +1 -0
- package/website/out/server/pages-manifest.json +1 -0
- package/website/out/server/server-reference-manifest.js +1 -0
- package/website/out/server/server-reference-manifest.json +5 -0
- package/website/out/static/chunks/polyfills.js +1 -0
- package/website/out/static/development/_buildManifest.js +1 -0
- package/website/out/static/development/_ssgManifest.js +1 -0
- package/website/out/trace +2 -0
- package/website/out/types/cache-life.d.ts +141 -0
- package/website/out/types/package.json +1 -0
- package/website/out/types/routes.d.ts +85 -0
- package/website/out/types/validator.ts +187 -0
- package/website/public/examples.json +476 -0
- package/website/public/schemas/openapi-extensions.schema.json +486 -0
- package/website/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
exports.id=18,exports.ids=[18],exports.modules={2062:a=>{"use strict";a.exports=function(a){return"string"==typeof a&&"\uFEFF"===a.charAt(0)?a.slice(1):a}},3666:(a,b,c)=>{"use strict";var d=c(6882);function e(a,b){for(var c in b)f(b,c)&&(a[c]=b[c])}function f(a,b){return Object.prototype.hasOwnProperty.call(a,b)}a.exports=function(a){d(a)||(a={});for(var b=arguments.length,c=1;c<b;c++){var f=arguments[c];d(f)&&e(a,f)}return a}},4018:(a,b,c)=>{"use strict";let d=c(29021),e=c(18032),f=c(98938),g=c(40395),h=c(62715),i=c(17941),j=c(27572),k=c(16481),l=c(72007);function m(a,b){if(""===a)return{data:{},content:a,excerpt:"",orig:a};let c=j(a),d=m.cache[c.content];if(!b){if(d)return(c=Object.assign({},d)).orig=d.orig,c;m.cache[c.content]=c}return n(c,b)}function n(a,b){let c=f(b),d=c.delimiters[0],g="\n"+c.delimiters[1],i=a.content;c.language&&(a.language=c.language);let j=d.length;if(!l.startsWith(i,d,j))return h(a,c),a;if(i.charAt(j)===d.slice(-1))return a;let n=(i=i.slice(j)).length,o=m.language(i,c);o.name&&(a.language=o.name,i=i.slice(o.raw.length));let p=i.indexOf(g);return -1===p&&(p=n),a.matter=i.slice(0,p),""===a.matter.replace(/^\s*#[^\n]+/gm,"").trim()?(a.isEmpty=!0,a.empty=a.content,a.data={}):a.data=k(a.language,a.matter,c),p===n?a.content="":(a.content=i.slice(p+g.length),"\r"===a.content[0]&&(a.content=a.content.slice(1)),"\n"===a.content[0]&&(a.content=a.content.slice(1))),h(a,c),(!0===c.sections||"function"==typeof c.section)&&e(a,c.section),a}m.engines=i,m.stringify=function(a,b,c){return"string"==typeof a&&(a=m(a,c)),g(a,b,c)},m.read=function(a,b){let c=m(d.readFileSync(a,"utf8"),b);return c.path=a,c},m.test=function(a,b){return l.startsWith(a,f(b).delimiters[0])},m.language=function(a,b){let c=f(b).delimiters[0];m.test(a)&&(a=a.slice(c.length));let d=a.slice(0,a.search(/\r?\n/));return{raw:d,name:d?d.trim():""}},m.cache={},m.clearCache=function(){m.cache={}},a.exports=m},5101:(a,b,c)=>{"use strict";var d=c(10456),e=["kind","resolve","construct","instanceOf","predicate","represent","defaultStyle","styleAliases"],f=["scalar","sequence","mapping"];function g(a){var b={};return null!==a&&Object.keys(a).forEach(function(c){a[c].forEach(function(a){b[String(a)]=c})}),b}a.exports=function(a,b){if(Object.keys(b=b||{}).forEach(function(b){if(-1===e.indexOf(b))throw new d('Unknown option "'+b+'" is met in definition of "'+a+'" YAML type.')}),this.tag=a,this.kind=b.kind||null,this.resolve=b.resolve||function(){return!0},this.construct=b.construct||function(a){return a},this.instanceOf=b.instanceOf||null,this.predicate=b.predicate||null,this.represent=b.represent||null,this.defaultStyle=b.defaultStyle||null,this.styleAliases=g(b.styleAliases||null),-1===f.indexOf(this.kind))throw new d('Unknown kind "'+this.kind+'" is specified for "'+a+'" YAML type.')}},6882:a=>{"use strict";a.exports=function(a){return null!=a&&("object"==typeof a||"function"==typeof a)}},10456:a=>{"use strict";function b(a,b){Error.call(this),this.name="YAMLException",this.reason=a,this.mark=b,this.message=(this.reason||"(unknown reason)")+(this.mark?" "+this.mark.toString():""),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=Error().stack||""}b.prototype=Object.create(Error.prototype),b.prototype.constructor=b,b.prototype.toString=function(a){var b=this.name+": ";return b+=this.reason||"(unknown reason)",!a&&this.mark&&(b+=" "+this.mark.toString()),b},a.exports=b},12599:(a,b,c)=>{"use strict";function d(a){if(null===a||0===a.length)return!1;var b=a,c=/\/([gim]*)$/.exec(a),d="";return("/"!==b[0]||(c&&(d=c[1]),!(d.length>3)&&"/"===b[b.length-d.length-1]))&&!0}function e(a){var b=a,c=/\/([gim]*)$/.exec(a),d="";return"/"===b[0]&&(c&&(d=c[1]),b=b.slice(1,b.length-d.length-1)),new RegExp(b,d)}function f(a){var b="/"+a.source+"/";return a.global&&(b+="g"),a.multiline&&(b+="m"),a.ignoreCase&&(b+="i"),b}function g(a){return"[object RegExp]"===Object.prototype.toString.call(a)}a.exports=new(c(5101))("tag:yaml.org,2002:js/regexp",{kind:"scalar",resolve:d,construct:e,predicate:g,represent:f})},16481:(a,b,c)=>{"use strict";let d=c(66266),e=c(98938);a.exports=function(a,b,c){let f=e(c),g=d(a,f);if("function"!=typeof g.parse)throw TypeError('expected "'+a+'.parse" to be a function');return g.parse(b,f)}},17941:(module,exports,__webpack_require__)=>{"use strict";let yaml=__webpack_require__(42627),engines=exports=module.exports;engines.yaml={parse:yaml.safeLoad.bind(yaml),stringify:yaml.safeDump.bind(yaml)},engines.json={parse:JSON.parse.bind(JSON),stringify:function(a,b){let c=Object.assign({replacer:null,space:2},b);return JSON.stringify(a,c.replacer,c.space)}},engines.javascript={parse:function parse(str,options,wrap){try{return!1!==wrap&&(str="(function() {\nreturn "+str.trim()+";\n}());"),eval(str)||{}}catch(err){if(!1!==wrap&&/(unexpected|identifier)/i.test(err.message))return parse(str,options,!1);throw SyntaxError(err)}},stringify:function(){throw Error("stringifying JavaScript is not supported")}}},18032:(a,b,c)=>{"use strict";var d=c(65985),e=c(3666);function f(a,b){return a.slice(0,b.length)===b&&a.charAt(b.length+1)!==b.slice(-1)}function g(a){if("object"!==d(a)&&(a={content:a}),"string"!=typeof a.content&&!k(a.content))throw TypeError("expected a buffer or string");return a.content=a.content.toString(),a.sections=[],a}function h(a,b){return a?a.slice(b.length).trim():""}function i(){return{key:"",data:"",content:""}}function j(a){return a}function k(a){return!!a&&!!a.constructor&&"function"==typeof a.constructor.isBuffer&&a.constructor.isBuffer(a)}a.exports=function(a,b){"function"==typeof b&&(b={parse:b});var c=g(a),d=e({},{section_delimiter:"---",parse:j},b),k=d.section_delimiter,l=c.content.split(/\r?\n/),m=null,n=i(),o=[],p=[];function q(a){c.content=a,m=[],o=[]}function r(a){p.length&&(n.key=h(p[0],k),n.content=a,d.parse(n,m),m.push(n),n=i(),o=[],p=[])}for(var s=0;s<l.length;s++){var t=l[s],u=p.length,v=t.trim();if(f(v,k)){if(3===v.length&&0!==s){if(0===u||2===u){o.push(t);continue}p.push(v),n.data=o.join("\n"),o=[];continue}null===m&&q(o.join("\n")),2===u&&r(o.join("\n")),p.push(v);continue}o.push(t)}return null===m?q(o.join("\n")):r(o.join("\n")),c.sections=m,c}},19920:(a,b,c)=>{"use strict";var d=c(97168);function e(a,b,c,d,e){this.name=a,this.buffer=b,this.position=c,this.line=d,this.column=e}e.prototype.getSnippet=function(a,b){var c,e,f,g,h;if(!this.buffer)return null;for(a=a||4,b=b||75,c="",e=this.position;e>0&&-1==="\0\r\n\x85\u2028\u2029".indexOf(this.buffer.charAt(e-1));)if(e-=1,this.position-e>b/2-1){c=" ... ",e+=5;break}for(f="",g=this.position;g<this.buffer.length&&-1==="\0\r\n\x85\u2028\u2029".indexOf(this.buffer.charAt(g));)if((g+=1)-this.position>b/2-1){f=" ... ",g-=5;break}return h=this.buffer.slice(e,g),d.repeat(" ",a)+c+h+f+"\n"+d.repeat(" ",a+this.position-e+c.length)+"^"},e.prototype.toString=function(a){var b,c="";return this.name&&(c+='in "'+this.name+'" '),c+="at line "+(this.line+1)+", column "+(this.column+1),!a&&(b=this.getSnippet())&&(c+=":\n"+b),c},a.exports=e},20910:(a,b,c)=>{"use strict";a.exports=new(c(30402))({include:[c(40603)]})},27572:(a,b,c)=>{"use strict";let d=c(65985),e=c(40395),f=c(72007);a.exports=function(a){return"object"!==d(a)&&(a={content:a}),"object"!==d(a.data)&&(a.data={}),a.contents&&null==a.content&&(a.content=a.contents),f.define(a,"orig",f.toBuffer(a.content)),f.define(a,"language",a.language||""),f.define(a,"matter",a.matter||""),f.define(a,"stringify",function(b,c){return c&&c.language&&(a.language=c.language),e(a,b,c)}),a.content=f.toString(a.content),a.isEmpty=!1,a.excerpt="",a}},29092:(a,b,c)=>{"use strict";function d(){return!0}function e(){}function f(){return""}function g(a){return void 0===a}a.exports=new(c(5101))("tag:yaml.org,2002:js/undefined",{kind:"scalar",resolve:d,construct:e,predicate:g,represent:f})},30402:(a,b,c)=>{"use strict";var d=c(97168),e=c(10456),f=c(5101);function g(a,b,c){var d=[];return a.include.forEach(function(a){c=g(a,b,c)}),a[b].forEach(function(a){c.forEach(function(b,c){b.tag===a.tag&&b.kind===a.kind&&d.push(c)}),c.push(a)}),c.filter(function(a,b){return -1===d.indexOf(b)})}function h(){var a,b,c={scalar:{},sequence:{},mapping:{},fallback:{}};function d(a){c[a.kind][a.tag]=c.fallback[a.tag]=a}for(a=0,b=arguments.length;a<b;a+=1)arguments[a].forEach(d);return c}function i(a){this.include=a.include||[],this.implicit=a.implicit||[],this.explicit=a.explicit||[],this.implicit.forEach(function(a){if(a.loadKind&&"scalar"!==a.loadKind)throw new e("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.")}),this.compiledImplicit=g(this,"implicit",[]),this.compiledExplicit=g(this,"explicit",[]),this.compiledTypeMap=h(this.compiledImplicit,this.compiledExplicit)}i.DEFAULT=null,i.create=function(){var a,b;switch(arguments.length){case 1:a=i.DEFAULT,b=arguments[0];break;case 2:a=arguments[0],b=arguments[1];break;default:throw new e("Wrong number of arguments for Schema.create function")}if(a=d.toArray(a),b=d.toArray(b),!a.every(function(a){return a instanceof i}))throw new e("Specified list of super schemas (or a single Schema object) contains a non-Schema object.");if(!b.every(function(a){return a instanceof f}))throw new e("Specified list of YAML types (or a single Type object) contains a non-Type object.");return new i({include:a,explicit:b})},a.exports=i},35743:(a,b,c)=>{"use strict";var d=c(5101),e=Object.prototype.toString;a.exports=new d("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:function(a){if(null===a)return!0;var b,c,d,f,g,h=a;for(b=0,g=Array(h.length),c=h.length;b<c;b+=1){if(d=h[b],"[object Object]"!==e.call(d)||1!==(f=Object.keys(d)).length)return!1;g[b]=[f[0],d[f[0]]]}return!0},construct:function(a){if(null===a)return[];var b,c,d,e,f,g=a;for(b=0,f=Array(g.length),c=g.length;b<c;b+=1)e=Object.keys(d=g[b]),f[b]=[e[0],d[e[0]]];return f}})},40395:(a,b,c)=>{"use strict";let d=c(65985),e=c(66266),f=c(98938);function g(a){return"\n"!==a.slice(-1)?a+"\n":a}a.exports=function(a,b,c){if(null==b&&null==c)switch(d(a)){case"object":b=a.data,c={};break;case"string":return a;default:throw TypeError("expected file to be a string or object")}let h=a.content,i=f(c);if(null==b){if(!i.data)return a;b=i.data}let j=a.language||i.language,k=e(j,i);if("function"!=typeof k.stringify)throw TypeError('expected "'+j+'.stringify" to be a function');b=Object.assign({},a.data,b);let l=i.delimiters[0],m=i.delimiters[1],n=k.stringify(b,c).trim(),o="";return"{}"!==n&&(o=g(l)+g(n)+g(m)),"string"==typeof a.excerpt&&""!==a.excerpt&&-1===h.indexOf(a.excerpt.trim())&&(o+=g(a.excerpt)+g(m)),o+g(h)}},40603:(a,b,c)=>{"use strict";a.exports=new(c(30402))({include:[c(86688)],implicit:[c(96133),c(45864),c(47035),c(45656)]})},42627:(a,b,c)=>{"use strict";a.exports=c(89390)},42848:function(a){!function(b,c){a.exports=c()}(0,function(){return function(a){var b={};function c(d){if(b[d])return b[d].exports;var e=b[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,c),e.loaded=!0,e.exports}return c.m=a,c.c=b,c.p="",c(0)}([function(a,b,c){"use strict";Object.defineProperty(b,"__esModule",{value:!0});var d=c(1),e=c(3),f=c(8),g=c(15);function h(a,b,c){var g,h=null,i=function(a,b){c&&c(a,b),h&&h.visit(a,b)},j="function"==typeof c?i:null,k=!1;if(b){k="boolean"==typeof b.comment&&b.comment;var l="boolean"==typeof b.attachComment&&b.attachComment;(k||l)&&((h=new d.CommentHandler).attach=l,b.comment=!0,j=i)}var m=!1;b&&"string"==typeof b.sourceType&&(m="module"===b.sourceType),g=b&&"boolean"==typeof b.jsx&&b.jsx?new e.JSXParser(a,b,j):new f.Parser(a,b,j);var n=m?g.parseModule():g.parseScript();return k&&h&&(n.comments=h.comments),g.config.tokens&&(n.tokens=g.tokens),g.config.tolerant&&(n.errors=g.errorHandler.errors),n}b.parse=h,b.parseModule=function(a,b,c){var d=b||{};return d.sourceType="module",h(a,d,c)},b.parseScript=function(a,b,c){var d=b||{};return d.sourceType="script",h(a,d,c)},b.tokenize=function(a,b,c){var d,e=new g.Tokenizer(a,b);d=[];try{for(;;){var f=e.getNextToken();if(!f)break;c&&(f=c(f)),d.push(f)}}catch(a){e.errorHandler.tolerate(a)}return e.errorHandler.tolerant&&(d.errors=e.errors()),d},b.Syntax=c(2).Syntax,b.version="4.0.1"},function(a,b,c){"use strict";Object.defineProperty(b,"__esModule",{value:!0});var d=c(2);b.CommentHandler=function(){function a(){this.attach=!1,this.comments=[],this.stack=[],this.leading=[],this.trailing=[]}return a.prototype.insertInnerComments=function(a,b){if(a.type===d.Syntax.BlockStatement&&0===a.body.length){for(var c=[],e=this.leading.length-1;e>=0;--e){var f=this.leading[e];b.end.offset>=f.start&&(c.unshift(f.comment),this.leading.splice(e,1),this.trailing.splice(e,1))}c.length&&(a.innerComments=c)}},a.prototype.findTrailingComments=function(a){var b=[];if(this.trailing.length>0){for(var c=this.trailing.length-1;c>=0;--c){var d=this.trailing[c];d.start>=a.end.offset&&b.unshift(d.comment)}return this.trailing.length=0,b}var e=this.stack[this.stack.length-1];if(e&&e.node.trailingComments){var f=e.node.trailingComments[0];f&&f.range[0]>=a.end.offset&&(b=e.node.trailingComments,delete e.node.trailingComments)}return b},a.prototype.findLeadingComments=function(a){for(var b,c=[];this.stack.length>0;){var d=this.stack[this.stack.length-1];if(d&&d.start>=a.start.offset)b=d.node,this.stack.pop();else break}if(b){for(var e=b.leadingComments?b.leadingComments.length:0,f=e-1;f>=0;--f){var g=b.leadingComments[f];g.range[1]<=a.start.offset&&(c.unshift(g),b.leadingComments.splice(f,1))}return b.leadingComments&&0===b.leadingComments.length&&delete b.leadingComments,c}for(var f=this.leading.length-1;f>=0;--f){var d=this.leading[f];d.start<=a.start.offset&&(c.unshift(d.comment),this.leading.splice(f,1))}return c},a.prototype.visitNode=function(a,b){if(a.type!==d.Syntax.Program||!(a.body.length>0)){this.insertInnerComments(a,b);var c=this.findTrailingComments(b),e=this.findLeadingComments(b);e.length>0&&(a.leadingComments=e),c.length>0&&(a.trailingComments=c),this.stack.push({node:a,start:b.start.offset})}},a.prototype.visitComment=function(a,b){var c="L"===a.type[0]?"Line":"Block",d={type:c,value:a.value};if(a.range&&(d.range=a.range),a.loc&&(d.loc=a.loc),this.comments.push(d),this.attach){var e={comment:{type:c,value:a.value,range:[b.start.offset,b.end.offset]},start:b.start.offset};a.loc&&(e.comment.loc=a.loc),a.type=c,this.leading.push(e),this.trailing.push(e)}},a.prototype.visit=function(a,b){"LineComment"===a.type||"BlockComment"===a.type?this.visitComment(a,b):this.attach&&this.visitNode(a,b)},a}()},function(a,b){"use strict";Object.defineProperty(b,"__esModule",{value:!0}),b.Syntax={AssignmentExpression:"AssignmentExpression",AssignmentPattern:"AssignmentPattern",ArrayExpression:"ArrayExpression",ArrayPattern:"ArrayPattern",ArrowFunctionExpression:"ArrowFunctionExpression",AwaitExpression:"AwaitExpression",BlockStatement:"BlockStatement",BinaryExpression:"BinaryExpression",BreakStatement:"BreakStatement",CallExpression:"CallExpression",CatchClause:"CatchClause",ClassBody:"ClassBody",ClassDeclaration:"ClassDeclaration",ClassExpression:"ClassExpression",ConditionalExpression:"ConditionalExpression",ContinueStatement:"ContinueStatement",DoWhileStatement:"DoWhileStatement",DebuggerStatement:"DebuggerStatement",EmptyStatement:"EmptyStatement",ExportAllDeclaration:"ExportAllDeclaration",ExportDefaultDeclaration:"ExportDefaultDeclaration",ExportNamedDeclaration:"ExportNamedDeclaration",ExportSpecifier:"ExportSpecifier",ExpressionStatement:"ExpressionStatement",ForStatement:"ForStatement",ForOfStatement:"ForOfStatement",ForInStatement:"ForInStatement",FunctionDeclaration:"FunctionDeclaration",FunctionExpression:"FunctionExpression",Identifier:"Identifier",IfStatement:"IfStatement",ImportDeclaration:"ImportDeclaration",ImportDefaultSpecifier:"ImportDefaultSpecifier",ImportNamespaceSpecifier:"ImportNamespaceSpecifier",ImportSpecifier:"ImportSpecifier",Literal:"Literal",LabeledStatement:"LabeledStatement",LogicalExpression:"LogicalExpression",MemberExpression:"MemberExpression",MetaProperty:"MetaProperty",MethodDefinition:"MethodDefinition",NewExpression:"NewExpression",ObjectExpression:"ObjectExpression",ObjectPattern:"ObjectPattern",Program:"Program",Property:"Property",RestElement:"RestElement",ReturnStatement:"ReturnStatement",SequenceExpression:"SequenceExpression",SpreadElement:"SpreadElement",Super:"Super",SwitchCase:"SwitchCase",SwitchStatement:"SwitchStatement",TaggedTemplateExpression:"TaggedTemplateExpression",TemplateElement:"TemplateElement",TemplateLiteral:"TemplateLiteral",ThisExpression:"ThisExpression",ThrowStatement:"ThrowStatement",TryStatement:"TryStatement",UnaryExpression:"UnaryExpression",UpdateExpression:"UpdateExpression",VariableDeclaration:"VariableDeclaration",VariableDeclarator:"VariableDeclarator",WhileStatement:"WhileStatement",WithStatement:"WithStatement",YieldExpression:"YieldExpression"}},function(a,b,c){"use strict";var d=this&&this.__extends||function(){var a=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(a,b){a.__proto__=b}||function(a,b){for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c])};return function(b,c){function d(){this.constructor=b}a(b,c),b.prototype=null===c?Object.create(c):(d.prototype=c.prototype,new d)}}();Object.defineProperty(b,"__esModule",{value:!0});var e=c(4),f=c(5),g=c(6),h=c(7),i=c(8),j=c(13),k=c(14);function l(a){var b;switch(a.type){case g.JSXSyntax.JSXIdentifier:b=a.name;break;case g.JSXSyntax.JSXNamespacedName:var c=a;b=l(c.namespace)+":"+l(c.name);break;case g.JSXSyntax.JSXMemberExpression:var d=a;b=l(d.object)+"."+l(d.property)}return b}j.TokenName[100]="JSXIdentifier",j.TokenName[101]="JSXText",b.JSXParser=function(a){function b(b,c,d){return a.call(this,b,c,d)||this}return d(b,a),b.prototype.parsePrimaryExpression=function(){return this.match("<")?this.parseJSXRoot():a.prototype.parsePrimaryExpression.call(this)},b.prototype.startJSX=function(){this.scanner.index=this.startMarker.index,this.scanner.lineNumber=this.startMarker.line,this.scanner.lineStart=this.startMarker.index-this.startMarker.column},b.prototype.finishJSX=function(){this.nextToken()},b.prototype.reenterJSX=function(){this.startJSX(),this.expectJSX("}"),this.config.tokens&&this.tokens.pop()},b.prototype.createJSXNode=function(){return this.collectComments(),{index:this.scanner.index,line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart}},b.prototype.createJSXChildNode=function(){return{index:this.scanner.index,line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart}},b.prototype.scanXHTMLEntity=function(a){for(var b="&",c=!0,d=!1,f=!1,g=!1;!this.scanner.eof()&&c&&!d;){var h=this.scanner.source[this.scanner.index];if(h===a)break;if(d=";"===h,b+=h,++this.scanner.index,!d)switch(b.length){case 2:f="#"===h;break;case 3:f&&(c=(g="x"===h)||e.Character.isDecimalDigit(h.charCodeAt(0)),f=f&&!g);break;default:c=(c=c&&!(f&&!e.Character.isDecimalDigit(h.charCodeAt(0))))&&!(g&&!e.Character.isHexDigit(h.charCodeAt(0)))}}if(c&&d&&b.length>2){var i=b.substr(1,b.length-2);f&&i.length>1?b=String.fromCharCode(parseInt(i.substr(1),10)):g&&i.length>2?b=String.fromCharCode(parseInt("0"+i.substr(1),16)):f||g||!k.XHTMLEntities[i]||(b=k.XHTMLEntities[i])}return b},b.prototype.lexJSX=function(){var a=this.scanner.source.charCodeAt(this.scanner.index);if(60===a||62===a||47===a||58===a||61===a||123===a||125===a){var b=this.scanner.source[this.scanner.index++];return{type:7,value:b,lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:this.scanner.index-1,end:this.scanner.index}}if(34===a||39===a){for(var c=this.scanner.index,d=this.scanner.source[this.scanner.index++],f="";!this.scanner.eof();){var g=this.scanner.source[this.scanner.index++];if(g===d)break;"&"===g?f+=this.scanXHTMLEntity(d):f+=g}return{type:8,value:f,lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:c,end:this.scanner.index}}if(46===a){var h=this.scanner.source.charCodeAt(this.scanner.index+1),i=this.scanner.source.charCodeAt(this.scanner.index+2),b=46===h&&46===i?"...":".",c=this.scanner.index;return this.scanner.index+=b.length,{type:7,value:b,lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:c,end:this.scanner.index}}if(96===a)return{type:10,value:"",lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:this.scanner.index,end:this.scanner.index};if(e.Character.isIdentifierStart(a)&&92!==a){var c=this.scanner.index;for(++this.scanner.index;!this.scanner.eof();){var g=this.scanner.source.charCodeAt(this.scanner.index);if(e.Character.isIdentifierPart(g)&&92!==g)++this.scanner.index;else if(45===g)++this.scanner.index;else break}return{type:100,value:this.scanner.source.slice(c,this.scanner.index),lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:c,end:this.scanner.index}}return this.scanner.lex()},b.prototype.nextJSXToken=function(){this.collectComments(),this.startMarker.index=this.scanner.index,this.startMarker.line=this.scanner.lineNumber,this.startMarker.column=this.scanner.index-this.scanner.lineStart;var a=this.lexJSX();return this.lastMarker.index=this.scanner.index,this.lastMarker.line=this.scanner.lineNumber,this.lastMarker.column=this.scanner.index-this.scanner.lineStart,this.config.tokens&&this.tokens.push(this.convertToken(a)),a},b.prototype.nextJSXText=function(){this.startMarker.index=this.scanner.index,this.startMarker.line=this.scanner.lineNumber,this.startMarker.column=this.scanner.index-this.scanner.lineStart;for(var a=this.scanner.index,b="";!this.scanner.eof();){var c=this.scanner.source[this.scanner.index];if("{"===c||"<"===c)break;++this.scanner.index,b+=c,e.Character.isLineTerminator(c.charCodeAt(0))&&(++this.scanner.lineNumber,"\r"===c&&"\n"===this.scanner.source[this.scanner.index]&&++this.scanner.index,this.scanner.lineStart=this.scanner.index)}this.lastMarker.index=this.scanner.index,this.lastMarker.line=this.scanner.lineNumber,this.lastMarker.column=this.scanner.index-this.scanner.lineStart;var d={type:101,value:b,lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:a,end:this.scanner.index};return b.length>0&&this.config.tokens&&this.tokens.push(this.convertToken(d)),d},b.prototype.peekJSXToken=function(){var a=this.scanner.saveState();this.scanner.scanComments();var b=this.lexJSX();return this.scanner.restoreState(a),b},b.prototype.expectJSX=function(a){var b=this.nextJSXToken();(7!==b.type||b.value!==a)&&this.throwUnexpectedToken(b)},b.prototype.matchJSX=function(a){var b=this.peekJSXToken();return 7===b.type&&b.value===a},b.prototype.parseJSXIdentifier=function(){var a=this.createJSXNode(),b=this.nextJSXToken();return 100!==b.type&&this.throwUnexpectedToken(b),this.finalize(a,new f.JSXIdentifier(b.value))},b.prototype.parseJSXElementName=function(){var a=this.createJSXNode(),b=this.parseJSXIdentifier();if(this.matchJSX(":")){var c=b;this.expectJSX(":");var d=this.parseJSXIdentifier();b=this.finalize(a,new f.JSXNamespacedName(c,d))}else if(this.matchJSX("."))for(;this.matchJSX(".");){var e=b;this.expectJSX(".");var g=this.parseJSXIdentifier();b=this.finalize(a,new f.JSXMemberExpression(e,g))}return b},b.prototype.parseJSXAttributeName=function(){var a,b=this.createJSXNode(),c=this.parseJSXIdentifier();if(this.matchJSX(":")){var d=c;this.expectJSX(":");var e=this.parseJSXIdentifier();a=this.finalize(b,new f.JSXNamespacedName(d,e))}else a=c;return a},b.prototype.parseJSXStringLiteralAttribute=function(){var a=this.createJSXNode(),b=this.nextJSXToken();8!==b.type&&this.throwUnexpectedToken(b);var c=this.getTokenRaw(b);return this.finalize(a,new h.Literal(b.value,c))},b.prototype.parseJSXExpressionAttribute=function(){var a=this.createJSXNode();this.expectJSX("{"),this.finishJSX(),this.match("}")&&this.tolerateError("JSX attributes must only be assigned a non-empty expression");var b=this.parseAssignmentExpression();return this.reenterJSX(),this.finalize(a,new f.JSXExpressionContainer(b))},b.prototype.parseJSXAttributeValue=function(){return this.matchJSX("{")?this.parseJSXExpressionAttribute():this.matchJSX("<")?this.parseJSXElement():this.parseJSXStringLiteralAttribute()},b.prototype.parseJSXNameValueAttribute=function(){var a=this.createJSXNode(),b=this.parseJSXAttributeName(),c=null;return this.matchJSX("=")&&(this.expectJSX("="),c=this.parseJSXAttributeValue()),this.finalize(a,new f.JSXAttribute(b,c))},b.prototype.parseJSXSpreadAttribute=function(){var a=this.createJSXNode();this.expectJSX("{"),this.expectJSX("..."),this.finishJSX();var b=this.parseAssignmentExpression();return this.reenterJSX(),this.finalize(a,new f.JSXSpreadAttribute(b))},b.prototype.parseJSXAttributes=function(){for(var a=[];!this.matchJSX("/")&&!this.matchJSX(">");){var b=this.matchJSX("{")?this.parseJSXSpreadAttribute():this.parseJSXNameValueAttribute();a.push(b)}return a},b.prototype.parseJSXOpeningElement=function(){var a=this.createJSXNode();this.expectJSX("<");var b=this.parseJSXElementName(),c=this.parseJSXAttributes(),d=this.matchJSX("/");return d&&this.expectJSX("/"),this.expectJSX(">"),this.finalize(a,new f.JSXOpeningElement(b,d,c))},b.prototype.parseJSXBoundaryElement=function(){var a=this.createJSXNode();if(this.expectJSX("<"),this.matchJSX("/")){this.expectJSX("/");var b=this.parseJSXElementName();return this.expectJSX(">"),this.finalize(a,new f.JSXClosingElement(b))}var c=this.parseJSXElementName(),d=this.parseJSXAttributes(),e=this.matchJSX("/");return e&&this.expectJSX("/"),this.expectJSX(">"),this.finalize(a,new f.JSXOpeningElement(c,e,d))},b.prototype.parseJSXEmptyExpression=function(){var a=this.createJSXChildNode();return this.collectComments(),this.lastMarker.index=this.scanner.index,this.lastMarker.line=this.scanner.lineNumber,this.lastMarker.column=this.scanner.index-this.scanner.lineStart,this.finalize(a,new f.JSXEmptyExpression)},b.prototype.parseJSXExpressionContainer=function(){var a,b=this.createJSXNode();return this.expectJSX("{"),this.matchJSX("}")?(a=this.parseJSXEmptyExpression(),this.expectJSX("}")):(this.finishJSX(),a=this.parseAssignmentExpression(),this.reenterJSX()),this.finalize(b,new f.JSXExpressionContainer(a))},b.prototype.parseJSXChildren=function(){for(var a=[];!this.scanner.eof();){var b=this.createJSXChildNode(),c=this.nextJSXText();if(c.start<c.end){var d=this.getTokenRaw(c),e=this.finalize(b,new f.JSXText(c.value,d));a.push(e)}if("{"===this.scanner.source[this.scanner.index]){var g=this.parseJSXExpressionContainer();a.push(g)}else break}return a},b.prototype.parseComplexJSXElement=function(a){for(var b=[];!this.scanner.eof();){a.children=a.children.concat(this.parseJSXChildren());var c=this.createJSXChildNode(),d=this.parseJSXBoundaryElement();if(d.type===g.JSXSyntax.JSXOpeningElement){var e=d;if(e.selfClosing){var h=this.finalize(c,new f.JSXElement(e,[],null));a.children.push(h)}else b.push(a),a={node:c,opening:e,closing:null,children:[]}}if(d.type===g.JSXSyntax.JSXClosingElement){a.closing=d;var i=l(a.opening.name);if(i!==l(a.closing.name)&&this.tolerateError("Expected corresponding JSX closing tag for %0",i),b.length>0){var h=this.finalize(a.node,new f.JSXElement(a.opening,a.children,a.closing));(a=b[b.length-1]).children.push(h),b.pop()}else break}}return a},b.prototype.parseJSXElement=function(){var a=this.createJSXNode(),b=this.parseJSXOpeningElement(),c=[],d=null;if(!b.selfClosing){var e=this.parseComplexJSXElement({node:a,opening:b,closing:d,children:c});c=e.children,d=e.closing}return this.finalize(a,new f.JSXElement(b,c,d))},b.prototype.parseJSXRoot=function(){this.config.tokens&&this.tokens.pop(),this.startJSX();var a=this.parseJSXElement();return this.finishJSX(),a},b.prototype.isStartOfExpression=function(){return a.prototype.isStartOfExpression.call(this)||this.match("<")},b}(i.Parser)},function(a,b){"use strict";Object.defineProperty(b,"__esModule",{value:!0});var c=/[\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\u08A0-\u08B4\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\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\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\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-\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\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\u2118-\u211D\u2124\u2126\u2128\u212A-\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\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AD\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\uDF30-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\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[\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDEC0-\uDEF8]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\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]|\uD82C[\uDC00\uDC01]|\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]|\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]|\uD87E[\uDC00-\uDE1D]/,d=/[\xAA\xB5\xB7\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386-\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\u08A0-\u08B4\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\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\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\u0C81-\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\u0D01-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\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\u1369-\u1371\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-\u19DA\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\u1CD0-\u1CD2\u1CD4-\u1CF6\u1CF8\u1CF9\u1D00-\u1DF5\u1DFC-\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\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\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\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AD\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C4\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\uDF30-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\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\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[\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\uDEC0-\uDEF8]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\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]|\uD82C[\uDC00\uDC01]|\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]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6]|\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]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/;b.Character={fromCodePoint:function(a){return a<65536?String.fromCharCode(a):String.fromCharCode(55296+(a-65536>>10))+String.fromCharCode(56320+(a-65536&1023))},isWhiteSpace:function(a){return 32===a||9===a||11===a||12===a||160===a||a>=5760&&[5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8239,8287,12288,65279].indexOf(a)>=0},isLineTerminator:function(a){return 10===a||13===a||8232===a||8233===a},isIdentifierStart:function(a){return 36===a||95===a||a>=65&&a<=90||a>=97&&a<=122||92===a||a>=128&&c.test(b.Character.fromCodePoint(a))},isIdentifierPart:function(a){return 36===a||95===a||a>=65&&a<=90||a>=97&&a<=122||a>=48&&a<=57||92===a||a>=128&&d.test(b.Character.fromCodePoint(a))},isDecimalDigit:function(a){return a>=48&&a<=57},isHexDigit:function(a){return a>=48&&a<=57||a>=65&&a<=70||a>=97&&a<=102},isOctalDigit:function(a){return a>=48&&a<=55}}},function(a,b,c){"use strict";Object.defineProperty(b,"__esModule",{value:!0});var d=c(6);b.JSXClosingElement=function(){return function(a){this.type=d.JSXSyntax.JSXClosingElement,this.name=a}}(),b.JSXElement=function(){return function(a,b,c){this.type=d.JSXSyntax.JSXElement,this.openingElement=a,this.children=b,this.closingElement=c}}(),b.JSXEmptyExpression=function(){return function(){this.type=d.JSXSyntax.JSXEmptyExpression}}(),b.JSXExpressionContainer=function(){return function(a){this.type=d.JSXSyntax.JSXExpressionContainer,this.expression=a}}(),b.JSXIdentifier=function(){return function(a){this.type=d.JSXSyntax.JSXIdentifier,this.name=a}}(),b.JSXMemberExpression=function(){return function(a,b){this.type=d.JSXSyntax.JSXMemberExpression,this.object=a,this.property=b}}(),b.JSXAttribute=function(){return function(a,b){this.type=d.JSXSyntax.JSXAttribute,this.name=a,this.value=b}}(),b.JSXNamespacedName=function(){return function(a,b){this.type=d.JSXSyntax.JSXNamespacedName,this.namespace=a,this.name=b}}(),b.JSXOpeningElement=function(){return function(a,b,c){this.type=d.JSXSyntax.JSXOpeningElement,this.name=a,this.selfClosing=b,this.attributes=c}}(),b.JSXSpreadAttribute=function(){return function(a){this.type=d.JSXSyntax.JSXSpreadAttribute,this.argument=a}}(),b.JSXText=function(){return function(a,b){this.type=d.JSXSyntax.JSXText,this.value=a,this.raw=b}}()},function(a,b){"use strict";Object.defineProperty(b,"__esModule",{value:!0}),b.JSXSyntax={JSXAttribute:"JSXAttribute",JSXClosingElement:"JSXClosingElement",JSXElement:"JSXElement",JSXEmptyExpression:"JSXEmptyExpression",JSXExpressionContainer:"JSXExpressionContainer",JSXIdentifier:"JSXIdentifier",JSXMemberExpression:"JSXMemberExpression",JSXNamespacedName:"JSXNamespacedName",JSXOpeningElement:"JSXOpeningElement",JSXSpreadAttribute:"JSXSpreadAttribute",JSXText:"JSXText"}},function(a,b,c){"use strict";Object.defineProperty(b,"__esModule",{value:!0});var d=c(2);b.ArrayExpression=function(){return function(a){this.type=d.Syntax.ArrayExpression,this.elements=a}}(),b.ArrayPattern=function(){return function(a){this.type=d.Syntax.ArrayPattern,this.elements=a}}(),b.ArrowFunctionExpression=function(){return function(a,b,c){this.type=d.Syntax.ArrowFunctionExpression,this.id=null,this.params=a,this.body=b,this.generator=!1,this.expression=c,this.async=!1}}(),b.AssignmentExpression=function(){return function(a,b,c){this.type=d.Syntax.AssignmentExpression,this.operator=a,this.left=b,this.right=c}}(),b.AssignmentPattern=function(){return function(a,b){this.type=d.Syntax.AssignmentPattern,this.left=a,this.right=b}}(),b.AsyncArrowFunctionExpression=function(){return function(a,b,c){this.type=d.Syntax.ArrowFunctionExpression,this.id=null,this.params=a,this.body=b,this.generator=!1,this.expression=c,this.async=!0}}(),b.AsyncFunctionDeclaration=function(){return function(a,b,c){this.type=d.Syntax.FunctionDeclaration,this.id=a,this.params=b,this.body=c,this.generator=!1,this.expression=!1,this.async=!0}}(),b.AsyncFunctionExpression=function(){return function(a,b,c){this.type=d.Syntax.FunctionExpression,this.id=a,this.params=b,this.body=c,this.generator=!1,this.expression=!1,this.async=!0}}(),b.AwaitExpression=function(){return function(a){this.type=d.Syntax.AwaitExpression,this.argument=a}}(),b.BinaryExpression=function(){return function(a,b,c){var e="||"===a||"&&"===a;this.type=e?d.Syntax.LogicalExpression:d.Syntax.BinaryExpression,this.operator=a,this.left=b,this.right=c}}(),b.BlockStatement=function(){return function(a){this.type=d.Syntax.BlockStatement,this.body=a}}(),b.BreakStatement=function(){return function(a){this.type=d.Syntax.BreakStatement,this.label=a}}(),b.CallExpression=function(){return function(a,b){this.type=d.Syntax.CallExpression,this.callee=a,this.arguments=b}}(),b.CatchClause=function(){return function(a,b){this.type=d.Syntax.CatchClause,this.param=a,this.body=b}}(),b.ClassBody=function(){return function(a){this.type=d.Syntax.ClassBody,this.body=a}}(),b.ClassDeclaration=function(){return function(a,b,c){this.type=d.Syntax.ClassDeclaration,this.id=a,this.superClass=b,this.body=c}}(),b.ClassExpression=function(){return function(a,b,c){this.type=d.Syntax.ClassExpression,this.id=a,this.superClass=b,this.body=c}}(),b.ComputedMemberExpression=function(){return function(a,b){this.type=d.Syntax.MemberExpression,this.computed=!0,this.object=a,this.property=b}}(),b.ConditionalExpression=function(){return function(a,b,c){this.type=d.Syntax.ConditionalExpression,this.test=a,this.consequent=b,this.alternate=c}}(),b.ContinueStatement=function(){return function(a){this.type=d.Syntax.ContinueStatement,this.label=a}}(),b.DebuggerStatement=function(){return function(){this.type=d.Syntax.DebuggerStatement}}(),b.Directive=function(){return function(a,b){this.type=d.Syntax.ExpressionStatement,this.expression=a,this.directive=b}}(),b.DoWhileStatement=function(){return function(a,b){this.type=d.Syntax.DoWhileStatement,this.body=a,this.test=b}}(),b.EmptyStatement=function(){return function(){this.type=d.Syntax.EmptyStatement}}(),b.ExportAllDeclaration=function(){return function(a){this.type=d.Syntax.ExportAllDeclaration,this.source=a}}(),b.ExportDefaultDeclaration=function(){return function(a){this.type=d.Syntax.ExportDefaultDeclaration,this.declaration=a}}(),b.ExportNamedDeclaration=function(){return function(a,b,c){this.type=d.Syntax.ExportNamedDeclaration,this.declaration=a,this.specifiers=b,this.source=c}}(),b.ExportSpecifier=function(){return function(a,b){this.type=d.Syntax.ExportSpecifier,this.exported=b,this.local=a}}(),b.ExpressionStatement=function(){return function(a){this.type=d.Syntax.ExpressionStatement,this.expression=a}}(),b.ForInStatement=function(){return function(a,b,c){this.type=d.Syntax.ForInStatement,this.left=a,this.right=b,this.body=c,this.each=!1}}(),b.ForOfStatement=function(){return function(a,b,c){this.type=d.Syntax.ForOfStatement,this.left=a,this.right=b,this.body=c}}(),b.ForStatement=function(){return function(a,b,c,e){this.type=d.Syntax.ForStatement,this.init=a,this.test=b,this.update=c,this.body=e}}(),b.FunctionDeclaration=function(){return function(a,b,c,e){this.type=d.Syntax.FunctionDeclaration,this.id=a,this.params=b,this.body=c,this.generator=e,this.expression=!1,this.async=!1}}(),b.FunctionExpression=function(){return function(a,b,c,e){this.type=d.Syntax.FunctionExpression,this.id=a,this.params=b,this.body=c,this.generator=e,this.expression=!1,this.async=!1}}(),b.Identifier=function(){return function(a){this.type=d.Syntax.Identifier,this.name=a}}(),b.IfStatement=function(){return function(a,b,c){this.type=d.Syntax.IfStatement,this.test=a,this.consequent=b,this.alternate=c}}(),b.ImportDeclaration=function(){return function(a,b){this.type=d.Syntax.ImportDeclaration,this.specifiers=a,this.source=b}}(),b.ImportDefaultSpecifier=function(){return function(a){this.type=d.Syntax.ImportDefaultSpecifier,this.local=a}}(),b.ImportNamespaceSpecifier=function(){return function(a){this.type=d.Syntax.ImportNamespaceSpecifier,this.local=a}}(),b.ImportSpecifier=function(){return function(a,b){this.type=d.Syntax.ImportSpecifier,this.local=a,this.imported=b}}(),b.LabeledStatement=function(){return function(a,b){this.type=d.Syntax.LabeledStatement,this.label=a,this.body=b}}(),b.Literal=function(){return function(a,b){this.type=d.Syntax.Literal,this.value=a,this.raw=b}}(),b.MetaProperty=function(){return function(a,b){this.type=d.Syntax.MetaProperty,this.meta=a,this.property=b}}(),b.MethodDefinition=function(){return function(a,b,c,e,f){this.type=d.Syntax.MethodDefinition,this.key=a,this.computed=b,this.value=c,this.kind=e,this.static=f}}(),b.Module=function(){return function(a){this.type=d.Syntax.Program,this.body=a,this.sourceType="module"}}(),b.NewExpression=function(){return function(a,b){this.type=d.Syntax.NewExpression,this.callee=a,this.arguments=b}}(),b.ObjectExpression=function(){return function(a){this.type=d.Syntax.ObjectExpression,this.properties=a}}(),b.ObjectPattern=function(){return function(a){this.type=d.Syntax.ObjectPattern,this.properties=a}}(),b.Property=function(){return function(a,b,c,e,f,g){this.type=d.Syntax.Property,this.key=b,this.computed=c,this.value=e,this.kind=a,this.method=f,this.shorthand=g}}(),b.RegexLiteral=function(){return function(a,b,c,e){this.type=d.Syntax.Literal,this.value=a,this.raw=b,this.regex={pattern:c,flags:e}}}(),b.RestElement=function(){return function(a){this.type=d.Syntax.RestElement,this.argument=a}}(),b.ReturnStatement=function(){return function(a){this.type=d.Syntax.ReturnStatement,this.argument=a}}(),b.Script=function(){return function(a){this.type=d.Syntax.Program,this.body=a,this.sourceType="script"}}(),b.SequenceExpression=function(){return function(a){this.type=d.Syntax.SequenceExpression,this.expressions=a}}(),b.SpreadElement=function(){return function(a){this.type=d.Syntax.SpreadElement,this.argument=a}}(),b.StaticMemberExpression=function(){return function(a,b){this.type=d.Syntax.MemberExpression,this.computed=!1,this.object=a,this.property=b}}(),b.Super=function(){return function(){this.type=d.Syntax.Super}}(),b.SwitchCase=function(){return function(a,b){this.type=d.Syntax.SwitchCase,this.test=a,this.consequent=b}}(),b.SwitchStatement=function(){return function(a,b){this.type=d.Syntax.SwitchStatement,this.discriminant=a,this.cases=b}}(),b.TaggedTemplateExpression=function(){return function(a,b){this.type=d.Syntax.TaggedTemplateExpression,this.tag=a,this.quasi=b}}(),b.TemplateElement=function(){return function(a,b){this.type=d.Syntax.TemplateElement,this.value=a,this.tail=b}}(),b.TemplateLiteral=function(){return function(a,b){this.type=d.Syntax.TemplateLiteral,this.quasis=a,this.expressions=b}}(),b.ThisExpression=function(){return function(){this.type=d.Syntax.ThisExpression}}(),b.ThrowStatement=function(){return function(a){this.type=d.Syntax.ThrowStatement,this.argument=a}}(),b.TryStatement=function(){return function(a,b,c){this.type=d.Syntax.TryStatement,this.block=a,this.handler=b,this.finalizer=c}}(),b.UnaryExpression=function(){return function(a,b){this.type=d.Syntax.UnaryExpression,this.operator=a,this.argument=b,this.prefix=!0}}(),b.UpdateExpression=function(){return function(a,b,c){this.type=d.Syntax.UpdateExpression,this.operator=a,this.argument=b,this.prefix=c}}(),b.VariableDeclaration=function(){return function(a,b){this.type=d.Syntax.VariableDeclaration,this.declarations=a,this.kind=b}}(),b.VariableDeclarator=function(){return function(a,b){this.type=d.Syntax.VariableDeclarator,this.id=a,this.init=b}}(),b.WhileStatement=function(){return function(a,b){this.type=d.Syntax.WhileStatement,this.test=a,this.body=b}}(),b.WithStatement=function(){return function(a,b){this.type=d.Syntax.WithStatement,this.object=a,this.body=b}}(),b.YieldExpression=function(){return function(a,b){this.type=d.Syntax.YieldExpression,this.argument=a,this.delegate=b}}()},function(a,b,c){"use strict";Object.defineProperty(b,"__esModule",{value:!0});var d=c(9),e=c(10),f=c(11),g=c(7),h=c(12),i=c(2),j=c(13),k="ArrowParameterPlaceHolder";b.Parser=function(){function a(a,b,c){void 0===b&&(b={}),this.config={range:"boolean"==typeof b.range&&b.range,loc:"boolean"==typeof b.loc&&b.loc,source:null,tokens:"boolean"==typeof b.tokens&&b.tokens,comment:"boolean"==typeof b.comment&&b.comment,tolerant:"boolean"==typeof b.tolerant&&b.tolerant},this.config.loc&&b.source&&null!==b.source&&(this.config.source=String(b.source)),this.delegate=c,this.errorHandler=new e.ErrorHandler,this.errorHandler.tolerant=this.config.tolerant,this.scanner=new h.Scanner(a,this.errorHandler),this.scanner.trackComment=this.config.comment,this.operatorPrecedence={")":0,";":0,",":0,"=":0,"]":0,"||":1,"&&":2,"|":3,"^":4,"&":5,"==":6,"!=":6,"===":6,"!==":6,"<":7,">":7,"<=":7,">=":7,"<<":8,">>":8,">>>":8,"+":9,"-":9,"*":11,"/":11,"%":11},this.lookahead={type:2,value:"",lineNumber:this.scanner.lineNumber,lineStart:0,start:0,end:0},this.hasLineTerminator=!1,this.context={isModule:!1,await:!1,allowIn:!0,allowStrictDirective:!0,allowYield:!0,firstCoverInitializedNameError:null,isAssignmentTarget:!1,isBindingElement:!1,inFunctionBody:!1,inIteration:!1,inSwitch:!1,labelSet:{},strict:!1},this.tokens=[],this.startMarker={index:0,line:this.scanner.lineNumber,column:0},this.lastMarker={index:0,line:this.scanner.lineNumber,column:0},this.nextToken(),this.lastMarker={index:this.scanner.index,line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart}}return a.prototype.throwError=function(a){for(var b=[],c=1;c<arguments.length;c++)b[c-1]=arguments[c];var e=Array.prototype.slice.call(arguments,1),f=a.replace(/%(\d)/g,function(a,b){return d.assert(b<e.length,"Message reference must be in range"),e[b]}),g=this.lastMarker.index,h=this.lastMarker.line,i=this.lastMarker.column+1;throw this.errorHandler.createError(g,h,i,f)},a.prototype.tolerateError=function(a){for(var b=[],c=1;c<arguments.length;c++)b[c-1]=arguments[c];var e=Array.prototype.slice.call(arguments,1),f=a.replace(/%(\d)/g,function(a,b){return d.assert(b<e.length,"Message reference must be in range"),e[b]}),g=this.lastMarker.index,h=this.scanner.lineNumber,i=this.lastMarker.column+1;this.errorHandler.tolerateError(g,h,i,f)},a.prototype.unexpectedTokenError=function(a,b){var c,d=b||f.Messages.UnexpectedToken;if(a?(!b&&(d=2===a.type?f.Messages.UnexpectedEOS:3===a.type?f.Messages.UnexpectedIdentifier:6===a.type?f.Messages.UnexpectedNumber:8===a.type?f.Messages.UnexpectedString:10===a.type?f.Messages.UnexpectedTemplate:f.Messages.UnexpectedToken,4===a.type&&(this.scanner.isFutureReservedWord(a.value)?d=f.Messages.UnexpectedReserved:this.context.strict&&this.scanner.isStrictModeReservedWord(a.value)&&(d=f.Messages.StrictReservedWord))),c=a.value):c="ILLEGAL",d=d.replace("%0",c),a&&"number"==typeof a.lineNumber){var e=a.start,g=a.lineNumber,h=this.lastMarker.index-this.lastMarker.column,i=a.start-h+1;return this.errorHandler.createError(e,g,i,d)}var e=this.lastMarker.index,g=this.lastMarker.line,i=this.lastMarker.column+1;return this.errorHandler.createError(e,g,i,d)},a.prototype.throwUnexpectedToken=function(a,b){throw this.unexpectedTokenError(a,b)},a.prototype.tolerateUnexpectedToken=function(a,b){this.errorHandler.tolerate(this.unexpectedTokenError(a,b))},a.prototype.collectComments=function(){if(this.config.comment){var a=this.scanner.scanComments();if(a.length>0&&this.delegate)for(var b=0;b<a.length;++b){var c=a[b],d=void 0;d={type:c.multiLine?"BlockComment":"LineComment",value:this.scanner.source.slice(c.slice[0],c.slice[1])},this.config.range&&(d.range=c.range),this.config.loc&&(d.loc=c.loc);var e={start:{line:c.loc.start.line,column:c.loc.start.column,offset:c.range[0]},end:{line:c.loc.end.line,column:c.loc.end.column,offset:c.range[1]}};this.delegate(d,e)}}else this.scanner.scanComments()},a.prototype.getTokenRaw=function(a){return this.scanner.source.slice(a.start,a.end)},a.prototype.convertToken=function(a){var b={type:j.TokenName[a.type],value:this.getTokenRaw(a)};return this.config.range&&(b.range=[a.start,a.end]),this.config.loc&&(b.loc={start:{line:this.startMarker.line,column:this.startMarker.column},end:{line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart}}),9===a.type&&(b.regex={pattern:a.pattern,flags:a.flags}),b},a.prototype.nextToken=function(){var a=this.lookahead;this.lastMarker.index=this.scanner.index,this.lastMarker.line=this.scanner.lineNumber,this.lastMarker.column=this.scanner.index-this.scanner.lineStart,this.collectComments(),this.scanner.index!==this.startMarker.index&&(this.startMarker.index=this.scanner.index,this.startMarker.line=this.scanner.lineNumber,this.startMarker.column=this.scanner.index-this.scanner.lineStart);var b=this.scanner.lex();return this.hasLineTerminator=a.lineNumber!==b.lineNumber,b&&this.context.strict&&3===b.type&&this.scanner.isStrictModeReservedWord(b.value)&&(b.type=4),this.lookahead=b,this.config.tokens&&2!==b.type&&this.tokens.push(this.convertToken(b)),a},a.prototype.nextRegexToken=function(){this.collectComments();var a=this.scanner.scanRegExp();return this.config.tokens&&(this.tokens.pop(),this.tokens.push(this.convertToken(a))),this.lookahead=a,this.nextToken(),a},a.prototype.createNode=function(){return{index:this.startMarker.index,line:this.startMarker.line,column:this.startMarker.column}},a.prototype.startNode=function(a,b){void 0===b&&(b=0);var c=a.start-a.lineStart,d=a.lineNumber;return c<0&&(c+=b,d--),{index:a.start,line:d,column:c}},a.prototype.finalize=function(a,b){if(this.config.range&&(b.range=[a.index,this.lastMarker.index]),this.config.loc&&(b.loc={start:{line:a.line,column:a.column},end:{line:this.lastMarker.line,column:this.lastMarker.column}},this.config.source&&(b.loc.source=this.config.source)),this.delegate){var c={start:{line:a.line,column:a.column,offset:a.index},end:{line:this.lastMarker.line,column:this.lastMarker.column,offset:this.lastMarker.index}};this.delegate(b,c)}return b},a.prototype.expect=function(a){var b=this.nextToken();(7!==b.type||b.value!==a)&&this.throwUnexpectedToken(b)},a.prototype.expectCommaSeparator=function(){if(this.config.tolerant){var a=this.lookahead;7===a.type&&","===a.value?this.nextToken():7===a.type&&";"===a.value?(this.nextToken(),this.tolerateUnexpectedToken(a)):this.tolerateUnexpectedToken(a,f.Messages.UnexpectedToken)}else this.expect(",")},a.prototype.expectKeyword=function(a){var b=this.nextToken();(4!==b.type||b.value!==a)&&this.throwUnexpectedToken(b)},a.prototype.match=function(a){return 7===this.lookahead.type&&this.lookahead.value===a},a.prototype.matchKeyword=function(a){return 4===this.lookahead.type&&this.lookahead.value===a},a.prototype.matchContextualKeyword=function(a){return 3===this.lookahead.type&&this.lookahead.value===a},a.prototype.matchAssign=function(){if(7!==this.lookahead.type)return!1;var a=this.lookahead.value;return"="===a||"*="===a||"**="===a||"/="===a||"%="===a||"+="===a||"-="===a||"<<="===a||">>="===a||">>>="===a||"&="===a||"^="===a||"|="===a},a.prototype.isolateCoverGrammar=function(a){var b=this.context.isBindingElement,c=this.context.isAssignmentTarget,d=this.context.firstCoverInitializedNameError;this.context.isBindingElement=!0,this.context.isAssignmentTarget=!0,this.context.firstCoverInitializedNameError=null;var e=a.call(this);return null!==this.context.firstCoverInitializedNameError&&this.throwUnexpectedToken(this.context.firstCoverInitializedNameError),this.context.isBindingElement=b,this.context.isAssignmentTarget=c,this.context.firstCoverInitializedNameError=d,e},a.prototype.inheritCoverGrammar=function(a){var b=this.context.isBindingElement,c=this.context.isAssignmentTarget,d=this.context.firstCoverInitializedNameError;this.context.isBindingElement=!0,this.context.isAssignmentTarget=!0,this.context.firstCoverInitializedNameError=null;var e=a.call(this);return this.context.isBindingElement=this.context.isBindingElement&&b,this.context.isAssignmentTarget=this.context.isAssignmentTarget&&c,this.context.firstCoverInitializedNameError=d||this.context.firstCoverInitializedNameError,e},a.prototype.consumeSemicolon=function(){this.match(";")?this.nextToken():this.hasLineTerminator||(2===this.lookahead.type||this.match("}")||this.throwUnexpectedToken(this.lookahead),this.lastMarker.index=this.startMarker.index,this.lastMarker.line=this.startMarker.line,this.lastMarker.column=this.startMarker.column)},a.prototype.parsePrimaryExpression=function(){var a,b,c,d=this.createNode();switch(this.lookahead.type){case 3:(this.context.isModule||this.context.await)&&"await"===this.lookahead.value&&this.tolerateUnexpectedToken(this.lookahead),a=this.matchAsyncFunction()?this.parseFunctionExpression():this.finalize(d,new g.Identifier(this.nextToken().value));break;case 6:case 8:this.context.strict&&this.lookahead.octal&&this.tolerateUnexpectedToken(this.lookahead,f.Messages.StrictOctalLiteral),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,b=this.nextToken(),c=this.getTokenRaw(b),a=this.finalize(d,new g.Literal(b.value,c));break;case 1:this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,b=this.nextToken(),c=this.getTokenRaw(b),a=this.finalize(d,new g.Literal("true"===b.value,c));break;case 5:this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,b=this.nextToken(),c=this.getTokenRaw(b),a=this.finalize(d,new g.Literal(null,c));break;case 10:a=this.parseTemplateLiteral();break;case 7:switch(this.lookahead.value){case"(":this.context.isBindingElement=!1,a=this.inheritCoverGrammar(this.parseGroupExpression);break;case"[":a=this.inheritCoverGrammar(this.parseArrayInitializer);break;case"{":a=this.inheritCoverGrammar(this.parseObjectInitializer);break;case"/":case"/=":this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,this.scanner.index=this.startMarker.index,b=this.nextRegexToken(),c=this.getTokenRaw(b),a=this.finalize(d,new g.RegexLiteral(b.regex,c,b.pattern,b.flags));break;default:a=this.throwUnexpectedToken(this.nextToken())}break;case 4:!this.context.strict&&this.context.allowYield&&this.matchKeyword("yield")?a=this.parseIdentifierName():!this.context.strict&&this.matchKeyword("let")?a=this.finalize(d,new g.Identifier(this.nextToken().value)):(this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,this.matchKeyword("function")?a=this.parseFunctionExpression():this.matchKeyword("this")?(this.nextToken(),a=this.finalize(d,new g.ThisExpression)):a=this.matchKeyword("class")?this.parseClassExpression():this.throwUnexpectedToken(this.nextToken()));break;default:a=this.throwUnexpectedToken(this.nextToken())}return a},a.prototype.parseSpreadElement=function(){var a=this.createNode();this.expect("...");var b=this.inheritCoverGrammar(this.parseAssignmentExpression);return this.finalize(a,new g.SpreadElement(b))},a.prototype.parseArrayInitializer=function(){var a=this.createNode(),b=[];for(this.expect("[");!this.match("]");)if(this.match(","))this.nextToken(),b.push(null);else if(this.match("...")){var c=this.parseSpreadElement();this.match("]")||(this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,this.expect(",")),b.push(c)}else b.push(this.inheritCoverGrammar(this.parseAssignmentExpression)),this.match("]")||this.expect(",");return this.expect("]"),this.finalize(a,new g.ArrayExpression(b))},a.prototype.parsePropertyMethod=function(a){this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;var b=this.context.strict,c=this.context.allowStrictDirective;this.context.allowStrictDirective=a.simple;var d=this.isolateCoverGrammar(this.parseFunctionSourceElements);return this.context.strict&&a.firstRestricted&&this.tolerateUnexpectedToken(a.firstRestricted,a.message),this.context.strict&&a.stricted&&this.tolerateUnexpectedToken(a.stricted,a.message),this.context.strict=b,this.context.allowStrictDirective=c,d},a.prototype.parsePropertyMethodFunction=function(){var a=!1,b=this.createNode(),c=this.context.allowYield;this.context.allowYield=!0;var d=this.parseFormalParameters(),e=this.parsePropertyMethod(d);return this.context.allowYield=c,this.finalize(b,new g.FunctionExpression(null,d.params,e,a))},a.prototype.parsePropertyMethodAsyncFunction=function(){var a=this.createNode(),b=this.context.allowYield,c=this.context.await;this.context.allowYield=!1,this.context.await=!0;var d=this.parseFormalParameters(),e=this.parsePropertyMethod(d);return this.context.allowYield=b,this.context.await=c,this.finalize(a,new g.AsyncFunctionExpression(null,d.params,e))},a.prototype.parseObjectPropertyKey=function(){var a,b=this.createNode(),c=this.nextToken();switch(c.type){case 8:case 6:this.context.strict&&c.octal&&this.tolerateUnexpectedToken(c,f.Messages.StrictOctalLiteral);var d=this.getTokenRaw(c);a=this.finalize(b,new g.Literal(c.value,d));break;case 3:case 1:case 5:case 4:a=this.finalize(b,new g.Identifier(c.value));break;case 7:"["===c.value?(a=this.isolateCoverGrammar(this.parseAssignmentExpression),this.expect("]")):a=this.throwUnexpectedToken(c);break;default:a=this.throwUnexpectedToken(c)}return a},a.prototype.isPropertyKey=function(a,b){return a.type===i.Syntax.Identifier&&a.name===b||a.type===i.Syntax.Literal&&a.value===b},a.prototype.parseObjectProperty=function(a){var b,c=this.createNode(),d=this.lookahead,e=null,h=null,i=!1,j=!1,k=!1,l=!1;if(3===d.type){var m=d.value;this.nextToken(),i=this.match("["),e=(l=!this.hasLineTerminator&&"async"===m&&!this.match(":")&&!this.match("(")&&!this.match("*")&&!this.match(","))?this.parseObjectPropertyKey():this.finalize(c,new g.Identifier(m))}else this.match("*")?this.nextToken():(i=this.match("["),e=this.parseObjectPropertyKey());var n=this.qualifiedPropertyName(this.lookahead);if(3===d.type&&!l&&"get"===d.value&&n)b="get",i=this.match("["),e=this.parseObjectPropertyKey(),this.context.allowYield=!1,h=this.parseGetterMethod();else if(3===d.type&&!l&&"set"===d.value&&n)b="set",i=this.match("["),e=this.parseObjectPropertyKey(),h=this.parseSetterMethod();else if(7===d.type&&"*"===d.value&&n)b="init",i=this.match("["),e=this.parseObjectPropertyKey(),h=this.parseGeneratorMethod(),j=!0;else if(e||this.throwUnexpectedToken(this.lookahead),b="init",this.match(":")&&!l)!i&&this.isPropertyKey(e,"__proto__")&&(a.value&&this.tolerateError(f.Messages.DuplicateProtoProperty),a.value=!0),this.nextToken(),h=this.inheritCoverGrammar(this.parseAssignmentExpression);else if(this.match("("))h=l?this.parsePropertyMethodAsyncFunction():this.parsePropertyMethodFunction(),j=!0;else if(3===d.type){var m=this.finalize(c,new g.Identifier(d.value));if(this.match("=")){this.context.firstCoverInitializedNameError=this.lookahead,this.nextToken(),k=!0;var o=this.isolateCoverGrammar(this.parseAssignmentExpression);h=this.finalize(c,new g.AssignmentPattern(m,o))}else k=!0,h=m}else this.throwUnexpectedToken(this.nextToken());return this.finalize(c,new g.Property(b,e,i,h,j,k))},a.prototype.parseObjectInitializer=function(){var a=this.createNode();this.expect("{");for(var b=[],c={value:!1};!this.match("}");)b.push(this.parseObjectProperty(c)),this.match("}")||this.expectCommaSeparator();return this.expect("}"),this.finalize(a,new g.ObjectExpression(b))},a.prototype.parseTemplateHead=function(){d.assert(this.lookahead.head,"Template literal must start with a template head");var a=this.createNode(),b=this.nextToken(),c=b.value,e=b.cooked;return this.finalize(a,new g.TemplateElement({raw:c,cooked:e},b.tail))},a.prototype.parseTemplateElement=function(){10!==this.lookahead.type&&this.throwUnexpectedToken();var a=this.createNode(),b=this.nextToken(),c=b.value,d=b.cooked;return this.finalize(a,new g.TemplateElement({raw:c,cooked:d},b.tail))},a.prototype.parseTemplateLiteral=function(){var a=this.createNode(),b=[],c=[],d=this.parseTemplateHead();for(c.push(d);!d.tail;)b.push(this.parseExpression()),d=this.parseTemplateElement(),c.push(d);return this.finalize(a,new g.TemplateLiteral(c,b))},a.prototype.reinterpretExpressionAsPattern=function(a){switch(a.type){case i.Syntax.Identifier:case i.Syntax.MemberExpression:case i.Syntax.RestElement:case i.Syntax.AssignmentPattern:break;case i.Syntax.SpreadElement:a.type=i.Syntax.RestElement,this.reinterpretExpressionAsPattern(a.argument);break;case i.Syntax.ArrayExpression:a.type=i.Syntax.ArrayPattern;for(var b=0;b<a.elements.length;b++)null!==a.elements[b]&&this.reinterpretExpressionAsPattern(a.elements[b]);break;case i.Syntax.ObjectExpression:a.type=i.Syntax.ObjectPattern;for(var b=0;b<a.properties.length;b++)this.reinterpretExpressionAsPattern(a.properties[b].value);break;case i.Syntax.AssignmentExpression:a.type=i.Syntax.AssignmentPattern,delete a.operator,this.reinterpretExpressionAsPattern(a.left)}},a.prototype.parseGroupExpression=function(){var a;if(this.expect("("),this.match(")"))this.nextToken(),this.match("=>")||this.expect("=>"),a={type:k,params:[],async:!1};else{var b=this.lookahead,c=[];if(this.match("..."))a=this.parseRestElement(c),this.expect(")"),this.match("=>")||this.expect("=>"),a={type:k,params:[a],async:!1};else{var d=!1;if(this.context.isBindingElement=!0,a=this.inheritCoverGrammar(this.parseAssignmentExpression),this.match(",")){var e=[];for(this.context.isAssignmentTarget=!1,e.push(a);2!==this.lookahead.type&&this.match(",");){if(this.nextToken(),this.match(")")){this.nextToken();for(var f=0;f<e.length;f++)this.reinterpretExpressionAsPattern(e[f]);d=!0,a={type:k,params:e,async:!1}}else if(this.match("...")){this.context.isBindingElement||this.throwUnexpectedToken(this.lookahead),e.push(this.parseRestElement(c)),this.expect(")"),this.match("=>")||this.expect("=>"),this.context.isBindingElement=!1;for(var f=0;f<e.length;f++)this.reinterpretExpressionAsPattern(e[f]);d=!0,a={type:k,params:e,async:!1}}else e.push(this.inheritCoverGrammar(this.parseAssignmentExpression));if(d)break}d||(a=this.finalize(this.startNode(b),new g.SequenceExpression(e)))}if(!d){if(this.expect(")"),this.match("=>")&&(a.type===i.Syntax.Identifier&&"yield"===a.name&&(d=!0,a={type:k,params:[a],async:!1}),!d)){if(this.context.isBindingElement||this.throwUnexpectedToken(this.lookahead),a.type===i.Syntax.SequenceExpression)for(var f=0;f<a.expressions.length;f++)this.reinterpretExpressionAsPattern(a.expressions[f]);else this.reinterpretExpressionAsPattern(a);a={type:k,params:a.type===i.Syntax.SequenceExpression?a.expressions:[a],async:!1}}this.context.isBindingElement=!1}}}return a},a.prototype.parseArguments=function(){this.expect("(");var a=[];if(!this.match(")"))for(;;){var b=this.match("...")?this.parseSpreadElement():this.isolateCoverGrammar(this.parseAssignmentExpression);if(a.push(b),this.match(")")||(this.expectCommaSeparator(),this.match(")")))break}return this.expect(")"),a},a.prototype.isIdentifierName=function(a){return 3===a.type||4===a.type||1===a.type||5===a.type},a.prototype.parseIdentifierName=function(){var a=this.createNode(),b=this.nextToken();return this.isIdentifierName(b)||this.throwUnexpectedToken(b),this.finalize(a,new g.Identifier(b.value))},a.prototype.parseNewExpression=function(){var a,b=this.createNode(),c=this.parseIdentifierName();if(d.assert("new"===c.name,"New expression must start with `new`"),this.match("."))if(this.nextToken(),3===this.lookahead.type&&this.context.inFunctionBody&&"target"===this.lookahead.value){var e=this.parseIdentifierName();a=new g.MetaProperty(c,e)}else this.throwUnexpectedToken(this.lookahead);else{var f=this.isolateCoverGrammar(this.parseLeftHandSideExpression),h=this.match("(")?this.parseArguments():[];a=new g.NewExpression(f,h),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1}return this.finalize(b,a)},a.prototype.parseAsyncArgument=function(){var a=this.parseAssignmentExpression();return this.context.firstCoverInitializedNameError=null,a},a.prototype.parseAsyncArguments=function(){this.expect("(");var a=[];if(!this.match(")"))for(;;){var b=this.match("...")?this.parseSpreadElement():this.isolateCoverGrammar(this.parseAsyncArgument);if(a.push(b),this.match(")")||(this.expectCommaSeparator(),this.match(")")))break}return this.expect(")"),a},a.prototype.parseLeftHandSideExpressionAllowCall=function(){var a,b=this.lookahead,c=this.matchContextualKeyword("async"),d=this.context.allowIn;for(this.context.allowIn=!0,this.matchKeyword("super")&&this.context.inFunctionBody?(a=this.createNode(),this.nextToken(),a=this.finalize(a,new g.Super),this.match("(")||this.match(".")||this.match("[")||this.throwUnexpectedToken(this.lookahead)):a=this.inheritCoverGrammar(this.matchKeyword("new")?this.parseNewExpression:this.parsePrimaryExpression);;)if(this.match(".")){this.context.isBindingElement=!1,this.context.isAssignmentTarget=!0,this.expect(".");var e=this.parseIdentifierName();a=this.finalize(this.startNode(b),new g.StaticMemberExpression(a,e))}else if(this.match("(")){var f=c&&b.lineNumber===this.lookahead.lineNumber;this.context.isBindingElement=!1,this.context.isAssignmentTarget=!1;var h=f?this.parseAsyncArguments():this.parseArguments();if(a=this.finalize(this.startNode(b),new g.CallExpression(a,h)),f&&this.match("=>")){for(var i=0;i<h.length;++i)this.reinterpretExpressionAsPattern(h[i]);a={type:k,params:h,async:!0}}}else if(this.match("[")){this.context.isBindingElement=!1,this.context.isAssignmentTarget=!0,this.expect("[");var e=this.isolateCoverGrammar(this.parseExpression);this.expect("]"),a=this.finalize(this.startNode(b),new g.ComputedMemberExpression(a,e))}else if(10===this.lookahead.type&&this.lookahead.head){var j=this.parseTemplateLiteral();a=this.finalize(this.startNode(b),new g.TaggedTemplateExpression(a,j))}else break;return this.context.allowIn=d,a},a.prototype.parseSuper=function(){var a=this.createNode();return this.expectKeyword("super"),this.match("[")||this.match(".")||this.throwUnexpectedToken(this.lookahead),this.finalize(a,new g.Super)},a.prototype.parseLeftHandSideExpression=function(){d.assert(this.context.allowIn,"callee of new expression always allow in keyword.");for(var a=this.startNode(this.lookahead),b=this.matchKeyword("super")&&this.context.inFunctionBody?this.parseSuper():this.inheritCoverGrammar(this.matchKeyword("new")?this.parseNewExpression:this.parsePrimaryExpression);;)if(this.match("[")){this.context.isBindingElement=!1,this.context.isAssignmentTarget=!0,this.expect("[");var c=this.isolateCoverGrammar(this.parseExpression);this.expect("]"),b=this.finalize(a,new g.ComputedMemberExpression(b,c))}else if(this.match(".")){this.context.isBindingElement=!1,this.context.isAssignmentTarget=!0,this.expect(".");var c=this.parseIdentifierName();b=this.finalize(a,new g.StaticMemberExpression(b,c))}else if(10===this.lookahead.type&&this.lookahead.head){var e=this.parseTemplateLiteral();b=this.finalize(a,new g.TaggedTemplateExpression(b,e))}else break;return b},a.prototype.parseUpdateExpression=function(){var a,b=this.lookahead;if(this.match("++")||this.match("--")){var c=this.startNode(b),d=this.nextToken();a=this.inheritCoverGrammar(this.parseUnaryExpression),this.context.strict&&a.type===i.Syntax.Identifier&&this.scanner.isRestrictedWord(a.name)&&this.tolerateError(f.Messages.StrictLHSPrefix),this.context.isAssignmentTarget||this.tolerateError(f.Messages.InvalidLHSInAssignment);var e=!0;a=this.finalize(c,new g.UpdateExpression(d.value,a,e)),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1}else if(a=this.inheritCoverGrammar(this.parseLeftHandSideExpressionAllowCall),!this.hasLineTerminator&&7===this.lookahead.type&&(this.match("++")||this.match("--"))){this.context.strict&&a.type===i.Syntax.Identifier&&this.scanner.isRestrictedWord(a.name)&&this.tolerateError(f.Messages.StrictLHSPostfix),this.context.isAssignmentTarget||this.tolerateError(f.Messages.InvalidLHSInAssignment),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;var h=this.nextToken().value,e=!1;a=this.finalize(this.startNode(b),new g.UpdateExpression(h,a,e))}return a},a.prototype.parseAwaitExpression=function(){var a=this.createNode();this.nextToken();var b=this.parseUnaryExpression();return this.finalize(a,new g.AwaitExpression(b))},a.prototype.parseUnaryExpression=function(){var a;if(this.match("+")||this.match("-")||this.match("~")||this.match("!")||this.matchKeyword("delete")||this.matchKeyword("void")||this.matchKeyword("typeof")){var b=this.startNode(this.lookahead),c=this.nextToken();a=this.inheritCoverGrammar(this.parseUnaryExpression),a=this.finalize(b,new g.UnaryExpression(c.value,a)),this.context.strict&&"delete"===a.operator&&a.argument.type===i.Syntax.Identifier&&this.tolerateError(f.Messages.StrictDelete),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1}else a=this.context.await&&this.matchContextualKeyword("await")?this.parseAwaitExpression():this.parseUpdateExpression();return a},a.prototype.parseExponentiationExpression=function(){var a=this.lookahead,b=this.inheritCoverGrammar(this.parseUnaryExpression);if(b.type!==i.Syntax.UnaryExpression&&this.match("**")){this.nextToken(),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;var c=b,d=this.isolateCoverGrammar(this.parseExponentiationExpression);b=this.finalize(this.startNode(a),new g.BinaryExpression("**",c,d))}return b},a.prototype.binaryPrecedence=function(a){var b=a.value;return 7===a.type?this.operatorPrecedence[b]||0:4===a.type&&("instanceof"===b||this.context.allowIn&&"in"===b)?7:0},a.prototype.parseBinaryExpression=function(){var a=this.lookahead,b=this.inheritCoverGrammar(this.parseExponentiationExpression),c=this.lookahead,d=this.binaryPrecedence(c);if(d>0){this.nextToken(),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;for(var e=[a,this.lookahead],f=b,h=this.isolateCoverGrammar(this.parseExponentiationExpression),i=[f,c.value,h],j=[d];!((d=this.binaryPrecedence(this.lookahead))<=0);){for(;i.length>2&&d<=j[j.length-1];){h=i.pop();var k=i.pop();j.pop(),f=i.pop(),e.pop();var l=this.startNode(e[e.length-1]);i.push(this.finalize(l,new g.BinaryExpression(k,f,h)))}i.push(this.nextToken().value),j.push(d),e.push(this.lookahead),i.push(this.isolateCoverGrammar(this.parseExponentiationExpression))}var m=i.length-1;b=i[m];for(var n=e.pop();m>1;){var o=e.pop(),p=n&&n.lineStart,l=this.startNode(o,p),k=i[m-1];b=this.finalize(l,new g.BinaryExpression(k,i[m-2],b)),m-=2,n=o}}return b},a.prototype.parseConditionalExpression=function(){var a=this.lookahead,b=this.inheritCoverGrammar(this.parseBinaryExpression);if(this.match("?")){this.nextToken();var c=this.context.allowIn;this.context.allowIn=!0;var d=this.isolateCoverGrammar(this.parseAssignmentExpression);this.context.allowIn=c,this.expect(":");var e=this.isolateCoverGrammar(this.parseAssignmentExpression);b=this.finalize(this.startNode(a),new g.ConditionalExpression(b,d,e)),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1}return b},a.prototype.checkPatternParam=function(a,b){switch(b.type){case i.Syntax.Identifier:this.validateParam(a,b,b.name);break;case i.Syntax.RestElement:this.checkPatternParam(a,b.argument);break;case i.Syntax.AssignmentPattern:this.checkPatternParam(a,b.left);break;case i.Syntax.ArrayPattern:for(var c=0;c<b.elements.length;c++)null!==b.elements[c]&&this.checkPatternParam(a,b.elements[c]);break;case i.Syntax.ObjectPattern:for(var c=0;c<b.properties.length;c++)this.checkPatternParam(a,b.properties[c].value)}a.simple=a.simple&&b instanceof g.Identifier},a.prototype.reinterpretAsCoverFormalsList=function(a){var b,c=[a],d=!1;switch(a.type){case i.Syntax.Identifier:break;case k:c=a.params,d=a.async;break;default:return null}b={simple:!0,paramSet:{}};for(var e=0;e<c.length;++e){var g=c[e];g.type===i.Syntax.AssignmentPattern?g.right.type===i.Syntax.YieldExpression&&(g.right.argument&&this.throwUnexpectedToken(this.lookahead),g.right.type=i.Syntax.Identifier,g.right.name="yield",delete g.right.argument,delete g.right.delegate):d&&g.type===i.Syntax.Identifier&&"await"===g.name&&this.throwUnexpectedToken(this.lookahead),this.checkPatternParam(b,g),c[e]=g}if(this.context.strict||!this.context.allowYield)for(var e=0;e<c.length;++e){var g=c[e];g.type===i.Syntax.YieldExpression&&this.throwUnexpectedToken(this.lookahead)}if(b.message===f.Messages.StrictParamDupe){var h=this.context.strict?b.stricted:b.firstRestricted;this.throwUnexpectedToken(h,b.message)}return{simple:b.simple,params:c,stricted:b.stricted,firstRestricted:b.firstRestricted,message:b.message}},a.prototype.parseAssignmentExpression=function(){var a;if(!this.context.allowYield&&this.matchKeyword("yield"))a=this.parseYieldExpression();else{var b=this.lookahead,c=b;if(a=this.parseConditionalExpression(),3===c.type&&c.lineNumber===this.lookahead.lineNumber&&"async"===c.value&&(3===this.lookahead.type||this.matchKeyword("yield"))){var d=this.parsePrimaryExpression();this.reinterpretExpressionAsPattern(d),a={type:k,params:[d],async:!0}}if(a.type===k||this.match("=>")){this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;var e=a.async,h=this.reinterpretAsCoverFormalsList(a);if(h){this.hasLineTerminator&&this.tolerateUnexpectedToken(this.lookahead),this.context.firstCoverInitializedNameError=null;var j=this.context.strict,l=this.context.allowStrictDirective;this.context.allowStrictDirective=h.simple;var m=this.context.allowYield,n=this.context.await;this.context.allowYield=!0,this.context.await=e;var o=this.startNode(b);this.expect("=>");var p=void 0;if(this.match("{")){var q=this.context.allowIn;this.context.allowIn=!0,p=this.parseFunctionSourceElements(),this.context.allowIn=q}else p=this.isolateCoverGrammar(this.parseAssignmentExpression);var r=p.type!==i.Syntax.BlockStatement;this.context.strict&&h.firstRestricted&&this.throwUnexpectedToken(h.firstRestricted,h.message),this.context.strict&&h.stricted&&this.tolerateUnexpectedToken(h.stricted,h.message),a=e?this.finalize(o,new g.AsyncArrowFunctionExpression(h.params,p,r)):this.finalize(o,new g.ArrowFunctionExpression(h.params,p,r)),this.context.strict=j,this.context.allowStrictDirective=l,this.context.allowYield=m,this.context.await=n}}else if(this.matchAssign()){if(this.context.isAssignmentTarget||this.tolerateError(f.Messages.InvalidLHSInAssignment),this.context.strict&&a.type===i.Syntax.Identifier){var s=a;this.scanner.isRestrictedWord(s.name)&&this.tolerateUnexpectedToken(c,f.Messages.StrictLHSAssignment),this.scanner.isStrictModeReservedWord(s.name)&&this.tolerateUnexpectedToken(c,f.Messages.StrictReservedWord)}this.match("=")?this.reinterpretExpressionAsPattern(a):(this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1);var t=(c=this.nextToken()).value,u=this.isolateCoverGrammar(this.parseAssignmentExpression);a=this.finalize(this.startNode(b),new g.AssignmentExpression(t,a,u)),this.context.firstCoverInitializedNameError=null}}return a},a.prototype.parseExpression=function(){var a=this.lookahead,b=this.isolateCoverGrammar(this.parseAssignmentExpression);if(this.match(",")){var c=[];for(c.push(b);2!==this.lookahead.type&&this.match(",");)this.nextToken(),c.push(this.isolateCoverGrammar(this.parseAssignmentExpression));b=this.finalize(this.startNode(a),new g.SequenceExpression(c))}return b},a.prototype.parseStatementListItem=function(){var a;if(this.context.isAssignmentTarget=!0,this.context.isBindingElement=!0,4===this.lookahead.type)switch(this.lookahead.value){case"export":this.context.isModule||this.tolerateUnexpectedToken(this.lookahead,f.Messages.IllegalExportDeclaration),a=this.parseExportDeclaration();break;case"import":this.context.isModule||this.tolerateUnexpectedToken(this.lookahead,f.Messages.IllegalImportDeclaration),a=this.parseImportDeclaration();break;case"const":a=this.parseLexicalDeclaration({inFor:!1});break;case"function":a=this.parseFunctionDeclaration();break;case"class":a=this.parseClassDeclaration();break;case"let":a=this.isLexicalDeclaration()?this.parseLexicalDeclaration({inFor:!1}):this.parseStatement();break;default:a=this.parseStatement()}else a=this.parseStatement();return a},a.prototype.parseBlock=function(){var a=this.createNode();this.expect("{");for(var b=[];!this.match("}");)b.push(this.parseStatementListItem());return this.expect("}"),this.finalize(a,new g.BlockStatement(b))},a.prototype.parseLexicalBinding=function(a,b){var c=this.createNode(),d=[],e=this.parsePattern(d,a);this.context.strict&&e.type===i.Syntax.Identifier&&this.scanner.isRestrictedWord(e.name)&&this.tolerateError(f.Messages.StrictVarName);var h=null;return"const"===a?this.matchKeyword("in")||this.matchContextualKeyword("of")||(this.match("=")?(this.nextToken(),h=this.isolateCoverGrammar(this.parseAssignmentExpression)):this.throwError(f.Messages.DeclarationMissingInitializer,"const")):(!b.inFor&&e.type!==i.Syntax.Identifier||this.match("="))&&(this.expect("="),h=this.isolateCoverGrammar(this.parseAssignmentExpression)),this.finalize(c,new g.VariableDeclarator(e,h))},a.prototype.parseBindingList=function(a,b){for(var c=[this.parseLexicalBinding(a,b)];this.match(",");)this.nextToken(),c.push(this.parseLexicalBinding(a,b));return c},a.prototype.isLexicalDeclaration=function(){var a=this.scanner.saveState();this.scanner.scanComments();var b=this.scanner.lex();return this.scanner.restoreState(a),3===b.type||7===b.type&&"["===b.value||7===b.type&&"{"===b.value||4===b.type&&"let"===b.value||4===b.type&&"yield"===b.value},a.prototype.parseLexicalDeclaration=function(a){var b=this.createNode(),c=this.nextToken().value;d.assert("let"===c||"const"===c,"Lexical declaration must be either let or const");var e=this.parseBindingList(c,a);return this.consumeSemicolon(),this.finalize(b,new g.VariableDeclaration(e,c))},a.prototype.parseBindingRestElement=function(a,b){var c=this.createNode();this.expect("...");var d=this.parsePattern(a,b);return this.finalize(c,new g.RestElement(d))},a.prototype.parseArrayPattern=function(a,b){var c=this.createNode();this.expect("[");for(var d=[];!this.match("]");)if(this.match(","))this.nextToken(),d.push(null);else{if(this.match("...")){d.push(this.parseBindingRestElement(a,b));break}d.push(this.parsePatternWithDefault(a,b)),this.match("]")||this.expect(",")}return this.expect("]"),this.finalize(c,new g.ArrayPattern(d))},a.prototype.parsePropertyPattern=function(a,b){var c,d,e=this.createNode(),f=!1,h=!1,i=!1;if(3===this.lookahead.type){var j=this.lookahead;c=this.parseVariableIdentifier();var k=this.finalize(e,new g.Identifier(j.value));if(this.match("=")){a.push(j),h=!0,this.nextToken();var l=this.parseAssignmentExpression();d=this.finalize(this.startNode(j),new g.AssignmentPattern(k,l))}else this.match(":")?(this.expect(":"),d=this.parsePatternWithDefault(a,b)):(a.push(j),h=!0,d=k)}else f=this.match("["),c=this.parseObjectPropertyKey(),this.expect(":"),d=this.parsePatternWithDefault(a,b);return this.finalize(e,new g.Property("init",c,f,d,i,h))},a.prototype.parseObjectPattern=function(a,b){var c=this.createNode(),d=[];for(this.expect("{");!this.match("}");)d.push(this.parsePropertyPattern(a,b)),this.match("}")||this.expect(",");return this.expect("}"),this.finalize(c,new g.ObjectPattern(d))},a.prototype.parsePattern=function(a,b){var c;return this.match("[")?c=this.parseArrayPattern(a,b):this.match("{")?c=this.parseObjectPattern(a,b):(this.matchKeyword("let")&&("const"===b||"let"===b)&&this.tolerateUnexpectedToken(this.lookahead,f.Messages.LetInLexicalBinding),a.push(this.lookahead),c=this.parseVariableIdentifier(b)),c},a.prototype.parsePatternWithDefault=function(a,b){var c=this.lookahead,d=this.parsePattern(a,b);if(this.match("=")){this.nextToken();var e=this.context.allowYield;this.context.allowYield=!0;var f=this.isolateCoverGrammar(this.parseAssignmentExpression);this.context.allowYield=e,d=this.finalize(this.startNode(c),new g.AssignmentPattern(d,f))}return d},a.prototype.parseVariableIdentifier=function(a){var b=this.createNode(),c=this.nextToken();return 4===c.type&&"yield"===c.value?this.context.strict?this.tolerateUnexpectedToken(c,f.Messages.StrictReservedWord):this.context.allowYield||this.throwUnexpectedToken(c):3!==c.type?this.context.strict&&4===c.type&&this.scanner.isStrictModeReservedWord(c.value)?this.tolerateUnexpectedToken(c,f.Messages.StrictReservedWord):(this.context.strict||"let"!==c.value||"var"!==a)&&this.throwUnexpectedToken(c):(this.context.isModule||this.context.await)&&3===c.type&&"await"===c.value&&this.tolerateUnexpectedToken(c),this.finalize(b,new g.Identifier(c.value))},a.prototype.parseVariableDeclaration=function(a){var b=this.createNode(),c=[],d=this.parsePattern(c,"var");this.context.strict&&d.type===i.Syntax.Identifier&&this.scanner.isRestrictedWord(d.name)&&this.tolerateError(f.Messages.StrictVarName);var e=null;return this.match("=")?(this.nextToken(),e=this.isolateCoverGrammar(this.parseAssignmentExpression)):d.type===i.Syntax.Identifier||a.inFor||this.expect("="),this.finalize(b,new g.VariableDeclarator(d,e))},a.prototype.parseVariableDeclarationList=function(a){var b={inFor:a.inFor},c=[];for(c.push(this.parseVariableDeclaration(b));this.match(",");)this.nextToken(),c.push(this.parseVariableDeclaration(b));return c},a.prototype.parseVariableStatement=function(){var a=this.createNode();this.expectKeyword("var");var b=this.parseVariableDeclarationList({inFor:!1});return this.consumeSemicolon(),this.finalize(a,new g.VariableDeclaration(b,"var"))},a.prototype.parseEmptyStatement=function(){var a=this.createNode();return this.expect(";"),this.finalize(a,new g.EmptyStatement)},a.prototype.parseExpressionStatement=function(){var a=this.createNode(),b=this.parseExpression();return this.consumeSemicolon(),this.finalize(a,new g.ExpressionStatement(b))},a.prototype.parseIfClause=function(){return this.context.strict&&this.matchKeyword("function")&&this.tolerateError(f.Messages.StrictFunction),this.parseStatement()},a.prototype.parseIfStatement=function(){var a,b=this.createNode(),c=null;this.expectKeyword("if"),this.expect("(");var d=this.parseExpression();return!this.match(")")&&this.config.tolerant?(this.tolerateUnexpectedToken(this.nextToken()),a=this.finalize(this.createNode(),new g.EmptyStatement)):(this.expect(")"),a=this.parseIfClause(),this.matchKeyword("else")&&(this.nextToken(),c=this.parseIfClause())),this.finalize(b,new g.IfStatement(d,a,c))},a.prototype.parseDoWhileStatement=function(){var a=this.createNode();this.expectKeyword("do");var b=this.context.inIteration;this.context.inIteration=!0;var c=this.parseStatement();this.context.inIteration=b,this.expectKeyword("while"),this.expect("(");var d=this.parseExpression();return!this.match(")")&&this.config.tolerant?this.tolerateUnexpectedToken(this.nextToken()):(this.expect(")"),this.match(";")&&this.nextToken()),this.finalize(a,new g.DoWhileStatement(c,d))},a.prototype.parseWhileStatement=function(){var a,b=this.createNode();this.expectKeyword("while"),this.expect("(");var c=this.parseExpression();if(!this.match(")")&&this.config.tolerant)this.tolerateUnexpectedToken(this.nextToken()),a=this.finalize(this.createNode(),new g.EmptyStatement);else{this.expect(")");var d=this.context.inIteration;this.context.inIteration=!0,a=this.parseStatement(),this.context.inIteration=d}return this.finalize(b,new g.WhileStatement(c,a))},a.prototype.parseForStatement=function(){var a,b,c,d=null,e=null,h=null,j=!0,k=this.createNode();if(this.expectKeyword("for"),this.expect("("),this.match(";"))this.nextToken();else if(this.matchKeyword("var")){d=this.createNode(),this.nextToken();var l=this.context.allowIn;this.context.allowIn=!1;var m=this.parseVariableDeclarationList({inFor:!0});if(this.context.allowIn=l,1===m.length&&this.matchKeyword("in")){var n=m[0];n.init&&(n.id.type===i.Syntax.ArrayPattern||n.id.type===i.Syntax.ObjectPattern||this.context.strict)&&this.tolerateError(f.Messages.ForInOfLoopInitializer,"for-in"),d=this.finalize(d,new g.VariableDeclaration(m,"var")),this.nextToken(),a=d,b=this.parseExpression(),d=null}else 1===m.length&&null===m[0].init&&this.matchContextualKeyword("of")?(d=this.finalize(d,new g.VariableDeclaration(m,"var")),this.nextToken(),a=d,b=this.parseAssignmentExpression(),d=null,j=!1):(d=this.finalize(d,new g.VariableDeclaration(m,"var")),this.expect(";"))}else if(this.matchKeyword("const")||this.matchKeyword("let")){d=this.createNode();var o=this.nextToken().value;if(this.context.strict||"in"!==this.lookahead.value){var l=this.context.allowIn;this.context.allowIn=!1;var m=this.parseBindingList(o,{inFor:!0});this.context.allowIn=l,1===m.length&&null===m[0].init&&this.matchKeyword("in")?(d=this.finalize(d,new g.VariableDeclaration(m,o)),this.nextToken(),a=d,b=this.parseExpression(),d=null):1===m.length&&null===m[0].init&&this.matchContextualKeyword("of")?(d=this.finalize(d,new g.VariableDeclaration(m,o)),this.nextToken(),a=d,b=this.parseAssignmentExpression(),d=null,j=!1):(this.consumeSemicolon(),d=this.finalize(d,new g.VariableDeclaration(m,o)))}else d=this.finalize(d,new g.Identifier(o)),this.nextToken(),a=d,b=this.parseExpression(),d=null}else{var p=this.lookahead,l=this.context.allowIn;if(this.context.allowIn=!1,d=this.inheritCoverGrammar(this.parseAssignmentExpression),this.context.allowIn=l,this.matchKeyword("in"))this.context.isAssignmentTarget&&d.type!==i.Syntax.AssignmentExpression||this.tolerateError(f.Messages.InvalidLHSInForIn),this.nextToken(),this.reinterpretExpressionAsPattern(d),a=d,b=this.parseExpression(),d=null;else if(this.matchContextualKeyword("of"))this.context.isAssignmentTarget&&d.type!==i.Syntax.AssignmentExpression||this.tolerateError(f.Messages.InvalidLHSInForLoop),this.nextToken(),this.reinterpretExpressionAsPattern(d),a=d,b=this.parseAssignmentExpression(),d=null,j=!1;else{if(this.match(",")){for(var q=[d];this.match(",");)this.nextToken(),q.push(this.isolateCoverGrammar(this.parseAssignmentExpression));d=this.finalize(this.startNode(p),new g.SequenceExpression(q))}this.expect(";")}}if(void 0===a&&(this.match(";")||(e=this.parseExpression()),this.expect(";"),this.match(")")||(h=this.parseExpression())),!this.match(")")&&this.config.tolerant)this.tolerateUnexpectedToken(this.nextToken()),c=this.finalize(this.createNode(),new g.EmptyStatement);else{this.expect(")");var r=this.context.inIteration;this.context.inIteration=!0,c=this.isolateCoverGrammar(this.parseStatement),this.context.inIteration=r}return void 0===a?this.finalize(k,new g.ForStatement(d,e,h,c)):j?this.finalize(k,new g.ForInStatement(a,b,c)):this.finalize(k,new g.ForOfStatement(a,b,c))},a.prototype.parseContinueStatement=function(){var a=this.createNode();this.expectKeyword("continue");var b=null;if(3===this.lookahead.type&&!this.hasLineTerminator){var c=this.parseVariableIdentifier();b=c;var d="$"+c.name;Object.prototype.hasOwnProperty.call(this.context.labelSet,d)||this.throwError(f.Messages.UnknownLabel,c.name)}return this.consumeSemicolon(),null!==b||this.context.inIteration||this.throwError(f.Messages.IllegalContinue),this.finalize(a,new g.ContinueStatement(b))},a.prototype.parseBreakStatement=function(){var a=this.createNode();this.expectKeyword("break");var b=null;if(3===this.lookahead.type&&!this.hasLineTerminator){var c=this.parseVariableIdentifier(),d="$"+c.name;Object.prototype.hasOwnProperty.call(this.context.labelSet,d)||this.throwError(f.Messages.UnknownLabel,c.name),b=c}return this.consumeSemicolon(),null!==b||this.context.inIteration||this.context.inSwitch||this.throwError(f.Messages.IllegalBreak),this.finalize(a,new g.BreakStatement(b))},a.prototype.parseReturnStatement=function(){this.context.inFunctionBody||this.tolerateError(f.Messages.IllegalReturn);var a=this.createNode();this.expectKeyword("return");var b=(this.match(";")||this.match("}")||this.hasLineTerminator||2===this.lookahead.type)&&8!==this.lookahead.type&&10!==this.lookahead.type?null:this.parseExpression();return this.consumeSemicolon(),this.finalize(a,new g.ReturnStatement(b))},a.prototype.parseWithStatement=function(){this.context.strict&&this.tolerateError(f.Messages.StrictModeWith);var a,b=this.createNode();this.expectKeyword("with"),this.expect("(");var c=this.parseExpression();return!this.match(")")&&this.config.tolerant?(this.tolerateUnexpectedToken(this.nextToken()),a=this.finalize(this.createNode(),new g.EmptyStatement)):(this.expect(")"),a=this.parseStatement()),this.finalize(b,new g.WithStatement(c,a))},a.prototype.parseSwitchCase=function(){var a,b=this.createNode();this.matchKeyword("default")?(this.nextToken(),a=null):(this.expectKeyword("case"),a=this.parseExpression()),this.expect(":");for(var c=[];!(this.match("}")||this.matchKeyword("default")||this.matchKeyword("case"));)c.push(this.parseStatementListItem());return this.finalize(b,new g.SwitchCase(a,c))},a.prototype.parseSwitchStatement=function(){var a=this.createNode();this.expectKeyword("switch"),this.expect("(");var b=this.parseExpression();this.expect(")");var c=this.context.inSwitch;this.context.inSwitch=!0;var d=[],e=!1;for(this.expect("{");!this.match("}");){var h=this.parseSwitchCase();null===h.test&&(e&&this.throwError(f.Messages.MultipleDefaultsInSwitch),e=!0),d.push(h)}return this.expect("}"),this.context.inSwitch=c,this.finalize(a,new g.SwitchStatement(b,d))},a.prototype.parseLabelledStatement=function(){var a,b=this.createNode(),c=this.parseExpression();if(c.type===i.Syntax.Identifier&&this.match(":")){this.nextToken();var d=c,e="$"+d.name;Object.prototype.hasOwnProperty.call(this.context.labelSet,e)&&this.throwError(f.Messages.Redeclaration,"Label",d.name),this.context.labelSet[e]=!0;var h=void 0;if(this.matchKeyword("class"))this.tolerateUnexpectedToken(this.lookahead),h=this.parseClassDeclaration();else if(this.matchKeyword("function")){var j=this.lookahead,k=this.parseFunctionDeclaration();this.context.strict?this.tolerateUnexpectedToken(j,f.Messages.StrictFunction):k.generator&&this.tolerateUnexpectedToken(j,f.Messages.GeneratorInLegacyContext),h=k}else h=this.parseStatement();delete this.context.labelSet[e],a=new g.LabeledStatement(d,h)}else this.consumeSemicolon(),a=new g.ExpressionStatement(c);return this.finalize(b,a)},a.prototype.parseThrowStatement=function(){var a=this.createNode();this.expectKeyword("throw"),this.hasLineTerminator&&this.throwError(f.Messages.NewlineAfterThrow);var b=this.parseExpression();return this.consumeSemicolon(),this.finalize(a,new g.ThrowStatement(b))},a.prototype.parseCatchClause=function(){var a=this.createNode();this.expectKeyword("catch"),this.expect("("),this.match(")")&&this.throwUnexpectedToken(this.lookahead);for(var b=[],c=this.parsePattern(b),d={},e=0;e<b.length;e++){var h="$"+b[e].value;Object.prototype.hasOwnProperty.call(d,h)&&this.tolerateError(f.Messages.DuplicateBinding,b[e].value),d[h]=!0}this.context.strict&&c.type===i.Syntax.Identifier&&this.scanner.isRestrictedWord(c.name)&&this.tolerateError(f.Messages.StrictCatchVariable),this.expect(")");var j=this.parseBlock();return this.finalize(a,new g.CatchClause(c,j))},a.prototype.parseFinallyClause=function(){return this.expectKeyword("finally"),this.parseBlock()},a.prototype.parseTryStatement=function(){var a=this.createNode();this.expectKeyword("try");var b=this.parseBlock(),c=this.matchKeyword("catch")?this.parseCatchClause():null,d=this.matchKeyword("finally")?this.parseFinallyClause():null;return c||d||this.throwError(f.Messages.NoCatchOrFinally),this.finalize(a,new g.TryStatement(b,c,d))},a.prototype.parseDebuggerStatement=function(){var a=this.createNode();return this.expectKeyword("debugger"),this.consumeSemicolon(),this.finalize(a,new g.DebuggerStatement)},a.prototype.parseStatement=function(){var a;switch(this.lookahead.type){case 1:case 5:case 6:case 8:case 10:case 9:a=this.parseExpressionStatement();break;case 7:var b=this.lookahead.value;a="{"===b?this.parseBlock():"("===b?this.parseExpressionStatement():";"===b?this.parseEmptyStatement():this.parseExpressionStatement();break;case 3:a=this.matchAsyncFunction()?this.parseFunctionDeclaration():this.parseLabelledStatement();break;case 4:switch(this.lookahead.value){case"break":a=this.parseBreakStatement();break;case"continue":a=this.parseContinueStatement();break;case"debugger":a=this.parseDebuggerStatement();break;case"do":a=this.parseDoWhileStatement();break;case"for":a=this.parseForStatement();break;case"function":a=this.parseFunctionDeclaration();break;case"if":a=this.parseIfStatement();break;case"return":a=this.parseReturnStatement();break;case"switch":a=this.parseSwitchStatement();break;case"throw":a=this.parseThrowStatement();break;case"try":a=this.parseTryStatement();break;case"var":a=this.parseVariableStatement();break;case"while":a=this.parseWhileStatement();break;case"with":a=this.parseWithStatement();break;default:a=this.parseExpressionStatement()}break;default:a=this.throwUnexpectedToken(this.lookahead)}return a},a.prototype.parseFunctionSourceElements=function(){var a=this.createNode();this.expect("{");var b=this.parseDirectivePrologues(),c=this.context.labelSet,d=this.context.inIteration,e=this.context.inSwitch,f=this.context.inFunctionBody;for(this.context.labelSet={},this.context.inIteration=!1,this.context.inSwitch=!1,this.context.inFunctionBody=!0;2!==this.lookahead.type&&!this.match("}");)b.push(this.parseStatementListItem());return this.expect("}"),this.context.labelSet=c,this.context.inIteration=d,this.context.inSwitch=e,this.context.inFunctionBody=f,this.finalize(a,new g.BlockStatement(b))},a.prototype.validateParam=function(a,b,c){var d="$"+c;this.context.strict?(this.scanner.isRestrictedWord(c)&&(a.stricted=b,a.message=f.Messages.StrictParamName),Object.prototype.hasOwnProperty.call(a.paramSet,d)&&(a.stricted=b,a.message=f.Messages.StrictParamDupe)):!a.firstRestricted&&(this.scanner.isRestrictedWord(c)?(a.firstRestricted=b,a.message=f.Messages.StrictParamName):this.scanner.isStrictModeReservedWord(c)?(a.firstRestricted=b,a.message=f.Messages.StrictReservedWord):Object.prototype.hasOwnProperty.call(a.paramSet,d)&&(a.stricted=b,a.message=f.Messages.StrictParamDupe)),"function"==typeof Object.defineProperty?Object.defineProperty(a.paramSet,d,{value:!0,enumerable:!0,writable:!0,configurable:!0}):a.paramSet[d]=!0},a.prototype.parseRestElement=function(a){var b=this.createNode();this.expect("...");var c=this.parsePattern(a);return this.match("=")&&this.throwError(f.Messages.DefaultRestParameter),this.match(")")||this.throwError(f.Messages.ParameterAfterRestParameter),this.finalize(b,new g.RestElement(c))},a.prototype.parseFormalParameter=function(a){for(var b=[],c=this.match("...")?this.parseRestElement(b):this.parsePatternWithDefault(b),d=0;d<b.length;d++)this.validateParam(a,b[d],b[d].value);a.simple=a.simple&&c instanceof g.Identifier,a.params.push(c)},a.prototype.parseFormalParameters=function(a){var b;if(b={simple:!0,params:[],firstRestricted:a},this.expect("("),!this.match(")"))for(b.paramSet={};2!==this.lookahead.type&&(this.parseFormalParameter(b),!this.match(")"))&&(this.expect(","),!this.match(")")););return this.expect(")"),{simple:b.simple,params:b.params,stricted:b.stricted,firstRestricted:b.firstRestricted,message:b.message}},a.prototype.matchAsyncFunction=function(){var a=this.matchContextualKeyword("async");if(a){var b=this.scanner.saveState();this.scanner.scanComments();var c=this.scanner.lex();this.scanner.restoreState(b),a=b.lineNumber===c.lineNumber&&4===c.type&&"function"===c.value}return a},a.prototype.parseFunctionDeclaration=function(a){var b,c=this.createNode(),d=this.matchContextualKeyword("async");d&&this.nextToken(),this.expectKeyword("function");var e=!d&&this.match("*");e&&this.nextToken();var h=null,i=null;if(!a||!this.match("(")){var j=this.lookahead;h=this.parseVariableIdentifier(),this.context.strict?this.scanner.isRestrictedWord(j.value)&&this.tolerateUnexpectedToken(j,f.Messages.StrictFunctionName):this.scanner.isRestrictedWord(j.value)?(i=j,b=f.Messages.StrictFunctionName):this.scanner.isStrictModeReservedWord(j.value)&&(i=j,b=f.Messages.StrictReservedWord)}var k=this.context.await,l=this.context.allowYield;this.context.await=d,this.context.allowYield=!e;var m=this.parseFormalParameters(i),n=m.params,o=m.stricted;i=m.firstRestricted,m.message&&(b=m.message);var p=this.context.strict,q=this.context.allowStrictDirective;this.context.allowStrictDirective=m.simple;var r=this.parseFunctionSourceElements();return this.context.strict&&i&&this.throwUnexpectedToken(i,b),this.context.strict&&o&&this.tolerateUnexpectedToken(o,b),this.context.strict=p,this.context.allowStrictDirective=q,this.context.await=k,this.context.allowYield=l,d?this.finalize(c,new g.AsyncFunctionDeclaration(h,n,r)):this.finalize(c,new g.FunctionDeclaration(h,n,r,e))},a.prototype.parseFunctionExpression=function(){var a,b,c=this.createNode(),d=this.matchContextualKeyword("async");d&&this.nextToken(),this.expectKeyword("function");var e=!d&&this.match("*");e&&this.nextToken();var h=null,i=this.context.await,j=this.context.allowYield;if(this.context.await=d,this.context.allowYield=!e,!this.match("(")){var k=this.lookahead;h=!this.context.strict&&!e&&this.matchKeyword("yield")?this.parseIdentifierName():this.parseVariableIdentifier(),this.context.strict?this.scanner.isRestrictedWord(k.value)&&this.tolerateUnexpectedToken(k,f.Messages.StrictFunctionName):this.scanner.isRestrictedWord(k.value)?(b=k,a=f.Messages.StrictFunctionName):this.scanner.isStrictModeReservedWord(k.value)&&(b=k,a=f.Messages.StrictReservedWord)}var l=this.parseFormalParameters(b),m=l.params,n=l.stricted;b=l.firstRestricted,l.message&&(a=l.message);var o=this.context.strict,p=this.context.allowStrictDirective;this.context.allowStrictDirective=l.simple;var q=this.parseFunctionSourceElements();return this.context.strict&&b&&this.throwUnexpectedToken(b,a),this.context.strict&&n&&this.tolerateUnexpectedToken(n,a),this.context.strict=o,this.context.allowStrictDirective=p,this.context.await=i,this.context.allowYield=j,d?this.finalize(c,new g.AsyncFunctionExpression(h,m,q)):this.finalize(c,new g.FunctionExpression(h,m,q,e))},a.prototype.parseDirective=function(){var a=this.lookahead,b=this.createNode(),c=this.parseExpression(),d=c.type===i.Syntax.Literal?this.getTokenRaw(a).slice(1,-1):null;return this.consumeSemicolon(),this.finalize(b,d?new g.Directive(c,d):new g.ExpressionStatement(c))},a.prototype.parseDirectivePrologues=function(){for(var a=null,b=[];;){var c=this.lookahead;if(8!==c.type)break;var d=this.parseDirective();b.push(d);var e=d.directive;if("string"!=typeof e)break;"use strict"===e?(this.context.strict=!0,a&&this.tolerateUnexpectedToken(a,f.Messages.StrictOctalLiteral),this.context.allowStrictDirective||this.tolerateUnexpectedToken(c,f.Messages.IllegalLanguageModeDirective)):!a&&c.octal&&(a=c)}return b},a.prototype.qualifiedPropertyName=function(a){switch(a.type){case 3:case 8:case 1:case 5:case 6:case 4:return!0;case 7:return"["===a.value}return!1},a.prototype.parseGetterMethod=function(){var a=this.createNode(),b=!1,c=this.context.allowYield;this.context.allowYield=!b;var d=this.parseFormalParameters();d.params.length>0&&this.tolerateError(f.Messages.BadGetterArity);var e=this.parsePropertyMethod(d);return this.context.allowYield=c,this.finalize(a,new g.FunctionExpression(null,d.params,e,b))},a.prototype.parseSetterMethod=function(){var a=this.createNode(),b=!1,c=this.context.allowYield;this.context.allowYield=!b;var d=this.parseFormalParameters();1!==d.params.length?this.tolerateError(f.Messages.BadSetterArity):d.params[0]instanceof g.RestElement&&this.tolerateError(f.Messages.BadSetterRestParameter);var e=this.parsePropertyMethod(d);return this.context.allowYield=c,this.finalize(a,new g.FunctionExpression(null,d.params,e,b))},a.prototype.parseGeneratorMethod=function(){var a=this.createNode(),b=!0,c=this.context.allowYield;this.context.allowYield=!0;var d=this.parseFormalParameters();this.context.allowYield=!1;var e=this.parsePropertyMethod(d);return this.context.allowYield=c,this.finalize(a,new g.FunctionExpression(null,d.params,e,b))},a.prototype.isStartOfExpression=function(){var a=!0,b=this.lookahead.value;switch(this.lookahead.type){case 7:a="["===b||"("===b||"{"===b||"+"===b||"-"===b||"!"===b||"~"===b||"++"===b||"--"===b||"/"===b||"/="===b;break;case 4:a="class"===b||"delete"===b||"function"===b||"let"===b||"new"===b||"super"===b||"this"===b||"typeof"===b||"void"===b||"yield"===b}return a},a.prototype.parseYieldExpression=function(){var a=this.createNode();this.expectKeyword("yield");var b=null,c=!1;if(!this.hasLineTerminator){var d=this.context.allowYield;this.context.allowYield=!1,(c=this.match("*"))?(this.nextToken(),b=this.parseAssignmentExpression()):this.isStartOfExpression()&&(b=this.parseAssignmentExpression()),this.context.allowYield=d}return this.finalize(a,new g.YieldExpression(b,c))},a.prototype.parseClassElement=function(a){var b=this.lookahead,c=this.createNode(),d="",e=null,h=null,i=!1,j=!1,k=!1,l=!1;if(this.match("*"))this.nextToken();else if(i=this.match("["),"static"===(e=this.parseObjectPropertyKey()).name&&(this.qualifiedPropertyName(this.lookahead)||this.match("*"))&&(b=this.lookahead,k=!0,i=this.match("["),this.match("*")?this.nextToken():e=this.parseObjectPropertyKey()),3===b.type&&!this.hasLineTerminator&&"async"===b.value){var m=this.lookahead.value;":"!==m&&"("!==m&&"*"!==m&&(l=!0,b=this.lookahead,e=this.parseObjectPropertyKey(),3===b.type&&"constructor"===b.value&&this.tolerateUnexpectedToken(b,f.Messages.ConstructorIsAsync))}var n=this.qualifiedPropertyName(this.lookahead);return 3===b.type?"get"===b.value&&n?(d="get",i=this.match("["),e=this.parseObjectPropertyKey(),this.context.allowYield=!1,h=this.parseGetterMethod()):"set"===b.value&&n&&(d="set",i=this.match("["),e=this.parseObjectPropertyKey(),h=this.parseSetterMethod()):7===b.type&&"*"===b.value&&n&&(d="init",i=this.match("["),e=this.parseObjectPropertyKey(),h=this.parseGeneratorMethod(),j=!0),!d&&e&&this.match("(")&&(d="init",h=l?this.parsePropertyMethodAsyncFunction():this.parsePropertyMethodFunction(),j=!0),d||this.throwUnexpectedToken(this.lookahead),"init"===d&&(d="method"),!i&&(k&&this.isPropertyKey(e,"prototype")&&this.throwUnexpectedToken(b,f.Messages.StaticPrototype),!k&&this.isPropertyKey(e,"constructor")&&(("method"!==d||!j||h&&h.generator)&&this.throwUnexpectedToken(b,f.Messages.ConstructorSpecialMethod),a.value?this.throwUnexpectedToken(b,f.Messages.DuplicateConstructor):a.value=!0,d="constructor")),this.finalize(c,new g.MethodDefinition(e,i,h,d,k))},a.prototype.parseClassElementList=function(){var a=[],b={value:!1};for(this.expect("{");!this.match("}");)this.match(";")?this.nextToken():a.push(this.parseClassElement(b));return this.expect("}"),a},a.prototype.parseClassBody=function(){var a=this.createNode(),b=this.parseClassElementList();return this.finalize(a,new g.ClassBody(b))},a.prototype.parseClassDeclaration=function(a){var b=this.createNode(),c=this.context.strict;this.context.strict=!0,this.expectKeyword("class");var d=a&&3!==this.lookahead.type?null:this.parseVariableIdentifier(),e=null;this.matchKeyword("extends")&&(this.nextToken(),e=this.isolateCoverGrammar(this.parseLeftHandSideExpressionAllowCall));var f=this.parseClassBody();return this.context.strict=c,this.finalize(b,new g.ClassDeclaration(d,e,f))},a.prototype.parseClassExpression=function(){var a=this.createNode(),b=this.context.strict;this.context.strict=!0,this.expectKeyword("class");var c=3===this.lookahead.type?this.parseVariableIdentifier():null,d=null;this.matchKeyword("extends")&&(this.nextToken(),d=this.isolateCoverGrammar(this.parseLeftHandSideExpressionAllowCall));var e=this.parseClassBody();return this.context.strict=b,this.finalize(a,new g.ClassExpression(c,d,e))},a.prototype.parseModule=function(){this.context.strict=!0,this.context.isModule=!0,this.scanner.isModule=!0;for(var a=this.createNode(),b=this.parseDirectivePrologues();2!==this.lookahead.type;)b.push(this.parseStatementListItem());return this.finalize(a,new g.Module(b))},a.prototype.parseScript=function(){for(var a=this.createNode(),b=this.parseDirectivePrologues();2!==this.lookahead.type;)b.push(this.parseStatementListItem());return this.finalize(a,new g.Script(b))},a.prototype.parseModuleSpecifier=function(){var a=this.createNode();8!==this.lookahead.type&&this.throwError(f.Messages.InvalidModuleSpecifier);var b=this.nextToken(),c=this.getTokenRaw(b);return this.finalize(a,new g.Literal(b.value,c))},a.prototype.parseImportSpecifier=function(){var a,b,c=this.createNode();return 3===this.lookahead.type?(b=a=this.parseVariableIdentifier(),this.matchContextualKeyword("as")&&(this.nextToken(),b=this.parseVariableIdentifier())):(b=a=this.parseIdentifierName(),this.matchContextualKeyword("as")?(this.nextToken(),b=this.parseVariableIdentifier()):this.throwUnexpectedToken(this.nextToken())),this.finalize(c,new g.ImportSpecifier(b,a))},a.prototype.parseNamedImports=function(){this.expect("{");for(var a=[];!this.match("}");)a.push(this.parseImportSpecifier()),this.match("}")||this.expect(",");return this.expect("}"),a},a.prototype.parseImportDefaultSpecifier=function(){var a=this.createNode(),b=this.parseIdentifierName();return this.finalize(a,new g.ImportDefaultSpecifier(b))},a.prototype.parseImportNamespaceSpecifier=function(){var a=this.createNode();this.expect("*"),this.matchContextualKeyword("as")||this.throwError(f.Messages.NoAsAfterImportNamespace),this.nextToken();var b=this.parseIdentifierName();return this.finalize(a,new g.ImportNamespaceSpecifier(b))},a.prototype.parseImportDeclaration=function(){this.context.inFunctionBody&&this.throwError(f.Messages.IllegalImportDeclaration);var a,b=this.createNode();this.expectKeyword("import");var c=[];if(8===this.lookahead.type)a=this.parseModuleSpecifier();else{if(this.match("{")?c=c.concat(this.parseNamedImports()):this.match("*")?c.push(this.parseImportNamespaceSpecifier()):this.isIdentifierName(this.lookahead)&&!this.matchKeyword("default")?(c.push(this.parseImportDefaultSpecifier()),this.match(",")&&(this.nextToken(),this.match("*")?c.push(this.parseImportNamespaceSpecifier()):this.match("{")?c=c.concat(this.parseNamedImports()):this.throwUnexpectedToken(this.lookahead))):this.throwUnexpectedToken(this.nextToken()),!this.matchContextualKeyword("from")){var d=this.lookahead.value?f.Messages.UnexpectedToken:f.Messages.MissingFromClause;this.throwError(d,this.lookahead.value)}this.nextToken(),a=this.parseModuleSpecifier()}return this.consumeSemicolon(),this.finalize(b,new g.ImportDeclaration(c,a))},a.prototype.parseExportSpecifier=function(){var a=this.createNode(),b=this.parseIdentifierName(),c=b;return this.matchContextualKeyword("as")&&(this.nextToken(),c=this.parseIdentifierName()),this.finalize(a,new g.ExportSpecifier(b,c))},a.prototype.parseExportDeclaration=function(){this.context.inFunctionBody&&this.throwError(f.Messages.IllegalExportDeclaration);var a,b=this.createNode();if(this.expectKeyword("export"),this.matchKeyword("default"))if(this.nextToken(),this.matchKeyword("function")){var c=this.parseFunctionDeclaration(!0);a=this.finalize(b,new g.ExportDefaultDeclaration(c))}else if(this.matchKeyword("class")){var c=this.parseClassDeclaration(!0);a=this.finalize(b,new g.ExportDefaultDeclaration(c))}else if(this.matchContextualKeyword("async")){var c=this.matchAsyncFunction()?this.parseFunctionDeclaration(!0):this.parseAssignmentExpression();a=this.finalize(b,new g.ExportDefaultDeclaration(c))}else{this.matchContextualKeyword("from")&&this.throwError(f.Messages.UnexpectedToken,this.lookahead.value);var c=this.match("{")?this.parseObjectInitializer():this.match("[")?this.parseArrayInitializer():this.parseAssignmentExpression();this.consumeSemicolon(),a=this.finalize(b,new g.ExportDefaultDeclaration(c))}else if(this.match("*")){if(this.nextToken(),!this.matchContextualKeyword("from")){var d=this.lookahead.value?f.Messages.UnexpectedToken:f.Messages.MissingFromClause;this.throwError(d,this.lookahead.value)}this.nextToken();var e=this.parseModuleSpecifier();this.consumeSemicolon(),a=this.finalize(b,new g.ExportAllDeclaration(e))}else if(4===this.lookahead.type){var c=void 0;switch(this.lookahead.value){case"let":case"const":c=this.parseLexicalDeclaration({inFor:!1});break;case"var":case"class":case"function":c=this.parseStatementListItem();break;default:this.throwUnexpectedToken(this.lookahead)}a=this.finalize(b,new g.ExportNamedDeclaration(c,[],null))}else if(this.matchAsyncFunction()){var c=this.parseFunctionDeclaration();a=this.finalize(b,new g.ExportNamedDeclaration(c,[],null))}else{var h=[],i=null,j=!1;for(this.expect("{");!this.match("}");)j=j||this.matchKeyword("default"),h.push(this.parseExportSpecifier()),this.match("}")||this.expect(",");if(this.expect("}"),this.matchContextualKeyword("from"))this.nextToken(),i=this.parseModuleSpecifier(),this.consumeSemicolon();else if(j){var d=this.lookahead.value?f.Messages.UnexpectedToken:f.Messages.MissingFromClause;this.throwError(d,this.lookahead.value)}else this.consumeSemicolon();a=this.finalize(b,new g.ExportNamedDeclaration(null,h,i))}return a},a}()},function(a,b){"use strict";Object.defineProperty(b,"__esModule",{value:!0}),b.assert=function(a,b){if(!a)throw Error("ASSERT: "+b)}},function(a,b){"use strict";Object.defineProperty(b,"__esModule",{value:!0}),b.ErrorHandler=function(){function a(){this.errors=[],this.tolerant=!1}return a.prototype.recordError=function(a){this.errors.push(a)},a.prototype.tolerate=function(a){if(this.tolerant)this.recordError(a);else throw a},a.prototype.constructError=function(a,b){var c=Error(a);try{throw c}catch(a){Object.create&&Object.defineProperty&&Object.defineProperty(c=Object.create(a),"column",{value:b})}return c},a.prototype.createError=function(a,b,c,d){var e="Line "+b+": "+d,f=this.constructError(e,c);return f.index=a,f.lineNumber=b,f.description=d,f},a.prototype.throwError=function(a,b,c,d){throw this.createError(a,b,c,d)},a.prototype.tolerateError=function(a,b,c,d){var e=this.createError(a,b,c,d);if(this.tolerant)this.recordError(e);else throw e},a}()},function(a,b){"use strict";Object.defineProperty(b,"__esModule",{value:!0}),b.Messages={BadGetterArity:"Getter must not have any formal parameters",BadSetterArity:"Setter must have exactly one formal parameter",BadSetterRestParameter:"Setter function argument must not be a rest parameter",ConstructorIsAsync:"Class constructor may not be an async method",ConstructorSpecialMethod:"Class constructor may not be an accessor",DeclarationMissingInitializer:"Missing initializer in %0 declaration",DefaultRestParameter:"Unexpected token =",DuplicateBinding:"Duplicate binding %0",DuplicateConstructor:"A class may only have one constructor",DuplicateProtoProperty:"Duplicate __proto__ fields are not allowed in object literals",ForInOfLoopInitializer:"%0 loop variable declaration may not have an initializer",GeneratorInLegacyContext:"Generator declarations are not allowed in legacy contexts",IllegalBreak:"Illegal break statement",IllegalContinue:"Illegal continue statement",IllegalExportDeclaration:"Unexpected token",IllegalImportDeclaration:"Unexpected token",IllegalLanguageModeDirective:"Illegal 'use strict' directive in function with non-simple parameter list",IllegalReturn:"Illegal return statement",InvalidEscapedReservedWord:"Keyword must not contain escaped characters",InvalidHexEscapeSequence:"Invalid hexadecimal escape sequence",InvalidLHSInAssignment:"Invalid left-hand side in assignment",InvalidLHSInForIn:"Invalid left-hand side in for-in",InvalidLHSInForLoop:"Invalid left-hand side in for-loop",InvalidModuleSpecifier:"Unexpected token",InvalidRegExp:"Invalid regular expression",LetInLexicalBinding:"let is disallowed as a lexically bound name",MissingFromClause:"Unexpected token",MultipleDefaultsInSwitch:"More than one default clause in switch statement",NewlineAfterThrow:"Illegal newline after throw",NoAsAfterImportNamespace:"Unexpected token",NoCatchOrFinally:"Missing catch or finally after try",ParameterAfterRestParameter:"Rest parameter must be last formal parameter",Redeclaration:"%0 '%1' has already been declared",StaticPrototype:"Classes may not have static property named prototype",StrictCatchVariable:"Catch variable may not be eval or arguments in strict mode",StrictDelete:"Delete of an unqualified identifier in strict mode.",StrictFunction:"In strict mode code, functions can only be declared at top level or inside a block",StrictFunctionName:"Function name may not be eval or arguments in strict mode",StrictLHSAssignment:"Assignment to eval or arguments is not allowed in strict mode",StrictLHSPostfix:"Postfix increment/decrement may not have eval or arguments operand in strict mode",StrictLHSPrefix:"Prefix increment/decrement may not have eval or arguments operand in strict mode",StrictModeWith:"Strict mode code may not include a with statement",StrictOctalLiteral:"Octal literals are not allowed in strict mode.",StrictParamDupe:"Strict mode function may not have duplicate parameter names",StrictParamName:"Parameter name eval or arguments is not allowed in strict mode",StrictReservedWord:"Use of future reserved word in strict mode",StrictVarName:"Variable name may not be eval or arguments in strict mode",TemplateOctalLiteral:"Octal literals are not allowed in template strings.",UnexpectedEOS:"Unexpected end of input",UnexpectedIdentifier:"Unexpected identifier",UnexpectedNumber:"Unexpected number",UnexpectedReserved:"Unexpected reserved word",UnexpectedString:"Unexpected string",UnexpectedTemplate:"Unexpected quasi %0",UnexpectedToken:"Unexpected token %0",UnexpectedTokenIllegal:"Unexpected token ILLEGAL",UnknownLabel:"Undefined label '%0'",UnterminatedRegExp:"Invalid regular expression: missing /"}},function(a,b,c){"use strict";Object.defineProperty(b,"__esModule",{value:!0});var d=c(9),e=c(4),f=c(11);function g(a){return"0123456789abcdef".indexOf(a.toLowerCase())}function h(a){return"01234567".indexOf(a)}b.Scanner=function(){function a(a,b){this.source=a,this.errorHandler=b,this.trackComment=!1,this.isModule=!1,this.length=a.length,this.index=0,this.lineNumber=+(a.length>0),this.lineStart=0,this.curlyStack=[]}return a.prototype.saveState=function(){return{index:this.index,lineNumber:this.lineNumber,lineStart:this.lineStart}},a.prototype.restoreState=function(a){this.index=a.index,this.lineNumber=a.lineNumber,this.lineStart=a.lineStart},a.prototype.eof=function(){return this.index>=this.length},a.prototype.throwUnexpectedToken=function(a){return void 0===a&&(a=f.Messages.UnexpectedTokenIllegal),this.errorHandler.throwError(this.index,this.lineNumber,this.index-this.lineStart+1,a)},a.prototype.tolerateUnexpectedToken=function(a){void 0===a&&(a=f.Messages.UnexpectedTokenIllegal),this.errorHandler.tolerateError(this.index,this.lineNumber,this.index-this.lineStart+1,a)},a.prototype.skipSingleLineComment=function(a){var b,c,d=[];for(this.trackComment&&(d=[],b=this.index-a,c={start:{line:this.lineNumber,column:this.index-this.lineStart-a},end:{}});!this.eof();){var f=this.source.charCodeAt(this.index);if(++this.index,e.Character.isLineTerminator(f)){if(this.trackComment){c.end={line:this.lineNumber,column:this.index-this.lineStart-1};var g={multiLine:!1,slice:[b+a,this.index-1],range:[b,this.index-1],loc:c};d.push(g)}return 13===f&&10===this.source.charCodeAt(this.index)&&++this.index,++this.lineNumber,this.lineStart=this.index,d}}if(this.trackComment){c.end={line:this.lineNumber,column:this.index-this.lineStart};var g={multiLine:!1,slice:[b+a,this.index],range:[b,this.index],loc:c};d.push(g)}return d},a.prototype.skipMultiLineComment=function(){var a,b,c=[];for(this.trackComment&&(c=[],a=this.index-2,b={start:{line:this.lineNumber,column:this.index-this.lineStart-2},end:{}});!this.eof();){var d=this.source.charCodeAt(this.index);if(e.Character.isLineTerminator(d))13===d&&10===this.source.charCodeAt(this.index+1)&&++this.index,++this.lineNumber,++this.index,this.lineStart=this.index;else if(42===d){if(47===this.source.charCodeAt(this.index+1)){if(this.index+=2,this.trackComment){b.end={line:this.lineNumber,column:this.index-this.lineStart};var f={multiLine:!0,slice:[a+2,this.index-2],range:[a,this.index],loc:b};c.push(f)}return c}++this.index}else++this.index}if(this.trackComment){b.end={line:this.lineNumber,column:this.index-this.lineStart};var f={multiLine:!0,slice:[a+2,this.index],range:[a,this.index],loc:b};c.push(f)}return this.tolerateUnexpectedToken(),c},a.prototype.scanComments=function(){this.trackComment&&(a=[]);for(var a,b=0===this.index;!this.eof();){var c=this.source.charCodeAt(this.index);if(e.Character.isWhiteSpace(c))++this.index;else if(e.Character.isLineTerminator(c))++this.index,13===c&&10===this.source.charCodeAt(this.index)&&++this.index,++this.lineNumber,this.lineStart=this.index,b=!0;else if(47===c)if(47===(c=this.source.charCodeAt(this.index+1))){this.index+=2;var d=this.skipSingleLineComment(2);this.trackComment&&(a=a.concat(d)),b=!0}else if(42===c){this.index+=2;var d=this.skipMultiLineComment();this.trackComment&&(a=a.concat(d))}else break;else if(b&&45===c)if(45===this.source.charCodeAt(this.index+1)&&62===this.source.charCodeAt(this.index+2)){this.index+=3;var d=this.skipSingleLineComment(3);this.trackComment&&(a=a.concat(d))}else break;else if(60!==c||this.isModule)break;else if("!--"===this.source.slice(this.index+1,this.index+4)){this.index+=4;var d=this.skipSingleLineComment(4);this.trackComment&&(a=a.concat(d))}else break}return a},a.prototype.isFutureReservedWord=function(a){switch(a){case"enum":case"export":case"import":case"super":return!0;default:return!1}},a.prototype.isStrictModeReservedWord=function(a){switch(a){case"implements":case"interface":case"package":case"private":case"protected":case"public":case"static":case"yield":case"let":return!0;default:return!1}},a.prototype.isRestrictedWord=function(a){return"eval"===a||"arguments"===a},a.prototype.isKeyword=function(a){switch(a.length){case 2:return"if"===a||"in"===a||"do"===a;case 3:return"var"===a||"for"===a||"new"===a||"try"===a||"let"===a;case 4:return"this"===a||"else"===a||"case"===a||"void"===a||"with"===a||"enum"===a;case 5:return"while"===a||"break"===a||"catch"===a||"throw"===a||"const"===a||"yield"===a||"class"===a||"super"===a;case 6:return"return"===a||"typeof"===a||"delete"===a||"switch"===a||"export"===a||"import"===a;case 7:return"default"===a||"finally"===a||"extends"===a;case 8:return"function"===a||"continue"===a||"debugger"===a;case 10:return"instanceof"===a;default:return!1}},a.prototype.codePointAt=function(a){var b=this.source.charCodeAt(a);if(b>=55296&&b<=56319){var c=this.source.charCodeAt(a+1);c>=56320&&c<=57343&&(b=(b-55296)*1024+c-56320+65536)}return b},a.prototype.scanHexEscape=function(a){for(var b="u"===a?4:2,c=0,d=0;d<b;++d)if(!(!this.eof()&&e.Character.isHexDigit(this.source.charCodeAt(this.index))))return null;else c=16*c+g(this.source[this.index++]);return String.fromCharCode(c)},a.prototype.scanUnicodeCodePointEscape=function(){var a=this.source[this.index],b=0;for("}"===a&&this.throwUnexpectedToken();!this.eof()&&(a=this.source[this.index++],e.Character.isHexDigit(a.charCodeAt(0)));)b=16*b+g(a);return(b>1114111||"}"!==a)&&this.throwUnexpectedToken(),e.Character.fromCodePoint(b)},a.prototype.getIdentifier=function(){for(var a=this.index++;!this.eof();){var b=this.source.charCodeAt(this.index);if(92===b||b>=55296&&b<57343)return this.index=a,this.getComplexIdentifier();if(e.Character.isIdentifierPart(b))++this.index;else break}return this.source.slice(a,this.index)},a.prototype.getComplexIdentifier=function(){var a,b=this.codePointAt(this.index),c=e.Character.fromCodePoint(b);for(this.index+=c.length,92===b&&(117!==this.source.charCodeAt(this.index)&&this.throwUnexpectedToken(),++this.index,"{"===this.source[this.index]?(++this.index,a=this.scanUnicodeCodePointEscape()):null!==(a=this.scanHexEscape("u"))&&"\\"!==a&&e.Character.isIdentifierStart(a.charCodeAt(0))||this.throwUnexpectedToken(),c=a);!this.eof()&&(b=this.codePointAt(this.index),e.Character.isIdentifierPart(b));)c+=a=e.Character.fromCodePoint(b),this.index+=a.length,92===b&&(c=c.substr(0,c.length-1),117!==this.source.charCodeAt(this.index)&&this.throwUnexpectedToken(),++this.index,"{"===this.source[this.index]?(++this.index,a=this.scanUnicodeCodePointEscape()):null!==(a=this.scanHexEscape("u"))&&"\\"!==a&&e.Character.isIdentifierPart(a.charCodeAt(0))||this.throwUnexpectedToken(),c+=a);return c},a.prototype.octalToDecimal=function(a){var b="0"!==a,c=h(a);return!this.eof()&&e.Character.isOctalDigit(this.source.charCodeAt(this.index))&&(b=!0,c=8*c+h(this.source[this.index++]),"0123".indexOf(a)>=0&&!this.eof()&&e.Character.isOctalDigit(this.source.charCodeAt(this.index))&&(c=8*c+h(this.source[this.index++]))),{code:c,octal:b}},a.prototype.scanIdentifier=function(){var a,b=this.index,c=92===this.source.charCodeAt(b)?this.getComplexIdentifier():this.getIdentifier();if(3!=(a=1===c.length?3:this.isKeyword(c)?4:"null"===c?5:"true"===c||"false"===c?1:3)&&b+c.length!==this.index){var d=this.index;this.index=b,this.tolerateUnexpectedToken(f.Messages.InvalidEscapedReservedWord),this.index=d}return{type:a,value:c,lineNumber:this.lineNumber,lineStart:this.lineStart,start:b,end:this.index}},a.prototype.scanPunctuator=function(){var a=this.index,b=this.source[this.index];switch(b){case"(":case"{":"{"===b&&this.curlyStack.push("{"),++this.index;break;case".":++this.index,"."===this.source[this.index]&&"."===this.source[this.index+1]&&(this.index+=2,b="...");break;case"}":++this.index,this.curlyStack.pop();break;case")":case";":case",":case"[":case"]":case":":case"?":case"~":++this.index;break;default:">>>="===(b=this.source.substr(this.index,4))?this.index+=4:"==="===(b=b.substr(0,3))||"!=="===b||">>>"===b||"<<="===b||">>="===b||"**="===b?this.index+=3:"&&"===(b=b.substr(0,2))||"||"===b||"=="===b||"!="===b||"+="===b||"-="===b||"*="===b||"/="===b||"++"===b||"--"===b||"<<"===b||">>"===b||"&="===b||"|="===b||"^="===b||"%="===b||"<="===b||">="===b||"=>"===b||"**"===b?this.index+=2:(b=this.source[this.index],"<>=!+-*%&|^/".indexOf(b)>=0&&++this.index)}return this.index===a&&this.throwUnexpectedToken(),{type:7,value:b,lineNumber:this.lineNumber,lineStart:this.lineStart,start:a,end:this.index}},a.prototype.scanHexLiteral=function(a){for(var b="";!this.eof()&&e.Character.isHexDigit(this.source.charCodeAt(this.index));)b+=this.source[this.index++];return 0===b.length&&this.throwUnexpectedToken(),e.Character.isIdentifierStart(this.source.charCodeAt(this.index))&&this.throwUnexpectedToken(),{type:6,value:parseInt("0x"+b,16),lineNumber:this.lineNumber,lineStart:this.lineStart,start:a,end:this.index}},a.prototype.scanBinaryLiteral=function(a){for(var b,c="";!this.eof()&&("0"===(b=this.source[this.index])||"1"===b);)c+=this.source[this.index++];return 0===c.length&&this.throwUnexpectedToken(),!this.eof()&&(b=this.source.charCodeAt(this.index),(e.Character.isIdentifierStart(b)||e.Character.isDecimalDigit(b))&&this.throwUnexpectedToken()),{type:6,value:parseInt(c,2),lineNumber:this.lineNumber,lineStart:this.lineStart,start:a,end:this.index}},a.prototype.scanOctalLiteral=function(a,b){var c="",d=!1;for(e.Character.isOctalDigit(a.charCodeAt(0))?(d=!0,c="0"+this.source[this.index++]):++this.index;!this.eof()&&e.Character.isOctalDigit(this.source.charCodeAt(this.index));)c+=this.source[this.index++];return d||0!==c.length||this.throwUnexpectedToken(),(e.Character.isIdentifierStart(this.source.charCodeAt(this.index))||e.Character.isDecimalDigit(this.source.charCodeAt(this.index)))&&this.throwUnexpectedToken(),{type:6,value:parseInt(c,8),octal:d,lineNumber:this.lineNumber,lineStart:this.lineStart,start:b,end:this.index}},a.prototype.isImplicitOctalLiteral=function(){for(var a=this.index+1;a<this.length;++a){var b=this.source[a];if("8"===b||"9"===b)return!1;if(!e.Character.isOctalDigit(b.charCodeAt(0)))break}return!0},a.prototype.scanNumericLiteral=function(){var a=this.index,b=this.source[a];d.assert(e.Character.isDecimalDigit(b.charCodeAt(0))||"."===b,"Numeric literal must start with a decimal digit or a decimal point");var c="";if("."!==b){if(c=this.source[this.index++],b=this.source[this.index],"0"===c){if("x"===b||"X"===b)return++this.index,this.scanHexLiteral(a);if("b"===b||"B"===b)return++this.index,this.scanBinaryLiteral(a);if("o"===b||"O"===b||b&&e.Character.isOctalDigit(b.charCodeAt(0))&&this.isImplicitOctalLiteral())return this.scanOctalLiteral(b,a)}for(;e.Character.isDecimalDigit(this.source.charCodeAt(this.index));)c+=this.source[this.index++];b=this.source[this.index]}if("."===b){for(c+=this.source[this.index++];e.Character.isDecimalDigit(this.source.charCodeAt(this.index));)c+=this.source[this.index++];b=this.source[this.index]}if("e"===b||"E"===b)if(c+=this.source[this.index++],("+"===(b=this.source[this.index])||"-"===b)&&(c+=this.source[this.index++]),e.Character.isDecimalDigit(this.source.charCodeAt(this.index)))for(;e.Character.isDecimalDigit(this.source.charCodeAt(this.index));)c+=this.source[this.index++];else this.throwUnexpectedToken();return e.Character.isIdentifierStart(this.source.charCodeAt(this.index))&&this.throwUnexpectedToken(),{type:6,value:parseFloat(c),lineNumber:this.lineNumber,lineStart:this.lineStart,start:a,end:this.index}},a.prototype.scanStringLiteral=function(){var a=this.index,b=this.source[a];d.assert("'"===b||'"'===b,"String literal must starts with a quote"),++this.index;for(var c=!1,g="";!this.eof();){var h=this.source[this.index++];if(h===b){b="";break}if("\\"===h)if((h=this.source[this.index++])&&e.Character.isLineTerminator(h.charCodeAt(0)))++this.lineNumber,"\r"===h&&"\n"===this.source[this.index]&&++this.index,this.lineStart=this.index;else switch(h){case"u":if("{"===this.source[this.index])++this.index,g+=this.scanUnicodeCodePointEscape();else{var i=this.scanHexEscape(h);null===i&&this.throwUnexpectedToken(),g+=i}break;case"x":var j=this.scanHexEscape(h);null===j&&this.throwUnexpectedToken(f.Messages.InvalidHexEscapeSequence),g+=j;break;case"n":g+="\n";break;case"r":g+="\r";break;case"t":g+=" ";break;case"b":g+="\b";break;case"f":g+="\f";break;case"v":g+="\v";break;case"8":case"9":g+=h,this.tolerateUnexpectedToken();break;default:if(h&&e.Character.isOctalDigit(h.charCodeAt(0))){var k=this.octalToDecimal(h);c=k.octal||c,g+=String.fromCharCode(k.code)}else g+=h}else if(e.Character.isLineTerminator(h.charCodeAt(0)))break;else g+=h}return""!==b&&(this.index=a,this.throwUnexpectedToken()),{type:8,value:g,octal:c,lineNumber:this.lineNumber,lineStart:this.lineStart,start:a,end:this.index}},a.prototype.scanTemplate=function(){var a="",b=!1,c=this.index,d="`"===this.source[c],g=!1,h=2;for(++this.index;!this.eof();){var i=this.source[this.index++];if("`"===i){h=1,g=!0,b=!0;break}if("$"===i){if("{"===this.source[this.index]){this.curlyStack.push("${"),++this.index,b=!0;break}a+=i}else if("\\"===i)if(i=this.source[this.index++],e.Character.isLineTerminator(i.charCodeAt(0)))++this.lineNumber,"\r"===i&&"\n"===this.source[this.index]&&++this.index,this.lineStart=this.index;else switch(i){case"n":a+="\n";break;case"r":a+="\r";break;case"t":a+=" ";break;case"u":if("{"===this.source[this.index])++this.index,a+=this.scanUnicodeCodePointEscape();else{var j=this.index,k=this.scanHexEscape(i);null!==k?a+=k:(this.index=j,a+=i)}break;case"x":var l=this.scanHexEscape(i);null===l&&this.throwUnexpectedToken(f.Messages.InvalidHexEscapeSequence),a+=l;break;case"b":a+="\b";break;case"f":a+="\f";break;case"v":a+="\v";break;default:"0"===i?(e.Character.isDecimalDigit(this.source.charCodeAt(this.index))&&this.throwUnexpectedToken(f.Messages.TemplateOctalLiteral),a+="\0"):e.Character.isOctalDigit(i.charCodeAt(0))?this.throwUnexpectedToken(f.Messages.TemplateOctalLiteral):a+=i}else e.Character.isLineTerminator(i.charCodeAt(0))?(++this.lineNumber,"\r"===i&&"\n"===this.source[this.index]&&++this.index,this.lineStart=this.index,a+="\n"):a+=i}return b||this.throwUnexpectedToken(),d||this.curlyStack.pop(),{type:10,value:this.source.slice(c+1,this.index-h),cooked:a,head:d,tail:g,lineNumber:this.lineNumber,lineStart:this.lineStart,start:c,end:this.index}},a.prototype.testRegExp=function(a,b){var c="",d=a,e=this;b.indexOf("u")>=0&&(d=d.replace(/\\u\{([0-9a-fA-F]+)\}|\\u([a-fA-F0-9]{4})/g,function(a,b,d){var g=parseInt(b||d,16);return(g>1114111&&e.throwUnexpectedToken(f.Messages.InvalidRegExp),g<=65535)?String.fromCharCode(g):c}).replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c));try{RegExp(d)}catch(a){this.throwUnexpectedToken(f.Messages.InvalidRegExp)}try{return new RegExp(a,b)}catch(a){return null}},a.prototype.scanRegExpBody=function(){var a=this.source[this.index];d.assert("/"===a,"Regular expression literal must start with a slash");for(var b=this.source[this.index++],c=!1,g=!1;!this.eof();)if(b+=a=this.source[this.index++],"\\"===a)a=this.source[this.index++],e.Character.isLineTerminator(a.charCodeAt(0))&&this.throwUnexpectedToken(f.Messages.UnterminatedRegExp),b+=a;else if(e.Character.isLineTerminator(a.charCodeAt(0)))this.throwUnexpectedToken(f.Messages.UnterminatedRegExp);else if(c)"]"===a&&(c=!1);else if("/"===a){g=!0;break}else"["===a&&(c=!0);return g||this.throwUnexpectedToken(f.Messages.UnterminatedRegExp),b.substr(1,b.length-2)},a.prototype.scanRegExpFlags=function(){for(var a="",b="";!this.eof();){var c=this.source[this.index];if(!e.Character.isIdentifierPart(c.charCodeAt(0)))break;if(++this.index,"\\"!==c||this.eof())b+=c,a+=c;else if("u"===(c=this.source[this.index])){++this.index;var d=this.index,f=this.scanHexEscape("u");if(null!==f)for(b+=f,a+="\\u";d<this.index;++d)a+=this.source[d];else this.index=d,b+="u",a+="\\u";this.tolerateUnexpectedToken()}else a+="\\",this.tolerateUnexpectedToken()}return b},a.prototype.scanRegExp=function(){var a=this.index,b=this.scanRegExpBody(),c=this.scanRegExpFlags(),d=this.testRegExp(b,c);return{type:9,value:"",pattern:b,flags:c,regex:d,lineNumber:this.lineNumber,lineStart:this.lineStart,start:a,end:this.index}},a.prototype.lex=function(){if(this.eof())return{type:2,value:"",lineNumber:this.lineNumber,lineStart:this.lineStart,start:this.index,end:this.index};var a=this.source.charCodeAt(this.index);return e.Character.isIdentifierStart(a)?this.scanIdentifier():40===a||41===a||59===a?this.scanPunctuator():39===a||34===a?this.scanStringLiteral():46===a?e.Character.isDecimalDigit(this.source.charCodeAt(this.index+1))?this.scanNumericLiteral():this.scanPunctuator():e.Character.isDecimalDigit(a)?this.scanNumericLiteral():96===a||125===a&&"${"===this.curlyStack[this.curlyStack.length-1]?this.scanTemplate():a>=55296&&a<57343&&e.Character.isIdentifierStart(this.codePointAt(this.index))?this.scanIdentifier():this.scanPunctuator()},a}()},function(a,b){"use strict";Object.defineProperty(b,"__esModule",{value:!0}),b.TokenName={},b.TokenName[1]="Boolean",b.TokenName[2]="<end>",b.TokenName[3]="Identifier",b.TokenName[4]="Keyword",b.TokenName[5]="Null",b.TokenName[6]="Numeric",b.TokenName[7]="Punctuator",b.TokenName[8]="String",b.TokenName[9]="RegularExpression",b.TokenName[10]="Template"},function(a,b){"use strict";Object.defineProperty(b,"__esModule",{value:!0}),b.XHTMLEntities={quot:'"',amp:"&",apos:"'",gt:">",nbsp:"\xa0",iexcl:"\xa1",cent:"\xa2",pound:"\xa3",curren:"\xa4",yen:"\xa5",brvbar:"\xa6",sect:"\xa7",uml:"\xa8",copy:"\xa9",ordf:"\xaa",laquo:"\xab",not:"\xac",shy:"\xad",reg:"\xae",macr:"\xaf",deg:"\xb0",plusmn:"\xb1",sup2:"\xb2",sup3:"\xb3",acute:"\xb4",micro:"\xb5",para:"\xb6",middot:"\xb7",cedil:"\xb8",sup1:"\xb9",ordm:"\xba",raquo:"\xbb",frac14:"\xbc",frac12:"\xbd",frac34:"\xbe",iquest:"\xbf",Agrave:"\xc0",Aacute:"\xc1",Acirc:"\xc2",Atilde:"\xc3",Auml:"\xc4",Aring:"\xc5",AElig:"\xc6",Ccedil:"\xc7",Egrave:"\xc8",Eacute:"\xc9",Ecirc:"\xca",Euml:"\xcb",Igrave:"\xcc",Iacute:"\xcd",Icirc:"\xce",Iuml:"\xcf",ETH:"\xd0",Ntilde:"\xd1",Ograve:"\xd2",Oacute:"\xd3",Ocirc:"\xd4",Otilde:"\xd5",Ouml:"\xd6",times:"\xd7",Oslash:"\xd8",Ugrave:"\xd9",Uacute:"\xda",Ucirc:"\xdb",Uuml:"\xdc",Yacute:"\xdd",THORN:"\xde",szlig:"\xdf",agrave:"\xe0",aacute:"\xe1",acirc:"\xe2",atilde:"\xe3",auml:"\xe4",aring:"\xe5",aelig:"\xe6",ccedil:"\xe7",egrave:"\xe8",eacute:"\xe9",ecirc:"\xea",euml:"\xeb",igrave:"\xec",iacute:"\xed",icirc:"\xee",iuml:"\xef",eth:"\xf0",ntilde:"\xf1",ograve:"\xf2",oacute:"\xf3",ocirc:"\xf4",otilde:"\xf5",ouml:"\xf6",divide:"\xf7",oslash:"\xf8",ugrave:"\xf9",uacute:"\xfa",ucirc:"\xfb",uuml:"\xfc",yacute:"\xfd",thorn:"\xfe",yuml:"\xff",OElig:"Œ",oelig:"œ",Scaron:"Š",scaron:"š",Yuml:"Ÿ",fnof:"ƒ",circ:"ˆ",tilde:"˜",Alpha:"Α",Beta:"Β",Gamma:"Γ",Delta:"Δ",Epsilon:"Ε",Zeta:"Ζ",Eta:"Η",Theta:"Θ",Iota:"Ι",Kappa:"Κ",Lambda:"Λ",Mu:"Μ",Nu:"Ν",Xi:"Ξ",Omicron:"Ο",Pi:"Π",Rho:"Ρ",Sigma:"Σ",Tau:"Τ",Upsilon:"Υ",Phi:"Φ",Chi:"Χ",Psi:"Ψ",Omega:"Ω",alpha:"α",beta:"β",gamma:"γ",delta:"δ",epsilon:"ε",zeta:"ζ",eta:"η",theta:"θ",iota:"ι",kappa:"κ",lambda:"λ",mu:"μ",nu:"ν",xi:"ξ",omicron:"ο",pi:"π",rho:"ρ",sigmaf:"ς",sigma:"σ",tau:"τ",upsilon:"υ",phi:"φ",chi:"χ",psi:"ψ",omega:"ω",thetasym:"ϑ",upsih:"ϒ",piv:"ϖ",ensp:" ",emsp:" ",thinsp:" ",zwnj:"",zwj:"",lrm:"",rlm:"",ndash:"–",mdash:"—",lsquo:"‘",rsquo:"’",sbquo:"‚",ldquo:"“",rdquo:"”",bdquo:"„",dagger:"†",Dagger:"‡",bull:"•",hellip:"…",permil:"‰",prime:"′",Prime:"″",lsaquo:"‹",rsaquo:"›",oline:"‾",frasl:"⁄",euro:"€",image:"ℑ",weierp:"℘",real:"ℜ",trade:"™",alefsym:"ℵ",larr:"←",uarr:"↑",rarr:"→",darr:"↓",harr:"↔",crarr:"↵",lArr:"⇐",uArr:"⇑",rArr:"⇒",dArr:"⇓",hArr:"⇔",forall:"∀",part:"∂",exist:"∃",empty:"∅",nabla:"∇",isin:"∈",notin:"∉",ni:"∋",prod:"∏",sum:"∑",minus:"−",lowast:"∗",radic:"√",prop:"∝",infin:"∞",ang:"∠",and:"∧",or:"∨",cap:"∩",cup:"∪",int:"∫",there4:"∴",sim:"∼",cong:"≅",asymp:"≈",ne:"≠",equiv:"≡",le:"≤",ge:"≥",sub:"⊂",sup:"⊃",nsub:"⊄",sube:"⊆",supe:"⊇",oplus:"⊕",otimes:"⊗",perp:"⊥",sdot:"⋅",lceil:"⌈",rceil:"⌉",lfloor:"⌊",rfloor:"⌋",loz:"◊",spades:"♠",clubs:"♣",hearts:"♥",diams:"♦",lang:"⟨",rang:"⟩"}},function(a,b,c){"use strict";Object.defineProperty(b,"__esModule",{value:!0});var d=c(10),e=c(12),f=c(13),g=function(){function a(){this.values=[],this.curly=this.paren=-1}return a.prototype.beforeFunctionExpression=function(a){return["(","{","[","in","typeof","instanceof","new","return","case","delete","throw","void","=","+=","-=","*=","**=","/=","%=","<<=",">>=",">>>=","&=","|=","^=",",","+","-","*","**","/","%","++","--","<<",">>",">>>","&","|","^","!","~","&&","||","?",":","===","==",">=","<=","<",">","!=","!=="].indexOf(a)>=0},a.prototype.isRegexStart=function(){var a=this.values[this.values.length-1],b=null!==a;switch(a){case"this":case"]":b=!1;break;case")":var c=this.values[this.paren-1];b="if"===c||"while"===c||"for"===c||"with"===c;break;case"}":if(b=!1,"function"===this.values[this.curly-3]){var d=this.values[this.curly-4];b=!!d&&!this.beforeFunctionExpression(d)}else if("function"===this.values[this.curly-4]){var d=this.values[this.curly-5];b=!d||!this.beforeFunctionExpression(d)}}return b},a.prototype.push=function(a){7===a.type||4===a.type?("{"===a.value?this.curly=this.values.length:"("===a.value&&(this.paren=this.values.length),this.values.push(a.value)):this.values.push(null)},a}();b.Tokenizer=function(){function a(a,b){this.errorHandler=new d.ErrorHandler,this.errorHandler.tolerant=!!b&&"boolean"==typeof b.tolerant&&b.tolerant,this.scanner=new e.Scanner(a,this.errorHandler),this.scanner.trackComment=!!b&&"boolean"==typeof b.comment&&b.comment,this.trackRange=!!b&&"boolean"==typeof b.range&&b.range,this.trackLoc=!!b&&"boolean"==typeof b.loc&&b.loc,this.buffer=[],this.reader=new g}return a.prototype.errors=function(){return this.errorHandler.errors},a.prototype.getNextToken=function(){if(0===this.buffer.length){var a=this.scanner.scanComments();if(this.scanner.trackComment)for(var b=0;b<a.length;++b){var c=a[b],d=this.scanner.source.slice(c.slice[0],c.slice[1]),e={type:c.multiLine?"BlockComment":"LineComment",value:d};this.trackRange&&(e.range=c.range),this.trackLoc&&(e.loc=c.loc),this.buffer.push(e)}if(!this.scanner.eof()){var g=void 0;this.trackLoc&&(g={start:{line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart},end:{}});var h="/"===this.scanner.source[this.scanner.index]&&this.reader.isRegexStart()?this.scanner.scanRegExp():this.scanner.lex();this.reader.push(h);var i={type:f.TokenName[h.type],value:this.scanner.source.slice(h.start,h.end)};this.trackRange&&(i.range=[h.start,h.end]),this.trackLoc&&(g.end={line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart},i.loc=g),9===h.type&&(i.regex={pattern:h.pattern,flags:h.flags}),this.buffer.push(i)}}return this.buffer.shift()},a}()}])})},45656:(a,b,c)=>{"use strict";var d=c(97168),e=c(5101),f=RegExp("^(?:[-+]?(?:0|[1-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\\.[0-9_]*|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$"),g=/^[-+]?[0-9]+e/;a.exports=new e("tag:yaml.org,2002:float",{kind:"scalar",resolve:function(a){return null!==a&&!!f.test(a)&&"_"!==a[a.length-1]},construct:function(a){var b,c,d,e;return(c="-"===(b=a.replace(/_/g,"").toLowerCase())[0]?-1:1,e=[],"+-".indexOf(b[0])>=0&&(b=b.slice(1)),".inf"===b)?1===c?1/0:-1/0:".nan"===b?NaN:b.indexOf(":")>=0?(b.split(":").forEach(function(a){e.unshift(parseFloat(a,10))}),b=0,d=1,e.forEach(function(a){b+=a*d,d*=60}),c*b):c*parseFloat(b,10)},predicate:function(a){return"[object Number]"===Object.prototype.toString.call(a)&&(a%1!=0||d.isNegativeZero(a))},represent:function(a,b){var c;if(isNaN(a))switch(b){case"lowercase":return".nan";case"uppercase":return".NAN";case"camelcase":return".NaN"}else if(1/0===a)switch(b){case"lowercase":return".inf";case"uppercase":return".INF";case"camelcase":return".Inf"}else if(-1/0===a)switch(b){case"lowercase":return"-.inf";case"uppercase":return"-.INF";case"camelcase":return"-.Inf"}else if(d.isNegativeZero(a))return"-0.0";return c=a.toString(10),g.test(c)?c.replace("e",".e"):c},defaultStyle:"lowercase"})},45864:(a,b,c)=>{"use strict";function d(a){if(null===a)return!1;var b=a.length;return 4===b&&("true"===a||"True"===a||"TRUE"===a)||5===b&&("false"===a||"False"===a||"FALSE"===a)}function e(a){return"true"===a||"True"===a||"TRUE"===a}function f(a){return"[object Boolean]"===Object.prototype.toString.call(a)}a.exports=new(c(5101))("tag:yaml.org,2002:bool",{kind:"scalar",resolve:d,construct:e,predicate:f,represent:{lowercase:function(a){return a?"true":"false"},uppercase:function(a){return a?"TRUE":"FALSE"},camelcase:function(a){return a?"True":"False"}},defaultStyle:"lowercase"})},47035:(a,b,c)=>{"use strict";var d=c(97168);function e(a){return 48<=a&&a<=57||65<=a&&a<=70||97<=a&&a<=102}function f(a){return 48<=a&&a<=55}function g(a){return 48<=a&&a<=57}function h(a){if(null===a)return!1;var b,c=a.length,d=0,h=!1;if(!c)return!1;if(("-"===(b=a[d])||"+"===b)&&(b=a[++d]),"0"===b){if(d+1===c)return!0;if("b"===(b=a[++d])){for(d++;d<c;d++)if("_"!==(b=a[d])){if("0"!==b&&"1"!==b)return!1;h=!0}return h&&"_"!==b}if("x"===b){for(d++;d<c;d++)if("_"!==(b=a[d])){if(!e(a.charCodeAt(d)))return!1;h=!0}return h&&"_"!==b}for(;d<c;d++)if("_"!==(b=a[d])){if(!f(a.charCodeAt(d)))return!1;h=!0}return h&&"_"!==b}if("_"===b)return!1;for(;d<c;d++)if("_"!==(b=a[d])){if(":"===b)break;if(!g(a.charCodeAt(d)))return!1;h=!0}return!!h&&"_"!==b&&(":"!==b||/^(:[0-5]?[0-9])+$/.test(a.slice(d)))}function i(a){var b,c,d=a,e=1,f=[];return(-1!==d.indexOf("_")&&(d=d.replace(/_/g,"")),("-"===(b=d[0])||"+"===b)&&("-"===b&&(e=-1),b=(d=d.slice(1))[0]),"0"===d)?0:"0"===b?"b"===d[1]?e*parseInt(d.slice(2),2):"x"===d[1]?e*parseInt(d,16):e*parseInt(d,8):-1!==d.indexOf(":")?(d.split(":").forEach(function(a){f.unshift(parseInt(a,10))}),d=0,c=1,f.forEach(function(a){d+=a*c,c*=60}),e*d):e*parseInt(d,10)}function j(a){return"[object Number]"===Object.prototype.toString.call(a)&&a%1==0&&!d.isNegativeZero(a)}a.exports=new(c(5101))("tag:yaml.org,2002:int",{kind:"scalar",resolve:h,construct:i,predicate:j,represent:{binary:function(a){return a>=0?"0b"+a.toString(2):"-0b"+a.toString(2).slice(1)},octal:function(a){return a>=0?"0"+a.toString(8):"-0"+a.toString(8).slice(1)},decimal:function(a){return a.toString(10)},hexadecimal:function(a){return a>=0?"0x"+a.toString(16).toUpperCase():"-0x"+a.toString(16).toUpperCase().slice(1)}},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}})},56233:(a,b,c)=>{"use strict";a.exports=new(c(5101))("tag:yaml.org,2002:str",{kind:"scalar",construct:function(a){return null!==a?a:""}})},62715:(a,b,c)=>{"use strict";let d=c(98938);a.exports=function(a,b){let c=d(b);if(null==a.data&&(a.data={}),"function"==typeof c.excerpt)return c.excerpt(a,c);let e=a.data.excerpt_separator||c.excerpt_separator;if(null==e&&(!1===c.excerpt||null==c.excerpt))return a;let f="string"==typeof c.excerpt?c.excerpt:e||c.delimiters[0],g=a.content.indexOf(f);return -1!==g&&(a.excerpt=a.content.slice(0,g)),a}},63084:(a,b,c)=>{"use strict";var d=c(97168),e=c(10456),f=c(90686),g=c(69974),h=Object.prototype.toString,i=Object.prototype.hasOwnProperty,j=9,k=10,l=13,m=32,n=33,o=34,p=35,q=37,r=38,s=39,t=42,u=44,v=45,w=58,x=61,y=62,z=63,A=64,B=91,C=93,D=96,E=123,F=124,G=125,H={};H[0]="\\0",H[7]="\\a",H[8]="\\b",H[9]="\\t",H[10]="\\n",H[11]="\\v",H[12]="\\f",H[13]="\\r",H[27]="\\e",H[34]='\\"',H[92]="\\\\",H[133]="\\N",H[160]="\\_",H[8232]="\\L",H[8233]="\\P";var I=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"];function J(a,b){var c,d,e,f,g,h,j;if(null===b)return{};for(e=0,c={},f=(d=Object.keys(b)).length;e<f;e+=1)h=String(b[g=d[e]]),"!!"===g.slice(0,2)&&(g="tag:yaml.org,2002:"+g.slice(2)),(j=a.compiledTypeMap.fallback[g])&&i.call(j.styleAliases,h)&&(h=j.styleAliases[h]),c[g]=h;return c}function K(a){var b,c,f;if(b=a.toString(16).toUpperCase(),a<=255)c="x",f=2;else if(a<=65535)c="u",f=4;else if(a<=0xffffffff)c="U",f=8;else throw new e("code point within a string may not be greater than 0xFFFFFFFF");return"\\"+c+d.repeat("0",f-b.length)+b}function L(a){this.schema=a.schema||f,this.indent=Math.max(1,a.indent||2),this.noArrayIndent=a.noArrayIndent||!1,this.skipInvalid=a.skipInvalid||!1,this.flowLevel=d.isNothing(a.flowLevel)?-1:a.flowLevel,this.styleMap=J(this.schema,a.styles||null),this.sortKeys=a.sortKeys||!1,this.lineWidth=a.lineWidth||80,this.noRefs=a.noRefs||!1,this.noCompatMode=a.noCompatMode||!1,this.condenseFlow=a.condenseFlow||!1,this.implicitTypes=this.schema.compiledImplicit,this.explicitTypes=this.schema.compiledExplicit,this.tag=null,this.result="",this.duplicates=[],this.usedDuplicates=null}function M(a,b){for(var c,e=d.repeat(" ",b),f=0,g=-1,h="",i=a.length;f<i;)-1===(g=a.indexOf("\n",f))?(c=a.slice(f),f=i):(c=a.slice(f,g+1),f=g+1),c.length&&"\n"!==c&&(h+=e),h+=c;return h}function N(a,b){return"\n"+d.repeat(" ",a.indent*b)}function O(a,b){var c,d;for(c=0,d=a.implicitTypes.length;c<d;c+=1)if(a.implicitTypes[c].resolve(b))return!0;return!1}function P(a){return a===m||a===j}function Q(a){return 32<=a&&a<=126||161<=a&&a<=55295&&8232!==a&&8233!==a||57344<=a&&a<=65533&&65279!==a||65536<=a&&a<=1114111}function R(a){return Q(a)&&!P(a)&&65279!==a&&a!==l&&a!==k}function S(a,b){return Q(a)&&65279!==a&&a!==u&&a!==B&&a!==C&&a!==E&&a!==G&&a!==w&&(a!==p||b&&R(b))}function T(a){return Q(a)&&65279!==a&&!P(a)&&a!==v&&a!==z&&a!==w&&a!==u&&a!==B&&a!==C&&a!==E&&a!==G&&a!==p&&a!==r&&a!==t&&a!==n&&a!==F&&a!==x&&a!==y&&a!==s&&a!==o&&a!==q&&a!==A&&a!==D}function U(a){return/^\n* /.test(a)}var V=1,W=2,X=3,Y=4,Z=5;function $(a,b,c,d,e){var f,g,h,i=!1,j=!1,l=-1!==d,m=-1,n=T(a.charCodeAt(0))&&!P(a.charCodeAt(a.length-1));if(b)for(f=0;f<a.length;f++){if(!Q(g=a.charCodeAt(f)))return Z;h=f>0?a.charCodeAt(f-1):null,n=n&&S(g,h)}else{for(f=0;f<a.length;f++){if((g=a.charCodeAt(f))===k)i=!0,l&&(j=j||f-m-1>d&&" "!==a[m+1],m=f);else if(!Q(g))return Z;h=f>0?a.charCodeAt(f-1):null,n=n&&S(g,h)}j=j||l&&f-m-1>d&&" "!==a[m+1]}return i||j?c>9&&U(a)?Z:j?Y:X:n&&!e(a)?V:W}function _(a,b,c,d){a.dump=function(){if(0===b.length)return"''";if(!a.noCompatMode&&-1!==I.indexOf(b))return"'"+b+"'";var f=a.indent*Math.max(1,c),g=-1===a.lineWidth?-1:Math.max(Math.min(a.lineWidth,40),a.lineWidth-f);function h(b){return O(a,b)}switch($(b,d||a.flowLevel>-1&&c>=a.flowLevel,a.indent,g,h)){case V:return b;case W:return"'"+b.replace(/'/g,"''")+"'";case X:return"|"+aa(b,a.indent)+ab(M(b,f));case Y:return">"+aa(b,a.indent)+ab(M(ac(b,g),f));case Z:return'"'+ae(b,g)+'"';default:throw new e("impossible error: invalid scalar style")}}()}function aa(a,b){var c=U(a)?String(b):"",d="\n"===a[a.length-1];return c+(d&&("\n"===a[a.length-2]||"\n"===a)?"+":d?"":"-")+"\n"}function ab(a){return"\n"===a[a.length-1]?a.slice(0,-1):a}function ac(a,b){for(var c,d,e=/(\n+)([^\n]*)/g,f=function(){var c=a.indexOf("\n");return e.lastIndex=c=-1!==c?c:a.length,ad(a.slice(0,c),b)}(),g="\n"===a[0]||" "===a[0];d=e.exec(a);){var h=d[1],i=d[2];c=" "===i[0],f+=h+(g||c||""===i?"":"\n")+ad(i,b),g=c}return f}function ad(a,b){if(""===a||" "===a[0])return a;for(var c,d,e=/ [^ ]/g,f=0,g=0,h=0,i="";c=e.exec(a);)(h=c.index)-f>b&&(d=g>f?g:h,i+="\n"+a.slice(f,d),f=d+1),g=h;return i+="\n",a.length-f>b&&g>f?i+=a.slice(f,g)+"\n"+a.slice(g+1):i+=a.slice(f),i.slice(1)}function ae(a){for(var b,c,d,e="",f=0;f<a.length;f++){if((b=a.charCodeAt(f))>=55296&&b<=56319&&(c=a.charCodeAt(f+1))>=56320&&c<=57343){e+=K((b-55296)*1024+c-56320+65536),f++;continue}e+=!(d=H[b])&&Q(b)?a[f]:d||K(b)}return e}function af(a,b,c){var d,e,f="",g=a.tag;for(d=0,e=c.length;d<e;d+=1)ak(a,b,c[d],!1,!1)&&(0!==d&&(f+=","+(a.condenseFlow?"":" ")),f+=a.dump);a.tag=g,a.dump="["+f+"]"}function ag(a,b,c,d){var e,f,g="",h=a.tag;for(e=0,f=c.length;e<f;e+=1)ak(a,b+1,c[e],!0,!0)&&(d&&0===e||(g+=N(a,b)),a.dump&&k===a.dump.charCodeAt(0)?g+="-":g+="- ",g+=a.dump);a.tag=h,a.dump=g||"[]"}function ah(a,b,c){var d,e,f,g,h,i="",j=a.tag,k=Object.keys(c);for(d=0,e=k.length;d<e;d+=1)h="",0!==d&&(h+=", "),a.condenseFlow&&(h+='"'),g=c[f=k[d]],ak(a,b,f,!1,!1)&&(a.dump.length>1024&&(h+="? "),h+=a.dump+(a.condenseFlow?'"':"")+":"+(a.condenseFlow?"":" "),ak(a,b,g,!1,!1)&&(h+=a.dump,i+=h));a.tag=j,a.dump="{"+i+"}"}function ai(a,b,c,d){var f,g,h,i,j,l,m="",n=a.tag,o=Object.keys(c);if(!0===a.sortKeys)o.sort();else if("function"==typeof a.sortKeys)o.sort(a.sortKeys);else if(a.sortKeys)throw new e("sortKeys must be a boolean or a function");for(f=0,g=o.length;f<g;f+=1)l="",d&&0===f||(l+=N(a,b)),i=c[h=o[f]],ak(a,b+1,h,!0,!0,!0)&&((j=null!==a.tag&&"?"!==a.tag||a.dump&&a.dump.length>1024)&&(a.dump&&k===a.dump.charCodeAt(0)?l+="?":l+="? "),l+=a.dump,j&&(l+=N(a,b)),ak(a,b+1,i,!0,j)&&(a.dump&&k===a.dump.charCodeAt(0)?l+=":":l+=": ",l+=a.dump,m+=l));a.tag=n,a.dump=m||"{}"}function aj(a,b,c){var d,f,g,j,k,l;for(g=0,j=(f=c?a.explicitTypes:a.implicitTypes).length;g<j;g+=1)if(((k=f[g]).instanceOf||k.predicate)&&(!k.instanceOf||"object"==typeof b&&b instanceof k.instanceOf)&&(!k.predicate||k.predicate(b))){if(a.tag=c?k.tag:"?",k.represent){if(l=a.styleMap[k.tag]||k.defaultStyle,"[object Function]"===h.call(k.represent))d=k.represent(b,l);else if(i.call(k.represent,l))d=k.represent[l](b,l);else throw new e("!<"+k.tag+'> tag resolver accepts not "'+l+'" style');a.dump=d}return!0}return!1}function ak(a,b,c,d,f,g){a.tag=null,a.dump=c,aj(a,c,!1)||aj(a,c,!0);var i=h.call(a.dump);d&&(d=a.flowLevel<0||a.flowLevel>b);var j,k,l="[object Object]"===i||"[object Array]"===i;if(l&&(k=-1!==(j=a.duplicates.indexOf(c))),(null!==a.tag&&"?"!==a.tag||k||2!==a.indent&&b>0)&&(f=!1),k&&a.usedDuplicates[j])a.dump="*ref_"+j;else{if(l&&k&&!a.usedDuplicates[j]&&(a.usedDuplicates[j]=!0),"[object Object]"===i)d&&0!==Object.keys(a.dump).length?(ai(a,b,a.dump,f),k&&(a.dump="&ref_"+j+a.dump)):(ah(a,b,a.dump),k&&(a.dump="&ref_"+j+" "+a.dump));else if("[object Array]"===i){var m=a.noArrayIndent&&b>0?b-1:b;d&&0!==a.dump.length?(ag(a,m,a.dump,f),k&&(a.dump="&ref_"+j+a.dump)):(af(a,m,a.dump),k&&(a.dump="&ref_"+j+" "+a.dump))}else if("[object String]"===i)"?"!==a.tag&&_(a,a.dump,b,g);else{if(a.skipInvalid)return!1;throw new e("unacceptable kind of an object to dump "+i)}null!==a.tag&&"?"!==a.tag&&(a.dump="!<"+a.tag+"> "+a.dump)}return!0}function al(a,b){var c,d,e=[],f=[];for(am(a,e,f),c=0,d=f.length;c<d;c+=1)b.duplicates.push(e[f[c]]);b.usedDuplicates=Array(d)}function am(a,b,c){var d,e,f;if(null!==a&&"object"==typeof a)if(-1!==(e=b.indexOf(a)))-1===c.indexOf(e)&&c.push(e);else if(b.push(a),Array.isArray(a))for(e=0,f=a.length;e<f;e+=1)am(a[e],b,c);else for(e=0,f=(d=Object.keys(a)).length;e<f;e+=1)am(a[d[e]],b,c)}function an(a,b){var c=new L(b=b||{});return(c.noRefs||al(a,c),ak(c,0,a,!0,!0))?c.dump+"\n":""}function ao(a,b){return an(a,d.extend({schema:g},b))}a.exports.dump=an,a.exports.safeDump=ao},65985:a=>{var b=Object.prototype.toString;function c(a){return"function"==typeof a.constructor?a.constructor.name:null}function d(a){return Array.isArray?Array.isArray(a):a instanceof Array}function e(a){return a instanceof Error||"string"==typeof a.message&&a.constructor&&"number"==typeof a.constructor.stackTraceLimit}function f(a){return a instanceof Date||"function"==typeof a.toDateString&&"function"==typeof a.getDate&&"function"==typeof a.setDate}function g(a){return a instanceof RegExp||"string"==typeof a.flags&&"boolean"==typeof a.ignoreCase&&"boolean"==typeof a.multiline&&"boolean"==typeof a.global}function h(a,b){return"GeneratorFunction"===c(a)}function i(a){return"function"==typeof a.throw&&"function"==typeof a.return&&"function"==typeof a.next}function j(a){try{if("number"==typeof a.length&&"function"==typeof a.callee)return!0}catch(a){if(-1!==a.message.indexOf("callee"))return!0}return!1}function k(a){return!!a.constructor&&"function"==typeof a.constructor.isBuffer&&a.constructor.isBuffer(a)}a.exports=function(a){if(void 0===a)return"undefined";if(null===a)return"null";var l=typeof a;if("boolean"===l)return"boolean";if("string"===l)return"string";if("number"===l)return"number";if("symbol"===l)return"symbol";if("function"===l)return h(a)?"generatorfunction":"function";if(d(a))return"array";if(k(a))return"buffer";if(j(a))return"arguments";if(f(a))return"date";if(e(a))return"error";if(g(a))return"regexp";switch(c(a)){case"Symbol":return"symbol";case"Promise":return"promise";case"WeakMap":return"weakmap";case"WeakSet":return"weakset";case"Map":return"map";case"Set":return"set";case"Int8Array":return"int8array";case"Uint8Array":return"uint8array";case"Uint8ClampedArray":return"uint8clampedarray";case"Int16Array":return"int16array";case"Uint16Array":return"uint16array";case"Int32Array":return"int32array";case"Uint32Array":return"uint32array";case"Float32Array":return"float32array";case"Float64Array":return"float64array"}if(i(a))return"generator";switch(l=b.call(a)){case"[object Object]":return"object";case"[object Map Iterator]":return"mapiterator";case"[object Set Iterator]":return"setiterator";case"[object String Iterator]":return"stringiterator";case"[object Array Iterator]":return"arrayiterator"}return l.slice(8,-1).toLowerCase().replace(/\s/g,"")}},66266:a=>{"use strict";function b(a){switch(a.toLowerCase()){case"js":case"javascript":return"javascript";case"coffee":case"coffeescript":case"cson":return"coffee";case"yaml":case"yml":return"yaml";default:return a}}a.exports=function(a,c){let d=c.engines[a]||c.engines[b(a)];if(void 0===d)throw Error('gray-matter engine "'+a+'" is not registered');return"function"==typeof d&&(d={parse:d}),d}},69130:(a,b,c)=>{"use strict";var d=c(5101),e=RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),f=RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$");a.exports=new d("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:function(a){return null!==a&&(null!==e.exec(a)||null!==f.exec(a))},construct:function(a){var b,c,d,g,h,i,j,k,l=0,m=null;if(null===(b=e.exec(a))&&(b=f.exec(a)),null===b)throw Error("Date resolve error");if(c=+b[1],d=b[2]-1,g=+b[3],!b[4])return new Date(Date.UTC(c,d,g));if(h=+b[4],i=+b[5],j=+b[6],b[7]){for(l=b[7].slice(0,3);l.length<3;)l+="0";l*=1}return b[9]&&(m=(60*b[10]+ +(b[11]||0))*6e4,"-"===b[9]&&(m=-m)),k=new Date(Date.UTC(c,d,g,h,i,j,l)),m&&k.setTime(k.getTime()-m),k},instanceOf:Date,represent:function(a){return a.toISOString()}})},69974:(a,b,c)=>{"use strict";a.exports=new(c(30402))({include:[c(20910)],implicit:[c(69130),c(77658)],explicit:[c(83389),c(91817),c(35743),c(89562)]})},70345:(a,b,c)=>{"use strict";a.exports=new(c(5101))("tag:yaml.org,2002:seq",{kind:"sequence",construct:function(a){return null!==a?a:[]}})},72007:(a,b,c)=>{"use strict";let d=c(2062),e=c(65985);b.define=function(a,b,c){Reflect.defineProperty(a,b,{enumerable:!1,configurable:!0,writable:!0,value:c})},b.isBuffer=function(a){return"buffer"===e(a)},b.isObject=function(a){return"object"===e(a)},b.toBuffer=function(a){return"string"==typeof a?Buffer.from(a):a},b.toString=function(a){if(b.isBuffer(a))return d(String(a));if("string"!=typeof a)throw TypeError("expected input to be a string or buffer");return d(a)},b.arrayify=function(a){return a?Array.isArray(a)?a:[a]:[]},b.startsWith=function(a,b,c){return"number"!=typeof c&&(c=b.length),a.slice(0,c)===b}},77658:(a,b,c)=>{"use strict";function d(a){return"<<"===a||null===a}a.exports=new(c(5101))("tag:yaml.org,2002:merge",{kind:"scalar",resolve:d})},78290:(a,b,c)=>{"use strict";var d;try{d=c(42848)}catch(a){"undefined"!=typeof window&&(d=window.esprima)}function e(a){if(null===a)return!1;try{var b="("+a+")",c=d.parse(b,{range:!0});if("Program"!==c.type||1!==c.body.length||"ExpressionStatement"!==c.body[0].type||"ArrowFunctionExpression"!==c.body[0].expression.type&&"FunctionExpression"!==c.body[0].expression.type)return!1;return!0}catch(a){return!1}}function f(a){var b,c="("+a+")",e=d.parse(c,{range:!0}),f=[];if("Program"!==e.type||1!==e.body.length||"ExpressionStatement"!==e.body[0].type||"ArrowFunctionExpression"!==e.body[0].expression.type&&"FunctionExpression"!==e.body[0].expression.type)throw Error("Failed to resolve function");return(e.body[0].expression.params.forEach(function(a){f.push(a.name)}),b=e.body[0].expression.body.range,"BlockStatement"===e.body[0].expression.body.type)?Function(f,c.slice(b[0]+1,b[1]-1)):Function(f,"return "+c.slice(b[0],b[1]))}function g(a){return a.toString()}function h(a){return"[object Function]"===Object.prototype.toString.call(a)}a.exports=new(c(5101))("tag:yaml.org,2002:js/function",{kind:"scalar",resolve:e,construct:f,predicate:h,represent:g})},83389:(a,b,c)=>{"use strict";try{d=c(79428).Buffer}catch(a){}var d,e=c(5101),f="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r";a.exports=new e("tag:yaml.org,2002:binary",{kind:"scalar",resolve:function(a){if(null===a)return!1;var b,c,d=0,e=a.length,g=f;for(c=0;c<e;c++)if(!((b=g.indexOf(a.charAt(c)))>64)){if(b<0)return!1;d+=6}return d%8==0},construct:function(a){var b,c,e=a.replace(/[\r\n=]/g,""),g=e.length,h=f,i=0,j=[];for(b=0;b<g;b++)b%4==0&&b&&(j.push(i>>16&255),j.push(i>>8&255),j.push(255&i)),i=i<<6|h.indexOf(e.charAt(b));return(0==(c=g%4*6)?(j.push(i>>16&255),j.push(i>>8&255),j.push(255&i)):18===c?(j.push(i>>10&255),j.push(i>>2&255)):12===c&&j.push(i>>4&255),d)?d.from?d.from(j):new d(j):j},predicate:function(a){return d&&d.isBuffer(a)},represent:function(a){var b,c,d="",e=0,g=a.length,h=f;for(b=0;b<g;b++)b%3==0&&b&&(d+=h[e>>18&63],d+=h[e>>12&63],d+=h[e>>6&63],d+=h[63&e]),e=(e<<8)+a[b];return 0==(c=g%3)?(d+=h[e>>18&63],d+=h[e>>12&63],d+=h[e>>6&63],d+=h[63&e]):2===c?(d+=h[e>>10&63],d+=h[e>>4&63],d+=h[e<<2&63],d+=h[64]):1===c&&(d+=h[e>>2&63],d+=h[e<<4&63],d+=h[64],d+=h[64]),d}})},86688:(a,b,c)=>{"use strict";a.exports=new(c(30402))({explicit:[c(56233),c(70345),c(94948)]})},89390:(a,b,c)=>{"use strict";var d=c(94354),e=c(63084);function f(a){return function(){throw Error("Function "+a+" is deprecated and cannot be used.")}}a.exports.Type=c(5101),a.exports.Schema=c(30402),a.exports.FAILSAFE_SCHEMA=c(86688),a.exports.JSON_SCHEMA=c(40603),a.exports.CORE_SCHEMA=c(20910),a.exports.DEFAULT_SAFE_SCHEMA=c(69974),a.exports.DEFAULT_FULL_SCHEMA=c(90686),a.exports.load=d.load,a.exports.loadAll=d.loadAll,a.exports.safeLoad=d.safeLoad,a.exports.safeLoadAll=d.safeLoadAll,a.exports.dump=e.dump,a.exports.safeDump=e.safeDump,a.exports.YAMLException=c(10456),a.exports.MINIMAL_SCHEMA=c(86688),a.exports.SAFE_SCHEMA=c(69974),a.exports.DEFAULT_SCHEMA=c(90686),a.exports.scan=f("scan"),a.exports.parse=f("parse"),a.exports.compose=f("compose"),a.exports.addConstructor=f("addConstructor")},89562:(a,b,c)=>{"use strict";var d=c(5101),e=Object.prototype.hasOwnProperty;a.exports=new d("tag:yaml.org,2002:set",{kind:"mapping",resolve:function(a){if(null===a)return!0;var b,c=a;for(b in c)if(e.call(c,b)&&null!==c[b])return!1;return!0},construct:function(a){return null!==a?a:{}}})},90686:(a,b,c)=>{"use strict";var d=c(30402);a.exports=d.DEFAULT=new d({include:[c(69974)],explicit:[c(29092),c(12599),c(78290)]})},91817:(a,b,c)=>{"use strict";var d=c(5101),e=Object.prototype.hasOwnProperty,f=Object.prototype.toString;a.exports=new d("tag:yaml.org,2002:omap",{kind:"sequence",resolve:function(a){if(null===a)return!0;var b,c,d,g,h,i=[],j=a;for(b=0,c=j.length;b<c;b+=1){if(d=j[b],h=!1,"[object Object]"!==f.call(d))return!1;for(g in d)if(e.call(d,g))if(h)return!1;else h=!0;if(!h||-1!==i.indexOf(g))return!1;i.push(g)}return!0},construct:function(a){return null!==a?a:[]}})},94354:(a,b,c)=>{"use strict";var d=c(97168),e=c(10456),f=c(19920),g=c(69974),h=c(90686),i=Object.prototype.hasOwnProperty,j=1,k=2,l=3,m=4,n=1,o=2,p=3,q=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,r=/[\x85\u2028\u2029]/,s=/[,\[\]\{\}]/,t=/^(?:!|!!|![a-z\-]+!)$/i,u=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;function v(a){return Object.prototype.toString.call(a)}function w(a){return 10===a||13===a}function x(a){return 9===a||32===a}function y(a){return 9===a||32===a||10===a||13===a}function z(a){return 44===a||91===a||93===a||123===a||125===a}function A(a){var b;return 48<=a&&a<=57?a-48:97<=(b=32|a)&&b<=102?b-97+10:-1}function B(a){return 120===a?2:117===a?4:8*(85===a)}function C(a){return 48<=a&&a<=57?a-48:-1}function D(a){return 48===a?"\0":97===a?"\x07":98===a?"\b":116===a||9===a?" ":110===a?"\n":118===a?"\v":102===a?"\f":114===a?"\r":101===a?"\x1b":32===a?" ":34===a?'"':47===a?"/":92===a?"\\":78===a?"\x85":95===a?"\xa0":76===a?"\u2028":80===a?"\u2029":""}function E(a){return a<=65535?String.fromCharCode(a):String.fromCharCode((a-65536>>10)+55296,(a-65536&1023)+56320)}function F(a,b,c){"__proto__"===b?Object.defineProperty(a,b,{configurable:!0,enumerable:!0,writable:!0,value:c}):a[b]=c}for(var G=Array(256),H=Array(256),I=0;I<256;I++)G[I]=+!!D(I),H[I]=D(I);function J(a,b){this.input=a,this.filename=b.filename||null,this.schema=b.schema||h,this.onWarning=b.onWarning||null,this.legacy=b.legacy||!1,this.json=b.json||!1,this.listener=b.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typeMap=this.schema.compiledTypeMap,this.length=a.length,this.position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.documents=[]}function K(a,b){return new e(b,new f(a.filename,a.input,a.position,a.line,a.position-a.lineStart))}function L(a,b){throw K(a,b)}function M(a,b){a.onWarning&&a.onWarning.call(null,K(a,b))}var N={YAML:function(a,b,c){var d,e,f;null!==a.version&&L(a,"duplication of %YAML directive"),1!==c.length&&L(a,"YAML directive accepts exactly one argument"),null===(d=/^([0-9]+)\.([0-9]+)$/.exec(c[0]))&&L(a,"ill-formed argument of the YAML directive"),e=parseInt(d[1],10),f=parseInt(d[2],10),1!==e&&L(a,"unacceptable YAML version of the document"),a.version=c[0],a.checkLineBreaks=f<2,1!==f&&2!==f&&M(a,"unsupported YAML version of the document")},TAG:function(a,b,c){var d,e;2!==c.length&&L(a,"TAG directive accepts exactly two arguments"),d=c[0],e=c[1],t.test(d)||L(a,"ill-formed tag handle (first argument) of the TAG directive"),i.call(a.tagMap,d)&&L(a,'there is a previously declared suffix for "'+d+'" tag handle'),u.test(e)||L(a,"ill-formed tag prefix (second argument) of the TAG directive"),a.tagMap[d]=e}};function O(a,b,c,d){var e,f,g,h;if(b<c){if(h=a.input.slice(b,c),d)for(e=0,f=h.length;e<f;e+=1)9===(g=h.charCodeAt(e))||32<=g&&g<=1114111||L(a,"expected valid JSON character");else q.test(h)&&L(a,"the stream contains non-printable characters");a.result+=h}}function P(a,b,c,e){var f,g,h,j;for(d.isObject(c)||L(a,"cannot merge mappings; the provided source object is unacceptable"),h=0,j=(f=Object.keys(c)).length;h<j;h+=1)g=f[h],i.call(b,g)||(F(b,g,c[g]),e[g]=!0)}function Q(a,b,c,d,e,f,g,h){var j,k;if(Array.isArray(e))for(j=0,k=(e=Array.prototype.slice.call(e)).length;j<k;j+=1)Array.isArray(e[j])&&L(a,"nested arrays are not supported inside keys"),"object"==typeof e&&"[object Object]"===v(e[j])&&(e[j]="[object Object]");if("object"==typeof e&&"[object Object]"===v(e)&&(e="[object Object]"),e=String(e),null===b&&(b={}),"tag:yaml.org,2002:merge"===d)if(Array.isArray(f))for(j=0,k=f.length;j<k;j+=1)P(a,b,f[j],c);else P(a,b,f,c);else!a.json&&!i.call(c,e)&&i.call(b,e)&&(a.line=g||a.line,a.position=h||a.position,L(a,"duplicated mapping key")),F(b,e,f),delete c[e];return b}function R(a){var b;10===(b=a.input.charCodeAt(a.position))?a.position++:13===b?(a.position++,10===a.input.charCodeAt(a.position)&&a.position++):L(a,"a line break is expected"),a.line+=1,a.lineStart=a.position}function S(a,b,c){for(var d=0,e=a.input.charCodeAt(a.position);0!==e;){for(;x(e);)e=a.input.charCodeAt(++a.position);if(b&&35===e)do e=a.input.charCodeAt(++a.position);while(10!==e&&13!==e&&0!==e);if(w(e))for(R(a),e=a.input.charCodeAt(a.position),d++,a.lineIndent=0;32===e;)a.lineIndent++,e=a.input.charCodeAt(++a.position);else break}return -1!==c&&0!==d&&a.lineIndent<c&&M(a,"deficient indentation"),d}function T(a){var b,c=a.position;return!!((45===(b=a.input.charCodeAt(c))||46===b)&&b===a.input.charCodeAt(c+1)&&b===a.input.charCodeAt(c+2)&&(c+=3,0===(b=a.input.charCodeAt(c))||y(b)))||!1}function U(a,b){1===b?a.result+=" ":b>1&&(a.result+=d.repeat("\n",b-1))}function V(a,b,c){var d,e,f,g,h,i,j,k,l=a.kind,m=a.result;if(y(k=a.input.charCodeAt(a.position))||z(k)||35===k||38===k||42===k||33===k||124===k||62===k||39===k||34===k||37===k||64===k||96===k||(63===k||45===k)&&(y(d=a.input.charCodeAt(a.position+1))||c&&z(d)))return!1;for(a.kind="scalar",a.result="",e=f=a.position,g=!1;0!==k;){if(58===k){if(y(d=a.input.charCodeAt(a.position+1))||c&&z(d))break}else if(35===k){if(y(a.input.charCodeAt(a.position-1)))break}else if(a.position===a.lineStart&&T(a)||c&&z(k))break;else if(w(k)){if(h=a.line,i=a.lineStart,j=a.lineIndent,S(a,!1,-1),a.lineIndent>=b){g=!0,k=a.input.charCodeAt(a.position);continue}a.position=f,a.line=h,a.lineStart=i,a.lineIndent=j;break}g&&(O(a,e,f,!1),U(a,a.line-h),e=f=a.position,g=!1),x(k)||(f=a.position+1),k=a.input.charCodeAt(++a.position)}return O(a,e,f,!1),!!a.result||(a.kind=l,a.result=m,!1)}function W(a,b){var c,d,e;if(39!==(c=a.input.charCodeAt(a.position)))return!1;for(a.kind="scalar",a.result="",a.position++,d=e=a.position;0!==(c=a.input.charCodeAt(a.position));)if(39===c){if(O(a,d,a.position,!0),39!==(c=a.input.charCodeAt(++a.position)))return!0;d=a.position,a.position++,e=a.position}else w(c)?(O(a,d,e,!0),U(a,S(a,!1,b)),d=e=a.position):a.position===a.lineStart&&T(a)?L(a,"unexpected end of the document within a single quoted scalar"):(a.position++,e=a.position);L(a,"unexpected end of the stream within a single quoted scalar")}function X(a,b){var c,d,e,f,g,h;if(34!==(h=a.input.charCodeAt(a.position)))return!1;for(a.kind="scalar",a.result="",a.position++,c=d=a.position;0!==(h=a.input.charCodeAt(a.position));)if(34===h)return O(a,c,a.position,!0),a.position++,!0;else if(92===h){if(O(a,c,a.position,!0),w(h=a.input.charCodeAt(++a.position)))S(a,!1,b);else if(h<256&&G[h])a.result+=H[h],a.position++;else if((g=B(h))>0){for(e=g,f=0;e>0;e--)(g=A(h=a.input.charCodeAt(++a.position)))>=0?f=(f<<4)+g:L(a,"expected hexadecimal character");a.result+=E(f),a.position++}else L(a,"unknown escape sequence");c=d=a.position}else w(h)?(O(a,c,d,!0),U(a,S(a,!1,b)),c=d=a.position):a.position===a.lineStart&&T(a)?L(a,"unexpected end of the document within a double quoted scalar"):(a.position++,d=a.position);L(a,"unexpected end of the stream within a double quoted scalar")}function Y(a,b){var c,d,e,f,g,h,i,k,l,m,n=!0,o=a.tag,p=a.anchor,q={};if(91===(m=a.input.charCodeAt(a.position)))e=93,h=!1,d=[];else{if(123!==m)return!1;e=125,h=!0,d={}}for(null!==a.anchor&&(a.anchorMap[a.anchor]=d),m=a.input.charCodeAt(++a.position);0!==m;){if(S(a,!0,b),(m=a.input.charCodeAt(a.position))===e)return a.position++,a.tag=o,a.anchor=p,a.kind=h?"mapping":"sequence",a.result=d,!0;n||L(a,"missed comma between flow collection entries"),k=i=l=null,f=g=!1,63===m&&y(a.input.charCodeAt(a.position+1))&&(f=g=!0,a.position++,S(a,!0,b)),c=a.line,ad(a,b,j,!1,!0),k=a.tag,i=a.result,S(a,!0,b),m=a.input.charCodeAt(a.position),(g||a.line===c)&&58===m&&(f=!0,m=a.input.charCodeAt(++a.position),S(a,!0,b),ad(a,b,j,!1,!0),l=a.result),h?Q(a,d,q,k,i,l):f?d.push(Q(a,null,q,k,i,l)):d.push(i),S(a,!0,b),44===(m=a.input.charCodeAt(a.position))?(n=!0,m=a.input.charCodeAt(++a.position)):n=!1}L(a,"unexpected end of the stream within a flow collection")}function Z(a,b){var c,e,f,g,h=n,i=!1,j=!1,k=b,l=0,m=!1;if(124===(g=a.input.charCodeAt(a.position)))e=!1;else{if(62!==g)return!1;e=!0}for(a.kind="scalar",a.result="";0!==g;)if(43===(g=a.input.charCodeAt(++a.position))||45===g)n===h?h=43===g?p:o:L(a,"repeat of a chomping mode identifier");else if((f=C(g))>=0)0===f?L(a,"bad explicit indentation width of a block scalar; it cannot be less than one"):j?L(a,"repeat of an indentation width identifier"):(k=b+f-1,j=!0);else break;if(x(g)){do g=a.input.charCodeAt(++a.position);while(x(g));if(35===g)do g=a.input.charCodeAt(++a.position);while(!w(g)&&0!==g)}for(;0!==g;){for(R(a),a.lineIndent=0,g=a.input.charCodeAt(a.position);(!j||a.lineIndent<k)&&32===g;)a.lineIndent++,g=a.input.charCodeAt(++a.position);if(!j&&a.lineIndent>k&&(k=a.lineIndent),w(g)){l++;continue}if(a.lineIndent<k){h===p?a.result+=d.repeat("\n",i?1+l:l):h===n&&i&&(a.result+="\n");break}for(e?x(g)?(m=!0,a.result+=d.repeat("\n",i?1+l:l)):m?(m=!1,a.result+=d.repeat("\n",l+1)):0===l?i&&(a.result+=" "):a.result+=d.repeat("\n",l):a.result+=d.repeat("\n",i?1+l:l),i=!0,j=!0,l=0,c=a.position;!w(g)&&0!==g;)g=a.input.charCodeAt(++a.position);O(a,c,a.position,!1)}return!0}function $(a,b){var c,d,e=a.tag,f=a.anchor,g=[],h=!1;for(null!==a.anchor&&(a.anchorMap[a.anchor]=g),d=a.input.charCodeAt(a.position);0!==d&&45===d&&y(a.input.charCodeAt(a.position+1));){if(h=!0,a.position++,S(a,!0,-1)&&a.lineIndent<=b){g.push(null),d=a.input.charCodeAt(a.position);continue}if(c=a.line,ad(a,b,l,!1,!0),g.push(a.result),S(a,!0,-1),d=a.input.charCodeAt(a.position),(a.line===c||a.lineIndent>b)&&0!==d)L(a,"bad indentation of a sequence entry");else if(a.lineIndent<b)break}return!!h&&(a.tag=e,a.anchor=f,a.kind="sequence",a.result=g,!0)}function _(a,b,c){var d,e,f,g,h,i=a.tag,j=a.anchor,l={},n={},o=null,p=null,q=null,r=!1,s=!1;for(null!==a.anchor&&(a.anchorMap[a.anchor]=l),h=a.input.charCodeAt(a.position);0!==h;){if(d=a.input.charCodeAt(a.position+1),f=a.line,g=a.position,(63===h||58===h)&&y(d))63===h?(r&&(Q(a,l,n,o,p,null),o=p=q=null),s=!0,r=!0,e=!0):r?(r=!1,e=!0):L(a,"incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line"),a.position+=1,h=d;else if(ad(a,c,k,!1,!0))if(a.line===f){for(h=a.input.charCodeAt(a.position);x(h);)h=a.input.charCodeAt(++a.position);if(58===h)y(h=a.input.charCodeAt(++a.position))||L(a,"a whitespace character is expected after the key-value separator within a block mapping"),r&&(Q(a,l,n,o,p,null),o=p=q=null),s=!0,r=!1,e=!1,o=a.tag,p=a.result;else{if(!s)return a.tag=i,a.anchor=j,!0;L(a,"can not read an implicit mapping pair; a colon is missed")}}else{if(!s)return a.tag=i,a.anchor=j,!0;L(a,"can not read a block mapping entry; a multiline key may not be an implicit key")}else break;if((a.line===f||a.lineIndent>b)&&(ad(a,b,m,!0,e)&&(r?p=a.result:q=a.result),r||(Q(a,l,n,o,p,q,f,g),o=p=q=null),S(a,!0,-1),h=a.input.charCodeAt(a.position)),a.lineIndent>b&&0!==h)L(a,"bad indentation of a mapping entry");else if(a.lineIndent<b)break}return r&&Q(a,l,n,o,p,null),s&&(a.tag=i,a.anchor=j,a.kind="mapping",a.result=l),s}function aa(a){var b,c,d,e,f=!1,g=!1;if(33!==(e=a.input.charCodeAt(a.position)))return!1;if(null!==a.tag&&L(a,"duplication of a tag property"),60===(e=a.input.charCodeAt(++a.position))?(f=!0,e=a.input.charCodeAt(++a.position)):33===e?(g=!0,c="!!",e=a.input.charCodeAt(++a.position)):c="!",b=a.position,f){do e=a.input.charCodeAt(++a.position);while(0!==e&&62!==e);a.position<a.length?(d=a.input.slice(b,a.position),e=a.input.charCodeAt(++a.position)):L(a,"unexpected end of the stream within a verbatim tag")}else{for(;0!==e&&!y(e);)33===e&&(g?L(a,"tag suffix cannot contain exclamation marks"):(c=a.input.slice(b-1,a.position+1),t.test(c)||L(a,"named tag handle cannot contain such characters"),g=!0,b=a.position+1)),e=a.input.charCodeAt(++a.position);d=a.input.slice(b,a.position),s.test(d)&&L(a,"tag suffix cannot contain flow indicator characters")}return d&&!u.test(d)&&L(a,"tag name cannot contain such characters: "+d),f?a.tag=d:i.call(a.tagMap,c)?a.tag=a.tagMap[c]+d:"!"===c?a.tag="!"+d:"!!"===c?a.tag="tag:yaml.org,2002:"+d:L(a,'undeclared tag handle "'+c+'"'),!0}function ab(a){var b,c;if(38!==(c=a.input.charCodeAt(a.position)))return!1;for(null!==a.anchor&&L(a,"duplication of an anchor property"),c=a.input.charCodeAt(++a.position),b=a.position;0!==c&&!y(c)&&!z(c);)c=a.input.charCodeAt(++a.position);return a.position===b&&L(a,"name of an anchor node must contain at least one character"),a.anchor=a.input.slice(b,a.position),!0}function ac(a){var b,c,d;if(42!==(d=a.input.charCodeAt(a.position)))return!1;for(d=a.input.charCodeAt(++a.position),b=a.position;0!==d&&!y(d)&&!z(d);)d=a.input.charCodeAt(++a.position);return a.position===b&&L(a,"name of an alias node must contain at least one character"),c=a.input.slice(b,a.position),i.call(a.anchorMap,c)||L(a,'unidentified alias "'+c+'"'),a.result=a.anchorMap[c],S(a,!0,-1),!0}function ad(a,b,c,d,e){var f,g,h,n,o,p,q,r,s=1,t=!1,u=!1;if(null!==a.listener&&a.listener("open",a),a.tag=null,a.anchor=null,a.kind=null,a.result=null,f=g=h=m===c||l===c,d&&S(a,!0,-1)&&(t=!0,a.lineIndent>b?s=1:a.lineIndent===b?s=0:a.lineIndent<b&&(s=-1)),1===s)for(;aa(a)||ab(a);)S(a,!0,-1)?(t=!0,h=f,a.lineIndent>b?s=1:a.lineIndent===b?s=0:a.lineIndent<b&&(s=-1)):h=!1;if(h&&(h=t||e),(1===s||m===c)&&(q=j===c||k===c?b:b+1,r=a.position-a.lineStart,1===s?h&&($(a,r)||_(a,r,q))||Y(a,q)?u=!0:(g&&Z(a,q)||W(a,q)||X(a,q)?u=!0:ac(a)?(u=!0,(null!==a.tag||null!==a.anchor)&&L(a,"alias node should not have any properties")):V(a,q,j===c)&&(u=!0,null===a.tag&&(a.tag="?")),null!==a.anchor&&(a.anchorMap[a.anchor]=a.result)):0===s&&(u=h&&$(a,r))),null!==a.tag&&"!"!==a.tag)if("?"===a.tag){for(null!==a.result&&"scalar"!==a.kind&&L(a,'unacceptable node kind for !<?> tag; it should be "scalar", not "'+a.kind+'"'),n=0,o=a.implicitTypes.length;n<o;n+=1)if((p=a.implicitTypes[n]).resolve(a.result)){a.result=p.construct(a.result),a.tag=p.tag,null!==a.anchor&&(a.anchorMap[a.anchor]=a.result);break}}else i.call(a.typeMap[a.kind||"fallback"],a.tag)?(p=a.typeMap[a.kind||"fallback"][a.tag],null!==a.result&&p.kind!==a.kind&&L(a,"unacceptable node kind for !<"+a.tag+'> tag; it should be "'+p.kind+'", not "'+a.kind+'"'),p.resolve(a.result)?(a.result=p.construct(a.result),null!==a.anchor&&(a.anchorMap[a.anchor]=a.result)):L(a,"cannot resolve a node with !<"+a.tag+"> explicit tag")):L(a,"unknown tag !<"+a.tag+">");return null!==a.listener&&a.listener("close",a),null!==a.tag||null!==a.anchor||u}function ae(a){var b,c,d,e,f=a.position,g=!1;for(a.version=null,a.checkLineBreaks=a.legacy,a.tagMap={},a.anchorMap={};0!==(e=a.input.charCodeAt(a.position))&&(S(a,!0,-1),e=a.input.charCodeAt(a.position),!(a.lineIndent>0)&&37===e);){for(g=!0,e=a.input.charCodeAt(++a.position),b=a.position;0!==e&&!y(e);)e=a.input.charCodeAt(++a.position);for(c=a.input.slice(b,a.position),d=[],c.length<1&&L(a,"directive name must not be less than one character in length");0!==e;){for(;x(e);)e=a.input.charCodeAt(++a.position);if(35===e){do e=a.input.charCodeAt(++a.position);while(0!==e&&!w(e));break}if(w(e))break;for(b=a.position;0!==e&&!y(e);)e=a.input.charCodeAt(++a.position);d.push(a.input.slice(b,a.position))}0!==e&&R(a),i.call(N,c)?N[c](a,c,d):M(a,'unknown document directive "'+c+'"')}if(S(a,!0,-1),0===a.lineIndent&&45===a.input.charCodeAt(a.position)&&45===a.input.charCodeAt(a.position+1)&&45===a.input.charCodeAt(a.position+2)?(a.position+=3,S(a,!0,-1)):g&&L(a,"directives end mark is expected"),ad(a,a.lineIndent-1,m,!1,!0),S(a,!0,-1),a.checkLineBreaks&&r.test(a.input.slice(f,a.position))&&M(a,"non-ASCII line breaks are interpreted as content"),a.documents.push(a.result),a.position===a.lineStart&&T(a)){46===a.input.charCodeAt(a.position)&&(a.position+=3,S(a,!0,-1));return}a.position<a.length-1&&L(a,"end of the stream or a document separator is expected")}function af(a,b){a=String(a),b=b||{},0!==a.length&&(10!==a.charCodeAt(a.length-1)&&13!==a.charCodeAt(a.length-1)&&(a+="\n"),65279===a.charCodeAt(0)&&(a=a.slice(1)));var c=new J(a,b),d=a.indexOf("\0");for(-1!==d&&(c.position=d,L(c,"null byte is not allowed in input")),c.input+="\0";32===c.input.charCodeAt(c.position);)c.lineIndent+=1,c.position+=1;for(;c.position<c.length-1;)ae(c);return c.documents}function ag(a,b,c){null!==b&&"object"==typeof b&&void 0===c&&(c=b,b=null);var d=af(a,c);if("function"!=typeof b)return d;for(var e=0,f=d.length;e<f;e+=1)b(d[e])}function ah(a,b){var c=af(a,b);if(0!==c.length){if(1===c.length)return c[0];throw new e("expected a single document in the stream, but found more")}}function ai(a,b,c){return"object"==typeof b&&null!==b&&void 0===c&&(c=b,b=null),ag(a,b,d.extend({schema:g},c))}function aj(a,b){return ah(a,d.extend({schema:g},b))}a.exports.loadAll=ag,a.exports.load=ah,a.exports.safeLoadAll=ai,a.exports.safeLoad=aj},94948:(a,b,c)=>{"use strict";a.exports=new(c(5101))("tag:yaml.org,2002:map",{kind:"mapping",construct:function(a){return null!==a?a:{}}})},96133:(a,b,c)=>{"use strict";function d(a){if(null===a)return!0;var b=a.length;return 1===b&&"~"===a||4===b&&("null"===a||"Null"===a||"NULL"===a)}function e(){return null}function f(a){return null===a}a.exports=new(c(5101))("tag:yaml.org,2002:null",{kind:"scalar",resolve:d,construct:e,predicate:f,represent:{canonical:function(){return"~"},lowercase:function(){return"null"},uppercase:function(){return"NULL"},camelcase:function(){return"Null"}},defaultStyle:"lowercase"})},97168:a=>{"use strict";function b(a){return null==a}function c(a){return"object"==typeof a&&null!==a}function d(a){return Array.isArray(a)?a:b(a)?[]:[a]}function e(a,b){var c,d,e,f;if(b)for(c=0,d=(f=Object.keys(b)).length;c<d;c+=1)a[e=f[c]]=b[e];return a}function f(a,b){var c,d="";for(c=0;c<b;c+=1)d+=a;return d}function g(a){return 0===a&&-1/0==1/a}a.exports.isNothing=b,a.exports.isObject=c,a.exports.toArray=d,a.exports.repeat=f,a.exports.isNegativeZero=g,a.exports.extend=e},98938:(a,b,c)=>{"use strict";let d=c(17941),e=c(72007);a.exports=function(a){let b=Object.assign({},a);return b.delimiters=e.arrayify(b.delims||b.delimiters||"---"),1===b.delimiters.length&&b.delimiters.push(b.delimiters[0]),b.language=(b.language||b.lang||"yaml").toLowerCase(),b.engines=Object.assign({},d,b.parsers,b.engines),b}}};
|