claude-flow-novice 2.0.0 → 2.0.1
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/.claude/agents/CLAUDE.md +669 -51
- package/.claude/agents/agent-principles/CODER_AGENT_GUIDELINES.md +1245 -0
- package/.claude/agents/agent-principles/agent-type-guidelines.md +137 -0
- package/.claude/agents/agent-principles/format-selection.md +20 -0
- package/.claude/agents/agent-principles/prompt-engineering.md +165 -35
- package/.claude/agents/agent-principles/quality-metrics.md +83 -2
- package/.claude/agents/analysis/code-analyzer.md +722 -0
- package/.claude/agents/analysis/code-review/analyze-code-quality.md +33 -3
- package/.claude/agents/analysis/perf-analyzer.md +812 -0
- package/.claude/agents/architecture/system-architect.md +25 -11
- package/.claude/agents/cfn-loop/product-owner.md +458 -2
- package/.claude/agents/code-booster.md +13 -2
- package/.claude/agents/consensus/byzantine-coordinator.md +259 -6
- package/.claude/agents/consensus/consensus-builder.md +135 -2
- package/.claude/agents/consensus/crdt-synchronizer.md +307 -771
- package/.claude/agents/consensus/gossip-coordinator.md +227 -2
- package/.claude/agents/consensus/performance-benchmarker.md +385 -704
- package/.claude/agents/consensus/quorum-manager.md +241 -749
- package/.claude/agents/consensus/raft-manager.md +195 -2
- package/.claude/agents/consensus/security-manager.md +461 -518
- package/.claude/agents/core-agents/analyst.md +560 -0
- package/.claude/agents/core-agents/architect.md +578 -0
- package/.claude/agents/core-agents/base-template-generator.md +137 -0
- package/.claude/agents/core-agents/coder.md +409 -0
- package/.claude/agents/core-agents/coordinator.md +1429 -0
- package/.claude/agents/core-agents/planner.md +343 -0
- package/.claude/agents/core-agents/researcher.md +414 -0
- package/.claude/agents/core-agents/reviewer.md +652 -0
- package/.claude/agents/core-agents/task-coordinator.md +400 -0
- package/.claude/agents/core-agents/tester.md +912 -0
- package/.claude/agents/development/backend/dev-backend-api.md +418 -23
- package/.claude/agents/devops/devops-engineer.md +240 -433
- package/.claude/agents/documentation/api-docs/docs-api-openapi.md +350 -11
- package/.claude/agents/examples/blocking-coordinator-example.md +388 -0
- package/.claude/agents/frontend/interaction-tester.md +334 -17
- package/.claude/agents/frontend/react-frontend-engineer.md +255 -2
- package/.claude/agents/frontend/state-architect.md +235 -9
- package/.claude/agents/frontend/ui-designer.md +261 -132
- package/.claude/agents/goal/goal-planner.md +803 -52
- package/.claude/agents/planning-team/api-designer-persona.md +736 -0
- package/.claude/agents/planning-team/security-architect-persona.md +643 -0
- package/.claude/agents/planning-team/system-architect-persona.md +585 -0
- package/.claude/agents/product-owner-team/accessibility-advocate-persona.md +796 -0
- package/.claude/agents/product-owner-team/cto-agent.md +473 -0
- package/.claude/agents/product-owner-team/power-user-persona.md +590 -0
- package/.claude/agents/product-owner-team/product-owner-agent.md +806 -0
- package/.claude/agents/security/security-specialist.md +515 -13
- package/.claude/agents/sparc/architecture.md +237 -1
- package/.claude/agents/sparc/pseudocode.md +237 -1
- package/.claude/agents/sparc/refinement.md +244 -1
- package/.claude/agents/sparc/specification.md +282 -21
- package/.claude/agents/specialized/code-booster.md +826 -0
- package/.claude/agents/specialized/mobile/mobile-dev.md +560 -0
- package/.claude/agents/specialized/mobile/spec-mobile-react-native.md +33 -1
- package/.claude/agents/swarm/adaptive-coordinator-enhanced.md +485 -746
- package/.claude/agents/swarm/adaptive-coordinator.md +269 -37
- package/.claude/agents/swarm/blocking-coordinator-example.md +456 -0
- package/.claude/agents/swarm/hierarchical-coordinator.md +324 -60
- package/.claude/agents/swarm/mesh-coordinator.md +774 -324
- package/.claude/agents/swarm/test-coordinator.md +123 -74
- package/.claude/agents/testing/e2e/playwright-agent.md +32 -0
- package/.claude/agents/testing/interaction-tester.md +525 -0
- package/.claude/agents/testing/playwright-tester.md +405 -0
- package/.claude/agents/testing/production-validator.md +644 -0
- package/.claude/agents/testing/tdd-london-swarm.md +659 -0
- package/.claude/agents/testing/unit/tdd-london-swarm.md +27 -0
- package/.claude/agents/testing/validation/production-validator.md +390 -1
- package/.claude/agents-ignore/mesh-coordinator-backup.md +435 -0
- package/.claude/commands/cfn-loop-document.md +441 -0
- package/.claude/commands/github-commit.md +289 -0
- package/.claude-flow-novice/.claude/agents/CLAUDE.md +669 -51
- package/.claude-flow-novice/.claude/agents/agent-principles/agent-type-guidelines.md +137 -0
- package/.claude-flow-novice/.claude/agents/agent-principles/format-selection.md +20 -0
- package/.claude-flow-novice/.claude/agents/agent-principles/prompt-engineering.md +165 -35
- package/.claude-flow-novice/.claude/agents/agent-principles/quality-metrics.md +83 -2
- package/.claude-flow-novice/.claude/agents/analysis/code-analyzer.md +722 -192
- package/.claude-flow-novice/.claude/agents/analysis/code-review/analyze-code-quality.md +33 -3
- package/.claude-flow-novice/.claude/agents/analysis/perf-analyzer.md +812 -0
- package/.claude-flow-novice/.claude/agents/architecture/system-architect.md +25 -11
- package/.claude-flow-novice/.claude/agents/cfn-loop/product-owner.md +458 -2
- package/.claude-flow-novice/.claude/agents/code-booster.md +13 -2
- package/.claude-flow-novice/.claude/agents/consensus/byzantine-coordinator.md +259 -6
- package/.claude-flow-novice/.claude/agents/consensus/consensus-builder.md +135 -2
- package/.claude-flow-novice/.claude/agents/consensus/crdt-synchronizer.md +307 -771
- package/.claude-flow-novice/.claude/agents/consensus/gossip-coordinator.md +227 -2
- package/.claude-flow-novice/.claude/agents/consensus/performance-benchmarker.md +385 -704
- package/.claude-flow-novice/.claude/agents/consensus/quorum-manager.md +241 -749
- package/.claude-flow-novice/.claude/agents/consensus/raft-manager.md +195 -2
- package/.claude-flow-novice/.claude/agents/consensus/security-manager.md +461 -518
- package/.claude-flow-novice/.claude/agents/core-agents/analyst.md +560 -0
- package/.claude-flow-novice/.claude/agents/core-agents/architect.md +578 -0
- package/.claude-flow-novice/.claude/agents/core-agents/base-template-generator.md +137 -0
- package/.claude-flow-novice/.claude/agents/core-agents/coder.md +409 -0
- package/.claude-flow-novice/.claude/agents/core-agents/coordinator.md +1429 -0
- package/.claude-flow-novice/.claude/agents/core-agents/planner.md +343 -0
- package/.claude-flow-novice/.claude/agents/core-agents/researcher.md +414 -0
- package/.claude-flow-novice/.claude/agents/core-agents/reviewer.md +652 -0
- package/.claude-flow-novice/.claude/agents/core-agents/task-coordinator.md +400 -0
- package/.claude-flow-novice/.claude/agents/core-agents/tester.md +912 -0
- package/.claude-flow-novice/.claude/agents/development/backend/dev-backend-api.md +418 -23
- package/.claude-flow-novice/.claude/agents/devops/devops-engineer.md +240 -433
- package/.claude-flow-novice/.claude/agents/documentation/api-docs/docs-api-openapi.md +350 -11
- package/.claude-flow-novice/.claude/agents/examples/blocking-coordinator-example.md +388 -0
- package/.claude-flow-novice/.claude/agents/frontend/interaction-tester.md +334 -17
- package/.claude-flow-novice/.claude/agents/frontend/react-frontend-engineer.md +255 -2
- package/.claude-flow-novice/.claude/agents/frontend/state-architect.md +235 -9
- package/.claude-flow-novice/.claude/agents/frontend/ui-designer.md +261 -132
- package/.claude-flow-novice/.claude/agents/goal/goal-planner.md +803 -52
- package/.claude-flow-novice/.claude/agents/planning-team/api-designer-persona.md +736 -0
- package/.claude-flow-novice/.claude/agents/planning-team/security-architect-persona.md +643 -0
- package/.claude-flow-novice/.claude/agents/planning-team/system-architect-persona.md +585 -0
- package/.claude-flow-novice/.claude/agents/predesign-negotiation/accessibility-advocate-persona.md +796 -0
- package/.claude-flow-novice/.claude/agents/predesign-negotiation/cto-agent.md +473 -0
- package/.claude-flow-novice/.claude/agents/predesign-negotiation/power-user-persona.md +590 -0
- package/.claude-flow-novice/.claude/agents/predesign-negotiation/product-owner-agent.md +806 -0
- package/.claude-flow-novice/.claude/agents/product-owner-team/accessibility-advocate-persona.md +796 -0
- package/.claude-flow-novice/.claude/agents/product-owner-team/cto-agent.md +473 -0
- package/.claude-flow-novice/.claude/agents/product-owner-team/power-user-persona.md +590 -0
- package/.claude-flow-novice/.claude/agents/product-owner-team/product-owner-agent.md +806 -0
- package/.claude-flow-novice/.claude/agents/security/security-specialist.md +515 -13
- package/.claude-flow-novice/.claude/agents/sparc/architecture.md +237 -1
- package/.claude-flow-novice/.claude/agents/sparc/pseudocode.md +237 -1
- package/.claude-flow-novice/.claude/agents/sparc/refinement.md +244 -1
- package/.claude-flow-novice/.claude/agents/sparc/specification.md +282 -21
- package/.claude-flow-novice/.claude/agents/specialized/code-booster.md +826 -0
- package/.claude-flow-novice/.claude/agents/specialized/mobile/mobile-dev.md +560 -0
- package/.claude-flow-novice/.claude/agents/specialized/mobile/spec-mobile-react-native.md +33 -1
- package/.claude-flow-novice/.claude/agents/swarm/adaptive-coordinator-enhanced.md +485 -746
- package/.claude-flow-novice/.claude/agents/swarm/adaptive-coordinator.md +269 -37
- package/.claude-flow-novice/.claude/agents/swarm/blocking-coordinator-example.md +456 -0
- package/.claude-flow-novice/.claude/agents/swarm/hierarchical-coordinator.md +324 -60
- package/.claude-flow-novice/.claude/agents/swarm/mesh-coordinator.md +774 -324
- package/.claude-flow-novice/.claude/agents/swarm/test-coordinator.md +123 -74
- package/.claude-flow-novice/.claude/agents/testing/e2e/playwright-agent.md +32 -0
- package/.claude-flow-novice/.claude/agents/testing/interaction-tester.md +525 -0
- package/.claude-flow-novice/.claude/agents/testing/playwright-tester.md +405 -0
- package/.claude-flow-novice/.claude/agents/testing/production-validator.md +644 -0
- package/.claude-flow-novice/.claude/agents/testing/tdd-london-swarm.md +659 -0
- package/.claude-flow-novice/.claude/agents/testing/unit/tdd-london-swarm.md +27 -0
- package/.claude-flow-novice/.claude/agents/testing/validation/production-validator.md +390 -1
- package/.claude-flow-novice/config/typescript/tsconfig.tsbuildinfo +1 -1
- package/.claude-flow-novice/dist/__tests__/redis/RedisHealthMonitor.test.d.ts +14 -0
- package/.claude-flow-novice/dist/agents/heartbeat-manager.d.ts +73 -0
- package/.claude-flow-novice/dist/agents/lifecycle-cleanup-enhanced.d.ts +190 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/agent-lifecycle-sqlite.test.d.ts +17 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/blocking-coordination-audit.test.d.ts +16 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/blocking-coordination-signals.test.d.ts +14 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/byzantine-consensus-adapter.test.d.ts +14 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/byzantine-performance.test.d.ts +17 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/cfn-loop-byzantine-integration.test.d.ts +15 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/cfn-loop-e2e.test.d.ts +15 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/cfn-loop-memory-manager.test.d.ts +9 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/cleanup-integration.test.d.ts +21 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/cleanup-performance-validation.test.d.ts +13 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/coordinator-timeout-handler.test.d.ts +14 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/dead-coordinator-detection.test.d.ts +15 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/doc-code-examples-validator.d.ts +35 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/doc-executable-examples.test.d.ts +10 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/extended-timeout-testing.test.d.ts +24 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/heartbeat-warning-system.test.d.ts +21 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/redis-health-monitor.test.d.ts +22 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/signal-ack-protocol.test.d.ts +21 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/sqlite-memory-manager.test.d.ts +19 -0
- package/.claude-flow-novice/dist/cfn-loop/__tests__/test-utilities.d.ts +133 -0
- package/.claude-flow-novice/dist/cfn-loop/agent-lifecycle-sqlite.d.ts +143 -0
- package/.claude-flow-novice/dist/cfn-loop/blocking-coordination-signals.d.ts +178 -0
- package/.claude-flow-novice/dist/cfn-loop/blocking-coordination.d.ts +268 -0
- package/.claude-flow-novice/dist/cfn-loop/byzantine-consensus-adapter.d.ts +193 -0
- package/.claude-flow-novice/dist/cfn-loop/cfn-loop-memory-manager.d.ts +221 -0
- package/.claude-flow-novice/dist/cfn-loop/cfn-loop-orchestrator.d.ts +193 -1
- package/.claude-flow-novice/dist/cfn-loop/checkpoint-serializer.d.ts +113 -0
- package/.claude-flow-novice/dist/cfn-loop/circuit-breaker.d.ts +8 -2
- package/.claude-flow-novice/dist/cfn-loop/conflict-resolver.d.ts +221 -0
- package/.claude-flow-novice/dist/cfn-loop/consensus/enterprise-planning-consensus.d.ts +61 -0
- package/.claude-flow-novice/dist/cfn-loop/consensus/mvp-consensus.d.ts +33 -0
- package/.claude-flow-novice/dist/cfn-loop/coordination-validator.d.ts +121 -0
- package/.claude-flow-novice/dist/cfn-loop/coordinator-timeout-handler.d.ts +195 -0
- package/.claude-flow-novice/dist/cfn-loop/crash-detector.d.ts +138 -0
- package/.claude-flow-novice/dist/cfn-loop/epic-report-generator.d.ts +136 -0
- package/.claude-flow-novice/dist/cfn-loop/git-checkpoint-integration.example.d.ts +13 -0
- package/.claude-flow-novice/dist/cfn-loop/git-checkpoint-manager.d.ts +165 -0
- package/.claude-flow-novice/dist/cfn-loop/heartbeat-integration-example.d.ts +16 -0
- package/.claude-flow-novice/dist/cfn-loop/heartbeat-warning-system.d.ts +202 -0
- package/.claude-flow-novice/dist/cfn-loop/meta-coordinator.d.ts +208 -0
- package/.claude-flow-novice/dist/cfn-loop/modes/__tests__/mode-selection.test.d.ts +9 -0
- package/.claude-flow-novice/dist/cfn-loop/modes/enterprise-mode.d.ts +37 -0
- package/.claude-flow-novice/dist/cfn-loop/modes/index.d.ts +111 -0
- package/.claude-flow-novice/dist/cfn-loop/modes/mvp-mode.d.ts +31 -0
- package/.claude-flow-novice/dist/cfn-loop/modes/standard-mode.d.ts +31 -0
- package/.claude-flow-novice/dist/cfn-loop/modes/types.d.ts +135 -0
- package/.claude-flow-novice/dist/cfn-loop/product-owner/enterprise-owner-team.d.ts +50 -0
- package/.claude-flow-novice/dist/cfn-loop/product-owner/mvp-owner.d.ts +31 -0
- package/.claude-flow-novice/dist/cfn-loop/recovery-engine.d.ts +183 -0
- package/.claude-flow-novice/dist/cfn-loop/redis-health-integration-example.d.ts +13 -0
- package/.claude-flow-novice/dist/cfn-loop/redis-health-monitor.d.ts +164 -0
- package/.claude-flow-novice/dist/cfn-loop/redis-pubsub-helpers.d.ts +230 -0
- package/.claude-flow-novice/dist/cfn-loop/sprint-coordinator-enhanced.d.ts +199 -0
- package/.claude-flow-novice/dist/cfn-loop/state-checkpoint-manager.d.ts +198 -0
- package/.claude-flow-novice/dist/cfn-loop/test-aggregator.d.ts +205 -0
- package/.claude-flow-novice/dist/cfn-loop/test-lock-coordinator.d.ts +176 -0
- package/.claude-flow-novice/dist/cfn-loop/test-product-owner-decision.d.ts +19 -0
- package/.claude-flow-novice/dist/cfn-loop/types.d.ts +174 -0
- package/.claude-flow-novice/dist/cfn-loop/validator-methods-replacement.d.ts +68 -0
- package/.claude-flow-novice/dist/cli/cleanup-orphans.d.ts +54 -0
- package/.claude-flow-novice/dist/cli/commands/agent-lifecycle.d.ts +226 -0
- package/.claude-flow-novice/dist/cli/commands/cfn-loop-parallel.d.ts +21 -0
- package/.claude-flow-novice/dist/cli/commands/recovery-resume.d.ts +33 -0
- package/.claude-flow-novice/dist/cli/commands/recovery-status.d.ts +57 -0
- package/.claude-flow-novice/dist/cli/commands/recovery.d.ts +88 -0
- package/.claude-flow-novice/dist/cli/commands/validate-coordination.d.ts +14 -0
- package/.claude-flow-novice/dist/cli/node-compat.d.ts +1 -1
- package/.claude-flow-novice/dist/cli/simple-commands/hive-mind/queen.d.ts +3 -3
- package/.claude-flow-novice/dist/cli/utils/interactive-detector.d.ts +1 -1
- package/.claude-flow-novice/dist/cli/utils/redis-client.d.ts +1 -5
- package/.claude-flow-novice/dist/consensus/byzantine-coordinator.d.ts +314 -0
- package/.claude-flow-novice/dist/constants/agent-types.d.ts +2 -2
- package/.claude-flow-novice/dist/coordination/hive-orchestrator.d.ts +1 -1
- package/.claude-flow-novice/dist/coordination/validation-schemas.d.ts +12 -12
- package/.claude-flow-novice/dist/hooks/index.d.ts +1 -1
- package/.claude-flow-novice/dist/hooks/useSwarmRealtimeData.d.ts +11 -11
- package/.claude-flow-novice/dist/memory/advanced-memory-manager.d.ts +1 -0
- package/.claude-flow-novice/dist/memory/backends/sqlite.d.ts +1 -0
- package/.claude-flow-novice/dist/memory/distributed-memory.d.ts +1 -0
- package/.claude-flow-novice/dist/memory/secret-detector.d.ts +131 -0
- package/.claude-flow-novice/dist/memory/sqlite-enhanced-backend.d.ts +1 -0
- package/.claude-flow-novice/dist/monitoring/memory-leak-dashboard-widget.d.ts +194 -0
- package/.claude-flow-novice/dist/providers/api-key-rotation-example.d.ts +54 -0
- package/.claude-flow-novice/dist/providers/api-key-rotator.d.ts +166 -0
- package/.claude-flow-novice/dist/providers/rate-limit-detector.d.ts +60 -0
- package/.claude-flow-novice/dist/redis/RedisHealthMonitor.d.ts +162 -0
- package/.claude-flow-novice/dist/redis/health-integration-example.d.ts +86 -0
- package/.claude-flow-novice/dist/services/swarm-memory-manager.d.ts +1 -0
- package/.claude-flow-novice/dist/src/agents/heartbeat-manager.js +144 -0
- package/.claude-flow-novice/dist/src/agents/lifecycle-cleanup-enhanced.js +514 -0
- package/.claude-flow-novice/dist/src/automation/test-pipeline/PipelineValidator.js +1 -1
- package/.claude-flow-novice/dist/src/automation/test-pipeline/SwarmTestCoordinator.js +1 -1
- package/.claude-flow-novice/dist/src/cfn-loop/agent-lifecycle-sqlite.js +385 -0
- package/.claude-flow-novice/dist/src/cfn-loop/blocking-coordination-signals.js +470 -0
- package/.claude-flow-novice/dist/src/cfn-loop/blocking-coordination.js +768 -0
- package/.claude-flow-novice/dist/src/cfn-loop/byzantine-consensus-adapter.js +548 -0
- package/.claude-flow-novice/dist/src/cfn-loop/cfn-loop-memory-manager.js +589 -0
- package/.claude-flow-novice/dist/src/cfn-loop/cfn-loop-orchestrator.js +1059 -21
- package/.claude-flow-novice/dist/src/cfn-loop/checkpoint-serializer.js +308 -0
- package/.claude-flow-novice/dist/src/cfn-loop/circuit-breaker.js +34 -9
- package/.claude-flow-novice/dist/src/cfn-loop/conflict-resolver.js +525 -0
- package/.claude-flow-novice/dist/src/cfn-loop/consensus/enterprise-planning-consensus.js +403 -0
- package/.claude-flow-novice/dist/src/cfn-loop/consensus/mvp-consensus.js +235 -0
- package/.claude-flow-novice/dist/src/cfn-loop/coordination-validator.js +304 -0
- package/.claude-flow-novice/dist/src/cfn-loop/coordinator-timeout-handler.js +600 -0
- package/.claude-flow-novice/dist/src/cfn-loop/crash-detector.js +362 -0
- package/.claude-flow-novice/dist/src/cfn-loop/epic-report-generator.js +283 -0
- package/.claude-flow-novice/dist/src/cfn-loop/git-checkpoint-integration.example.js +161 -0
- package/.claude-flow-novice/dist/src/cfn-loop/git-checkpoint-manager.js +486 -0
- package/.claude-flow-novice/dist/src/cfn-loop/heartbeat-integration-example.js +187 -0
- package/.claude-flow-novice/dist/src/cfn-loop/heartbeat-warning-system.js +492 -0
- package/.claude-flow-novice/dist/src/cfn-loop/meta-coordinator.js +538 -0
- package/.claude-flow-novice/dist/src/cfn-loop/modes/enterprise-mode.js +132 -0
- package/.claude-flow-novice/dist/src/cfn-loop/modes/index.js +191 -0
- package/.claude-flow-novice/dist/src/cfn-loop/modes/mvp-mode.js +79 -0
- package/.claude-flow-novice/dist/src/cfn-loop/modes/standard-mode.js +81 -0
- package/.claude-flow-novice/dist/src/cfn-loop/modes/types.js +41 -0
- package/.claude-flow-novice/dist/src/cfn-loop/product-owner/enterprise-owner-team.js +380 -0
- package/.claude-flow-novice/dist/src/cfn-loop/product-owner/mvp-owner.js +170 -0
- package/.claude-flow-novice/dist/src/cfn-loop/recovery-engine.js +546 -0
- package/.claude-flow-novice/dist/src/cfn-loop/redis-health-integration-example.js +215 -0
- package/.claude-flow-novice/dist/src/cfn-loop/redis-health-monitor.js +414 -0
- package/.claude-flow-novice/dist/src/cfn-loop/redis-pubsub-helpers.js +463 -0
- package/.claude-flow-novice/dist/src/cfn-loop/sprint-coordinator-enhanced.js +466 -0
- package/.claude-flow-novice/dist/src/cfn-loop/state-checkpoint-manager.js +402 -0
- package/.claude-flow-novice/dist/src/cfn-loop/test-aggregator.js +476 -0
- package/.claude-flow-novice/dist/src/cfn-loop/test-lock-coordinator.js +446 -0
- package/.claude-flow-novice/dist/src/cfn-loop/test-product-owner-decision.js +69 -0
- package/.claude-flow-novice/dist/src/cfn-loop/types.js +30 -0
- package/.claude-flow-novice/dist/src/cfn-loop/validator-methods-replacement.js +362 -0
- package/.claude-flow-novice/dist/src/cli/cleanup-orphans.js +246 -0
- package/.claude-flow-novice/dist/src/cli/commands/agent-lifecycle.js +1058 -0
- package/.claude-flow-novice/dist/src/cli/commands/cfn-loop-parallel.js +436 -0
- package/.claude-flow-novice/dist/src/cli/commands/index.js +86 -0
- package/.claude-flow-novice/dist/src/cli/commands/parse-epic.js +64 -2
- package/.claude-flow-novice/dist/src/cli/commands/recovery-resume.js +369 -0
- package/.claude-flow-novice/dist/src/cli/commands/recovery-status.js +265 -0
- package/.claude-flow-novice/dist/src/cli/commands/recovery.js +546 -0
- package/.claude-flow-novice/dist/src/cli/commands/validate-coordination.js +211 -0
- package/.claude-flow-novice/dist/src/cli/simple-commands/init/templates/CLAUDE-backup-pre-enterprise-loop.md +735 -0
- package/.claude-flow-novice/dist/src/cli/simple-commands/init/templates/CLAUDE.md +176 -326
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-system.js +1 -1
- package/.claude-flow-novice/dist/src/memory/advanced-memory-manager.js +17 -2
- package/.claude-flow-novice/dist/src/memory/backends/sqlite.js +23 -1
- package/.claude-flow-novice/dist/src/memory/distributed-memory.js +18 -3
- package/.claude-flow-novice/dist/src/memory/secret-detector.js +253 -0
- package/.claude-flow-novice/dist/src/memory/sqlite-enhanced-backend.js +20 -1
- package/.claude-flow-novice/dist/src/monitoring/memory-leak-dashboard-widget.js +421 -0
- package/.claude-flow-novice/dist/src/observability/prometheus-metrics.d.js +8 -0
- package/.claude-flow-novice/dist/src/providers/api-key-rotation-example.js +165 -0
- package/.claude-flow-novice/dist/src/providers/api-key-rotator.js +412 -0
- package/.claude-flow-novice/dist/src/providers/rate-limit-detector.js +193 -0
- package/.claude-flow-novice/dist/src/redis/RedisHealthMonitor.js +429 -0
- package/.claude-flow-novice/dist/src/redis/health-integration-example.js +353 -0
- package/.claude-flow-novice/dist/src/services/swarm-memory-manager.js +72 -42
- package/.claude-flow-novice/dist/src/sqlite/ACLEnforcer.cjs +928 -0
- package/.claude-flow-novice/dist/src/sqlite/AgentRegistry.cjs +702 -0
- package/.claude-flow-novice/dist/src/sqlite/AgentRegistry.js +702 -0
- package/.claude-flow-novice/dist/src/sqlite/EncryptionKeyManager.cjs +754 -0
- package/.claude-flow-novice/dist/src/sqlite/EncryptionKeyManager.js +754 -0
- package/.claude-flow-novice/dist/src/sqlite/MemoryStoreAdapter.cjs +571 -0
- package/.claude-flow-novice/dist/src/sqlite/MemoryStoreAdapter.js +571 -0
- package/.claude-flow-novice/dist/src/sqlite/MultiLayerCache.cjs +640 -0
- package/.claude-flow-novice/dist/src/sqlite/MultiLayerCache.js +640 -0
- package/.claude-flow-novice/dist/src/sqlite/RedisCoordinator.cjs +636 -0
- package/.claude-flow-novice/dist/src/sqlite/RedisCoordinator.js +636 -0
- package/.claude-flow-novice/dist/src/sqlite/SwarmMemoryManager.cjs +750 -0
- package/.claude-flow-novice/dist/src/sqlite/SwarmMemoryManager.js +750 -0
- package/.claude-flow-novice/dist/src/sqlite/index.cjs +620 -0
- package/.claude-flow-novice/dist/src/sqlite/index.js +620 -0
- package/.claude-flow-novice/dist/src/sqlite/performance-benchmarks.cjs +839 -0
- package/.claude-flow-novice/dist/src/sqlite/performance-benchmarks.js +839 -0
- package/.claude-flow-novice/dist/src/testing/performance/PerformanceTestRunner.js +1 -1
- package/.claude-flow-novice/dist/src/wasm-regex-engine/pkg/wasm_regex_engine.d.js +11 -0
- package/.claude-flow-novice/dist/src/wasm-regex-engine/pkg/wasm_regex_engine_bg.wasm.d.js +28 -0
- package/.claude-flow-novice/dist/web/api/routes/parallel-status.d.ts +105 -0
- package/.claude-flow-novice/dist/web/dashboard/hooks/useWebSocket.d.ts +4 -4
- package/.claude-flow-novice/tsconfig.tsbuildinfo +1 -1
- package/AUTO_SETUP.md +271 -0
- package/CLAUDE.md +176 -326
- package/README.md +127 -30
- package/config/.env.example +17 -0
- package/config/cfn-loop/enterprise-criteria.json +207 -0
- package/config/cfn-loop/instructions/enterprise-instructions.md +506 -0
- package/config/cfn-loop/instructions/mvp-instructions.md +420 -0
- package/config/cfn-loop/instructions/standard-instructions.md +497 -0
- package/config/cfn-loop/mvp-criteria.json +133 -0
- package/config/docker/DEPLOYMENT_VALIDATION_RESULTS.md +1 -1
- package/config/docker/QUICK_START.txt +7 -5
- package/config/docker/STABILITY_TEST_README.md +10 -10
- package/config/hooks/AGENT_TEMPLATE_VALIDATOR_COMPLETION.md +440 -0
- package/config/hooks/BLOCKING_COORDINATION_VALIDATOR_IMPLEMENTATION_REPORT.md +559 -0
- package/config/hooks/BLOCKING_COORDINATION_VALIDATOR_README.md +467 -0
- package/config/hooks/CFN_LOOP_MEMORY_VALIDATOR_IMPLEMENTATION.md +343 -0
- package/config/hooks/COVERAGE_VALIDATOR_QUICK_START.md +218 -0
- package/config/hooks/POST_TEST_COVERAGE_README.md +657 -0
- package/config/hooks/README-AGENT-TEMPLATE-VALIDATOR.md +464 -0
- package/config/hooks/README-CFN-LOOP-MEMORY-VALIDATOR.md +442 -0
- package/config/hooks/TEST_COVERAGE_VALIDATOR_COMPLETION.md +497 -0
- package/config/hooks/WASM_REGEX_ENGINE.md +210 -0
- package/config/hooks/coverage.config.json +40 -0
- package/config/hooks/hook-manager.cjs +47 -0
- package/config/hooks/markdown-validator.js +202 -0
- package/config/hooks/post-edit-agent-template.js +607 -0
- package/config/hooks/post-edit-blocking-coordination.js +748 -0
- package/config/hooks/post-edit-cfn-loop-memory.cjs +503 -0
- package/config/hooks/post-edit-pipeline.js +290 -145
- package/config/hooks/post-test-coverage.js +981 -0
- package/config/hooks/pre-commit-db-scan +119 -0
- package/config/hooks/pre-edit-security.js +33 -6
- package/config/hooks/pre-tool-validation.js +60 -1
- package/config/hooks/safety-validator.js +236 -21
- package/config/hooks/safety-validator.js.backup +1323 -0
- package/config/hooks/validators/CWEValidator.js +152 -0
- package/config/hooks/validators/ComplianceValidator.js +187 -0
- package/config/hooks/validators/DependencyScanner.js +162 -0
- package/config/hooks/validators/InputSanitizer.js +134 -0
- package/config/hooks/validators/OWASPValidator.js +197 -0
- package/config/hooks/validators/SecurityPatternScanner.js +318 -0
- package/config/jest/jest.config.js +12 -1
- package/docs/PRE_COMMIT_HOOK.md +294 -0
- package/docs/README.md +130 -153
- package/docs/TEST_INFRASTRUCTURE.md +381 -0
- package/docs/agent-lifecycle-hooks.md +860 -0
- package/docs/api/FUNCTION_CATALOG.md +584 -0
- package/docs/api/ROUTING_QUICK_REFERENCE.md +117 -0
- package/docs/api/VALIDATION_QUICK_REFERENCE.md +172 -0
- package/docs/api/blocking-coordination-api.md +1451 -0
- package/docs/architecture/MULTI_SWARM_COORDINATION_README.md +620 -0
- package/docs/architecture/README_REALTIME_COMMUNICATION.md +463 -0
- package/docs/architecture/REALTIME_COMMUNICATION_ANALYSIS.md +321 -0
- package/docs/architecture/WASM_ARCHITECTURE_SUMMARY.md +429 -0
- package/docs/architecture/WASM_INTEGRATION_ARCHITECTURE.md +1330 -0
- package/docs/archive/2025-10-10-architecture/deprecated-implementations/BLOCKING_COORDINATION_VALIDATION_FINAL.md +334 -0
- package/docs/archive/2025-10-10-architecture/deprecated-implementations/blocking-coordination-pattern.md +484 -0
- package/docs/archive/2025-10-10-architecture/deprecated-implementations/production-blocking-coordination-plan.md +764 -0
- package/docs/archive/2025-10-10-architecture/deprecated-implementations/revised-production-blocking-plan.md +614 -0
- package/docs/archive/2025-10-10-architecture/implementation-guides/WASM_IMPLEMENTATION_GUIDE.md +1011 -0
- package/docs/archive/2025-10-10-architecture/implementation-guides/WASM_ROLLOUT_PLAN.md +701 -0
- package/docs/archive/2025-10-10-architecture/implementation-guides/agent-lifecycle-implementation-plan.md +1428 -0
- package/docs/archive/2025-10-10-architecture/other-designs/CORRECTED-task-tool-constraints.md +366 -0
- package/docs/archive/2025-10-10-architecture/other-designs/claude-code-task-tool-constraints.md +401 -0
- package/docs/archive/2025-10-10-architecture/other-designs/cleanup-architecture-explanation.md +423 -0
- package/docs/archive/2025-10-10-guides/setup-guides/CONTRIBUTING.md +136 -0
- package/docs/archive/2025-10-10-guides/setup-guides/DEVELOPMENT_SETUP.md +486 -0
- package/docs/archive/2025-10-10-guides/setup-guides/EXAMPLES.md +793 -0
- package/docs/archive/2025-10-10-guides/setup-guides/INSTALLATION.md +608 -0
- package/docs/archive/2025-10-10-guides/setup-guides/QUICK_START_INSTALLATION.md +521 -0
- package/docs/archive/2025-10-10-guides/setup-guides/README.md +162 -0
- package/docs/archive/2025-10-10-guides/setup-guides/TROUBLESHOOTING.md +1388 -0
- package/docs/archive/2025-10-10-operations/ARCHIVE_MIGRATION_PLAN.md +214 -0
- package/docs/archive/2025-10-10-performance/wasm-deliverables/WASM_DELIVERABLES.md +421 -0
- package/docs/archive/ARCHIVAL_EXECUTION_REPORT_2025-10-10.md +219 -0
- package/docs/archive/HTTP_POLLING_FALLBACK.md +283 -0
- package/docs/archive/reference-historical/BACKUP_MANIFEST.md +32 -0
- package/docs/archive/reference-historical/README-PHASE4.md +355 -0
- package/docs/archive/reference-historical/READMEv2.md +524 -0
- package/docs/deployment/blocking-coordination-secrets.md +1445 -0
- package/docs/implementation/SQLITE_INTEGRATION_IMPLEMENTATION.md +663 -0
- package/docs/integration/cfn-loop-examples.md +1107 -0
- package/docs/observability/prometheus-setup.md +455 -0
- package/docs/operations/OPERATIONS_FOLDER_REVIEW_REPORT.json +135 -0
- package/docs/operations/failure-recovery-playbook.md +877 -0
- package/docs/operations/monitoring-runbook.md +880 -0
- package/docs/patterns/blocking-coordination-pattern.md +642 -0
- package/docs/reference/CHANGELOG-POST-EDIT-PIPELINE.md +370 -0
- package/docs/reference/MANUAL_NPM_PUBLICATION_GUIDE.md +248 -0
- package/docs/security/SEC-002-race-condition-fix.md +300 -0
- package/docs/security/SEC-003-JSON-VALIDATION.md +215 -0
- package/docs/testing/chaos-engineering.md +524 -0
- package/docs/training/best-practices.md +1241 -0
- package/docs/training/faq.md +1483 -0
- package/docs/training/interactive-tutorial.md +966 -0
- package/docs/training/troubleshooting-guide.md +1279 -0
- package/docs/training/video-walkthrough-script.md +675 -0
- package/examples/demonstrations/phase5-demonstration.cjs +227 -0
- package/examples/rest-api-simple/sparc-implementation-roadmap.md +1 -1
- package/examples/rest-api-simple/sparc-implementation-roadmap.md.backup-1760135091708 +190 -0
- package/examples/templates/basic-swarm/CLAUDE.md +464 -0
- package/examples/templates/custom-agent/CLAUDE.md +299 -0
- package/examples/templates/custom-agent/package.json +26 -0
- package/examples/templates/event-bus/package.json +28 -0
- package/examples/templates/fleet-manager/CLAUDE.md +134 -0
- package/examples/templates/fleet-manager/package.json +28 -0
- package/package.json +60 -18
- package/readme/additional-commands.md +365 -2
- package/readme/cfn-loop-modes.md +527 -0
- package/readme/logs-cli-redis.md +82 -14
- package/readme/logs-documentation-index.md +8 -0
- package/readme/logs-features.md +188 -24
- package/readme/logs-slash-commands.md +35 -11
- package/scripts/CLEANUP_OPTIMIZATION_REPORT.json +312 -0
- package/scripts/CLEANUP_PERFORMANCE_OPTIMIZATION.md +387 -0
- package/scripts/CLEANUP_QUICK_START.md +268 -0
- package/scripts/CLEANUP_TEST_RESULTS.md +205 -0
- package/scripts/auto-setup.js +332 -0
- package/scripts/cleanup-blocking-coordination.sh +420 -0
- package/scripts/collect-build-metrics.js +65 -0
- package/scripts/demo/README.md +79 -0
- package/scripts/demo/autoscaling-demo-simplified.js +963 -0
- package/scripts/demo/comprehensive-dashboard-test.js +693 -0
- package/scripts/demo/confidence-log.js +87 -0
- package/scripts/demo/confidence-report.js +82 -0
- package/scripts/demo/demo-multi-swarm-coordination.js +325 -0
- package/scripts/demo/demo-production-deployment.js +399 -0
- package/scripts/demo/demo-visualization-system.js +149 -0
- package/scripts/demo/performance-analysis.cjs +71 -0
- package/scripts/demo/performance-analysis.js +71 -0
- package/scripts/demo/test-autoscaling-demo.js +314 -0
- package/scripts/dev/demo-phase3-compliance.js +2 -2
- package/scripts/ecosystem.config.cjs +90 -0
- package/scripts/hook-wrapper.sh +54 -0
- package/scripts/install-pre-commit-hook.sh +127 -0
- package/scripts/legacy/performance-test-runner.js +7 -7
- package/scripts/migration/QUICK-START.md +189 -0
- package/scripts/migration/QUICK-START.md.backup-1760135091363 +189 -0
- package/scripts/migration/README.md +30 -0
- package/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md +500 -0
- package/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md.backup-1760135091348 +500 -0
- package/scripts/migration/UPDATE-PATHS-README.md +464 -0
- package/scripts/migration/UPDATE-PATHS-README.md.backup-1760135091337 +464 -0
- package/scripts/migration/example-patterns.json +19 -0
- package/scripts/migration/reorganize-workspace.js +504 -0
- package/scripts/migration/test-update-paths.js +359 -0
- package/scripts/migration/update-paths.js +664 -0
- package/scripts/migration/validate-migration.js +647 -0
- package/scripts/monitoring/README.md +6 -6
- package/scripts/monitoring/analyze-resources.sh +1 -1
- package/scripts/monitoring/dynamic-monitor.sh +4 -4
- package/scripts/monitoring/test-monitor-quick.sh +1 -1
- package/scripts/performance-test-runner.js +7 -7
- package/scripts/redis-lua/cleanup-blocking-coordination.lua +198 -0
- package/scripts/sync-agents.js +290 -0
- package/scripts/test/NEW_STABILITY_TEST_GUIDE.md +13 -8
- package/scripts/test/quick-multilingual-demo.js +2 -2
- package/scripts/test-cleanup-performance.sh +416 -0
- package/scripts/test-runner.cjs +154 -0
- package/scripts/validate-agent-hooks.js +506 -0
- package/scripts/validation/README.md +33 -0
- package/scripts/validation/acl-security-validation.cjs +214 -0
- package/scripts/validation/acl-security-validation.js +402 -0
- package/scripts/validation/byzantine-verification.js +407 -0
- package/scripts/validation/final-phase-2-consensus.cjs +219 -0
- package/scripts/validation/final-security-validation.js +791 -0
- package/scripts/validation/final-wasm-validation.cjs +840 -0
- package/scripts/validation/integration-test-analysis.js +105 -0
- package/scripts/validation/phase-0-comprehensive-validation.js +474 -0
- package/scripts/validation/phase-0-consensus-report.js +139 -0
- package/scripts/validation/phase-0-final-report.js +112 -0
- package/scripts/validation/phase-0-redis-consensus-report.js +129 -0
- package/scripts/validation/phase-0-validation-improved.js +490 -0
- package/scripts/validation/phase-0-validation-test.js +65 -0
- package/scripts/validation/phase-1-consensus-report.cjs +342 -0
- package/scripts/validation/phase-1-consensus-validation.cjs +551 -0
- package/scripts/validation/phase-1-consensus-validation.js +551 -0
- package/scripts/validation/phase-2-consensus-report.cjs +186 -0
- package/scripts/validation/phase-2-validation.cjs +171 -0
- package/scripts/validation/phase-2-validation.js +171 -0
- package/scripts/validation/phase-4-consensus-report.js +181 -0
- package/scripts/validation/phase-4-final-validation.js +351 -0
- package/scripts/validation/phase-5-consensus-report.cjs +113 -0
- package/scripts/validation/phase-5-consensus-report.js +113 -0
- package/scripts/validation/security-analysis.js +49 -0
- package/scripts/validation/security-validation.js +492 -0
- package/scripts/validation/simple-security-validation.js +464 -0
- package/scripts/verify-installation.js +44 -14
- package/src/cli/simple-commands/init/templates/CLAUDE-backup-pre-enterprise-loop.md +735 -0
- package/src/cli/simple-commands/init/templates/CLAUDE.md +176 -326
- package/src/observability/blocking-coordination-metrics.js +161 -0
- package/src/observability/prometheus-metrics.d.ts +21 -0
- package/src/observability/prometheus-metrics.js +280 -0
- package/wiki/tutorials/beginner/04-quality-testing.md +3 -3
- package/.claude/agents/analyst.md +0 -300
- package/.claude/agents/architect.md +0 -558
- package/.claude/agents/base-template-generator.md +0 -65
- package/.claude/agents/coder.md +0 -181
- package/.claude/agents/planner.md +0 -135
- package/.claude/agents/researcher.md +0 -185
- package/.claude/agents/reviewer.md +0 -293
- package/.claude/agents/task-coordinator.md +0 -126
- package/.claude/agents/tester.md +0 -664
- package/MCP_DEPRECATION_COMPLETE.md +0 -375
- package/V2.0.0_READY_FOR_PUBLICATION.md +0 -417
- package/V2_RELEASE_SUMMARY.md +0 -568
- package/docs/DEPLOYMENT.md +0 -523
- package/docs/TROUBLESHOOTING.md +0 -1388
- package/docs/agent-token-analysis-results.json +0 -1329
- package/docs/architecture/agent-lifecycle-implementation-plan.md +0 -1428
- package/templates/custom-agent/package.json +0 -26
- package/templates/event-bus/package.json +0 -28
- package/templates/fleet-manager/package.json +0 -28
- /package/.claude/{agents → agents-ignore}/benchmarking-tests/test-agent-code-heavy.md +0 -0
- /package/.claude/{agents → agents-ignore}/benchmarking-tests/test-agent-metadata.md +0 -0
- /package/.claude/{agents → agents-ignore}/benchmarking-tests/test-agent-minimal.md +0 -0
- /package/.claude/{agents/coordinator.md → agents-ignore/coordinator-backup.md} +0 -0
- /package/.claude/{agents → agents-ignore}/data/ml/data-ml-model.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/code-review-swarm.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/github-modes.md +0 -0
- /package/.claude/{agents/templates → agents-ignore/github}/github-pr-manager.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/github-specialist.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/issue-tracker.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/multi-repo-swarm.md +0 -0
- /package/.claude/{agents/devops/ci-cd → agents-ignore/github}/ops-cicd-github.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/pr-manager.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/project-board-sync.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/release-manager.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/release-swarm.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/repo-architect.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/swarm-issue.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/swarm-pr.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/sync-coordinator.md +0 -0
- /package/.claude/{agents → agents-ignore}/github/workflow-automation.md +0 -0
- /package/.claude/{agents → agents-ignore}/neural/neural-pattern-agent.md +0 -0
- /package/.claude/{agents → agents-ignore}/neural/safla-neural.md +0 -0
- /package/.claude/{agents → agents-ignore}/optimization/benchmark-suite.md +0 -0
- /package/.claude/{agents → agents-ignore}/optimization/load-balancer.md +0 -0
- /package/.claude/{agents → agents-ignore}/optimization/perf-analyzer.md +0 -0
- /package/.claude/{agents → agents-ignore}/optimization/performance-monitor.md +0 -0
- /package/.claude/{agents → agents-ignore}/optimization/resource-allocator.md +0 -0
- /package/.claude/{agents → agents-ignore}/optimization/topology-optimizer.md +0 -0
- /package/.claude/{agents → agents-ignore}/sublinear/consciousness-evolution-agent.md +0 -0
- /package/.claude/{agents → agents-ignore}/sublinear/matrix-solver-agent.md +0 -0
- /package/.claude/{agents → agents-ignore}/sublinear/nanosecond-scheduler-agent.md +0 -0
- /package/.claude/{agents → agents-ignore}/sublinear/pagerank-agent.md +0 -0
- /package/.claude/{agents → agents-ignore}/sublinear/phi-calculator-agent.md +0 -0
- /package/.claude/{agents → agents-ignore}/sublinear/psycho-symbolic-agent.md +0 -0
- /package/.claude/{agents → agents-ignore}/sublinear/sublinear.md +0 -0
- /package/.claude/{agents → agents-ignore}/sublinear/temporal-advantage-agent.md +0 -0
- /package/.claude/{agents/architecture → agents-ignore}/system-design/arch-system-design.md +0 -0
- /package/.claude/{agents → agents-ignore}/templates/automation-smart-agent.md +0 -0
- /package/.claude/{agents → agents-ignore}/templates/coordinator-swarm-init.md +0 -0
- /package/.claude/{agents → agents-ignore}/templates/implementer-sparc-coder.md +0 -0
- /package/.claude/{agents → agents-ignore}/templates/memory-coordinator.md +0 -0
- /package/.claude/{agents → agents-ignore}/templates/migration-plan.md +0 -0
- /package/.claude/{agents → agents-ignore}/templates/orchestrator-task.md +0 -0
- /package/.claude/{agents → agents-ignore}/templates/performance-analyzer.md +0 -0
- /package/.claude/{agents → agents-ignore}/templates/sparc-coordinator.md +0 -0
- /package/{.claude/agents/specialized → .claude-flow-novice/.claude/agents/agent-principles}/CODER_AGENT_GUIDELINES.md +0 -0
- /package/docs/{API.md → api/API.md} +0 -0
- /package/docs/{CONFIGURATION.md → api/CONFIGURATION.md} +0 -0
- /package/docs/{PROVIDER_ROUTING_CONFIGURATION.md → api/PROVIDER_ROUTING_CONFIGURATION.md} +0 -0
- /package/docs/{PROVIDER_ROUTING_VERIFICATION.md → api/PROVIDER_ROUTING_VERIFICATION.md} +0 -0
- /package/docs/{ROUTING_FLOW_DIAGRAM.md → api/ROUTING_FLOW_DIAGRAM.md} +0 -0
- /package/{AGENT_PERFORMANCE_GUIDELINES.md → docs/architecture/AGENT_PERFORMANCE_GUIDELINES.md} +0 -0
- /package/docs/{EVENTEMITTER_CLEANUP_PATTERN.md → architecture/EVENTEMITTER_CLEANUP_PATTERN.md} +0 -0
- /package/docs/{REDIS_COORDINATION_SYSTEM.md → architecture/REDIS_COORDINATION_SYSTEM.md} +0 -0
- /package/docs/{SYSTEM_ARCHITECTURE.md → architecture/SYSTEM_ARCHITECTURE.md} +0 -0
- /package/docs/{consensus → architecture/consensus}/QUORUM_VERIFICATION_GUIDE.md +0 -0
- /package/docs/{consensus → architecture/consensus}/README.md +0 -0
- /package/docs/{consensus → architecture/consensus}/consensus-verification-1758747665635.json +0 -0
- /package/docs/{agents → archive/2025-10-10-architecture/agent-subdirectory}/MIGRATION_SUMMARY.md +0 -0
- /package/docs/{agents → archive/2025-10-10-architecture/agent-subdirectory}/README.md +0 -0
- /package/docs/{agent-booster-architecture.md → archive/2025-10-10-architecture/agent-subdirectory/agent-booster-architecture.md} +0 -0
- /package/docs/{agent-prompt-guidelines.md → archive/2025-10-10-architecture/agent-subdirectory/agent-prompt-guidelines.md} +0 -0
- /package/docs/{agent-token-usage-analysis-report.md → archive/2025-10-10-architecture/agent-subdirectory/agent-token-usage-analysis-report.md} +0 -0
- /package/docs/{agents → archive/2025-10-10-architecture/agent-subdirectory}/consensus-README.md +0 -0
- /package/docs/{agents → archive/2025-10-10-architecture/agent-subdirectory}/dependency-tracking-examples.md +0 -0
- /package/docs/{agents → archive/2025-10-10-architecture/agent-subdirectory}/optimization-README.md +0 -0
- /package/docs/{agents → archive/2025-10-10-architecture/agent-subdirectory}/swarm-README.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/CONSENSUS-COMPARISON.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/ROUND-5-EXECUTIVE-SUMMARY.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/consolidated-consensus-report.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-consensus-round-2.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-3-consensus-summary.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-3-validator-1.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-3-validator-2.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-3-validator-3.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-3-validator-4.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-4-consensus-summary.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-4-validator-1.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-4-validator-2.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-4-validator-3.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-4-validator-4.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-round-5-final-consensus.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/fullstack-swarm-consensus-report.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/post-edit-consensus-round-2.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/raft-implementation-summary.md +0 -0
- /package/docs/{consensus → archive/2025-10-10-architecture/consensus-rounds}/verification-summary.md +0 -0
- /package/docs/{comprehensive-mcp-solution-architecture.md → archive/2025-10-10-architecture/deprecated-implementations/comprehensive-mcp-solution-architecture.md} +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture}/experimental/ExperimentalFeaturesArchitecture.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/frontend-specific}/frontend-agent-ecosystem-integration.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/frontend-specific}/frontend-agent-technical-decisions.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/frontend-specific}/frontend-backend-coordination-interfaces.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/frontend-specific}/react-frontend-agent-specification.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/github-specific}/github-agent-consolidation-architecture.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/github-specific}/github-architecture-diagrams.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/implementation-guides}/agent-lifecycle-implementation-guide.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/implementation-guides}/implementation-guide.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/implementation-guides}/implementation-specifications.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/implementation-guides}/integration-guide.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/implementation-guides}/performance-optimization-guide.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/old-summaries}/architecture-summary-report.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/old-summaries}/fullstack-swarm-implementation-summary.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/old-summaries}/ultra-fast-communication-summary.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/agent-discovery-registration-system.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/agent-lifecycle-management-architecture.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/architectural-decisions.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/architecture-decision-records.md +0 -0
- /package/docs/{claude-soul-implementation.md → archive/2025-10-10-architecture/other-designs/claude-soul-implementation.md} +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/file-based-cross-team-communication.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/full-stack-swarm-team-specification.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/fullstack-communication-integration.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/stage3-unified-system-architecture.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/ultra-fast-communication-bus-design.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/other-designs}/zero-latency-communication-architecture.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/dynamic-agent-spawning-architecture.md +0 -0
- /package/docs/{fleet-manager-design.md → archive/2025-10-10-architecture/specific-feature-specs/fleet-manager-design.md} +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/fleet-manager-npm-architecture.md +0 -0
- /package/docs/{help-coordinator-implementation.md → archive/2025-10-10-architecture/specific-feature-specs/help-coordinator-implementation.md} +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/high-performance-memory-store.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/intelligent-configuration-system.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/message-serialization-compression-strategy.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/priority-queue-dead-letter-design.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/swarm-message-router-extension-design.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/swarm-router-implementation-spec.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/user-preference-storage-design.md +0 -0
- /package/docs/{architecture → archive/2025-10-10-architecture/specific-feature-specs}/websocket-connection-scaling-design.md +0 -0
- /package/docs/{swarm-coordination-test-results.md → archive/2025-10-10-architecture/test-results/swarm-coordination-test-results.md} +0 -0
- /package/docs/{development → archive/2025-10-10-development}/COMPREHENSIVE_WORKFLOW_SYSTEM.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/DEVELOPMENT_WORKFLOW.md +0 -0
- /package/docs/{EXAMPLES.md → archive/2025-10-10-development/EXAMPLES.md} +0 -0
- /package/docs/{development → archive/2025-10-10-development}/SPARC.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/agent-scope-creep-prevention-guide.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/cargo-build-validator-summary.md +0 -0
- /package/docs/{development → archive/2025-10-10-development/cli-consolidation}/command-consolidation-technical-spec.md +0 -0
- /package/docs/{development → archive/2025-10-10-development/cli-consolidation}/consolidated-cli-implementation.md +0 -0
- /package/docs/{development → archive/2025-10-10-development/cli-consolidation}/consolidated-command-design.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/experimental-features-improvement-plan.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/feature-simplification-strategy.md +0 -0
- /package/docs/{fixes → archive/2025-10-10-development/fixes}/fullstack-swarm-fixes-round-1.md +0 -0
- /package/docs/{fixes → archive/2025-10-10-development/fixes}/fullstack-swarm-fixes-round-3.md +0 -0
- /package/docs/{fixes → archive/2025-10-10-development/fixes}/fullstack-swarm-fixes-round-4.md +0 -0
- /package/docs/{fixes → archive/2025-10-10-development/fixes}/fullstack-swarm-fixes-round-5.md +0 -0
- /package/docs/{fixes → archive/2025-10-10-development/fixes}/round-5-quick-reference.md +0 -0
- /package/docs/{fixes → archive/2025-10-10-development/fixes}/round-5-summary.md +0 -0
- /package/docs/{fixes → archive/2025-10-10-development/fixes}/round-5-visual-summary.md +0 -0
- /package/docs/{implementation → archive/2025-10-10-development/implementation}/configuration-system-specs.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/npm-packaging-solution.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/pair-optimization.md +0 -0
- /package/docs/{phase11-cli-integration-complete.md → archive/2025-10-10-development/phase-summaries/phase11-cli-integration-complete.md} +0 -0
- /package/docs/{phase4-deployment-summary.md → archive/2025-10-10-development/phase-summaries/phase4-deployment-summary.md} +0 -0
- /package/docs/{development → archive/2025-10-10-development}/rust-framework-detection.md +0 -0
- /package/docs/{SDK-INTEGRATION-TEST-SUMMARY.md → archive/2025-10-10-development/sdk-integration/SDK-INTEGRATION-TEST-SUMMARY.md} +0 -0
- /package/docs/{SDK-TESTING.md → archive/2025-10-10-development/sdk-integration/SDK-TESTING.md} +0 -0
- /package/docs/{claude-agent-sdk-integration-strategy.md → archive/2025-10-10-development/sdk-integration/claude-agent-sdk-integration-strategy.md} +0 -0
- /package/docs/{sdk-integration-phase1.md → archive/2025-10-10-development/sdk-integration/sdk-integration-phase1.md} +0 -0
- /package/docs/{sdk-migration-guide.md → archive/2025-10-10-development/sdk-integration/sdk-migration-guide.md} +0 -0
- /package/docs/{sdk-phase1-summary.md → archive/2025-10-10-development/sdk-integration/sdk-phase1-summary.md} +0 -0
- /package/docs/{swarm-fullstack → archive/2025-10-10-development/swarm-fullstack}/IMPLEMENTATION-SUMMARY.md +0 -0
- /package/docs/{swarm-fullstack → archive/2025-10-10-development/swarm-fullstack}/frontend-testing-system.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/technical-implementation-guide.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/token-tracking-guide.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/token-tracking-status.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/troubleshooting.md +0 -0
- /package/docs/{development → archive/2025-10-10-development}/typescript-distribution-solution.md +0 -0
- /package/docs/{personalization → archive/2025-10-10-guides/personalization}/cli-integration-guide.md +0 -0
- /package/docs/{phase4-ux → archive/2025-10-10-guides/phase4-ux}/error-handling-ux-guide.md +0 -0
- /package/docs/{phase4-ux → archive/2025-10-10-guides/phase4-ux}/rollout-monitoring-dashboard.md +0 -0
- /package/docs/{phase4-ux → archive/2025-10-10-guides/phase4-ux}/user-experience-validation-framework.md +0 -0
- /package/docs/{phase4-ux → archive/2025-10-10-guides/phase4-ux}/user-onboarding-experience.md +0 -0
- /package/docs/{NOVICE_USER_GUIDE.md → archive/2025-10-10-guides/setup-guides/NOVICE_USER_GUIDE.md} +0 -0
- /package/docs/{QUICK_START.md → archive/2025-10-10-guides/setup-guides/QUICK_START.md} +0 -0
- /package/docs/{SETUP_WIZARD.md → archive/2025-10-10-guides/setup-guides/SETUP_WIZARD.md} +0 -0
- /package/docs/{ZAIR_SETUP_CHECKLIST.md → archive/2025-10-10-guides/setup-guides/ZAIR_SETUP_CHECKLIST.md} +0 -0
- /package/docs/{user → archive/2025-10-10-guides/user-guides}/PREFERENCE_SYSTEM_GUIDE.md +0 -0
- /package/docs/{user → archive/2025-10-10-guides/user-guides}/USER_GUIDE.md +0 -0
- /package/docs/{user → archive/2025-10-10-guides/user-guides}/enterprise-stakeholder-guide.md +0 -0
- /package/docs/{user → archive/2025-10-10-guides/user-guides}/novice-user-guide.md +0 -0
- /package/docs/{user → archive/2025-10-10-guides/user-guides}/tutorial.md +0 -0
- /package/docs/{user → archive/2025-10-10-guides/user-guides}/ux-assessment-pain-points.md +0 -0
- /package/docs/{ux-design/mockups → archive/2025-10-10-guides/ux-design}/configuration-ui-mockups.md +0 -0
- /package/docs/{ux-design/wizards → archive/2025-10-10-guides/ux-design}/configuration-wizard-flows.md +0 -0
- /package/docs/{ux-design/ui-patterns → archive/2025-10-10-guides/ux-design}/progressive-disclosure-patterns.md +0 -0
- /package/docs/{ux-design → archive/2025-10-10-guides/ux-design}/usability-testing-plan.md +0 -0
- /package/docs/{ux-design/user-journeys → archive/2025-10-10-guides/ux-design}/user-personas-analysis.md +0 -0
- /package/docs/{ux-design/accessibility → archive/2025-10-10-guides/ux-design}/wcag-compliance-guidelines.md +0 -0
- /package/docs/{HOOK-COMPARISON.md → archive/2025-10-10-integration/HOOK-COMPARISON.md} +0 -0
- /package/docs/{POST-EDIT-PIPELINE-AGENT-INFO.md → archive/2025-10-10-integration/POST-EDIT-PIPELINE-AGENT-INFO.md} +0 -0
- /package/docs/{POST-EDIT-PIPELINE-MERGED.md → archive/2025-10-10-integration/POST-EDIT-PIPELINE-MERGED.md} +0 -0
- /package/docs/{POST-EDIT-PIPELINE-UNIFIED.md → archive/2025-10-10-integration/POST-EDIT-PIPELINE-UNIFIED.md} +0 -0
- /package/docs/{automation → archive/2025-10-10-integration/automation}/swarm-test-pipeline-strategy.md +0 -0
- /package/docs/{integration → archive/2025-10-10-integration/mcp-compatibility}/issue-772-implementation-plan.md +0 -0
- /package/docs/{mcp-backwards-compatibility.md → archive/2025-10-10-integration/mcp-compatibility/mcp-backwards-compatibility.md} +0 -0
- /package/docs/{mcp-novice-simplification.md → archive/2025-10-10-integration/mcp-compatibility/mcp-novice-simplification.md} +0 -0
- /package/docs/{slash-commands → archive/2025-10-10-integration/slash-commands}/cfn-claude-sync-usage.md +0 -0
- /package/docs/{slash-commands → archive/2025-10-10-integration/slash-commands}/cfn-loop-quick-reference.md +0 -0
- /package/docs/{slash-commands → archive/2025-10-10-integration/slash-commands}/cfn-loop-usage.md +0 -0
- /package/docs/{final-slash-commands-setup.md → archive/2025-10-10-integration/slash-commands/final-slash-commands-setup.md} +0 -0
- /package/docs/{commands → archive/2025-10-10-integration/slash-commands}/fullstack.md +0 -0
- /package/docs/{slash-commands-complete-status.md → archive/2025-10-10-integration/slash-commands/slash-commands-complete-status.md} +0 -0
- /package/docs/{slash-commands-status-report.md → archive/2025-10-10-integration/slash-commands/slash-commands-status-report.md} +0 -0
- /package/docs/{workflows → archive/2025-10-10-integration/workflows}/IMPLEMENTATION_SUMMARY.md +0 -0
- /package/docs/{workflows → archive/2025-10-10-integration/workflows}/README.md +0 -0
- /package/docs/{workflows → archive/2025-10-10-integration/workflows}/iterative-build-test-workflow.md +0 -0
- /package/docs/{DOCUMENTATION_AUTO_UPDATER_CHANGELOG.md → archive/2025-10-10-migration/deprecation-notices/DOCUMENTATION_AUTO_UPDATER_CHANGELOG.md} +0 -0
- /package/{MCP_DEPRECATION_NOTICE.md → docs/archive/2025-10-10-migration/deprecation-notices/MCP_DEPRECATION_NOTICE.md} +0 -0
- /package/docs/{migration → archive/2025-10-10-migration/deprecation-notices}/README.md +0 -0
- /package/docs/{deprecation-report.md → archive/2025-10-10-migration/deprecation-notices/deprecation-report.md} +0 -0
- /package/docs/{migration → archive/2025-10-10-migration/v2-migration}/COMPREHENSIVE_MIGRATION_GUIDE.md +0 -0
- /package/docs/{V1_TO_V2_MIGRATION.md → archive/2025-10-10-migration/v2-migration/V1_TO_V2_MIGRATION.md} +0 -0
- /package/{V2_MIGRATION_GUIDE.md → docs/archive/2025-10-10-migration/v2-migration/V2_MIGRATION_GUIDE.md} +0 -0
- /package/docs/{migration → archive/2025-10-10-migration/v2-migration}/migration-assessment-toolkit.md +0 -0
- /package/docs/{npm-package-updates.md → archive/2025-10-10-migration/v2-migration/npm-package-updates.md} +0 -0
- /package/docs/{migration → archive/2025-10-10-migration/v2-migration}/proven-migration-case-studies.md +0 -0
- /package/docs/{APM_INTEGRATION_GUIDE.md → archive/2025-10-10-operations/APM_INTEGRATION_GUIDE.md} +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/DEPLOYMENT.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/ENABLE_AUTHENTICATION.md +0 -0
- /package/docs/{HOW_METRICS_WORK.md → archive/2025-10-10-operations/HOW_METRICS_WORK.md} +0 -0
- /package/docs/{METRICS_PLACEMENT_STRATEGY.md → archive/2025-10-10-operations/METRICS_PLACEMENT_STRATEGY.md} +0 -0
- /package/docs/{PRODUCTION_OPERATIONS.md → archive/2025-10-10-operations/PRODUCTION_OPERATIONS.md} +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/RESOURCE_MANAGEMENT_IMPLEMENTATION_PLAN.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/RESOURCE_MANAGEMENT_TECHNICAL_SPECS.md +0 -0
- /package/docs/{SESSION_CLEANUP_SYSTEM.md → archive/2025-10-10-operations/SESSION_CLEANUP_SYSTEM.md} +0 -0
- /package/docs/{V2_TRANSPARENCY_SYSTEM.md → archive/2025-10-10-operations/V2_TRANSPARENCY_SYSTEM.md} +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/analytics-system.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/benchmarks}/benchmark-claude-flow-conflict-analysis.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/benchmarks}/benchmark-cleanup-analysis.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/benchmarks}/build-artifacts-analysis.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/byzantine-consensus}/FINAL_BYZANTINE_CONSENSUS_VERIFICATION_REPORT.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/byzantine-consensus}/byzantine-consensus-verification-report-phase2.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/byzantine-consensus}/byzantine-consensus-verification-report-phase4.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/chrome-mcp-research-report.md +0 -0
- /package/docs/{ci-cd → archive/2025-10-10-operations/ci-cd}/README.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/cli-command-consolidation-analysis.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/DEPLOYMENT_GUIDE.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/DEPLOYMENT_STRATEGIES.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/DISASTER_RECOVERY.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/DOCKER_SECURITY.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/HELM_CHARTS.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/INFRASTRUCTURE_AS_CODE.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/MONITORING_OBSERVABILITY.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/PERFORMANCE_OPTIMIZATION.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/README.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/pm2-setup.md +0 -0
- /package/docs/{deployment → archive/2025-10-10-operations/deployment}/production-deployment-guide.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/deployment-checklist.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/deployment-report.md +0 -0
- /package/docs/{metrics-counter-usage.md → archive/2025-10-10-operations/metrics-counter-usage.md} +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/migration-strategy.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/performance-analysis}/agent-analysis-report.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/performance-analysis}/agent-persistence-performance-analysis.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/performance-analysis}/performance-analysis-report.md +0 -0
- /package/docs/{runbooks → archive/2025-10-10-operations/runbooks}/DATABASE_PERFORMANCE_RUNBOOK.md +0 -0
- /package/docs/{runbooks → archive/2025-10-10-operations/runbooks}/EMERGENCY_RESPONSE_PROCEDURES.md +0 -0
- /package/docs/{runbooks → archive/2025-10-10-operations/runbooks}/SERVICE_OUTAGE_RUNBOOK.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/shadcn-mcp-swarm-research-report.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/training-pipeline-demo.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations}/training-pipeline-real-only.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/COMPREHENSIVE_QA_VALIDATION_REPORT.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/PRODUCTION_VALIDATION_REPORT.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/WIKI_VALIDATION_REPORT.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/checkpoint-1-3-validation-report.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/checkpoint-1-4-validation-summary.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/cli-validation-report.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/command-consolidation-usability-validation.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/configuration-system-validation-report.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/experimental-features-validation-report.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/final-validation-summary.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/unified-config-validation-report.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/validation-executive-summary.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/validator-scope-overreach-analysis.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/verification-integration.md +0 -0
- /package/docs/{operations → archive/2025-10-10-operations/validation-reports}/verification-validation.md +0 -0
- /package/docs/{performance → archive/2025-10-10-performance}/COMPREHENSIVE_SQLITE_ANALYSIS.md +0 -0
- /package/docs/{LRU_GARBAGE_COLLECTION.md → archive/2025-10-10-performance/LRU_GARBAGE_COLLECTION.md} +0 -0
- /package/docs/{OPTIMIZATION_SAFETY_REPORT.md → archive/2025-10-10-performance/OPTIMIZATION_SAFETY_REPORT.md} +0 -0
- /package/docs/{performance → archive/2025-10-10-performance}/Phase3-Remediation-Report.md +0 -0
- /package/docs/{benchmark-realistic-code-generation.md → archive/2025-10-10-performance/benchmarks/benchmark-realistic-code-generation.md} +0 -0
- /package/docs/{benchmark-rust-known-issues.md → archive/2025-10-10-performance/benchmarks/benchmark-rust-known-issues.md} +0 -0
- /package/docs/{benchmark-rust-support-summary.md → archive/2025-10-10-performance/benchmarks/benchmark-rust-support-summary.md} +0 -0
- /package/docs/{optimization → archive/2025-10-10-performance/optimization}/README.md +0 -0
- /package/docs/{optimization → archive/2025-10-10-performance/optimization}/communication-improvements.md +0 -0
- /package/docs/{performance → archive/2025-10-10-performance/optimization}/sqlite-performance-analysis.md +0 -0
- /package/docs/{security → archive/2025-10-10-security}/DEPLOYMENT_CHECKLIST.md +0 -0
- /package/docs/{security → archive/2025-10-10-security}/GIT_SECRETS_SETUP.md +0 -0
- /package/docs/{operations/SECURITY_AUDIT_REPORT.md → archive/2025-10-10-security/PACKAGE_SECURITY_AUDIT.md} +0 -0
- /package/docs/{security → archive/2025-10-10-security}/SECRET-DETECTION.md +0 -0
- /package/docs/{SECURITY_AUDIT_REPORT.md → archive/2025-10-10-security/SECRET_DETECTION_AUDIT.md} +0 -0
- /package/docs/{security → archive/2025-10-10-security/authentication}/JWT_AUTHENTICATION.md +0 -0
- /package/docs/{security → archive/2025-10-10-security/authentication}/MIGRATION_BASE64_TO_JWT.md +0 -0
- /package/docs/{security → archive/2025-10-10-security/authentication}/REDIS_AUTHENTICATION.md +0 -0
- /package/docs/{SECURITY_AUTH.md → archive/2025-10-10-security/authentication/SECURITY_AUTH.md} +0 -0
- /package/docs/{certification → archive/2025-10-10-security/certification}/FINAL-PRODUCTION-CERTIFICATION.md +0 -0
- /package/docs/{certification → archive/2025-10-10-security/certification}/README.md +0 -0
- /package/docs/{certification → archive/2025-10-10-security/certification}/fullstack-swarm-production-cert.md +0 -0
- /package/docs/{certification → archive/2025-10-10-security/certification}/post-edit-pipeline-production-cert.md +0 -0
- /package/docs/{security → archive/2025-10-10-security}/phase5-security-implementation-summary.md +0 -0
- /package/docs/{security → archive/2025-10-10-security}/sec-024-lamport-clock-implementation.md +0 -0
- /package/docs/{security → archive/2025-10-10-security/vulnerabilities}/CRYPTO_CIPHER_FIX_REPORT.md +0 -0
- /package/docs/{security → archive/2025-10-10-security/vulnerabilities}/CRYPTO_VULNERABILITY_SUMMARY.md +0 -0
- /package/docs/{security → archive/2025-10-10-security/vulnerabilities}/cve-2025-005-006-implementation.md +0 -0
- /package/docs/{security → archive/2025-10-10-security/vulnerabilities}/rbac-test-bypass-fix.md +0 -0
- /package/docs/{testing → archive/2025-10-10-testing}/README.md +0 -0
- /package/docs/{testing → archive/2025-10-10-testing}/consensus-decision-matrix.md +0 -0
- /package/docs/{testing → archive/2025-10-10-testing}/playwright-mcp-integration-guide.md +0 -0
- /package/docs/{CROSS_PLATFORM_TEST_RESULTS.md → archive/2025-10-10-testing/test-results/CROSS_PLATFORM_TEST_RESULTS.md} +0 -0
- /package/docs/{V2_MULTI_LEVEL_TEST_RESULTS.md → archive/2025-10-10-testing/test-results/V2_MULTI_LEVEL_TEST_RESULTS.md} +0 -0
- /package/docs/{backend-testing-system.md → archive/2025-10-10-testing/test-results/backend-testing-system.md} +0 -0
- /package/docs/{benchmark-test-report.md → archive/2025-10-10-testing/test-results/benchmark-test-report.md} +0 -0
- /package/docs/{testing → archive/2025-10-10-testing/test-results}/comprehensive-test-results.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/PRODUCTION-CERTIFICATION-SUMMARY.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/byzantine-consensus-coordination-report.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/byzantine-consensus-summary.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/completion-validation-verification-report.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/fullstack-integration-report.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/phase2-byzantine-consensus-verification-report.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/phase2-completion-consensus-report.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/stage5-consensus-report.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/stage6-final-certification.md +0 -0
- /package/docs/{validation → archive/2025-10-10-testing/validation}/stage7-production-certification.md +0 -0
- /package/docs/{ERROR_HANDLING_IMPLEMENTATION_SUMMARY.md → archive/ERROR_HANDLING_IMPLEMENTATION_SUMMARY.md} +0 -0
- /package/docs/{ERROR_MESSAGES_GUIDE.md → archive/ERROR_MESSAGES_GUIDE.md} +0 -0
- /package/docs/{HTTP_POLLING_FALLBACK.md → archive/HTTP_POLLING_FALLBACK.md.backup-1760135090706} +0 -0
- /package/docs/{phase2-implementation-summary.md → archive/cfn-loop/completed-phases/phase2-implementation-summary.md} +0 -0
- /package/docs/{CFN_LOOP.md → archive/cfn-loop/deprecated-3-loop/CFN_LOOP.md} +0 -0
- /package/docs/{validation-loop-pattern.md → archive/cfn-loop/early-patterns/validation-loop-pattern.md} +0 -0
- /package/docs/{MCP_ENDPOINTS_REFERENCE.md → archive/deprecated-mcp/MCP_ENDPOINTS_REFERENCE.md} +0 -0
- /package/docs/{api → archive/deprecated-mcp}/MCP_TOOLS.md +0 -0
- /package/docs/{api → archive/deprecated-mcp}/mcp-swarm-integration-api.md +0 -0
- /package/docs/{API_AUTH.md → archive/phase3-auth-unimplemented/API_AUTH.md} +0 -0
- /package/docs/{AUTHENTICATION.md → archive/phase3-auth-unimplemented/AUTHENTICATION.md} +0 -0
- /package/docs/{AUTH_DOCUMENTATION_SUMMARY.md → archive/phase3-auth-unimplemented/AUTH_DOCUMENTATION_SUMMARY.md} +0 -0
- /package/docs/{AUTH_MIGRATION.md → archive/phase3-auth-unimplemented/AUTH_MIGRATION.md} +0 -0
- /package/docs/{phase5-booster-integration-summary.md → archive/phase5-booster-integration-summary.md} +0 -0
- /package/{CHANGELOG_V2.md → docs/archive/reference-historical/CHANGELOG_V2.md} +0 -0
- /package/docs/{INDEX.md → archive/reference-historical/INDEX.md} +0 -0
- /package/docs/{CFN_LOOP_PHASE_ORCHESTRATION.md → cfn-loop/CFN_LOOP_PHASE_ORCHESTRATION.md} +0 -0
- /package/docs/{CFN_LOOP_SCOPE_CONTROL.md → cfn-loop/CFN_LOOP_SCOPE_CONTROL.md} +0 -0
- /package/docs/{CFN_LOOP_SELF_LOOPING_ADDITIONS.md → cfn-loop/CFN_LOOP_SELF_LOOPING_ADDITIONS.md} +0 -0
- /package/docs/{SPRINT_ORCHESTRATION.md → cfn-loop/SPRINT_ORCHESTRATION.md} +0 -0
- /package/docs/{epic-iteration-limits-implementation.md → cfn-loop/epic-iteration-limits-implementation.md} +0 -0
- /package/docs/{phase-5-sprint-5.2-multi-level-control.md → cfn-loop/phase-5-sprint-5.2-multi-level-control.md} +0 -0
- /package/docs/{phase-orchestrator-sprint-enhancement-summary.md → cfn-loop/phase-orchestrator-sprint-enhancement-summary.md} +0 -0
- /package/docs/{phases → cfn-loop/phases}/PHASE_06_ARCHITECTURE_SUMMARY.md +0 -0
- /package/docs/{phases → cfn-loop/phases}/PHASE_06_COMPONENT_INTERFACES.md +0 -0
- /package/docs/{phases → cfn-loop/phases}/PHASE_06_INTEGRATION_STRATEGY.md +0 -0
- /package/docs/{phases → cfn-loop/phases}/PHASE_06_MESH_COORDINATION_ARCHITECTURE.md +0 -0
- /package/docs/{phases → cfn-loop/phases}/PHASE_06_README.md +0 -0
- /package/docs/{phases → cfn-loop/phases}/PHASE_07_HELP_SYSTEM_ARCHITECTURE.md +0 -0
- /package/docs/{phases → cfn-loop/phases}/PHASE_0_SDK_FOUNDATION.md +0 -0
- /package/docs/{phases → cfn-loop/phases}/phase-05-architecture.md +0 -0
- /package/docs/{self-validating-loops-implementation.md → cfn-loop/self-validating-loops-implementation.md} +0 -0
- /package/{CHANGELOG.md → docs/reference/CHANGELOG.md} +0 -0
- /package/{NPM_PACKAGE_CONTENTS.md → docs/reference/NPM_PACKAGE_CONTENTS.md} +0 -0
- /package/{README-NPM.md → docs/reference/README-NPM.md} +0 -0
- /package/docs/{SITE_MAP.md → reference/SITE_MAP.md} +0 -0
- /package/docs/{research → reference/research}/AGENT_ACCESSIBILITY_GUIDE.md +0 -0
- /package/docs/{research → reference/research}/AGENT_PERMISSION_SYSTEM_ANALYSIS.md +0 -0
- /package/docs/{research → reference/research}/CLAUDE_AGENT_SDK_COMPREHENSIVE_ANALYSIS.md +0 -0
- /package/docs/{research → reference/research}/CLAUDE_AGENT_SDK_EXECUTIVE_SUMMARY.md +0 -0
- /package/docs/{research → reference/research}/CLEANUP_CRITERIA_QUICK_REFERENCE.md +0 -0
- /package/docs/{research → reference/research}/claude-session-cpu-behavior-analysis.md +0 -0
- /package/docs/{research → reference/research}/completion-validation-research.md +0 -0
- /package/docs/{templates → reference/templates}/PHASE_DOCUMENT_TEMPLATE.md +0 -0
- /package/docs/{templates → reference/templates}/PHASE_TEMPLATE_USAGE_GUIDE.md +0 -0
- /package/docs/{TEMPLATE_CUSTOMIZATION_GUIDE.md → reference/templates/TEMPLATE_CUSTOMIZATION_GUIDE.md} +0 -0
- /package/docs/{TEMPLATE_EXAMPLES_AND_BEST_PRACTICES.md → reference/templates/TEMPLATE_EXAMPLES_AND_BEST_PRACTICES.md} +0 -0
- /package/docs/{TEMPLATE_SYSTEM_DOCUMENTATION.md → reference/templates/TEMPLATE_SYSTEM_DOCUMENTATION.md} +0 -0
- /package/docs/{wiki → reference/wiki}/background-commands.md +0 -0
- /package/docs/{wiki → reference/wiki}/efficiency-patterns-and-anti-patterns.md +0 -0
- /package/docs/{wiki → reference/wiki}/monitoring-and-metrics-guide.md +0 -0
- /package/docs/{wiki → reference/wiki}/performance-benchmarking-tools.md +0 -0
- /package/docs/{wiki → reference/wiki}/performance-optimization-strategies.md +0 -0
- /package/docs/{wiki → reference/wiki}/performance-testing-framework.md +0 -0
- /package/docs/{wiki → reference/wiki}/resource-optimization-techniques.md +0 -0
- /package/docs/{wiki → reference/wiki}/scalability-guidelines.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/README.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/authentication-authorization-strategies.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/compliance-automation-workflows.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/compliance-frameworks-integration.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/enterprise-security-patterns.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/incident-response-guide.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/secrets-management-guide.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/secure-coding-patterns.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/security-best-practices.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/security-first-development-workflows.md +0 -0
- /package/docs/{wiki → reference/wiki}/security/security-testing-framework.md +0 -0
- /package/docs/{wiki → reference/wiki}/session-persistence.md +0 -0
- /package/docs/{wiki → reference/wiki}/stream-chain-command.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/README.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/cli-troubleshooting.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/configuration-troubleshooting.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/debug-mode.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/error-analysis.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/linux-troubleshooting.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/log-analysis.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/macos-troubleshooting.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/mcp-troubleshooting.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/performance-troubleshooting.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/quick-reference.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting/windows-troubleshooting.md +0 -0
- /package/docs/{wiki → reference/wiki}/troubleshooting-slow-workflows.md +0 -0
- /package/docs/{CROSS_PLATFORM_VALIDATION_CONFIDENCE.json → testing/CROSS_PLATFORM_VALIDATION_CONFIDENCE.json} +0 -0
- /package/docs/{validation → testing/validation}/byzantine-validation-report.json +0 -0
- /package/{templates → examples/templates}/README.md +0 -0
- /package/{templates → examples/templates}/basic-swarm/.claude/settings.json +0 -0
- /package/{templates/basic-swarm/CLAUDE.md → examples/templates/basic-swarm/CLAUDE.md.backup-1760135091193} +0 -0
- /package/{templates → examples/templates}/basic-swarm/coordination.md +0 -0
- /package/{templates → examples/templates}/basic-swarm/memory-bank.md +0 -0
- /package/{templates → examples/templates}/basic-swarm/package.json +0 -0
- /package/{templates → examples/templates}/custom-agent/.claude/settings.json +0 -0
- /package/{templates/custom-agent/CLAUDE.md → examples/templates/custom-agent/CLAUDE.md.backup-1760135091180} +0 -0
- /package/{templates → examples/templates}/event-bus/.claude/settings.json +0 -0
- /package/{templates → examples/templates}/event-bus/CLAUDE.md +0 -0
- /package/{templates → examples/templates}/fleet-manager/.claude/settings.json +0 -0
- /package/{templates/fleet-manager/CLAUDE.md → examples/templates/fleet-manager/CLAUDE.md.backup-1760135091167} +0 -0
- /package/{docs → scripts}/agent-token-analysis.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/utils/types.ts","../src/utils/helpers.ts","../src/core/logger.ts","../src/core/event-bus.ts","../src/swarm/types.ts","../src/memory/distributed-memory.ts","../src/agents/agent-manager.ts","../src/types/agent-types.ts","../src/agents/simple-agent.ts","../src/core/project-manager.ts","../src/index.ts","../node_modules/chalk/source/vendor/ansi-styles/index.d.ts","../node_modules/chalk/source/vendor/supports-color/index.d.ts","../node_modules/chalk/source/index.d.ts","../node_modules/@inquirer/core/dist/esm/lib/key.d.ts","../node_modules/@inquirer/core/dist/esm/lib/errors.d.ts","../node_modules/@inquirer/type/dist/esm/inquirer.d.ts","../node_modules/@inquirer/type/dist/esm/utils.d.ts","../node_modules/@inquirer/type/dist/esm/index.d.ts","../node_modules/@inquirer/core/dist/esm/lib/theme.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-prefix.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-state.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-effect.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-memo.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-ref.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-keypress.d.ts","../node_modules/@inquirer/core/dist/esm/lib/make-theme.d.ts","../node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.d.ts","../node_modules/@inquirer/core/dist/esm/lib/create-prompt.d.ts","../node_modules/@inquirer/core/dist/esm/lib/Separator.d.ts","../node_modules/@inquirer/core/dist/esm/index.d.ts","../node_modules/@inquirer/checkbox/dist/esm/index.d.ts","../node_modules/@inquirer/external-editor/dist/esm/errors/CreateFileError.d.ts","../node_modules/@inquirer/external-editor/dist/esm/errors/LaunchEditorError.d.ts","../node_modules/@inquirer/external-editor/dist/esm/errors/ReadFileError.d.ts","../node_modules/@inquirer/external-editor/dist/esm/errors/RemoveFileError.d.ts","../node_modules/@inquirer/external-editor/dist/esm/index.d.ts","../node_modules/@inquirer/editor/dist/esm/index.d.ts","../node_modules/@inquirer/confirm/dist/esm/index.d.ts","../node_modules/@inquirer/input/dist/esm/index.d.ts","../node_modules/@inquirer/number/dist/esm/index.d.ts","../node_modules/@inquirer/expand/dist/esm/index.d.ts","../node_modules/@inquirer/rawlist/dist/esm/index.d.ts","../node_modules/@inquirer/password/dist/esm/index.d.ts","../node_modules/@inquirer/search/dist/esm/index.d.ts","../node_modules/@inquirer/select/dist/esm/index.d.ts","../node_modules/@inquirer/prompts/dist/esm/index.d.ts","../node_modules/rxjs/dist/types/internal/Subscription.d.ts","../node_modules/rxjs/dist/types/internal/Subscriber.d.ts","../node_modules/rxjs/dist/types/internal/Operator.d.ts","../node_modules/rxjs/dist/types/internal/Observable.d.ts","../node_modules/rxjs/dist/types/internal/types.d.ts","../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts","../node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts","../node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/catchError.d.ts","../node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts","../node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts","../node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts","../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts","../node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts","../node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts","../node_modules/rxjs/dist/types/internal/operators/endWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts","../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../node_modules/rxjs/dist/types/internal/Subject.d.ts","../node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts","../node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts","../node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts","../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts","../node_modules/rxjs/dist/types/internal/Notification.d.ts","../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts","../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts","../node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts","../node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts","../node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts","../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/refCount.d.ts","../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts","../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts","../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts","../node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts","../node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts","../node_modules/rxjs/dist/types/internal/operators/startWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts","../node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts","../node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts","../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts","../node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts","../node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts","../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts","../node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts","../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../node_modules/rxjs/dist/types/internal/operators/toArray.d.ts","../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts","../node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts","../node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts","../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts","../node_modules/rxjs/dist/types/operators/index.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts","../node_modules/rxjs/dist/types/internal/Scheduler.d.ts","../node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts","../node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts","../node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts","../node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts","../node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts","../node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts","../node_modules/rxjs/dist/types/testing/index.d.ts","../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts","../node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts","../node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts","../node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts","../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../node_modules/rxjs/dist/types/internal/util/isObservable.d.ts","../node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts","../node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts","../node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts","../node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts","../node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts","../node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts","../node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts","../node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts","../node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts","../node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts","../node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts","../node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts","../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts","../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts","../node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts","../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts","../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../node_modules/rxjs/dist/types/internal/observable/throwError.d.ts","../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../node_modules/rxjs/dist/types/internal/config.d.ts","../node_modules/rxjs/dist/types/index.d.ts","../node_modules/inquirer/dist/esm/types.d.ts","../node_modules/inquirer/dist/esm/ui/prompt.d.ts","../node_modules/inquirer/dist/esm/index.d.ts","../node_modules/cli-table3/index.d.ts","../src/adapters/cliffy-node.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/minipass/dist/esm/index.d.ts","../node_modules/lru-cache/dist/esm/index.d.ts","../node_modules/path-scurry/dist/esm/index.d.ts","../node_modules/glob/node_modules/minimatch/dist/esm/ast.d.ts","../node_modules/glob/node_modules/minimatch/dist/esm/escape.d.ts","../node_modules/glob/node_modules/minimatch/dist/esm/unescape.d.ts","../node_modules/glob/node_modules/minimatch/dist/esm/index.d.ts","../node_modules/glob/dist/esm/pattern.d.ts","../node_modules/glob/dist/esm/processor.d.ts","../node_modules/glob/dist/esm/walker.d.ts","../node_modules/glob/dist/esm/ignore.d.ts","../node_modules/glob/dist/esm/glob.d.ts","../node_modules/glob/dist/esm/has-magic.d.ts","../node_modules/glob/dist/esm/index.d.ts","../node_modules/yaml/dist/parse/line-counter.d.ts","../node_modules/yaml/dist/errors.d.ts","../node_modules/yaml/dist/doc/applyReviver.d.ts","../node_modules/yaml/dist/log.d.ts","../node_modules/yaml/dist/nodes/toJS.d.ts","../node_modules/yaml/dist/nodes/Scalar.d.ts","../node_modules/yaml/dist/stringify/stringify.d.ts","../node_modules/yaml/dist/nodes/Collection.d.ts","../node_modules/yaml/dist/nodes/YAMLSeq.d.ts","../node_modules/yaml/dist/schema/types.d.ts","../node_modules/yaml/dist/schema/common/map.d.ts","../node_modules/yaml/dist/schema/common/seq.d.ts","../node_modules/yaml/dist/schema/common/string.d.ts","../node_modules/yaml/dist/stringify/foldFlowLines.d.ts","../node_modules/yaml/dist/stringify/stringifyNumber.d.ts","../node_modules/yaml/dist/stringify/stringifyString.d.ts","../node_modules/yaml/dist/util.d.ts","../node_modules/yaml/dist/nodes/YAMLMap.d.ts","../node_modules/yaml/dist/nodes/identity.d.ts","../node_modules/yaml/dist/schema/Schema.d.ts","../node_modules/yaml/dist/doc/createNode.d.ts","../node_modules/yaml/dist/nodes/addPairToJSMap.d.ts","../node_modules/yaml/dist/nodes/Pair.d.ts","../node_modules/yaml/dist/schema/tags.d.ts","../node_modules/yaml/dist/options.d.ts","../node_modules/yaml/dist/nodes/Node.d.ts","../node_modules/yaml/dist/parse/cst-scalar.d.ts","../node_modules/yaml/dist/parse/cst-stringify.d.ts","../node_modules/yaml/dist/parse/cst-visit.d.ts","../node_modules/yaml/dist/parse/cst.d.ts","../node_modules/yaml/dist/nodes/Alias.d.ts","../node_modules/yaml/dist/doc/Document.d.ts","../node_modules/yaml/dist/doc/directives.d.ts","../node_modules/yaml/dist/compose/composer.d.ts","../node_modules/yaml/dist/parse/lexer.d.ts","../node_modules/yaml/dist/parse/parser.d.ts","../node_modules/yaml/dist/public-api.d.ts","../node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts","../node_modules/yaml/dist/schema/yaml-1.1/set.d.ts","../node_modules/yaml/dist/visit.d.ts","../node_modules/yaml/dist/index.d.ts","../src/agents/agent-loader.ts","../src/agents/agent-registry.ts","../src/agents/agent-validator.ts","../src/agents/custom-test-agent.ts","../src/utils/errors.ts","../src/memory/backends/base.ts","../node_modules/better-sqlite3/lib/index.js","../src/memory/sqlite-wrapper.js","../src/memory/backends/sqlite.ts","../src/memory/backends/markdown.ts","../src/memory/cache.ts","../src/memory/indexer.ts","../src/memory/manager.ts","../src/types/agent-lifecycle-types.ts","../src/lifecycle/dependency-tracker.ts","../src/agents/lifecycle-manager.ts","../src/agents/hierarchical-coordinator.ts","../src/agents/mesh-coordinator.ts","../src/communication/ultra-fast-communication-bus.ts","../src/swarm/optimizations/connection-pool.ts","../node_modules/eventemitter3/index.d.ts","../node_modules/p-queue/dist/queue.d.ts","../node_modules/p-queue/dist/options.d.ts","../node_modules/p-queue/dist/priority-queue.d.ts","../node_modules/p-queue/dist/index.d.ts","../src/swarm/optimizations/async-file-manager.ts","../src/swarm/optimizations/ttl-map.ts","../src/swarm/optimizations/circular-buffer.ts","../src/swarm/optimizations/optimized-executor.ts","../src/agents/unified-ultra-fast-agent-manager.ts","../src/agents/stage3-integration-validator.ts","../src/agents/task-agent-integration.ts","../src/agents/frontend/index.ts","../src/agents/frontend/interaction-tester.ts","../src/agents/frontend/state-architect.ts","../src/agents/frontend/ui-designer.ts","../src/agents/github/agent-factory.ts","../src/agents/github/index.ts","../src/agents/github/compatibility/legacy-agent-mappings.ts","../src/agents/github/compatibility/legacy-agent-proxy.ts","../src/agents/github/core/github-collaboration-manager.ts","../src/agents/github/core/github-integration-manager.ts","../src/agents/github/core/github-release-coordinator.ts","../src/agents/github/types/index.ts","../src/agents/github/utils/error-handling.ts","../src/agents/github/utils/github-client.ts","../src/agents/github/utils/hook-integration.ts","../src/agents/github/utils/performance-optimizer.ts","../node_modules/nanoid/index.d.ts","../src/api/auth-service.ts","../src/api/claude-api-errors.ts","../node_modules/events/events.js","../src/config/config-manager.ts","../src/utils/type-guards.ts","../src/utils/error-handler.ts","../src/observability/metrics-storage.ts","../src/observability/telemetry.ts","../src/observability/metrics-counter.ts","../src/api/claude-client.ts","../src/api/claude-client-enhanced.ts","../src/api/database-service.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../src/coordination/scheduler.ts","../src/coordination/resources.ts","../src/coordination/messaging.ts","../src/coordination/work-stealing.ts","../src/coordination/dependency-graph.ts","../src/coordination/circuit-breaker.ts","../src/coordination/advanced-scheduler.ts","../src/coordination/conflict-resolution.ts","../src/coordination/metrics.ts","../src/coordination/manager.ts","../src/swarm/strategies/base.ts","../src/swarm/strategies/auto.ts","../src/utils/paths.ts","../src/swarm/json-output-aggregator.ts","../src/swarm/claude-flow-executor.ts","../src/swarm/coordinator.ts","../src/resources/resource-manager.ts","../src/api/swarm-api.ts","../src/automation/test-pipeline/E2ETestGenerator.ts","../src/automation/test-pipeline/PerformanceMonitor.ts","../src/automation/test-pipeline/PipelineValidator.ts","../src/automation/test-pipeline/RegressionTestManager.ts","../config/test-automation/swarm-test-pipeline.config.ts","../src/automation/test-pipeline/SwarmTestCoordinator.ts","../src/automation/test-pipeline/TestDataManager.ts","../src/automation/test-pipeline/TestReportingSystem.ts","../src/automation/test-pipeline/utils/chrome-mcp-integration.ts","../src/automation/test-pipeline/utils/swarm-coordinator.ts","../src/cfn-loop/feedback-injection-system.ts","../src/cfn-loop/feedback-memory-manager.ts","../src/cfn-loop/cfn-loop-integrator.ts","../src/memory/swarm-memory.ts","../src/coordination/confidence-score-system.ts","../src/coordination/iteration-tracker.js","../src/cfn-loop/circuit-breaker.ts","../src/cfn-loop/cfn-loop-orchestrator.ts","../src/cfn-loop/example-usage.ts","../src/utils/markdown-updater.ts","../src/utils/namespace-sanitizer.ts","../src/cfn-loop/sprint-orchestrator.ts","../src/utils/rate-limiter.ts","../src/cfn-loop/phase-orchestrator.ts","../src/cfn-loop/retry-todo-manager.ts","../src/cfn-loop/index.ts","../src/cfn-loop/phase-orchestrator-example.ts","../src/cfn-loop/scope-control.ts","../src/ci-cd/deployment-orchestrator.ts","../src/ci-cd/github-actions-templates.ts","../src/ci-cd/performance/PerformanceGate.ts","../node_modules/@types/jsonfile/index.d.ts","../node_modules/@types/jsonfile/utils.d.ts","../node_modules/@types/fs-extra/index.d.ts","../src/core/config.ts","../src/core/json-persistence.ts","../src/core/orchestrator-fixed.ts","../src/coordination/background-executor.ts","../src/coordination/swarm-monitor.ts","../src/coordination/swarm-coordinator.ts","../src/coordination/swarm-coordinator-factory.ts","../src/validators/swarm-init-validator.ts","../src/coordination/shared/core/agent-state.ts","../src/coordination/shared/types/sdk.ts","../src/coordination/shared/interfaces/ICoordinator.ts","../node_modules/limiter/dist/esm/TokenBucket.d.ts","../node_modules/limiter/dist/esm/RateLimiter.d.ts","../node_modules/limiter/dist/esm/index.d.ts","../src/coordination/shared/message.ts","../src/coordination/shared/security/payload-validator.ts","../src/coordination/shared/message-broker.ts","../node_modules/zod/v3/helpers/typeAliases.d.cts","../node_modules/zod/v3/helpers/util.d.cts","../node_modules/zod/v3/index.d.cts","../node_modules/zod/v3/ZodError.d.cts","../node_modules/zod/v3/locales/en.d.cts","../node_modules/zod/v3/errors.d.cts","../node_modules/zod/v3/helpers/parseUtil.d.cts","../node_modules/zod/v3/helpers/enumUtil.d.cts","../node_modules/zod/v3/helpers/errorUtil.d.cts","../node_modules/zod/v3/helpers/partialUtil.d.cts","../node_modules/zod/v3/standard-schema.d.cts","../node_modules/zod/v3/types.d.cts","../node_modules/zod/v3/external.d.cts","../node_modules/zod/index.d.cts","../src/coordination/validation-schemas.ts","../src/coordination/rbac-manager.ts","../src/coordination/rate-limiter.ts","../src/utils/event-payload-helper.ts","../src/coordination/hierarchical-orchestrator.ts","../src/coordination/pm-failover.ts","../src/coordination/queen-agent.ts","../src/swarm/consensus-coordinator.ts","../src/coordination/mesh-healing.ts","../src/coordination/pheromone-trails.ts","../node_modules/uuid/dist/types.d.ts","../node_modules/uuid/dist/max.d.ts","../node_modules/uuid/dist/nil.d.ts","../node_modules/uuid/dist/parse.d.ts","../node_modules/uuid/dist/stringify.d.ts","../node_modules/uuid/dist/v1.d.ts","../node_modules/uuid/dist/v1ToV6.d.ts","../node_modules/uuid/dist/v35.d.ts","../node_modules/uuid/dist/v3.d.ts","../node_modules/uuid/dist/v4.d.ts","../node_modules/uuid/dist/v5.d.ts","../node_modules/uuid/dist/v6.d.ts","../node_modules/uuid/dist/v6ToV1.d.ts","../node_modules/uuid/dist/v7.d.ts","../node_modules/uuid/dist/validate.d.ts","../node_modules/uuid/dist/version.d.ts","../node_modules/uuid/dist/index.d.ts","../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","../src/coordination/v1-transparency/v1-transparency-adapter.ts","../src/coordination/shared/transparency/interfaces/transparency-system.ts","../src/coordination/v1-transparency/v1-to-v2-bridge.ts","../src/coordination/mesh-network.ts","../src/coordination/role-assignment.ts","../src/coordination/index.ts","../src/coordination/adapters/v1-coordinator-adapter.ts","../src/coordination/config-translator.ts","../src/coordination/coordination-toggle.ts","../src/cli/commands/swarm.ts","../node_modules/commander/typings/index.d.ts","../node_modules/commander/typings/esm.d.mts","../src/cli/commands/memory.ts","../src/cli/commands/sparc.ts","../src/migration/types.ts","../src/migration/logger.ts","../node_modules/minipass/dist/commonjs/index.d.ts","../node_modules/lru-cache/dist/commonjs/index.d.ts","../node_modules/path-scurry/dist/commonjs/index.d.ts","../node_modules/glob/node_modules/minimatch/dist/commonjs/ast.d.ts","../node_modules/glob/node_modules/minimatch/dist/commonjs/escape.d.ts","../node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.d.ts","../node_modules/glob/node_modules/minimatch/dist/commonjs/index.d.ts","../node_modules/glob/dist/commonjs/pattern.d.ts","../node_modules/glob/dist/commonjs/processor.d.ts","../node_modules/glob/dist/commonjs/walker.d.ts","../node_modules/glob/dist/commonjs/ignore.d.ts","../node_modules/glob/dist/commonjs/glob.d.ts","../node_modules/glob/dist/commonjs/has-magic.d.ts","../node_modules/glob/dist/commonjs/index.d.ts","../src/migration/migration-analyzer.ts","../src/migration/progress-reporter.ts","../src/migration/migration-validator.ts","../node_modules/@inquirer/core/dist/commonjs/lib/key.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/errors.d.ts","../node_modules/@inquirer/type/dist/commonjs/inquirer.d.ts","../node_modules/@inquirer/type/dist/commonjs/utils.d.ts","../node_modules/@inquirer/type/dist/commonjs/index.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/theme.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-prefix.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-state.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-effect.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-memo.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-ref.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-keypress.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/make-theme.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/pagination/use-pagination.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/create-prompt.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/Separator.d.ts","../node_modules/@inquirer/core/dist/commonjs/index.d.ts","../node_modules/@inquirer/checkbox/dist/commonjs/index.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/errors/CreateFileError.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/errors/LaunchEditorError.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/errors/ReadFileError.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/errors/RemoveFileError.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/index.d.ts","../node_modules/@inquirer/editor/dist/commonjs/index.d.ts","../node_modules/@inquirer/confirm/dist/commonjs/index.d.ts","../node_modules/@inquirer/input/dist/commonjs/index.d.ts","../node_modules/@inquirer/number/dist/commonjs/index.d.ts","../node_modules/@inquirer/expand/dist/commonjs/index.d.ts","../node_modules/@inquirer/rawlist/dist/commonjs/index.d.ts","../node_modules/@inquirer/password/dist/commonjs/index.d.ts","../node_modules/@inquirer/search/dist/commonjs/index.d.ts","../node_modules/@inquirer/select/dist/commonjs/index.d.ts","../node_modules/@inquirer/prompts/dist/commonjs/index.d.ts","../node_modules/inquirer/dist/commonjs/types.d.ts","../node_modules/inquirer/dist/commonjs/ui/prompt.d.ts","../node_modules/inquirer/dist/commonjs/index.d.ts","../src/migration/migration-runner.ts","../src/migration/rollback-manager.ts","../src/cli/commands/migrate.ts","../src/enterprise/project-manager.ts","../src/enterprise/deployment-manager.ts","../src/enterprise/cloud-manager.ts","../src/enterprise/security-manager.ts","../src/enterprise/analytics-manager.ts","../src/enterprise/audit-manager.ts","../src/cli/commands/enterprise.ts","../src/cli/simple-commands/init/templates/enhanced-templates.js","../src/cli/commands/start/event-emitter.ts","../src/cli/commands/start/types.ts","../src/terminal/adapters/base.ts","../src/terminal/adapters/vscode.ts","../src/terminal/adapters/native.ts","../src/terminal/pool.ts","../src/terminal/session.ts","../src/terminal/manager.ts","../src/mcp/transports/base.ts","../src/mcp/transports/stdio.ts","../node_modules/@types/ws/index.d.mts","../node_modules/@types/cors/index.d.ts","../node_modules/helmet/index.d.mts","../src/mcp/transports/http.ts","../src/mcp/tools.ts","../src/mcp/router.ts","../src/mcp/session-manager.ts","../src/mcp/auth.ts","../src/mcp/load-balancer.ts","../src/constants/agent-types.ts","../src/mcp/claude-flow-tools.ts","../src/mcp/swarm-tools.ts","../src/mcp/ruv-swarm-tools.ts","../src/mcp/server.ts","../src/core/orchestrator.ts","../src/cli/commands/start/process-manager.ts","../src/cli/commands/start/process-ui-simple.ts","../src/cli/commands/start/process-ui.ts","../src/cli/commands/start/system-monitor.ts","../node_modules/process/index.js","../src/cli/formatter.ts","../src/cli/node-compat.js","../src/cli/utils.js","../src/cli/runtime-detector.js","../src/cli/simple-commands/web-server.js","../src/cli/commands/start/start-command.ts","../src/cli/commands/start/index.ts","../src/cli/commands/start.ts","../src/core/version.ts","../src/cli/commands/status.ts","../src/cli/commands/monitor.ts","../src/cli/commands/session.ts","../node_modules/cli-spinners/index.d.ts","../node_modules/ora/index.d.ts","../src/security/SecretsManager.cjs","../src/security/secrets-wrapper.ts","../node_modules/@redis/client/dist/lib/commands/generic-transformers.d.ts","../node_modules/@redis/client/dist/lib/client/parser.d.ts","../node_modules/@redis/client/dist/lib/errors.d.ts","../node_modules/@redis/client/dist/lib/lua-script.d.ts","../node_modules/@redis/client/dist/lib/RESP/decoder.d.ts","../node_modules/@redis/client/dist/lib/RESP/verbatim-string.d.ts","../node_modules/@redis/client/dist/lib/RESP/types.d.ts","../node_modules/@redis/client/dist/lib/commands/ACL_LOG.d.ts","../node_modules/@redis/client/dist/lib/commands/AUTH.d.ts","../node_modules/@redis/client/dist/lib/commands/BGSAVE.d.ts","../node_modules/@redis/client/dist/lib/commands/BITCOUNT.d.ts","../node_modules/@redis/client/dist/lib/commands/BITFIELD.d.ts","../node_modules/@redis/client/dist/lib/commands/BITFIELD_RO.d.ts","../node_modules/@redis/client/dist/lib/commands/BITOP.d.ts","../node_modules/@redis/client/dist/lib/commands/LMPOP.d.ts","../node_modules/@redis/client/dist/lib/commands/ZMPOP.d.ts","../node_modules/@redis/client/dist/lib/commands/CLIENT_INFO.d.ts","../node_modules/@redis/client/dist/lib/commands/CLIENT_KILL.d.ts","../node_modules/@redis/client/dist/lib/commands/CLIENT_LIST.d.ts","../node_modules/@redis/client/dist/lib/commands/CLIENT_TRACKING.d.ts","../node_modules/@redis/client/dist/lib/commands/CLUSTER_FAILOVER.d.ts","../node_modules/@redis/client/dist/lib/commands/CLUSTER_RESET.d.ts","../node_modules/@redis/client/dist/lib/commands/CLUSTER_SETSLOT.d.ts","../node_modules/@redis/client/dist/lib/commands/COMMAND_LIST.d.ts","../node_modules/@redis/client/dist/lib/commands/COPY.d.ts","../node_modules/@redis/client/dist/lib/commands/EVAL.d.ts","../node_modules/@redis/client/dist/lib/commands/FLUSHALL.d.ts","../node_modules/@redis/client/dist/lib/commands/FUNCTION_LIST.d.ts","../node_modules/@redis/client/dist/lib/commands/FUNCTION_LIST_WITHCODE.d.ts","../node_modules/@redis/client/dist/lib/commands/FUNCTION_LOAD.d.ts","../node_modules/@redis/client/dist/lib/commands/FUNCTION_RESTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/GEOSEARCH.d.ts","../node_modules/@redis/client/dist/lib/commands/GEOADD.d.ts","../node_modules/@redis/client/dist/lib/commands/GEOSEARCH_WITH.d.ts","../node_modules/@redis/client/dist/lib/commands/GEORADIUS_STORE.d.ts","../node_modules/@redis/client/dist/lib/commands/GEORADIUSBYMEMBER_STORE.d.ts","../node_modules/@redis/client/dist/lib/commands/GEOSEARCHSTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/GETEX.d.ts","../node_modules/@redis/client/dist/lib/commands/HELLO.d.ts","../node_modules/@redis/client/dist/lib/commands/HEXPIRE.d.ts","../node_modules/@redis/client/dist/lib/commands/HGETEX.d.ts","../node_modules/@redis/client/dist/lib/commands/HRANDFIELD_COUNT_WITHVALUES.d.ts","../node_modules/@redis/client/dist/lib/commands/SCAN.d.ts","../node_modules/@redis/client/dist/lib/commands/HSET.d.ts","../node_modules/@redis/client/dist/lib/commands/HSETEX.d.ts","../node_modules/@redis/client/dist/lib/commands/LATENCY_GRAPH.d.ts","../node_modules/@redis/client/dist/lib/commands/LATENCY_HISTORY.d.ts","../node_modules/@redis/client/dist/lib/commands/LCS_IDX.d.ts","../node_modules/@redis/client/dist/lib/commands/LCS_IDX_WITHMATCHLEN.d.ts","../node_modules/@redis/client/dist/lib/commands/LPOS.d.ts","../node_modules/@redis/client/dist/lib/commands/MEMORY_STATS.d.ts","../node_modules/@redis/client/dist/lib/commands/MEMORY_USAGE.d.ts","../node_modules/@redis/client/dist/lib/commands/MIGRATE.d.ts","../node_modules/@redis/client/dist/lib/commands/MODULE_LIST.d.ts","../node_modules/@redis/client/dist/lib/commands/MSET.d.ts","../node_modules/@redis/client/dist/lib/commands/RESTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/SET.d.ts","../node_modules/@redis/client/dist/lib/commands/SINTERCARD.d.ts","../node_modules/@redis/client/dist/lib/commands/SORT.d.ts","../node_modules/@redis/client/dist/lib/commands/common-stream.types.d.ts","../node_modules/@redis/client/dist/lib/commands/XADD.d.ts","../node_modules/@redis/client/dist/lib/commands/XAUTOCLAIM.d.ts","../node_modules/@redis/client/dist/lib/commands/XCLAIM.d.ts","../node_modules/@redis/client/dist/lib/commands/XGROUP_CREATE.d.ts","../node_modules/@redis/client/dist/lib/commands/XGROUP_SETID.d.ts","../node_modules/@redis/client/dist/lib/commands/XINFO_CONSUMERS.d.ts","../node_modules/@redis/client/dist/lib/commands/XINFO_GROUPS.d.ts","../node_modules/@redis/client/dist/lib/commands/XINFO_STREAM.d.ts","../node_modules/@redis/client/dist/lib/commands/XPENDING_RANGE.d.ts","../node_modules/@redis/client/dist/lib/commands/XRANGE.d.ts","../node_modules/@redis/client/dist/lib/commands/XREAD.d.ts","../node_modules/@redis/client/dist/lib/commands/XREADGROUP.d.ts","../node_modules/@redis/client/dist/lib/commands/XSETID.d.ts","../node_modules/@redis/client/dist/lib/commands/XTRIM.d.ts","../node_modules/@redis/client/dist/lib/commands/ZADD_INCR.d.ts","../node_modules/@redis/client/dist/lib/commands/ZADD.d.ts","../node_modules/@redis/client/dist/lib/commands/ZINTER.d.ts","../node_modules/@redis/client/dist/lib/commands/ZINTERCARD.d.ts","../node_modules/@redis/client/dist/lib/commands/ZRANGE.d.ts","../node_modules/@redis/client/dist/lib/commands/ZRANGEBYLEX.d.ts","../node_modules/@redis/client/dist/lib/commands/ZRANGEBYSCORE.d.ts","../node_modules/@redis/client/dist/lib/commands/ZRANGESTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/ZUNION.d.ts","../node_modules/@redis/client/dist/lib/commands/ZUNIONSTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/VADD.d.ts","../node_modules/@redis/client/dist/lib/commands/VINFO.d.ts","../node_modules/@redis/client/dist/lib/commands/VSIM.d.ts","../node_modules/@redis/client/dist/lib/commands/index.d.ts","../node_modules/@redis/client/dist/lib/client/socket.d.ts","../node_modules/@redis/client/dist/lib/authx/identity-provider.d.ts","../node_modules/@redis/client/dist/lib/authx/token.d.ts","../node_modules/@redis/client/dist/lib/authx/disposable.d.ts","../node_modules/@redis/client/dist/lib/authx/token-manager.d.ts","../node_modules/@redis/client/dist/lib/authx/credentials-provider.d.ts","../node_modules/@redis/client/dist/lib/authx/index.d.ts","../node_modules/@redis/client/dist/lib/client/pub-sub.d.ts","../node_modules/@redis/client/dist/lib/client/commands-queue.d.ts","../node_modules/@redis/client/dist/lib/multi-command.d.ts","../node_modules/@redis/client/dist/lib/client/multi-command.d.ts","../node_modules/@redis/client/dist/lib/client/legacy-mode.d.ts","../node_modules/@redis/client/dist/lib/client/cache.d.ts","../node_modules/@redis/client/dist/lib/client/pool.d.ts","../node_modules/@redis/client/dist/lib/client/index.d.ts","../node_modules/@redis/client/dist/lib/cluster/cluster-slots.d.ts","../node_modules/@redis/client/dist/lib/cluster/multi-command.d.ts","../node_modules/@redis/client/dist/lib/cluster/index.d.ts","../node_modules/@redis/client/dist/lib/sentinel/types.d.ts","../node_modules/@redis/client/dist/lib/sentinel/multi-commands.d.ts","../node_modules/@redis/client/dist/lib/sentinel/index.d.ts","../node_modules/@redis/client/dist/index.d.ts","../node_modules/@redis/bloom/dist/lib/commands/bloom/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/bloom/INSERT.d.ts","../node_modules/@redis/bloom/dist/lib/commands/bloom/RESERVE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/count-min-sketch/INCRBY.d.ts","../node_modules/@redis/bloom/dist/lib/commands/count-min-sketch/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/count-min-sketch/MERGE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/cuckoo/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/cuckoo/INSERT.d.ts","../node_modules/@redis/bloom/dist/lib/commands/cuckoo/RESERVE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/t-digest/CREATE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/t-digest/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/t-digest/MERGE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/top-k/INCRBY.d.ts","../node_modules/@redis/bloom/dist/lib/commands/top-k/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/top-k/RESERVE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/index.d.ts","../node_modules/@redis/bloom/dist/lib/index.d.ts","../node_modules/@redis/json/dist/lib/commands/ARRINDEX.d.ts","../node_modules/@redis/json/dist/lib/commands/ARRLEN.d.ts","../node_modules/@redis/json/dist/lib/commands/ARRPOP.d.ts","../node_modules/@redis/json/dist/lib/commands/CLEAR.d.ts","../node_modules/@redis/json/dist/lib/commands/DEBUG_MEMORY.d.ts","../node_modules/@redis/json/dist/lib/commands/DEL.d.ts","../node_modules/@redis/json/dist/lib/commands/FORGET.d.ts","../node_modules/@redis/json/dist/lib/commands/GET.d.ts","../node_modules/@redis/json/dist/lib/commands/MSET.d.ts","../node_modules/@redis/json/dist/lib/commands/OBJKEYS.d.ts","../node_modules/@redis/json/dist/lib/commands/OBJLEN.d.ts","../node_modules/@redis/json/dist/lib/commands/SET.d.ts","../node_modules/@redis/json/dist/lib/commands/STRAPPEND.d.ts","../node_modules/@redis/json/dist/lib/commands/STRLEN.d.ts","../node_modules/@redis/json/dist/lib/commands/TYPE.d.ts","../node_modules/@redis/json/dist/lib/commands/index.d.ts","../node_modules/@redis/json/dist/lib/index.d.ts","../node_modules/@redis/search/dist/lib/commands/CREATE.d.ts","../node_modules/@redis/search/dist/lib/commands/SEARCH.d.ts","../node_modules/@redis/search/dist/lib/commands/AGGREGATE.d.ts","../node_modules/@redis/search/dist/lib/commands/AGGREGATE_WITHCURSOR.d.ts","../node_modules/@redis/search/dist/lib/commands/CURSOR_READ.d.ts","../node_modules/@redis/search/dist/lib/commands/DROPINDEX.d.ts","../node_modules/@redis/search/dist/lib/commands/EXPLAIN.d.ts","../node_modules/@redis/search/dist/lib/commands/EXPLAINCLI.d.ts","../node_modules/@redis/search/dist/lib/commands/INFO.d.ts","../node_modules/@redis/search/dist/lib/commands/PROFILE_SEARCH.d.ts","../node_modules/@redis/search/dist/lib/commands/SEARCH_NOCONTENT.d.ts","../node_modules/@redis/search/dist/lib/commands/SPELLCHECK.d.ts","../node_modules/@redis/search/dist/lib/commands/SUGADD.d.ts","../node_modules/@redis/search/dist/lib/commands/SUGGET.d.ts","../node_modules/@redis/search/dist/lib/commands/SYNUPDATE.d.ts","../node_modules/@redis/search/dist/lib/commands/index.d.ts","../node_modules/@redis/search/dist/lib/index.d.ts","../node_modules/@redis/time-series/dist/lib/commands/ADD.d.ts","../node_modules/@redis/time-series/dist/lib/commands/helpers.d.ts","../node_modules/@redis/time-series/dist/lib/commands/CREATE.d.ts","../node_modules/@redis/time-series/dist/lib/commands/ALTER.d.ts","../node_modules/@redis/time-series/dist/lib/commands/CREATERULE.d.ts","../node_modules/@redis/time-series/dist/lib/commands/INCRBY.d.ts","../node_modules/@redis/time-series/dist/lib/commands/GET.d.ts","../node_modules/@redis/time-series/dist/lib/commands/INFO.d.ts","../node_modules/@redis/time-series/dist/lib/commands/INFO_DEBUG.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MADD.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MGET.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MGET_WITHLABELS.d.ts","../node_modules/@redis/time-series/dist/lib/commands/RANGE.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_GROUPBY.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_SELECTED_LABELS.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_SELECTED_LABELS_GROUPBY.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_WITHLABELS_GROUPBY.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_WITHLABELS.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE.d.ts","../node_modules/@redis/time-series/dist/lib/commands/index.d.ts","../node_modules/@redis/time-series/dist/lib/index.d.ts","../node_modules/redis/dist/index.d.ts","../src/cli/commands/setup-wizard.ts","../src/cli/commands/validate-setup.ts","../src/utils/formatters.ts","../src/cli/commands/agent.ts","../src/hive-mind/core/DatabaseManager.ts","../src/hive-mind/integration/MCPToolWrapper.ts","../src/hive-mind/types.ts","../src/hive-mind/core/Agent.ts","../src/hive-mind/core/Queen.ts","../src/hive-mind/core/Memory.ts","../src/hive-mind/core/Communication.ts","../src/hive-mind/integration/SwarmOrchestrator.ts","../src/hive-mind/integration/ConsensusEngine.ts","../src/hive-mind/core/HiveMind.ts","../src/cli/commands/hive-mind/init.ts","../src/cli/commands/hive-mind/spawn.ts","../src/cli/commands/hive-mind/status.ts","../src/cli/commands/hive-mind/task.ts","../src/cli/commands/hive-mind/wizard.ts","../src/memory/advanced-serializer.js","../src/memory/enhanced-session-serializer.js","../src/cli/simple-commands/hive-mind/session-manager.js","../src/cli/commands/hive-mind/stop.ts","../src/cli/commands/hive-mind/pause.ts","../src/cli/commands/hive-mind/resume.ts","../src/cli/commands/hive-mind/ps.ts","../src/cli/commands/hive-mind/index.ts","../src/cli/commands/index.ts","../src/cli/cli-core.ts","../src/cli/completion.ts","../src/cli/help-formatter.ts","../src/cli/index-remote.ts","../src/cli/simple-commands/init/executable-wrapper.js","../src/cli/simple-commands/init/sparc/roomodes-config.js","../src/cli/simple-commands/init/sparc/workflows.js","../src/cli/simple-commands/init/sparc/roo-readme.js","../src/cli/simple-commands/init/claude-commands/sparc-commands.js","../src/cli/simple-commands/init/claude-commands/claude-flow-commands.js","../src/cli/simple-commands/init/templates/sparc-modes.js","../src/cli/simple-commands/init/templates/readme-files.js","../src/cli/simple-commands/init/template-copier.js","../src/cli/simple-commands/init/claude-commands/slash-commands.js","../src/cli/simple-commands/init/sparc-structure.js","../src/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js","../src/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js","../src/cli/simple-commands/init/claude-commands/optimized-slash-commands.js","../src/cli/simple-commands/init/copy-revised-templates.js","../src/cli/simple-commands/init/agent-copier.js","../src/cli/simple-commands/init/help.js","../src/cli/simple-commands/init/performance-monitor.js","../src/cli/simple-commands/init/templates/memory-bank-md.js","../src/cli/simple-commands/init/templates/coordination-md.js","../src/cli/simple-commands/init/batch-init.js","../src/cli/simple-commands/init/validation/pre-init-validator.js","../src/cli/simple-commands/init/validation/post-init-validator.js","../src/cli/simple-commands/init/validation/config-validator.js","../src/cli/simple-commands/init/validation/mode-validator.js","../src/cli/simple-commands/init/validation/health-checker.js","../src/cli/simple-commands/init/validation/index.js","../src/cli/simple-commands/init/rollback/backup-manager.js","../src/cli/simple-commands/init/rollback/rollback-executor.js","../src/cli/simple-commands/init/rollback/state-tracker.js","../src/cli/simple-commands/init/rollback/recovery-manager.js","../src/cli/simple-commands/init/rollback/index.js","../src/utils/npx-isolated-cache.js","../src/cli/simple-commands/init/gitignore-updater.js","../src/cli/simple-commands/init/templates/verification-claude-md.js","../src/cli/simple-commands/init/hive-mind-init.js","../src/memory/sqlite-store.js","../src/memory/in-memory-store.js","../src/memory/fallback-store.js","../src/cli/simple-commands/init/index.js","../src/memory/unified-memory-manager.js","../src/cli/simple-commands/memory.js","../src/cli/simple-commands/memory-consolidation.js","../src/cli/simple-commands/sparc-modes/architect.js","../src/cli/simple-commands/sparc-modes/code.js","../src/cli/simple-commands/sparc-modes/tdd.js","../src/cli/simple-commands/sparc-modes/debug.js","../src/cli/simple-commands/sparc-modes/security-review.js","../src/cli/simple-commands/sparc-modes/docs-writer.js","../src/cli/simple-commands/sparc-modes/integration.js","../src/cli/simple-commands/sparc-modes/monitoring.js","../src/cli/simple-commands/sparc-modes/optimization.js","../src/cli/simple-commands/sparc-modes/supabase-admin.js","../src/cli/simple-commands/sparc-modes/spec-pseudocode.js","../src/cli/simple-commands/sparc-modes/mcp.js","../src/cli/simple-commands/sparc-modes/devops.js","../src/cli/simple-commands/sparc-modes/ask.js","../src/cli/simple-commands/sparc-modes/tutorial.js","../src/cli/simple-commands/sparc-modes/sparc-orchestrator.js","../src/cli/simple-commands/sparc-modes/generic.js","../src/cli/simple-commands/sparc-modes/swarm.js","../src/cli/simple-commands/sparc-modes/index.js","../src/cli/simple-commands/sparc.js","../src/cli/simple-commands/performance-metrics.js","../src/cli/simple-commands/performance-hooks.js","../src/cli/simple-commands/agent.js","../src/cli/simple-commands/task.js","../src/cli/simple-commands/config.js","../src/cli/simple-commands/status.js","../src/cli/simple-commands/mcp.js","../src/cli/simple-commands/monitor.js","../src/cli/simple-commands/swarm-webui-integration.js","../src/cli/simple-commands/process-ui-enhanced.js","../src/cli/simple-commands/start-wrapper.js","../src/cli/simple-commands/start.js","../src/cli/simple-commands/swarm-executor.js","../src/cli/simple-commands/swarm.js","../src/cli/simple-commands/batch-manager.js","../src/cli/simple-commands/github/init.js","../src/cli/simple-commands/github.js","../src/cli/simple-commands/training.js","../src/cli/simple-commands/token-tracker.js","../src/cli/simple-commands/claude-telemetry.js","../src/cli/simple-commands/analysis.js","../src/cli/simple-commands/stream-processor.js","../src/cli/simple-commands/automation-executor.js","../src/cli/simple-commands/automation.js","../src/cli/simple-commands/coordination.js","../src/cli/simple-commands/hooks/session-start-soul.js","../src/hooks/enhanced-post-edit-pipeline.js","../src/cli/simple-commands/hooks.js","../src/cli/simple-commands/hook-safety.js","../src/cli/utils/interactive-detector.js","../src/cli/utils/safe-interactive.js","../src/cli/simple-commands/hive-mind/mcp-wrapper.js","../src/cli/simple-commands/hive-mind/performance-optimizer.js","../src/cli/simple-commands/hive-mind/core.js","../src/cli/simple-commands/hive-mind/queen.js","../src/cli/simple-commands/hive-mind/memory.js","../src/cli/simple-commands/hive-mind/communication.js","../src/cli/simple-commands/hive-mind/auto-save-middleware.js","../src/cli/simple-commands/hive-mind.js","../src/cli/simple-commands/hive-mind/db-optimizer.js","../src/cli/simple-commands/hive-mind-optimize.js","../src/cli/simple-commands/neural.js","../src/cli/simple-commands/goal.js","../src/cli/simple-commands/swarm-metrics-integration.js","../src/cli/simple-commands/migrate-hooks.js","../src/cli/simple-commands/fix-hook-variables.js","../src/preferences/preference-wizard.js","../src/preferences/preference-manager.js","../src/cli/preferences.js","../src/cli/personalization-cli.js","../node_modules/table/dist/src/types/api.d.ts","../node_modules/table/dist/src/createStream.d.ts","../node_modules/table/dist/src/getBorderCharacters.d.ts","../node_modules/table/dist/src/table.d.ts","../node_modules/table/dist/src/index.d.ts","../src/cli/commands/validate-framework.js","../src/cli/commands/hook-types.ts","../src/cli/commands/hook.ts","../src/cli/simple-commands/start-ui.js","../src/cli/utils/redis-client.js","../src/cli/utils/arg-validator.js","../src/cli/utils/output-formatter.js","../src/cli/commands/swarm-exec.js","../src/cli/help-text.js","../src/cli/simple-commands/verification.js","../src/cli/simple-commands/pair.js","../src/cli/simple-commands/verification-training-integration.js","../src/cli/simple-commands/training-pipeline.js","../src/cli/simple-commands/stream-chain.js","../src/cli/commands/hive.ts","../src/cli/commands/create-template.ts","../src/cli/command-registry.js","../src/cli/simple-cli.ts","../src/cli/commands/task.ts","../src/cli/commands/config.ts","../src/cli/commands/workflow.ts","../src/cli/commands/help.ts","../src/cli/commands/mcp.ts","../src/parsers/epic-parser-types.ts","../node_modules/@types/trusted-types/lib/index.d.ts","../node_modules/dompurify/dist/purify.cjs.d.ts","../node_modules/isomorphic-dompurify/index.d.ts","../src/utils/markdown-sanitizer.ts","../src/parsers/phase-parser.ts","../src/utils/path-security.ts","../node_modules/fast-uri/types/index.d.ts","../node_modules/ajv/dist/compile/codegen/code.d.ts","../node_modules/ajv/dist/compile/codegen/scope.d.ts","../node_modules/ajv/dist/compile/codegen/index.d.ts","../node_modules/ajv/dist/compile/rules.d.ts","../node_modules/ajv/dist/compile/util.d.ts","../node_modules/ajv/dist/compile/validate/subschema.d.ts","../node_modules/ajv/dist/compile/errors.d.ts","../node_modules/ajv/dist/compile/validate/index.d.ts","../node_modules/ajv/dist/compile/validate/dataType.d.ts","../node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","../node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","../node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","../node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","../node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","../node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../node_modules/ajv/dist/vocabularies/validation/required.d.ts","../node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../node_modules/ajv/dist/vocabularies/validation/const.d.ts","../node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../node_modules/ajv/dist/vocabularies/validation/index.d.ts","../node_modules/ajv/dist/vocabularies/format/format.d.ts","../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","../node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","../node_modules/ajv/dist/vocabularies/errors.d.ts","../node_modules/ajv/dist/types/json-schema.d.ts","../node_modules/ajv/dist/types/jtd-schema.d.ts","../node_modules/ajv/dist/runtime/validation_error.d.ts","../node_modules/ajv/dist/compile/ref_error.d.ts","../node_modules/ajv/dist/core.d.ts","../node_modules/ajv/dist/compile/resolve.d.ts","../node_modules/ajv/dist/compile/index.d.ts","../node_modules/ajv/dist/types/index.d.ts","../node_modules/ajv/dist/ajv.d.ts","../node_modules/ajv-formats/dist/formats.d.ts","../node_modules/ajv-formats/dist/limit.d.ts","../node_modules/ajv-formats/dist/index.d.ts","../src/validators/epic-config-schema.ts","../src/parsers/epic-parser.ts","../src/cli/commands/parse-epic.ts","../src/cli/repl.ts","../src/cli/index.ts","../src/maestro/maestro-types.ts","../src/maestro/maestro-swarm-coordinator.ts","../src/services/agentic-flow-hooks/types.ts","../src/services/agentic-flow-hooks/hook-manager.ts","../src/services/agentic-flow-hooks/llm-hooks.ts","../src/services/agentic-flow-hooks/memory-hooks.ts","../src/services/agentic-flow-hooks/neural-hooks.ts","../src/services/agentic-flow-hooks/performance-hooks.ts","../src/services/agentic-flow-hooks/workflow-hooks.ts","../src/services/agentic-flow-hooks/index.ts","../src/cli/maestro-cli-bridge.ts","../src/cli/main.ts","../src/cli/node-repl.ts","../src/cli/simple-mcp.ts","../src/cli/simple-orchestrator.ts","../src/cli/validation-helper.ts","../src/cli/agents/base-agent.ts","../src/cli/agents/analyst.ts","../src/cli/agents/architect.ts","../src/cli/agents/capabilities.ts","../src/cli/agents/coder.ts","../src/cli/agents/coordinator.ts","../src/cli/agents/hive-agents.ts","../src/cli/agents/researcher.ts","../src/cli/agents/tester.ts","../src/cli/agents/index.ts","../src/memory/advanced-memory-manager.ts","../src/cli/commands/advanced-memory-commands.ts","../src/cli/commands/agent-simple.ts","../src/cli/commands/claude-api.ts","../src/cli/commands/claude.ts","../src/config/ruv-swarm-config.ts","../src/config/ruv-swarm-integration.ts","../src/cli/commands/config-integration.ts","../src/cli/commands/goal-init.ts","../src/cli/commands/health-check.ts","../src/cli/commands/help-new.ts","../src/cli/commands/hook-validator.ts","../src/cli/commands/maestro.ts","../src/cli/commands/neural-init.ts","../src/cli/commands/ruv-swarm.ts","../src/cli/commands/swarm-spawn.ts","../src/coordination/shared/transparency/transparency-system.ts","../src/cli/commands/transparency.ts","../src/completion/framework-detector.js","../src/verification/types.ts","../src/verification/truth-scorer.ts","../src/validation/truth-config-manager.js","../src/validation/cli/interactive-setup-wizard.js","../src/core/byzantine-consensus.js","../src/validation/completion-interceptor.js","../src/validation/cli/validation-commands.js","../src/completion/cli-wizard.js","../src/cli/commands/validate-integration.ts","../src/verification/index.ts","../src/cli/commands/verification.ts","../src/hive-mind/core/MemoryMonitor.ts","../src/cli/commands/hive-mind/optimize-memory.ts","../src/cli/consolidated/core/TierManager.ts","../src/cli/consolidated/intelligence/IntelligenceEngine.ts","../src/cli/consolidated/core/CommandHandlers.ts","../src/cli/consolidated/routing/CommandRouter.ts","../src/cli/consolidated/utils/PerformanceOptimizer.ts","../src/cli/consolidated/ConsolidatedCLI.ts","../src/cli/consolidated/utils/IntelligentDefaults.ts","../src/cli/consolidated/help/InteractiveHelp.ts","../src/cli/consolidated/index.ts","../src/cli/init/batch-tools.ts","../src/cli/init/directory-structure.ts","../src/cli/init/swarm-commands.ts","../src/cli/init/sparc-environment.ts","../src/cli/init/index.ts","../src/cli/init/claude-config.ts","../src/cli/init/utils.ts","../src/cli/ui/compatible-ui.ts","../src/cli/ui/fallback-handler.ts","../src/cli/ui/index.ts","../src/cli/utils/environment-detector.ts","../src/cli/utils/epic-parser.ts","../src/cli/utils/prompt-defaults.ts","../src/memory/lock-free-structures.js","../src/communication/enhanced-event-bus.ts","../src/memory/memory-pressure-manager.js","../src/memory/high-performance-serialization.js","../src/memory/memory-mapped-persistence.js","../src/memory/ultra-fast-memory-store.js","../src/communication/priority-message-queue.ts","../src/communication/failure-recovery-system.ts","../src/communication/message-bus.ts","../src/communication/ultra-fast-serialization.ts","../src/communication/zero-copy-structures.ts","../src/communication/optimized-serialization.ts","../src/communication/performance-optimizations.ts","../src/communication/performance-validator.ts","../src/topology/communication-bridge.ts","../src/communication/reliable-communication-manager.ts","../src/communication/shared-buffer-bus.ts","../src/communication/websocket-cluster.ts","../src/components/visualizations/index.ts","../src/config/consent-manager.ts","../src/config/utils/zero-config-setup.ts","../src/config/migration/config-migration.ts","../src/config/validation/config-validator.ts","../src/config/utils/config-export-import.ts","../src/config/index.ts","../src/config/migration-manager.ts","../src/config/test-migration-fixer.ts","../src/config/web-portal-config.ts","../src/config/zero-config-setup.ts","../src/config/ai/project-detection-engine.ts","../src/config/ai/decision-tree-generator.ts","../src/config/storage/multi-tier-storage.ts","../src/config/ui/progressive-disclosure-engine.ts","../src/config/migration/version-migration-engine.ts","../src/config/core/intelligent-configuration-manager.ts","../src/config/integration/hooks-integration.ts","../src/coordination/advanced-task-executor.ts","../src/coordination/confidence-integration.ts","../src/coordination/constants.ts","../src/coordination/distributed-consensus.ts","../src/coordination/feature-flags.ts","../src/coordination/hive-orchestrator.ts","../src/coordination/hive-protocol.ts","../src/coordination/load-balancer.ts","../src/coordination/task-delegation.ts","../src/coordination/shared/index.ts","../src/coordination/shared/core/index.ts","../src/coordination/shared/interfaces/index.ts","../src/coordination/shared/transparency/transparency-integration.ts","../src/coordination/shared/transparency/index.ts","../src/coordination/shared/types/index.ts","../src/coordination/types/worker-interfaces.ts","../src/core/agent-manager.ts","../src/core/index.ts","../src/core/persistence.ts","../src/crdt/types.ts","../node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts","../node_modules/engine.io-parser/build/esm/commons.d.ts","../node_modules/engine.io-parser/build/esm/encodePacket.d.ts","../node_modules/engine.io-parser/build/esm/decodePacket.d.ts","../node_modules/engine.io-parser/build/esm/index.d.ts","../node_modules/engine.io-client/build/esm/transport.d.ts","../node_modules/engine.io-client/build/esm/globals.node.d.ts","../node_modules/engine.io-client/build/esm/socket.d.ts","../node_modules/engine.io-client/build/esm/transports/polling.d.ts","../node_modules/engine.io-client/build/esm/transports/polling-xhr.d.ts","../node_modules/engine.io-client/build/esm/transports/polling-xhr.node.d.ts","../node_modules/engine.io-client/build/esm/transports/websocket.d.ts","../node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts","../node_modules/engine.io-client/build/esm/transports/webtransport.d.ts","../node_modules/engine.io-client/build/esm/transports/index.d.ts","../node_modules/engine.io-client/build/esm/util.d.ts","../node_modules/engine.io-client/build/esm/contrib/parseuri.d.ts","../node_modules/engine.io-client/build/esm/transports/polling-fetch.d.ts","../node_modules/engine.io-client/build/esm/index.d.ts","../node_modules/socket.io-parser/build/esm-debug/index.d.ts","../node_modules/socket.io-client/build/esm/socket.d.ts","../node_modules/socket.io-client/build/esm/manager.d.ts","../node_modules/socket.io-client/build/esm/index.d.ts","../src/dashboard/FleetDashboardClient.ts","../src/dashboard/RealtimeMonitor.ts","../src/dashboard/RedisClient.ts","../src/dashboard/index.ts","../src/dashboard/types.ts","../src/enterprise/index.ts","../src/eventbus/types.ts","../src/feature-flags/core/FeatureFlagManager.ts","../src/feature-flags/validation/TruthBasedValidator.ts","../src/feature-flags/validation/HookInterceptor.ts","../src/feature-flags/monitoring/RolloutMonitor.ts","../src/feature-flags/rollout/RolloutController.ts","../src/feature-flags/index.ts","../src/feature-flags/cli/Phase4CLI.ts","../src/hive-mind/index.ts","../src/hooks/index.ts","../src/hooks/useSwarmRealtimeData.ts","../src/integration/mock-components.ts","../src/task/coordination.ts","../src/task/types.ts","../src/task/engine.ts","../src/monitoring/real-time-monitor.ts","../src/integration/types.ts","../src/integration/system-integration.ts","../src/lifecycle/communication-protocols.ts","../src/lifecycle/memory-schema.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts","../src/mcp/sparc-modes.ts","../src/mcp/claude-code-wrapper.ts","../src/mcp/recovery/connection-health-monitor.ts","../src/mcp/recovery/reconnection-manager.ts","../src/mcp/recovery/fallback-coordinator.ts","../src/mcp/recovery/connection-state-manager.ts","../src/mcp/recovery/recovery-manager.ts","../src/mcp/recovery/index.ts","../src/mcp/client.ts","../src/mcp/lifecycle-manager.ts","../src/mcp/protocol-manager.ts","../src/mcp/performance-monitor.ts","../src/mcp/orchestration-integration.ts","../src/mcp/index.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts","../src/mcp/integrate-wrapper.ts","../src/mcp/server-with-wrapper.ts","../src/mcp/server-wrapper-mode.ts","../src/memory/sqlite-enhanced-backend.ts","../src/migration/index.ts","../src/monitoring/agent-health-monitor.ts","../src/monitoring/health-check.ts","../src/monitoring/diagnostics.ts","../src/monitoring/metrics-collector.ts","../src/monitoring/real-time-feedback-system.ts","../src/monitoring/apm/datadog-collector.ts","../src/monitoring/apm/newrelic-collector.ts","../src/monitoring/apm/distributed-tracing.ts","../src/monitoring/apm/performance-optimizer.ts","../src/monitoring/apm/apm-integration.ts","../src/monitoring/apm/index.ts","../src/monitoring/phase4/dashboard/monitoring-dashboard.ts","../src/monitoring/phase4/analytics/truth-score-analyzer.ts","../src/monitoring/phase4/analytics/consensus-tracker.ts","../src/monitoring/phase4/analytics/performance-assessor.ts","../src/monitoring/phase4/rollout-decision-engine.ts","../src/monitoring/regression/RegressionDetector.ts","../src/neural/NeuralDomainMapper.ts","../src/neural/integration.ts","../src/neural/index.ts","../src/preferences/example.ts","../src/preferences/user-preference-manager.ts","../src/providers/types.ts","../src/providers/agent-profile-loader.ts","../src/providers/base-provider.ts","../src/providers/anthropic-provider.ts","../src/providers/cohere-provider.ts","../src/providers/google-provider.ts","../src/providers/openai-provider.ts","../src/providers/ollama-provider.ts","../src/providers/zai-provider.ts","../src/providers/tiered-router.ts","../src/providers/provider-manager.ts","../src/providers/utils.ts","../src/providers/index.ts","../src/quality-gates/automated-review-system.ts","../src/redis/state-validation-schemas.ts","../src/rollback/recovery-manager.ts","../src/scripts/publishSwarmEvents.ts","../src/scripts/startVisualizationServer.ts","../src/services/agent-manager.ts","../src/services/performance-metrics-collector.ts","../src/services/swarm-coordinator.ts","../src/services/swarm-memory-manager.ts","../src/services/swarm-relaunch-manager.ts","../src/services/task-handoff-service.ts","../src/swarm/executor.ts","../src/swarm/advanced-orchestrator.ts","../src/swarm/claude-code-interface.ts","../src/swarm/direct-executor.ts","../src/swarm/executor-v2.ts","../src/swarm/hive-mind-integration.ts","../src/swarm/strategies/research.ts","../src/swarm/memory.ts","../src/swarm/prompt-copier.ts","../src/swarm/prompt-copier-enhanced.ts","../src/swarm/prompt-utils.ts","../src/swarm/prompt-manager.ts","../src/swarm/prompt-cli.ts","../src/swarm/optimizations/index.ts","../src/swarm/index.ts","../src/swarm/large-scale-coordinator.ts","../src/swarm/mcp-integration-wrapper.ts","../src/swarm/result-aggregator.ts","../src/swarm/sparc-executor.ts","../src/swarm/error-recovery/advanced-error-detection.ts","../src/swarm/error-recovery/automated-recovery-workflows.ts","../src/swarm/error-recovery/resilience-architecture.ts","../src/swarm/error-recovery/recovery-monitoring.ts","../src/swarm/error-recovery/self-healing-mechanisms.ts","../src/swarm/error-recovery/error-recovery-coordinator.ts","../src/swarm/error-recovery/test-error-recovery-effectiveness.ts","../src/swarm/strategies/strategy-metrics-patch.ts","../src/swarm/workers/copy-worker.ts","../src/web/messaging/swarm-message-router.ts","../src/swarm-fullstack/types/index.ts","../src/swarm-fullstack/adapters/chrome-mcp-adapter.ts","../src/swarm-fullstack/adapters/shadcn-mcp-adapter.ts","../node_modules/boxen/node_modules/type-fest/source/primitive.d.ts","../node_modules/boxen/node_modules/type-fest/source/typed-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/basic.d.ts","../node_modules/boxen/node_modules/type-fest/source/observable-like.d.ts","../node_modules/boxen/node_modules/type-fest/source/union-to-intersection.d.ts","../node_modules/boxen/node_modules/type-fest/source/keys-of-union.d.ts","../node_modules/boxen/node_modules/type-fest/source/distributed-omit.d.ts","../node_modules/boxen/node_modules/type-fest/source/distributed-pick.d.ts","../node_modules/boxen/node_modules/type-fest/source/empty-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-empty-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/optional-keys-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/required-keys-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/has-required-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-never.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-never.d.ts","../node_modules/boxen/node_modules/type-fest/source/unknown-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/array.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/characters.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-any.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-float.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-integer.d.ts","../node_modules/boxen/node_modules/type-fest/source/numeric.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-literal.d.ts","../node_modules/boxen/node_modules/type-fest/source/trim.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-equal.d.ts","../node_modules/boxen/node_modules/type-fest/source/and.d.ts","../node_modules/boxen/node_modules/type-fest/source/or.d.ts","../node_modules/boxen/node_modules/type-fest/source/greater-than.d.ts","../node_modules/boxen/node_modules/type-fest/source/greater-than-or-equal.d.ts","../node_modules/boxen/node_modules/type-fest/source/less-than.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/string.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/numeric.d.ts","../node_modules/boxen/node_modules/type-fest/source/simplify.d.ts","../node_modules/boxen/node_modules/type-fest/source/omit-index-signature.d.ts","../node_modules/boxen/node_modules/type-fest/source/pick-index-signature.d.ts","../node_modules/boxen/node_modules/type-fest/source/merge.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-any.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/type.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/object.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/index.d.ts","../node_modules/boxen/node_modules/type-fest/source/except.d.ts","../node_modules/boxen/node_modules/type-fest/source/require-at-least-one.d.ts","../node_modules/boxen/node_modules/type-fest/source/non-empty-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/non-empty-string.d.ts","../node_modules/boxen/node_modules/type-fest/source/unknown-record.d.ts","../node_modules/boxen/node_modules/type-fest/source/unknown-set.d.ts","../node_modules/boxen/node_modules/type-fest/source/unknown-map.d.ts","../node_modules/boxen/node_modules/type-fest/source/tagged-union.d.ts","../node_modules/boxen/node_modules/type-fest/source/writable.d.ts","../node_modules/boxen/node_modules/type-fest/source/writable-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-simplify.d.ts","../node_modules/boxen/node_modules/type-fest/source/non-empty-tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-tail.d.ts","../node_modules/boxen/node_modules/type-fest/source/enforce-optional.d.ts","../node_modules/boxen/node_modules/type-fest/source/simplify-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/merge-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/merge-exclusive.d.ts","../node_modules/boxen/node_modules/type-fest/source/require-exactly-one.d.ts","../node_modules/boxen/node_modules/type-fest/source/require-all-or-none.d.ts","../node_modules/boxen/node_modules/type-fest/source/require-one-or-none.d.ts","../node_modules/boxen/node_modules/type-fest/source/single-key-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/partial-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/required-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/subtract.d.ts","../node_modules/boxen/node_modules/type-fest/source/paths.d.ts","../node_modules/boxen/node_modules/type-fest/source/pick-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-splice.d.ts","../node_modules/boxen/node_modules/type-fest/source/literal-union.d.ts","../node_modules/boxen/node_modules/type-fest/source/union-to-tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/omit-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-null.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-unknown.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-unknown.d.ts","../node_modules/boxen/node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/undefined-on-partial-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/readonly-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/promisable.d.ts","../node_modules/boxen/node_modules/type-fest/source/arrayable.d.ts","../node_modules/boxen/node_modules/type-fest/source/tagged.d.ts","../node_modules/boxen/node_modules/type-fest/source/invariant-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-optional.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-readonly.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-required.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-required-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-non-nullable.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-non-nullable-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/value-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/async-return-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-except.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-pick.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-pick-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/stringified.d.ts","../node_modules/boxen/node_modules/type-fest/source/join.d.ts","../node_modules/boxen/node_modules/type-fest/source/sum.d.ts","../node_modules/boxen/node_modules/type-fest/source/less-than-or-equal.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-slice.d.ts","../node_modules/boxen/node_modules/type-fest/source/string-slice.d.ts","../node_modules/boxen/node_modules/type-fest/source/fixed-length-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/multidimensional-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/iterable-element.d.ts","../node_modules/boxen/node_modules/type-fest/source/entry.d.ts","../node_modules/boxen/node_modules/type-fest/source/entries.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-return-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-parameter-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/asyncify.d.ts","../node_modules/boxen/node_modules/type-fest/source/jsonify.d.ts","../node_modules/boxen/node_modules/type-fest/source/jsonifiable.d.ts","../node_modules/boxen/node_modules/type-fest/source/find-global-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/structured-cloneable.d.ts","../node_modules/boxen/node_modules/type-fest/source/schema.d.ts","../node_modules/boxen/node_modules/type-fest/source/literal-to-primitive.d.ts","../node_modules/boxen/node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/string-key-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/exact.d.ts","../node_modules/boxen/node_modules/type-fest/source/readonly-tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/override-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/has-optional-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/writable-keys-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/readonly-keys-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/has-readonly-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/has-writable-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/spread.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/tuple-to-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/tuple-to-union.d.ts","../node_modules/boxen/node_modules/type-fest/source/int-range.d.ts","../node_modules/boxen/node_modules/type-fest/source/int-closed-range.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-indices.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-values.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-field-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/shared-union-fields.d.ts","../node_modules/boxen/node_modules/type-fest/source/all-union-fields.d.ts","../node_modules/boxen/node_modules/type-fest/source/shared-union-fields-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-null.d.ts","../node_modules/boxen/node_modules/type-fest/source/words.d.ts","../node_modules/boxen/node_modules/type-fest/source/camel-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/camel-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/delimiter-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/kebab-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/delimiter-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/kebab-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/pascal-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/pascal-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/snake-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/snake-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/screaming-snake-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/split.d.ts","../node_modules/boxen/node_modules/type-fest/source/replace.d.ts","../node_modules/boxen/node_modules/type-fest/source/string-repeat.d.ts","../node_modules/boxen/node_modules/type-fest/source/includes.d.ts","../node_modules/boxen/node_modules/type-fest/source/get.d.ts","../node_modules/boxen/node_modules/type-fest/source/last-array-element.d.ts","../node_modules/boxen/node_modules/type-fest/source/global-this.d.ts","../node_modules/boxen/node_modules/type-fest/source/package-json.d.ts","../node_modules/boxen/node_modules/type-fest/source/tsconfig-json.d.ts","../node_modules/boxen/node_modules/type-fest/index.d.ts","../node_modules/cli-boxes/index.d.ts","../node_modules/boxen/index.d.ts","../src/swarm-fullstack/core/enhanced-swarm-message-router.ts","../src/swarm-fullstack/core/dynamic-agent-spawner.ts","../src/swarm-fullstack/core/fullstack-orchestrator.ts","../src/swarm-fullstack/cli/fullstack-cli.ts","../src/swarm-fullstack/config/fullstack-config.ts","../src/hooks/communication-integrated-post-edit.js","../src/swarm-fullstack/integrations/communication-bridge.ts","../src/swarm-fullstack/testing/api-contract-validator.ts","../src/swarm-fullstack/testing/backend-test-orchestrator.ts","../src/swarm-fullstack/testing/frontend-test-orchestrator.ts","../src/swarm-fullstack/testing/visual-regression.ts","../src/swarm-fullstack/workflows/fix-coordinator.ts","../src/swarm-fullstack/workflows/workflow-metrics.ts","../src/swarm-fullstack/workflows/test-result-analyzer.ts","../src/swarm-fullstack/workflows/regression-test-manager.ts","../src/swarm-fullstack/workflows/iterative-build-test.ts","../src/swarm-fullstack/workflows/convergence-detector.ts","../src/swarm-fullstack/workflows/index.ts","../src/task/commands.ts","../src/task/index.ts","../src/test-utils/caller-identity-helper.ts","../src/test-utils/mock-rbac-manager.ts","../src/testing/performance/PerformanceTestRunner.ts","../src/testing-integration/chrome-mcp-integration.ts","../src/testing-integration/continuous-test-runner.ts","../src/topology/adaptive-coordinator.ts","../src/topology/types.ts","../src/topology/enhanced-hierarchical-coordinator.ts","../src/topology/enhanced-mesh-coordinator.ts","../src/topology/topology-manager.ts","../src/types/cliffy.d.ts","../src/types/global.d.ts","../src/types/index.ts","../src/types/mcp.d.ts","../src/types/swarm.ts","../src/types/vscode.d.ts","../src/ui/hive-dashboard.ts","../src/validation/fullstack-integration-validator.ts","../src/validation/production-validator.ts","../src/validators/index.ts","../src/validators/todowrite-batching-validator.ts","../src/validators/todowrite-integration.ts","../src/verification/telemetry.ts","../src/verification/agent-scorer.ts","../src/verification/alert-manager.ts","../src/verification/interfaces.ts","../src/verification/checkpoint-compression.ts","../src/verification/checkpoint-manager.ts","../src/verification/checkpoint-compression-demo.ts","../src/verification/hooks.ts","../src/verification/cli-integration.ts","../src/verification/conflict-resolver.ts","../src/verification/crdt-coordinator.ts","../src/verification/dashboard-exporter.ts","../src/verification/memory-manager.ts","../src/verification/demo.ts","../src/verification/examples.ts","../src/verification/middleware.ts","../src/verification/rollback-engine.ts","../src/verification/rollback.ts","../src/verification/security-bypass-test.ts","../src/verification/security.ts","../src/verification/simple-hooks.ts","../src/verification/system-tracker.ts","../src/verification/test-verification.ts","../src/verification/tests.ts","../src/verification/verification-pipeline.ts","../src/verification/api/types/index.ts","../src/wasm-ast/index.ts","../src/wasm-ast/wasm-ast-coordinator.ts","../src/wasm-ast/demo/wasm-ast-demo.ts","../src/wasm-ast/engine/wasm-engine.ts","../src/wasm-ast/performance/performance-monitor.ts","../src/wasm-ast/processors/real-time-processor.ts","../src/wasm-ast/tests/wasm-ast-test-suite.ts","../src/wasm-ast/transformers/code-transformation-pipeline.ts","../src/wasm-ast/types/ast-types.ts","../src/websocket/swarmWebSocketServer.ts","../src/workflows/feature-lifecycle-manager.ts","../src/workflows/fullstack-coordination-manager.ts","../src/workflows/iterative-development-orchestrator.ts","../src/workflows/progressive-rollout-manager.ts"],"fileIdsList":[[293,340],[293,340,663,675],[65,77,293,340],[293,340,659,660,664,665,666,667,668,669,670,671,672,673,674],[293,340,663],[293,340,663,664],[293,340,659,663],[293,340,664],[61,62,66,67,68,69,70,71,72,73,74,75,76,293,340],[65,293,340],[65,66,293,340],[61,65,293,340],[66,293,340],[293,340,663,675,681],[65,77,83,293,340],[293,340,677,678,679,680],[79,80,81,82,293,340],[293,340,676,682,683,684,685,686,687,688,689,690],[78,84,85,86,87,88,89,90,91,92,293,340],[293,340,661,662],[293,340,370],[63,64,293,340],[293,340,597,1354,1355,1356],[293,340,341,370,1354,1355],[293,340,597,1354,1356],[293,340,370,1354,1355],[293,340,597,1353,1354,1355],[293,340,1354],[293,340,597,1353],[293,340,753,758],[293,340,752,753,758],[293,340,752,758,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876],[293,340,877],[293,340,753,754,755,756,757,758,778,785,808,852,853,854,857,858,860],[293,340,388,754,758],[293,340,388,752,753,754,755,756,757],[293,340,843],[293,340,841,842,843,844,845],[293,340,841,842,843],[293,340,370,388,753,758,854],[293,340,388,756,758,847,854],[293,340,351,388,752,753,758,794,839,840,846,847,848,849,850,851,852,853],[293,340,388,754,758,839,854],[293,340,752,758,839,849],[293,340,752,758],[293,340,351,388,758,848,849,850,852,854],[293,340,388,758,848],[293,340,351,359,378,388,758],[293,340,370,388,758,847,852,854,857],[293,340,351,388,758,839,840,847,848,852,854,855,856],[293,340,753,758,763],[293,340,753,758,768],[293,340,758,779,861],[293,340,753,758,783],[293,340,758,799,861],[293,340,753,758,760],[293,340,753,758,811],[293,340,752,753,758,822],[293,340,752,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,861],[293,340,388,758],[293,340,758],[293,340,351,388,752,758,847,848,849,852,854,858,859],[293,340,752,758,839,849,858],[293,340,758,839,840,848,852,854,860],[293,340,752,753,758,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893],[293,340,894],[293,340,753,758,896,897],[293,340,753,758,898],[293,340,753,758,899],[293,340,753,758,897],[293,340,753,758,861],[293,340,753,758,897,898],[293,340,752,753,758,896],[293,340,758,861,897],[293,340,388,752,758,861,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910],[293,340,896,897,898,911],[293,340,753,758,914],[293,340,753,758,915],[293,340,753,758,913,914],[293,340,753,758,914,917],[293,340,753,758,920],[293,340,752,753,758,914],[293,340,752,753,758,914,923],[293,340,752,753,758,914,925],[293,340,752,753,758,914,925,926,927],[293,340,388,752,753,758,914,925,926],[293,340,388,752,753,758,913],[293,340,388,752,758,861,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931],[293,340,917,925,926,932],[293,340,354,388,512],[293,340,354,388],[293,340,351,354,388,506,507,508],[293,340,509,511,513],[293,340,352,388,564,565],[293,340,352,381,388],[293,337,340],[293,339,340],[340],[293,340,345,373],[293,340,341,346,351,359,370,381],[293,340,341,342,351,359],[288,289,290,293,340],[293,340,343,382],[293,340,344,345,352,360],[293,340,345,370,378],[293,340,346,348,351,359],[293,339,340,347],[293,340,348,349],[293,340,350,351],[293,339,340,351],[293,340,351,352,353,370,381],[293,340,351,352,353,366,370,373],[293,340,348,351,354,359,370,381],[293,340,351,352,354,355,359,370,378,381],[293,340,354,356,370,378,381],[291,292,293,294,295,296,297,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387],[293,340,351,357],[293,340,358,381,386],[293,340,348,351,359,370],[293,340,360],[293,340,361],[293,339,340,362],[293,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387],[293,340,364],[293,340,365],[293,340,351,366,367],[293,340,366,368,382,384],[293,340,351,370,371,373],[293,340,372,373],[293,340,370,371],[293,340,373],[293,340,374],[293,337,340,370,375],[293,340,351,376,377],[293,340,376,377],[293,340,345,359,370,378],[293,340,379],[293,340,359,380],[293,340,354,365,381],[293,340,345,382],[293,340,370,383],[293,340,358,384],[293,340,385],[293,335,340],[293,335,340,351,353,362,370,373,381,384,386],[293,340,370,387],[293,340,352,370,388,505],[293,340,354,388,506,510],[293,340,351,354,356,359,370,378,381,387,388],[293,340,1159],[293,340,1159,1160,1161],[293,340,1118,1119,1123,1150,1151,1153,1154,1155,1157,1158],[293,340,1116,1117],[293,340,1116],[293,340,1118,1158],[293,340,1118,1119,1155,1156,1158],[293,340,1158],[293,340,1115,1158,1159],[293,340,1118,1119,1157,1158],[293,340,1118,1119,1121,1122,1157,1158],[293,340,1118,1119,1120,1157,1158],[293,340,1118,1119,1123,1150,1151,1152,1153,1154,1157,1158],[293,340,1115,1118,1119,1123,1155,1157],[293,340,1123,1158],[293,340,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1158],[293,340,1148,1158],[293,340,1124,1135,1143,1144,1145,1146,1147,1149],[293,340,1128,1158],[293,340,1136,1137,1138,1139,1140,1141,1142,1158],[293,340,1622,1623],[293,340,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1492,1493,1494,1495,1496,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1511,1512,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621],[293,340,1463,1473,1492,1499,1592],[293,340,1482],[293,340,1479,1482,1483,1485,1486,1499,1526,1554,1555],[293,340,1473,1486,1499,1523],[293,340,1473,1499],[293,340,1564],[293,340,1499,1596],[293,340,1473,1499,1597],[293,340,1499,1597],[293,340,1500,1548],[293,340,1472],[293,340,1466,1482,1499,1504,1510,1549],[293,340,1548],[293,340,1480,1495,1499,1596],[293,340,1473,1499,1596,1600],[293,340,1499,1596,1600],[293,340,1463],[293,340,1492],[293,340,1562],[293,340,1458,1463,1482,1499,1531],[293,340,1482,1499],[293,340,1499,1524,1527,1574,1613],[293,340,1485],[293,340,1479,1482,1483,1484,1499],[293,340,1468],[293,340,1580],[293,340,1469],[293,340,1579],[293,340,1476],[293,340,1466],[293,340,1471],[293,340,1530],[293,340,1531],[293,340,1554,1587],[293,340,1499,1523],[293,340,1472,1473],[293,340,1474,1475,1488,1489,1490,1491,1497,1498],[293,340,1476,1480,1489],[293,340,1471,1473,1479,1489],[293,340,1463,1468,1469,1472,1473,1482,1489,1490,1492,1495,1496,1497],[293,340,1475,1479,1481,1488],[293,340,1473,1479,1485,1487],[293,340,1458,1471,1476],[293,340,1477,1479,1499],[293,340,1458,1471,1472,1479,1499],[293,340,1472,1473,1496,1499],[293,340,1460],[293,340,1459,1460,1466,1471,1473,1476,1479,1499,1531],[293,340,1499,1596,1600,1604],[293,340,1499,1596,1600,1602],[293,340,1462],[293,340,1486],[293,340,1493,1572],[293,340,1458],[293,340,1473,1493,1494,1495,1499,1504,1510,1511,1512,1513,1514],[293,340,1492,1493,1494],[293,340,1482,1523],[293,340,1470,1501],[293,340,1477,1478],[293,340,1471,1473,1482,1499,1514,1524,1526,1527,1528],[293,340,1495],[293,340,1460,1527],[293,340,1471,1499],[293,340,1495,1499,1532],[293,340,1499,1597,1606],[293,340,1466,1473,1476,1485,1499,1523],[293,340,1462,1471,1473,1492,1499,1524],[293,340,1499],[293,340,1472,1496,1499],[293,340,1472,1496,1499,1500],[293,340,1472,1496,1499,1517],[293,340,1499,1596,1600,1609],[293,340,1492,1499],[293,340,1473,1492,1499,1524,1528,1544],[293,340,1492,1499,1500],[293,340,1473,1499,1531],[293,340,1473,1476,1499,1514,1522,1524,1528,1542],[293,340,1468,1473,1492,1499,1500],[293,340,1471,1473,1499],[293,340,1471,1473,1492,1499],[293,340,1499,1510],[293,340,1467,1499],[293,340,1480,1483,1484,1499],[293,340,1469,1492],[293,340,1479,1480],[293,340,1499,1553,1556],[293,340,1459,1569],[293,340,1479,1487,1499],[293,340,1479,1499,1523],[293,340,1473,1496,1584],[293,340,1462,1471],[293,340,1492,1500],[58,59,293,340],[293,340,380],[293,340,636],[293,340,1109],[293,340,1309,1310,1311,1313,1314,1315,1316,1317,1318,1319,1320,1321],[293,340,1304,1308,1309,1310],[293,340,1304,1308,1311],[293,340,1314,1316,1317],[293,340,1312],[293,340,1304,1308,1310,1311,1312],[293,340,1313],[293,340,1309],[293,340,1308,1309],[293,340,1308,1315],[293,340,1305],[293,340,1305,1306,1307],[293,340,642,644,648,649,652],[293,340,653],[293,340,644,648,651],[293,340,642,644,648,651,652,653,654],[293,340,648],[293,340,644,648,649,651],[293,340,642,644,649,650,652],[293,340,389,391,395,396,399],[293,340,400],[293,340,391,395,398],[293,340,389,391,395,398,399,400,401],[293,340,395],[293,340,391,395,396,398],[293,340,389,391,396,397,399],[293,340,645,646,647],[293,340,392,393,394],[293,340,354],[282,293,340,663,691,692,693],[282,293,340,663,691],[282,293,340,663,692],[65,93,282,283,284,293,340],[65,93,282,293,340],[65,282,283,293,340],[293,340,1110],[293,340,578],[293,340,578,579],[293,340,351,374,388],[293,340,748],[293,340,464,465,466,467],[293,340,465],[293,340,465,466],[293,340,352,361,642,643],[293,340,352,361,389,390],[293,340,388,752,758,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,912,913,915,916,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933],[94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,213,214,215,217,226,228,229,230,231,232,233,235,236,238,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,293,340],[139,293,340],[97,98,293,340],[94,95,96,98,293,340],[95,98,293,340],[98,139,293,340],[94,98,216,293,340],[96,97,98,293,340],[94,98,293,340],[98,293,340],[97,293,340],[94,97,139,293,340],[95,97,98,255,293,340],[97,98,255,293,340],[97,263,293,340],[95,97,98,293,340],[107,293,340],[130,293,340],[151,293,340],[97,98,139,293,340],[98,146,293,340],[97,98,139,157,293,340],[97,98,157,293,340],[98,198,293,340],[94,98,217,293,340],[223,225,293,340],[94,98,216,223,224,293,340],[216,217,225,293,340],[223,293,340],[94,98,223,224,225,293,340],[239,293,340],[234,293,340],[237,293,340],[95,97,217,218,219,220,293,340],[139,217,218,219,220,293,340],[217,219,293,340],[97,218,219,221,222,226,293,340],[94,97,293,340],[98,241,293,340],[99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,293,340],[227,293,340],[293,340,1322,1323,1324,1325],[293,340,1304,1322,1323,1324],[293,340,1304,1323,1325],[293,340,1304],[293,340,1080],[293,340,1080,1081,1082,1083],[293,307,311,340,381],[293,307,340,370,381],[293,302,340],[293,304,307,340,378,381],[293,340,359,378],[293,340,388],[293,302,340,388],[293,304,307,340,359,381],[293,299,300,303,306,340,351,370,381],[293,307,314,340],[293,299,305,340],[293,307,328,329,340],[293,303,307,340,373,381,388],[293,328,340,388],[293,301,302,340,388],[293,307,340],[293,301,302,303,304,305,306,307,308,309,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,329,330,331,332,333,334,340],[293,307,322,340],[293,307,314,315,340],[293,305,307,315,316,340],[293,306,340],[293,299,302,307,340],[293,307,311,315,316,340],[293,311,340],[293,305,307,310,340,381],[293,299,304,307,314,340],[293,302,307,328,340,386,388],[293,340,608,609,610,611,612,613,614,616,617,618,619,620,621,622,623],[293,340,608],[293,340,608,615],[293,340,404,427,428,432,434,435],[293,340,404,408,411,420,421,422,425,427,428,433,435],[293,340,412,422,428,434],[293,340,434],[293,340,403],[293,340,403,404,408,411,412,420,421,422,425,426,427,428,432,433,434,436,437,438,439,440,441,442],[293,340,407,408,409,411,420,428,432,434],[293,340,421,422,428],[293,340,407,408,409,411,420,421,427,432,433,434],[293,340,407,409,421,422,423,424,428,432],[293,340,407,428,432],[293,340,407,408,409,410,419,422,425,428,432],[293,340,407,408,409,410,422,423,425,428,432],[293,340,407,420,425],[293,340,408,411,420,425,428,433,434],[293,340,428,434],[293,340,403,405,406,408,412,422,425,426,428,435],[293,340,404,408,428,432],[293,340,432],[293,340,429,430,431],[293,340,405,427,428,434,436],[293,340,412,421,425,427],[293,340,412],[293,340,412,427],[293,340,408,409,411,420,422,423,427,428],[293,340,407,411,412,419,420,422],[293,340,407,408,409,412,419,420,422,425],[293,340,427,433,434],[293,340,408],[293,340,408,409],[293,340,406,407,409,413,414,415,416,417,418,420,423,425],[293,340,596],[293,340,584,585,586],[293,340,587,588],[293,340,584,585,587,589,590,595],[293,340,585,587],[293,340,595],[293,340,587],[293,340,584,585,587,590,591,592,593,594],[60,285,286,293,340],[293,340,352,361,402,443],[48,49,50,51,52,293,340,341,351],[51,52,293,340,351],[293,340,444],[48,49,293,340,351,458,459],[293,340,444,458],[54,293,340],[49,293,340,362,462,473],[293,340,444,446],[49,293,340,351,362,462,472],[49,293,340,345,448,492],[293,340,448],[48,49,293,340,351,494,496,502],[48,49,293,340,351,494,496,498,501],[49,293,340,448,450,492,496],[47,49,53,293,340,448,492,496,502,514,524,530,531],[293,340,351,537],[49,293,340,351,543,544],[49,293,340,351,543,546,547,548,549],[49,293,340,351,520],[293,340,543,544,545],[49,293,340,351],[49,293,340,543],[293,340,543,544,545,549,550,554,556,557],[293,340,556],[49,293,340,351,352,361,390,546,550,554,555],[49,293,340,351,543,550],[49,293,340,351,352,361,545,552,553],[293,340,351,353,361],[293,340,352,361],[49,50,51,52,293,340,1184],[48,49,50,51,52,293,340,351],[51,293,340,1184],[48,49,50,51,52,53,293,340,445,1184,1185,1186,1187,1188,1189,1191,1192],[60,293,340,361,566,962],[293,340,363,965,1006,1008,1009,1029,1031,1032,1033,1034,1035,1036,1037,1041,1043,1044,1046,1047,1050,1053,1054,1057,1058,1068,1070,1071,1072,1073,1074,1075,1078,1079,1085,1087,1088,1092,1094,1095,1096,1097,1098,1099,1100],[49,293,340,352,361,498,1194],[49,50,52,53,293,340,445],[47,49,50,52,53,60,285,286,293,340,353,361,456,637,937,1656],[49,60,285,293,340,496,498,502,637,1656],[48,60,293,340,341,352,637,1656],[293,340,353,496,963,1200],[60,293,340,352,567,637,1656],[60,285,293,340,361,566,637,1656],[49,60,293,340,567,698,699,700,701,702,703,963],[60,293,340,352,361,381],[60,286,293,340,341,353,361,382,637,749,751,1656],[293,340,637,965,1656],[60,285,286,293,340,637,965,1656],[293,340,637,949,950,951,952,953,957,958,959,960,1656],[60,293,340,637,736,749,939,941,948,1656],[60,293,340,637,939,944,1065,1224,1656],[60,285,293,340,637,956,1656],[60,286,293,340,637,956,1656],[60,285,293,340,637,736,749,939,941,948,1656],[60,286,293,340,637,736,939,948,1656],[60,285,293,340,637,736,939,948,1656],[48,293,340,546,572,963],[293,340,1086],[49,293,340,341,361,1055,1086],[49,50,52,53,60,293,340,341,353,456,498,567,568,569,635,638,639,697,704,705,743,745,746,747,935,936,938,949,950,951,952,953,957,958,959,960,961,963],[60,293,340,637,1178,1656],[49,50,60,293,340,567,729,1655],[60,286,293,340,352,637,1656],[60,293,340,361,637,640,641,656,695,696,1656],[60,286,293,340,352,637,736,1656],[60,293,340,352,361,637,1108,1164,1656],[48,49,293,340,728,963,1199],[48,60,285,286,293,340,352,361,637,736,1656],[60,285,293,340,341,352,353,361,382,637,749,751,934,1656],[60,293,340,341,353,366,963],[293,340,742],[293,340,707,731,733,734,741],[49,50,60,293,340,456,524,567,706,707,713,729,730],[60,293,340,707,731],[293,340,732],[49,50,60,285,293,340,341,352,707,731,733,734,736,740,1655],[47,50,60,293,340,731],[60,286,293,340,352,637,736,744,1656],[293,340,637,1042,1089,1090,1091,1656],[48,293,340,352,519,546,570,572,573,574,634,963],[47,48,60,293,340,352,498,637,1656],[60,293,340,627,637,1210,1656],[60,285,293,340,352,361,749,1084],[293,340,963,1220],[60,293,340,353,637,751,934,1656],[49,293,340,1222],[48,60,285,286,293,340,352,498,637,736,1656],[60,293,340,352],[293,340,1226,1227,1228,1229,1230],[293,340,341,352,382,1226,1227],[293,340,1226,1227],[293,340,1226,1227,1228,1229,1230,1231,1232,1233],[293,340,352,1226],[293,340,1226,1227,1228],[47,60,286,293,340,363],[293,340,744,965],[293,340,744],[49,60,293,340,567,637,638,736,743,744,745,746,747,938,964,1102,1103,1104,1105,1106,1107,1165,1166,1656],[293,340,353,361],[293,340,353,361,1239],[293,340,353,361,738,1235,1236,1237,1238,1240],[293,340,353],[47,49,50,53,60,293,340,351,353,361,448,456,730,1169,1177],[293,340,361,381,962,963],[293,340,341,352,353,361,363,381],[60,285,286,293,340,341,353,361,366],[60,285,293,340,353,363,749],[60,285,293,340,749,1076,1077],[47,48,60,285,286,293,340,352,736],[293,340,382],[293,340,352,738,744,1101],[293,340,738,1031],[293,340,352,361,381,738,1030,1048,1049],[293,340,341,352,361,738,1051],[293,340,352,361,738,1052],[293,340,352,737,738,987],[293,340,341,353,360,361,366,1048],[293,340,738],[60,293,340,352,353,361,738],[293,340,341,353,360,361,738,1045],[293,340,341,352,353,361,382,738],[60,293,340,352,361],[60,285,293,340,341,352,361,737,1069],[60,285,293,340,341,352,353,361,366,450,737,749,956,965,1059,1060,1061,1063,1064,1065,1066,1067],[293,340,956],[293,340,345,351],[293,340,351,1061,1062],[60,293,340,352,353,361,450,749],[293,340,341,352,361,450,451],[293,340,351,361,362,386,450],[293,340,351,362],[293,340,351],[60,293,340,352,353,361,451,737,954,955],[293,340,352,361,738],[293,340,352,361,738,1003,1055,1056],[293,340,353,361,738,1003],[293,340,352,361,381],[293,340,352,363,737,738,974,976,977,984,985,986,1006],[293,340,352],[293,340,352,361,975,978,979],[293,340,352,361,971,972,975],[293,340,353,360],[293,340,737],[293,340,352,361,450,738],[293,340,341,352,353,361,363,381,382,705,738,967,974,975,976,977,980,981,982,983,985,986,987,993,998,999,1000,1001,1002,1005],[293,340,352,737],[293,340,738,994,995,996,997],[293,340,352,363,737,968,969,970,976],[293,340,352,361,381,705,737,973,974],[293,340,988,989,990,991,992],[293,340,341,352,361,381,738],[293,340,352,361,737,738],[293,340,352,737,738,1007],[293,340,341,352,361,381],[293,340,353,360,361,362,738],[293,340,341,353,361,366,382],[293,340,362,1030],[293,340,352,360,361,362],[293,340,738,739,1038],[293,340,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027],[293,340,341,352,363,382,737,738,1028],[293,340,341,731,732,738,739,740,1039],[293,340,352,353,737,738,739,740,1039],[293,340,1040],[293,340,352,360,738],[293,340,341],[60,293,340,352,361,450,737],[293,340,739],[293,340,341,352,353,361,363,381,737,1042],[293,340,637,738,1656],[293,340,341,353,361,382],[293,340,341,353,361],[293,340,341,345,353,361,382,1093],[293,340,352,354,361,381,514,716,738,739],[293,340,354,637,1656],[293,340,341,351,354,361,381,514,716,717],[60,293,340,366],[60,293,340,497,1242],[293,340,1242,1243],[293,340,341,352,353,382,737],[60,293,340],[293,340,352,361,1108,1164],[293,340,352,360,361],[293,340,352,934],[60,293,340,1059],[293,340,353,965],[49,50,293,340,351,362,1248],[293,340,351,362,1248,1253,1254],[48,49,50,51,293,340,351],[293,340,1257,1258],[293,340,362,386],[293,340,351,362,386,716],[48,49,293,340,351,941,945,1262],[293,340,386],[293,340,354,386,716],[293,340,362],[49,60,293,340,1216,1219],[293,340,353,361,1003],[293,340,1277],[293,340,341,352,361,382],[293,340,345,351,352,360,361],[293,340,351,352,360,361,366],[293,340,351,443,1277,1278,1279,1280,1281],[293,340,496,1268,1269,1270,1271],[293,340,351,1282],[293,340,351,352,360,361],[293,340,352,361,496],[293,340,345,351,352],[48,49,293,340,352,361],[293,340,496,1199],[293,340,345,352,360,361,443],[293,340,352,361,402],[293,340,496],[293,340,345,352,360,361],[293,340,352,360,361,496],[49,293,340,461,575,576,577,604,631],[47,49,50,293,340,515,518,519,520],[48,49,50,51,293,340,341,351,497,520],[48,49,293,340,341,351,353,361],[49,50,293,340],[49,293,340,546,547],[49,293,340,546],[293,340,461,604,605,631],[47,49,50,293,340],[49,293,340,500,577,631,632,633],[47,49,293,340,448],[293,340,345,351,362],[293,340,345],[48,49,293,340,351,500,520,601],[48,293,340,351],[293,340,461,515,516,517,518,519,520,521,522,523,524,604,605,606,607,626,628,629,630],[293,340,546],[49,50,51,293,340,351,497,518],[47,49,50,293,340,448,515,516,517,521,522,523],[48,49,293,340,351],[47,48,49,50,293,340],[47,48,49,50,293,340,448],[49,293,340,351,546,583,602,604],[47,48,49,293,340,351,519,546,583,598,599,600,601,603],[49,293,340],[49,293,340,598],[47,48,49,293,340,351,583],[293,340,575],[293,340,575,576,577,581,583],[293,340,576],[293,340,577],[293,340,351,580,581,582],[293,340,627,1210,1211,1296],[293,340,351,576,577],[49,293,340,576,577,627,1210],[49,293,340,351,576,577,624,627],[293,340,572],[48,49,50,293,340,351,456,521,571],[49,293,340,351,353,360,361,362],[47,49,50,293,340,351,448,519,546,1286],[293,340,625,627],[49,293,340,351,461,523,604,624,625],[293,340,597],[54,55,293,340,501],[47,48,293,340,345,352,360,361,448],[47,48,293,340],[56,293,340,1300],[47,48,293,340,352,361,363],[49,50,293,340,567,568],[47,48,49,50,293,340,353,361,448,456,496,502,524,713,729],[293,340,353,361,450],[54,293,340,352,361],[293,340,351,1326],[49,293,340,351,353,361,567],[49,293,340,345,351,353,361,567],[49,293,340,341,351,353,361,567],[293,340,698,699,700,701,702,703],[60,293,340,637,1339,1656],[293,340,1334,1335,1336,1337,1338],[293,340,351,353,361,1334,1335,1336],[293,340,351,353,361,1334,1337],[293,340,341,351,1334,1335],[293,340,345,351,1334],[293,340,351,624,939,940,941],[293,340,351,939,941,942],[293,340,351,353,361,381,451],[293,340,351,624,939,941,942,943,944,945,946,947],[293,340,351,362,939,940,941],[293,340,351,362,939,944],[293,340,351,624,939,940,941,942],[293,340,939,940,941,942,943,944,945,946,947,948],[293,340,351,939,940,941],[293,340,341,351,382,497],[293,340,351,939,940,941,942,948],[293,340,351,353,361,462,1056,1258,1259],[293,340,341,353,361,382,384],[293,340,1170,1177,1222],[53,54,55,56,293,340],[47,49,50,53,293,340,456,496,498,569,572,729,1344,1347,1348,1349],[47,293,340,351,457],[48,49,50,293,340,351,456,457],[47,293,340,450,457],[49,50,293,340,351,353,361,448,941,942,946,947,948,1168],[47,49,293,340,345,448],[293,340,353,361,381,1359,1658],[47,49,293,340,723,725],[47,49,293,340,351,714,1366],[47,49,293,340,351,714,715,719,720,721,722,723,724,726,727,729,1368,1369,1370,1371],[293,340,341,1360,1658],[47,49,293,340,351,448,729],[47,49,293,340,351,448,729,1368,1369,1370],[47,49,293,340,351,362],[49,293,340,351,1367],[47,49,293,340,352,361],[47,49,293,340,341,351,382],[293,340,1361,1362,1363,1364,1365],[47,49,293,340,351,1361,1362,1363,1364,1367],[47,49,293,340,448,720],[47,48,49,293,340,352,361],[293,340,729,1360],[47,49,50,293,340,360,362,448,501,714,715,719,720,721,722,723,724,726,727,728],[293,340,353,361,381],[47,49,293,340],[47,49,293,340,351,448],[47,293,340],[47,49,293,340,354,361,381,448,514,714,716,717,718],[47,49,293,340,352,363,366,448,714],[48,49,293,340,345,351,352,361,381],[47,49,293,340,352,361,448,449],[47,49,293,340,352,361,448,449,451],[293,340,954],[293,340,451,1003,1004],[293,340,955],[47,49,50,293,340,448,449,452,453,454,455],[293,340,352,1248],[293,340,1248],[49,293,340,351,352,361,1194],[293,340,352,360,361,381,451,955],[293,340,358,361,381,450],[48,49,50,293,340,351,353,361,456],[293,340,1248,1250,1251,1252],[293,340,352,361,737],[60,293,340,361,640,641,656,695,1655],[60,293,340,361,363,566],[60,293,340,345,361,566,640,641,655],[60,293,340,345,361,381,566,640,641,655,656,657,658,694],[60,293,340,361,566,640,641,655],[60,293,340,640],[60,293,340,345,361,566,640,641,694],[49,293,340,351,362,473],[293,340,1385,1386,1387,1388],[293,340,1385,1386],[293,340,1385,1386,1387,1388,1389],[49,50,293,340,352,361,498,1349,1350,1381],[49,50,293,340,498,1349,1350],[49,50,293,340,351],[49,50,293,340,351,1391,1392,1393,1394],[293,340,351,716],[49,50,51,52,293,340,351],[293,340,351,1170],[293,340,1170,1397,1398],[293,340,351,1170,1171,1397],[293,340,500],[293,340,352,361,450,500],[48,49,293,340,351,499],[293,340,352,361,1108,1112,1113,1114,1163],[293,340,352,361,1108,1112],[60,293,340,360,361,566],[60,285,293,340,361,566,749],[293,340,352,361,1402],[293,340,502,1402,1404],[48,49,293,340,351,1402],[293,340,1402,1404],[293,340,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413],[49,293,340,351,496,1402,1405,1406,1407,1408,1409,1410,1411],[293,340,500,1402,1403],[49,293,340,496,1402,1412],[293,340,501,1402,1404],[293,340,341,351,352,382],[293,340,934],[293,340,345,352,361],[293,340,750],[49,293,340,351,1170],[49,293,340,1170,1171,1172,1173,1174,1175,1176],[293,340,1170,1171],[49,293,340,351,1455],[49,60,285,293,340,361,566,637,749,1084,1456,1457,1624,1627,1656],[293,340,352,360,361,597],[47,293,340,351,1454,1455],[49,293,340,351,1455,1456,1457,1625,1626],[49,293,340,351,462,1455,1625,1627,1630],[49,293,340,351,353,361],[293,340,1454],[49,293,340,351,1640],[49,293,340,351,546,1455,1640],[293,340,1636,1637,1638,1639,1640,1641],[49,293,340,351,546,1455,1636,1637,1638,1639,1641],[48,49,51,293,340,351,362,456,521,571,572,1426],[48,49,51,293,340,341,351,353,361,362,456,1426],[49,51,293,340,341,361,527],[49,293,340,351,362],[48,49,51,293,340,351,352,526,527,528,529],[49,51,293,340,353,361,381,498],[49,293,340,351,934],[49,293,340,351,934,1445],[49,293,340,351,934,1445,1446,1447,1448,1449],[49,293,340,351,934,1445,1446,1447],[49,293,340,351,934,1450],[48,49,51,60,293,340,341,351,353,360,361,1245],[48,49,51,293,340,341,351,353,360,361],[48,49,51,293,340,351,456,1427],[51,293,340,525,526,530,1426,1432,1433,1434,1435,1436,1437,1438,1439,1452],[48,49,51,293,340,351,352],[47,48,49,51,293,340,351,726,728,1427],[48,49,51,293,340,345,351,353,361],[49,293,340,352,361,370,371,468],[293,340,463,469,470,471,472],[49,51,293,340,351,463,468,469,470,471],[49,293,340,361,637,1434,1435,1436,1656],[49,293,340,353,361,381,386,1434],[49,293,340,345,351,353,361,386],[49,293,340,351,361,1434,1435,1436],[49,293,340,353,361],[48,49,51,293,340,351,362,456],[49,51,293,340,353,361],[48,51,293,340,525,1452],[51,293,340],[48,49,51,293,340,525,1452],[293,340,525,1452],[293,340,345,353,361,386],[293,340,1346],[48,293,340,351,1346,1347],[47,48,293,340,351,1346],[293,340,1345,1346,1347,1643],[293,340,1345,1347],[48,49,293,340,341,360,363,448,708],[48,49,293,340,360,448,708],[47,49,50,293,340,363,448,708,709,710,711,712],[48,49,293,340,448,708],[47,48,49,293,340,448,708],[293,340,341,351,352,361],[293,340,351,352,361],[48,49,293,340,351,458,459,1651],[48,49,293,340,351,458,459,1262,1650,1651,1652,1653],[293,340,351,458,459],[47,293,340,351,444],[286,293,340,637,1656],[293,340,1658],[293,340,1289,1290],[293,340,497],[48,293,340,598],[293,340,341,382],[293,340,1111],[49,293,340,352,361],[293,340,352,360,361,381],[49,60,93,293,340,353,361,749,1212,1215],[49,60,93,293,340,353,361,749,1212,1215,1216,1218],[293,340,1003,1057,1217],[49,293,340,351,362,462,473],[293,340,351,362,462,463,472,1261],[49,293,340,345,352,361,498,1214],[293,340,1159,1162],[49,293,340,572,573],[49,293,340,1667],[49,50,293,340,1667],[293,340,1670,1671,1672],[293,340,345,382,387,1670],[293,340,345,352,361,1670,1671],[49,293,340,1674],[293,340,351,1303],[293,340,1303,1676,1677,1679],[49,293,340,1170,1177],[293,340,351,353,361,1303],[293,340,345,352,361,1670,1672],[293,340,341,345,351,352,361,382,387],[49,50,52,293,340,351],[293,340,1674],[49,51,293,340,498,1213],[49,293,340,351,498,1213,1214],[293,340,351,386],[293,340,351,716,934],[293,340,351,352]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"08665591a80e8f4ddbc0b34a009761ef9f2cf1a0cefd570aa67e1fbdb6a9508c","impliedFormat":99},{"version":"3f2ad7e52fc42f73aa0b27f0f7eb687fe2ab5921f2f481da783c163e4e717ec6","impliedFormat":99},{"version":"d29d0a1ee52ee86cf3e813db1ae836110f26f255537816e8c0e22c039fad1a8d","impliedFormat":99},{"version":"faeeadb0acddcd9dc8217dbbd13ef58feb43fd8461c89776af1149d63e3ada15","impliedFormat":99},{"version":"dd221a1e48892f9f9b82a8893e64b3477aa2c8479512346ea295c43af2ffd48c","impliedFormat":99},{"version":"555ab383b56c52bd3ffedfa79af770ef189e282c2a6b7e9a97306db4cfe5d3d9","impliedFormat":99},{"version":"7d3dd07afc019115b47f0a63615368303f4e87f23adf7f4a3ec038ea2c098ac7","impliedFormat":99},{"version":"2063a5c3cf7877aff86efb315aa3e7bcd1181b7cb33d048a5185fada1e05a70f","impliedFormat":99},{"version":"d2a56c0b6207514dff1e2c4259ac1518aba29ae33b40d0d8c5b2f46781b1e666","impliedFormat":99},{"version":"a75c2d9d21ab489bf165a3b132c6f69dc95fa326cdbf05f3ee0d3ea9c9b93dc9","impliedFormat":99},{"version":"b9958dd4646f8c8a1b5cfd3cbd2a59c33cfed66c9a078c22fecfdc93c32d5af3","impliedFormat":99},{"version":"acfed6cc001e7f7f26d2ba42222a180ba669bb966d4dd9cb4ad5596516061b13","impliedFormat":99},{"version":"f61a4dc92450609c353738f0a2daebf8cae71b24716dbd952456d80b1e1a48b6","impliedFormat":99},{"version":"f3f76db6e76bc76d13cc4bfa10e1f74390b8ebe279535f62243e8d8acd919314","impliedFormat":99},{"version":"c7232a0c933068be4e990bc3dadf348d0ca82c3465d2f369fb65f53afaf6266b","impliedFormat":99},{"version":"cc2d9ba9d5434882cfb9bc2954fe433b5538fa78a40be504c9833a45d1a732ad","impliedFormat":99},{"version":"f4fa7e6424786df98e362cfe4eefa908d6110bc4dcc50235d4d05a97939bb1d3","impliedFormat":99},{"version":"e8ff455f7ee74b0a6ea20a465bd95a1ebf41538e06f7874c7934dc1ae42bd10a","impliedFormat":99},{"version":"4e3592aed54bd51d840e6d078794b45a8388d0accf38efa3267a16742ce88041","impliedFormat":99},{"version":"878abe377ce7ed67901e97ca558cab1411f19ba83a5ec9d372d78a382beec334","impliedFormat":99},{"version":"988be2b47c162ddfc4ac289de0bc50b52fd425d4408cb4bc40fcc9b81f4957c6","impliedFormat":99},{"version":"85cc8408b227080f73a2571c87c66ad3aa624753d599f08ba9906f607c744eb9","impliedFormat":99},{"version":"8da95d257be3f2d83c21c555dedda9c96869e5f855652523cf52dc98ca8c57de","impliedFormat":99},{"version":"aa9494cb36743567c0f6ce385ce869358b59193c9b61612e0d70e4de500424c3","impliedFormat":99},{"version":"904964129f1ef4797282d4ea4411eaf26d4b22bb481b8b8ab3e920d4cfc79ecf","impliedFormat":99},{"version":"ce6ada7f4eb4cda3ccfe28a0201608828fc6ee2d3204101976831100d9550d47","impliedFormat":99},{"version":"5a7fe6ef136e88ee70d3cd0b1aa0d6875178b2682542ca340875a2711c81d779","impliedFormat":99},{"version":"dc30228a4d8faa78799c535a32dcb2a456bccd67a152b7fae0797198476b091f","impliedFormat":99},{"version":"9a1fcfc15915ffb2b16416763898a07aca46ef4ea620c5d5f26793e76f714485","impliedFormat":99},{"version":"ab37b1199441c7ecb602defe46f72099d3d4555f7911bd865f51657f419779ab","impliedFormat":99},{"version":"82b10e97d141910eab0f2a331b69b88e160d1435e8cc35d40c45c8533bbc0c0f","impliedFormat":99},{"version":"44e2419e4abff168e564a6c25b3e3bd6f7bad3c66e5e4560d91f3777a3926426","impliedFormat":99},{"version":"3c656ad2c834314314439f331445e5ba5d178fb67776e69c7b0c0746884450bc","impliedFormat":99},{"version":"8804b8ad255545dadc2e4d4039d45b3c0bfb5c1a103cf68c7a8712877ce7bae0","impliedFormat":99},{"version":"f6468b2c5528cb0e63ba5c2072a66711d7d8b53d0d79ba51633fdd7caaec8366","impliedFormat":99},{"version":"362276986f99951a4f4e99530a5a1804c290b0ea5efb380070ffdad36ad8f65f","impliedFormat":99},{"version":"f738b4d9935f21b36b054b5ce8f72b31179d324af1687d46b7c810e7a0610b9c","impliedFormat":99},{"version":"7d70d1cae06e783afb6104d6c54611ef97052645afbe14b5963bec32c3ce5c7c","impliedFormat":99},{"version":"cffa607eb95c25b119f9aad3c2e4db80384267cd35d398b537a90aee5c5dfa5e","impliedFormat":99},{"version":"9a710119dd285b73683cdbedaa3798e30aa028e5488b28c1b444f119d0d7b39d","impliedFormat":99},{"version":"c0064198c128285cf5b4f16ca3be43c117d0ef5bfa99aeb415c668ccb01a961c","impliedFormat":99},{"version":"1c23e9084091ec02fe4d3666a22b6e0df02fd64cf9d48fcacc56f22f5cfcb8ab","impliedFormat":99},{"version":"f5a8ed3184cd25bbf61ac2b00f322b1325ecc67e6c5323388ee41a7fbb985be0","impliedFormat":99},{"version":"be2ee1cbe2dd84188fa4e296c5bc19b7af8b9d9511381226884d12bdb5285ab7","impliedFormat":99},{"version":"edacf4223ac6d11361a607880e88012d2da04c27aba76f52c08e9167ba34ed2e","impliedFormat":99},{"version":"f21eedef257a2e149e7da0e610ebc2a811f7507f444f8c959c398fbf36804e55","impliedFormat":99},{"version":"736a3485c9e96b87b11fe6e55b5455e9f85ef59edc09bff1eb2f114ef661d1e5","impliedFormat":99},{"version":"073ca26c96184db9941b5ec0ddea6981c9b816156d9095747809e524fdd90e35","impliedFormat":1},{"version":"e41d17a2ec23306d953cda34e573ed62954ca6ea9b8c8b74e013d07a6886ce47","impliedFormat":1},{"version":"241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","impliedFormat":1},{"version":"2ae3787e1498b20aad1b9c2ee9ea517ec30e89b70d242d8e3e52d1e091039695","impliedFormat":1},{"version":"c7c72c4cffb1bc83617eefed71ed68cc89df73cab9e19507ccdecb3e72b4967e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","impliedFormat":1},{"version":"38b38db08e7121828294dec10957a7a9ff263e33e2a904b346516d4a4acca482","impliedFormat":1},{"version":"a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","impliedFormat":1},{"version":"8a2aaea564939c22be05d665cc955996721bad6d43148f8fa21ae8f64afecd37","impliedFormat":1},{"version":"e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","impliedFormat":1},{"version":"e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","impliedFormat":1},{"version":"95950a187596e206d32d5d9c7b932901088c65ed8f9040e614aa8e321e0225ef","impliedFormat":1},{"version":"89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","impliedFormat":1},{"version":"e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","impliedFormat":1},{"version":"71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","impliedFormat":1},{"version":"7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","impliedFormat":1},{"version":"78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","impliedFormat":1},{"version":"5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","impliedFormat":1},{"version":"f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","impliedFormat":1},{"version":"9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","impliedFormat":1},{"version":"3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","impliedFormat":1},{"version":"2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","impliedFormat":1},{"version":"4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","impliedFormat":1},{"version":"61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","impliedFormat":1},{"version":"64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","impliedFormat":1},{"version":"0521108c9f8ddb17654a0a54dae6ba9667c99eddccfd6af5748113e022d1c37a","impliedFormat":1},{"version":"c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","impliedFormat":1},{"version":"ee764e6e9a7f2b987cc1a2c0a9afd7a8f4d5ebc4fdb66ad557a7f14a8c2bd320","impliedFormat":1},{"version":"0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","impliedFormat":1},{"version":"5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","impliedFormat":1},{"version":"e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","impliedFormat":1},{"version":"b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","impliedFormat":1},{"version":"6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","impliedFormat":1},{"version":"d7058e75920120b142a9d57be25562a3cd9a936269fd52908505f530105f2ec4","impliedFormat":1},{"version":"6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","impliedFormat":1},{"version":"0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","impliedFormat":1},{"version":"91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","impliedFormat":1},{"version":"db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","impliedFormat":1},{"version":"758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","impliedFormat":1},{"version":"2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","impliedFormat":1},{"version":"6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","impliedFormat":1},{"version":"a472a1d3f25ce13a1d44911cd3983956ac040ce2018e155435ea34afb25f864c","impliedFormat":1},{"version":"b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","impliedFormat":1},{"version":"792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","impliedFormat":1},{"version":"a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","impliedFormat":1},{"version":"93181bac0d90db185bb730c95214f6118ae997fe836a98a49664147fbcaf1988","impliedFormat":1},{"version":"8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","impliedFormat":1},{"version":"b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","impliedFormat":1},{"version":"4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","impliedFormat":1},{"version":"cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","impliedFormat":1},{"version":"75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","impliedFormat":1},{"version":"b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","impliedFormat":1},{"version":"c54166a85bd60f86d1ebb90ce0117c0ecb850b8a33b366691629fdf26f1bbbd8","impliedFormat":1},{"version":"0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","impliedFormat":1},{"version":"80f23f1d60fbed356f726b3b26f9d348dddbb34027926d10d59fad961e70a730","impliedFormat":1},{"version":"cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","impliedFormat":1},{"version":"cc20bb2227dd5de0aab0c8d697d1572f8000550e62c7bf5c92f212f657dd88c5","impliedFormat":1},{"version":"06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","impliedFormat":1},{"version":"860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","impliedFormat":1},{"version":"f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","impliedFormat":1},{"version":"d0da80c845999a16c24d0783033fb5366ada98df17867c98ad433ede05cd87fd","impliedFormat":1},{"version":"bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","impliedFormat":1},{"version":"fd9a991b51870325e46ebb0e6e18722d313f60cd8e596e645ec5ac15b96dbf4e","impliedFormat":1},{"version":"c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","impliedFormat":1},{"version":"a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","impliedFormat":1},{"version":"d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","impliedFormat":1},{"version":"fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","impliedFormat":1},{"version":"063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","impliedFormat":1},{"version":"314e402cd481370d08f63051ae8b8c8e6370db5ee3b8820eeeaaf8d722a6dac6","impliedFormat":1},{"version":"9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","impliedFormat":1},{"version":"4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","impliedFormat":1},{"version":"656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","impliedFormat":1},{"version":"3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","impliedFormat":1},{"version":"1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","impliedFormat":1},{"version":"af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","impliedFormat":1},{"version":"70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","impliedFormat":1},{"version":"af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","impliedFormat":1},{"version":"cefc20054d20b85b534206dbcedd509bb74f87f3d8bc45c58c7be3a76caa45e1","impliedFormat":1},{"version":"ad6eee4877d0f7e5244d34bc5026fd6e9cf8e66c5c79416b73f9f6ebf132f924","impliedFormat":1},{"version":"4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","impliedFormat":1},{"version":"f4749c102ced952aa6f40f0b579865429c4869f6d83df91000e98005476bee87","impliedFormat":1},{"version":"56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","impliedFormat":1},{"version":"8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","impliedFormat":1},{"version":"05f56cd4b929977d18df8f3d08a4c929a2592ef5af083e79974b20a063f30940","impliedFormat":1},{"version":"547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","impliedFormat":1},{"version":"b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","impliedFormat":1},{"version":"3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","impliedFormat":1},{"version":"140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","impliedFormat":1},{"version":"0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","impliedFormat":1},{"version":"cb46b38d5e791acaa243bf342b8b5f8491639847463ac965b93896d4fb0af0d9","impliedFormat":1},{"version":"7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","impliedFormat":1},{"version":"af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","impliedFormat":1},{"version":"006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","impliedFormat":1},{"version":"7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","impliedFormat":1},{"version":"339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","impliedFormat":1},{"version":"34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","impliedFormat":1},{"version":"9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","impliedFormat":1},{"version":"18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","impliedFormat":1},{"version":"5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","impliedFormat":1},{"version":"5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","impliedFormat":1},{"version":"907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","impliedFormat":1},{"version":"ce60a562cd2a92f37a88f2ddd99a3abfbc5848d7baf38c48fb8d3243701fcb75","impliedFormat":1},{"version":"a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","impliedFormat":1},{"version":"f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","impliedFormat":1},{"version":"75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","impliedFormat":1},{"version":"9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","impliedFormat":1},{"version":"b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","impliedFormat":1},{"version":"b6e2b0448ced813b8c207810d96551a26e7d7bb73255eea4b9701698f78846d6","impliedFormat":1},{"version":"8ae10cd85c1bd94d2f2d17c4cbd25c068a4b2471c70c2d96434239f97040747a","impliedFormat":1},{"version":"9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","impliedFormat":1},{"version":"b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","impliedFormat":1},{"version":"e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","impliedFormat":1},{"version":"ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","impliedFormat":1},{"version":"8776a368617ce51129b74db7d55c3373dadcce5d0701e61d106e99998922a239","impliedFormat":1},{"version":"5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","impliedFormat":1},{"version":"9108ab5af05418f599ab48186193b1b07034c79a4a212a7f73535903ba4ca249","impliedFormat":1},{"version":"bb4e2cdcadf9c9e6ee2820af23cee6582d47c9c9c13b0dca1baaffe01fbbcb5f","impliedFormat":1},{"version":"6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","impliedFormat":1},{"version":"423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","impliedFormat":1},{"version":"fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","impliedFormat":1},{"version":"2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","impliedFormat":1},{"version":"c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","impliedFormat":1},{"version":"02ae43d5bae42efcd5a00d3923e764895ce056bca005a9f4e623aa6b4797c8af","impliedFormat":1},{"version":"db6e01f17012a9d7b610ae764f94a1af850f5d98c9c826ad61747dca0fb800bd","impliedFormat":1},{"version":"8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","impliedFormat":1},{"version":"24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","impliedFormat":1},{"version":"33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","impliedFormat":1},{"version":"0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","impliedFormat":1},{"version":"16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","impliedFormat":1},{"version":"8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","impliedFormat":1},{"version":"d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","impliedFormat":1},{"version":"97f9169882d393e6f303f570168ca86b5fe9aab556e9a43672dae7e6bb8e6495","impliedFormat":1},{"version":"7c9adb3fcd7851497818120b7e151465406e711d6a596a71b807f3a17853cb58","impliedFormat":1},{"version":"6752d402f9282dd6f6317c8c048aaaac27295739a166eed27e00391b358fed9a","impliedFormat":1},{"version":"9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","impliedFormat":1},{"version":"fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","impliedFormat":1},{"version":"85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","impliedFormat":1},{"version":"84794e3abd045880e0fadcf062b648faf982aa80cfc56d28d80120e298178626","impliedFormat":1},{"version":"053d8b827286a16a669a36ffc8ccc8acdf8cc154c096610aa12348b8c493c7b8","impliedFormat":1},{"version":"3cce4ce031710970fe12d4f7834375f5fd455aa129af4c11eb787935923ff551","impliedFormat":1},{"version":"8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","impliedFormat":1},{"version":"62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","impliedFormat":1},{"version":"c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","impliedFormat":1},{"version":"8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","impliedFormat":1},{"version":"132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","impliedFormat":1},{"version":"df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","impliedFormat":1},{"version":"33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","impliedFormat":1},{"version":"ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","impliedFormat":1},{"version":"a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","impliedFormat":1},{"version":"eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","impliedFormat":1},{"version":"0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","impliedFormat":1},{"version":"aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","impliedFormat":1},{"version":"0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","impliedFormat":1},{"version":"40f06693e2e3e58526b713c937895c02e113552dc8ba81ecd49cdd9596567ddb","impliedFormat":1},{"version":"4ed5e1992aedb174fb8f5aa8796aa6d4dcb8bd819b4af1b162a222b680a37fa0","impliedFormat":1},{"version":"d7f4bd46a8b97232ea6f8c28012b8d2b995e55e729d11405f159d3e00c51420a","impliedFormat":1},{"version":"d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","impliedFormat":1},{"version":"e4f4f9cf1e3ac9fd91ada072e4d428ecbf0aa6dc57138fb797b8a0ca3a1d521c","impliedFormat":1},{"version":"12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","impliedFormat":1},{"version":"340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","impliedFormat":1},{"version":"c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","impliedFormat":1},{"version":"7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","impliedFormat":1},{"version":"5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","impliedFormat":1},{"version":"9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","impliedFormat":1},{"version":"1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","impliedFormat":1},{"version":"8018dd2e95e7ce6e613ddd81672a54532614dc745520a2f9e3860ff7fb1be0ca","impliedFormat":1},{"version":"b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","impliedFormat":1},{"version":"0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","impliedFormat":1},{"version":"3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","impliedFormat":1},{"version":"032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","impliedFormat":1},{"version":"69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","impliedFormat":1},{"version":"0e704ee6e9fd8b6a5a7167886f4d8915f4bc22ed79f19cb7b32bd28458f50643","impliedFormat":1},{"version":"06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","impliedFormat":1},{"version":"904a96f84b1bcee9a7f0f258d17f8692e6652a0390566515fe6741a5c6db8c1c","impliedFormat":1},{"version":"11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","impliedFormat":1},{"version":"2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","impliedFormat":1},{"version":"1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","impliedFormat":1},{"version":"1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","impliedFormat":1},{"version":"07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","impliedFormat":1},{"version":"619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","impliedFormat":1},{"version":"f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","impliedFormat":1},{"version":"f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","impliedFormat":1},{"version":"350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","impliedFormat":1},{"version":"eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","impliedFormat":1},{"version":"45b74185005ed45bec3f07cac6e4d68eaf02ead9ff5a66721679fb28020e5e7c","impliedFormat":1},{"version":"0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","impliedFormat":1},{"version":"c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","impliedFormat":1},{"version":"5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","impliedFormat":1},{"version":"ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","impliedFormat":1},{"version":"cff7b0c6a08e66a58fdb27e3deb072a0a99c0b1ccb7f53e88228142c05342554","impliedFormat":99},{"version":"19dadaace54c1551c517fa839c7d96b908750207076be440122b7c5e25d28fdb","impliedFormat":99},{"version":"036782d4a7cee4ec013d550d1c63e176e62c57658011f53d76b19fa9f56f11a7","impliedFormat":99},{"version":"a1fc8b27b9375f1edc7ace1193f7a838ac1bc7cba03cc595a2d6d5196b7005d8","impliedFormat":1},{"version":"c48c0c340689f94c17d633f1db9e9200152f3be31bbb431a09a38929673c801c","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"1d140fe7e071ea06038b6c5e01fea83f72d9d6d68e0d606a3d824323f5133388","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"685657a3ec619ef12aa7f754eee3b28598d3bf9749da89839a72a343fffef5ff","impliedFormat":1},{"version":"0b3edeae6a959093315434dd4e870e12182077bc76a178540281a3a12cfd9524","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"fed70ffbe859d54d8c7e1ef8cc2bc38af99b00a273ebb69ac293d2cb656210bd","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1},{"version":"4115aa147c5a64817fb55274b44087cbf1bc90f54906bfdfc9ee847a71cd91cf","impliedFormat":99},{"version":"0879e28cca0a2494308975c38e750f806c59c36cd4b3bc13570ff99a8bd9c280","impliedFormat":99},{"version":"072f583571d6e3d30cd9760ee3485d29484fb7b54ba772ac135c747a380096a1","impliedFormat":99},{"version":"7212c2d58855b8df35275180e97903a4b6093d4fbaefea863d8d028da63938c6","impliedFormat":99},{"version":"5bd0f306b4a9dc65bccf38d9295bc52720d2fa455e06f604529d981b5eb8d9dc","impliedFormat":99},{"version":"f30992084e86f4b4c223c558b187cb0a9e83071592bd830d8ff2a471ee2bf2d4","impliedFormat":99},{"version":"854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","impliedFormat":99},{"version":"dd9faff42b456b5f03b85d8fbd64838eb92f6f7b03b36322cbc59c005b7033d3","impliedFormat":99},{"version":"6ff702721d87c0ba8e7f8950e7b0a3b009dfd912fab3997e0b63fab8d83919c3","impliedFormat":99},{"version":"9dce9fc12e9a79d1135699d525aa6b44b71a45e32e3fa0cf331060b980b16317","impliedFormat":99},{"version":"586b2fd8a7d582329658aaceec22f8a5399e05013deb49bcfde28f95f093c8ee","impliedFormat":99},{"version":"59c44b081724d4ab8039988aba34ee6b3bd41c30fc2d8686f4ed06588397b2f7","impliedFormat":99},{"version":"ef1f3eadd7bed282de45bafd7c2c00105cf1db93e22f6cd763bec8a9c2cf6df1","impliedFormat":99},{"version":"3d8885d13f76ff35b7860039e83c936ff37553849707c2fd1d580d193a52be5b","impliedFormat":99},{"version":"3dfcd0a3bfa70b53135db3cf2e4ddcb7eccc3e4418ce833ae24eecd06928328f","impliedFormat":1},{"version":"33e12c9940a7f23d50742e5925a193bb4af9b23ee159251e6bc50bb9070618a1","impliedFormat":1},{"version":"bc41a8e33caf4d193b0c49ec70d1e8db5ce3312eafe5447c6c1d5a2084fece12","impliedFormat":1},{"version":"7c33f11a56ba4e79efc4ddae85f8a4a888e216d2bf66c863f344d403437ffc74","impliedFormat":1},{"version":"cbef1abd1f8987dee5c9ed8c768a880fbfbff7f7053e063403090f48335c8e4e","impliedFormat":1},{"version":"9249603c91a859973e8f481b67f50d8d0b3fa43e37878f9dfc4c70313ad63065","impliedFormat":1},{"version":"0132f67b7f128d4a47324f48d0918ec73cf4220a5e9ea8bd92b115397911254f","impliedFormat":1},{"version":"06b37153d512000a91cad6fcbae75ca795ecec00469effaa8916101a00d5b9e2","impliedFormat":1},{"version":"8a641e3402f2988bf993007bd814faba348b813fc4058fce5b06de3e81ed511a","impliedFormat":1},{"version":"281744305ba2dcb2d80e2021fae211b1b07e5d85cfc8e36f4520325fcf698dbb","impliedFormat":1},{"version":"e1b042779d17b69719d34f31822ddba8aa6f5eb15f221b02105785f4447e7f5b","impliedFormat":1},{"version":"6858337936b90bd31f1674c43bedda2edbab2a488d04adc02512aef47c792fd0","impliedFormat":1},{"version":"15cb3deecc635efb26133990f521f7f1cc95665d5db8d87e5056beaea564b0ce","impliedFormat":1},{"version":"e27605c8932e75b14e742558a4c3101d9f4fdd32e7e9a056b2ca83f37f973945","impliedFormat":1},{"version":"f0443725119ecde74b0d75c82555b1f95ee1c3cd371558e5528a83d1de8109de","impliedFormat":1},{"version":"7794810c4b3f03d2faa81189504b953a73eb80e5662a90e9030ea9a9a359a66f","impliedFormat":1},{"version":"b074516a691a30279f0fe6dff33cd76359c1daacf4ae024659e44a68756de602","impliedFormat":1},{"version":"57cbeb55ec95326d068a2ce33403e1b795f2113487f07c1f53b1eaf9c21ff2ce","impliedFormat":1},{"version":"a00362ee43d422bcd8239110b8b5da39f1122651a1809be83a518b1298fa6af8","impliedFormat":1},{"version":"a820499a28a5fcdbf4baec05cc069362041d735520ab5a94c38cc44db7df614c","impliedFormat":1},{"version":"33a6d7b07c85ac0cef9a021b78b52e2d901d2ebfd5458db68f229ca482c1910c","impliedFormat":1},{"version":"8f648847b52020c1c0cdfcc40d7bcab72ea470201a631004fde4d85ccbc0c4c7","impliedFormat":1},{"version":"7821d3b702e0c672329c4d036c7037ecf2e5e758eceb5e740dde1355606dc9f2","impliedFormat":1},{"version":"213e4f26ee5853e8ba314ecad3a73cd06ab244a0809749bb777cbc1619aa07d8","impliedFormat":1},{"version":"cafd6ef91d96228a618436c03d60fe5078f43d32df4c39ebd9f3f7d013dbe337","impliedFormat":1},{"version":"961fa18e1658f3f8e38c23e1a9bc3f4d7be75b056a94700291d5f82f57524ff0","impliedFormat":1},{"version":"079c02dc397960da2786db71d7c9e716475377bcedd81dede034f8a9f94c71b8","impliedFormat":1},{"version":"a7595cbb1b354b54dff14a6bb87d471e6d53b63de101a1b4d9d82d3d3f6eddec","impliedFormat":1},{"version":"1f49a85a97e01a26245fd74232b3b301ebe408fb4e969e72e537aa6ffbd3fe14","impliedFormat":1},{"version":"9c38563e4eabfffa597c4d6b9aa16e11e7f9a636f0dd80dd0a8bce1f6f0b2108","impliedFormat":1},{"version":"a971cba9f67e1c87014a2a544c24bc58bad1983970dfa66051b42ae441da1f46","impliedFormat":1},{"version":"df9b266bceb94167c2e8ae25db37d31a28de02ae89ff58e8174708afdec26738","impliedFormat":1},{"version":"9e5b8137b7ee679d31b35221503282561e764116d8b007c5419b6f9d60765683","impliedFormat":1},{"version":"3e7ae921a43416e155d7bbe5b4229b7686cfa6a20af0a3ae5a79dfe127355c21","impliedFormat":1},{"version":"c7200ae85e414d5ed1d3c9507ae38c097050161f57eb1a70bef021d796af87a7","impliedFormat":1},{"version":"4edb4ff36b17b2cf19014b2c901a6bdcdd0d8f732bcf3a11aa6fd0a111198e27","impliedFormat":1},{"version":"810f0d14ce416a343dcdd0d3074c38c094505e664c90636b113d048471c292e2","impliedFormat":1},{"version":"9c37dc73c97cd17686edc94cc534486509e479a1b8809ef783067b7dde5c6713","impliedFormat":1},{"version":"5fe2ef29b33889d3279d5bc92f8e554ffd32145a02f48d272d30fc1eea8b4c89","impliedFormat":1},{"version":"e39090ffe9c45c59082c3746e2aa2546dc53e3c5eeb4ad83f8210be7e2e58022","impliedFormat":1},{"version":"9f85a1810d42f75e1abb4fc94be585aae1fdac8ae752c76b912d95aef61bf5de","impliedFormat":1},{"version":"e2ff1133815a9e5075c2162489773e251333bb1356becb22c4490637c5510e8d","impliedFormat":99},{"version":"c8bc8286afcac65279b56a3c07c09a30fc8db71722added527ac4f6afb6f3f58","impliedFormat":99},{"version":"a8463bff8c3bc3d80eda79e833aea30fea7da979411da8713909fbe15e1e19af","impliedFormat":99},{"version":"ed7bef6f3291eaae5a553e6b0043e5a7a2bcbc66c67c5100ae4e3b97d790b244","impliedFormat":99},{"version":"bbb5dbaec3240953d5c2abbaae5d93b3140e79d3b1b62aa6811e2f7e06b52304","impliedFormat":99},{"version":"0ddb9d4f9d21ec894dc5f9f3698b3ceb41ab0a5543e1e1e941f40a7571a2c93f","impliedFormat":99},{"version":"82db11c4ee43a41d859988c5db42c3771dff565371f94bacbd1e4d8d6ceb47cd","impliedFormat":1},{"version":"0cae7d575de731f90ed8a34f49dc5407143d2022962d637a96d264c41c767802","impliedFormat":99},{"version":"1ac0fac1e8debcb15a20f03a0a424fe1e196da702ac6dccc93df5bbba5fc55f9","impliedFormat":99},{"version":"826055cd1370d72da91a2fa54e7152d9b1756950e269feb77620beb02e77e39d","impliedFormat":99},{"version":"ff0d6e315d9075e4e7dc278c1144c0f4f51b7ec1e8234e28b4b3b8827865cf48","impliedFormat":99},{"version":"746108260c6432cbd3cb77eb940fb57c4bdde2ef4ff1b83aa64434a0d10581e7","impliedFormat":99},{"version":"8eb75f90a5282e5d7ebefdc941db6a4649a9bd2b82a534fec7970cf98def08cd","impliedFormat":99},{"version":"9e848f9b9852559b843578bd3d67ca56161b89ae644cd49677dea5aff83e04d7","impliedFormat":99},{"version":"4843748272b88b24f1fee7ff872cd490225417200db87fc69dddb82c96254382","impliedFormat":99},{"version":"ef88e402a0887a0321e1f3a1c4cde13aeba836da76bcb5b5fc06a738a735ce78","impliedFormat":99},{"version":"22d971ab3be49a06b7c6c51ccf4fed23628a30133b9deac8ad0b19f59947d36c","impliedFormat":99},{"version":"460259c2236f3a0f613739e1d0e8fa5448a46942f70e0fa5164f23579237e777","impliedFormat":99},{"version":"46aff3d1bac0293f14436f652c96c0a543ff585abee014f18afc6da9627cf902","impliedFormat":99},{"version":"4cbf57d4d9c8f9259346ed5f7ebb4af69a17bf0ce2bed5a88f4551400a279d38","impliedFormat":99},{"version":"27679e96d1bd38c5938178aaf4abe8627493090b63d6bae2ce8436e6a87ebe4d","impliedFormat":1},{"version":"a77fbecee25688f568e18b43f8f54195d6c278a2a9a687ada5ab3d2f726524eb","impliedFormat":99},{"version":"e29f2b3a93ca3392fe29fa8e7b93985e854b44fe28e2b5c113f08296095bd6b7","impliedFormat":99},{"version":"d27956c8b392088a06d882e1edb58aab4d5cf5ab1229b73f99329ab21f352147","impliedFormat":99},{"version":"d643518d0b08b3d8d6e7f1fa884bca57ef95caaa1c312abbd9e1d4ed0d51c370","impliedFormat":99},{"version":"c9d68b2de905448dc1fcf7c7b12c6871a004478fdc7da0c6e91500bb06a8ab93","impliedFormat":99},{"version":"485a18985da204450f082099b37c81d3c822e8a9e62881484c63454db80f467e","impliedFormat":99},{"version":"ff8eddc13631b50713a5dda6aa081d337229dbd8517c1fd010dd195e5dca74b0","impliedFormat":99},{"version":"c5fbd97c48f36f167b615a598f43616681bf4587183a9e5bc761ac3486cc7c50","impliedFormat":99},{"version":"9fd99d6e7b0e5cd73faa10f0d3cbed9360b668811f7bd276e9065269fb22a3d0","impliedFormat":99},{"version":"072c6350f44d88050d985312c29b9710458e33dbad69d8a5fae510deb9816367","impliedFormat":99},{"version":"bac0424756c285e99541cf039dcf0dc0f529549b680c042b88829b8f3a11e1c4","impliedFormat":99},{"version":"bd154f054bc545f8d63d0614a849b2a7218f744fda345aec5de32ad158922d60","impliedFormat":99},{"version":"2300654477cae847f72dd57eac995dad9fb549e78ffe4b65be6ca2d5d2ad0e88","impliedFormat":99},{"version":"b3bb0c070a664d4c442f662aee9351089931c41049984de53b8caaa0ba9275db","impliedFormat":99},{"version":"086b630d4f67fa7f286a64744cf9bdcd33bb4a1f15d7fde5bd778d2087c825e8","impliedFormat":99},{"version":"283f107af3b4e17e94d1cce37deddca170483e6a92bed444a94e8507d0abfd82","impliedFormat":99},{"version":"d2080113908b71cc1dfe635669c77d34de5f239c4d7ba1ce2e91f1d31051babc","impliedFormat":99},{"version":"50af99db95d71e25fb479d076da68e667df6c0ca84f7b4376f1845210cc56570","impliedFormat":99},{"version":"640ae8e1ba11756a5fdc2f19d6430f22970a873ced214a9e609d81ef1bb9e936","impliedFormat":99},{"version":"a56903697978cf9794792e739364d64b0099a6b95ef14f4c54cf0631f10ef2dd","impliedFormat":99},{"version":"68898d6fe334f80e4717bede07c1e8f749585b2939cfbac5914443fb6481c625","impliedFormat":99},{"version":"be709fb04e306976c0e768819c345178ac49bf2504fcb13e157d1b890ad3538b","impliedFormat":99},{"version":"dc229aae5d6daf495949484394cc63105de876c09d198ee3b9300d75f4c678a8","impliedFormat":99},{"version":"dad539a44fe9b903bf5744ed26c423a2d784c2d6ef070b94e1e495faa63d9263","impliedFormat":99},{"version":"6487ab02c790437eeb8141b5be082819dd300930776516b21954e340e1e6a122","impliedFormat":99},{"version":"c7e959a3f90ed588762d49c2f6d9f6e9331d922aa84e11a9e63f3cfa366bda3f","impliedFormat":99},{"version":"2384e202bc529ed367dcabf932efd86b833d5bceb9072ac946fc3ede658239b6","impliedFormat":99},{"version":"a45ee7555d019a67fbe092898d1aef0b1d02a9f6679ab84461ff515b4460d706","impliedFormat":99},{"version":"cf460f5338ad491b95573058e0f04bf01d94c755d9f82234fdef1aa1c1ca165f","impliedFormat":99},{"version":"dc733447f6b0a7731393f199166d7c3fc9ca32a729742f6e0350fe908316cebe","impliedFormat":99},{"version":"b6d7d26a2395a94dd1b9dc0d06e699bb50b4ec664589fd477ce7cc344e20e172","impliedFormat":1},{"version":"0cc9ad2e57876760447aeba8decb9bb1c5f621830b1a6a67b264847e4f8f99bc","impliedFormat":99},{"version":"d926b6594cecd764589f3fe19945e97c4e20ef7925b78d418524db1ec8250c0d","impliedFormat":99},{"version":"f2efbde15fe38d58987c54acd38878ea9fd4517af0c1c6e828c080439d1be7c6","impliedFormat":99},{"version":"536f954ebd7318ee5e5bf3689ce6d1bf511e2e22a474363900987179eefdeab5","impliedFormat":99},{"version":"562ac2d750f84e5ee9f73d14ea0592088a931fb7d76811eace71ee0703c496ab","impliedFormat":99},{"version":"647e698b1559b5e944d84fb86dfeef201ec045a73f763ad32a178539baf40f4b","impliedFormat":99},{"version":"052c47e2e979a0a9af66c513f8018f22a715c3a17d0a81c1bcf015cc80d48151","impliedFormat":99},{"version":"4ef666b508ec4f58fbc0c4207924011aabc7ed3c4ca2800b74a10d4cf9f3a8f3","impliedFormat":99},{"version":"4b240475e528cc8564a7fdebbb14d94323f71d6563de8876f2b4a7cd5a24b00c","impliedFormat":99},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"f429b61e369208ef7668ebf1dc63176e506fbfaea7b0ecc13d586a5839ebb071","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1},{"version":"709672e222edea41ff449a99b38c5760217255d35ba62b93119234cbe8f35f08","impliedFormat":99},{"version":"91646511787167dffda232e8c46169b8347fd81a3948c343b75b0fec43ff7096","impliedFormat":99},{"version":"e19e9e1b8eeb17dd77d13517cce79de155197e779d1bf53ae50444161b990a19","impliedFormat":99},{"version":"41e4ed4c600c3fa1473aa122e313a66380499b45a8aee8193b31af681024a449","impliedFormat":99},{"version":"9a478a42345b6989b4a6f143c3f19c78acdeb8f294238ef488e7ca92d0df7b61","impliedFormat":99},{"version":"4707d0bf87c103d632115bafa51d74f886175495595a3f972188dd4b8fb49ce0","impliedFormat":99},{"version":"3a11231ac403cfbc83e242069c822eaaf2ceee6f78b1dbfb825e63d37f88f33a","impliedFormat":99},{"version":"e06f27d7e7c6c02c34c6dc7f2534c91e2fdc53f5c4d893e7d4057a72420014d5","impliedFormat":99},{"version":"6a0d0441d2bc889c0ae15a7e4faa7e55021f304c68ee00bd9104e4113db56830","impliedFormat":99},{"version":"83903be9c33d9d25370123db349a573a811822950fa0256c8a4b9c2b7e5965d4","impliedFormat":99},{"version":"6f607a7360ad94ae047f52bfa865c4298c152c036c6d25fc8fb08633cedecd9b","impliedFormat":99},{"version":"b4a8a5e0ea4cd3f25ec93e00951f0e2c972f7b268cfbc3650afa0551d05db236","impliedFormat":99},{"version":"ea21964c56e6d77d1fe2e9656a1eb622d307b1541c020e05000ce7759be5e774","impliedFormat":99},{"version":"f376512812634573393fde6a892e81b755180977667144c135327bf8b33531a5","impliedFormat":99},{"version":"a9d16cc4d0063ab0bddc09a3641bc26c8bb48352228c20c088ff4c6d549fffb3","impliedFormat":99},{"version":"ca47f41c686846b0ec56b80a4406428237dae1622dca38ff56c760721b002e07","impliedFormat":99},{"version":"68791cb516f09f5c183990026e228b21d96bee1fad309ebec66e636d1247756c","impliedFormat":99},{"version":"d53261135cace29f4389d16f06949c4c6ec9901d4f88c9b590719f0ee9660ce4","impliedFormat":99},{"version":"a611f946ac00800e8348bda3a1e2ad9ec914f614110bedebb167b36bf145c66f","impliedFormat":99},{"version":"9be8e3fa1c203497d727ed7524e55fc5f660638652e4bda331b79f919bedc5e9","impliedFormat":99},{"version":"a5a39399ec153707eab4dc5fb1bdc93806e9b7366a3ea3def71861b1dd47524b","impliedFormat":99},{"version":"6ea2de2d4e0c568df82661c2366bde715c1ee21481b233c4decda9c8a1920e41","impliedFormat":99},{"version":"1b9ccad6ba43fb959e25ccfab1df784bb7a5f4996898f6dadc85a6833414dbb3","impliedFormat":99},{"version":"5f0ffe44cc75b1cefc2f5bd0464f8316d1df4a37498e9d9f08d8b4eb6c09a97b","impliedFormat":99},{"version":"b05cab27a8c1c3e82780a583586704b86736401057b556787e99ab5268eb68fb","impliedFormat":99},{"version":"9325e57fa440cb267bb56a525be130f2b5a5bc43e99b9be863dbf8edd2fddd7e","impliedFormat":99},{"version":"41c10dbe0d349b8bdf0f08ca384674ea82997e9a24ec37400453a18f56c8e5c7","impliedFormat":99},{"version":"d0eb5a0f1431a975b833fc1c03540498a6427f39a19e668e356377526a3c4847","impliedFormat":99},{"version":"7fb5ac8d470c12068791fec94f974ee4949851ef51fac9b1771c4be87b38f3e8","impliedFormat":99},{"version":"bf70fff6a714bcf7547afeed9a89aa9998516eaba6242bb5d477d2b3cde9b84e","impliedFormat":99},{"version":"1eb995b77d680badc30d10726d3432adcaf579883d9ff1b38a0442038e8d9ea5","impliedFormat":99},{"version":"95e465e5280521b8446f72a6c1e656efbb0c203f134e6e3649181aae0590cd71","impliedFormat":99},{"version":"71a8bebe872afec32c379a290369935fc3797788b58bb1057e11699d6b05594f","impliedFormat":99},{"version":"45bb39dba69f15a057d23f5ec5d73cfac7f798f4f749736eabf61e7fc05394d4","impliedFormat":99},{"version":"62c82d7df4384094e59336905ddc7d8658eb6ffcbc81fa768f16e32f9d1cd57e","impliedFormat":99},{"version":"201aac5c3a0380cc72955ef3854982bd79167c730374728e82dd9bd7d6fbb90d","impliedFormat":99},{"version":"b8dbf30a628126b88d50e6080b2572dac30ffd9cb452b7897324622f348d51c5","impliedFormat":99},{"version":"5517b148dd898605e3fc60e79767a934759e8a8171f9421dc044fdd9285bfe2f","impliedFormat":99},{"version":"c8f6b1fbcdaec6308f3caa72184495cf9062c72f9ff39fe21c4e45ebc4a0c67a","impliedFormat":99},{"version":"774d0b501d972340a271acdf21cf3bf1c680d3a99542d2ba7ee18b8901b018ea","impliedFormat":99},{"version":"08a2c330d368919e35b70e33cf33de8044f5f1394f23bebc9dc5c8537e48fdba","impliedFormat":99},{"version":"46a8e1af3cf65491d4554fecce087ea2ae80b60e23b42cdec9d5896d7095f748","impliedFormat":99},{"version":"8700bc9fed51ce7c069d8a6e37eb1a61f7725bb851b83e198796a191bd67bd2d","impliedFormat":99},{"version":"f77256d6d49e5a10c816d58d8216c8148761d672569c80628f5a7cf78c1c5c62","impliedFormat":99},{"version":"585535156da518f34fa413104ac3797ffafd752e5e4a5b69f856e4711f207ae3","impliedFormat":99},{"version":"6ebd49bfae0178c0ef51a99f00956aaf94a53646578a3cfb2f769ae73ad2b0d2","impliedFormat":99},{"version":"db246e8024d3f018a5fca595a3b13f3c5c4af1730433674a40619690c1a613ce","impliedFormat":99},{"version":"0c9002497e2796eb60d5d8bbf01acdc086e2ec85731a34560b5d97ab175c3811","impliedFormat":99},{"version":"21ba6a4a8d43a271ee05493b0d24bd3cd1f874fb2a6b753b659c323f58f63c39","impliedFormat":99},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"3998ef6189b3ec508e4cb3d1db2e44dc698a0032eeb6e79061c0b3f785a0e20a","impliedFormat":99},{"version":"446671c24b4f7c13cf165a8f8cc80b8357a443c246d3c1a8818df90f1d97a77a","impliedFormat":99},{"version":"ecb5e04b63d52b15851cbbfbd6de7abdeb22c69800fe2ef8578e397a801f60c0","impliedFormat":99},{"version":"b3504285fa9c235ba724d30a403f2e05cb355e7f01db132ac5470c22b38fa71c","impliedFormat":99},{"version":"cca822c0c9c059b790f71dc10b79f64015c7db5ade16ca6c087afb2b7153489e","impliedFormat":99},{"version":"96c43130fc2869ac92e65e61dbb61fddf1e222607e3d63934747ba1bb5168db0","impliedFormat":99},{"version":"3b5b2933dc937208425a34d5be272e723f41ce46ed73eed631c62421afff627b","impliedFormat":99},{"version":"398cacb7f424c281b64e95e0546784d729cc1b8e4c10a43c813fba2ec5fdca02","impliedFormat":99},{"version":"73a0bd100fe0fcf6e849f95723d247cf8cf1ad022dd2ac0c49f8e36cf97b3d43","impliedFormat":99},{"version":"95b40b0f43b9045f33578349617a68c078a7162be29120ba496f4fff34f6d3a2","impliedFormat":99},{"version":"9139517b297cc5137846ece5d2289f442236858fa231f8a73315e571b265e853","impliedFormat":99},{"version":"d78600f80aa4aa633de0370caafc1b96ae56c44b915f7b38e2676dd6e1ae3ac1","impliedFormat":99},{"version":"48acce190655cb311c9b747974ffe77b6af7c008e42fe1225a150b61ad1d7395","impliedFormat":99},{"version":"c9bbb387bb151ee99b4152450d350e0a5c74f3f0b5285f2a394e998300cc2444","impliedFormat":99},{"version":"e13f861d65d429ba78986a66a3247def1f899fffbbc252e5659be9a76a80e7b1","impliedFormat":99},{"version":"731ca92f2e213df13406e49d20d3dffb30ecb51a5e7f6321f65eabfef30f1b61","impliedFormat":99},{"version":"5e5b164968e5dc706f393ef481af4a9fb1036d425b206685370c77df809cf7cd","impliedFormat":99},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},{"version":"17a57c9f97eb798f93c6f930acfc43e207e62249b400b5c0ecbb4cb4b28561fb","impliedFormat":99},{"version":"b4d4cb9a6e8b5386c80954afc7b059a7aa72b652864338bf49d7357285e11469","impliedFormat":99},{"version":"455c78eb97ca37b823c43eaa6a9423a2ef8eb0756fcef514418c4bae7c905426","impliedFormat":99},{"version":"c364edcae89074602a6f711b11a2da229b08b50b970f90ac9e98f2a74caf2b84","impliedFormat":99},{"version":"7c82e1856122e8939438d262b74ac28cd3802d44960ead27ea55729eb48d312b","impliedFormat":99},{"version":"9799d18bc4f9f85726e8dfc7560c447f3d410a4f5c29b2f54d0a53fad25a6cbf","impliedFormat":99},{"version":"9426d6570434c1dc1216c0e4b610472b98033c95ca78491b68535e180b2ee6fd","impliedFormat":99},{"version":"791e6be9f0984ba7290af8ee90f5ac9c82615228c773eaa226a25558b297f3ea","impliedFormat":99},{"version":"07240fe8034520d40febcd809b360e41b1f08e499218d948bed75033d13ad8fe","impliedFormat":99},{"version":"6dcdaba7101007d640517d70f5feb97e5d5e82971f6fc29a68ba6605030ff18b","impliedFormat":99},{"version":"cff399d99c68e4fafdd5835d443a980622267a39ac6f3f59b9e3d60d60c4f133","impliedFormat":99},{"version":"6ada175c0c585e89569e8feb8ff6fc9fc443d7f9ca6340b456e0f94cbef559bf","impliedFormat":99},{"version":"e56e4d95fad615c97eb0ae39c329a4cda9c0af178273a9173676cc9b14b58520","impliedFormat":99},{"version":"73e8dfd5e7d2abc18bdb5c5873e64dbdd1082408dd1921cad6ff7130d8339334","impliedFormat":99},{"version":"fc820b2f0c21501f51f79b58a21d3fa7ae5659fc1812784dbfbb72af147659ee","impliedFormat":99},{"version":"4f041ef66167b5f9c73101e5fd8468774b09429932067926f9b2960cc3e4f99d","impliedFormat":99},{"version":"31501b8fc4279e78f6a05ca35e365e73c0b0c57d06dbe8faecb10c7254ce7714","impliedFormat":99},{"version":"7bc76e7d4bbe3764abaf054aed3a622c5cdbac694e474050d71ce9d4ab93ea4b","impliedFormat":99},{"version":"ff4e9db3eb1e95d7ba4b5765e4dc7f512b90fb3b588adfd5ca9b0d9d7a56a1ae","impliedFormat":99},{"version":"f205fd03cd15ea054f7006b7ef8378ef29c315149da0726f4928d291e7dce7b9","impliedFormat":99},{"version":"d683908557d53abeb1b94747e764b3bd6b6226273514b96a942340e9ce4b7be7","impliedFormat":99},{"version":"7c6d5704e2f236fddaf8dbe9131d998a4f5132609ef795b78c3b63f46317f88a","impliedFormat":99},{"version":"d05bd4d28c12545827349b0ac3a79c50658d68147dad38d13e97e22353544496","impliedFormat":99},{"version":"b6436d90a5487d9b3c3916b939f68e43f7eaca4b0bb305d897d5124180a122b9","impliedFormat":99},{"version":"04ace6bedd6f59c30ea6df1f0f8d432c728c8bc5c5fd0c5c1c80242d3ab51977","impliedFormat":99},{"version":"57a8a7772769c35ba7b4b1ba125f0812deec5c7102a0d04d9e15b1d22880c9e8","impliedFormat":99},{"version":"badcc9d59770b91987e962f8e3ddfa1e06671b0e4c5e2738bbd002255cad3f38","impliedFormat":99},{"version":"5315bb9103039be1b5042b76e15bc1b3ecd8625b69dc084c961f347651aba211","impliedFormat":99},{"version":"3e9ad1a112a16db3c9456af5d66c972bea4add5c043cb481d3c18d53cb01758d","impliedFormat":99},{"version":"fce7ea18b3e1f611553d64053f429acee4649a5bb46b88ba3469e20201045489","impliedFormat":99},{"version":"55f8d09fb2f483cf7c84a03c08038451c54bb0b54fd1ec6d240262fb5f4f3632","impliedFormat":99},{"version":"f4bfedc2d94b08665cfe9792eb95200496d1ce03c672e8a1b526e5267ed77097","impliedFormat":99},{"version":"9ae5132b62f47cc1907e4738290b17d9259a5468401b6703d2a744b7a7070b44","impliedFormat":99},{"version":"f28aff6b8d9abea7f1f77c1566df21ba64f85fe672742d679ab5eec2e0640429","impliedFormat":99},{"version":"85e60901a75cd184971e3ff8a9a722d3b18fc7f3c328b8a82236cca05199f507","impliedFormat":99},{"version":"75449c1ad22ef7a6af76882868ebd4a63ed0b8b1c717d9f2a03180f9f07e0c31","impliedFormat":99},{"version":"46e6593c5f1e1fe35586b96e74d32613d2402f30f892dbb9cd90fa13d58a4ffe","impliedFormat":99},{"version":"a1d5df12eef5854d551f3b5267c782a0126ed9c36fcafcc3c7e01f08d8627c3d","impliedFormat":99},{"version":"1a2ae3df505891912038749a39e434643cf1f91a578475ae049f36e35c870c58","impliedFormat":1},{"version":"b124c0624b15412ace7d54644ade38d7a69db7e25488a1a4d2a8df6e11696538","impliedFormat":99},{"version":"c24de14180f5eff7f5dbf2956869b7ab434b1378f00d17b8d28524ddf62f8c1b","impliedFormat":99},{"version":"9d757698c7e7f7b9c742853c27f8395f235e6a312e40296b9de0d2f8403745ee","impliedFormat":99},{"version":"f9b215934c9d90159d1888caac3f8413345afb1a4218b75224ed44c0c0e3ae20","impliedFormat":1},{"version":"587086842f7cc0e358c324b32adca13e3fc02ad50ed2a87d74e65156ced0ba24","impliedFormat":1},{"version":"041597c12abeaa2ef07766775955fc87cfc65c43e0fe86c836071bea787e967c","impliedFormat":1},{"version":"0879e28cca0a2494308975c38e750f806c59c36cd4b3bc13570ff99a8bd9c280","impliedFormat":1},{"version":"072f583571d6e3d30cd9760ee3485d29484fb7b54ba772ac135c747a380096a1","impliedFormat":1},{"version":"7212c2d58855b8df35275180e97903a4b6093d4fbaefea863d8d028da63938c6","impliedFormat":1},{"version":"5bd0f306b4a9dc65bccf38d9295bc52720d2fa455e06f604529d981b5eb8d9dc","impliedFormat":1},{"version":"f30992084e86f4b4c223c558b187cb0a9e83071592bd830d8ff2a471ee2bf2d4","impliedFormat":1},{"version":"854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","impliedFormat":1},{"version":"dd9faff42b456b5f03b85d8fbd64838eb92f6f7b03b36322cbc59c005b7033d3","impliedFormat":1},{"version":"6ff702721d87c0ba8e7f8950e7b0a3b009dfd912fab3997e0b63fab8d83919c3","impliedFormat":1},{"version":"9dce9fc12e9a79d1135699d525aa6b44b71a45e32e3fa0cf331060b980b16317","impliedFormat":1},{"version":"586b2fd8a7d582329658aaceec22f8a5399e05013deb49bcfde28f95f093c8ee","impliedFormat":1},{"version":"59c44b081724d4ab8039988aba34ee6b3bd41c30fc2d8686f4ed06588397b2f7","impliedFormat":1},{"version":"ef1f3eadd7bed282de45bafd7c2c00105cf1db93e22f6cd763bec8a9c2cf6df1","impliedFormat":1},{"version":"3d8885d13f76ff35b7860039e83c936ff37553849707c2fd1d580d193a52be5b","impliedFormat":1},{"version":"5e55a6fec5d3962fbfa8cb241c0830ab3052f6cf99e58e0bb6112ccde3e1ffcb","impliedFormat":1},{"version":"22ad95400ca5dc6852958f2e1b33542a101ea7b2e022055b0fd51079c0c38646","impliedFormat":1},{"version":"4028c49f79f02b9606a1d62ce08d8fdc6d03cf627027ca1dc989116d3e0b102f","impliedFormat":1},{"version":"c7232a0c933068be4e990bc3dadf348d0ca82c3465d2f369fb65f53afaf6266b","impliedFormat":1},{"version":"cc2d9ba9d5434882cfb9bc2954fe433b5538fa78a40be504c9833a45d1a732ad","impliedFormat":1},{"version":"f4fa7e6424786df98e362cfe4eefa908d6110bc4dcc50235d4d05a97939bb1d3","impliedFormat":1},{"version":"e8ff455f7ee74b0a6ea20a465bd95a1ebf41538e06f7874c7934dc1ae42bd10a","impliedFormat":1},{"version":"4e3592aed54bd51d840e6d078794b45a8388d0accf38efa3267a16742ce88041","impliedFormat":1},{"version":"878abe377ce7ed67901e97ca558cab1411f19ba83a5ec9d372d78a382beec334","impliedFormat":1},{"version":"988be2b47c162ddfc4ac289de0bc50b52fd425d4408cb4bc40fcc9b81f4957c6","impliedFormat":1},{"version":"85cc8408b227080f73a2571c87c66ad3aa624753d599f08ba9906f607c744eb9","impliedFormat":1},{"version":"8da95d257be3f2d83c21c555dedda9c96869e5f855652523cf52dc98ca8c57de","impliedFormat":1},{"version":"aa9494cb36743567c0f6ce385ce869358b59193c9b61612e0d70e4de500424c3","impliedFormat":1},{"version":"904964129f1ef4797282d4ea4411eaf26d4b22bb481b8b8ab3e920d4cfc79ecf","impliedFormat":1},{"version":"ce6ada7f4eb4cda3ccfe28a0201608828fc6ee2d3204101976831100d9550d47","impliedFormat":1},{"version":"5a7fe6ef136e88ee70d3cd0b1aa0d6875178b2682542ca340875a2711c81d779","impliedFormat":1},{"version":"dc30228a4d8faa78799c535a32dcb2a456bccd67a152b7fae0797198476b091f","impliedFormat":1},{"version":"9a1fcfc15915ffb2b16416763898a07aca46ef4ea620c5d5f26793e76f714485","impliedFormat":1},{"version":"ab37b1199441c7ecb602defe46f72099d3d4555f7911bd865f51657f419779ab","impliedFormat":1},{"version":"82b10e97d141910eab0f2a331b69b88e160d1435e8cc35d40c45c8533bbc0c0f","impliedFormat":1},{"version":"44e2419e4abff168e564a6c25b3e3bd6f7bad3c66e5e4560d91f3777a3926426","impliedFormat":1},{"version":"3c656ad2c834314314439f331445e5ba5d178fb67776e69c7b0c0746884450bc","impliedFormat":1},{"version":"8804b8ad255545dadc2e4d4039d45b3c0bfb5c1a103cf68c7a8712877ce7bae0","impliedFormat":1},{"version":"f6468b2c5528cb0e63ba5c2072a66711d7d8b53d0d79ba51633fdd7caaec8366","impliedFormat":1},{"version":"362276986f99951a4f4e99530a5a1804c290b0ea5efb380070ffdad36ad8f65f","impliedFormat":1},{"version":"f738b4d9935f21b36b054b5ce8f72b31179d324af1687d46b7c810e7a0610b9c","impliedFormat":1},{"version":"7d70d1cae06e783afb6104d6c54611ef97052645afbe14b5963bec32c3ce5c7c","impliedFormat":1},{"version":"cffa607eb95c25b119f9aad3c2e4db80384267cd35d398b537a90aee5c5dfa5e","impliedFormat":1},{"version":"9a710119dd285b73683cdbedaa3798e30aa028e5488b28c1b444f119d0d7b39d","impliedFormat":1},{"version":"c0064198c128285cf5b4f16ca3be43c117d0ef5bfa99aeb415c668ccb01a961c","impliedFormat":1},{"version":"1c23e9084091ec02fe4d3666a22b6e0df02fd64cf9d48fcacc56f22f5cfcb8ab","impliedFormat":1},{"version":"f5a8ed3184cd25bbf61ac2b00f322b1325ecc67e6c5323388ee41a7fbb985be0","impliedFormat":1},{"version":"be2ee1cbe2dd84188fa4e296c5bc19b7af8b9d9511381226884d12bdb5285ab7","impliedFormat":1},{"version":"edacf4223ac6d11361a607880e88012d2da04c27aba76f52c08e9167ba34ed2e","impliedFormat":1},{"version":"f21eedef257a2e149e7da0e610ebc2a811f7507f444f8c959c398fbf36804e55","impliedFormat":1},{"version":"736a3485c9e96b87b11fe6e55b5455e9f85ef59edc09bff1eb2f114ef661d1e5","impliedFormat":1},{"version":"cff7b0c6a08e66a58fdb27e3deb072a0a99c0b1ccb7f53e88228142c05342554","impliedFormat":1},{"version":"19dadaace54c1551c517fa839c7d96b908750207076be440122b7c5e25d28fdb","impliedFormat":1},{"version":"036782d4a7cee4ec013d550d1c63e176e62c57658011f53d76b19fa9f56f11a7","impliedFormat":1},{"version":"6bd84a5230e097464d18b801259cdf59e92c1bfb71056f23a1efff45076990c5","impliedFormat":1},{"version":"c8231e51ac4e1b607acc7f39169775fb4ba4a074a1ff7c00c16d125bf76a3879","impliedFormat":1},{"version":"64482e26e890229e05ad26d37b3052b1ac90673905f2243897cca941f1d669a3","impliedFormat":99},{"version":"5c2a58f79bf8852254bdf4f73ba9bc34c4f93c89e0c68d74f21649f3537f2f45","impliedFormat":99},{"version":"f0cce5eeb36d37827afdab93dd83488825a704e60bae538cfcd430e6ee2d5db0","impliedFormat":99},{"version":"7d21eac05d7e87c1fbf2e6c099a0d7c752891b847e417c2c6b80c12aa2dbe5c5","impliedFormat":99},{"version":"b2602a187cf4cf285dfbedcd1ce0c319c2fbe7f8e0301dfa4b2e5f5585c825f3","impliedFormat":99},{"version":"062fa538a3097e8060063d2407fcba56b72061f989563bca4266d7390c9105c7","impliedFormat":99},{"version":"a4c05cb06d35cf5aaddc7a830bc0a58746f4543b5ab6a39386bc731b414006ef","impliedFormat":99},{"version":"17b25bdb24bfe46bde76ecc6ee1fffeeb1118db5b562f667151f89750f4f2892","impliedFormat":99},{"version":"5f7ec69afbe999f8660f94c0b5bf47dea4294947e7b38299cdc4cf3d37bbf857","impliedFormat":99},{"version":"47cd02d9ae3cbd3dc69c81dcd707444860eca29e4198a80c4f946e0c7113736c","impliedFormat":99},{"version":"5c88c49b8ff7d11354105dcc18a56b5614ab20de1b521e2a894138d03ce34aba","impliedFormat":99},{"version":"8351c140720d41ad49037136e4f18fd27cec3fb71d75b470dfdacc51986ef119","impliedFormat":99},{"version":"5c145336063432d9d8f01a4872c63f2043b03abe83a65a1b1bc03d83ec451e15","impliedFormat":99},{"version":"661eff6f57f2c21dea1b5da35de14d805a48b1f46b1b48ec41a9a22e9290d959","impliedFormat":99},{"version":"3bacfed0a7e4bbf381c9d14045af8626da510aab59507538ee012d7a3e740f42","impliedFormat":99},{"version":"eef9daaa3c1f97083d3ad9baac8a3eebb13ba351d38c5fa895b50c854e9170ee","impliedFormat":99},{"version":"47b0a05a2bd8ade9164ad07868f16a32c35deba6abb3f9894f3abce764ce3ad1","impliedFormat":99},{"version":"318451fad91d92d13d19d53029d5d2154f131b8c26a68b9fc9da713836a93c10","impliedFormat":99},{"version":"1df88f98e5964ecca2c8cb43a5d6fcb7f1f3fecd266b93eefae58edc15c08a88","impliedFormat":99},{"version":"316f1486e15cbf7896425f0a16dfe12d447dd57cfb3244b8b119c77df870858f","impliedFormat":99},{"version":"25be1eb939c9c63242c7a45446edb20c40541da967f43f1aa6a00ed53c0552db","impliedFormat":1},{"version":"53477a1815e915b8c20222a2ac8f9e3de880a1e8c8dbf9dae529b3d2e2b4a53b","impliedFormat":99},{"version":"38d97a6bebedbbd8df1115cf903f8f73c322305dac0573ebece10f841e8e00a2","impliedFormat":99},{"version":"fb24ba44a7d0eb7401de4727e3955688830da8acf95b45636fa5bca74d90c555","impliedFormat":99},{"version":"a293e6351169266839ddcc18ae355a8c46807eee8cf31ebf1930491ac29ab399","impliedFormat":99},{"version":"aac01997efa5b92ec5da17ec2a6309fae31b662945d2001907f78c0e92f5184b","impliedFormat":99},{"version":"a4d375aafc9661c5c21d2438212a109609b29396526cde39f2558ca026d555b5","impliedFormat":99},{"version":"adcf381415e0f8b6a16eecc2ac31f83f75d106f52b2cd8e1a1f09a0353354249","impliedFormat":99},{"version":"8813d9ad0456f4a0d50fde5cdf82ea3f8fd30a91d9829acb0bf5ae5926b4a80f","impliedFormat":99},{"version":"238109cc6190c7e0d9426f3408e574d91ea97057ab606f65c903ed9928b729b7","impliedFormat":99},{"version":"f697d50392ad6709468d11d44c00dbea484e2049686370e71abf664b5f146b85","impliedFormat":99},{"version":"5a00808321fa11b735c07b0ca1af5f4ecd93ddb9db5a26bc24b9f598c6b4c22d","impliedFormat":99},{"version":"8007f53c079e910ba3fa5f397cc844a76000ba18eb2f15b8c93f526262020c54","impliedFormat":99},{"version":"f19ed03b23759892eb87046ba32b2213fa3897f58ef81e5d296029c24db3b230","impliedFormat":99},{"version":"e6ac206327b69f06b8852b11e225b876ac652aebe0b59929dbe7818765ed7650","impliedFormat":99},{"version":"81c246d06c4f7364e9bce4ffd97e0782e8852e02fdc08274822d7d515e2219ea","impliedFormat":99},{"version":"95c868ebe12d7004fd0809d4486ef33334de0ba1ba6b970b047fb175c460532d","impliedFormat":99},{"version":"3bfffabf5192613b61ff73e813f396fa57e6e1ab35835ca7d7e40ac40512690a","impliedFormat":99},{"version":"6d7fc57639a3deb4b7cbd55eafae4d9e7b377873b9ce5e6a689e47711965912a","impliedFormat":1},{"version":"fbe348b70b9097b9bbe8491a670d3c9faddec3ee044a7d608bae380a20fd1b9f","impliedFormat":99},{"version":"f40f410436a67d2e40bfa13c5b816a9837bba7d79e6cee03088f3442b724456c","impliedFormat":99},{"version":"bc71b780ee831cf1de0a14a074a731ae359dd9dba1d9d9d1eb36ced405a67173","impliedFormat":99},{"version":"c9682781f720ed70d08e35c693d6ac9b13be8cdae33c22ff64e534b8be26ea72","impliedFormat":99},{"version":"2cf4c95317227e25aa4bcdd518d30a18629117ac6ac4514902fe7f595b26a757","impliedFormat":99},{"version":"6db3caa29bc61f1371065b51329269254046895be397af03cf7ac2366731eb43","impliedFormat":99},{"version":"165791f6c9cdd60c2d76b5f810a3f7e482ec82378b5f6c9504c2c5cb45cb5143","impliedFormat":99},{"version":"cd9acd67a41f36facfa84e4e72d4845878df57960581ad6466c9f5686fabb226","impliedFormat":99},{"version":"bf948787d85e757f806d8c43c0b4d3e3ea29ff8d9bbb158654a51ca8b05db659","impliedFormat":99},{"version":"16d04dc02fe81a600137574cf764a5255c7416982c0d74e770cc7cab21d13e6d","impliedFormat":99},{"version":"1395dffbc7168ca8382c7d55b401fa06c00832f4b9059b67079d6741414e1acd","impliedFormat":99},{"version":"b6c81a5e70d10d3d893e0579fd5aa3ed59908cf5e02a61dea96e99ff1b059f32","impliedFormat":99},{"version":"6bbb2e249520ec6ddd60e970972603d415f0a0ef44c7329e4b8f56dc2442da09","impliedFormat":99},{"version":"7fe2624a40b568199df3788648959791056ac70a1413683270eb8bff58aac6d5","impliedFormat":99},{"version":"3f27adcb69bda8cbace6a7767eedae61866508a161aa669ec761780c3b7d4e17","signature":"8e767b001c5e270a768eae9ba5f5e1013ebcfe521242555c8ca4300c74fd605e","impliedFormat":1},{"version":"98bb7f586a1392a3f52945d4c687f0cabf5607327c1f01b82fac64321b4cc43e","signature":"c75c564fa2d820e0fb8192a749f7742af151786a1892579ac79d586f5b397295","impliedFormat":99},{"version":"dab507ddeddfc16a911c5676158a542018d8e19025e2fe66b15d47ec5ef6147a","impliedFormat":1},{"version":"a02124c0ee850443005ca9a4800b743c1afed28f9752afaf8c95cac6baf83877","impliedFormat":1},{"version":"67103274f373a618237fc4ddeb7c8098d3605e98fe1f4cbcf31e74e03868a79a","impliedFormat":1},{"version":"554acf414793d442a5602055e4f8d0b83edbd0e4a977bd4a90fdcf7b0b1fd898","impliedFormat":1},{"version":"52e2d806ccaab9371209f3fe262252e44cb4f79592e21500559bc6261c534d1e","impliedFormat":1},{"version":"b123d189617fe233217ddb7c8c0fd06b4581fdef69e77d63728d3006499f33eb","impliedFormat":1},{"version":"1afc34d5504997fea2fdbd2c1a137d4ee0f5e221e80a72f0b7cdf6029d48c61d","impliedFormat":1},{"version":"cefc795bc727964f7ec2991703fafe975a0b265ef4938d342f4dbd93ed7a5f86","impliedFormat":1},{"version":"0d390748eee58a959b560b93da0d6261a1d3ff87a246f459d8b3e7a20391b62c","impliedFormat":1},{"version":"fb652d576e7c73b08eb6f9a4f322aa841c1b857195745e6ca436724c179de2fb","impliedFormat":1},{"version":"d192c4305f2add7ebbe22e9328f788b341fcb66e5ce4bd23cd2b1de097fe890f","impliedFormat":1},{"version":"925c28c5e11d57a08d05059a147f7a91c0e447ec27726dc8b79655fa1ff05301","impliedFormat":1},{"version":"8c4242fbbba473b36879fb5c23f29482335ab05e4150f06c22edae4e44c894dd","impliedFormat":1},{"version":"2681cb7b5767f12041662d1db8c0994012ef98c8b41d26d2388497adfcb0cc64","impliedFormat":1},{"version":"4ac4739a6edf9fbd20a18b5b675b08291fc860dbf89784fbd85f6f303df8047c","impliedFormat":1},{"version":"1840ac8a2b18e0982da57d80a09f5e5ec0e38d18afea7ac4ce069d9bcb3b3cb6","impliedFormat":1},{"version":"681c823b35bcc451c501382a6ebecf0b09fc792d83efa1279a005aa62285ff7b","impliedFormat":1},{"version":"3c201db56028e893e4de5bd9d048bb804daabcf820be6bf96bb5905a0ffa1024","impliedFormat":1},{"version":"cff0422eb92de48515743c3638bed6c73cd7d1312513df94030dc4c41090457b","impliedFormat":1},{"version":"d478539c608c8ec78b2d0a7817c29efab421e29d80b641ccaa074a96fb577f04","impliedFormat":1},{"version":"a29d69c75a5a7b1d451b30dae820b745eb7efb5cb74abbe546451b1185c8b339","impliedFormat":1},{"version":"f97e2644e1e7763c6332e1067695ab3a2e51c06baab3985507da46a6e1200958","impliedFormat":1},{"version":"f2bac29fb3514f46c0c1ea981340c674098aa74c5fffe1e7630d31c177686450","impliedFormat":1},{"version":"b5499e8d3e39a1523d4d12718f77f1e2dcfa3f825f67898fcb90a9edb680e43e","impliedFormat":1},{"version":"e3c8c01adb8d63c65f122778d8f63911437024ec3f4733622c510273ce3b8823","impliedFormat":1},{"version":"a12603dea0828662dc971e86e1169ec7b243a606e460a04ba1e01051c4f52f36","impliedFormat":1},{"version":"96fc3dae2f110377fb32c48acf3efcebffd12df01c798466287183ade087719f","impliedFormat":1},{"version":"b86d0df4f4c8abcf28e629ace836c0f6423ea1509853178f56c6329b2a26ccfe","impliedFormat":1},{"version":"0e62d4ab3949b67c679fd23b39e55ed9f19597c0afb21d8ceeaacc4716ed20a9","impliedFormat":1},{"version":"04771a6db3f7b054afac1bb6d540d18efdbba7439415d4bbb759b8f39f1f5377","impliedFormat":1},{"version":"d0cebbf45fa0f4b492284e0be4b3cbd1610f05e33ed201ba8937b1c147bc974d","impliedFormat":1},{"version":"6a1b55618aef82ea35596613159dd7cd7805b07dbfcdc8fa288e41745f3ec98c","impliedFormat":1},{"version":"572fa17bfde079d0d5159c47702addc4f2e0060f8abb0437a5ce9d451473f53b","impliedFormat":1},{"version":"9c2971938ec0bb237bc330aeb026d82d1e7ed0da7391c8761263e717875f2b21","impliedFormat":1},{"version":"8db1b5e284bdd0df8797b1f70406cc7dd126587fca77be01e711910cd04103fa","impliedFormat":1},{"version":"31549213d7a9f3cf3aa96845b5860144e3900997771713c689d60276b4786664","impliedFormat":1},{"version":"822a8277cc73b8d96ce336ff56a1072c9f66485a64a562cc0f29cd7e550a87fa","impliedFormat":1},{"version":"a097e76e2b3a5a7ab5db2db9a5787dc4a3bccbc65228951c243fc0d58675467c","impliedFormat":1},{"version":"e996cc50e5bae651f0565e8499873d38145d8955e521e758426ba73758eb3bf5","impliedFormat":1},{"version":"8ad61067b3ba801965c04c2815c231847631a61c4da2b1987500b5aca6db161c","impliedFormat":1},{"version":"aadd40c020be82d01ba79caf35e1169bd3cd53bb6b999a4ddc5f00c9db847a46","impliedFormat":1},{"version":"f16df5990c987807a817d3d4218335095cf2783a1a7521e2871e64b8d0f6648e","impliedFormat":1},{"version":"81320fc91eea90e06f8781d5f6bd0d3990e0cc7a50e766a78b56e0a1cd44a332","impliedFormat":1},{"version":"224f89650a8724c67f36b98b5e5325d4a224cadfb9b387bf076adb76437443c7","impliedFormat":1},{"version":"36338d4f4ac9768967f2cdc092734373a3d0eb70b808def5222765825dcde534","impliedFormat":1},{"version":"0e5a227256596eb516def2d3ab823c2321cef34c28cacbb559c924b2374143e7","impliedFormat":1},{"version":"718d456c2624bdff0b7683ed67041995519f657b98f52b7890f11cdccac36f89","impliedFormat":1},{"version":"4b2e887e533849e74020b1c594604e990dd8fb3abf693b1d82c96d5079b27ea8","impliedFormat":1},{"version":"2f4f0059c74e8ecf9a5e962c6a8fc3aa258941dfc18343f50e2efc2923ea5c56","impliedFormat":1},{"version":"92e0c20c54604feb984ddc519b56460c61dd9b285fbc30174839286545ddf848","impliedFormat":1},{"version":"54a336776a1161336928376c78fcc9deda2b5890f9008631c7aea700b6727bb5","impliedFormat":1},{"version":"14d18076cf79b3c6ff515123a71836644f50c2956312a2ffc960028111489316","impliedFormat":1},{"version":"632e5af6af4bc7c3977dd4782ad03b37c0229806de4eec9666fd79841b6a68c0","impliedFormat":1},{"version":"8c3e1c25eff5752f6642204351420c99844c1b2a73aa0dd5f81b315cf38b32b0","impliedFormat":1},{"version":"2e51565212c8cd03202a9492d57e93c431041114762dedf69ac3be0f62e7fb20","impliedFormat":1},{"version":"06f894fea5d5bb81048440482e750f7cbd4932cabb95e4d485cb0b9be1d3eeaa","impliedFormat":1},{"version":"1f4b953a8025592dc5d7388a8a53e4aa390a66b3b53c86a419d9a2a28f962d97","impliedFormat":1},{"version":"b617019b6a719ce7a920e1909f3e62be8ac6a914746667bcfe10d8f350cc7089","impliedFormat":1},{"version":"cecf293195c298e093742c82e5995cbde08af76d41f9440224de7f83e077c4aa","impliedFormat":1},{"version":"575ce340b9a859c0589a04305dd9846184710eaee71a4effd071d5d406377ffd","impliedFormat":1},{"version":"e19b266bbbb0920afe1cba4d44cfcfd2a5a095cb8c0d5cf62a2cc47a9748214c","impliedFormat":1},{"version":"ed872db0e2a3622d6d92d9b110b7165d8cf23d44b6993783328e0088fdc6a33d","impliedFormat":1},{"version":"e34adafe9efbbe6d7af7e346ca7df8bb2e77a3a851d8207ae6199357b903b192","impliedFormat":1},{"version":"958fc2e0308e04a48b1f3a793d66aaec672278fc1ae0f31efb89febb84dac1a9","impliedFormat":1},{"version":"4e771fb2e12b05ef96d1a215adfd119643c057ad3e97739f85d1d7533a18caf7","impliedFormat":1},{"version":"02ffcc56317b8d9ee19f209b7cd8e037074ab508a1ad06754a2b1f2e77911f66","impliedFormat":1},{"version":"ab570c33c53acbc83ad2e24433a433fccf12c28389271cf3f5c44b871f547b2b","impliedFormat":1},{"version":"8b80e4dc9bc218ab9e8d701b1a5471cfa3601077411455dd821de1a29de0b4c9","impliedFormat":1},{"version":"f4529b8473a9022e02fc7a4b5f92e93659d1874809f2c7b38fc367441a93a339","impliedFormat":1},{"version":"b92c58600fd18c32ff687b783eebfd0796cd995e5965a86ca17275b523d1fabb","impliedFormat":1},{"version":"ac46a79d9cfb4df1f024d98c886e4a47ea9821a2a467e4cc9623d96b8f753766","impliedFormat":1},{"version":"7085614a6cf631df724f4a3a25ba0de9a5c0ceed91ccb432416e4bac2bb92a58","impliedFormat":1},{"version":"ab1a99b4017155d8040b5456cba7bfef33bb767da1eb8e4ca369d5185810f349","impliedFormat":1},{"version":"0c4286c0a84c20e05c1f5cda5add26956e696aa817b33d45ee2458eecb3ec375","impliedFormat":1},{"version":"eb155438a82c3e7228cfda102f1d6e1ab4652aa83cb8ca01d8afeeb782803f1f","impliedFormat":1},{"version":"1f0012e2fac75a6ef2406eba7a9ca9ea16c553947583d663eb726c97a26880c3","impliedFormat":1},{"version":"54ec65aad2d7775fab779d01763bf55d7e768920d68f7a05946901eae49ebbfb","impliedFormat":1},{"version":"ae1099212ffebd47c3f0e51162fb0c1e5d4b104421b8a66edddbdf920899334d","impliedFormat":1},{"version":"9cbe0b736b34de9fcf54ba1db60133cfcffd413bc87ad008384ec6442d4ccc14","impliedFormat":1},{"version":"3f713c2dd9b26d5e3e475c811a8d7ce219f1346cbe46dad4596dc6e1d8d35cf7","impliedFormat":1},{"version":"d538fbbf8fd0e073bb11279bff9a37deddbd192513362737f98cce00f2fa3c34","impliedFormat":1},{"version":"a7d869e34e5b3201695b1fd231884d163cf41d24975e1e6a407eedc31d7b9efa","impliedFormat":1},{"version":"d5b6042c1806e7f8ef08b9be9cb72ee50cb7b991a28efbda30a61434b1610216","impliedFormat":1},{"version":"8d30f52bf78ba0b0435286cfa393e2f62077d64fb9536eefa9cddd62c1252884","impliedFormat":1},{"version":"431e627e173edc76477913c8fe99dbbb96f8fde04aab57f133553f359d4eb20e","impliedFormat":1},{"version":"2d37f551e55c0ecdc324b7af4d2ce823026a3109f64d8c4f5d9fb050a01460da","impliedFormat":1},{"version":"dc6e89155b11ff755ade6d9eb497d247f1f7beaae87f64332e2c1e5ef05a3cec","impliedFormat":1},{"version":"52276464b7d805173a5289ab27bcd259acf0619eecfae73e156de2b1e56d53c6","impliedFormat":1},{"version":"9e5c0f2fe6ed3836065cbf6eac78d6884ce3919ec81ff49b823aa1bbc896bebb","impliedFormat":1},{"version":"ef71f578ad24aa892b5f52e9e5aca43fa56434ec07ce5d62423a6499c15708f7","impliedFormat":1},{"version":"176d770c6577804c34df935fa0d0fc3f60396ab125fbf20d95698e35c08bf077","impliedFormat":1},{"version":"314c4b1b0b4977f9f55a5854a6c6effdeba1342edbbb89e7492e550cc38ce4cb","impliedFormat":1},{"version":"38a2488cff2138b35a9f0191512267da528191d45c283bd2a859a8e32999274f","impliedFormat":1},{"version":"67d0d710465d9f4e26c3e55865d110596b95e84f7598164ad3046345f422931e","impliedFormat":1},{"version":"34e8ade0345445320e23a677a1011f78efae36e8653446fda313b38957865dfd","impliedFormat":1},{"version":"79a4560fd54b1d85c26f4dffc47c38f4ef3104ac4d634239c67c9bd06df577a6","impliedFormat":1},{"version":"e2ea7f961c9286e6ed7506cf890eae9c22b874b2485ba1a6a5d6e3ebc044cabc","impliedFormat":1},{"version":"465d478cecb928a2cd1b3ba3a07d1a2837cf3779375d5fa42fb46e9dc1fa4a76","impliedFormat":1},{"version":"34b01c29fe2c5d7548166e1348a19db73b3bcbeeb67979d39d5726f6268de8b3","impliedFormat":1},{"version":"a0df4b1e4af6007211dbd710098e3ab753b119886c94ef877730644c66c166d7","impliedFormat":1},{"version":"b6230e2101bfa9166c16d6480ecdee1275dbc1d8c007a12a12d504005897eefe","impliedFormat":1},{"version":"e7c7aea715f66be8fe83a3876411cbafdf4476e0e1c46e9e705c94272f1167d7","impliedFormat":1},{"version":"d889a43048b37ea3721b7643f4ab204ec4db577d1a765b6001cdeda506a950e9","impliedFormat":1},{"version":"b8858ed627199842e9d246731c631132e480e078d8817d95f2e0aadeec602e81","impliedFormat":1},{"version":"83710934efdd6c5f5bd1ae2ded6cbff4d941257b53ae46d535fc8223360e87f6","impliedFormat":1},{"version":"f3897d8ae550ef234fabf16ddad51762af787b4d21b88d258bfd5c4b39641a4c","impliedFormat":1},{"version":"239a5b0fe742b30aa62534683c851f7d4ddc887722342b508db1d8421b13209c","impliedFormat":1},{"version":"a0ba6700c35bb0cecd02eb7a006acc45bd616d106330c61fe1d2f8e4ad80adb4","impliedFormat":1},{"version":"339d9aea32268d71cc10238232ba64e6fca693585ae8123c01c5e02bdbb1bce4","impliedFormat":1},{"version":"b8d576d0cce5c2410241560668f8f5d02a2620a23edba10fb14c717ce53b1753","impliedFormat":1},{"version":"92fa6c066987a4cea71a0ffe9fbfb683b45b5300ae9f5584b02592f3a27b3ed0","impliedFormat":1},{"version":"a5c018512673b7e1ff6cae34d14713e89e94479fff33c14696f7e2153e4f4755","impliedFormat":1},{"version":"e459c1d4e7623343476da01e7e4edf8290bca1f1315287559137af5557f3ba39","impliedFormat":1},{"version":"5981c27079aeb53fb96829328f014ae7a5a690cec8b1c93815bc23e6fe7189e7","impliedFormat":1},{"version":"2b69fbd1f361e82dfe9bbb786133f0b58845c79d7094fa5790306e5ec271e5bd","impliedFormat":1},{"version":"c10c88f1daf9fda0323c9205ee7a0fd63ae4f67320d3b673468242d89061a459","impliedFormat":1},{"version":"a68ae02c58a9b6ffb29eec100c886ce8eb80201e454fcae79c299bc2db0b37d0","impliedFormat":1},{"version":"d764056449904a73c1f2c6f8c2ae79edb0d1cc799eda5fc3a60a30fa97b94749","impliedFormat":1},{"version":"7e73db72fa480a32afd616f2ab23edb4702316c7b898bd2ba6b5eff6e8ab9412","impliedFormat":1},{"version":"916e84931e102ae5091d09c1ac5aeb2cbf5458f11e0057b23157f5c062254999","impliedFormat":1},{"version":"226d624e4776b837abb8c1eb775f27fc265d7ab4c7473bb48f39c535cac94285","impliedFormat":1},{"version":"4173e4d951eb16efa7943068fcb21aea81bdf4c996dd047ee78625874836dad7","impliedFormat":1},{"version":"9c219a351e0e80e556380fb3372a3fd2c54fa3f1bd9574710ab4e577ea26063a","impliedFormat":1},{"version":"ac18a2d24df81dbbb885e1601fe94fb9a7ba42f04c98df04d16e69f4ca9ee9db","impliedFormat":1},{"version":"8a9b3c96ea397dc289581c1aa4f045cdd2f8a55fc5d917c56d40370a83eedc5f","impliedFormat":1},{"version":"5b289d52c1414fc6737fc451b85fca5f70ead22c2294f5a9484ec1ffbe233a83","impliedFormat":1},{"version":"30af3be0483da0faf989c428587c526597b80c1e368d85281a3fbc95e360987e","impliedFormat":1},{"version":"95f50c554cc9bd129a38fc61cabf1b0b56851c3b4db34177c909c2a03d3e2b9f","impliedFormat":1},{"version":"a2b35bc1378fbc1443e1678fb3ab6e8023269500146537b5a098e8db214327e2","impliedFormat":1},{"version":"4428a7e681f6ee541f90b54d6422325fe26263c333b27293203ec8cf98da4dae","impliedFormat":1},{"version":"cf25b77288f29a84be0a436ea2f5b8cc00bc06b6e142ff975f60a2252a6fc18c","impliedFormat":1},{"version":"9fbd375bb1f6ca5490ddc37165bf761f2fe89d93bd0de57e5bf3dd12cf94baf4","impliedFormat":1},{"version":"fc291372c7992060d4222381491902295756466f44fbc6f0889a6d4e28d0b937","impliedFormat":1},{"version":"6ca9bc3ae7c4fabade7fbf2659731cecce54a745d286d69755fa2496c545456b","impliedFormat":1},{"version":"e6a2e3b9fe781537a0f91c301de9961bebdd4b33187f98a582d694177acda462","impliedFormat":1},{"version":"27316752e6998304fd7db2d67ba0b26d8029b6f503b3ea89efe845c39fabf9f9","impliedFormat":1},{"version":"4add6412e18d83b5bd7c65dd07c3a1544bf6b31baa22473775ce967d685aca27","impliedFormat":1},{"version":"8a7d6fe5fbb7e37ebb0bb81241d59c4a806cbda97a5f1f15af3fb9c903672598","impliedFormat":1},{"version":"74efaf42f5842c4c4fb398d2f74d59a86792320c53df9f63dbe00ba8b24b88bc","impliedFormat":1},{"version":"08603c7d3cc9cecd1ac97cc1baef2d90b116759b541eb4181109bdabc64788a9","impliedFormat":1},{"version":"64068fb5c2c88a2b7016d34b02b03582e759b3f0ffb89e9e07f968838275a564","impliedFormat":1},{"version":"1825619ec278edd94785af65ae589289792cc6db662f63adfddf2a79f6bd4233","impliedFormat":1},{"version":"3c63b1b5ea4b20822405d6b7a8ba96429ee2b400367b61c82507f80be6202289","impliedFormat":1},{"version":"cbd2ae79794fd7bcff66e343af71f7e174a6eb95f17a8742b1ff62c8482f7cf7","impliedFormat":1},{"version":"5f49cf0d4e9b1913b0538bfd0179eba4041eec277ffccd388aa5acb3a9b5c78c","impliedFormat":1},{"version":"5ebe388148630bc63525fbf1f408370c657ae888abe179001e64711b0dc8d663","impliedFormat":1},{"version":"c44c12d1655dc804ff1cd39f33e37eb651d11c41f60d2d4d49d34880f8a5328f","impliedFormat":1},{"version":"432ba4ec869745ed9de5ba6a12c76549dd76ae0a146faf0bfdf35ffd4a4e6ea7","impliedFormat":1},{"version":"a88437446e80a492b1c4d3f5c9fff5d80b5c5e52754cbb3eb2cfee3d3690ca94","impliedFormat":1},{"version":"bace2dc66c954f2a81c641fa9f0dcb1b36ddbc6db3635ea446ee10c47ada15f1","impliedFormat":1},{"version":"c5c7f25f198dfc5ffc62fe2e8ef3f25647bf21070a5f05ac200748c83ab7da4f","impliedFormat":1},{"version":"60390e7b89c19d160b3bf2c854a9e06414d001debd9947a5db54623004a4be0e","impliedFormat":1},{"version":"c08e7bfca5a8bb244cad7689ddf7546cec8a5bc5367b18bcadc0628ae927f797","impliedFormat":1},{"version":"b7506549d0f8ea4c74e4b4b4263932090578f193cb37bf719b44c5f149a934f6","impliedFormat":1},{"version":"992aafb2a060c3e2099941c7128d88aeb9bf8f5fcc594e9fe561d19003b5e4be","impliedFormat":1},{"version":"9874f63b3f3167f344d2a30047722b409e2915a502d9b9a50a91ab1a23b49623","impliedFormat":1},{"version":"b55dfdbd1e893c0b6cf91dca75395f4bd8aab8e624007f9fc70d650d8b340137","impliedFormat":1},{"version":"1740fa9c57b951441b1db4478a7f6a82ccec9de1de650920cbce74ed10e08eba","impliedFormat":1},{"version":"6948d2c91da770f73b9a6459c3daf8ab23d80bf7b70e215551ca3219ac041b68","impliedFormat":1},{"version":"9ddf688a2e3a9cda94350083dacbd69251c8d5deb5d02f80beecbee70ec11c6d","impliedFormat":1},{"version":"e39c146a2b8a3f48452973628042cabc94bb2893488bd6a79b3e04cfcd89c729","impliedFormat":1},{"version":"60f5165cd2492544cf497f3eb4e8a75fa340185b4b98b8aa87b62853d57d1549","impliedFormat":1},{"version":"fe9cc3f1d04297f8d6995789f4df2b531a1ee7f1d0c8add6371281f4a31d195b","impliedFormat":1},{"version":"66b9b5e8625e6ada62c4d070918350dd10d01fa260426674448b25ffc7009488","impliedFormat":1},{"version":"0d25032744f0015a340edeb2e84e685a4c79ee1c9066d761d7fb0affbc2dfdc3","impliedFormat":1},{"version":"3e2963e7f54826df89a56ff9931614d16e0371ec010725da64ff270570128993","impliedFormat":1},{"version":"c5fe75259bda7aba824205a9138ea7f3bbc47d20ce777cea79d40930685b6ac8","impliedFormat":1},{"version":"3d485a48053321817c3ce51afa41c07b180b462274551d53c5a4927a5d052038","impliedFormat":1},{"version":"9e2f9ee99f0e172ef91af1d571e09743304b3b2430d41a8bcab357b878114757","impliedFormat":1},{"version":"5d6257ebe252d97b3d6fe3e0a49a0f148cd7312849f5f1d6f6b7265d3d72b5d2","impliedFormat":1},{"version":"2c60950709e37e95cc5dfa2ca27c5da53521ee09c254f894f8d91ae8717e7885","impliedFormat":1},{"version":"8bfc090ffec588f44eacbd6714f798a8a0c3dc1b02855f5e12e567b4f161b30b","impliedFormat":1},{"version":"b302d3e1a806fc890c324ebe90dfe07a780e973267c66bd159d0dbc1f6e3d055","impliedFormat":1},{"version":"b1c627fa2a4cc9199f937f4d35ccfdef2efd6ef40d5525ffd384acb29cbaf66e","impliedFormat":1},{"version":"e2a7abec790215fbd95f42c244b66ad61a503296f9bf57bb5de1413286a41c56","impliedFormat":1},{"version":"39959ee712b3455499af3b1c95bbfc9ea59d584d5af2b01dcde120fe5dc6fceb","impliedFormat":1},{"version":"bc27582d90eaa5a793cc4f3e27acff890eab95641431c263144f3162bbd4a8bc","impliedFormat":1},{"version":"2992d19be476415c0296bd548764c20fc9cac2876e45abbbce23dafbd65438d9","impliedFormat":1},{"version":"dc117b16848058e94c39b68cddd38b36be885a63a0130097e6e992cce6ad9bf4","impliedFormat":1},{"version":"11bc3d6606ca11c982d848ff3946f1d978360e7861dedd8bb97348a21b4a8ad7","impliedFormat":1},{"version":"989b88698577f76069fe791b224d2157a0205aa2b029718dfd386b7b4706fa0c","impliedFormat":1},{"version":"fab62208329b9bb74dfe558a6b05f802bceda19274c763efd8ea0b47cb68925b","impliedFormat":1},{"version":"e0c5afc236a31911ad85dd1c59c609c194ec11b6997081fb5aca57cd020e46c7","impliedFormat":1},{"version":"3da26d8c87a5693ac54dbc3f3bef7c834295c59dc8a9311282a6209697d32f31","signature":"e16480cc9709831655074e2fc6fc08768a970b90d1b1daaf8c12baefe0dc2454","impliedFormat":99},{"version":"1ba50b7f7916ea58fab1e2bfa780d9e6a814ceace093f8d15a65ebf690af282f","signature":"a03e87781535239d79bb8932efc9ab02d2fa3e5c7694ff576dd59a2a68925b14","impliedFormat":99},{"version":"16f1bfcd34c22658cb80e6189e5ed1856498ad6689e6390fa9c9699f3b0914f5","impliedFormat":99},{"version":"271891420fc8fcc2e8d176ff44b5a07ad85ec207e679d04c181892e5c4617700","impliedFormat":99},{"version":"a688d4679ff3842c25d7fa72f15f61ce99a57d7e8800d9a65a24c5059c06b2fb","impliedFormat":99},{"version":"db43a2c4a6a494c90da5a684f4e8a95f6e838cf29bc2b0410ee566e77f58436a","impliedFormat":99},{"version":"157ed91cb4e74f91bf744a0f341f3f93106443c1c2e6b5ea8f9274fc7eb5d33b","impliedFormat":99},{"version":"d450096796bf24e5db3e5c66bb7a1673e533c8b327ec4aac5b9bf8a9b8f9aca9","impliedFormat":99},{"version":"7376907f5173414c5a9eb8641d473d631f589677fac9610a8cdcdf909f527cd9","impliedFormat":99},{"version":"6bdcfa2783042f7dcb0b37d091d3a049b3cfaec780dee6b77ebb1449b717a8d0","impliedFormat":99},{"version":"93cfbf360677d6d3c0303651ee8e80b33412be115775142ee44c0e484c23cd56","impliedFormat":99},{"version":"d3f17f7d13e3eccbeb39ffc673c383f9c0e5b9ed6256075e965dc65756d91e25","impliedFormat":99},{"version":"c7ed923862bca75f191d2e87ebb9fa2fb01daebca7363785cc96f34a89c29862","impliedFormat":99},{"version":"33d2e3d878665afcd95ba7a898ee40035c08fd9c8a3c9db4c22de59a1bff6dbd","impliedFormat":99},{"version":"9f702aef93a83c9fee1bcc6e50080e4fe945694b32a4f954e7293095ebe22897","impliedFormat":99},{"version":"36fea537baccde6e586d6edd0d7548dc70415bb7403d2ea483afc958a32f44ee","impliedFormat":99},{"version":"362fc061bec5c3ed4af6d493ed064448a355f268e9266894448d44fe9f3abb33","impliedFormat":99},{"version":"24a848649cade8b92ae88cae91a7d9d8f39749ef2bb6f162667fde9d212d9dee","impliedFormat":99},{"version":"f5ad8729d87f394bc9fb96fd37198edf1fcad1e6ed24ea81b449790246bac54f","impliedFormat":99},{"version":"3ffa2363afa86b0a048853041397c9517a8cd83d51fcdceffcbba3b54448256b","impliedFormat":99},{"version":"c0bbcac9dcd3c5125e40d32c800f3c9be19e37272da17e2b2f979ad392a78ad3","impliedFormat":99},{"version":"16a6a9eed99ad69c8df317fba0c5121447b305707a53781e75fb3537672281da","impliedFormat":99},{"version":"2b742524acda23b27f2884eb9022a780dd2257d3401063155b91b08e6ad35084","impliedFormat":99},{"version":"a9ecd52a50cdf7fae4f37c200b0f1bb3178b1aea7532ad484fbba5906e522baa","impliedFormat":99},{"version":"c887e50e888b2ef9ce8e7b9c504bb52821badbbdef5929da180542a399165d4c","impliedFormat":99},{"version":"3635ab0bbadbdac3b95fdcb0503aa754bf6fc3cfe580ff8e3f7ff84a4b256089","impliedFormat":99},{"version":"1086d1356a62ca3f108b5add0b23e1c58ec2abedec51b460ad126384efc987d7","impliedFormat":99},{"version":"a6f8f37066a4775ee367c27fdb2584cdc4315dc0471a5bcfe9e0e49dd22dab48","impliedFormat":99},{"version":"2b4cf9e45eb3f833225ecd4da64344660d6f676e4b2be02e576f37e71d54e474","impliedFormat":99},{"version":"7d637f77fea16cd85e6e3ac3c1dbd55342db6f7aea23eb9aa36a0a7c044779b2","impliedFormat":99},{"version":"b8343be5d7508664788d8f210b9881bb141d3783396ced2677166cd23605adce","impliedFormat":99},{"version":"530238517541cfc992dc0c75a6b820698a1d159e2c6f1fd583cb816261d680fd","impliedFormat":99},{"version":"8dc4feab71024b83da6f386436796fbcf5bb2877869877caaa38bde38ccc54c5","impliedFormat":99},{"version":"7acb977886b4afa52ff12907f405241212f0f80054f32796fedc182dc3c701f2","impliedFormat":99},{"version":"cfac0cee72b8e868e9e96c344373aaba019f76132ad295745402321779a9b5a7","impliedFormat":99},{"version":"408d1724d3882454f66f15eb9688a0bf7d9eaa3ee9618e8995dae81b3b3882ad","impliedFormat":99},{"version":"5e78a1daa7ad85b2db0517c4a044c16c7b77c085b478a535baaf8846afa9b25b","impliedFormat":99},{"version":"277618acf6145049138d1cc95a3a2968ef132f190357df787ee336053955c2a1","impliedFormat":99},{"version":"34b14432430c8e71aef8d019d9e098a3734917f06e5a0cee5b9175b65d71d7ca","impliedFormat":99},{"version":"8a79b1a2ffc3327de00f624ab7b5d0f6510687fd1f0465533b23a955aa252adb","impliedFormat":99},{"version":"91a324c1a340ae9e74696636451c6d9c69f50ee8ece7faf35b067f4883156e3c","signature":"6d2ff5be4a25f5473df0ecca5acea6a7e7d0460156c2432c8f070d016d020c54","impliedFormat":99},{"version":"eac3af11f1fd157859dde50f74d75b3597ce8f47b040bc740b2d62ec7039b9f9","impliedFormat":99},{"version":"0e23df1cf0e2ef963910fd3675f4a8493a3fa176d2bf8a7f4190172425734e6d","impliedFormat":99},{"version":"2915221ad8ecba9d33fd84bee0e4b3f8b6d0a20eca87e41114f90a28f9ff629b","impliedFormat":99},{"version":"1fcd204b0b6abc064bc9e00482e7993e45e00d7b1b421f4fc31f315a2dcd139e","impliedFormat":99},{"version":"f053c3ed1db51398fe218e0e44f308f998cc38c1dbc409f1d966a0ae11724644","impliedFormat":99},{"version":"2667c6f4f6db3ab0a1f85c04e52d1967b9db43c587921edbc1480f3b9681c586","impliedFormat":99},{"version":"b418ee1e2009cacd63dbdfdc127094d633f76abea65d404f112a857c99fd521b","impliedFormat":99},{"version":"369ce10a7942a3027dad0687dd6d570a6935ef4c289de816569364c3d056e7ee","impliedFormat":99},{"version":"fa4217e1758ebf8c68199e2b9f0ac36f0be7c16e2f04fb7cd04a6007fbfd5b64","impliedFormat":99},{"version":"2b5ea91852c78c12723caa9bc19ef7f9977d2704a4503a33780850acd5597f46","impliedFormat":99},{"version":"3780c96ce567e020adc57a3b6f52932f5505477d9adaaf4a9018c7d26759d2aa","impliedFormat":99},{"version":"33deb046025719a3ac96a2acf1d7191f0572c51cf01958128378e5c991986791","impliedFormat":99},{"version":"4ad6de46c2dc26dacef046634ac1a7a8cddfbd2dc6523e5b1c7c17a13424e11d","impliedFormat":99},{"version":"d7e695071578e2d5be3910f50053d026c3cdb2842fa4eb63948cf26e4b7bf162","impliedFormat":99},{"version":"8483dffce94d657396190a0a02c3eb0db3fa43e3700568d0a8c4cc90d9750316","impliedFormat":99},{"version":"fd4b6dd479da5eda21cab4aabbde7b40aa5d71cb9885555903e20e8762d9cef3","impliedFormat":99},{"version":"2d54aa68fa606e18f2b6c7b712dbb56418009b942661fa33f01779617947baa8","impliedFormat":99},{"version":"26ff2cc582d192a94f6e10b4a85a8c1394ce8c2e16aa82863c5bdf8c27c2a7e1","impliedFormat":99},{"version":"6d37794478084a4ca5385cd06f5554907d043e38828645379dd2da71dfef2e54","impliedFormat":99},{"version":"5ae4f06c39b46205784797bc606c7df6d95f7b211304e24afb1b202372d76286","impliedFormat":99},{"version":"2619b1f9f0af46e914f8586b6c68db694846dfabf05ea87d6f362a48e962e5e3","impliedFormat":99},{"version":"33511e769a42da01b2345c51a9b79f4c747335edde888b167ff7ff093fbe202c","impliedFormat":99},{"version":"6f4a734aef0b3aa786780782fedf0b7da3c53beaf7afd74b39b942bb4f82e874","impliedFormat":99},{"version":"9a17012a7d22978393f4201992b600634c50d33ca6f4e2af5302deab0777eb45","impliedFormat":99},{"version":"7a611d159c4303633a9087197514de001787a86e2715ba85b8765ab21a6deadf","impliedFormat":99},{"version":"57273f891fd79d26115ddfacc233d19af5ae5c05931bcb1a1088da85495355bb","impliedFormat":99},{"version":"d89644cf5ce9b1a2ae4f08963e8670fedd2996f491d56672104768a7c64f784e","impliedFormat":99},{"version":"03541ad694849b108eeb4a362542881b6bc5a8f9971f070962e43d2c9cae1b80","impliedFormat":99},{"version":"ca64ebb4a640759efcad03237ee690eb9ddab6bd5aca2be62cffdfa76d852435","impliedFormat":99},{"version":"6e623a1168ef28c04d2514c5d95f25f14edb86c6b644630dfd818251908cea82","impliedFormat":99},{"version":"feaeaffb29d60e8f807b554c763c15ff81257d65b683ce19cd1988f10d292a95","impliedFormat":99},{"version":"1d3c2808166115d92eb6d18b848840ab3e6068da73ffcf028d8a2eddad49c099","impliedFormat":99},{"version":"53841ae1c51d5c9123e230fcbdbcc0f1618499ff23a44b96cf8d0e039513fd5e","impliedFormat":99},{"version":"dbbde58654142c76bb3ed940a01e97bed1d4a053b6ef34fa4b846026817c18e1","impliedFormat":99},{"version":"0f3a94e4906ccf5b0393678971f65238f8e90ffa201e80b8ae87fd3de9bd58d9","impliedFormat":99},{"version":"42d00c2bde9511e8c88ef7895586783e17a1984f82ce40ad85e3222f97839d2e","impliedFormat":99},{"version":"a11a65d9cfa0c36969eec26199b31ae031b0978c2c8143bac2b3b15ede387b77","impliedFormat":99},{"version":"bb2da8c3a134f5e81c28e47129123d9f6094aaefb0980cd476f809c819200f28","impliedFormat":99},{"version":"a74a134d6dffb5fb321bb11c5b503d7c4730edf717062cb7d4ce4d011c92f1c0","impliedFormat":99},{"version":"61b0290624ab1f3c6d722ba7de1132f00a82097d72f1c6b250d143e7e8e7f213","impliedFormat":99},{"version":"383f25b556b886d64f7ba1d8c1b54f24d4aecd99a5a830996018c343f34bb2fc","impliedFormat":99},{"version":"68b117785466e69983a154bf811d05d062fe0fd3d4d97904b03a4e75b182467a","impliedFormat":99},{"version":"6a0b37cbaca5e5db5991e25d63d4305ac5ab77bf2167c2658ccfe8c2bfe79503","impliedFormat":99},{"version":"e18fd070a4aa3642e9657c1a2cd9cdeef5556f1bb31b5b4b0bff88f3ea257c4d","impliedFormat":99},{"version":"0003a42569e126b43694f5d24b4f650435d3679d80887447dbdeb4891cd2128c","impliedFormat":99},{"version":"9299ce5b0a4dc0c10bae34740f870f98d6ef2a7132fb32cc8c9486ed10481a6b","impliedFormat":99},{"version":"ea2599f451e9221633602a5bdcc05945dbcc619c15f84aebbbbb29d5daad17c4","impliedFormat":99},{"version":"e13394c65a79355e168612ca2f01f3ba95372b3ef3d140349f14c50e6c63d730","impliedFormat":99},{"version":"2b28814d20e83eac538f0a27953df6d03181d496ee862223beac858739769c73","impliedFormat":99},{"version":"ad6d5f335b07373e40503fe5a18d0c47d867c68db55be93ecf2e7db680485a8b","impliedFormat":99},{"version":"b892111af7f90c47d41612b96cf6826e509506dd55359b17ca73ec74b01a7c09","impliedFormat":99},{"version":"91063daa1c80f44e9bb27de1267ccc4293c9a2e41aeb191f03f877a820eeb6c8","impliedFormat":99},{"version":"919fa7d017d74e75480520ade9778d82840a66ed788d552ef42d8d17c2e6b546","impliedFormat":99},{"version":"7277aa63148ef66c2e49d6fa1b31dc22ece064e9af172aaddd1d96b1746b529d","impliedFormat":99},{"version":"b24b05deffafc504c75b0141f59df468e2e29ba9ce991ab0faf2007cb70100f6","impliedFormat":99},{"version":"485a3d431a0099b850bec330f3cba433357578822b880bae60f543c923085132","impliedFormat":99},{"version":"d3ef27fc7501f2ad11a51e469eb53ae5a3656c00734505bc0b95c6bca9170844","impliedFormat":99},{"version":"e629823e4dd71488ab01483984e38dc01785f0830d97ff789828f7e093a4a21a","impliedFormat":99},{"version":"b513fbb4a655a5ab573d380d0e9845921a67159f9dc3ef7493843e9276383f29","impliedFormat":99},{"version":"dd83d668c031412bccd2804d66d937fb2bbc68aa7ef7302b1637ecab33416bd3","impliedFormat":99},{"version":"5da332489cb965fcf50f2459f5057d415eeb9f2254b672152ee94ca74aa03a7d","impliedFormat":99},{"version":"3c9923eec0a1b1d22421164476db3b73cdb8433388ae22712e6601dd7689f11d","impliedFormat":99},{"version":"712f58c06e6eb3c7de3f816b5c18335b2009d59b4a0f0d62b79d54b3736ab094","impliedFormat":99},{"version":"031686c91b72c574c911ee7ecf56bde7145bd59e109c996ab78953ebe1da28d9","impliedFormat":99},{"version":"0c711859e535de7ba3a1d912c01f21b9a63ea2dc6d59338b5f147e19671bf04f","impliedFormat":99},{"version":"0090317826baa9c3441b516afc5c4726f86652142f71a41a013f2b5e99f029e8","impliedFormat":99},{"version":"c054565d4036358d79f5bcf2b0d55e98490003a0b58c8fe3406dc1947ac75373","impliedFormat":99},{"version":"3a8e011f471ee3dc77f671a1a54ae8514d60124a161dcef14592db37cf5fed21","impliedFormat":99},{"version":"94d13c5ea4edd495dfb09c40e68b297c6721f4dd6a1a60e9b136e9e915f5fef8","impliedFormat":99},{"version":"393fe849aa48ef08eb1e587958e617f83bd3989460bd0ceda833dfc3d6b8cd4b","impliedFormat":99},{"version":"1744df03147a9e0197d1b3ef8ddef35df072480d357c4fda00afa010b6f72a4d","impliedFormat":99},{"version":"08944c0b9aafe9c9a64ac3645eaca4f2b521b2bfb4d1f49611fe54f51dfb3e39","impliedFormat":99},{"version":"05dee75a8c6866fc7a8c14fe978bde3401ae4181094b27e93f33e67f92c5ca47","impliedFormat":99},{"version":"fbf26cc3c36aaf040c715a4fe831ed839b7d884d2471ca79c10c86e5f0868375","impliedFormat":99},{"version":"ed165a4c7aada66988fbd0ecd01c4036a42d26c668165e340bc87a7c48750dff","impliedFormat":99},{"version":"260d1ea85476dc62b8c19db59ef88908a42ab4ef32b7b5af8f46f8fe92fcc9dd","impliedFormat":99},{"version":"6fabeb25ee54178dd6cca8d406adc142ee98ef0b6e872de04d6802ab30c5a582","impliedFormat":99},{"version":"f7f68a8b795d5aff7ab379efb18cb6952f0cd361918f045c7f0c5694b9afade1","impliedFormat":99},{"version":"445067c919598834320b4b599cc4826f96b1d7f9bc49496dec918cdd7ac99f94","impliedFormat":99},{"version":"87b08ce53dfe464833760606277c3daf3af3c4aca2bfe1e569806342a346d3f5","impliedFormat":99},{"version":"9c83f18e60cf7d6a647a9cfa7c769f6a7cf43bbed68e56a4f2d5e0162483782d","impliedFormat":99},{"version":"8e37bd973bd70ab98c5897e6e9dc27dc45cb300a2c7c29335ae0f4072108834d","impliedFormat":99},{"version":"594cea4e5cd7bf3855a1e58b4cb93d9a1aa79b2c70212405fdcb97a7d73dfb71","impliedFormat":99},{"version":"46a21f5f727c69d52ee2b3b6bc5620ef7129bdd7631df7a7bc01ca7635618f5a","impliedFormat":99},{"version":"6d85b5007622d81d78ac68f9183d2e4bdc213ee3f1516a3129ef0839ff4a0a95","impliedFormat":99},{"version":"0fdd28a912fe2538ec817a8175a6da4d961f3e2ad93364eb34343010f243bb55","impliedFormat":99},{"version":"4e3fc30af4ce09a3b350d9c7623b994572fe7f6131a8629726783232cd3a24e9","impliedFormat":99},{"version":"904933f473fabd0fbc67c5fb7f3a38b727fc65e35b166ef6cc4331aa8abee037","impliedFormat":99},{"version":"e63d35b6f9bf031d597d9c8444148871d221177f9e207816f05afba4126e2f6f","impliedFormat":99},{"version":"cfc6f78d5430bee7c6b36ea64f60be1bd7c416455491e98a916e0d4a3e5036c2","impliedFormat":99},{"version":"466f2a4d4641e82d5b3addae0d06182f9cc45047138e82de3d0f31cfce9f3855","impliedFormat":99},{"version":"eaf466c8ffba8a14cb6bdc4ae43b5d76d2324dd6ccc5b6f0d5e0dcafb59073ca","impliedFormat":99},{"version":"25d63de4edf1f9e0860ef418b1c3f02a12de69773cccc921dee712028d821023","impliedFormat":99},{"version":"4d1fb7395b59cd1092dcfcb96cfbbcecaa670424fb4d4737cbec229248254791","impliedFormat":99},{"version":"ce733fedafb284eeeb5a705cc05ef880e30f3bc75e033879ef62fdf803d93247","impliedFormat":99},{"version":"d8797828dda5bb71d2591280e7cead46cb1038de42a45fb197be563dea745b1f","impliedFormat":99},{"version":"aa22bc5466231be3326c6a7d2ac298f90554887289693aa671c79fa916af9ce4","impliedFormat":99},{"version":"19b95bb3d20c24c868ab6a74af4e6b608a4a054b08a413d6dabfb0935f0ad6e8","impliedFormat":99},{"version":"4e3397103ab6a7c7b1c21b537d916b71fe12b70c3ed9fa842d24bc6c1fb2a512","impliedFormat":99},{"version":"5b8b3095f72f2f08e74d1c2cb99d4d0dbafe8000d05cc08102509fd9af76bdac","impliedFormat":99},{"version":"8b5b86cac8376275514331b783ff77d53d46f45f87c115da1a738b91fbd1d13f","impliedFormat":99},{"version":"275a0e9a90c8b479b178e7e62a58a25908e50eb8bfcacd01618d3fca6b9e3258","impliedFormat":99},{"version":"081569fabd3dc2f9d9b9a71e60ddf18dd2bf1dfc914c1f19ad82d8af2ea4380e","impliedFormat":99},{"version":"81349b83b9396eedc72f76cd6ce09a1f9918966b9fab6deff0339d46c8e0346e","impliedFormat":99},{"version":"373dc8706ce580a9ebafc9ba2569721e081d2c13f916b2595b58e0c81ae09196","impliedFormat":1},{"version":"90747c589a64ccb08d72aed5dc235de9aeb725a85c5982514f2c7fb807bcdb42","impliedFormat":1},{"version":"0f795f93a2af6dc07587a92c1b4e6a9c0cf75d42274c30964a9c12e5d34fe739","impliedFormat":1},{"version":"75521c63714b0ddf9d17d8608c6873f56e57b4d06c82859bf61f7a7aa5d9cd0a","impliedFormat":1},{"version":"da246e9a2cedd122d5ba2bbfad53ce2aee3c8666c3c647b6bc2d38b1218ce701","impliedFormat":1},{"version":"6ad096abf0c15c16f3c82283ac97f89b99468072ea9543e48bbac39d6118daa0","impliedFormat":99},{"version":"2d6cda6d79142d6f4ecaf7d99bf9250cd5d61df09e19bc6b52da99ef90365eec","impliedFormat":99},{"version":"87df40b0f1e0fe41dc10937e563e04fca15985aee82086367dc065311183810b","impliedFormat":99},{"version":"df05afb5a51996bbd9cc08dfacbfa896750eb7e15bfe91f589621bbfeb486169","impliedFormat":99},{"version":"38e1bbf500b5b58c041800f02f4a1e60c707d7c7af2b74414703df08a0a7e52a","impliedFormat":99},{"version":"c11a8a5f50291acb8c51c45f90293d3d56f5927ce6a6ce055bacfab437ca9426","impliedFormat":99},{"version":"0faf79a120afec11dbcafb011c1ee1827dd9e53fbd178594dee15e61b743fa71","impliedFormat":99},{"version":"78b89f68e9bbc19615aa36ed6da94de86f34bab8452c5a1cf484d0aabccee172","impliedFormat":99},{"version":"270f53bc569f5fc4fced34a9b167018c820253ed83344ab1ab3ba55f50b0e5a6","impliedFormat":99},{"version":"3979670f7f9616079ce9108448dd7d9bb91a147d838f909c83d772c76670c8cd","impliedFormat":99},{"version":"942802061a9d37b2680b3202c5d82e5324285e436549589a51185610d4c83455","impliedFormat":99},{"version":"07c1d0bd18bd443878fad014e4833fb79e7c4b43e38173c19a73062e172b6df4","impliedFormat":99},{"version":"f820cdbddcc0f543281217820827a8a596c17b960a164348c73b1ad065437387","impliedFormat":99},{"version":"cfe0bf5f9700b8550c4dbb307fc9f266e61e8de6002b684c2f1ed310d11d523e","impliedFormat":99},{"version":"fa2d5e29ef20b0ca983188d018a38ae5f97b6fa1e27d100e90d69205db680238","impliedFormat":99},{"version":"62c47182a2bd76f3ff1dbf8d4eee1291425e52086499511cdf5f51ad327abea4","impliedFormat":99},{"version":"c116b7200d190e556b75ef20c9deadc60defce091446c0139433d6e26a71c2e5","impliedFormat":99},{"version":"b8bc6a5c15ae8d4150ddfbe11e82e5d04904fe064bcb1a85474d298915cd5f79","impliedFormat":99},{"version":"1607e7cca4aa88826545fa3930ad2ac91ff1c1af1ad096c2f4d3e33db1bd4995","impliedFormat":99},{"version":"ddc1e6930cd45f01095910ff95d1e2d84bf4f58169ddd6b292494140e05617c2","impliedFormat":99},{"version":"cd00c53f28d497e3dbd9e61c317e45c3f4bf507edb6989011568f487ce7d56cb","impliedFormat":99},{"version":"f1fe573bfc067e6d502aefecdd73497eccd163c7feaac27ef88be44d43570f77","impliedFormat":99},{"version":"a406fd60a0ef973a5d7a707f9d0c9c723da3e3070f84c8ce79f7d053d5d2c72d","impliedFormat":99},{"version":"025356e8b6e25ad70e49079897b46c765327df30df439cd51cfb8dc4d541d5c9","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"dcced3e9fcf3f1c47dc2f6f09404061042d3df7124ff7a2266e609ffcd32766d","impliedFormat":1},{"version":"26d51d186bf97cd7a0aa6ad19e87195fd08ed72bb8df46e07cc2257b4d338eb5","impliedFormat":1},{"version":"9aab98866e26dc934f3002eee29e3266e7cce3022538f65935f03f678639e156","impliedFormat":99},{"version":"658c6178dfe9d23712e9804a26cf6d43f9a05cfe3a5fa4a94b2cdae9b594e2aa","impliedFormat":99},{"version":"9709c49cd5833cfcc964953d476346a67ce832b2b1795edb2a2a105ae905ad72","impliedFormat":99},{"version":"84bcc7c6b06f4d643a55dc63b56be0c81d990f8d549b66ea615c553268774dc3","impliedFormat":1},{"version":"2d225e7bda2871c066a7079c88174340950fb604f624f2586d3ea27bb9e5f4ff","impliedFormat":1},{"version":"6a785f84e63234035e511817dd48ada756d984dd8f9344e56eb8b2bdcd8fd001","impliedFormat":1},{"version":"c1422d016f7df2ccd3594c06f2923199acd09898f2c42f50ea8159f1f856f618","impliedFormat":1},{"version":"2973b1b7857ca144251375b97f98474e9847a890331e27132d5a8b3aea9350a8","impliedFormat":1},{"version":"0eb6152d37c84d6119295493dfcc20c331c6fda1304a513d159cdaa599dcb78b","impliedFormat":1},{"version":"237df26f8c326ca00cd9d2deb40214a079749062156386b6d75bdcecc6988a6b","impliedFormat":1},{"version":"cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","impliedFormat":1},{"version":"58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","impliedFormat":1},{"version":"7557d4d7f19f94341f4413575a3453ba7f6039c9591015bcf4282a8e75414043","impliedFormat":1},{"version":"a3b2cc16f3ce2d882eca44e1066f57a24751545f2a5e4a153d4de31b4cac9bb5","impliedFormat":1},{"version":"ac2b3b377d3068bfb6e1cb8889c99098f2c875955e2325315991882a74d92cc8","impliedFormat":1},{"version":"8deb39d89095469957f73bd194d11f01d9894b8c1f1e27fbf3f6e8122576b336","impliedFormat":1},{"version":"a38a9c41f433b608a0d37e645a31eecf7233ef3d3fffeb626988d3219f80e32f","impliedFormat":1},{"version":"8e1428dcba6a984489863935049893631170a37f9584c0479f06e1a5b1f04332","impliedFormat":1},{"version":"1fce9ecb87a2d3898941c60df617e52e50fb0c03c9b7b2ba8381972448327285","impliedFormat":1},{"version":"5ef0597b8238443908b2c4bf69149ed3894ac0ddd0515ac583d38c7595b151f1","impliedFormat":1},{"version":"ac52b775a80badff5f4ac329c5725a26bd5aaadd57afa7ad9e98b4844767312a","impliedFormat":1},{"version":"6ae5b4a63010c82bf2522b4ecfc29ffe6a8b0c5eea6b2b35120077e9ac54d7a1","impliedFormat":1},{"version":"dd7109c49f416f218915921d44f0f28975df78e04e437c62e1e1eb3be5e18a35","impliedFormat":1},{"version":"eee181112e420b345fc78422a6cc32385ede3d27e2eaf8b8c4ad8b2c29e3e52e","impliedFormat":1},{"version":"25fbe57c8ee3079e2201fe580578fab4f3a78881c98865b7c96233af00bf9624","impliedFormat":1},{"version":"62cc8477858487b4c4de7d7ae5e745a8ce0015c1592f398b63ee05d6e64ca295","impliedFormat":1},{"version":"cc2a9ec3cb10e4c0b8738b02c31798fad312d21ef20b6a2f5be1d077e9f5409d","impliedFormat":1},{"version":"4b4fadcda7d34034737598c07e2dca5d7e1e633cb3ba8dd4d2e6a7782b30b296","impliedFormat":1},{"version":"360fdc8829a51c5428636f1f83e7db36fef6c5a15ed4411b582d00a1c2bd6e97","impliedFormat":1},{"version":"1cf0d15e6ab1ecabbf329b906ae8543e6b8955133b7f6655f04d433e3a0597ab","impliedFormat":1},{"version":"7c9f98fe812643141502b30fb2b5ec56d16aaf94f98580276ae37b7924dd44a4","impliedFormat":1},{"version":"b3547893f24f59d0a644c52f55901b15a3fa1a115bc5ea9a582911469b9348b7","impliedFormat":1},{"version":"596e5b88b6ca8399076afcc22af6e6e0c4700c7cd1f420a78d637c3fb44a885e","impliedFormat":1},{"version":"adddf736e08132c7059ee572b128fdacb1c2650ace80d0f582e93d097ed4fbaf","impliedFormat":1},{"version":"d4cad9dc13e9c5348637170ddd5d95f7ed5fdfc856ddca40234fa55518bc99a6","impliedFormat":1},{"version":"d70675ba7ba7d02e52b7070a369957a70827e4b2bca2c1680c38a832e87b61fd","impliedFormat":1},{"version":"3be71f4ce8988a01e2f5368bdd58e1d60236baf511e4510ee9291c7b3729a27e","impliedFormat":1},{"version":"423d2ccc38e369a7527988d682fafc40267bcd6688a7473e59c5eea20a29b64f","impliedFormat":1},{"version":"2f9fde0868ed030277c678b435f63fcf03d27c04301299580a4017963cc04ce6","impliedFormat":1},{"version":"feeb73d48cc41c6dd23d17473521b0af877751504c30c18dc84267c8eeea429a","impliedFormat":1},{"version":"25f1159094dc0bf3a71313a74e0885426af21c5d6564a254004f2cadf9c5b052","impliedFormat":1},{"version":"cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","impliedFormat":1},{"version":"3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","impliedFormat":1},{"version":"b83139ae818dd20f365118f9999335ca4cd84ae518348619adc5728e7e0372d5","impliedFormat":1},{"version":"e0205f04611bea8b5b82168065b8ef1476a8e96236201494eb8c785331c43118","impliedFormat":1},{"version":"62d26d8ba4fa15ab425c1b57a050ed76c5b0ecbffaa53f182110aa3a02405a07","impliedFormat":1},{"version":"9941cbf7ca695e95d588f5f1692ab040b078d44a95d231fa9a8f828186b7b77d","impliedFormat":1},{"version":"41b8775befd7ded7245a627e9f4de6110236688ce4c124d2d40c37bc1a3bfe05","impliedFormat":1},{"version":"f050afc4e2e063baf534e8bfa7aa6489e360f1016eba8603c19b45ba9fcd5887","impliedFormat":1},{"version":"9d6d5aec23fce486ccc52123d440d056519572f529d1f03dca71270d34efeec8","impliedFormat":1},{"version":"092657fbee8f216761a98d6d1242bfe819a5ba06d8f312eafb03fe8b9ba059ce","impliedFormat":1},{"version":"a795c5ee89f55a0ab2e821cdb8c558c7bb61be80b2fc7d4720e607943b4f6ea3","impliedFormat":99},{"version":"8965834fec053e8bba79bd3779516df8786ce2d13c0eff3f553ad81d07da5be2","impliedFormat":99},{"version":"125b3e3d43d2a7984ebd3ce0ed279bf0db7df13ce4a588af4d5f6168500fa651","impliedFormat":99},{"version":"71a1c9d942527f0b2a97109050ae2ba84c8c6b95dbf3501b98f901a21e6abd9a","impliedFormat":99},{"version":"9572b44ecb05f2df7a4156ae0f7a5eca2df1f35ae45d0e8ff2156d7329be6f5f","impliedFormat":99},{"version":"a96f83ed52f182b5ed3d5b5760620ab2e9f013e8ab84bfed0a71837dce3809b8","impliedFormat":99},{"version":"3a430315efc16034d804871f690be48a5a60ad42a32fa26fcb4f802e71b721cb","impliedFormat":99},{"version":"9edb600ec4c4b840673983032f2fa15e7e86e81ffab7199861474d068695823e","impliedFormat":99},{"version":"78e570ad6a831699351886f02ebabfe3d9241836b461cff38261952991a96565","impliedFormat":99},{"version":"5b61bb7846531d7fd3f492632ea79ab5406c2adfba654d0d0169da80531c2a1d","impliedFormat":99},{"version":"a8afbb2eeb9dd9eb01a352b812efe5867408ed70ac1570b2a590ff170dd18019","impliedFormat":99},{"version":"8823698c3154779408709535eba1df4ccdd49ba8296753b506ee21e31c6310a0","impliedFormat":99},{"version":"284f56dd08e0d2a4777730cc0c5e06c6214c54ff70e2cd2ea542fc526a3755e2","impliedFormat":99},{"version":"8f724fd07ffd83eff127b9705a23c435a977e08724a40a09600a303446b2fba9","impliedFormat":99},{"version":"481c72bdf8348f781f2093ef946113be7ecdbc3a57640b0adba076f9743e8bef","impliedFormat":99},{"version":"66d4a1fee92e85d80a52b61e25841a259fb3b5fb18d0c69a6b34168f1083cd94","impliedFormat":99},{"version":"8d01bc7c35a2963872c113800f096726a579dfd4eff9f658c048ba91bdb6bc34","impliedFormat":99},{"version":"22b79dc8d9259459d9392214a5ca9dc5e3637ba647787970c757ea726c4d5de0","impliedFormat":99},{"version":"bf7bb23042112c5265c42c07850d445f9a92c980344d7e329104cf7776ef2f6d","impliedFormat":99},{"version":"b03dd8948d608f2696f29690203177e35407c8836556961e2abf2db4471c5498","impliedFormat":99},{"version":"41740b735395db66ea8176d51faa5adb5adf2acb9a6e603550edb7f4a8636d50","impliedFormat":99},{"version":"0674bdca8bd86a770706271699e1333bda5b5026d950a08b73496f9290480aaa","impliedFormat":99},{"version":"bd23ad90631fdd9c28284b711d37aeee13b469dc133657283f1227ee70dc2e28","impliedFormat":99},{"version":"9720a0d97add40a3dafb0f63d211ed95c6adbd2ae252ec83edb89b5179bdb530","impliedFormat":99},{"version":"c12d239eb4d0c29f5d9aeff41d53e64bc951225d65cd55e1e61b2b3c6defac3b","impliedFormat":99},{"version":"fcdf886d1c63a365aa4a4436203d94c4514a3b27a660255234d7d0f41e667745","impliedFormat":99},{"version":"1bd8e303ae228e8955e5c59f67794651b2f43b1dce7c8566eb966bbf79a69846","impliedFormat":99},{"version":"5ed829174b2e9e8c855bbdc369aba65db07ec8ea55a2ea31cda0bf77ad973795","impliedFormat":99},{"version":"36f796dc0c8e164fe4959c4522e5158126faccf91a7f661dbd688a3c317716f5","impliedFormat":99},{"version":"dae7df5ef3f373d3f4d11ae07f9cab9ffd2781f6395d7015bfc83d91e23d28c2","impliedFormat":99},{"version":"c57412cf126ee337193c62e09ab3f8e2b6fa79f0f1633ff825c2fca7ee3b519b","impliedFormat":99},{"version":"55de12a7de60647e05d62ff9d4b66610bee5790f287328eaa2f460a3b4f0d59e","impliedFormat":99},{"version":"e3c0abeed47689c237dd69773edf0134cb0fca0c36aa69aae50b66b4b396912a","impliedFormat":99},{"version":"fe804a794465bc19634aac8b6721880cd7e7f05c01cfc5e56b775c05056cc29e","impliedFormat":99},{"version":"54764156df21873217850da59e09badf948a4017a2b3f4ade680ac6c4d8e2524","impliedFormat":99},{"version":"2ffbb5c813e969ed341cf7d77f666ffee407ccfb2511cbaf27335463b137caa0","impliedFormat":99},{"version":"bbd0e89a24b064544894d55da4042d6067647a43c4147eb35d8d9af30cd0d77c","impliedFormat":99},{"version":"8f1c34d645063322d51210b89060aa78863d4f615a2e3ba4c61b102bcb46a18e","impliedFormat":99},{"version":"6f9d4ab52949519a7fe80bc3c964b832a041af810b4dbc64538770e7917f6300","impliedFormat":99},{"version":"7e05c8c31fad0892b12a89558cd246a32fa9ea8b5fc567791aad3a678831af57","impliedFormat":99},{"version":"67510d7c42b83a2e02249226b7a4e1a0176b215a6911d865decdcfaf980177ff","signature":"00239126d22fa6a2d5e4f489a70df9832cdd8661dbc488ea497149c22aa6cc48","impliedFormat":99},{"version":"7653ffd4338524526095bca0131fc0e35a306a68a39a8031902a2932716f6e4a","impliedFormat":99},{"version":"6e50b68213f3b76e9061844537836f33e0bdc30041a05888fc97f1ca27ec18bb","impliedFormat":99},{"version":"f6f043168603407128b3276ddafa44287684586ee82f608d9f443af76e9d51fc","impliedFormat":99},{"version":"4d805e53712f18474aa94a867e6a01e1e6e9bebcd1f0776a586a2f373bc10427","impliedFormat":99},{"version":"aa3ca6e715816441a01ad697df7a76f1a491e6746d0cbd9552030bc0b5a63472","impliedFormat":99},{"version":"8895cdc443a5aa41580c363cb85c42a82653b2dd4e48e6ee8cabbe7bc2fd68df","impliedFormat":99},{"version":"393fea6af10c594eeba0b223cc637da096698793f1f6c5c8601cec0196c4e914","impliedFormat":99},{"version":"ffae69106ab178c2d9a1bec8bfd7e6dbc09760d8d970b3cdafc8fdef3eea3355","impliedFormat":99},{"version":"dcb0a9022ffef42ece8be6ac12a141f57dc0146bd340a870364b22abc2f2f117","impliedFormat":99},{"version":"b04e27b8d51ffefbaa5e78c830a4b20b873db0d10668b6c09e835d75c213734f","impliedFormat":99},{"version":"322720abd3b2d9389040d1c2b552e451ad0ede87ec2d4cfef2d260e0241f93b9","impliedFormat":99},{"version":"dcb65e737b689a3c1d0121da29649e17d734270fe23fde078e8b57c94bb4bd1b","impliedFormat":99},{"version":"4c1699cae312351d83bc07c670de5f5853de92c5ce4016277ed3917ed7cb7c8f","impliedFormat":99},{"version":"52b5b89c8a42611dc120c7e6fc04117227efc1a19a89c1f5fe760fb6997f9f73","impliedFormat":99},{"version":"072753aa4327a75fd90a94b20a3ed438a70e3fa44b65e1f26d081ea08feb8168","impliedFormat":99},{"version":"9641d7ff7a748f9aa00bdb25ef0058dd34c8a8ffa54059c055be4aeabb78adeb","impliedFormat":99},{"version":"db1a1ce51f2df052e8bd64c3f96c16059bc24075d4b2a20a0ca443c91b504f6f","impliedFormat":99},{"version":"b00c272fc5f39e47da225846111a35e70a6abd98a48d28366e2702b521dbd6c3","impliedFormat":99},{"version":"c06d7fc2dd93242e3b4addeafd78483e7c3eedcbf7e679a8d61f6b0479c8ebf2","impliedFormat":99},{"version":"7dca648b9a8caec053f1c370c858c72bc4f7373e745253b81e7058b6e61d1a0c","impliedFormat":99},{"version":"f84b8d26b0b3b30926c946ebf02ee6e8eef6fd6842bdb94e65443f2274d47282","impliedFormat":99},{"version":"299fda63f6366185484bf8e900ebb60963612c92e42120875b9f517a52b12503","impliedFormat":99},{"version":"0751976c3e17edc32e639bcc42d1966ee3299cc94bbf88f954a69462227f4cd5","impliedFormat":99},{"version":"cd8633e4ee19b547fbc57bc6aedf7d2235c82908981ff6d9f5df2eb8da450108","impliedFormat":99},{"version":"a353e6039d8d87108655e1ac2ccddc9cb3c354facc86f7e7aae15953eb9fbd1d","impliedFormat":99},{"version":"abd58275bf712b0ddaed6ffdf7e70cc159714ee46ebf40eeac62355f556f0f8d","impliedFormat":99},{"version":"97b61ec4f9fda05f528e8afe830e014463a23197db52ce02912b8aea8ee4ecab","impliedFormat":99},{"version":"29427c02c35a78f6a1a4460fc9e827eb843ac1160dc85f629a6c353acd0f18b9","impliedFormat":99},{"version":"c1a98f433a11c554024a6f95d8fa1f6cb4d6e53f77498ec939d64ef30a38e446","impliedFormat":99},{"version":"6ced191bf134f00eb0059b0e4737734f1773cbb780b902517d7cdef8785a2a53","impliedFormat":99},{"version":"09852a6eaecf61268fcdda2035c66eb90bf2e3c793830e01376315a261f88e2b","impliedFormat":99},{"version":"6747d23800431872ac8d0a6b249a4bc41429be79d86bbd8e80e9791ada4091aa","impliedFormat":99},{"version":"e17a3e0efa11d44b8128bcb755f5b49f5935bdf2498e6972b270fee6668f2a1e","impliedFormat":99},{"version":"04f920ce4b1af5e1fe7991d536dab3f88943ece979bc4d17b89551a26e237478","impliedFormat":99},{"version":"fa49dd987999fc3d1db3fed91e26f1b41611ef4830c44401c8220c1d83455d62","impliedFormat":99},{"version":"3d9d750d65d8984a53019a34db295894ed39df0dea6113ccbe2f19087dd6c5be","impliedFormat":99},{"version":"3f5d9c064807409b1534033969f9688e86e02539d12e508bb2ee0621ac2b9466","impliedFormat":99},{"version":"60ae568c540af826ecc593fe829e56a292ca0cf6243a1802a53abb8718372bc3","impliedFormat":99},{"version":"bdf839adc4645ac0005595fe0d60dd0e41c7921d8460a8473a9af32dd130e7ee","impliedFormat":99},{"version":"696a878903b1009d58bc47f2358f414ca141e4658b5b6b48178e2a19eac953bf","impliedFormat":99},{"version":"ac6464a867ea2964670ef733135bd03619db048bb3bf92cb141b427ef41bd47e","impliedFormat":99},{"version":"1cb83a9f2db1fdea074f0a228491b759dfb8fa42d989ff4f0d349d801a978da1","impliedFormat":99},{"version":"1ef64b320f91749e592a59393bc79a9afd3db7c4a68683e5d8326cb9586e7134","impliedFormat":99},{"version":"684afda17181a690a9c84c21f089960370629c26c2442e897ef0bafdffda9cba","impliedFormat":99},{"version":"07b8a4f1204c450d02eb0664cb9e6919b5da0ea135e3d7713a9ec04fb4922d49","impliedFormat":99},{"version":"9221b8ac0e816efc63b9d40d18dee799f73495c3cf5f14b33a1ad8557cb4622c","impliedFormat":99},{"version":"d0c4e39684691f5433cdfe218287fe82121a04988d06771df8f7d4693197df25","impliedFormat":99},{"version":"5e85ccb6eb83f3625a722fbbeda6c6d7dcdde4f9b8951a61ccfe657fb28867bc","impliedFormat":99},{"version":"00cb0320ac06a2dea8017e377f0f6e626242a846c57ccecbe747a23eaa623f21","impliedFormat":99},{"version":"0c0dd7e2b6ca3335314893968b7ec2550565eec97f79548bddef8bec6da80cce","impliedFormat":99},{"version":"88766e70d7bff02ae26e3573806a404e8cabff4d55336f07464ea2e74ae2388e","impliedFormat":99},{"version":"74f6910082fafbaa3ff09dd9b9e65221c43c9954267fcfa3b32eb5775dabad66","impliedFormat":99},{"version":"053223f6fe31413366d82869510f4a2a639a760779dbdc5b15464fcdb5d9a228","impliedFormat":99},{"version":"b06c37d7138327439ad13706f62cbe0525e8b6bafd416bd2a2631a1a48d384f2","impliedFormat":99},{"version":"b480d630f52d0826a63ebe836c60fff0511a9f02422cb07f5748811bd237550f","impliedFormat":99},{"version":"1a9b2106f399a93696e39e9ad015ce5e4961fd4043913d5f95c93c892bb831e5","impliedFormat":99},{"version":"3e6746f30d5add530c799e09fbd12099ffb542e0fcb0329a0f619a420007634c","impliedFormat":99},{"version":"786bd2f9bc853b730ff617b609d92dbe73a30a485dc31b3bbdfb0e4baf178876","impliedFormat":99},{"version":"a84e936fd9c74fe7ae267f240cb929858e8d8d0760b8752441401dbb1af6460e","impliedFormat":99},{"version":"c258edb39ac8061ba08671d4299ba0f071e94910aa157a347f937a7afebb96b9","impliedFormat":99},{"version":"1b00112665a14bb9d804e331082c0031206ae2295e74b5aa625242b2746e2bd4","impliedFormat":99},{"version":"e7b949abc5c1b2f4a3a1043bb3f6adb6d34d8f2276d26b16539ee03dc1f77c0e","impliedFormat":99},{"version":"263c4b8c3cb04e240b4cf0224510cfca0df23782c6047700bbb33686df34703c","impliedFormat":99},{"version":"16c9fe1cd65e964b7bd15b7f68b409787f44657be053af5b860217b584b151c0","impliedFormat":99},{"version":"388dfc7519574d147b99b9a24593bcec7eb523129f2caeb30c1890bcd3aa0e85","impliedFormat":99},{"version":"7b63ee6edd490a3012e0b5cf81b64508ea44d1fbb34d47426e44ae06f804c452","impliedFormat":99},{"version":"6d4aedc24d3bcb12ce19d2450501d33fe1fc647be6162a99e4193212a2d9f43a","impliedFormat":99},{"version":"60c247e8329098c37d8d26e43831b074a4fec5dd8daf885ac3e79eede13e39aa","impliedFormat":99},{"version":"2516cfc19400a1aa37b0bf28f839f1845bed85ee2c4dda9a08e3bf6f50490608","impliedFormat":99},{"version":"fbda16b486842fc5ce77f0c0c7ce9c98ade4ef7befaec919d3735c08659cd3a3","impliedFormat":99},{"version":"7d454e779a8896e3b685035fdea856cdf02e52209083e1300e1ab4a65f4efb1e","impliedFormat":99},{"version":"46a14b89c77db233ad8df4e4143b9898c57fea9cf4242e8ecb152fa8a90f75ac","impliedFormat":99},{"version":"77376e490d2cb7e20086abe66cf7ad5d5f30fa72c661aa5af33221a8f27f4dd1","impliedFormat":99},{"version":"47d28c20b5fe5f08abf3ca6595466cfa5bbbe456982d6c8ea83888cc2429ae82","impliedFormat":99},{"version":"a0c2645fa8dae32816af7c6631f848ed873a5b49e116f5b8ccb5e75247409723","impliedFormat":99},{"version":"5288486ca713353fa0cbadf2aef31a933b0602cbf146970caca2107f8fef6bcf","impliedFormat":99},{"version":"ce41f2ea1c922098d5c8a2ed05f71b16e06d5a1cdcee4122247cf8871075bc5e","impliedFormat":99},{"version":"942a0424f88de2d8dc3722ddd955ab6f08386dc5a865fb4e6487b03fb1a87248","impliedFormat":99},{"version":"2a079bfbdbed2746c1eeb05cf4f9d726d587c61ee95b2b99dc6e017d83020f1a","impliedFormat":99},{"version":"802d85e4062f4aa4b23a70c03cb024248bcbd2952792f4bfb20e5ff5dd173b16","impliedFormat":99},{"version":"d6ee22b81386f09ff62c33bdaaedf0d2b8497681133954d9fbd9fd389da858e9","impliedFormat":99},{"version":"dc7fc11e9e615d4c9f84883729a4136763ba6b6f319578c31947cd42ba40e8b4","impliedFormat":99},{"version":"379ee4a6583e2d780f5ce924c8940e3bbfda56580f92afc0dbe5f155f4c4852b","impliedFormat":99},{"version":"9defd2093b47c703fef4c77753e0fd231f634f68919917682c1f6fcc199a4990","impliedFormat":99},{"version":"60ccc3ea751280965145db8fcb69f633878586c114e90b178cd0874743c00451","impliedFormat":99},{"version":"e80df2cf0e8097807098eafcbad6e2bb39d4419cc06453a13c30d99bb2b1df09","impliedFormat":99},{"version":"a8de7991436fc126f599bcd6ec1d2a17050c3ea1748e48e58cf5cb82b8c88c71","impliedFormat":99},{"version":"590b6da60cd6c339009d07582fdb03de34aa048cd4788519a8501c93a5fb733f","impliedFormat":99},{"version":"80311acc76bf5abd5259cef0dc47b0e3dba7c53125bb4c3524a0866ae876ab16","impliedFormat":99},{"version":"7a827d77377cc6b70aa3a1b6b337d3393e7e723adae3981c75a6e659fb24ceab","impliedFormat":99},{"version":"278577765a27a4471ee36cb3878241b3920be0962ef0c766ec1ca91960646fa8","impliedFormat":99},{"version":"f42ad8c372a834d486f2d7638b06fe58fcef9965052be7adb8c381ef4de51926","impliedFormat":99},{"version":"31304ce1a08343f6e2d0f87aa31d9890e598c355a5e5ff2ab81176905831692d","impliedFormat":99},{"version":"d35795034877bc6b4299d91d5b195b8242cf16e074f943dc8bed843eb9bb39c0","impliedFormat":99},{"version":"54e9266cba5ae95a455121aa2804ca681a700873d8698ce26deeb320e6a46423","impliedFormat":99},{"version":"9c0bec23536841fbcde90372d51e1591b3e8c6bdf4856596664a529698ad651c","impliedFormat":99},{"version":"aca798702ca22832587aa791c7e3b6a95eeac3100ddc53691bcc30b984dee7b1","impliedFormat":99},{"version":"0b4b136bcc477f2dd40ef0ddd0f346fccf169543bdb4d2fc54bfb20f2447a40a","impliedFormat":99},{"version":"4771fcc5e5ef0f64aad53cf790472b348bb95f0cb610a88736794d8c2735cb31","impliedFormat":99},{"version":"7cbbad54edbbdf4b70235b4eb8414d3511c2da2a2e584c292d63b3afa79ef547","impliedFormat":99},{"version":"14ecfc29e0c44ad4c5e50f9b597492cd8f45a2a635db8b5fe911a5da83e26cf8","impliedFormat":1},{"version":"569e762cf47aafdad508360a443c6c757e56c61db3b652b65458a7d168d139c4","impliedFormat":99},{"version":"02ed2766d79a00719ac3cc77851d54bd7197c1b12085ea12126bc2a65068223e","impliedFormat":99},{"version":"4b84373e192b7e0f8569b65eb16857098a6ee279b75d49223db2a751fdd7efde","impliedFormat":99},{"version":"5aeea312cd1d3cc5d72fc8a9c964439d771bdf41d9cce46667471b896b997473","impliedFormat":99},{"version":"1d963927f62a0d266874e19fcecf43a7c4f68487864a2c52f51fbdd7c5cc40d8","impliedFormat":99},{"version":"d7341559b385e668ca553f65003ccc5808d33a475c141798ba841992fef7c056","impliedFormat":99},{"version":"fcf502cbb816413ab8c79176938357992e95c7e0af3aa2ef835136f88f5ad995","impliedFormat":99},{"version":"5c59fd485fff665a639e97e9691a7169f069e24b42ffc1f70442c55720ad3969","impliedFormat":99},{"version":"89c6bcc4f7b19580009a50674b4da0951165c8a2202fa908735ccbe35a5090dd","impliedFormat":99},{"version":"df283af30056ef4ab9cf31350d4b40c0ed15b1032833e32dc974ade50c13f621","impliedFormat":99},{"version":"9de40cf702d52a49d6f3d36d054fc12638348ea3e1fb5f8d53ef8910e7eaa56f","impliedFormat":99},{"version":"2f844dc2e5d3e8d15a951ff3dc39c7900736d8b2be67cc21831b50e5faaa760a","impliedFormat":99},{"version":"ecbbfd67f08f18500f2faaaa5d257d5a81421e5c0d41fa497061d2870b2e39db","impliedFormat":99},{"version":"79570f4dfd82e9ae41401b22922965da128512d31790050f0eaf8bbdb7be9465","impliedFormat":99},{"version":"4b7716182d0d0349a953d1ff31ab535274c63cbb556e88d888caeb5c5602bc65","impliedFormat":99},{"version":"d51809d133c78da34a13a1b4267e29afb0d979f50acbeb4321e10d74380beeea","impliedFormat":99},{"version":"e1dafdb1db7e8b597fc0dbc9e4ea002c39b3c471be1c4439eda14cf0550afe92","impliedFormat":99},{"version":"6ea4f73a90f9914608bd1ab342ecfc67df235ad66089b21f0632264bb786a98e","impliedFormat":99},{"version":"7537e0e842b0da6682fd234989bac6c8a2fe146520225b142c75f39fb31b2549","impliedFormat":99},{"version":"dd018ed60101a59a8e89374e62ed5ab3cb5df76640fc0ab215c9adf8fbc3c4b0","impliedFormat":99},{"version":"8d401f73380bdd30293e1923338e2544d57a9cdbd3dd34b6d24df93be866906e","impliedFormat":99},{"version":"54831cf2841635d01d993f70781f8fb9d56211a55b4c04e94cf0851656fd1fe8","impliedFormat":99},{"version":"73a671f26b275b3a5355af5ab7a30065d375aa17807edee8594c770f4a6be97b","signature":"cd07c1092ca2c082d12a25412976eff82bb0ff4a886560bb1adb35936111c8a7","impliedFormat":99},{"version":"8844c15dfe32612428f7414497f0e71848ae591433670d0ac4bdb367f16732e6","impliedFormat":99},{"version":"ca787346320439e1201371ab1388d34d1a2545bc43ee8ed4c3d3ce767019dd98","impliedFormat":99},{"version":"22016594e57024207402d3d10f4bab0202b87608fbd4918c1437a8a3436e3370","impliedFormat":99},{"version":"846c13f5d56bc85e76b242a01ad233f67485d27f43db3209e491998e2923a206","impliedFormat":99},{"version":"00b80ac8e7c63120d0f18bc30f45b3e058dec8987455d46b87d48a2997585b5f","impliedFormat":99},{"version":"f84df8eb184a4e96247d8488845a136d309dcb9be4ed59b2e75d114b0c4cfe2f","impliedFormat":99},{"version":"3e8c8a071a17606f2cfe49bf394c1af7d2d47878a9fe7acd838783aceed4da1f","impliedFormat":99},{"version":"02daacacb2bdcdd128b893a916d4aba40a27c6f8bb2a3a8aa577d94c84dd7ded","impliedFormat":99},{"version":"c1770225606ac896706a937d615c3ae3e907f86b1bb1d9e69529b33c4abe62ce","impliedFormat":99},{"version":"fe4b30e4d3f61f6d48e301b4fdaeb3e97db3ea022ef9b453e10e78e5cd1a573c","impliedFormat":99},{"version":"4d124768081fdea045ba32e1f1cb2c925dd368f18d0425fbcecd440e33fd2a24","impliedFormat":99},{"version":"c941e365942106fe35d59ca99547bc591c5dada7b15cd6830b79943dcb2f813b","impliedFormat":99},{"version":"7fa09764edfb7d4fc6825ae31434a87895642736bf2288ac4e4a519e10901bac","impliedFormat":99},{"version":"329e06f1f8420bd30d570e060b22f2ef1b97e017ffa55a37e9f4b7bb3b93f868","impliedFormat":99},{"version":"74c686d4eed8df773503c2b0f87a9b96392aa2eba107712bf948776f517f212e","impliedFormat":99},{"version":"a049b45feb6f9def6f01d0f6fc310742ac635a82900f93aae11dc68a1cb2a4d3","impliedFormat":99},{"version":"c6f4f74ea375478c52fd3cecd8531f9ea4ab8b0ec7de116da3fe2f2aab410ef8","impliedFormat":99},{"version":"47bf63c5be366b091247a652ab44e8cb5f477086453c4acac87b512bdc89b0b9","impliedFormat":99},{"version":"c541e502e61a53df441e0acc6ebfbfbc55e4b1f429df2bdfbce9068f5efe28ce","impliedFormat":99},{"version":"6def6568f47a8644f07faf04030091bd07080df6b764a42d29eeac0dadf72436","impliedFormat":99},{"version":"4ac32bfe2e50e7aa6f03d1344962bdc71831f8a4515853209f92478154720bc0","impliedFormat":99},{"version":"86855c87da85aec70f211ea36c6006792d638cb01ec41ba874758cf6514bdda5","impliedFormat":99},{"version":"082630e9ca25f49d1f34426dc27e1236d32e619e71bfbf7a45083670485ce5b5","impliedFormat":99},{"version":"36a42b442fbe93c3aa1d15ecf4f0293c175f80718e1b462bc4feec48d3bbc54f","impliedFormat":99},{"version":"42f9d8c91146877408e4197fa388891cf9a0d94378d595195879fd59e2c80fc5","impliedFormat":99},{"version":"f17ed72d1b1882ab6dc66d45e699f757d15bba0807af2fc9c3ec98fe367611c1","impliedFormat":99},{"version":"3f4248944c380b995618847b254e64c4fad48e31650c692bb01424df48618a86","impliedFormat":99},{"version":"6ca0b2845c6e95e75e42fe99026c7545c8b4cfd9bc1750bb5421b0699ef89c35","impliedFormat":99},{"version":"b03cab886d1ea68398cec813d86857b97f7100fcc17ad8eabdb033dd6251953f","impliedFormat":99},{"version":"337a6cd986dceb55f190c2a01858f0a60a5b3029162c4b013d138652db54a3de","impliedFormat":99},{"version":"4c2065243522316b3b2a0730768865473f9760647acbba6639bc6ff4052ea959","impliedFormat":99},{"version":"534157552ad20e2588821c39a7f8c39f2212f2d8acfd3a6011b9fbe703003e59","impliedFormat":99},{"version":"80bd6579b5fd1464b1498093a27929187ca566bac882dc0b6cab7ae6e7436649","impliedFormat":99},{"version":"0a49753424c8e8bdd019855b7b33ee6c9ef9880f7286a04e3172811f451858ad","impliedFormat":99},{"version":"af03dc82c46433b08537cd07fdd47a63f3a23866f5989b9c6496386c851f768e","impliedFormat":99},{"version":"ffb39ad599222b71066e84ad02fbc205fa6970fda4e4fc05a7601bcb9b6e53ba","impliedFormat":99},{"version":"152f3cd2061dbf90a3e04f0b0245547c3a8136eda8a124dbde73c9ee63ed6639","impliedFormat":99},{"version":"40cd5614c70b07c26647cabb5fb28e045802f7ce3d8aa47d873a3f6c7acebceb","impliedFormat":99},{"version":"d58b987f09fa3ebafbbf4c6f2d23c77bda1d295b77501ee73a3d1ead981db71a","impliedFormat":99},{"version":"8b073a855c3027188557cc96cdb4d417b3898d8565239dcc2c08d16a7894f4a8","impliedFormat":99},{"version":"20684921aadd73b63eff2f825a775af86c7ed00461693cdd49710622c073c83f","impliedFormat":99},{"version":"8eac82dda861b5645fb8312888ff873bc1f4c1b32be1e5a9bd28ceeb14dca952","impliedFormat":99},{"version":"2d1254303138e070458d43fa6167df44ad6a0165efad45332a410cf9052b4491","impliedFormat":99},{"version":"44ab53cbd8c5c318a7ed2f05aca7756bd160720ec8baee962a9b9fd9c140c877","impliedFormat":99},{"version":"56b095a341ec52cf588ca219a17ff722c472fe2fbf8e3f0d0077372a77bdd2a3","impliedFormat":99},{"version":"9dcb107d4bd0227f0b407099ed8da673e06e034f540cb70f3c7bbb82c27e19a5","impliedFormat":99},{"version":"432962228177533520f449860528ca73ef19add3459f07d07cbaa1aa4c848d49","impliedFormat":99},{"version":"f1932f02c974099ba15ccf760c8fe89db3275b6ef01b766bd203be1c4290dfb4","impliedFormat":99},{"version":"6b1f9191f8950fa3453d0f87def9dee5c4098edd370cbe2b0e6ee36184b863d7","impliedFormat":99},{"version":"ac8447c8f58f94c6baa49c9d3c7712baa16e5377f894ae27875beb38bc413882","impliedFormat":99},{"version":"e9a6e213f5842c6f2e49d01f9c1360b8ab57ccebf38087bef0d04d1597283996","impliedFormat":99},{"version":"1488d720b855fa7973f466cd39e1db830f628a13d124b5b09ed9dc37886237a1","impliedFormat":1},{"version":"879936494b940d7ec2c985cf42d25fa67bca050a863a204c3f9c1a68f3848b84","impliedFormat":99},{"version":"adc419321fe855bedc0e1d67f8bd2dd924088bf2476390d0ad487a93b2879622","impliedFormat":99},{"version":"b5fffa1e0e4be5750b91f94d49419de6799ba94666e851b52beadb8678eca893","impliedFormat":99},{"version":"4bb00d0b7662071a371c61801649c31e45f61ba603bd4733f310321d3f210702","impliedFormat":99},{"version":"e442c1255949ee59a0dbd3c9c9b220d7e7cf64ada1d647fbd734a4381805211e","impliedFormat":99},{"version":"53fe034d6159c92b6ae7f6133f127454ad28d81b44f19eb1ebbfb2ebd0c0c941","impliedFormat":99},{"version":"02c63214b367e115954f16accc51328b25582401af7083b82ab8967787d1e772","impliedFormat":99},{"version":"b7d0efd985ee101cbc00a2ec3de48bdcea2cbe98711e0eabdb65e5bf88b0d3fd","impliedFormat":99},{"version":"c44568cbfb5a1221e19f73bba1c705eb96e6c9d2d74ed3ba6c1afb7afd0fbb4e","impliedFormat":99},{"version":"1670d4893c91c7aa19484bdd954e60cae11738eeefbed895245952febbc854ec","impliedFormat":99},{"version":"a63ea62fc6583346180d3ba2a24467f2484611ed11145e34d499e5c8ffd5e7c3","impliedFormat":99},{"version":"a368f9e28beec627226c163ccadec30c2bcdcfa8cba9b300a0bf1d1a4bd57c9b","impliedFormat":99},{"version":"98e799ae501a271e7ac674728ba28929aa43d103d6883c51bfd3a90fc0b39255","impliedFormat":99},{"version":"7019dfdb80ba57827dc59fe702c1e70580e3e4842357f9b81c3275420c15c064","impliedFormat":99},{"version":"f5b08569d743e2e7aebc128e5c2a1d4eb3d5681ab1c38807b25771d67d141581","impliedFormat":99},{"version":"ce03f9b7f545442dede57a9e2a7e075dc68aa432982e094cb3bb075473601ade","impliedFormat":99},{"version":"96debd1ddd1d4e18c65c8c6175be7bf9cd4a9ecf55aefeac7a5d34ce7cbd330d","impliedFormat":99},{"version":"1e8ebac740327950d66a195c884d44077afb8fcbe91d9914985a4e8a4e49ae33","impliedFormat":99},{"version":"8b5aa5938a05e6d779b39ee558845c7816842c96cb08f022e7bd76d308f79290","impliedFormat":99},{"version":"54134b00e55e64b435951096cfd0b007cbe11f1da4b0e06e1116a558afb131d8","impliedFormat":99},{"version":"8cd05412053a40343a6481db9ebca2d8b74118265a146b535ca7f8ffeaf8465d","impliedFormat":99},{"version":"409759e7a22c8cc91d709bae3a9ed372887e3e88fbf5ad908d12b0de46d28fa4","impliedFormat":99},{"version":"abdc58fac99f202ff42327ce61e4317384c9513c6b3285158f6f0b00d5de66c4","impliedFormat":99},{"version":"90e4e481519a37765f849174a44720ac52837f52b55915015391fd3f7b8d052f","impliedFormat":99},{"version":"f2c37d0e21ed823a3e94a7cfc09295cbe6c6a1998e79ebe768c687f5bebf7ea8","impliedFormat":99},{"version":"c3071951dff3a732e63a48ef7f3efe873be9e9dfb39580ef9ce65e604a4a3dde","impliedFormat":99},{"version":"4671656701e90384a850d9b9079b8438e8b688e1b850a8386dfc857964e89909","impliedFormat":99},{"version":"92c0134fd5ef773d3dc4d6e3d111109ca9ae1d99eaf4cf7c8c4458f11757a9e3","impliedFormat":99},{"version":"1383df301b18e8017fc103876f1cd7c236943557c069185c02e5cf4eefe8380c","impliedFormat":99},{"version":"cdae911b0b0e0d9de66a4ce125c80f9c51764704925432d97f5a5cb15f1410e9","impliedFormat":99},{"version":"c7a98f5c7c01203134ea83cae327dc1c501de9de8939936c1f0e42866777654c","impliedFormat":99},{"version":"bf6f71420a8aa7008a11263e9c8406a667e4f24f75522492e5aeaf6441ba7f5f","impliedFormat":99},{"version":"1e4c0de482d1d504ea79dfc0d9fefe5f20716803d9d7d7fdf709d0d6e9b98163","impliedFormat":99},{"version":"6de821f038c42746b4890a7846298acbd8d8960735c9229d3c97cefabf4ddcbe","impliedFormat":99},{"version":"e22a948876d1fb1d2cc9953312d5ad36cbb1cc1d6208b2d4c0ce26b4d12385f0","impliedFormat":99},{"version":"10c3abffbabaa1d66eb320123d52819b48385fe72946b4c8288bbb6ebe3a6f9e","impliedFormat":99},{"version":"16d31e7a1791353f7ef319f14db94246705c7861c38d7f078934be2e2e671a58","impliedFormat":99},{"version":"5692536fe31230f6199c858360f73383daf062a59a55c9d7e681d8f67ea2c845","impliedFormat":99},{"version":"4d09bfbc64dd2a1c1eca4ab76e8585833b28ddf7594e576aca3d6cd4c6d85a06","impliedFormat":99},{"version":"c3e529a7f66608d87d3e2ce024c468a5b28aaaa978d696c8b0f971e493f75a1f","impliedFormat":99},{"version":"a208ba70237802663fbb85032543e2cbca7abfe0738b49b713776de27e91d893","impliedFormat":99},{"version":"23412ebaaacff1272c0d17e25c64102ed3f9700c72d87aa4c1255940c47131c0","impliedFormat":99},{"version":"f1bf4c01a3882a0c5b0796a1e2c69a011f8daf471d96bf62e08b800dc2394215","impliedFormat":99},{"version":"9385dbb5fbadeafaf9092049edcd13c65333ec259bc6e679c42e6d59b162a6e9","impliedFormat":99},{"version":"8e391e131642e6f1b560e0c58639e301fa698663b534a56a1f7165e8d08dd25c","impliedFormat":99},{"version":"83dcc32c38ff4fa347fc6d6b29a9c472c9b5f3ffa6441f6ccdf6e2f6a7b94df3","impliedFormat":99},{"version":"3e0cc1d3ddc26bb2d78d5d2749a53ac8a3ab3eefde2f90b1b4ba987b99308d55","impliedFormat":99},{"version":"151c7359a84d9dbeb9c6afe591d390cff6d4f2912f55f8a1d13d19d63b7c2997","impliedFormat":99},{"version":"e7a81946044d87b37cbba669257d94368210b78c313accb0354343763b7e454f","impliedFormat":99},{"version":"989cd876f148ab79f64f951a24f8167542da16af30e921f3ab99137b89fd8547","impliedFormat":99},{"version":"2e5151ec2840050de0ddabaea3fd6971ec97595c0135b68b57b764e5086e9d3e","impliedFormat":99},{"version":"08fc53004223fac50ee56c6abe9ece7046df5df3361c614b45b182541bf672cc","impliedFormat":99},{"version":"d6876a979ae2660455da84ac7b891576f6295547b4f28173d598b9d543c2c3a3","impliedFormat":99},{"version":"048b7b51fd3169b80971d3c43f9ce4d09fb5d7f8867c2e9896e5bb698935fe0d","impliedFormat":99},{"version":"022f2492b8ef3e5ac4cb6761ff41f358088cc966dc97e94bc91e6788663c4227","impliedFormat":99},{"version":"86cc024e23eae05fc83b75da9f66de87eb7c88f19d64f18390b52564d73e2487","impliedFormat":99},{"version":"0f014f1974327ca0711a843c3c57446afe033fc514c3b06bf87a9f4f4e945b07","impliedFormat":99},{"version":"a12662882c676072ccf0582ad0933bf0b36dcce4bf08bda0163bd756e587ea79","impliedFormat":99},{"version":"5c5241b51c3ec457c8830359ec8892684f4b85f5043a921916ea8b18d0e490c8","impliedFormat":99},{"version":"98f654396728712923554378895d2573482ccaa79cab9938e9ada87cc7313e81","impliedFormat":99},{"version":"eef98881d44ce190539fb676d582f564df74150c39637c88a7f33417e2092850","impliedFormat":99},{"version":"de777530b876b8ccbe13e0236c0aab5ef0eabb3897cf03c4af05191cfffaf3c1","impliedFormat":99},{"version":"47a1130da2812edc82bb5d56c1dee1dd7282b351fad2f4c9f4b326810e5d9106","impliedFormat":99},{"version":"b55b02a9a5f8c22d1bff8af0eb8acbb084f266b7a8e4a6fece367f246c0c5dd2","impliedFormat":99},{"version":"101a3b081baa149af61b1959926266e2b2e3f64323fabad7994d801b1559be79","impliedFormat":99},{"version":"5d9f1e910d7dd3a2b4dd2df608ceddecdb51347b625fad66a4dc9a1617ad2834","impliedFormat":99},{"version":"85ea2d74cb57b8183c62edfca328f16dcc9f62f9d38e7f3d24fb385443d885d9","impliedFormat":99},{"version":"f83b41a0699a8df0dc2b41f2d0dbca36dc11fa9e552d774a0c46b038355977b7","impliedFormat":99},{"version":"779f048c51062b151709cfaca0da3394968a0e559f87ecc44485ecf2727e1e04","impliedFormat":99},{"version":"941fdb4f654b39b75184371855b38914e72944722f689b7cc0dd3cbcbb93dd6a","impliedFormat":99},{"version":"ce2a1eb044af82098d27af5494497fda12313d1093cf8767868360e6ec80dfbe","impliedFormat":99},{"version":"3ca12f0de819850fba22b06b1e2864069909a4a9f9807add8f336d4955f09578","impliedFormat":99},{"version":"fe49f5c9b87b545f33b6cd63f4881342b321c687e3163430159b138a3a1f6355","impliedFormat":99},{"version":"51eff882b38aedde93a06cda1f30443df64ca913c071840bf9397c0692b1b018","impliedFormat":99},{"version":"581a84e904c987135420312e3ecdf9d2806f8d85001589641c2ce9db38c29375","impliedFormat":99},{"version":"97d606edc8897926b62c8c8745bfe017b99011e21cc07e87c759a97205bfd0e1","impliedFormat":99},{"version":"a4425549586b741fc857d203832f6b5b8165066c21619cf94b19609051057348","impliedFormat":99},{"version":"ba53ee311ce142a0cfd9d78f2423f5c61a97afec143b05fcbb031bfe251cb41c","impliedFormat":99},{"version":"cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","impliedFormat":1},{"version":"1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","impliedFormat":1},{"version":"130ec22c8432ade59047e0225e552c62a47683d870d44785bee95594c8d65408","impliedFormat":1},{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true,"impliedFormat":1},{"version":"928f96b9948742cbaec33e1c34c406c127c2dad5906edb7df08e92b963500a41","impliedFormat":1},{"version":"56613f2ebdd34d4527ca1ee969ab7e82333c3183fc715e5667c999396359e478","impliedFormat":1},{"version":"d9720d542df1d7feba0aa80ed11b4584854951f9064232e8d7a76e65dc676136","impliedFormat":1},{"version":"d0fb3d0c64beba3b9ab25916cc018150d78ccb4952fac755c53721d9d624ba0d","impliedFormat":1},{"version":"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","impliedFormat":1},{"version":"ba93f0192c9c30d895bee1141dd0c307b75df16245deef7134ac0152294788cc","impliedFormat":1},{"version":"fca7cd7512b19d38254171fb5e35d2b16ac56710b7915b7801994612953da16c","impliedFormat":1},{"version":"7e43693f6ea74c3866659265e0ce415b4da6ed7fabd2920ad7ea8a5e746c6a94","impliedFormat":1},{"version":"eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","impliedFormat":1},{"version":"4e251317bb109337e4918e5d7bcda7ef2d88f106cac531dcea03f7eee1dd2240","impliedFormat":1},{"version":"0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","impliedFormat":1},{"version":"1a67ba5891772a62706335b59a50720d89905196c90719dad7cec9c81c2990e6","impliedFormat":1},{"version":"cf41091fcbf45daff9aba653406b83d11a3ec163ff9d7a71890035117e733d98","impliedFormat":1},{"version":"aa514fadda13ad6ddadc2342e835307b962254d994f45a0cb495cc76eca13eff","impliedFormat":1},{"version":"ce92e662f86a36fc38c5aaa2ec6e6d6eed0bc6cf231bd06a9cb64cc652487550","impliedFormat":1},{"version":"3821c8180abb683dcf4ba833760764a79e25bc284dc9b17d32e138c34ada1939","impliedFormat":1},{"version":"0ef2a86ec84da6b2b06f830b441889c5bb8330a313691d4edbe85660afa97c44","impliedFormat":1},{"version":"b2a793bde18962a2e1e0f9fa5dce43dd3e801331d36d3e96a7451727185fb16f","impliedFormat":1},{"version":"9d8fc1d9b6b4b94127eec180183683a6ef4735b0e0a770ba9f7e2d98dd571e0c","impliedFormat":1},{"version":"8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","impliedFormat":1},{"version":"892abbe1081799073183bab5dc771db813938e888cf49eb166f0e0102c0c1473","impliedFormat":1},{"version":"65465a64d5ee2f989ad4cf8db05f875204a9178f36b07a1e4d3a09a39f762e2e","impliedFormat":1},{"version":"2878f694f7d3a13a88a5e511da7ac084491ca0ddde9539e5dad76737ead9a5a9","impliedFormat":1},{"version":"d21c5f692d23afa03113393088bcb1ef90a69272a774950a9f69c58131ac5b7e","impliedFormat":1},{"version":"0915ce92bb54e905387b7907e98982620cb7143f7b44291974fb2e592602fe00","impliedFormat":1},{"version":"9dfb317a36a813f4356dc1488e26a36d95e3ac7f38a05fbf9dda97cfd13ef6ea","impliedFormat":1},{"version":"7c0a4d3819fb911cdb5a6759c0195c72b0c54094451949ebaa89ffceadd129ca","impliedFormat":1},{"version":"4733c832fb758f546a4246bc62f2e9d68880eb8abf0f08c6bec484decb774dc9","impliedFormat":1},{"version":"58d91c410f31f4dd6fa8d50ad10b4ae9a8d1789306e73a5fbe8abea6a593099b","impliedFormat":1},{"version":"3aea7345c25f1060791fc83a6466b889924db87389e5c344fa0c27b75257ebe4","impliedFormat":1},{"version":"a8289d1d525cf4a3a2d5a8db6b8e14e19f43d122cc47f8fb6b894b0aa2e2bde6","impliedFormat":1},{"version":"e6804515ba7c8f647e145ecc126138dd9d27d3e6283291d0f50050700066a0ea","impliedFormat":1},{"version":"9420a04edbe321959de3d1aab9fa88b45951a14c22d8a817f75eb4c0a80dba02","impliedFormat":1},{"version":"6927ceeb41bb451f47593de0180c8ff1be7403965d10dc9147ee8d5c91372fff","impliedFormat":1},{"version":"d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","impliedFormat":1},{"version":"f2a392b336e55ccbeb8f8a07865c86857f1a5fc55587c1c7d79e4851b0c75c9a","impliedFormat":1},{"version":"fd53e2a54dae7bb3a9c3b061715fff55a0bb3878472d4a93b2da6f0f62262c9f","impliedFormat":1},{"version":"1f129869a0ee2dcb7ea9a92d6bc8ddf2c2cdaf2d244eec18c3a78efeb5e05c83","impliedFormat":1},{"version":"554962080d3195cae300341a8b472fb0553f354f658344ae181b9aa02d351dbd","impliedFormat":1},{"version":"89cd9ab3944b306e790b148dd0a13ca120daf7379a98729964ea6288a54a1beb","impliedFormat":1},{"version":"28fa41063a242eafcf51e1a62013fccdd9fd5d6760ded6e3ff5ce10a13c2ab31","impliedFormat":1},{"version":"e53a8b6e43f20fa792479f8069c41b1a788a15ffdfd56be1ab8ef46ea01bd43e","impliedFormat":1},{"version":"ada60ff3698e7fd0c7ed0e4d93286ee28aed87f648f6748e668a57308fde5a67","impliedFormat":1},{"version":"f65e0341f11f30b47686efab11e1877b1a42cf9b1a232a61077da2bdeee6d83e","impliedFormat":1},{"version":"e6918b864e3c2f3a7d323f1bb31580412f12ab323f6c3a55fb5dc532c827e26d","impliedFormat":1},{"version":"5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","impliedFormat":1},{"version":"d7735a9ccd17767352ab6e799d76735016209aadd5c038a2fc07a29e7b235f02","impliedFormat":1},{"version":"843e98d09268e2b5b9e6ff60487cf68f4643a72c2e55f7c29b35d1091a4ee4e9","impliedFormat":1},{"version":"ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","impliedFormat":1},{"version":"77ff2aeb024d9e1679c00705067159c1b98ccac8310987a0bdaf0e38a6ca7333","impliedFormat":1},{"version":"8f9effea32088f37d15858a890e1a7ccf9af8d352d47fea174f6b95448072956","impliedFormat":1},{"version":"952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","impliedFormat":1},{"version":"1d953cb875c69aeb1ec8c58298a5226241c6139123b1ff885cedf48ac57b435c","impliedFormat":1},{"version":"1a80e164acd9ee4f3e2a919f9a92bfcdb3412d1fe680b15d60e85eadbaa460f8","impliedFormat":1},{"version":"f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","impliedFormat":1},{"version":"019c29de7d44d84684e65bdabb53ee8cc08f28b150ac0083d00e31a8fe2727d8","impliedFormat":1},{"version":"e35738485bf670f13eab658ea34d27ef2b875f3aae8fc00fb783d29e5737786d","impliedFormat":1},{"version":"bcd951d1a489d00e432c73760ce7f39adb0ef4e6a9c8ffef5dd7f093325a8377","impliedFormat":1},{"version":"672c1ebc4fa15a1c9b4911f1c68de2bc889f4d166a68c5be8f1e61f94014e9d8","impliedFormat":1},{"version":"b0378c1bc3995a1e7b40528dcd81670b2429d8c1dcc1f8d1dc8f76f33d3fc1b8","impliedFormat":1},{"version":"5a0d920468aa4e792285943cadad77bcb312ba2acf1c665e364ada1b1ee56264","impliedFormat":1},{"version":"c27c5144d294ba5e38f0cd483196f911047500a735490f85f318b4d5eb8ac2cc","impliedFormat":1},{"version":"900d1889110107cea3e40b30217c6e66f19db8683964a57afd9a72ecc821fe21","impliedFormat":1},{"version":"a2e4333bf0c330ae26b90c68e395ad0a8af06121f1c977979c75c4a5f9f6bc29","impliedFormat":1},{"version":"08c027d3d6e294b5607341125d1c4689b4fece03bdb9843bd048515fe496a73e","impliedFormat":1},{"version":"2cbf557a03f80df74106cb7cfb38386db82725b720b859e511bdead881171c32","impliedFormat":1},{"version":"918956b37f3870f02f0659d14bba32f7b0e374fd9c06a241db9da7f5214dcd79","impliedFormat":1},{"version":"260e6d25185809efc852e9c002600ad8a85f8062fa24801f30bead41de98c609","impliedFormat":1},{"version":"dd9694eecd70a405490ad23940ccd8979a628f1d26928090a4b05a943ac61714","impliedFormat":1},{"version":"42ca885a3c8ffdffcd9df252582aef9433438cf545a148e3a5e7568ca8575a56","impliedFormat":1},{"version":"309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","impliedFormat":1},{"version":"db436ca96e762259f14cb74d62089c7ca513f2fc725e7dcfbac0716602547898","impliedFormat":1},{"version":"1410d60fe495685e97ed7ca6ff8ac6552b8c609ebe63bd97e51b7afe3c75b563","impliedFormat":1},{"version":"c6843fd4514c67ab4caf76efab7772ceb990fbb1a09085fbcf72b4437a307cf7","impliedFormat":1},{"version":"03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","impliedFormat":1},{"version":"956618754d139c7beb3c97df423347433473163d424ff8248af18851dd7d772a","impliedFormat":1},{"version":"7d8f40a7c4cc81db66ac8eaf88f192996c8a5542c192fdebb7a7f2498c18427d","impliedFormat":1},{"version":"c69ecf92a8a9fb3e4019e6c520260e4074dc6cb0044a71909807b8e7cc05bb65","impliedFormat":1},{"version":"07d0370c85ac112aa6f1715dc88bafcee4bcea1483bc6b372be5191d6c1a15c7","impliedFormat":1},{"version":"7fb0164ebb34ead4b1231eca7b691f072acf357773b6044b26ee5d2874c5f296","impliedFormat":1},{"version":"9e4fc88d0f62afc19fa5e8f8c132883378005c278fdb611a34b0d03f5eb6c20c","impliedFormat":1},{"version":"cc9bf8080004ee3d8d9ef117c8df0077d6a76b13cb3f55fd3eefbb3e8fcd1e63","impliedFormat":1},{"version":"1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","impliedFormat":1},{"version":"b6aa8c6f2f5ebfb17126492623691e045468533ec2cc7bd47303ce48de7ab8aa","impliedFormat":1},{"version":"18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","impliedFormat":1},{"version":"68434152ef6e484df25a9bd0f4c9abdfb0d743f5a39bff2b2dc2a0f94ed5f391","impliedFormat":1},{"version":"b848b40bfeb73dfe2e782c5b7588ef521010a3d595297e69386670cbde6b4d82","impliedFormat":1},{"version":"aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","impliedFormat":1},{"version":"a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","impliedFormat":1},{"version":"18076e7597cd9baa305cd85406551f28e3450683a699b7152ce7373b6b4a1db7","impliedFormat":1},{"version":"1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","impliedFormat":1},{"version":"d2e3a1de4fde9291f9fb3b43672a8975a83e79896466f1af0f50066f78dbf39e","impliedFormat":1},{"version":"d0d03f7d2ba2cf425890e0f35391f1904d0d152c77179ddfc28dfad9d4a09c03","impliedFormat":1},{"version":"e37650b39727a6cf036c45a2b6df055e9c69a0afdd6dbab833ab957eb7f1a389","impliedFormat":1},{"version":"c58d6d730e95e67a62ebd7ba324e04bcde907ef6ba0f41922f403097fe54dd78","impliedFormat":1},{"version":"0f5773d0dd61aff22d2e3223be3b4b9c4a8068568918fb29b3f1ba3885cf701f","impliedFormat":1},{"version":"31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","impliedFormat":1},{"version":"9ce0473b0fbaf7287afb01b6a91bd38f73a31093e59ee86de1fd3f352f3fc817","impliedFormat":1},{"version":"6f0d708924c3c4ee64b0fef8f10ad2b4cb87aa70b015eb758848c1ea02db0ed7","impliedFormat":1},{"version":"6addbb18f70100a2de900bace1c800b8d760421cdd33c1d69ee290b71e28003d","impliedFormat":1},{"version":"37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","impliedFormat":1},{"version":"e0ef70ca30cdc08f55a9511c51a91415e814f53fcc355b14fc8947d32ce9e1aa","impliedFormat":1},{"version":"14be139e0f6d380a3d24aaf9b67972add107bea35cf7f2b1b1febac6553c3ede","impliedFormat":1},{"version":"23195b09849686462875673042a12b7f4cd34b4e27d38e40ca9c408dae8e6656","impliedFormat":1},{"version":"ff1731974600a4dad7ec87770e95fc86ca3d329b1ce200032766340f83585e47","impliedFormat":1},{"version":"91bc53a57079cf32e1a10ccf1a1e4a068e9820aa2fc6abc9af6bd6a52f590ffb","impliedFormat":1},{"version":"8dd284442b56814717e70f11ca22f4ea5b35feeca680f475bfcf8f65ba4ba296","impliedFormat":1},{"version":"a304e0af52f81bd7e6491e890fd480f3dc2cb0541dec3c7bd440dba9fea5c34e","impliedFormat":1},{"version":"c60fd0d7a1ba07631dfae8b757be0bffd5ef329e563f9a213e4a5402351c679f","impliedFormat":1},{"version":"02687b095a01969e6e300d246c9566a62fa87029ce2c7634439af940f3b09334","impliedFormat":1},{"version":"e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","impliedFormat":1},{"version":"ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","impliedFormat":1},{"version":"f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","impliedFormat":1},{"version":"12aeda564ee3f1d96ac759553d6749534fafeb2e5142ea2867f22ed39f9d3260","impliedFormat":1},{"version":"4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","impliedFormat":1},{"version":"85d63aaff358e8390b666a6bc68d3f56985f18764ab05f750cb67910f7bccb1a","impliedFormat":1},{"version":"0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","impliedFormat":1},{"version":"563573a23a61b147358ddee42f88f887817f0de1fc5dbc4be7603d53cbd467ad","impliedFormat":1},{"version":"dd0cad0db617f71019108686cf5caabcad13888b2ae22f889a4c83210e4ba008","impliedFormat":1},{"version":"f08d2151bd91cdaa152532d51af04e29201cfc5d1ea40f8f7cfca0eb4f0b7cf3","impliedFormat":1},{"version":"b9c889d8a4595d02ebb3d3a72a335900b2fe9e5b5c54965da404379002b4ac44","impliedFormat":1},{"version":"a3cd30ebae3d0217b6b3204245719fc2c2f29d03b626905cac7127e1fb70e79c","impliedFormat":1},{"version":"bd56c2399a7eadccfca7398ca2244830911bdbb95b8ab7076e5a9210e9754696","impliedFormat":1},{"version":"f52fb387ac45e7b8cdc98209714c4aedc78d59a70f92e9b5041309b6b53fc880","impliedFormat":1},{"version":"1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","impliedFormat":1},{"version":"5faa3d4b828440882a089a3f8514f13067957f6e5e06ec21ddd0bc2395df1c33","impliedFormat":1},{"version":"f0f95d40b0b5a485b3b97bd99931230e7bf3cbbe1c692bd4d65c69d0cdd6fa9d","impliedFormat":1},{"version":"380b4fe5dac74984ac6a58a116f7726bede1bdca7cec5362034c0b12971ac9c1","impliedFormat":1},{"version":"00de72aa7abede86b016f0b3bfbf767a08b5cff060991b0722d78b594a4c2105","impliedFormat":1},{"version":"965759788855797f61506f53e05c613afb95b16002c60a6f8653650317870bc3","impliedFormat":1},{"version":"f70a315e029dacf595f025d13fa7599e8585d5ccfc44dd386db2aa6596aaf553","impliedFormat":1},{"version":"f385a078ad649cc24f8c31e4f2e56a5c91445a07f25fbdc4a0a339c964b55679","impliedFormat":1},{"version":"08599363ef46d2c59043a8aeec3d5e0d87e32e606c7b1acf397e43f8acadc96a","impliedFormat":1},{"version":"4f5bbef956920cfd90f2cbffccb3c34f8dfc64faaba368d9d41a46925511b6b0","impliedFormat":1},{"version":"0ae9d5bbf4239616d06c50e49fc21512278171c1257a1503028fc4a95ada3ed0","impliedFormat":1},{"version":"cba49e77f6c1737f7a3ce9a50b484d21980665fff93c1c64e0ee0b5086ea460a","impliedFormat":1},{"version":"9c686df0769cca468ebf018749df4330d5ff9414e0d226c1956ebaf45c85ff61","impliedFormat":1},{"version":"89d5970d28f207d30938563e567e67395aa8c1789c43029fe03fe1d07893c74c","impliedFormat":1},{"version":"869e789f7a8abcc769f08ba70b96df561e813a4001b184d3feb8c3d13b095261","impliedFormat":1},{"version":"392f3eb64f9c0f761eb7a391d9fbef26ffa270351d451d11bd70255664170acc","impliedFormat":1},{"version":"f829212a0e8e4fd1b079645d4e97e6ec73734dd21aae4dfc921d2958774721d0","impliedFormat":1},{"version":"5e20af039b2e87736fd7c9e4b47bf143c46918856e78ce21da02a91c25d817e8","impliedFormat":1},{"version":"f321514602994ba6e0ab622ef52debd4e9f64a7b4494c03ee017083dc1965753","impliedFormat":1},{"version":"cc8734156129aa6230a71987d94bdfac723045459da707b1804ecec321e60937","impliedFormat":1},{"version":"bb89466514349b86260efdee9850e497d874e4098334e9b06a146f1e305fca3f","impliedFormat":1},{"version":"fc0ee9d0476dec3d1b37a0f968e371a3d23aac41742bc6706886e1c6ac486749","impliedFormat":1},{"version":"f7da03d84ce7121bc17adca0af1055021b834e861326462a90dbf6154cf1e106","impliedFormat":1},{"version":"fed8c2c205f973bfb03ef3588750f60c1f20e2362591c30cd2c850213115163b","impliedFormat":1},{"version":"32a2b99a3aacda16747447cc9589e33c363a925d221298273912ecf93155e184","impliedFormat":1},{"version":"07bfa278367913dd253117ec68c31205825b2626e1cb4c158f2112e995923ee8","impliedFormat":1},{"version":"6a76e6141ff2fe28e88e63e0d06de686f31184ab68b04ae16f0f92103295cc2a","impliedFormat":1},{"version":"f05d5d16d85abe57eb713bc12efefc00675c09016e3292360e2de0790f51fa48","impliedFormat":1},{"version":"2e3ceed776a470729c084f3a941101d681dd1867babbaf6e1ca055d738dd3878","impliedFormat":1},{"version":"3d9fb85cc7089ca54873c9924ff47fcf05d570f3f8a3a2349906d6d953fa2ccf","impliedFormat":1},{"version":"d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","impliedFormat":1},{"version":"6b5b31af3f5cfcf5635310328f0a3a94f612902024e75dc484eb79123f5b8ebe","impliedFormat":1},{"version":"db08c1807e3ae065930d88a3449d926273816d019e6c2a534e82da14e796686d","impliedFormat":1},{"version":"9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","impliedFormat":1},{"version":"ef83477cca76be1c2d0539408c32b0a2118abcd25c9004f197421155a4649c37","impliedFormat":1},{"version":"2c3936b0f811f38ab1a4f0311993bf599c27c2da5750e76aa5dfbed8193c9922","impliedFormat":1},{"version":"c253c7ea2877126b1c3311dc70b7664fe4d696cb09215857b9d7ea8b7fdce1f0","impliedFormat":1},{"version":"cbb45afef9f2e643592d99a4a514fbe1aaf05a871a00ea8e053f938b76deeeb9","impliedFormat":1},{"version":"5728fd6e79e51c877314783a38af0316f6da7ddc662f090ca816b9aa0199720d","impliedFormat":99},{"version":"be259b14cf9e077928df2678cf27f6a1c3d9bd89dd664abf31f57002dd80b48c","impliedFormat":99},{"version":"45b0d5907697302ba15732cef288fe89920c863deeb41c1ccfe2ae99bceb2030","impliedFormat":99},{"version":"7ee5912963e05b879f80679c32a9710de03db41e34b10cdeb1066ecf57e86a24","impliedFormat":99},{"version":"a15564d022a3d0a4e079b5506bfcafa6d8d577f9bd37ba589797b01c67fd8d3d","impliedFormat":99},{"version":"884e97c78da7ba093dd7edd4156b21067354ead690904cc41cd8dd251559e268","impliedFormat":99},{"version":"38d4a43a04160bb7a0b9a203657963fde13b4d902f4e0d67f54cffb3428fbe55","impliedFormat":99},{"version":"e219de133a0de518ba1bf988c09dc5568d09ade39c9927f5fe6d36475a347b1b","impliedFormat":99},{"version":"3c7f17fb6c30693862a851a1aa92462e87cd0cbabc55f90500314b1111157d44","impliedFormat":99},{"version":"45386b3fc1e52b6a0e21ed80abc5bf1e3471f73daac2b5129d9cd0297e17038f","impliedFormat":99},{"version":"07b5bcbc76ad2b0860d8bfd3cd611caff3d2bee33bb9d77b318a2fd7762b4c70","impliedFormat":99},{"version":"1fa77c05173a153c2835532231ecf35cf83e5672ace0b8bd715a9f2ffb06d0d1","impliedFormat":99},{"version":"cee2d5909e51a1d15e8e324aa81991908f6c44e4627614831d8b180d7a47ba6e","impliedFormat":99},{"version":"433572542067a37a8a4869ad459e3c1302b93ad05a16c848de14f7222331567c","impliedFormat":99},{"version":"1fd5f71ff66d68586eea7008ef95c960a1918c87d7b2045b47a81633c1ad2fd6","impliedFormat":99},{"version":"649274c075ed249ae5dcb5842f9e1cd786bef7509cfa2386f4e0768806b96a39","impliedFormat":99},{"version":"cd926526d4b60fd0c8c475009976edabab0cb64a470ad6c78c129cdd01bf7f85","impliedFormat":99},{"version":"48ad21b98d824924ed5008b49c1be64fe2b967f602d19ebb753bef8c3780e7c8","impliedFormat":99},{"version":"0a43aca98aad501cc3b68ffe853f8ec9f7e5a3e6392c6aabc5a4448a53664ae3","impliedFormat":99},{"version":"ea6dcfc7c7e019afd9d2b2c6e3db473814c9d4c13b082c29dc70d463ee19d263","impliedFormat":99},{"version":"f11808ec12caa1b349b89b417675436ae871d1019fa37f5d53f6b40a36d16140","impliedFormat":99},{"version":"38086ecbd7d8b42aa9c400a7313ee32478cbf83930cff9fd71c7b3c0b45337c8","impliedFormat":99},{"version":"aa32a9aa562b2ab14d19c633b5716eabfee36d458c09e0570a89d7e3cc150d98","impliedFormat":99},{"version":"757a463c3fb0471b45ffee1d65c43a62d06ed289146a1234fe52108f7f998f7c","impliedFormat":99},{"version":"cf69f6e028cf76b6d89bd829cae69684781e8e5214493ac5913e3f3f7ae79b45","impliedFormat":99},{"version":"2e697ee7018c5e365ea13d59a4a6229f0dfd7a08658ed86444519c710ed1867b","impliedFormat":99},{"version":"a9d1978c99ab97487a47f7ffa2080cf8cf6a49b3c0d3a737a9a4828fb4efbcf0","impliedFormat":99},{"version":"ddb52b2278908c52e1a3719a777c65c984e7cecc0aafb5127b0509482d83415d","impliedFormat":99},{"version":"cfdc57622b3ff85131b092faaea9b0c44c04af5e15fa5e8337cab9c6550f179c","impliedFormat":99},{"version":"d3814d8c2a0f8508212f21b1358e855ee26ff97edb5e754f800860a063cb84b3","impliedFormat":99},{"version":"c61e8c6301656fd211b94d8415761ee571fcafc0c2c64e0a8342152dddcfd9e4","impliedFormat":99},{"version":"9244a297746cf93165d7a20ee1b6d45f8325a2e66be5cfdfa444152537b04629","impliedFormat":99},{"version":"d12cb580ac7d477e2f425a235f844932fd012df67af35fc2cf200902cb3ffe23","affectsGlobalScope":true,"impliedFormat":99},{"version":"5ffcbc128c130b85b470bd43775343ef933ecf3c218453a81406234575150514","impliedFormat":99},{"version":"c12a1d007cfeb5d1f7bb9be5d1cfca0465c0bcb0aaaeec21a6bb5931df0bb22e","impliedFormat":99},{"version":"3e915cb6b48895ce1f56f4ef604614ef42ce7343c9940f94b0c4233daf205be9","impliedFormat":99},{"version":"780490efa75873db0413161f04b21086e710ca078fff612c5accd36e219923f5","impliedFormat":99},{"version":"f2aa39d72d60e1365288dfc5ccacf617f34b4c73ffe72ba95987af64ef325e0d","impliedFormat":99},{"version":"ff21d7b121ff976f1d1df1ab826f45074f181c3647962468cc91a15df73c3c5f","impliedFormat":99},{"version":"69c1c41eb647bc6d96613842c8c44a32f24de6a666ffcbc29825abe75750e215","impliedFormat":99},{"version":"2e99dc057e85932567b9c9e6c3d85368b9d10b8323585b38ad999e4831503f7a","impliedFormat":99},{"version":"53a32b9d1f2e30fdb78caa36359012f4d71671a8d13ff0f41e366989b1390851","impliedFormat":99},{"version":"a83842e55aa693346223fbad83025ca1a96ad299cd2d99c6f8cbe1bbb43d0f6b","impliedFormat":99},{"version":"9bb2f87e5761a78ace5acbb6a3dc2868e6aa255b87c756eef5e1055d5020005d","impliedFormat":99},{"version":"caa4b501c02169fb11cb14e66daed15fbbf93d1b0ece49355c0fa5ee059cb00a","impliedFormat":99},{"version":"a7da7c9d62ba0bdee35fce527e0ffc47bbde6cb02641bf5b988745e74c0c524b","impliedFormat":99},{"version":"f950869045e185dd8931084f9e3e04d54e14da57bf9c24f56764254efb66cc0c","impliedFormat":99},{"version":"9622047bc160675f47315a7557f054be17db685a2b438b602ecb54e858020101","impliedFormat":99},{"version":"db634fed69cb5945ff278b74f924402f31765457314a92d74b1d89b03bdd71d9","impliedFormat":99},{"version":"1cd7b247e6aa008ca65bd993965b78fcd60002c78f5cc59b7a7ff392b3c99232","impliedFormat":99},{"version":"cdc2628782aaade9b52e37235d6b20dd94d5af46be9cb8ce58df1d768449324a","impliedFormat":99},{"version":"ac02e85a08b167580def8420be3c3a94a51819c86707122c04f856aacec7e695","impliedFormat":99},{"version":"73b4ac5774f4246cf52b793a1adef5d2c8b78d1a279a30e8f4762d3ac9b04212","impliedFormat":99},{"version":"e2bc9a92cc828313ea9257ed451dba0ba420d9b1ce9a17e18034e767096b7bfd","impliedFormat":99},{"version":"3cc2cabf81cfd7d19aa21e6536586c45f565ba1e1347064a69cc91626a860c5d","impliedFormat":99},{"version":"9ba32f24fced76cbfbb777b72aa83e1a6083e741c140b931f4869810ce68c0ad","impliedFormat":99},{"version":"e24208a8ee0e3c0b59e34c09904fb57193d18ad1a8813b80c5a63d04258d31bb","impliedFormat":99},{"version":"53032dfdd2f0c3aad0ce496b0135e3970c34bee6890f8deb690d6825bd25bd3b","impliedFormat":99},{"version":"046f5d0d4fa45918993654890846e3d2f0844d0be13352655e8b81e9e4184b65","impliedFormat":99},{"version":"7d6dcd61e1e9d8e2ec9144fd094bdb14e5eca58b75bcff9ef3a5046243e64e69","impliedFormat":99},{"version":"cb119dc473a356d23dcef845678812c4b0457fbe377b09a8ceeff846d1a76858","impliedFormat":99},{"version":"e304fcc5bc993dcc2832e48fde14e99f697b69af80e7ba1254ff965f8ae8c332","impliedFormat":99},{"version":"e4acc53b62ae82f65abba6bffd47a84db6bc58cd1b6a6026ca2bb64ae3253448","impliedFormat":99},{"version":"137a50fdf0be6e2de88244fcdbcdf35c30cad99e3796024d5468ea63553e45a3","impliedFormat":99},{"version":"12cadc00418dfca9ede9e53205a3ab00fa40cc253f70fcb0301cb27b80f81209","impliedFormat":99},{"version":"de88074e07404ad720eb38eaa7644a25093eeb29d8b98ecc0d7554be5aed9c21","impliedFormat":99},{"version":"a9f1a2f79ebb501190ee75213f8b8c17591f55b72cadbcd0d63e2e5daeb88911","impliedFormat":99},{"version":"4184759955c1f04e771c8546e722316736b29e06fb3e647c5026266840bd6ffc","impliedFormat":99},{"version":"17b4e68801438fddc1783bc80ef03090888a488c223a22caf05679861a9345b5","impliedFormat":99},{"version":"86dc5cf25320710ca82bff5ee0a375f5eb74cc5995d3a68e5fefaa2f347e8117","impliedFormat":99},{"version":"355a864ebb559300f17fbc220a051c887375396d50259c39a68cdec82cc8954c","impliedFormat":99},{"version":"da074d4a2166c37c44b1b52d275fc0cb6101738491145c75e3305589d46a4892","impliedFormat":99},{"version":"700d4c2b2a3ec657efba7a507b43b996d0a8ce4689808e8a124b5357f0a76f54","impliedFormat":99},{"version":"506ed0b7bfee9f36df14bf0927724add5d4d53c2a1a2c8a0e9b94ff6a0a8182b","impliedFormat":99},{"version":"c077e69d516b867b02447167cec3902e4566578d7a8d37b18c2adead8e9e12fe","impliedFormat":99},{"version":"11b310d74d3f4d240591169e5b07714a26474170f347635255b2f6a3aed6344e","impliedFormat":99},{"version":"c7a8be0521db7d6bc27c345c666c58bc910ac8c7a1722afd1aa461e93cae18f6","impliedFormat":99},{"version":"2a28eb4e1c79eb7a9e1ba3fd75bd8a23c70422b9a797f3579e982bacbdd746ab","impliedFormat":99},{"version":"7dd2220a4b2214184fb52103a6ed768a45f39aafc1022499aa04393d9868a984","impliedFormat":99},{"version":"26510cb5175f720cabc724c554ff268b8834a000356d4d169c7bb2556e731daa","impliedFormat":99},{"version":"dc58f8b879434dcc694a9a1a0bfeca0a5264b045985ab818d1fa443435b0af9f","impliedFormat":99},{"version":"1492aae878fbcc34b89c8bb84b217f1db961e3570d39769bbf5e1e075261b8a1","impliedFormat":99},{"version":"d0c21e06623be139fe8848d6e6bd2c0c4a463400131b8cd4ba37c6dbc36edf8d","impliedFormat":99}],"root":[[47,57],287,[444,449],[452,463],[469,491],493,494,[496,504],[515,536],[538,547],[549,563],[567,577],[581,583],[598,607],[625,635],[638,641],[656,658],[695,704],[706,715],[719,734],736,[741,747],751,[935,953],[957,966],1086,1087,1099,1100,[1102,1108],[1112,1114],[1163,1211],1213,1214,[1221,1247],1249,[1254,1303],[1327,1352],[1359,1372],[1375,1453],[1455,1457],[1625,1629],[1631,1706]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":false,"composite":false,"declaration":true,"declarationMap":false,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"experimentalDecorators":true,"module":199,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"noImplicitOverride":false,"noImplicitReturns":false,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":false,"outDir":"./dist","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":false,"strictFunctionTypes":false,"strictNullChecks":false,"target":7,"verbatimModuleSyntax":false},"referencedMap":[[537,1],[676,2],[78,3],[683,2],[85,3],[675,4],[674,1],[673,5],[660,1],[659,1],[671,6],[672,5],[664,5],[667,5],[670,7],[668,1],[665,8],[669,1],[666,1],[77,9],[76,1],[75,10],[62,1],[61,1],[73,11],[74,10],[66,10],[69,10],[72,12],[70,1],[67,13],[71,1],[68,1],[682,14],[84,15],[686,2],[88,3],[677,1],[678,1],[679,1],[680,1],[681,16],[79,1],[80,1],[81,1],[82,1],[83,17],[684,2],[86,3],[685,2],[87,3],[688,2],[90,3],[691,18],[93,19],[687,2],[89,3],[689,2],[91,3],[690,2],[92,3],[663,20],[661,21],[662,1],[65,22],[63,21],[64,1],[1373,23],[1374,24],[1353,1],[1357,25],[1358,26],[1356,27],[1355,28],[1354,29],[862,30],[863,31],[864,30],[865,30],[866,30],[867,30],[868,30],[869,31],[870,30],[877,32],[871,30],[872,30],[873,31],[874,30],[875,30],[876,30],[878,33],[861,34],[756,35],[758,36],[757,1],[845,37],[843,1],[841,1],[846,38],[844,39],[842,1],[852,40],[848,41],[854,42],[851,43],[850,44],[753,45],[853,46],[847,47],[840,48],[855,49],[857,50],[856,44],[759,30],[760,30],[761,30],[762,30],[763,30],[764,51],[765,31],[768,30],[769,30],[770,52],[771,31],[772,30],[773,30],[774,30],[775,30],[776,30],[777,30],[778,30],[779,30],[780,53],[781,30],[782,30],[784,54],[787,54],[786,54],[783,30],[788,54],[785,54],[789,30],[790,30],[791,31],[792,31],[793,30],[795,30],[796,30],[797,30],[798,30],[799,30],[800,55],[766,31],[801,30],[802,30],[803,30],[804,56],[805,30],[806,30],[807,30],[794,30],[808,30],[809,31],[810,30],[836,30],[837,30],[838,30],[812,57],[813,31],[814,31],[815,30],[816,30],[817,30],[818,30],[819,30],[820,30],[821,31],[822,31],[823,58],[824,30],[825,57],[827,31],[826,31],[828,31],[829,31],[767,31],[830,30],[831,30],[832,30],[833,30],[834,31],[835,31],[811,1],[752,30],[839,59],[754,1],[755,60],[849,61],[860,62],[859,63],[858,64],[879,31],[880,30],[881,31],[882,30],[883,30],[884,30],[885,30],[886,31],[887,31],[888,30],[889,30],[890,31],[891,30],[892,30],[893,30],[894,65],[895,66],[898,67],[899,68],[896,31],[900,69],[901,30],[902,70],[903,30],[904,71],[905,72],[897,73],[906,74],[907,30],[908,30],[909,30],[910,31],[911,75],[912,76],[913,77],[916,78],[915,79],[917,30],[919,30],[918,79],[920,80],[921,81],[922,77],[923,82],[924,83],[931,84],[926,84],[927,84],[928,85],[930,84],[929,86],[925,80],[914,87],[932,88],[933,89],[1304,1],[513,90],[512,91],[717,91],[509,92],[514,93],[566,94],[510,1],[564,95],[565,1],[505,1],[337,96],[338,96],[339,97],[293,98],[340,99],[341,100],[342,101],[288,1],[291,102],[289,1],[290,1],[343,103],[344,104],[345,105],[346,106],[347,107],[348,108],[349,108],[350,109],[351,110],[352,111],[353,112],[294,1],[292,1],[354,113],[355,114],[356,115],[388,116],[357,117],[358,118],[359,119],[360,120],[361,121],[362,122],[363,123],[364,124],[365,125],[366,126],[367,126],[368,127],[369,1],[370,128],[372,129],[371,130],[373,131],[374,132],[375,133],[376,134],[377,135],[378,136],[379,137],[380,138],[381,139],[382,140],[383,141],[384,142],[385,143],[295,1],[296,1],[297,1],[336,144],[386,145],[387,146],[507,1],[508,1],[506,147],[511,148],[1109,1],[716,149],[1160,150],[1162,151],[1161,150],[1159,152],[1116,1],[1118,153],[1117,154],[1122,155],[1157,156],[1154,157],[1156,158],[1119,157],[1120,159],[1124,159],[1123,160],[1121,161],[1155,162],[1153,157],[1158,163],[1151,1],[1152,1],[1125,164],[1130,157],[1132,157],[1127,157],[1128,164],[1134,157],[1135,165],[1126,157],[1131,157],[1133,157],[1129,157],[1149,166],[1148,157],[1150,167],[1144,157],[1146,157],[1145,157],[1141,157],[1147,168],[1142,157],[1143,169],[1136,157],[1137,157],[1138,157],[1139,157],[1140,157],[450,1],[1624,170],[1622,171],[1593,172],[1483,173],[1589,1],[1556,174],[1526,175],[1512,176],[1590,1],[1537,1],[1547,1],[1566,177],[1460,1],[1597,178],[1599,179],[1598,180],[1549,181],[1548,182],[1551,183],[1550,184],[1510,1],[1600,185],[1604,186],[1602,187],[1464,188],[1465,188],[1466,1],[1513,189],[1563,190],[1562,1],[1575,191],[1500,192],[1569,1],[1558,1],[1617,193],[1619,1],[1486,194],[1485,195],[1578,196],[1581,197],[1470,198],[1582,199],[1496,200],[1467,201],[1472,202],[1595,203],[1532,204],[1616,173],[1588,205],[1587,206],[1474,207],[1475,1],[1499,208],[1490,209],[1491,210],[1498,211],[1489,212],[1488,213],[1497,214],[1539,1],[1476,1],[1482,1],[1477,1],[1478,215],[1480,216],[1471,1],[1530,1],[1584,217],[1531,203],[1561,1],[1553,1],[1568,218],[1567,219],[1601,187],[1605,220],[1603,221],[1463,222],[1618,1],[1555,194],[1487,223],[1573,224],[1572,1],[1527,225],[1515,226],[1516,1],[1495,227],[1559,228],[1560,228],[1502,229],[1503,1],[1511,1],[1479,230],[1461,1],[1529,231],[1493,1],[1468,1],[1484,173],[1577,232],[1620,233],[1521,234],[1533,235],[1606,180],[1608,236],[1607,236],[1524,237],[1525,238],[1494,1],[1458,1],[1536,1],[1535,239],[1580,199],[1576,1],[1614,239],[1518,240],[1501,241],[1517,240],[1519,242],[1522,239],[1469,196],[1571,1],[1612,243],[1591,244],[1545,245],[1544,1],[1540,246],[1565,247],[1541,246],[1543,248],[1542,249],[1564,204],[1594,250],[1592,251],[1514,252],[1492,1],[1520,253],[1609,187],[1611,220],[1610,221],[1613,254],[1583,255],[1574,1],[1615,256],[1557,257],[1552,1],[1570,258],[1523,259],[1554,260],[1507,1],[1538,1],[1481,239],[1621,1],[1585,261],[1586,1],[1459,1],[1534,239],[1462,1],[1528,262],[1473,1],[1506,1],[1504,1],[1505,1],[1546,1],[1596,239],[1509,239],[1579,173],[1508,263],[298,1],[60,264],[58,1],[59,265],[1623,1],[748,1],[286,1],[637,266],[636,1],[1110,267],[1320,1],[1310,1],[1322,268],[1311,269],[1309,270],[1318,271],[1321,272],[1313,273],[1314,274],[1312,275],[1315,276],[1316,277],[1317,276],[1319,1],[1305,1],[1307,278],[1306,278],[1308,279],[464,1],[495,1],[1115,1],[653,280],[654,281],[652,282],[655,283],[649,284],[650,285],[651,286],[400,287],[401,288],[399,289],[402,290],[396,291],[397,292],[398,293],[645,284],[646,284],[648,294],[647,284],[392,291],[393,291],[395,295],[394,291],[718,296],[694,297],[692,298],[693,299],[285,300],[283,301],[284,302],[1111,303],[579,304],[578,1],[580,305],[643,1],[390,1],[642,306],[389,306],[492,1],[749,307],[468,308],[466,309],[467,310],[465,1],[644,311],[391,312],[735,1],[934,313],[282,314],[255,1],[233,315],[231,315],[146,316],[97,317],[96,318],[232,319],[217,320],[139,321],[95,322],[94,323],[281,318],[246,324],[245,324],[157,325],[253,316],[254,316],[256,326],[257,316],[258,323],[259,316],[230,316],[260,316],[261,327],[262,316],[263,324],[264,328],[265,316],[266,316],[267,316],[268,316],[269,324],[270,316],[271,316],[272,316],[273,316],[274,329],[275,316],[276,316],[277,316],[278,316],[279,316],[99,323],[100,323],[101,323],[102,323],[103,323],[104,323],[105,323],[106,316],[108,330],[109,323],[107,323],[110,323],[111,323],[112,323],[113,323],[114,323],[115,323],[116,316],[117,323],[118,323],[119,323],[120,323],[121,323],[122,316],[123,323],[124,323],[125,323],[126,323],[127,323],[128,323],[129,316],[131,331],[130,323],[132,323],[133,323],[134,323],[135,323],[136,329],[137,316],[138,316],[152,332],[140,333],[141,323],[142,323],[143,316],[144,323],[145,323],[147,334],[148,323],[149,323],[150,323],[151,323],[153,323],[154,323],[155,323],[156,323],[158,335],[159,323],[160,323],[161,323],[162,316],[163,323],[164,336],[165,336],[166,336],[167,316],[168,323],[169,323],[170,323],[175,323],[171,323],[172,316],[173,323],[174,316],[176,323],[177,323],[178,323],[179,323],[180,323],[181,323],[182,316],[183,323],[184,323],[185,323],[186,323],[187,323],[188,323],[189,323],[190,323],[191,323],[192,323],[193,323],[194,323],[195,323],[196,323],[197,323],[198,323],[199,337],[200,323],[201,323],[202,323],[203,323],[204,323],[205,323],[206,316],[207,316],[208,316],[209,316],[210,316],[211,323],[212,323],[213,323],[214,323],[280,316],[216,338],[239,339],[234,339],[225,340],[223,341],[237,342],[226,343],[240,344],[235,345],[236,342],[238,346],[224,1],[229,1],[221,347],[222,348],[219,1],[220,349],[218,323],[227,350],[98,351],[247,1],[248,1],[249,1],[250,1],[251,1],[252,1],[241,1],[244,324],[243,1],[242,352],[215,353],[228,354],[1326,355],[1325,356],[1324,357],[1323,358],[1081,359],[1082,359],[1084,360],[1083,359],[1080,1],[314,361],[324,362],[313,361],[334,363],[305,364],[304,365],[333,366],[327,367],[332,368],[307,369],[321,370],[306,371],[330,372],[302,373],[301,366],[331,374],[303,375],[308,376],[309,1],[312,376],[299,1],[335,377],[325,378],[316,379],[317,380],[319,381],[315,382],[318,383],[328,366],[310,384],[311,385],[320,386],[300,21],[323,378],[322,376],[326,1],[329,387],[624,388],[609,1],[610,1],[611,1],[612,1],[608,1],[613,389],[614,1],[616,390],[615,389],[617,389],[618,390],[619,389],[620,1],[621,389],[622,1],[623,1],[436,391],[434,392],[405,1],[423,393],[435,394],[404,395],[443,396],[406,1],[433,397],[410,398],[428,399],[425,400],[408,401],[420,402],[411,403],[424,404],[421,405],[407,406],[427,407],[429,408],[430,409],[431,409],[432,410],[437,1],[403,1],[438,409],[439,411],[422,412],[413,413],[414,413],[415,413],[426,414],[412,415],[440,416],[441,417],[416,1],[409,418],[417,419],[418,420],[419,421],[442,405],[597,422],[587,423],[589,424],[596,425],[591,1],[592,1],[590,426],[593,427],[584,1],[585,1],[586,422],[588,428],[594,1],[595,429],[287,430],[444,431],[53,432],[445,433],[446,434],[447,1],[476,1],[477,1],[478,1],[479,1],[480,1],[482,1],[483,1],[484,1],[485,1],[486,1],[481,1],[487,1],[488,1],[489,1],[490,1],[491,1],[460,435],[459,436],[461,435],[55,437],[474,438],[475,439],[473,440],[493,441],[494,442],[503,443],[502,444],[504,445],[532,446],[533,1],[534,1],[535,1],[536,1],[538,447],[539,1],[540,1],[541,1],[542,1],[545,448],[550,449],[549,450],[551,451],[543,452],[544,453],[558,454],[559,455],[556,456],[557,457],[560,1],[554,458],[561,459],[562,1],[563,460],[1185,461],[1186,461],[1184,462],[1187,463],[1188,461],[1189,461],[1190,463],[1193,464],[1191,461],[1192,461],[963,465],[1101,466],[1195,467],[1196,468],[938,469],[1197,470],[1198,471],[1201,472],[1104,473],[1100,474],[704,475],[1202,476],[1203,477],[1204,478],[1106,479],[961,480],[949,481],[1225,482],[958,483],[960,484],[959,483],[950,485],[951,486],[957,483],[952,485],[953,487],[1099,488],[1086,1],[1205,489],[1087,490],[962,491],[1206,492],[1107,493],[638,494],[697,495],[746,496],[1207,476],[1165,497],[1208,498],[747,499],[935,500],[639,501],[743,502],[706,1],[742,503],[731,504],[732,505],[733,506],[741,507],[734,508],[707,1],[745,509],[1092,510],[1209,1],[635,511],[1103,512],[1211,513],[1085,514],[1221,515],[936,516],[1223,517],[1105,518],[964,519],[1231,520],[1228,521],[1226,1],[1233,522],[1234,523],[1227,524],[1229,525],[1232,522],[1230,1],[736,526],[965,1],[1093,527],[966,528],[1167,529],[1235,530],[1240,531],[1236,530],[1239,532],[1238,533],[1237,530],[1241,1],[1178,534],[1179,535],[737,536],[1180,537],[1079,538],[1078,539],[1166,540],[739,541],[1102,542],[1032,543],[1050,544],[1052,545],[1053,546],[1044,547],[1049,548],[1034,549],[1054,549],[1075,550],[1046,551],[1045,552],[1072,553],[1070,554],[1068,555],[1067,556],[1066,557],[1063,558],[1069,559],[1061,560],[1065,561],[1062,562],[1064,563],[956,564],[1058,565],[1057,566],[1055,567],[982,568],[987,569],[972,570],[979,570],[980,571],[978,1],[976,572],[971,1],[981,568],[967,573],[1000,574],[983,1],[1002,575],[1006,576],[984,549],[994,577],[998,578],[997,1],[995,570],[996,570],[977,579],[970,1],[968,1],[969,1],[975,580],[986,1],[705,568],[985,1],[974,1],[973,1],[1001,1],[990,570],[992,570],[993,581],[991,570],[989,570],[988,549],[1036,582],[1009,583],[1008,584],[1074,585],[1037,586],[1071,553],[1095,587],[1031,588],[1030,589],[1039,590],[1010,1],[1023,1],[1011,1],[1013,1],[1022,1],[1015,1],[1026,1],[1028,591],[1016,1],[1021,1],[1017,1],[1018,1],[1014,1],[1025,1],[1020,1],[1019,1],[1027,1],[1012,1],[1024,1],[1029,592],[1088,593],[1040,594],[1041,595],[1035,596],[1098,597],[1051,21],[1042,460],[1073,598],[1038,599],[1043,600],[1033,601],[1048,568],[1097,602],[1047,549],[1096,603],[1094,604],[740,605],[1181,606],[1182,607],[1242,608],[1243,609],[1244,610],[738,611],[1090,460],[1245,612],[1246,613],[1059,1],[1091,570],[1247,614],[1089,615],[1060,616],[1183,617],[1249,618],[1255,619],[1256,620],[1259,621],[1260,622],[1261,1],[1254,623],[1263,624],[1264,625],[462,622],[1257,1],[1265,626],[1258,627],[1220,628],[1212,629],[1266,1],[1278,630],[1277,631],[496,632],[1267,633],[1282,634],[1272,635],[1283,636],[1273,637],[1269,638],[1281,639],[1199,640],[1200,641],[1279,642],[1274,643],[1280,563],[1271,638],[1268,638],[1270,644],[1275,645],[1276,646],[725,434],[632,647],[521,648],[1284,649],[570,650],[520,651],[1285,652],[547,653],[633,654],[522,655],[1286,1],[634,656],[519,657],[1287,658],[1288,659],[602,660],[1289,661],[1290,661],[631,662],[548,663],[1291,664],[524,665],[606,666],[629,667],[517,668],[523,655],[607,452],[603,669],[604,670],[600,671],[599,672],[516,668],[630,673],[515,668],[575,1],[1294,674],[1293,675],[577,676],[1295,677],[583,678],[581,1],[582,1],[1297,679],[627,680],[1296,681],[1210,682],[1298,676],[576,674],[573,683],[572,684],[571,685],[1292,686],[1299,1],[625,1],[628,687],[626,688],[598,689],[518,655],[1300,690],[1217,659],[567,691],[50,692],[1301,693],[568,530],[49,694],[569,695],[730,696],[1302,697],[56,698],[744,568],[1303,1],[1327,699],[1328,1],[1329,1],[1330,1],[1331,1],[702,700],[703,701],[700,700],[699,702],[1332,703],[698,700],[701,702],[1333,1],[1340,704],[1334,459],[1339,705],[1337,706],[1338,707],[1336,708],[1335,709],[942,710],[945,711],[939,712],[948,713],[944,714],[1224,715],[943,716],[1341,717],[947,718],[940,719],[946,720],[941,1],[1630,721],[1056,722],[1342,723],[1343,1],[57,724],[1344,651],[1350,725],[1349,1],[1351,726],[458,727],[1352,728],[1169,729],[1168,1],[723,730],[1360,731],[726,732],[1367,733],[1372,734],[1375,735],[1368,736],[724,657],[1371,737],[1370,738],[1369,657],[1361,739],[1364,740],[1363,741],[1366,742],[1362,739],[1365,743],[721,744],[728,745],[1376,746],[1377,746],[729,747],[722,730],[1359,748],[727,749],[720,750],[714,751],[719,752],[715,753],[1194,754],[954,1],[449,751],[453,755],[452,756],[454,749],[52,620],[955,757],[1005,758],[1251,1],[1004,759],[455,749],[1248,1],[456,760],[1252,761],[1250,762],[1378,763],[1003,764],[451,765],[546,766],[1253,767],[1007,768],[1379,769],[641,770],[656,771],[695,772],[658,773],[657,774],[696,775],[640,1],[1380,776],[1389,777],[1385,1],[1387,778],[1390,779],[1386,1],[1388,778],[1382,780],[1381,781],[1383,1],[1393,782],[1394,782],[1392,782],[1391,782],[1395,783],[1384,784],[1348,785],[1396,460],[1397,786],[1399,787],[1398,788],[501,789],[499,790],[500,791],[1108,1],[1164,792],[1113,793],[1400,1],[1077,794],[1076,795],[1401,637],[1403,796],[1405,797],[1404,798],[1406,799],[1407,799],[1414,800],[1409,799],[1408,799],[1412,801],[1411,802],[1402,563],[1413,803],[1410,804],[1415,805],[1416,671],[531,620],[1417,805],[1418,806],[1419,806],[750,807],[751,808],[1420,557],[1171,809],[1177,810],[1172,811],[1173,811],[1174,811],[1175,811],[1170,489],[1176,811],[1421,563],[1422,557],[1423,557],[1424,563],[1425,557],[1456,812],[1457,812],[1628,813],[1629,814],[1626,812],[1625,815],[1627,816],[1631,817],[1632,452],[1633,812],[1634,812],[1635,818],[1455,819],[1641,820],[1636,821],[1642,822],[1640,823],[1639,820],[1638,820],[1637,820],[1427,824],[1428,825],[529,826],[605,827],[530,828],[1429,829],[1445,830],[1446,831],[1450,832],[1448,833],[1447,830],[1449,831],[1451,834],[1430,835],[1426,836],[1431,837],[1440,838],[528,839],[1441,776],[1442,840],[1433,841],[469,842],[471,1],[463,452],[1439,843],[472,844],[470,1],[1438,845],[1435,846],[1434,847],[1437,848],[1436,849],[1443,850],[1444,851],[526,852],[525,853],[1432,854],[1452,855],[51,563],[1453,856],[1643,857],[1345,858],[1347,859],[1644,860],[1346,861],[708,1],[710,862],[709,863],[713,864],[711,865],[712,866],[1645,1],[1646,1],[1648,563],[1649,867],[1647,868],[1650,563],[1262,563],[1652,869],[1653,869],[1654,870],[1651,871],[457,872],[54,1],[1655,1],[1656,873],[1657,853],[1658,874],[1659,1],[1660,1],[1661,875],[498,876],[448,1],[601,877],[937,1],[48,878],[1112,879],[552,880],[553,659],[999,881],[1114,460],[527,568],[555,1],[497,1],[47,1],[1216,882],[1219,883],[1218,884],[1662,885],[1663,886],[1215,887],[1163,888],[1664,1],[574,889],[1665,1],[1666,1],[1668,890],[1669,891],[1692,1],[1673,892],[1671,893],[1672,894],[1675,895],[1676,896],[1677,896],[1678,890],[1680,897],[1681,563],[1674,898],[1222,1],[1670,1],[1679,899],[1682,563],[1683,900],[1684,901],[1685,1],[1686,557],[1687,898],[1688,890],[1667,902],[1689,903],[1690,563],[1214,904],[1213,853],[1691,905],[1695,1],[1696,563],[1693,1],[1697,563],[1698,906],[1699,1],[1700,563],[1701,1],[1694,563],[1454,452],[1702,907],[1703,868],[1704,563],[1705,563],[1706,908],[45,1],[46,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1]],"semanticDiagnosticsPerFile":[[50,[{"start":3530,"length":5,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[52,[{"start":17909,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'filter' does not exist in type 'MemoryQuery'."}]],[57,[{"start":337,"length":11,"messageText":"Module '\"./types/agent-types.js\"' has no exported member 'SwarmConfig'.","category":1,"code":2305}]],[456,[{"start":12083,"length":17,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[457,[{"start":22181,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleState'.","category":1,"code":2484},{"start":22204,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleTrigger'.","category":1,"code":2484},{"start":22229,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'AgentStateTransition'.","category":1,"code":2484},{"start":22253,"length":24,"messageText":"Export declaration conflicts with exported declaration of 'StateTransitionCondition'.","category":1,"code":2484},{"start":22281,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'StateTransitionAction'.","category":1,"code":2484},{"start":22306,"length":11,"messageText":"Export declaration conflicts with exported declaration of 'RetryPolicy'.","category":1,"code":2484},{"start":22345,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookType'.","category":1,"code":2484},{"start":22366,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHook'.","category":1,"code":2484},{"start":22383,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookContext'.","category":1,"code":2484},{"start":22407,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookResult'.","category":1,"code":2484},{"start":22430,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookHandler'.","category":1,"code":2484},{"start":22454,"length":25,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookErrorHandler'.","category":1,"code":2484},{"start":22483,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'HookCondition'.","category":1,"code":2484},{"start":22500,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'HookExecution'.","category":1,"code":2484},{"start":22543,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleRecord'.","category":1,"code":2484},{"start":22567,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'AgentStateHistoryEntry'.","category":1,"code":2484},{"start":22593,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleMetadata'.","category":1,"code":2484},{"start":22619,"length":27,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleConfiguration'.","category":1,"code":2484},{"start":22650,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'AgentResourceUsage'.","category":1,"code":2484},{"start":22672,"length":23,"messageText":"Export declaration conflicts with exported declaration of 'AgentPerformanceMetrics'.","category":1,"code":2484},{"start":22699,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleMetrics'.","category":1,"code":2484},{"start":22745,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleEventType'.","category":1,"code":2484},{"start":22767,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleEvent'.","category":1,"code":2484},{"start":22785,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleEventData'.","category":1,"code":2484},{"start":22807,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'EventSubscription'.","category":1,"code":2484},{"start":22828,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'MessageRouterConfig'.","category":1,"code":2484},{"start":22878,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'ErrorRecoveryStrategy'.","category":1,"code":2484},{"start":22903,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'RecoveryResult'.","category":1,"code":2484},{"start":22921,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'DegradationLevel'.","category":1,"code":2484},{"start":22941,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'DegradationConfig'.","category":1,"code":2484},{"start":22987,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleManager'.","category":1,"code":2484},{"start":23012,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleMemoryManager'.","category":1,"code":2484},{"start":23038,"length":29,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleCommunicationManager'.","category":1,"code":2484},{"start":23101,"length":12,"messageText":"Export declaration conflicts with exported declaration of 'HealthStatus'.","category":1,"code":2484},{"start":23117,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'HealthCheckResult'.","category":1,"code":2484},{"start":23171,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'LegacyAgentAdapter'.","category":1,"code":2484},{"start":23193,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'AgentMigrationResult'.","category":1,"code":2484},{"start":23217,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'MigrationResult'.","category":1,"code":2484},{"start":23262,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleSystemConfig'.","category":1,"code":2484},{"start":23287,"length":23,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleManagerFactory'.","category":1,"code":2484}]],[458,[{"start":3675,"length":19,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4225,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'namespace' does not exist in type 'MemoryConfig'."},{"start":19575,"length":4,"code":2322,"category":1,"messageText":"Type '\"dependency\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":20250,"length":4,"code":2322,"category":1,"messageText":"Type '\"dependency-deletion\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":21345,"length":4,"code":2322,"category":1,"messageText":"Type '\"tracker-state\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":21826,"length":6,"code":2339,"category":1,"messageText":"Property 'search' does not exist on type 'MemoryManager'."},{"start":28212,"length":28,"messageText":"This comparison appears to be unintentional because the types 'AgentLifecycleState' and '\"stopped\"' have no overlap.","category":1,"code":2367},{"start":28286,"length":28,"messageText":"This comparison appears to be unintentional because the types 'AgentLifecycleState.REQUESTED | AgentLifecycleState.PROVISIONING | AgentLifecycleState.INITIALIZING | AgentLifecycleState.CONFIGURED | ... 14 more ... | AgentLifecycleState.SCALING' and '\"cleanup\"' have no overlap.","category":1,"code":2367},{"start":33108,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'AgentDependency'.","category":1,"code":2484},{"start":33127,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'DependencyData'.","category":1,"code":2484},{"start":33145,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'DependencyChain'.","category":1,"code":2484},{"start":33164,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'DependencyViolation'.","category":1,"code":2484},{"start":33187,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'CompletionBlockerInfo'.","category":1,"code":2484},{"start":33223,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'DependencyType'.","category":1,"code":2484},{"start":33239,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'DependencyStatus'.","category":1,"code":2484}]],[459,[{"start":12112,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type '{ init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":20483,"length":27,"messageText":"Right operand of ?? is unreachable because the left operand is never nullish.","category":1,"code":2869}]],[460,[{"start":3140,"length":48,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4869,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":35871,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'HierarchicalAgentNode'.","category":1,"code":2484},{"start":35894,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'HierarchicalTask'.","category":1,"code":2484},{"start":35912,"length":29,"messageText":"Export declaration conflicts with exported declaration of 'HierarchicalCoordinatorConfig'.","category":1,"code":2484}]],[461,[{"start":2932,"length":40,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4468,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":26142,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'MeshAgentInfo'.","category":1,"code":2484},{"start":26157,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'MeshCoordinationTask'.","category":1,"code":2484},{"start":26179,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'MeshCoordinatorConfig'.","category":1,"code":2484}]],[462,[{"start":5073,"length":2,"messageText":"Cannot assign to 'id' because it is a read-only property.","category":1,"code":2540},{"start":5096,"length":9,"messageText":"Cannot assign to 'timestamp' because it is a read-only property.","category":1,"code":2540},{"start":5126,"length":10,"messageText":"Cannot assign to 'routingKey' because it is a read-only property.","category":1,"code":2540},{"start":5157,"length":8,"messageText":"Cannot assign to 'priority' because it is a read-only property.","category":1,"code":2540},{"start":14422,"length":54,"messageText":"Operator '+=' cannot be applied to types 'SharedArrayBuffer' and 'bigint'.","category":1,"code":2365},{"start":14484,"length":48,"messageText":"Operator '+=' cannot be applied to types 'SharedArrayBuffer' and 'bigint'.","category":1,"code":2365},{"start":14893,"length":32,"messageText":"Operator '-' cannot be applied to types 'bigint' and 'SharedArrayBuffer'.","category":1,"code":2365},{"start":14899,"length":26,"messageText":"The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2363},{"start":14995,"length":30,"messageText":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2362},{"start":14995,"length":44,"messageText":"Operator '*' cannot be applied to types 'SharedArrayBuffer' and 'bigint'.","category":1,"code":2365},{"start":15102,"length":35,"messageText":"Operator '>' cannot be applied to types 'SharedArrayBuffer' and 'bigint'.","category":1,"code":2365},{"start":15155,"length":25,"messageText":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2362},{"start":15183,"length":30,"messageText":"The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2363}]],[469,[{"start":1554,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | { path: string; operation: \"write\"; success: true; duration: number; size: number; error?: undefined; } | { path: string; operation: \"write\"; success: false; duration: number; error: Error; size?: undefined; }' is not assignable to type 'FileOperationResult'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult'.","category":1,"code":2322}]}},{"start":2651,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | { path: string; operation: \"read\"; success: true; duration: number; size: number; data: string; error?: undefined; } | { path: string; operation: \"read\"; success: false; duration: number; error: Error; size?: undefined; data?: undefined; }' is not assignable to type 'FileOperationResult & { data?: string; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult & { data?: string; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult'.","category":1,"code":2322}]}]}},{"start":4171,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | { path: string; operation: \"delete\"; success: true; duration: number; error?: undefined; } | { path: string; operation: \"delete\"; success: false; duration: number; error: Error; }' is not assignable to type 'FileOperationResult'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult'.","category":1,"code":2322}]}},{"start":5944,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | { path: string; operation: \"write\"; success: true; duration: number; size: number; error?: undefined; } | { path: string; operation: \"write\"; success: false; duration: number; error: Error; size?: undefined; }' is not assignable to type 'FileOperationResult'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult'.","category":1,"code":2322}]}}]],[472,[{"start":3836,"length":7,"code":2345,"category":1,"messageText":"Argument of type 'TaskId' is not assignable to parameter of type 'string'."},{"start":4192,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."},{"start":4311,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."},{"start":5127,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'taskId' does not exist in type 'TaskResult'."},{"start":5847,"length":6,"code":2322,"category":1,"messageText":"Type 'TaskId' is not assignable to type 'string'.","relatedInformation":[{"start":1444,"length":6,"messageText":"The expected type comes from property 'taskId' which is declared here on type '{ taskId: string; duration: number; status: \"failed\" | \"success\"; timestamp: Date; }'","category":3,"code":6500}]},{"start":6618,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'taskId' does not exist in type 'TaskResult'."},{"start":7360,"length":6,"code":2322,"category":1,"messageText":"Type 'TaskId' is not assignable to type 'string'.","relatedInformation":[{"start":1444,"length":6,"messageText":"The expected type comes from property 'taskId' which is declared here on type '{ taskId: string; duration: number; status: \"failed\" | \"success\"; timestamp: Date; }'","category":3,"code":6500}]},{"start":7621,"length":7,"code":2345,"category":1,"messageText":"Argument of type 'TaskId' is not assignable to parameter of type 'string'."},{"start":7652,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | TaskResult' is not assignable to type 'TaskResult'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'TaskResult'.","category":1,"code":2322}]}},{"start":7974,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."},{"start":8068,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."},{"start":8199,"length":9,"code":2339,"category":1,"messageText":"Property 'objective' does not exist on type 'TaskDefinition'."},{"start":8923,"length":9,"code":2339,"category":1,"messageText":"Property 'objective' does not exist on type 'TaskDefinition'."},{"start":8956,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."}]],[473,[{"start":12872,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ id: string; type: any; objective: string; constraints: { maxTokens: number; timeout: number; }; metadata: any; }' is not assignable to parameter of type 'TaskDefinition'.","category":1,"code":2345,"next":[{"messageText":"Type '{ id: string; type: any; objective: string; constraints: { maxTokens: number; timeout: number; }; metadata: any; }' is missing the following properties from type 'TaskDefinition': name, description, requirements, priority, and 8 more.","category":1,"code":2740}]}}]],[476,[{"start":134,"length":15,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './ui-designer.js'?","category":1,"code":2835},{"start":186,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './interaction-tester.js'?","category":1,"code":2835},{"start":242,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './state-architect.js'?","category":1,"code":2835}]],[480,[{"start":207,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":260,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-integration-manager.js'?","category":1,"code":2835},{"start":340,"length":37,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-collaboration-manager.js'?","category":1,"code":2835},{"start":420,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-release-coordinator.js'?","category":1,"code":2835},{"start":496,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './compatibility/legacy-agent-proxy.js'?","category":1,"code":2835},{"start":562,"length":26,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/hook-integration.js'?","category":1,"code":2835},{"start":625,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/error-handling.js'?","category":1,"code":2835},{"start":694,"length":31,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/performance-optimizer.js'?","category":1,"code":2835}]],[481,[{"start":182,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-integration-manager.js'?","category":1,"code":2835},{"start":262,"length":37,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-collaboration-manager.js'?","category":1,"code":2835},{"start":342,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-release-coordinator.js'?","category":1,"code":2835},{"start":574,"length":17,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './agent-factory.js'?","category":1,"code":2835},{"start":657,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './compatibility/legacy-agent-proxy.js'?","category":1,"code":2835},{"start":835,"length":39,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './compatibility/legacy-agent-mappings.js'?","category":1,"code":2835},{"start":969,"length":23,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/github-client.js'?","category":1,"code":2835},{"start":1045,"length":26,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/hook-integration.js'?","category":1,"code":2835},{"start":1128,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/error-handling.js'?","category":1,"code":2835},{"start":1230,"length":31,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/performance-optimizer.js'?","category":1,"code":2835},{"start":1574,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":1986,"length":18,"messageText":"Cannot find name 'GitHubAgentFactory'.","category":1,"code":2304},{"start":2025,"length":21,"messageText":"Cannot find name 'getGitHubAgentFactory'.","category":1,"code":2304},{"start":2868,"length":12,"messageText":"Cannot find name 'GitHubConfig'.","category":1,"code":2304},{"start":2886,"length":17,"messageText":"Cannot find name 'createGitHubAgent'.","category":1,"code":2304},{"start":3034,"length":12,"messageText":"Cannot find name 'GitHubConfig'.","category":1,"code":2304},{"start":3052,"length":17,"messageText":"Cannot find name 'createGitHubAgent'.","category":1,"code":2304},{"start":3196,"length":12,"messageText":"Cannot find name 'GitHubConfig'.","category":1,"code":2304},{"start":3214,"length":17,"messageText":"Cannot find name 'createGitHubAgent'.","category":1,"code":2304},{"start":3334,"length":15,"messageText":"Cannot find name 'LegacyAgentType'.","category":1,"code":2304},{"start":3368,"length":12,"messageText":"Cannot find name 'GitHubConfig'.","category":1,"code":2304},{"start":3390,"length":17,"messageText":"Cannot find name 'createGitHubAgent'.","category":1,"code":2304},{"start":3527,"length":18,"messageText":"No value exists in scope for the shorthand property 'GitHubAgentFactory'. Either declare one or provide an initializer.","category":1,"code":18004}]],[482,[{"start":233,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[483,[{"start":211,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":264,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/github-integration-manager.js'?","category":1,"code":2835},{"start":345,"length":38,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/github-collaboration-manager.js'?","category":1,"code":2835},{"start":426,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/github-release-coordinator.js'?","category":1,"code":2835},{"start":553,"length":25,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './legacy-agent-mappings.js'?","category":1,"code":2835}]],[484,[{"start":259,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":322,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/github-client.js'?","category":1,"code":2835}]],[485,[{"start":253,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":316,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/github-client.js'?","category":1,"code":2835}]],[486,[{"start":271,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":334,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/github-client.js'?","category":1,"code":2835}]],[488,[{"start":156,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[489,[{"start":170,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[490,[{"start":129,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[491,[{"start":161,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[493,[{"start":225,"length":19,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'AuthenticationError'.","category":1,"code":2305},{"start":246,"length":18,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'AuthorizationError'.","category":1,"code":2305}]],[496,[{"start":7385,"length":11,"messageText":"Cannot redeclare exported variable 'ConfigError'.","category":1,"code":2323},{"start":9455,"length":8,"messageText":"Cannot find module 'keytar' or its corresponding type declarations.","category":1,"code":2307},{"start":26396,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":30948,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":43424,"length":11,"messageText":"Cannot redeclare exported variable 'ConfigError'.","category":1,"code":2323},{"start":43424,"length":11,"messageText":"Export declaration conflicts with exported declaration of 'ConfigError'.","category":1,"code":2484},{"start":43437,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":43437,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'ExperienceLevel'.","category":1,"code":2484},{"start":43454,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":43454,"length":12,"messageText":"Export declaration conflicts with exported declaration of 'FeatureFlags'.","category":1,"code":2484},{"start":43468,"length":19,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":43468,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'AutoDetectionResult'.","category":1,"code":2484},{"start":43489,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":43489,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'SecureCredentials'.","category":1,"code":2484}]],[499,[{"start":1094,"length":8,"messageText":"Namespace '\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/better-sqlite3/lib/index\".export=' has no exported member 'Database'.","category":1,"code":2694},{"start":1136,"length":9,"messageText":"Namespace '\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/better-sqlite3/lib/index\".export=' has no exported member 'Statement'.","category":1,"code":2694}]],[504,[{"start":247,"length":10,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'SwarmError'.","category":1,"code":2305},{"start":259,"length":13,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'DatabaseError'.","category":1,"code":2305}]],[515,[{"start":9982,"length":17,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[523,[{"start":3348,"length":23,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[529,[{"start":2365,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'error' does not exist in type 'TaskResult'."},{"start":2795,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'error' does not exist in type 'TaskResult'."}]],[530,[{"start":5575,"length":8,"code":2345,"category":1,"messageText":"Argument of type 'AgentId' is not assignable to parameter of type 'string'."},{"start":6193,"length":8,"code":2345,"category":1,"messageText":"Argument of type 'AgentId' is not assignable to parameter of type 'string'."},{"start":7342,"length":11,"code":2741,"category":1,"messageText":"Property 'resourceLimits' is missing in type '{ minQuality: number; requiredApprovals: undefined[]; allowedFailures: number; recoveryTime: number; milestones: undefined[]; }' but required in type 'SwarmConstraints'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":11801,"length":14,"messageText":"'resourceLimits' is declared here.","category":3,"code":2728},{"file":"../src/swarm/types.ts","start":10826,"length":11,"messageText":"The expected type comes from property 'constraints' which is declared here on type 'SwarmObjective'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ minQuality: number; requiredApprovals: undefined[]; allowedFailures: number; recoveryTime: number; milestones: undefined[]; }' is not assignable to type 'SwarmConstraints'."}},{"start":21600,"length":11,"code":2741,"category":1,"messageText":"Property 'success' is missing in type '{ output: any; artifacts: {}; metadata: {}; quality: number; completeness: number; accuracy: number; executionTime: number; resourcesUsed: {}; validated: false; }' but required in type 'TaskResult'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":8326,"length":7,"messageText":"'success' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ output: any; artifacts: {}; metadata: {}; quality: number; completeness: number; accuracy: number; executionTime: number; resourcesUsed: {}; validated: false; }' is not assignable to type 'TaskResult'."}},{"start":44631,"length":31,"messageText":"This comparison appears to be unintentional because the types 'SwarmMode' and '\"parallel\"' have no overlap.","category":1,"code":2367},{"start":49973,"length":9,"code":2345,"category":1,"messageText":"Argument of type '\"generic\"' is not assignable to parameter of type 'TaskType'."},{"start":55099,"length":4,"code":2322,"category":1,"messageText":"Type '\"task.queued\"' is not assignable to type 'EventType'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":20934,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'SwarmEvent'","category":3,"code":6500}]},{"start":58307,"length":4,"code":2322,"category":1,"messageText":"Type '\"task.queued\"' is not assignable to type 'EventType'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":20934,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'SwarmEvent'","category":3,"code":6500}]},{"start":61893,"length":4,"code":2322,"category":1,"messageText":{"messageText":"Type '\"objective.completed\" | \"objective.failed\"' is not assignable to type 'EventType'.","category":1,"code":2322,"next":[{"messageText":"Type '\"objective.completed\"' is not assignable to type 'EventType'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/swarm/types.ts","start":20934,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'SwarmEvent'","category":3,"code":6500}]},{"start":67237,"length":27,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":67444,"length":7,"code":2339,"category":1,"messageText":"Property 'logging' does not exist on type 'SwarmConfig'."},{"start":78468,"length":15,"code":2339,"category":1,"messageText":"Property 'createGradioApp' does not exist on type 'SwarmCoordinator'."},{"start":78608,"length":19,"code":2339,"category":1,"messageText":"Property 'createPythonRestAPI' does not exist on type 'SwarmCoordinator'."}]],[531,[{"start":9761,"length":10,"code":2339,"category":1,"messageText":"Property 'resourceId' does not exist on type 'unknown'."},{"start":9778,"length":5,"code":2339,"category":1,"messageText":"Property 'usage' does not exist on type 'unknown'."}]],[532,[{"start":627,"length":5,"messageText":"Module '\"../utils/types.js\"' has no exported member 'Agent'.","category":1,"code":2305},{"start":634,"length":11,"messageText":"Module '\"../utils/types.js\"' has no exported member 'SwarmConfig'.","category":1,"code":2305},{"start":647,"length":11,"messageText":"Module '\"../utils/types.js\"' has no exported member 'SwarmStatus'.","category":1,"code":2305},{"start":713,"length":10,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'SwarmError'.","category":1,"code":2305},{"start":3844,"length":7,"code":2339,"category":1,"messageText":"Property 'details' does not exist on type 'Error'."},{"start":6524,"length":178,"messageText":"Expected 0-1 arguments, but got 8.","category":1,"code":2554},{"start":7491,"length":9,"code":2339,"category":1,"messageText":"Property 'getConfig' does not exist on type 'SwarmCoordinator'."},{"start":7533,"length":9,"code":2339,"category":1,"messageText":"Property 'getConfig' does not exist on type 'SwarmCoordinator'."},{"start":7581,"length":13,"code":2339,"category":1,"messageText":"Property 'getAgentCount' does not exist on type 'SwarmCoordinator'."},{"start":7658,"length":12,"code":2339,"category":1,"messageText":"Property 'getCreatedAt' does not exist on type 'SwarmCoordinator'."},{"start":8159,"length":9,"code":2339,"category":1,"messageText":"Property 'getConfig' does not exist on type 'SwarmCoordinator'."},{"start":8625,"length":12,"code":2339,"category":1,"messageText":"Property 'getCreatedAt' does not exist on type 'SwarmCoordinator'."},{"start":9032,"length":7,"code":2339,"category":1,"messageText":"Property 'destroy' does not exist on type 'SwarmCoordinator'."},{"start":9834,"length":5,"code":2339,"category":1,"messageText":"Property 'scale' does not exist on type 'SwarmCoordinator'."},{"start":10584,"length":10,"code":2339,"category":1,"messageText":"Property 'spawnAgent' does not exist on type 'SwarmCoordinator'."},{"start":11614,"length":15,"code":2339,"category":1,"messageText":"Property 'orchestrateTask' does not exist on type 'SwarmCoordinator'."},{"start":12979,"length":17,"code":2339,"category":1,"messageText":"Property 'getDetailedStatus' does not exist on type 'SwarmCoordinator'."},{"start":13989,"length":15,"code":2339,"category":1,"messageText":"Property 'getHealthStatus' does not exist on type 'AgentManager'."},{"start":14743,"length":5,"code":2339,"category":1,"messageText":"Property 'getId' does not exist on type 'SwarmCoordinator'."},{"start":15623,"length":9,"code":2339,"category":1,"messageText":"Property 'createdAt' does not exist on type 'AgentState'."},{"start":16671,"length":14,"code":2339,"category":1,"messageText":"Property 'terminateAgent' does not exist on type 'SwarmCoordinator'."},{"start":19017,"length":7,"code":2339,"category":1,"messageText":"Property 'destroy' does not exist on type 'SwarmCoordinator'."}]],[534,[{"start":11859,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type '\"critical\" | \"warning\"' is not assignable to type '\"normal\"'.","category":1,"code":2322,"next":[{"messageText":"Type '\"critical\"' is not assignable to type '\"normal\"'.","category":1,"code":2322}]}}]],[538,[{"start":3561,"length":5,"messageText":"Block-scoped variable 'agent' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":3411,"length":5,"messageText":"'agent' is declared here.","category":3,"code":2728}]}]],[546,[{"start":19746,"length":7,"code":2559,"category":1,"messageText":"Type '{ persistDir?: string; logger?: Logger; eventBus?: EventBus; }' has no properties in common with type 'Partial<SwarmMemoryConfig>'."}]],[551,[{"start":4048,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ phaseId: string; iteration: number; agents: { agentId: string; agentType: string; role: \"primary\"; instructions: string; }[]; topology: \"mesh\"; maxAgents: number; }' is not assignable to parameter of type 'SwarmExecutionContext'.","category":1,"code":2345,"next":[{"messageText":"Property 'primaryTaskInstructions' is missing in type '{ phaseId: string; iteration: number; agents: { agentId: string; agentType: string; role: \"primary\"; instructions: string; }[]; topology: \"mesh\"; maxAgents: number; }' but required in type 'SwarmExecutionContext'.","category":1,"code":2741}]},"relatedInformation":[{"file":"../src/cfn-loop/cfn-loop-integrator.ts","start":690,"length":23,"messageText":"'primaryTaskInstructions' is declared here.","category":3,"code":2728}]}]],[558,[{"start":1833,"length":20,"messageText":"Module '\"./circuit-breaker.js\"' declares 'CircuitBreakerConfig' locally, but it is not exported.","category":1,"code":2459,"relatedInformation":[{"file":"../src/cfn-loop/circuit-breaker.ts","start":257,"length":20,"messageText":"'CircuitBreakerConfig' is declared here.","category":3,"code":2728}]},{"start":1858,"length":19,"messageText":"Module '\"./circuit-breaker.js\"' has no exported member 'CircuitBreakerState'.","category":1,"code":2305},{"start":2449,"length":21,"messageText":"Module '\"./sprint-orchestrator.js\"' has no exported member 'SprintExecutionResult'. Did you mean to use 'import SprintExecutionResult from \"./sprint-orchestrator.js\"' instead?","category":1,"code":2614},{"start":2475,"length":16,"messageText":"Module '\"./sprint-orchestrator.js\"' has no exported member 'SprintDependency'. Did you mean to use 'import SprintDependency from \"./sprint-orchestrator.js\"' instead?","category":1,"code":2614}]],[563,[{"start":50,"length":46,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[567,[{"start":350,"length":6,"messageText":"Module '\"../utils/types.js\"' has no exported member 'Config'.","category":1,"code":2305}]],[570,[{"start":1464,"length":20,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":6121,"length":7,"messageText":"Block-scoped variable 'process' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":6026,"length":7,"messageText":"'process' is declared here.","category":3,"code":2728}]}]],[571,[{"start":2392,"length":14,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."}]],[572,[{"start":2511,"length":18,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":3302,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'namespace' does not exist in type 'MemoryConfig'."},{"start":7128,"length":4,"code":2322,"category":1,"messageText":"Type '\"objective\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":14015,"length":4,"code":2322,"category":1,"messageText":"Type '\"task-result\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":21347,"length":4,"code":2322,"category":1,"messageText":"Type '\"swarm-state\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":21999,"length":7,"messageText":"Cannot find name 'Message'.","category":1,"code":2304}]],[574,[{"start":2012,"length":20,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":5751,"length":20,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."}]],[603,[{"start":7352,"length":9,"code":2345,"category":1,"messageText":"Argument of type '\"failure\"' is not assignable to parameter of type '\"error\" | \"communication\" | \"knowledge\" | \"state\" | \"result\"'."},{"start":8130,"length":27,"messageText":"This comparison appears to be unintentional because the types 'AgentStatus' and '\"offline\"' have no overlap.","category":1,"code":2367},{"start":8161,"length":28,"messageText":"This comparison appears to be unintentional because the types 'AgentStatus' and '\"degraded\"' have no overlap.","category":1,"code":2367},{"start":8304,"length":14,"code":2339,"category":1,"messageText":"Property 'completedTasks' does not exist on type 'HierarchicalAgent'."},{"start":8328,"length":11,"code":2339,"category":1,"messageText":"Property 'failedTasks' does not exist on type 'HierarchicalAgent'."},{"start":8392,"length":14,"code":2339,"category":1,"messageText":"Property 'completedTasks' does not exist on type 'HierarchicalAgent'."},{"start":8473,"length":9,"code":2339,"category":1,"messageText":"Property 'spawnedAt' does not exist on type 'HierarchicalAgent'."},{"start":8689,"length":12,"code":2551,"category":1,"messageText":"Property 'currentTasks' does not exist on type 'HierarchicalAgent'. Did you mean 'currentTask'?","relatedInformation":[{"file":"../src/coordination/hierarchical-orchestrator.ts","start":1137,"length":11,"messageText":"'currentTask' is declared here.","category":3,"code":2728}]},{"start":8731,"length":18,"code":2339,"category":1,"messageText":"Property 'maxConcurrentTasks' does not exist on type 'Set<string>'."},{"start":12472,"length":11,"code":2345,"category":1,"messageText":"Argument of type '\"promotion\"' is not assignable to parameter of type '\"error\" | \"communication\" | \"knowledge\" | \"state\" | \"result\"'."},{"start":15268,"length":16,"code":2345,"category":1,"messageText":"Argument of type '\"state-transfer\"' is not assignable to parameter of type '\"error\" | \"communication\" | \"knowledge\" | \"state\" | \"result\"'."}]],[604,[{"start":8852,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '{ type?: string; priority?: number; maxConcurrentTasks?: number; skills?: string[]; specializations?: string[]; }' is not assignable to type 'WorkerCapabilities'.","category":1,"code":2322,"next":[{"messageText":"Property 'type' is optional in type '{ type?: string; priority?: number; maxConcurrentTasks?: number; skills?: string[]; specializations?: string[]; }' but required in type 'WorkerCapabilities'.","category":1,"code":2327}]},"relatedInformation":[{"start":1532,"length":12,"messageText":"The expected type comes from property 'capabilities' which is declared here on type 'WorkerState'","category":3,"code":6500}]},{"start":11651,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ type?: string; timeout?: number; priority?: number; id?: string; status?: \"pending\" | \"running\" | \"completed\" | \"failed\" | \"blocked\"; dependencies?: string[]; metadata?: Record<string, unknown>; description?: string; }' is not assignable to parameter of type 'Task'.","category":1,"code":2345,"next":[{"messageText":"Type '{ type?: string; timeout?: number; priority?: number; id?: string; status?: \"pending\" | \"running\" | \"completed\" | \"failed\" | \"blocked\"; dependencies?: string[]; metadata?: Record<string, unknown>; description?: string; }' is missing the following properties from type 'Task': input, createdAt","category":1,"code":2739}]}},{"start":11780,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ type?: string; timeout?: number; priority?: number; id?: string; status?: \"pending\" | \"running\" | \"completed\" | \"failed\" | \"blocked\"; dependencies?: string[]; metadata?: Record<string, unknown>; description?: string; }' is not assignable to parameter of type 'Task'.","category":1,"code":2345,"next":[{"messageText":"Type '{ type?: string; timeout?: number; priority?: number; id?: string; status?: \"pending\" | \"running\" | \"completed\" | \"failed\" | \"blocked\"; dependencies?: string[]; metadata?: Record<string, unknown>; description?: string; }' is missing the following properties from type 'Task': input, createdAt","category":1,"code":2739}]}}]],[625,[{"start":362,"length":35,"messageText":"Cannot find module '../../coordination/queen-agent.js' or its corresponding type declarations.","category":1,"code":2307},{"start":457,"length":34,"messageText":"Cannot find module '../../agents/mesh-coordinator.js' or its corresponding type declarations.","category":1,"code":2307},{"start":535,"length":31,"messageText":"Cannot find module '../../coordination/metrics.js' or its corresponding type declarations.","category":1,"code":2307}]],[626,[{"start":6925,"length":15,"code":2561,"category":1,"messageText":"Object literal may only specify known properties, but 'coordinatorType' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'. Did you mean to write 'coordinatorId'?","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":7951,"length":15,"code":2561,"category":1,"messageText":"Object literal may only specify known properties, but 'coordinatorType' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'. Did you mean to write 'coordinatorId'?","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":26739,"length":19,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"task_assigned\" | \"task_completed\" | \"dependency_resolved\" | \"task_failed\" | \"agent_spawned\" | \"agent_status_changed\" | \"agent_health_updated\" | \"task_created\" | \"task_started\" | ... 7 more ... | \"error_occurred\"'."},{"start":26881,"length":18,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"error\" | \"resource\" | \"coordination\" | \"performance\" | \"security\" | \"lifecycle\"'."},{"start":30485,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'agentType' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'.","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":33904,"length":8,"code":2561,"category":1,"messageText":"Object literal may only specify known properties, but 'agentIds' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'. Did you mean to write 'agentId'?","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":35322,"length":8,"code":2561,"category":1,"messageText":"Object literal may only specify known properties, but 'agentIds' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'. Did you mean to write 'agentId'?","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":35894,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'stack' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'.","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":43827,"length":27,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":44454,"length":27,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":49470,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'V1TransparencyConfig'."},{"start":59606,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'V1TransparencyConfig'."},{"start":60008,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'V1TransparencyConfig'."},{"start":60333,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'V1TransparencyConfig'."}]],[628,[{"start":492,"length":20,"messageText":"'\"./interfaces/v1-transparency-system.js\"' has no exported member named 'V1TransparencySystem'. Did you mean 'IV1TransparencySystem'?","category":1,"code":2724},{"start":966,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ agentId: string; type: string; level: number; parentAgentId: string; childAgentIds: string[]; priority: number; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; ... 10 more ...; completedDependencies: any[]; }[]' is not assignable to type 'AgentHierarchyNode[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ agentId: string; type: string; level: number; parentAgentId: string; childAgentIds: string[]; priority: number; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; ... 10 more ...; completedDependencies: any[]; }' is not assignable to type 'AgentHierarchyNode'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'state' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '\"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"' is not assignable to type 'AgentState'.","category":1,"code":2322,"next":[{"messageText":"Type '\"error\"' is not assignable to type 'AgentState'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '{ agentId: string; type: string; level: number; parentAgentId: string; childAgentIds: string[]; priority: number; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; ... 10 more ...; completedDependencies: any[]; }' is not assignable to type 'AgentHierarchyNode'."}}]}]}]}},{"start":2496,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ agentId: string; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; isPaused: boolean; activity: string; progress: number; ... 7 more ...; recentErrors: { ...; }[]; }[]' is not assignable to type 'AgentStatus[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ agentId: string; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; isPaused: boolean; activity: string; progress: number; ... 7 more ...; recentErrors: { ...; }[]; }' is not assignable to type 'AgentStatus'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'state' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '\"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"' is not assignable to type 'AgentState'.","category":1,"code":2322,"next":[{"messageText":"Type '\"error\"' is not assignable to type 'AgentState'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '{ agentId: string; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; isPaused: boolean; activity: string; progress: number; ... 7 more ...; recentErrors: { ...; }[]; }' is not assignable to type 'AgentStatus'."}}]}]}]}},{"start":3388,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ eventId: string; timestamp: Date; agentId: string; eventType: \"terminated\" | \"paused\" | \"task_assigned\" | \"task_completed\" | \"error_occurred\" | \"spawned\" | \"resumed\" | \"checkpoint_created\" | \"checkpoint_restored\" | \"state_changed\"; ... 5 more ...; performanceImpact: { ...; }; }[]' is not assignable to type 'AgentLifecycleEvent[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ eventId: string; timestamp: Date; agentId: string; eventType: \"terminated\" | \"paused\" | \"task_assigned\" | \"task_completed\" | \"error_occurred\" | \"spawned\" | \"resumed\" | \"checkpoint_created\" | \"checkpoint_restored\" | \"state_changed\"; ... 5 more ...; performanceImpact: { ...; }; }' is not assignable to type 'AgentLifecycleEvent'.","category":1,"code":2322,"next":[{"messageText":"The types of 'eventData.previousState' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type 'string' is not assignable to type 'AgentState'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '{ eventId: string; timestamp: Date; agentId: string; eventType: \"terminated\" | \"paused\" | \"task_assigned\" | \"task_completed\" | \"error_occurred\" | \"spawned\" | \"resumed\" | \"checkpoint_created\" | \"checkpoint_restored\" | \"state_changed\"; ... 5 more ...; performanceImpact: { ...; }; }' is not assignable to type 'AgentLifecycleEvent'."}}]}]}]}},{"start":18071,"length":18,"messageText":"Property 'groupAgentsByLevel' is private and only accessible within class 'V1ToV2Bridge'.","category":1,"code":2341}]],[635,[{"start":7054,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '\"v2\" | \"v1\"' is not assignable to type '\"v1\"'.","category":1,"code":2322,"next":[{"messageText":"Type '\"v2\"' is not assignable to type '\"v1\"'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/coordination/coordination-toggle.ts","start":1015,"length":7,"messageText":"The expected type comes from property 'version' which is declared here on type 'UnifiedCoordinatorConfig'","category":3,"code":6500}]},{"start":7207,"length":8,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"balanced\" | \"adaptive\" | \"performance\"'.","relatedInformation":[{"file":"../src/coordination/coordination-toggle.ts","start":1247,"length":8,"messageText":"The expected type comes from property 'strategy' which is declared here on type 'UnifiedCoordinatorConfig'","category":3,"code":6500}]},{"start":7538,"length":11,"code":2339,"category":1,"messageText":"Property 'SwarmMemory' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/memory/swarm-memory\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7581,"length":35,"messageText":"Cannot find module '../../messaging/message-broker.js' or its corresponding type declarations.","category":1,"code":2307},{"start":8452,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ICoordinator' is not assignable to parameter of type 'SwarmCoordinator'.","category":1,"code":2345,"next":[{"messageText":"Type 'ICoordinator' is missing the following properties from type 'SwarmCoordinator': logger, config, agents, objectives, and 46 more.","category":1,"code":2740}]}},{"start":8514,"length":5,"code":2339,"category":1,"messageText":"Property 'start' does not exist on type 'ICoordinator'."},{"start":8805,"length":15,"code":2339,"category":1,"messageText":"Property 'createObjective' does not exist on type 'ICoordinator'."},{"start":9873,"length":13,"code":2339,"category":1,"messageText":"Property 'registerAgent' does not exist on type 'ICoordinator'."},{"start":10533,"length":16,"code":2339,"category":1,"messageText":"Property 'executeObjective' does not exist on type 'ICoordinator'."},{"start":11561,"length":14,"code":2339,"category":1,"messageText":"Property 'getSwarmStatus' does not exist on type 'ICoordinator'."},{"start":12090,"length":4,"code":2339,"category":1,"messageText":"Property 'stop' does not exist on type 'ICoordinator'."}]],[641,[{"start":645,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":784,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":962,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1097,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1293,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1519,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3149,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3208,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3308,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3367,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3433,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3498,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3590,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3654,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[656,[{"start":7505,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7568,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7619,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7689,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7785,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7895,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7914,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8019,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8038,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8147,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8194,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8301,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8350,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8455,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8668,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8791,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8810,"length":6,"code":2339,"category":1,"messageText":"Property 'italic' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8959,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9215,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9432,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9672,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9911,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[657,[{"start":825,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1481,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1529,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1630,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1747,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1880,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1994,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":2110,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":2974,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3022,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3070,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3117,"length":4,"code":2339,"category":1,"messageText":"Property 'cyan' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3161,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3238,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3891,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3916,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[658,[{"start":9193,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9257,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9315,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9367,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9392,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9461,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9580,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9599,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9718,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9842,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9942,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10061,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10169,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10228,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10320,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10479,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[695,[{"start":119,"length":11,"messageText":"The 'import.meta' meta-property is not allowed in files which will build into CommonJS output.","category":1,"code":1470},{"start":5250,"length":28,"messageText":"Type 'Record<string, CommandMigration>' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"start":12380,"length":6,"code":2339,"category":1,"messageText":"Property 'prompt' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/inquirer/dist/commonjs/index\")'."},{"start":13762,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":13817,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":14124,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":14512,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":15134,"length":6,"code":2339,"category":1,"messageText":"Property 'prompt' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/inquirer/dist/commonjs/index\")'."},{"start":15429,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type '{ source: string; target: string; }[]' is not assignable to type 'Record<string, CommandMigration>'.","category":1,"code":2322,"next":[{"messageText":"Index signature for type 'string' is missing in type '{ source: string; target: string; }[]'.","category":1,"code":2329}]},"relatedInformation":[{"file":"../src/migration/types.ts","start":1613,"length":8,"messageText":"The expected type comes from property 'commands' which is declared here on type '{ commands: Record<string, CommandMigration>; configurations: Record<string, ConfigMigration>; templates: Record<string, TemplateMigration>; }'","category":3,"code":6500}]},{"start":17010,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17065,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17123,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17165,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17190,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17286,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17318,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17573,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17606,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17807,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17841,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17953,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":18124,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":18286,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":18374,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":18501,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[696,[{"start":5040,"length":6,"code":2339,"category":1,"messageText":"Property 'prompt' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/inquirer/dist/commonjs/index\")'."},{"start":6585,"length":6,"code":2339,"category":1,"messageText":"Property 'prompt' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/inquirer/dist/commonjs/index\")'."},{"start":11157,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11229,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11284,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11590,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11609,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11628,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11700,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11755,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11810,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11912,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":12001,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[702,[{"start":29700,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ name: string; description: string; type: \"operational\"; widgets: ({ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; al...' is not assignable to parameter of type '{ name: string; description: string; type: \"custom\" | \"security\" | \"operational\" | \"business\" | \"technical\" | \"executive\"; widgets: Omit<DashboardWidget, \"id\">[]; permissions?: Partial<...>; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{ name: string; description: string; type: \"operational\"; widgets: ({ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; al...' is not assignable to type '{ name: string; description: string; type: \"custom\" | \"security\" | \"operational\" | \"business\" | \"technical\" | \"executive\"; widgets: Omit<DashboardWidget, \"id\">[]; permissions?: Partial<...>; }'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'widgets' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '({ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; alerts: { ...; }; } | { ...; })[]' is not assignable to type 'Omit<DashboardWidget, \"id\">[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; alerts: { ...; }; } | { ...; }' is not assignable to type 'Omit<DashboardWidget, \"id\">'.","category":1,"code":2322,"next":[{"messageText":"Type '{ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; alerts: { ...; }; }' is not assignable to type 'Omit<DashboardWidget, \"id\">'.","category":1,"code":2322,"next":[{"messageText":"The types of 'visualization.chartType' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '\"gauge\"' is not assignable to type '\"line\" | \"bar\" | \"pie\" | \"scatter\" | \"heatmap\" | \"area\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '{ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; alerts: { ...; }; }' is not assignable to type 'Omit<DashboardWidget, \"id\">'."}}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '{ name: string; description: string; type: \"operational\"; widgets: ({ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; al...' is not assignable to type '{ name: string; description: string; type: \"custom\" | \"security\" | \"operational\" | \"business\" | \"technical\" | \"executive\"; widgets: Omit<DashboardWidget, \"id\">[]; permissions?: Partial<...>; }'."}}]}]}]}}]],[719,[{"start":4363,"length":10,"messageText":"Block-scoped variable '__filename' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":4253,"length":10,"messageText":"'__filename' is declared here.","category":3,"code":2728}]},{"start":4377,"length":9,"messageText":"Block-scoped variable '__dirname' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":4411,"length":9,"messageText":"'__dirname' is declared here.","category":3,"code":2728}]}]],[722,[{"start":1721,"length":20,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[726,[{"start":197,"length":22,"messageText":"'\"../constants/agent-types.js\"' has no exported member named 'getAvailableAgentTypes'. Did you mean 'getValidAgentTypes'?","category":1,"code":2724,"relatedInformation":[{"file":"../src/constants/agent-types.ts","start":624,"length":18,"messageText":"'getValidAgentTypes' is declared here.","category":3,"code":2728}]}]],[728,[{"start":845,"length":19,"code":2430,"category":1,"messageText":{"messageText":"Interface 'RuvSwarmToolContext' incorrectly extends interface 'MCPContext'.","category":1,"code":2430,"next":[{"messageText":"Property 'sessionId' is optional in type 'RuvSwarmToolContext' but required in type 'MCPContext'.","category":1,"code":2327}]}},{"start":17357,"length":7,"code":2741,"category":1,"messageText":"Property 'logger' is missing in type '{ workingDirectory: string; sessionId: string; }' but required in type 'RuvSwarmToolContext'.","relatedInformation":[{"file":"../src/utils/types.ts","start":13203,"length":6,"messageText":"'logger' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ workingDirectory: string; sessionId: string; }' is not assignable to type 'RuvSwarmToolContext'."}}]],[729,[{"start":15327,"length":15,"messageText":"Type 'Promise<MCPTool[]>' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488,"relatedInformation":[{"start":15327,"length":15,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]},{"start":15893,"length":6,"code":2339,"category":1,"messageText":"Property 'length' does not exist on type 'Promise<MCPTool[]>'.","relatedInformation":[{"start":15893,"length":6,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]},{"start":18508,"length":15,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'RuvSwarmToolContext' is not assignable to parameter of type 'MCPContext'.","category":1,"code":2345,"next":[{"messageText":"Property 'sessionId' is optional in type 'RuvSwarmToolContext' but required in type 'MCPContext'.","category":1,"code":2327}]}}]],[730,[{"start":57,"length":6,"messageText":"Module '\"../utils/types.js\"' has no exported member 'Config'.","category":1,"code":2305},{"start":24830,"length":24,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."},{"start":25457,"length":24,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."},{"start":25686,"length":20,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[939,[{"start":8764,"length":4,"code":2339,"category":1,"messageText":"Property '_raw' does not exist on type 'object'."},{"start":8814,"length":4,"code":2339,"category":1,"messageText":"Property '_raw' does not exist on type 'object'."}]],[942,[{"start":7893,"length":4,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'MessageType'.","relatedInformation":[{"file":"../src/hive-mind/types.ts","start":4323,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'Message'","category":3,"code":6500}]},{"start":15769,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'AgentCapability'."}]],[943,[{"start":6451,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'AgentCapability'."},{"start":7348,"length":8,"code":2740,"category":1,"messageText":"Type '{ researcher: number; analyst: number; specialist: number; coder: number; coordinator: number; architect: number; tester: number; reviewer: number; optimizer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ researcher: number; analyst: number; specialist: number; coder: number; coordinator: number; architect: number; tester: number; reviewer: number; optimizer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":7611,"length":11,"code":2740,"category":1,"messageText":"Type '{ coder: number; architect: number; tester: number; reviewer: number; coordinator: number; specialist: number; researcher: number; analyst: number; optimizer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ coder: number; architect: number; tester: number; reviewer: number; coordinator: number; specialist: number; researcher: number; analyst: number; optimizer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":7877,"length":8,"code":2740,"category":1,"messageText":"Type '{ analyst: number; researcher: number; specialist: number; reviewer: number; coordinator: number; architect: number; coder: number; tester: number; optimizer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ analyst: number; researcher: number; specialist: number; reviewer: number; coordinator: number; architect: number; coder: number; tester: number; optimizer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":8140,"length":7,"code":2740,"category":1,"messageText":"Type '{ tester: number; reviewer: number; analyst: number; coder: number; coordinator: number; specialist: number; researcher: number; architect: number; optimizer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ tester: number; reviewer: number; analyst: number; coder: number; coordinator: number; specialist: number; researcher: number; architect: number; optimizer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":8402,"length":12,"code":2740,"category":1,"messageText":"Type '{ optimizer: number; analyst: number; coder: number; architect: number; coordinator: number; specialist: number; researcher: number; tester: number; reviewer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ optimizer: number; analyst: number; coder: number; architect: number; coordinator: number; specialist: number; researcher: number; tester: number; reviewer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":16656,"length":7,"code":2740,"category":1,"messageText":"Type '{ coordinator: string; researcher: string; coder: string; analyst: string; architect: string; tester: string; reviewer: string; optimizer: string; documenter: string; monitor: string; specialist: string; }' is missing the following properties from type 'Record<AgentType, string>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ coordinator: string; researcher: string; coder: string; analyst: string; architect: string; tester: string; reviewer: string; optimizer: string; documenter: string; monitor: string; specialist: string; }' is not assignable to type 'Record<AgentType, string>'."}},{"start":17208,"length":17,"code":2740,"category":1,"messageText":"Type '{ coordinator: string[]; researcher: string[]; coder: string[]; analyst: string[]; architect: string[]; tester: string[]; reviewer: string[]; optimizer: string[]; documenter: string[]; monitor: string[]; specialist: string[]; }' is missing the following properties from type 'Record<AgentType, string[]>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ coordinator: string[]; researcher: string[]; coder: string[]; analyst: string[]; architect: string[]; tester: string[]; reviewer: string[]; optimizer: string[]; documenter: string[]; monitor: string[]; specialist: string[]; }' is not assignable to type 'Record<AgentType, string[]>'."}},{"start":20414,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'unknown'."}]],[944,[{"start":32744,"length":4,"code":2339,"category":1,"messageText":"Property 'size' does not exist on type 'HighPerformanceCache<any>'."},{"start":34656,"length":10,"messageText":"Type 'HighPerformanceCache<any>' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"start":35035,"length":4,"code":2339,"category":1,"messageText":"Property 'size' does not exist on type 'HighPerformanceCache<any>'."},{"start":35145,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'HighPerformanceCache<any>'."},{"start":35342,"length":10,"messageText":"Type 'unknown' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488}]],[945,[{"start":1082,"length":14,"code":2740,"category":1,"messageText":"Type '{}' is missing the following properties from type 'Record<MessageType, number>': coordination, direct, broadcast, query, and 6 more.","relatedInformation":[{"file":"../src/hive-mind/types.ts","start":4708,"length":14,"messageText":"The expected type comes from property 'messagesByType' which is declared here on type 'CommunicationStats'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type 'Record<MessageType, number>'."}}]],[946,[{"start":3909,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type '{ taskId: string; plan: ExecutionPlan; startTime: number; currentPhase: number; phaseResults: any[]; status: string; }'."},{"start":14826,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'AgentCapability'."},{"start":20033,"length":2,"messageText":"Property 'id' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":20400,"length":2,"messageText":"Property 'id' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":22316,"length":2,"messageText":"Property 'id' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":22725,"length":2,"messageText":"Property 'id' is private and only accessible within class 'HiveMind'.","category":1,"code":2341}]],[947,[{"start":2727,"length":20,"code":2551,"category":1,"messageText":"Property 'getConsensusProposal' does not exist on type 'DatabaseManager'. Did you mean 'createConsensusProposal'?","relatedInformation":[{"file":"../src/hive-mind/core/DatabaseManager.ts","start":16716,"length":23,"messageText":"'createConsensusProposal' is declared here.","category":3,"code":2728}]},{"start":9481,"length":21,"code":2339,"category":1,"messageText":"Property 'updateConsensusStatus' does not exist on type 'DatabaseManager'."},{"start":10221,"length":21,"code":2339,"category":1,"messageText":"Property 'updateConsensusStatus' does not exist on type 'DatabaseManager'."},{"start":14290,"length":27,"code":2551,"category":1,"messageText":"Property 'getRecentConsensusProposals' does not exist on type 'DatabaseManager'. Did you mean 'createConsensusProposal'?","relatedInformation":[{"file":"../src/hive-mind/core/DatabaseManager.ts","start":16716,"length":23,"messageText":"'createConsensusProposal' is declared here.","category":3,"code":2728}]},{"start":15372,"length":7,"code":2339,"category":1,"messageText":"Property 'prepare' does not exist on type 'DatabaseManager'."},{"start":15536,"length":7,"code":2339,"category":1,"messageText":"Property 'prepare' does not exist on type 'DatabaseManager'."},{"start":15751,"length":7,"code":2339,"category":1,"messageText":"Property 'prepare' does not exist on type 'DatabaseManager'."}]],[948,[{"start":5849,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type 'string[]' is not assignable to type 'AgentCapability[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type 'AgentCapability'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/hive-mind/types.ts","start":2220,"length":12,"messageText":"The expected type comes from property 'capabilities' which is declared here on type 'AgentConfig'","category":3,"code":6500}]},{"start":9161,"length":6,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"healthy\" | \"degraded\" | \"critical\" | \"unknown\"'.","relatedInformation":[{"file":"../src/hive-mind/types.ts","start":7949,"length":6,"messageText":"The expected type comes from property 'health' which is declared here on type 'SwarmStatus'","category":3,"code":6500}]},{"start":14452,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'AgentCapability'."}]],[950,[{"start":771,"length":18,"code":2322,"category":1,"messageText":"Type '\"system-architect\"' is not assignable to type 'AgentType'."},{"start":811,"length":14,"code":2820,"category":1,"messageText":"Type '\"task-planner\"' is not assignable to type 'AgentType'. Did you mean '\"task_planner\"'?"},{"start":855,"length":11,"code":2322,"category":1,"messageText":"Type '\"developer\"' is not assignable to type 'AgentType'."},{"start":2255,"length":16,"code":2322,"category":1,"messageText":"Type '\"implementation\"' is not assignable to type 'AgentCapability'."},{"start":2409,"length":9,"code":2322,"category":1,"messageText":"Type '\"testing\"' is not assignable to type 'AgentCapability'."}]],[953,[{"start":7876,"length":9,"code":2339,"category":1,"messageText":"Property 'memoryTTL' does not exist on type '{ name: any; topology: any; queenMode: any; maxAgents: any; consensusThreshold: any; autoSpawn: any; }'."},{"start":8017,"length":15,"code":2339,"category":1,"messageText":"Property 'enabledFeatures' does not exist on type '{ name: any; topology: any; queenMode: any; maxAgents: any; consensusThreshold: any; autoSpawn: any; }'."}]],[957,[{"start":4099,"length":16,"messageText":"Operator '>' cannot be applied to types 'Promise<number>' and 'number'.","category":1,"code":2365,"relatedInformation":[{"start":4099,"length":16,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]}]],[960,[{"start":824,"length":6,"code":2339,"category":1,"messageText":"Property 'filter' does not exist on type 'Promise<any>'."},{"start":1132,"length":16,"messageText":"Operator '>' cannot be applied to types 'Promise<number>' and 'number'.","category":1,"code":2365,"relatedInformation":[{"start":1132,"length":16,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]}]],[962,[{"start":932,"length":48,"messageText":"Cannot find module '../simple-commands/init/templates/claude-md.js' or its corresponding type declarations.","category":1,"code":2307},{"start":2932,"length":12,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'defaultValue' does not exist in type 'Option'."},{"start":3109,"length":30,"messageText":"Cannot find module '../../scripts/init-neural.js' or its corresponding type declarations.","category":1,"code":2307},{"start":3862,"length":12,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'defaultValue' does not exist in type 'Option'."},{"start":4022,"length":28,"messageText":"Cannot find module '../../scripts/init-goal.js' or its corresponding type declarations.","category":1,"code":2307}]],[1087,[{"start":5905,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":6056,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":6400,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":7283,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":7438,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":7993,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."}]],[1163,[{"start":81,"length":3,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ajv/dist/ajv\")' has no construct signatures.","category":1,"code":2761}]}},{"start":123,"length":10,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ajv-formats/dist/index\")' has no call signatures.","category":1,"code":2757}]}}]],[1168,[{"start":157,"length":13,"messageText":"Duplicate identifier 'WorkflowPhase'.","category":1,"code":2300},{"start":1053,"length":13,"messageText":"Duplicate identifier 'WorkflowPhase'.","category":1,"code":2300}]],[1169,[{"start":4051,"length":45,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":4226,"length":45,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":6977,"length":36,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":7090,"length":36,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":8585,"length":42,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":8704,"length":42,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":10953,"length":33,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":12543,"length":32,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":12652,"length":32,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":14740,"length":18,"messageText":"Type 'WorkflowPhase' cannot be used as an index type.","category":1,"code":2538},{"start":15742,"length":6,"messageText":"Property 'memory' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":15967,"length":13,"messageText":"Property 'communication' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":15981,"length":9,"messageText":"Expected 3-4 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/hive-mind/core/Communication.ts","start":3109,"length":17,"messageText":"An argument for 'type' was not provided.","category":3,"code":6210}]},{"start":16545,"length":6,"messageText":"Property 'memory' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":16559,"length":12,"code":2559,"category":1,"messageText":"Type '\"steering/*\"' has no properties in common with type 'MemorySearchOptions'."},{"start":16668,"length":6,"messageText":"Property 'memory' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":16684,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'MemoryEntry' is not assignable to parameter of type 'string'."},{"start":17625,"length":6,"messageText":"Property 'memory' is private and only accessible within class 'HiveMind'.","category":1,"code":2341}]],[1171,[{"start":14720,"length":29,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Not all constituents of type 'string | ((message: string, meta?: unknown) => void) | ((message: string, meta?: unknown) => void) | ((message: string, meta?: unknown) => void) | ((message: string, error?: unknown) => void) | ((config: LoggingConfig) => Promise<...>) | (() => Promise<...>) | ((context: Record<...>) => Logger)' are callable.","category":1,"code":2756,"next":[{"messageText":"Type 'string' has no call signatures.","category":1,"code":2757}]}]}}]],[1172,[{"start":3115,"length":9,"messageText":"Cannot find name 'operation'.","category":1,"code":2304}]],[1176,[{"start":20990,"length":9,"code":2339,"category":1,"messageText":"Property 'recurring' does not exist on type '{ step: any; provider: any; errorMessage: string; }'."},{"start":21028,"length":11,"code":2339,"category":1,"messageText":"Property 'occurrences' does not exist on type '{ step: any; provider: any; errorMessage: string; }'."}]],[1178,[{"start":642,"length":6,"messageText":"Module '\"../utils/types.js\"' has no exported member 'Config'.","category":1,"code":2305}]],[1193,[{"start":6199,"length":22,"code":2322,"category":1,"messageText":"Type '\"requirements_analyst\"' is not assignable to type 'AgentType'."},{"start":6229,"length":18,"code":2820,"category":1,"messageText":"Type '\"design_architect\"' is not assignable to type 'AgentType'. Did you mean '\"design-architect\"'?"},{"start":6255,"length":14,"code":2820,"category":1,"messageText":"Type '\"task_planner\"' is not assignable to type 'AgentType'. Did you mean '\"task-planner\"'?"},{"start":6277,"length":22,"code":2322,"category":1,"messageText":"Type '\"implementation_coder\"' is not assignable to type 'AgentType'."},{"start":6307,"length":18,"code":2322,"category":1,"messageText":"Type '\"quality_reviewer\"' is not assignable to type 'AgentType'."},{"start":6333,"length":21,"code":2322,"category":1,"messageText":"Type '\"steering_documenter\"' is not assignable to type 'AgentType'."},{"start":7354,"length":20,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'requirements_analyst' does not exist in type 'Record<AgentType, string>'."}]],[1197,[{"start":1494,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":3299,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":6368,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":6463,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."}]],[1199,[{"start":3756,"length":21,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'RuvSwarmConfig' is not assignable to parameter of type 'Record<string, unknown>'.","category":1,"code":2345,"next":[{"messageText":"Index signature for type 'string' is missing in type 'RuvSwarmConfig'.","category":1,"code":2329}]}},{"start":3944,"length":6,"code":2740,"category":1,"messageText":"Type 'Record<string, unknown>' is missing the following properties from type 'RuvSwarmConfig': swarm, agents, tasks, memory, and 3 more.","canonicalHead":{"code":2322,"messageText":"Type 'Record<string, unknown>' is not assignable to type 'RuvSwarmConfig'."}},{"start":5213,"length":11,"code":2740,"category":1,"messageText":"Type 'Record<string, unknown>' is missing the following properties from type 'RuvSwarmConfig': swarm, agents, tasks, memory, and 3 more.","canonicalHead":{"code":2322,"messageText":"Type 'Record<string, unknown>' is not assignable to type 'RuvSwarmConfig'."}},{"start":5237,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'RuvSwarmConfig' is not assignable to parameter of type 'Record<string, unknown>'.","category":1,"code":2345,"next":[{"messageText":"Index signature for type 'string' is missing in type 'RuvSwarmConfig'.","category":1,"code":2329}]}}]],[1200,[{"start":6609,"length":6,"messageText":"Cannot find name 'logger'.","category":1,"code":2304}]],[1202,[{"start":169,"length":28,"messageText":"Cannot find module '../../monitoring/logger.js' or its corresponding type declarations.","category":1,"code":2307}]],[1207,[{"start":169,"length":28,"messageText":"Cannot find module '../../monitoring/logger.js' or its corresponding type declarations.","category":1,"code":2307}]],[1210,[{"start":14754,"length":34,"code":2551,"category":1,"messageText":"Property 'calculateAveragePauseResumeLatency' does not exist on type 'TransparencySystem'. Did you mean 'calculateAveragePauseResumeLatencyMs'?","relatedInformation":[{"start":25478,"length":36,"messageText":"'calculateAveragePauseResumeLatencyMs' is declared here.","category":3,"code":2728}]},{"start":19453,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'active' does not exist in type 'Record<AgentState, string>'."}]],[1211,[{"start":304,"length":23,"messageText":"Cannot find module 'console-table-printer' or its corresponding type declarations.","category":1,"code":2307},{"start":1937,"length":5,"messageText":"Cannot find namespace 'chalk'.","category":1,"code":2503},{"start":1996,"length":5,"messageText":"Cannot find namespace 'chalk'.","category":1,"code":2503},{"start":12423,"length":5,"messageText":"Cannot find namespace 'chalk'.","category":1,"code":2503},{"start":12482,"length":5,"messageText":"Cannot find namespace 'chalk'.","category":1,"code":2503},{"start":17671,"length":6,"code":2339,"category":1,"messageText":"Property 'number' does not exist on type 'TransparencyOptions'."}]],[1222,[{"start":303,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":550,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":603,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":795,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":880,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":1023,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":1312,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304},{"start":1495,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304},{"start":1963,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304},{"start":2298,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304},{"start":2617,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304}]],[1223,[{"start":260,"length":23,"messageText":"Module '\"../../verification/index.js\"' has no exported member 'verificationHookManager'. Did you mean to use 'import verificationHookManager from \"../../verification/index.js\"' instead?","category":1,"code":2614},{"start":287,"length":23,"messageText":"Module '\"../../verification/index.js\"' has no exported member 'VerificationCLICommands'. Did you mean to use 'import VerificationCLICommands from \"../../verification/index.js\"' instead?","category":1,"code":2614},{"start":314,"length":25,"messageText":"Module '\"../../verification/index.js\"' has no exported member 'createVerificationCommand'. Did you mean to use 'import createVerificationCommand from \"../../verification/index.js\"' instead?","category":1,"code":2614},{"start":343,"length":26,"messageText":"Module '\"../../verification/index.js\"' has no exported member 'executeVerificationFromCLI'. Did you mean to use 'import executeVerificationFromCLI from \"../../verification/index.js\"' instead?","category":1,"code":2614}]],[1224,[{"start":9435,"length":11,"code":2339,"category":1,"messageText":"Property 'healthCheck' does not exist on type 'DatabaseManager'."},{"start":19526,"length":11,"code":2339,"category":1,"messageText":"Property 'healthCheck' does not exist on type 'DatabaseManager'."}]],[1231,[{"start":8248,"length":11,"code":2339,"category":1,"messageText":"Property 'description' does not exist on type 'CommandRoute'."}]],[1234,[{"start":3087,"length":21,"messageText":"Cannot find name 'createConsolidatedCLI'.","category":1,"code":2304}]],[1249,[{"start":11365,"length":2,"code":2416,"category":1,"messageText":{"messageText":"Property 'on' in type 'EnhancedEventBus' is not assignable to the same property in base type 'EventEmitter<DefaultEventMap>'.","category":1,"code":2416,"next":[{"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'this'.","category":1,"code":2322,"next":[{"messageText":"'this' could be instantiated with an arbitrary type which could be unrelated to 'void'.","category":1,"code":5082}],"canonicalHead":{"code":2322,"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'."}}]}]}},{"start":11854,"length":3,"code":2416,"category":1,"messageText":{"messageText":"Property 'off' in type 'EnhancedEventBus' is not assignable to the same property in base type 'EventEmitter<DefaultEventMap>'.","category":1,"code":2416,"next":[{"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'this'.","category":1,"code":2322,"next":[{"messageText":"'this' could be instantiated with an arbitrary type which could be unrelated to 'void'.","category":1,"code":5082}],"canonicalHead":{"code":2322,"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'."}}]}]}},{"start":12302,"length":4,"code":2416,"category":1,"messageText":{"messageText":"Property 'once' in type 'EnhancedEventBus' is not assignable to the same property in base type 'EventEmitter<DefaultEventMap>'.","category":1,"code":2416,"next":[{"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'this'.","category":1,"code":2322,"next":[{"messageText":"'this' could be instantiated with an arbitrary type which could be unrelated to 'void'.","category":1,"code":5082}],"canonicalHead":{"code":2322,"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'."}}]}]}}]],[1255,[{"start":948,"length":20,"messageText":"'\"./priority-message-queue.js\"' has no exported member named 'PriorityMessageQueue'. Did you mean 'PriorityMessage'?","category":1,"code":2724},{"start":11041,"length":3,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 4, '(iterable?: Iterable<readonly [string, number]>): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type '([string, number] | [string, string])[]' is not assignable to parameter of type 'Iterable<readonly [string, number]>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'IteratorResult<[string, number] | [string, string], any>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, string]>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, string]>' is not assignable to type 'IteratorYieldResult<readonly [string, number]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, number] | [string, string]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, string]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[string, string]' is not assignable to type 'readonly [string, number]'."}}]}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[string, number] | [string, string]>' is not assignable to type '() => Iterator<readonly [string, number], any, any>'."}}]}]}]},{"messageText":"Overload 2 of 4, '(entries?: readonly (readonly [string, number])[]): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322}]}]},"relatedInformation":[]},{"start":16322,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'PriorityMessage'."},{"start":16439,"length":8,"code":2339,"category":1,"messageText":"Property 'deadline' does not exist on type 'PriorityMessage'."},{"start":18888,"length":3,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 4, '(iterable?: Iterable<readonly [string, number]>): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type '([string, number] | [string, string])[]' is not assignable to parameter of type 'Iterable<readonly [string, number]>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'IteratorResult<[string, number] | [string, string], any>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, string]>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, string]>' is not assignable to type 'IteratorYieldResult<readonly [string, number]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, number] | [string, string]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, string]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[string, string]' is not assignable to type 'readonly [string, number]'."}}]}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[string, number] | [string, string]>' is not assignable to type '() => Iterator<readonly [string, number], any, any>'."}}]}]}]},{"messageText":"Overload 2 of 4, '(entries?: readonly (readonly [string, number])[]): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322}]}]},"relatedInformation":[]},{"start":21537,"length":3,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 4, '(iterable?: Iterable<readonly [string, number]>): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type '([string, number] | [string, FailureType])[]' is not assignable to parameter of type 'Iterable<readonly [string, number]>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'IteratorResult<[string, number] | [string, FailureType], any>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, FailureType]>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, FailureType]>' is not assignable to type 'IteratorYieldResult<readonly [string, number]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, number] | [string, FailureType]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, FailureType]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/communication/failure-recovery-system\", { with: { \"resolution-mode\": \"import\" } }).FailureType' is not assignable to type 'number'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[string, FailureType]' is not assignable to type 'readonly [string, number]'."}}]}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[string, number] | [string, FailureType]>' is not assignable to type '() => Iterator<readonly [string, number], any, any>'."}}]}]}]},{"messageText":"Overload 2 of 4, '(entries?: readonly (readonly [string, number])[]): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Type 'import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/communication/failure-recovery-system\", { with: { \"resolution-mode\": \"import\" } }).FailureType' is not assignable to type 'number'.","category":1,"code":2322}]}]},"relatedInformation":[]},{"start":25932,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'PriorityMessage'."},{"start":26060,"length":8,"code":2339,"category":1,"messageText":"Property 'deadline' does not exist on type 'PriorityMessage'."},{"start":26253,"length":4,"code":2339,"category":1,"messageText":"Property 'size' does not exist on type 'PriorityMessage'."},{"start":27186,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'data' does not exist in type 'PriorityMessage'.","relatedInformation":[{"start":2726,"length":15,"messageText":"The expected type comes from property 'originalMessage' which is declared here on type 'FailedMessage'","category":3,"code":6500}]}]],[1256,[{"start":8221,"length":10,"messageText":"Cannot find name 'hasAgentId'.","category":1,"code":2304},{"start":8280,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":8372,"length":10,"messageText":"Cannot find name 'hasAgentId'.","category":1,"code":2304},{"start":8434,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."}]],[1257,[{"start":14779,"length":8,"messageText":"Property 'position' is private and only accessible within class 'UltraFastBinaryEncoder'.","category":1,"code":2341},{"start":14872,"length":8,"messageText":"Property 'position' is private and only accessible within class 'UltraFastBinaryEncoder'.","category":1,"code":2341}]],[1258,[{"start":2536,"length":13,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 2, '(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'Uint32Array<ArrayBufferLike>' is not assignable to parameter of type 'BigInt64Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by 'entries()' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'ArrayIterator<[number, number]>' is not assignable to type 'ArrayIterator<[number, bigint]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[number, number]' is not assignable to type '[number, bigint]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'number' is not assignable to type 'bigint'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[number, number]' is not assignable to type '[number, bigint]'."}}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[number, number]>' is not assignable to type '() => ArrayIterator<[number, bigint]>'."}}]}]}]},{"messageText":"Overload 2 of 2, '(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'Uint32Array<ArrayBufferLike>' is not assignable to parameter of type 'Int32Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types of 'filter(...)[Symbol.toStringTag]' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '\"Uint32Array\"' is not assignable to type '\"Int32Array\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(predicate: (value: number, index: number, array: Uint32Array<ArrayBufferLike>) => any, thisArg?: any) => Uint32Array<ArrayBuffer>' is not assignable to type '(predicate: (value: number, index: number, array: Int32Array<ArrayBufferLike>) => any, thisArg?: any) => Int32Array<ArrayBuffer>'."}}]}]}]}]},"relatedInformation":[]},{"start":3082,"length":13,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 2, '(typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): \"ok\" | \"not-equal\" | \"timed-out\"', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'Uint32Array<ArrayBufferLike>' is not assignable to parameter of type 'BigInt64Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by 'entries()' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'ArrayIterator<[number, number]>' is not assignable to type 'ArrayIterator<[number, bigint]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[number, number]' is not assignable to type '[number, bigint]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'number' is not assignable to type 'bigint'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[number, number]' is not assignable to type '[number, bigint]'."}}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[number, number]>' is not assignable to type '() => ArrayIterator<[number, bigint]>'."}}]}]}]},{"messageText":"Overload 2 of 2, '(typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): \"ok\" | \"not-equal\" | \"timed-out\"', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'Uint32Array<ArrayBufferLike>' is not assignable to parameter of type 'Int32Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types of 'filter(...)[Symbol.toStringTag]' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '\"Uint32Array\"' is not assignable to type '\"Int32Array\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(predicate: (value: number, index: number, array: Uint32Array<ArrayBufferLike>) => any, thisArg?: any) => Uint32Array<ArrayBuffer>' is not assignable to type '(predicate: (value: number, index: number, array: Int32Array<ArrayBufferLike>) => any, thisArg?: any) => Int32Array<ArrayBuffer>'."}}]}]}]}]},"relatedInformation":[]},{"start":10609,"length":13,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 2, '(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'BigUint64Array<ArrayBufferLike>' is not assignable to parameter of type 'BigInt64Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types of 'filter(...)[Symbol.toStringTag]' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '\"BigUint64Array\"' is not assignable to type '\"BigInt64Array\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(predicate: (value: bigint, index: number, array: BigUint64Array<ArrayBufferLike>) => any, thisArg?: any) => BigUint64Array<ArrayBuffer>' is not assignable to type '(predicate: (value: bigint, index: number, array: BigInt64Array<ArrayBufferLike>) => any, thisArg?: any) => BigInt64Array<ArrayBuffer>'."}}]}]}]},{"messageText":"Overload 2 of 2, '(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'BigUint64Array<ArrayBufferLike>' is not assignable to parameter of type 'Int32Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'every' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(predicate: (value: bigint, index: number, array: BigUint64Array<ArrayBufferLike>) => boolean, thisArg?: any) => boolean' is not assignable to type '(predicate: (value: number, index: number, array: Int32Array<ArrayBufferLike>) => unknown, thisArg?: any) => boolean'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'predicate' and 'predicate' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Types of parameters 'value' and 'value' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'bigint' is not assignable to type 'number'.","category":1,"code":2322}]}]}]}]}]}]}]},"relatedInformation":[]}]],[1261,[{"start":32,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './shared-buffer-bus.js'?","category":1,"code":2835},{"start":88,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './websocket-cluster.js'?","category":1,"code":2835},{"start":151,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[1262,[{"start":62,"length":16,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/logger.js'?","category":1,"code":2835},{"start":107,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/helpers.js'?","category":1,"code":2835},{"start":282,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835}]],[1265,[{"start":197,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './shared-buffer-bus.js'?","category":1,"code":2835}]],[1266,[{"start":75,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './AgentHierarchyTree.js'?","category":1,"code":2835},{"start":131,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './AgentHierarchyTree.js'?","category":1,"code":2835},{"start":192,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './PerformanceCharts.js'?","category":1,"code":2835},{"start":278,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './PerformanceCharts.js'?","category":1,"code":2835},{"start":335,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './ResourceGauges.js'?","category":1,"code":2835},{"start":425,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './ResourceGauges.js'?","category":1,"code":2835},{"start":478,"length":17,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './EventTimeline.js'?","category":1,"code":2835},{"start":533,"length":17,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './EventTimeline.js'?","category":1,"code":2835},{"start":592,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './AgentNetworkTopology.js'?","category":1,"code":2835},{"start":681,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './AgentNetworkTopology.js'?","category":1,"code":2835},{"start":736,"length":13,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './Dashboard.js'?","category":1,"code":2835},{"start":803,"length":13,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './Dashboard.js'?","category":1,"code":2835}]],[1267,[{"start":367,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './config-manager.js'?","category":1,"code":2835},{"start":6924,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":7132,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | number | symbol' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":950,"length":7,"messageText":"The expected type comes from property 'feature' which is declared here on type 'ConsentDialogOptions'","category":3,"code":6500}]},{"start":7164,"length":7,"messageText":"Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'.","category":1,"code":2731},{"start":7433,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | number | symbol' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":423,"length":7,"messageText":"The expected type comes from property 'feature' which is declared here on type 'ConsentRecord'","category":3,"code":6500}]},{"start":7734,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":10150,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":10406,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":10466,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | number | symbol' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":423,"length":7,"messageText":"The expected type comes from property 'feature' which is declared here on type 'ConsentRecord'","category":3,"code":6500}]},{"start":10768,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1272,[{"start":655,"length":6,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":665,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":684,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":700,"length":19,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":723,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1146,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1162,"length":11,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1322,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1341,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1484,"length":16,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1504,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1523,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1725,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1742,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1759,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1775,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":4052,"length":15,"messageText":"Cannot find name 'ExperienceLevel'.","category":1,"code":2304},{"start":4094,"length":13,"messageText":"Cannot find name 'ConfigManager'.","category":1,"code":2304},{"start":4122,"length":19,"messageText":"Cannot find name 'AutoDetectionResult'.","category":1,"code":2304},{"start":4216,"length":13,"messageText":"Cannot find name 'ConfigManager'.","category":1,"code":2304},{"start":4614,"length":15,"messageText":"Cannot find name 'ExperienceLevel'.","category":1,"code":2304},{"start":4643,"length":12,"messageText":"Cannot find name 'FeatureFlags'.","category":1,"code":2304},{"start":4832,"length":13,"messageText":"Cannot find name 'ConfigManager'.","category":1,"code":2304},{"start":4915,"length":14,"messageText":"Cannot find name 'validateConfig'.","category":1,"code":2304}]],[1273,[{"start":344,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './config-manager.js'?","category":1,"code":2835}]],[1275,[{"start":12944,"length":6,"code":2739,"category":1,"messageText":"Type '{ environment: \"development\"; cluster: false; }' is missing the following properties from type 'ServerConfig': host, port","relatedInformation":[{"start":2646,"length":6,"messageText":"The expected type comes from property 'server' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ environment: \"development\"; cluster: false; }' is not assignable to type 'ServerConfig'."}},{"start":13013,"length":7,"code":2741,"category":1,"messageText":"Property 'format' is missing in type '{ level: \"debug\"; outputs: \"console\"[]; }' but required in type 'WebPortalLoggingConfig'.","relatedInformation":[{"start":2160,"length":6,"messageText":"'format' is declared here.","category":3,"code":2728},{"start":2822,"length":7,"messageText":"The expected type comes from property 'logging' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ level: \"debug\"; outputs: \"console\"[]; }' is not assignable to type 'WebPortalLoggingConfig'."}},{"start":13093,"length":7,"code":2739,"category":1,"messageText":"Type '{ secure: false; }' is missing the following properties from type '{ secret: string; maxAge: number; secure: boolean; httpOnly: boolean; }': secret, maxAge, httpOnly","relatedInformation":[{"start":1608,"length":7,"messageText":"The expected type comes from property 'session' which is declared here on type 'SecurityConfig'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ secure: false; }' is not assignable to type '{ secret: string; maxAge: number; secure: boolean; httpOnly: boolean; }'."}},{"start":13203,"length":6,"code":2739,"category":1,"messageText":"Type '{ environment: \"production\"; cluster: true; }' is missing the following properties from type 'ServerConfig': host, port","relatedInformation":[{"start":2646,"length":6,"messageText":"The expected type comes from property 'server' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ environment: \"production\"; cluster: true; }' is not assignable to type 'ServerConfig'."}},{"start":13270,"length":7,"code":2741,"category":1,"messageText":"Property 'format' is missing in type '{ level: \"warn\"; outputs: \"file\"[]; }' but required in type 'WebPortalLoggingConfig'.","relatedInformation":[{"start":2160,"length":6,"messageText":"'format' is declared here.","category":3,"code":2728},{"start":2822,"length":7,"messageText":"The expected type comes from property 'logging' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ level: \"warn\"; outputs: \"file\"[]; }' is not assignable to type 'WebPortalLoggingConfig'."}},{"start":13346,"length":7,"code":2739,"category":1,"messageText":"Type '{ secure: true; }' is missing the following properties from type '{ secret: string; maxAge: number; secure: boolean; httpOnly: boolean; }': secret, maxAge, httpOnly","relatedInformation":[{"start":1608,"length":7,"messageText":"The expected type comes from property 'session' which is declared here on type 'SecurityConfig'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ secure: true; }' is not assignable to type '{ secret: string; maxAge: number; secure: boolean; httpOnly: boolean; }'."}},{"start":13391,"length":4,"code":2739,"category":1,"messageText":"Type '{ allowedOrigins: undefined[]; }' is missing the following properties from type 'CorsConfig': enabled, allowedMethods, allowedHeaders, credentials, maxAge","relatedInformation":[{"start":2802,"length":4,"messageText":"The expected type comes from property 'cors' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ allowedOrigins: undefined[]; }' is not assignable to type 'CorsConfig'."}},{"start":13521,"length":6,"code":2739,"category":1,"messageText":"Type '{ environment: \"test\"; port: number; }' is missing the following properties from type 'ServerConfig': host, cluster","relatedInformation":[{"start":2646,"length":6,"messageText":"The expected type comes from property 'server' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ environment: \"test\"; port: number; }' is not assignable to type 'ServerConfig'."}},{"start":13595,"length":8,"code":2741,"category":1,"messageText":"Property 'type' is missing in type '{ connection: { filename: string; }; }' but required in type 'DatabaseConfig'.","relatedInformation":[{"start":932,"length":4,"messageText":"'type' is declared here.","category":3,"code":2728},{"start":2718,"length":8,"messageText":"The expected type comes from property 'database' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ connection: { filename: string; }; }' is not assignable to type 'DatabaseConfig'."}},{"start":13697,"length":7,"code":2741,"category":1,"messageText":"Property 'format' is missing in type '{ level: \"error\"; outputs: \"console\"[]; }' but required in type 'WebPortalLoggingConfig'.","relatedInformation":[{"start":2160,"length":6,"messageText":"'format' is declared here.","category":3,"code":2728},{"start":2822,"length":7,"messageText":"The expected type comes from property 'logging' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ level: \"error\"; outputs: \"console\"[]; }' is not assignable to type 'WebPortalLoggingConfig'."}}]],[1276,[{"start":3543,"length":16,"messageText":"Cannot redeclare exported variable 'interactiveSetup'.","category":1,"code":2323},{"start":9820,"length":13,"messageText":"Cannot redeclare exported variable 'validateSetup'.","category":1,"code":2323},{"start":11131,"length":17,"messageText":"Cannot redeclare exported variable 'resetToZeroConfig'.","category":1,"code":2323},{"start":11740,"length":16,"messageText":"Cannot redeclare exported variable 'interactiveSetup'.","category":1,"code":2323},{"start":11740,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'interactiveSetup'.","category":1,"code":2484},{"start":11758,"length":13,"messageText":"Cannot redeclare exported variable 'validateSetup'.","category":1,"code":2323},{"start":11758,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'validateSetup'.","category":1,"code":2484},{"start":11773,"length":17,"messageText":"Cannot redeclare exported variable 'resetToZeroConfig'.","category":1,"code":2323},{"start":11773,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'resetToZeroConfig'.","category":1,"code":2484}]],[1277,[{"start":3741,"length":16,"code":2339,"category":1,"messageText":"Property 'estimateTeamSize' does not exist on type 'ProjectDetectionEngine'."},{"start":3796,"length":16,"code":2339,"category":1,"messageText":"Property 'identifyPatterns' does not exist on type 'ProjectDetectionEngine'."},{"start":5768,"length":27,"code":2339,"category":1,"messageText":"Property 'calculateEnsembleConfidence' does not exist on type 'ProjectDetectionEngine'."},{"start":5860,"length":17,"code":2339,"category":1,"messageText":"Property 'generateReasoning' does not exist on type 'ProjectDetectionEngine'."},{"start":9200,"length":18,"code":2339,"category":1,"messageText":"Property 'analyzePackageJson' does not exist on type 'ProjectDetectionEngine'."},{"start":9295,"length":22,"code":2339,"category":1,"messageText":"Property 'analyzeRequirementsTxt' does not exist on type 'ProjectDetectionEngine'."},{"start":9388,"length":16,"code":2339,"category":1,"messageText":"Property 'analyzeCargoToml' does not exist on type 'ProjectDetectionEngine'."},{"start":10067,"length":14,"code":2339,"category":1,"messageText":"Property 'getSourceFiles' does not exist on type 'ProjectDetectionEngine'."},{"start":11174,"length":14,"code":2339,"category":1,"messageText":"Property 'getSourceFiles' does not exist on type 'ProjectDetectionEngine'."},{"start":11277,"length":18,"code":2551,"category":1,"messageText":"Property 'detectRestPatterns' does not exist on type 'ProjectDetectionEngine'. Did you mean 'detectApiPatterns'?","relatedInformation":[{"start":11023,"length":17,"messageText":"'detectApiPatterns' is declared here.","category":3,"code":2728}]},{"start":11437,"length":21,"code":2551,"category":1,"messageText":"Property 'detectGraphQLPatterns' does not exist on type 'ProjectDetectionEngine'. Did you mean 'detectApiPatterns'?","relatedInformation":[{"start":11023,"length":17,"messageText":"'detectApiPatterns' is declared here.","category":3,"code":2728}]},{"start":11603,"length":23,"code":2339,"category":1,"messageText":"Property 'detectWebSocketPatterns' does not exist on type 'ProjectDetectionEngine'."},{"start":12977,"length":13,"code":2339,"category":1,"messageText":"Property 'getConfigType' does not exist on type 'ProjectDetectionEngine'."},{"start":14293,"length":15,"code":2339,"category":1,"messageText":"Property 'readPackageJson' does not exist on type 'ProjectDetectionEngine'."},{"start":15659,"length":16,"code":2339,"category":1,"messageText":"Property 'getGitBranchInfo' does not exist on type 'ProjectDetectionEngine'."},{"start":15703,"length":16,"code":2339,"category":1,"messageText":"Property 'getGitCommitInfo' does not exist on type 'ProjectDetectionEngine'."},{"start":15747,"length":18,"code":2339,"category":1,"messageText":"Property 'getGitLanguageInfo' does not exist on type 'ProjectDetectionEngine'."},{"start":16898,"length":26,"code":2339,"category":1,"messageText":"Property 'assessDocumentationQuality' does not exist on type 'ProjectDetectionEngine'."},{"start":17038,"length":30,"code":2339,"category":1,"messageText":"Property 'calculateDocumentationCoverage' does not exist on type 'ProjectDetectionEngine'."},{"start":17733,"length":17,"code":2339,"category":1,"messageText":"Property 'evaluateIndicator' does not exist on type 'ProjectDetectionEngine'."}]],[1278,[{"start":6011,"length":15,"code":2551,"category":1,"messageText":"Property 'createCliBranch' does not exist on type 'DecisionTreeGenerator'. Did you mean 'createApiBranch'?","relatedInformation":[{"start":8278,"length":15,"messageText":"'createApiBranch' is declared here.","category":3,"code":2728}]},{"start":6170,"length":19,"code":2339,"category":1,"messageText":"Property 'createLibraryBranch' does not exist on type 'DecisionTreeGenerator'."},{"start":6331,"length":18,"code":2551,"category":1,"messageText":"Property 'createMobileBranch' does not exist on type 'DecisionTreeGenerator'. Did you mean 'createApiBranch'?","relatedInformation":[{"start":8278,"length":15,"messageText":"'createApiBranch' is declared here.","category":3,"code":2728}]},{"start":6531,"length":23,"code":2339,"category":1,"messageText":"Property 'createDataScienceBranch' does not exist on type 'DecisionTreeGenerator'."},{"start":6668,"length":19,"code":2339,"category":1,"messageText":"Property 'createGenericBranch' does not exist on type 'DecisionTreeGenerator'."},{"start":7325,"length":19,"code":2339,"category":1,"messageText":"Property 'createFrameworkNode' does not exist on type 'DecisionTreeGenerator'."},{"start":8740,"length":17,"code":2339,"category":1,"messageText":"Property 'createApiTypeNode' does not exist on type 'DecisionTreeGenerator'."},{"start":8904,"length":18,"code":2339,"category":1,"messageText":"Property 'createDatabaseNode' does not exist on type 'DecisionTreeGenerator'."},{"start":9070,"length":24,"code":2339,"category":1,"messageText":"Property 'createAuthenticationNode' does not exist on type 'DecisionTreeGenerator'."}]],[1279,[{"start":13571,"length":13,"messageText":"Cannot find module '@iarna/toml' or its corresponding type declarations.","category":1,"code":2307},{"start":14111,"length":13,"messageText":"Cannot find module '@iarna/toml' or its corresponding type declarations.","category":1,"code":2307}]],[1280,[{"start":4900,"length":14,"code":2339,"category":1,"messageText":"Property 'getActiveHints' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":4941,"length":19,"code":2339,"category":1,"messageText":"Property 'getActiveAnimations' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":5034,"length":24,"code":2339,"category":1,"messageText":"Property 'getAccessibilitySettings' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":6003,"length":24,"code":2339,"category":1,"messageText":"Property 'showLevelTransitionHints' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":6417,"length":20,"code":2339,"category":1,"messageText":"Property 'animateSectionToggle' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":6652,"length":16,"code":2339,"category":1,"messageText":"Property 'showSectionHints' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":7581,"length":18,"code":2339,"category":1,"messageText":"Property 'animateValueChange' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":7684,"length":22,"code":2339,"category":1,"messageText":"Property 'checkSectionCompletion' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":7770,"length":25,"code":2339,"category":1,"messageText":"Property 'updateDependentComponents' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":7862,"length":20,"code":2339,"category":1,"messageText":"Property 'showValueChangeHints' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":8220,"length":21,"code":2339,"category":1,"messageText":"Property 'getIncompleteSections' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":8387,"length":15,"code":2339,"category":1,"messageText":"Property 'canUpgradeLevel' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":8665,"length":18,"code":2339,"category":1,"messageText":"Property 'getUpgradeBenefits' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":9948,"length":20,"code":2339,"category":1,"messageText":"Property 'generateOverviewHelp' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":10006,"length":21,"code":2339,"category":1,"messageText":"Property 'getCurrentSectionHelp' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":10066,"length":22,"code":2339,"category":1,"messageText":"Property 'getTroubleshootingHelp' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":10120,"length":11,"code":2339,"category":1,"messageText":"Property 'getExamples' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":10164,"length":16,"code":2339,"category":1,"messageText":"Property 'getResourceLinks' does not exist on type 'ProgressiveDisclosureEngine'."}]],[1282,[{"start":4508,"length":16,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":7698,"length":27,"code":2551,"category":1,"messageText":"Property 'filterConfigurationForLevel' does not exist on type 'ProgressiveDisclosureEngine'. Did you mean 'setConfigurationLevel'?","relatedInformation":[{"file":"../src/config/ui/progressive-disclosure-engine.ts","start":5144,"length":21,"messageText":"'setConfigurationLevel' is declared here.","category":3,"code":2728}]},{"start":11721,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'string[]' is not assignable to type 'ConfigurationSuggestion[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type 'ConfigurationSuggestion'.","category":1,"code":2322}]}},{"start":12297,"length":13,"messageText":"Cannot find module '@iarna/toml' or its corresponding type declarations.","category":1,"code":2307},{"start":12912,"length":13,"messageText":"Cannot find module '@iarna/toml' or its corresponding type declarations.","category":1,"code":2307},{"start":17927,"length":16,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":21733,"length":2,"code":2339,"category":1,"messageText":"Property 'on' does not exist on type 'MultiTierStorageManager'."}]],[1283,[{"start":19239,"length":9,"code":2339,"category":1,"messageText":"Property 'timestamp' does not exist on type 'HookExecutionResult'."}]],[1284,[{"start":11442,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'ResourceUsage' is not assignable to type 'Record<string, number>'.","category":1,"code":2322,"next":[{"messageText":"Index signature for type 'string' is missing in type 'ResourceUsage'.","category":1,"code":2329}]},"relatedInformation":[{"file":"../src/swarm/types.ts","start":8482,"length":13,"messageText":"The expected type comes from property 'resourcesUsed' which is declared here on type 'TaskResult'","category":3,"code":6500}]},{"start":11770,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'ResourceUsage' is not assignable to type 'Record<string, number>'.","category":1,"code":2322,"next":[{"messageText":"Index signature for type 'string' is missing in type 'ResourceUsage'.","category":1,"code":2329}]},"relatedInformation":[{"file":"../src/swarm/types.ts","start":8482,"length":13,"messageText":"The expected type comes from property 'resourcesUsed' which is declared here on type 'TaskResult'","category":3,"code":6500}]}]],[1291,[{"start":3301,"length":8,"code":2322,"category":1,"messageText":"Type '\"hybrid\"' is not assignable to type 'LoadBalancingStrategy'.","relatedInformation":[{"start":581,"length":8,"messageText":"The expected type comes from property 'strategy' which is declared here on type 'LoadBalancerConfig'","category":3,"code":6500}]},{"start":4265,"length":12,"code":2345,"category":1,"messageText":"Argument of type '{ id: string; }' is not assignable to parameter of type 'string'."},{"start":4423,"length":12,"code":2345,"category":1,"messageText":"Argument of type '{ id: string; }' is not assignable to parameter of type 'string'."},{"start":4589,"length":12,"code":2345,"category":1,"messageText":"Argument of type '{ id: string; }' is not assignable to parameter of type 'string'."},{"start":4777,"length":16,"code":2345,"category":1,"messageText":"Argument of type '{ id: string; }' is not assignable to parameter of type 'string'."},{"start":4955,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":4969,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":9306,"length":12,"code":2678,"category":1,"messageText":"Type '\"load-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":9472,"length":19,"code":2678,"category":1,"messageText":"Type '\"performance-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":9652,"length":18,"code":2678,"category":1,"messageText":"Type '\"capability-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":9829,"length":16,"code":2678,"category":1,"messageText":"Type '\"affinity-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":10007,"length":12,"code":2678,"category":1,"messageText":"Type '\"cost-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":10173,"length":8,"code":2678,"category":1,"messageText":"Type '\"hybrid\"' is not comparable to type 'LoadBalancingStrategy'."}]],[1293,[{"start":397,"length":45,"messageText":"Module './types/sdk.js' has already exported a member named 'Agent'. Consider explicitly re-exporting to resolve the ambiguity.","category":1,"code":2308},{"start":490,"length":7,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":502,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":520,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":539,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":577,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":638,"length":5,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":648,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":667,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":684,"length":18,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":824,"length":19,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":848,"length":22,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":875,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205}]],[1296,[{"start":4135,"length":8,"code":2345,"category":1,"messageText":"Argument of type '\"paused\"' is not assignable to parameter of type 'AgentState'."},{"start":4817,"length":8,"code":2345,"category":1,"messageText":"Argument of type '\"active\"' is not assignable to parameter of type 'AgentState'."},{"start":5564,"length":12,"code":2345,"category":1,"messageText":"Argument of type '\"terminated\"' is not assignable to parameter of type 'AgentState'."},{"start":6624,"length":15,"code":2345,"category":1,"messageText":"Argument of type '\"checkpointing\"' is not assignable to parameter of type 'AgentState'."},{"start":7122,"length":8,"code":2345,"category":1,"messageText":"Argument of type '\"active\"' is not assignable to parameter of type 'AgentState'."},{"start":10436,"length":6,"code":2322,"category":1,"messageText":"Type 'Promise<string>' is not assignable to type 'string'."},{"start":10650,"length":6,"code":2322,"category":1,"messageText":"Type 'Promise<string>' is not assignable to type 'string'."}]],[1302,[{"start":722,"length":8,"messageText":"Namespace '\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/better-sqlite3/lib/index\".export=' has no exported member 'Database'.","category":1,"code":2694}]],[1303,[{"start":13379,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'GCounter' is not assignable to parameter of type '{ payload: Map<string, number>; vectorClock?: Map<string, number>; }'.","category":1,"code":2345,"next":[{"messageText":"Property 'payload' is private in type 'GCounter' but not in type '{ payload: Map<string, number>; vectorClock?: Map<string, number>; }'.","category":1,"code":2325}]}}]],[1327,[{"start":10324,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'DashboardConfig'.","category":1,"code":2484},{"start":10344,"length":12,"messageText":"Export declaration conflicts with exported declaration of 'FleetMetrics'.","category":1,"code":2484},{"start":10361,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'SystemMetrics'.","category":1,"code":2484},{"start":10379,"length":12,"messageText":"Export declaration conflicts with exported declaration of 'SwarmMetrics'.","category":1,"code":2484},{"start":10396,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'DatabaseMetrics'.","category":1,"code":2484},{"start":10416,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'NetworkMetrics'.","category":1,"code":2484},{"start":10435,"length":5,"messageText":"Export declaration conflicts with exported declaration of 'Alert'.","category":1,"code":2484},{"start":10445,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'ConnectionStatus'.","category":1,"code":2484}]],[1328,[{"start":66,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":977,"length":13,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[1329,[{"start":58,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835}]],[1330,[{"start":43,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './MemoryDashboard.js'?","category":1,"code":2835},{"start":93,"length":15,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './RedisClient.js'?","category":1,"code":2835},{"start":143,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './RealtimeMonitor.js'?","category":1,"code":2835},{"start":199,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './RedisKeyInspector.js'?","category":1,"code":2835},{"start":265,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './SQLiteSchemaVisualization.js'?","category":1,"code":2835},{"start":336,"length":26,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './MemoryHeatmapComponent.js'?","category":1,"code":2835},{"start":400,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './OptimizationEngine.js'?","category":1,"code":2835},{"start":463,"length":25,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './MemoryPatternAnalysis.js'?","category":1,"code":2835},{"start":523,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './DashboardLayout.js'?","category":1,"code":2835},{"start":559,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835}]],[1331,[{"start":2655,"length":5,"messageText":"Cannot find namespace 'React'.","category":1,"code":2503}]],[1333,[{"start":14327,"length":19,"code":2739,"category":1,"messageText":"Type '{}' is missing the following properties from type '{ source: string; version: string; correlationId?: string; causationId?: string; retryCount?: number; timeout?: number; tags?: string[]; traceId?: string; spanId?: string; }': source, version","canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type '{ source: string; version: string; correlationId?: string; causationId?: string; retryCount?: number; timeout?: number; tags?: string[]; traceId?: string; spanId?: string; }'."}},{"start":14507,"length":19,"code":2739,"category":1,"messageText":"Type '{}' is missing the following properties from type '{ source: string; version: string; correlationId?: string; causationId?: string; retryCount?: number; timeout?: number; tags?: string[]; traceId?: string; spanId?: string; }': source, version","canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type '{ source: string; version: string; correlationId?: string; causationId?: string; retryCount?: number; timeout?: number; tags?: string[]; traceId?: string; spanId?: string; }'."}}]],[1339,[{"start":156,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":177,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":266,"length":16,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":286,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":374,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":389,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":474,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":489,"length":5,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":564,"length":11,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":577,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":738,"length":32,"messageText":"Cannot find module './config/phase4-environment.js' or its corresponding type declarations.","category":1,"code":2307},{"start":1149,"length":32,"messageText":"Cannot find module './config/phase4-environment.js' or its corresponding type declarations.","category":1,"code":2307}]],[1342,[{"start":554,"length":23,"messageText":"Module '\"../verification/index.js\"' has no exported member 'verificationHookManager'. Did you mean to use 'import verificationHookManager from \"../verification/index.js\"' instead?","category":1,"code":2614},{"start":581,"length":28,"messageText":"Module '\"../verification/index.js\"' has no exported member 'initializeVerificationSystem'. Did you mean to use 'import initializeVerificationSystem from \"../verification/index.js\"' instead?","category":1,"code":2614},{"start":613,"length":27,"messageText":"Module '\"../verification/index.js\"' has no exported member 'getVerificationSystemStatus'. Did you mean to use 'import getVerificationSystemStatus from \"../verification/index.js\"' instead?","category":1,"code":2614},{"start":644,"length":26,"messageText":"Module '\"../verification/index.js\"' has no exported member 'shutdownVerificationSystem'. Did you mean to use 'import shutdownVerificationSystem from \"../verification/index.js\"' instead?","category":1,"code":2614},{"start":6078,"length":28,"messageText":"Property 'initializeVerificationSystem' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/verification/index\", { with: { \"resolution-mode\": \"import\" } })'.","category":1,"code":2339}]],[1343,[{"start":57,"length":7,"messageText":"Cannot find module 'react' or its corresponding type declarations.","category":1,"code":2307},{"start":109,"length":15,"messageText":"Cannot find module '@/types/swarm' or its corresponding type declarations.","category":1,"code":2307},{"start":4027,"length":6,"code":2339,"category":1,"messageText":"Property 'agents' does not exist on type 'WebSocketMessage'."},{"start":4137,"length":6,"code":2339,"category":1,"messageText":"Property 'agents' does not exist on type 'WebSocketMessage'."},{"start":4310,"length":5,"code":2339,"category":1,"messageText":"Property 'tasks' does not exist on type 'WebSocketMessage'."},{"start":4418,"length":5,"code":2339,"category":1,"messageText":"Property 'tasks' does not exist on type 'WebSocketMessage'."},{"start":4592,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'WebSocketMessage'."},{"start":4704,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'WebSocketMessage'."},{"start":4885,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'WebSocketMessage'."},{"start":4904,"length":7,"code":2339,"category":1,"messageText":"Property 'updates' does not exist on type 'WebSocketMessage'."},{"start":5074,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'WebSocketMessage'."},{"start":5130,"length":7,"code":2339,"category":1,"messageText":"Property 'updates' does not exist on type 'WebSocketMessage'."},{"start":5387,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'WebSocketMessage'."},{"start":5405,"length":7,"code":2339,"category":1,"messageText":"Property 'updates' does not exist on type 'WebSocketMessage'."},{"start":5571,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'WebSocketMessage'."},{"start":5625,"length":7,"code":2339,"category":1,"messageText":"Property 'updates' does not exist on type 'WebSocketMessage'."},{"start":6341,"length":12,"code":2339,"category":1,"messageText":"Property 'connectionId' does not exist on type 'WebSocketMessage'."}]],[1348,[{"start":5296,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":5310,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5460,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":5488,"length":4,"code":2339,"category":1,"messageText":"Property 'from' does not exist on type 'unknown'."},{"start":5511,"length":2,"code":2339,"category":1,"messageText":"Property 'to' does not exist on type 'unknown'."},{"start":5660,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":5682,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":5814,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":5871,"length":8,"code":2339,"category":1,"messageText":"Property 'duration' does not exist on type 'unknown'."},{"start":5896,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":6021,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":6041,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":6279,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."}]],[1350,[{"start":567,"length":9,"messageText":"'\"../mcp/server.js\"' has no exported member named 'McpServer'. Did you mean 'MCPServer'?","category":1,"code":2724,"relatedInformation":[{"file":"../src/mcp/server.ts","start":1872,"length":9,"messageText":"'MCPServer' is declared here.","category":3,"code":2728}]},{"start":6909,"length":44,"messageText":"Expected 4 arguments, but got 2.","category":1,"code":2554,"relatedInformation":[{"file":"../src/agents/agent-manager.ts","start":3939,"length":19,"messageText":"An argument for 'eventBus' was not provided.","category":3,"code":6210}]},{"start":7806,"length":42,"messageText":"Expected 0-1 arguments, but got 3.","category":1,"code":2554},{"start":9155,"length":19,"messageText":"Expected 0-2 arguments, but got 3.","category":1,"code":2554},{"start":10351,"length":47,"messageText":"Expected 4 arguments, but got 2.","category":1,"code":2554,"relatedInformation":[{"file":"../src/monitoring/real-time-monitor.ts","start":4001,"length":19,"messageText":"An argument for 'eventBus' was not provided.","category":3,"code":6210}]},{"start":11070,"length":9,"messageText":"Property 'McpServer' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'.","category":1,"code":2339},{"start":13690,"length":9,"code":2339,"category":1,"messageText":"Property 'component' does not exist on type 'unknown'."},{"start":13707,"length":6,"code":2339,"category":1,"messageText":"Property 'status' does not exist on type 'unknown'."},{"start":13721,"length":7,"code":2339,"category":1,"messageText":"Property 'message' does not exist on type 'unknown'."},{"start":13861,"length":9,"code":2339,"category":1,"messageText":"Property 'component' does not exist on type 'unknown'."},{"start":13881,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":13928,"length":9,"code":2339,"category":1,"messageText":"Property 'component' does not exist on type 'unknown'."},{"start":13958,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":14122,"length":6,"code":2339,"category":1,"messageText":"Property 'metric' does not exist on type 'unknown'."},{"start":14140,"length":5,"code":2339,"category":1,"messageText":"Property 'value' does not exist on type 'unknown'."}]],[1351,[{"start":9624,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":14624,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":14759,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":14889,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":16089,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":16148,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":16760,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]}]],[1352,[{"start":265,"length":8,"messageText":"Module '\"better-sqlite3\"' has no exported member 'Database'.","category":1,"code":2305}]],[1360,[{"start":181,"length":21,"messageText":"'\"@modelcontextprotocol/sdk/types.js\"' has no exported member named 'CallToolRequestSchema'. Did you mean 'CallToolRequest'?","category":1,"code":2724},{"start":206,"length":22,"messageText":"Module '\"@modelcontextprotocol/sdk/types.js\"' has no exported member 'ListToolsRequestSchema'.","category":1,"code":2305},{"start":258,"length":11,"messageText":"Module '\"@modelcontextprotocol/sdk/types.js\"' has no exported member 'TextContent'.","category":1,"code":2305},{"start":273,"length":12,"messageText":"Module '\"@modelcontextprotocol/sdk/types.js\"' has no exported member 'ImageContent'.","category":1,"code":2305},{"start":289,"length":16,"messageText":"Module '\"@modelcontextprotocol/sdk/types.js\"' has no exported member 'EmbeddedResource'.","category":1,"code":2305},{"start":1525,"length":145,"messageText":"Expected 0 arguments, but got 2.","category":1,"code":2554},{"start":2264,"length":6,"code":2339,"category":1,"messageText":"Property 'params' does not exist on type 'unknown'."},{"start":2285,"length":6,"code":2339,"category":1,"messageText":"Property 'params' does not exist on type 'unknown'."},{"start":7027,"length":6,"code":2339,"category":1,"messageText":"Property 'output' does not exist on type 'never'."},{"start":21926,"length":16,"messageText":"Cannot find name 'executeSparcMode'.","category":1,"code":2304}]],[1366,[{"start":118,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":134,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":219,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":235,"length":19,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":331,"length":18,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":353,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":442,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":463,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":481,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":569,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":588,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":607,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":628,"length":18,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205}]],[1367,[{"start":1124,"length":22,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'MCPConfig | {}' is not assignable to parameter of type 'MCPConfig'.","category":1,"code":2345,"next":[{"messageText":"Property 'transport' is missing in type '{}' but required in type 'MCPConfig'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type 'MCPConfig'."}}]},"relatedInformation":[{"file":"../src/utils/types.ts","start":7892,"length":9,"messageText":"'transport' is declared here.","category":3,"code":2728}]},{"start":2853,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":2980,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":3186,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":3294,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":3374,"length":14,"code":2345,"category":1,"messageText":"Argument of type 'MCPError' is not assignable to parameter of type 'string'."},{"start":3539,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":3647,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1372,[{"start":770,"length":11,"messageText":"Module '\"./auth.js\"' has no exported member 'AuthContext'.","category":1,"code":2305},{"start":809,"length":9,"messageText":"Module '\"./auth.js\"' has no exported member 'TokenInfo'.","category":1,"code":2305},{"start":827,"length":22,"messageText":"Module '\"./auth.js\"' has no exported member 'TokenGenerationOptions'.","category":1,"code":2305},{"start":858,"length":11,"messageText":"Module '\"./auth.js\"' has no exported member 'AuthSession'.","category":1,"code":2305},{"start":2310,"length":22,"messageText":"Cannot find name 'MCPOrchestrationConfig'.","category":1,"code":2304},{"start":2360,"length":23,"messageText":"Cannot find name 'OrchestrationComponents'.","category":1,"code":2304},{"start":2449,"length":27,"messageText":"Cannot find name 'MCPOrchestrationIntegration'.","category":1,"code":2304},{"start":2594,"length":27,"messageText":"Cannot find name 'MCPOrchestrationIntegration'.","category":1,"code":2304},{"start":3508,"length":9,"messageText":"Cannot find name 'MCPServer'.","category":1,"code":2304},{"start":3542,"length":19,"messageText":"Cannot find name 'MCPLifecycleManager'.","category":1,"code":2304},{"start":3588,"length":21,"messageText":"Cannot find name 'MCPPerformanceMonitor'.","category":1,"code":2304},{"start":3854,"length":9,"messageText":"Cannot find name 'MCPServer'.","category":1,"code":2304},{"start":3921,"length":19,"messageText":"Cannot find name 'MCPLifecycleManager'.","category":1,"code":2304},{"start":3982,"length":21,"messageText":"Cannot find name 'MCPPerformanceMonitor'.","category":1,"code":2304},{"start":4084,"length":19,"messageText":"Cannot find name 'MCPLifecycleManager'.","category":1,"code":2304},{"start":4215,"length":21,"messageText":"Cannot find name 'MCPPerformanceMonitor'.","category":1,"code":2304},{"start":4504,"length":9,"messageText":"Cannot find name 'MCPServer'.","category":1,"code":2304},{"start":4537,"length":19,"messageText":"Cannot find name 'MCPLifecycleManager'.","category":1,"code":2304},{"start":4582,"length":21,"messageText":"Cannot find name 'MCPPerformanceMonitor'.","category":1,"code":2304},{"start":4626,"length":18,"messageText":"Cannot find name 'MCPProtocolManager'.","category":1,"code":2304},{"start":5098,"length":18,"messageText":"Cannot find name 'MCPProtocolManager'.","category":1,"code":2304}]],[1375,[{"start":1088,"length":39,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":1992,"length":8,"code":2339,"category":1,"messageText":"Property 'callTool' does not exist on type 'Client'."}]],[1376,[{"start":546,"length":12,"code":2551,"category":1,"messageText":"Property 'runMCPServer' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'. Did you mean 'MCPServer'?","relatedInformation":[{"file":"../src/mcp/server.ts","start":1872,"length":9,"messageText":"'MCPServer' is declared here.","category":3,"code":2728}]},{"start":581,"length":12,"code":2551,"category":1,"messageText":"Property 'runMCPServer' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'. Did you mean 'MCPServer'?","relatedInformation":[{"file":"../src/mcp/server.ts","start":1872,"length":9,"messageText":"'MCPServer' is declared here.","category":3,"code":2728}]},{"start":619,"length":7,"code":2339,"category":1,"messageText":"Property 'default' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":649,"length":7,"code":2339,"category":1,"messageText":"Property 'default' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'."}]],[1377,[{"start":677,"length":12,"messageText":"Property 'runMCPServer' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'.","category":1,"code":2339}]],[1378,[{"start":335,"length":9,"messageText":"Cannot find module 'sqlite3' or its corresponding type declarations.","category":1,"code":2307},{"start":1431,"length":6,"code":2416,"category":1,"messageText":{"messageText":"Property 'config' in type 'SQLiteEnhancedMemoryManager' is not assignable to the same property in base type 'AdvancedMemoryManager'.","category":1,"code":2416,"next":[{"messageText":"Type 'SQLiteMemoryConfig' is missing the following properties from type '{ maxMemorySize: number; cacheSize: number; cacheTtl: number; autoCompress: boolean; autoCleanup: boolean; cleanupInterval: number; indexingEnabled: boolean; persistenceEnabled: boolean; compressionThreshold: number; backupRetention: number; }': maxMemorySize, cacheSize, cacheTtl, autoCompress, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'SQLiteMemoryConfig' is not assignable to type '{ maxMemorySize: number; cacheSize: number; cacheTtl: number; autoCompress: boolean; autoCleanup: boolean; cleanupInterval: number; indexingEnabled: boolean; persistenceEnabled: boolean; compressionThreshold: number; backupRetention: number; }'."}}]}},{"start":2709,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":3306,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":3514,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":4007,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":6567,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":7870,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":9151,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":11403,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":13741,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":14552,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":15977,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":18785,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":18950,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":19167,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":19452,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341}]],[1379,[{"start":637,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":1364,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":2435,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":3148,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":3842,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":4436,"length":10,"code":2339,"category":1,"messageText":"Property 'outputHelp' does not exist on type 'Command'."}]],[1381,[{"start":5625,"length":11,"code":2339,"category":1,"messageText":"Property 'healthCheck' does not exist on type 'unknown'."},{"start":5719,"length":11,"code":2339,"category":1,"messageText":"Property 'healthCheck' does not exist on type 'unknown'."},{"start":7042,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":7119,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":7239,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":7313,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."}]],[1382,[{"start":6672,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":6744,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":20233,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'unknown'."},{"start":20285,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'unknown'."},{"start":20362,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'unknown'."},{"start":20396,"length":5,"code":2339,"category":1,"messageText":"Property 'value' does not exist on type 'unknown'."},{"start":20622,"length":9,"code":2339,"category":1,"messageText":"Property 'component' does not exist on type 'unknown'."},{"start":20849,"length":7,"code":2339,"category":1,"messageText":"Property 'message' does not exist on type 'unknown'."},{"start":20866,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":20925,"length":5,"code":2339,"category":1,"messageText":"Property 'stack' does not exist on type 'unknown'."}]],[1383,[{"start":150,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":214,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":276,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":324,"length":17,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[1385,[{"start":157,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":9682,"length":6,"code":2339,"category":1,"messageText":"Property 'queues' does not exist on type '{ config: { tracing: boolean; metrics: boolean; logs: boolean; profiling: boolean; }; activeSpans: number; queuedMetrics: number; queuedLogs: number; lastFlush: number; }'."},{"start":12877,"length":41,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ enabled: boolean; apiKey?: string; site?: string; serviceName?: string; env?: string; version?: string; tracing?: { enabled: boolean; sampleRate: number; excludedUrls: string[]; }; metrics?: { enabled: boolean; host?: string; port?: number; prefix?: string; }; logs?: { enabled: boolean; apiKey?: string; site?: str...' is not assignable to parameter of type 'DataDogConfig'.","category":1,"code":2345,"next":[{"messageText":"Property 'tracing' is optional in type '{ enabled: boolean; apiKey?: string; site?: string; serviceName?: string; env?: string; version?: string; tracing?: { enabled: boolean; sampleRate: number; excludedUrls: string[]; }; metrics?: { enabled: boolean; host?: string; port?: number; prefix?: string; }; logs?: { ...; }; profiling?: { ...; }; }' but required in type 'DataDogConfig'.","category":1,"code":2327}]}}]],[1386,[{"start":159,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":11468,"length":6,"code":2339,"category":1,"messageText":"Property 'queues' does not exist on type '{ config: { tracing: boolean; metrics: boolean; logs: boolean; browserMonitoring: boolean; }; activeTransactions: number; activeSpans: number; queuedMetrics: number; queuedLogs: number; lastFlush: number; }'."},{"start":14765,"length":41,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ enabled: boolean; licenseKey?: string; appName?: string; accountId?: string; trustKey?: string; env?: string; version?: string; tracing?: { enabled: boolean; distributedTracing: boolean; transactionEvents: boolean; spanEvents: boolean; }; metrics?: { enabled: boolean; apiHost?: string; metricApiPath?: string; }; l...' is not assignable to parameter of type 'NewRelicConfig'.","category":1,"code":2345,"next":[{"messageText":"Property 'tracing' is optional in type '{ enabled: boolean; licenseKey?: string; appName?: string; accountId?: string; trustKey?: string; env?: string; version?: string; tracing?: { enabled: boolean; distributedTracing: boolean; transactionEvents: boolean; spanEvents: boolean; }; metrics?: { ...; }; logs?: { ...; }; browserMonitoring?: { ...; }; }' but required in type 'NewRelicConfig'.","category":1,"code":2327}]}}]],[1387,[{"start":159,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":1080,"length":11,"messageText":"Duplicate identifier 'serviceName'.","category":1,"code":2300},{"start":1080,"length":11,"messageText":"All declarations of 'serviceName' must have identical modifiers.","category":1,"code":2687},{"start":1264,"length":11,"messageText":"Duplicate identifier 'serviceName'.","category":1,"code":2300},{"start":1264,"length":11,"messageText":"All declarations of 'serviceName' must have identical modifiers.","category":1,"code":2687}]],[1388,[{"start":167,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":6482,"length":17,"code":2339,"category":1,"messageText":"Property '_getActiveHandles' does not exist on type 'Process'."},{"start":6537,"length":18,"code":2339,"category":1,"messageText":"Property '_getActiveRequests' does not exist on type 'Process'."}]],[1389,[{"start":161,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":9592,"length":19,"code":2339,"category":1,"messageText":"Property 'recordDatabaseQuery' does not exist on type 'DataDogCollector'."},{"start":12107,"length":7,"code":2339,"category":1,"messageText":"Property 'overall' does not exist on type 'Promise<APMHealthStatus>'.","relatedInformation":[{"start":12107,"length":7,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]},{"start":12144,"length":7,"code":2339,"category":1,"messageText":"Property 'overall' does not exist on type 'Promise<APMHealthStatus>'.","relatedInformation":[{"start":12144,"length":7,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]}]],[1390,[{"start":4338,"length":20,"messageText":"Cannot find name 'createAPMIntegration'.","category":1,"code":2304}]],[1391,[{"start":6470,"length":5,"code":2339,"category":1,"messageText":"Property 'score' does not exist on type 'unknown'."},{"start":6482,"length":6,"code":2339,"category":1,"messageText":"Property 'userId' does not exist on type 'unknown'."},{"start":6495,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":6641,"length":7,"code":2339,"category":1,"messageText":"Property 'success' does not exist on type 'unknown'."},{"start":6655,"length":8,"code":2339,"category":1,"messageText":"Property 'duration' does not exist on type 'unknown'."},{"start":6670,"length":12,"code":2339,"category":1,"messageText":"Property 'participants' does not exist on type 'unknown'."},{"start":6826,"length":6,"code":2339,"category":1,"messageText":"Property 'userId' does not exist on type 'unknown'."},{"start":6839,"length":5,"code":2339,"category":1,"messageText":"Property 'claim' does not exist on type 'unknown'."},{"start":6851,"length":10,"code":2339,"category":1,"messageText":"Property 'validation' does not exist on type 'unknown'."},{"start":7002,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":7156,"length":6,"code":2339,"category":1,"messageText":"Property 'rating' does not exist on type 'unknown'."},{"start":7169,"length":8,"code":2339,"category":1,"messageText":"Property 'feedback' does not exist on type 'unknown'."},{"start":7300,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":7312,"length":8,"code":2339,"category":1,"messageText":"Property 'severity' does not exist on type 'unknown'."}]],[1392,[{"start":3713,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ id: string; userId: string; taskId: string; score: number; validationType: string; context: any; metadata: any; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ id: string; userId: string; taskId: string; score: number; validationType: string; context: any; metadata: any; }': id, userId, taskId, score, and 3 more.","category":1,"code":2740}]}}]],[1393,[{"start":4745,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ decisionId: string; type: string; participants: any[]; context: any; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ decisionId: string; type: string; participants: any[]; context: any; }': decisionId, type, participants, context","category":1,"code":2739}]}},{"start":4864,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ decisionId: string; participantId: string; vote: string; confidence: number; responseTime: number; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ decisionId: string; participantId: string; vote: string; confidence: number; responseTime: number; }': decisionId, participantId, vote, confidence, responseTime","category":1,"code":2739}]}},{"start":4980,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ decisionId: string; outcome: string; confidence: number; unanimity: boolean; duration: number; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ decisionId: string; outcome: string; confidence: number; unanimity: boolean; duration: number; }': decisionId, outcome, confidence, unanimity, duration","category":1,"code":2739}]}},{"start":5202,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ decisionId: string; timeoutDuration: number; participantsResponded: number; totalParticipants: number; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ decisionId: string; timeoutDuration: number; participantsResponded: number; totalParticipants: number; }': decisionId, timeoutDuration, participantsResponded, totalParticipants","category":1,"code":2739}]}},{"start":17010,"length":11,"messageText":"Expected 0 arguments, but got 1.","category":1,"code":2554},{"start":25005,"length":31,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":25350,"length":31,"messageText":"Duplicate function implementation.","category":1,"code":2393}]],[1395,[{"start":5099,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5266,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5430,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5598,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5746,"length":5,"code":2339,"category":1,"messageText":"Property 'alert' does not exist on type 'unknown'."},{"start":5817,"length":5,"code":2339,"category":1,"messageText":"Property 'alert' does not exist on type 'unknown'."},{"start":5935,"length":6,"code":2339,"category":1,"messageText":"Property 'rating' does not exist on type 'unknown'."}]],[1397,[{"start":23995,"length":6,"messageText":"Cannot find name 'nodeId'.","category":1,"code":2304},{"start":50710,"length":10,"messageText":"Export declaration conflicts with exported declaration of 'DomainNode'.","category":1,"code":2484},{"start":50724,"length":10,"messageText":"Export declaration conflicts with exported declaration of 'DomainEdge'.","category":1,"code":2484},{"start":50738,"length":11,"messageText":"Export declaration conflicts with exported declaration of 'DomainGraph'.","category":1,"code":2484},{"start":50753,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'CohesionAnalysis'.","category":1,"code":2484},{"start":50773,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'DependencyAnalysis'.","category":1,"code":2484},{"start":50795,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'BoundaryOptimization'.","category":1,"code":2484},{"start":50819,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'GNNLayerConfig'.","category":1,"code":2484},{"start":50837,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'TrainingConfig'.","category":1,"code":2484}]],[1398,[{"start":14424,"length":7,"messageText":"Cannot find name 'context'.","category":1,"code":2304},{"start":15123,"length":7,"messageText":"Cannot find name 'context'.","category":1,"code":2304},{"start":15172,"length":7,"messageText":"Cannot find name 'context'.","category":1,"code":2304},{"start":24860,"length":29,"messageText":"Export declaration conflicts with exported declaration of 'DomainMapperIntegrationConfig'.","category":1,"code":2484},{"start":24891,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'DomainAnalysisResult'.","category":1,"code":2484}]],[1399,[{"start":4751,"length":11,"messageText":"Cannot find name 'DomainGraph'.","category":1,"code":2304},{"start":5103,"length":10,"messageText":"Cannot find name 'DomainNode'.","category":1,"code":2304},{"start":5197,"length":10,"messageText":"Cannot find name 'DomainNode'.","category":1,"code":2304},{"start":5766,"length":10,"messageText":"Cannot find name 'DomainEdge'.","category":1,"code":2304},{"start":5885,"length":10,"messageText":"Cannot find name 'DomainEdge'.","category":1,"code":2304},{"start":6353,"length":12,"messageText":"Cannot find name 'TrainingData'.","category":1,"code":2304},{"start":6845,"length":11,"messageText":"Cannot find name 'DomainGraph'.","category":1,"code":2304},{"start":8019,"length":11,"messageText":"Cannot find name 'DomainGraph'.","category":1,"code":2304},{"start":9613,"length":18,"messageText":"Cannot find name 'NeuralDomainMapper'.","category":1,"code":2304},{"start":10749,"length":18,"messageText":"Cannot find name 'NeuralDomainMapper'.","category":1,"code":2304},{"start":11648,"length":29,"messageText":"Cannot find name 'createDomainMapperIntegration'.","category":1,"code":2304},{"start":11822,"length":20,"messageText":"Cannot find name 'DomainAnalysisResult'.","category":1,"code":2304},{"start":12333,"length":18,"messageText":"No value exists in scope for the shorthand property 'NeuralDomainMapper'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":12355,"length":29,"messageText":"No value exists in scope for the shorthand property 'NeuralDomainMapperIntegration'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":12388,"length":29,"messageText":"No value exists in scope for the shorthand property 'createDomainMapperIntegration'. Either declare one or provide an initializer.","category":1,"code":18004}]],[1400,[{"start":276,"length":27,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './user-preference-manager.js'?","category":1,"code":2835}]],[1404,[{"start":1586,"length":4,"messageText":"Abstract property 'name' in class 'BaseProvider' cannot be accessed in the constructor.","category":1,"code":2715},{"start":10330,"length":14,"code":2740,"category":1,"messageText":"Type '{}' is missing the following properties from type 'Record<LLMModel, { requests: number; tokens: number; cost: number; }>': \"claude-3-opus-20240229\", \"claude-3-sonnet-20240229\", \"claude-3-haiku-20240307\", \"claude-2.1\", and 25 more.","relatedInformation":[{"file":"../src/providers/types.ts","start":8067,"length":14,"messageText":"The expected type comes from property 'modelBreakdown' which is declared here on type 'UsageStats'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type 'Record<LLMModel, { requests: number; tokens: number; cost: number; }>'."}}]],[1409,[{"start":12210,"length":8,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'metadata' does not exist in type 'ModelInfo'."}]],[1412,[{"start":9737,"length":17,"code":2339,"category":1,"messageText":"Property 'maxCostPerRequest' does not exist on type '{ maxCost?: number; preferredModels?: LLMModel[]; }'."},{"start":9826,"length":17,"code":2339,"category":1,"messageText":"Property 'maxCostPerRequest' does not exist on type '{ maxCost?: number; preferredModels?: LLMModel[]; }'."}]],[1413,[{"start":1071,"length":9,"code":2739,"category":1,"messageText":"Type '{ anthropic: { provider: \"anthropic\"; apiKey: string; model: \"claude-3-sonnet-20240229\"; temperature: number; maxTokens: number; enableStreaming: true; enableCaching: true; timeout: number; retryAttempts: number; }; openai: { ...; }; google: { ...; }; cohere: { ...; }; ollama: { ...; }; }' is missing the following properties from type 'Record<LLMProvider, LLMProviderConfig>': custom, \"llama-cpp\", zai","relatedInformation":[{"file":"../src/providers/provider-manager.ts","start":1178,"length":9,"messageText":"The expected type comes from property 'providers' which is declared here on type 'ProviderManagerConfig'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ anthropic: { provider: \"anthropic\"; apiKey: string; model: \"claude-3-sonnet-20240229\"; temperature: number; maxTokens: number; enableStreaming: true; enableCaching: true; timeout: number; retryAttempts: number; }; openai: { ...; }; google: { ...; }; cohere: { ...; }; ollama: { ...; }; }' is not assignable to type 'Record<LLMProvider, LLMProviderConfig>'."}}]],[1416,[{"start":7534,"length":8,"code":2322,"category":1,"messageText":"Type 'string[]' is not assignable to type 'boolean'.","relatedInformation":[{"start":4744,"length":8,"messageText":"The expected type comes from property 'required' which is declared here on type 'ValidationSchema<any>'","category":3,"code":6500}]},{"start":12144,"length":8,"code":2322,"category":1,"messageText":"Type 'string[]' is not assignable to type 'boolean'.","relatedInformation":[{"start":4744,"length":8,"messageText":"The expected type comes from property 'required' which is declared here on type 'ValidationSchema<any>'","category":3,"code":6500}]},{"start":14785,"length":8,"code":2322,"category":1,"messageText":"Type 'string[]' is not assignable to type 'boolean'.","relatedInformation":[{"start":4744,"length":8,"messageText":"The expected type comes from property 'required' which is declared here on type 'ValidationSchema<any>'","category":3,"code":6500}]},{"start":15218,"length":8,"code":2322,"category":1,"messageText":"Type 'string[]' is not assignable to type 'boolean'.","relatedInformation":[{"start":4744,"length":8,"messageText":"The expected type comes from property 'required' which is declared here on type 'ValidationSchema<any>'","category":3,"code":6500}]}]],[1419,[{"start":330,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../websocket/swarmWebSocketServer.js'?","category":1,"code":2835},{"start":1875,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../websocket/swarmWebSocketServer.js'?","category":1,"code":2835}]],[1421,[{"start":7937,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Map<any, any>' is not assignable to parameter of type 'any[]'.","category":1,"code":2345,"next":[{"messageText":"Type 'Map<any, any>' is missing the following properties from type 'any[]': length, pop, push, concat, and 24 more.","category":1,"code":2740}]}},{"start":7982,"length":61,"code":2352,"category":1,"messageText":{"messageText":"Conversion of type 'any[]' to type 'Map<string, any>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.","category":1,"code":2352,"next":[{"messageText":"Type 'any[]' is missing the following properties from type 'Map<string, any>': clear, delete, get, has, and 3 more.","category":1,"code":2740}]}},{"start":8259,"length":61,"code":2352,"category":1,"messageText":{"messageText":"Conversion of type 'any[]' to type 'Map<string, any>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.","category":1,"code":2352,"next":[{"messageText":"Type 'any[]' is missing the following properties from type 'Map<string, any>': clear, delete, get, has, and 3 more.","category":1,"code":2740}]}},{"start":8777,"length":8,"messageText":"Property 'trending' of type '{ improving: string[]; declining: string[]; needsAttention: string[]; }' is not assignable to 'string' index type '{ status: \"above_target\" | \"below_target\" | \"at_target\" | \"approaching_target\"; currentValue: number; target: number; trend: \"improving\" | \"stable\" | \"declining\"; }'.","category":1,"code":2411},{"start":8922,"length":61,"code":2352,"category":1,"messageText":{"messageText":"Conversion of type 'any[]' to type 'Map<string, any>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.","category":1,"code":2352,"next":[{"messageText":"Type 'any[]' is missing the following properties from type 'Map<string, any>': clear, delete, get, has, and 3 more.","category":1,"code":2740}]}}]],[1422,[{"start":17064,"length":50,"messageText":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2362},{"start":17100,"length":10,"code":2339,"category":1,"messageText":"Property 'truthScore' does not exist on type 'unknown'."}]],[1424,[{"start":13446,"length":9,"code":2339,"category":1,"messageText":"Property 'timestamp' does not exist on type 'FailureScenario'."},{"start":14326,"length":9,"code":2339,"category":1,"messageText":"Property 'timestamp' does not exist on type 'FailureScenario'."},{"start":14904,"length":9,"code":2339,"category":1,"messageText":"Property 'timestamp' does not exist on type 'FailureScenario'."}]],[1426,[{"start":1979,"length":5,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"debug\" | \"info\" | \"warn\" | \"error\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":1227,"length":5,"messageText":"The expected type comes from property 'level' which is declared here on type 'LoggingConfig'","category":3,"code":6500}]}]],[1427,[{"start":838,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":852,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":2941,"length":27,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":3177,"length":18,"code":2339,"category":1,"messageText":"Property 'maxConcurrentTasks' does not exist on type 'AdvancedSwarmConfig'."},{"start":3487,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'namespace' does not exist in type 'MemoryConfig'."},{"start":7248,"length":259,"messageText":"Expected 3 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/coordination/advanced-scheduler.ts","start":4730,"length":19,"messageText":"An argument for 'eventBus' was not provided.","category":3,"code":6210}]},{"start":7312,"length":18,"code":2339,"category":1,"messageText":"Property 'maxConcurrentTasks' does not exist on type 'AdvancedSwarmConfig'."},{"start":7867,"length":10,"code":2339,"category":1,"messageText":"Property 'maxRetries' does not exist on type 'AdvancedSwarmConfig'."},{"start":8425,"length":4,"code":2322,"category":1,"messageText":"Type '\"swarm-definition\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":14078,"length":4,"code":2322,"category":1,"messageText":"Type '\"health-check\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":20033,"length":4,"code":2322,"category":1,"messageText":"Type '\"task-definition\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":22810,"length":12,"code":2339,"category":1,"messageText":"Property 'scheduleTask' does not exist on type 'AdvancedTaskScheduler'."},{"start":27781,"length":4,"code":2322,"category":1,"messageText":"Type '\"swarm-results\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":38096,"length":10,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'maxRetries' does not exist in type 'AdvancedSwarmConfig'."}]],[1428,[{"start":810,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":824,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":904,"length":21,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmExecutionContext'. Did you mean to use 'import SwarmExecutionContext from \"./types.js\"' instead?","category":1,"code":2614},{"start":3378,"length":21,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":6572,"length":7,"messageText":"Block-scoped variable 'process' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":6421,"length":7,"messageText":"'process' is declared here.","category":3,"code":2728}]},{"start":9374,"length":10,"code":2339,"category":1,"messageText":"Property 'maxRetries' does not exist on type 'Partial<ClaudeExecutionOptions>'."},{"start":10015,"length":6,"code":2339,"category":1,"messageText":"Property 'result' does not exist on type 'ExecutionResult'."},{"start":24207,"length":16,"code":2339,"category":1,"messageText":"Property 'workingDirectory' does not exist on type 'Partial<ClaudeExecutionOptions>'."}]],[1429,[{"start":1699,"length":6,"code":2741,"category":1,"messageText":"Property 'success' is missing in type '{ output: any; artifacts: {}; metadata: { agentId: string; agentType: AgentType; executionTime: number; targetDir: string; }; quality: number; completeness: number; accuracy: number; executionTime: number; resourcesUsed: { ...; }; validated: true; }' but required in type 'TaskResult'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":8326,"length":7,"messageText":"'success' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ output: any; artifacts: {}; metadata: { agentId: string; agentType: AgentType; executionTime: number; targetDir: string; }; quality: number; completeness: number; accuracy: number; executionTime: number; resourcesUsed: { ...; }; validated: true; }' is not assignable to type 'TaskResult'."}}]],[1430,[{"start":685,"length":22,"messageText":"Cannot find name 'ClaudeExecutionOptions'.","category":1,"code":2304},{"start":927,"length":12,"messageText":"Cannot find name 'TaskExecutor'.","category":1,"code":2304},{"start":1027,"length":15,"messageText":"Cannot find name 'ExecutionConfig'.","category":1,"code":2304},{"start":1127,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":1486,"length":15,"messageText":"Cannot find name 'ExecutionResult'.","category":1,"code":2304},{"start":1737,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":2059,"length":22,"code":2339,"category":1,"messageText":"Property 'createExecutionContext' does not exist on type 'TaskExecutorV2'."},{"start":2298,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":2734,"length":22,"code":2339,"category":1,"messageText":"Property 'createExecutionContext' does not exist on type 'TaskExecutorV2'."},{"start":2977,"length":16,"messageText":"Cannot find name 'ExecutionContext'.","category":1,"code":2304},{"start":3047,"length":15,"messageText":"Cannot find name 'ExecutionResult'.","category":1,"code":2304},{"start":3128,"length":7,"code":2339,"category":1,"messageText":"Property 'timeout' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":3144,"length":6,"code":2339,"category":1,"messageText":"Property 'config' does not exist on type 'TaskExecutorV2'."},{"start":3900,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":4484,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":4813,"length":6,"code":2339,"category":1,"messageText":"Property 'config' does not exist on type 'TaskExecutorV2'."},{"start":5168,"length":8,"code":2339,"category":1,"messageText":"Property 'detached' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":5454,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":5892,"length":6,"code":2339,"category":1,"messageText":"Property 'config' does not exist on type 'TaskExecutorV2'."},{"start":5934,"length":4,"code":2339,"category":1,"messageText":"Property 'emit' does not exist on type 'TaskExecutorV2'."},{"start":6385,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":6562,"length":6,"code":2339,"category":1,"messageText":"Property 'config' does not exist on type 'TaskExecutorV2'."},{"start":6604,"length":4,"code":2339,"category":1,"messageText":"Property 'emit' does not exist on type 'TaskExecutorV2'."},{"start":6901,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":7347,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":7665,"length":20,"code":2339,"category":1,"messageText":"Property 'collectResourceUsage' does not exist on type 'TaskExecutorV2'."},{"start":7773,"length":16,"code":2339,"category":1,"messageText":"Property 'collectArtifacts' does not exist on type 'TaskExecutorV2'."},{"start":7827,"length":15,"messageText":"Cannot find name 'ExecutionResult'.","category":1,"code":2304},{"start":8739,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":9357,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":9643,"length":13,"messageText":"Cannot find name 'ClaudeCommand'.","category":1,"code":2304},{"start":9755,"length":17,"code":2339,"category":1,"messageText":"Property 'buildClaudePrompt' does not exist on type 'TaskExecutorV2'."},{"start":9804,"length":8,"code":2339,"category":1,"messageText":"Property 'useStdin' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10075,"length":5,"code":2339,"category":1,"messageText":"Property 'model' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10119,"length":5,"code":2339,"category":1,"messageText":"Property 'model' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10185,"length":9,"code":2339,"category":1,"messageText":"Property 'maxTokens' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10238,"length":9,"code":2339,"category":1,"messageText":"Property 'maxTokens' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10320,"length":11,"code":2339,"category":1,"messageText":"Property 'temperature' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10390,"length":11,"code":2339,"category":1,"messageText":"Property 'temperature' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10540,"length":26,"code":2339,"category":1,"messageText":"Property 'dangerouslySkipPermissions' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10991,"length":12,"code":2339,"category":1,"messageText":"Property 'outputFormat' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":11050,"length":12,"code":2339,"category":1,"messageText":"Property 'outputFormat' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":11490,"length":10,"code":2339,"category":1,"messageText":"Property 'claudePath' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":12348,"length":13,"messageText":"Cannot find name 'ResourceUsage'.","category":1,"code":2304}]],[1431,[{"start":616,"length":21,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmExecutionContext'. Did you mean to use 'import SwarmExecutionContext from \"./types.js\"' instead?","category":1,"code":2614},{"start":641,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":655,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":6113,"length":21,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":16982,"length":83,"code":2345,"category":1,"messageText":"Argument of type '{ namespace: string; type: string; }' is not assignable to parameter of type 'string'."},{"start":17095,"length":16,"messageText":"Type 'MemoryEntry' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"start":17845,"length":95,"code":2345,"category":1,"messageText":"Argument of type '{ namespace: string; type: string; }' is not assignable to parameter of type 'string'."},{"start":17970,"length":19,"messageText":"Type 'MemoryEntry' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"start":19081,"length":4,"code":2322,"category":1,"messageText":"Type '\"knowledge-base\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":20018,"length":4,"code":2322,"category":1,"messageText":"Type '\"collective-intelligence\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]}]],[1435,[{"start":526,"length":20,"code":2415,"category":1,"messageText":{"messageText":"Class 'EnhancedPromptCopier' incorrectly extends base class 'PromptCopier'.","category":1,"code":2415,"next":[{"messageText":"Property 'copyFilesParallel' is private in type 'PromptCopier' but not in type 'EnhancedPromptCopier'.","category":1,"code":2325}]}}]],[1437,[{"start":3494,"length":11,"messageText":"Cannot find name 'copyPrompts'. Did you mean the instance member 'this.copyPrompts'?","category":1,"code":2663},{"start":4338,"length":11,"messageText":"Cannot find name 'copyPrompts'. Did you mean the instance member 'this.copyPrompts'?","category":1,"code":2663},{"start":8452,"length":11,"messageText":"Cannot find name 'copyPrompts'. Did you mean the instance member 'this.copyPrompts'?","category":1,"code":2663}]],[1438,[{"start":97,"length":11,"messageText":"Module '\"./prompt-copier-enhanced.js\"' has no exported member 'copyPrompts'.","category":1,"code":2305}]],[1439,[{"start":814,"length":20,"messageText":"Cannot find name 'ClaudeConnectionPool'.","category":1,"code":2304},{"start":886,"length":16,"messageText":"Cannot find name 'AsyncFileManager'.","category":1,"code":2304},{"start":948,"length":17,"messageText":"Cannot find name 'OptimizedExecutor'.","category":1,"code":2304}]],[1440,[{"start":515,"length":41,"messageText":"Module './executor.js' has already exported a member named 'ExecutionMetrics'. Consider explicitly re-exporting to resolve the ambiguity.","category":1,"code":2308}]],[1441,[{"start":5424,"length":10,"messageText":"Cannot assign to 'targetNode' because it is a constant.","category":1,"code":2588}]],[1442,[{"start":695,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":709,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":736,"length":21,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmExecutionContext'. Did you mean to use 'import SwarmExecutionContext from \"./types.js\"' instead?","category":1,"code":2614},{"start":2347,"length":23,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":11090,"length":6,"code":2741,"category":1,"messageText":"Property 'logger' is missing in type '{ sessionId: string; orchestrator: AdvancedSwarmOrchestrator; agent: SwarmAgent; task: SwarmTask; swarmId: string; executionId: string; timeout: number; maxRetries: number; }' but required in type 'MCPExecutionContext'.","relatedInformation":[{"file":"../src/utils/types.ts","start":13203,"length":6,"messageText":"'logger' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ sessionId: string; orchestrator: AdvancedSwarmOrchestrator; agent: SwarmAgent; task: SwarmTask; swarmId: string; executionId: string; timeout: number; maxRetries: number; }' is not assignable to type 'MCPExecutionContext'."}},{"start":11573,"length":15,"messageText":"Type 'Promise<MCPTool[]>' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488,"relatedInformation":[{"start":11573,"length":15,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]},{"start":12330,"length":6,"code":2339,"category":1,"messageText":"Property 'length' does not exist on type 'Promise<MCPTool[]>'.","relatedInformation":[{"start":12330,"length":6,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]}]],[1443,[{"start":588,"length":21,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmExecutionContext'. Did you mean to use 'import SwarmExecutionContext from \"./types.js\"' instead?","category":1,"code":2614},{"start":627,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":640,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":4379,"length":23,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":11014,"length":83,"code":2345,"category":1,"messageText":"Argument of type '{ namespace: string; type: string; }' is not assignable to parameter of type 'string'."},{"start":11133,"length":6,"code":2339,"category":1,"messageText":"Property 'length' does not exist on type 'MemoryEntry'."},{"start":15168,"length":4,"code":2322,"category":1,"messageText":"Type '\"aggregated-result\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":15708,"length":4,"code":2322,"category":1,"messageText":"Type '\"result-report\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]}]],[1444,[{"start":3104,"length":6,"code":2741,"category":1,"messageText":"Property 'success' is missing in type '{ output: any; artifacts: any; metadata: { agentId: string; agentType: AgentType; executionTime: number; targetDir: string; sparcPhase: any; quality: any; }; quality: any; completeness: any; accuracy: number; executionTime: number; resourcesUsed: { ...; }; validated: true; }' but required in type 'TaskResult'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":8326,"length":7,"messageText":"'success' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ output: any; artifacts: any; metadata: { agentId: string; agentType: AgentType; executionTime: number; targetDir: string; sparcPhase: any; quality: any; }; quality: any; completeness: any; accuracy: number; executionTime: number; resourcesUsed: { ...; }; validated: true; }' is not assignable to type 'TaskResult'."}}]],[1445,[{"start":19500,"length":5,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":19966,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1446,[{"start":11980,"length":8,"code":2339,"category":1,"messageText":{"messageText":"Property 'category' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'category' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":12011,"length":6,"code":2339,"category":1,"messageText":{"messageText":"Property 'source' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'source' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":32750,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1447,[{"start":29302,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Function' is not assignable to parameter of type '() => Promise<unknown>'.","category":1,"code":2345,"next":[{"messageText":"Type 'Function' provides no match for the signature '(): Promise<unknown>'.","category":1,"code":2658}]}}]],[1448,[{"start":8748,"length":8,"code":2339,"category":1,"messageText":{"messageText":"Property 'category' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'category' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":8814,"length":8,"code":2339,"category":1,"messageText":{"messageText":"Property 'category' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'category' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":13627,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":13739,"length":15,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":13847,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1449,[{"start":4081,"length":21,"messageText":"Cannot redeclare exported variable 'SelfHealingMechanisms'.","category":1,"code":2323},{"start":7688,"length":14,"code":2741,"category":1,"messageText":"Property 'dependencies' is missing in type '{ id: string; name: string; type: \"custom\"; target: string; parameters: { action: string; }; timeout: number; }' but required in type 'HealingAction'.","relatedInformation":[{"start":1250,"length":12,"messageText":"'dependencies' is declared here.","category":3,"code":2728},{"start":1277,"length":14,"messageText":"The expected type comes from property 'rollbackAction' which is declared here on type 'HealingAction'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ id: string; name: string; type: \"custom\"; target: string; parameters: { action: string; }; timeout: number; }' is not assignable to type 'HealingAction'."}},{"start":21724,"length":8,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'scenario' does not exist in type 'HealingScenario'."},{"start":21841,"length":10,"code":2339,"category":1,"messageText":"Property 'matchScore' does not exist on type 'HealingScenario'."},{"start":21856,"length":10,"code":2339,"category":1,"messageText":"Property 'matchScore' does not exist on type 'HealingScenario'."},{"start":21893,"length":8,"code":2339,"category":1,"messageText":"Property 'scenario' does not exist on type 'HealingScenario'."},{"start":25144,"length":8,"code":2339,"category":1,"messageText":{"messageText":"Property 'category' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'category' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":45549,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":47514,"length":7,"code":2339,"category":1,"messageText":"Property 'enabled' does not exist on type '{ successHistoryRetention: number; patternRecognition: boolean; adaptiveThresholds: boolean; predictiveHealing: boolean; }'."},{"start":48686,"length":21,"messageText":"Cannot redeclare exported variable 'SelfHealingMechanisms'.","category":1,"code":2323},{"start":48686,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'SelfHealingMechanisms'.","category":1,"code":2484},{"start":48712,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'HealingScenario'.","category":1,"code":2484},{"start":48737,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'HealingSession'.","category":1,"code":2484},{"start":48761,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'HealingResult'.","category":1,"code":2484}]],[1450,[{"start":4354,"length":24,"messageText":"Cannot redeclare exported variable 'ErrorRecoveryCoordinator'.","category":1,"code":2323},{"start":17206,"length":9,"code":2339,"category":1,"messageText":"Property 'detection' does not exist on type 'ErrorRecoveryCoordinator'."},{"start":23955,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":27726,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'RecoveryComponent | { id: string; type: \"unknown\"; name: string; status: \"failed\"; startTime: Date; error: string; dependencies: any[]; }' is not assignable to parameter of type 'RecoveryComponent'.","category":1,"code":2345,"next":[{"messageText":"Type '{ id: string; type: \"unknown\"; name: string; status: \"failed\"; startTime: Date; error: string; dependencies: any[]; }' is not assignable to type 'RecoveryComponent'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'type' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '\"unknown\"' is not assignable to type '\"monitoring\" | \"workflow\" | \"detection\" | \"resilience\" | \"self_healing\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '{ id: string; type: \"unknown\"; name: string; status: \"failed\"; startTime: Date; error: string; dependencies: any[]; }' is not assignable to type 'RecoveryComponent'."}}]}]}]}},{"start":39114,"length":21,"messageText":"This comparison appears to be unintentional because the types '\"monitoring\" | \"workflow\" | \"detection\" | \"resilience\" | \"self_healing\"' and '\"recovery\"' have no overlap.","category":1,"code":2367},{"start":47823,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":47917,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":48024,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":48807,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":49073,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":49347,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":50029,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":50088,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":50141,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":50209,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":51339,"length":24,"messageText":"Cannot redeclare exported variable 'ErrorRecoveryCoordinator'.","category":1,"code":2323},{"start":51339,"length":24,"messageText":"Export declaration conflicts with exported declaration of 'ErrorRecoveryCoordinator'.","category":1,"code":2484},{"start":51368,"length":24,"messageText":"Export declaration conflicts with exported declaration of 'ErrorRecoveryConfig'.","category":1,"code":2484},{"start":51397,"length":26,"messageText":"Export declaration conflicts with exported declaration of 'RecoveryOrchestration'.","category":1,"code":2484},{"start":51428,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'RecoveryResult'.","category":1,"code":2484},{"start":51452,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'CoordinationState'.","category":1,"code":2484}]],[1451,[{"start":4099,"length":30,"messageText":"Cannot redeclare exported variable 'ErrorRecoveryEffectivenessTest'.","category":1,"code":2323},{"start":22998,"length":8,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'accuracy' does not exist in type 'ComponentPerformance'."},{"start":23231,"length":11,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'successRate' does not exist in type 'ComponentPerformance'."},{"start":23565,"length":27,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'circuitBreakerEffectiveness' does not exist in type 'ComponentPerformance'."},{"start":23778,"length":13,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'alertAccuracy' does not exist in type 'ComponentPerformance'."},{"start":23979,"length":11,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'successRate' does not exist in type 'ComponentPerformance'."},{"start":24767,"length":27,"code":2339,"category":1,"messageText":"Property 'circuitBreakerEffectiveness' does not exist on type 'ComponentPerformance'."},{"start":24857,"length":19,"code":2339,"category":1,"messageText":"Property 'failoverSuccessRate' does not exist on type 'ComponentPerformance'."},{"start":24990,"length":13,"code":2339,"category":1,"messageText":"Property 'alertAccuracy' does not exist on type 'ComponentPerformance'."},{"start":25065,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'ComponentPerformance'."},{"start":30785,"length":8,"code":2339,"category":1,"messageText":"Property 'accuracy' does not exist on type 'ComponentPerformance'."},{"start":30933,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'ComponentPerformance'."},{"start":31073,"length":27,"code":2339,"category":1,"messageText":"Property 'circuitBreakerEffectiveness' does not exist on type 'ComponentPerformance'."},{"start":31230,"length":13,"code":2339,"category":1,"messageText":"Property 'alertAccuracy' does not exist on type 'ComponentPerformance'."},{"start":31378,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'ComponentPerformance'."},{"start":33227,"length":63,"messageText":"Operator '+' cannot be applied to types 'number' and 'number | { achieved: Record<string, boolean>; gaps: Record<string, number>; }'.","category":1,"code":2365},{"start":35254,"length":30,"messageText":"Cannot redeclare exported variable 'ErrorRecoveryEffectivenessTest'.","category":1,"code":2323},{"start":35254,"length":30,"messageText":"Export declaration conflicts with exported declaration of 'ErrorRecoveryEffectivenessTest'.","category":1,"code":2484},{"start":35289,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'TestConfig'.","category":1,"code":2484},{"start":35309,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'TestScenario'.","category":1,"code":2484},{"start":35331,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'TestResults'.","category":1,"code":2484}]],[1631,[{"start":1712,"length":7,"code":2339,"category":1,"messageText":"Property 'default' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/communication/ultra-fast-communication-bus\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":14809,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type '\"low\" | \"medium\" | \"high\" | \"critical\" | \"urgent\"' is not assignable to type '\"low\" | \"medium\" | \"high\" | \"critical\"'.","category":1,"code":2322,"next":[{"messageText":"Type '\"urgent\"' is not assignable to type '\"low\" | \"medium\" | \"high\" | \"critical\"'.","category":1,"code":2322}]},"relatedInformation":[{"start":3462,"length":8,"messageText":"The expected type comes from property 'priority' which is declared here on type 'CoordinationEvent'","category":3,"code":6500}]}]],[1646,[{"start":340,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../coordination/validation-schemas.js'?","category":1,"code":2835}]],[1648,[{"start":18414,"length":10,"messageText":"Block-scoped variable 'screenshot' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":18188,"length":10,"messageText":"'screenshot' is declared here.","category":3,"code":2728}]}]],[1649,[{"start":4327,"length":9,"code":2339,"category":1,"messageText":"Property 'watchFile' does not exist on type 'typeof import(\"node:fs/promises\")'."},{"start":15078,"length":11,"code":2339,"category":1,"messageText":"Property 'unwatchFile' does not exist on type 'typeof import(\"node:fs/promises\")'."}]],[1650,[{"start":62,"length":16,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/logger.js'?","category":1,"code":2835},{"start":107,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/helpers.js'?","category":1,"code":2835},{"start":160,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../agents/lifecycle-manager.js'?","category":1,"code":2835},{"start":241,"length":33,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../lifecycle/dependency-tracker.js'?","category":1,"code":2835},{"start":454,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":2243,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'type' does not exist in type 'AdaptiveCoordinatorConfig'."},{"start":3211,"length":15,"code":2339,"category":1,"messageText":"Property 'memoryNamespace' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":4787,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":10233,"length":21,"code":2339,"category":1,"messageText":"Property 'performanceThresholds' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":11474,"length":21,"code":2339,"category":1,"messageText":"Property 'performanceThresholds' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":12105,"length":21,"code":2339,"category":1,"messageText":"Property 'performanceThresholds' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":25402,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":26967,"length":8,"code":2339,"category":1,"messageText":"Property 'timeouts' does not exist on type 'AdaptiveCoordinatorConfig'."}]],[1652,[{"start":4479,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":10550,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":4479,"length":9,"code":2416,"category":1,"messageText":{"messageText":"Property 'isRunning' in type 'EnhancedHierarchicalCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'boolean' is not assignable to type '() => boolean'.","category":1,"code":2322}]}},{"start":5284,"length":45,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":8319,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":10550,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":10550,"length":9,"code":2416,"category":1,"messageText":{"messageText":"Property 'isRunning' in type 'EnhancedHierarchicalCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'boolean' is not assignable to type '() => boolean'.","category":1,"code":2322}]}},{"start":26486,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":27536,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":27903,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":27956,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":29787,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":30416,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":31381,"length":23,"code":2741,"category":1,"messageText":"Property 'taskSlots' is missing in type '{ cpu: number; memory: number; bandwidth: number; delegatedTasks: number; }' but required in type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'.","relatedInformation":[{"start":3486,"length":9,"messageText":"'taskSlots' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ cpu: number; memory: number; bandwidth: number; delegatedTasks: number; }' is not assignable to type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."}},{"start":82106,"length":26,"messageText":"Export declaration conflicts with exported declaration of 'EnhancedHierarchicalConfig'.","category":1,"code":2484}]],[1653,[{"start":3592,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":9815,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":1237,"length":18,"code":2430,"category":1,"messageText":{"messageText":"Interface 'EnhancedMeshConfig' incorrectly extends interface 'TopologyConfiguration'.","category":1,"code":2430,"next":[{"messageText":"Types of property 'faultTolerance' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'ByzantineFaultToleranceConfig' is not assignable to type 'FaultToleranceLevel'.","category":1,"code":2322}]}]}},{"start":3187,"length":6,"code":2416,"category":1,"messageText":{"messageText":"Property 'config' in type 'EnhancedMeshCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'EnhancedMeshConfig' is not assignable to type 'TopologyConfiguration'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'faultTolerance' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'ByzantineFaultToleranceConfig' is not assignable to type 'FaultToleranceLevel'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type 'EnhancedMeshConfig' is not assignable to type 'TopologyConfiguration'."}}]}]}]}},{"start":3592,"length":9,"code":2416,"category":1,"messageText":{"messageText":"Property 'isRunning' in type 'EnhancedMeshCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'boolean' is not assignable to type '() => boolean'.","category":1,"code":2322}]}},{"start":4246,"length":37,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":5160,"length":13,"messageText":"An object literal cannot have multiple properties with the same name.","category":1,"code":1117},{"start":5295,"length":14,"messageText":"An object literal cannot have multiple properties with the same name.","category":1,"code":1117},{"start":7468,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":9815,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":9815,"length":9,"code":2416,"category":1,"messageText":{"messageText":"Property 'isRunning' in type 'EnhancedMeshCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'boolean' is not assignable to type '() => boolean'.","category":1,"code":2322}]}},{"start":46783,"length":10,"messageText":"Spread types may only be created from object types.","category":1,"code":2698},{"start":54811,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'EnhancedMeshConfig'.","category":1,"code":2484}]],[1654,[{"start":2845,"length":36,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4909,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":5454,"length":24,"code":2739,"category":1,"messageText":"Type 'CommunicationBridge' is missing the following properties from type 'ICommunicationBridge': translateProtocol, getBridgeStatus, synchronizeState, resolveConflicts","canonicalHead":{"code":2322,"messageText":"Type 'CommunicationBridge' is not assignable to type 'ICommunicationBridge'."}},{"start":5709,"length":10,"code":2339,"category":1,"messageText":"Property 'initialize' does not exist on type 'ICommunicationBridge'."},{"start":6734,"length":8,"code":2339,"category":1,"messageText":"Property 'shutdown' does not exist on type 'ICommunicationBridge'."},{"start":7886,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type 'EnhancedMeshCoordinator' is not assignable to type 'ITopologyCoordinator'.","category":1,"code":2322,"next":[{"messageText":"The types of 'config.faultTolerance' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type 'ByzantineFaultToleranceConfig' is not assignable to type 'FaultToleranceLevel'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type 'EnhancedMeshCoordinator' is not assignable to type 'ITopologyCoordinator'."}}]}]}},{"start":7928,"length":126,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ managerId: string; communicationBridge: ICommunicationBridge; type: TopologyType; name: string; strategy: CoordinationStrategy; ... 9 more ...; memoryNamespace: string; }' is not assignable to parameter of type 'Partial<EnhancedMeshConfig>'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'loadBalancing' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'string' is not assignable to type '{ strategy: \"round-robin\" | \"least-loaded\" | \"capability-weighted\"; rebalanceInterval: number; loadThreshold: number; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type '{ strategy: \"round-robin\" | \"least-loaded\" | \"capability-weighted\"; rebalanceInterval: number; loadThreshold: number; }'.","category":1,"code":2322}]}]}]}},{"start":8245,"length":11,"code":2741,"category":1,"messageText":"Property 'broadcastMessage' is missing in type 'EnhancedHierarchicalCoordinator' but required in type 'ITopologyCoordinator'.","relatedInformation":[{"file":"../src/topology/types.ts","start":7585,"length":80,"messageText":"'broadcastMessage' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type 'EnhancedHierarchicalCoordinator' is not assignable to type 'ITopologyCoordinator'."}},{"start":8561,"length":11,"code":2740,"category":1,"messageText":"Type 'AdaptiveCoordinator' is missing the following properties from type 'ITopologyCoordinator': getAgent, getAllAgents, coordinateTask, delegateTask, and 7 more.","canonicalHead":{"code":2322,"messageText":"Type 'AdaptiveCoordinator' is not assignable to type 'ITopologyCoordinator'."}},{"start":8632,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'managerId' does not exist in type 'Partial<AdaptiveCoordinatorConfig>'."},{"start":17935,"length":19,"messageText":"Operator '>' cannot be applied to types 'unknown' and 'number'.","category":1,"code":2365},{"start":18013,"length":24,"messageText":"Operator '<' cannot be applied to types 'unknown' and 'number'.","category":1,"code":2365},{"start":18041,"length":28,"messageText":"Operator '>' cannot be applied to types 'unknown' and 'number'.","category":1,"code":2365},{"start":18801,"length":8,"code":2741,"category":1,"messageText":"Property 'heartbeat' is missing in type '{ coordination: number; completion: number; adaptation: number; }' but required in type '{ coordination: number; completion: number; heartbeat: number; }'.","relatedInformation":[{"file":"../src/topology/types.ts","start":1434,"length":9,"messageText":"'heartbeat' is declared here.","category":3,"code":2728},{"file":"../src/topology/types.ts","start":1368,"length":8,"messageText":"The expected type comes from property 'timeouts' which is declared here on type 'TopologyConfiguration'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ coordination: number; completion: number; adaptation: number; }' is not assignable to type '{ coordination: number; completion: number; heartbeat: number; }'."}},{"start":31635,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'TopologyManagerConfig'.","category":1,"code":2484}]],[1664,[{"start":365,"length":32,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './todowrite-batching-validator.js'?","category":1,"code":2835},{"start":673,"length":25,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './todowrite-integration.js'?","category":1,"code":2835}]],[1666,[{"start":315,"length":32,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './todowrite-batching-validator.js'?","category":1,"code":2835}]],[1667,[{"start":31167,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31210,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31271,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31334,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31382,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31447,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."}]],[1669,[{"start":10923,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type '\"gt\" | \"lt\" | \"eq\" | \"gte\" | \"lte\" | \"ne\" | \"change\" | \"rate\"' is not assignable to type '\"gt\" | \"lt\" | \"eq\" | \"gte\" | \"lte\" | \"ne\"'.","category":1,"code":2322,"next":[{"messageText":"Type '\"change\"' is not assignable to type '\"gt\" | \"lt\" | \"eq\" | \"gte\" | \"lte\" | \"ne\"'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/verification/telemetry.ts","start":4837,"length":8,"messageText":"The expected type comes from property 'operator' which is declared here on type 'AlertThreshold'","category":3,"code":6500}]},{"start":15453,"length":15,"code":2339,"category":1,"messageText":"Property 'escalationLevel' does not exist on type 'TruthAlert'."},{"start":15510,"length":15,"code":2339,"category":1,"messageText":"Property 'escalationLevel' does not exist on type 'TruthAlert'."},{"start":21595,"length":12,"code":2339,"category":1,"messageText":"Property 'acknowledged' does not exist on type 'TruthAlert'."},{"start":21626,"length":14,"code":2339,"category":1,"messageText":"Property 'acknowledgedAt' does not exist on type 'TruthAlert'."},{"start":21665,"length":14,"code":2339,"category":1,"messageText":"Property 'acknowledgedBy' does not exist on type 'TruthAlert'."},{"start":25029,"length":12,"code":2339,"category":1,"messageText":"Property 'acknowledged' does not exist on type 'TruthAlert'."},{"start":25906,"length":15,"code":2339,"category":1,"messageText":"Property 'escalationLevel' does not exist on type 'TruthAlert'."},{"start":28756,"length":5,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'TruthAlert' is not assignable to parameter of type 'TruthMetric'.","category":1,"code":2345,"next":[{"messageText":"Type 'TruthAlert' is missing the following properties from type 'TruthMetric': agentId, taskId, metricType, value, and 3 more.","category":1,"code":2740}]}},{"start":30095,"length":12,"code":2339,"category":1,"messageText":"Property 'acknowledged' does not exist on type 'TruthAlert'."}]],[1678,[{"start":17299,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type 'unknown[]' is not assignable to type 'string[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'unknown' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/verification/telemetry.ts","start":6581,"length":14,"messageText":"The expected type comes from property 'affectedAgents' which is declared here on type 'CriticalIssue'","category":3,"code":6500}]}]],[1680,[{"start":350,"length":15,"messageText":"Module '\"../crdt/types.js\"' has no exported member 'BenchmarkResult'.","category":1,"code":2305}]],[1681,[{"start":329,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './index.js'?","category":1,"code":2835},{"start":439,"length":14,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './middleware.js'?","category":1,"code":2835},{"start":538,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './tests.js'?","category":1,"code":2835},{"start":605,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":713,"length":24,"messageText":"Cannot redeclare exported variable 'BasicSecurityIntegration'.","category":1,"code":2323},{"start":4023,"length":27,"messageText":"Cannot redeclare exported variable 'AdvancedSecurityIntegration'.","category":1,"code":2323},{"start":7058,"length":30,"messageText":"Cannot redeclare exported variable 'ClaudeFlowAgentSecurityWrapper'.","category":1,"code":2323},{"start":10019,"length":22,"messageText":"Cannot redeclare exported variable 'SecurityTestingExample'.","category":1,"code":2323},{"start":13293,"length":27,"messageText":"Cannot redeclare exported variable 'ProductionDeploymentExample'.","category":1,"code":2323},{"start":17345,"length":24,"messageText":"Cannot redeclare exported variable 'BasicSecurityIntegration'.","category":1,"code":2323},{"start":17345,"length":24,"messageText":"Export declaration conflicts with exported declaration of 'BasicSecurityIntegration'.","category":1,"code":2484},{"start":17373,"length":27,"messageText":"Cannot redeclare exported variable 'AdvancedSecurityIntegration'.","category":1,"code":2323},{"start":17373,"length":27,"messageText":"Export declaration conflicts with exported declaration of 'AdvancedSecurityIntegration'.","category":1,"code":2484},{"start":17404,"length":30,"messageText":"Cannot redeclare exported variable 'ClaudeFlowAgentSecurityWrapper'.","category":1,"code":2323},{"start":17404,"length":30,"messageText":"Export declaration conflicts with exported declaration of 'ClaudeFlowAgentSecurityWrapper'.","category":1,"code":2484},{"start":17438,"length":22,"messageText":"Cannot redeclare exported variable 'SecurityTestingExample'.","category":1,"code":2323},{"start":17438,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'SecurityTestingExample'.","category":1,"code":2484},{"start":17464,"length":27,"messageText":"Cannot redeclare exported variable 'ProductionDeploymentExample'.","category":1,"code":2323},{"start":17464,"length":27,"messageText":"Export declaration conflicts with exported declaration of 'ProductionDeploymentExample'.","category":1,"code":2484}]],[1682,[{"start":265,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":357,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":455,"length":25,"messageText":"Cannot redeclare exported variable 'SecurityMiddlewareManager'.","category":1,"code":2323},{"start":2930,"length":28,"messageText":"Cannot redeclare exported variable 'ThreatIntelligenceMiddleware'.","category":1,"code":2323},{"start":9217,"length":18,"messageText":"Cannot redeclare exported variable 'IPFilterMiddleware'.","category":1,"code":2323},{"start":11765,"length":25,"messageText":"Cannot redeclare exported variable 'SecurityLoggingMiddleware'.","category":1,"code":2323},{"start":14600,"length":31,"messageText":"Cannot redeclare exported variable 'PerformanceMonitoringMiddleware'.","category":1,"code":2323},{"start":18697,"length":30,"messageText":"Cannot redeclare exported variable 'ComplianceMonitoringMiddleware'.","category":1,"code":2323},{"start":22681,"length":25,"messageText":"Cannot redeclare exported variable 'SecurityMiddlewareManager'.","category":1,"code":2323},{"start":22681,"length":25,"messageText":"Export declaration conflicts with exported declaration of 'SecurityMiddlewareManager'.","category":1,"code":2484},{"start":22710,"length":28,"messageText":"Cannot redeclare exported variable 'ThreatIntelligenceMiddleware'.","category":1,"code":2323},{"start":22710,"length":28,"messageText":"Export declaration conflicts with exported declaration of 'ThreatIntelligenceMiddleware'.","category":1,"code":2484},{"start":22742,"length":18,"messageText":"Cannot redeclare exported variable 'IPFilterMiddleware'.","category":1,"code":2323},{"start":22742,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'IPFilterMiddleware'.","category":1,"code":2484},{"start":22764,"length":25,"messageText":"Cannot redeclare exported variable 'SecurityLoggingMiddleware'.","category":1,"code":2323},{"start":22764,"length":25,"messageText":"Export declaration conflicts with exported declaration of 'SecurityLoggingMiddleware'.","category":1,"code":2484},{"start":22793,"length":31,"messageText":"Cannot redeclare exported variable 'PerformanceMonitoringMiddleware'.","category":1,"code":2323},{"start":22793,"length":31,"messageText":"Export declaration conflicts with exported declaration of 'PerformanceMonitoringMiddleware'.","category":1,"code":2484},{"start":22828,"length":30,"messageText":"Cannot redeclare exported variable 'ComplianceMonitoringMiddleware'.","category":1,"code":2323},{"start":22828,"length":30,"messageText":"Export declaration conflicts with exported declaration of 'ComplianceMonitoringMiddleware'.","category":1,"code":2484}]],[1685,[{"start":253,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './index.js'?","category":1,"code":2835},{"start":329,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './tests.js'?","category":1,"code":2835},{"start":412,"length":14,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './middleware.js'?","category":1,"code":2835},{"start":464,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835}]],[1688,[{"start":7915,"length":20,"code":2339,"category":1,"messageText":"Property 'analyzeDistributions' does not exist on type 'SystemTruthTracker'."},{"start":8918,"length":10,"code":2339,"category":1,"messageText":"Property 'throughput' does not exist on type 'SystemTruthMetrics'."},{"start":9268,"length":7,"code":2339,"category":1,"messageText":"Property 'latency' does not exist on type 'SystemTruthMetrics'."},{"start":9502,"length":9,"code":2339,"category":1,"messageText":"Property 'errorRate' does not exist on type 'SystemTruthMetrics'."},{"start":9696,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'SystemTruthMetrics'."},{"start":15620,"length":7,"code":2339,"category":1,"messageText":"Property 'latency' does not exist on type 'SystemTruthMetrics'."},{"start":15666,"length":10,"code":2339,"category":1,"messageText":"Property 'throughput' does not exist on type 'SystemTruthMetrics'."},{"start":15714,"length":9,"code":2339,"category":1,"messageText":"Property 'errorRate' does not exist on type 'SystemTruthMetrics'."},{"start":19649,"length":9,"code":2339,"category":1,"messageText":"Property 'errorRate' does not exist on type 'SystemTruthMetrics'."},{"start":22835,"length":10,"code":2339,"category":1,"messageText":"Property 'throughput' does not exist on type 'SystemTruthMetrics'."},{"start":22985,"length":9,"code":2339,"category":1,"messageText":"Property 'errorRate' does not exist on type 'SystemTruthMetrics'."},{"start":23219,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'SystemTruthMetrics'."},{"start":23288,"length":7,"code":2339,"category":1,"messageText":"Property 'latency' does not exist on type 'SystemTruthMetrics'."},{"start":23362,"length":7,"code":2339,"category":1,"messageText":"Property 'latency' does not exist on type 'SystemTruthMetrics'."}]],[1690,[{"start":304,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":390,"length":14,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './middleware.js'?","category":1,"code":2835},{"start":464,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":558,"length":17,"messageText":"Cannot redeclare exported variable 'SecurityTestUtils'.","category":1,"code":2323},{"start":4592,"length":23,"messageText":"Cannot redeclare exported variable 'PenetrationTestingSuite'.","category":1,"code":2323},{"start":13906,"length":16,"messageText":"Cannot redeclare exported variable 'LoadTestingSuite'.","category":1,"code":2323},{"start":19152,"length":23,"messageText":"Cannot redeclare exported variable 'SecurityValidationSuite'.","category":1,"code":2323},{"start":23196,"length":17,"messageText":"Cannot redeclare exported variable 'SecurityTestUtils'.","category":1,"code":2323},{"start":23196,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'SecurityTestUtils'.","category":1,"code":2484},{"start":23215,"length":23,"messageText":"Cannot redeclare exported variable 'PenetrationTestingSuite'.","category":1,"code":2323},{"start":23215,"length":23,"messageText":"Export declaration conflicts with exported declaration of 'PenetrationTestingSuite'.","category":1,"code":2484},{"start":23240,"length":16,"messageText":"Cannot redeclare exported variable 'LoadTestingSuite'.","category":1,"code":2323},{"start":23240,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'LoadTestingSuite'.","category":1,"code":2484},{"start":23258,"length":23,"messageText":"Cannot redeclare exported variable 'SecurityValidationSuite'.","category":1,"code":2323},{"start":23258,"length":23,"messageText":"Export declaration conflicts with exported declaration of 'SecurityValidationSuite'.","category":1,"code":2484}]],[1691,[{"start":827,"length":28,"messageText":"Cannot find module './agent-claim-validator.js' or its corresponding type declarations.","category":1,"code":2307},{"start":895,"length":30,"messageText":"Cannot find module './integration-test-runner.js' or its corresponding type declarations.","category":1,"code":2307},{"start":964,"length":21,"messageText":"Cannot find module './state-snapshot.js' or its corresponding type declarations.","category":1,"code":2307},{"start":7381,"length":28,"code":2820,"category":1,"messageText":"Type '\"paused\"' is not assignable to type 'VerificationStatus'. Did you mean '\"passed\"'?"},{"start":7706,"length":41,"messageText":"This comparison appears to be unintentional because the types 'VerificationStatus' and '\"paused\"' have no overlap.","category":1,"code":2367},{"start":13804,"length":42,"messageText":"This comparison appears to be unintentional because the types 'VerificationStatus' and '\"paused\"' have no overlap.","category":1,"code":2367},{"start":20102,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type 'TruthEvidence[]' is not assignable to type 'VerificationEvidence[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'TruthEvidence' is missing the following properties from type 'VerificationEvidence': data, reliability","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'TruthEvidence' is not assignable to type 'VerificationEvidence'."}}]},"relatedInformation":[{"start":34239,"length":8,"messageText":"The expected type comes from property 'evidence' which is declared here on type 'ValidatorResult'","category":3,"code":6500}]}]],[1693,[{"start":167,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './engine/wasm-engine.js'?","category":1,"code":2835},{"start":229,"length":34,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './processors/real-time-processor.js'?","category":1,"code":2835},{"start":309,"length":45,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './transformers/code-transformation-pipeline.js'?","category":1,"code":2835},{"start":392,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './performance/performance-monitor.js'?","category":1,"code":2835},{"start":465,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './wasm-ast-coordinator.js'?","category":1,"code":2835},{"start":518,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types/ast-types.js'?","category":1,"code":2835},{"start":590,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './tests/wasm-ast-test-suite.js'?","category":1,"code":2835},{"start":746,"length":18,"messageText":"Cannot find name 'WASMASTCoordinator'.","category":1,"code":2304},{"start":852,"length":10,"messageText":"Cannot find name 'WASMEngine'.","category":1,"code":2304},{"start":937,"length":18,"messageText":"Cannot find name 'PerformanceMonitor'.","category":1,"code":2304},{"start":1893,"length":18,"messageText":"No value exists in scope for the shorthand property 'WASMASTCoordinator'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":1916,"length":10,"messageText":"No value exists in scope for the shorthand property 'WASMEngine'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":1931,"length":20,"messageText":"No value exists in scope for the shorthand property 'RealTimeASTProcessor'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":1956,"length":26,"messageText":"No value exists in scope for the shorthand property 'CodeTransformationPipeline'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":1987,"length":18,"messageText":"No value exists in scope for the shorthand property 'PerformanceMonitor'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":2010,"length":16,"messageText":"No value exists in scope for the shorthand property 'WASMASTTestSuite'. Either declare one or provide an initializer.","category":1,"code":18004}]],[1694,[{"start":192,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './engine/wasm-engine.js'?","category":1,"code":2835},{"start":254,"length":34,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './processors/real-time-processor.js'?","category":1,"code":2835},{"start":334,"length":45,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './transformers/code-transformation-pipeline.js'?","category":1,"code":2835},{"start":417,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './performance/performance-monitor.js'?","category":1,"code":2835},{"start":620,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types/ast-types.js'?","category":1,"code":2835}]],[1695,[{"start":176,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../index.js'?","category":1,"code":2835},{"start":5461,"length":7,"code":2339,"category":1,"messageText":"Property 'success' does not exist on type 'unknown'."}]],[1696,[{"start":364,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835},{"start":1511,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Uint8Array<ArrayBufferLike>' is not assignable to parameter of type 'BufferSource'.","category":1,"code":2345,"next":[{"messageText":"Type 'Uint8Array<ArrayBufferLike>' is not assignable to type 'ArrayBufferView<ArrayBuffer>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'buffer' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'ArrayBufferLike' is not assignable to type 'ArrayBuffer'.","category":1,"code":2322,"next":[{"messageText":"Type 'SharedArrayBuffer' is not assignable to type 'ArrayBuffer'.","category":1,"code":2322,"next":[{"messageText":"Types of property '[Symbol.toStringTag]' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '\"SharedArrayBuffer\"' is not assignable to type '\"ArrayBuffer\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type 'SharedArrayBuffer' is not assignable to type 'ArrayBuffer'."}}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'Uint8Array<ArrayBufferLike>' is not assignable to type 'ArrayBufferView<ArrayBuffer>'."}}]}]}]}}]],[1697,[{"start":278,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835}]],[1698,[{"start":257,"length":23,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../engine/wasm-engine.js'?","category":1,"code":2835},{"start":485,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835},{"start":10130,"length":7,"code":2339,"category":1,"messageText":"Property 'success' does not exist on type 'unknown'."}]],[1699,[{"start":138,"length":25,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../wasm-ast-coordinator.js'?","category":1,"code":2835},{"start":193,"length":23,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../engine/wasm-engine.js'?","category":1,"code":2835},{"start":256,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../processors/real-time-processor.js'?","category":1,"code":2835},{"start":337,"length":46,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../transformers/code-transformation-pipeline.js'?","category":1,"code":2835},{"start":421,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../performance/performance-monitor.js'?","category":1,"code":2835},{"start":585,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835},{"start":6261,"length":7,"code":2339,"category":1,"messageText":"Property 'success' does not exist on type 'unknown'."}]],[1700,[{"start":183,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../processors/real-time-processor.js'?","category":1,"code":2835},{"start":350,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835}]],[1702,[{"start":1075,"length":6,"messageText":"Namespace 'WebSocket' has no exported member 'Server'.","category":1,"code":2694},{"start":1732,"length":6,"code":2339,"category":1,"messageText":"Property 'Server' does not exist on type 'typeof WebSocket'."}]],[1705,[{"start":102,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './feature-lifecycle-manager.js'?","category":1,"code":2835},{"start":182,"length":47,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../testing-integration/continuous-test-runner.js'?","category":1,"code":2835},{"start":283,"length":42,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../quality-gates/automated-review-system.js'?","category":1,"code":2835},{"start":387,"length":31,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './progressive-rollout-manager.js'?","category":1,"code":2835},{"start":466,"length":41,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../monitoring/real-time-feedback-system.js'?","category":1,"code":2835},{"start":561,"length":47,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../testing-integration/chrome-mcp-integration.js'?","category":1,"code":2835},{"start":670,"length":34,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './fullstack-coordination-manager.js'?","category":1,"code":2835},{"start":753,"length":30,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../rollback/recovery-manager.js'?","category":1,"code":2835}]]],"affectedFilesPendingEmit":[537,287,444,53,445,446,447,476,477,478,479,480,482,483,484,485,486,481,487,488,489,490,491,460,459,461,55,474,475,473,493,494,503,502,504,532,533,534,535,536,538,539,540,541,542,545,550,549,551,543,544,558,559,556,557,560,554,561,562,563,1185,1186,1184,1187,1188,1189,1190,1193,1191,1192,963,1101,1195,1196,938,1197,1198,1201,1104,1100,704,1202,1203,1204,1106,961,949,1225,958,960,959,950,951,957,952,953,1099,1086,1205,1087,962,1206,1107,638,697,746,1207,1165,1208,747,935,639,743,706,742,731,732,733,741,734,707,745,1092,1209,635,1103,1211,1085,1221,936,1223,1105,964,1231,1228,1226,1233,1234,1227,1229,1232,1230,736,965,1093,966,1167,1235,1240,1236,1239,1238,1237,1241,1178,1179,737,1180,1079,1078,1166,739,1102,1032,1050,1052,1053,1044,1049,1034,1054,1075,1046,1045,1072,1070,1068,1067,1066,1063,1069,1061,1065,1062,1064,956,1058,1057,1055,982,987,972,979,980,978,976,971,981,967,1000,983,1002,1006,984,994,998,997,995,996,977,970,968,969,975,986,705,985,974,973,1001,990,992,993,991,989,988,1036,1009,1008,1074,1037,1071,1095,1031,1030,1039,1010,1023,1011,1013,1022,1015,1026,1028,1016,1021,1017,1018,1014,1025,1020,1019,1027,1012,1024,1029,1088,1040,1041,1035,1098,1051,1042,1073,1038,1043,1033,1048,1097,1047,1096,1094,740,1181,1182,1242,1243,1244,738,1090,1245,1246,1059,1091,1247,1089,1060,1183,1249,1255,1256,1259,1260,1261,1254,1263,1264,462,1257,1265,1258,1220,1212,1266,1278,1277,496,1267,1282,1272,1283,1273,1269,1281,1199,1200,1279,1274,1280,1271,1268,1270,1275,1276,725,632,521,1284,570,520,1285,547,633,522,1286,634,519,1287,1288,602,1289,1290,631,548,1291,524,606,629,517,523,607,603,604,600,599,516,630,515,575,1294,1293,577,1295,583,581,582,1297,627,1296,1210,1298,576,573,572,571,1292,1299,625,628,626,598,518,1300,1217,567,50,1301,568,49,569,730,1302,56,744,1303,1327,1328,1329,1330,1331,702,703,700,699,1332,698,701,1333,1340,1334,1339,1337,1338,1336,1335,942,945,939,948,944,1224,943,1341,947,940,946,941,1630,1056,1342,1343,57,1344,1350,1349,1351,458,1352,1169,1168,723,1360,726,1367,1372,1375,1368,724,1371,1370,1369,1361,1364,1363,1366,1362,1365,721,728,1376,1377,729,722,1359,727,720,714,719,715,1194,954,449,453,452,454,52,955,1005,1251,1004,455,1248,456,1252,1250,1378,1003,451,546,1253,1007,1379,641,656,695,658,657,696,640,1380,1389,1385,1387,1390,1386,1388,1382,1381,1383,1393,1394,1392,1391,1395,1384,1348,1396,1397,1399,1398,501,499,500,1108,1164,1113,1400,1077,1076,1401,1403,1405,1404,1406,1407,1414,1409,1408,1412,1411,1402,1413,1410,1415,1416,531,1417,1418,1419,750,751,1420,1171,1177,1172,1173,1174,1175,1170,1176,1421,1422,1423,1424,1425,1456,1457,1628,1629,1626,1625,1627,1631,1632,1633,1634,1635,1455,1641,1636,1642,1640,1639,1638,1637,1427,1428,529,605,530,1429,1445,1446,1450,1448,1447,1449,1451,1430,1426,1431,1440,528,1441,1442,1433,469,471,463,1439,472,470,1438,1435,1434,1437,1436,1443,1444,526,525,1432,1452,51,1453,1643,1345,1347,1644,1346,708,710,709,713,711,712,1645,1646,1648,1649,1647,1650,1262,1652,1653,1654,1651,457,54,1657,1659,1661,498,448,601,937,48,1112,552,553,999,1114,527,555,497,47,1216,1219,1218,1662,1663,1215,1163,1664,574,1665,1666,1668,1669,1692,1673,1671,1672,1675,1676,1677,1678,1680,1681,1674,1222,1670,1679,1682,1683,1684,1685,1686,1687,1688,1667,1689,1690,1214,1213,1691,1695,1696,1693,1697,1698,1699,1700,1701,1694,1454,1702,1703,1704,1705,1706],"version":"5.9.2"}
|
|
1
|
+
{"fileNames":["../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/utils/types.ts","../src/utils/helpers.ts","../src/core/logger.ts","../src/core/event-bus.ts","../src/swarm/types.ts","../src/memory/secret-detector.ts","../src/memory/distributed-memory.ts","../src/agents/agent-manager.ts","../src/types/agent-types.ts","../src/agents/simple-agent.ts","../src/core/project-manager.ts","../src/index.ts","../node_modules/chalk/source/vendor/ansi-styles/index.d.ts","../node_modules/chalk/source/vendor/supports-color/index.d.ts","../node_modules/chalk/source/index.d.ts","../node_modules/@inquirer/core/dist/esm/lib/key.d.ts","../node_modules/@inquirer/core/dist/esm/lib/errors.d.ts","../node_modules/@inquirer/type/dist/esm/inquirer.d.ts","../node_modules/@inquirer/type/dist/esm/utils.d.ts","../node_modules/@inquirer/type/dist/esm/index.d.ts","../node_modules/@inquirer/core/dist/esm/lib/theme.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-prefix.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-state.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-effect.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-memo.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-ref.d.ts","../node_modules/@inquirer/core/dist/esm/lib/use-keypress.d.ts","../node_modules/@inquirer/core/dist/esm/lib/make-theme.d.ts","../node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.d.ts","../node_modules/@inquirer/core/dist/esm/lib/create-prompt.d.ts","../node_modules/@inquirer/core/dist/esm/lib/Separator.d.ts","../node_modules/@inquirer/core/dist/esm/index.d.ts","../node_modules/@inquirer/checkbox/dist/esm/index.d.ts","../node_modules/@inquirer/external-editor/dist/esm/errors/CreateFileError.d.ts","../node_modules/@inquirer/external-editor/dist/esm/errors/LaunchEditorError.d.ts","../node_modules/@inquirer/external-editor/dist/esm/errors/ReadFileError.d.ts","../node_modules/@inquirer/external-editor/dist/esm/errors/RemoveFileError.d.ts","../node_modules/@inquirer/external-editor/dist/esm/index.d.ts","../node_modules/@inquirer/editor/dist/esm/index.d.ts","../node_modules/@inquirer/confirm/dist/esm/index.d.ts","../node_modules/@inquirer/input/dist/esm/index.d.ts","../node_modules/@inquirer/number/dist/esm/index.d.ts","../node_modules/@inquirer/expand/dist/esm/index.d.ts","../node_modules/@inquirer/rawlist/dist/esm/index.d.ts","../node_modules/@inquirer/password/dist/esm/index.d.ts","../node_modules/@inquirer/search/dist/esm/index.d.ts","../node_modules/@inquirer/select/dist/esm/index.d.ts","../node_modules/@inquirer/prompts/dist/esm/index.d.ts","../node_modules/rxjs/dist/types/internal/Subscription.d.ts","../node_modules/rxjs/dist/types/internal/Subscriber.d.ts","../node_modules/rxjs/dist/types/internal/Operator.d.ts","../node_modules/rxjs/dist/types/internal/Observable.d.ts","../node_modules/rxjs/dist/types/internal/types.d.ts","../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts","../node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts","../node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/catchError.d.ts","../node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts","../node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts","../node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts","../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts","../node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts","../node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts","../node_modules/rxjs/dist/types/internal/operators/endWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts","../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../node_modules/rxjs/dist/types/internal/Subject.d.ts","../node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts","../node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts","../node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts","../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts","../node_modules/rxjs/dist/types/internal/Notification.d.ts","../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts","../node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts","../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts","../node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts","../node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts","../node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts","../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/refCount.d.ts","../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts","../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts","../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts","../node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts","../node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts","../node_modules/rxjs/dist/types/internal/operators/startWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts","../node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts","../node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts","../node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts","../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts","../node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts","../node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts","../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts","../node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts","../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts","../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../node_modules/rxjs/dist/types/internal/operators/toArray.d.ts","../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts","../node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts","../node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts","../node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts","../node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts","../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts","../node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts","../node_modules/rxjs/dist/types/operators/index.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts","../node_modules/rxjs/dist/types/internal/Scheduler.d.ts","../node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts","../node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts","../node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts","../node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts","../node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts","../node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts","../node_modules/rxjs/dist/types/testing/index.d.ts","../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts","../node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts","../node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts","../node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts","../node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts","../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../node_modules/rxjs/dist/types/internal/util/isObservable.d.ts","../node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts","../node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts","../node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts","../node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts","../node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts","../node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts","../node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts","../node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts","../node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts","../node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts","../node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts","../node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts","../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts","../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts","../node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts","../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts","../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../node_modules/rxjs/dist/types/internal/observable/throwError.d.ts","../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../node_modules/rxjs/dist/types/internal/config.d.ts","../node_modules/rxjs/dist/types/index.d.ts","../node_modules/inquirer/dist/esm/types.d.ts","../node_modules/inquirer/dist/esm/ui/prompt.d.ts","../node_modules/inquirer/dist/esm/index.d.ts","../node_modules/cli-table3/index.d.ts","../src/adapters/cliffy-node.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/minipass/dist/esm/index.d.ts","../node_modules/lru-cache/dist/esm/index.d.ts","../node_modules/path-scurry/dist/esm/index.d.ts","../node_modules/glob/node_modules/minimatch/dist/esm/ast.d.ts","../node_modules/glob/node_modules/minimatch/dist/esm/escape.d.ts","../node_modules/glob/node_modules/minimatch/dist/esm/unescape.d.ts","../node_modules/glob/node_modules/minimatch/dist/esm/index.d.ts","../node_modules/glob/dist/esm/pattern.d.ts","../node_modules/glob/dist/esm/processor.d.ts","../node_modules/glob/dist/esm/walker.d.ts","../node_modules/glob/dist/esm/ignore.d.ts","../node_modules/glob/dist/esm/glob.d.ts","../node_modules/glob/dist/esm/has-magic.d.ts","../node_modules/glob/dist/esm/index.d.ts","../node_modules/yaml/dist/parse/line-counter.d.ts","../node_modules/yaml/dist/errors.d.ts","../node_modules/yaml/dist/doc/applyReviver.d.ts","../node_modules/yaml/dist/log.d.ts","../node_modules/yaml/dist/nodes/toJS.d.ts","../node_modules/yaml/dist/nodes/Scalar.d.ts","../node_modules/yaml/dist/stringify/stringify.d.ts","../node_modules/yaml/dist/nodes/Collection.d.ts","../node_modules/yaml/dist/nodes/YAMLSeq.d.ts","../node_modules/yaml/dist/schema/types.d.ts","../node_modules/yaml/dist/schema/common/map.d.ts","../node_modules/yaml/dist/schema/common/seq.d.ts","../node_modules/yaml/dist/schema/common/string.d.ts","../node_modules/yaml/dist/stringify/foldFlowLines.d.ts","../node_modules/yaml/dist/stringify/stringifyNumber.d.ts","../node_modules/yaml/dist/stringify/stringifyString.d.ts","../node_modules/yaml/dist/util.d.ts","../node_modules/yaml/dist/nodes/YAMLMap.d.ts","../node_modules/yaml/dist/nodes/identity.d.ts","../node_modules/yaml/dist/schema/Schema.d.ts","../node_modules/yaml/dist/doc/createNode.d.ts","../node_modules/yaml/dist/nodes/addPairToJSMap.d.ts","../node_modules/yaml/dist/nodes/Pair.d.ts","../node_modules/yaml/dist/schema/tags.d.ts","../node_modules/yaml/dist/options.d.ts","../node_modules/yaml/dist/nodes/Node.d.ts","../node_modules/yaml/dist/parse/cst-scalar.d.ts","../node_modules/yaml/dist/parse/cst-stringify.d.ts","../node_modules/yaml/dist/parse/cst-visit.d.ts","../node_modules/yaml/dist/parse/cst.d.ts","../node_modules/yaml/dist/nodes/Alias.d.ts","../node_modules/yaml/dist/doc/Document.d.ts","../node_modules/yaml/dist/doc/directives.d.ts","../node_modules/yaml/dist/compose/composer.d.ts","../node_modules/yaml/dist/parse/lexer.d.ts","../node_modules/yaml/dist/parse/parser.d.ts","../node_modules/yaml/dist/public-api.d.ts","../node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts","../node_modules/yaml/dist/schema/yaml-1.1/set.d.ts","../node_modules/yaml/dist/visit.d.ts","../node_modules/yaml/dist/index.d.ts","../src/agents/agent-loader.ts","../src/agents/agent-registry.ts","../src/agents/agent-validator.ts","../src/agents/custom-test-agent.ts","../node_modules/events/events.js","../node_modules/ioredis/built/types.d.ts","../node_modules/ioredis/built/Command.d.ts","../node_modules/ioredis/built/ScanStream.d.ts","../node_modules/ioredis/built/utils/RedisCommander.d.ts","../node_modules/ioredis/built/transaction.d.ts","../node_modules/ioredis/built/utils/Commander.d.ts","../node_modules/ioredis/built/connectors/AbstractConnector.d.ts","../node_modules/ioredis/built/connectors/ConnectorConstructor.d.ts","../node_modules/ioredis/built/connectors/SentinelConnector/types.d.ts","../node_modules/ioredis/built/connectors/SentinelConnector/SentinelIterator.d.ts","../node_modules/ioredis/built/connectors/SentinelConnector/index.d.ts","../node_modules/ioredis/built/connectors/StandaloneConnector.d.ts","../node_modules/ioredis/built/redis/RedisOptions.d.ts","../node_modules/ioredis/built/cluster/util.d.ts","../node_modules/ioredis/built/cluster/ClusterOptions.d.ts","../node_modules/ioredis/built/cluster/index.d.ts","../node_modules/denque/index.d.ts","../node_modules/ioredis/built/SubscriptionSet.d.ts","../node_modules/ioredis/built/DataHandler.d.ts","../node_modules/ioredis/built/Redis.d.ts","../node_modules/ioredis/built/Pipeline.d.ts","../node_modules/ioredis/built/index.d.ts","../src/agents/heartbeat-manager.ts","../src/utils/errors.ts","../src/memory/backends/base.ts","../node_modules/better-sqlite3/lib/index.js","../src/memory/sqlite-wrapper.js","../src/memory/backends/sqlite.ts","../src/memory/backends/markdown.ts","../src/memory/cache.ts","../src/memory/indexer.ts","../src/memory/manager.ts","../src/types/agent-lifecycle-types.ts","../src/lifecycle/dependency-tracker.ts","../src/agents/lifecycle-manager.ts","../src/agents/hierarchical-coordinator.ts","../src/agents/lifecycle-cleanup-enhanced.ts","../src/agents/mesh-coordinator.ts","../src/communication/ultra-fast-communication-bus.ts","../src/swarm/optimizations/connection-pool.ts","../node_modules/eventemitter3/index.d.ts","../node_modules/p-queue/dist/queue.d.ts","../node_modules/p-queue/dist/options.d.ts","../node_modules/p-queue/dist/priority-queue.d.ts","../node_modules/p-queue/dist/index.d.ts","../src/swarm/optimizations/async-file-manager.ts","../src/swarm/optimizations/ttl-map.ts","../src/swarm/optimizations/circular-buffer.ts","../src/swarm/optimizations/optimized-executor.ts","../src/agents/unified-ultra-fast-agent-manager.ts","../src/agents/stage3-integration-validator.ts","../src/agents/task-agent-integration.ts","../src/agents/frontend/index.ts","../src/agents/frontend/interaction-tester.ts","../src/agents/frontend/state-architect.ts","../src/agents/frontend/ui-designer.ts","../src/agents/github/agent-factory.ts","../src/agents/github/index.ts","../src/agents/github/compatibility/legacy-agent-mappings.ts","../src/agents/github/compatibility/legacy-agent-proxy.ts","../src/agents/github/core/github-collaboration-manager.ts","../src/agents/github/core/github-integration-manager.ts","../src/agents/github/core/github-release-coordinator.ts","../src/agents/github/types/index.ts","../src/agents/github/utils/error-handling.ts","../src/agents/github/utils/github-client.ts","../src/agents/github/utils/hook-integration.ts","../src/agents/github/utils/performance-optimizer.ts","../node_modules/nanoid/index.d.ts","../src/api/auth-service.ts","../src/api/claude-api-errors.ts","../src/config/config-manager.ts","../src/utils/type-guards.ts","../src/utils/error-handler.ts","../src/observability/metrics-storage.ts","../src/observability/telemetry.ts","../src/observability/metrics-counter.ts","../src/api/claude-client.ts","../src/api/claude-client-enhanced.ts","../src/api/database-service.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../src/coordination/scheduler.ts","../src/coordination/resources.ts","../src/coordination/messaging.ts","../src/coordination/work-stealing.ts","../src/coordination/dependency-graph.ts","../src/coordination/circuit-breaker.ts","../src/coordination/advanced-scheduler.ts","../src/coordination/conflict-resolution.ts","../src/coordination/metrics.ts","../src/coordination/manager.ts","../src/swarm/strategies/base.ts","../src/swarm/strategies/auto.ts","../src/utils/paths.ts","../src/swarm/json-output-aggregator.ts","../src/swarm/claude-flow-executor.ts","../src/swarm/coordinator.ts","../src/resources/resource-manager.ts","../src/api/swarm-api.ts","../src/automation/test-pipeline/E2ETestGenerator.ts","../src/automation/test-pipeline/PerformanceMonitor.ts","../src/automation/test-pipeline/PipelineValidator.ts","../src/automation/test-pipeline/RegressionTestManager.ts","../config/test-automation/swarm-test-pipeline.config.ts","../src/automation/test-pipeline/SwarmTestCoordinator.ts","../src/automation/test-pipeline/TestDataManager.ts","../src/automation/test-pipeline/TestReportingSystem.ts","../src/automation/test-pipeline/utils/chrome-mcp-integration.ts","../src/automation/test-pipeline/utils/swarm-coordinator.ts","../src/utils/namespace-sanitizer.ts","../src/cfn-loop/cfn-loop-memory-manager.ts","../src/cfn-loop/agent-lifecycle-sqlite.ts","../node_modules/@redis/client/dist/lib/commands/generic-transformers.d.ts","../node_modules/@redis/client/dist/lib/client/parser.d.ts","../node_modules/@redis/client/dist/lib/errors.d.ts","../node_modules/@redis/client/dist/lib/lua-script.d.ts","../node_modules/@redis/client/dist/lib/RESP/decoder.d.ts","../node_modules/@redis/client/dist/lib/RESP/verbatim-string.d.ts","../node_modules/@redis/client/dist/lib/RESP/types.d.ts","../node_modules/@redis/client/dist/lib/commands/ACL_LOG.d.ts","../node_modules/@redis/client/dist/lib/commands/AUTH.d.ts","../node_modules/@redis/client/dist/lib/commands/BGSAVE.d.ts","../node_modules/@redis/client/dist/lib/commands/BITCOUNT.d.ts","../node_modules/@redis/client/dist/lib/commands/BITFIELD.d.ts","../node_modules/@redis/client/dist/lib/commands/BITFIELD_RO.d.ts","../node_modules/@redis/client/dist/lib/commands/BITOP.d.ts","../node_modules/@redis/client/dist/lib/commands/LMPOP.d.ts","../node_modules/@redis/client/dist/lib/commands/ZMPOP.d.ts","../node_modules/@redis/client/dist/lib/commands/CLIENT_INFO.d.ts","../node_modules/@redis/client/dist/lib/commands/CLIENT_KILL.d.ts","../node_modules/@redis/client/dist/lib/commands/CLIENT_LIST.d.ts","../node_modules/@redis/client/dist/lib/commands/CLIENT_TRACKING.d.ts","../node_modules/@redis/client/dist/lib/commands/CLUSTER_FAILOVER.d.ts","../node_modules/@redis/client/dist/lib/commands/CLUSTER_RESET.d.ts","../node_modules/@redis/client/dist/lib/commands/CLUSTER_SETSLOT.d.ts","../node_modules/@redis/client/dist/lib/commands/COMMAND_LIST.d.ts","../node_modules/@redis/client/dist/lib/commands/COPY.d.ts","../node_modules/@redis/client/dist/lib/commands/EVAL.d.ts","../node_modules/@redis/client/dist/lib/commands/FLUSHALL.d.ts","../node_modules/@redis/client/dist/lib/commands/FUNCTION_LIST.d.ts","../node_modules/@redis/client/dist/lib/commands/FUNCTION_LIST_WITHCODE.d.ts","../node_modules/@redis/client/dist/lib/commands/FUNCTION_LOAD.d.ts","../node_modules/@redis/client/dist/lib/commands/FUNCTION_RESTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/GEOSEARCH.d.ts","../node_modules/@redis/client/dist/lib/commands/GEOADD.d.ts","../node_modules/@redis/client/dist/lib/commands/GEOSEARCH_WITH.d.ts","../node_modules/@redis/client/dist/lib/commands/GEORADIUS_STORE.d.ts","../node_modules/@redis/client/dist/lib/commands/GEORADIUSBYMEMBER_STORE.d.ts","../node_modules/@redis/client/dist/lib/commands/GEOSEARCHSTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/GETEX.d.ts","../node_modules/@redis/client/dist/lib/commands/HELLO.d.ts","../node_modules/@redis/client/dist/lib/commands/HEXPIRE.d.ts","../node_modules/@redis/client/dist/lib/commands/HGETEX.d.ts","../node_modules/@redis/client/dist/lib/commands/HRANDFIELD_COUNT_WITHVALUES.d.ts","../node_modules/@redis/client/dist/lib/commands/SCAN.d.ts","../node_modules/@redis/client/dist/lib/commands/HSET.d.ts","../node_modules/@redis/client/dist/lib/commands/HSETEX.d.ts","../node_modules/@redis/client/dist/lib/commands/LATENCY_GRAPH.d.ts","../node_modules/@redis/client/dist/lib/commands/LATENCY_HISTORY.d.ts","../node_modules/@redis/client/dist/lib/commands/LCS_IDX.d.ts","../node_modules/@redis/client/dist/lib/commands/LCS_IDX_WITHMATCHLEN.d.ts","../node_modules/@redis/client/dist/lib/commands/LPOS.d.ts","../node_modules/@redis/client/dist/lib/commands/MEMORY_STATS.d.ts","../node_modules/@redis/client/dist/lib/commands/MEMORY_USAGE.d.ts","../node_modules/@redis/client/dist/lib/commands/MIGRATE.d.ts","../node_modules/@redis/client/dist/lib/commands/MODULE_LIST.d.ts","../node_modules/@redis/client/dist/lib/commands/MSET.d.ts","../node_modules/@redis/client/dist/lib/commands/RESTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/SET.d.ts","../node_modules/@redis/client/dist/lib/commands/SINTERCARD.d.ts","../node_modules/@redis/client/dist/lib/commands/SORT.d.ts","../node_modules/@redis/client/dist/lib/commands/common-stream.types.d.ts","../node_modules/@redis/client/dist/lib/commands/XADD.d.ts","../node_modules/@redis/client/dist/lib/commands/XAUTOCLAIM.d.ts","../node_modules/@redis/client/dist/lib/commands/XCLAIM.d.ts","../node_modules/@redis/client/dist/lib/commands/XGROUP_CREATE.d.ts","../node_modules/@redis/client/dist/lib/commands/XGROUP_SETID.d.ts","../node_modules/@redis/client/dist/lib/commands/XINFO_CONSUMERS.d.ts","../node_modules/@redis/client/dist/lib/commands/XINFO_GROUPS.d.ts","../node_modules/@redis/client/dist/lib/commands/XINFO_STREAM.d.ts","../node_modules/@redis/client/dist/lib/commands/XPENDING_RANGE.d.ts","../node_modules/@redis/client/dist/lib/commands/XRANGE.d.ts","../node_modules/@redis/client/dist/lib/commands/XREAD.d.ts","../node_modules/@redis/client/dist/lib/commands/XREADGROUP.d.ts","../node_modules/@redis/client/dist/lib/commands/XSETID.d.ts","../node_modules/@redis/client/dist/lib/commands/XTRIM.d.ts","../node_modules/@redis/client/dist/lib/commands/ZADD_INCR.d.ts","../node_modules/@redis/client/dist/lib/commands/ZADD.d.ts","../node_modules/@redis/client/dist/lib/commands/ZINTER.d.ts","../node_modules/@redis/client/dist/lib/commands/ZINTERCARD.d.ts","../node_modules/@redis/client/dist/lib/commands/ZRANGE.d.ts","../node_modules/@redis/client/dist/lib/commands/ZRANGEBYLEX.d.ts","../node_modules/@redis/client/dist/lib/commands/ZRANGEBYSCORE.d.ts","../node_modules/@redis/client/dist/lib/commands/ZRANGESTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/ZUNION.d.ts","../node_modules/@redis/client/dist/lib/commands/ZUNIONSTORE.d.ts","../node_modules/@redis/client/dist/lib/commands/VADD.d.ts","../node_modules/@redis/client/dist/lib/commands/VINFO.d.ts","../node_modules/@redis/client/dist/lib/commands/VSIM.d.ts","../node_modules/@redis/client/dist/lib/commands/index.d.ts","../node_modules/@redis/client/dist/lib/client/socket.d.ts","../node_modules/@redis/client/dist/lib/authx/identity-provider.d.ts","../node_modules/@redis/client/dist/lib/authx/token.d.ts","../node_modules/@redis/client/dist/lib/authx/disposable.d.ts","../node_modules/@redis/client/dist/lib/authx/token-manager.d.ts","../node_modules/@redis/client/dist/lib/authx/credentials-provider.d.ts","../node_modules/@redis/client/dist/lib/authx/index.d.ts","../node_modules/@redis/client/dist/lib/client/pub-sub.d.ts","../node_modules/@redis/client/dist/lib/client/commands-queue.d.ts","../node_modules/@redis/client/dist/lib/multi-command.d.ts","../node_modules/@redis/client/dist/lib/client/multi-command.d.ts","../node_modules/@redis/client/dist/lib/client/legacy-mode.d.ts","../node_modules/@redis/client/dist/lib/client/cache.d.ts","../node_modules/@redis/client/dist/lib/client/pool.d.ts","../node_modules/@redis/client/dist/lib/client/index.d.ts","../node_modules/@redis/client/dist/lib/cluster/cluster-slots.d.ts","../node_modules/@redis/client/dist/lib/cluster/multi-command.d.ts","../node_modules/@redis/client/dist/lib/cluster/index.d.ts","../node_modules/@redis/client/dist/lib/sentinel/types.d.ts","../node_modules/@redis/client/dist/lib/sentinel/multi-commands.d.ts","../node_modules/@redis/client/dist/lib/sentinel/index.d.ts","../node_modules/@redis/client/dist/index.d.ts","../node_modules/@redis/bloom/dist/lib/commands/bloom/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/bloom/INSERT.d.ts","../node_modules/@redis/bloom/dist/lib/commands/bloom/RESERVE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/count-min-sketch/INCRBY.d.ts","../node_modules/@redis/bloom/dist/lib/commands/count-min-sketch/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/count-min-sketch/MERGE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/cuckoo/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/cuckoo/INSERT.d.ts","../node_modules/@redis/bloom/dist/lib/commands/cuckoo/RESERVE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/t-digest/CREATE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/t-digest/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/t-digest/MERGE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/top-k/INCRBY.d.ts","../node_modules/@redis/bloom/dist/lib/commands/top-k/INFO.d.ts","../node_modules/@redis/bloom/dist/lib/commands/top-k/RESERVE.d.ts","../node_modules/@redis/bloom/dist/lib/commands/index.d.ts","../node_modules/@redis/bloom/dist/lib/index.d.ts","../node_modules/@redis/json/dist/lib/commands/ARRINDEX.d.ts","../node_modules/@redis/json/dist/lib/commands/ARRLEN.d.ts","../node_modules/@redis/json/dist/lib/commands/ARRPOP.d.ts","../node_modules/@redis/json/dist/lib/commands/CLEAR.d.ts","../node_modules/@redis/json/dist/lib/commands/DEBUG_MEMORY.d.ts","../node_modules/@redis/json/dist/lib/commands/DEL.d.ts","../node_modules/@redis/json/dist/lib/commands/FORGET.d.ts","../node_modules/@redis/json/dist/lib/commands/GET.d.ts","../node_modules/@redis/json/dist/lib/commands/MSET.d.ts","../node_modules/@redis/json/dist/lib/commands/OBJKEYS.d.ts","../node_modules/@redis/json/dist/lib/commands/OBJLEN.d.ts","../node_modules/@redis/json/dist/lib/commands/SET.d.ts","../node_modules/@redis/json/dist/lib/commands/STRAPPEND.d.ts","../node_modules/@redis/json/dist/lib/commands/STRLEN.d.ts","../node_modules/@redis/json/dist/lib/commands/TYPE.d.ts","../node_modules/@redis/json/dist/lib/commands/index.d.ts","../node_modules/@redis/json/dist/lib/index.d.ts","../node_modules/@redis/search/dist/lib/commands/CREATE.d.ts","../node_modules/@redis/search/dist/lib/commands/SEARCH.d.ts","../node_modules/@redis/search/dist/lib/commands/AGGREGATE.d.ts","../node_modules/@redis/search/dist/lib/commands/AGGREGATE_WITHCURSOR.d.ts","../node_modules/@redis/search/dist/lib/commands/CURSOR_READ.d.ts","../node_modules/@redis/search/dist/lib/commands/DROPINDEX.d.ts","../node_modules/@redis/search/dist/lib/commands/EXPLAIN.d.ts","../node_modules/@redis/search/dist/lib/commands/EXPLAINCLI.d.ts","../node_modules/@redis/search/dist/lib/commands/INFO.d.ts","../node_modules/@redis/search/dist/lib/commands/PROFILE_SEARCH.d.ts","../node_modules/@redis/search/dist/lib/commands/SEARCH_NOCONTENT.d.ts","../node_modules/@redis/search/dist/lib/commands/SPELLCHECK.d.ts","../node_modules/@redis/search/dist/lib/commands/SUGADD.d.ts","../node_modules/@redis/search/dist/lib/commands/SUGGET.d.ts","../node_modules/@redis/search/dist/lib/commands/SYNUPDATE.d.ts","../node_modules/@redis/search/dist/lib/commands/index.d.ts","../node_modules/@redis/search/dist/lib/index.d.ts","../node_modules/@redis/time-series/dist/lib/commands/ADD.d.ts","../node_modules/@redis/time-series/dist/lib/commands/helpers.d.ts","../node_modules/@redis/time-series/dist/lib/commands/CREATE.d.ts","../node_modules/@redis/time-series/dist/lib/commands/ALTER.d.ts","../node_modules/@redis/time-series/dist/lib/commands/CREATERULE.d.ts","../node_modules/@redis/time-series/dist/lib/commands/INCRBY.d.ts","../node_modules/@redis/time-series/dist/lib/commands/GET.d.ts","../node_modules/@redis/time-series/dist/lib/commands/INFO.d.ts","../node_modules/@redis/time-series/dist/lib/commands/INFO_DEBUG.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MADD.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MGET.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MGET_WITHLABELS.d.ts","../node_modules/@redis/time-series/dist/lib/commands/RANGE.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_GROUPBY.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_SELECTED_LABELS.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_SELECTED_LABELS_GROUPBY.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_WITHLABELS_GROUPBY.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE_WITHLABELS.d.ts","../node_modules/@redis/time-series/dist/lib/commands/MRANGE.d.ts","../node_modules/@redis/time-series/dist/lib/commands/index.d.ts","../node_modules/@redis/time-series/dist/lib/index.d.ts","../node_modules/redis/dist/index.d.ts","../src/cfn-loop/blocking-coordination-signals.ts","../node_modules/prom-client/index.d.ts","../src/observability/prometheus-metrics.d.ts","../src/cfn-loop/blocking-coordination.ts","../src/consensus/byzantine-coordinator.js","../src/memory/swarm-memory.ts","../src/cfn-loop/types.ts","../src/cfn-loop/byzantine-consensus-adapter.ts","../src/cfn-loop/feedback-injection-system.ts","../src/cfn-loop/feedback-memory-manager.ts","../src/cfn-loop/cfn-loop-integrator.ts","../src/coordination/confidence-score-system.ts","../src/coordination/iteration-tracker.js","../src/cfn-loop/circuit-breaker.ts","../src/cfn-loop/modes/types.ts","../src/cfn-loop/modes/mvp-mode.ts","../src/cfn-loop/modes/enterprise-mode.ts","../src/cfn-loop/modes/standard-mode.ts","../src/cfn-loop/modes/index.ts","../src/cfn-loop/consensus/mvp-consensus.ts","../src/cfn-loop/product-owner/mvp-owner.ts","../src/cfn-loop/product-owner/enterprise-owner-team.ts","../src/cfn-loop/consensus/enterprise-planning-consensus.ts","../src/cfn-loop/cfn-loop-orchestrator.ts","../src/cfn-loop/state-checkpoint-manager.ts","../src/cfn-loop/checkpoint-serializer.ts","../src/cfn-loop/conflict-resolver.ts","../src/cfn-loop/coordination-validator.ts","../src/cfn-loop/heartbeat-warning-system.ts","../src/cfn-loop/coordinator-timeout-handler.ts","../src/cfn-loop/crash-detector.ts","../src/cfn-loop/epic-report-generator.ts","../src/cfn-loop/example-usage.ts","../node_modules/simple-git/dist/src/lib/tasks/diff-name-status.d.ts","../node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../node_modules/simple-git/dist/src/lib/types/index.d.ts","../node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../node_modules/simple-git/dist/typings/response.d.ts","../node_modules/simple-git/dist/src/lib/responses/GetRemoteSummary.d.ts","../node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../node_modules/simple-git/dist/src/lib/tasks/count-objects.d.ts","../node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../node_modules/simple-git/dist/typings/types.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../node_modules/simple-git/dist/typings/errors.d.ts","../node_modules/simple-git/dist/typings/simple-git.d.ts","../node_modules/simple-git/dist/typings/index.d.ts","../src/cfn-loop/git-checkpoint-manager.ts","../src/cfn-loop/git-checkpoint-integration.example.ts","../src/cfn-loop/heartbeat-integration-example.ts","../src/utils/markdown-updater.ts","../src/cfn-loop/sprint-orchestrator.ts","../src/utils/rate-limiter.ts","../src/cfn-loop/phase-orchestrator.ts","../src/cfn-loop/retry-todo-manager.ts","../src/cfn-loop/index.ts","../src/cfn-loop/redis-pubsub-helpers.ts","../src/cfn-loop/meta-coordinator.ts","../src/cfn-loop/phase-orchestrator-example.ts","../src/cfn-loop/recovery-engine.ts","../src/cfn-loop/redis-health-monitor.ts","../src/cfn-loop/redis-health-integration-example.ts","../src/cfn-loop/scope-control.ts","../src/cfn-loop/sprint-coordinator-enhanced.ts","../src/cfn-loop/test-aggregator.ts","../src/cfn-loop/test-lock-coordinator.ts","../src/cfn-loop/test-product-owner-decision.ts","../src/cfn-loop/validator-methods-replacement.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/acorn/dist/acorn.d.mts","../src/cfn-loop/__tests__/doc-code-examples-validator.ts","../src/cfn-loop/__tests__/test-utilities.ts","../src/ci-cd/deployment-orchestrator.ts","../src/ci-cd/github-actions-templates.ts","../src/ci-cd/performance/PerformanceGate.ts","../node_modules/commander/typings/index.d.ts","../node_modules/commander/typings/esm.d.mts","../src/cli/cleanup-orphans.ts","../node_modules/@types/jsonfile/index.d.ts","../node_modules/@types/jsonfile/utils.d.ts","../node_modules/@types/fs-extra/index.d.ts","../src/core/config.ts","../src/core/json-persistence.ts","../src/core/orchestrator-fixed.ts","../src/coordination/background-executor.ts","../src/coordination/swarm-monitor.ts","../src/coordination/swarm-coordinator.ts","../src/coordination/swarm-coordinator-factory.ts","../src/validators/swarm-init-validator.ts","../src/coordination/shared/core/agent-state.ts","../src/coordination/shared/types/sdk.ts","../src/coordination/shared/interfaces/ICoordinator.ts","../node_modules/limiter/dist/esm/TokenBucket.d.ts","../node_modules/limiter/dist/esm/RateLimiter.d.ts","../node_modules/limiter/dist/esm/index.d.ts","../src/coordination/shared/message.ts","../src/coordination/shared/security/payload-validator.ts","../src/coordination/shared/message-broker.ts","../node_modules/zod/v3/helpers/typeAliases.d.cts","../node_modules/zod/v3/helpers/util.d.cts","../node_modules/zod/v3/index.d.cts","../node_modules/zod/v3/ZodError.d.cts","../node_modules/zod/v3/locales/en.d.cts","../node_modules/zod/v3/errors.d.cts","../node_modules/zod/v3/helpers/parseUtil.d.cts","../node_modules/zod/v3/helpers/enumUtil.d.cts","../node_modules/zod/v3/helpers/errorUtil.d.cts","../node_modules/zod/v3/helpers/partialUtil.d.cts","../node_modules/zod/v3/standard-schema.d.cts","../node_modules/zod/v3/types.d.cts","../node_modules/zod/v3/external.d.cts","../node_modules/zod/index.d.cts","../src/coordination/validation-schemas.ts","../src/coordination/rbac-manager.ts","../src/coordination/rate-limiter.ts","../src/utils/event-payload-helper.ts","../src/coordination/hierarchical-orchestrator.ts","../src/coordination/pm-failover.ts","../src/coordination/queen-agent.ts","../src/swarm/consensus-coordinator.ts","../src/coordination/mesh-healing.ts","../src/coordination/pheromone-trails.ts","../node_modules/uuid/dist/types.d.ts","../node_modules/uuid/dist/max.d.ts","../node_modules/uuid/dist/nil.d.ts","../node_modules/uuid/dist/parse.d.ts","../node_modules/uuid/dist/stringify.d.ts","../node_modules/uuid/dist/v1.d.ts","../node_modules/uuid/dist/v1ToV6.d.ts","../node_modules/uuid/dist/v35.d.ts","../node_modules/uuid/dist/v3.d.ts","../node_modules/uuid/dist/v4.d.ts","../node_modules/uuid/dist/v5.d.ts","../node_modules/uuid/dist/v6.d.ts","../node_modules/uuid/dist/v6ToV1.d.ts","../node_modules/uuid/dist/v7.d.ts","../node_modules/uuid/dist/validate.d.ts","../node_modules/uuid/dist/version.d.ts","../node_modules/uuid/dist/index.d.ts","../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","../src/coordination/v1-transparency/v1-transparency-adapter.ts","../src/coordination/shared/transparency/interfaces/transparency-system.ts","../src/coordination/v1-transparency/v1-to-v2-bridge.ts","../src/coordination/mesh-network.ts","../src/coordination/role-assignment.ts","../src/coordination/index.ts","../src/coordination/adapters/v1-coordinator-adapter.ts","../src/coordination/config-translator.ts","../src/coordination/coordination-toggle.ts","../src/cli/commands/swarm.ts","../src/cli/commands/memory.ts","../src/cli/commands/sparc.ts","../src/migration/types.ts","../src/migration/logger.ts","../node_modules/minipass/dist/commonjs/index.d.ts","../node_modules/lru-cache/dist/commonjs/index.d.ts","../node_modules/path-scurry/dist/commonjs/index.d.ts","../node_modules/glob/node_modules/minimatch/dist/commonjs/ast.d.ts","../node_modules/glob/node_modules/minimatch/dist/commonjs/escape.d.ts","../node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.d.ts","../node_modules/glob/node_modules/minimatch/dist/commonjs/index.d.ts","../node_modules/glob/dist/commonjs/pattern.d.ts","../node_modules/glob/dist/commonjs/processor.d.ts","../node_modules/glob/dist/commonjs/walker.d.ts","../node_modules/glob/dist/commonjs/ignore.d.ts","../node_modules/glob/dist/commonjs/glob.d.ts","../node_modules/glob/dist/commonjs/has-magic.d.ts","../node_modules/glob/dist/commonjs/index.d.ts","../src/migration/migration-analyzer.ts","../src/migration/progress-reporter.ts","../src/migration/migration-validator.ts","../node_modules/@inquirer/core/dist/commonjs/lib/key.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/errors.d.ts","../node_modules/@inquirer/type/dist/commonjs/inquirer.d.ts","../node_modules/@inquirer/type/dist/commonjs/utils.d.ts","../node_modules/@inquirer/type/dist/commonjs/index.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/theme.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-prefix.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-state.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-effect.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-memo.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-ref.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/use-keypress.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/make-theme.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/pagination/use-pagination.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/create-prompt.d.ts","../node_modules/@inquirer/core/dist/commonjs/lib/Separator.d.ts","../node_modules/@inquirer/core/dist/commonjs/index.d.ts","../node_modules/@inquirer/checkbox/dist/commonjs/index.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/errors/CreateFileError.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/errors/LaunchEditorError.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/errors/ReadFileError.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/errors/RemoveFileError.d.ts","../node_modules/@inquirer/external-editor/dist/commonjs/index.d.ts","../node_modules/@inquirer/editor/dist/commonjs/index.d.ts","../node_modules/@inquirer/confirm/dist/commonjs/index.d.ts","../node_modules/@inquirer/input/dist/commonjs/index.d.ts","../node_modules/@inquirer/number/dist/commonjs/index.d.ts","../node_modules/@inquirer/expand/dist/commonjs/index.d.ts","../node_modules/@inquirer/rawlist/dist/commonjs/index.d.ts","../node_modules/@inquirer/password/dist/commonjs/index.d.ts","../node_modules/@inquirer/search/dist/commonjs/index.d.ts","../node_modules/@inquirer/select/dist/commonjs/index.d.ts","../node_modules/@inquirer/prompts/dist/commonjs/index.d.ts","../node_modules/inquirer/dist/commonjs/types.d.ts","../node_modules/inquirer/dist/commonjs/ui/prompt.d.ts","../node_modules/inquirer/dist/commonjs/index.d.ts","../src/migration/migration-runner.ts","../src/migration/rollback-manager.ts","../src/cli/commands/migrate.ts","../src/enterprise/project-manager.ts","../src/enterprise/deployment-manager.ts","../src/enterprise/cloud-manager.ts","../src/enterprise/security-manager.ts","../src/enterprise/analytics-manager.ts","../src/enterprise/audit-manager.ts","../src/cli/commands/enterprise.ts","../src/cli/simple-commands/init/templates/enhanced-templates.js","../src/cli/commands/start/event-emitter.ts","../src/cli/commands/start/types.ts","../src/terminal/adapters/base.ts","../src/terminal/adapters/vscode.ts","../src/terminal/adapters/native.ts","../src/terminal/pool.ts","../src/terminal/session.ts","../src/terminal/manager.ts","../src/mcp/transports/base.ts","../src/mcp/transports/stdio.ts","../node_modules/@types/ws/index.d.mts","../node_modules/@types/cors/index.d.ts","../node_modules/helmet/index.d.mts","../src/mcp/transports/http.ts","../src/mcp/tools.ts","../src/mcp/router.ts","../src/mcp/session-manager.ts","../src/mcp/auth.ts","../src/mcp/load-balancer.ts","../src/constants/agent-types.ts","../src/mcp/claude-flow-tools.ts","../src/mcp/swarm-tools.ts","../src/mcp/ruv-swarm-tools.ts","../src/mcp/server.ts","../src/core/orchestrator.ts","../src/cli/commands/start/process-manager.ts","../src/cli/commands/start/process-ui-simple.ts","../src/cli/commands/start/process-ui.ts","../src/cli/commands/start/system-monitor.ts","../node_modules/process/index.js","../src/cli/formatter.ts","../src/cli/node-compat.js","../src/cli/utils.js","../src/cli/runtime-detector.js","../src/cli/simple-commands/web-server.js","../src/cli/commands/start/start-command.ts","../src/cli/commands/start/index.ts","../src/cli/commands/start.ts","../src/core/version.ts","../src/cli/commands/status.ts","../src/cli/commands/monitor.ts","../src/cli/commands/session.ts","../node_modules/cli-spinners/index.d.ts","../node_modules/ora/index.d.ts","../src/security/SecretsManager.cjs","../src/security/secrets-wrapper.ts","../src/cli/commands/setup-wizard.ts","../src/cli/commands/validate-setup.ts","../src/cli/commands/recovery-status.ts","../src/cli/commands/agent-lifecycle.ts","../src/utils/formatters.ts","../src/cli/commands/agent.ts","../src/hive-mind/core/DatabaseManager.ts","../src/hive-mind/integration/MCPToolWrapper.ts","../src/hive-mind/types.ts","../src/hive-mind/core/Agent.ts","../src/hive-mind/core/Queen.ts","../src/hive-mind/core/Memory.ts","../src/hive-mind/core/Communication.ts","../src/hive-mind/integration/SwarmOrchestrator.ts","../src/hive-mind/integration/ConsensusEngine.ts","../src/hive-mind/core/HiveMind.ts","../src/cli/commands/hive-mind/init.ts","../src/cli/commands/hive-mind/spawn.ts","../src/cli/commands/hive-mind/status.ts","../src/cli/commands/hive-mind/task.ts","../src/cli/commands/hive-mind/wizard.ts","../src/memory/advanced-serializer.js","../src/memory/enhanced-session-serializer.js","../src/cli/simple-commands/hive-mind/session-manager.js","../src/cli/commands/hive-mind/stop.ts","../src/cli/commands/hive-mind/pause.ts","../src/cli/commands/hive-mind/resume.ts","../src/cli/commands/hive-mind/ps.ts","../src/cli/commands/hive-mind/index.ts","../src/cli/commands/index.ts","../src/cli/cli-core.ts","../src/cli/completion.ts","../src/cli/help-formatter.ts","../src/cli/index-remote.ts","../src/cli/simple-commands/init/executable-wrapper.js","../src/cli/simple-commands/init/sparc/roomodes-config.js","../src/cli/simple-commands/init/sparc/workflows.js","../src/cli/simple-commands/init/sparc/roo-readme.js","../src/cli/simple-commands/init/claude-commands/sparc-commands.js","../src/cli/simple-commands/init/claude-commands/claude-flow-commands.js","../src/cli/simple-commands/init/templates/sparc-modes.js","../src/cli/simple-commands/init/templates/readme-files.js","../src/cli/simple-commands/init/template-copier.js","../src/cli/simple-commands/init/claude-commands/slash-commands.js","../src/cli/simple-commands/init/sparc-structure.js","../src/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js","../src/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js","../src/cli/simple-commands/init/claude-commands/optimized-slash-commands.js","../src/cli/simple-commands/init/copy-revised-templates.js","../src/cli/simple-commands/init/agent-copier.js","../src/cli/simple-commands/init/help.js","../src/cli/simple-commands/init/performance-monitor.js","../src/cli/simple-commands/init/templates/memory-bank-md.js","../src/cli/simple-commands/init/templates/coordination-md.js","../src/cli/simple-commands/init/batch-init.js","../src/cli/simple-commands/init/validation/pre-init-validator.js","../src/cli/simple-commands/init/validation/post-init-validator.js","../src/cli/simple-commands/init/validation/config-validator.js","../src/cli/simple-commands/init/validation/mode-validator.js","../src/cli/simple-commands/init/validation/health-checker.js","../src/cli/simple-commands/init/validation/index.js","../src/cli/simple-commands/init/rollback/backup-manager.js","../src/cli/simple-commands/init/rollback/rollback-executor.js","../src/cli/simple-commands/init/rollback/state-tracker.js","../src/cli/simple-commands/init/rollback/recovery-manager.js","../src/cli/simple-commands/init/rollback/index.js","../src/utils/npx-isolated-cache.js","../src/cli/simple-commands/init/gitignore-updater.js","../src/cli/simple-commands/init/templates/verification-claude-md.js","../src/cli/simple-commands/init/hive-mind-init.js","../src/memory/sqlite-store.js","../src/memory/in-memory-store.js","../src/memory/fallback-store.js","../src/cli/simple-commands/init/index.js","../src/memory/unified-memory-manager.js","../src/cli/simple-commands/memory.js","../src/cli/simple-commands/memory-consolidation.js","../src/cli/simple-commands/sparc-modes/architect.js","../src/cli/simple-commands/sparc-modes/code.js","../src/cli/simple-commands/sparc-modes/tdd.js","../src/cli/simple-commands/sparc-modes/debug.js","../src/cli/simple-commands/sparc-modes/security-review.js","../src/cli/simple-commands/sparc-modes/docs-writer.js","../src/cli/simple-commands/sparc-modes/integration.js","../src/cli/simple-commands/sparc-modes/monitoring.js","../src/cli/simple-commands/sparc-modes/optimization.js","../src/cli/simple-commands/sparc-modes/supabase-admin.js","../src/cli/simple-commands/sparc-modes/spec-pseudocode.js","../src/cli/simple-commands/sparc-modes/mcp.js","../src/cli/simple-commands/sparc-modes/devops.js","../src/cli/simple-commands/sparc-modes/ask.js","../src/cli/simple-commands/sparc-modes/tutorial.js","../src/cli/simple-commands/sparc-modes/sparc-orchestrator.js","../src/cli/simple-commands/sparc-modes/generic.js","../src/cli/simple-commands/sparc-modes/swarm.js","../src/cli/simple-commands/sparc-modes/index.js","../src/cli/simple-commands/sparc.js","../src/cli/simple-commands/performance-metrics.js","../src/cli/simple-commands/performance-hooks.js","../src/cli/simple-commands/agent.js","../src/cli/simple-commands/task.js","../src/cli/simple-commands/config.js","../src/cli/simple-commands/status.js","../src/cli/simple-commands/mcp.js","../src/cli/simple-commands/monitor.js","../src/cli/simple-commands/swarm-webui-integration.js","../src/cli/simple-commands/process-ui-enhanced.js","../src/cli/simple-commands/start-wrapper.js","../src/cli/simple-commands/start.js","../src/cli/simple-commands/swarm-executor.js","../src/cli/simple-commands/swarm.js","../src/cli/simple-commands/batch-manager.js","../src/cli/simple-commands/github/init.js","../src/cli/simple-commands/github.js","../src/cli/simple-commands/training.js","../src/cli/simple-commands/token-tracker.js","../src/cli/simple-commands/claude-telemetry.js","../src/cli/simple-commands/analysis.js","../src/cli/simple-commands/stream-processor.js","../src/cli/simple-commands/automation-executor.js","../src/cli/simple-commands/automation.js","../src/cli/simple-commands/coordination.js","../src/cli/simple-commands/hooks/session-start-soul.js","../src/hooks/enhanced-post-edit-pipeline.js","../src/cli/simple-commands/hooks.js","../src/cli/simple-commands/hook-safety.js","../src/cli/utils/interactive-detector.js","../src/cli/utils/safe-interactive.js","../src/cli/simple-commands/hive-mind/mcp-wrapper.js","../src/cli/simple-commands/hive-mind/performance-optimizer.js","../src/cli/simple-commands/hive-mind/core.js","../src/cli/simple-commands/hive-mind/queen.js","../src/cli/simple-commands/hive-mind/memory.js","../src/cli/simple-commands/hive-mind/communication.js","../src/cli/simple-commands/hive-mind/auto-save-middleware.js","../src/cli/simple-commands/hive-mind.js","../src/cli/simple-commands/hive-mind/db-optimizer.js","../src/cli/simple-commands/hive-mind-optimize.js","../src/cli/simple-commands/neural.js","../src/cli/simple-commands/goal.js","../src/cli/simple-commands/swarm-metrics-integration.js","../src/cli/simple-commands/migrate-hooks.js","../src/cli/simple-commands/fix-hook-variables.js","../src/preferences/preference-wizard.js","../src/preferences/preference-manager.js","../src/cli/preferences.js","../src/cli/personalization-cli.js","../node_modules/table/dist/src/types/api.d.ts","../node_modules/table/dist/src/createStream.d.ts","../node_modules/table/dist/src/getBorderCharacters.d.ts","../node_modules/table/dist/src/table.d.ts","../node_modules/table/dist/src/index.d.ts","../src/cli/commands/validate-framework.js","../src/cli/commands/hook-types.ts","../src/cli/commands/hook.ts","../src/cli/simple-commands/start-ui.js","../src/cli/utils/redis-client.js","../src/cli/utils/arg-validator.js","../src/cli/utils/output-formatter.js","../src/cli/commands/swarm-exec.js","../src/cli/help-text.js","../src/cli/simple-commands/verification.js","../src/cli/simple-commands/pair.js","../src/cli/simple-commands/verification-training-integration.js","../src/cli/simple-commands/training-pipeline.js","../src/cli/simple-commands/stream-chain.js","../src/cli/commands/hive.ts","../src/cli/commands/create-template.ts","../src/cli/command-registry.js","../src/cli/simple-cli.ts","../src/cli/commands/task.ts","../src/cli/commands/config.ts","../src/cli/commands/workflow.ts","../src/cli/commands/help.ts","../src/cli/commands/mcp.ts","../src/parsers/epic-parser-types.ts","../node_modules/@types/trusted-types/lib/index.d.ts","../node_modules/dompurify/dist/purify.cjs.d.ts","../node_modules/isomorphic-dompurify/index.d.ts","../src/utils/markdown-sanitizer.ts","../src/parsers/phase-parser.ts","../src/utils/path-security.ts","../node_modules/fast-uri/types/index.d.ts","../node_modules/ajv/dist/compile/codegen/code.d.ts","../node_modules/ajv/dist/compile/codegen/scope.d.ts","../node_modules/ajv/dist/compile/codegen/index.d.ts","../node_modules/ajv/dist/compile/rules.d.ts","../node_modules/ajv/dist/compile/util.d.ts","../node_modules/ajv/dist/compile/validate/subschema.d.ts","../node_modules/ajv/dist/compile/errors.d.ts","../node_modules/ajv/dist/compile/validate/index.d.ts","../node_modules/ajv/dist/compile/validate/dataType.d.ts","../node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","../node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","../node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","../node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","../node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","../node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../node_modules/ajv/dist/vocabularies/validation/required.d.ts","../node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../node_modules/ajv/dist/vocabularies/validation/const.d.ts","../node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../node_modules/ajv/dist/vocabularies/validation/index.d.ts","../node_modules/ajv/dist/vocabularies/format/format.d.ts","../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","../node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","../node_modules/ajv/dist/vocabularies/errors.d.ts","../node_modules/ajv/dist/types/json-schema.d.ts","../node_modules/ajv/dist/types/jtd-schema.d.ts","../node_modules/ajv/dist/runtime/validation_error.d.ts","../node_modules/ajv/dist/compile/ref_error.d.ts","../node_modules/ajv/dist/core.d.ts","../node_modules/ajv/dist/compile/resolve.d.ts","../node_modules/ajv/dist/compile/index.d.ts","../node_modules/ajv/dist/types/index.d.ts","../node_modules/ajv/dist/ajv.d.ts","../node_modules/ajv-formats/dist/formats.d.ts","../node_modules/ajv-formats/dist/limit.d.ts","../node_modules/ajv-formats/dist/index.d.ts","../src/validators/epic-config-schema.ts","../src/parsers/epic-parser.ts","../src/cli/commands/parse-epic.ts","../src/cli/repl.ts","../src/cli/index.ts","../src/maestro/maestro-types.ts","../src/maestro/maestro-swarm-coordinator.ts","../src/services/agentic-flow-hooks/types.ts","../src/services/agentic-flow-hooks/hook-manager.ts","../src/services/agentic-flow-hooks/llm-hooks.ts","../src/services/agentic-flow-hooks/memory-hooks.ts","../src/services/agentic-flow-hooks/neural-hooks.ts","../src/services/agentic-flow-hooks/performance-hooks.ts","../src/services/agentic-flow-hooks/workflow-hooks.ts","../src/services/agentic-flow-hooks/index.ts","../src/cli/maestro-cli-bridge.ts","../src/cli/main.ts","../src/cli/node-repl.ts","../src/cli/simple-mcp.ts","../src/cli/simple-orchestrator.ts","../src/cli/validation-helper.ts","../src/cli/agents/base-agent.ts","../src/cli/agents/analyst.ts","../src/cli/agents/architect.ts","../src/cli/agents/capabilities.ts","../src/cli/agents/coder.ts","../src/cli/agents/coordinator.ts","../src/cli/agents/hive-agents.ts","../src/cli/agents/researcher.ts","../src/cli/agents/tester.ts","../src/cli/agents/index.ts","../src/memory/advanced-memory-manager.ts","../src/cli/commands/advanced-memory-commands.ts","../src/cli/commands/agent-simple.ts","../src/cli/commands/cfn-loop-parallel.ts","../src/cli/commands/claude-api.ts","../src/cli/commands/claude.ts","../src/config/ruv-swarm-config.ts","../src/config/ruv-swarm-integration.ts","../src/cli/commands/config-integration.ts","../src/cli/commands/goal-init.ts","../src/cli/commands/health-check.ts","../src/cli/commands/help-new.ts","../src/cli/commands/hook-validator.ts","../src/cli/commands/maestro.ts","../src/cli/commands/neural-init.ts","../src/cli/commands/recovery-resume.ts","../src/cli/commands/recovery.ts","../src/cli/commands/ruv-swarm.ts","../src/cli/commands/swarm-spawn.ts","../src/coordination/shared/transparency/transparency-system.ts","../src/cli/commands/transparency.ts","../src/cli/commands/validate-coordination.ts","../src/completion/framework-detector.js","../src/verification/types.ts","../src/verification/truth-scorer.ts","../src/validation/truth-config-manager.js","../src/validation/cli/interactive-setup-wizard.js","../src/core/byzantine-consensus.js","../src/validation/completion-interceptor.js","../src/validation/cli/validation-commands.js","../src/completion/cli-wizard.js","../src/cli/commands/validate-integration.ts","../src/verification/index.ts","../src/cli/commands/verification.ts","../src/hive-mind/core/MemoryMonitor.ts","../src/cli/commands/hive-mind/optimize-memory.ts","../src/cli/consolidated/core/TierManager.ts","../src/cli/consolidated/intelligence/IntelligenceEngine.ts","../src/cli/consolidated/core/CommandHandlers.ts","../src/cli/consolidated/routing/CommandRouter.ts","../src/cli/consolidated/utils/PerformanceOptimizer.ts","../src/cli/consolidated/ConsolidatedCLI.ts","../src/cli/consolidated/utils/IntelligentDefaults.ts","../src/cli/consolidated/help/InteractiveHelp.ts","../src/cli/consolidated/index.ts","../src/cli/init/batch-tools.ts","../src/cli/init/directory-structure.ts","../src/cli/init/swarm-commands.ts","../src/cli/init/sparc-environment.ts","../src/cli/init/index.ts","../src/cli/init/claude-config.ts","../src/cli/init/utils.ts","../src/cli/ui/compatible-ui.ts","../src/cli/ui/fallback-handler.ts","../src/cli/ui/index.ts","../src/cli/utils/environment-detector.ts","../src/cli/utils/epic-parser.ts","../src/cli/utils/prompt-defaults.ts","../src/memory/lock-free-structures.js","../src/communication/enhanced-event-bus.ts","../src/memory/memory-pressure-manager.js","../src/memory/high-performance-serialization.js","../src/memory/memory-mapped-persistence.js","../src/memory/ultra-fast-memory-store.js","../src/communication/priority-message-queue.ts","../src/communication/failure-recovery-system.ts","../src/communication/message-bus.ts","../src/communication/ultra-fast-serialization.ts","../src/communication/zero-copy-structures.ts","../src/communication/optimized-serialization.ts","../src/communication/performance-optimizations.ts","../src/communication/performance-validator.ts","../src/topology/communication-bridge.ts","../src/communication/reliable-communication-manager.ts","../src/communication/shared-buffer-bus.ts","../src/communication/websocket-cluster.ts","../src/components/visualizations/index.ts","../src/config/consent-manager.ts","../src/config/utils/zero-config-setup.ts","../src/config/migration/config-migration.ts","../src/config/validation/config-validator.ts","../src/config/utils/config-export-import.ts","../src/config/index.ts","../src/config/migration-manager.ts","../src/config/test-migration-fixer.ts","../src/config/web-portal-config.ts","../src/config/zero-config-setup.ts","../src/config/ai/project-detection-engine.ts","../src/config/ai/decision-tree-generator.ts","../src/config/storage/multi-tier-storage.ts","../src/config/ui/progressive-disclosure-engine.ts","../src/config/migration/version-migration-engine.ts","../src/config/core/intelligent-configuration-manager.ts","../src/config/integration/hooks-integration.ts","../src/coordination/advanced-task-executor.ts","../src/coordination/confidence-integration.ts","../src/coordination/constants.ts","../src/coordination/distributed-consensus.ts","../src/coordination/feature-flags.ts","../src/coordination/hive-orchestrator.ts","../src/coordination/hive-protocol.ts","../src/coordination/load-balancer.ts","../src/coordination/task-delegation.ts","../src/coordination/shared/index.ts","../src/coordination/shared/core/index.ts","../src/coordination/shared/interfaces/index.ts","../src/coordination/shared/transparency/transparency-integration.ts","../src/coordination/shared/transparency/index.ts","../src/coordination/shared/types/index.ts","../src/coordination/types/worker-interfaces.ts","../src/core/agent-manager.ts","../src/core/index.ts","../src/core/persistence.ts","../src/crdt/types.ts","../node_modules/engine.io-parser/build/cjs/commons.d.ts","../node_modules/engine.io-parser/build/cjs/encodePacket.d.ts","../node_modules/engine.io-parser/build/cjs/decodePacket.d.ts","../node_modules/engine.io-parser/build/cjs/index.d.ts","../node_modules/engine.io/build/transport.d.ts","../node_modules/engine.io/build/socket.d.ts","../node_modules/engine.io/build/contrib/types.cookie.d.ts","../node_modules/engine.io/build/server.d.ts","../node_modules/engine.io/build/transports/polling.d.ts","../node_modules/engine.io/build/transports/websocket.d.ts","../node_modules/engine.io/build/transports/webtransport.d.ts","../node_modules/engine.io/build/transports/index.d.ts","../node_modules/engine.io/build/userver.d.ts","../node_modules/engine.io/build/engine.io.d.ts","../node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts","../node_modules/socket.io-parser/build/cjs/index.d.ts","../node_modules/socket.io/dist/typed-events.d.ts","../node_modules/socket.io/dist/client.d.ts","../node_modules/socket.io-adapter/dist/in-memory-adapter.d.ts","../node_modules/socket.io-adapter/dist/cluster-adapter.d.ts","../node_modules/socket.io-adapter/dist/index.d.ts","../node_modules/socket.io/dist/socket-types.d.ts","../node_modules/socket.io/dist/broadcast-operator.d.ts","../node_modules/socket.io/dist/socket.d.ts","../node_modules/socket.io/dist/namespace.d.ts","../node_modules/socket.io/dist/index.d.ts","../monitor/collectors/metrics-collector.d.ts","../monitor/alerts/alert-manager.d.ts","../src/dashboard/DashboardServer.ts","../node_modules/engine.io-client/build/cjs/transport.d.ts","../node_modules/engine.io-client/build/cjs/globals.node.d.ts","../node_modules/engine.io-client/build/cjs/socket.d.ts","../node_modules/engine.io-client/build/cjs/transports/polling.d.ts","../node_modules/engine.io-client/build/cjs/transports/polling-xhr.d.ts","../node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.d.ts","../node_modules/engine.io-client/build/cjs/transports/websocket.d.ts","../node_modules/engine.io-client/build/cjs/transports/websocket.node.d.ts","../node_modules/engine.io-client/build/cjs/transports/webtransport.d.ts","../node_modules/engine.io-client/build/cjs/transports/index.d.ts","../node_modules/engine.io-client/build/cjs/util.d.ts","../node_modules/engine.io-client/build/cjs/contrib/parseuri.d.ts","../node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts","../node_modules/engine.io-client/build/cjs/index.d.ts","../node_modules/socket.io-client/build/cjs/socket.d.ts","../node_modules/socket.io-client/build/cjs/manager.d.ts","../node_modules/socket.io-client/build/cjs/index.d.ts","../src/dashboard/FleetDashboardClient.ts","../src/dashboard/types.ts","../src/dashboard/RealtimeMonitor.ts","../src/dashboard/RedisClient.ts","../src/dashboard/index.ts","../src/dashboard/components/index.ts","../src/enterprise/index.ts","../src/eventbus/types.ts","../src/feature-flags/core/FeatureFlagManager.ts","../src/feature-flags/validation/TruthBasedValidator.ts","../src/feature-flags/validation/HookInterceptor.ts","../src/feature-flags/monitoring/RolloutMonitor.ts","../src/feature-flags/rollout/RolloutController.ts","../src/feature-flags/index.ts","../src/feature-flags/cli/Phase4CLI.ts","../src/fleet-manager/types.d.ts","../src/hive-mind/index.ts","../src/hooks/index.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/react/index.d.ts","../src/hooks/useSwarmRealtimeData.ts","../src/integration/mock-components.ts","../src/task/coordination.ts","../src/task/types.ts","../src/task/engine.ts","../src/monitoring/real-time-monitor.ts","../src/integration/types.ts","../src/integration/system-integration.ts","../src/lifecycle/communication-protocols.ts","../src/lifecycle/memory-schema.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts","../src/mcp/sparc-modes.ts","../src/mcp/claude-code-wrapper.ts","../src/mcp/client.ts","../src/mcp/index.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts","../node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts","../src/mcp/integrate-wrapper.ts","../src/mcp/lifecycle-manager.ts","../src/mcp/performance-monitor.ts","../src/mcp/protocol-manager.ts","../src/mcp/orchestration-integration.ts","../src/mcp/server-with-wrapper.ts","../src/mcp/server-wrapper-mode.ts","../src/mcp/recovery/connection-health-monitor.ts","../src/mcp/recovery/connection-state-manager.ts","../src/mcp/recovery/fallback-coordinator.ts","../src/mcp/recovery/reconnection-manager.ts","../src/mcp/recovery/recovery-manager.ts","../src/mcp/recovery/index.ts","../src/memory/sqlite-enhanced-backend.ts","../src/migration/index.ts","../src/monitoring/agent-health-monitor.ts","../src/monitoring/health-check.ts","../src/monitoring/diagnostics.ts","../src/monitoring/memory-leak-dashboard-widget.ts","../src/monitoring/metrics-collector.ts","../src/monitoring/real-time-feedback-system.ts","../src/monitoring/apm/datadog-collector.ts","../src/monitoring/apm/newrelic-collector.ts","../src/monitoring/apm/distributed-tracing.ts","../src/monitoring/apm/performance-optimizer.ts","../src/monitoring/apm/apm-integration.ts","../src/monitoring/apm/index.ts","../src/monitoring/phase4/dashboard/monitoring-dashboard.ts","../src/monitoring/phase4/analytics/truth-score-analyzer.ts","../src/monitoring/phase4/analytics/consensus-tracker.ts","../src/monitoring/phase4/analytics/performance-assessor.ts","../src/monitoring/phase4/rollout-decision-engine.ts","../src/monitoring/regression/RegressionDetector.ts","../src/neural/NeuralDomainMapper.ts","../src/neural/integration.ts","../src/neural/index.ts","../src/preferences/example.ts","../src/preferences/user-preference-manager.ts","../src/providers/types.ts","../src/providers/agent-profile-loader.ts","../src/providers/base-provider.ts","../src/providers/anthropic-provider.ts","../src/providers/rate-limit-detector.ts","../src/providers/api-key-rotator.ts","../src/providers/api-key-rotation-example.ts","../src/providers/cohere-provider.ts","../src/providers/google-provider.ts","../src/providers/openai-provider.ts","../src/providers/ollama-provider.ts","../src/providers/zai-provider.ts","../src/providers/tiered-router.ts","../src/providers/provider-manager.ts","../src/providers/utils.ts","../src/providers/index.ts","../src/quality-gates/automated-review-system.ts","../src/redis/RedisHealthMonitor.ts","../src/redis/health-integration-example.ts","../src/redis/state-validation-schemas.ts","../src/rollback/recovery-manager.ts","../src/scripts/publishSwarmEvents.ts","../src/scripts/startVisualizationServer.ts","../src/services/agent-manager.ts","../src/services/performance-metrics-collector.ts","../src/services/swarm-coordinator.ts","../src/services/swarm-memory-manager.ts","../src/services/swarm-relaunch-manager.ts","../src/services/task-handoff-service.ts","../src/swarm/executor.ts","../src/swarm/advanced-orchestrator.ts","../src/swarm/claude-code-interface.ts","../src/swarm/direct-executor.ts","../src/swarm/executor-v2.ts","../src/swarm/hive-mind-integration.ts","../src/swarm/strategies/research.ts","../src/swarm/memory.ts","../src/swarm/prompt-copier.ts","../src/swarm/prompt-copier-enhanced.ts","../src/swarm/prompt-utils.ts","../src/swarm/prompt-manager.ts","../src/swarm/prompt-cli.ts","../src/swarm/optimizations/index.ts","../src/swarm/index.ts","../src/swarm/large-scale-coordinator.ts","../src/swarm/mcp-integration-wrapper.ts","../src/swarm/result-aggregator.ts","../src/swarm/sparc-executor.ts","../src/swarm/error-recovery/advanced-error-detection.ts","../src/swarm/error-recovery/automated-recovery-workflows.ts","../src/swarm/error-recovery/resilience-architecture.ts","../src/swarm/error-recovery/recovery-monitoring.ts","../src/swarm/error-recovery/self-healing-mechanisms.ts","../src/swarm/error-recovery/error-recovery-coordinator.ts","../src/swarm/error-recovery/test-error-recovery-effectiveness.ts","../src/swarm/strategies/strategy-metrics-patch.ts","../src/swarm/workers/copy-worker.ts","../src/web/messaging/swarm-message-router.ts","../src/swarm-fullstack/types/index.ts","../src/swarm-fullstack/adapters/chrome-mcp-adapter.ts","../src/swarm-fullstack/adapters/shadcn-mcp-adapter.ts","../node_modules/boxen/node_modules/type-fest/source/primitive.d.ts","../node_modules/boxen/node_modules/type-fest/source/typed-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/basic.d.ts","../node_modules/boxen/node_modules/type-fest/source/observable-like.d.ts","../node_modules/boxen/node_modules/type-fest/source/union-to-intersection.d.ts","../node_modules/boxen/node_modules/type-fest/source/keys-of-union.d.ts","../node_modules/boxen/node_modules/type-fest/source/distributed-omit.d.ts","../node_modules/boxen/node_modules/type-fest/source/distributed-pick.d.ts","../node_modules/boxen/node_modules/type-fest/source/empty-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-empty-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/optional-keys-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/required-keys-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/has-required-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-never.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-never.d.ts","../node_modules/boxen/node_modules/type-fest/source/unknown-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/array.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/characters.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-any.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-float.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-integer.d.ts","../node_modules/boxen/node_modules/type-fest/source/numeric.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-literal.d.ts","../node_modules/boxen/node_modules/type-fest/source/trim.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-equal.d.ts","../node_modules/boxen/node_modules/type-fest/source/and.d.ts","../node_modules/boxen/node_modules/type-fest/source/or.d.ts","../node_modules/boxen/node_modules/type-fest/source/greater-than.d.ts","../node_modules/boxen/node_modules/type-fest/source/greater-than-or-equal.d.ts","../node_modules/boxen/node_modules/type-fest/source/less-than.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/string.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/numeric.d.ts","../node_modules/boxen/node_modules/type-fest/source/simplify.d.ts","../node_modules/boxen/node_modules/type-fest/source/omit-index-signature.d.ts","../node_modules/boxen/node_modules/type-fest/source/pick-index-signature.d.ts","../node_modules/boxen/node_modules/type-fest/source/merge.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-any.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/type.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/object.d.ts","../node_modules/boxen/node_modules/type-fest/source/internal/index.d.ts","../node_modules/boxen/node_modules/type-fest/source/except.d.ts","../node_modules/boxen/node_modules/type-fest/source/require-at-least-one.d.ts","../node_modules/boxen/node_modules/type-fest/source/non-empty-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/non-empty-string.d.ts","../node_modules/boxen/node_modules/type-fest/source/unknown-record.d.ts","../node_modules/boxen/node_modules/type-fest/source/unknown-set.d.ts","../node_modules/boxen/node_modules/type-fest/source/unknown-map.d.ts","../node_modules/boxen/node_modules/type-fest/source/tagged-union.d.ts","../node_modules/boxen/node_modules/type-fest/source/writable.d.ts","../node_modules/boxen/node_modules/type-fest/source/writable-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-simplify.d.ts","../node_modules/boxen/node_modules/type-fest/source/non-empty-tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-tail.d.ts","../node_modules/boxen/node_modules/type-fest/source/enforce-optional.d.ts","../node_modules/boxen/node_modules/type-fest/source/simplify-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/merge-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/merge-exclusive.d.ts","../node_modules/boxen/node_modules/type-fest/source/require-exactly-one.d.ts","../node_modules/boxen/node_modules/type-fest/source/require-all-or-none.d.ts","../node_modules/boxen/node_modules/type-fest/source/require-one-or-none.d.ts","../node_modules/boxen/node_modules/type-fest/source/single-key-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/partial-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/required-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/subtract.d.ts","../node_modules/boxen/node_modules/type-fest/source/paths.d.ts","../node_modules/boxen/node_modules/type-fest/source/pick-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-splice.d.ts","../node_modules/boxen/node_modules/type-fest/source/literal-union.d.ts","../node_modules/boxen/node_modules/type-fest/source/union-to-tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/omit-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-null.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-unknown.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-unknown.d.ts","../node_modules/boxen/node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/undefined-on-partial-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/readonly-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/promisable.d.ts","../node_modules/boxen/node_modules/type-fest/source/arrayable.d.ts","../node_modules/boxen/node_modules/type-fest/source/tagged.d.ts","../node_modules/boxen/node_modules/type-fest/source/invariant-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-optional.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-readonly.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-required.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-required-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-non-nullable.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-non-nullable-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/value-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/async-return-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-except.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-pick.d.ts","../node_modules/boxen/node_modules/type-fest/source/conditional-pick-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/stringified.d.ts","../node_modules/boxen/node_modules/type-fest/source/join.d.ts","../node_modules/boxen/node_modules/type-fest/source/sum.d.ts","../node_modules/boxen/node_modules/type-fest/source/less-than-or-equal.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-slice.d.ts","../node_modules/boxen/node_modules/type-fest/source/string-slice.d.ts","../node_modules/boxen/node_modules/type-fest/source/fixed-length-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/multidimensional-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../node_modules/boxen/node_modules/type-fest/source/iterable-element.d.ts","../node_modules/boxen/node_modules/type-fest/source/entry.d.ts","../node_modules/boxen/node_modules/type-fest/source/entries.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-return-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-parameter-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/asyncify.d.ts","../node_modules/boxen/node_modules/type-fest/source/jsonify.d.ts","../node_modules/boxen/node_modules/type-fest/source/jsonifiable.d.ts","../node_modules/boxen/node_modules/type-fest/source/find-global-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/structured-cloneable.d.ts","../node_modules/boxen/node_modules/type-fest/source/schema.d.ts","../node_modules/boxen/node_modules/type-fest/source/literal-to-primitive.d.ts","../node_modules/boxen/node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/string-key-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/exact.d.ts","../node_modules/boxen/node_modules/type-fest/source/readonly-tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/override-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/has-optional-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/writable-keys-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/readonly-keys-of.d.ts","../node_modules/boxen/node_modules/type-fest/source/has-readonly-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/has-writable-keys.d.ts","../node_modules/boxen/node_modules/type-fest/source/spread.d.ts","../node_modules/boxen/node_modules/type-fest/source/is-tuple.d.ts","../node_modules/boxen/node_modules/type-fest/source/tuple-to-object.d.ts","../node_modules/boxen/node_modules/type-fest/source/tuple-to-union.d.ts","../node_modules/boxen/node_modules/type-fest/source/int-range.d.ts","../node_modules/boxen/node_modules/type-fest/source/int-closed-range.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-indices.d.ts","../node_modules/boxen/node_modules/type-fest/source/array-values.d.ts","../node_modules/boxen/node_modules/type-fest/source/set-field-type.d.ts","../node_modules/boxen/node_modules/type-fest/source/shared-union-fields.d.ts","../node_modules/boxen/node_modules/type-fest/source/all-union-fields.d.ts","../node_modules/boxen/node_modules/type-fest/source/shared-union-fields-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/if-null.d.ts","../node_modules/boxen/node_modules/type-fest/source/words.d.ts","../node_modules/boxen/node_modules/type-fest/source/camel-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/camel-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/delimiter-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/kebab-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/delimiter-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/kebab-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/pascal-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/pascal-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/snake-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/snake-cased-properties.d.ts","../node_modules/boxen/node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../node_modules/boxen/node_modules/type-fest/source/screaming-snake-case.d.ts","../node_modules/boxen/node_modules/type-fest/source/split.d.ts","../node_modules/boxen/node_modules/type-fest/source/replace.d.ts","../node_modules/boxen/node_modules/type-fest/source/string-repeat.d.ts","../node_modules/boxen/node_modules/type-fest/source/includes.d.ts","../node_modules/boxen/node_modules/type-fest/source/get.d.ts","../node_modules/boxen/node_modules/type-fest/source/last-array-element.d.ts","../node_modules/boxen/node_modules/type-fest/source/global-this.d.ts","../node_modules/boxen/node_modules/type-fest/source/package-json.d.ts","../node_modules/boxen/node_modules/type-fest/source/tsconfig-json.d.ts","../node_modules/boxen/node_modules/type-fest/index.d.ts","../node_modules/cli-boxes/index.d.ts","../node_modules/boxen/index.d.ts","../src/swarm-fullstack/core/enhanced-swarm-message-router.ts","../src/swarm-fullstack/core/dynamic-agent-spawner.ts","../src/swarm-fullstack/core/fullstack-orchestrator.ts","../src/swarm-fullstack/cli/fullstack-cli.ts","../src/swarm-fullstack/config/fullstack-config.ts","../src/hooks/communication-integrated-post-edit.js","../src/swarm-fullstack/integrations/communication-bridge.ts","../src/swarm-fullstack/testing/api-contract-validator.ts","../src/swarm-fullstack/testing/backend-test-orchestrator.ts","../src/swarm-fullstack/testing/frontend-test-orchestrator.ts","../src/swarm-fullstack/testing/visual-regression.ts","../src/swarm-fullstack/workflows/fix-coordinator.ts","../src/swarm-fullstack/workflows/workflow-metrics.ts","../src/swarm-fullstack/workflows/test-result-analyzer.ts","../src/swarm-fullstack/workflows/regression-test-manager.ts","../src/swarm-fullstack/workflows/iterative-build-test.ts","../src/swarm-fullstack/workflows/convergence-detector.ts","../src/swarm-fullstack/workflows/index.ts","../src/task/commands.ts","../src/task/index.ts","../src/test-utils/caller-identity-helper.ts","../src/test-utils/mock-rbac-manager.ts","../src/testing/performance/PerformanceTestRunner.ts","../src/testing-integration/chrome-mcp-integration.ts","../src/testing-integration/continuous-test-runner.ts","../src/topology/adaptive-coordinator.ts","../src/topology/types.ts","../src/topology/enhanced-hierarchical-coordinator.ts","../src/topology/enhanced-mesh-coordinator.ts","../src/topology/topology-manager.ts","../src/types/cliffy.d.ts","../src/types/global.d.ts","../src/types/index.ts","../src/types/mcp.d.ts","../src/types/swarm.ts","../src/types/vscode.d.ts","../src/ui/hive-dashboard.ts","../src/validation/fullstack-integration-validator.ts","../src/validation/production-validator.ts","../src/validators/index.ts","../src/validators/todowrite-batching-validator.ts","../src/validators/todowrite-integration.ts","../src/verification/telemetry.ts","../src/verification/agent-scorer.ts","../src/verification/alert-manager.ts","../src/verification/interfaces.ts","../src/verification/checkpoint-compression.ts","../src/verification/checkpoint-manager.ts","../src/verification/checkpoint-compression-demo.ts","../src/verification/hooks.ts","../src/verification/cli-integration.ts","../src/verification/conflict-resolver.ts","../src/verification/crdt-coordinator.ts","../src/verification/dashboard-exporter.ts","../src/verification/memory-manager.ts","../src/verification/demo.ts","../src/verification/examples.ts","../src/verification/middleware.ts","../src/verification/rollback-engine.ts","../src/verification/rollback.ts","../src/verification/security-bypass-test.ts","../src/verification/security.ts","../src/verification/simple-hooks.ts","../src/verification/system-tracker.ts","../src/verification/test-verification.ts","../src/verification/tests.ts","../src/verification/verification-pipeline.ts","../src/verification/api/types/index.ts","../src/wasm-ast/index.ts","../src/wasm-ast/wasm-ast-coordinator.ts","../src/wasm-ast/demo/wasm-ast-demo.ts","../src/wasm-ast/engine/wasm-engine.ts","../src/wasm-ast/performance/performance-monitor.ts","../src/wasm-ast/processors/real-time-processor.ts","../src/wasm-ast/tests/wasm-ast-test-suite.ts","../src/wasm-ast/transformers/code-transformation-pipeline.ts","../src/wasm-ast/types/ast-types.ts","../src/wasm-regex-engine/pkg/wasm_regex_engine.d.ts","../src/wasm-regex-engine/pkg/wasm_regex_engine_bg.wasm.d.ts","../src/websocket/swarmWebSocketServer.ts","../src/workflows/feature-lifecycle-manager.ts","../src/workflows/fullstack-coordination-manager.ts","../src/workflows/iterative-development-orchestrator.ts","../src/workflows/progressive-rollout-manager.ts"],"fileIdsList":[[294,341],[294,341,352],[294,341,835],[294,341,943,955],[66,78,294,341],[294,341,939,940,944,945,946,947,948,949,950,951,952,953,954],[294,341,943],[294,341,943,944],[294,341,939,943],[294,341,944],[62,63,67,68,69,70,71,72,73,74,75,76,77,294,341],[66,294,341],[66,67,294,341],[62,66,294,341],[67,294,341],[294,341,943,955,961],[66,78,84,294,341],[294,341,957,958,959,960],[80,81,82,83,294,341],[294,341,956,962,963,964,965,966,967,968,969,970],[79,85,86,87,88,89,90,91,92,93,294,341],[294,341,941,942],[294,341,371],[64,65,294,341],[294,341,879,1486,1487,1488],[294,341,342,371,1486,1487],[294,341,879,1486,1488],[294,341,371,1486,1487],[294,341,879,1485,1486,1487],[294,341,1486],[294,341,879,1485],[294,341,572,577],[294,341,571,572,577],[294,341,571,577,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695],[294,341,696],[294,341,572,573,574,575,576,577,597,604,627,671,672,673,676,677,679],[294,341,389,573,577],[294,341,389,571,572,573,574,575,576],[294,341,662],[294,341,660,661,662,663,664],[294,341,660,661,662],[294,341,371,389,572,577,673],[294,341,389,575,577,666,673],[294,341,352,389,571,572,577,613,658,659,665,666,667,668,669,670,671,672],[294,341,389,573,577,658,673],[294,341,571,577,658,668],[294,341,571,577],[294,341,352,389,577,667,668,669,671,673],[294,341,389,577,667],[294,341,352,360,379,389,577],[294,341,371,389,577,666,671,673,676],[294,341,352,389,577,658,659,666,667,671,673,674,675],[294,341,572,577,582],[294,341,572,577,587],[294,341,577,598,680],[294,341,572,577,602],[294,341,577,618,680],[294,341,572,577,579],[294,341,572,577,630],[294,341,571,572,577,641],[294,341,571,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,680],[294,341,389,577],[294,341,577],[294,341,352,389,571,577,666,667,668,671,673,677,678],[294,341,571,577,658,668,677],[294,341,577,658,659,667,671,673,679],[294,341,571,572,577,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712],[294,341,713],[294,341,572,577,715,716],[294,341,572,577,717],[294,341,572,577,718],[294,341,572,577,716],[294,341,572,577,680],[294,341,572,577,716,717],[294,341,571,572,577,715],[294,341,577,680,716],[294,341,389,571,577,680,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729],[294,341,715,716,717,730],[294,341,572,577,733],[294,341,572,577,734],[294,341,572,577,732,733],[294,341,572,577,733,736],[294,341,572,577,739],[294,341,571,572,577,733],[294,341,571,572,577,733,742],[294,341,571,572,577,733,744],[294,341,571,572,577,733,744,745,746],[294,341,389,571,572,577,733,744,745],[294,341,389,571,572,577,732],[294,341,389,571,577,680,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750],[294,341,736,744,745,751],[294,341,355,389,537],[294,341,355,389],[294,341,352,355,389,531,532,533],[294,341,534,536,538],[294,341,353,389,846,847],[294,341,353,382,389],[294,338,341],[294,340,341],[341],[294,341,346,374],[294,341,342,347,352,360,371,382],[294,341,342,343,352,360],[289,290,291,294,341],[294,341,344,383],[294,341,345,346,353,361],[294,341,346,371,379],[294,341,347,349,352,360],[294,340,341,348],[294,341,349,350],[294,341,351,352],[294,340,341,352],[294,341,352,353,354,371,382],[294,341,352,353,354,367,371,374],[294,341,349,352,355,360,371,382],[294,341,352,353,355,356,360,371,379,382],[294,341,355,357,371,379,382],[292,293,294,295,296,297,298,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388],[294,341,352,358],[294,341,359,382,387],[294,341,349,352,360,371],[294,341,361],[294,341,362],[294,340,341,363],[294,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388],[294,341,365],[294,341,366],[294,341,352,367,368],[294,341,367,369,383,385],[294,341,352,371,372,374],[294,341,373,374],[294,341,371,372],[294,341,374],[294,341,375],[294,338,341,371,376],[294,341,352,377,378],[294,341,377,378],[294,341,346,360,371,379],[294,341,380],[294,341,360,381],[294,341,355,366,382],[294,341,346,383],[294,341,371,384],[294,341,359,385],[294,341,386],[294,336,341],[294,336,341,352,354,363,371,374,382,385,387],[294,341,371,388],[294,341,1471,1472,1473],[294,341,353,371,389,530],[294,341,355,389,531,535],[294,341,352,355,357,360,371,379,382,388,389],[294,341,1258],[294,341,1258,1259,1260],[294,341,1217,1218,1222,1249,1250,1252,1253,1254,1256,1257],[294,341,1215,1216],[294,341,1215],[294,341,1217,1257],[294,341,1217,1218,1254,1255,1257],[294,341,1257],[294,341,1214,1257,1258],[294,341,1217,1218,1256,1257],[294,341,1217,1218,1220,1221,1256,1257],[294,341,1217,1218,1219,1256,1257],[294,341,1217,1218,1222,1249,1250,1251,1252,1253,1256,1257],[294,341,1214,1217,1218,1222,1254,1256],[294,341,1222,1257],[294,341,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1257],[294,341,1247,1257],[294,341,1223,1234,1242,1243,1244,1245,1246,1248],[294,341,1227,1257],[294,341,1235,1236,1237,1238,1239,1240,1241,1257],[294,341,1760,1761],[294,341,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1630,1631,1632,1633,1634,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1649,1650,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759],[294,341,1601,1611,1630,1637,1730],[294,341,1620],[294,341,1617,1620,1621,1623,1624,1637,1664,1692,1693],[294,341,1611,1624,1637,1661],[294,341,1611,1637],[294,341,1702],[294,341,1637,1734],[294,341,1611,1637,1735],[294,341,1637,1735],[294,341,1638,1686],[294,341,1610],[294,341,1604,1620,1637,1642,1648,1687],[294,341,1686],[294,341,1618,1633,1637,1734],[294,341,1611,1637,1734,1738],[294,341,1637,1734,1738],[294,341,1601],[294,341,1630],[294,341,1700],[294,341,1596,1601,1620,1637,1669],[294,341,1620,1637],[294,341,1637,1662,1665,1712,1751],[294,341,1623],[294,341,1617,1620,1621,1622,1637],[294,341,1606],[294,341,1718],[294,341,1607],[294,341,1717],[294,341,1614],[294,341,1604],[294,341,1609],[294,341,1668],[294,341,1669],[294,341,1692,1725],[294,341,1637,1661],[294,341,1610,1611],[294,341,1612,1613,1626,1627,1628,1629,1635,1636],[294,341,1614,1618,1627],[294,341,1609,1611,1617,1627],[294,341,1601,1606,1607,1610,1611,1620,1627,1628,1630,1633,1634,1635],[294,341,1613,1617,1619,1626],[294,341,1611,1617,1623,1625],[294,341,1596,1609,1614],[294,341,1615,1617,1637],[294,341,1596,1609,1610,1617,1637],[294,341,1610,1611,1634,1637],[294,341,1598],[294,341,1597,1598,1604,1609,1611,1614,1617,1637,1669],[294,341,1637,1734,1738,1742],[294,341,1637,1734,1738,1740],[294,341,1600],[294,341,1624],[294,341,1631,1710],[294,341,1596],[294,341,1611,1631,1632,1633,1637,1642,1648,1649,1650,1651,1652],[294,341,1630,1631,1632],[294,341,1620,1661],[294,341,1608,1639],[294,341,1615,1616],[294,341,1609,1611,1620,1637,1652,1662,1664,1665,1666],[294,341,1633],[294,341,1598,1665],[294,341,1609,1637],[294,341,1633,1637,1670],[294,341,1637,1735,1744],[294,341,1604,1611,1614,1623,1637,1661],[294,341,1600,1609,1611,1630,1637,1662],[294,341,1637],[294,341,1610,1634,1637],[294,341,1610,1634,1637,1638],[294,341,1610,1634,1637,1655],[294,341,1637,1734,1738,1747],[294,341,1630,1637],[294,341,1611,1630,1637,1662,1666,1682],[294,341,1630,1637,1638],[294,341,1611,1637,1669],[294,341,1611,1614,1637,1652,1660,1662,1666,1680],[294,341,1606,1611,1630,1637,1638],[294,341,1609,1611,1637],[294,341,1609,1611,1630,1637],[294,341,1637,1648],[294,341,1605,1637],[294,341,1618,1621,1622,1637],[294,341,1607,1630],[294,341,1617,1618],[294,341,1637,1691,1694],[294,341,1597,1707],[294,341,1617,1625,1637],[294,341,1617,1637,1661],[294,341,1611,1634,1722],[294,341,1600,1609],[294,341,1630,1638],[59,60,294,341],[294,341,381],[294,341,843],[294,341,1208],[294,341,1436,1437,1438,1440,1441,1442,1443,1444,1445,1446,1447,1448],[294,341,1410,1421,1436,1437],[294,341,1410,1421,1438],[294,341,1441,1443,1444],[294,341,1439],[294,341,1410,1421,1437,1438,1439],[294,341,1440],[294,341,1436],[294,341,1410,1436],[294,341,1410,1442],[294,341,1407],[294,341,1407,1408,1409],[294,341,1410,1411,1412,1414,1418,1419],[294,341,352,355,371,997,1411,1412,1413],[294,341,352,355,1410,1411,1414],[294,341,352,355,1410],[294,341,1415,1416,1417],[294,341,1410,1411],[294,341,1411],[294,341,1414],[294,341,922,924,928,929,932],[294,341,933],[294,341,924,928,931],[294,341,922,924,928,931,932,933,934],[294,341,928],[294,341,924,928,929,931],[294,341,922,924,929,930,932],[294,341,390,392,396,397,400],[294,341,401],[294,341,392,396,399],[294,341,390,392,396,399,400,401,402],[294,341,396],[294,341,392,396,397,399],[294,341,390,392,397,398,400],[294,341,925,926,927],[294,341,393,394,395],[294,341,355],[283,294,341,943,971,972,973],[283,294,341,943,971],[283,294,341,943,972],[66,94,283,284,285,294,341],[66,94,283,294,341],[66,283,284,294,341],[294,341,389,450],[294,341,352,389,450,466,467],[294,341,451,455,465,469],[294,341,352,389,450,451,452,454,455,462,465,466,468],[294,341,371,389],[294,341,451],[294,341,349,389,455,462,463],[294,341,352,389,450,451,452,454,455,463,464,469],[294,341,349,389],[294,341,450],[294,341,456],[294,341,458],[294,341,352,379,389,450,456,458,459,464],[294,341,462],[294,341,360,379,389,450,456],[294,341,450,451,452,453,456,460,461,462,463,464,465,469,470],[294,341,455,457,460,461],[294,341,453],[294,341,360,379,389],[294,341,450,451,453],[294,341,1209],[294,341,860],[294,341,860,861],[294,341,352,375,389],[294,341,1028],[294,341,490,491,492,493],[294,341,491],[294,341,491,492],[294,341,353,362,922,923],[294,341,353,362,390,391],[294,341,389,571,577,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,731,732,734,735,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752],[95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,218,227,229,230,231,232,233,234,236,237,239,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,294,341],[140,294,341],[98,99,294,341],[95,96,97,99,294,341],[96,99,294,341],[99,140,294,341],[95,99,217,294,341],[97,98,99,294,341],[95,99,294,341],[99,294,341],[98,294,341],[95,98,140,294,341],[96,98,99,256,294,341],[98,99,256,294,341],[98,264,294,341],[96,98,99,294,341],[108,294,341],[131,294,341],[152,294,341],[98,99,140,294,341],[99,147,294,341],[98,99,140,158,294,341],[98,99,158,294,341],[99,199,294,341],[95,99,218,294,341],[224,226,294,341],[95,99,217,224,225,294,341],[217,218,226,294,341],[224,294,341],[95,99,224,225,226,294,341],[240,294,341],[235,294,341],[238,294,341],[96,98,218,219,220,221,294,341],[140,218,219,220,221,294,341],[218,220,294,341],[98,219,220,222,223,227,294,341],[95,98,294,341],[99,242,294,341],[100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,294,341],[228,294,341],[294,341,790,792],[294,341,792],[294,341,790],[294,341,788,792,813],[294,341,788,792],[294,341,813],[294,341,792,813],[294,341,342,789,791],[294,341,790,807,808,809,810],[294,341,794,806,811,812],[294,341,787,793],[294,341,794,806,811],[294,341,787,792,793,795,796,797,798,799,800,801,802,803,804,805],[294,341,1425],[294,341,352,389],[294,341,1425,1426],[294,341,1422,1449,1450,1451],[294,341,1421,1422,1449,1450],[294,341,1421,1422,1451],[294,341,1421],[294,341,1423,1427,1428],[294,341,355,1420,1422,1423,1430,1432],[294,341,355,356,357,1420,1422,1423,1427,1428,1429,1430,1431],[294,341,1423,1424,1427,1429,1430,1432],[294,341,355,366],[294,341,355,1420,1422,1423,1424,1427,1428,1429,1431],[294,341,1179],[294,341,1179,1180,1181,1182],[294,308,312,341,382],[294,308,341,371,382],[294,303,341],[294,305,308,341,379,382],[294,341,360,379],[294,341,389],[294,303,341,389],[294,305,308,341,360,382],[294,300,301,304,307,341,352,371,382],[294,308,315,341],[294,300,306,341],[294,308,329,330,341],[294,304,308,341,374,382,389],[294,329,341,389],[294,302,303,341,389],[294,308,341],[294,302,303,304,305,306,307,308,309,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,330,331,332,333,334,335,341],[294,308,323,341],[294,308,315,316,341],[294,306,308,316,317,341],[294,307,341],[294,300,303,308,341],[294,308,312,316,317,341],[294,312,341],[294,306,308,311,341,382],[294,300,305,308,315,341],[294,303,308,329,341,387,389],[294,341,890,891,892,893,894,895,896,898,899,900,901,902,903,904,905],[294,341,890],[294,341,890,897],[294,341,405,428,429,433,435,436],[294,341,405,409,412,421,422,423,426,428,429,434,436],[294,341,413,423,429,435],[294,341,435],[294,341,404],[294,341,404,405,409,412,413,421,422,423,426,427,428,429,433,434,435,437,438,439,440,441,442,443],[294,341,408,409,410,412,421,429,433,435],[294,341,422,423,429],[294,341,408,409,410,412,421,422,428,433,434,435],[294,341,408,410,422,423,424,425,429,433],[294,341,408,429,433],[294,341,408,409,410,411,420,423,426,429,433],[294,341,408,409,410,411,423,424,426,429,433],[294,341,408,421,426],[294,341,409,412,421,426,429,434,435],[294,341,429,435],[294,341,404,406,407,409,413,423,426,427,429,436],[294,341,405,409,429,433],[294,341,433],[294,341,430,431,432],[294,341,406,428,429,435,437],[294,341,413,422,426,428],[294,341,413],[294,341,413,428],[294,341,409,410,412,421,423,424,428,429],[294,341,408,412,413,420,421,423],[294,341,408,409,410,413,420,421,423,426],[294,341,428,434,435],[294,341,409],[294,341,409,410],[294,341,407,408,410,414,415,416,417,418,419,421,424,426],[294,341,878],[294,341,866,867,868],[294,341,869,870],[294,341,866,867,869,871,872,877],[294,341,867,869],[294,341,877],[294,341,869],[294,341,866,867,869,872,873,874,875,876],[61,286,287,294,341],[294,341,353,362,403,444],[48,49,50,51,53,294,341,342,352],[51,53,294,341,352],[294,341,445],[47,49,294,341,352,471],[48,49,294,341,352,483,484],[47,49,294,341,352,471,484],[294,341,445,483],[55,294,341],[49,294,341,363,488,499],[294,341,445,447],[49,294,341,352,363,488,498],[49,294,341,346,473,518],[294,341,473],[48,49,294,341,352,520,521,527],[48,49,294,341,352,520,521,523,526],[49,294,341,473,475,518,521],[47,49,54,294,341,473,518,521,527,539,549,555,556],[294,341,352,562],[294,341,353,362,836,837],[294,341,346],[47,49,294,341,352,471,569],[49,294,341,753],[47,49,294,341,342,346,383,445,471,484,756],[49,294,341,346,352,758,759,760],[49,294,341,352,762,763],[47,49,52,294,341,352,362,382,471,568],[49,294,341,352,759,760,761,762,765,766,767,772,773,774,775,776],[49,294,341,383,388,778],[49,294,341,352,545],[47,49,294,341,346,352,354,362,471],[294,341,760],[294,341,471],[47,49,294,341,352,471,568,756,782],[49,294,341,352,753,778],[294,341,471,781],[294,341,762,763,764],[49,294,341,352],[49,294,341,762],[294,341,778,814],[49,294,341,352,753,813],[294,341,471,754,782],[294,341,762,763,764,767,777,818,820,821],[47,49,294,341,352,471,818,823],[294,341,768],[294,341,768,769,770,771],[294,341,820],[49,294,341,352,353,362,391,759,777,818,819],[294,341,760,768],[49,294,341,352,353,753,778,779,784,824],[294,341,471,757,782,827],[47,49,294,341,471],[49,294,341,352,762,777],[47,49,294,341,352,471,757],[49,294,341,352,353,362,568,764,817],[49,294,341,352,753,779],[294,341,352,753],[294,341,352,363,753],[294,341,760,777],[294,341,777],[294,341,352,354,362],[294,341,353,362],[49,50,51,53,294,341,1283],[48,49,50,51,53,294,341,352],[51,294,341,1283],[48,49,50,51,53,54,294,341,446,1283,1284,1285,1286,1287,1288,1290,1291],[294,341,367,471,484,486,844,1794],[61,294,341,362,848,1061],[294,341,364,1064,1105,1107,1108,1128,1130,1131,1132,1133,1134,1135,1136,1140,1142,1143,1145,1146,1149,1152,1153,1156,1157,1167,1169,1170,1171,1172,1173,1174,1177,1178,1184,1186,1187,1191,1193,1194,1195,1196,1197,1198,1199],[49,294,341,353,362,523,1293],[61,294,341,353,362,471,475,1062],[49,50,53,54,294,341,446],[47,49,50,53,54,61,286,287,294,341,354,362,481,844,1036,1794],[294,341,352,354,471,844,1794],[49,61,286,294,341,521,523,527,844,1794],[48,61,294,341,342,353,844,1794],[294,341,354,521,1062,1300],[61,294,341,353,844,849,1794],[61,286,294,341,362,844,848,1794],[49,61,294,341,849,978,979,980,981,982,983,1062],[61,294,341,353,362,382],[61,287,294,341,342,354,362,383,844,1029,1031,1794],[294,341,844,1064,1794],[61,286,287,294,341,844,1064,1794],[294,341,844,1048,1049,1050,1051,1052,1056,1057,1058,1059,1794],[61,294,341,844,1016,1029,1038,1040,1047,1794],[61,294,341,844,1038,1043,1164,1327,1794],[61,286,294,341,844,1055,1794],[61,287,294,341,844,1055,1794],[61,286,294,341,844,1016,1029,1038,1040,1047,1794],[61,287,294,341,844,1016,1038,1047,1794],[61,286,294,341,844,1016,1038,1047,1794],[48,294,341,759,854,1062],[294,341,1185],[49,294,341,342,362,1154,1185],[49,50,53,54,61,294,341,342,354,481,523,849,850,851,917,918,919,977,984,985,1023,1025,1026,1027,1032,1033,1034,1035,1037,1048,1049,1050,1051,1052,1056,1057,1058,1059,1060,1062],[61,294,341,844,1277,1794],[49,50,61,294,341,849,1009,1793],[61,287,294,341,353,844,1794],[61,294,341,362,844,920,921,936,975,976,1794],[61,287,294,341,353,844,1016,1794],[61,294,341,353,362,844,1207,1263,1794],[61,286,294,341,753,778,784,826,844,1029,1183,1794],[49,294,341,784,844,1794],[49,61,287,294,341,753,778,844,1794],[48,49,294,341,1008,1062,1299],[48,61,286,287,294,341,353,362,844,1016,1794],[61,286,294,341,342,353,354,362,383,753,844,1029,1031,1794],[61,294,341,342,354,367,1062],[294,341,1022],[294,341,987,1011,1013,1014,1021],[49,50,61,294,341,481,549,849,986,987,993,1009,1010],[61,294,341,987,1011],[294,341,1012],[49,50,61,286,294,341,342,353,987,1011,1013,1014,1016,1020,1793],[47,50,61,294,341,1011],[61,287,294,341,353,844,1016,1024,1794],[294,341,844,1141,1188,1189,1190,1794],[48,294,341,353,544,759,852,854,855,856,916,1062],[47,48,61,294,341,353,523,844,1794],[61,294,341,844,909,1312,1794],[61,287,294,341,471,781,785,844,1794],[61,286,294,341,353,362,1029,1183],[294,341,1062,1323],[61,294,341,354,753,844,1031,1794],[49,294,341,1325],[48,61,286,287,294,341,353,523,844,1016,1794],[61,294,341,353],[294,341,1329,1330,1331,1332,1333],[294,341,342,353,383,1329,1330],[294,341,1329,1330],[294,341,1329,1330,1331,1332,1333,1334,1335,1336],[294,341,353,1329],[294,341,1329,1330,1331],[47,61,287,294,341,364],[294,341,1024,1064],[294,341,1024],[49,61,294,341,844,849,918,1016,1023,1024,1025,1026,1027,1037,1063,1201,1202,1203,1204,1205,1206,1264,1265,1794],[294,341,354,362],[294,341,354,362,1342],[294,341,354,362,1018,1338,1339,1340,1341,1343],[294,341,354],[47,49,50,54,61,294,341,352,354,362,473,481,1010,1268,1276],[294,341,362,382,1061,1062],[294,341,342,353,354,362,364,382],[61,286,287,294,341,342,354,362,367],[61,286,294,341,354,364,1029],[61,286,294,341,1029,1175,1176],[47,48,61,286,287,294,341,353,1016],[294,341,383],[294,341,353,1018,1024,1200],[294,341,1018,1130],[294,341,353,362,382,1018,1129,1147,1148],[294,341,342,353,362,1018,1150],[294,341,353,362,1018,1151],[294,341,353,1017,1018,1086],[294,341,342,354,361,362,367,1147],[294,341,1018],[61,294,341,353,354,362,1018],[294,341,342,354,361,362,1018,1144],[294,341,342,353,354,362,383,1018],[61,294,341,353,362],[61,286,294,341,342,353,362,1017,1168],[61,286,294,341,342,353,354,362,367,475,1017,1029,1055,1064,1158,1159,1160,1162,1163,1164,1165,1166],[294,341,1055],[294,341,346,352],[294,341,352,1160,1161],[61,294,341,353,354,362,475,1029],[294,341,342,353,362,475,476],[294,341,352,362,363,387,475],[294,341,352,363],[61,294,341,353,354,362,476,1017,1053,1054],[294,341,353,362,1018],[294,341,353,362,1018,1102,1154,1155],[294,341,354,362,1018,1102],[294,341,353,362,382],[294,341,353,364,1017,1018,1073,1075,1076,1083,1084,1085,1105],[294,341,353],[294,341,353,362,1074,1077,1078],[294,341,353,362,1070,1071,1074],[294,341,354,361],[294,341,1017],[294,341,353,362,475,1018],[294,341,342,353,354,362,364,382,383,985,1018,1066,1073,1074,1075,1076,1079,1080,1081,1082,1084,1085,1086,1092,1097,1098,1099,1100,1101,1104],[294,341,353,1017],[294,341,1018,1093,1094,1095,1096],[294,341,353,364,1017,1067,1068,1069,1075],[294,341,353,362,382,985,1017,1072,1073],[294,341,1087,1088,1089,1090,1091],[294,341,342,353,362,382,1018],[294,341,353,362,1017,1018],[294,341,353,1017,1018,1106],[294,341,342,353,362,382],[294,341,354,361,362,363,1018],[294,341,342,354,362,367,383],[294,341,363,1129],[294,341,353,361,362,363],[294,341,1018,1019,1137],[294,341,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126],[294,341,342,353,364,383,1017,1018,1127],[294,341,342,1011,1012,1018,1019,1020,1138],[294,341,353,354,1017,1018,1019,1020,1138],[294,341,1139],[294,341,353,361,1018],[294,341,342],[61,294,341,353,362,475,1017],[294,341,1019],[294,341,342,353,354,362,364,382,1017,1141],[294,341,844,1018,1794],[294,341,342,354,362,383],[294,341,342,354,362],[294,341,342,346,354,362,383,1192],[294,341,353,355,362,382,539,996,1018,1019],[294,341,355,844,1794],[294,341,342,352,355,362,382,539,996,997],[61,294,341,367],[61,294,341,522,1345],[294,341,1345,1346],[294,341,342,353,354,383,1017],[61,294,341],[294,341,353,362,1207,1263],[294,341,353,361,362],[294,341,353,753],[61,294,341,1158],[294,341,354,1064],[49,50,294,341,352,363,1351],[294,341,352,363,1351,1356,1357],[48,49,50,51,294,341,352],[294,341,1360,1361],[294,341,363,387],[294,341,352,363,387,996],[48,49,294,341,352,1040,1044,1365],[294,341,387],[294,341,355,387,996],[294,341,363],[49,61,294,341,1319,1322],[294,341,354,362,1102],[294,341,1380],[294,341,342,353,362,383],[294,341,346,352,353,361,362],[294,341,352,353,361,362,367],[294,341,352,444,1380,1381,1382,1383,1384],[294,341,521,1371,1372,1373,1374],[294,341,352,1385],[294,341,352,353,361,362],[294,341,353,362,521],[294,341,346,352,353],[48,49,294,341,353,362],[294,341,521,1299],[294,341,346,353,361,362,444],[294,341,353,362,403],[294,341,521],[294,341,346,353,361,362],[294,341,353,361,362,521],[49,294,341,487,857,858,859,886,913],[47,49,50,294,341,540,543,544,545],[48,49,50,51,294,341,342,352,522,545],[48,49,294,341,342,352,354,362],[49,50,294,341],[49,294,341,759,765],[49,294,341,759],[294,341,487,886,887,913],[47,49,50,294,341],[49,294,341,525,859,913,914,915],[47,49,294,341,473],[294,341,346,352,363],[48,49,294,341,352,525,545,883],[48,294,341,352],[294,341,487,540,541,542,543,544,545,546,547,548,549,886,887,888,889,908,910,911,912],[294,341,759],[49,50,51,294,341,352,522,543],[47,49,50,294,341,473,540,541,542,546,547,548],[48,49,294,341,352],[47,48,49,50,294,341],[47,48,49,50,294,341,473],[49,294,341,352,759,865,884,886],[47,48,49,294,341,352,544,759,865,880,881,882,883,885],[49,294,341],[49,294,341,880],[47,48,49,294,341,352,865],[294,341,857],[294,341,857,858,859,863,865],[294,341,858],[294,341,859],[294,341,352,862,863,864],[294,341,909,1312,1313,1399],[294,341,352,858,859],[49,294,341,858,859,909,1312],[49,294,341,352,858,859,906,909],[294,341,854],[48,49,50,294,341,352,481,546,853],[49,294,341,352,354,361,362,363],[47,49,50,294,341,352,473,544,759,1389],[294,341,907,909],[49,294,341,352,487,548,886,906,907],[294,341,879],[55,56,294,341,526],[47,48,294,341,346,353,361,362,473],[47,48,294,341],[57,294,341,1403],[47,48,294,341,353,362,364],[49,50,294,341,849,850],[47,48,49,50,294,341,354,362,473,481,521,527,549,993,1009],[294,341,354,362,475],[55,294,341,353,362],[294,341,355,362,382,539,1432,1433,1434],[294,341,352,1452],[294,341,1454],[294,341,1453],[294,341,1454,1455,1456],[49,294,341,352,354,362,849],[49,294,341,346,352,354,362,849],[49,294,341,342,352,354,362,849],[294,341,978,979,980,981,982,983],[61,294,341,844,1466,1794],[294,341,1461,1462,1463,1464,1465],[294,341,352,354,362,1461,1462,1463],[294,341,352,354,362,1461,1464],[294,341,342,352,1461,1462],[294,341,346,352,1461],[294,341,352,906,1038,1039,1040],[294,341,352,1038,1040,1041],[294,341,352,354,362,382,476],[294,341,352,906,1038,1040,1041,1042,1043,1044,1045,1046],[294,341,352,363,1038,1039,1040],[294,341,352,363,1038,1043],[294,341,352,906,1038,1039,1040,1041],[294,341,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047],[294,341,352,1038,1039,1040],[294,341,342,352,383,522],[294,341,352,1038,1039,1040,1041,1047],[294,341,352,354,362,488,1155,1361,1362],[294,341,342,354,362,383,385],[294,341,1269,1276,1325],[294,341,1474],[54,55,56,57,294,341],[47,49,50,54,294,341,481,521,523,851,854,1009,1476,1479,1480,1481],[47,294,341,352,482],[48,49,50,294,341,352,481,482],[47,294,341,475,482],[49,50,294,341,352,354,362,473,1040,1041,1045,1046,1047,1267],[47,49,294,341,346,473],[294,341,354,362,382,1491,1796],[47,49,294,341,1003,1005],[294,341,342,1492,1796],[47,49,294,341,352,473,1009],[47,49,294,341,352,473,1009,1498,1499,1500],[47,49,294,341,352,363],[49,294,341,352,1493],[47,49,294,341,353,362],[47,49,294,341,342,352,383],[294,341,1504,1505,1506,1507,1508],[47,49,294,341,352,1493,1504,1505,1506,1507],[47,49,294,341,473,1000],[47,48,49,294,341,353,362],[294,341,1009,1492],[47,49,50,294,341,361,363,473,526,994,995,999,1000,1001,1002,1003,1004,1006,1007,1008],[294,341,354,362,382],[47,49,294,341],[47,49,294,341,352,473],[47,294,341],[47,49,294,341,355,362,382,473,539,994,996,997,998],[47,49,294,341,353,364,367,473,994],[48,49,52,294,341,346,352,353,362,382],[47,49,294,341,353,362,473,474],[47,49,52,294,341,353,362,473,474,476],[48,49,50,51,52,294,341,352],[294,341,1053],[294,341,476,1102,1103],[294,341,1054],[47,49,50,294,341,473,474,477,478,479,480],[294,341,353,1351],[294,341,1351],[49,52,294,341,352,353,362,1293],[294,341,353,361,362,382,476,1054],[294,341,359,362,382,475],[48,49,50,294,341,352,354,362,481],[294,341,1351,1353,1354,1355],[294,341,353,362,1017],[61,294,341,362,920,921,936,975,1793],[61,294,341,362,364,848],[61,294,341,346,362,848,920,921,935],[61,294,341,346,362,382,848,920,921,935,936,937,938,974],[61,294,341,362,848,920,921,935],[61,294,341,920],[61,294,341,346,362,848,920,921,974],[49,294,341,352,363,499],[294,341,1518,1519,1520,1521],[294,341,1518,1519],[294,341,1518,1519,1520,1521,1522],[49,50,294,341,353,362,523,1481,1482,1513],[49,50,294,341,523,1481,1482],[47,49,294,341,352,471,486],[49,50,294,341,352],[49,50,294,341,352,1524,1525,1526,1527],[294,341,352,996],[49,50,51,53,294,341,352],[294,341,352,1269],[294,341,1269,1530,1531],[294,341,352,1269,1270,1530],[294,341,525],[294,341,353,362,475,525],[294,341,755],[48,49,294,341,352,524],[294,341,353,362,1207,1211,1212,1213,1262],[294,341,353,362,1207,1211],[61,294,341,361,362,848],[61,286,294,341,362,848,1029],[294,341,353,362,1535],[294,341,527,1535,1537],[49,294,341,1456,1540],[49,294,341,352,526,1456,1539],[48,49,294,341,352,1535],[294,341,1535,1537],[294,341,1535,1536,1537,1538,1542,1543,1544,1545,1546,1547,1548,1549],[49,294,341,352,521,1535,1538,1542,1543,1544,1545,1546,1547],[294,341,525,1535,1536],[49,294,341,521,1535,1548],[294,341,526,1535,1537],[294,341,342,352,353,383],[294,341,753],[294,341,346,353,362],[294,341,1030],[49,294,341,352,1269],[49,294,341,1269,1270,1271,1272,1273,1274,1275],[294,341,1269,1270],[52,294,341,346,352],[49,294,341,352,1593],[49,61,286,294,341,362,844,848,1029,1183,1594,1595,1762,1765,1794],[294,341,353,361,362,879],[47,294,341,352,1592,1593],[49,294,341,352,1593,1594,1595,1763,1764],[49,294,341,352,488,1593,1763,1765,1768],[49,294,341,352,354,362],[294,341,1592],[49,294,341,352,1778],[49,294,341,352,759,1593,1778],[294,341,1774,1775,1776,1777,1778,1779],[49,294,341,352,759,1593,1774,1775,1776,1777,1779],[48,49,51,294,341,352,363,481,546,853,854,1564],[48,49,51,294,341,342,352,354,362,363,481,1564],[49,51,294,341,342,362,552],[49,294,341,352,363],[48,49,51,294,341,352,353,551,552,553,554],[49,51,294,341,354,362,382,523],[49,294,341,352,753],[49,294,341,352,753,1583],[49,294,341,352,753,1583,1584,1585,1586,1587],[49,294,341,352,753,1583,1584,1585],[49,294,341,352,753,1588],[48,49,51,61,294,341,342,352,354,361,362,1348],[48,49,51,294,341,342,352,354,361,362],[48,49,51,294,341,352,481,1565],[51,294,341,550,551,555,1564,1570,1571,1572,1573,1574,1575,1576,1577,1590],[48,49,51,294,341,352,353],[47,48,49,51,294,341,352,1006,1008,1565],[48,49,51,294,341,346,352,354,362],[49,294,341,353,362,371,372,494],[294,341,489,495,496,497,498],[49,51,294,341,352,489,494,495,496,497],[49,294,341,362,844,1572,1573,1574,1794],[49,294,341,354,362,382,387,1572],[49,294,341,346,352,354,362,387],[49,294,341,352,362,1572,1573,1574],[49,294,341,354,362],[48,49,51,294,341,352,363,481],[49,51,294,341,354,362],[48,51,294,341,550,1590],[51,294,341],[48,49,51,294,341,550,1590],[294,341,550,1590],[294,341,346,354,362,387],[294,341,1478],[48,294,341,352,1478,1479],[47,48,294,341,352,1478],[294,341,1477,1478,1479,1781],[294,341,1477,1479],[48,49,294,341,342,361,364,473,988],[48,49,294,341,361,473,988],[47,49,50,294,341,364,473,988,989,990,991,992],[48,49,294,341,473,988],[47,48,49,294,341,473,988],[294,341,342,352,353,362],[294,341,352,353,362],[48,49,294,341,352,483,484,1789],[48,49,294,341,352,483,484,1365,1788,1789,1790,1791],[294,341,352,483,484],[47,294,341,352,445],[287,294,341,844,1794],[294,341,1796],[294,341,1392,1393],[294,341,522],[48,294,341,880],[294,341,342,383],[294,341,1210],[49,294,341,353,362],[294,341,353,361,362,382],[49,61,94,294,341,354,362,1029,1315,1318],[49,61,94,294,341,354,362,1029,1315,1318,1319,1321],[294,341,1102,1156,1320],[49,294,341,352,363,488,499],[294,341,352,363,488,489,498,1364],[49,294,341,346,353,362,523,1317],[294,341,1258,1261],[49,294,341,854,855],[49,294,341,1805],[49,50,294,341,1805],[294,341,1808,1809,1810],[294,341,346,383,388,1808],[294,341,346,353,362,1808,1809],[49,294,341,1812],[294,341,352,1406],[294,341,1406,1814,1815,1817],[49,294,341,1269,1276],[294,341,352,354,362,1406],[294,341,346,353,362,1808,1810],[294,341,342,346,352,353,362,383,388],[49,50,53,294,341,352],[294,341,1812],[49,51,294,341,523,1316],[49,294,341,352,523,1316,1317],[294,341,352,387],[294,341,352,753,996],[294,341,352,353]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"08665591a80e8f4ddbc0b34a009761ef9f2cf1a0cefd570aa67e1fbdb6a9508c","impliedFormat":99},{"version":"3f2ad7e52fc42f73aa0b27f0f7eb687fe2ab5921f2f481da783c163e4e717ec6","impliedFormat":99},{"version":"d29d0a1ee52ee86cf3e813db1ae836110f26f255537816e8c0e22c039fad1a8d","impliedFormat":99},{"version":"faeeadb0acddcd9dc8217dbbd13ef58feb43fd8461c89776af1149d63e3ada15","impliedFormat":99},{"version":"dd221a1e48892f9f9b82a8893e64b3477aa2c8479512346ea295c43af2ffd48c","impliedFormat":99},{"version":"f157c0a69b302978250739a62c3f7de9e93745455a08b6c4e978cb18b542aaff","impliedFormat":99},{"version":"8503e2d25324d396a121439b5e6503ce429cb6d0b5ae0adb18281b167f079c18","impliedFormat":99},{"version":"7d3dd07afc019115b47f0a63615368303f4e87f23adf7f4a3ec038ea2c098ac7","impliedFormat":99},{"version":"2063a5c3cf7877aff86efb315aa3e7bcd1181b7cb33d048a5185fada1e05a70f","impliedFormat":99},{"version":"d2a56c0b6207514dff1e2c4259ac1518aba29ae33b40d0d8c5b2f46781b1e666","impliedFormat":99},{"version":"a75c2d9d21ab489bf165a3b132c6f69dc95fa326cdbf05f3ee0d3ea9c9b93dc9","impliedFormat":99},{"version":"b9958dd4646f8c8a1b5cfd3cbd2a59c33cfed66c9a078c22fecfdc93c32d5af3","impliedFormat":99},{"version":"acfed6cc001e7f7f26d2ba42222a180ba669bb966d4dd9cb4ad5596516061b13","impliedFormat":99},{"version":"f61a4dc92450609c353738f0a2daebf8cae71b24716dbd952456d80b1e1a48b6","impliedFormat":99},{"version":"f3f76db6e76bc76d13cc4bfa10e1f74390b8ebe279535f62243e8d8acd919314","impliedFormat":99},{"version":"c7232a0c933068be4e990bc3dadf348d0ca82c3465d2f369fb65f53afaf6266b","impliedFormat":99},{"version":"cc2d9ba9d5434882cfb9bc2954fe433b5538fa78a40be504c9833a45d1a732ad","impliedFormat":99},{"version":"f4fa7e6424786df98e362cfe4eefa908d6110bc4dcc50235d4d05a97939bb1d3","impliedFormat":99},{"version":"e8ff455f7ee74b0a6ea20a465bd95a1ebf41538e06f7874c7934dc1ae42bd10a","impliedFormat":99},{"version":"4e3592aed54bd51d840e6d078794b45a8388d0accf38efa3267a16742ce88041","impliedFormat":99},{"version":"878abe377ce7ed67901e97ca558cab1411f19ba83a5ec9d372d78a382beec334","impliedFormat":99},{"version":"988be2b47c162ddfc4ac289de0bc50b52fd425d4408cb4bc40fcc9b81f4957c6","impliedFormat":99},{"version":"85cc8408b227080f73a2571c87c66ad3aa624753d599f08ba9906f607c744eb9","impliedFormat":99},{"version":"8da95d257be3f2d83c21c555dedda9c96869e5f855652523cf52dc98ca8c57de","impliedFormat":99},{"version":"aa9494cb36743567c0f6ce385ce869358b59193c9b61612e0d70e4de500424c3","impliedFormat":99},{"version":"904964129f1ef4797282d4ea4411eaf26d4b22bb481b8b8ab3e920d4cfc79ecf","impliedFormat":99},{"version":"ce6ada7f4eb4cda3ccfe28a0201608828fc6ee2d3204101976831100d9550d47","impliedFormat":99},{"version":"5a7fe6ef136e88ee70d3cd0b1aa0d6875178b2682542ca340875a2711c81d779","impliedFormat":99},{"version":"dc30228a4d8faa78799c535a32dcb2a456bccd67a152b7fae0797198476b091f","impliedFormat":99},{"version":"9a1fcfc15915ffb2b16416763898a07aca46ef4ea620c5d5f26793e76f714485","impliedFormat":99},{"version":"ab37b1199441c7ecb602defe46f72099d3d4555f7911bd865f51657f419779ab","impliedFormat":99},{"version":"82b10e97d141910eab0f2a331b69b88e160d1435e8cc35d40c45c8533bbc0c0f","impliedFormat":99},{"version":"44e2419e4abff168e564a6c25b3e3bd6f7bad3c66e5e4560d91f3777a3926426","impliedFormat":99},{"version":"3c656ad2c834314314439f331445e5ba5d178fb67776e69c7b0c0746884450bc","impliedFormat":99},{"version":"8804b8ad255545dadc2e4d4039d45b3c0bfb5c1a103cf68c7a8712877ce7bae0","impliedFormat":99},{"version":"f6468b2c5528cb0e63ba5c2072a66711d7d8b53d0d79ba51633fdd7caaec8366","impliedFormat":99},{"version":"362276986f99951a4f4e99530a5a1804c290b0ea5efb380070ffdad36ad8f65f","impliedFormat":99},{"version":"f738b4d9935f21b36b054b5ce8f72b31179d324af1687d46b7c810e7a0610b9c","impliedFormat":99},{"version":"7d70d1cae06e783afb6104d6c54611ef97052645afbe14b5963bec32c3ce5c7c","impliedFormat":99},{"version":"cffa607eb95c25b119f9aad3c2e4db80384267cd35d398b537a90aee5c5dfa5e","impliedFormat":99},{"version":"9a710119dd285b73683cdbedaa3798e30aa028e5488b28c1b444f119d0d7b39d","impliedFormat":99},{"version":"c0064198c128285cf5b4f16ca3be43c117d0ef5bfa99aeb415c668ccb01a961c","impliedFormat":99},{"version":"1c23e9084091ec02fe4d3666a22b6e0df02fd64cf9d48fcacc56f22f5cfcb8ab","impliedFormat":99},{"version":"f5a8ed3184cd25bbf61ac2b00f322b1325ecc67e6c5323388ee41a7fbb985be0","impliedFormat":99},{"version":"be2ee1cbe2dd84188fa4e296c5bc19b7af8b9d9511381226884d12bdb5285ab7","impliedFormat":99},{"version":"edacf4223ac6d11361a607880e88012d2da04c27aba76f52c08e9167ba34ed2e","impliedFormat":99},{"version":"f21eedef257a2e149e7da0e610ebc2a811f7507f444f8c959c398fbf36804e55","impliedFormat":99},{"version":"736a3485c9e96b87b11fe6e55b5455e9f85ef59edc09bff1eb2f114ef661d1e5","impliedFormat":99},{"version":"073ca26c96184db9941b5ec0ddea6981c9b816156d9095747809e524fdd90e35","impliedFormat":1},{"version":"e41d17a2ec23306d953cda34e573ed62954ca6ea9b8c8b74e013d07a6886ce47","impliedFormat":1},{"version":"241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","impliedFormat":1},{"version":"2ae3787e1498b20aad1b9c2ee9ea517ec30e89b70d242d8e3e52d1e091039695","impliedFormat":1},{"version":"c7c72c4cffb1bc83617eefed71ed68cc89df73cab9e19507ccdecb3e72b4967e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","impliedFormat":1},{"version":"38b38db08e7121828294dec10957a7a9ff263e33e2a904b346516d4a4acca482","impliedFormat":1},{"version":"a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","impliedFormat":1},{"version":"8a2aaea564939c22be05d665cc955996721bad6d43148f8fa21ae8f64afecd37","impliedFormat":1},{"version":"e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","impliedFormat":1},{"version":"e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","impliedFormat":1},{"version":"95950a187596e206d32d5d9c7b932901088c65ed8f9040e614aa8e321e0225ef","impliedFormat":1},{"version":"89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","impliedFormat":1},{"version":"e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","impliedFormat":1},{"version":"71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","impliedFormat":1},{"version":"7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","impliedFormat":1},{"version":"78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","impliedFormat":1},{"version":"5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","impliedFormat":1},{"version":"f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","impliedFormat":1},{"version":"9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","impliedFormat":1},{"version":"3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","impliedFormat":1},{"version":"2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","impliedFormat":1},{"version":"4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","impliedFormat":1},{"version":"61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","impliedFormat":1},{"version":"64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","impliedFormat":1},{"version":"0521108c9f8ddb17654a0a54dae6ba9667c99eddccfd6af5748113e022d1c37a","impliedFormat":1},{"version":"c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","impliedFormat":1},{"version":"ee764e6e9a7f2b987cc1a2c0a9afd7a8f4d5ebc4fdb66ad557a7f14a8c2bd320","impliedFormat":1},{"version":"0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","impliedFormat":1},{"version":"5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","impliedFormat":1},{"version":"e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","impliedFormat":1},{"version":"b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","impliedFormat":1},{"version":"6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","impliedFormat":1},{"version":"d7058e75920120b142a9d57be25562a3cd9a936269fd52908505f530105f2ec4","impliedFormat":1},{"version":"6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","impliedFormat":1},{"version":"0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","impliedFormat":1},{"version":"91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","impliedFormat":1},{"version":"db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","impliedFormat":1},{"version":"758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","impliedFormat":1},{"version":"2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","impliedFormat":1},{"version":"6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","impliedFormat":1},{"version":"a472a1d3f25ce13a1d44911cd3983956ac040ce2018e155435ea34afb25f864c","impliedFormat":1},{"version":"b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","impliedFormat":1},{"version":"792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","impliedFormat":1},{"version":"a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","impliedFormat":1},{"version":"93181bac0d90db185bb730c95214f6118ae997fe836a98a49664147fbcaf1988","impliedFormat":1},{"version":"8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","impliedFormat":1},{"version":"b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","impliedFormat":1},{"version":"4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","impliedFormat":1},{"version":"cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","impliedFormat":1},{"version":"75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","impliedFormat":1},{"version":"b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","impliedFormat":1},{"version":"c54166a85bd60f86d1ebb90ce0117c0ecb850b8a33b366691629fdf26f1bbbd8","impliedFormat":1},{"version":"0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","impliedFormat":1},{"version":"80f23f1d60fbed356f726b3b26f9d348dddbb34027926d10d59fad961e70a730","impliedFormat":1},{"version":"cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","impliedFormat":1},{"version":"cc20bb2227dd5de0aab0c8d697d1572f8000550e62c7bf5c92f212f657dd88c5","impliedFormat":1},{"version":"06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","impliedFormat":1},{"version":"860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","impliedFormat":1},{"version":"f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","impliedFormat":1},{"version":"d0da80c845999a16c24d0783033fb5366ada98df17867c98ad433ede05cd87fd","impliedFormat":1},{"version":"bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","impliedFormat":1},{"version":"fd9a991b51870325e46ebb0e6e18722d313f60cd8e596e645ec5ac15b96dbf4e","impliedFormat":1},{"version":"c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","impliedFormat":1},{"version":"a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","impliedFormat":1},{"version":"d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","impliedFormat":1},{"version":"fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","impliedFormat":1},{"version":"063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","impliedFormat":1},{"version":"314e402cd481370d08f63051ae8b8c8e6370db5ee3b8820eeeaaf8d722a6dac6","impliedFormat":1},{"version":"9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","impliedFormat":1},{"version":"4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","impliedFormat":1},{"version":"656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","impliedFormat":1},{"version":"3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","impliedFormat":1},{"version":"1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","impliedFormat":1},{"version":"af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","impliedFormat":1},{"version":"70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","impliedFormat":1},{"version":"af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","impliedFormat":1},{"version":"cefc20054d20b85b534206dbcedd509bb74f87f3d8bc45c58c7be3a76caa45e1","impliedFormat":1},{"version":"ad6eee4877d0f7e5244d34bc5026fd6e9cf8e66c5c79416b73f9f6ebf132f924","impliedFormat":1},{"version":"4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","impliedFormat":1},{"version":"f4749c102ced952aa6f40f0b579865429c4869f6d83df91000e98005476bee87","impliedFormat":1},{"version":"56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","impliedFormat":1},{"version":"8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","impliedFormat":1},{"version":"05f56cd4b929977d18df8f3d08a4c929a2592ef5af083e79974b20a063f30940","impliedFormat":1},{"version":"547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","impliedFormat":1},{"version":"b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","impliedFormat":1},{"version":"3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","impliedFormat":1},{"version":"140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","impliedFormat":1},{"version":"0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","impliedFormat":1},{"version":"cb46b38d5e791acaa243bf342b8b5f8491639847463ac965b93896d4fb0af0d9","impliedFormat":1},{"version":"7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","impliedFormat":1},{"version":"af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","impliedFormat":1},{"version":"006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","impliedFormat":1},{"version":"7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","impliedFormat":1},{"version":"339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","impliedFormat":1},{"version":"34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","impliedFormat":1},{"version":"9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","impliedFormat":1},{"version":"18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","impliedFormat":1},{"version":"5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","impliedFormat":1},{"version":"5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","impliedFormat":1},{"version":"907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","impliedFormat":1},{"version":"ce60a562cd2a92f37a88f2ddd99a3abfbc5848d7baf38c48fb8d3243701fcb75","impliedFormat":1},{"version":"a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","impliedFormat":1},{"version":"f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","impliedFormat":1},{"version":"75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","impliedFormat":1},{"version":"9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","impliedFormat":1},{"version":"b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","impliedFormat":1},{"version":"b6e2b0448ced813b8c207810d96551a26e7d7bb73255eea4b9701698f78846d6","impliedFormat":1},{"version":"8ae10cd85c1bd94d2f2d17c4cbd25c068a4b2471c70c2d96434239f97040747a","impliedFormat":1},{"version":"9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","impliedFormat":1},{"version":"b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","impliedFormat":1},{"version":"e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","impliedFormat":1},{"version":"ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","impliedFormat":1},{"version":"8776a368617ce51129b74db7d55c3373dadcce5d0701e61d106e99998922a239","impliedFormat":1},{"version":"5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","impliedFormat":1},{"version":"9108ab5af05418f599ab48186193b1b07034c79a4a212a7f73535903ba4ca249","impliedFormat":1},{"version":"bb4e2cdcadf9c9e6ee2820af23cee6582d47c9c9c13b0dca1baaffe01fbbcb5f","impliedFormat":1},{"version":"6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","impliedFormat":1},{"version":"423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","impliedFormat":1},{"version":"fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","impliedFormat":1},{"version":"2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","impliedFormat":1},{"version":"c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","impliedFormat":1},{"version":"02ae43d5bae42efcd5a00d3923e764895ce056bca005a9f4e623aa6b4797c8af","impliedFormat":1},{"version":"db6e01f17012a9d7b610ae764f94a1af850f5d98c9c826ad61747dca0fb800bd","impliedFormat":1},{"version":"8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","impliedFormat":1},{"version":"24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","impliedFormat":1},{"version":"33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","impliedFormat":1},{"version":"0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","impliedFormat":1},{"version":"16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","impliedFormat":1},{"version":"8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","impliedFormat":1},{"version":"d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","impliedFormat":1},{"version":"97f9169882d393e6f303f570168ca86b5fe9aab556e9a43672dae7e6bb8e6495","impliedFormat":1},{"version":"7c9adb3fcd7851497818120b7e151465406e711d6a596a71b807f3a17853cb58","impliedFormat":1},{"version":"6752d402f9282dd6f6317c8c048aaaac27295739a166eed27e00391b358fed9a","impliedFormat":1},{"version":"9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","impliedFormat":1},{"version":"fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","impliedFormat":1},{"version":"85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","impliedFormat":1},{"version":"84794e3abd045880e0fadcf062b648faf982aa80cfc56d28d80120e298178626","impliedFormat":1},{"version":"053d8b827286a16a669a36ffc8ccc8acdf8cc154c096610aa12348b8c493c7b8","impliedFormat":1},{"version":"3cce4ce031710970fe12d4f7834375f5fd455aa129af4c11eb787935923ff551","impliedFormat":1},{"version":"8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","impliedFormat":1},{"version":"62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","impliedFormat":1},{"version":"c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","impliedFormat":1},{"version":"8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","impliedFormat":1},{"version":"132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","impliedFormat":1},{"version":"df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","impliedFormat":1},{"version":"33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","impliedFormat":1},{"version":"ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","impliedFormat":1},{"version":"a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","impliedFormat":1},{"version":"eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","impliedFormat":1},{"version":"0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","impliedFormat":1},{"version":"aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","impliedFormat":1},{"version":"0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","impliedFormat":1},{"version":"40f06693e2e3e58526b713c937895c02e113552dc8ba81ecd49cdd9596567ddb","impliedFormat":1},{"version":"4ed5e1992aedb174fb8f5aa8796aa6d4dcb8bd819b4af1b162a222b680a37fa0","impliedFormat":1},{"version":"d7f4bd46a8b97232ea6f8c28012b8d2b995e55e729d11405f159d3e00c51420a","impliedFormat":1},{"version":"d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","impliedFormat":1},{"version":"e4f4f9cf1e3ac9fd91ada072e4d428ecbf0aa6dc57138fb797b8a0ca3a1d521c","impliedFormat":1},{"version":"12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","impliedFormat":1},{"version":"340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","impliedFormat":1},{"version":"c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","impliedFormat":1},{"version":"7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","impliedFormat":1},{"version":"5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","impliedFormat":1},{"version":"9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","impliedFormat":1},{"version":"1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","impliedFormat":1},{"version":"8018dd2e95e7ce6e613ddd81672a54532614dc745520a2f9e3860ff7fb1be0ca","impliedFormat":1},{"version":"b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","impliedFormat":1},{"version":"0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","impliedFormat":1},{"version":"3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","impliedFormat":1},{"version":"032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","impliedFormat":1},{"version":"69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","impliedFormat":1},{"version":"0e704ee6e9fd8b6a5a7167886f4d8915f4bc22ed79f19cb7b32bd28458f50643","impliedFormat":1},{"version":"06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","impliedFormat":1},{"version":"904a96f84b1bcee9a7f0f258d17f8692e6652a0390566515fe6741a5c6db8c1c","impliedFormat":1},{"version":"11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","impliedFormat":1},{"version":"2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","impliedFormat":1},{"version":"1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","impliedFormat":1},{"version":"1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","impliedFormat":1},{"version":"07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","impliedFormat":1},{"version":"619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","impliedFormat":1},{"version":"f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","impliedFormat":1},{"version":"f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","impliedFormat":1},{"version":"350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","impliedFormat":1},{"version":"eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","impliedFormat":1},{"version":"45b74185005ed45bec3f07cac6e4d68eaf02ead9ff5a66721679fb28020e5e7c","impliedFormat":1},{"version":"0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","impliedFormat":1},{"version":"c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","impliedFormat":1},{"version":"5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","impliedFormat":1},{"version":"ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","impliedFormat":1},{"version":"cff7b0c6a08e66a58fdb27e3deb072a0a99c0b1ccb7f53e88228142c05342554","impliedFormat":99},{"version":"19dadaace54c1551c517fa839c7d96b908750207076be440122b7c5e25d28fdb","impliedFormat":99},{"version":"036782d4a7cee4ec013d550d1c63e176e62c57658011f53d76b19fa9f56f11a7","impliedFormat":99},{"version":"a1fc8b27b9375f1edc7ace1193f7a838ac1bc7cba03cc595a2d6d5196b7005d8","impliedFormat":1},{"version":"c48c0c340689f94c17d633f1db9e9200152f3be31bbb431a09a38929673c801c","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"68ba7d7e4a34414e812c3fc77727366da26afe1ee575455628db0ba3a1e0ae63","impliedFormat":1},{"version":"b9b881045ea548a057056c0dea01cbed5db634356a5440b715040f5d260bdf68","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"eff99fb8e69bff92fd8e6c18e4ebf3f762926c498d155729d28dfb2bddfe428c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"881a94bbc18ad3616e93c5063bb03e702d82dd9ac4bc286e992e16a931a4f146","impliedFormat":1},{"version":"685657a3ec619ef12aa7f754eee3b28598d3bf9749da89839a72a343fffef5ff","impliedFormat":1},{"version":"f053e5d4a5e7e50c07fced3b13f6aef66c49f92e92c3e83da0da5e025f915543","impliedFormat":1},{"version":"d51990e06fce43eb05e638f1df07558126d588b3b7f92f398b83ec15cfa7e196","impliedFormat":1},{"version":"e1d94cb75140795ba8881a50563ed2872fb6d5954ab21717256fdbcf66a2ac6a","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"a87ea9de0593dbcc5d3969188f96b2fdcf55d40b5dd0e89257e5be72d2a548c0","impliedFormat":1},{"version":"e9abad184aca454f338338c8018e5d4dab634cea2d6db7a69ff315d9b8647477","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"d846dd3e94a1d15d89e13456d32fbcc1126cd7d08218b7b5e98140da3d206d13","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"47ab634529c5955b6ad793474ae188fce3e6163e3a3fb5edd7e0e48f14435333","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e04b85e2b08f6e659387bd37953e89afb219cd2fa9883c7565b61aea84335915","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"09913a6464bdeae74e00d7cc7d5921847178d74c1eadd3bf14b72988cca15f77","impliedFormat":1},{"version":"3c61ec39cb462f6d1f8598e0ecef780705300409b27e0ed103301d761109d227","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1},{"version":"4115aa147c5a64817fb55274b44087cbf1bc90f54906bfdfc9ee847a71cd91cf","impliedFormat":99},{"version":"0879e28cca0a2494308975c38e750f806c59c36cd4b3bc13570ff99a8bd9c280","impliedFormat":99},{"version":"072f583571d6e3d30cd9760ee3485d29484fb7b54ba772ac135c747a380096a1","impliedFormat":99},{"version":"7212c2d58855b8df35275180e97903a4b6093d4fbaefea863d8d028da63938c6","impliedFormat":99},{"version":"5bd0f306b4a9dc65bccf38d9295bc52720d2fa455e06f604529d981b5eb8d9dc","impliedFormat":99},{"version":"f30992084e86f4b4c223c558b187cb0a9e83071592bd830d8ff2a471ee2bf2d4","impliedFormat":99},{"version":"854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","impliedFormat":99},{"version":"dd9faff42b456b5f03b85d8fbd64838eb92f6f7b03b36322cbc59c005b7033d3","impliedFormat":99},{"version":"6ff702721d87c0ba8e7f8950e7b0a3b009dfd912fab3997e0b63fab8d83919c3","impliedFormat":99},{"version":"9dce9fc12e9a79d1135699d525aa6b44b71a45e32e3fa0cf331060b980b16317","impliedFormat":99},{"version":"586b2fd8a7d582329658aaceec22f8a5399e05013deb49bcfde28f95f093c8ee","impliedFormat":99},{"version":"59c44b081724d4ab8039988aba34ee6b3bd41c30fc2d8686f4ed06588397b2f7","impliedFormat":99},{"version":"ef1f3eadd7bed282de45bafd7c2c00105cf1db93e22f6cd763bec8a9c2cf6df1","impliedFormat":99},{"version":"3d8885d13f76ff35b7860039e83c936ff37553849707c2fd1d580d193a52be5b","impliedFormat":99},{"version":"3dfcd0a3bfa70b53135db3cf2e4ddcb7eccc3e4418ce833ae24eecd06928328f","impliedFormat":1},{"version":"33e12c9940a7f23d50742e5925a193bb4af9b23ee159251e6bc50bb9070618a1","impliedFormat":1},{"version":"bc41a8e33caf4d193b0c49ec70d1e8db5ce3312eafe5447c6c1d5a2084fece12","impliedFormat":1},{"version":"7c33f11a56ba4e79efc4ddae85f8a4a888e216d2bf66c863f344d403437ffc74","impliedFormat":1},{"version":"cbef1abd1f8987dee5c9ed8c768a880fbfbff7f7053e063403090f48335c8e4e","impliedFormat":1},{"version":"9249603c91a859973e8f481b67f50d8d0b3fa43e37878f9dfc4c70313ad63065","impliedFormat":1},{"version":"0132f67b7f128d4a47324f48d0918ec73cf4220a5e9ea8bd92b115397911254f","impliedFormat":1},{"version":"06b37153d512000a91cad6fcbae75ca795ecec00469effaa8916101a00d5b9e2","impliedFormat":1},{"version":"8a641e3402f2988bf993007bd814faba348b813fc4058fce5b06de3e81ed511a","impliedFormat":1},{"version":"281744305ba2dcb2d80e2021fae211b1b07e5d85cfc8e36f4520325fcf698dbb","impliedFormat":1},{"version":"e1b042779d17b69719d34f31822ddba8aa6f5eb15f221b02105785f4447e7f5b","impliedFormat":1},{"version":"6858337936b90bd31f1674c43bedda2edbab2a488d04adc02512aef47c792fd0","impliedFormat":1},{"version":"15cb3deecc635efb26133990f521f7f1cc95665d5db8d87e5056beaea564b0ce","impliedFormat":1},{"version":"e27605c8932e75b14e742558a4c3101d9f4fdd32e7e9a056b2ca83f37f973945","impliedFormat":1},{"version":"f0443725119ecde74b0d75c82555b1f95ee1c3cd371558e5528a83d1de8109de","impliedFormat":1},{"version":"7794810c4b3f03d2faa81189504b953a73eb80e5662a90e9030ea9a9a359a66f","impliedFormat":1},{"version":"b074516a691a30279f0fe6dff33cd76359c1daacf4ae024659e44a68756de602","impliedFormat":1},{"version":"57cbeb55ec95326d068a2ce33403e1b795f2113487f07c1f53b1eaf9c21ff2ce","impliedFormat":1},{"version":"a00362ee43d422bcd8239110b8b5da39f1122651a1809be83a518b1298fa6af8","impliedFormat":1},{"version":"a820499a28a5fcdbf4baec05cc069362041d735520ab5a94c38cc44db7df614c","impliedFormat":1},{"version":"33a6d7b07c85ac0cef9a021b78b52e2d901d2ebfd5458db68f229ca482c1910c","impliedFormat":1},{"version":"8f648847b52020c1c0cdfcc40d7bcab72ea470201a631004fde4d85ccbc0c4c7","impliedFormat":1},{"version":"7821d3b702e0c672329c4d036c7037ecf2e5e758eceb5e740dde1355606dc9f2","impliedFormat":1},{"version":"213e4f26ee5853e8ba314ecad3a73cd06ab244a0809749bb777cbc1619aa07d8","impliedFormat":1},{"version":"cafd6ef91d96228a618436c03d60fe5078f43d32df4c39ebd9f3f7d013dbe337","impliedFormat":1},{"version":"961fa18e1658f3f8e38c23e1a9bc3f4d7be75b056a94700291d5f82f57524ff0","impliedFormat":1},{"version":"079c02dc397960da2786db71d7c9e716475377bcedd81dede034f8a9f94c71b8","impliedFormat":1},{"version":"a7595cbb1b354b54dff14a6bb87d471e6d53b63de101a1b4d9d82d3d3f6eddec","impliedFormat":1},{"version":"1f49a85a97e01a26245fd74232b3b301ebe408fb4e969e72e537aa6ffbd3fe14","impliedFormat":1},{"version":"9c38563e4eabfffa597c4d6b9aa16e11e7f9a636f0dd80dd0a8bce1f6f0b2108","impliedFormat":1},{"version":"a971cba9f67e1c87014a2a544c24bc58bad1983970dfa66051b42ae441da1f46","impliedFormat":1},{"version":"df9b266bceb94167c2e8ae25db37d31a28de02ae89ff58e8174708afdec26738","impliedFormat":1},{"version":"9e5b8137b7ee679d31b35221503282561e764116d8b007c5419b6f9d60765683","impliedFormat":1},{"version":"3e7ae921a43416e155d7bbe5b4229b7686cfa6a20af0a3ae5a79dfe127355c21","impliedFormat":1},{"version":"c7200ae85e414d5ed1d3c9507ae38c097050161f57eb1a70bef021d796af87a7","impliedFormat":1},{"version":"4edb4ff36b17b2cf19014b2c901a6bdcdd0d8f732bcf3a11aa6fd0a111198e27","impliedFormat":1},{"version":"810f0d14ce416a343dcdd0d3074c38c094505e664c90636b113d048471c292e2","impliedFormat":1},{"version":"9c37dc73c97cd17686edc94cc534486509e479a1b8809ef783067b7dde5c6713","impliedFormat":1},{"version":"5fe2ef29b33889d3279d5bc92f8e554ffd32145a02f48d272d30fc1eea8b4c89","impliedFormat":1},{"version":"e39090ffe9c45c59082c3746e2aa2546dc53e3c5eeb4ad83f8210be7e2e58022","impliedFormat":1},{"version":"9f85a1810d42f75e1abb4fc94be585aae1fdac8ae752c76b912d95aef61bf5de","impliedFormat":1},{"version":"e2ff1133815a9e5075c2162489773e251333bb1356becb22c4490637c5510e8d","impliedFormat":99},{"version":"c8bc8286afcac65279b56a3c07c09a30fc8db71722added527ac4f6afb6f3f58","impliedFormat":99},{"version":"a8463bff8c3bc3d80eda79e833aea30fea7da979411da8713909fbe15e1e19af","impliedFormat":99},{"version":"ed7bef6f3291eaae5a553e6b0043e5a7a2bcbc66c67c5100ae4e3b97d790b244","impliedFormat":99},{"version":"b6d7d26a2395a94dd1b9dc0d06e699bb50b4ec664589fd477ce7cc344e20e172","impliedFormat":1},{"version":"332680a9475bd631519399f9796c59502aa499aa6f6771734eec82fa40c6d654","impliedFormat":1},{"version":"911484710eb1feaf615cb68eb5875cbfb8edab2a032f0e4fe5a7f8b17e3a997c","impliedFormat":1},{"version":"d83f3c0362467589b3a65d3a83088c068099c665a39061bf9b477f16708fa0f9","impliedFormat":1},{"version":"0dee1e1c0f7e5302d05eadd14098758ba146274c4a3b646475fc8bce4d4dbcac","impliedFormat":1},{"version":"29994a97447d10d003957bcc0c9355c272d8cf0f97143eb1ade331676e860945","impliedFormat":1},{"version":"6865b4ef724cb739f8f1511295f7ce77c52c67ff4af27e07b61471d81de8ecfc","impliedFormat":1},{"version":"9cddf06f2bc6753a8628670a737754b5c7e93e2cfe982a300a0b43cf98a7d032","impliedFormat":1},{"version":"3f8e68bd94e82fe4362553aa03030fcf94c381716ce3599d242535b0d9953e49","impliedFormat":1},{"version":"63e628515ec7017458620e1624c594c9bd76382f606890c8eebf2532bcab3b7c","impliedFormat":1},{"version":"355d5e2ba58012bc059e347a70aa8b72d18d82f0c3491e9660adaf852648f032","impliedFormat":1},{"version":"0c543e751bbd130170ed4efdeca5ff681d06a99f70b5d6fe7defad449d08023d","impliedFormat":1},{"version":"c301dded041994ed4899a7cf08d1d6261a94788da88a4318c1c2338512431a03","impliedFormat":1},{"version":"c31d7d10054a17dfca7b799eea711682c68165bf56852f1f279e8f8f15b39d2d","impliedFormat":1},{"version":"ded3d0fb8ac3980ae7edcc723cc2ad35da1798d52cceff51c92abe320432ceeb","impliedFormat":1},{"version":"ed7f0e3731c834809151344a4c79d1c4935bf9bc1bd0a9cc95c2f110b1079983","impliedFormat":1},{"version":"d4886d79f777442ac1085c7a4fe421f2f417aa70e82f586ca6979473856d0b09","impliedFormat":1},{"version":"ed849d616865076f44a41c87f27698f7cdf230290c44bafc71d7c2bc6919b202","impliedFormat":1},{"version":"9a0a0af04065ddfecc29d2b090659fce57f46f64c7a04a9ba63835ef2b2d0efa","impliedFormat":1},{"version":"10297d22a9209a718b9883a384db19249b206a0897e95f2b9afeed3144601cb0","impliedFormat":1},{"version":"a19f4622f2cadcadc225412e4164d09cb9504737ed6b3516f68ed25b67b18e15","impliedFormat":1},{"version":"34d206f6ba993e601dade2791944bdf742ab0f7a8caccc661106c87438f4f904","impliedFormat":1},{"version":"05ca49cc7ba9111f6c816ecfadb9305fffeb579840961ee8286cc89749f06ebd","impliedFormat":1},{"version":"b405b126969a1be5a8ecc961defcc811d38d396ba0d3f6b67ed9f1febafbad2c","impliedFormat":99},{"version":"bbb5dbaec3240953d5c2abbaae5d93b3140e79d3b1b62aa6811e2f7e06b52304","impliedFormat":99},{"version":"0ddb9d4f9d21ec894dc5f9f3698b3ceb41ab0a5543e1e1e941f40a7571a2c93f","impliedFormat":99},{"version":"82db11c4ee43a41d859988c5db42c3771dff565371f94bacbd1e4d8d6ceb47cd","impliedFormat":1},{"version":"0cae7d575de731f90ed8a34f49dc5407143d2022962d637a96d264c41c767802","impliedFormat":99},{"version":"582b1778e035bdbda739b5632724e14c441ce3067a7ba983bdd2980d8aba298a","impliedFormat":99},{"version":"826055cd1370d72da91a2fa54e7152d9b1756950e269feb77620beb02e77e39d","impliedFormat":99},{"version":"ff0d6e315d9075e4e7dc278c1144c0f4f51b7ec1e8234e28b4b3b8827865cf48","impliedFormat":99},{"version":"746108260c6432cbd3cb77eb940fb57c4bdde2ef4ff1b83aa64434a0d10581e7","impliedFormat":99},{"version":"8eb75f90a5282e5d7ebefdc941db6a4649a9bd2b82a534fec7970cf98def08cd","impliedFormat":99},{"version":"9e848f9b9852559b843578bd3d67ca56161b89ae644cd49677dea5aff83e04d7","impliedFormat":99},{"version":"4843748272b88b24f1fee7ff872cd490225417200db87fc69dddb82c96254382","impliedFormat":99},{"version":"ef88e402a0887a0321e1f3a1c4cde13aeba836da76bcb5b5fc06a738a735ce78","impliedFormat":99},{"version":"22d971ab3be49a06b7c6c51ccf4fed23628a30133b9deac8ad0b19f59947d36c","impliedFormat":99},{"version":"ac2ccaac834ab333c689add252296b336cfea33edc7017ce3e2b754721653ba4","impliedFormat":99},{"version":"460259c2236f3a0f613739e1d0e8fa5448a46942f70e0fa5164f23579237e777","impliedFormat":99},{"version":"46aff3d1bac0293f14436f652c96c0a543ff585abee014f18afc6da9627cf902","impliedFormat":99},{"version":"4cbf57d4d9c8f9259346ed5f7ebb4af69a17bf0ce2bed5a88f4551400a279d38","impliedFormat":99},{"version":"27679e96d1bd38c5938178aaf4abe8627493090b63d6bae2ce8436e6a87ebe4d","impliedFormat":1},{"version":"a77fbecee25688f568e18b43f8f54195d6c278a2a9a687ada5ab3d2f726524eb","impliedFormat":99},{"version":"e29f2b3a93ca3392fe29fa8e7b93985e854b44fe28e2b5c113f08296095bd6b7","impliedFormat":99},{"version":"d27956c8b392088a06d882e1edb58aab4d5cf5ab1229b73f99329ab21f352147","impliedFormat":99},{"version":"d643518d0b08b3d8d6e7f1fa884bca57ef95caaa1c312abbd9e1d4ed0d51c370","impliedFormat":99},{"version":"c9d68b2de905448dc1fcf7c7b12c6871a004478fdc7da0c6e91500bb06a8ab93","impliedFormat":99},{"version":"485a18985da204450f082099b37c81d3c822e8a9e62881484c63454db80f467e","impliedFormat":99},{"version":"ff8eddc13631b50713a5dda6aa081d337229dbd8517c1fd010dd195e5dca74b0","impliedFormat":99},{"version":"c5fbd97c48f36f167b615a598f43616681bf4587183a9e5bc761ac3486cc7c50","impliedFormat":99},{"version":"9fd99d6e7b0e5cd73faa10f0d3cbed9360b668811f7bd276e9065269fb22a3d0","impliedFormat":99},{"version":"072c6350f44d88050d985312c29b9710458e33dbad69d8a5fae510deb9816367","impliedFormat":99},{"version":"bac0424756c285e99541cf039dcf0dc0f529549b680c042b88829b8f3a11e1c4","impliedFormat":99},{"version":"bd154f054bc545f8d63d0614a849b2a7218f744fda345aec5de32ad158922d60","impliedFormat":99},{"version":"2300654477cae847f72dd57eac995dad9fb549e78ffe4b65be6ca2d5d2ad0e88","impliedFormat":99},{"version":"b3bb0c070a664d4c442f662aee9351089931c41049984de53b8caaa0ba9275db","impliedFormat":99},{"version":"086b630d4f67fa7f286a64744cf9bdcd33bb4a1f15d7fde5bd778d2087c825e8","impliedFormat":99},{"version":"283f107af3b4e17e94d1cce37deddca170483e6a92bed444a94e8507d0abfd82","impliedFormat":99},{"version":"d2080113908b71cc1dfe635669c77d34de5f239c4d7ba1ce2e91f1d31051babc","impliedFormat":99},{"version":"50af99db95d71e25fb479d076da68e667df6c0ca84f7b4376f1845210cc56570","impliedFormat":99},{"version":"640ae8e1ba11756a5fdc2f19d6430f22970a873ced214a9e609d81ef1bb9e936","impliedFormat":99},{"version":"a56903697978cf9794792e739364d64b0099a6b95ef14f4c54cf0631f10ef2dd","impliedFormat":99},{"version":"68898d6fe334f80e4717bede07c1e8f749585b2939cfbac5914443fb6481c625","impliedFormat":99},{"version":"be709fb04e306976c0e768819c345178ac49bf2504fcb13e157d1b890ad3538b","impliedFormat":99},{"version":"dc229aae5d6daf495949484394cc63105de876c09d198ee3b9300d75f4c678a8","impliedFormat":99},{"version":"dad539a44fe9b903bf5744ed26c423a2d784c2d6ef070b94e1e495faa63d9263","impliedFormat":99},{"version":"6487ab02c790437eeb8141b5be082819dd300930776516b21954e340e1e6a122","impliedFormat":99},{"version":"c7e959a3f90ed588762d49c2f6d9f6e9331d922aa84e11a9e63f3cfa366bda3f","impliedFormat":99},{"version":"2384e202bc529ed367dcabf932efd86b833d5bceb9072ac946fc3ede658239b6","impliedFormat":99},{"version":"a45ee7555d019a67fbe092898d1aef0b1d02a9f6679ab84461ff515b4460d706","impliedFormat":99},{"version":"cf460f5338ad491b95573058e0f04bf01d94c755d9f82234fdef1aa1c1ca165f","impliedFormat":99},{"version":"dc733447f6b0a7731393f199166d7c3fc9ca32a729742f6e0350fe908316cebe","impliedFormat":99},{"version":"98444109a047e85fbedcf378f2ff8a12769415e9eedeb30a69b34b2e248c7d8c","impliedFormat":99},{"version":"d926b6594cecd764589f3fe19945e97c4e20ef7925b78d418524db1ec8250c0d","impliedFormat":99},{"version":"f2efbde15fe38d58987c54acd38878ea9fd4517af0c1c6e828c080439d1be7c6","impliedFormat":99},{"version":"536f954ebd7318ee5e5bf3689ce6d1bf511e2e22a474363900987179eefdeab5","impliedFormat":99},{"version":"562ac2d750f84e5ee9f73d14ea0592088a931fb7d76811eace71ee0703c496ab","impliedFormat":99},{"version":"647e698b1559b5e944d84fb86dfeef201ec045a73f763ad32a178539baf40f4b","impliedFormat":99},{"version":"052c47e2e979a0a9af66c513f8018f22a715c3a17d0a81c1bcf015cc80d48151","impliedFormat":99},{"version":"4ef666b508ec4f58fbc0c4207924011aabc7ed3c4ca2800b74a10d4cf9f3a8f3","impliedFormat":99},{"version":"4b240475e528cc8564a7fdebbb14d94323f71d6563de8876f2b4a7cd5a24b00c","impliedFormat":99},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"f429b61e369208ef7668ebf1dc63176e506fbfaea7b0ecc13d586a5839ebb071","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1},{"version":"709672e222edea41ff449a99b38c5760217255d35ba62b93119234cbe8f35f08","impliedFormat":99},{"version":"91646511787167dffda232e8c46169b8347fd81a3948c343b75b0fec43ff7096","impliedFormat":99},{"version":"e19e9e1b8eeb17dd77d13517cce79de155197e779d1bf53ae50444161b990a19","impliedFormat":99},{"version":"41e4ed4c600c3fa1473aa122e313a66380499b45a8aee8193b31af681024a449","impliedFormat":99},{"version":"9a478a42345b6989b4a6f143c3f19c78acdeb8f294238ef488e7ca92d0df7b61","impliedFormat":99},{"version":"4707d0bf87c103d632115bafa51d74f886175495595a3f972188dd4b8fb49ce0","impliedFormat":99},{"version":"3a11231ac403cfbc83e242069c822eaaf2ceee6f78b1dbfb825e63d37f88f33a","impliedFormat":99},{"version":"e06f27d7e7c6c02c34c6dc7f2534c91e2fdc53f5c4d893e7d4057a72420014d5","impliedFormat":99},{"version":"6a0d0441d2bc889c0ae15a7e4faa7e55021f304c68ee00bd9104e4113db56830","impliedFormat":99},{"version":"83903be9c33d9d25370123db349a573a811822950fa0256c8a4b9c2b7e5965d4","impliedFormat":99},{"version":"6f607a7360ad94ae047f52bfa865c4298c152c036c6d25fc8fb08633cedecd9b","impliedFormat":99},{"version":"b4a8a5e0ea4cd3f25ec93e00951f0e2c972f7b268cfbc3650afa0551d05db236","impliedFormat":99},{"version":"ea21964c56e6d77d1fe2e9656a1eb622d307b1541c020e05000ce7759be5e774","impliedFormat":99},{"version":"f376512812634573393fde6a892e81b755180977667144c135327bf8b33531a5","impliedFormat":99},{"version":"a9d16cc4d0063ab0bddc09a3641bc26c8bb48352228c20c088ff4c6d549fffb3","impliedFormat":99},{"version":"ca47f41c686846b0ec56b80a4406428237dae1622dca38ff56c760721b002e07","impliedFormat":99},{"version":"68791cb516f09f5c183990026e228b21d96bee1fad309ebec66e636d1247756c","impliedFormat":99},{"version":"d53261135cace29f4389d16f06949c4c6ec9901d4f88c9b590719f0ee9660ce4","impliedFormat":99},{"version":"a611f946ac00800e8348bda3a1e2ad9ec914f614110bedebb167b36bf145c66f","impliedFormat":99},{"version":"9be8e3fa1c203497d727ed7524e55fc5f660638652e4bda331b79f919bedc5e9","impliedFormat":99},{"version":"6fc1ca49f20bbe80132897cc65068b3ef421e71f655ccfa6ab496994a5602af3","impliedFormat":99},{"version":"6ea2de2d4e0c568df82661c2366bde715c1ee21481b233c4decda9c8a1920e41","impliedFormat":99},{"version":"1b9ccad6ba43fb959e25ccfab1df784bb7a5f4996898f6dadc85a6833414dbb3","impliedFormat":99},{"version":"73766d6f7a4da31fd474d4d24e9a378fc72134bb2b374ddb336ac7dcd47d98bb","impliedFormat":99},{"version":"b05cab27a8c1c3e82780a583586704b86736401057b556787e99ab5268eb68fb","impliedFormat":99},{"version":"9325e57fa440cb267bb56a525be130f2b5a5bc43e99b9be863dbf8edd2fddd7e","impliedFormat":99},{"version":"41c10dbe0d349b8bdf0f08ca384674ea82997e9a24ec37400453a18f56c8e5c7","impliedFormat":99},{"version":"d0eb5a0f1431a975b833fc1c03540498a6427f39a19e668e356377526a3c4847","impliedFormat":99},{"version":"c8f6b1fbcdaec6308f3caa72184495cf9062c72f9ff39fe21c4e45ebc4a0c67a","impliedFormat":99},{"version":"1a3cc1ab48d0d1005eb145b5e7ccb257a307e2eba4ee8a401f4a39a6ea6bbab0","impliedFormat":99},{"version":"0bfd58a675e0358e860259fa5be5a3d98ccea67c5a281d17999c730d60ef12da","impliedFormat":99},{"version":"dab507ddeddfc16a911c5676158a542018d8e19025e2fe66b15d47ec5ef6147a","impliedFormat":1},{"version":"a02124c0ee850443005ca9a4800b743c1afed28f9752afaf8c95cac6baf83877","impliedFormat":1},{"version":"67103274f373a618237fc4ddeb7c8098d3605e98fe1f4cbcf31e74e03868a79a","impliedFormat":1},{"version":"554acf414793d442a5602055e4f8d0b83edbd0e4a977bd4a90fdcf7b0b1fd898","impliedFormat":1},{"version":"52e2d806ccaab9371209f3fe262252e44cb4f79592e21500559bc6261c534d1e","impliedFormat":1},{"version":"b123d189617fe233217ddb7c8c0fd06b4581fdef69e77d63728d3006499f33eb","impliedFormat":1},{"version":"1afc34d5504997fea2fdbd2c1a137d4ee0f5e221e80a72f0b7cdf6029d48c61d","impliedFormat":1},{"version":"cefc795bc727964f7ec2991703fafe975a0b265ef4938d342f4dbd93ed7a5f86","impliedFormat":1},{"version":"0d390748eee58a959b560b93da0d6261a1d3ff87a246f459d8b3e7a20391b62c","impliedFormat":1},{"version":"fb652d576e7c73b08eb6f9a4f322aa841c1b857195745e6ca436724c179de2fb","impliedFormat":1},{"version":"d192c4305f2add7ebbe22e9328f788b341fcb66e5ce4bd23cd2b1de097fe890f","impliedFormat":1},{"version":"925c28c5e11d57a08d05059a147f7a91c0e447ec27726dc8b79655fa1ff05301","impliedFormat":1},{"version":"8c4242fbbba473b36879fb5c23f29482335ab05e4150f06c22edae4e44c894dd","impliedFormat":1},{"version":"2681cb7b5767f12041662d1db8c0994012ef98c8b41d26d2388497adfcb0cc64","impliedFormat":1},{"version":"4ac4739a6edf9fbd20a18b5b675b08291fc860dbf89784fbd85f6f303df8047c","impliedFormat":1},{"version":"1840ac8a2b18e0982da57d80a09f5e5ec0e38d18afea7ac4ce069d9bcb3b3cb6","impliedFormat":1},{"version":"681c823b35bcc451c501382a6ebecf0b09fc792d83efa1279a005aa62285ff7b","impliedFormat":1},{"version":"3c201db56028e893e4de5bd9d048bb804daabcf820be6bf96bb5905a0ffa1024","impliedFormat":1},{"version":"cff0422eb92de48515743c3638bed6c73cd7d1312513df94030dc4c41090457b","impliedFormat":1},{"version":"d478539c608c8ec78b2d0a7817c29efab421e29d80b641ccaa074a96fb577f04","impliedFormat":1},{"version":"a29d69c75a5a7b1d451b30dae820b745eb7efb5cb74abbe546451b1185c8b339","impliedFormat":1},{"version":"f97e2644e1e7763c6332e1067695ab3a2e51c06baab3985507da46a6e1200958","impliedFormat":1},{"version":"f2bac29fb3514f46c0c1ea981340c674098aa74c5fffe1e7630d31c177686450","impliedFormat":1},{"version":"b5499e8d3e39a1523d4d12718f77f1e2dcfa3f825f67898fcb90a9edb680e43e","impliedFormat":1},{"version":"e3c8c01adb8d63c65f122778d8f63911437024ec3f4733622c510273ce3b8823","impliedFormat":1},{"version":"a12603dea0828662dc971e86e1169ec7b243a606e460a04ba1e01051c4f52f36","impliedFormat":1},{"version":"96fc3dae2f110377fb32c48acf3efcebffd12df01c798466287183ade087719f","impliedFormat":1},{"version":"b86d0df4f4c8abcf28e629ace836c0f6423ea1509853178f56c6329b2a26ccfe","impliedFormat":1},{"version":"0e62d4ab3949b67c679fd23b39e55ed9f19597c0afb21d8ceeaacc4716ed20a9","impliedFormat":1},{"version":"04771a6db3f7b054afac1bb6d540d18efdbba7439415d4bbb759b8f39f1f5377","impliedFormat":1},{"version":"d0cebbf45fa0f4b492284e0be4b3cbd1610f05e33ed201ba8937b1c147bc974d","impliedFormat":1},{"version":"6a1b55618aef82ea35596613159dd7cd7805b07dbfcdc8fa288e41745f3ec98c","impliedFormat":1},{"version":"572fa17bfde079d0d5159c47702addc4f2e0060f8abb0437a5ce9d451473f53b","impliedFormat":1},{"version":"9c2971938ec0bb237bc330aeb026d82d1e7ed0da7391c8761263e717875f2b21","impliedFormat":1},{"version":"8db1b5e284bdd0df8797b1f70406cc7dd126587fca77be01e711910cd04103fa","impliedFormat":1},{"version":"31549213d7a9f3cf3aa96845b5860144e3900997771713c689d60276b4786664","impliedFormat":1},{"version":"822a8277cc73b8d96ce336ff56a1072c9f66485a64a562cc0f29cd7e550a87fa","impliedFormat":1},{"version":"a097e76e2b3a5a7ab5db2db9a5787dc4a3bccbc65228951c243fc0d58675467c","impliedFormat":1},{"version":"e996cc50e5bae651f0565e8499873d38145d8955e521e758426ba73758eb3bf5","impliedFormat":1},{"version":"8ad61067b3ba801965c04c2815c231847631a61c4da2b1987500b5aca6db161c","impliedFormat":1},{"version":"aadd40c020be82d01ba79caf35e1169bd3cd53bb6b999a4ddc5f00c9db847a46","impliedFormat":1},{"version":"f16df5990c987807a817d3d4218335095cf2783a1a7521e2871e64b8d0f6648e","impliedFormat":1},{"version":"81320fc91eea90e06f8781d5f6bd0d3990e0cc7a50e766a78b56e0a1cd44a332","impliedFormat":1},{"version":"224f89650a8724c67f36b98b5e5325d4a224cadfb9b387bf076adb76437443c7","impliedFormat":1},{"version":"36338d4f4ac9768967f2cdc092734373a3d0eb70b808def5222765825dcde534","impliedFormat":1},{"version":"0e5a227256596eb516def2d3ab823c2321cef34c28cacbb559c924b2374143e7","impliedFormat":1},{"version":"718d456c2624bdff0b7683ed67041995519f657b98f52b7890f11cdccac36f89","impliedFormat":1},{"version":"4b2e887e533849e74020b1c594604e990dd8fb3abf693b1d82c96d5079b27ea8","impliedFormat":1},{"version":"2f4f0059c74e8ecf9a5e962c6a8fc3aa258941dfc18343f50e2efc2923ea5c56","impliedFormat":1},{"version":"92e0c20c54604feb984ddc519b56460c61dd9b285fbc30174839286545ddf848","impliedFormat":1},{"version":"54a336776a1161336928376c78fcc9deda2b5890f9008631c7aea700b6727bb5","impliedFormat":1},{"version":"14d18076cf79b3c6ff515123a71836644f50c2956312a2ffc960028111489316","impliedFormat":1},{"version":"632e5af6af4bc7c3977dd4782ad03b37c0229806de4eec9666fd79841b6a68c0","impliedFormat":1},{"version":"8c3e1c25eff5752f6642204351420c99844c1b2a73aa0dd5f81b315cf38b32b0","impliedFormat":1},{"version":"2e51565212c8cd03202a9492d57e93c431041114762dedf69ac3be0f62e7fb20","impliedFormat":1},{"version":"06f894fea5d5bb81048440482e750f7cbd4932cabb95e4d485cb0b9be1d3eeaa","impliedFormat":1},{"version":"1f4b953a8025592dc5d7388a8a53e4aa390a66b3b53c86a419d9a2a28f962d97","impliedFormat":1},{"version":"b617019b6a719ce7a920e1909f3e62be8ac6a914746667bcfe10d8f350cc7089","impliedFormat":1},{"version":"cecf293195c298e093742c82e5995cbde08af76d41f9440224de7f83e077c4aa","impliedFormat":1},{"version":"575ce340b9a859c0589a04305dd9846184710eaee71a4effd071d5d406377ffd","impliedFormat":1},{"version":"e19b266bbbb0920afe1cba4d44cfcfd2a5a095cb8c0d5cf62a2cc47a9748214c","impliedFormat":1},{"version":"ed872db0e2a3622d6d92d9b110b7165d8cf23d44b6993783328e0088fdc6a33d","impliedFormat":1},{"version":"e34adafe9efbbe6d7af7e346ca7df8bb2e77a3a851d8207ae6199357b903b192","impliedFormat":1},{"version":"958fc2e0308e04a48b1f3a793d66aaec672278fc1ae0f31efb89febb84dac1a9","impliedFormat":1},{"version":"4e771fb2e12b05ef96d1a215adfd119643c057ad3e97739f85d1d7533a18caf7","impliedFormat":1},{"version":"02ffcc56317b8d9ee19f209b7cd8e037074ab508a1ad06754a2b1f2e77911f66","impliedFormat":1},{"version":"ab570c33c53acbc83ad2e24433a433fccf12c28389271cf3f5c44b871f547b2b","impliedFormat":1},{"version":"8b80e4dc9bc218ab9e8d701b1a5471cfa3601077411455dd821de1a29de0b4c9","impliedFormat":1},{"version":"f4529b8473a9022e02fc7a4b5f92e93659d1874809f2c7b38fc367441a93a339","impliedFormat":1},{"version":"b92c58600fd18c32ff687b783eebfd0796cd995e5965a86ca17275b523d1fabb","impliedFormat":1},{"version":"ac46a79d9cfb4df1f024d98c886e4a47ea9821a2a467e4cc9623d96b8f753766","impliedFormat":1},{"version":"7085614a6cf631df724f4a3a25ba0de9a5c0ceed91ccb432416e4bac2bb92a58","impliedFormat":1},{"version":"ab1a99b4017155d8040b5456cba7bfef33bb767da1eb8e4ca369d5185810f349","impliedFormat":1},{"version":"0c4286c0a84c20e05c1f5cda5add26956e696aa817b33d45ee2458eecb3ec375","impliedFormat":1},{"version":"eb155438a82c3e7228cfda102f1d6e1ab4652aa83cb8ca01d8afeeb782803f1f","impliedFormat":1},{"version":"1f0012e2fac75a6ef2406eba7a9ca9ea16c553947583d663eb726c97a26880c3","impliedFormat":1},{"version":"54ec65aad2d7775fab779d01763bf55d7e768920d68f7a05946901eae49ebbfb","impliedFormat":1},{"version":"ae1099212ffebd47c3f0e51162fb0c1e5d4b104421b8a66edddbdf920899334d","impliedFormat":1},{"version":"9cbe0b736b34de9fcf54ba1db60133cfcffd413bc87ad008384ec6442d4ccc14","impliedFormat":1},{"version":"3f713c2dd9b26d5e3e475c811a8d7ce219f1346cbe46dad4596dc6e1d8d35cf7","impliedFormat":1},{"version":"d538fbbf8fd0e073bb11279bff9a37deddbd192513362737f98cce00f2fa3c34","impliedFormat":1},{"version":"a7d869e34e5b3201695b1fd231884d163cf41d24975e1e6a407eedc31d7b9efa","impliedFormat":1},{"version":"d5b6042c1806e7f8ef08b9be9cb72ee50cb7b991a28efbda30a61434b1610216","impliedFormat":1},{"version":"8d30f52bf78ba0b0435286cfa393e2f62077d64fb9536eefa9cddd62c1252884","impliedFormat":1},{"version":"431e627e173edc76477913c8fe99dbbb96f8fde04aab57f133553f359d4eb20e","impliedFormat":1},{"version":"2d37f551e55c0ecdc324b7af4d2ce823026a3109f64d8c4f5d9fb050a01460da","impliedFormat":1},{"version":"dc6e89155b11ff755ade6d9eb497d247f1f7beaae87f64332e2c1e5ef05a3cec","impliedFormat":1},{"version":"52276464b7d805173a5289ab27bcd259acf0619eecfae73e156de2b1e56d53c6","impliedFormat":1},{"version":"9e5c0f2fe6ed3836065cbf6eac78d6884ce3919ec81ff49b823aa1bbc896bebb","impliedFormat":1},{"version":"ef71f578ad24aa892b5f52e9e5aca43fa56434ec07ce5d62423a6499c15708f7","impliedFormat":1},{"version":"176d770c6577804c34df935fa0d0fc3f60396ab125fbf20d95698e35c08bf077","impliedFormat":1},{"version":"314c4b1b0b4977f9f55a5854a6c6effdeba1342edbbb89e7492e550cc38ce4cb","impliedFormat":1},{"version":"38a2488cff2138b35a9f0191512267da528191d45c283bd2a859a8e32999274f","impliedFormat":1},{"version":"67d0d710465d9f4e26c3e55865d110596b95e84f7598164ad3046345f422931e","impliedFormat":1},{"version":"34e8ade0345445320e23a677a1011f78efae36e8653446fda313b38957865dfd","impliedFormat":1},{"version":"79a4560fd54b1d85c26f4dffc47c38f4ef3104ac4d634239c67c9bd06df577a6","impliedFormat":1},{"version":"e2ea7f961c9286e6ed7506cf890eae9c22b874b2485ba1a6a5d6e3ebc044cabc","impliedFormat":1},{"version":"465d478cecb928a2cd1b3ba3a07d1a2837cf3779375d5fa42fb46e9dc1fa4a76","impliedFormat":1},{"version":"34b01c29fe2c5d7548166e1348a19db73b3bcbeeb67979d39d5726f6268de8b3","impliedFormat":1},{"version":"a0df4b1e4af6007211dbd710098e3ab753b119886c94ef877730644c66c166d7","impliedFormat":1},{"version":"b6230e2101bfa9166c16d6480ecdee1275dbc1d8c007a12a12d504005897eefe","impliedFormat":1},{"version":"e7c7aea715f66be8fe83a3876411cbafdf4476e0e1c46e9e705c94272f1167d7","impliedFormat":1},{"version":"d889a43048b37ea3721b7643f4ab204ec4db577d1a765b6001cdeda506a950e9","impliedFormat":1},{"version":"b8858ed627199842e9d246731c631132e480e078d8817d95f2e0aadeec602e81","impliedFormat":1},{"version":"83710934efdd6c5f5bd1ae2ded6cbff4d941257b53ae46d535fc8223360e87f6","impliedFormat":1},{"version":"f3897d8ae550ef234fabf16ddad51762af787b4d21b88d258bfd5c4b39641a4c","impliedFormat":1},{"version":"239a5b0fe742b30aa62534683c851f7d4ddc887722342b508db1d8421b13209c","impliedFormat":1},{"version":"a0ba6700c35bb0cecd02eb7a006acc45bd616d106330c61fe1d2f8e4ad80adb4","impliedFormat":1},{"version":"339d9aea32268d71cc10238232ba64e6fca693585ae8123c01c5e02bdbb1bce4","impliedFormat":1},{"version":"b8d576d0cce5c2410241560668f8f5d02a2620a23edba10fb14c717ce53b1753","impliedFormat":1},{"version":"92fa6c066987a4cea71a0ffe9fbfb683b45b5300ae9f5584b02592f3a27b3ed0","impliedFormat":1},{"version":"a5c018512673b7e1ff6cae34d14713e89e94479fff33c14696f7e2153e4f4755","impliedFormat":1},{"version":"e459c1d4e7623343476da01e7e4edf8290bca1f1315287559137af5557f3ba39","impliedFormat":1},{"version":"5981c27079aeb53fb96829328f014ae7a5a690cec8b1c93815bc23e6fe7189e7","impliedFormat":1},{"version":"2b69fbd1f361e82dfe9bbb786133f0b58845c79d7094fa5790306e5ec271e5bd","impliedFormat":1},{"version":"c10c88f1daf9fda0323c9205ee7a0fd63ae4f67320d3b673468242d89061a459","impliedFormat":1},{"version":"a68ae02c58a9b6ffb29eec100c886ce8eb80201e454fcae79c299bc2db0b37d0","impliedFormat":1},{"version":"d764056449904a73c1f2c6f8c2ae79edb0d1cc799eda5fc3a60a30fa97b94749","impliedFormat":1},{"version":"7e73db72fa480a32afd616f2ab23edb4702316c7b898bd2ba6b5eff6e8ab9412","impliedFormat":1},{"version":"916e84931e102ae5091d09c1ac5aeb2cbf5458f11e0057b23157f5c062254999","impliedFormat":1},{"version":"226d624e4776b837abb8c1eb775f27fc265d7ab4c7473bb48f39c535cac94285","impliedFormat":1},{"version":"4173e4d951eb16efa7943068fcb21aea81bdf4c996dd047ee78625874836dad7","impliedFormat":1},{"version":"9c219a351e0e80e556380fb3372a3fd2c54fa3f1bd9574710ab4e577ea26063a","impliedFormat":1},{"version":"ac18a2d24df81dbbb885e1601fe94fb9a7ba42f04c98df04d16e69f4ca9ee9db","impliedFormat":1},{"version":"8a9b3c96ea397dc289581c1aa4f045cdd2f8a55fc5d917c56d40370a83eedc5f","impliedFormat":1},{"version":"5b289d52c1414fc6737fc451b85fca5f70ead22c2294f5a9484ec1ffbe233a83","impliedFormat":1},{"version":"30af3be0483da0faf989c428587c526597b80c1e368d85281a3fbc95e360987e","impliedFormat":1},{"version":"95f50c554cc9bd129a38fc61cabf1b0b56851c3b4db34177c909c2a03d3e2b9f","impliedFormat":1},{"version":"a2b35bc1378fbc1443e1678fb3ab6e8023269500146537b5a098e8db214327e2","impliedFormat":1},{"version":"4428a7e681f6ee541f90b54d6422325fe26263c333b27293203ec8cf98da4dae","impliedFormat":1},{"version":"cf25b77288f29a84be0a436ea2f5b8cc00bc06b6e142ff975f60a2252a6fc18c","impliedFormat":1},{"version":"9fbd375bb1f6ca5490ddc37165bf761f2fe89d93bd0de57e5bf3dd12cf94baf4","impliedFormat":1},{"version":"fc291372c7992060d4222381491902295756466f44fbc6f0889a6d4e28d0b937","impliedFormat":1},{"version":"6ca9bc3ae7c4fabade7fbf2659731cecce54a745d286d69755fa2496c545456b","impliedFormat":1},{"version":"e6a2e3b9fe781537a0f91c301de9961bebdd4b33187f98a582d694177acda462","impliedFormat":1},{"version":"27316752e6998304fd7db2d67ba0b26d8029b6f503b3ea89efe845c39fabf9f9","impliedFormat":1},{"version":"4add6412e18d83b5bd7c65dd07c3a1544bf6b31baa22473775ce967d685aca27","impliedFormat":1},{"version":"8a7d6fe5fbb7e37ebb0bb81241d59c4a806cbda97a5f1f15af3fb9c903672598","impliedFormat":1},{"version":"74efaf42f5842c4c4fb398d2f74d59a86792320c53df9f63dbe00ba8b24b88bc","impliedFormat":1},{"version":"08603c7d3cc9cecd1ac97cc1baef2d90b116759b541eb4181109bdabc64788a9","impliedFormat":1},{"version":"64068fb5c2c88a2b7016d34b02b03582e759b3f0ffb89e9e07f968838275a564","impliedFormat":1},{"version":"1825619ec278edd94785af65ae589289792cc6db662f63adfddf2a79f6bd4233","impliedFormat":1},{"version":"3c63b1b5ea4b20822405d6b7a8ba96429ee2b400367b61c82507f80be6202289","impliedFormat":1},{"version":"cbd2ae79794fd7bcff66e343af71f7e174a6eb95f17a8742b1ff62c8482f7cf7","impliedFormat":1},{"version":"5f49cf0d4e9b1913b0538bfd0179eba4041eec277ffccd388aa5acb3a9b5c78c","impliedFormat":1},{"version":"5ebe388148630bc63525fbf1f408370c657ae888abe179001e64711b0dc8d663","impliedFormat":1},{"version":"c44c12d1655dc804ff1cd39f33e37eb651d11c41f60d2d4d49d34880f8a5328f","impliedFormat":1},{"version":"432ba4ec869745ed9de5ba6a12c76549dd76ae0a146faf0bfdf35ffd4a4e6ea7","impliedFormat":1},{"version":"a88437446e80a492b1c4d3f5c9fff5d80b5c5e52754cbb3eb2cfee3d3690ca94","impliedFormat":1},{"version":"bace2dc66c954f2a81c641fa9f0dcb1b36ddbc6db3635ea446ee10c47ada15f1","impliedFormat":1},{"version":"c5c7f25f198dfc5ffc62fe2e8ef3f25647bf21070a5f05ac200748c83ab7da4f","impliedFormat":1},{"version":"60390e7b89c19d160b3bf2c854a9e06414d001debd9947a5db54623004a4be0e","impliedFormat":1},{"version":"c08e7bfca5a8bb244cad7689ddf7546cec8a5bc5367b18bcadc0628ae927f797","impliedFormat":1},{"version":"b7506549d0f8ea4c74e4b4b4263932090578f193cb37bf719b44c5f149a934f6","impliedFormat":1},{"version":"992aafb2a060c3e2099941c7128d88aeb9bf8f5fcc594e9fe561d19003b5e4be","impliedFormat":1},{"version":"9874f63b3f3167f344d2a30047722b409e2915a502d9b9a50a91ab1a23b49623","impliedFormat":1},{"version":"b55dfdbd1e893c0b6cf91dca75395f4bd8aab8e624007f9fc70d650d8b340137","impliedFormat":1},{"version":"1740fa9c57b951441b1db4478a7f6a82ccec9de1de650920cbce74ed10e08eba","impliedFormat":1},{"version":"6948d2c91da770f73b9a6459c3daf8ab23d80bf7b70e215551ca3219ac041b68","impliedFormat":1},{"version":"9ddf688a2e3a9cda94350083dacbd69251c8d5deb5d02f80beecbee70ec11c6d","impliedFormat":1},{"version":"e39c146a2b8a3f48452973628042cabc94bb2893488bd6a79b3e04cfcd89c729","impliedFormat":1},{"version":"60f5165cd2492544cf497f3eb4e8a75fa340185b4b98b8aa87b62853d57d1549","impliedFormat":1},{"version":"fe9cc3f1d04297f8d6995789f4df2b531a1ee7f1d0c8add6371281f4a31d195b","impliedFormat":1},{"version":"66b9b5e8625e6ada62c4d070918350dd10d01fa260426674448b25ffc7009488","impliedFormat":1},{"version":"0d25032744f0015a340edeb2e84e685a4c79ee1c9066d761d7fb0affbc2dfdc3","impliedFormat":1},{"version":"3e2963e7f54826df89a56ff9931614d16e0371ec010725da64ff270570128993","impliedFormat":1},{"version":"c5fe75259bda7aba824205a9138ea7f3bbc47d20ce777cea79d40930685b6ac8","impliedFormat":1},{"version":"3d485a48053321817c3ce51afa41c07b180b462274551d53c5a4927a5d052038","impliedFormat":1},{"version":"9e2f9ee99f0e172ef91af1d571e09743304b3b2430d41a8bcab357b878114757","impliedFormat":1},{"version":"5d6257ebe252d97b3d6fe3e0a49a0f148cd7312849f5f1d6f6b7265d3d72b5d2","impliedFormat":1},{"version":"2c60950709e37e95cc5dfa2ca27c5da53521ee09c254f894f8d91ae8717e7885","impliedFormat":1},{"version":"8bfc090ffec588f44eacbd6714f798a8a0c3dc1b02855f5e12e567b4f161b30b","impliedFormat":1},{"version":"b302d3e1a806fc890c324ebe90dfe07a780e973267c66bd159d0dbc1f6e3d055","impliedFormat":1},{"version":"b1c627fa2a4cc9199f937f4d35ccfdef2efd6ef40d5525ffd384acb29cbaf66e","impliedFormat":1},{"version":"e2a7abec790215fbd95f42c244b66ad61a503296f9bf57bb5de1413286a41c56","impliedFormat":1},{"version":"39959ee712b3455499af3b1c95bbfc9ea59d584d5af2b01dcde120fe5dc6fceb","impliedFormat":1},{"version":"bc27582d90eaa5a793cc4f3e27acff890eab95641431c263144f3162bbd4a8bc","impliedFormat":1},{"version":"2992d19be476415c0296bd548764c20fc9cac2876e45abbbce23dafbd65438d9","impliedFormat":1},{"version":"dc117b16848058e94c39b68cddd38b36be885a63a0130097e6e992cce6ad9bf4","impliedFormat":1},{"version":"11bc3d6606ca11c982d848ff3946f1d978360e7861dedd8bb97348a21b4a8ad7","impliedFormat":1},{"version":"989b88698577f76069fe791b224d2157a0205aa2b029718dfd386b7b4706fa0c","impliedFormat":1},{"version":"fab62208329b9bb74dfe558a6b05f802bceda19274c763efd8ea0b47cb68925b","impliedFormat":1},{"version":"e0c5afc236a31911ad85dd1c59c609c194ec11b6997081fb5aca57cd020e46c7","impliedFormat":1},{"version":"a28498f50e0fd3d894184248581cdc01e3586be0785047ef06d662c01386437d","impliedFormat":99},{"version":"e4ffb6aa67b82aca99315bd54365892ece9ed76ad37667a8dea478b7ac9a755a","impliedFormat":1},{"version":"9a9351c453c8344695bc0f36e759cb33ccd6c5eaddb8b1ce71f93a7b9e1949dd","impliedFormat":99},{"version":"f274981c6fca44bb86dd3cd52e9791c9c7a7f868d14d37d6a007d9ee860efe43","impliedFormat":99},{"version":"3ad4990074405530d3d11d56c449981bac9f9007344aae52d447ee095bcbff11","impliedFormat":99},{"version":"95e465e5280521b8446f72a6c1e656efbb0c203f134e6e3649181aae0590cd71","impliedFormat":99},{"version":"5a885ac9b26b808c322dd5c5f762e9fad6f2f4c9303a2473de521fb94fb1508b","impliedFormat":99},{"version":"2412f6391f6d01a695dc3f1ae5e508c811fbcd31443e72dc30375fca13bd9718","impliedFormat":99},{"version":"7fb5ac8d470c12068791fec94f974ee4949851ef51fac9b1771c4be87b38f3e8","impliedFormat":99},{"version":"bf70fff6a714bcf7547afeed9a89aa9998516eaba6242bb5d477d2b3cde9b84e","impliedFormat":99},{"version":"1eb995b77d680badc30d10726d3432adcaf579883d9ff1b38a0442038e8d9ea5","impliedFormat":99},{"version":"71a8bebe872afec32c379a290369935fc3797788b58bb1057e11699d6b05594f","impliedFormat":99},{"version":"45bb39dba69f15a057d23f5ec5d73cfac7f798f4f749736eabf61e7fc05394d4","impliedFormat":99},{"version":"e40273c3d72a14adfdc55144244b903a857fb521fb0b0ef93adf750f9bbe827f","impliedFormat":99},{"version":"cbd263d47bfe72cd5797f1035c2c15bca165700bf7691e7922f6e9e4ca7b3acd","signature":"b91dd112cc13143f724eabc0cbe291ffbf4ba3cb0ca8e7212daca0c0823032e8","impliedFormat":99},{"version":"89ba482a28612a79cbb51785640bd680024c9bd54c13f8c3240bf66f6f9249cc","signature":"a65b3ccbd7f7cd003ebcd9c3e858b998eff96afb3f7f0b1079c15bbf603f996d","impliedFormat":99},{"version":"cf0136a050fb5cd08ce5af4a1a3f5c463e117306fd023a8e402d4baed9805d10","signature":"5db857e0384a91f1beaf5598df52d9d88c095da1f9a6a16ec95e3edfbef9407b","impliedFormat":99},{"version":"8436f4f220293d7a905db7adbe41ab513c8c0bdf8eb31c8bc8a66dee6ee60a6f","signature":"f1f51cc5cb15348ee857d99354c2400fd379c7436d44f7aa72b743b4b89c1a3d","impliedFormat":99},{"version":"2eb4178a6a11af9b4aa7cfc1294cf60b8c2f886e4937e8d9e9a508c00eeabbee","signature":"c7481d7c050c21af803dcbda228369506a432ebc44c16d1ae1efd04cc648b6d6","impliedFormat":99},{"version":"e7d232a6d56314c4b53f958fc4b6f1472296e8cda3b0b1614caaae37beb8ecb4","signature":"8d65d2c90bab9dd4582664e0af282b03a0ca4cf53e562d0fffdce7c22c0109f2","impliedFormat":99},{"version":"8460c10751a9549559860c29de4defe3ed2466b402ba44d2bf929b6d080ea6d4","signature":"143c10296ebb9443d7356c43574712fccee4fe013754b55bc9ed414b182b157b","impliedFormat":99},{"version":"bb91ec3c26972e4fc69e8840d0b5708a1caf54093bfe54ac5305126159f5d1de","signature":"ef1c71d36bb1f9044dc27a2c8c318290181e56479684b23e2bbbf31375209d5c","impliedFormat":99},{"version":"55e27e55c14d53242963d95015a323d2e807cbfff594f0a404a3c56869a40af4","signature":"794e4240377e4fc9110b5dd88598621726c4fb44cc7ef7d1908db2f7b337557d","impliedFormat":99},{"version":"6732c69d6fd95ddc9c0749f635e39c5474ce03a7082c9eb725f14b9e3127e687","signature":"cf337079130d7ddb96e77f0727039bb202cb3c2f24a0864b64efa07f4ce35b38","impliedFormat":99},{"version":"8d8623bdc6edf22217af55b58c67038386d0235e6e0b88bf4852a63ebc2d2e8d","impliedFormat":99},{"version":"1bd02a903a04714c3ff4df0defd2de87661cf11b964fe0e2089262058f49262b","impliedFormat":99},{"version":"b66ab838343f8fffc5f1a12d7e09511f8a2c815a5c0d80ed646c9daaf24e7fc9","impliedFormat":99},{"version":"5dc2a8f883c7e5cb04262ea0c5cfe083b6ac1e68a848bbf50a7bb81eb859425e","impliedFormat":99},{"version":"34d96c3fba55b940fd5611d7448dca843065a7f4981f8a1d7fccbea156d82568","impliedFormat":99},{"version":"58ed38d462057900e31906d35e84f26caa6f60bb7368569cde75715af17dddec","impliedFormat":99},{"version":"3c6bf99704bd77002445600400463d4078f45051621e6c332023a854ae03e7f2","impliedFormat":99},{"version":"b9599ced7356a4fe4f3fd3828a5da5249d9ec37aa08423c426fdaee30ca82bb5","impliedFormat":99},{"version":"b8dbf30a628126b88d50e6080b2572dac30ffd9cb452b7897324622f348d51c5","impliedFormat":99},{"version":"16b81141d0c59af6f07e5fc24824c54dd6003da0ab0a2d2cedc95f8eb03ea8d3","impliedFormat":1},{"version":"36b3eaa08ebcde40be74bbbb892ea71ce43e60c579509dd16249e43b1b13d12d","impliedFormat":1},{"version":"b6c4796630a47f8b0f420519cd241e8e7701247b48ed4b205e8d057cbf7107d7","impliedFormat":1},{"version":"6256cf36c8ae7e82bff606595af8fe08a06f8478140fcf304ee2f10c7716ddc8","impliedFormat":1},{"version":"b2dbe6b053e04ec135c7ce722e0a4e9744281ea40429af96e2662cc926465519","impliedFormat":1},{"version":"95cc177eacf4ddd138f1577e69ee235fd8f1ea7c7f160627deb013b39774b94e","impliedFormat":1},{"version":"c031746bb589b956f1d2ebb7c92a509d402b8975f81ae5309a3e91feef8bb8f4","impliedFormat":1},{"version":"b48c4e15766170c5003a6273b1d8f17f854ec565ccaaebd9f700fef159b84078","impliedFormat":1},{"version":"7c774169686976056434799723bd7a48348df9d2204b928a0b77920505585214","impliedFormat":1},{"version":"5e95379e81e2d373e5235cedc4579938e39db274a32cfa32f8906e7ff6698763","impliedFormat":1},{"version":"3e697e2186544103572756d80b61fcce3842ab07abdc5a1b7b8d4b9a4136005a","impliedFormat":1},{"version":"8758b438b12ea50fb8b678d29ab0ef42d77abfb801cec481596ce6002b537a6f","impliedFormat":1},{"version":"688a28e7953ef4465f68da2718dc6438aaa16325133a8cb903bf850c63cb4a7e","impliedFormat":1},{"version":"015682a15ef92844685cca5e816b1d21dc2a2cfb5905b556a8e9ca50b236af05","impliedFormat":1},{"version":"f73cf81342d2a25b65179c262ca7c38df023969129094607d0eb52510a56f10f","impliedFormat":1},{"version":"f433d28f86313073f13b16c0a18ccdd21759390f52c8d7bf9d916645b12d16ed","impliedFormat":1},{"version":"e7d7e67bd66b30f2216e4678b97bb09629a2b31766a79119acaa30e3005ef5fb","impliedFormat":1},{"version":"0bb41b0de08d67be72bae8733f17af9bb2f0ec53f6b7aadf8d04d4636334bfc7","impliedFormat":1},{"version":"e137f087bda0256410b28743ef9a1bf57a4cafd43ffa6b62d5c17a8f5a08b3b5","impliedFormat":1},{"version":"b1e92e9b96cacb98a39acc958670ac895c3b2bb05d8810497310b6b678c46acc","impliedFormat":1},{"version":"af504042a6db047c40cc0aeb14550bbc954f194f2b8c5ad8944f2da502f45bf5","impliedFormat":1},{"version":"5b25b6ab5ad6c17f90b592162b2e9978ad8d81edf24cd3957306eb6e5edb89a9","impliedFormat":1},{"version":"24693bd77ac3be0b16e564d0ab498a397feb758ce7f4ed9f13478d566e3aafde","impliedFormat":1},{"version":"208dad548b895c7d02465de6ba79064b7c67bc4d94e5227b09f21d58790e634c","impliedFormat":1},{"version":"048c0ced65fa41fbf4bcc3d5e8e5b6f6c7f27335ceb54d401be654e821adbc08","impliedFormat":1},{"version":"919565c378b8a4919ac9e2d1b5dbbd230c9d3dbb951e4d77c8137bce27bcc280","impliedFormat":1},{"version":"9a57d654b0a0e4bf56a8eb0aa3ede1c7d349cec6220e36b5288c26626c8688ed","impliedFormat":1},{"version":"d35e61cb903d631c6e285393a307477500835209c7f8153bc20d608e48e633b1","impliedFormat":99},{"version":"1a53de8574e8e40381be2de54dde3592b90980e1995e73115e6e73a6d63eefe3","impliedFormat":99},{"version":"edb75fbe28dd895bca1bc6d2351847c41ad2526b2fbdd3d8745e2bc1d197fcc2","impliedFormat":99},{"version":"5517b148dd898605e3fc60e79767a934759e8a8171f9421dc044fdd9285bfe2f","impliedFormat":99},{"version":"774d0b501d972340a271acdf21cf3bf1c680d3a99542d2ba7ee18b8901b018ea","impliedFormat":99},{"version":"08a2c330d368919e35b70e33cf33de8044f5f1394f23bebc9dc5c8537e48fdba","impliedFormat":99},{"version":"46a8e1af3cf65491d4554fecce087ea2ae80b60e23b42cdec9d5896d7095f748","impliedFormat":99},{"version":"8700bc9fed51ce7c069d8a6e37eb1a61f7725bb851b83e198796a191bd67bd2d","impliedFormat":99},{"version":"f77256d6d49e5a10c816d58d8216c8148761d672569c80628f5a7cf78c1c5c62","impliedFormat":99},{"version":"305a495e1552eaf51717704711ba67ef9266bde586b2c275c6cc73561a12890f","impliedFormat":99},{"version":"68342ee3c73dabf0644f2855e9cc21c848fb84b583b9f7e7b5053f1de07fbf07","impliedFormat":99},{"version":"585535156da518f34fa413104ac3797ffafd752e5e4a5b69f856e4711f207ae3","impliedFormat":99},{"version":"6f3f348c5bea6a1d73a8e3741685f185f04fe7cf411363fe66f0c01217b6ff8d","impliedFormat":99},{"version":"1c86aa6e635967ccb42a9edff53022d623a38aa20acc09b49aca7db1fab27c3b","impliedFormat":99},{"version":"8bc740792bc92944656934855c20a06b5b827bb9f1b98116edd137807312b619","impliedFormat":99},{"version":"6ebd49bfae0178c0ef51a99f00956aaf94a53646578a3cfb2f769ae73ad2b0d2","impliedFormat":99},{"version":"61a843093fbb3902dfaf60d115d15974b9aa4a80b85d0df12ee6d7e70220eb75","impliedFormat":99},{"version":"4d122d8c27c3c3bec5bed118cea95862f817b7895f603efe550f220c4e1968c5","impliedFormat":99},{"version":"9df91d927f2fd4cd27866251918389a91d31dd979bdb68a0bab01cf82ee3a542","impliedFormat":99},{"version":"4e99ad46af716b5ca17cdb10f6dd1a0b8423380e7ff92c31037acb3db3cd1507","impliedFormat":99},{"version":"e6d53efb33aefb4936a2d5c49e9add348db073fc8ae337711ac7eb6b26f3e6a1","impliedFormat":99},{"version":"a28ac3e717907284b3910b8e9b3f9844a4e0b0a861bea7b923e5adf90f620330","impliedFormat":1},{"version":"82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","impliedFormat":1},{"version":"a4abbf5d5ecd7367532921a52e2a2762a6f5f38c3e4ad6c25e6e90152c403804","impliedFormat":99},{"version":"22bbc4fcb9eeb0964c0c6ac94b30b1d48b41592db404c1bd80f5f90690b4d0e3","impliedFormat":99},{"version":"13acc729946e290421f9560eb960547bbea9b5914e0f3127586344633233b41c","impliedFormat":99},{"version":"db246e8024d3f018a5fca595a3b13f3c5c4af1730433674a40619690c1a613ce","impliedFormat":99},{"version":"0c9002497e2796eb60d5d8bbf01acdc086e2ec85731a34560b5d97ab175c3811","impliedFormat":99},{"version":"21ba6a4a8d43a271ee05493b0d24bd3cd1f874fb2a6b753b659c323f58f63c39","impliedFormat":99},{"version":"1a2ae3df505891912038749a39e434643cf1f91a578475ae049f36e35c870c58","impliedFormat":1},{"version":"b124c0624b15412ace7d54644ade38d7a69db7e25488a1a4d2a8df6e11696538","impliedFormat":99},{"version":"2bf63ee7480f86ed0d673534d86a1587f03355656cea7e36fcf49fe2bf5b1e22","impliedFormat":99},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"3998ef6189b3ec508e4cb3d1db2e44dc698a0032eeb6e79061c0b3f785a0e20a","impliedFormat":99},{"version":"446671c24b4f7c13cf165a8f8cc80b8357a443c246d3c1a8818df90f1d97a77a","impliedFormat":99},{"version":"ecb5e04b63d52b15851cbbfbd6de7abdeb22c69800fe2ef8578e397a801f60c0","impliedFormat":99},{"version":"b3504285fa9c235ba724d30a403f2e05cb355e7f01db132ac5470c22b38fa71c","impliedFormat":99},{"version":"cca822c0c9c059b790f71dc10b79f64015c7db5ade16ca6c087afb2b7153489e","impliedFormat":99},{"version":"96c43130fc2869ac92e65e61dbb61fddf1e222607e3d63934747ba1bb5168db0","impliedFormat":99},{"version":"3b5b2933dc937208425a34d5be272e723f41ce46ed73eed631c62421afff627b","impliedFormat":99},{"version":"398cacb7f424c281b64e95e0546784d729cc1b8e4c10a43c813fba2ec5fdca02","impliedFormat":99},{"version":"73a0bd100fe0fcf6e849f95723d247cf8cf1ad022dd2ac0c49f8e36cf97b3d43","impliedFormat":99},{"version":"95b40b0f43b9045f33578349617a68c078a7162be29120ba496f4fff34f6d3a2","impliedFormat":99},{"version":"9139517b297cc5137846ece5d2289f442236858fa231f8a73315e571b265e853","impliedFormat":99},{"version":"d78600f80aa4aa633de0370caafc1b96ae56c44b915f7b38e2676dd6e1ae3ac1","impliedFormat":99},{"version":"48acce190655cb311c9b747974ffe77b6af7c008e42fe1225a150b61ad1d7395","impliedFormat":99},{"version":"c9bbb387bb151ee99b4152450d350e0a5c74f3f0b5285f2a394e998300cc2444","impliedFormat":99},{"version":"e13f861d65d429ba78986a66a3247def1f899fffbbc252e5659be9a76a80e7b1","impliedFormat":99},{"version":"731ca92f2e213df13406e49d20d3dffb30ecb51a5e7f6321f65eabfef30f1b61","impliedFormat":99},{"version":"5e5b164968e5dc706f393ef481af4a9fb1036d425b206685370c77df809cf7cd","impliedFormat":99},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},{"version":"17a57c9f97eb798f93c6f930acfc43e207e62249b400b5c0ecbb4cb4b28561fb","impliedFormat":99},{"version":"b4d4cb9a6e8b5386c80954afc7b059a7aa72b652864338bf49d7357285e11469","impliedFormat":99},{"version":"455c78eb97ca37b823c43eaa6a9423a2ef8eb0756fcef514418c4bae7c905426","impliedFormat":99},{"version":"c364edcae89074602a6f711b11a2da229b08b50b970f90ac9e98f2a74caf2b84","impliedFormat":99},{"version":"7c82e1856122e8939438d262b74ac28cd3802d44960ead27ea55729eb48d312b","impliedFormat":99},{"version":"9799d18bc4f9f85726e8dfc7560c447f3d410a4f5c29b2f54d0a53fad25a6cbf","impliedFormat":99},{"version":"9426d6570434c1dc1216c0e4b610472b98033c95ca78491b68535e180b2ee6fd","impliedFormat":99},{"version":"791e6be9f0984ba7290af8ee90f5ac9c82615228c773eaa226a25558b297f3ea","impliedFormat":99},{"version":"07240fe8034520d40febcd809b360e41b1f08e499218d948bed75033d13ad8fe","impliedFormat":99},{"version":"6dcdaba7101007d640517d70f5feb97e5d5e82971f6fc29a68ba6605030ff18b","impliedFormat":99},{"version":"cff399d99c68e4fafdd5835d443a980622267a39ac6f3f59b9e3d60d60c4f133","impliedFormat":99},{"version":"6ada175c0c585e89569e8feb8ff6fc9fc443d7f9ca6340b456e0f94cbef559bf","impliedFormat":99},{"version":"e56e4d95fad615c97eb0ae39c329a4cda9c0af178273a9173676cc9b14b58520","impliedFormat":99},{"version":"73e8dfd5e7d2abc18bdb5c5873e64dbdd1082408dd1921cad6ff7130d8339334","impliedFormat":99},{"version":"fc820b2f0c21501f51f79b58a21d3fa7ae5659fc1812784dbfbb72af147659ee","impliedFormat":99},{"version":"4f041ef66167b5f9c73101e5fd8468774b09429932067926f9b2960cc3e4f99d","impliedFormat":99},{"version":"31501b8fc4279e78f6a05ca35e365e73c0b0c57d06dbe8faecb10c7254ce7714","impliedFormat":99},{"version":"7bc76e7d4bbe3764abaf054aed3a622c5cdbac694e474050d71ce9d4ab93ea4b","impliedFormat":99},{"version":"ff4e9db3eb1e95d7ba4b5765e4dc7f512b90fb3b588adfd5ca9b0d9d7a56a1ae","impliedFormat":99},{"version":"f205fd03cd15ea054f7006b7ef8378ef29c315149da0726f4928d291e7dce7b9","impliedFormat":99},{"version":"d683908557d53abeb1b94747e764b3bd6b6226273514b96a942340e9ce4b7be7","impliedFormat":99},{"version":"7c6d5704e2f236fddaf8dbe9131d998a4f5132609ef795b78c3b63f46317f88a","impliedFormat":99},{"version":"d05bd4d28c12545827349b0ac3a79c50658d68147dad38d13e97e22353544496","impliedFormat":99},{"version":"b6436d90a5487d9b3c3916b939f68e43f7eaca4b0bb305d897d5124180a122b9","impliedFormat":99},{"version":"04ace6bedd6f59c30ea6df1f0f8d432c728c8bc5c5fd0c5c1c80242d3ab51977","impliedFormat":99},{"version":"57a8a7772769c35ba7b4b1ba125f0812deec5c7102a0d04d9e15b1d22880c9e8","impliedFormat":99},{"version":"badcc9d59770b91987e962f8e3ddfa1e06671b0e4c5e2738bbd002255cad3f38","impliedFormat":99},{"version":"5315bb9103039be1b5042b76e15bc1b3ecd8625b69dc084c961f347651aba211","impliedFormat":99},{"version":"3e9ad1a112a16db3c9456af5d66c972bea4add5c043cb481d3c18d53cb01758d","impliedFormat":99},{"version":"fce7ea18b3e1f611553d64053f429acee4649a5bb46b88ba3469e20201045489","impliedFormat":99},{"version":"55f8d09fb2f483cf7c84a03c08038451c54bb0b54fd1ec6d240262fb5f4f3632","impliedFormat":99},{"version":"f4bfedc2d94b08665cfe9792eb95200496d1ce03c672e8a1b526e5267ed77097","impliedFormat":99},{"version":"9ae5132b62f47cc1907e4738290b17d9259a5468401b6703d2a744b7a7070b44","impliedFormat":99},{"version":"f28aff6b8d9abea7f1f77c1566df21ba64f85fe672742d679ab5eec2e0640429","impliedFormat":99},{"version":"85e60901a75cd184971e3ff8a9a722d3b18fc7f3c328b8a82236cca05199f507","impliedFormat":99},{"version":"75449c1ad22ef7a6af76882868ebd4a63ed0b8b1c717d9f2a03180f9f07e0c31","impliedFormat":99},{"version":"46e6593c5f1e1fe35586b96e74d32613d2402f30f892dbb9cd90fa13d58a4ffe","impliedFormat":99},{"version":"a1d5df12eef5854d551f3b5267c782a0126ed9c36fcafcc3c7e01f08d8627c3d","impliedFormat":99},{"version":"c24de14180f5eff7f5dbf2956869b7ab434b1378f00d17b8d28524ddf62f8c1b","impliedFormat":99},{"version":"9d757698c7e7f7b9c742853c27f8395f235e6a312e40296b9de0d2f8403745ee","impliedFormat":99},{"version":"f9b215934c9d90159d1888caac3f8413345afb1a4218b75224ed44c0c0e3ae20","impliedFormat":1},{"version":"587086842f7cc0e358c324b32adca13e3fc02ad50ed2a87d74e65156ced0ba24","impliedFormat":1},{"version":"041597c12abeaa2ef07766775955fc87cfc65c43e0fe86c836071bea787e967c","impliedFormat":1},{"version":"0879e28cca0a2494308975c38e750f806c59c36cd4b3bc13570ff99a8bd9c280","impliedFormat":1},{"version":"072f583571d6e3d30cd9760ee3485d29484fb7b54ba772ac135c747a380096a1","impliedFormat":1},{"version":"7212c2d58855b8df35275180e97903a4b6093d4fbaefea863d8d028da63938c6","impliedFormat":1},{"version":"5bd0f306b4a9dc65bccf38d9295bc52720d2fa455e06f604529d981b5eb8d9dc","impliedFormat":1},{"version":"f30992084e86f4b4c223c558b187cb0a9e83071592bd830d8ff2a471ee2bf2d4","impliedFormat":1},{"version":"854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","impliedFormat":1},{"version":"dd9faff42b456b5f03b85d8fbd64838eb92f6f7b03b36322cbc59c005b7033d3","impliedFormat":1},{"version":"6ff702721d87c0ba8e7f8950e7b0a3b009dfd912fab3997e0b63fab8d83919c3","impliedFormat":1},{"version":"9dce9fc12e9a79d1135699d525aa6b44b71a45e32e3fa0cf331060b980b16317","impliedFormat":1},{"version":"586b2fd8a7d582329658aaceec22f8a5399e05013deb49bcfde28f95f093c8ee","impliedFormat":1},{"version":"59c44b081724d4ab8039988aba34ee6b3bd41c30fc2d8686f4ed06588397b2f7","impliedFormat":1},{"version":"ef1f3eadd7bed282de45bafd7c2c00105cf1db93e22f6cd763bec8a9c2cf6df1","impliedFormat":1},{"version":"3d8885d13f76ff35b7860039e83c936ff37553849707c2fd1d580d193a52be5b","impliedFormat":1},{"version":"5e55a6fec5d3962fbfa8cb241c0830ab3052f6cf99e58e0bb6112ccde3e1ffcb","impliedFormat":1},{"version":"22ad95400ca5dc6852958f2e1b33542a101ea7b2e022055b0fd51079c0c38646","impliedFormat":1},{"version":"4028c49f79f02b9606a1d62ce08d8fdc6d03cf627027ca1dc989116d3e0b102f","impliedFormat":1},{"version":"c7232a0c933068be4e990bc3dadf348d0ca82c3465d2f369fb65f53afaf6266b","impliedFormat":1},{"version":"cc2d9ba9d5434882cfb9bc2954fe433b5538fa78a40be504c9833a45d1a732ad","impliedFormat":1},{"version":"f4fa7e6424786df98e362cfe4eefa908d6110bc4dcc50235d4d05a97939bb1d3","impliedFormat":1},{"version":"e8ff455f7ee74b0a6ea20a465bd95a1ebf41538e06f7874c7934dc1ae42bd10a","impliedFormat":1},{"version":"4e3592aed54bd51d840e6d078794b45a8388d0accf38efa3267a16742ce88041","impliedFormat":1},{"version":"878abe377ce7ed67901e97ca558cab1411f19ba83a5ec9d372d78a382beec334","impliedFormat":1},{"version":"988be2b47c162ddfc4ac289de0bc50b52fd425d4408cb4bc40fcc9b81f4957c6","impliedFormat":1},{"version":"85cc8408b227080f73a2571c87c66ad3aa624753d599f08ba9906f607c744eb9","impliedFormat":1},{"version":"8da95d257be3f2d83c21c555dedda9c96869e5f855652523cf52dc98ca8c57de","impliedFormat":1},{"version":"aa9494cb36743567c0f6ce385ce869358b59193c9b61612e0d70e4de500424c3","impliedFormat":1},{"version":"904964129f1ef4797282d4ea4411eaf26d4b22bb481b8b8ab3e920d4cfc79ecf","impliedFormat":1},{"version":"ce6ada7f4eb4cda3ccfe28a0201608828fc6ee2d3204101976831100d9550d47","impliedFormat":1},{"version":"5a7fe6ef136e88ee70d3cd0b1aa0d6875178b2682542ca340875a2711c81d779","impliedFormat":1},{"version":"dc30228a4d8faa78799c535a32dcb2a456bccd67a152b7fae0797198476b091f","impliedFormat":1},{"version":"9a1fcfc15915ffb2b16416763898a07aca46ef4ea620c5d5f26793e76f714485","impliedFormat":1},{"version":"ab37b1199441c7ecb602defe46f72099d3d4555f7911bd865f51657f419779ab","impliedFormat":1},{"version":"82b10e97d141910eab0f2a331b69b88e160d1435e8cc35d40c45c8533bbc0c0f","impliedFormat":1},{"version":"44e2419e4abff168e564a6c25b3e3bd6f7bad3c66e5e4560d91f3777a3926426","impliedFormat":1},{"version":"3c656ad2c834314314439f331445e5ba5d178fb67776e69c7b0c0746884450bc","impliedFormat":1},{"version":"8804b8ad255545dadc2e4d4039d45b3c0bfb5c1a103cf68c7a8712877ce7bae0","impliedFormat":1},{"version":"f6468b2c5528cb0e63ba5c2072a66711d7d8b53d0d79ba51633fdd7caaec8366","impliedFormat":1},{"version":"362276986f99951a4f4e99530a5a1804c290b0ea5efb380070ffdad36ad8f65f","impliedFormat":1},{"version":"f738b4d9935f21b36b054b5ce8f72b31179d324af1687d46b7c810e7a0610b9c","impliedFormat":1},{"version":"7d70d1cae06e783afb6104d6c54611ef97052645afbe14b5963bec32c3ce5c7c","impliedFormat":1},{"version":"cffa607eb95c25b119f9aad3c2e4db80384267cd35d398b537a90aee5c5dfa5e","impliedFormat":1},{"version":"9a710119dd285b73683cdbedaa3798e30aa028e5488b28c1b444f119d0d7b39d","impliedFormat":1},{"version":"c0064198c128285cf5b4f16ca3be43c117d0ef5bfa99aeb415c668ccb01a961c","impliedFormat":1},{"version":"1c23e9084091ec02fe4d3666a22b6e0df02fd64cf9d48fcacc56f22f5cfcb8ab","impliedFormat":1},{"version":"f5a8ed3184cd25bbf61ac2b00f322b1325ecc67e6c5323388ee41a7fbb985be0","impliedFormat":1},{"version":"be2ee1cbe2dd84188fa4e296c5bc19b7af8b9d9511381226884d12bdb5285ab7","impliedFormat":1},{"version":"edacf4223ac6d11361a607880e88012d2da04c27aba76f52c08e9167ba34ed2e","impliedFormat":1},{"version":"f21eedef257a2e149e7da0e610ebc2a811f7507f444f8c959c398fbf36804e55","impliedFormat":1},{"version":"736a3485c9e96b87b11fe6e55b5455e9f85ef59edc09bff1eb2f114ef661d1e5","impliedFormat":1},{"version":"cff7b0c6a08e66a58fdb27e3deb072a0a99c0b1ccb7f53e88228142c05342554","impliedFormat":1},{"version":"19dadaace54c1551c517fa839c7d96b908750207076be440122b7c5e25d28fdb","impliedFormat":1},{"version":"036782d4a7cee4ec013d550d1c63e176e62c57658011f53d76b19fa9f56f11a7","impliedFormat":1},{"version":"6bd84a5230e097464d18b801259cdf59e92c1bfb71056f23a1efff45076990c5","impliedFormat":1},{"version":"c8231e51ac4e1b607acc7f39169775fb4ba4a074a1ff7c00c16d125bf76a3879","impliedFormat":1},{"version":"64482e26e890229e05ad26d37b3052b1ac90673905f2243897cca941f1d669a3","impliedFormat":99},{"version":"5c2a58f79bf8852254bdf4f73ba9bc34c4f93c89e0c68d74f21649f3537f2f45","impliedFormat":99},{"version":"f0cce5eeb36d37827afdab93dd83488825a704e60bae538cfcd430e6ee2d5db0","impliedFormat":99},{"version":"7d21eac05d7e87c1fbf2e6c099a0d7c752891b847e417c2c6b80c12aa2dbe5c5","impliedFormat":99},{"version":"b2602a187cf4cf285dfbedcd1ce0c319c2fbe7f8e0301dfa4b2e5f5585c825f3","impliedFormat":99},{"version":"062fa538a3097e8060063d2407fcba56b72061f989563bca4266d7390c9105c7","impliedFormat":99},{"version":"a4c05cb06d35cf5aaddc7a830bc0a58746f4543b5ab6a39386bc731b414006ef","impliedFormat":99},{"version":"17b25bdb24bfe46bde76ecc6ee1fffeeb1118db5b562f667151f89750f4f2892","impliedFormat":99},{"version":"5f7ec69afbe999f8660f94c0b5bf47dea4294947e7b38299cdc4cf3d37bbf857","impliedFormat":99},{"version":"47cd02d9ae3cbd3dc69c81dcd707444860eca29e4198a80c4f946e0c7113736c","impliedFormat":99},{"version":"5c88c49b8ff7d11354105dcc18a56b5614ab20de1b521e2a894138d03ce34aba","impliedFormat":99},{"version":"8351c140720d41ad49037136e4f18fd27cec3fb71d75b470dfdacc51986ef119","impliedFormat":99},{"version":"5c145336063432d9d8f01a4872c63f2043b03abe83a65a1b1bc03d83ec451e15","impliedFormat":99},{"version":"661eff6f57f2c21dea1b5da35de14d805a48b1f46b1b48ec41a9a22e9290d959","impliedFormat":99},{"version":"3bacfed0a7e4bbf381c9d14045af8626da510aab59507538ee012d7a3e740f42","impliedFormat":99},{"version":"eef9daaa3c1f97083d3ad9baac8a3eebb13ba351d38c5fa895b50c854e9170ee","impliedFormat":99},{"version":"47b0a05a2bd8ade9164ad07868f16a32c35deba6abb3f9894f3abce764ce3ad1","impliedFormat":99},{"version":"318451fad91d92d13d19d53029d5d2154f131b8c26a68b9fc9da713836a93c10","impliedFormat":99},{"version":"1df88f98e5964ecca2c8cb43a5d6fcb7f1f3fecd266b93eefae58edc15c08a88","impliedFormat":99},{"version":"316f1486e15cbf7896425f0a16dfe12d447dd57cfb3244b8b119c77df870858f","impliedFormat":99},{"version":"25be1eb939c9c63242c7a45446edb20c40541da967f43f1aa6a00ed53c0552db","impliedFormat":1},{"version":"53477a1815e915b8c20222a2ac8f9e3de880a1e8c8dbf9dae529b3d2e2b4a53b","impliedFormat":99},{"version":"38d97a6bebedbbd8df1115cf903f8f73c322305dac0573ebece10f841e8e00a2","impliedFormat":99},{"version":"fb24ba44a7d0eb7401de4727e3955688830da8acf95b45636fa5bca74d90c555","impliedFormat":99},{"version":"a293e6351169266839ddcc18ae355a8c46807eee8cf31ebf1930491ac29ab399","impliedFormat":99},{"version":"aac01997efa5b92ec5da17ec2a6309fae31b662945d2001907f78c0e92f5184b","impliedFormat":99},{"version":"a4d375aafc9661c5c21d2438212a109609b29396526cde39f2558ca026d555b5","impliedFormat":99},{"version":"adcf381415e0f8b6a16eecc2ac31f83f75d106f52b2cd8e1a1f09a0353354249","impliedFormat":99},{"version":"8813d9ad0456f4a0d50fde5cdf82ea3f8fd30a91d9829acb0bf5ae5926b4a80f","impliedFormat":99},{"version":"238109cc6190c7e0d9426f3408e574d91ea97057ab606f65c903ed9928b729b7","impliedFormat":99},{"version":"f697d50392ad6709468d11d44c00dbea484e2049686370e71abf664b5f146b85","impliedFormat":99},{"version":"5a00808321fa11b735c07b0ca1af5f4ecd93ddb9db5a26bc24b9f598c6b4c22d","impliedFormat":99},{"version":"8007f53c079e910ba3fa5f397cc844a76000ba18eb2f15b8c93f526262020c54","impliedFormat":99},{"version":"f19ed03b23759892eb87046ba32b2213fa3897f58ef81e5d296029c24db3b230","impliedFormat":99},{"version":"e6ac206327b69f06b8852b11e225b876ac652aebe0b59929dbe7818765ed7650","impliedFormat":99},{"version":"81c246d06c4f7364e9bce4ffd97e0782e8852e02fdc08274822d7d515e2219ea","impliedFormat":99},{"version":"95c868ebe12d7004fd0809d4486ef33334de0ba1ba6b970b047fb175c460532d","impliedFormat":99},{"version":"3bfffabf5192613b61ff73e813f396fa57e6e1ab35835ca7d7e40ac40512690a","impliedFormat":99},{"version":"6d7fc57639a3deb4b7cbd55eafae4d9e7b377873b9ce5e6a689e47711965912a","impliedFormat":1},{"version":"fbe348b70b9097b9bbe8491a670d3c9faddec3ee044a7d608bae380a20fd1b9f","impliedFormat":99},{"version":"f40f410436a67d2e40bfa13c5b816a9837bba7d79e6cee03088f3442b724456c","impliedFormat":99},{"version":"bc71b780ee831cf1de0a14a074a731ae359dd9dba1d9d9d1eb36ced405a67173","impliedFormat":99},{"version":"c9682781f720ed70d08e35c693d6ac9b13be8cdae33c22ff64e534b8be26ea72","impliedFormat":99},{"version":"2cf4c95317227e25aa4bcdd518d30a18629117ac6ac4514902fe7f595b26a757","impliedFormat":99},{"version":"6db3caa29bc61f1371065b51329269254046895be397af03cf7ac2366731eb43","impliedFormat":99},{"version":"165791f6c9cdd60c2d76b5f810a3f7e482ec82378b5f6c9504c2c5cb45cb5143","impliedFormat":99},{"version":"cd9acd67a41f36facfa84e4e72d4845878df57960581ad6466c9f5686fabb226","impliedFormat":99},{"version":"bf948787d85e757f806d8c43c0b4d3e3ea29ff8d9bbb158654a51ca8b05db659","impliedFormat":99},{"version":"16d04dc02fe81a600137574cf764a5255c7416982c0d74e770cc7cab21d13e6d","impliedFormat":99},{"version":"1395dffbc7168ca8382c7d55b401fa06c00832f4b9059b67079d6741414e1acd","impliedFormat":99},{"version":"b6c81a5e70d10d3d893e0579fd5aa3ed59908cf5e02a61dea96e99ff1b059f32","impliedFormat":99},{"version":"6bbb2e249520ec6ddd60e970972603d415f0a0ef44c7329e4b8f56dc2442da09","impliedFormat":99},{"version":"7fe2624a40b568199df3788648959791056ac70a1413683270eb8bff58aac6d5","impliedFormat":99},{"version":"3f27adcb69bda8cbace6a7767eedae61866508a161aa669ec761780c3b7d4e17","impliedFormat":1},{"version":"98bb7f586a1392a3f52945d4c687f0cabf5607327c1f01b82fac64321b4cc43e","impliedFormat":99},{"version":"3da26d8c87a5693ac54dbc3f3bef7c834295c59dc8a9311282a6209697d32f31","impliedFormat":99},{"version":"1ba50b7f7916ea58fab1e2bfa780d9e6a814ceace093f8d15a65ebf690af282f","impliedFormat":99},{"version":"0d4114372be2963bb70fac752c3444fcb93bf9e9b51e9b5f30dbbb6469f0d228","impliedFormat":99},{"version":"75d7f9c7ff11d6a20985629f0c78bc9e87a48f94286945c95981142dcc1b8738","signature":"6e7edecbd23e662fbda6f79bd7975dbe91168fb6e657ec03f2494f0975508ca3","impliedFormat":99},{"version":"16f1bfcd34c22658cb80e6189e5ed1856498ad6689e6390fa9c9699f3b0914f5","impliedFormat":99},{"version":"271891420fc8fcc2e8d176ff44b5a07ad85ec207e679d04c181892e5c4617700","impliedFormat":99},{"version":"a688d4679ff3842c25d7fa72f15f61ce99a57d7e8800d9a65a24c5059c06b2fb","impliedFormat":99},{"version":"db43a2c4a6a494c90da5a684f4e8a95f6e838cf29bc2b0410ee566e77f58436a","impliedFormat":99},{"version":"157ed91cb4e74f91bf744a0f341f3f93106443c1c2e6b5ea8f9274fc7eb5d33b","impliedFormat":99},{"version":"d450096796bf24e5db3e5c66bb7a1673e533c8b327ec4aac5b9bf8a9b8f9aca9","impliedFormat":99},{"version":"7376907f5173414c5a9eb8641d473d631f589677fac9610a8cdcdf909f527cd9","impliedFormat":99},{"version":"6bdcfa2783042f7dcb0b37d091d3a049b3cfaec780dee6b77ebb1449b717a8d0","impliedFormat":99},{"version":"93cfbf360677d6d3c0303651ee8e80b33412be115775142ee44c0e484c23cd56","impliedFormat":99},{"version":"d3f17f7d13e3eccbeb39ffc673c383f9c0e5b9ed6256075e965dc65756d91e25","impliedFormat":99},{"version":"c7ed923862bca75f191d2e87ebb9fa2fb01daebca7363785cc96f34a89c29862","impliedFormat":99},{"version":"33d2e3d878665afcd95ba7a898ee40035c08fd9c8a3c9db4c22de59a1bff6dbd","impliedFormat":99},{"version":"9f702aef93a83c9fee1bcc6e50080e4fe945694b32a4f954e7293095ebe22897","impliedFormat":99},{"version":"36fea537baccde6e586d6edd0d7548dc70415bb7403d2ea483afc958a32f44ee","impliedFormat":99},{"version":"362fc061bec5c3ed4af6d493ed064448a355f268e9266894448d44fe9f3abb33","impliedFormat":99},{"version":"24a848649cade8b92ae88cae91a7d9d8f39749ef2bb6f162667fde9d212d9dee","impliedFormat":99},{"version":"f5ad8729d87f394bc9fb96fd37198edf1fcad1e6ed24ea81b449790246bac54f","impliedFormat":99},{"version":"3ffa2363afa86b0a048853041397c9517a8cd83d51fcdceffcbba3b54448256b","impliedFormat":99},{"version":"c0bbcac9dcd3c5125e40d32c800f3c9be19e37272da17e2b2f979ad392a78ad3","impliedFormat":99},{"version":"16a6a9eed99ad69c8df317fba0c5121447b305707a53781e75fb3537672281da","impliedFormat":99},{"version":"2b742524acda23b27f2884eb9022a780dd2257d3401063155b91b08e6ad35084","impliedFormat":99},{"version":"a9ecd52a50cdf7fae4f37c200b0f1bb3178b1aea7532ad484fbba5906e522baa","impliedFormat":99},{"version":"c887e50e888b2ef9ce8e7b9c504bb52821badbbdef5929da180542a399165d4c","impliedFormat":99},{"version":"3635ab0bbadbdac3b95fdcb0503aa754bf6fc3cfe580ff8e3f7ff84a4b256089","impliedFormat":99},{"version":"1086d1356a62ca3f108b5add0b23e1c58ec2abedec51b460ad126384efc987d7","impliedFormat":99},{"version":"367d819c0b08a8c9634da575406345a418ddd874cd07868b299c4b4d8479344a","impliedFormat":99},{"version":"2b4cf9e45eb3f833225ecd4da64344660d6f676e4b2be02e576f37e71d54e474","impliedFormat":99},{"version":"7d637f77fea16cd85e6e3ac3c1dbd55342db6f7aea23eb9aa36a0a7c044779b2","impliedFormat":99},{"version":"b8343be5d7508664788d8f210b9881bb141d3783396ced2677166cd23605adce","impliedFormat":99},{"version":"530238517541cfc992dc0c75a6b820698a1d159e2c6f1fd583cb816261d680fd","impliedFormat":99},{"version":"8dc4feab71024b83da6f386436796fbcf5bb2877869877caaa38bde38ccc54c5","impliedFormat":99},{"version":"7acb977886b4afa52ff12907f405241212f0f80054f32796fedc182dc3c701f2","impliedFormat":99},{"version":"cfac0cee72b8e868e9e96c344373aaba019f76132ad295745402321779a9b5a7","impliedFormat":99},{"version":"408d1724d3882454f66f15eb9688a0bf7d9eaa3ee9618e8995dae81b3b3882ad","impliedFormat":99},{"version":"5e78a1daa7ad85b2db0517c4a044c16c7b77c085b478a535baaf8846afa9b25b","impliedFormat":99},{"version":"277618acf6145049138d1cc95a3a2968ef132f190357df787ee336053955c2a1","impliedFormat":99},{"version":"34b14432430c8e71aef8d019d9e098a3734917f06e5a0cee5b9175b65d71d7ca","impliedFormat":99},{"version":"8a79b1a2ffc3327de00f624ab7b5d0f6510687fd1f0465533b23a955aa252adb","impliedFormat":99},{"version":"91a324c1a340ae9e74696636451c6d9c69f50ee8ece7faf35b067f4883156e3c","impliedFormat":99},{"version":"eac3af11f1fd157859dde50f74d75b3597ce8f47b040bc740b2d62ec7039b9f9","impliedFormat":99},{"version":"0e23df1cf0e2ef963910fd3675f4a8493a3fa176d2bf8a7f4190172425734e6d","impliedFormat":99},{"version":"2915221ad8ecba9d33fd84bee0e4b3f8b6d0a20eca87e41114f90a28f9ff629b","impliedFormat":99},{"version":"1fcd204b0b6abc064bc9e00482e7993e45e00d7b1b421f4fc31f315a2dcd139e","impliedFormat":99},{"version":"f053c3ed1db51398fe218e0e44f308f998cc38c1dbc409f1d966a0ae11724644","impliedFormat":99},{"version":"2667c6f4f6db3ab0a1f85c04e52d1967b9db43c587921edbc1480f3b9681c586","impliedFormat":99},{"version":"b418ee1e2009cacd63dbdfdc127094d633f76abea65d404f112a857c99fd521b","impliedFormat":99},{"version":"369ce10a7942a3027dad0687dd6d570a6935ef4c289de816569364c3d056e7ee","impliedFormat":99},{"version":"fa4217e1758ebf8c68199e2b9f0ac36f0be7c16e2f04fb7cd04a6007fbfd5b64","impliedFormat":99},{"version":"2b5ea91852c78c12723caa9bc19ef7f9977d2704a4503a33780850acd5597f46","impliedFormat":99},{"version":"3780c96ce567e020adc57a3b6f52932f5505477d9adaaf4a9018c7d26759d2aa","impliedFormat":99},{"version":"33deb046025719a3ac96a2acf1d7191f0572c51cf01958128378e5c991986791","impliedFormat":99},{"version":"4ad6de46c2dc26dacef046634ac1a7a8cddfbd2dc6523e5b1c7c17a13424e11d","impliedFormat":99},{"version":"d7e695071578e2d5be3910f50053d026c3cdb2842fa4eb63948cf26e4b7bf162","impliedFormat":99},{"version":"8483dffce94d657396190a0a02c3eb0db3fa43e3700568d0a8c4cc90d9750316","impliedFormat":99},{"version":"fd4b6dd479da5eda21cab4aabbde7b40aa5d71cb9885555903e20e8762d9cef3","impliedFormat":99},{"version":"2d54aa68fa606e18f2b6c7b712dbb56418009b942661fa33f01779617947baa8","impliedFormat":99},{"version":"26ff2cc582d192a94f6e10b4a85a8c1394ce8c2e16aa82863c5bdf8c27c2a7e1","impliedFormat":99},{"version":"6d37794478084a4ca5385cd06f5554907d043e38828645379dd2da71dfef2e54","impliedFormat":99},{"version":"5ae4f06c39b46205784797bc606c7df6d95f7b211304e24afb1b202372d76286","impliedFormat":99},{"version":"2619b1f9f0af46e914f8586b6c68db694846dfabf05ea87d6f362a48e962e5e3","impliedFormat":99},{"version":"33511e769a42da01b2345c51a9b79f4c747335edde888b167ff7ff093fbe202c","impliedFormat":99},{"version":"6f4a734aef0b3aa786780782fedf0b7da3c53beaf7afd74b39b942bb4f82e874","impliedFormat":99},{"version":"9a17012a7d22978393f4201992b600634c50d33ca6f4e2af5302deab0777eb45","impliedFormat":99},{"version":"7a611d159c4303633a9087197514de001787a86e2715ba85b8765ab21a6deadf","impliedFormat":99},{"version":"57273f891fd79d26115ddfacc233d19af5ae5c05931bcb1a1088da85495355bb","impliedFormat":99},{"version":"d89644cf5ce9b1a2ae4f08963e8670fedd2996f491d56672104768a7c64f784e","impliedFormat":99},{"version":"03541ad694849b108eeb4a362542881b6bc5a8f9971f070962e43d2c9cae1b80","impliedFormat":99},{"version":"ca64ebb4a640759efcad03237ee690eb9ddab6bd5aca2be62cffdfa76d852435","impliedFormat":99},{"version":"6e623a1168ef28c04d2514c5d95f25f14edb86c6b644630dfd818251908cea82","impliedFormat":99},{"version":"feaeaffb29d60e8f807b554c763c15ff81257d65b683ce19cd1988f10d292a95","impliedFormat":99},{"version":"1d3c2808166115d92eb6d18b848840ab3e6068da73ffcf028d8a2eddad49c099","impliedFormat":99},{"version":"53841ae1c51d5c9123e230fcbdbcc0f1618499ff23a44b96cf8d0e039513fd5e","impliedFormat":99},{"version":"dbbde58654142c76bb3ed940a01e97bed1d4a053b6ef34fa4b846026817c18e1","impliedFormat":99},{"version":"0f3a94e4906ccf5b0393678971f65238f8e90ffa201e80b8ae87fd3de9bd58d9","impliedFormat":99},{"version":"42d00c2bde9511e8c88ef7895586783e17a1984f82ce40ad85e3222f97839d2e","impliedFormat":99},{"version":"a11a65d9cfa0c36969eec26199b31ae031b0978c2c8143bac2b3b15ede387b77","impliedFormat":99},{"version":"bb2da8c3a134f5e81c28e47129123d9f6094aaefb0980cd476f809c819200f28","impliedFormat":99},{"version":"a74a134d6dffb5fb321bb11c5b503d7c4730edf717062cb7d4ce4d011c92f1c0","impliedFormat":99},{"version":"61b0290624ab1f3c6d722ba7de1132f00a82097d72f1c6b250d143e7e8e7f213","impliedFormat":99},{"version":"383f25b556b886d64f7ba1d8c1b54f24d4aecd99a5a830996018c343f34bb2fc","impliedFormat":99},{"version":"68b117785466e69983a154bf811d05d062fe0fd3d4d97904b03a4e75b182467a","impliedFormat":99},{"version":"6a0b37cbaca5e5db5991e25d63d4305ac5ab77bf2167c2658ccfe8c2bfe79503","impliedFormat":99},{"version":"e18fd070a4aa3642e9657c1a2cd9cdeef5556f1bb31b5b4b0bff88f3ea257c4d","impliedFormat":99},{"version":"0003a42569e126b43694f5d24b4f650435d3679d80887447dbdeb4891cd2128c","impliedFormat":99},{"version":"9299ce5b0a4dc0c10bae34740f870f98d6ef2a7132fb32cc8c9486ed10481a6b","impliedFormat":99},{"version":"ea2599f451e9221633602a5bdcc05945dbcc619c15f84aebbbbb29d5daad17c4","impliedFormat":99},{"version":"e13394c65a79355e168612ca2f01f3ba95372b3ef3d140349f14c50e6c63d730","impliedFormat":99},{"version":"2b28814d20e83eac538f0a27953df6d03181d496ee862223beac858739769c73","impliedFormat":99},{"version":"ad6d5f335b07373e40503fe5a18d0c47d867c68db55be93ecf2e7db680485a8b","impliedFormat":99},{"version":"b892111af7f90c47d41612b96cf6826e509506dd55359b17ca73ec74b01a7c09","impliedFormat":99},{"version":"91063daa1c80f44e9bb27de1267ccc4293c9a2e41aeb191f03f877a820eeb6c8","impliedFormat":99},{"version":"919fa7d017d74e75480520ade9778d82840a66ed788d552ef42d8d17c2e6b546","impliedFormat":99},{"version":"7277aa63148ef66c2e49d6fa1b31dc22ece064e9af172aaddd1d96b1746b529d","impliedFormat":99},{"version":"b24b05deffafc504c75b0141f59df468e2e29ba9ce991ab0faf2007cb70100f6","impliedFormat":99},{"version":"485a3d431a0099b850bec330f3cba433357578822b880bae60f543c923085132","impliedFormat":99},{"version":"d3ef27fc7501f2ad11a51e469eb53ae5a3656c00734505bc0b95c6bca9170844","impliedFormat":99},{"version":"e629823e4dd71488ab01483984e38dc01785f0830d97ff789828f7e093a4a21a","impliedFormat":99},{"version":"b513fbb4a655a5ab573d380d0e9845921a67159f9dc3ef7493843e9276383f29","impliedFormat":99},{"version":"dd83d668c031412bccd2804d66d937fb2bbc68aa7ef7302b1637ecab33416bd3","impliedFormat":99},{"version":"5da332489cb965fcf50f2459f5057d415eeb9f2254b672152ee94ca74aa03a7d","impliedFormat":99},{"version":"3c9923eec0a1b1d22421164476db3b73cdb8433388ae22712e6601dd7689f11d","impliedFormat":99},{"version":"712f58c06e6eb3c7de3f816b5c18335b2009d59b4a0f0d62b79d54b3736ab094","impliedFormat":99},{"version":"031686c91b72c574c911ee7ecf56bde7145bd59e109c996ab78953ebe1da28d9","impliedFormat":99},{"version":"0c711859e535de7ba3a1d912c01f21b9a63ea2dc6d59338b5f147e19671bf04f","impliedFormat":99},{"version":"0090317826baa9c3441b516afc5c4726f86652142f71a41a013f2b5e99f029e8","impliedFormat":99},{"version":"c054565d4036358d79f5bcf2b0d55e98490003a0b58c8fe3406dc1947ac75373","impliedFormat":99},{"version":"3a8e011f471ee3dc77f671a1a54ae8514d60124a161dcef14592db37cf5fed21","impliedFormat":99},{"version":"94d13c5ea4edd495dfb09c40e68b297c6721f4dd6a1a60e9b136e9e915f5fef8","impliedFormat":99},{"version":"393fe849aa48ef08eb1e587958e617f83bd3989460bd0ceda833dfc3d6b8cd4b","impliedFormat":99},{"version":"1744df03147a9e0197d1b3ef8ddef35df072480d357c4fda00afa010b6f72a4d","impliedFormat":99},{"version":"08944c0b9aafe9c9a64ac3645eaca4f2b521b2bfb4d1f49611fe54f51dfb3e39","impliedFormat":99},{"version":"05dee75a8c6866fc7a8c14fe978bde3401ae4181094b27e93f33e67f92c5ca47","impliedFormat":99},{"version":"fbf26cc3c36aaf040c715a4fe831ed839b7d884d2471ca79c10c86e5f0868375","impliedFormat":99},{"version":"ed165a4c7aada66988fbd0ecd01c4036a42d26c668165e340bc87a7c48750dff","impliedFormat":99},{"version":"260d1ea85476dc62b8c19db59ef88908a42ab4ef32b7b5af8f46f8fe92fcc9dd","impliedFormat":99},{"version":"6fabeb25ee54178dd6cca8d406adc142ee98ef0b6e872de04d6802ab30c5a582","impliedFormat":99},{"version":"f7f68a8b795d5aff7ab379efb18cb6952f0cd361918f045c7f0c5694b9afade1","impliedFormat":99},{"version":"445067c919598834320b4b599cc4826f96b1d7f9bc49496dec918cdd7ac99f94","impliedFormat":99},{"version":"87b08ce53dfe464833760606277c3daf3af3c4aca2bfe1e569806342a346d3f5","impliedFormat":99},{"version":"9c83f18e60cf7d6a647a9cfa7c769f6a7cf43bbed68e56a4f2d5e0162483782d","impliedFormat":99},{"version":"8e37bd973bd70ab98c5897e6e9dc27dc45cb300a2c7c29335ae0f4072108834d","impliedFormat":99},{"version":"594cea4e5cd7bf3855a1e58b4cb93d9a1aa79b2c70212405fdcb97a7d73dfb71","impliedFormat":99},{"version":"46a21f5f727c69d52ee2b3b6bc5620ef7129bdd7631df7a7bc01ca7635618f5a","impliedFormat":99},{"version":"6d85b5007622d81d78ac68f9183d2e4bdc213ee3f1516a3129ef0839ff4a0a95","impliedFormat":99},{"version":"0fdd28a912fe2538ec817a8175a6da4d961f3e2ad93364eb34343010f243bb55","impliedFormat":99},{"version":"4e3fc30af4ce09a3b350d9c7623b994572fe7f6131a8629726783232cd3a24e9","impliedFormat":99},{"version":"904933f473fabd0fbc67c5fb7f3a38b727fc65e35b166ef6cc4331aa8abee037","impliedFormat":99},{"version":"e63d35b6f9bf031d597d9c8444148871d221177f9e207816f05afba4126e2f6f","impliedFormat":99},{"version":"cfc6f78d5430bee7c6b36ea64f60be1bd7c416455491e98a916e0d4a3e5036c2","impliedFormat":99},{"version":"466f2a4d4641e82d5b3addae0d06182f9cc45047138e82de3d0f31cfce9f3855","impliedFormat":99},{"version":"eaf466c8ffba8a14cb6bdc4ae43b5d76d2324dd6ccc5b6f0d5e0dcafb59073ca","impliedFormat":99},{"version":"25d63de4edf1f9e0860ef418b1c3f02a12de69773cccc921dee712028d821023","impliedFormat":99},{"version":"4d1fb7395b59cd1092dcfcb96cfbbcecaa670424fb4d4737cbec229248254791","impliedFormat":99},{"version":"ce733fedafb284eeeb5a705cc05ef880e30f3bc75e033879ef62fdf803d93247","impliedFormat":99},{"version":"d8797828dda5bb71d2591280e7cead46cb1038de42a45fb197be563dea745b1f","impliedFormat":99},{"version":"aa22bc5466231be3326c6a7d2ac298f90554887289693aa671c79fa916af9ce4","impliedFormat":99},{"version":"19b95bb3d20c24c868ab6a74af4e6b608a4a054b08a413d6dabfb0935f0ad6e8","impliedFormat":99},{"version":"4e3397103ab6a7c7b1c21b537d916b71fe12b70c3ed9fa842d24bc6c1fb2a512","impliedFormat":99},{"version":"5b8b3095f72f2f08e74d1c2cb99d4d0dbafe8000d05cc08102509fd9af76bdac","impliedFormat":99},{"version":"8b5b86cac8376275514331b783ff77d53d46f45f87c115da1a738b91fbd1d13f","impliedFormat":99},{"version":"275a0e9a90c8b479b178e7e62a58a25908e50eb8bfcacd01618d3fca6b9e3258","impliedFormat":99},{"version":"081569fabd3dc2f9d9b9a71e60ddf18dd2bf1dfc914c1f19ad82d8af2ea4380e","impliedFormat":99},{"version":"81349b83b9396eedc72f76cd6ce09a1f9918966b9fab6deff0339d46c8e0346e","impliedFormat":99},{"version":"373dc8706ce580a9ebafc9ba2569721e081d2c13f916b2595b58e0c81ae09196","impliedFormat":1},{"version":"90747c589a64ccb08d72aed5dc235de9aeb725a85c5982514f2c7fb807bcdb42","impliedFormat":1},{"version":"0f795f93a2af6dc07587a92c1b4e6a9c0cf75d42274c30964a9c12e5d34fe739","impliedFormat":1},{"version":"75521c63714b0ddf9d17d8608c6873f56e57b4d06c82859bf61f7a7aa5d9cd0a","impliedFormat":1},{"version":"da246e9a2cedd122d5ba2bbfad53ce2aee3c8666c3c647b6bc2d38b1218ce701","impliedFormat":1},{"version":"6ad096abf0c15c16f3c82283ac97f89b99468072ea9543e48bbac39d6118daa0","impliedFormat":99},{"version":"2d6cda6d79142d6f4ecaf7d99bf9250cd5d61df09e19bc6b52da99ef90365eec","impliedFormat":99},{"version":"87df40b0f1e0fe41dc10937e563e04fca15985aee82086367dc065311183810b","impliedFormat":99},{"version":"df05afb5a51996bbd9cc08dfacbfa896750eb7e15bfe91f589621bbfeb486169","impliedFormat":99},{"version":"2b030261d4ae57387936e8106ff2f2cf53d5caa8e96e6d33757d534a05f0ea2d","impliedFormat":99},{"version":"c11a8a5f50291acb8c51c45f90293d3d56f5927ce6a6ce055bacfab437ca9426","impliedFormat":99},{"version":"0faf79a120afec11dbcafb011c1ee1827dd9e53fbd178594dee15e61b743fa71","impliedFormat":99},{"version":"78b89f68e9bbc19615aa36ed6da94de86f34bab8452c5a1cf484d0aabccee172","impliedFormat":99},{"version":"270f53bc569f5fc4fced34a9b167018c820253ed83344ab1ab3ba55f50b0e5a6","impliedFormat":99},{"version":"3979670f7f9616079ce9108448dd7d9bb91a147d838f909c83d772c76670c8cd","impliedFormat":99},{"version":"942802061a9d37b2680b3202c5d82e5324285e436549589a51185610d4c83455","impliedFormat":99},{"version":"07c1d0bd18bd443878fad014e4833fb79e7c4b43e38173c19a73062e172b6df4","impliedFormat":99},{"version":"f820cdbddcc0f543281217820827a8a596c17b960a164348c73b1ad065437387","impliedFormat":99},{"version":"cfe0bf5f9700b8550c4dbb307fc9f266e61e8de6002b684c2f1ed310d11d523e","impliedFormat":99},{"version":"fa2d5e29ef20b0ca983188d018a38ae5f97b6fa1e27d100e90d69205db680238","impliedFormat":99},{"version":"62c47182a2bd76f3ff1dbf8d4eee1291425e52086499511cdf5f51ad327abea4","impliedFormat":99},{"version":"c116b7200d190e556b75ef20c9deadc60defce091446c0139433d6e26a71c2e5","impliedFormat":99},{"version":"b8bc6a5c15ae8d4150ddfbe11e82e5d04904fe064bcb1a85474d298915cd5f79","impliedFormat":99},{"version":"1607e7cca4aa88826545fa3930ad2ac91ff1c1af1ad096c2f4d3e33db1bd4995","impliedFormat":99},{"version":"ddc1e6930cd45f01095910ff95d1e2d84bf4f58169ddd6b292494140e05617c2","impliedFormat":99},{"version":"cd00c53f28d497e3dbd9e61c317e45c3f4bf507edb6989011568f487ce7d56cb","impliedFormat":99},{"version":"f1fe573bfc067e6d502aefecdd73497eccd163c7feaac27ef88be44d43570f77","impliedFormat":99},{"version":"a406fd60a0ef973a5d7a707f9d0c9c723da3e3070f84c8ce79f7d053d5d2c72d","impliedFormat":99},{"version":"025356e8b6e25ad70e49079897b46c765327df30df439cd51cfb8dc4d541d5c9","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"dcced3e9fcf3f1c47dc2f6f09404061042d3df7124ff7a2266e609ffcd32766d","impliedFormat":1},{"version":"26d51d186bf97cd7a0aa6ad19e87195fd08ed72bb8df46e07cc2257b4d338eb5","impliedFormat":1},{"version":"9aab98866e26dc934f3002eee29e3266e7cce3022538f65935f03f678639e156","impliedFormat":99},{"version":"658c6178dfe9d23712e9804a26cf6d43f9a05cfe3a5fa4a94b2cdae9b594e2aa","impliedFormat":99},{"version":"9709c49cd5833cfcc964953d476346a67ce832b2b1795edb2a2a105ae905ad72","impliedFormat":99},{"version":"84bcc7c6b06f4d643a55dc63b56be0c81d990f8d549b66ea615c553268774dc3","impliedFormat":1},{"version":"2d225e7bda2871c066a7079c88174340950fb604f624f2586d3ea27bb9e5f4ff","impliedFormat":1},{"version":"6a785f84e63234035e511817dd48ada756d984dd8f9344e56eb8b2bdcd8fd001","impliedFormat":1},{"version":"c1422d016f7df2ccd3594c06f2923199acd09898f2c42f50ea8159f1f856f618","impliedFormat":1},{"version":"2973b1b7857ca144251375b97f98474e9847a890331e27132d5a8b3aea9350a8","impliedFormat":1},{"version":"0eb6152d37c84d6119295493dfcc20c331c6fda1304a513d159cdaa599dcb78b","impliedFormat":1},{"version":"237df26f8c326ca00cd9d2deb40214a079749062156386b6d75bdcecc6988a6b","impliedFormat":1},{"version":"cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","impliedFormat":1},{"version":"58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","impliedFormat":1},{"version":"7557d4d7f19f94341f4413575a3453ba7f6039c9591015bcf4282a8e75414043","impliedFormat":1},{"version":"a3b2cc16f3ce2d882eca44e1066f57a24751545f2a5e4a153d4de31b4cac9bb5","impliedFormat":1},{"version":"ac2b3b377d3068bfb6e1cb8889c99098f2c875955e2325315991882a74d92cc8","impliedFormat":1},{"version":"8deb39d89095469957f73bd194d11f01d9894b8c1f1e27fbf3f6e8122576b336","impliedFormat":1},{"version":"a38a9c41f433b608a0d37e645a31eecf7233ef3d3fffeb626988d3219f80e32f","impliedFormat":1},{"version":"8e1428dcba6a984489863935049893631170a37f9584c0479f06e1a5b1f04332","impliedFormat":1},{"version":"1fce9ecb87a2d3898941c60df617e52e50fb0c03c9b7b2ba8381972448327285","impliedFormat":1},{"version":"5ef0597b8238443908b2c4bf69149ed3894ac0ddd0515ac583d38c7595b151f1","impliedFormat":1},{"version":"ac52b775a80badff5f4ac329c5725a26bd5aaadd57afa7ad9e98b4844767312a","impliedFormat":1},{"version":"6ae5b4a63010c82bf2522b4ecfc29ffe6a8b0c5eea6b2b35120077e9ac54d7a1","impliedFormat":1},{"version":"dd7109c49f416f218915921d44f0f28975df78e04e437c62e1e1eb3be5e18a35","impliedFormat":1},{"version":"eee181112e420b345fc78422a6cc32385ede3d27e2eaf8b8c4ad8b2c29e3e52e","impliedFormat":1},{"version":"25fbe57c8ee3079e2201fe580578fab4f3a78881c98865b7c96233af00bf9624","impliedFormat":1},{"version":"62cc8477858487b4c4de7d7ae5e745a8ce0015c1592f398b63ee05d6e64ca295","impliedFormat":1},{"version":"cc2a9ec3cb10e4c0b8738b02c31798fad312d21ef20b6a2f5be1d077e9f5409d","impliedFormat":1},{"version":"4b4fadcda7d34034737598c07e2dca5d7e1e633cb3ba8dd4d2e6a7782b30b296","impliedFormat":1},{"version":"360fdc8829a51c5428636f1f83e7db36fef6c5a15ed4411b582d00a1c2bd6e97","impliedFormat":1},{"version":"1cf0d15e6ab1ecabbf329b906ae8543e6b8955133b7f6655f04d433e3a0597ab","impliedFormat":1},{"version":"7c9f98fe812643141502b30fb2b5ec56d16aaf94f98580276ae37b7924dd44a4","impliedFormat":1},{"version":"b3547893f24f59d0a644c52f55901b15a3fa1a115bc5ea9a582911469b9348b7","impliedFormat":1},{"version":"596e5b88b6ca8399076afcc22af6e6e0c4700c7cd1f420a78d637c3fb44a885e","impliedFormat":1},{"version":"adddf736e08132c7059ee572b128fdacb1c2650ace80d0f582e93d097ed4fbaf","impliedFormat":1},{"version":"d4cad9dc13e9c5348637170ddd5d95f7ed5fdfc856ddca40234fa55518bc99a6","impliedFormat":1},{"version":"d70675ba7ba7d02e52b7070a369957a70827e4b2bca2c1680c38a832e87b61fd","impliedFormat":1},{"version":"3be71f4ce8988a01e2f5368bdd58e1d60236baf511e4510ee9291c7b3729a27e","impliedFormat":1},{"version":"423d2ccc38e369a7527988d682fafc40267bcd6688a7473e59c5eea20a29b64f","impliedFormat":1},{"version":"2f9fde0868ed030277c678b435f63fcf03d27c04301299580a4017963cc04ce6","impliedFormat":1},{"version":"feeb73d48cc41c6dd23d17473521b0af877751504c30c18dc84267c8eeea429a","impliedFormat":1},{"version":"25f1159094dc0bf3a71313a74e0885426af21c5d6564a254004f2cadf9c5b052","impliedFormat":1},{"version":"cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","impliedFormat":1},{"version":"3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","impliedFormat":1},{"version":"b83139ae818dd20f365118f9999335ca4cd84ae518348619adc5728e7e0372d5","impliedFormat":1},{"version":"e0205f04611bea8b5b82168065b8ef1476a8e96236201494eb8c785331c43118","impliedFormat":1},{"version":"62d26d8ba4fa15ab425c1b57a050ed76c5b0ecbffaa53f182110aa3a02405a07","impliedFormat":1},{"version":"9941cbf7ca695e95d588f5f1692ab040b078d44a95d231fa9a8f828186b7b77d","impliedFormat":1},{"version":"41b8775befd7ded7245a627e9f4de6110236688ce4c124d2d40c37bc1a3bfe05","impliedFormat":1},{"version":"f050afc4e2e063baf534e8bfa7aa6489e360f1016eba8603c19b45ba9fcd5887","impliedFormat":1},{"version":"9d6d5aec23fce486ccc52123d440d056519572f529d1f03dca71270d34efeec8","impliedFormat":1},{"version":"092657fbee8f216761a98d6d1242bfe819a5ba06d8f312eafb03fe8b9ba059ce","impliedFormat":1},{"version":"a795c5ee89f55a0ab2e821cdb8c558c7bb61be80b2fc7d4720e607943b4f6ea3","impliedFormat":99},{"version":"8965834fec053e8bba79bd3779516df8786ce2d13c0eff3f553ad81d07da5be2","impliedFormat":99},{"version":"92445a5831287a5e948255e1f22b1b1b732fe309d0013e5613666f4c04a41528","signature":"b3fc36cd788f7913edc73c71e30b2f73ece69297ea7f8be6ea4bce3b1e65d0fa","impliedFormat":99},{"version":"71a1c9d942527f0b2a97109050ae2ba84c8c6b95dbf3501b98f901a21e6abd9a","impliedFormat":99},{"version":"9572b44ecb05f2df7a4156ae0f7a5eca2df1f35ae45d0e8ff2156d7329be6f5f","impliedFormat":99},{"version":"a96f83ed52f182b5ed3d5b5760620ab2e9f013e8ab84bfed0a71837dce3809b8","impliedFormat":99},{"version":"3a430315efc16034d804871f690be48a5a60ad42a32fa26fcb4f802e71b721cb","impliedFormat":99},{"version":"9edb600ec4c4b840673983032f2fa15e7e86e81ffab7199861474d068695823e","impliedFormat":99},{"version":"78e570ad6a831699351886f02ebabfe3d9241836b461cff38261952991a96565","impliedFormat":99},{"version":"5b61bb7846531d7fd3f492632ea79ab5406c2adfba654d0d0169da80531c2a1d","impliedFormat":99},{"version":"a8afbb2eeb9dd9eb01a352b812efe5867408ed70ac1570b2a590ff170dd18019","impliedFormat":99},{"version":"8823698c3154779408709535eba1df4ccdd49ba8296753b506ee21e31c6310a0","impliedFormat":99},{"version":"284f56dd08e0d2a4777730cc0c5e06c6214c54ff70e2cd2ea542fc526a3755e2","impliedFormat":99},{"version":"8f724fd07ffd83eff127b9705a23c435a977e08724a40a09600a303446b2fba9","impliedFormat":99},{"version":"481c72bdf8348f781f2093ef946113be7ecdbc3a57640b0adba076f9743e8bef","impliedFormat":99},{"version":"66d4a1fee92e85d80a52b61e25841a259fb3b5fb18d0c69a6b34168f1083cd94","impliedFormat":99},{"version":"8d01bc7c35a2963872c113800f096726a579dfd4eff9f658c048ba91bdb6bc34","impliedFormat":99},{"version":"22b79dc8d9259459d9392214a5ca9dc5e3637ba647787970c757ea726c4d5de0","impliedFormat":99},{"version":"bf7bb23042112c5265c42c07850d445f9a92c980344d7e329104cf7776ef2f6d","impliedFormat":99},{"version":"b03dd8948d608f2696f29690203177e35407c8836556961e2abf2db4471c5498","impliedFormat":99},{"version":"41740b735395db66ea8176d51faa5adb5adf2acb9a6e603550edb7f4a8636d50","impliedFormat":99},{"version":"0674bdca8bd86a770706271699e1333bda5b5026d950a08b73496f9290480aaa","impliedFormat":99},{"version":"bd23ad90631fdd9c28284b711d37aeee13b469dc133657283f1227ee70dc2e28","impliedFormat":99},{"version":"9720a0d97add40a3dafb0f63d211ed95c6adbd2ae252ec83edb89b5179bdb530","impliedFormat":99},{"version":"c12d239eb4d0c29f5d9aeff41d53e64bc951225d65cd55e1e61b2b3c6defac3b","impliedFormat":99},{"version":"fcdf886d1c63a365aa4a4436203d94c4514a3b27a660255234d7d0f41e667745","impliedFormat":99},{"version":"1bd8e303ae228e8955e5c59f67794651b2f43b1dce7c8566eb966bbf79a69846","impliedFormat":99},{"version":"5ed829174b2e9e8c855bbdc369aba65db07ec8ea55a2ea31cda0bf77ad973795","impliedFormat":99},{"version":"36f796dc0c8e164fe4959c4522e5158126faccf91a7f661dbd688a3c317716f5","impliedFormat":99},{"version":"dae7df5ef3f373d3f4d11ae07f9cab9ffd2781f6395d7015bfc83d91e23d28c2","impliedFormat":99},{"version":"c57412cf126ee337193c62e09ab3f8e2b6fa79f0f1633ff825c2fca7ee3b519b","impliedFormat":99},{"version":"ace0ce64e5aa8260a6f8432ac42759dca5c29f3c2ff3e0ca4e18a6abb77dcf59","impliedFormat":99},{"version":"e3c0abeed47689c237dd69773edf0134cb0fca0c36aa69aae50b66b4b396912a","impliedFormat":99},{"version":"fe804a794465bc19634aac8b6721880cd7e7f05c01cfc5e56b775c05056cc29e","impliedFormat":99},{"version":"8dc866b69e21df20c361a117b675dd8d258a40247be745f837024a55a3aaf7d1","impliedFormat":99},{"version":"54764156df21873217850da59e09badf948a4017a2b3f4ade680ac6c4d8e2524","impliedFormat":99},{"version":"2ffbb5c813e969ed341cf7d77f666ffee407ccfb2511cbaf27335463b137caa0","impliedFormat":99},{"version":"bbd0e89a24b064544894d55da4042d6067647a43c4147eb35d8d9af30cd0d77c","impliedFormat":99},{"version":"8f1c34d645063322d51210b89060aa78863d4f615a2e3ba4c61b102bcb46a18e","impliedFormat":99},{"version":"6f9d4ab52949519a7fe80bc3c964b832a041af810b4dbc64538770e7917f6300","impliedFormat":99},{"version":"7e05c8c31fad0892b12a89558cd246a32fa9ea8b5fc567791aad3a678831af57","impliedFormat":99},{"version":"67510d7c42b83a2e02249226b7a4e1a0176b215a6911d865decdcfaf980177ff","impliedFormat":99},{"version":"7653ffd4338524526095bca0131fc0e35a306a68a39a8031902a2932716f6e4a","impliedFormat":99},{"version":"6e50b68213f3b76e9061844537836f33e0bdc30041a05888fc97f1ca27ec18bb","impliedFormat":99},{"version":"f6f043168603407128b3276ddafa44287684586ee82f608d9f443af76e9d51fc","impliedFormat":99},{"version":"4d805e53712f18474aa94a867e6a01e1e6e9bebcd1f0776a586a2f373bc10427","impliedFormat":99},{"version":"c38f49a4d10aab3142b1d6d43797a452f22917d294d5012131d336ede81e41e9","impliedFormat":99},{"version":"7cdc444345ef283702e755e8e9c6dd6795a595217866ce9843f4a68f0002d54f","impliedFormat":99},{"version":"aa3ca6e715816441a01ad697df7a76f1a491e6746d0cbd9552030bc0b5a63472","impliedFormat":99},{"version":"8895cdc443a5aa41580c363cb85c42a82653b2dd4e48e6ee8cabbe7bc2fd68df","impliedFormat":99},{"version":"7a03463c7d7ba7c85199f2646ae3d75af3844616c38ddfdae2c9cc98e3718973","signature":"3b71e9dfa5b38db0cb4cbf2095ca074700efc75b3c943821dd6dffd0c1e9950c","impliedFormat":99},{"version":"ffae69106ab178c2d9a1bec8bfd7e6dbc09760d8d970b3cdafc8fdef3eea3355","impliedFormat":99},{"version":"c87deac3b3141cf170c916e7775de48755612d29056525921f3a0b7f34fbf8e9","impliedFormat":99},{"version":"dcb0a9022ffef42ece8be6ac12a141f57dc0146bd340a870364b22abc2f2f117","impliedFormat":99},{"version":"b04e27b8d51ffefbaa5e78c830a4b20b873db0d10668b6c09e835d75c213734f","impliedFormat":99},{"version":"322720abd3b2d9389040d1c2b552e451ad0ede87ec2d4cfef2d260e0241f93b9","impliedFormat":99},{"version":"dcb65e737b689a3c1d0121da29649e17d734270fe23fde078e8b57c94bb4bd1b","impliedFormat":99},{"version":"4c1699cae312351d83bc07c670de5f5853de92c5ce4016277ed3917ed7cb7c8f","impliedFormat":99},{"version":"52b5b89c8a42611dc120c7e6fc04117227efc1a19a89c1f5fe760fb6997f9f73","impliedFormat":99},{"version":"072753aa4327a75fd90a94b20a3ed438a70e3fa44b65e1f26d081ea08feb8168","impliedFormat":99},{"version":"9641d7ff7a748f9aa00bdb25ef0058dd34c8a8ffa54059c055be4aeabb78adeb","impliedFormat":99},{"version":"db1a1ce51f2df052e8bd64c3f96c16059bc24075d4b2a20a0ca443c91b504f6f","impliedFormat":99},{"version":"b00c272fc5f39e47da225846111a35e70a6abd98a48d28366e2702b521dbd6c3","impliedFormat":99},{"version":"c06d7fc2dd93242e3b4addeafd78483e7c3eedcbf7e679a8d61f6b0479c8ebf2","impliedFormat":99},{"version":"7dca648b9a8caec053f1c370c858c72bc4f7373e745253b81e7058b6e61d1a0c","impliedFormat":99},{"version":"f84b8d26b0b3b30926c946ebf02ee6e8eef6fd6842bdb94e65443f2274d47282","impliedFormat":99},{"version":"299fda63f6366185484bf8e900ebb60963612c92e42120875b9f517a52b12503","impliedFormat":99},{"version":"0751976c3e17edc32e639bcc42d1966ee3299cc94bbf88f954a69462227f4cd5","impliedFormat":99},{"version":"cd8633e4ee19b547fbc57bc6aedf7d2235c82908981ff6d9f5df2eb8da450108","impliedFormat":99},{"version":"a353e6039d8d87108655e1ac2ccddc9cb3c354facc86f7e7aae15953eb9fbd1d","impliedFormat":99},{"version":"abd58275bf712b0ddaed6ffdf7e70cc159714ee46ebf40eeac62355f556f0f8d","impliedFormat":99},{"version":"97b61ec4f9fda05f528e8afe830e014463a23197db52ce02912b8aea8ee4ecab","impliedFormat":99},{"version":"29427c02c35a78f6a1a4460fc9e827eb843ac1160dc85f629a6c353acd0f18b9","impliedFormat":99},{"version":"c1a98f433a11c554024a6f95d8fa1f6cb4d6e53f77498ec939d64ef30a38e446","impliedFormat":99},{"version":"6ced191bf134f00eb0059b0e4737734f1773cbb780b902517d7cdef8785a2a53","impliedFormat":99},{"version":"09852a6eaecf61268fcdda2035c66eb90bf2e3c793830e01376315a261f88e2b","impliedFormat":99},{"version":"6747d23800431872ac8d0a6b249a4bc41429be79d86bbd8e80e9791ada4091aa","impliedFormat":99},{"version":"e17a3e0efa11d44b8128bcb755f5b49f5935bdf2498e6972b270fee6668f2a1e","impliedFormat":99},{"version":"04f920ce4b1af5e1fe7991d536dab3f88943ece979bc4d17b89551a26e237478","impliedFormat":99},{"version":"fa49dd987999fc3d1db3fed91e26f1b41611ef4830c44401c8220c1d83455d62","impliedFormat":99},{"version":"3d9d750d65d8984a53019a34db295894ed39df0dea6113ccbe2f19087dd6c5be","impliedFormat":99},{"version":"3f5d9c064807409b1534033969f9688e86e02539d12e508bb2ee0621ac2b9466","impliedFormat":99},{"version":"60ae568c540af826ecc593fe829e56a292ca0cf6243a1802a53abb8718372bc3","impliedFormat":99},{"version":"bdf839adc4645ac0005595fe0d60dd0e41c7921d8460a8473a9af32dd130e7ee","impliedFormat":99},{"version":"696a878903b1009d58bc47f2358f414ca141e4658b5b6b48178e2a19eac953bf","impliedFormat":99},{"version":"ac6464a867ea2964670ef733135bd03619db048bb3bf92cb141b427ef41bd47e","impliedFormat":99},{"version":"1cb83a9f2db1fdea074f0a228491b759dfb8fa42d989ff4f0d349d801a978da1","impliedFormat":99},{"version":"1ef64b320f91749e592a59393bc79a9afd3db7c4a68683e5d8326cb9586e7134","impliedFormat":99},{"version":"684afda17181a690a9c84c21f089960370629c26c2442e897ef0bafdffda9cba","impliedFormat":99},{"version":"07b8a4f1204c450d02eb0664cb9e6919b5da0ea135e3d7713a9ec04fb4922d49","impliedFormat":99},{"version":"9221b8ac0e816efc63b9d40d18dee799f73495c3cf5f14b33a1ad8557cb4622c","impliedFormat":99},{"version":"d0c4e39684691f5433cdfe218287fe82121a04988d06771df8f7d4693197df25","impliedFormat":99},{"version":"5e85ccb6eb83f3625a722fbbeda6c6d7dcdde4f9b8951a61ccfe657fb28867bc","impliedFormat":99},{"version":"00cb0320ac06a2dea8017e377f0f6e626242a846c57ccecbe747a23eaa623f21","impliedFormat":99},{"version":"0c0dd7e2b6ca3335314893968b7ec2550565eec97f79548bddef8bec6da80cce","impliedFormat":99},{"version":"88766e70d7bff02ae26e3573806a404e8cabff4d55336f07464ea2e74ae2388e","impliedFormat":99},{"version":"74f6910082fafbaa3ff09dd9b9e65221c43c9954267fcfa3b32eb5775dabad66","impliedFormat":99},{"version":"053223f6fe31413366d82869510f4a2a639a760779dbdc5b15464fcdb5d9a228","impliedFormat":99},{"version":"b06c37d7138327439ad13706f62cbe0525e8b6bafd416bd2a2631a1a48d384f2","impliedFormat":99},{"version":"b480d630f52d0826a63ebe836c60fff0511a9f02422cb07f5748811bd237550f","impliedFormat":99},{"version":"1a9b2106f399a93696e39e9ad015ce5e4961fd4043913d5f95c93c892bb831e5","impliedFormat":99},{"version":"3e6746f30d5add530c799e09fbd12099ffb542e0fcb0329a0f619a420007634c","impliedFormat":99},{"version":"786bd2f9bc853b730ff617b609d92dbe73a30a485dc31b3bbdfb0e4baf178876","impliedFormat":99},{"version":"a84e936fd9c74fe7ae267f240cb929858e8d8d0760b8752441401dbb1af6460e","impliedFormat":99},{"version":"c258edb39ac8061ba08671d4299ba0f071e94910aa157a347f937a7afebb96b9","impliedFormat":99},{"version":"1b00112665a14bb9d804e331082c0031206ae2295e74b5aa625242b2746e2bd4","impliedFormat":99},{"version":"e7b949abc5c1b2f4a3a1043bb3f6adb6d34d8f2276d26b16539ee03dc1f77c0e","impliedFormat":99},{"version":"263c4b8c3cb04e240b4cf0224510cfca0df23782c6047700bbb33686df34703c","impliedFormat":99},{"version":"16c9fe1cd65e964b7bd15b7f68b409787f44657be053af5b860217b584b151c0","impliedFormat":99},{"version":"388dfc7519574d147b99b9a24593bcec7eb523129f2caeb30c1890bcd3aa0e85","impliedFormat":99},{"version":"7b63ee6edd490a3012e0b5cf81b64508ea44d1fbb34d47426e44ae06f804c452","impliedFormat":99},{"version":"6d4aedc24d3bcb12ce19d2450501d33fe1fc647be6162a99e4193212a2d9f43a","impliedFormat":99},{"version":"60c247e8329098c37d8d26e43831b074a4fec5dd8daf885ac3e79eede13e39aa","impliedFormat":99},{"version":"2516cfc19400a1aa37b0bf28f839f1845bed85ee2c4dda9a08e3bf6f50490608","impliedFormat":99},{"version":"fbda16b486842fc5ce77f0c0c7ce9c98ade4ef7befaec919d3735c08659cd3a3","impliedFormat":99},{"version":"7d454e779a8896e3b685035fdea856cdf02e52209083e1300e1ab4a65f4efb1e","impliedFormat":99},{"version":"46a14b89c77db233ad8df4e4143b9898c57fea9cf4242e8ecb152fa8a90f75ac","impliedFormat":99},{"version":"77376e490d2cb7e20086abe66cf7ad5d5f30fa72c661aa5af33221a8f27f4dd1","impliedFormat":99},{"version":"47d28c20b5fe5f08abf3ca6595466cfa5bbbe456982d6c8ea83888cc2429ae82","impliedFormat":99},{"version":"a0c2645fa8dae32816af7c6631f848ed873a5b49e116f5b8ccb5e75247409723","impliedFormat":99},{"version":"5288486ca713353fa0cbadf2aef31a933b0602cbf146970caca2107f8fef6bcf","impliedFormat":99},{"version":"ce41f2ea1c922098d5c8a2ed05f71b16e06d5a1cdcee4122247cf8871075bc5e","impliedFormat":99},{"version":"942a0424f88de2d8dc3722ddd955ab6f08386dc5a865fb4e6487b03fb1a87248","impliedFormat":99},{"version":"2a079bfbdbed2746c1eeb05cf4f9d726d587c61ee95b2b99dc6e017d83020f1a","impliedFormat":99},{"version":"802d85e4062f4aa4b23a70c03cb024248bcbd2952792f4bfb20e5ff5dd173b16","impliedFormat":99},{"version":"d6ee22b81386f09ff62c33bdaaedf0d2b8497681133954d9fbd9fd389da858e9","impliedFormat":99},{"version":"dc7fc11e9e615d4c9f84883729a4136763ba6b6f319578c31947cd42ba40e8b4","impliedFormat":99},{"version":"379ee4a6583e2d780f5ce924c8940e3bbfda56580f92afc0dbe5f155f4c4852b","impliedFormat":99},{"version":"9defd2093b47c703fef4c77753e0fd231f634f68919917682c1f6fcc199a4990","impliedFormat":99},{"version":"60ccc3ea751280965145db8fcb69f633878586c114e90b178cd0874743c00451","impliedFormat":99},{"version":"e80df2cf0e8097807098eafcbad6e2bb39d4419cc06453a13c30d99bb2b1df09","impliedFormat":99},{"version":"a8de7991436fc126f599bcd6ec1d2a17050c3ea1748e48e58cf5cb82b8c88c71","impliedFormat":99},{"version":"590b6da60cd6c339009d07582fdb03de34aa048cd4788519a8501c93a5fb733f","impliedFormat":99},{"version":"80311acc76bf5abd5259cef0dc47b0e3dba7c53125bb4c3524a0866ae876ab16","impliedFormat":99},{"version":"7a827d77377cc6b70aa3a1b6b337d3393e7e723adae3981c75a6e659fb24ceab","impliedFormat":99},{"version":"278577765a27a4471ee36cb3878241b3920be0962ef0c766ec1ca91960646fa8","impliedFormat":99},{"version":"f42ad8c372a834d486f2d7638b06fe58fcef9965052be7adb8c381ef4de51926","impliedFormat":99},{"version":"31304ce1a08343f6e2d0f87aa31d9890e598c355a5e5ff2ab81176905831692d","impliedFormat":99},{"version":"d35795034877bc6b4299d91d5b195b8242cf16e074f943dc8bed843eb9bb39c0","impliedFormat":99},{"version":"54e9266cba5ae95a455121aa2804ca681a700873d8698ce26deeb320e6a46423","impliedFormat":99},{"version":"9c0bec23536841fbcde90372d51e1591b3e8c6bdf4856596664a529698ad651c","impliedFormat":99},{"version":"aca798702ca22832587aa791c7e3b6a95eeac3100ddc53691bcc30b984dee7b1","impliedFormat":99},{"version":"0b4b136bcc477f2dd40ef0ddd0f346fccf169543bdb4d2fc54bfb20f2447a40a","impliedFormat":99},{"version":"4771fcc5e5ef0f64aad53cf790472b348bb95f0cb610a88736794d8c2735cb31","impliedFormat":99},{"version":"7cbbad54edbbdf4b70235b4eb8414d3511c2da2a2e584c292d63b3afa79ef547","impliedFormat":99},{"version":"569e762cf47aafdad508360a443c6c757e56c61db3b652b65458a7d168d139c4","impliedFormat":1},{"version":"02ed2766d79a00719ac3cc77851d54bd7197c1b12085ea12126bc2a65068223e","impliedFormat":1},{"version":"4b84373e192b7e0f8569b65eb16857098a6ee279b75d49223db2a751fdd7efde","impliedFormat":1},{"version":"5aeea312cd1d3cc5d72fc8a9c964439d771bdf41d9cce46667471b896b997473","impliedFormat":1},{"version":"5b486f4229ef1674e12e1b81898fff803bda162149d80f4b5a7d2433e8e8460d","impliedFormat":1},{"version":"cb5bb1db16ff4b534f56f7741e7ffd0a007ce36d387a377d4c196036e0932423","impliedFormat":1},{"version":"08c2bb524b8ed271f194e1c7cc6ad0bcc773f596c41f68a207d0ec02c9727060","impliedFormat":1},{"version":"fc3f24e4909aed30517cc03a1eebf223a1e4d8c5c6592f734f88ad684bd4e3ef","impliedFormat":1},{"version":"29ad73d9e365d7b046f3168c6a510477bfe30d84a71cd7eb2f0e555b1d63f5f6","impliedFormat":1},{"version":"7a0567cbcbdfbe72cc474f4f15c7b0172d2be8ae0d0e8f9bd84d828a491e9f14","impliedFormat":1},{"version":"440099416057789b14f85af057d4924915f27043399c10d4ca67409d94b963cf","impliedFormat":1},{"version":"4feab95522c9f74c4e9067742a4ee7f5b88d3ff5a4f24fb4f8675d51f4978053","impliedFormat":1},{"version":"be058e2ba8b6c5191cf12b5453eb68f324145c8194a776ddc82eb5171cdb1cf4","impliedFormat":1},{"version":"208d282dac9a402b93c3854972740e29e670cf745df6011b40471343b93de7c3","impliedFormat":1},{"version":"14ecfc29e0c44ad4c5e50f9b597492cd8f45a2a635db8b5fe911a5da83e26cf8","impliedFormat":1},{"version":"7537e0e842b0da6682fd234989bac6c8a2fe146520225b142c75f39fb31b2549","impliedFormat":1},{"version":"c2f041fe0e7ae2d5a19c477d19e8ec13de3d65ef45e442fa081cf6098cdcbe2d","impliedFormat":1},{"version":"3633bbd3f89923076da1a15c0f5dc0ad93d01b7e8107ecf3d8d67bc5a042f44a","impliedFormat":1},{"version":"0052f6cf96c3c7dc10e27540cee3839d3a5f647df9189c4cfb2f4260ff67fc92","impliedFormat":1},{"version":"6dc488fd3d01e4269f0492b3e0ee7961eec79f4fc3ae997c7d28cde0572dbd91","impliedFormat":1},{"version":"a09b706f16bda9372761bd70cf59814b6f0a0c2970d62a5b2976e2fd157b920f","impliedFormat":1},{"version":"70da4bfde55d1ec74e3aa7635eae741f81ced44d3c344e2d299e677404570ca9","impliedFormat":1},{"version":"bf4f6b0d2ae8d11dc940c20891f9a4a558be906a530b9d9a8ff1032afa1962cd","impliedFormat":1},{"version":"9975431639f84750a914333bd3bfa9af47f86f54edbaa975617f196482cfee31","impliedFormat":1},{"version":"70a5cb56f988602271e772c65cb6735039148d5e90a4c270e5806f59fc51d3a0","impliedFormat":1},{"version":"635208b7be579f722db653d8103bf595c9aad0a3070f0986cd0e280bcdff2145","impliedFormat":1},{"version":"10b383b2228c780e5d30f9fb517309a824c5dc892dbf6ba69873c2905c095596","impliedFormat":99},{"version":"021bceeca2402146f1a3f76c53a15dccdeb596532e396beaa5de318bfb9f3897","impliedFormat":99},{"version":"4cd40eb2b68646935b75d1adc64c4134c1333d91395a4ce407b8410c5e43dcb4","impliedFormat":1},{"version":"1d963927f62a0d266874e19fcecf43a7c4f68487864a2c52f51fbdd7c5cc40d8","impliedFormat":1},{"version":"d7341559b385e668ca553f65003ccc5808d33a475c141798ba841992fef7c056","impliedFormat":1},{"version":"fcf502cbb816413ab8c79176938357992e95c7e0af3aa2ef835136f88f5ad995","impliedFormat":1},{"version":"5c59fd485fff665a639e97e9691a7169f069e24b42ffc1f70442c55720ad3969","impliedFormat":1},{"version":"89c6bcc4f7b19580009a50674b4da0951165c8a2202fa908735ccbe35a5090dd","impliedFormat":1},{"version":"df283af30056ef4ab9cf31350d4b40c0ed15b1032833e32dc974ade50c13f621","impliedFormat":1},{"version":"9de40cf702d52a49d6f3d36d054fc12638348ea3e1fb5f8d53ef8910e7eaa56f","impliedFormat":1},{"version":"2f844dc2e5d3e8d15a951ff3dc39c7900736d8b2be67cc21831b50e5faaa760a","impliedFormat":1},{"version":"ecbbfd67f08f18500f2faaaa5d257d5a81421e5c0d41fa497061d2870b2e39db","impliedFormat":1},{"version":"79570f4dfd82e9ae41401b22922965da128512d31790050f0eaf8bbdb7be9465","impliedFormat":1},{"version":"4b7716182d0d0349a953d1ff31ab535274c63cbb556e88d888caeb5c5602bc65","impliedFormat":1},{"version":"d51809d133c78da34a13a1b4267e29afb0d979f50acbeb4321e10d74380beeea","impliedFormat":1},{"version":"e1dafdb1db7e8b597fc0dbc9e4ea002c39b3c471be1c4439eda14cf0550afe92","impliedFormat":1},{"version":"6ea4f73a90f9914608bd1ab342ecfc67df235ad66089b21f0632264bb786a98e","impliedFormat":1},{"version":"dd018ed60101a59a8e89374e62ed5ab3cb5df76640fc0ab215c9adf8fbc3c4b0","impliedFormat":1},{"version":"8d401f73380bdd30293e1923338e2544d57a9cdbd3dd34b6d24df93be866906e","impliedFormat":1},{"version":"54831cf2841635d01d993f70781f8fb9d56211a55b4c04e94cf0851656fd1fe8","impliedFormat":1},{"version":"73a671f26b275b3a5355af5ab7a30065d375aa17807edee8594c770f4a6be97b","impliedFormat":1},{"version":"846c13f5d56bc85e76b242a01ad233f67485d27f43db3209e491998e2923a206","impliedFormat":1},{"version":"8844c15dfe32612428f7414497f0e71848ae591433670d0ac4bdb367f16732e6","impliedFormat":1},{"version":"ca787346320439e1201371ab1388d34d1a2545bc43ee8ed4c3d3ce767019dd98","impliedFormat":1},{"version":"22016594e57024207402d3d10f4bab0202b87608fbd4918c1437a8a3436e3370","impliedFormat":1},{"version":"af17460710d59f5daaccddf88b1d647b4dcbfcf15eebace726a2583f977732ae","impliedFormat":1},{"version":"00b80ac8e7c63120d0f18bc30f45b3e058dec8987455d46b87d48a2997585b5f","impliedFormat":99},{"version":"f84df8eb184a4e96247d8488845a136d309dcb9be4ed59b2e75d114b0c4cfe2f","impliedFormat":99},{"version":"3e8c8a071a17606f2cfe49bf394c1af7d2d47878a9fe7acd838783aceed4da1f","impliedFormat":99},{"version":"02daacacb2bdcdd128b893a916d4aba40a27c6f8bb2a3a8aa577d94c84dd7ded","impliedFormat":99},{"version":"c1770225606ac896706a937d615c3ae3e907f86b1bb1d9e69529b33c4abe62ce","impliedFormat":99},{"version":"fe4b30e4d3f61f6d48e301b4fdaeb3e97db3ea022ef9b453e10e78e5cd1a573c","impliedFormat":99},{"version":"4d124768081fdea045ba32e1f1cb2c925dd368f18d0425fbcecd440e33fd2a24","impliedFormat":99},{"version":"c941e365942106fe35d59ca99547bc591c5dada7b15cd6830b79943dcb2f813b","impliedFormat":99},{"version":"7fa09764edfb7d4fc6825ae31434a87895642736bf2288ac4e4a519e10901bac","impliedFormat":99},{"version":"01dadc03d01ca2e30bca5d14f8c12650a2aea047ee31afcfac924b2b321e5f73","impliedFormat":99},{"version":"329e06f1f8420bd30d570e060b22f2ef1b97e017ffa55a37e9f4b7bb3b93f868","impliedFormat":99},{"version":"74c686d4eed8df773503c2b0f87a9b96392aa2eba107712bf948776f517f212e","impliedFormat":99},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"7a3aa194cfd5919c4da251ef04ea051077e22702638d4edcb9579e9101653519","affectsGlobalScope":true,"impliedFormat":1},{"version":"a049b45feb6f9def6f01d0f6fc310742ac635a82900f93aae11dc68a1cb2a4d3","signature":"3f13240001e1e96aa580c99873d33410d2449d84b898fce853a60c9e6bbcc549","impliedFormat":99},{"version":"c6f4f74ea375478c52fd3cecd8531f9ea4ab8b0ec7de116da3fe2f2aab410ef8","impliedFormat":99},{"version":"47bf63c5be366b091247a652ab44e8cb5f477086453c4acac87b512bdc89b0b9","impliedFormat":99},{"version":"c541e502e61a53df441e0acc6ebfbfbc55e4b1f429df2bdfbce9068f5efe28ce","impliedFormat":99},{"version":"6def6568f47a8644f07faf04030091bd07080df6b764a42d29eeac0dadf72436","impliedFormat":99},{"version":"4ac32bfe2e50e7aa6f03d1344962bdc71831f8a4515853209f92478154720bc0","impliedFormat":99},{"version":"86855c87da85aec70f211ea36c6006792d638cb01ec41ba874758cf6514bdda5","impliedFormat":99},{"version":"082630e9ca25f49d1f34426dc27e1236d32e619e71bfbf7a45083670485ce5b5","impliedFormat":99},{"version":"36a42b442fbe93c3aa1d15ecf4f0293c175f80718e1b462bc4feec48d3bbc54f","impliedFormat":99},{"version":"42f9d8c91146877408e4197fa388891cf9a0d94378d595195879fd59e2c80fc5","impliedFormat":99},{"version":"f17ed72d1b1882ab6dc66d45e699f757d15bba0807af2fc9c3ec98fe367611c1","impliedFormat":99},{"version":"3f4248944c380b995618847b254e64c4fad48e31650c692bb01424df48618a86","impliedFormat":99},{"version":"6ca0b2845c6e95e75e42fe99026c7545c8b4cfd9bc1750bb5421b0699ef89c35","impliedFormat":99},{"version":"b03cab886d1ea68398cec813d86857b97f7100fcc17ad8eabdb033dd6251953f","impliedFormat":99},{"version":"337a6cd986dceb55f190c2a01858f0a60a5b3029162c4b013d138652db54a3de","impliedFormat":99},{"version":"4c2065243522316b3b2a0730768865473f9760647acbba6639bc6ff4052ea959","impliedFormat":99},{"version":"534157552ad20e2588821c39a7f8c39f2212f2d8acfd3a6011b9fbe703003e59","impliedFormat":99},{"version":"80bd6579b5fd1464b1498093a27929187ca566bac882dc0b6cab7ae6e7436649","impliedFormat":99},{"version":"51fed87dd710e80639e1329e50e53eaf5f4ce5ed5daed9d9c05dbb9860f6d1cd","impliedFormat":99},{"version":"ac41e7f73828f56c9c9218e24378bbbd95f6cdfa58233434aa76deefd5d574c6","impliedFormat":99},{"version":"9dcb107d4bd0227f0b407099ed8da673e06e034f540cb70f3c7bbb82c27e19a5","impliedFormat":99},{"version":"432962228177533520f449860528ca73ef19add3459f07d07cbaa1aa4c848d49","impliedFormat":99},{"version":"f1932f02c974099ba15ccf760c8fe89db3275b6ef01b766bd203be1c4290dfb4","impliedFormat":99},{"version":"20684921aadd73b63eff2f825a775af86c7ed00461693cdd49710622c073c83f","impliedFormat":99},{"version":"2d1254303138e070458d43fa6167df44ad6a0165efad45332a410cf9052b4491","impliedFormat":99},{"version":"8eac82dda861b5645fb8312888ff873bc1f4c1b32be1e5a9bd28ceeb14dca952","impliedFormat":99},{"version":"44ab53cbd8c5c318a7ed2f05aca7756bd160720ec8baee962a9b9fd9c140c877","impliedFormat":99},{"version":"6b1f9191f8950fa3453d0f87def9dee5c4098edd370cbe2b0e6ee36184b863d7","impliedFormat":99},{"version":"ac8447c8f58f94c6baa49c9d3c7712baa16e5377f894ae27875beb38bc413882","impliedFormat":99},{"version":"0a49753424c8e8bdd019855b7b33ee6c9ef9880f7286a04e3172811f451858ad","impliedFormat":99},{"version":"152f3cd2061dbf90a3e04f0b0245547c3a8136eda8a124dbde73c9ee63ed6639","impliedFormat":99},{"version":"ffb39ad599222b71066e84ad02fbc205fa6970fda4e4fc05a7601bcb9b6e53ba","impliedFormat":99},{"version":"af03dc82c46433b08537cd07fdd47a63f3a23866f5989b9c6496386c851f768e","impliedFormat":99},{"version":"40cd5614c70b07c26647cabb5fb28e045802f7ce3d8aa47d873a3f6c7acebceb","impliedFormat":99},{"version":"d58b987f09fa3ebafbbf4c6f2d23c77bda1d295b77501ee73a3d1ead981db71a","impliedFormat":99},{"version":"fc910478d8d76c27ad008ed7e36e3814611173a9c6cc31c20a5ea22b05ebf878","impliedFormat":99},{"version":"1488d720b855fa7973f466cd39e1db830f628a13d124b5b09ed9dc37886237a1","impliedFormat":1},{"version":"879936494b940d7ec2c985cf42d25fa67bca050a863a204c3f9c1a68f3848b84","impliedFormat":99},{"version":"adc419321fe855bedc0e1d67f8bd2dd924088bf2476390d0ad487a93b2879622","impliedFormat":99},{"version":"b5fffa1e0e4be5750b91f94d49419de6799ba94666e851b52beadb8678eca893","impliedFormat":99},{"version":"350fcdc01060e2c080362ba17ac21382946b3e70c77987e0a735e00d646a801d","impliedFormat":99},{"version":"4bb00d0b7662071a371c61801649c31e45f61ba603bd4733f310321d3f210702","impliedFormat":99},{"version":"e442c1255949ee59a0dbd3c9c9b220d7e7cf64ada1d647fbd734a4381805211e","impliedFormat":99},{"version":"53fe034d6159c92b6ae7f6133f127454ad28d81b44f19eb1ebbfb2ebd0c0c941","impliedFormat":99},{"version":"02c63214b367e115954f16accc51328b25582401af7083b82ab8967787d1e772","impliedFormat":99},{"version":"b7d0efd985ee101cbc00a2ec3de48bdcea2cbe98711e0eabdb65e5bf88b0d3fd","impliedFormat":99},{"version":"c44568cbfb5a1221e19f73bba1c705eb96e6c9d2d74ed3ba6c1afb7afd0fbb4e","impliedFormat":99},{"version":"1670d4893c91c7aa19484bdd954e60cae11738eeefbed895245952febbc854ec","impliedFormat":99},{"version":"a63ea62fc6583346180d3ba2a24467f2484611ed11145e34d499e5c8ffd5e7c3","impliedFormat":99},{"version":"a368f9e28beec627226c163ccadec30c2bcdcfa8cba9b300a0bf1d1a4bd57c9b","impliedFormat":99},{"version":"98e799ae501a271e7ac674728ba28929aa43d103d6883c51bfd3a90fc0b39255","impliedFormat":99},{"version":"7019dfdb80ba57827dc59fe702c1e70580e3e4842357f9b81c3275420c15c064","impliedFormat":99},{"version":"f5b08569d743e2e7aebc128e5c2a1d4eb3d5681ab1c38807b25771d67d141581","impliedFormat":99},{"version":"ce03f9b7f545442dede57a9e2a7e075dc68aa432982e094cb3bb075473601ade","impliedFormat":99},{"version":"96debd1ddd1d4e18c65c8c6175be7bf9cd4a9ecf55aefeac7a5d34ce7cbd330d","impliedFormat":99},{"version":"1e8ebac740327950d66a195c884d44077afb8fcbe91d9914985a4e8a4e49ae33","impliedFormat":99},{"version":"8b5aa5938a05e6d779b39ee558845c7816842c96cb08f022e7bd76d308f79290","impliedFormat":99},{"version":"54134b00e55e64b435951096cfd0b007cbe11f1da4b0e06e1116a558afb131d8","impliedFormat":99},{"version":"8cd05412053a40343a6481db9ebca2d8b74118265a146b535ca7f8ffeaf8465d","impliedFormat":99},{"version":"409759e7a22c8cc91d709bae3a9ed372887e3e88fbf5ad908d12b0de46d28fa4","impliedFormat":99},{"version":"abdc58fac99f202ff42327ce61e4317384c9513c6b3285158f6f0b00d5de66c4","impliedFormat":99},{"version":"90e4e481519a37765f849174a44720ac52837f52b55915015391fd3f7b8d052f","impliedFormat":99},{"version":"f2c37d0e21ed823a3e94a7cfc09295cbe6c6a1998e79ebe768c687f5bebf7ea8","impliedFormat":99},{"version":"c3071951dff3a732e63a48ef7f3efe873be9e9dfb39580ef9ce65e604a4a3dde","impliedFormat":99},{"version":"396b846f00ee7f089fd122f76e04854cc38f385c0fab8a4aaca195683d7eecac","impliedFormat":99},{"version":"ea20e0848cbf9827bbc17984cdeedbc2e12e840d1bf830020f35ea19f5a52798","impliedFormat":99},{"version":"a4417be64379ff0e9d9ad2cd3a8dfe4339a1d4dc66476ffbddce0e03cda656d9","impliedFormat":99},{"version":"4671656701e90384a850d9b9079b8438e8b688e1b850a8386dfc857964e89909","impliedFormat":99},{"version":"92c0134fd5ef773d3dc4d6e3d111109ca9ae1d99eaf4cf7c8c4458f11757a9e3","impliedFormat":99},{"version":"1383df301b18e8017fc103876f1cd7c236943557c069185c02e5cf4eefe8380c","impliedFormat":99},{"version":"cdae911b0b0e0d9de66a4ce125c80f9c51764704925432d97f5a5cb15f1410e9","impliedFormat":99},{"version":"c7a98f5c7c01203134ea83cae327dc1c501de9de8939936c1f0e42866777654c","impliedFormat":99},{"version":"bf6f71420a8aa7008a11263e9c8406a667e4f24f75522492e5aeaf6441ba7f5f","impliedFormat":99},{"version":"1e4c0de482d1d504ea79dfc0d9fefe5f20716803d9d7d7fdf709d0d6e9b98163","impliedFormat":99},{"version":"6de821f038c42746b4890a7846298acbd8d8960735c9229d3c97cefabf4ddcbe","impliedFormat":99},{"version":"e22a948876d1fb1d2cc9953312d5ad36cbb1cc1d6208b2d4c0ce26b4d12385f0","impliedFormat":99},{"version":"10c3abffbabaa1d66eb320123d52819b48385fe72946b4c8288bbb6ebe3a6f9e","impliedFormat":99},{"version":"d5b1166986a4d2bb0c6657fd24250f91068bda5f1a55ecee640b21e1475be9eb","impliedFormat":99},{"version":"3c8147638a107b13646132431ca38d500fbf7596229fcf0280af84d1209928b0","impliedFormat":99},{"version":"16d31e7a1791353f7ef319f14db94246705c7861c38d7f078934be2e2e671a58","impliedFormat":99},{"version":"5692536fe31230f6199c858360f73383daf062a59a55c9d7e681d8f67ea2c845","impliedFormat":99},{"version":"4d09bfbc64dd2a1c1eca4ab76e8585833b28ddf7594e576aca3d6cd4c6d85a06","impliedFormat":99},{"version":"c3e529a7f66608d87d3e2ce024c468a5b28aaaa978d696c8b0f971e493f75a1f","impliedFormat":99},{"version":"a208ba70237802663fbb85032543e2cbca7abfe0738b49b713776de27e91d893","impliedFormat":99},{"version":"23412ebaaacff1272c0d17e25c64102ed3f9700c72d87aa4c1255940c47131c0","impliedFormat":99},{"version":"f1bf4c01a3882a0c5b0796a1e2c69a011f8daf471d96bf62e08b800dc2394215","impliedFormat":99},{"version":"5833d73748e09346bd795bf37473c45df4364ddf81bae654ae22de5d21abe3e5","impliedFormat":99},{"version":"8e391e131642e6f1b560e0c58639e301fa698663b534a56a1f7165e8d08dd25c","impliedFormat":99},{"version":"83dcc32c38ff4fa347fc6d6b29a9c472c9b5f3ffa6441f6ccdf6e2f6a7b94df3","impliedFormat":99},{"version":"3e0cc1d3ddc26bb2d78d5d2749a53ac8a3ab3eefde2f90b1b4ba987b99308d55","impliedFormat":99},{"version":"151c7359a84d9dbeb9c6afe591d390cff6d4f2912f55f8a1d13d19d63b7c2997","impliedFormat":99},{"version":"e7a81946044d87b37cbba669257d94368210b78c313accb0354343763b7e454f","impliedFormat":99},{"version":"989cd876f148ab79f64f951a24f8167542da16af30e921f3ab99137b89fd8547","impliedFormat":99},{"version":"2e5151ec2840050de0ddabaea3fd6971ec97595c0135b68b57b764e5086e9d3e","impliedFormat":99},{"version":"08fc53004223fac50ee56c6abe9ece7046df5df3361c614b45b182541bf672cc","impliedFormat":99},{"version":"d6876a979ae2660455da84ac7b891576f6295547b4f28173d598b9d543c2c3a3","impliedFormat":99},{"version":"048b7b51fd3169b80971d3c43f9ce4d09fb5d7f8867c2e9896e5bb698935fe0d","impliedFormat":99},{"version":"022f2492b8ef3e5ac4cb6761ff41f358088cc966dc97e94bc91e6788663c4227","impliedFormat":99},{"version":"86cc024e23eae05fc83b75da9f66de87eb7c88f19d64f18390b52564d73e2487","impliedFormat":99},{"version":"0f014f1974327ca0711a843c3c57446afe033fc514c3b06bf87a9f4f4e945b07","impliedFormat":99},{"version":"a12662882c676072ccf0582ad0933bf0b36dcce4bf08bda0163bd756e587ea79","impliedFormat":99},{"version":"5c5241b51c3ec457c8830359ec8892684f4b85f5043a921916ea8b18d0e490c8","impliedFormat":99},{"version":"98f654396728712923554378895d2573482ccaa79cab9938e9ada87cc7313e81","impliedFormat":99},{"version":"eef98881d44ce190539fb676d582f564df74150c39637c88a7f33417e2092850","impliedFormat":99},{"version":"de777530b876b8ccbe13e0236c0aab5ef0eabb3897cf03c4af05191cfffaf3c1","impliedFormat":99},{"version":"47a1130da2812edc82bb5d56c1dee1dd7282b351fad2f4c9f4b326810e5d9106","impliedFormat":99},{"version":"b55b02a9a5f8c22d1bff8af0eb8acbb084f266b7a8e4a6fece367f246c0c5dd2","impliedFormat":99},{"version":"101a3b081baa149af61b1959926266e2b2e3f64323fabad7994d801b1559be79","impliedFormat":99},{"version":"5d9f1e910d7dd3a2b4dd2df608ceddecdb51347b625fad66a4dc9a1617ad2834","impliedFormat":99},{"version":"85ea2d74cb57b8183c62edfca328f16dcc9f62f9d38e7f3d24fb385443d885d9","impliedFormat":99},{"version":"f83b41a0699a8df0dc2b41f2d0dbca36dc11fa9e552d774a0c46b038355977b7","impliedFormat":99},{"version":"779f048c51062b151709cfaca0da3394968a0e559f87ecc44485ecf2727e1e04","impliedFormat":99},{"version":"941fdb4f654b39b75184371855b38914e72944722f689b7cc0dd3cbcbb93dd6a","impliedFormat":99},{"version":"ce2a1eb044af82098d27af5494497fda12313d1093cf8767868360e6ec80dfbe","impliedFormat":99},{"version":"3ca12f0de819850fba22b06b1e2864069909a4a9f9807add8f336d4955f09578","impliedFormat":99},{"version":"fe49f5c9b87b545f33b6cd63f4881342b321c687e3163430159b138a3a1f6355","impliedFormat":99},{"version":"51eff882b38aedde93a06cda1f30443df64ca913c071840bf9397c0692b1b018","impliedFormat":99},{"version":"581a84e904c987135420312e3ecdf9d2806f8d85001589641c2ce9db38c29375","impliedFormat":99},{"version":"97d606edc8897926b62c8c8745bfe017b99011e21cc07e87c759a97205bfd0e1","impliedFormat":99},{"version":"a4425549586b741fc857d203832f6b5b8165066c21619cf94b19609051057348","impliedFormat":99},{"version":"ba53ee311ce142a0cfd9d78f2423f5c61a97afec143b05fcbb031bfe251cb41c","impliedFormat":99},{"version":"cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","impliedFormat":1},{"version":"1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","impliedFormat":1},{"version":"130ec22c8432ade59047e0225e552c62a47683d870d44785bee95594c8d65408","impliedFormat":1},{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true,"impliedFormat":1},{"version":"928f96b9948742cbaec33e1c34c406c127c2dad5906edb7df08e92b963500a41","impliedFormat":1},{"version":"56613f2ebdd34d4527ca1ee969ab7e82333c3183fc715e5667c999396359e478","impliedFormat":1},{"version":"d9720d542df1d7feba0aa80ed11b4584854951f9064232e8d7a76e65dc676136","impliedFormat":1},{"version":"d0fb3d0c64beba3b9ab25916cc018150d78ccb4952fac755c53721d9d624ba0d","impliedFormat":1},{"version":"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","impliedFormat":1},{"version":"ba93f0192c9c30d895bee1141dd0c307b75df16245deef7134ac0152294788cc","impliedFormat":1},{"version":"fca7cd7512b19d38254171fb5e35d2b16ac56710b7915b7801994612953da16c","impliedFormat":1},{"version":"7e43693f6ea74c3866659265e0ce415b4da6ed7fabd2920ad7ea8a5e746c6a94","impliedFormat":1},{"version":"eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","impliedFormat":1},{"version":"4e251317bb109337e4918e5d7bcda7ef2d88f106cac531dcea03f7eee1dd2240","impliedFormat":1},{"version":"0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","impliedFormat":1},{"version":"1a67ba5891772a62706335b59a50720d89905196c90719dad7cec9c81c2990e6","impliedFormat":1},{"version":"cf41091fcbf45daff9aba653406b83d11a3ec163ff9d7a71890035117e733d98","impliedFormat":1},{"version":"aa514fadda13ad6ddadc2342e835307b962254d994f45a0cb495cc76eca13eff","impliedFormat":1},{"version":"ce92e662f86a36fc38c5aaa2ec6e6d6eed0bc6cf231bd06a9cb64cc652487550","impliedFormat":1},{"version":"3821c8180abb683dcf4ba833760764a79e25bc284dc9b17d32e138c34ada1939","impliedFormat":1},{"version":"0ef2a86ec84da6b2b06f830b441889c5bb8330a313691d4edbe85660afa97c44","impliedFormat":1},{"version":"b2a793bde18962a2e1e0f9fa5dce43dd3e801331d36d3e96a7451727185fb16f","impliedFormat":1},{"version":"9d8fc1d9b6b4b94127eec180183683a6ef4735b0e0a770ba9f7e2d98dd571e0c","impliedFormat":1},{"version":"8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","impliedFormat":1},{"version":"892abbe1081799073183bab5dc771db813938e888cf49eb166f0e0102c0c1473","impliedFormat":1},{"version":"65465a64d5ee2f989ad4cf8db05f875204a9178f36b07a1e4d3a09a39f762e2e","impliedFormat":1},{"version":"2878f694f7d3a13a88a5e511da7ac084491ca0ddde9539e5dad76737ead9a5a9","impliedFormat":1},{"version":"d21c5f692d23afa03113393088bcb1ef90a69272a774950a9f69c58131ac5b7e","impliedFormat":1},{"version":"0915ce92bb54e905387b7907e98982620cb7143f7b44291974fb2e592602fe00","impliedFormat":1},{"version":"9dfb317a36a813f4356dc1488e26a36d95e3ac7f38a05fbf9dda97cfd13ef6ea","impliedFormat":1},{"version":"7c0a4d3819fb911cdb5a6759c0195c72b0c54094451949ebaa89ffceadd129ca","impliedFormat":1},{"version":"4733c832fb758f546a4246bc62f2e9d68880eb8abf0f08c6bec484decb774dc9","impliedFormat":1},{"version":"58d91c410f31f4dd6fa8d50ad10b4ae9a8d1789306e73a5fbe8abea6a593099b","impliedFormat":1},{"version":"3aea7345c25f1060791fc83a6466b889924db87389e5c344fa0c27b75257ebe4","impliedFormat":1},{"version":"a8289d1d525cf4a3a2d5a8db6b8e14e19f43d122cc47f8fb6b894b0aa2e2bde6","impliedFormat":1},{"version":"e6804515ba7c8f647e145ecc126138dd9d27d3e6283291d0f50050700066a0ea","impliedFormat":1},{"version":"9420a04edbe321959de3d1aab9fa88b45951a14c22d8a817f75eb4c0a80dba02","impliedFormat":1},{"version":"6927ceeb41bb451f47593de0180c8ff1be7403965d10dc9147ee8d5c91372fff","impliedFormat":1},{"version":"d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","impliedFormat":1},{"version":"f2a392b336e55ccbeb8f8a07865c86857f1a5fc55587c1c7d79e4851b0c75c9a","impliedFormat":1},{"version":"fd53e2a54dae7bb3a9c3b061715fff55a0bb3878472d4a93b2da6f0f62262c9f","impliedFormat":1},{"version":"1f129869a0ee2dcb7ea9a92d6bc8ddf2c2cdaf2d244eec18c3a78efeb5e05c83","impliedFormat":1},{"version":"554962080d3195cae300341a8b472fb0553f354f658344ae181b9aa02d351dbd","impliedFormat":1},{"version":"89cd9ab3944b306e790b148dd0a13ca120daf7379a98729964ea6288a54a1beb","impliedFormat":1},{"version":"28fa41063a242eafcf51e1a62013fccdd9fd5d6760ded6e3ff5ce10a13c2ab31","impliedFormat":1},{"version":"e53a8b6e43f20fa792479f8069c41b1a788a15ffdfd56be1ab8ef46ea01bd43e","impliedFormat":1},{"version":"ada60ff3698e7fd0c7ed0e4d93286ee28aed87f648f6748e668a57308fde5a67","impliedFormat":1},{"version":"f65e0341f11f30b47686efab11e1877b1a42cf9b1a232a61077da2bdeee6d83e","impliedFormat":1},{"version":"e6918b864e3c2f3a7d323f1bb31580412f12ab323f6c3a55fb5dc532c827e26d","impliedFormat":1},{"version":"5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","impliedFormat":1},{"version":"d7735a9ccd17767352ab6e799d76735016209aadd5c038a2fc07a29e7b235f02","impliedFormat":1},{"version":"843e98d09268e2b5b9e6ff60487cf68f4643a72c2e55f7c29b35d1091a4ee4e9","impliedFormat":1},{"version":"ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","impliedFormat":1},{"version":"77ff2aeb024d9e1679c00705067159c1b98ccac8310987a0bdaf0e38a6ca7333","impliedFormat":1},{"version":"8f9effea32088f37d15858a890e1a7ccf9af8d352d47fea174f6b95448072956","impliedFormat":1},{"version":"952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","impliedFormat":1},{"version":"1d953cb875c69aeb1ec8c58298a5226241c6139123b1ff885cedf48ac57b435c","impliedFormat":1},{"version":"1a80e164acd9ee4f3e2a919f9a92bfcdb3412d1fe680b15d60e85eadbaa460f8","impliedFormat":1},{"version":"f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","impliedFormat":1},{"version":"019c29de7d44d84684e65bdabb53ee8cc08f28b150ac0083d00e31a8fe2727d8","impliedFormat":1},{"version":"e35738485bf670f13eab658ea34d27ef2b875f3aae8fc00fb783d29e5737786d","impliedFormat":1},{"version":"bcd951d1a489d00e432c73760ce7f39adb0ef4e6a9c8ffef5dd7f093325a8377","impliedFormat":1},{"version":"672c1ebc4fa15a1c9b4911f1c68de2bc889f4d166a68c5be8f1e61f94014e9d8","impliedFormat":1},{"version":"b0378c1bc3995a1e7b40528dcd81670b2429d8c1dcc1f8d1dc8f76f33d3fc1b8","impliedFormat":1},{"version":"5a0d920468aa4e792285943cadad77bcb312ba2acf1c665e364ada1b1ee56264","impliedFormat":1},{"version":"c27c5144d294ba5e38f0cd483196f911047500a735490f85f318b4d5eb8ac2cc","impliedFormat":1},{"version":"900d1889110107cea3e40b30217c6e66f19db8683964a57afd9a72ecc821fe21","impliedFormat":1},{"version":"a2e4333bf0c330ae26b90c68e395ad0a8af06121f1c977979c75c4a5f9f6bc29","impliedFormat":1},{"version":"08c027d3d6e294b5607341125d1c4689b4fece03bdb9843bd048515fe496a73e","impliedFormat":1},{"version":"2cbf557a03f80df74106cb7cfb38386db82725b720b859e511bdead881171c32","impliedFormat":1},{"version":"918956b37f3870f02f0659d14bba32f7b0e374fd9c06a241db9da7f5214dcd79","impliedFormat":1},{"version":"260e6d25185809efc852e9c002600ad8a85f8062fa24801f30bead41de98c609","impliedFormat":1},{"version":"dd9694eecd70a405490ad23940ccd8979a628f1d26928090a4b05a943ac61714","impliedFormat":1},{"version":"42ca885a3c8ffdffcd9df252582aef9433438cf545a148e3a5e7568ca8575a56","impliedFormat":1},{"version":"309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","impliedFormat":1},{"version":"db436ca96e762259f14cb74d62089c7ca513f2fc725e7dcfbac0716602547898","impliedFormat":1},{"version":"1410d60fe495685e97ed7ca6ff8ac6552b8c609ebe63bd97e51b7afe3c75b563","impliedFormat":1},{"version":"c6843fd4514c67ab4caf76efab7772ceb990fbb1a09085fbcf72b4437a307cf7","impliedFormat":1},{"version":"03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","impliedFormat":1},{"version":"956618754d139c7beb3c97df423347433473163d424ff8248af18851dd7d772a","impliedFormat":1},{"version":"7d8f40a7c4cc81db66ac8eaf88f192996c8a5542c192fdebb7a7f2498c18427d","impliedFormat":1},{"version":"c69ecf92a8a9fb3e4019e6c520260e4074dc6cb0044a71909807b8e7cc05bb65","impliedFormat":1},{"version":"07d0370c85ac112aa6f1715dc88bafcee4bcea1483bc6b372be5191d6c1a15c7","impliedFormat":1},{"version":"7fb0164ebb34ead4b1231eca7b691f072acf357773b6044b26ee5d2874c5f296","impliedFormat":1},{"version":"9e4fc88d0f62afc19fa5e8f8c132883378005c278fdb611a34b0d03f5eb6c20c","impliedFormat":1},{"version":"cc9bf8080004ee3d8d9ef117c8df0077d6a76b13cb3f55fd3eefbb3e8fcd1e63","impliedFormat":1},{"version":"1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","impliedFormat":1},{"version":"b6aa8c6f2f5ebfb17126492623691e045468533ec2cc7bd47303ce48de7ab8aa","impliedFormat":1},{"version":"18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","impliedFormat":1},{"version":"68434152ef6e484df25a9bd0f4c9abdfb0d743f5a39bff2b2dc2a0f94ed5f391","impliedFormat":1},{"version":"b848b40bfeb73dfe2e782c5b7588ef521010a3d595297e69386670cbde6b4d82","impliedFormat":1},{"version":"aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","impliedFormat":1},{"version":"a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","impliedFormat":1},{"version":"18076e7597cd9baa305cd85406551f28e3450683a699b7152ce7373b6b4a1db7","impliedFormat":1},{"version":"1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","impliedFormat":1},{"version":"d2e3a1de4fde9291f9fb3b43672a8975a83e79896466f1af0f50066f78dbf39e","impliedFormat":1},{"version":"d0d03f7d2ba2cf425890e0f35391f1904d0d152c77179ddfc28dfad9d4a09c03","impliedFormat":1},{"version":"e37650b39727a6cf036c45a2b6df055e9c69a0afdd6dbab833ab957eb7f1a389","impliedFormat":1},{"version":"c58d6d730e95e67a62ebd7ba324e04bcde907ef6ba0f41922f403097fe54dd78","impliedFormat":1},{"version":"0f5773d0dd61aff22d2e3223be3b4b9c4a8068568918fb29b3f1ba3885cf701f","impliedFormat":1},{"version":"31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","impliedFormat":1},{"version":"9ce0473b0fbaf7287afb01b6a91bd38f73a31093e59ee86de1fd3f352f3fc817","impliedFormat":1},{"version":"6f0d708924c3c4ee64b0fef8f10ad2b4cb87aa70b015eb758848c1ea02db0ed7","impliedFormat":1},{"version":"6addbb18f70100a2de900bace1c800b8d760421cdd33c1d69ee290b71e28003d","impliedFormat":1},{"version":"37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","impliedFormat":1},{"version":"e0ef70ca30cdc08f55a9511c51a91415e814f53fcc355b14fc8947d32ce9e1aa","impliedFormat":1},{"version":"14be139e0f6d380a3d24aaf9b67972add107bea35cf7f2b1b1febac6553c3ede","impliedFormat":1},{"version":"23195b09849686462875673042a12b7f4cd34b4e27d38e40ca9c408dae8e6656","impliedFormat":1},{"version":"ff1731974600a4dad7ec87770e95fc86ca3d329b1ce200032766340f83585e47","impliedFormat":1},{"version":"91bc53a57079cf32e1a10ccf1a1e4a068e9820aa2fc6abc9af6bd6a52f590ffb","impliedFormat":1},{"version":"8dd284442b56814717e70f11ca22f4ea5b35feeca680f475bfcf8f65ba4ba296","impliedFormat":1},{"version":"a304e0af52f81bd7e6491e890fd480f3dc2cb0541dec3c7bd440dba9fea5c34e","impliedFormat":1},{"version":"c60fd0d7a1ba07631dfae8b757be0bffd5ef329e563f9a213e4a5402351c679f","impliedFormat":1},{"version":"02687b095a01969e6e300d246c9566a62fa87029ce2c7634439af940f3b09334","impliedFormat":1},{"version":"e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","impliedFormat":1},{"version":"ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","impliedFormat":1},{"version":"f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","impliedFormat":1},{"version":"12aeda564ee3f1d96ac759553d6749534fafeb2e5142ea2867f22ed39f9d3260","impliedFormat":1},{"version":"4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","impliedFormat":1},{"version":"85d63aaff358e8390b666a6bc68d3f56985f18764ab05f750cb67910f7bccb1a","impliedFormat":1},{"version":"0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","impliedFormat":1},{"version":"563573a23a61b147358ddee42f88f887817f0de1fc5dbc4be7603d53cbd467ad","impliedFormat":1},{"version":"dd0cad0db617f71019108686cf5caabcad13888b2ae22f889a4c83210e4ba008","impliedFormat":1},{"version":"f08d2151bd91cdaa152532d51af04e29201cfc5d1ea40f8f7cfca0eb4f0b7cf3","impliedFormat":1},{"version":"b9c889d8a4595d02ebb3d3a72a335900b2fe9e5b5c54965da404379002b4ac44","impliedFormat":1},{"version":"a3cd30ebae3d0217b6b3204245719fc2c2f29d03b626905cac7127e1fb70e79c","impliedFormat":1},{"version":"bd56c2399a7eadccfca7398ca2244830911bdbb95b8ab7076e5a9210e9754696","impliedFormat":1},{"version":"f52fb387ac45e7b8cdc98209714c4aedc78d59a70f92e9b5041309b6b53fc880","impliedFormat":1},{"version":"1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","impliedFormat":1},{"version":"5faa3d4b828440882a089a3f8514f13067957f6e5e06ec21ddd0bc2395df1c33","impliedFormat":1},{"version":"f0f95d40b0b5a485b3b97bd99931230e7bf3cbbe1c692bd4d65c69d0cdd6fa9d","impliedFormat":1},{"version":"380b4fe5dac74984ac6a58a116f7726bede1bdca7cec5362034c0b12971ac9c1","impliedFormat":1},{"version":"00de72aa7abede86b016f0b3bfbf767a08b5cff060991b0722d78b594a4c2105","impliedFormat":1},{"version":"965759788855797f61506f53e05c613afb95b16002c60a6f8653650317870bc3","impliedFormat":1},{"version":"f70a315e029dacf595f025d13fa7599e8585d5ccfc44dd386db2aa6596aaf553","impliedFormat":1},{"version":"f385a078ad649cc24f8c31e4f2e56a5c91445a07f25fbdc4a0a339c964b55679","impliedFormat":1},{"version":"08599363ef46d2c59043a8aeec3d5e0d87e32e606c7b1acf397e43f8acadc96a","impliedFormat":1},{"version":"4f5bbef956920cfd90f2cbffccb3c34f8dfc64faaba368d9d41a46925511b6b0","impliedFormat":1},{"version":"0ae9d5bbf4239616d06c50e49fc21512278171c1257a1503028fc4a95ada3ed0","impliedFormat":1},{"version":"cba49e77f6c1737f7a3ce9a50b484d21980665fff93c1c64e0ee0b5086ea460a","impliedFormat":1},{"version":"9c686df0769cca468ebf018749df4330d5ff9414e0d226c1956ebaf45c85ff61","impliedFormat":1},{"version":"89d5970d28f207d30938563e567e67395aa8c1789c43029fe03fe1d07893c74c","impliedFormat":1},{"version":"869e789f7a8abcc769f08ba70b96df561e813a4001b184d3feb8c3d13b095261","impliedFormat":1},{"version":"392f3eb64f9c0f761eb7a391d9fbef26ffa270351d451d11bd70255664170acc","impliedFormat":1},{"version":"f829212a0e8e4fd1b079645d4e97e6ec73734dd21aae4dfc921d2958774721d0","impliedFormat":1},{"version":"5e20af039b2e87736fd7c9e4b47bf143c46918856e78ce21da02a91c25d817e8","impliedFormat":1},{"version":"f321514602994ba6e0ab622ef52debd4e9f64a7b4494c03ee017083dc1965753","impliedFormat":1},{"version":"cc8734156129aa6230a71987d94bdfac723045459da707b1804ecec321e60937","impliedFormat":1},{"version":"bb89466514349b86260efdee9850e497d874e4098334e9b06a146f1e305fca3f","impliedFormat":1},{"version":"fc0ee9d0476dec3d1b37a0f968e371a3d23aac41742bc6706886e1c6ac486749","impliedFormat":1},{"version":"f7da03d84ce7121bc17adca0af1055021b834e861326462a90dbf6154cf1e106","impliedFormat":1},{"version":"fed8c2c205f973bfb03ef3588750f60c1f20e2362591c30cd2c850213115163b","impliedFormat":1},{"version":"32a2b99a3aacda16747447cc9589e33c363a925d221298273912ecf93155e184","impliedFormat":1},{"version":"07bfa278367913dd253117ec68c31205825b2626e1cb4c158f2112e995923ee8","impliedFormat":1},{"version":"6a76e6141ff2fe28e88e63e0d06de686f31184ab68b04ae16f0f92103295cc2a","impliedFormat":1},{"version":"f05d5d16d85abe57eb713bc12efefc00675c09016e3292360e2de0790f51fa48","impliedFormat":1},{"version":"2e3ceed776a470729c084f3a941101d681dd1867babbaf6e1ca055d738dd3878","impliedFormat":1},{"version":"3d9fb85cc7089ca54873c9924ff47fcf05d570f3f8a3a2349906d6d953fa2ccf","impliedFormat":1},{"version":"d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","impliedFormat":1},{"version":"6b5b31af3f5cfcf5635310328f0a3a94f612902024e75dc484eb79123f5b8ebe","impliedFormat":1},{"version":"db08c1807e3ae065930d88a3449d926273816d019e6c2a534e82da14e796686d","impliedFormat":1},{"version":"9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","impliedFormat":1},{"version":"ef83477cca76be1c2d0539408c32b0a2118abcd25c9004f197421155a4649c37","impliedFormat":1},{"version":"2c3936b0f811f38ab1a4f0311993bf599c27c2da5750e76aa5dfbed8193c9922","impliedFormat":1},{"version":"c253c7ea2877126b1c3311dc70b7664fe4d696cb09215857b9d7ea8b7fdce1f0","impliedFormat":1},{"version":"cbb45afef9f2e643592d99a4a514fbe1aaf05a871a00ea8e053f938b76deeeb9","impliedFormat":1},{"version":"5728fd6e79e51c877314783a38af0316f6da7ddc662f090ca816b9aa0199720d","impliedFormat":99},{"version":"be259b14cf9e077928df2678cf27f6a1c3d9bd89dd664abf31f57002dd80b48c","impliedFormat":99},{"version":"45b0d5907697302ba15732cef288fe89920c863deeb41c1ccfe2ae99bceb2030","impliedFormat":99},{"version":"7ee5912963e05b879f80679c32a9710de03db41e34b10cdeb1066ecf57e86a24","impliedFormat":99},{"version":"a15564d022a3d0a4e079b5506bfcafa6d8d577f9bd37ba589797b01c67fd8d3d","impliedFormat":99},{"version":"884e97c78da7ba093dd7edd4156b21067354ead690904cc41cd8dd251559e268","impliedFormat":99},{"version":"38d4a43a04160bb7a0b9a203657963fde13b4d902f4e0d67f54cffb3428fbe55","impliedFormat":99},{"version":"e219de133a0de518ba1bf988c09dc5568d09ade39c9927f5fe6d36475a347b1b","impliedFormat":99},{"version":"3c7f17fb6c30693862a851a1aa92462e87cd0cbabc55f90500314b1111157d44","impliedFormat":99},{"version":"45386b3fc1e52b6a0e21ed80abc5bf1e3471f73daac2b5129d9cd0297e17038f","impliedFormat":99},{"version":"07b5bcbc76ad2b0860d8bfd3cd611caff3d2bee33bb9d77b318a2fd7762b4c70","impliedFormat":99},{"version":"1fa77c05173a153c2835532231ecf35cf83e5672ace0b8bd715a9f2ffb06d0d1","impliedFormat":99},{"version":"cee2d5909e51a1d15e8e324aa81991908f6c44e4627614831d8b180d7a47ba6e","impliedFormat":99},{"version":"433572542067a37a8a4869ad459e3c1302b93ad05a16c848de14f7222331567c","impliedFormat":99},{"version":"1fd5f71ff66d68586eea7008ef95c960a1918c87d7b2045b47a81633c1ad2fd6","impliedFormat":99},{"version":"649274c075ed249ae5dcb5842f9e1cd786bef7509cfa2386f4e0768806b96a39","impliedFormat":99},{"version":"cd926526d4b60fd0c8c475009976edabab0cb64a470ad6c78c129cdd01bf7f85","impliedFormat":99},{"version":"48ad21b98d824924ed5008b49c1be64fe2b967f602d19ebb753bef8c3780e7c8","impliedFormat":99},{"version":"0a43aca98aad501cc3b68ffe853f8ec9f7e5a3e6392c6aabc5a4448a53664ae3","impliedFormat":99},{"version":"ea6dcfc7c7e019afd9d2b2c6e3db473814c9d4c13b082c29dc70d463ee19d263","impliedFormat":99},{"version":"f11808ec12caa1b349b89b417675436ae871d1019fa37f5d53f6b40a36d16140","impliedFormat":99},{"version":"38086ecbd7d8b42aa9c400a7313ee32478cbf83930cff9fd71c7b3c0b45337c8","impliedFormat":99},{"version":"aa32a9aa562b2ab14d19c633b5716eabfee36d458c09e0570a89d7e3cc150d98","impliedFormat":99},{"version":"77cd24db9cf8a62025d1a484bd765930766b3065b842abaec236f3b4daca3d7e","impliedFormat":99},{"version":"cf69f6e028cf76b6d89bd829cae69684781e8e5214493ac5913e3f3f7ae79b45","impliedFormat":99},{"version":"2e697ee7018c5e365ea13d59a4a6229f0dfd7a08658ed86444519c710ed1867b","impliedFormat":99},{"version":"a9d1978c99ab97487a47f7ffa2080cf8cf6a49b3c0d3a737a9a4828fb4efbcf0","impliedFormat":99},{"version":"ddb52b2278908c52e1a3719a777c65c984e7cecc0aafb5127b0509482d83415d","impliedFormat":99},{"version":"cfdc57622b3ff85131b092faaea9b0c44c04af5e15fa5e8337cab9c6550f179c","impliedFormat":99},{"version":"d3814d8c2a0f8508212f21b1358e855ee26ff97edb5e754f800860a063cb84b3","impliedFormat":99},{"version":"c61e8c6301656fd211b94d8415761ee571fcafc0c2c64e0a8342152dddcfd9e4","impliedFormat":99},{"version":"9244a297746cf93165d7a20ee1b6d45f8325a2e66be5cfdfa444152537b04629","impliedFormat":99},{"version":"d12cb580ac7d477e2f425a235f844932fd012df67af35fc2cf200902cb3ffe23","affectsGlobalScope":true,"impliedFormat":99},{"version":"5ffcbc128c130b85b470bd43775343ef933ecf3c218453a81406234575150514","impliedFormat":99},{"version":"c12a1d007cfeb5d1f7bb9be5d1cfca0465c0bcb0aaaeec21a6bb5931df0bb22e","impliedFormat":99},{"version":"3e915cb6b48895ce1f56f4ef604614ef42ce7343c9940f94b0c4233daf205be9","impliedFormat":99},{"version":"780490efa75873db0413161f04b21086e710ca078fff612c5accd36e219923f5","impliedFormat":99},{"version":"f2aa39d72d60e1365288dfc5ccacf617f34b4c73ffe72ba95987af64ef325e0d","impliedFormat":99},{"version":"ff21d7b121ff976f1d1df1ab826f45074f181c3647962468cc91a15df73c3c5f","impliedFormat":99},{"version":"69c1c41eb647bc6d96613842c8c44a32f24de6a666ffcbc29825abe75750e215","impliedFormat":99},{"version":"2e99dc057e85932567b9c9e6c3d85368b9d10b8323585b38ad999e4831503f7a","impliedFormat":99},{"version":"53a32b9d1f2e30fdb78caa36359012f4d71671a8d13ff0f41e366989b1390851","impliedFormat":99},{"version":"a83842e55aa693346223fbad83025ca1a96ad299cd2d99c6f8cbe1bbb43d0f6b","impliedFormat":99},{"version":"9bb2f87e5761a78ace5acbb6a3dc2868e6aa255b87c756eef5e1055d5020005d","impliedFormat":99},{"version":"caa4b501c02169fb11cb14e66daed15fbbf93d1b0ece49355c0fa5ee059cb00a","impliedFormat":99},{"version":"a7da7c9d62ba0bdee35fce527e0ffc47bbde6cb02641bf5b988745e74c0c524b","impliedFormat":99},{"version":"f950869045e185dd8931084f9e3e04d54e14da57bf9c24f56764254efb66cc0c","impliedFormat":99},{"version":"9622047bc160675f47315a7557f054be17db685a2b438b602ecb54e858020101","impliedFormat":99},{"version":"db634fed69cb5945ff278b74f924402f31765457314a92d74b1d89b03bdd71d9","impliedFormat":99},{"version":"1cd7b247e6aa008ca65bd993965b78fcd60002c78f5cc59b7a7ff392b3c99232","impliedFormat":99},{"version":"cdc2628782aaade9b52e37235d6b20dd94d5af46be9cb8ce58df1d768449324a","impliedFormat":99},{"version":"ac02e85a08b167580def8420be3c3a94a51819c86707122c04f856aacec7e695","impliedFormat":99},{"version":"73b4ac5774f4246cf52b793a1adef5d2c8b78d1a279a30e8f4762d3ac9b04212","impliedFormat":99},{"version":"e2bc9a92cc828313ea9257ed451dba0ba420d9b1ce9a17e18034e767096b7bfd","impliedFormat":99},{"version":"3cc2cabf81cfd7d19aa21e6536586c45f565ba1e1347064a69cc91626a860c5d","impliedFormat":99},{"version":"9ba32f24fced76cbfbb777b72aa83e1a6083e741c140b931f4869810ce68c0ad","impliedFormat":99},{"version":"e24208a8ee0e3c0b59e34c09904fb57193d18ad1a8813b80c5a63d04258d31bb","impliedFormat":99},{"version":"53032dfdd2f0c3aad0ce496b0135e3970c34bee6890f8deb690d6825bd25bd3b","impliedFormat":99},{"version":"046f5d0d4fa45918993654890846e3d2f0844d0be13352655e8b81e9e4184b65","impliedFormat":99},{"version":"7d6dcd61e1e9d8e2ec9144fd094bdb14e5eca58b75bcff9ef3a5046243e64e69","impliedFormat":99},{"version":"cb119dc473a356d23dcef845678812c4b0457fbe377b09a8ceeff846d1a76858","impliedFormat":99},{"version":"e304fcc5bc993dcc2832e48fde14e99f697b69af80e7ba1254ff965f8ae8c332","impliedFormat":99},{"version":"0c8f8cd33fd6c2d648eb8260839dfdc501b92f2bc1e5d4d5b4e339f7dd1ece46","impliedFormat":99},{"version":"137a50fdf0be6e2de88244fcdbcdf35c30cad99e3796024d5468ea63553e45a3","impliedFormat":99},{"version":"12cadc00418dfca9ede9e53205a3ab00fa40cc253f70fcb0301cb27b80f81209","impliedFormat":99},{"version":"de88074e07404ad720eb38eaa7644a25093eeb29d8b98ecc0d7554be5aed9c21","impliedFormat":99},{"version":"a9f1a2f79ebb501190ee75213f8b8c17591f55b72cadbcd0d63e2e5daeb88911","impliedFormat":99},{"version":"4184759955c1f04e771c8546e722316736b29e06fb3e647c5026266840bd6ffc","impliedFormat":99},{"version":"17b4e68801438fddc1783bc80ef03090888a488c223a22caf05679861a9345b5","impliedFormat":99},{"version":"86dc5cf25320710ca82bff5ee0a375f5eb74cc5995d3a68e5fefaa2f347e8117","impliedFormat":99},{"version":"355a864ebb559300f17fbc220a051c887375396d50259c39a68cdec82cc8954c","impliedFormat":99},{"version":"da074d4a2166c37c44b1b52d275fc0cb6101738491145c75e3305589d46a4892","impliedFormat":99},{"version":"700d4c2b2a3ec657efba7a507b43b996d0a8ce4689808e8a124b5357f0a76f54","impliedFormat":99},{"version":"506ed0b7bfee9f36df14bf0927724add5d4d53c2a1a2c8a0e9b94ff6a0a8182b","impliedFormat":99},{"version":"c077e69d516b867b02447167cec3902e4566578d7a8d37b18c2adead8e9e12fe","impliedFormat":99},{"version":"11b310d74d3f4d240591169e5b07714a26474170f347635255b2f6a3aed6344e","impliedFormat":99},{"version":"c7a8be0521db7d6bc27c345c666c58bc910ac8c7a1722afd1aa461e93cae18f6","impliedFormat":99},{"version":"2a28eb4e1c79eb7a9e1ba3fd75bd8a23c70422b9a797f3579e982bacbdd746ab","impliedFormat":99},{"version":"b0600dcb79ad6f2f22bdb10f491cee23cb1197e6512c4cae8f806a8440689451","impliedFormat":99},{"version":"d16f37ef1003f2f643212bb0191a367dde22abf7164b5961e46bde136969efd4","impliedFormat":99},{"version":"7dd2220a4b2214184fb52103a6ed768a45f39aafc1022499aa04393d9868a984","impliedFormat":99},{"version":"26510cb5175f720cabc724c554ff268b8834a000356d4d169c7bb2556e731daa","impliedFormat":99},{"version":"dc58f8b879434dcc694a9a1a0bfeca0a5264b045985ab818d1fa443435b0af9f","impliedFormat":99},{"version":"1492aae878fbcc34b89c8bb84b217f1db961e3570d39769bbf5e1e075261b8a1","impliedFormat":99},{"version":"d0c21e06623be139fe8848d6e6bd2c0c4a463400131b8cd4ba37c6dbc36edf8d","impliedFormat":99}],"root":[[47,58],288,[445,448],[472,474],[477,489],[495,517],[519,529],[540,561],[563,570],754,756,757,[759,765],[767,786],[814,834],[838,842],845,[849,859],[863,865],[880,889],[907,921],[936,938],[975,984],[986,995],[999,1014],1016,[1021,1027],[1031,1052],[1056,1065],1185,1186,1198,1199,[1201,1207],[1211,1213],[1262,1314],1316,1317,[1324,1350],1352,[1357,1406],1435,[1453,1470],[1475,1484],[1491,1494],[1497,1591],[1593,1595],[1763,1767],[1769,1846]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":false,"composite":false,"declaration":true,"declarationMap":false,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"experimentalDecorators":true,"module":199,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"noImplicitOverride":false,"noImplicitReturns":false,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":false,"outDir":"./dist","rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":false,"strictFunctionTypes":false,"strictNullChecks":false,"target":7,"verbatimModuleSyntax":false},"referencedMap":[[562,1],[1434,2],[1433,1],[836,3],[835,1],[956,4],[79,5],[963,4],[86,5],[955,6],[954,1],[953,7],[940,1],[939,1],[951,8],[952,7],[944,7],[947,7],[950,9],[948,1],[945,10],[949,1],[946,1],[78,11],[77,1],[76,12],[63,1],[62,1],[74,13],[75,12],[67,12],[70,12],[73,14],[71,1],[68,15],[72,1],[69,1],[962,16],[85,17],[966,4],[89,5],[957,1],[958,1],[959,1],[960,1],[961,18],[80,1],[81,1],[82,1],[83,1],[84,19],[964,4],[87,5],[965,4],[88,5],[968,4],[91,5],[971,20],[94,21],[967,4],[90,5],[969,4],[92,5],[970,4],[93,5],[943,22],[941,23],[942,1],[66,24],[64,23],[65,1],[1495,25],[1496,26],[1485,1],[1489,27],[1490,28],[1488,29],[1487,30],[1486,31],[681,32],[682,33],[683,32],[684,32],[685,32],[686,32],[687,32],[688,33],[689,32],[696,34],[690,32],[691,32],[692,33],[693,32],[694,32],[695,32],[697,35],[680,36],[575,37],[577,38],[576,1],[664,39],[662,1],[660,1],[665,40],[663,41],[661,1],[671,42],[667,43],[673,44],[670,45],[669,46],[572,47],[672,48],[666,49],[659,50],[674,51],[676,52],[675,46],[578,32],[579,32],[580,32],[581,32],[582,32],[583,53],[584,33],[587,32],[588,32],[589,54],[590,33],[591,32],[592,32],[593,32],[594,32],[595,32],[596,32],[597,32],[598,32],[599,55],[600,32],[601,32],[603,56],[606,56],[605,56],[602,32],[607,56],[604,56],[608,32],[609,32],[610,33],[611,33],[612,32],[614,32],[615,32],[616,32],[617,32],[618,32],[619,57],[585,33],[620,32],[621,32],[622,32],[623,58],[624,32],[625,32],[626,32],[613,32],[627,32],[628,33],[629,32],[655,32],[656,32],[657,32],[631,59],[632,33],[633,33],[634,32],[635,32],[636,32],[637,32],[638,32],[639,32],[640,33],[641,33],[642,60],[643,32],[644,59],[646,33],[645,33],[647,33],[648,33],[586,33],[649,32],[650,32],[651,32],[652,32],[653,33],[654,33],[630,1],[571,32],[658,61],[573,1],[574,62],[668,63],[679,64],[678,65],[677,66],[698,33],[699,32],[700,33],[701,32],[702,32],[703,32],[704,32],[705,33],[706,33],[707,32],[708,32],[709,33],[710,32],[711,32],[712,32],[713,67],[714,68],[717,69],[718,70],[715,33],[719,71],[720,32],[721,72],[722,32],[723,73],[724,74],[716,75],[725,76],[726,32],[727,32],[728,32],[729,33],[730,77],[731,78],[732,79],[735,80],[734,81],[736,32],[738,32],[737,81],[739,82],[740,83],[741,79],[742,84],[743,85],[750,86],[745,86],[746,86],[747,87],[749,86],[748,88],[744,82],[733,89],[751,90],[752,91],[1421,1],[538,92],[537,93],[997,93],[534,94],[539,95],[848,96],[535,1],[846,97],[847,1],[530,1],[338,98],[339,98],[340,99],[294,100],[341,101],[342,102],[343,103],[289,1],[292,104],[290,1],[291,1],[344,105],[345,106],[346,107],[347,108],[348,109],[349,110],[350,110],[351,111],[352,112],[353,113],[354,114],[295,1],[293,1],[355,115],[356,116],[357,117],[389,118],[358,119],[359,120],[360,121],[361,122],[362,123],[363,124],[364,125],[365,126],[366,127],[367,128],[368,128],[369,129],[370,1],[371,130],[373,131],[372,132],[374,133],[375,134],[376,135],[377,136],[378,137],[379,138],[380,139],[381,140],[382,141],[383,142],[384,143],[385,144],[386,145],[296,1],[297,1],[298,1],[337,146],[387,147],[388,148],[1473,1],[532,1],[533,1],[1471,1],[1474,149],[531,150],[536,151],[1208,1],[996,152],[837,1],[1259,153],[1261,154],[1260,153],[1258,155],[1215,1],[1217,156],[1216,157],[1221,158],[1256,159],[1253,160],[1255,161],[1218,160],[1219,162],[1223,162],[1222,163],[1220,164],[1254,165],[1252,160],[1257,166],[1250,1],[1251,1],[1224,167],[1229,160],[1231,160],[1226,160],[1227,167],[1233,160],[1234,168],[1225,160],[1230,160],[1232,160],[1228,160],[1248,169],[1247,160],[1249,170],[1243,160],[1245,160],[1244,160],[1240,160],[1246,171],[1241,160],[1242,172],[1235,160],[1236,160],[1237,160],[1238,160],[1239,160],[475,1],[1762,173],[1760,174],[1731,175],[1621,176],[1727,1],[1694,177],[1664,178],[1650,179],[1728,1],[1675,1],[1685,1],[1704,180],[1598,1],[1735,181],[1737,182],[1736,183],[1687,184],[1686,185],[1689,186],[1688,187],[1648,1],[1738,188],[1742,189],[1740,190],[1602,191],[1603,191],[1604,1],[1651,192],[1701,193],[1700,1],[1713,194],[1638,195],[1707,1],[1696,1],[1755,196],[1757,1],[1624,197],[1623,198],[1716,199],[1719,200],[1608,201],[1720,202],[1634,203],[1605,204],[1610,205],[1733,206],[1670,207],[1754,176],[1726,208],[1725,209],[1612,210],[1613,1],[1637,211],[1628,212],[1629,213],[1636,214],[1627,215],[1626,216],[1635,217],[1677,1],[1614,1],[1620,1],[1615,1],[1616,218],[1618,219],[1609,1],[1668,1],[1722,220],[1669,206],[1699,1],[1691,1],[1706,221],[1705,222],[1739,190],[1743,223],[1741,224],[1601,225],[1756,1],[1693,197],[1625,226],[1711,227],[1710,1],[1665,228],[1653,229],[1654,1],[1633,230],[1697,231],[1698,231],[1640,232],[1641,1],[1649,1],[1617,233],[1599,1],[1667,234],[1631,1],[1606,1],[1622,176],[1715,235],[1758,236],[1659,237],[1671,238],[1744,183],[1746,239],[1745,239],[1662,240],[1663,241],[1632,1],[1596,1],[1674,1],[1673,242],[1718,202],[1714,1],[1752,242],[1656,243],[1639,244],[1655,243],[1657,245],[1660,242],[1607,199],[1709,1],[1750,246],[1729,247],[1683,248],[1682,1],[1678,249],[1703,250],[1679,249],[1681,251],[1680,252],[1702,207],[1732,253],[1730,254],[1652,255],[1630,1],[1658,256],[1747,190],[1749,223],[1748,224],[1751,257],[1721,258],[1712,1],[1753,259],[1695,260],[1690,1],[1708,261],[1661,262],[1692,263],[1645,1],[1676,1],[1619,242],[1759,1],[1723,264],[1724,1],[1597,1],[1672,242],[1600,1],[1666,265],[1611,1],[1644,1],[1642,1],[1643,1],[1684,1],[1734,242],[1647,242],[1717,176],[1646,266],[299,1],[61,267],[59,1],[60,268],[1761,1],[1028,1],[287,1],[844,269],[843,1],[1472,1],[466,1],[1209,270],[1447,1],[1437,1],[1449,271],[1438,272],[1436,273],[1445,274],[1448,275],[1440,276],[1441,277],[1439,278],[1442,279],[1443,280],[1444,279],[1446,1],[1407,1],[1409,281],[1408,281],[1410,282],[1413,1],[1420,283],[1414,284],[1412,285],[1411,286],[1418,287],[1415,288],[1416,288],[1417,289],[1419,290],[490,1],[449,1],[1214,1],[933,291],[934,292],[932,293],[935,294],[929,295],[930,296],[931,297],[401,298],[402,299],[400,300],[403,301],[397,302],[398,303],[399,304],[925,295],[926,295],[928,305],[927,295],[393,302],[394,302],[396,306],[395,302],[998,307],[974,308],[972,309],[973,310],[286,311],[284,312],[285,313],[451,314],[468,315],[470,316],[469,317],[452,318],[467,319],[464,320],[465,321],[463,322],[456,323],[457,324],[459,325],[460,326],[458,327],[461,328],[471,329],[462,330],[454,331],[450,332],[455,333],[453,314],[1210,334],[861,335],[860,1],[862,336],[923,1],[391,1],[922,337],[390,337],[518,1],[1029,338],[494,339],[492,340],[493,341],[491,1],[924,342],[392,343],[1015,1],[755,1],[753,344],[283,345],[256,1],[234,346],[232,346],[147,347],[98,348],[97,349],[233,350],[218,351],[140,352],[96,353],[95,354],[282,349],[247,355],[246,355],[158,356],[254,347],[255,347],[257,357],[258,347],[259,354],[260,347],[231,347],[261,347],[262,358],[263,347],[264,355],[265,359],[266,347],[267,347],[268,347],[269,347],[270,355],[271,347],[272,347],[273,347],[274,347],[275,360],[276,347],[277,347],[278,347],[279,347],[280,347],[100,354],[101,354],[102,354],[103,354],[104,354],[105,354],[106,354],[107,347],[109,361],[110,354],[108,354],[111,354],[112,354],[113,354],[114,354],[115,354],[116,354],[117,347],[118,354],[119,354],[120,354],[121,354],[122,354],[123,347],[124,354],[125,354],[126,354],[127,354],[128,354],[129,354],[130,347],[132,362],[131,354],[133,354],[134,354],[135,354],[136,354],[137,360],[138,347],[139,347],[153,363],[141,364],[142,354],[143,354],[144,347],[145,354],[146,354],[148,365],[149,354],[150,354],[151,354],[152,354],[154,354],[155,354],[156,354],[157,354],[159,366],[160,354],[161,354],[162,354],[163,347],[164,354],[165,367],[166,367],[167,367],[168,347],[169,354],[170,354],[171,354],[176,354],[172,354],[173,347],[174,354],[175,347],[177,354],[178,354],[179,354],[180,354],[181,354],[182,354],[183,347],[184,354],[185,354],[186,354],[187,354],[188,354],[189,354],[190,354],[191,354],[192,354],[193,354],[194,354],[195,354],[196,354],[197,354],[198,354],[199,354],[200,368],[201,354],[202,354],[203,354],[204,354],[205,354],[206,354],[207,347],[208,347],[209,347],[210,347],[211,347],[212,354],[213,354],[214,354],[215,354],[281,347],[217,369],[240,370],[235,370],[226,371],[224,372],[238,373],[227,374],[241,375],[236,376],[237,373],[239,377],[225,1],[230,1],[222,378],[223,379],[220,1],[221,380],[219,354],[228,381],[99,382],[248,1],[249,1],[250,1],[251,1],[252,1],[253,1],[242,1],[245,355],[244,1],[243,383],[216,384],[229,385],[796,1],[807,386],[790,387],[808,386],[809,388],[810,388],[795,1],[797,387],[798,387],[799,389],[800,390],[801,391],[802,391],[787,1],[803,391],[793,392],[804,387],[788,387],[805,391],[791,388],[792,393],[789,390],[811,394],[813,395],[794,396],[812,397],[806,398],[1426,399],[1425,400],[1427,401],[1452,402],[1451,403],[1450,404],[1422,405],[1429,406],[1424,407],[1432,408],[1431,409],[1428,410],[1430,411],[1423,2],[1180,412],[1181,412],[1183,413],[1182,412],[1179,1],[315,414],[325,415],[314,414],[335,416],[306,417],[305,418],[334,419],[328,420],[333,421],[308,422],[322,423],[307,424],[331,425],[303,426],[302,419],[332,427],[304,428],[309,429],[310,1],[313,429],[300,1],[336,430],[326,431],[317,432],[318,433],[320,434],[316,435],[319,436],[329,419],[311,437],[312,438],[321,439],[301,23],[324,431],[323,429],[327,1],[330,440],[906,441],[891,1],[892,1],[893,1],[894,1],[890,1],[895,442],[896,1],[898,443],[897,442],[899,442],[900,443],[901,442],[902,1],[903,442],[904,1],[905,1],[437,444],[435,445],[406,1],[424,446],[436,447],[405,448],[444,449],[407,1],[434,450],[411,451],[429,452],[426,453],[409,454],[421,455],[412,456],[425,457],[422,458],[408,459],[428,460],[430,461],[431,462],[432,462],[433,463],[438,1],[404,1],[439,462],[440,464],[423,465],[414,466],[415,466],[416,466],[427,467],[413,468],[441,469],[442,470],[417,1],[410,471],[418,472],[419,473],[420,474],[443,458],[879,475],[869,476],[871,477],[878,478],[873,1],[874,1],[872,479],[875,480],[866,1],[867,1],[868,475],[870,481],[876,1],[877,482],[288,483],[445,484],[54,485],[446,486],[447,487],[448,1],[502,1],[503,1],[504,1],[505,1],[506,1],[508,1],[509,1],[510,1],[511,1],[512,1],[507,1],[513,1],[514,1],[515,1],[516,1],[517,1],[472,488],[485,489],[486,490],[484,491],[487,489],[56,492],[500,493],[501,494],[499,495],[519,496],[520,497],[528,498],[527,499],[529,500],[557,501],[558,1],[559,1],[560,1],[561,1],[563,502],[564,1],[565,1],[566,1],[567,1],[838,503],[839,504],[570,505],[754,506],[757,507],[761,508],[764,509],[569,510],[777,511],[779,512],[767,513],[780,514],[776,515],[773,515],[781,516],[783,517],[784,518],[785,519],[786,520],[762,521],[763,522],[815,523],[814,524],[816,525],[782,488],[822,526],[824,527],[770,528],[772,529],[769,528],[771,528],[768,1],[825,530],[820,531],[775,532],[774,515],[826,533],[828,534],[827,488],[823,535],[821,536],[829,1],[830,537],[818,538],[778,539],[831,540],[832,541],[833,542],[760,1],[834,543],[840,544],[841,1],[842,545],[1284,546],[1285,546],[1283,547],[1286,548],[1287,546],[1288,546],[1289,548],[1292,549],[1290,546],[1291,546],[845,550],[1062,551],[1200,552],[1294,553],[1035,554],[1295,555],[1037,556],[1296,557],[1297,558],[1298,559],[1301,560],[1203,561],[1199,562],[984,563],[1302,564],[1303,565],[1304,566],[1205,567],[1060,568],[1048,569],[1328,570],[1057,571],[1059,572],[1058,571],[1049,573],[1050,574],[1056,571],[1051,573],[1052,575],[1198,576],[1185,1],[1305,577],[1186,578],[1061,579],[1306,580],[1206,581],[918,582],[977,583],[1026,584],[1307,564],[1264,585],[1308,586],[1034,587],[1309,588],[1310,589],[1027,590],[1032,591],[919,592],[1023,593],[986,1],[1022,594],[1011,595],[1012,596],[1013,597],[1021,598],[1014,599],[987,1],[1025,600],[1191,601],[1311,1],[917,602],[1202,603],[1313,604],[1314,605],[1184,606],[1324,607],[1033,608],[1326,609],[1204,610],[1063,611],[1334,612],[1331,613],[1329,1],[1336,614],[1337,615],[1330,616],[1332,617],[1335,614],[1333,1],[1016,618],[1064,1],[1192,619],[1065,620],[1266,621],[1338,622],[1343,623],[1339,622],[1342,624],[1341,625],[1340,622],[1344,1],[1277,626],[1278,627],[1017,628],[1279,629],[1178,630],[1177,631],[1265,632],[1019,633],[1201,634],[1131,635],[1149,636],[1151,637],[1152,638],[1143,639],[1148,640],[1133,641],[1153,641],[1174,642],[1145,643],[1144,644],[1171,645],[1169,646],[1167,647],[1166,648],[1165,649],[1162,650],[1168,651],[1160,652],[1164,653],[1161,654],[1163,2],[1055,655],[1157,656],[1156,657],[1154,658],[1081,659],[1086,660],[1071,661],[1078,661],[1079,662],[1077,1],[1075,663],[1070,1],[1080,659],[1066,664],[1099,665],[1082,1],[1101,666],[1105,667],[1083,641],[1093,668],[1097,669],[1096,1],[1094,661],[1095,661],[1076,670],[1069,1],[1067,1],[1068,1],[1074,671],[1085,1],[985,659],[1084,1],[1073,1],[1072,1],[1100,1],[1089,661],[1091,661],[1092,672],[1090,661],[1088,661],[1087,641],[1135,673],[1108,674],[1107,675],[1173,676],[1136,677],[1170,645],[1194,678],[1130,679],[1129,680],[1138,681],[1109,1],[1122,1],[1110,1],[1112,1],[1121,1],[1114,1],[1125,1],[1127,682],[1115,1],[1120,1],[1116,1],[1117,1],[1113,1],[1124,1],[1119,1],[1118,1],[1126,1],[1111,1],[1123,1],[1128,683],[1187,684],[1139,685],[1140,686],[1134,687],[1197,688],[1150,23],[1141,545],[1172,689],[1137,690],[1142,691],[1132,692],[1147,659],[1196,693],[1146,641],[1195,694],[1193,695],[1020,696],[1280,697],[1281,698],[1345,699],[1346,700],[1347,701],[1018,702],[1189,545],[1348,703],[1349,704],[1158,1],[1190,661],[1350,705],[1188,706],[1159,707],[1282,708],[1352,709],[1358,710],[1359,711],[1362,712],[1363,713],[1364,1],[1357,714],[1366,715],[1367,716],[488,713],[1360,1],[1368,717],[1361,718],[1323,719],[1315,720],[1369,1],[1381,721],[1380,722],[521,723],[1370,724],[1385,725],[1375,726],[1386,727],[1376,728],[1372,729],[1384,730],[1299,731],[1300,732],[1382,733],[1377,734],[1383,2],[1374,729],[1371,729],[1373,735],[1378,736],[1379,737],[758,649],[1005,487],[914,738],[546,739],[1387,740],[852,741],[545,742],[1388,743],[765,744],[915,745],[547,746],[1389,1],[916,747],[544,748],[1390,749],[1391,504],[884,750],[1392,751],[1393,751],[913,752],[766,753],[1394,754],[549,755],[888,756],[911,757],[542,758],[548,746],[889,521],[885,759],[886,760],[882,761],[881,762],[541,758],[912,763],[540,758],[857,1],[1397,764],[1396,765],[859,766],[1398,767],[865,768],[863,1],[864,1],[1400,769],[909,770],[1399,771],[1312,772],[1401,766],[858,764],[855,773],[854,774],[853,775],[1395,776],[1402,1],[907,1],[910,777],[908,778],[880,779],[543,746],[1403,780],[1320,504],[849,781],[50,782],[1404,783],[850,622],[49,784],[851,785],[1010,786],[1405,787],[57,788],[1024,659],[1406,1],[1435,789],[1453,790],[1455,791],[1456,791],[1458,792],[1457,793],[1454,1],[982,794],[983,795],[980,794],[979,796],[1459,797],[978,794],[981,796],[1460,1],[1467,798],[1461,544],[1466,799],[1464,800],[1465,801],[1463,802],[1462,803],[1468,2],[1041,804],[1044,805],[1038,806],[1047,807],[1043,808],[1327,809],[1042,810],[1469,811],[1046,812],[1039,813],[1045,814],[1040,1],[1768,815],[1155,816],[1470,817],[1475,818],[58,819],[1476,742],[1482,820],[1481,1],[1483,821],[483,822],[1484,823],[1268,824],[1267,1],[1003,825],[1492,826],[1006,827],[1493,1],[1494,1],[1497,828],[1498,829],[1004,748],[1501,830],[1499,831],[1500,748],[1504,832],[1505,833],[1506,834],[1509,835],[1507,832],[1508,836],[1001,837],[1008,838],[1502,839],[1503,839],[1009,840],[1002,825],[1491,841],[1007,842],[1000,843],[994,844],[999,845],[995,846],[1293,847],[1053,1],[474,844],[478,848],[477,849],[479,842],[53,850],[1054,851],[1104,852],[1354,1],[1103,853],[480,842],[1351,1],[481,854],[1355,855],[1353,856],[52,1],[1510,857],[1102,858],[476,859],[759,860],[1356,861],[1106,862],[1511,863],[921,864],[936,865],[975,866],[938,867],[937,868],[976,869],[920,1],[1512,870],[1522,871],[1518,1],[1520,872],[1523,873],[1519,1],[1521,872],[1514,874],[1513,875],[1515,876],[1516,1],[1526,877],[1527,877],[1525,877],[1524,877],[1528,878],[1517,879],[1480,880],[1529,545],[1530,881],[1532,882],[1531,883],[526,884],[524,885],[756,886],[525,887],[1207,1],[1263,888],[1212,889],[1533,1],[1176,890],[1175,891],[1534,728],[1536,892],[1538,893],[1541,894],[1540,895],[1537,896],[1542,897],[1543,897],[1550,898],[1545,897],[1544,897],[1548,899],[1539,761],[1547,900],[1535,2],[1549,901],[1546,902],[1551,903],[1552,541],[1553,2],[1554,761],[556,711],[1555,903],[1556,904],[1557,904],[1030,905],[1031,906],[1558,649],[1270,907],[1276,908],[1271,909],[1272,909],[1273,909],[1274,909],[1269,577],[1275,909],[1559,2],[1560,649],[1561,910],[1562,2],[1563,649],[1594,911],[1595,911],[1766,912],[1767,913],[1764,911],[1763,914],[1765,915],[1769,916],[1770,521],[1771,911],[1772,911],[1773,917],[1593,918],[1779,919],[1774,920],[1780,921],[1778,922],[1777,919],[1776,919],[1775,919],[1565,923],[1566,924],[554,925],[887,926],[555,927],[1567,928],[1583,929],[1584,930],[1588,931],[1586,932],[1585,929],[1587,930],[1589,933],[1568,934],[1564,935],[1569,936],[1578,937],[553,938],[1579,870],[1580,939],[1571,940],[495,941],[497,1],[489,521],[1577,942],[498,943],[496,1],[1576,944],[1573,945],[1572,946],[1575,947],[1574,948],[1581,949],[1582,950],[551,951],[550,952],[1570,953],[1590,954],[51,2],[1591,955],[1781,956],[1477,957],[1479,958],[1782,959],[1478,960],[988,1],[990,961],[989,962],[993,963],[991,964],[992,965],[1783,1],[1784,1],[1786,2],[1787,966],[1785,967],[1788,2],[1365,2],[1790,968],[1791,968],[1792,969],[1789,970],[482,971],[55,1],[1793,1],[1794,972],[1795,952],[1796,973],[1797,1],[1798,1],[1799,974],[523,975],[473,1],[883,976],[1036,1],[48,977],[1211,978],[817,979],[568,504],[1098,980],[1213,545],[552,659],[819,1],[522,1],[47,1],[1319,981],[1322,982],[1321,983],[1800,984],[1801,985],[1318,986],[1262,987],[1802,1],[856,988],[1803,1],[1804,1],[1806,989],[1807,990],[1830,1],[1811,991],[1809,992],[1810,993],[1813,994],[1814,995],[1815,995],[1816,989],[1818,996],[1819,2],[1812,997],[1325,1],[1808,1],[1817,998],[1820,2],[1821,999],[1822,1000],[1823,1],[1824,649],[1825,997],[1826,989],[1805,1001],[1827,1002],[1828,2],[1317,1003],[1316,952],[1829,1004],[1833,1],[1834,2],[1831,1],[1835,2],[1836,1005],[1837,1],[1838,2],[1839,1],[1832,2],[1840,1],[1841,1],[1592,521],[1842,1006],[1843,967],[1844,2],[1845,2],[1846,1007],[45,1],[46,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1]],"semanticDiagnosticsPerFile":[[50,[{"start":3530,"length":5,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[53,[{"start":18513,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'filter' does not exist in type 'MemoryQuery'."}]],[58,[{"start":337,"length":11,"messageText":"Module '\"./types/agent-types.js\"' has no exported member 'SwarmConfig'.","category":1,"code":2305}]],[472,[{"start":2376,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'outputDir' does not exist in type 'LoggingConfig'."},{"start":2435,"length":19,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."}]],[481,[{"start":12083,"length":17,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[482,[{"start":22181,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleState'.","category":1,"code":2484},{"start":22204,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleTrigger'.","category":1,"code":2484},{"start":22229,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'AgentStateTransition'.","category":1,"code":2484},{"start":22253,"length":24,"messageText":"Export declaration conflicts with exported declaration of 'StateTransitionCondition'.","category":1,"code":2484},{"start":22281,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'StateTransitionAction'.","category":1,"code":2484},{"start":22306,"length":11,"messageText":"Export declaration conflicts with exported declaration of 'RetryPolicy'.","category":1,"code":2484},{"start":22345,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookType'.","category":1,"code":2484},{"start":22366,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHook'.","category":1,"code":2484},{"start":22383,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookContext'.","category":1,"code":2484},{"start":22407,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookResult'.","category":1,"code":2484},{"start":22430,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookHandler'.","category":1,"code":2484},{"start":22454,"length":25,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleHookErrorHandler'.","category":1,"code":2484},{"start":22483,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'HookCondition'.","category":1,"code":2484},{"start":22500,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'HookExecution'.","category":1,"code":2484},{"start":22543,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleRecord'.","category":1,"code":2484},{"start":22567,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'AgentStateHistoryEntry'.","category":1,"code":2484},{"start":22593,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleMetadata'.","category":1,"code":2484},{"start":22619,"length":27,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleConfiguration'.","category":1,"code":2484},{"start":22650,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'AgentResourceUsage'.","category":1,"code":2484},{"start":22672,"length":23,"messageText":"Export declaration conflicts with exported declaration of 'AgentPerformanceMetrics'.","category":1,"code":2484},{"start":22699,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleMetrics'.","category":1,"code":2484},{"start":22745,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleEventType'.","category":1,"code":2484},{"start":22767,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleEvent'.","category":1,"code":2484},{"start":22785,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleEventData'.","category":1,"code":2484},{"start":22807,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'EventSubscription'.","category":1,"code":2484},{"start":22828,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'MessageRouterConfig'.","category":1,"code":2484},{"start":22878,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'ErrorRecoveryStrategy'.","category":1,"code":2484},{"start":22903,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'RecoveryResult'.","category":1,"code":2484},{"start":22921,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'DegradationLevel'.","category":1,"code":2484},{"start":22941,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'DegradationConfig'.","category":1,"code":2484},{"start":22987,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'AgentLifecycleManager'.","category":1,"code":2484},{"start":23012,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleMemoryManager'.","category":1,"code":2484},{"start":23038,"length":29,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleCommunicationManager'.","category":1,"code":2484},{"start":23101,"length":12,"messageText":"Export declaration conflicts with exported declaration of 'HealthStatus'.","category":1,"code":2484},{"start":23117,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'HealthCheckResult'.","category":1,"code":2484},{"start":23171,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'LegacyAgentAdapter'.","category":1,"code":2484},{"start":23193,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'AgentMigrationResult'.","category":1,"code":2484},{"start":23217,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'MigrationResult'.","category":1,"code":2484},{"start":23262,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleSystemConfig'.","category":1,"code":2484},{"start":23287,"length":23,"messageText":"Export declaration conflicts with exported declaration of 'LifecycleManagerFactory'.","category":1,"code":2484}]],[483,[{"start":3675,"length":19,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4225,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'namespace' does not exist in type 'MemoryConfig'."},{"start":19575,"length":4,"code":2322,"category":1,"messageText":"Type '\"dependency\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":20250,"length":4,"code":2322,"category":1,"messageText":"Type '\"dependency-deletion\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":21345,"length":4,"code":2322,"category":1,"messageText":"Type '\"tracker-state\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":21826,"length":6,"code":2339,"category":1,"messageText":"Property 'search' does not exist on type 'MemoryManager'."},{"start":28212,"length":28,"messageText":"This comparison appears to be unintentional because the types 'AgentLifecycleState' and '\"stopped\"' have no overlap.","category":1,"code":2367},{"start":28286,"length":28,"messageText":"This comparison appears to be unintentional because the types 'AgentLifecycleState.REQUESTED | AgentLifecycleState.PROVISIONING | AgentLifecycleState.INITIALIZING | AgentLifecycleState.CONFIGURED | ... 14 more ... | AgentLifecycleState.SCALING' and '\"cleanup\"' have no overlap.","category":1,"code":2367},{"start":33108,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'AgentDependency'.","category":1,"code":2484},{"start":33127,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'DependencyData'.","category":1,"code":2484},{"start":33145,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'DependencyChain'.","category":1,"code":2484},{"start":33164,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'DependencyViolation'.","category":1,"code":2484},{"start":33187,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'CompletionBlockerInfo'.","category":1,"code":2484},{"start":33223,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'DependencyType'.","category":1,"code":2484},{"start":33239,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'DependencyStatus'.","category":1,"code":2484}]],[484,[{"start":12112,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type '{ init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":20483,"length":27,"messageText":"Right operand of ?? is unreachable because the left operand is never nullish.","category":1,"code":2869}]],[485,[{"start":3140,"length":48,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4869,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":35871,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'HierarchicalAgentNode'.","category":1,"code":2484},{"start":35894,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'HierarchicalTask'.","category":1,"code":2484},{"start":35912,"length":29,"messageText":"Export declaration conflicts with exported declaration of 'HierarchicalCoordinatorConfig'.","category":1,"code":2484}]],[486,[{"start":4281,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'outputDir' does not exist in type 'LoggingConfig'."},{"start":4340,"length":28,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":6413,"length":4,"code":2339,"category":1,"messageText":"Property 'role' does not exist on type 'AgentDefinition'."}]],[487,[{"start":2932,"length":40,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4468,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":26142,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'MeshAgentInfo'.","category":1,"code":2484},{"start":26157,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'MeshCoordinationTask'.","category":1,"code":2484},{"start":26179,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'MeshCoordinatorConfig'.","category":1,"code":2484}]],[488,[{"start":5073,"length":2,"messageText":"Cannot assign to 'id' because it is a read-only property.","category":1,"code":2540},{"start":5096,"length":9,"messageText":"Cannot assign to 'timestamp' because it is a read-only property.","category":1,"code":2540},{"start":5126,"length":10,"messageText":"Cannot assign to 'routingKey' because it is a read-only property.","category":1,"code":2540},{"start":5157,"length":8,"messageText":"Cannot assign to 'priority' because it is a read-only property.","category":1,"code":2540},{"start":14422,"length":54,"messageText":"Operator '+=' cannot be applied to types 'SharedArrayBuffer' and 'bigint'.","category":1,"code":2365},{"start":14484,"length":48,"messageText":"Operator '+=' cannot be applied to types 'SharedArrayBuffer' and 'bigint'.","category":1,"code":2365},{"start":14893,"length":32,"messageText":"Operator '-' cannot be applied to types 'bigint' and 'SharedArrayBuffer'.","category":1,"code":2365},{"start":14899,"length":26,"messageText":"The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2363},{"start":14995,"length":30,"messageText":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2362},{"start":14995,"length":44,"messageText":"Operator '*' cannot be applied to types 'SharedArrayBuffer' and 'bigint'.","category":1,"code":2365},{"start":15102,"length":35,"messageText":"Operator '>' cannot be applied to types 'SharedArrayBuffer' and 'bigint'.","category":1,"code":2365},{"start":15155,"length":25,"messageText":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2362},{"start":15183,"length":30,"messageText":"The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2363}]],[495,[{"start":1554,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | { path: string; operation: \"write\"; success: true; duration: number; size: number; error?: undefined; } | { path: string; operation: \"write\"; success: false; duration: number; error: Error; size?: undefined; }' is not assignable to type 'FileOperationResult'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult'.","category":1,"code":2322}]}},{"start":2651,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | { path: string; operation: \"read\"; success: true; duration: number; size: number; data: string; error?: undefined; } | { path: string; operation: \"read\"; success: false; duration: number; error: Error; size?: undefined; data?: undefined; }' is not assignable to type 'FileOperationResult & { data?: string; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult & { data?: string; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult'.","category":1,"code":2322}]}]}},{"start":4171,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | { path: string; operation: \"delete\"; success: true; duration: number; error?: undefined; } | { path: string; operation: \"delete\"; success: false; duration: number; error: Error; }' is not assignable to type 'FileOperationResult'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult'.","category":1,"code":2322}]}},{"start":5944,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | { path: string; operation: \"write\"; success: true; duration: number; size: number; error?: undefined; } | { path: string; operation: \"write\"; success: false; duration: number; error: Error; size?: undefined; }' is not assignable to type 'FileOperationResult'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'FileOperationResult'.","category":1,"code":2322}]}}]],[498,[{"start":3836,"length":7,"code":2345,"category":1,"messageText":"Argument of type 'TaskId' is not assignable to parameter of type 'string'."},{"start":4192,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."},{"start":4311,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."},{"start":5127,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'taskId' does not exist in type 'TaskResult'."},{"start":5847,"length":6,"code":2322,"category":1,"messageText":"Type 'TaskId' is not assignable to type 'string'.","relatedInformation":[{"start":1444,"length":6,"messageText":"The expected type comes from property 'taskId' which is declared here on type '{ taskId: string; duration: number; status: \"failed\" | \"success\"; timestamp: Date; }'","category":3,"code":6500}]},{"start":6618,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'taskId' does not exist in type 'TaskResult'."},{"start":7360,"length":6,"code":2322,"category":1,"messageText":"Type 'TaskId' is not assignable to type 'string'.","relatedInformation":[{"start":1444,"length":6,"messageText":"The expected type comes from property 'taskId' which is declared here on type '{ taskId: string; duration: number; status: \"failed\" | \"success\"; timestamp: Date; }'","category":3,"code":6500}]},{"start":7621,"length":7,"code":2345,"category":1,"messageText":"Argument of type 'TaskId' is not assignable to parameter of type 'string'."},{"start":7652,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'void | TaskResult' is not assignable to type 'TaskResult'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'TaskResult'.","category":1,"code":2322}]}},{"start":7974,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."},{"start":8068,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."},{"start":8199,"length":9,"code":2339,"category":1,"messageText":"Property 'objective' does not exist on type 'TaskDefinition'."},{"start":8923,"length":9,"code":2339,"category":1,"messageText":"Property 'objective' does not exist on type 'TaskDefinition'."},{"start":8956,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'TaskDefinition'."}]],[499,[{"start":12872,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ id: string; type: any; objective: string; constraints: { maxTokens: number; timeout: number; }; metadata: any; }' is not assignable to parameter of type 'TaskDefinition'.","category":1,"code":2345,"next":[{"messageText":"Type '{ id: string; type: any; objective: string; constraints: { maxTokens: number; timeout: number; }; metadata: any; }' is missing the following properties from type 'TaskDefinition': name, description, requirements, priority, and 8 more.","category":1,"code":2740}]}}]],[502,[{"start":134,"length":15,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './ui-designer.js'?","category":1,"code":2835},{"start":186,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './interaction-tester.js'?","category":1,"code":2835},{"start":242,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './state-architect.js'?","category":1,"code":2835}]],[506,[{"start":207,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":260,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-integration-manager.js'?","category":1,"code":2835},{"start":340,"length":37,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-collaboration-manager.js'?","category":1,"code":2835},{"start":420,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-release-coordinator.js'?","category":1,"code":2835},{"start":496,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './compatibility/legacy-agent-proxy.js'?","category":1,"code":2835},{"start":562,"length":26,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/hook-integration.js'?","category":1,"code":2835},{"start":625,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/error-handling.js'?","category":1,"code":2835},{"start":694,"length":31,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/performance-optimizer.js'?","category":1,"code":2835}]],[507,[{"start":182,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-integration-manager.js'?","category":1,"code":2835},{"start":262,"length":37,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-collaboration-manager.js'?","category":1,"code":2835},{"start":342,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './core/github-release-coordinator.js'?","category":1,"code":2835},{"start":574,"length":17,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './agent-factory.js'?","category":1,"code":2835},{"start":657,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './compatibility/legacy-agent-proxy.js'?","category":1,"code":2835},{"start":835,"length":39,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './compatibility/legacy-agent-mappings.js'?","category":1,"code":2835},{"start":969,"length":23,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/github-client.js'?","category":1,"code":2835},{"start":1045,"length":26,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/hook-integration.js'?","category":1,"code":2835},{"start":1128,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/error-handling.js'?","category":1,"code":2835},{"start":1230,"length":31,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './utils/performance-optimizer.js'?","category":1,"code":2835},{"start":1574,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":1986,"length":18,"messageText":"Cannot find name 'GitHubAgentFactory'.","category":1,"code":2304},{"start":2025,"length":21,"messageText":"Cannot find name 'getGitHubAgentFactory'.","category":1,"code":2304},{"start":2868,"length":12,"messageText":"Cannot find name 'GitHubConfig'.","category":1,"code":2304},{"start":2886,"length":17,"messageText":"Cannot find name 'createGitHubAgent'.","category":1,"code":2304},{"start":3034,"length":12,"messageText":"Cannot find name 'GitHubConfig'.","category":1,"code":2304},{"start":3052,"length":17,"messageText":"Cannot find name 'createGitHubAgent'.","category":1,"code":2304},{"start":3196,"length":12,"messageText":"Cannot find name 'GitHubConfig'.","category":1,"code":2304},{"start":3214,"length":17,"messageText":"Cannot find name 'createGitHubAgent'.","category":1,"code":2304},{"start":3334,"length":15,"messageText":"Cannot find name 'LegacyAgentType'.","category":1,"code":2304},{"start":3368,"length":12,"messageText":"Cannot find name 'GitHubConfig'.","category":1,"code":2304},{"start":3390,"length":17,"messageText":"Cannot find name 'createGitHubAgent'.","category":1,"code":2304},{"start":3527,"length":18,"messageText":"No value exists in scope for the shorthand property 'GitHubAgentFactory'. Either declare one or provide an initializer.","category":1,"code":18004}]],[508,[{"start":233,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[509,[{"start":211,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":264,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/github-integration-manager.js'?","category":1,"code":2835},{"start":345,"length":38,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/github-collaboration-manager.js'?","category":1,"code":2835},{"start":426,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/github-release-coordinator.js'?","category":1,"code":2835},{"start":553,"length":25,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './legacy-agent-mappings.js'?","category":1,"code":2835}]],[510,[{"start":259,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":322,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/github-client.js'?","category":1,"code":2835}]],[511,[{"start":253,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":316,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/github-client.js'?","category":1,"code":2835}]],[512,[{"start":271,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":334,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/github-client.js'?","category":1,"code":2835}]],[514,[{"start":156,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[515,[{"start":170,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[516,[{"start":129,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[517,[{"start":161,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[519,[{"start":225,"length":19,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'AuthenticationError'.","category":1,"code":2305},{"start":246,"length":18,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'AuthorizationError'.","category":1,"code":2305}]],[521,[{"start":7385,"length":11,"messageText":"Cannot redeclare exported variable 'ConfigError'.","category":1,"code":2323},{"start":9455,"length":8,"messageText":"Cannot find module 'keytar' or its corresponding type declarations.","category":1,"code":2307},{"start":26434,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":30986,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":43462,"length":11,"messageText":"Cannot redeclare exported variable 'ConfigError'.","category":1,"code":2323},{"start":43462,"length":11,"messageText":"Export declaration conflicts with exported declaration of 'ConfigError'.","category":1,"code":2484},{"start":43475,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":43475,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'ExperienceLevel'.","category":1,"code":2484},{"start":43492,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":43492,"length":12,"messageText":"Export declaration conflicts with exported declaration of 'FeatureFlags'.","category":1,"code":2484},{"start":43506,"length":19,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":43506,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'AutoDetectionResult'.","category":1,"code":2484},{"start":43527,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":43527,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'SecureCredentials'.","category":1,"code":2484}]],[524,[{"start":1094,"length":8,"messageText":"Namespace '\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/better-sqlite3/lib/index\".export=' has no exported member 'Database'.","category":1,"code":2694},{"start":1136,"length":9,"messageText":"Namespace '\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/better-sqlite3/lib/index\".export=' has no exported member 'Statement'.","category":1,"code":2694}]],[529,[{"start":247,"length":10,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'SwarmError'.","category":1,"code":2305},{"start":259,"length":13,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'DatabaseError'.","category":1,"code":2305}]],[540,[{"start":9982,"length":17,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[548,[{"start":3348,"length":23,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[554,[{"start":2365,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'error' does not exist in type 'TaskResult'."},{"start":2795,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'error' does not exist in type 'TaskResult'."}]],[555,[{"start":5575,"length":8,"code":2345,"category":1,"messageText":"Argument of type 'AgentId' is not assignable to parameter of type 'string'."},{"start":6193,"length":8,"code":2345,"category":1,"messageText":"Argument of type 'AgentId' is not assignable to parameter of type 'string'."},{"start":7342,"length":11,"code":2741,"category":1,"messageText":"Property 'resourceLimits' is missing in type '{ minQuality: number; requiredApprovals: undefined[]; allowedFailures: number; recoveryTime: number; milestones: undefined[]; }' but required in type 'SwarmConstraints'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":11801,"length":14,"messageText":"'resourceLimits' is declared here.","category":3,"code":2728},{"file":"../src/swarm/types.ts","start":10826,"length":11,"messageText":"The expected type comes from property 'constraints' which is declared here on type 'SwarmObjective'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ minQuality: number; requiredApprovals: undefined[]; allowedFailures: number; recoveryTime: number; milestones: undefined[]; }' is not assignable to type 'SwarmConstraints'."}},{"start":21600,"length":11,"code":2741,"category":1,"messageText":"Property 'success' is missing in type '{ output: any; artifacts: {}; metadata: {}; quality: number; completeness: number; accuracy: number; executionTime: number; resourcesUsed: {}; validated: false; }' but required in type 'TaskResult'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":8326,"length":7,"messageText":"'success' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ output: any; artifacts: {}; metadata: {}; quality: number; completeness: number; accuracy: number; executionTime: number; resourcesUsed: {}; validated: false; }' is not assignable to type 'TaskResult'."}},{"start":44631,"length":31,"messageText":"This comparison appears to be unintentional because the types 'SwarmMode' and '\"parallel\"' have no overlap.","category":1,"code":2367},{"start":49973,"length":9,"code":2345,"category":1,"messageText":"Argument of type '\"generic\"' is not assignable to parameter of type 'TaskType'."},{"start":55099,"length":4,"code":2322,"category":1,"messageText":"Type '\"task.queued\"' is not assignable to type 'EventType'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":20934,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'SwarmEvent'","category":3,"code":6500}]},{"start":58307,"length":4,"code":2322,"category":1,"messageText":"Type '\"task.queued\"' is not assignable to type 'EventType'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":20934,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'SwarmEvent'","category":3,"code":6500}]},{"start":61893,"length":4,"code":2322,"category":1,"messageText":{"messageText":"Type '\"objective.completed\" | \"objective.failed\"' is not assignable to type 'EventType'.","category":1,"code":2322,"next":[{"messageText":"Type '\"objective.completed\"' is not assignable to type 'EventType'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/swarm/types.ts","start":20934,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'SwarmEvent'","category":3,"code":6500}]},{"start":67237,"length":27,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":67444,"length":7,"code":2339,"category":1,"messageText":"Property 'logging' does not exist on type 'SwarmConfig'."},{"start":78468,"length":15,"code":2339,"category":1,"messageText":"Property 'createGradioApp' does not exist on type 'SwarmCoordinator'."},{"start":78608,"length":19,"code":2339,"category":1,"messageText":"Property 'createPythonRestAPI' does not exist on type 'SwarmCoordinator'."}]],[556,[{"start":9761,"length":10,"code":2339,"category":1,"messageText":"Property 'resourceId' does not exist on type 'unknown'."},{"start":9778,"length":5,"code":2339,"category":1,"messageText":"Property 'usage' does not exist on type 'unknown'."}]],[557,[{"start":627,"length":5,"messageText":"Module '\"../utils/types.js\"' has no exported member 'Agent'.","category":1,"code":2305},{"start":634,"length":11,"messageText":"Module '\"../utils/types.js\"' has no exported member 'SwarmConfig'.","category":1,"code":2305},{"start":647,"length":11,"messageText":"Module '\"../utils/types.js\"' has no exported member 'SwarmStatus'.","category":1,"code":2305},{"start":713,"length":10,"messageText":"Module '\"../utils/errors.js\"' has no exported member 'SwarmError'.","category":1,"code":2305},{"start":3844,"length":7,"code":2339,"category":1,"messageText":"Property 'details' does not exist on type 'Error'."},{"start":6524,"length":178,"messageText":"Expected 0-1 arguments, but got 8.","category":1,"code":2554},{"start":7491,"length":9,"code":2339,"category":1,"messageText":"Property 'getConfig' does not exist on type 'SwarmCoordinator'."},{"start":7533,"length":9,"code":2339,"category":1,"messageText":"Property 'getConfig' does not exist on type 'SwarmCoordinator'."},{"start":7581,"length":13,"code":2339,"category":1,"messageText":"Property 'getAgentCount' does not exist on type 'SwarmCoordinator'."},{"start":7658,"length":12,"code":2339,"category":1,"messageText":"Property 'getCreatedAt' does not exist on type 'SwarmCoordinator'."},{"start":8159,"length":9,"code":2339,"category":1,"messageText":"Property 'getConfig' does not exist on type 'SwarmCoordinator'."},{"start":8625,"length":12,"code":2339,"category":1,"messageText":"Property 'getCreatedAt' does not exist on type 'SwarmCoordinator'."},{"start":9032,"length":7,"code":2339,"category":1,"messageText":"Property 'destroy' does not exist on type 'SwarmCoordinator'."},{"start":9834,"length":5,"code":2339,"category":1,"messageText":"Property 'scale' does not exist on type 'SwarmCoordinator'."},{"start":10584,"length":10,"code":2339,"category":1,"messageText":"Property 'spawnAgent' does not exist on type 'SwarmCoordinator'."},{"start":11614,"length":15,"code":2339,"category":1,"messageText":"Property 'orchestrateTask' does not exist on type 'SwarmCoordinator'."},{"start":12979,"length":17,"code":2339,"category":1,"messageText":"Property 'getDetailedStatus' does not exist on type 'SwarmCoordinator'."},{"start":13989,"length":15,"code":2339,"category":1,"messageText":"Property 'getHealthStatus' does not exist on type 'AgentManager'."},{"start":14743,"length":5,"code":2339,"category":1,"messageText":"Property 'getId' does not exist on type 'SwarmCoordinator'."},{"start":15623,"length":9,"code":2339,"category":1,"messageText":"Property 'createdAt' does not exist on type 'AgentState'."},{"start":16671,"length":14,"code":2339,"category":1,"messageText":"Property 'terminateAgent' does not exist on type 'SwarmCoordinator'."},{"start":19017,"length":7,"code":2339,"category":1,"messageText":"Property 'destroy' does not exist on type 'SwarmCoordinator'."}]],[559,[{"start":11859,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type '\"critical\" | \"warning\"' is not assignable to type '\"normal\"'.","category":1,"code":2322,"next":[{"messageText":"Type '\"critical\"' is not assignable to type '\"normal\"'.","category":1,"code":2322}]}}]],[563,[{"start":3561,"length":5,"messageText":"Block-scoped variable 'agent' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":3411,"length":5,"messageText":"'agent' is declared here.","category":3,"code":2728}]}]],[569,[{"start":5707,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'outputDir' does not exist in type 'LoggingConfig'."},{"start":5820,"length":25,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'Record<string, unknown>'."},{"start":8216,"length":8,"code":2551,"category":1,"messageText":"Property 'sanitize' does not exist on type 'typeof NamespaceSanitizer'. Did you mean 'sanitizeId'?","relatedInformation":[{"file":"../src/utils/namespace-sanitizer.ts","start":4421,"length":10,"messageText":"'sanitizeId' is declared here.","category":3,"code":2728}]},{"start":12221,"length":8,"code":2551,"category":1,"messageText":"Property 'sanitize' does not exist on type 'typeof NamespaceSanitizer'. Did you mean 'sanitizeId'?","relatedInformation":[{"file":"../src/utils/namespace-sanitizer.ts","start":4421,"length":10,"messageText":"'sanitizeId' is declared here.","category":3,"code":2728}]},{"start":18300,"length":8,"code":2551,"category":1,"messageText":"Property 'sanitize' does not exist on type 'typeof NamespaceSanitizer'. Did you mean 'sanitizeId'?","relatedInformation":[{"file":"../src/utils/namespace-sanitizer.ts","start":4421,"length":10,"messageText":"'sanitizeId' is declared here.","category":3,"code":2728}]}]],[570,[{"start":3184,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'outputDir' does not exist in type 'LoggingConfig'."},{"start":3242,"length":24,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4161,"length":12,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'capabilities' does not exist in type '{ confidence?: number; task?: string; error?: string; filesModified?: string[]; performanceMetrics?: any; }'.","relatedInformation":[{"start":1355,"length":8,"messageText":"The expected type comes from property 'metadata' which is declared here on type 'AgentLifecycleEvent'","category":3,"code":6500}]},{"start":5962,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'reasoning' does not exist in type '{ confidence?: number; task?: string; error?: string; filesModified?: string[]; performanceMetrics?: any; }'.","relatedInformation":[{"start":1355,"length":8,"messageText":"The expected type comes from property 'metadata' which is declared here on type 'AgentLifecycleEvent'","category":3,"code":6500}]},{"start":7095,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'reason' does not exist in type '{ confidence?: number; task?: string; error?: string; filesModified?: string[]; performanceMetrics?: any; }'.","relatedInformation":[{"start":1355,"length":8,"messageText":"The expected type comes from property 'metadata' which is declared here on type 'AgentLifecycleEvent'","category":3,"code":6500}]}]],[754,[{"start":9826,"length":10,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[759,[{"start":19746,"length":7,"code":2559,"category":1,"messageText":"Type '{ persistDir?: string; logger?: Logger; eventBus?: EventBus; }' has no properties in common with type 'Partial<SwarmMemoryConfig>'."}]],[761,[{"start":13831,"length":10,"code":2345,"category":1,"messageText":"Argument of type '\"security\"' is not assignable to parameter of type '\"error\" | \"communication\" | \"knowledge\" | \"state\" | \"result\"'."}]],[777,[{"start":63393,"length":7,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554}]],[778,[{"start":4808,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."},{"start":11815,"length":5,"code":2339,"category":1,"messageText":{"messageText":"Property 'match' does not exist on type 'string | {}'.","category":1,"code":2339,"next":[{"messageText":"Property 'match' does not exist on type '{}'.","category":1,"code":2339}]}},{"start":12466,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":13596,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[779,[{"start":2615,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."}]],[780,[{"start":6116,"length":2,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"The last overload gave the following error.","category":1,"code":2770,"next":[{"messageText":"Object literal may only specify known properties, and 'NX' does not exist in type 'Callback<\"OK\">'.","category":1,"code":2353}]}]},"relatedInformation":[{"file":"../node_modules/ioredis/built/utils/RedisCommander.d.ts","start":175414,"length":102,"messageText":"The last overload is declared here.","category":1,"code":2771}]}]],[784,[{"start":3076,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."},{"start":6729,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":8120,"length":5,"code":2339,"category":1,"messageText":{"messageText":"Property 'match' does not exist on type 'string | {}'.","category":1,"code":2339,"next":[{"messageText":"Property 'match' does not exist on type '{}'.","category":1,"code":2339}]}},{"start":8352,"length":7,"code":2339,"category":1,"messageText":{"messageText":"Property 'replace' does not exist on type 'string | {}'.","category":1,"code":2339,"next":[{"messageText":"Property 'replace' does not exist on type '{}'.","category":1,"code":2339}]}},{"start":8492,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":8854,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[786,[{"start":4048,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ phaseId: string; iteration: number; agents: { agentId: string; agentType: string; role: \"primary\"; instructions: string; }[]; topology: \"mesh\"; maxAgents: number; }' is not assignable to parameter of type 'SwarmExecutionContext'.","category":1,"code":2345,"next":[{"messageText":"Property 'primaryTaskInstructions' is missing in type '{ phaseId: string; iteration: number; agents: { agentId: string; agentType: string; role: \"primary\"; instructions: string; }[]; topology: \"mesh\"; maxAgents: number; }' but required in type 'SwarmExecutionContext'.","category":1,"code":2741}]},"relatedInformation":[{"file":"../src/cfn-loop/cfn-loop-integrator.ts","start":690,"length":23,"messageText":"'primaryTaskInstructions' is declared here.","category":3,"code":2728}]}]],[814,[{"start":3963,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."},{"start":12292,"length":5,"code":2339,"category":1,"messageText":{"messageText":"Property 'match' does not exist on type 'string | {}'.","category":1,"code":2339,"next":[{"messageText":"Property 'match' does not exist on type '{}'.","category":1,"code":2339}]}},{"start":12596,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[816,[{"start":795,"length":5,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ioredis/built/index\")' has no construct signatures.","category":1,"code":2761}]}},{"start":6054,"length":5,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ioredis/built/index\")' has no construct signatures.","category":1,"code":2761}]}}]],[822,[{"start":1833,"length":20,"messageText":"Module '\"./circuit-breaker.js\"' declares 'CircuitBreakerConfig' locally, but it is not exported.","category":1,"code":2459,"relatedInformation":[{"file":"../src/cfn-loop/circuit-breaker.ts","start":257,"length":20,"messageText":"'CircuitBreakerConfig' is declared here.","category":3,"code":2728}]},{"start":1858,"length":19,"messageText":"Module '\"./circuit-breaker.js\"' has no exported member 'CircuitBreakerState'.","category":1,"code":2305},{"start":2449,"length":21,"messageText":"Module '\"./sprint-orchestrator.js\"' has no exported member 'SprintExecutionResult'. Did you mean to use 'import SprintExecutionResult from \"./sprint-orchestrator.js\"' instead?","category":1,"code":2614},{"start":2475,"length":16,"messageText":"Module '\"./sprint-orchestrator.js\"' has no exported member 'SprintDependency'. Did you mean to use 'import SprintDependency from \"./sprint-orchestrator.js\"' instead?","category":1,"code":2614}]],[823,[{"start":11418,"length":36,"messageText":"This comparison appears to be unintentional because the types 'SprintLifecycleEventType' and '\"interface:published\"' have no overlap.","category":1,"code":2367},{"start":13375,"length":4,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"The last overload gave the following error.","category":1,"code":2770,"next":[{"messageText":"Argument of type '\"NX\"' is not assignable to parameter of type '\"KEEPTTL\"'.","category":1,"code":2345}]}]},"relatedInformation":[{"file":"../node_modules/ioredis/built/utils/RedisCommander.d.ts","start":184908,"length":162,"messageText":"The last overload is declared here.","category":1,"code":2771}]}]],[826,[{"start":4331,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."}]],[828,[{"start":1404,"length":5,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ioredis/built/index\")' has no construct signatures.","category":1,"code":2761}]}}]],[830,[{"start":15856,"length":3,"code":2339,"category":1,"messageText":"Property 'map' does not exist on type 'Set<string>'."}]],[831,[{"start":8434,"length":10,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":10823,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":19725,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[832,[{"start":7427,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":11458,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":13522,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[842,[{"start":50,"length":46,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[845,[{"start":3307,"length":5,"messageText":"Cannot use namespace 'Redis' as a type.","category":1,"code":2709},{"start":3494,"length":5,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ioredis/built/index\")' has no construct signatures.","category":1,"code":2761}]}}]],[849,[{"start":350,"length":6,"messageText":"Module '\"../utils/types.js\"' has no exported member 'Config'.","category":1,"code":2305}]],[852,[{"start":1464,"length":20,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":6121,"length":7,"messageText":"Block-scoped variable 'process' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":6026,"length":7,"messageText":"'process' is declared here.","category":3,"code":2728}]}]],[853,[{"start":2392,"length":14,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."}]],[854,[{"start":2511,"length":18,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":3302,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'namespace' does not exist in type 'MemoryConfig'."},{"start":7128,"length":4,"code":2322,"category":1,"messageText":"Type '\"objective\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":14015,"length":4,"code":2322,"category":1,"messageText":"Type '\"task-result\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":21347,"length":4,"code":2322,"category":1,"messageText":"Type '\"swarm-state\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":21999,"length":7,"messageText":"Cannot find name 'Message'.","category":1,"code":2304}]],[856,[{"start":2012,"length":20,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":5751,"length":20,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."}]],[885,[{"start":7352,"length":9,"code":2345,"category":1,"messageText":"Argument of type '\"failure\"' is not assignable to parameter of type '\"error\" | \"communication\" | \"knowledge\" | \"state\" | \"result\"'."},{"start":8130,"length":27,"messageText":"This comparison appears to be unintentional because the types 'AgentStatus' and '\"offline\"' have no overlap.","category":1,"code":2367},{"start":8161,"length":28,"messageText":"This comparison appears to be unintentional because the types 'AgentStatus' and '\"degraded\"' have no overlap.","category":1,"code":2367},{"start":8304,"length":14,"code":2339,"category":1,"messageText":"Property 'completedTasks' does not exist on type 'HierarchicalAgent'."},{"start":8328,"length":11,"code":2339,"category":1,"messageText":"Property 'failedTasks' does not exist on type 'HierarchicalAgent'."},{"start":8392,"length":14,"code":2339,"category":1,"messageText":"Property 'completedTasks' does not exist on type 'HierarchicalAgent'."},{"start":8473,"length":9,"code":2339,"category":1,"messageText":"Property 'spawnedAt' does not exist on type 'HierarchicalAgent'."},{"start":8689,"length":12,"code":2551,"category":1,"messageText":"Property 'currentTasks' does not exist on type 'HierarchicalAgent'. Did you mean 'currentTask'?","relatedInformation":[{"file":"../src/coordination/hierarchical-orchestrator.ts","start":1137,"length":11,"messageText":"'currentTask' is declared here.","category":3,"code":2728}]},{"start":8731,"length":18,"code":2339,"category":1,"messageText":"Property 'maxConcurrentTasks' does not exist on type 'Set<string>'."},{"start":12472,"length":11,"code":2345,"category":1,"messageText":"Argument of type '\"promotion\"' is not assignable to parameter of type '\"error\" | \"communication\" | \"knowledge\" | \"state\" | \"result\"'."},{"start":15268,"length":16,"code":2345,"category":1,"messageText":"Argument of type '\"state-transfer\"' is not assignable to parameter of type '\"error\" | \"communication\" | \"knowledge\" | \"state\" | \"result\"'."}]],[886,[{"start":8852,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '{ type?: string; priority?: number; maxConcurrentTasks?: number; skills?: string[]; specializations?: string[]; }' is not assignable to type 'WorkerCapabilities'.","category":1,"code":2322,"next":[{"messageText":"Property 'type' is optional in type '{ type?: string; priority?: number; maxConcurrentTasks?: number; skills?: string[]; specializations?: string[]; }' but required in type 'WorkerCapabilities'.","category":1,"code":2327}]},"relatedInformation":[{"start":1532,"length":12,"messageText":"The expected type comes from property 'capabilities' which is declared here on type 'WorkerState'","category":3,"code":6500}]},{"start":11651,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ type?: string; timeout?: number; priority?: number; id?: string; status?: \"pending\" | \"running\" | \"completed\" | \"failed\" | \"blocked\"; metadata?: Record<string, unknown>; dependencies?: string[]; description?: string; }' is not assignable to parameter of type 'Task'.","category":1,"code":2345,"next":[{"messageText":"Type '{ type?: string; timeout?: number; priority?: number; id?: string; status?: \"pending\" | \"running\" | \"completed\" | \"failed\" | \"blocked\"; metadata?: Record<string, unknown>; dependencies?: string[]; description?: string; }' is missing the following properties from type 'Task': input, createdAt","category":1,"code":2739}]}},{"start":11780,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ type?: string; timeout?: number; priority?: number; id?: string; status?: \"pending\" | \"running\" | \"completed\" | \"failed\" | \"blocked\"; metadata?: Record<string, unknown>; dependencies?: string[]; description?: string; }' is not assignable to parameter of type 'Task'.","category":1,"code":2345,"next":[{"messageText":"Type '{ type?: string; timeout?: number; priority?: number; id?: string; status?: \"pending\" | \"running\" | \"completed\" | \"failed\" | \"blocked\"; metadata?: Record<string, unknown>; dependencies?: string[]; description?: string; }' is missing the following properties from type 'Task': input, createdAt","category":1,"code":2739}]}}]],[907,[{"start":362,"length":35,"messageText":"Cannot find module '../../coordination/queen-agent.js' or its corresponding type declarations.","category":1,"code":2307},{"start":457,"length":34,"messageText":"Cannot find module '../../agents/mesh-coordinator.js' or its corresponding type declarations.","category":1,"code":2307},{"start":535,"length":31,"messageText":"Cannot find module '../../coordination/metrics.js' or its corresponding type declarations.","category":1,"code":2307}]],[908,[{"start":6925,"length":15,"code":2561,"category":1,"messageText":"Object literal may only specify known properties, but 'coordinatorType' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'. Did you mean to write 'coordinatorId'?","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":7951,"length":15,"code":2561,"category":1,"messageText":"Object literal may only specify known properties, but 'coordinatorType' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'. Did you mean to write 'coordinatorId'?","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":26739,"length":19,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"task_assigned\" | \"task_completed\" | \"dependency_resolved\" | \"task_failed\" | \"agent_spawned\" | \"agent_status_changed\" | \"agent_health_updated\" | \"task_created\" | \"task_started\" | ... 7 more ... | \"error_occurred\"'."},{"start":26881,"length":18,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"error\" | \"resource\" | \"coordination\" | \"performance\" | \"security\" | \"lifecycle\"'."},{"start":30485,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'agentType' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'.","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":33904,"length":8,"code":2561,"category":1,"messageText":"Object literal may only specify known properties, but 'agentIds' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'. Did you mean to write 'agentId'?","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":35322,"length":8,"code":2561,"category":1,"messageText":"Object literal may only specify known properties, but 'agentIds' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'. Did you mean to write 'agentId'?","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":35894,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'stack' does not exist in type '{ agentId?: string; taskId?: string; coordinatorId?: string; previousState?: string; newState?: string; reason?: string; metrics?: any; error?: string; metadata?: Record<string, any>; }'.","relatedInformation":[{"file":"../src/coordination/v1-transparency/interfaces/v1-transparency-system.ts","start":5203,"length":9,"messageText":"The expected type comes from property 'eventData' which is declared here on type 'V1TransparencyEvent'","category":3,"code":6500}]},{"start":43827,"length":27,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":44454,"length":27,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":49470,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'V1TransparencyConfig'."},{"start":59606,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'V1TransparencyConfig'."},{"start":60008,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'V1TransparencyConfig'."},{"start":60333,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'V1TransparencyConfig'."}]],[910,[{"start":492,"length":20,"messageText":"'\"./interfaces/v1-transparency-system.js\"' has no exported member named 'V1TransparencySystem'. Did you mean 'IV1TransparencySystem'?","category":1,"code":2724},{"start":966,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ agentId: string; type: string; level: number; parentAgentId: string; childAgentIds: string[]; priority: number; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; ... 10 more ...; completedDependencies: any[]; }[]' is not assignable to type 'AgentHierarchyNode[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ agentId: string; type: string; level: number; parentAgentId: string; childAgentIds: string[]; priority: number; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; ... 10 more ...; completedDependencies: any[]; }' is not assignable to type 'AgentHierarchyNode'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'state' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '\"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"' is not assignable to type 'AgentState'.","category":1,"code":2322,"next":[{"messageText":"Type '\"error\"' is not assignable to type 'AgentState'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '{ agentId: string; type: string; level: number; parentAgentId: string; childAgentIds: string[]; priority: number; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; ... 10 more ...; completedDependencies: any[]; }' is not assignable to type 'AgentHierarchyNode'."}}]}]}]}},{"start":2496,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ agentId: string; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; isPaused: boolean; activity: string; progress: number; ... 7 more ...; recentErrors: { ...; }[]; }[]' is not assignable to type 'AgentStatus[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ agentId: string; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; isPaused: boolean; activity: string; progress: number; ... 7 more ...; recentErrors: { ...; }[]; }' is not assignable to type 'AgentStatus'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'state' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '\"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"' is not assignable to type 'AgentState'.","category":1,"code":2322,"next":[{"messageText":"Type '\"error\"' is not assignable to type 'AgentState'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '{ agentId: string; state: \"error\" | \"active\" | \"idle\" | \"terminated\" | \"paused\" | \"completing\" | \"checkpointing\" | \"waiting_for_dependency\"; isPaused: boolean; activity: string; progress: number; ... 7 more ...; recentErrors: { ...; }[]; }' is not assignable to type 'AgentStatus'."}}]}]}]}},{"start":3388,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ eventId: string; timestamp: Date; agentId: string; eventType: \"terminated\" | \"paused\" | \"task_assigned\" | \"task_completed\" | \"spawned\" | \"error_occurred\" | \"resumed\" | \"checkpoint_created\" | \"checkpoint_restored\" | \"state_changed\"; ... 5 more ...; performanceImpact: { ...; }; }[]' is not assignable to type 'AgentLifecycleEvent[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ eventId: string; timestamp: Date; agentId: string; eventType: \"terminated\" | \"paused\" | \"task_assigned\" | \"task_completed\" | \"spawned\" | \"error_occurred\" | \"resumed\" | \"checkpoint_created\" | \"checkpoint_restored\" | \"state_changed\"; ... 5 more ...; performanceImpact: { ...; }; }' is not assignable to type 'AgentLifecycleEvent'.","category":1,"code":2322,"next":[{"messageText":"The types of 'eventData.previousState' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type 'string' is not assignable to type 'AgentState'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '{ eventId: string; timestamp: Date; agentId: string; eventType: \"terminated\" | \"paused\" | \"task_assigned\" | \"task_completed\" | \"spawned\" | \"error_occurred\" | \"resumed\" | \"checkpoint_created\" | \"checkpoint_restored\" | \"state_changed\"; ... 5 more ...; performanceImpact: { ...; }; }' is not assignable to type 'AgentLifecycleEvent'."}}]}]}]}},{"start":18071,"length":18,"messageText":"Property 'groupAgentsByLevel' is private and only accessible within class 'V1ToV2Bridge'.","category":1,"code":2341}]],[917,[{"start":7054,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '\"v1\" | \"v2\"' is not assignable to type '\"v1\"'.","category":1,"code":2322,"next":[{"messageText":"Type '\"v2\"' is not assignable to type '\"v1\"'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/coordination/coordination-toggle.ts","start":1015,"length":7,"messageText":"The expected type comes from property 'version' which is declared here on type 'UnifiedCoordinatorConfig'","category":3,"code":6500}]},{"start":7207,"length":8,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"adaptive\" | \"performance\" | \"balanced\"'.","relatedInformation":[{"file":"../src/coordination/coordination-toggle.ts","start":1247,"length":8,"messageText":"The expected type comes from property 'strategy' which is declared here on type 'UnifiedCoordinatorConfig'","category":3,"code":6500}]},{"start":7538,"length":11,"code":2339,"category":1,"messageText":"Property 'SwarmMemory' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/memory/swarm-memory\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7581,"length":35,"messageText":"Cannot find module '../../messaging/message-broker.js' or its corresponding type declarations.","category":1,"code":2307},{"start":8452,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ICoordinator' is not assignable to parameter of type 'SwarmCoordinator'.","category":1,"code":2345,"next":[{"messageText":"Type 'ICoordinator' is missing the following properties from type 'SwarmCoordinator': logger, config, agents, objectives, and 46 more.","category":1,"code":2740}]}},{"start":8514,"length":5,"code":2339,"category":1,"messageText":"Property 'start' does not exist on type 'ICoordinator'."},{"start":8805,"length":15,"code":2339,"category":1,"messageText":"Property 'createObjective' does not exist on type 'ICoordinator'."},{"start":9873,"length":13,"code":2339,"category":1,"messageText":"Property 'registerAgent' does not exist on type 'ICoordinator'."},{"start":10533,"length":16,"code":2339,"category":1,"messageText":"Property 'executeObjective' does not exist on type 'ICoordinator'."},{"start":11561,"length":14,"code":2339,"category":1,"messageText":"Property 'getSwarmStatus' does not exist on type 'ICoordinator'."},{"start":12090,"length":4,"code":2339,"category":1,"messageText":"Property 'stop' does not exist on type 'ICoordinator'."}]],[921,[{"start":645,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":784,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":962,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1097,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1293,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1519,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3149,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3208,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3308,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3367,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3433,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3498,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3590,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3654,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[936,[{"start":7505,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7568,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7619,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7689,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7785,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7895,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":7914,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8019,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8038,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8147,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8194,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8301,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8350,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8455,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8668,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8791,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8810,"length":6,"code":2339,"category":1,"messageText":"Property 'italic' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":8959,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9215,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9432,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9672,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9911,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[937,[{"start":825,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1481,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1529,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1630,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1747,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1880,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":1994,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":2110,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":2974,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3022,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3070,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3117,"length":4,"code":2339,"category":1,"messageText":"Property 'cyan' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3161,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3238,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3891,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":3916,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[938,[{"start":9193,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9257,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9315,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9367,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9392,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9461,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9580,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9599,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9718,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9842,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":9942,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10061,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10169,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10228,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10320,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":10479,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[975,[{"start":119,"length":11,"messageText":"The 'import.meta' meta-property is not allowed in files which will build into CommonJS output.","category":1,"code":1470},{"start":5250,"length":28,"messageText":"Type 'Record<string, CommandMigration>' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"start":12380,"length":6,"code":2339,"category":1,"messageText":"Property 'prompt' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/inquirer/dist/commonjs/index\")'."},{"start":13762,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":13817,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":14124,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":14512,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":15134,"length":6,"code":2339,"category":1,"messageText":"Property 'prompt' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/inquirer/dist/commonjs/index\")'."},{"start":15429,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type '{ source: string; target: string; }[]' is not assignable to type 'Record<string, CommandMigration>'.","category":1,"code":2322,"next":[{"messageText":"Index signature for type 'string' is missing in type '{ source: string; target: string; }[]'.","category":1,"code":2329}]},"relatedInformation":[{"file":"../src/migration/types.ts","start":1613,"length":8,"messageText":"The expected type comes from property 'commands' which is declared here on type '{ commands: Record<string, CommandMigration>; configurations: Record<string, ConfigMigration>; templates: Record<string, TemplateMigration>; }'","category":3,"code":6500}]},{"start":17010,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17065,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17123,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17165,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17190,"length":3,"code":2339,"category":1,"messageText":"Property 'red' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17286,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17318,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17573,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17606,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17807,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17841,"length":4,"code":2339,"category":1,"messageText":"Property 'blue' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":17953,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":18124,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":18286,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":18374,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":18501,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[976,[{"start":5040,"length":6,"code":2339,"category":1,"messageText":"Property 'prompt' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/inquirer/dist/commonjs/index\")'."},{"start":6585,"length":6,"code":2339,"category":1,"messageText":"Property 'prompt' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/inquirer/dist/commonjs/index\")'."},{"start":11157,"length":6,"code":2339,"category":1,"messageText":"Property 'yellow' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11229,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11284,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11590,"length":5,"code":2339,"category":1,"messageText":"Property 'green' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11609,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11628,"length":4,"code":2339,"category":1,"messageText":"Property 'bold' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11700,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11755,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11810,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":11912,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":12001,"length":4,"code":2339,"category":1,"messageText":"Property 'gray' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/chalk/source/index\", { with: { \"resolution-mode\": \"import\" } })'."}]],[982,[{"start":29700,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ name: string; description: string; type: \"operational\"; widgets: ({ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; al...' is not assignable to parameter of type '{ name: string; description: string; type: \"custom\" | \"security\" | \"operational\" | \"business\" | \"technical\" | \"executive\"; widgets: Omit<DashboardWidget, \"id\">[]; permissions?: Partial<...>; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{ name: string; description: string; type: \"operational\"; widgets: ({ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; al...' is not assignable to type '{ name: string; description: string; type: \"custom\" | \"security\" | \"operational\" | \"business\" | \"technical\" | \"executive\"; widgets: Omit<DashboardWidget, \"id\">[]; permissions?: Partial<...>; }'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'widgets' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '({ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; alerts: { ...; }; } | { ...; })[]' is not assignable to type 'Omit<DashboardWidget, \"id\">[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; alerts: { ...; }; } | { ...; }' is not assignable to type 'Omit<DashboardWidget, \"id\">'.","category":1,"code":2322,"next":[{"messageText":"Type '{ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; alerts: { ...; }; }' is not assignable to type 'Omit<DashboardWidget, \"id\">'.","category":1,"code":2322,"next":[{"messageText":"The types of 'visualization.chartType' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '\"gauge\"' is not assignable to type '\"line\" | \"bar\" | \"pie\" | \"scatter\" | \"heatmap\" | \"area\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '{ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; alerts: { ...; }; }' is not assignable to type 'Omit<DashboardWidget, \"id\">'."}}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '{ name: string; description: string; type: \"operational\"; widgets: ({ title: string; type: \"gauge\"; size: \"medium\"; position: { x: number; y: number; width: number; height: number; }; dataSource: { query: string; metrics: string[]; aggregation: \"avg\"; timeRange: string; groupBy: any[]; }; visualization: { ...; }; al...' is not assignable to type '{ name: string; description: string; type: \"custom\" | \"security\" | \"operational\" | \"business\" | \"technical\" | \"executive\"; widgets: Omit<DashboardWidget, \"id\">[]; permissions?: Partial<...>; }'."}}]}]}]}}]],[999,[{"start":4363,"length":10,"messageText":"Block-scoped variable '__filename' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":4253,"length":10,"messageText":"'__filename' is declared here.","category":3,"code":2728}]},{"start":4377,"length":9,"messageText":"Block-scoped variable '__dirname' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":4411,"length":9,"messageText":"'__dirname' is declared here.","category":3,"code":2728}]}]],[1002,[{"start":1721,"length":20,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[1006,[{"start":197,"length":22,"messageText":"'\"../constants/agent-types.js\"' has no exported member named 'getAvailableAgentTypes'. Did you mean 'getValidAgentTypes'?","category":1,"code":2724,"relatedInformation":[{"file":"../src/constants/agent-types.ts","start":624,"length":18,"messageText":"'getValidAgentTypes' is declared here.","category":3,"code":2728}]}]],[1008,[{"start":845,"length":19,"code":2430,"category":1,"messageText":{"messageText":"Interface 'RuvSwarmToolContext' incorrectly extends interface 'MCPContext'.","category":1,"code":2430,"next":[{"messageText":"Property 'sessionId' is optional in type 'RuvSwarmToolContext' but required in type 'MCPContext'.","category":1,"code":2327}]}},{"start":17357,"length":7,"code":2741,"category":1,"messageText":"Property 'logger' is missing in type '{ workingDirectory: string; sessionId: string; }' but required in type 'RuvSwarmToolContext'.","relatedInformation":[{"file":"../src/utils/types.ts","start":13203,"length":6,"messageText":"'logger' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ workingDirectory: string; sessionId: string; }' is not assignable to type 'RuvSwarmToolContext'."}}]],[1009,[{"start":15327,"length":15,"messageText":"Type 'Promise<MCPTool[]>' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488,"relatedInformation":[{"start":15327,"length":15,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]},{"start":15893,"length":6,"code":2339,"category":1,"messageText":"Property 'length' does not exist on type 'Promise<MCPTool[]>'.","relatedInformation":[{"start":15893,"length":6,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]},{"start":18508,"length":15,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'RuvSwarmToolContext' is not assignable to parameter of type 'MCPContext'.","category":1,"code":2345,"next":[{"messageText":"Property 'sessionId' is optional in type 'RuvSwarmToolContext' but required in type 'MCPContext'.","category":1,"code":2327}]}}]],[1010,[{"start":57,"length":6,"messageText":"Module '\"../utils/types.js\"' has no exported member 'Config'.","category":1,"code":2305},{"start":24830,"length":24,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."},{"start":25457,"length":24,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."},{"start":25686,"length":20,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[1034,[{"start":8332,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."},{"start":9880,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."}]],[1035,[{"start":4126,"length":8,"messageText":"Namespace '\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/better-sqlite3/lib/index\".export=' has no exported member 'Database'.","category":1,"code":2694},{"start":15748,"length":5,"messageText":"Cannot use namespace 'Redis' as a type.","category":1,"code":2709},{"start":15770,"length":5,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ioredis/built/index\")' has no construct signatures.","category":1,"code":2761}]}}]],[1038,[{"start":8764,"length":4,"code":2339,"category":1,"messageText":"Property '_raw' does not exist on type 'object'."},{"start":8814,"length":4,"code":2339,"category":1,"messageText":"Property '_raw' does not exist on type 'object'."}]],[1041,[{"start":7893,"length":4,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'MessageType'.","relatedInformation":[{"file":"../src/hive-mind/types.ts","start":4323,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'Message'","category":3,"code":6500}]},{"start":15769,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'AgentCapability'."}]],[1042,[{"start":6451,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'AgentCapability'."},{"start":7348,"length":8,"code":2740,"category":1,"messageText":"Type '{ researcher: number; analyst: number; specialist: number; coder: number; coordinator: number; architect: number; tester: number; reviewer: number; optimizer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ researcher: number; analyst: number; specialist: number; coder: number; coordinator: number; architect: number; tester: number; reviewer: number; optimizer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":7611,"length":11,"code":2740,"category":1,"messageText":"Type '{ coder: number; architect: number; tester: number; reviewer: number; coordinator: number; specialist: number; researcher: number; analyst: number; optimizer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ coder: number; architect: number; tester: number; reviewer: number; coordinator: number; specialist: number; researcher: number; analyst: number; optimizer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":7877,"length":8,"code":2740,"category":1,"messageText":"Type '{ analyst: number; researcher: number; specialist: number; reviewer: number; coordinator: number; architect: number; coder: number; tester: number; optimizer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ analyst: number; researcher: number; specialist: number; reviewer: number; coordinator: number; architect: number; coder: number; tester: number; optimizer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":8140,"length":7,"code":2740,"category":1,"messageText":"Type '{ tester: number; reviewer: number; analyst: number; coder: number; coordinator: number; specialist: number; researcher: number; architect: number; optimizer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ tester: number; reviewer: number; analyst: number; coder: number; coordinator: number; specialist: number; researcher: number; architect: number; optimizer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":8402,"length":12,"code":2740,"category":1,"messageText":"Type '{ optimizer: number; analyst: number; coder: number; architect: number; coordinator: number; specialist: number; researcher: number; tester: number; reviewer: number; documenter: number; monitor: number; }' is missing the following properties from type 'Record<AgentType, number>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ optimizer: number; analyst: number; coder: number; architect: number; coordinator: number; specialist: number; researcher: number; tester: number; reviewer: number; documenter: number; monitor: number; }' is not assignable to type 'Record<AgentType, number>'."}},{"start":16656,"length":7,"code":2740,"category":1,"messageText":"Type '{ coordinator: string; researcher: string; coder: string; analyst: string; architect: string; tester: string; reviewer: string; optimizer: string; documenter: string; monitor: string; specialist: string; }' is missing the following properties from type 'Record<AgentType, string>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ coordinator: string; researcher: string; coder: string; analyst: string; architect: string; tester: string; reviewer: string; optimizer: string; documenter: string; monitor: string; specialist: string; }' is not assignable to type 'Record<AgentType, string>'."}},{"start":17208,"length":17,"code":2740,"category":1,"messageText":"Type '{ coordinator: string[]; researcher: string[]; coder: string[]; analyst: string[]; architect: string[]; tester: string[]; reviewer: string[]; optimizer: string[]; documenter: string[]; monitor: string[]; specialist: string[]; }' is missing the following properties from type 'Record<AgentType, string[]>': requirements_analyst, design_architect, task_planner, implementation_coder, and 2 more.","canonicalHead":{"code":2322,"messageText":"Type '{ coordinator: string[]; researcher: string[]; coder: string[]; analyst: string[]; architect: string[]; tester: string[]; reviewer: string[]; optimizer: string[]; documenter: string[]; monitor: string[]; specialist: string[]; }' is not assignable to type 'Record<AgentType, string[]>'."}},{"start":20414,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'unknown'."}]],[1043,[{"start":32744,"length":4,"code":2339,"category":1,"messageText":"Property 'size' does not exist on type 'HighPerformanceCache<any>'."},{"start":34656,"length":10,"messageText":"Type 'HighPerformanceCache<any>' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"start":35035,"length":4,"code":2339,"category":1,"messageText":"Property 'size' does not exist on type 'HighPerformanceCache<any>'."},{"start":35145,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'HighPerformanceCache<any>'."},{"start":35342,"length":10,"messageText":"Type 'unknown' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488}]],[1044,[{"start":1082,"length":14,"code":2740,"category":1,"messageText":"Type '{}' is missing the following properties from type 'Record<MessageType, number>': coordination, direct, broadcast, query, and 6 more.","relatedInformation":[{"file":"../src/hive-mind/types.ts","start":4708,"length":14,"messageText":"The expected type comes from property 'messagesByType' which is declared here on type 'CommunicationStats'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type 'Record<MessageType, number>'."}}]],[1045,[{"start":3909,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type '{ taskId: string; plan: ExecutionPlan; startTime: number; currentPhase: number; phaseResults: any[]; status: string; }'."},{"start":14826,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'AgentCapability'."},{"start":20033,"length":2,"messageText":"Property 'id' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":20400,"length":2,"messageText":"Property 'id' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":22316,"length":2,"messageText":"Property 'id' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":22725,"length":2,"messageText":"Property 'id' is private and only accessible within class 'HiveMind'.","category":1,"code":2341}]],[1046,[{"start":2727,"length":20,"code":2551,"category":1,"messageText":"Property 'getConsensusProposal' does not exist on type 'DatabaseManager'. Did you mean 'createConsensusProposal'?","relatedInformation":[{"file":"../src/hive-mind/core/DatabaseManager.ts","start":16716,"length":23,"messageText":"'createConsensusProposal' is declared here.","category":3,"code":2728}]},{"start":9481,"length":21,"code":2339,"category":1,"messageText":"Property 'updateConsensusStatus' does not exist on type 'DatabaseManager'."},{"start":10221,"length":21,"code":2339,"category":1,"messageText":"Property 'updateConsensusStatus' does not exist on type 'DatabaseManager'."},{"start":14290,"length":27,"code":2551,"category":1,"messageText":"Property 'getRecentConsensusProposals' does not exist on type 'DatabaseManager'. Did you mean 'createConsensusProposal'?","relatedInformation":[{"file":"../src/hive-mind/core/DatabaseManager.ts","start":16716,"length":23,"messageText":"'createConsensusProposal' is declared here.","category":3,"code":2728}]},{"start":15372,"length":7,"code":2339,"category":1,"messageText":"Property 'prepare' does not exist on type 'DatabaseManager'."},{"start":15536,"length":7,"code":2339,"category":1,"messageText":"Property 'prepare' does not exist on type 'DatabaseManager'."},{"start":15751,"length":7,"code":2339,"category":1,"messageText":"Property 'prepare' does not exist on type 'DatabaseManager'."}]],[1047,[{"start":5849,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type 'string[]' is not assignable to type 'AgentCapability[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type 'AgentCapability'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/hive-mind/types.ts","start":2220,"length":12,"messageText":"The expected type comes from property 'capabilities' which is declared here on type 'AgentConfig'","category":3,"code":6500}]},{"start":9161,"length":6,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"healthy\" | \"degraded\" | \"critical\" | \"unknown\"'.","relatedInformation":[{"file":"../src/hive-mind/types.ts","start":7949,"length":6,"messageText":"The expected type comes from property 'health' which is declared here on type 'SwarmStatus'","category":3,"code":6500}]},{"start":14452,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'AgentCapability'."}]],[1049,[{"start":771,"length":18,"code":2322,"category":1,"messageText":"Type '\"system-architect\"' is not assignable to type 'AgentType'."},{"start":811,"length":14,"code":2820,"category":1,"messageText":"Type '\"task-planner\"' is not assignable to type 'AgentType'. Did you mean '\"task_planner\"'?"},{"start":855,"length":11,"code":2322,"category":1,"messageText":"Type '\"developer\"' is not assignable to type 'AgentType'."},{"start":2255,"length":16,"code":2322,"category":1,"messageText":"Type '\"implementation\"' is not assignable to type 'AgentCapability'."},{"start":2409,"length":9,"code":2322,"category":1,"messageText":"Type '\"testing\"' is not assignable to type 'AgentCapability'."}]],[1052,[{"start":7876,"length":9,"code":2339,"category":1,"messageText":"Property 'memoryTTL' does not exist on type '{ name: any; topology: any; queenMode: any; maxAgents: any; consensusThreshold: any; autoSpawn: any; }'."},{"start":8017,"length":15,"code":2339,"category":1,"messageText":"Property 'enabledFeatures' does not exist on type '{ name: any; topology: any; queenMode: any; maxAgents: any; consensusThreshold: any; autoSpawn: any; }'."}]],[1056,[{"start":4099,"length":16,"messageText":"Operator '>' cannot be applied to types 'Promise<number>' and 'number'.","category":1,"code":2365,"relatedInformation":[{"start":4099,"length":16,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]}]],[1059,[{"start":824,"length":6,"code":2339,"category":1,"messageText":"Property 'filter' does not exist on type 'Promise<any>'."},{"start":1132,"length":16,"messageText":"Operator '>' cannot be applied to types 'Promise<number>' and 'number'.","category":1,"code":2365,"relatedInformation":[{"start":1132,"length":16,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]}]],[1061,[{"start":932,"length":48,"messageText":"Cannot find module '../simple-commands/init/templates/claude-md.js' or its corresponding type declarations.","category":1,"code":2307},{"start":3230,"length":12,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'defaultValue' does not exist in type 'Option'."},{"start":3407,"length":30,"messageText":"Cannot find module '../../scripts/init-neural.js' or its corresponding type declarations.","category":1,"code":2307},{"start":4160,"length":12,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'defaultValue' does not exist in type 'Option'."},{"start":4320,"length":28,"messageText":"Cannot find module '../../scripts/init-goal.js' or its corresponding type declarations.","category":1,"code":2307},{"start":112247,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'args' does not exist in type 'Command'."},{"start":112629,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'args' does not exist in type 'Command'."},{"start":113003,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'args' does not exist in type 'Command'."},{"start":113376,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'args' does not exist in type 'Command'."}]],[1186,[{"start":5905,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":6056,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":6400,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":7283,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":7438,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."},{"start":7993,"length":7,"code":2339,"category":1,"messageText":"Property 'warning' does not exist on type 'Logger'."}]],[1262,[{"start":81,"length":3,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ajv/dist/ajv\")' has no construct signatures.","category":1,"code":2761}]}},{"start":123,"length":10,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ajv-formats/dist/index\")' has no call signatures.","category":1,"code":2757}]}}]],[1264,[{"start":2931,"length":17,"messageText":"Block-scoped variable 'defaultOutputName' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":5202,"length":17,"messageText":"'defaultOutputName' is declared here.","category":3,"code":2728}]},{"start":5551,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'EpicConfig'."},{"start":7962,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'EpicConfig'."},{"start":8007,"length":8,"code":2339,"category":1,"messageText":"Property 'metadata' does not exist on type 'EpicConfig'."}]],[1267,[{"start":157,"length":13,"messageText":"Duplicate identifier 'WorkflowPhase'.","category":1,"code":2300},{"start":1053,"length":13,"messageText":"Duplicate identifier 'WorkflowPhase'.","category":1,"code":2300}]],[1268,[{"start":4051,"length":45,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":4226,"length":45,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":6977,"length":36,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":7090,"length":36,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":8585,"length":42,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":8704,"length":42,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":10953,"length":33,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":12543,"length":32,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":12652,"length":32,"code":2352,"category":1,"messageText":"Conversion of type 'string' to type 'WorkflowPhase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."},{"start":14740,"length":18,"messageText":"Type 'WorkflowPhase' cannot be used as an index type.","category":1,"code":2538},{"start":15742,"length":6,"messageText":"Property 'memory' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":15967,"length":13,"messageText":"Property 'communication' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":15981,"length":9,"messageText":"Expected 3-4 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/hive-mind/core/Communication.ts","start":3109,"length":17,"messageText":"An argument for 'type' was not provided.","category":3,"code":6210}]},{"start":16545,"length":6,"messageText":"Property 'memory' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":16559,"length":12,"code":2559,"category":1,"messageText":"Type '\"steering/*\"' has no properties in common with type 'MemorySearchOptions'."},{"start":16668,"length":6,"messageText":"Property 'memory' is private and only accessible within class 'HiveMind'.","category":1,"code":2341},{"start":16684,"length":3,"code":2345,"category":1,"messageText":"Argument of type 'MemoryEntry' is not assignable to parameter of type 'string'."},{"start":17625,"length":6,"messageText":"Property 'memory' is private and only accessible within class 'HiveMind'.","category":1,"code":2341}]],[1270,[{"start":14720,"length":29,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Not all constituents of type 'string | ((message: string, meta?: unknown) => void) | ((message: string, meta?: unknown) => void) | ((message: string, meta?: unknown) => void) | ((message: string, error?: unknown) => void) | ((config: LoggingConfig) => Promise<...>) | (() => Promise<...>) | ((context: Record<...>) => Logger)' are callable.","category":1,"code":2756,"next":[{"messageText":"Type 'string' has no call signatures.","category":1,"code":2757}]}]}}]],[1271,[{"start":3115,"length":9,"messageText":"Cannot find name 'operation'.","category":1,"code":2304}]],[1275,[{"start":20990,"length":9,"code":2339,"category":1,"messageText":"Property 'recurring' does not exist on type '{ step: any; provider: any; errorMessage: string; }'."},{"start":21028,"length":11,"code":2339,"category":1,"messageText":"Property 'occurrences' does not exist on type '{ step: any; provider: any; errorMessage: string; }'."}]],[1277,[{"start":642,"length":6,"messageText":"Module '\"../utils/types.js\"' has no exported member 'Config'.","category":1,"code":2305}]],[1292,[{"start":6199,"length":22,"code":2322,"category":1,"messageText":"Type '\"requirements_analyst\"' is not assignable to type 'AgentType'."},{"start":6229,"length":18,"code":2820,"category":1,"messageText":"Type '\"design_architect\"' is not assignable to type 'AgentType'. Did you mean '\"design-architect\"'?"},{"start":6255,"length":14,"code":2820,"category":1,"messageText":"Type '\"task_planner\"' is not assignable to type 'AgentType'. Did you mean '\"task-planner\"'?"},{"start":6277,"length":22,"code":2322,"category":1,"messageText":"Type '\"implementation_coder\"' is not assignable to type 'AgentType'."},{"start":6307,"length":18,"code":2322,"category":1,"messageText":"Type '\"quality_reviewer\"' is not assignable to type 'AgentType'."},{"start":6333,"length":21,"code":2322,"category":1,"messageText":"Type '\"steering_documenter\"' is not assignable to type 'AgentType'."},{"start":7354,"length":20,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'requirements_analyst' does not exist in type 'Record<AgentType, string>'."}]],[1296,[{"start":5381,"length":5,"messageText":"Cannot use namespace 'Redis' as a type.","category":1,"code":2709},{"start":5819,"length":5,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ioredis/built/index\")' has no construct signatures.","category":1,"code":2761}]}},{"start":13443,"length":33,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'number | \"3\"' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":15975,"length":5,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ioredis/built/index\")' has no construct signatures.","category":1,"code":2761}]}}]],[1297,[{"start":1494,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":3299,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":6368,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."},{"start":6463,"length":6,"code":2339,"category":1,"messageText":"Property 'apiKey' does not exist on type '{ model?: \"sonnet\" | \"claude-3-opus-20240229\" | \"claude-3-sonnet-20240229\" | \"claude-3-haiku-20240307\" | \"claude-2.1\" | \"claude-2.0\" | \"claude-instant-1.2\"; temperature?: number; ... 6 more ...; retryDelay?: number; }'."}]],[1299,[{"start":3756,"length":21,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'RuvSwarmConfig' is not assignable to parameter of type 'Record<string, unknown>'.","category":1,"code":2345,"next":[{"messageText":"Index signature for type 'string' is missing in type 'RuvSwarmConfig'.","category":1,"code":2329}]}},{"start":3944,"length":6,"code":2740,"category":1,"messageText":"Type 'Record<string, unknown>' is missing the following properties from type 'RuvSwarmConfig': swarm, agents, tasks, memory, and 3 more.","canonicalHead":{"code":2322,"messageText":"Type 'Record<string, unknown>' is not assignable to type 'RuvSwarmConfig'."}},{"start":5213,"length":11,"code":2740,"category":1,"messageText":"Type 'Record<string, unknown>' is missing the following properties from type 'RuvSwarmConfig': swarm, agents, tasks, memory, and 3 more.","canonicalHead":{"code":2322,"messageText":"Type 'Record<string, unknown>' is not assignable to type 'RuvSwarmConfig'."}},{"start":5237,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'RuvSwarmConfig' is not assignable to parameter of type 'Record<string, unknown>'.","category":1,"code":2345,"next":[{"messageText":"Index signature for type 'string' is missing in type 'RuvSwarmConfig'.","category":1,"code":2329}]}}]],[1300,[{"start":6609,"length":6,"messageText":"Cannot find name 'logger'.","category":1,"code":2304}]],[1302,[{"start":169,"length":28,"messageText":"Cannot find module '../../monitoring/logger.js' or its corresponding type declarations.","category":1,"code":2307}]],[1307,[{"start":169,"length":28,"messageText":"Cannot find module '../../monitoring/logger.js' or its corresponding type declarations.","category":1,"code":2307}]],[1309,[{"start":2418,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."},{"start":3165,"length":5,"code":2339,"category":1,"messageText":{"messageText":"Property 'match' does not exist on type 'string | {}'.","category":1,"code":2339,"next":[{"messageText":"Property 'match' does not exist on type '{}'.","category":1,"code":2339}]}},{"start":3542,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":7914,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'LoggingConfig'."},{"start":11952,"length":21,"messageText":"Block-scoped variable 'recoveryStatusCommand' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":12164,"length":21,"messageText":"'recoveryStatusCommand' is declared here.","category":3,"code":2728}]},{"start":11990,"length":21,"messageText":"Block-scoped variable 'recoveryResumeCommand' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":13390,"length":21,"messageText":"'recoveryResumeCommand' is declared here.","category":3,"code":2728}]},{"start":12028,"length":22,"messageText":"Block-scoped variable 'recoveryInspectCommand' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":14810,"length":22,"messageText":"'recoveryInspectCommand' is declared here.","category":3,"code":2728}]},{"start":12067,"length":22,"messageText":"Block-scoped variable 'recoveryAbandonCommand' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":16007,"length":22,"messageText":"'recoveryAbandonCommand' is declared here.","category":3,"code":2728}]}]],[1312,[{"start":19455,"length":6,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'active' does not exist in type 'Record<AgentState, string>'."}]],[1313,[{"start":304,"length":23,"messageText":"Cannot find module 'console-table-printer' or its corresponding type declarations.","category":1,"code":2307},{"start":1937,"length":5,"messageText":"Cannot find namespace 'chalk'.","category":1,"code":2503},{"start":1996,"length":5,"messageText":"Cannot find namespace 'chalk'.","category":1,"code":2503},{"start":12423,"length":5,"messageText":"Cannot find namespace 'chalk'.","category":1,"code":2503},{"start":12482,"length":5,"messageText":"Cannot find namespace 'chalk'.","category":1,"code":2503},{"start":17671,"length":6,"code":2339,"category":1,"messageText":"Property 'number' does not exist on type 'TransparencyOptions'."}]],[1314,[{"start":1530,"length":5,"code":2351,"category":1,"messageText":{"messageText":"This expression is not constructable.","category":1,"code":2351,"next":[{"messageText":"Type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/ioredis/built/index\")' has no construct signatures.","category":1,"code":2761}]}}]],[1325,[{"start":303,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":550,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":603,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":795,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":880,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":1023,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":1312,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304},{"start":1495,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304},{"start":1963,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304},{"start":2298,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304},{"start":2617,"length":25,"messageText":"Cannot find name 'SecurityEnforcementSystem'.","category":1,"code":2304}]],[1326,[{"start":260,"length":23,"messageText":"Module '\"../../verification/index.js\"' has no exported member 'verificationHookManager'. Did you mean to use 'import verificationHookManager from \"../../verification/index.js\"' instead?","category":1,"code":2614},{"start":287,"length":23,"messageText":"Module '\"../../verification/index.js\"' has no exported member 'VerificationCLICommands'. Did you mean to use 'import VerificationCLICommands from \"../../verification/index.js\"' instead?","category":1,"code":2614},{"start":314,"length":25,"messageText":"Module '\"../../verification/index.js\"' has no exported member 'createVerificationCommand'. Did you mean to use 'import createVerificationCommand from \"../../verification/index.js\"' instead?","category":1,"code":2614},{"start":343,"length":26,"messageText":"Module '\"../../verification/index.js\"' has no exported member 'executeVerificationFromCLI'. Did you mean to use 'import executeVerificationFromCLI from \"../../verification/index.js\"' instead?","category":1,"code":2614}]],[1327,[{"start":9435,"length":11,"code":2339,"category":1,"messageText":"Property 'healthCheck' does not exist on type 'DatabaseManager'."},{"start":19526,"length":11,"code":2339,"category":1,"messageText":"Property 'healthCheck' does not exist on type 'DatabaseManager'."}]],[1334,[{"start":8248,"length":11,"code":2339,"category":1,"messageText":"Property 'description' does not exist on type 'CommandRoute'."}]],[1337,[{"start":3087,"length":21,"messageText":"Cannot find name 'createConsolidatedCLI'.","category":1,"code":2304}]],[1352,[{"start":11365,"length":2,"code":2416,"category":1,"messageText":{"messageText":"Property 'on' in type 'EnhancedEventBus' is not assignable to the same property in base type 'EventEmitter<DefaultEventMap>'.","category":1,"code":2416,"next":[{"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'this'.","category":1,"code":2322,"next":[{"messageText":"'this' could be instantiated with an arbitrary type which could be unrelated to 'void'.","category":1,"code":5082}],"canonicalHead":{"code":2322,"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'."}}]}]}},{"start":11854,"length":3,"code":2416,"category":1,"messageText":{"messageText":"Property 'off' in type 'EnhancedEventBus' is not assignable to the same property in base type 'EventEmitter<DefaultEventMap>'.","category":1,"code":2416,"next":[{"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'this'.","category":1,"code":2322,"next":[{"messageText":"'this' could be instantiated with an arbitrary type which could be unrelated to 'void'.","category":1,"code":5082}],"canonicalHead":{"code":2322,"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'."}}]}]}},{"start":12302,"length":4,"code":2416,"category":1,"messageText":{"messageText":"Property 'once' in type 'EnhancedEventBus' is not assignable to the same property in base type 'EventEmitter<DefaultEventMap>'.","category":1,"code":2416,"next":[{"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'this'.","category":1,"code":2322,"next":[{"messageText":"'this' could be instantiated with an arbitrary type which could be unrelated to 'void'.","category":1,"code":5082}],"canonicalHead":{"code":2322,"messageText":"Type '(event: string, handler: (data: unknown) => void) => void' is not assignable to type '<K>(eventName: string | symbol, listener: (...args: any[]) => void) => this'."}}]}]}}]],[1358,[{"start":948,"length":20,"messageText":"'\"./priority-message-queue.js\"' has no exported member named 'PriorityMessageQueue'. Did you mean 'PriorityMessage'?","category":1,"code":2724},{"start":11041,"length":3,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 4, '(iterable?: Iterable<readonly [string, number]>): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type '([string, number] | [string, string])[]' is not assignable to parameter of type 'Iterable<readonly [string, number]>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'IteratorResult<[string, number] | [string, string], any>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, string]>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, string]>' is not assignable to type 'IteratorYieldResult<readonly [string, number]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, number] | [string, string]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, string]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[string, string]' is not assignable to type 'readonly [string, number]'."}}]}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[string, number] | [string, string]>' is not assignable to type '() => Iterator<readonly [string, number], any, any>'."}}]}]}]},{"messageText":"Overload 2 of 4, '(entries?: readonly (readonly [string, number])[]): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322}]}]},"relatedInformation":[]},{"start":16322,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'PriorityMessage'."},{"start":16439,"length":8,"code":2339,"category":1,"messageText":"Property 'deadline' does not exist on type 'PriorityMessage'."},{"start":18888,"length":3,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 4, '(iterable?: Iterable<readonly [string, number]>): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type '([string, number] | [string, string])[]' is not assignable to parameter of type 'Iterable<readonly [string, number]>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'IteratorResult<[string, number] | [string, string], any>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, string]>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, string]>' is not assignable to type 'IteratorYieldResult<readonly [string, number]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, number] | [string, string]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, string]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[string, string]' is not assignable to type 'readonly [string, number]'."}}]}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[string, number] | [string, string]>' is not assignable to type '() => Iterator<readonly [string, number], any, any>'."}}]}]}]},{"messageText":"Overload 2 of 4, '(entries?: readonly (readonly [string, number])[]): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322}]}]},"relatedInformation":[]},{"start":21537,"length":3,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 4, '(iterable?: Iterable<readonly [string, number]>): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type '([string, number] | [string, FailureType])[]' is not assignable to parameter of type 'Iterable<readonly [string, number]>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'IteratorResult<[string, number] | [string, FailureType], any>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, FailureType]>' is not assignable to type 'IteratorResult<readonly [string, number], any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'IteratorYieldResult<[string, number] | [string, FailureType]>' is not assignable to type 'IteratorYieldResult<readonly [string, number]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, number] | [string, FailureType]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type '[string, FailureType]' is not assignable to type 'readonly [string, number]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/communication/failure-recovery-system\", { with: { \"resolution-mode\": \"import\" } }).FailureType' is not assignable to type 'number'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[string, FailureType]' is not assignable to type 'readonly [string, number]'."}}]}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[string, number] | [string, FailureType]>' is not assignable to type '() => Iterator<readonly [string, number], any, any>'."}}]}]}]},{"messageText":"Overload 2 of 4, '(entries?: readonly (readonly [string, number])[]): Map<string, number>', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Type 'import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/communication/failure-recovery-system\", { with: { \"resolution-mode\": \"import\" } }).FailureType' is not assignable to type 'number'.","category":1,"code":2322}]}]},"relatedInformation":[]},{"start":25932,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'PriorityMessage'."},{"start":26060,"length":8,"code":2339,"category":1,"messageText":"Property 'deadline' does not exist on type 'PriorityMessage'."},{"start":26253,"length":4,"code":2339,"category":1,"messageText":"Property 'size' does not exist on type 'PriorityMessage'."},{"start":27186,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'data' does not exist in type 'PriorityMessage'.","relatedInformation":[{"start":2726,"length":15,"messageText":"The expected type comes from property 'originalMessage' which is declared here on type 'FailedMessage'","category":3,"code":6500}]}]],[1359,[{"start":8221,"length":10,"messageText":"Cannot find name 'hasAgentId'.","category":1,"code":2304},{"start":8280,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":8372,"length":10,"messageText":"Cannot find name 'hasAgentId'.","category":1,"code":2304},{"start":8434,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."}]],[1360,[{"start":14779,"length":8,"messageText":"Property 'position' is private and only accessible within class 'UltraFastBinaryEncoder'.","category":1,"code":2341},{"start":14872,"length":8,"messageText":"Property 'position' is private and only accessible within class 'UltraFastBinaryEncoder'.","category":1,"code":2341}]],[1361,[{"start":2536,"length":13,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 2, '(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'Uint32Array<ArrayBufferLike>' is not assignable to parameter of type 'BigInt64Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by 'entries()' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'ArrayIterator<[number, number]>' is not assignable to type 'ArrayIterator<[number, bigint]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[number, number]' is not assignable to type '[number, bigint]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'number' is not assignable to type 'bigint'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[number, number]' is not assignable to type '[number, bigint]'."}}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[number, number]>' is not assignable to type '() => ArrayIterator<[number, bigint]>'."}}]}]}]},{"messageText":"Overload 2 of 2, '(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'Uint32Array<ArrayBufferLike>' is not assignable to parameter of type 'Int32Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types of 'filter(...)[Symbol.toStringTag]' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '\"Uint32Array\"' is not assignable to type '\"Int32Array\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(predicate: (value: number, index: number, array: Uint32Array<ArrayBufferLike>) => any, thisArg?: any) => Uint32Array<ArrayBuffer>' is not assignable to type '(predicate: (value: number, index: number, array: Int32Array<ArrayBufferLike>) => any, thisArg?: any) => Int32Array<ArrayBuffer>'."}}]}]}]}]},"relatedInformation":[]},{"start":3082,"length":13,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 2, '(typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): \"ok\" | \"not-equal\" | \"timed-out\"', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'Uint32Array<ArrayBufferLike>' is not assignable to parameter of type 'BigInt64Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types returned by 'entries()' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'ArrayIterator<[number, number]>' is not assignable to type 'ArrayIterator<[number, bigint]>'.","category":1,"code":2322,"next":[{"messageText":"Type '[number, number]' is not assignable to type '[number, bigint]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'number' is not assignable to type 'bigint'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '[number, number]' is not assignable to type '[number, bigint]'."}}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '() => ArrayIterator<[number, number]>' is not assignable to type '() => ArrayIterator<[number, bigint]>'."}}]}]}]},{"messageText":"Overload 2 of 2, '(typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): \"ok\" | \"not-equal\" | \"timed-out\"', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'Uint32Array<ArrayBufferLike>' is not assignable to parameter of type 'Int32Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types of 'filter(...)[Symbol.toStringTag]' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '\"Uint32Array\"' is not assignable to type '\"Int32Array\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(predicate: (value: number, index: number, array: Uint32Array<ArrayBufferLike>) => any, thisArg?: any) => Uint32Array<ArrayBuffer>' is not assignable to type '(predicate: (value: number, index: number, array: Int32Array<ArrayBufferLike>) => any, thisArg?: any) => Int32Array<ArrayBuffer>'."}}]}]}]}]},"relatedInformation":[]},{"start":10609,"length":13,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"Overload 1 of 2, '(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'BigUint64Array<ArrayBufferLike>' is not assignable to parameter of type 'BigInt64Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"The types of 'filter(...)[Symbol.toStringTag]' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '\"BigUint64Array\"' is not assignable to type '\"BigInt64Array\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(predicate: (value: bigint, index: number, array: BigUint64Array<ArrayBufferLike>) => any, thisArg?: any) => BigUint64Array<ArrayBuffer>' is not assignable to type '(predicate: (value: bigint, index: number, array: BigInt64Array<ArrayBufferLike>) => any, thisArg?: any) => BigInt64Array<ArrayBuffer>'."}}]}]}]},{"messageText":"Overload 2 of 2, '(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number', gave the following error.","category":1,"code":2772,"next":[{"messageText":"Argument of type 'BigUint64Array<ArrayBufferLike>' is not assignable to parameter of type 'Int32Array<ArrayBufferLike>'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'every' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(predicate: (value: bigint, index: number, array: BigUint64Array<ArrayBufferLike>) => boolean, thisArg?: any) => boolean' is not assignable to type '(predicate: (value: number, index: number, array: Int32Array<ArrayBufferLike>) => unknown, thisArg?: any) => boolean'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'predicate' and 'predicate' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Types of parameters 'value' and 'value' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'bigint' is not assignable to type 'number'.","category":1,"code":2322}]}]}]}]}]}]}]},"relatedInformation":[]}]],[1364,[{"start":32,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './shared-buffer-bus.js'?","category":1,"code":2835},{"start":88,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './websocket-cluster.js'?","category":1,"code":2835},{"start":151,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[1365,[{"start":62,"length":16,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/logger.js'?","category":1,"code":2835},{"start":107,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/helpers.js'?","category":1,"code":2835},{"start":282,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835}]],[1368,[{"start":197,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './shared-buffer-bus.js'?","category":1,"code":2835}]],[1369,[{"start":75,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './AgentHierarchyTree.js'?","category":1,"code":2835},{"start":131,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './AgentHierarchyTree.js'?","category":1,"code":2835},{"start":192,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './PerformanceCharts.js'?","category":1,"code":2835},{"start":278,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './PerformanceCharts.js'?","category":1,"code":2835},{"start":335,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './ResourceGauges.js'?","category":1,"code":2835},{"start":425,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './ResourceGauges.js'?","category":1,"code":2835},{"start":478,"length":17,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './EventTimeline.js'?","category":1,"code":2835},{"start":533,"length":17,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './EventTimeline.js'?","category":1,"code":2835},{"start":592,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './AgentNetworkTopology.js'?","category":1,"code":2835},{"start":681,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './AgentNetworkTopology.js'?","category":1,"code":2835},{"start":736,"length":13,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './Dashboard.js'?","category":1,"code":2835},{"start":803,"length":13,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './Dashboard.js'?","category":1,"code":2835}]],[1370,[{"start":367,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './config-manager.js'?","category":1,"code":2835},{"start":6924,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":7132,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | number | symbol' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":950,"length":7,"messageText":"The expected type comes from property 'feature' which is declared here on type 'ConsentDialogOptions'","category":3,"code":6500}]},{"start":7164,"length":7,"messageText":"Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'.","category":1,"code":2731},{"start":7433,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | number | symbol' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":423,"length":7,"messageText":"The expected type comes from property 'feature' which is declared here on type 'ConsentRecord'","category":3,"code":6500}]},{"start":7734,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":10150,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":10406,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":10466,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | number | symbol' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"start":423,"length":7,"messageText":"The expected type comes from property 'feature' which is declared here on type 'ConsentRecord'","category":3,"code":6500}]},{"start":10768,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | number | symbol' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'number' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1375,[{"start":655,"length":6,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":665,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":684,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":700,"length":19,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":723,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1146,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1162,"length":11,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1322,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1341,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1484,"length":16,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1504,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1523,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1725,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1742,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1759,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":1775,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":4052,"length":15,"messageText":"Cannot find name 'ExperienceLevel'.","category":1,"code":2304},{"start":4094,"length":13,"messageText":"Cannot find name 'ConfigManager'.","category":1,"code":2304},{"start":4122,"length":19,"messageText":"Cannot find name 'AutoDetectionResult'.","category":1,"code":2304},{"start":4216,"length":13,"messageText":"Cannot find name 'ConfigManager'.","category":1,"code":2304},{"start":4614,"length":15,"messageText":"Cannot find name 'ExperienceLevel'.","category":1,"code":2304},{"start":4643,"length":12,"messageText":"Cannot find name 'FeatureFlags'.","category":1,"code":2304},{"start":4832,"length":13,"messageText":"Cannot find name 'ConfigManager'.","category":1,"code":2304},{"start":4915,"length":14,"messageText":"Cannot find name 'validateConfig'.","category":1,"code":2304}]],[1376,[{"start":344,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './config-manager.js'?","category":1,"code":2835}]],[1378,[{"start":12944,"length":6,"code":2739,"category":1,"messageText":"Type '{ environment: \"development\"; cluster: false; }' is missing the following properties from type 'ServerConfig': host, port","relatedInformation":[{"start":2646,"length":6,"messageText":"The expected type comes from property 'server' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ environment: \"development\"; cluster: false; }' is not assignable to type 'ServerConfig'."}},{"start":13013,"length":7,"code":2741,"category":1,"messageText":"Property 'format' is missing in type '{ level: \"debug\"; outputs: \"console\"[]; }' but required in type 'WebPortalLoggingConfig'.","relatedInformation":[{"start":2160,"length":6,"messageText":"'format' is declared here.","category":3,"code":2728},{"start":2822,"length":7,"messageText":"The expected type comes from property 'logging' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ level: \"debug\"; outputs: \"console\"[]; }' is not assignable to type 'WebPortalLoggingConfig'."}},{"start":13093,"length":7,"code":2739,"category":1,"messageText":"Type '{ secure: false; }' is missing the following properties from type '{ secret: string; maxAge: number; secure: boolean; httpOnly: boolean; }': secret, maxAge, httpOnly","relatedInformation":[{"start":1608,"length":7,"messageText":"The expected type comes from property 'session' which is declared here on type 'SecurityConfig'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ secure: false; }' is not assignable to type '{ secret: string; maxAge: number; secure: boolean; httpOnly: boolean; }'."}},{"start":13203,"length":6,"code":2739,"category":1,"messageText":"Type '{ environment: \"production\"; cluster: true; }' is missing the following properties from type 'ServerConfig': host, port","relatedInformation":[{"start":2646,"length":6,"messageText":"The expected type comes from property 'server' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ environment: \"production\"; cluster: true; }' is not assignable to type 'ServerConfig'."}},{"start":13270,"length":7,"code":2741,"category":1,"messageText":"Property 'format' is missing in type '{ level: \"warn\"; outputs: \"file\"[]; }' but required in type 'WebPortalLoggingConfig'.","relatedInformation":[{"start":2160,"length":6,"messageText":"'format' is declared here.","category":3,"code":2728},{"start":2822,"length":7,"messageText":"The expected type comes from property 'logging' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ level: \"warn\"; outputs: \"file\"[]; }' is not assignable to type 'WebPortalLoggingConfig'."}},{"start":13346,"length":7,"code":2739,"category":1,"messageText":"Type '{ secure: true; }' is missing the following properties from type '{ secret: string; maxAge: number; secure: boolean; httpOnly: boolean; }': secret, maxAge, httpOnly","relatedInformation":[{"start":1608,"length":7,"messageText":"The expected type comes from property 'session' which is declared here on type 'SecurityConfig'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ secure: true; }' is not assignable to type '{ secret: string; maxAge: number; secure: boolean; httpOnly: boolean; }'."}},{"start":13391,"length":4,"code":2739,"category":1,"messageText":"Type '{ allowedOrigins: undefined[]; }' is missing the following properties from type 'CorsConfig': enabled, allowedMethods, allowedHeaders, credentials, maxAge","relatedInformation":[{"start":2802,"length":4,"messageText":"The expected type comes from property 'cors' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ allowedOrigins: undefined[]; }' is not assignable to type 'CorsConfig'."}},{"start":13521,"length":6,"code":2739,"category":1,"messageText":"Type '{ environment: \"test\"; port: number; }' is missing the following properties from type 'ServerConfig': host, cluster","relatedInformation":[{"start":2646,"length":6,"messageText":"The expected type comes from property 'server' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ environment: \"test\"; port: number; }' is not assignable to type 'ServerConfig'."}},{"start":13595,"length":8,"code":2741,"category":1,"messageText":"Property 'type' is missing in type '{ connection: { filename: string; }; }' but required in type 'DatabaseConfig'.","relatedInformation":[{"start":932,"length":4,"messageText":"'type' is declared here.","category":3,"code":2728},{"start":2718,"length":8,"messageText":"The expected type comes from property 'database' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ connection: { filename: string; }; }' is not assignable to type 'DatabaseConfig'."}},{"start":13697,"length":7,"code":2741,"category":1,"messageText":"Property 'format' is missing in type '{ level: \"error\"; outputs: \"console\"[]; }' but required in type 'WebPortalLoggingConfig'.","relatedInformation":[{"start":2160,"length":6,"messageText":"'format' is declared here.","category":3,"code":2728},{"start":2822,"length":7,"messageText":"The expected type comes from property 'logging' which is declared here on type 'Partial<WebPortalConfig>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ level: \"error\"; outputs: \"console\"[]; }' is not assignable to type 'WebPortalLoggingConfig'."}}]],[1379,[{"start":3543,"length":16,"messageText":"Cannot redeclare exported variable 'interactiveSetup'.","category":1,"code":2323},{"start":9820,"length":13,"messageText":"Cannot redeclare exported variable 'validateSetup'.","category":1,"code":2323},{"start":11131,"length":17,"messageText":"Cannot redeclare exported variable 'resetToZeroConfig'.","category":1,"code":2323},{"start":11740,"length":16,"messageText":"Cannot redeclare exported variable 'interactiveSetup'.","category":1,"code":2323},{"start":11740,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'interactiveSetup'.","category":1,"code":2484},{"start":11758,"length":13,"messageText":"Cannot redeclare exported variable 'validateSetup'.","category":1,"code":2323},{"start":11758,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'validateSetup'.","category":1,"code":2484},{"start":11773,"length":17,"messageText":"Cannot redeclare exported variable 'resetToZeroConfig'.","category":1,"code":2323},{"start":11773,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'resetToZeroConfig'.","category":1,"code":2484}]],[1380,[{"start":3741,"length":16,"code":2339,"category":1,"messageText":"Property 'estimateTeamSize' does not exist on type 'ProjectDetectionEngine'."},{"start":3796,"length":16,"code":2339,"category":1,"messageText":"Property 'identifyPatterns' does not exist on type 'ProjectDetectionEngine'."},{"start":5768,"length":27,"code":2339,"category":1,"messageText":"Property 'calculateEnsembleConfidence' does not exist on type 'ProjectDetectionEngine'."},{"start":5860,"length":17,"code":2339,"category":1,"messageText":"Property 'generateReasoning' does not exist on type 'ProjectDetectionEngine'."},{"start":9200,"length":18,"code":2339,"category":1,"messageText":"Property 'analyzePackageJson' does not exist on type 'ProjectDetectionEngine'."},{"start":9295,"length":22,"code":2339,"category":1,"messageText":"Property 'analyzeRequirementsTxt' does not exist on type 'ProjectDetectionEngine'."},{"start":9388,"length":16,"code":2339,"category":1,"messageText":"Property 'analyzeCargoToml' does not exist on type 'ProjectDetectionEngine'."},{"start":10067,"length":14,"code":2339,"category":1,"messageText":"Property 'getSourceFiles' does not exist on type 'ProjectDetectionEngine'."},{"start":11174,"length":14,"code":2339,"category":1,"messageText":"Property 'getSourceFiles' does not exist on type 'ProjectDetectionEngine'."},{"start":11277,"length":18,"code":2551,"category":1,"messageText":"Property 'detectRestPatterns' does not exist on type 'ProjectDetectionEngine'. Did you mean 'detectApiPatterns'?","relatedInformation":[{"start":11023,"length":17,"messageText":"'detectApiPatterns' is declared here.","category":3,"code":2728}]},{"start":11437,"length":21,"code":2551,"category":1,"messageText":"Property 'detectGraphQLPatterns' does not exist on type 'ProjectDetectionEngine'. Did you mean 'detectApiPatterns'?","relatedInformation":[{"start":11023,"length":17,"messageText":"'detectApiPatterns' is declared here.","category":3,"code":2728}]},{"start":11603,"length":23,"code":2339,"category":1,"messageText":"Property 'detectWebSocketPatterns' does not exist on type 'ProjectDetectionEngine'."},{"start":12977,"length":13,"code":2339,"category":1,"messageText":"Property 'getConfigType' does not exist on type 'ProjectDetectionEngine'."},{"start":14293,"length":15,"code":2339,"category":1,"messageText":"Property 'readPackageJson' does not exist on type 'ProjectDetectionEngine'."},{"start":15659,"length":16,"code":2339,"category":1,"messageText":"Property 'getGitBranchInfo' does not exist on type 'ProjectDetectionEngine'."},{"start":15703,"length":16,"code":2339,"category":1,"messageText":"Property 'getGitCommitInfo' does not exist on type 'ProjectDetectionEngine'."},{"start":15747,"length":18,"code":2339,"category":1,"messageText":"Property 'getGitLanguageInfo' does not exist on type 'ProjectDetectionEngine'."},{"start":16898,"length":26,"code":2339,"category":1,"messageText":"Property 'assessDocumentationQuality' does not exist on type 'ProjectDetectionEngine'."},{"start":17038,"length":30,"code":2339,"category":1,"messageText":"Property 'calculateDocumentationCoverage' does not exist on type 'ProjectDetectionEngine'."},{"start":17733,"length":17,"code":2339,"category":1,"messageText":"Property 'evaluateIndicator' does not exist on type 'ProjectDetectionEngine'."}]],[1381,[{"start":6011,"length":15,"code":2551,"category":1,"messageText":"Property 'createCliBranch' does not exist on type 'DecisionTreeGenerator'. Did you mean 'createApiBranch'?","relatedInformation":[{"start":8278,"length":15,"messageText":"'createApiBranch' is declared here.","category":3,"code":2728}]},{"start":6170,"length":19,"code":2339,"category":1,"messageText":"Property 'createLibraryBranch' does not exist on type 'DecisionTreeGenerator'."},{"start":6331,"length":18,"code":2551,"category":1,"messageText":"Property 'createMobileBranch' does not exist on type 'DecisionTreeGenerator'. Did you mean 'createApiBranch'?","relatedInformation":[{"start":8278,"length":15,"messageText":"'createApiBranch' is declared here.","category":3,"code":2728}]},{"start":6531,"length":23,"code":2339,"category":1,"messageText":"Property 'createDataScienceBranch' does not exist on type 'DecisionTreeGenerator'."},{"start":6668,"length":19,"code":2339,"category":1,"messageText":"Property 'createGenericBranch' does not exist on type 'DecisionTreeGenerator'."},{"start":7325,"length":19,"code":2339,"category":1,"messageText":"Property 'createFrameworkNode' does not exist on type 'DecisionTreeGenerator'."},{"start":8740,"length":17,"code":2339,"category":1,"messageText":"Property 'createApiTypeNode' does not exist on type 'DecisionTreeGenerator'."},{"start":8904,"length":18,"code":2339,"category":1,"messageText":"Property 'createDatabaseNode' does not exist on type 'DecisionTreeGenerator'."},{"start":9070,"length":24,"code":2339,"category":1,"messageText":"Property 'createAuthenticationNode' does not exist on type 'DecisionTreeGenerator'."}]],[1382,[{"start":13571,"length":13,"messageText":"Cannot find module '@iarna/toml' or its corresponding type declarations.","category":1,"code":2307},{"start":14111,"length":13,"messageText":"Cannot find module '@iarna/toml' or its corresponding type declarations.","category":1,"code":2307}]],[1383,[{"start":4900,"length":14,"code":2339,"category":1,"messageText":"Property 'getActiveHints' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":4941,"length":19,"code":2339,"category":1,"messageText":"Property 'getActiveAnimations' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":5034,"length":24,"code":2339,"category":1,"messageText":"Property 'getAccessibilitySettings' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":6003,"length":24,"code":2339,"category":1,"messageText":"Property 'showLevelTransitionHints' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":6417,"length":20,"code":2339,"category":1,"messageText":"Property 'animateSectionToggle' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":6652,"length":16,"code":2339,"category":1,"messageText":"Property 'showSectionHints' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":7581,"length":18,"code":2339,"category":1,"messageText":"Property 'animateValueChange' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":7684,"length":22,"code":2339,"category":1,"messageText":"Property 'checkSectionCompletion' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":7770,"length":25,"code":2339,"category":1,"messageText":"Property 'updateDependentComponents' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":7862,"length":20,"code":2339,"category":1,"messageText":"Property 'showValueChangeHints' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":8220,"length":21,"code":2339,"category":1,"messageText":"Property 'getIncompleteSections' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":8387,"length":15,"code":2339,"category":1,"messageText":"Property 'canUpgradeLevel' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":8665,"length":18,"code":2339,"category":1,"messageText":"Property 'getUpgradeBenefits' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":9948,"length":20,"code":2339,"category":1,"messageText":"Property 'generateOverviewHelp' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":10006,"length":21,"code":2339,"category":1,"messageText":"Property 'getCurrentSectionHelp' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":10066,"length":22,"code":2339,"category":1,"messageText":"Property 'getTroubleshootingHelp' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":10120,"length":11,"code":2339,"category":1,"messageText":"Property 'getExamples' does not exist on type 'ProgressiveDisclosureEngine'."},{"start":10164,"length":16,"code":2339,"category":1,"messageText":"Property 'getResourceLinks' does not exist on type 'ProgressiveDisclosureEngine'."}]],[1385,[{"start":4508,"length":16,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":7698,"length":27,"code":2551,"category":1,"messageText":"Property 'filterConfigurationForLevel' does not exist on type 'ProgressiveDisclosureEngine'. Did you mean 'setConfigurationLevel'?","relatedInformation":[{"file":"../src/config/ui/progressive-disclosure-engine.ts","start":5144,"length":21,"messageText":"'setConfigurationLevel' is declared here.","category":3,"code":2728}]},{"start":11721,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'string[]' is not assignable to type 'ConfigurationSuggestion[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type 'ConfigurationSuggestion'.","category":1,"code":2322}]}},{"start":12297,"length":13,"messageText":"Cannot find module '@iarna/toml' or its corresponding type declarations.","category":1,"code":2307},{"start":12912,"length":13,"messageText":"Cannot find module '@iarna/toml' or its corresponding type declarations.","category":1,"code":2307},{"start":17927,"length":16,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":21733,"length":2,"code":2339,"category":1,"messageText":"Property 'on' does not exist on type 'MultiTierStorageManager'."}]],[1386,[{"start":19239,"length":9,"code":2339,"category":1,"messageText":"Property 'timestamp' does not exist on type 'HookExecutionResult'."}]],[1387,[{"start":11442,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'ResourceUsage' is not assignable to type 'Record<string, number>'.","category":1,"code":2322,"next":[{"messageText":"Index signature for type 'string' is missing in type 'ResourceUsage'.","category":1,"code":2329}]},"relatedInformation":[{"file":"../src/swarm/types.ts","start":8482,"length":13,"messageText":"The expected type comes from property 'resourcesUsed' which is declared here on type 'TaskResult'","category":3,"code":6500}]},{"start":11770,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'ResourceUsage' is not assignable to type 'Record<string, number>'.","category":1,"code":2322,"next":[{"messageText":"Index signature for type 'string' is missing in type 'ResourceUsage'.","category":1,"code":2329}]},"relatedInformation":[{"file":"../src/swarm/types.ts","start":8482,"length":13,"messageText":"The expected type comes from property 'resourcesUsed' which is declared here on type 'TaskResult'","category":3,"code":6500}]}]],[1394,[{"start":3301,"length":8,"code":2322,"category":1,"messageText":"Type '\"hybrid\"' is not assignable to type 'LoadBalancingStrategy'.","relatedInformation":[{"start":581,"length":8,"messageText":"The expected type comes from property 'strategy' which is declared here on type 'LoadBalancerConfig'","category":3,"code":6500}]},{"start":4265,"length":12,"code":2345,"category":1,"messageText":"Argument of type '{ id: string; }' is not assignable to parameter of type 'string'."},{"start":4423,"length":12,"code":2345,"category":1,"messageText":"Argument of type '{ id: string; }' is not assignable to parameter of type 'string'."},{"start":4589,"length":12,"code":2345,"category":1,"messageText":"Argument of type '{ id: string; }' is not assignable to parameter of type 'string'."},{"start":4777,"length":16,"code":2345,"category":1,"messageText":"Argument of type '{ id: string; }' is not assignable to parameter of type 'string'."},{"start":4955,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":4969,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":9306,"length":12,"code":2678,"category":1,"messageText":"Type '\"load-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":9472,"length":19,"code":2678,"category":1,"messageText":"Type '\"performance-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":9652,"length":18,"code":2678,"category":1,"messageText":"Type '\"capability-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":9829,"length":16,"code":2678,"category":1,"messageText":"Type '\"affinity-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":10007,"length":12,"code":2678,"category":1,"messageText":"Type '\"cost-based\"' is not comparable to type 'LoadBalancingStrategy'."},{"start":10173,"length":8,"code":2678,"category":1,"messageText":"Type '\"hybrid\"' is not comparable to type 'LoadBalancingStrategy'."}]],[1396,[{"start":397,"length":45,"messageText":"Module './types/sdk.js' has already exported a member named 'Agent'. Consider explicitly re-exporting to resolve the ambiguity.","category":1,"code":2308},{"start":490,"length":7,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":502,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":520,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":539,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":577,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":638,"length":5,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":648,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":667,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":684,"length":18,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":824,"length":19,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":848,"length":22,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":875,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205}]],[1399,[{"start":4135,"length":8,"code":2345,"category":1,"messageText":"Argument of type '\"paused\"' is not assignable to parameter of type 'AgentState'."},{"start":4817,"length":8,"code":2345,"category":1,"messageText":"Argument of type '\"active\"' is not assignable to parameter of type 'AgentState'."},{"start":5564,"length":12,"code":2345,"category":1,"messageText":"Argument of type '\"terminated\"' is not assignable to parameter of type 'AgentState'."},{"start":6624,"length":15,"code":2345,"category":1,"messageText":"Argument of type '\"checkpointing\"' is not assignable to parameter of type 'AgentState'."},{"start":7122,"length":8,"code":2345,"category":1,"messageText":"Argument of type '\"active\"' is not assignable to parameter of type 'AgentState'."},{"start":10436,"length":6,"code":2322,"category":1,"messageText":"Type 'Promise<string>' is not assignable to type 'string'."},{"start":10650,"length":6,"code":2322,"category":1,"messageText":"Type 'Promise<string>' is not assignable to type 'string'."}]],[1405,[{"start":722,"length":8,"messageText":"Namespace '\"/mnt/c/Users/masha/Documents/claude-flow-novice/node_modules/better-sqlite3/lib/index\".export=' has no exported member 'Database'.","category":1,"code":2694}]],[1406,[{"start":13379,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'GCounter' is not assignable to parameter of type '{ payload: Map<string, number>; vectorClock?: Map<string, number>; }'.","category":1,"code":2345,"next":[{"messageText":"Property 'payload' is private in type 'GCounter' but not in type '{ payload: Map<string, number>; vectorClock?: Map<string, number>; }'.","category":1,"code":2325}]}}]],[1435,[{"start":538,"length":11,"messageText":"The 'import.meta' meta-property is not allowed in files which will build into CommonJS output.","category":1,"code":1470},{"start":10452,"length":11,"messageText":"The 'import.meta' meta-property is not allowed in files which will build into CommonJS output.","category":1,"code":1470}]],[1453,[{"start":10324,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'DashboardConfig'.","category":1,"code":2484},{"start":10344,"length":12,"messageText":"Export declaration conflicts with exported declaration of 'FleetMetrics'.","category":1,"code":2484},{"start":10361,"length":13,"messageText":"Export declaration conflicts with exported declaration of 'SystemMetrics'.","category":1,"code":2484},{"start":10379,"length":12,"messageText":"Export declaration conflicts with exported declaration of 'SwarmMetrics'.","category":1,"code":2484},{"start":10396,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'DatabaseMetrics'.","category":1,"code":2484},{"start":10416,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'NetworkMetrics'.","category":1,"code":2484},{"start":10435,"length":5,"messageText":"Export declaration conflicts with exported declaration of 'Alert'.","category":1,"code":2484},{"start":10445,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'ConnectionStatus'.","category":1,"code":2484}]],[1455,[{"start":977,"length":13,"code":2322,"category":1,"messageText":"Type 'Timeout' is not assignable to type 'number'."}]],[1457,[{"start":43,"length":19,"messageText":"Module './MemoryDashboard' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/MemoryDashboard.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":199,"length":21,"messageText":"Module './RedisKeyInspector' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/RedisKeyInspector.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":265,"length":29,"messageText":"Module './SQLiteSchemaVisualization' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/SQLiteSchemaVisualization.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":336,"length":26,"messageText":"Module './MemoryHeatmapComponent' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/MemoryHeatmapComponent.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":400,"length":22,"messageText":"Module './OptimizationEngine' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/OptimizationEngine.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":463,"length":25,"messageText":"Module './MemoryPatternAnalysis' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/MemoryPatternAnalysis.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":523,"length":19,"messageText":"Module './DashboardLayout' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/DashboardLayout.tsx', but '--jsx' is not set.","category":1,"code":6142}]],[1458,[{"start":133,"length":18,"messageText":"Module './FleetDashboard' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/FleetDashboard.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":195,"length":18,"messageText":"Module './FleetDashboard' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/FleetDashboard.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":248,"length":17,"messageText":"Module './FleetOverview' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/FleetOverview.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":308,"length":17,"messageText":"Module './FleetOverview' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/FleetOverview.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":365,"length":22,"messageText":"Module './SwarmVisualization' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/SwarmVisualization.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":435,"length":22,"messageText":"Module './SwarmVisualization' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/SwarmVisualization.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":495,"length":20,"messageText":"Module './PerformanceChart' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/PerformanceChart.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":561,"length":20,"messageText":"Module './PerformanceChart' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/PerformanceChart.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":614,"length":15,"messageText":"Module './AlertsPanel' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/AlertsPanel.tsx', but '--jsx' is not set.","category":1,"code":6142},{"start":670,"length":15,"messageText":"Module './AlertsPanel' was resolved to '/mnt/c/Users/masha/Documents/claude-flow-novice/src/dashboard/components/AlertsPanel.tsx', but '--jsx' is not set.","category":1,"code":6142}]],[1460,[{"start":14327,"length":19,"code":2739,"category":1,"messageText":"Type '{}' is missing the following properties from type '{ source: string; version: string; correlationId?: string; causationId?: string; retryCount?: number; timeout?: number; tags?: string[]; traceId?: string; spanId?: string; }': source, version","canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type '{ source: string; version: string; correlationId?: string; causationId?: string; retryCount?: number; timeout?: number; tags?: string[]; traceId?: string; spanId?: string; }'."}},{"start":14507,"length":19,"code":2739,"category":1,"messageText":"Type '{}' is missing the following properties from type '{ source: string; version: string; correlationId?: string; causationId?: string; retryCount?: number; timeout?: number; tags?: string[]; traceId?: string; spanId?: string; }': source, version","canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type '{ source: string; version: string; correlationId?: string; causationId?: string; retryCount?: number; timeout?: number; tags?: string[]; traceId?: string; spanId?: string; }'."}}]],[1466,[{"start":156,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":177,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":266,"length":16,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":286,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":374,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":389,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":474,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":489,"length":5,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":564,"length":11,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":577,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":738,"length":32,"messageText":"Cannot find module './config/phase4-environment.js' or its corresponding type declarations.","category":1,"code":2307},{"start":1149,"length":32,"messageText":"Cannot find module './config/phase4-environment.js' or its corresponding type declarations.","category":1,"code":2307}]],[1470,[{"start":554,"length":23,"messageText":"Module '\"../verification/index.js\"' has no exported member 'verificationHookManager'. Did you mean to use 'import verificationHookManager from \"../verification/index.js\"' instead?","category":1,"code":2614},{"start":581,"length":28,"messageText":"Module '\"../verification/index.js\"' has no exported member 'initializeVerificationSystem'. Did you mean to use 'import initializeVerificationSystem from \"../verification/index.js\"' instead?","category":1,"code":2614},{"start":613,"length":27,"messageText":"Module '\"../verification/index.js\"' has no exported member 'getVerificationSystemStatus'. Did you mean to use 'import getVerificationSystemStatus from \"../verification/index.js\"' instead?","category":1,"code":2614},{"start":644,"length":26,"messageText":"Module '\"../verification/index.js\"' has no exported member 'shutdownVerificationSystem'. Did you mean to use 'import shutdownVerificationSystem from \"../verification/index.js\"' instead?","category":1,"code":2614},{"start":6078,"length":28,"messageText":"Property 'initializeVerificationSystem' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/verification/index\", { with: { \"resolution-mode\": \"import\" } })'.","category":1,"code":2339}]],[1475,[{"start":109,"length":15,"messageText":"Cannot find module '@/types/swarm' or its corresponding type declarations.","category":1,"code":2307},{"start":4027,"length":6,"code":2339,"category":1,"messageText":"Property 'agents' does not exist on type 'WebSocketMessage'."},{"start":4137,"length":6,"code":2339,"category":1,"messageText":"Property 'agents' does not exist on type 'WebSocketMessage'."},{"start":4310,"length":5,"code":2339,"category":1,"messageText":"Property 'tasks' does not exist on type 'WebSocketMessage'."},{"start":4418,"length":5,"code":2339,"category":1,"messageText":"Property 'tasks' does not exist on type 'WebSocketMessage'."},{"start":4592,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'WebSocketMessage'."},{"start":4704,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'WebSocketMessage'."},{"start":4885,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'WebSocketMessage'."},{"start":4904,"length":7,"code":2339,"category":1,"messageText":"Property 'updates' does not exist on type 'WebSocketMessage'."},{"start":5074,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'WebSocketMessage'."},{"start":5130,"length":7,"code":2339,"category":1,"messageText":"Property 'updates' does not exist on type 'WebSocketMessage'."},{"start":5387,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'WebSocketMessage'."},{"start":5405,"length":7,"code":2339,"category":1,"messageText":"Property 'updates' does not exist on type 'WebSocketMessage'."},{"start":5571,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'WebSocketMessage'."},{"start":5625,"length":7,"code":2339,"category":1,"messageText":"Property 'updates' does not exist on type 'WebSocketMessage'."},{"start":6341,"length":12,"code":2339,"category":1,"messageText":"Property 'connectionId' does not exist on type 'WebSocketMessage'."}]],[1480,[{"start":5296,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":5310,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5460,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":5488,"length":4,"code":2339,"category":1,"messageText":"Property 'from' does not exist on type 'unknown'."},{"start":5511,"length":2,"code":2339,"category":1,"messageText":"Property 'to' does not exist on type 'unknown'."},{"start":5660,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":5682,"length":7,"code":2339,"category":1,"messageText":"Property 'agentId' does not exist on type 'unknown'."},{"start":5814,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":5871,"length":8,"code":2339,"category":1,"messageText":"Property 'duration' does not exist on type 'unknown'."},{"start":5896,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":6021,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":6041,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":6279,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."}]],[1482,[{"start":567,"length":9,"messageText":"'\"../mcp/server.js\"' has no exported member named 'McpServer'. Did you mean 'MCPServer'?","category":1,"code":2724,"relatedInformation":[{"file":"../src/mcp/server.ts","start":1872,"length":9,"messageText":"'MCPServer' is declared here.","category":3,"code":2728}]},{"start":6909,"length":44,"messageText":"Expected 4 arguments, but got 2.","category":1,"code":2554,"relatedInformation":[{"file":"../src/agents/agent-manager.ts","start":3939,"length":19,"messageText":"An argument for 'eventBus' was not provided.","category":3,"code":6210}]},{"start":7806,"length":42,"messageText":"Expected 0-1 arguments, but got 3.","category":1,"code":2554},{"start":9155,"length":19,"messageText":"Expected 0-2 arguments, but got 3.","category":1,"code":2554},{"start":10351,"length":47,"messageText":"Expected 4 arguments, but got 2.","category":1,"code":2554,"relatedInformation":[{"file":"../src/monitoring/real-time-monitor.ts","start":4001,"length":19,"messageText":"An argument for 'eventBus' was not provided.","category":3,"code":6210}]},{"start":11070,"length":9,"messageText":"Property 'McpServer' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'.","category":1,"code":2339},{"start":13690,"length":9,"code":2339,"category":1,"messageText":"Property 'component' does not exist on type 'unknown'."},{"start":13707,"length":6,"code":2339,"category":1,"messageText":"Property 'status' does not exist on type 'unknown'."},{"start":13721,"length":7,"code":2339,"category":1,"messageText":"Property 'message' does not exist on type 'unknown'."},{"start":13861,"length":9,"code":2339,"category":1,"messageText":"Property 'component' does not exist on type 'unknown'."},{"start":13881,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":13928,"length":9,"code":2339,"category":1,"messageText":"Property 'component' does not exist on type 'unknown'."},{"start":13958,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":14122,"length":6,"code":2339,"category":1,"messageText":"Property 'metric' does not exist on type 'unknown'."},{"start":14140,"length":5,"code":2339,"category":1,"messageText":"Property 'value' does not exist on type 'unknown'."}]],[1483,[{"start":9624,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":14624,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":14759,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":14889,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":16089,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":16148,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]},{"start":16760,"length":18,"messageText":"'LifecycleEventType' cannot be used as a value because it was imported using 'import type'.","category":1,"code":1361,"relatedInformation":[{"start":367,"length":18,"messageText":"'LifecycleEventType' was imported here.","category":3,"code":1376}]}]],[1484,[{"start":265,"length":8,"messageText":"Module '\"better-sqlite3\"' has no exported member 'Database'.","category":1,"code":2305}]],[1492,[{"start":181,"length":21,"messageText":"'\"@modelcontextprotocol/sdk/types.js\"' has no exported member named 'CallToolRequestSchema'. Did you mean 'CallToolRequest'?","category":1,"code":2724},{"start":206,"length":22,"messageText":"Module '\"@modelcontextprotocol/sdk/types.js\"' has no exported member 'ListToolsRequestSchema'.","category":1,"code":2305},{"start":258,"length":11,"messageText":"Module '\"@modelcontextprotocol/sdk/types.js\"' has no exported member 'TextContent'.","category":1,"code":2305},{"start":273,"length":12,"messageText":"Module '\"@modelcontextprotocol/sdk/types.js\"' has no exported member 'ImageContent'.","category":1,"code":2305},{"start":289,"length":16,"messageText":"Module '\"@modelcontextprotocol/sdk/types.js\"' has no exported member 'EmbeddedResource'.","category":1,"code":2305},{"start":1525,"length":145,"messageText":"Expected 0 arguments, but got 2.","category":1,"code":2554},{"start":2264,"length":6,"code":2339,"category":1,"messageText":"Property 'params' does not exist on type 'unknown'."},{"start":2285,"length":6,"code":2339,"category":1,"messageText":"Property 'params' does not exist on type 'unknown'."},{"start":7027,"length":6,"code":2339,"category":1,"messageText":"Property 'output' does not exist on type 'never'."},{"start":21926,"length":16,"messageText":"Cannot find name 'executeSparcMode'.","category":1,"code":2304}]],[1497,[{"start":1088,"length":39,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":1992,"length":8,"code":2339,"category":1,"messageText":"Property 'callTool' does not exist on type 'Client'."}]],[1502,[{"start":546,"length":12,"code":2551,"category":1,"messageText":"Property 'runMCPServer' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'. Did you mean 'MCPServer'?","relatedInformation":[{"file":"../src/mcp/server.ts","start":1872,"length":9,"messageText":"'MCPServer' is declared here.","category":3,"code":2728}]},{"start":581,"length":12,"code":2551,"category":1,"messageText":"Property 'runMCPServer' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'. Did you mean 'MCPServer'?","relatedInformation":[{"file":"../src/mcp/server.ts","start":1872,"length":9,"messageText":"'MCPServer' is declared here.","category":3,"code":2728}]},{"start":619,"length":7,"code":2339,"category":1,"messageText":"Property 'default' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":649,"length":7,"code":2339,"category":1,"messageText":"Property 'default' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'."}]],[1503,[{"start":677,"length":12,"messageText":"Property 'runMCPServer' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/mcp/server\", { with: { \"resolution-mode\": \"import\" } })'.","category":1,"code":2339}]],[1504,[{"start":221,"length":9,"messageText":"Module '\"../client.js\"' has no exported member 'MCPClient'. Did you mean to use 'import MCPClient from \"../client.js\"' instead?","category":1,"code":2614}]],[1507,[{"start":211,"length":9,"messageText":"Module '\"../client.js\"' has no exported member 'MCPClient'. Did you mean to use 'import MCPClient from \"../client.js\"' instead?","category":1,"code":2614}]],[1508,[{"start":227,"length":9,"messageText":"Module '\"../client.js\"' has no exported member 'MCPClient'. Did you mean to use 'import MCPClient from \"../client.js\"' instead?","category":1,"code":2614}]],[1509,[{"start":118,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":134,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":219,"length":12,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":235,"length":19,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":331,"length":18,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":353,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":442,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":463,"length":14,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":481,"length":13,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":569,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":588,"length":15,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":607,"length":17,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205},{"start":628,"length":18,"messageText":"Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.","category":1,"code":1205}]],[1510,[{"start":335,"length":9,"messageText":"Cannot find module 'sqlite3' or its corresponding type declarations.","category":1,"code":2307},{"start":1487,"length":6,"code":2416,"category":1,"messageText":{"messageText":"Property 'config' in type 'SQLiteEnhancedMemoryManager' is not assignable to the same property in base type 'AdvancedMemoryManager'.","category":1,"code":2416,"next":[{"messageText":"Type 'SQLiteMemoryConfig' is missing the following properties from type '{ maxMemorySize: number; cacheSize: number; cacheTtl: number; autoCompress: boolean; autoCleanup: boolean; cleanupInterval: number; indexingEnabled: boolean; persistenceEnabled: boolean; compressionThreshold: number; backupRetention: number; }': maxMemorySize, cacheSize, cacheTtl, autoCompress, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'SQLiteMemoryConfig' is not assignable to type '{ maxMemorySize: number; cacheSize: number; cacheTtl: number; autoCompress: boolean; autoCleanup: boolean; cleanupInterval: number; indexingEnabled: boolean; persistenceEnabled: boolean; compressionThreshold: number; backupRetention: number; }'."}}]}},{"start":3038,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":3635,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":3843,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":4336,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":5109,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":7273,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":8576,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":9857,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":12109,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":14447,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":15258,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":16683,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":19491,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":19656,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":19873,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341},{"start":20158,"length":6,"messageText":"Property 'logger' is private and only accessible within class 'AdvancedMemoryManager'.","category":1,"code":2341}]],[1511,[{"start":637,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":1364,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":2435,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":3148,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":3842,"length":7,"messageText":"Expected 2 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types/cliffy.d.ts","start":1969,"length":12,"messageText":"An argument for 'cmd' was not provided.","category":3,"code":6210}]},{"start":4436,"length":10,"code":2339,"category":1,"messageText":"Property 'outputHelp' does not exist on type 'Command'."}]],[1513,[{"start":5625,"length":11,"code":2339,"category":1,"messageText":"Property 'healthCheck' does not exist on type 'unknown'."},{"start":5719,"length":11,"code":2339,"category":1,"messageText":"Property 'healthCheck' does not exist on type 'unknown'."},{"start":7042,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":7119,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":7239,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":7313,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."}]],[1514,[{"start":6672,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":6744,"length":10,"code":2339,"category":1,"messageText":"Property 'getMetrics' does not exist on type 'unknown'."},{"start":20233,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'unknown'."},{"start":20285,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'unknown'."},{"start":20362,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'unknown'."},{"start":20396,"length":5,"code":2339,"category":1,"messageText":"Property 'value' does not exist on type 'unknown'."},{"start":20622,"length":9,"code":2339,"category":1,"messageText":"Property 'component' does not exist on type 'unknown'."},{"start":20849,"length":7,"code":2339,"category":1,"messageText":"Property 'message' does not exist on type 'unknown'."},{"start":20866,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":20925,"length":5,"code":2339,"category":1,"messageText":"Property 'stack' does not exist on type 'unknown'."}]],[1515,[{"start":4375,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'outputDir' does not exist in type 'LoggingConfig'."},{"start":4434,"length":23,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."}]],[1516,[{"start":150,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":214,"length":21,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":276,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834},{"start":324,"length":17,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.","category":1,"code":2834}]],[1518,[{"start":157,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":9682,"length":6,"code":2339,"category":1,"messageText":"Property 'queues' does not exist on type '{ config: { tracing: boolean; metrics: boolean; logs: boolean; profiling: boolean; }; activeSpans: number; queuedMetrics: number; queuedLogs: number; lastFlush: number; }'."},{"start":12877,"length":41,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ enabled: boolean; apiKey?: string; site?: string; serviceName?: string; env?: string; version?: string; tracing?: { enabled: boolean; sampleRate: number; excludedUrls: string[]; }; metrics?: { enabled: boolean; host?: string; port?: number; prefix?: string; }; logs?: { enabled: boolean; apiKey?: string; site?: str...' is not assignable to parameter of type 'DataDogConfig'.","category":1,"code":2345,"next":[{"messageText":"Property 'tracing' is optional in type '{ enabled: boolean; apiKey?: string; site?: string; serviceName?: string; env?: string; version?: string; tracing?: { enabled: boolean; sampleRate: number; excludedUrls: string[]; }; metrics?: { enabled: boolean; host?: string; port?: number; prefix?: string; }; logs?: { ...; }; profiling?: { ...; }; }' but required in type 'DataDogConfig'.","category":1,"code":2327}]}}]],[1519,[{"start":159,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":11468,"length":6,"code":2339,"category":1,"messageText":"Property 'queues' does not exist on type '{ config: { tracing: boolean; metrics: boolean; logs: boolean; browserMonitoring: boolean; }; activeTransactions: number; activeSpans: number; queuedMetrics: number; queuedLogs: number; lastFlush: number; }'."},{"start":14765,"length":41,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ enabled: boolean; licenseKey?: string; appName?: string; accountId?: string; trustKey?: string; env?: string; version?: string; tracing?: { enabled: boolean; distributedTracing: boolean; transactionEvents: boolean; spanEvents: boolean; }; metrics?: { enabled: boolean; apiHost?: string; metricApiPath?: string; }; l...' is not assignable to parameter of type 'NewRelicConfig'.","category":1,"code":2345,"next":[{"messageText":"Property 'tracing' is optional in type '{ enabled: boolean; licenseKey?: string; appName?: string; accountId?: string; trustKey?: string; env?: string; version?: string; tracing?: { enabled: boolean; distributedTracing: boolean; transactionEvents: boolean; spanEvents: boolean; }; metrics?: { ...; }; logs?: { ...; }; browserMonitoring?: { ...; }; }' but required in type 'NewRelicConfig'.","category":1,"code":2327}]}}]],[1520,[{"start":159,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":1080,"length":11,"messageText":"Duplicate identifier 'serviceName'.","category":1,"code":2300},{"start":1080,"length":11,"messageText":"All declarations of 'serviceName' must have identical modifiers.","category":1,"code":2687},{"start":1264,"length":11,"messageText":"Duplicate identifier 'serviceName'.","category":1,"code":2300},{"start":1264,"length":11,"messageText":"All declarations of 'serviceName' must have identical modifiers.","category":1,"code":2687}]],[1521,[{"start":167,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":6482,"length":17,"code":2339,"category":1,"messageText":"Property '_getActiveHandles' does not exist on type 'Process'."},{"start":6537,"length":18,"code":2339,"category":1,"messageText":"Property '_getActiveRequests' does not exist on type 'Process'."}]],[1522,[{"start":161,"length":23,"messageText":"Cannot find module '../../utils/logger.js' or its corresponding type declarations.","category":1,"code":2307},{"start":9592,"length":19,"code":2339,"category":1,"messageText":"Property 'recordDatabaseQuery' does not exist on type 'DataDogCollector'."},{"start":12107,"length":7,"code":2339,"category":1,"messageText":"Property 'overall' does not exist on type 'Promise<APMHealthStatus>'.","relatedInformation":[{"start":12107,"length":7,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]},{"start":12144,"length":7,"code":2339,"category":1,"messageText":"Property 'overall' does not exist on type 'Promise<APMHealthStatus>'.","relatedInformation":[{"start":12144,"length":7,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]}]],[1523,[{"start":4338,"length":20,"messageText":"Cannot find name 'createAPMIntegration'.","category":1,"code":2304}]],[1524,[{"start":6470,"length":5,"code":2339,"category":1,"messageText":"Property 'score' does not exist on type 'unknown'."},{"start":6482,"length":6,"code":2339,"category":1,"messageText":"Property 'userId' does not exist on type 'unknown'."},{"start":6495,"length":6,"code":2339,"category":1,"messageText":"Property 'taskId' does not exist on type 'unknown'."},{"start":6641,"length":7,"code":2339,"category":1,"messageText":"Property 'success' does not exist on type 'unknown'."},{"start":6655,"length":8,"code":2339,"category":1,"messageText":"Property 'duration' does not exist on type 'unknown'."},{"start":6670,"length":12,"code":2339,"category":1,"messageText":"Property 'participants' does not exist on type 'unknown'."},{"start":6826,"length":6,"code":2339,"category":1,"messageText":"Property 'userId' does not exist on type 'unknown'."},{"start":6839,"length":5,"code":2339,"category":1,"messageText":"Property 'claim' does not exist on type 'unknown'."},{"start":6851,"length":10,"code":2339,"category":1,"messageText":"Property 'validation' does not exist on type 'unknown'."},{"start":7002,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":7156,"length":6,"code":2339,"category":1,"messageText":"Property 'rating' does not exist on type 'unknown'."},{"start":7169,"length":8,"code":2339,"category":1,"messageText":"Property 'feedback' does not exist on type 'unknown'."},{"start":7300,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type 'unknown'."},{"start":7312,"length":8,"code":2339,"category":1,"messageText":"Property 'severity' does not exist on type 'unknown'."}]],[1525,[{"start":3713,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ id: string; userId: string; taskId: string; score: number; validationType: string; context: any; metadata: any; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ id: string; userId: string; taskId: string; score: number; validationType: string; context: any; metadata: any; }': id, userId, taskId, score, and 3 more.","category":1,"code":2740}]}}]],[1526,[{"start":4745,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ decisionId: string; type: string; participants: any[]; context: any; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ decisionId: string; type: string; participants: any[]; context: any; }': decisionId, type, participants, context","category":1,"code":2739}]}},{"start":4864,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ decisionId: string; participantId: string; vote: string; confidence: number; responseTime: number; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ decisionId: string; participantId: string; vote: string; confidence: number; responseTime: number; }': decisionId, participantId, vote, confidence, responseTime","category":1,"code":2739}]}},{"start":4980,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ decisionId: string; outcome: string; confidence: number; unanimity: boolean; duration: number; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ decisionId: string; outcome: string; confidence: number; unanimity: boolean; duration: number; }': decisionId, outcome, confidence, unanimity, duration","category":1,"code":2739}]}},{"start":5202,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'unknown' is not assignable to parameter of type '{ decisionId: string; timeoutDuration: number; participantsResponded: number; totalParticipants: number; }'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is missing the following properties from type '{ decisionId: string; timeoutDuration: number; participantsResponded: number; totalParticipants: number; }': decisionId, timeoutDuration, participantsResponded, totalParticipants","category":1,"code":2739}]}},{"start":17010,"length":11,"messageText":"Expected 0 arguments, but got 1.","category":1,"code":2554},{"start":25005,"length":31,"messageText":"Duplicate function implementation.","category":1,"code":2393},{"start":25350,"length":31,"messageText":"Duplicate function implementation.","category":1,"code":2393}]],[1528,[{"start":5099,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5266,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5430,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5598,"length":7,"code":2339,"category":1,"messageText":"Property 'metrics' does not exist on type 'unknown'."},{"start":5746,"length":5,"code":2339,"category":1,"messageText":"Property 'alert' does not exist on type 'unknown'."},{"start":5817,"length":5,"code":2339,"category":1,"messageText":"Property 'alert' does not exist on type 'unknown'."},{"start":5935,"length":6,"code":2339,"category":1,"messageText":"Property 'rating' does not exist on type 'unknown'."}]],[1530,[{"start":23995,"length":6,"messageText":"Cannot find name 'nodeId'.","category":1,"code":2304},{"start":50710,"length":10,"messageText":"Export declaration conflicts with exported declaration of 'DomainNode'.","category":1,"code":2484},{"start":50724,"length":10,"messageText":"Export declaration conflicts with exported declaration of 'DomainEdge'.","category":1,"code":2484},{"start":50738,"length":11,"messageText":"Export declaration conflicts with exported declaration of 'DomainGraph'.","category":1,"code":2484},{"start":50753,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'CohesionAnalysis'.","category":1,"code":2484},{"start":50773,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'DependencyAnalysis'.","category":1,"code":2484},{"start":50795,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'BoundaryOptimization'.","category":1,"code":2484},{"start":50819,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'GNNLayerConfig'.","category":1,"code":2484},{"start":50837,"length":14,"messageText":"Export declaration conflicts with exported declaration of 'TrainingConfig'.","category":1,"code":2484}]],[1531,[{"start":14424,"length":7,"messageText":"Cannot find name 'context'.","category":1,"code":2304},{"start":15123,"length":7,"messageText":"Cannot find name 'context'.","category":1,"code":2304},{"start":15172,"length":7,"messageText":"Cannot find name 'context'.","category":1,"code":2304},{"start":24860,"length":29,"messageText":"Export declaration conflicts with exported declaration of 'DomainMapperIntegrationConfig'.","category":1,"code":2484},{"start":24891,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'DomainAnalysisResult'.","category":1,"code":2484}]],[1532,[{"start":4751,"length":11,"messageText":"Cannot find name 'DomainGraph'.","category":1,"code":2304},{"start":5103,"length":10,"messageText":"Cannot find name 'DomainNode'.","category":1,"code":2304},{"start":5197,"length":10,"messageText":"Cannot find name 'DomainNode'.","category":1,"code":2304},{"start":5766,"length":10,"messageText":"Cannot find name 'DomainEdge'.","category":1,"code":2304},{"start":5885,"length":10,"messageText":"Cannot find name 'DomainEdge'.","category":1,"code":2304},{"start":6353,"length":12,"messageText":"Cannot find name 'TrainingData'.","category":1,"code":2304},{"start":6845,"length":11,"messageText":"Cannot find name 'DomainGraph'.","category":1,"code":2304},{"start":8019,"length":11,"messageText":"Cannot find name 'DomainGraph'.","category":1,"code":2304},{"start":9613,"length":18,"messageText":"Cannot find name 'NeuralDomainMapper'.","category":1,"code":2304},{"start":10749,"length":18,"messageText":"Cannot find name 'NeuralDomainMapper'.","category":1,"code":2304},{"start":11648,"length":29,"messageText":"Cannot find name 'createDomainMapperIntegration'.","category":1,"code":2304},{"start":11822,"length":20,"messageText":"Cannot find name 'DomainAnalysisResult'.","category":1,"code":2304},{"start":12333,"length":18,"messageText":"No value exists in scope for the shorthand property 'NeuralDomainMapper'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":12355,"length":29,"messageText":"No value exists in scope for the shorthand property 'NeuralDomainMapperIntegration'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":12388,"length":29,"messageText":"No value exists in scope for the shorthand property 'createDomainMapperIntegration'. Either declare one or provide an initializer.","category":1,"code":18004}]],[1533,[{"start":276,"length":27,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './user-preference-manager.js'?","category":1,"code":2835}]],[1537,[{"start":1586,"length":4,"messageText":"Abstract property 'name' in class 'BaseProvider' cannot be accessed in the constructor.","category":1,"code":2715},{"start":10330,"length":14,"code":2740,"category":1,"messageText":"Type '{}' is missing the following properties from type 'Record<LLMModel, { requests: number; tokens: number; cost: number; }>': \"claude-3-opus-20240229\", \"claude-3-sonnet-20240229\", \"claude-3-haiku-20240307\", \"claude-2.1\", and 25 more.","relatedInformation":[{"file":"../src/providers/types.ts","start":8067,"length":14,"messageText":"The expected type comes from property 'modelBreakdown' which is declared here on type 'UsageStats'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type 'Record<LLMModel, { requests: number; tokens: number; cost: number; }>'."}}]],[1540,[{"start":9032,"length":7,"code":2339,"category":1,"messageText":"Property 'entries' does not exist on type 'Headers'."}]],[1545,[{"start":12210,"length":8,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'metadata' does not exist in type 'ModelInfo'."}]],[1548,[{"start":9737,"length":17,"code":2339,"category":1,"messageText":"Property 'maxCostPerRequest' does not exist on type '{ maxCost?: number; preferredModels?: LLMModel[]; }'."},{"start":9826,"length":17,"code":2339,"category":1,"messageText":"Property 'maxCostPerRequest' does not exist on type '{ maxCost?: number; preferredModels?: LLMModel[]; }'."}]],[1549,[{"start":1071,"length":9,"code":2739,"category":1,"messageText":"Type '{ anthropic: { provider: \"anthropic\"; apiKey: string; model: \"claude-3-sonnet-20240229\"; temperature: number; maxTokens: number; enableStreaming: true; enableCaching: true; timeout: number; retryAttempts: number; }; openai: { ...; }; google: { ...; }; cohere: { ...; }; ollama: { ...; }; }' is missing the following properties from type 'Record<LLMProvider, LLMProviderConfig>': custom, zai, \"llama-cpp\"","relatedInformation":[{"file":"../src/providers/provider-manager.ts","start":1178,"length":9,"messageText":"The expected type comes from property 'providers' which is declared here on type 'ProviderManagerConfig'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ anthropic: { provider: \"anthropic\"; apiKey: string; model: \"claude-3-sonnet-20240229\"; temperature: number; maxTokens: number; enableStreaming: true; enableCaching: true; timeout: number; retryAttempts: number; }; openai: { ...; }; google: { ...; }; cohere: { ...; }; ollama: { ...; }; }' is not assignable to type 'Record<LLMProvider, LLMProviderConfig>'."}}]],[1553,[{"start":297,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './RedisHealthMonitor.js'?","category":1,"code":2835}]],[1554,[{"start":7534,"length":8,"code":2322,"category":1,"messageText":"Type 'string[]' is not assignable to type 'boolean'.","relatedInformation":[{"start":4744,"length":8,"messageText":"The expected type comes from property 'required' which is declared here on type 'ValidationSchema<any>'","category":3,"code":6500}]},{"start":12144,"length":8,"code":2322,"category":1,"messageText":"Type 'string[]' is not assignable to type 'boolean'.","relatedInformation":[{"start":4744,"length":8,"messageText":"The expected type comes from property 'required' which is declared here on type 'ValidationSchema<any>'","category":3,"code":6500}]},{"start":14785,"length":8,"code":2322,"category":1,"messageText":"Type 'string[]' is not assignable to type 'boolean'.","relatedInformation":[{"start":4744,"length":8,"messageText":"The expected type comes from property 'required' which is declared here on type 'ValidationSchema<any>'","category":3,"code":6500}]},{"start":15218,"length":8,"code":2322,"category":1,"messageText":"Type 'string[]' is not assignable to type 'boolean'.","relatedInformation":[{"start":4744,"length":8,"messageText":"The expected type comes from property 'required' which is declared here on type 'ValidationSchema<any>'","category":3,"code":6500}]}]],[1557,[{"start":330,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../websocket/swarmWebSocketServer.js'?","category":1,"code":2835},{"start":1875,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../websocket/swarmWebSocketServer.js'?","category":1,"code":2835}]],[1559,[{"start":7937,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Map<any, any>' is not assignable to parameter of type 'any[]'.","category":1,"code":2345,"next":[{"messageText":"Type 'Map<any, any>' is missing the following properties from type 'any[]': length, pop, push, concat, and 24 more.","category":1,"code":2740}]}},{"start":7982,"length":61,"code":2352,"category":1,"messageText":{"messageText":"Conversion of type 'any[]' to type 'Map<string, any>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.","category":1,"code":2352,"next":[{"messageText":"Type 'any[]' is missing the following properties from type 'Map<string, any>': clear, delete, get, has, and 3 more.","category":1,"code":2740}]}},{"start":8259,"length":61,"code":2352,"category":1,"messageText":{"messageText":"Conversion of type 'any[]' to type 'Map<string, any>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.","category":1,"code":2352,"next":[{"messageText":"Type 'any[]' is missing the following properties from type 'Map<string, any>': clear, delete, get, has, and 3 more.","category":1,"code":2740}]}},{"start":8777,"length":8,"messageText":"Property 'trending' of type '{ improving: string[]; declining: string[]; needsAttention: string[]; }' is not assignable to 'string' index type '{ status: \"above_target\" | \"below_target\" | \"at_target\" | \"approaching_target\"; currentValue: number; target: number; trend: \"improving\" | \"stable\" | \"declining\"; }'.","category":1,"code":2411},{"start":8922,"length":61,"code":2352,"category":1,"messageText":{"messageText":"Conversion of type 'any[]' to type 'Map<string, any>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.","category":1,"code":2352,"next":[{"messageText":"Type 'any[]' is missing the following properties from type 'Map<string, any>': clear, delete, get, has, and 3 more.","category":1,"code":2740}]}}]],[1560,[{"start":17064,"length":50,"messageText":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","category":1,"code":2362},{"start":17100,"length":10,"code":2339,"category":1,"messageText":"Property 'truthScore' does not exist on type 'unknown'."}]],[1562,[{"start":13446,"length":9,"code":2339,"category":1,"messageText":"Property 'timestamp' does not exist on type 'FailureScenario'."},{"start":14326,"length":9,"code":2339,"category":1,"messageText":"Property 'timestamp' does not exist on type 'FailureScenario'."},{"start":14904,"length":9,"code":2339,"category":1,"messageText":"Property 'timestamp' does not exist on type 'FailureScenario'."}]],[1564,[{"start":1979,"length":5,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type '\"debug\" | \"info\" | \"warn\" | \"error\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":1227,"length":5,"messageText":"The expected type comes from property 'level' which is declared here on type 'LoggingConfig'","category":3,"code":6500}]}]],[1565,[{"start":838,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":852,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":2941,"length":27,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":3177,"length":18,"code":2339,"category":1,"messageText":"Property 'maxConcurrentTasks' does not exist on type 'AdvancedSwarmConfig'."},{"start":3487,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'namespace' does not exist in type 'MemoryConfig'."},{"start":7248,"length":259,"messageText":"Expected 3 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/coordination/advanced-scheduler.ts","start":4730,"length":19,"messageText":"An argument for 'eventBus' was not provided.","category":3,"code":6210}]},{"start":7312,"length":18,"code":2339,"category":1,"messageText":"Property 'maxConcurrentTasks' does not exist on type 'AdvancedSwarmConfig'."},{"start":7867,"length":10,"code":2339,"category":1,"messageText":"Property 'maxRetries' does not exist on type 'AdvancedSwarmConfig'."},{"start":8425,"length":4,"code":2322,"category":1,"messageText":"Type '\"swarm-definition\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":14078,"length":4,"code":2322,"category":1,"messageText":"Type '\"health-check\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":20033,"length":4,"code":2322,"category":1,"messageText":"Type '\"task-definition\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":22810,"length":12,"code":2339,"category":1,"messageText":"Property 'scheduleTask' does not exist on type 'AdvancedTaskScheduler'."},{"start":27781,"length":4,"code":2322,"category":1,"messageText":"Type '\"swarm-results\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":38096,"length":10,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'maxRetries' does not exist in type 'AdvancedSwarmConfig'."}]],[1566,[{"start":810,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":824,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":904,"length":21,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmExecutionContext'. Did you mean to use 'import SwarmExecutionContext from \"./types.js\"' instead?","category":1,"code":2614},{"start":3378,"length":21,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":6572,"length":7,"messageText":"Block-scoped variable 'process' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":6421,"length":7,"messageText":"'process' is declared here.","category":3,"code":2728}]},{"start":9374,"length":10,"code":2339,"category":1,"messageText":"Property 'maxRetries' does not exist on type 'Partial<ClaudeExecutionOptions>'."},{"start":10015,"length":6,"code":2339,"category":1,"messageText":"Property 'result' does not exist on type 'ExecutionResult'."},{"start":24207,"length":16,"code":2339,"category":1,"messageText":"Property 'workingDirectory' does not exist on type 'Partial<ClaudeExecutionOptions>'."}]],[1567,[{"start":1699,"length":6,"code":2741,"category":1,"messageText":"Property 'success' is missing in type '{ output: any; artifacts: {}; metadata: { agentId: string; agentType: AgentType; executionTime: number; targetDir: string; }; quality: number; completeness: number; accuracy: number; executionTime: number; resourcesUsed: { ...; }; validated: true; }' but required in type 'TaskResult'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":8326,"length":7,"messageText":"'success' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ output: any; artifacts: {}; metadata: { agentId: string; agentType: AgentType; executionTime: number; targetDir: string; }; quality: number; completeness: number; accuracy: number; executionTime: number; resourcesUsed: { ...; }; validated: true; }' is not assignable to type 'TaskResult'."}}]],[1568,[{"start":685,"length":22,"messageText":"Cannot find name 'ClaudeExecutionOptions'.","category":1,"code":2304},{"start":927,"length":12,"messageText":"Cannot find name 'TaskExecutor'.","category":1,"code":2304},{"start":1027,"length":15,"messageText":"Cannot find name 'ExecutionConfig'.","category":1,"code":2304},{"start":1127,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":1486,"length":15,"messageText":"Cannot find name 'ExecutionResult'.","category":1,"code":2304},{"start":1737,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":2059,"length":22,"code":2339,"category":1,"messageText":"Property 'createExecutionContext' does not exist on type 'TaskExecutorV2'."},{"start":2298,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":2734,"length":22,"code":2339,"category":1,"messageText":"Property 'createExecutionContext' does not exist on type 'TaskExecutorV2'."},{"start":2977,"length":16,"messageText":"Cannot find name 'ExecutionContext'.","category":1,"code":2304},{"start":3047,"length":15,"messageText":"Cannot find name 'ExecutionResult'.","category":1,"code":2304},{"start":3128,"length":7,"code":2339,"category":1,"messageText":"Property 'timeout' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":3144,"length":6,"code":2339,"category":1,"messageText":"Property 'config' does not exist on type 'TaskExecutorV2'."},{"start":3900,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":4484,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":4813,"length":6,"code":2339,"category":1,"messageText":"Property 'config' does not exist on type 'TaskExecutorV2'."},{"start":5168,"length":8,"code":2339,"category":1,"messageText":"Property 'detached' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":5454,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":5892,"length":6,"code":2339,"category":1,"messageText":"Property 'config' does not exist on type 'TaskExecutorV2'."},{"start":5934,"length":4,"code":2339,"category":1,"messageText":"Property 'emit' does not exist on type 'TaskExecutorV2'."},{"start":6385,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":6562,"length":6,"code":2339,"category":1,"messageText":"Property 'config' does not exist on type 'TaskExecutorV2'."},{"start":6604,"length":4,"code":2339,"category":1,"messageText":"Property 'emit' does not exist on type 'TaskExecutorV2'."},{"start":6901,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":7347,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":7665,"length":20,"code":2339,"category":1,"messageText":"Property 'collectResourceUsage' does not exist on type 'TaskExecutorV2'."},{"start":7773,"length":16,"code":2339,"category":1,"messageText":"Property 'collectArtifacts' does not exist on type 'TaskExecutorV2'."},{"start":7827,"length":15,"messageText":"Cannot find name 'ExecutionResult'.","category":1,"code":2304},{"start":8739,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":9357,"length":6,"code":2339,"category":1,"messageText":"Property 'logger' does not exist on type 'TaskExecutorV2'."},{"start":9643,"length":13,"messageText":"Cannot find name 'ClaudeCommand'.","category":1,"code":2304},{"start":9755,"length":17,"code":2339,"category":1,"messageText":"Property 'buildClaudePrompt' does not exist on type 'TaskExecutorV2'."},{"start":9804,"length":8,"code":2339,"category":1,"messageText":"Property 'useStdin' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10075,"length":5,"code":2339,"category":1,"messageText":"Property 'model' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10119,"length":5,"code":2339,"category":1,"messageText":"Property 'model' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10185,"length":9,"code":2339,"category":1,"messageText":"Property 'maxTokens' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10238,"length":9,"code":2339,"category":1,"messageText":"Property 'maxTokens' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10320,"length":11,"code":2339,"category":1,"messageText":"Property 'temperature' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10390,"length":11,"code":2339,"category":1,"messageText":"Property 'temperature' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10540,"length":26,"code":2339,"category":1,"messageText":"Property 'dangerouslySkipPermissions' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":10991,"length":12,"code":2339,"category":1,"messageText":"Property 'outputFormat' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":11050,"length":12,"code":2339,"category":1,"messageText":"Property 'outputFormat' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":11490,"length":10,"code":2339,"category":1,"messageText":"Property 'claudePath' does not exist on type 'ClaudeExecutionOptionsV2'."},{"start":12348,"length":13,"messageText":"Cannot find name 'ResourceUsage'.","category":1,"code":2304}]],[1569,[{"start":616,"length":21,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmExecutionContext'. Did you mean to use 'import SwarmExecutionContext from \"./types.js\"' instead?","category":1,"code":2614},{"start":641,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":655,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":6113,"length":21,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":16982,"length":83,"code":2345,"category":1,"messageText":"Argument of type '{ namespace: string; type: string; }' is not assignable to parameter of type 'string'."},{"start":17095,"length":16,"messageText":"Type 'MemoryEntry' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"start":17845,"length":95,"code":2345,"category":1,"messageText":"Argument of type '{ namespace: string; type: string; }' is not assignable to parameter of type 'string'."},{"start":17970,"length":19,"messageText":"Type 'MemoryEntry' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488},{"start":19081,"length":4,"code":2322,"category":1,"messageText":"Type '\"knowledge-base\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":20018,"length":4,"code":2322,"category":1,"messageText":"Type '\"collective-intelligence\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]}]],[1573,[{"start":526,"length":20,"code":2415,"category":1,"messageText":{"messageText":"Class 'EnhancedPromptCopier' incorrectly extends base class 'PromptCopier'.","category":1,"code":2415,"next":[{"messageText":"Property 'copyFilesParallel' is private in type 'PromptCopier' but not in type 'EnhancedPromptCopier'.","category":1,"code":2325}]}}]],[1575,[{"start":3494,"length":11,"messageText":"Cannot find name 'copyPrompts'. Did you mean the instance member 'this.copyPrompts'?","category":1,"code":2663},{"start":4338,"length":11,"messageText":"Cannot find name 'copyPrompts'. Did you mean the instance member 'this.copyPrompts'?","category":1,"code":2663},{"start":8452,"length":11,"messageText":"Cannot find name 'copyPrompts'. Did you mean the instance member 'this.copyPrompts'?","category":1,"code":2663}]],[1576,[{"start":97,"length":11,"messageText":"Module '\"./prompt-copier-enhanced.js\"' has no exported member 'copyPrompts'.","category":1,"code":2305}]],[1577,[{"start":814,"length":20,"messageText":"Cannot find name 'ClaudeConnectionPool'.","category":1,"code":2304},{"start":886,"length":16,"messageText":"Cannot find name 'AsyncFileManager'.","category":1,"code":2304},{"start":948,"length":17,"messageText":"Cannot find name 'OptimizedExecutor'.","category":1,"code":2304}]],[1578,[{"start":515,"length":41,"messageText":"Module './executor.js' has already exported a member named 'ExecutionMetrics'. Consider explicitly re-exporting to resolve the ambiguity.","category":1,"code":2308}]],[1579,[{"start":5424,"length":10,"messageText":"Cannot assign to 'targetNode' because it is a constant.","category":1,"code":2588}]],[1580,[{"start":695,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":709,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":736,"length":21,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmExecutionContext'. Did you mean to use 'import SwarmExecutionContext from \"./types.js\"' instead?","category":1,"code":2614},{"start":2347,"length":23,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":11090,"length":6,"code":2741,"category":1,"messageText":"Property 'logger' is missing in type '{ sessionId: string; orchestrator: AdvancedSwarmOrchestrator; agent: SwarmAgent; task: SwarmTask; swarmId: string; executionId: string; timeout: number; maxRetries: number; }' but required in type 'MCPExecutionContext'.","relatedInformation":[{"file":"../src/utils/types.ts","start":13203,"length":6,"messageText":"'logger' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ sessionId: string; orchestrator: AdvancedSwarmOrchestrator; agent: SwarmAgent; task: SwarmTask; swarmId: string; executionId: string; timeout: number; maxRetries: number; }' is not assignable to type 'MCPExecutionContext'."}},{"start":11573,"length":15,"messageText":"Type 'Promise<MCPTool[]>' must have a '[Symbol.iterator]()' method that returns an iterator.","category":1,"code":2488,"relatedInformation":[{"start":11573,"length":15,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]},{"start":12330,"length":6,"code":2339,"category":1,"messageText":"Property 'length' does not exist on type 'Promise<MCPTool[]>'.","relatedInformation":[{"start":12330,"length":6,"messageText":"Did you forget to use 'await'?","category":1,"code":2773}]}]],[1581,[{"start":588,"length":21,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmExecutionContext'. Did you mean to use 'import SwarmExecutionContext from \"./types.js\"' instead?","category":1,"code":2614},{"start":627,"length":9,"messageText":"Module '\"./types.js\"' has no exported member 'SwarmTask'. Did you mean to use 'import SwarmTask from \"./types.js\"' instead?","category":1,"code":2614},{"start":640,"length":10,"messageText":"'\"./types.js\"' has no exported member named 'SwarmAgent'. Did you mean 'SwarmEvent'?","category":1,"code":2724},{"start":4379,"length":23,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":11014,"length":83,"code":2345,"category":1,"messageText":"Argument of type '{ namespace: string; type: string; }' is not assignable to parameter of type 'string'."},{"start":11133,"length":6,"code":2339,"category":1,"messageText":"Property 'length' does not exist on type 'MemoryEntry'."},{"start":15168,"length":4,"code":2322,"category":1,"messageText":"Type '\"aggregated-result\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]},{"start":15708,"length":4,"code":2322,"category":1,"messageText":"Type '\"result-report\"' is not assignable to type '\"error\" | \"observation\" | \"insight\" | \"decision\" | \"artifact\"'.","relatedInformation":[{"file":"../src/utils/types.ts","start":3335,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'MemoryEntry'","category":3,"code":6500}]}]],[1582,[{"start":3104,"length":6,"code":2741,"category":1,"messageText":"Property 'success' is missing in type '{ output: any; artifacts: any; metadata: { agentId: string; agentType: AgentType; executionTime: number; targetDir: string; sparcPhase: any; quality: any; }; quality: any; completeness: any; accuracy: number; executionTime: number; resourcesUsed: { ...; }; validated: true; }' but required in type 'TaskResult'.","relatedInformation":[{"file":"../src/swarm/types.ts","start":8326,"length":7,"messageText":"'success' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ output: any; artifacts: any; metadata: { agentId: string; agentType: AgentType; executionTime: number; targetDir: string; sparcPhase: any; quality: any; }; quality: any; completeness: any; accuracy: number; executionTime: number; resourcesUsed: { ...; }; validated: true; }' is not assignable to type 'TaskResult'."}}]],[1583,[{"start":19500,"length":5,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":19966,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1584,[{"start":11980,"length":8,"code":2339,"category":1,"messageText":{"messageText":"Property 'category' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'category' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":12011,"length":6,"code":2339,"category":1,"messageText":{"messageText":"Property 'source' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'source' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":32750,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1585,[{"start":29302,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Function' is not assignable to parameter of type '() => Promise<unknown>'.","category":1,"code":2345,"next":[{"messageText":"Type 'Function' provides no match for the signature '(): Promise<unknown>'.","category":1,"code":2658}]}}]],[1586,[{"start":8748,"length":8,"code":2339,"category":1,"messageText":{"messageText":"Property 'category' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'category' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":8814,"length":8,"code":2339,"category":1,"messageText":{"messageText":"Property 'category' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'category' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":13627,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":13739,"length":15,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":13847,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[1587,[{"start":4081,"length":21,"messageText":"Cannot redeclare exported variable 'SelfHealingMechanisms'.","category":1,"code":2323},{"start":7688,"length":14,"code":2741,"category":1,"messageText":"Property 'dependencies' is missing in type '{ id: string; name: string; type: \"custom\"; target: string; parameters: { action: string; }; timeout: number; }' but required in type 'HealingAction'.","relatedInformation":[{"start":1250,"length":12,"messageText":"'dependencies' is declared here.","category":3,"code":2728},{"start":1277,"length":14,"messageText":"The expected type comes from property 'rollbackAction' which is declared here on type 'HealingAction'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ id: string; name: string; type: \"custom\"; target: string; parameters: { action: string; }; timeout: number; }' is not assignable to type 'HealingAction'."}},{"start":21724,"length":8,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'scenario' does not exist in type 'HealingScenario'."},{"start":21841,"length":10,"code":2339,"category":1,"messageText":"Property 'matchScore' does not exist on type 'HealingScenario'."},{"start":21856,"length":10,"code":2339,"category":1,"messageText":"Property 'matchScore' does not exist on type 'HealingScenario'."},{"start":21893,"length":8,"code":2339,"category":1,"messageText":"Property 'scenario' does not exist on type 'HealingScenario'."},{"start":25144,"length":8,"code":2339,"category":1,"messageText":{"messageText":"Property 'category' does not exist on type 'DetectedError | EarlyWarning'.","category":1,"code":2339,"next":[{"messageText":"Property 'category' does not exist on type 'EarlyWarning'.","category":1,"code":2339}]}},{"start":45549,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":47514,"length":7,"code":2339,"category":1,"messageText":"Property 'enabled' does not exist on type '{ successHistoryRetention: number; patternRecognition: boolean; adaptiveThresholds: boolean; predictiveHealing: boolean; }'."},{"start":48686,"length":21,"messageText":"Cannot redeclare exported variable 'SelfHealingMechanisms'.","category":1,"code":2323},{"start":48686,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'SelfHealingMechanisms'.","category":1,"code":2484},{"start":48712,"length":20,"messageText":"Export declaration conflicts with exported declaration of 'HealingScenario'.","category":1,"code":2484},{"start":48737,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'HealingSession'.","category":1,"code":2484},{"start":48761,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'HealingResult'.","category":1,"code":2484}]],[1588,[{"start":4354,"length":24,"messageText":"Cannot redeclare exported variable 'ErrorRecoveryCoordinator'.","category":1,"code":2323},{"start":17206,"length":9,"code":2339,"category":1,"messageText":"Property 'detection' does not exist on type 'ErrorRecoveryCoordinator'."},{"start":23955,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":27726,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'RecoveryComponent | { id: string; type: \"unknown\"; name: string; status: \"failed\"; startTime: Date; error: string; dependencies: any[]; }' is not assignable to parameter of type 'RecoveryComponent'.","category":1,"code":2345,"next":[{"messageText":"Type '{ id: string; type: \"unknown\"; name: string; status: \"failed\"; startTime: Date; error: string; dependencies: any[]; }' is not assignable to type 'RecoveryComponent'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'type' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '\"unknown\"' is not assignable to type '\"monitoring\" | \"workflow\" | \"detection\" | \"resilience\" | \"self_healing\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '{ id: string; type: \"unknown\"; name: string; status: \"failed\"; startTime: Date; error: string; dependencies: any[]; }' is not assignable to type 'RecoveryComponent'."}}]}]}]}},{"start":39114,"length":21,"messageText":"This comparison appears to be unintentional because the types '\"monitoring\" | \"workflow\" | \"detection\" | \"resilience\" | \"self_healing\"' and '\"recovery\"' have no overlap.","category":1,"code":2367},{"start":47823,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":47917,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":48024,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":48807,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":49073,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | {}' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type '{}' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":49347,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":50029,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":50088,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":50141,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":50209,"length":23,"code":2551,"category":1,"messageText":"Property 'completedOrchestrations' does not exist on type 'ErrorRecoveryCoordinator'. Did you mean 'getCompletedOrchestrations'?","relatedInformation":[{"start":49247,"length":26,"messageText":"'getCompletedOrchestrations' is declared here.","category":3,"code":2728}]},{"start":51339,"length":24,"messageText":"Cannot redeclare exported variable 'ErrorRecoveryCoordinator'.","category":1,"code":2323},{"start":51339,"length":24,"messageText":"Export declaration conflicts with exported declaration of 'ErrorRecoveryCoordinator'.","category":1,"code":2484},{"start":51368,"length":24,"messageText":"Export declaration conflicts with exported declaration of 'ErrorRecoveryConfig'.","category":1,"code":2484},{"start":51397,"length":26,"messageText":"Export declaration conflicts with exported declaration of 'RecoveryOrchestration'.","category":1,"code":2484},{"start":51428,"length":19,"messageText":"Export declaration conflicts with exported declaration of 'RecoveryResult'.","category":1,"code":2484},{"start":51452,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'CoordinationState'.","category":1,"code":2484}]],[1589,[{"start":4099,"length":30,"messageText":"Cannot redeclare exported variable 'ErrorRecoveryEffectivenessTest'.","category":1,"code":2323},{"start":22998,"length":8,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'accuracy' does not exist in type 'ComponentPerformance'."},{"start":23231,"length":11,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'successRate' does not exist in type 'ComponentPerformance'."},{"start":23565,"length":27,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'circuitBreakerEffectiveness' does not exist in type 'ComponentPerformance'."},{"start":23778,"length":13,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'alertAccuracy' does not exist in type 'ComponentPerformance'."},{"start":23979,"length":11,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'successRate' does not exist in type 'ComponentPerformance'."},{"start":24767,"length":27,"code":2339,"category":1,"messageText":"Property 'circuitBreakerEffectiveness' does not exist on type 'ComponentPerformance'."},{"start":24857,"length":19,"code":2339,"category":1,"messageText":"Property 'failoverSuccessRate' does not exist on type 'ComponentPerformance'."},{"start":24990,"length":13,"code":2339,"category":1,"messageText":"Property 'alertAccuracy' does not exist on type 'ComponentPerformance'."},{"start":25065,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'ComponentPerformance'."},{"start":30785,"length":8,"code":2339,"category":1,"messageText":"Property 'accuracy' does not exist on type 'ComponentPerformance'."},{"start":30933,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'ComponentPerformance'."},{"start":31073,"length":27,"code":2339,"category":1,"messageText":"Property 'circuitBreakerEffectiveness' does not exist on type 'ComponentPerformance'."},{"start":31230,"length":13,"code":2339,"category":1,"messageText":"Property 'alertAccuracy' does not exist on type 'ComponentPerformance'."},{"start":31378,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'ComponentPerformance'."},{"start":33227,"length":63,"messageText":"Operator '+' cannot be applied to types 'number' and 'number | { achieved: Record<string, boolean>; gaps: Record<string, number>; }'.","category":1,"code":2365},{"start":35254,"length":30,"messageText":"Cannot redeclare exported variable 'ErrorRecoveryEffectivenessTest'.","category":1,"code":2323},{"start":35254,"length":30,"messageText":"Export declaration conflicts with exported declaration of 'ErrorRecoveryEffectivenessTest'.","category":1,"code":2484},{"start":35289,"length":15,"messageText":"Export declaration conflicts with exported declaration of 'TestConfig'.","category":1,"code":2484},{"start":35309,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'TestScenario'.","category":1,"code":2484},{"start":35331,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'TestResults'.","category":1,"code":2484}]],[1769,[{"start":1712,"length":7,"code":2339,"category":1,"messageText":"Property 'default' does not exist on type 'typeof import(\"/mnt/c/Users/masha/Documents/claude-flow-novice/src/communication/ultra-fast-communication-bus\", { with: { \"resolution-mode\": \"import\" } })'."},{"start":14809,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type '\"low\" | \"medium\" | \"high\" | \"critical\" | \"urgent\"' is not assignable to type '\"low\" | \"medium\" | \"high\" | \"critical\"'.","category":1,"code":2322,"next":[{"messageText":"Type '\"urgent\"' is not assignable to type '\"low\" | \"medium\" | \"high\" | \"critical\"'.","category":1,"code":2322}]},"relatedInformation":[{"start":3462,"length":8,"messageText":"The expected type comes from property 'priority' which is declared here on type 'CoordinationEvent'","category":3,"code":6500}]}]],[1784,[{"start":340,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../coordination/validation-schemas.js'?","category":1,"code":2835}]],[1786,[{"start":18414,"length":10,"messageText":"Block-scoped variable 'screenshot' used before its declaration.","category":1,"code":2448,"relatedInformation":[{"start":18188,"length":10,"messageText":"'screenshot' is declared here.","category":3,"code":2728}]}]],[1787,[{"start":4327,"length":9,"code":2339,"category":1,"messageText":"Property 'watchFile' does not exist on type 'typeof import(\"node:fs/promises\")'."},{"start":15078,"length":11,"code":2339,"category":1,"messageText":"Property 'unwatchFile' does not exist on type 'typeof import(\"node:fs/promises\")'."}]],[1788,[{"start":62,"length":16,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../core/logger.js'?","category":1,"code":2835},{"start":107,"length":18,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../utils/helpers.js'?","category":1,"code":2835},{"start":160,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../agents/lifecycle-manager.js'?","category":1,"code":2835},{"start":241,"length":33,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../lifecycle/dependency-tracker.js'?","category":1,"code":2835},{"start":454,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":2243,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'type' does not exist in type 'AdaptiveCoordinatorConfig'."},{"start":3211,"length":15,"code":2339,"category":1,"messageText":"Property 'memoryNamespace' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":4787,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":10233,"length":21,"code":2339,"category":1,"messageText":"Property 'performanceThresholds' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":11474,"length":21,"code":2339,"category":1,"messageText":"Property 'performanceThresholds' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":12105,"length":21,"code":2339,"category":1,"messageText":"Property 'performanceThresholds' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":25402,"length":9,"code":2339,"category":1,"messageText":"Property 'maxAgents' does not exist on type 'AdaptiveCoordinatorConfig'."},{"start":26967,"length":8,"code":2339,"category":1,"messageText":"Property 'timeouts' does not exist on type 'AdaptiveCoordinatorConfig'."}]],[1790,[{"start":4479,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":10550,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":4479,"length":9,"code":2416,"category":1,"messageText":{"messageText":"Property 'isRunning' in type 'EnhancedHierarchicalCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'boolean' is not assignable to type '() => boolean'.","category":1,"code":2322}]}},{"start":5284,"length":45,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":8319,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":10550,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":10550,"length":9,"code":2416,"category":1,"messageText":{"messageText":"Property 'isRunning' in type 'EnhancedHierarchicalCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'boolean' is not assignable to type '() => boolean'.","category":1,"code":2322}]}},{"start":26486,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":27536,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":27903,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":27956,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":29787,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":30416,"length":14,"code":2339,"category":1,"messageText":"Property 'delegatedTasks' does not exist on type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."},{"start":31381,"length":23,"code":2741,"category":1,"messageText":"Property 'taskSlots' is missing in type '{ cpu: number; memory: number; bandwidth: number; delegatedTasks: number; }' but required in type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'.","relatedInformation":[{"start":3486,"length":9,"messageText":"'taskSlots' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ cpu: number; memory: number; bandwidth: number; delegatedTasks: number; }' is not assignable to type '{ cpu: number; memory: number; bandwidth: number; taskSlots: number; }'."}},{"start":82106,"length":26,"messageText":"Export declaration conflicts with exported declaration of 'EnhancedHierarchicalConfig'.","category":1,"code":2484}]],[1791,[{"start":3592,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":9815,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":1237,"length":18,"code":2430,"category":1,"messageText":{"messageText":"Interface 'EnhancedMeshConfig' incorrectly extends interface 'TopologyConfiguration'.","category":1,"code":2430,"next":[{"messageText":"Types of property 'faultTolerance' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'ByzantineFaultToleranceConfig' is not assignable to type 'FaultToleranceLevel'.","category":1,"code":2322}]}]}},{"start":3187,"length":6,"code":2416,"category":1,"messageText":{"messageText":"Property 'config' in type 'EnhancedMeshCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'EnhancedMeshConfig' is not assignable to type 'TopologyConfiguration'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'faultTolerance' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'ByzantineFaultToleranceConfig' is not assignable to type 'FaultToleranceLevel'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type 'EnhancedMeshConfig' is not assignable to type 'TopologyConfiguration'."}}]}]}]}},{"start":3592,"length":9,"code":2416,"category":1,"messageText":{"messageText":"Property 'isRunning' in type 'EnhancedMeshCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'boolean' is not assignable to type '() => boolean'.","category":1,"code":2322}]}},{"start":4246,"length":37,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":5160,"length":13,"messageText":"An object literal cannot have multiple properties with the same name.","category":1,"code":1117},{"start":5295,"length":14,"messageText":"An object literal cannot have multiple properties with the same name.","category":1,"code":1117},{"start":7468,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":9815,"length":9,"messageText":"Duplicate identifier 'isRunning'.","category":1,"code":2300},{"start":9815,"length":9,"code":2416,"category":1,"messageText":{"messageText":"Property 'isRunning' in type 'EnhancedMeshCoordinator' is not assignable to the same property in base type 'ITopologyCoordinator'.","category":1,"code":2416,"next":[{"messageText":"Type 'boolean' is not assignable to type '() => boolean'.","category":1,"code":2322}]}},{"start":46783,"length":10,"messageText":"Spread types may only be created from object types.","category":1,"code":2698},{"start":54811,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'EnhancedMeshConfig'.","category":1,"code":2484}]],[1792,[{"start":2845,"length":36,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'LoggingConfig'."},{"start":4909,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'init' does not exist in type '{ pre?: string; post?: string; task_complete?: string; on_rerun_request?: string; lifecycle?: { init?: string; start?: string; pause?: string; resume?: string; stop?: string; cleanup?: string; }; }'.","relatedInformation":[{"file":"../src/agents/agent-loader.ts","start":1192,"length":5,"messageText":"The expected type comes from property 'hooks' which is declared here on type 'AgentDefinition'","category":3,"code":6500}]},{"start":5454,"length":24,"code":2739,"category":1,"messageText":"Type 'CommunicationBridge' is missing the following properties from type 'ICommunicationBridge': translateProtocol, getBridgeStatus, synchronizeState, resolveConflicts","canonicalHead":{"code":2322,"messageText":"Type 'CommunicationBridge' is not assignable to type 'ICommunicationBridge'."}},{"start":5709,"length":10,"code":2339,"category":1,"messageText":"Property 'initialize' does not exist on type 'ICommunicationBridge'."},{"start":6734,"length":8,"code":2339,"category":1,"messageText":"Property 'shutdown' does not exist on type 'ICommunicationBridge'."},{"start":7886,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type 'EnhancedMeshCoordinator' is not assignable to type 'ITopologyCoordinator'.","category":1,"code":2322,"next":[{"messageText":"The types of 'config.faultTolerance' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type 'ByzantineFaultToleranceConfig' is not assignable to type 'FaultToleranceLevel'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type 'EnhancedMeshCoordinator' is not assignable to type 'ITopologyCoordinator'."}}]}]}},{"start":7928,"length":126,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ managerId: string; communicationBridge: ICommunicationBridge; type: TopologyType; name: string; strategy: CoordinationStrategy; ... 9 more ...; memoryNamespace: string; }' is not assignable to parameter of type 'Partial<EnhancedMeshConfig>'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'loadBalancing' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'string' is not assignable to type '{ strategy: \"round-robin\" | \"least-loaded\" | \"capability-weighted\"; rebalanceInterval: number; loadThreshold: number; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type '{ strategy: \"round-robin\" | \"least-loaded\" | \"capability-weighted\"; rebalanceInterval: number; loadThreshold: number; }'.","category":1,"code":2322}]}]}]}},{"start":8245,"length":11,"code":2741,"category":1,"messageText":"Property 'broadcastMessage' is missing in type 'EnhancedHierarchicalCoordinator' but required in type 'ITopologyCoordinator'.","relatedInformation":[{"file":"../src/topology/types.ts","start":7585,"length":80,"messageText":"'broadcastMessage' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type 'EnhancedHierarchicalCoordinator' is not assignable to type 'ITopologyCoordinator'."}},{"start":8561,"length":11,"code":2740,"category":1,"messageText":"Type 'AdaptiveCoordinator' is missing the following properties from type 'ITopologyCoordinator': getAgent, getAllAgents, coordinateTask, delegateTask, and 7 more.","canonicalHead":{"code":2322,"messageText":"Type 'AdaptiveCoordinator' is not assignable to type 'ITopologyCoordinator'."}},{"start":8632,"length":9,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'managerId' does not exist in type 'Partial<AdaptiveCoordinatorConfig>'."},{"start":17935,"length":19,"messageText":"Operator '>' cannot be applied to types 'unknown' and 'number'.","category":1,"code":2365},{"start":18013,"length":24,"messageText":"Operator '<' cannot be applied to types 'unknown' and 'number'.","category":1,"code":2365},{"start":18041,"length":28,"messageText":"Operator '>' cannot be applied to types 'unknown' and 'number'.","category":1,"code":2365},{"start":18801,"length":8,"code":2741,"category":1,"messageText":"Property 'heartbeat' is missing in type '{ coordination: number; completion: number; adaptation: number; }' but required in type '{ coordination: number; completion: number; heartbeat: number; }'.","relatedInformation":[{"file":"../src/topology/types.ts","start":1434,"length":9,"messageText":"'heartbeat' is declared here.","category":3,"code":2728},{"file":"../src/topology/types.ts","start":1368,"length":8,"messageText":"The expected type comes from property 'timeouts' which is declared here on type 'TopologyConfiguration'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ coordination: number; completion: number; adaptation: number; }' is not assignable to type '{ coordination: number; completion: number; heartbeat: number; }'."}},{"start":31635,"length":21,"messageText":"Export declaration conflicts with exported declaration of 'TopologyManagerConfig'.","category":1,"code":2484}]],[1802,[{"start":365,"length":32,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './todowrite-batching-validator.js'?","category":1,"code":2835},{"start":673,"length":25,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './todowrite-integration.js'?","category":1,"code":2835}]],[1804,[{"start":315,"length":32,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './todowrite-batching-validator.js'?","category":1,"code":2835}]],[1805,[{"start":31167,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31210,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31271,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31334,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31382,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."},{"start":31447,"length":4,"code":2339,"category":1,"messageText":"Property 'data' does not exist on type 'MemoryEntry'."}]],[1807,[{"start":10923,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type '\"gt\" | \"lt\" | \"eq\" | \"gte\" | \"lte\" | \"ne\" | \"change\" | \"rate\"' is not assignable to type '\"gt\" | \"lt\" | \"eq\" | \"gte\" | \"lte\" | \"ne\"'.","category":1,"code":2322,"next":[{"messageText":"Type '\"change\"' is not assignable to type '\"gt\" | \"lt\" | \"eq\" | \"gte\" | \"lte\" | \"ne\"'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/verification/telemetry.ts","start":4837,"length":8,"messageText":"The expected type comes from property 'operator' which is declared here on type 'AlertThreshold'","category":3,"code":6500}]},{"start":15453,"length":15,"code":2339,"category":1,"messageText":"Property 'escalationLevel' does not exist on type 'TruthAlert'."},{"start":15510,"length":15,"code":2339,"category":1,"messageText":"Property 'escalationLevel' does not exist on type 'TruthAlert'."},{"start":21595,"length":12,"code":2339,"category":1,"messageText":"Property 'acknowledged' does not exist on type 'TruthAlert'."},{"start":21626,"length":14,"code":2339,"category":1,"messageText":"Property 'acknowledgedAt' does not exist on type 'TruthAlert'."},{"start":21665,"length":14,"code":2339,"category":1,"messageText":"Property 'acknowledgedBy' does not exist on type 'TruthAlert'."},{"start":25029,"length":12,"code":2339,"category":1,"messageText":"Property 'acknowledged' does not exist on type 'TruthAlert'."},{"start":25906,"length":15,"code":2339,"category":1,"messageText":"Property 'escalationLevel' does not exist on type 'TruthAlert'."},{"start":28756,"length":5,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'TruthAlert' is not assignable to parameter of type 'TruthMetric'.","category":1,"code":2345,"next":[{"messageText":"Type 'TruthAlert' is missing the following properties from type 'TruthMetric': agentId, taskId, metricType, value, and 3 more.","category":1,"code":2740}]}},{"start":30095,"length":12,"code":2339,"category":1,"messageText":"Property 'acknowledged' does not exist on type 'TruthAlert'."}]],[1816,[{"start":17299,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type 'unknown[]' is not assignable to type 'string[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'unknown' is not assignable to type 'string'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/verification/telemetry.ts","start":6581,"length":14,"messageText":"The expected type comes from property 'affectedAgents' which is declared here on type 'CriticalIssue'","category":3,"code":6500}]}]],[1818,[{"start":350,"length":15,"messageText":"Module '\"../crdt/types.js\"' has no exported member 'BenchmarkResult'.","category":1,"code":2305}]],[1819,[{"start":329,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './index.js'?","category":1,"code":2835},{"start":439,"length":14,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './middleware.js'?","category":1,"code":2835},{"start":538,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './tests.js'?","category":1,"code":2835},{"start":605,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":713,"length":24,"messageText":"Cannot redeclare exported variable 'BasicSecurityIntegration'.","category":1,"code":2323},{"start":4023,"length":27,"messageText":"Cannot redeclare exported variable 'AdvancedSecurityIntegration'.","category":1,"code":2323},{"start":7058,"length":30,"messageText":"Cannot redeclare exported variable 'ClaudeFlowAgentSecurityWrapper'.","category":1,"code":2323},{"start":10019,"length":22,"messageText":"Cannot redeclare exported variable 'SecurityTestingExample'.","category":1,"code":2323},{"start":13293,"length":27,"messageText":"Cannot redeclare exported variable 'ProductionDeploymentExample'.","category":1,"code":2323},{"start":17345,"length":24,"messageText":"Cannot redeclare exported variable 'BasicSecurityIntegration'.","category":1,"code":2323},{"start":17345,"length":24,"messageText":"Export declaration conflicts with exported declaration of 'BasicSecurityIntegration'.","category":1,"code":2484},{"start":17373,"length":27,"messageText":"Cannot redeclare exported variable 'AdvancedSecurityIntegration'.","category":1,"code":2323},{"start":17373,"length":27,"messageText":"Export declaration conflicts with exported declaration of 'AdvancedSecurityIntegration'.","category":1,"code":2484},{"start":17404,"length":30,"messageText":"Cannot redeclare exported variable 'ClaudeFlowAgentSecurityWrapper'.","category":1,"code":2323},{"start":17404,"length":30,"messageText":"Export declaration conflicts with exported declaration of 'ClaudeFlowAgentSecurityWrapper'.","category":1,"code":2484},{"start":17438,"length":22,"messageText":"Cannot redeclare exported variable 'SecurityTestingExample'.","category":1,"code":2323},{"start":17438,"length":22,"messageText":"Export declaration conflicts with exported declaration of 'SecurityTestingExample'.","category":1,"code":2484},{"start":17464,"length":27,"messageText":"Cannot redeclare exported variable 'ProductionDeploymentExample'.","category":1,"code":2323},{"start":17464,"length":27,"messageText":"Export declaration conflicts with exported declaration of 'ProductionDeploymentExample'.","category":1,"code":2484}]],[1820,[{"start":265,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":357,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":455,"length":25,"messageText":"Cannot redeclare exported variable 'SecurityMiddlewareManager'.","category":1,"code":2323},{"start":2930,"length":28,"messageText":"Cannot redeclare exported variable 'ThreatIntelligenceMiddleware'.","category":1,"code":2323},{"start":9217,"length":18,"messageText":"Cannot redeclare exported variable 'IPFilterMiddleware'.","category":1,"code":2323},{"start":11765,"length":25,"messageText":"Cannot redeclare exported variable 'SecurityLoggingMiddleware'.","category":1,"code":2323},{"start":14600,"length":31,"messageText":"Cannot redeclare exported variable 'PerformanceMonitoringMiddleware'.","category":1,"code":2323},{"start":18697,"length":30,"messageText":"Cannot redeclare exported variable 'ComplianceMonitoringMiddleware'.","category":1,"code":2323},{"start":22681,"length":25,"messageText":"Cannot redeclare exported variable 'SecurityMiddlewareManager'.","category":1,"code":2323},{"start":22681,"length":25,"messageText":"Export declaration conflicts with exported declaration of 'SecurityMiddlewareManager'.","category":1,"code":2484},{"start":22710,"length":28,"messageText":"Cannot redeclare exported variable 'ThreatIntelligenceMiddleware'.","category":1,"code":2323},{"start":22710,"length":28,"messageText":"Export declaration conflicts with exported declaration of 'ThreatIntelligenceMiddleware'.","category":1,"code":2484},{"start":22742,"length":18,"messageText":"Cannot redeclare exported variable 'IPFilterMiddleware'.","category":1,"code":2323},{"start":22742,"length":18,"messageText":"Export declaration conflicts with exported declaration of 'IPFilterMiddleware'.","category":1,"code":2484},{"start":22764,"length":25,"messageText":"Cannot redeclare exported variable 'SecurityLoggingMiddleware'.","category":1,"code":2323},{"start":22764,"length":25,"messageText":"Export declaration conflicts with exported declaration of 'SecurityLoggingMiddleware'.","category":1,"code":2484},{"start":22793,"length":31,"messageText":"Cannot redeclare exported variable 'PerformanceMonitoringMiddleware'.","category":1,"code":2323},{"start":22793,"length":31,"messageText":"Export declaration conflicts with exported declaration of 'PerformanceMonitoringMiddleware'.","category":1,"code":2484},{"start":22828,"length":30,"messageText":"Cannot redeclare exported variable 'ComplianceMonitoringMiddleware'.","category":1,"code":2323},{"start":22828,"length":30,"messageText":"Export declaration conflicts with exported declaration of 'ComplianceMonitoringMiddleware'.","category":1,"code":2484}]],[1823,[{"start":253,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './index.js'?","category":1,"code":2835},{"start":329,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './tests.js'?","category":1,"code":2835},{"start":412,"length":14,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './middleware.js'?","category":1,"code":2835},{"start":464,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835}]],[1826,[{"start":7915,"length":20,"code":2339,"category":1,"messageText":"Property 'analyzeDistributions' does not exist on type 'SystemTruthTracker'."},{"start":8918,"length":10,"code":2339,"category":1,"messageText":"Property 'throughput' does not exist on type 'SystemTruthMetrics'."},{"start":9268,"length":7,"code":2339,"category":1,"messageText":"Property 'latency' does not exist on type 'SystemTruthMetrics'."},{"start":9502,"length":9,"code":2339,"category":1,"messageText":"Property 'errorRate' does not exist on type 'SystemTruthMetrics'."},{"start":9696,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'SystemTruthMetrics'."},{"start":15620,"length":7,"code":2339,"category":1,"messageText":"Property 'latency' does not exist on type 'SystemTruthMetrics'."},{"start":15666,"length":10,"code":2339,"category":1,"messageText":"Property 'throughput' does not exist on type 'SystemTruthMetrics'."},{"start":15714,"length":9,"code":2339,"category":1,"messageText":"Property 'errorRate' does not exist on type 'SystemTruthMetrics'."},{"start":19649,"length":9,"code":2339,"category":1,"messageText":"Property 'errorRate' does not exist on type 'SystemTruthMetrics'."},{"start":22835,"length":10,"code":2339,"category":1,"messageText":"Property 'throughput' does not exist on type 'SystemTruthMetrics'."},{"start":22985,"length":9,"code":2339,"category":1,"messageText":"Property 'errorRate' does not exist on type 'SystemTruthMetrics'."},{"start":23219,"length":11,"code":2339,"category":1,"messageText":"Property 'successRate' does not exist on type 'SystemTruthMetrics'."},{"start":23288,"length":7,"code":2339,"category":1,"messageText":"Property 'latency' does not exist on type 'SystemTruthMetrics'."},{"start":23362,"length":7,"code":2339,"category":1,"messageText":"Property 'latency' does not exist on type 'SystemTruthMetrics'."}]],[1828,[{"start":304,"length":12,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './security.js'?","category":1,"code":2835},{"start":390,"length":14,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './middleware.js'?","category":1,"code":2835},{"start":464,"length":9,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types.js'?","category":1,"code":2835},{"start":558,"length":17,"messageText":"Cannot redeclare exported variable 'SecurityTestUtils'.","category":1,"code":2323},{"start":4592,"length":23,"messageText":"Cannot redeclare exported variable 'PenetrationTestingSuite'.","category":1,"code":2323},{"start":13906,"length":16,"messageText":"Cannot redeclare exported variable 'LoadTestingSuite'.","category":1,"code":2323},{"start":19152,"length":23,"messageText":"Cannot redeclare exported variable 'SecurityValidationSuite'.","category":1,"code":2323},{"start":23196,"length":17,"messageText":"Cannot redeclare exported variable 'SecurityTestUtils'.","category":1,"code":2323},{"start":23196,"length":17,"messageText":"Export declaration conflicts with exported declaration of 'SecurityTestUtils'.","category":1,"code":2484},{"start":23215,"length":23,"messageText":"Cannot redeclare exported variable 'PenetrationTestingSuite'.","category":1,"code":2323},{"start":23215,"length":23,"messageText":"Export declaration conflicts with exported declaration of 'PenetrationTestingSuite'.","category":1,"code":2484},{"start":23240,"length":16,"messageText":"Cannot redeclare exported variable 'LoadTestingSuite'.","category":1,"code":2323},{"start":23240,"length":16,"messageText":"Export declaration conflicts with exported declaration of 'LoadTestingSuite'.","category":1,"code":2484},{"start":23258,"length":23,"messageText":"Cannot redeclare exported variable 'SecurityValidationSuite'.","category":1,"code":2323},{"start":23258,"length":23,"messageText":"Export declaration conflicts with exported declaration of 'SecurityValidationSuite'.","category":1,"code":2484}]],[1829,[{"start":827,"length":28,"messageText":"Cannot find module './agent-claim-validator.js' or its corresponding type declarations.","category":1,"code":2307},{"start":895,"length":30,"messageText":"Cannot find module './integration-test-runner.js' or its corresponding type declarations.","category":1,"code":2307},{"start":964,"length":21,"messageText":"Cannot find module './state-snapshot.js' or its corresponding type declarations.","category":1,"code":2307},{"start":7381,"length":28,"code":2820,"category":1,"messageText":"Type '\"paused\"' is not assignable to type 'VerificationStatus'. Did you mean '\"passed\"'?"},{"start":7706,"length":41,"messageText":"This comparison appears to be unintentional because the types 'VerificationStatus' and '\"paused\"' have no overlap.","category":1,"code":2367},{"start":13804,"length":42,"messageText":"This comparison appears to be unintentional because the types 'VerificationStatus' and '\"paused\"' have no overlap.","category":1,"code":2367},{"start":20102,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type 'TruthEvidence[]' is not assignable to type 'VerificationEvidence[]'.","category":1,"code":2322,"next":[{"messageText":"Type 'TruthEvidence' is missing the following properties from type 'VerificationEvidence': data, reliability","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'TruthEvidence' is not assignable to type 'VerificationEvidence'."}}]},"relatedInformation":[{"start":34239,"length":8,"messageText":"The expected type comes from property 'evidence' which is declared here on type 'ValidatorResult'","category":3,"code":6500}]}]],[1831,[{"start":167,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './engine/wasm-engine.js'?","category":1,"code":2835},{"start":229,"length":34,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './processors/real-time-processor.js'?","category":1,"code":2835},{"start":309,"length":45,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './transformers/code-transformation-pipeline.js'?","category":1,"code":2835},{"start":392,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './performance/performance-monitor.js'?","category":1,"code":2835},{"start":465,"length":24,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './wasm-ast-coordinator.js'?","category":1,"code":2835},{"start":518,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types/ast-types.js'?","category":1,"code":2835},{"start":590,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './tests/wasm-ast-test-suite.js'?","category":1,"code":2835},{"start":746,"length":18,"messageText":"Cannot find name 'WASMASTCoordinator'.","category":1,"code":2304},{"start":852,"length":10,"messageText":"Cannot find name 'WASMEngine'.","category":1,"code":2304},{"start":937,"length":18,"messageText":"Cannot find name 'PerformanceMonitor'.","category":1,"code":2304},{"start":1893,"length":18,"messageText":"No value exists in scope for the shorthand property 'WASMASTCoordinator'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":1916,"length":10,"messageText":"No value exists in scope for the shorthand property 'WASMEngine'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":1931,"length":20,"messageText":"No value exists in scope for the shorthand property 'RealTimeASTProcessor'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":1956,"length":26,"messageText":"No value exists in scope for the shorthand property 'CodeTransformationPipeline'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":1987,"length":18,"messageText":"No value exists in scope for the shorthand property 'PerformanceMonitor'. Either declare one or provide an initializer.","category":1,"code":18004},{"start":2010,"length":16,"messageText":"No value exists in scope for the shorthand property 'WASMASTTestSuite'. Either declare one or provide an initializer.","category":1,"code":18004}]],[1832,[{"start":192,"length":22,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './engine/wasm-engine.js'?","category":1,"code":2835},{"start":254,"length":34,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './processors/real-time-processor.js'?","category":1,"code":2835},{"start":334,"length":45,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './transformers/code-transformation-pipeline.js'?","category":1,"code":2835},{"start":417,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './performance/performance-monitor.js'?","category":1,"code":2835},{"start":620,"length":19,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './types/ast-types.js'?","category":1,"code":2835}]],[1833,[{"start":176,"length":10,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../index.js'?","category":1,"code":2835},{"start":5461,"length":7,"code":2339,"category":1,"messageText":"Property 'success' does not exist on type 'unknown'."}]],[1834,[{"start":364,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835},{"start":1511,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Uint8Array<ArrayBufferLike>' is not assignable to parameter of type 'BufferSource'.","category":1,"code":2345,"next":[{"messageText":"Type 'Uint8Array<ArrayBufferLike>' is not assignable to type 'ArrayBufferView<ArrayBuffer>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'buffer' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'ArrayBufferLike' is not assignable to type 'ArrayBuffer'.","category":1,"code":2322,"next":[{"messageText":"Type 'SharedArrayBuffer' is not assignable to type 'ArrayBuffer'.","category":1,"code":2322,"next":[{"messageText":"Types of property '[Symbol.toStringTag]' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '\"SharedArrayBuffer\"' is not assignable to type '\"ArrayBuffer\"'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type 'SharedArrayBuffer' is not assignable to type 'ArrayBuffer'."}}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'Uint8Array<ArrayBufferLike>' is not assignable to type 'ArrayBufferView<ArrayBuffer>'."}}]}]}]}}]],[1835,[{"start":278,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835}]],[1836,[{"start":257,"length":23,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../engine/wasm-engine.js'?","category":1,"code":2835},{"start":485,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835},{"start":10130,"length":7,"code":2339,"category":1,"messageText":"Property 'success' does not exist on type 'unknown'."}]],[1837,[{"start":138,"length":25,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../wasm-ast-coordinator.js'?","category":1,"code":2835},{"start":193,"length":23,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../engine/wasm-engine.js'?","category":1,"code":2835},{"start":256,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../processors/real-time-processor.js'?","category":1,"code":2835},{"start":337,"length":46,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../transformers/code-transformation-pipeline.js'?","category":1,"code":2835},{"start":421,"length":36,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../performance/performance-monitor.js'?","category":1,"code":2835},{"start":585,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835},{"start":6261,"length":7,"code":2339,"category":1,"messageText":"Property 'success' does not exist on type 'unknown'."}]],[1838,[{"start":183,"length":35,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../processors/real-time-processor.js'?","category":1,"code":2835},{"start":350,"length":20,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../types/ast-types.js'?","category":1,"code":2835}]],[1842,[{"start":1075,"length":6,"messageText":"Namespace 'WebSocket' has no exported member 'Server'.","category":1,"code":2694},{"start":1732,"length":6,"code":2339,"category":1,"messageText":"Property 'Server' does not exist on type 'typeof WebSocket'."}]],[1845,[{"start":102,"length":29,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './feature-lifecycle-manager.js'?","category":1,"code":2835},{"start":182,"length":47,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../testing-integration/continuous-test-runner.js'?","category":1,"code":2835},{"start":283,"length":42,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../quality-gates/automated-review-system.js'?","category":1,"code":2835},{"start":387,"length":31,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './progressive-rollout-manager.js'?","category":1,"code":2835},{"start":466,"length":41,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../monitoring/real-time-feedback-system.js'?","category":1,"code":2835},{"start":561,"length":47,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../testing-integration/chrome-mcp-integration.js'?","category":1,"code":2835},{"start":670,"length":34,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './fullstack-coordination-manager.js'?","category":1,"code":2835},{"start":753,"length":30,"messageText":"Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../rollback/recovery-manager.js'?","category":1,"code":2835}]]],"affectedFilesPendingEmit":[562,288,445,54,446,447,448,502,503,504,505,506,508,509,510,511,512,507,513,514,515,516,517,472,485,486,484,487,56,500,501,499,519,520,528,527,529,557,558,559,560,561,563,564,565,566,567,838,839,570,754,757,761,764,569,777,779,767,780,776,773,781,783,784,785,786,762,763,815,814,816,782,822,824,770,772,769,771,768,825,820,775,774,826,828,827,823,821,829,830,818,778,831,832,833,760,834,840,841,842,1284,1285,1283,1286,1287,1288,1289,1292,1290,1291,845,1062,1200,1294,1035,1295,1037,1296,1297,1298,1301,1203,1199,984,1302,1303,1304,1205,1060,1048,1328,1057,1059,1058,1049,1050,1056,1051,1052,1198,1185,1305,1186,1061,1306,1206,918,977,1026,1307,1264,1308,1034,1309,1310,1027,1032,919,1023,986,1022,1011,1012,1013,1021,1014,987,1025,1191,1311,917,1202,1313,1314,1184,1324,1033,1326,1204,1063,1334,1331,1329,1336,1337,1330,1332,1335,1333,1016,1064,1192,1065,1266,1338,1343,1339,1342,1341,1340,1344,1277,1278,1017,1279,1178,1177,1265,1019,1201,1131,1149,1151,1152,1143,1148,1133,1153,1174,1145,1144,1171,1169,1167,1166,1165,1162,1168,1160,1164,1161,1163,1055,1157,1156,1154,1081,1086,1071,1078,1079,1077,1075,1070,1080,1066,1099,1082,1101,1105,1083,1093,1097,1096,1094,1095,1076,1069,1067,1068,1074,1085,985,1084,1073,1072,1100,1089,1091,1092,1090,1088,1087,1135,1108,1107,1173,1136,1170,1194,1130,1129,1138,1109,1122,1110,1112,1121,1114,1125,1127,1115,1120,1116,1117,1113,1124,1119,1118,1126,1111,1123,1128,1187,1139,1140,1134,1197,1150,1141,1172,1137,1142,1132,1147,1196,1146,1195,1193,1020,1280,1281,1345,1346,1347,1018,1189,1348,1349,1158,1190,1350,1188,1159,1282,1352,1358,1359,1362,1363,1364,1357,1366,1367,488,1360,1368,1361,1323,1315,1369,1381,1380,521,1370,1385,1375,1386,1376,1372,1384,1299,1300,1382,1377,1383,1374,1371,1373,1378,1379,758,1005,914,546,1387,852,545,1388,765,915,547,1389,916,544,1390,1391,884,1392,1393,913,766,1394,549,888,911,542,548,889,885,886,882,881,541,912,540,857,1397,1396,859,1398,865,863,864,1400,909,1399,1312,1401,858,855,854,853,1395,1402,907,910,908,880,543,1403,1320,849,50,1404,850,49,851,1010,1405,57,1024,1406,1435,1453,1455,1456,1458,1457,1454,982,983,980,979,1459,978,981,1460,1467,1461,1466,1464,1465,1463,1462,1041,1044,1038,1047,1043,1327,1042,1469,1046,1039,1045,1040,1768,1155,1470,1475,58,1476,1482,1481,1483,483,1484,1268,1267,1003,1492,1006,1493,1494,1497,1498,1004,1501,1499,1500,1504,1505,1506,1509,1507,1508,1001,1008,1502,1503,1009,1002,1491,1007,1000,994,999,995,1293,1053,474,478,477,479,53,1054,1104,1354,1103,480,1351,481,1355,1353,52,1510,1102,476,759,1356,1106,1511,921,936,975,938,937,976,920,1512,1522,1518,1520,1523,1519,1521,1514,1513,1515,1516,1526,1527,1525,1524,1528,1517,1480,1529,1530,1532,1531,526,524,525,1207,1263,1212,1533,1176,1175,1534,1536,1538,1541,1540,1537,1542,1543,1550,1545,1544,1548,1539,1547,1535,1549,1546,1551,1552,1553,1554,556,1555,1556,1557,1030,1031,1558,1270,1276,1271,1272,1273,1274,1269,1275,1559,1560,1561,1562,1563,1594,1595,1766,1767,1764,1763,1765,1769,1770,1771,1772,1773,1593,1779,1774,1780,1778,1777,1776,1775,1565,1566,554,887,555,1567,1583,1584,1588,1586,1585,1587,1589,1568,1564,1569,1578,553,1579,1580,1571,495,497,489,1577,498,496,1576,1573,1572,1575,1574,1581,1582,551,550,1570,1590,51,1591,1781,1477,1479,1782,1478,988,990,989,993,991,992,1783,1784,1786,1787,1785,1788,1365,1790,1791,1792,1789,482,55,1795,1797,1799,523,473,883,1036,48,1211,817,568,1098,1213,552,819,522,47,1319,1322,1321,1800,1801,1318,1262,1802,856,1803,1804,1806,1807,1830,1811,1809,1810,1813,1814,1815,1816,1818,1819,1812,1325,1808,1817,1820,1821,1822,1823,1824,1825,1826,1805,1827,1828,1317,1316,1829,1833,1834,1831,1835,1836,1837,1838,1839,1832,1592,1842,1843,1844,1845,1846],"version":"5.9.2"}
|