stringray-ai 1.0.37 → 1.0.39

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.
Files changed (115) hide show
  1. package/dist/plugin/architectural-integrity.d.ts +21 -0
  2. package/dist/plugin/architectural-integrity.d.ts.map +1 -0
  3. package/dist/plugin/architectural-integrity.js +81 -0
  4. package/dist/plugin/architectural-integrity.js.map +1 -0
  5. package/dist/plugin/boot-orchestrator.d.ts +100 -0
  6. package/dist/plugin/boot-orchestrator.d.ts.map +1 -0
  7. package/dist/plugin/boot-orchestrator.js +606 -0
  8. package/dist/plugin/boot-orchestrator.js.map +1 -0
  9. package/dist/plugin/codex-injector.d.ts +72 -0
  10. package/dist/plugin/codex-injector.d.ts.map +1 -0
  11. package/dist/plugin/codex-injector.js +387 -0
  12. package/dist/plugin/codex-injector.js.map +1 -0
  13. package/dist/plugin/delegation/index.d.ts +16 -0
  14. package/dist/plugin/delegation/index.d.ts.map +1 -0
  15. package/dist/plugin/delegation/index.js +13 -0
  16. package/dist/plugin/delegation/index.js.map +1 -0
  17. package/dist/plugin/delegation/session-coordinator.d.ts +121 -0
  18. package/dist/plugin/delegation/session-coordinator.d.ts.map +1 -0
  19. package/dist/plugin/delegation/session-coordinator.js +346 -0
  20. package/dist/plugin/delegation/session-coordinator.js.map +1 -0
  21. package/dist/plugin/index.d.ts +3 -0
  22. package/dist/plugin/index.d.ts.map +1 -0
  23. package/dist/plugin/index.js +3 -0
  24. package/dist/plugin/index.js.map +1 -0
  25. package/dist/plugin/monitoring/memory-monitor.d.ts +113 -0
  26. package/dist/plugin/monitoring/memory-monitor.d.ts.map +1 -0
  27. package/dist/plugin/monitoring/memory-monitor.js +283 -0
  28. package/dist/plugin/monitoring/memory-monitor.js.map +1 -0
  29. package/dist/plugin/postprocessor/PostProcessor.d.ts +90 -0
  30. package/dist/plugin/postprocessor/PostProcessor.d.ts.map +1 -0
  31. package/dist/plugin/postprocessor/PostProcessor.js +631 -0
  32. package/dist/plugin/postprocessor/PostProcessor.js.map +1 -0
  33. package/dist/plugin/postprocessor/analysis/FailureAnalysisEngine.d.ts +40 -0
  34. package/dist/plugin/postprocessor/analysis/FailureAnalysisEngine.d.ts.map +1 -0
  35. package/dist/plugin/postprocessor/analysis/FailureAnalysisEngine.js +244 -0
  36. package/dist/plugin/postprocessor/analysis/FailureAnalysisEngine.js.map +1 -0
  37. package/dist/plugin/postprocessor/autofix/AutoFixEngine.d.ts +50 -0
  38. package/dist/plugin/postprocessor/autofix/AutoFixEngine.d.ts.map +1 -0
  39. package/dist/plugin/postprocessor/autofix/AutoFixEngine.js +246 -0
  40. package/dist/plugin/postprocessor/autofix/AutoFixEngine.js.map +1 -0
  41. package/dist/plugin/postprocessor/autofix/FixValidator.d.ts +27 -0
  42. package/dist/plugin/postprocessor/autofix/FixValidator.d.ts.map +1 -0
  43. package/dist/plugin/postprocessor/autofix/FixValidator.js +158 -0
  44. package/dist/plugin/postprocessor/autofix/FixValidator.js.map +1 -0
  45. package/dist/plugin/postprocessor/config.d.ts +7 -0
  46. package/dist/plugin/postprocessor/config.d.ts.map +1 -0
  47. package/dist/plugin/postprocessor/config.js +66 -0
  48. package/dist/plugin/postprocessor/config.js.map +1 -0
  49. package/dist/plugin/postprocessor/escalation/EscalationEngine.d.ts +73 -0
  50. package/dist/plugin/postprocessor/escalation/EscalationEngine.d.ts.map +1 -0
  51. package/dist/plugin/postprocessor/escalation/EscalationEngine.js +249 -0
  52. package/dist/plugin/postprocessor/escalation/EscalationEngine.js.map +1 -0
  53. package/dist/plugin/postprocessor/monitoring/MonitoringEngine.d.ts +19 -0
  54. package/dist/plugin/postprocessor/monitoring/MonitoringEngine.d.ts.map +1 -0
  55. package/dist/plugin/postprocessor/monitoring/MonitoringEngine.js +120 -0
  56. package/dist/plugin/postprocessor/monitoring/MonitoringEngine.js.map +1 -0
  57. package/dist/plugin/postprocessor/redeploy/RedeployCoordinator.d.ts +92 -0
  58. package/dist/plugin/postprocessor/redeploy/RedeployCoordinator.d.ts.map +1 -0
  59. package/dist/plugin/postprocessor/redeploy/RedeployCoordinator.js +319 -0
  60. package/dist/plugin/postprocessor/redeploy/RedeployCoordinator.js.map +1 -0
  61. package/dist/plugin/postprocessor/success/SuccessHandler.d.ts +61 -0
  62. package/dist/plugin/postprocessor/success/SuccessHandler.d.ts.map +1 -0
  63. package/dist/plugin/postprocessor/success/SuccessHandler.js +148 -0
  64. package/dist/plugin/postprocessor/success/SuccessHandler.js.map +1 -0
  65. package/dist/plugin/postprocessor/triggers/APITrigger.d.ts +13 -0
  66. package/dist/plugin/postprocessor/triggers/APITrigger.d.ts.map +1 -0
  67. package/dist/plugin/postprocessor/triggers/APITrigger.js +20 -0
  68. package/dist/plugin/postprocessor/triggers/APITrigger.js.map +1 -0
  69. package/dist/plugin/postprocessor/triggers/GitHookTrigger.d.ts +17 -0
  70. package/dist/plugin/postprocessor/triggers/GitHookTrigger.d.ts.map +1 -0
  71. package/dist/plugin/postprocessor/triggers/GitHookTrigger.js +285 -0
  72. package/dist/plugin/postprocessor/triggers/GitHookTrigger.js.map +1 -0
  73. package/dist/plugin/postprocessor/triggers/WebhookTrigger.d.ts +13 -0
  74. package/dist/plugin/postprocessor/triggers/WebhookTrigger.d.ts.map +1 -0
  75. package/dist/plugin/postprocessor/triggers/WebhookTrigger.js +21 -0
  76. package/dist/plugin/postprocessor/triggers/WebhookTrigger.js.map +1 -0
  77. package/dist/plugin/postprocessor/types.d.ts +198 -0
  78. package/dist/plugin/postprocessor/types.d.ts.map +1 -0
  79. package/dist/plugin/postprocessor/types.js +5 -0
  80. package/dist/plugin/postprocessor/types.js.map +1 -0
  81. package/dist/plugin/security/security-auditor.d.ts +57 -0
  82. package/dist/plugin/security/security-auditor.d.ts.map +1 -0
  83. package/dist/plugin/security/security-auditor.js +583 -0
  84. package/dist/plugin/security/security-auditor.js.map +1 -0
  85. package/dist/plugin/security/security-hardener.d.ts +63 -0
  86. package/dist/plugin/security/security-hardener.d.ts.map +1 -0
  87. package/dist/plugin/security/security-hardener.js +181 -0
  88. package/dist/plugin/security/security-hardener.js.map +1 -0
  89. package/dist/plugin/security/security-headers.d.ts +52 -0
  90. package/dist/plugin/security/security-headers.d.ts.map +1 -0
  91. package/dist/plugin/security/security-headers.js +118 -0
  92. package/dist/plugin/security/security-headers.js.map +1 -0
  93. package/dist/plugin/session/session-cleanup-manager.d.ts +118 -0
  94. package/dist/plugin/session/session-cleanup-manager.d.ts.map +1 -0
  95. package/dist/plugin/session/session-cleanup-manager.js +324 -0
  96. package/dist/plugin/session/session-cleanup-manager.js.map +1 -0
  97. package/dist/plugin/session/session-monitor.d.ts +99 -0
  98. package/dist/plugin/session/session-monitor.d.ts.map +1 -0
  99. package/dist/plugin/session/session-monitor.js +363 -0
  100. package/dist/plugin/session/session-monitor.js.map +1 -0
  101. package/dist/plugin/session/session-state-manager.d.ts +142 -0
  102. package/dist/plugin/session/session-state-manager.d.ts.map +1 -0
  103. package/dist/plugin/session/session-state-manager.js +504 -0
  104. package/dist/plugin/session/session-state-manager.js.map +1 -0
  105. package/dist/plugin/strray-activation.d.ts +18 -0
  106. package/dist/plugin/strray-activation.d.ts.map +1 -0
  107. package/dist/plugin/strray-activation.js +114 -0
  108. package/dist/plugin/strray-activation.js.map +1 -0
  109. package/dist/plugin/validation/report-content-validator.d.ts +43 -0
  110. package/dist/plugin/validation/report-content-validator.d.ts.map +1 -0
  111. package/dist/plugin/validation/report-content-validator.js +219 -0
  112. package/dist/plugin/validation/report-content-validator.js.map +1 -0
  113. package/package.json +1 -1
  114. package/scripts/test-complex-orchestration.mjs +1 -1
  115. package/scripts/test-simple-prompt.mjs +1 -1
@@ -0,0 +1,21 @@
1
+ /**
2
+ * ARCHITECTURAL INTEGRITY ENFORCEMENT
3
+ *
4
+ * This module ensures that critical framework components are always active
5
+ * and integrated, preventing the staged initialization issues that broke
6
+ * the post-processor and rules engine enforcement.
7
+ */
8
+ /**
9
+ * Verify all critical components are active and integrated
10
+ */
11
+ export declare function verifyArchitecturalIntegrity(): Promise<{
12
+ allActive: boolean;
13
+ issues: string[];
14
+ recommendations: string[];
15
+ }>;
16
+ /**
17
+ * Force activation of critical components if missing
18
+ * This prevents staged initialization from breaking the framework
19
+ */
20
+ export declare function ensureCriticalComponents(): Promise<void>;
21
+ //# sourceMappingURL=architectural-integrity.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"architectural-integrity.d.ts","sourceRoot":"","sources":["../../src/architectural-integrity.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAYH;;GAEG;AACH,wBAAsB,4BAA4B,IAAI,OAAO,CAAC;IAC5D,SAAS,EAAE,OAAO,CAAC;IACnB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,eAAe,EAAE,MAAM,EAAE,CAAC;CAC3B,CAAC,CAuDD;AAED;;;GAGG;AACH,wBAAsB,wBAAwB,IAAI,OAAO,CAAC,IAAI,CAAC,CAoB9D"}
@@ -0,0 +1,81 @@
1
+ /**
2
+ * ARCHITECTURAL INTEGRITY ENFORCEMENT
3
+ *
4
+ * This module ensures that critical framework components are always active
5
+ * and integrated, preventing the staged initialization issues that broke
6
+ * the post-processor and rules engine enforcement.
7
+ */
8
+ import { frameworkLogger } from "./framework-logger.js";
9
+ // Critical components that must always be active
10
+ const CRITICAL_COMPONENTS = [
11
+ "stateManager",
12
+ "postProcessor",
13
+ "rulesEngine",
14
+ "codexInjector",
15
+ ];
16
+ /**
17
+ * Verify all critical components are active and integrated
18
+ */
19
+ export async function verifyArchitecturalIntegrity() {
20
+ const issues = [];
21
+ const recommendations = [];
22
+ // Check state manager
23
+ const stateManager = globalThis.strRayStateManager;
24
+ if (!stateManager) {
25
+ issues.push("State manager not initialized");
26
+ recommendations.push("Ensure boot orchestrator runs before framework activation");
27
+ }
28
+ // Check post-processor
29
+ const postProcessor = globalThis.strRayPostProcessor;
30
+ if (!postProcessor) {
31
+ issues.push("Post-processor not activated");
32
+ recommendations.push("Add post-processor activation to strray-activation.ts");
33
+ }
34
+ // Check codex injector
35
+ const codexInjector = globalThis.strRayCodexInjector;
36
+ if (!codexInjector) {
37
+ issues.push("Codex injector not initialized");
38
+ recommendations.push("Ensure codex injection is active in plugin context");
39
+ }
40
+ // Check rules engine enforcement
41
+ if (stateManager && !stateManager.get("enforcement:active")) {
42
+ issues.push("Rules engine not actively enforcing codex");
43
+ recommendations.push("Ensure codex rules are enforced during tool execution");
44
+ }
45
+ const allActive = issues.length === 0;
46
+ if (!allActive) {
47
+ frameworkLogger.log("architectural-integrity", `Integrity check failed: ${issues.length} issues found`, "error", { issues, recommendations });
48
+ }
49
+ else {
50
+ frameworkLogger.log("architectural-integrity", "All critical components active and integrated", "success");
51
+ }
52
+ return { allActive, issues, recommendations };
53
+ }
54
+ /**
55
+ * Force activation of critical components if missing
56
+ * This prevents staged initialization from breaking the framework
57
+ */
58
+ export async function ensureCriticalComponents() {
59
+ const integrity = await verifyArchitecturalIntegrity();
60
+ if (!integrity.allActive) {
61
+ frameworkLogger.log("architectural-integrity", "Activating missing critical components", "info");
62
+ // Force activation of missing components
63
+ for (const recommendation of integrity.recommendations) {
64
+ if (recommendation.includes("post-processor")) {
65
+ await forcePostProcessorActivation();
66
+ }
67
+ if (recommendation.includes("codex")) {
68
+ await forceCodexActivation();
69
+ }
70
+ }
71
+ }
72
+ }
73
+ async function forcePostProcessorActivation() {
74
+ // Implementation to force post-processor activation
75
+ // This ensures the post-processor is always available
76
+ }
77
+ async function forceCodexActivation() {
78
+ // Implementation to force codex activation
79
+ // This ensures rules are always enforced
80
+ }
81
+ //# sourceMappingURL=architectural-integrity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"architectural-integrity.js","sourceRoot":"","sources":["../../src/architectural-integrity.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAExD,iDAAiD;AACjD,MAAM,mBAAmB,GAAG;IAC1B,cAAc;IACd,eAAe;IACf,aAAa;IACb,eAAe;CACP,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,4BAA4B;IAKhD,MAAM,MAAM,GAAa,EAAE,CAAC;IAC5B,MAAM,eAAe,GAAa,EAAE,CAAC;IAErC,sBAAsB;IACtB,MAAM,YAAY,GAAI,UAAkB,CAAC,kBAAkB,CAAC;IAC5D,IAAI,CAAC,YAAY,EAAE,CAAC;QAClB,MAAM,CAAC,IAAI,CAAC,+BAA+B,CAAC,CAAC;QAC7C,eAAe,CAAC,IAAI,CAClB,2DAA2D,CAC5D,CAAC;IACJ,CAAC;IAED,uBAAuB;IACvB,MAAM,aAAa,GAAI,UAAkB,CAAC,mBAAmB,CAAC;IAC9D,IAAI,CAAC,aAAa,EAAE,CAAC;QACnB,MAAM,CAAC,IAAI,CAAC,8BAA8B,CAAC,CAAC;QAC5C,eAAe,CAAC,IAAI,CAClB,uDAAuD,CACxD,CAAC;IACJ,CAAC;IAED,uBAAuB;IACvB,MAAM,aAAa,GAAI,UAAkB,CAAC,mBAAmB,CAAC;IAC9D,IAAI,CAAC,aAAa,EAAE,CAAC;QACnB,MAAM,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC;QAC9C,eAAe,CAAC,IAAI,CAAC,oDAAoD,CAAC,CAAC;IAC7E,CAAC;IAED,iCAAiC;IACjC,IAAI,YAAY,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,oBAAoB,CAAC,EAAE,CAAC;QAC5D,MAAM,CAAC,IAAI,CAAC,2CAA2C,CAAC,CAAC;QACzD,eAAe,CAAC,IAAI,CAClB,uDAAuD,CACxD,CAAC;IACJ,CAAC;IAED,MAAM,SAAS,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,CAAC;IAEtC,IAAI,CAAC,SAAS,EAAE,CAAC;QACf,eAAe,CAAC,GAAG,CACjB,yBAAyB,EACzB,2BAA2B,MAAM,CAAC,MAAM,eAAe,EACvD,OAAO,EACP,EAAE,MAAM,EAAE,eAAe,EAAE,CAC5B,CAAC;IACJ,CAAC;SAAM,CAAC;QACN,eAAe,CAAC,GAAG,CACjB,yBAAyB,EACzB,+CAA+C,EAC/C,SAAS,CACV,CAAC;IACJ,CAAC;IAED,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC;AAChD,CAAC;AAED;;;GAGG;AACH,MAAM,CAAC,KAAK,UAAU,wBAAwB;IAC5C,MAAM,SAAS,GAAG,MAAM,4BAA4B,EAAE,CAAC;IAEvD,IAAI,CAAC,SAAS,CAAC,SAAS,EAAE,CAAC;QACzB,eAAe,CAAC,GAAG,CACjB,yBAAyB,EACzB,wCAAwC,EACxC,MAAM,CACP,CAAC;QAEF,yCAAyC;QACzC,KAAK,MAAM,cAAc,IAAI,SAAS,CAAC,eAAe,EAAE,CAAC;YACvD,IAAI,cAAc,CAAC,QAAQ,CAAC,gBAAgB,CAAC,EAAE,CAAC;gBAC9C,MAAM,4BAA4B,EAAE,CAAC;YACvC,CAAC;YACD,IAAI,cAAc,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC;gBACrC,MAAM,oBAAoB,EAAE,CAAC;YAC/B,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAED,KAAK,UAAU,4BAA4B;IACzC,oDAAoD;IACpD,sDAAsD;AACxD,CAAC;AAED,KAAK,UAAU,oBAAoB;IACjC,2CAA2C;IAC3C,yCAAyC;AAC3C,CAAC"}
@@ -0,0 +1,100 @@
1
+ /**
2
+ * StringRay Framework v1.0.0 - Boot Orchestrator
3
+ *
4
+ * Implements orchestrator-first boot sequence with automatic enforcement activation.
5
+ * Coordinates the initialization of all framework components in the correct order.
6
+ *
7
+ * @version 1.0.0
8
+ * @since 2026-01-07
9
+ */
10
+ import { StringRayStateManager } from "./state/state-manager.js";
11
+ export interface BootSequenceConfig {
12
+ enableEnforcement: boolean;
13
+ codexValidation: boolean;
14
+ sessionManagement: boolean;
15
+ processorActivation: boolean;
16
+ agentLoading: boolean;
17
+ }
18
+ export interface BootResult {
19
+ success: boolean;
20
+ orchestratorLoaded: boolean;
21
+ sessionManagementActive: boolean;
22
+ processorsActivated: boolean;
23
+ enforcementEnabled: boolean;
24
+ codexComplianceActive: boolean;
25
+ agentsLoaded: string[];
26
+ errors: string[];
27
+ }
28
+ export declare class BootOrchestrator {
29
+ private contextLoader;
30
+ private stateManager;
31
+ private processorManager;
32
+ private config;
33
+ constructor(config?: Partial<BootSequenceConfig>, stateManager?: StringRayStateManager);
34
+ /**
35
+ * Initialize delegation system components
36
+ */
37
+ private initializeDelegationSystem;
38
+ /**
39
+ * Load orchestrator as the first component
40
+ */
41
+ private loadOrchestrator;
42
+ /**
43
+ * Initialize session management system
44
+ */
45
+ private initializeSessionManagement;
46
+ /**
47
+ * Activate pre/post processors
48
+ */
49
+ private activateProcessors;
50
+ /**
51
+ * Load remaining agents after orchestrator
52
+ */
53
+ private loadRemainingAgents;
54
+ /**
55
+ * Enable automatic enforcement activation
56
+ */
57
+ private enableEnforcement;
58
+ /**
59
+ * Activate codex compliance checking during boot
60
+ */
61
+ private activateCodexCompliance;
62
+ private initializeSecurityComponents;
63
+ private finalizeSecurityIntegration;
64
+ private runInitialSecurityAudit;
65
+ /**
66
+ * Validate processor health during boot
67
+ */
68
+ private validateProcessorHealth;
69
+ /**
70
+ * Get current boot status information
71
+ */
72
+ getBootStatus(): BootResult;
73
+ /**
74
+ * Set up comprehensive memory monitoring and alerting
75
+ */
76
+ private setupMemoryMonitoring;
77
+ /**
78
+ * Perform comprehensive memory health check
79
+ */
80
+ getMemoryHealth(): {
81
+ healthy: boolean;
82
+ issues: string[];
83
+ metrics: {
84
+ current: any;
85
+ peak: any;
86
+ average: number;
87
+ trend: string;
88
+ };
89
+ };
90
+ /**
91
+ * Execute the boot sequence (internal framework initialization)
92
+ */
93
+ executeBootSequence(): Promise<BootResult>;
94
+ /**
95
+ * Load StringRay configuration from Python ConfigManager
96
+ */
97
+ private loadStringRayConfiguration;
98
+ }
99
+ export declare const bootOrchestrator: BootOrchestrator;
100
+ //# sourceMappingURL=boot-orchestrator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"boot-orchestrator.d.ts","sourceRoot":"","sources":["../../src/boot-orchestrator.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAGH,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AA0EjE,MAAM,WAAW,kBAAkB;IACjC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,eAAe,EAAE,OAAO,CAAC;IACzB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,mBAAmB,EAAE,OAAO,CAAC;IAC7B,YAAY,EAAE,OAAO,CAAC;CACvB;AAED,MAAM,WAAW,UAAU;IACzB,OAAO,EAAE,OAAO,CAAC;IACjB,kBAAkB,EAAE,OAAO,CAAC;IAC5B,uBAAuB,EAAE,OAAO,CAAC;IACjC,mBAAmB,EAAE,OAAO,CAAC;IAC7B,kBAAkB,EAAE,OAAO,CAAC;IAC5B,qBAAqB,EAAE,OAAO,CAAC;IAC/B,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,aAAa,CAAyB;IAC9C,OAAO,CAAC,YAAY,CAAwB;IAC5C,OAAO,CAAC,gBAAgB,CAAmB;IAC3C,OAAO,CAAC,MAAM,CAAqB;gBAGjC,MAAM,GAAE,OAAO,CAAC,kBAAkB,CAAM,EACxC,YAAY,CAAC,EAAE,qBAAqB;IAuBtC;;OAEG;YACW,0BAA0B;IAqBxC;;OAEG;YACW,gBAAgB;IAqB9B;;OAEG;YACW,2BAA2B;IAqDzC;;OAEG;YACW,kBAAkB;IAuGhC;;OAEG;YACW,mBAAmB;IA4CjC;;OAEG;YACW,iBAAiB;IAyB/B;;OAEG;YACW,uBAAuB;YA8BvB,4BAA4B;YAc5B,2BAA2B;YAc3B,uBAAuB;IAuBrC;;OAEG;YACW,uBAAuB;IAgCrC;;OAEG;IACH,aAAa,IAAI,UAAU;IAuB3B;;OAEG;IACH,OAAO,CAAC,qBAAqB;IAmD7B;;OAEG;IACH,eAAe,IAAI;QACjB,OAAO,EAAE,OAAO,CAAC;QACjB,MAAM,EAAE,MAAM,EAAE,CAAC;QACjB,OAAO,EAAE;YACP,OAAO,EAAE,GAAG,CAAC;YACb,IAAI,EAAE,GAAG,CAAC;YACV,OAAO,EAAE,MAAM,CAAC;YAChB,KAAK,EAAE,MAAM,CAAC;SACf,CAAC;KACH;IA8BD;;OAEG;IACG,mBAAmB,IAAI,OAAO,CAAC,UAAU,CAAC;IA6JhD;;OAEG;YACW,0BAA0B;CAgDzC;AAGD,eAAO,MAAM,gBAAgB,kBAAyB,CAAC"}