@noorm/marie-cli 0.1.16 → 0.1.18

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 (158) hide show
  1. package/dist/cli-new/components/AgenticSpinner.js +28 -0
  2. package/dist/cli-new/components/AgenticSpinner.js.map +1 -0
  3. package/dist/cli-new/components/App.js +3 -1
  4. package/dist/cli-new/components/App.js.map +1 -1
  5. package/dist/cli-new/components/ApprovalDialog.js +1 -1
  6. package/dist/cli-new/components/ApprovalDialog.js.map +1 -1
  7. package/dist/cli-new/components/Banner.js +16 -6
  8. package/dist/cli-new/components/Banner.js.map +1 -1
  9. package/dist/cli-new/components/Header.js +2 -2
  10. package/dist/cli-new/components/Header.js.map +1 -1
  11. package/dist/cli-new/components/InputArea.js +29 -23
  12. package/dist/cli-new/components/InputArea.js.map +1 -1
  13. package/dist/cli-new/components/MessageBubble.js +5 -4
  14. package/dist/cli-new/components/MessageBubble.js.map +1 -1
  15. package/dist/cli-new/components/SessionSwitcher.js +3 -3
  16. package/dist/cli-new/components/SessionSwitcher.js.map +1 -1
  17. package/dist/cli-new/components/SetupWizard.js +11 -11
  18. package/dist/cli-new/components/SetupWizard.js.map +1 -1
  19. package/dist/cli-new/components/ToolCallDisplay.js +1 -1
  20. package/dist/cli-new/components/ToolCallDisplay.js.map +1 -1
  21. package/dist/cli-new/hooks/useUpdateCheck.js +17 -0
  22. package/dist/cli-new/hooks/useUpdateCheck.js.map +1 -0
  23. package/dist/cli-new/styles/theme.js +17 -17
  24. package/dist/cli-new/styles/theme.js.map +1 -1
  25. package/dist/extension.cjs +868 -340
  26. package/dist/extension.js +15 -0
  27. package/dist/extension.js.map +1 -1
  28. package/dist/monolith/adapters/CliMarieAdapter.js +7 -7
  29. package/dist/monolith/adapters/CliMarieAdapter.js.map +1 -1
  30. package/dist/monolith/adapters/VscodeMarieAdapter.js +9 -9
  31. package/dist/monolith/adapters/VscodeMarieAdapter.js.map +1 -1
  32. package/dist/monolith/cli/MarieToolDefinitionsCLI.js +5 -2
  33. package/dist/monolith/cli/MarieToolDefinitionsCLI.js.map +1 -1
  34. package/dist/monolith/cli/index.js +6 -0
  35. package/dist/monolith/cli/index.js.map +1 -1
  36. package/dist/monolith/cli/storage.js +79 -60
  37. package/dist/monolith/cli/storage.js.map +1 -1
  38. package/dist/monolith/infrastructure/ai/context/ContextArchiveService.js +52 -37
  39. package/dist/monolith/infrastructure/ai/context/ContextArchiveService.js.map +1 -1
  40. package/dist/monolith/infrastructure/ai/context/ContextManager.js +35 -2
  41. package/dist/monolith/infrastructure/ai/context/ContextManager.js.map +1 -1
  42. package/dist/monolith/infrastructure/ai/core/MarieEngine.js +513 -3
  43. package/dist/monolith/infrastructure/ai/core/MarieEngine.js.map +1 -1
  44. package/dist/monolith/infrastructure/ai/core/MarieLockManager.js +25 -5
  45. package/dist/monolith/infrastructure/ai/core/MarieLockManager.js.map +1 -1
  46. package/dist/monolith/infrastructure/ai/core/MarieProgressTracker.js +29 -0
  47. package/dist/monolith/infrastructure/ai/core/MarieProgressTracker.js.map +1 -1
  48. package/dist/monolith/infrastructure/ai/core/MariePulseService.js +41 -7
  49. package/dist/monolith/infrastructure/ai/core/MariePulseService.js.map +1 -1
  50. package/dist/monolith/infrastructure/ai/core/MarieSanitizer.js +97 -8
  51. package/dist/monolith/infrastructure/ai/core/MarieSanitizer.js.map +1 -1
  52. package/dist/monolith/infrastructure/ai/core/MarieSemaphore.js +47 -4
  53. package/dist/monolith/infrastructure/ai/core/MarieSemaphore.js.map +1 -1
  54. package/dist/monolith/infrastructure/ai/core/MarieSession.js +95 -15
  55. package/dist/monolith/infrastructure/ai/core/MarieSession.js.map +1 -1
  56. package/dist/monolith/infrastructure/ai/core/MarieStabilityMonitor.js +21 -0
  57. package/dist/monolith/infrastructure/ai/core/MarieStabilityMonitor.js.map +1 -1
  58. package/dist/monolith/infrastructure/ai/core/MarieToolMender.js +12 -0
  59. package/dist/monolith/infrastructure/ai/core/MarieToolMender.js.map +1 -1
  60. package/dist/monolith/infrastructure/ai/core/MarieToolProcessor.js +155 -14
  61. package/dist/monolith/infrastructure/ai/core/MarieToolProcessor.js.map +1 -1
  62. package/dist/monolith/infrastructure/ai/core/ReasoningBudget.js +23 -12
  63. package/dist/monolith/infrastructure/ai/core/ReasoningBudget.js.map +1 -1
  64. package/dist/monolith/infrastructure/ai/providers/AnthropicProvider.js +6 -0
  65. package/dist/monolith/infrastructure/ai/providers/AnthropicProvider.js.map +1 -1
  66. package/dist/monolith/infrastructure/ai/providers/CerebrasProvider.js +6 -0
  67. package/dist/monolith/infrastructure/ai/providers/CerebrasProvider.js.map +1 -1
  68. package/dist/monolith/infrastructure/ai/providers/OpenRouterProvider.js +22 -0
  69. package/dist/monolith/infrastructure/ai/providers/OpenRouterProvider.js.map +1 -1
  70. package/dist/monolith/infrastructure/config/ConfigService.js +145 -1
  71. package/dist/monolith/infrastructure/config/ConfigService.js.map +1 -1
  72. package/dist/monolith/infrastructure/joy/CognitiveRituals.js +169 -0
  73. package/dist/monolith/infrastructure/joy/CognitiveRituals.js.map +1 -0
  74. package/dist/monolith/infrastructure/joy/JoyTools.js +15 -2
  75. package/dist/monolith/infrastructure/joy/JoyTools.js.map +1 -1
  76. package/dist/monolith/infrastructure/persistence/NoormmeAutonomics.js +118 -0
  77. package/dist/monolith/infrastructure/persistence/NoormmeAutonomics.js.map +1 -0
  78. package/dist/monolith/infrastructure/persistence/NoormmeEngine.js +78 -0
  79. package/dist/monolith/infrastructure/persistence/NoormmeEngine.js.map +1 -0
  80. package/dist/monolith/infrastructure/persistence/NoormmeSchema.js +150 -0
  81. package/dist/monolith/infrastructure/persistence/NoormmeSchema.js.map +1 -0
  82. package/dist/monolith/infrastructure/persistence/NoormmeSeeder.js +81 -0
  83. package/dist/monolith/infrastructure/persistence/NoormmeSeeder.js.map +1 -0
  84. package/dist/monolith/infrastructure/persistence/NoormmeTools.js +324 -0
  85. package/dist/monolith/infrastructure/persistence/NoormmeTools.js.map +1 -0
  86. package/dist/monolith/infrastructure/tools/MarieToolDefinitions.js +29 -1577
  87. package/dist/monolith/infrastructure/tools/MarieToolDefinitions.js.map +1 -1
  88. package/dist/monolith/infrastructure/tools/definitions/AnalysisTools.js +346 -0
  89. package/dist/monolith/infrastructure/tools/definitions/AnalysisTools.js.map +1 -0
  90. package/dist/monolith/infrastructure/tools/definitions/AutomationTools.js +289 -0
  91. package/dist/monolith/infrastructure/tools/definitions/AutomationTools.js.map +1 -0
  92. package/dist/monolith/infrastructure/tools/definitions/ContextTools.js +43 -0
  93. package/dist/monolith/infrastructure/tools/definitions/ContextTools.js.map +1 -0
  94. package/dist/monolith/infrastructure/tools/definitions/CoreTools.js +41 -0
  95. package/dist/monolith/infrastructure/tools/definitions/CoreTools.js.map +1 -0
  96. package/dist/monolith/infrastructure/tools/definitions/DiagnosticTools.js +185 -0
  97. package/dist/monolith/infrastructure/tools/definitions/DiagnosticTools.js.map +1 -0
  98. package/dist/monolith/infrastructure/tools/definitions/NavigationTools.js +348 -0
  99. package/dist/monolith/infrastructure/tools/definitions/NavigationTools.js.map +1 -0
  100. package/dist/monolith/infrastructure/tools/definitions/PlanningTools.js +297 -0
  101. package/dist/monolith/infrastructure/tools/definitions/PlanningTools.js.map +1 -0
  102. package/dist/monolith/plumbing/analysis/MarieSentinelService.js +22 -3
  103. package/dist/monolith/plumbing/analysis/MarieSentinelService.js.map +1 -1
  104. package/dist/monolith/plumbing/terminal/TerminalService.js +5 -0
  105. package/dist/monolith/plumbing/terminal/TerminalService.js.map +1 -1
  106. package/dist/monolith/plumbing/utils/EnvironmentUtils.js +1 -1
  107. package/dist/monolith/plumbing/utils/EnvironmentUtils.js.map +1 -1
  108. package/dist/monolith/plumbing/utils/MutexUtils.js.map +1 -1
  109. package/dist/monolith/runtime/MarieRuntime.js +86 -4
  110. package/dist/monolith/runtime/MarieRuntime.js.map +1 -1
  111. package/dist/monolith/runtime/RuntimeAdapterBase.js.map +1 -1
  112. package/dist/monolith/services/JoyService.js +1 -1
  113. package/dist/monolith/services/JoyService.js.map +1 -1
  114. package/dist/monolith/services/MarieGhostService.js +12 -0
  115. package/dist/monolith/services/MarieGhostService.js.map +1 -1
  116. package/dist/monolith/services/UpdateService.js +61 -0
  117. package/dist/monolith/services/UpdateService.js.map +1 -0
  118. package/dist/prompts.js +5 -0
  119. package/dist/prompts.js.map +1 -1
  120. package/dist/webview-ui/main.js +23 -23
  121. package/package.json +2 -1
  122. package/test-mind-p6.sqlite +0 -0
  123. package/test-mind-p6.sqlite-shm +0 -0
  124. package/test-mind-p6.sqlite-wal +0 -0
  125. package/dist/monolith/domain/joy/JoyTools.js +0 -535
  126. package/dist/monolith/domain/joy/JoyTools.js.map +0 -1
  127. package/dist/monolith/infrastructure/ai/agents/MarieYOLO.js +0 -207
  128. package/dist/monolith/infrastructure/ai/agents/MarieYOLO.js.map +0 -1
  129. package/dist/monolith/infrastructure/ai/core/MarieYOLOTypes.js +0 -2
  130. package/dist/monolith/infrastructure/ai/core/MarieYOLOTypes.js.map +0 -1
  131. package/dist/test_agent_stream_control_plane.js +0 -170
  132. package/dist/test_agent_stream_control_plane.js.map +0 -1
  133. package/dist/test_strategy_integration.js +0 -114
  134. package/dist/test_strategy_integration.js.map +0 -1
  135. package/dist/test_streaming_fragility.js +0 -191
  136. package/dist/test_streaming_fragility.js.map +0 -1
  137. package/dist/webview-ui/App.js +0 -16
  138. package/dist/webview-ui/App.js.map +0 -1
  139. package/dist/webview-ui/Providers.js +0 -6
  140. package/dist/webview-ui/Providers.js.map +0 -1
  141. package/dist/webview-ui/components/ApprovalPanel.js +0 -8
  142. package/dist/webview-ui/components/ApprovalPanel.js.map +0 -1
  143. package/dist/webview-ui/components/ChatPanel.js +0 -19
  144. package/dist/webview-ui/components/ChatPanel.js.map +0 -1
  145. package/dist/webview-ui/components/Composer.js +0 -19
  146. package/dist/webview-ui/components/Composer.js.map +0 -1
  147. package/dist/webview-ui/components/HeaderBar.js +0 -5
  148. package/dist/webview-ui/components/HeaderBar.js.map +0 -1
  149. package/dist/webview-ui/components/SessionList.js +0 -14
  150. package/dist/webview-ui/components/SessionList.js.map +0 -1
  151. package/dist/webview-ui/context/WebviewStateContext.js +0 -146
  152. package/dist/webview-ui/context/WebviewStateContext.js.map +0 -1
  153. package/dist/webview-ui/main.js.map +0 -1
  154. package/dist/webview-ui/types.js +0 -2
  155. package/dist/webview-ui/types.js.map +0 -1
  156. package/dist/webview-ui/vscode.js +0 -4
  157. package/dist/webview-ui/vscode.js.map +0 -1
  158. package/marie-coder-0.1.16.vsix +0 -0
@@ -0,0 +1,61 @@
1
+ import { exec } from "child_process";
2
+ import { promisify } from "util";
3
+ const execAsync = promisify(exec);
4
+ export class UpdateService {
5
+ static NPM_REGISTRY = "https://registry.npmjs.org/@noorm/marie-cli/latest";
6
+ static async checkUpdate(currentVersion) {
7
+ try {
8
+ // Use fetch to get latest version from NPM
9
+ const response = await fetch(this.NPM_REGISTRY, {
10
+ method: "GET",
11
+ headers: {
12
+ Accept: "application/json",
13
+ "User-Agent": "marie-cli-update-check",
14
+ },
15
+ });
16
+ if (!response.ok) {
17
+ throw new Error(`Failed to fetch latest version: ${response.statusText}`);
18
+ }
19
+ const data = await response.json();
20
+ const latestVersion = data.version;
21
+ if (!latestVersion) {
22
+ throw new Error("Invalid response from NPM registry: missing version");
23
+ }
24
+ const isUpdateAvailable = this.isNewer(latestVersion, currentVersion);
25
+ return {
26
+ currentVersion,
27
+ latestVersion,
28
+ isUpdateAvailable,
29
+ };
30
+ }
31
+ catch (error) {
32
+ console.error("[UpdateService] Update check failed:", error);
33
+ return null;
34
+ }
35
+ }
36
+ static isNewer(latest, current) {
37
+ const latestParts = latest.split(".").map(Number);
38
+ const currentParts = current.split(".").map(Number);
39
+ for (let i = 0; i < 3; i++) {
40
+ if (latestParts[i] > currentParts[i])
41
+ return true;
42
+ if (latestParts[i] < currentParts[i])
43
+ return false;
44
+ }
45
+ return false;
46
+ }
47
+ static async performUpdate() {
48
+ try {
49
+ // For CLI, we recommend running npm install -g @noorm/marie-cli
50
+ // We can attempt to run it, but it might require sudo
51
+ console.log("[UpdateService] Attempting to update...");
52
+ await execAsync("npm install -g @noorm/marie-cli");
53
+ return true;
54
+ }
55
+ catch (error) {
56
+ console.error("[UpdateService] Update failed:", error);
57
+ return false;
58
+ }
59
+ }
60
+ }
61
+ //# sourceMappingURL=UpdateService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UpdateService.js","sourceRoot":"","sources":["../../../src/monolith/services/UpdateService.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAIjC,MAAM,SAAS,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC;AAQlC,MAAM,OAAO,aAAa;IAChB,MAAM,CAAU,YAAY,GAClC,oDAAoD,CAAC;IAEhD,MAAM,CAAC,KAAK,CAAC,WAAW,CAC7B,cAAsB;QAEtB,IAAI,CAAC;YACH,2CAA2C;YAC3C,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,IAAI,CAAC,YAAY,EAAE;gBAC9C,MAAM,EAAE,KAAK;gBACb,OAAO,EAAE;oBACP,MAAM,EAAE,kBAAkB;oBAC1B,YAAY,EAAE,wBAAwB;iBACvC;aACF,CAAC,CAAC;YAEH,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;gBACjB,MAAM,IAAI,KAAK,CACb,mCAAmC,QAAQ,CAAC,UAAU,EAAE,CACzD,CAAC;YACJ,CAAC;YAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;YACnC,MAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC;YAEnC,IAAI,CAAC,aAAa,EAAE,CAAC;gBACnB,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAC;YACzE,CAAC;YAED,MAAM,iBAAiB,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,cAAc,CAAC,CAAC;YAEtE,OAAO;gBACL,cAAc;gBACd,aAAa;gBACb,iBAAiB;aAClB,CAAC;QACJ,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,CAAC,KAAK,CAAC,sCAAsC,EAAE,KAAK,CAAC,CAAC;YAC7D,OAAO,IAAI,CAAC;QACd,CAAC;IACH,CAAC;IAEO,MAAM,CAAC,OAAO,CAAC,MAAc,EAAE,OAAe;QACpD,MAAM,WAAW,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;QAClD,MAAM,YAAY,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;QAEpD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;YAC3B,IAAI,WAAW,CAAC,CAAC,CAAC,GAAG,YAAY,CAAC,CAAC,CAAC;gBAAE,OAAO,IAAI,CAAC;YAClD,IAAI,WAAW,CAAC,CAAC,CAAC,GAAG,YAAY,CAAC,CAAC,CAAC;gBAAE,OAAO,KAAK,CAAC;QACrD,CAAC;QACD,OAAO,KAAK,CAAC;IACf,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,aAAa;QAC/B,IAAI,CAAC;YACH,gEAAgE;YAChE,sDAAsD;YACtD,OAAO,CAAC,GAAG,CAAC,yCAAyC,CAAC,CAAC;YACvD,MAAM,SAAS,CAAC,iCAAiC,CAAC,CAAC;YACnD,OAAO,IAAI,CAAC;QACd,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,CAAC,KAAK,CAAC,gCAAgC,EAAE,KAAK,CAAC,CAAC;YACvD,OAAO,KAAK,CAAC;QACf,CAAC;IACH,CAAC"}
package/dist/prompts.js CHANGED
@@ -19,6 +19,11 @@ The Sentinel v3.0 watches your every move. Its laws are absolute:
19
19
  - **Visual Mapping**: Consult \`SENTINEL.md\` for the Mermaid.js architecture graph. Red links are wounds in the garden—heal them immediately.
20
20
  - **Doppelgänger Detection**: Duplication is a sin. Structural copy-pasting, especially in the Domain, is a hard rejection. DRY is the mandate.
21
21
  - **Layer Purity**: The Domain must be pure. No 'Express', 'React', or system types in Domain logic. No circular dependencies.
22
+ - **Ecclesiastical Navigation**: Every webapp manifestation MUST adhere to a world-class URL schema. No flat routes for hierarchical content.
23
+ - Temporal (Blog): \`/blog/:year/:month/:slug\`
24
+ - Categorical (Docs): \`/docs/:section/:slug\`
25
+ - Governance: \`/legal/:slug\`, \`/changelog/:version\`, \`/support/:category\`
26
+ - Breadcrumbs: Mandatory high-density uppercase breadcrumbs (\`text-[10px] font-black\`) for all hierarchical paths.
22
27
 
23
28
  🎯 PRECISION STRIKE PROTOCOL:
24
29
  When the Sentinel rejects your strike (Ratchet Lock or Violation):
@@ -1 +1 @@
1
- {"version":3,"file":"prompts.js","sourceRoot":"","sources":["../src/prompts.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,CAAC,MAAM,aAAa,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8EA0CiD,CAAC;AAE/E,MAAM,CAAC,MAAM,0BAA0B,GAAG;;;;;;6CAMG,CAAC;AAE9C,MAAM,CAAC,MAAM,2BAA2B,GACtC,oHAAoH,CAAC;AAEvH,MAAM,CAAC,MAAM,yBAAyB,GACpC,4IAA4I,CAAC;AAE/I,MAAM,CAAC,MAAM,wBAAwB,GAAG,aAAa,CAAC,CAAC,eAAe;AAEtE,MAAM,CAAC,MAAM,gBAAgB,GAAG;;;sDAGsB,CAAC;AAEvD,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,6CAA6C;IAC7C,0BAA0B;IAC1B,kCAAkC;IAClC,sCAAsC;IACtC,iCAAiC;CAClC,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,kDAAkD;IAClD,iDAAiD;IACjD,yCAAyC;IACzC,kCAAkC;IAClC,mCAAmC;CACpC,CAAC;AAEF,MAAM,UAAU,qBAAqB;IACnC,OAAO,oBAAoB,CACzB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,oBAAoB,CAAC,MAAM,CAAC,CACxD,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,mBAAmB;IACjC,OAAO,yDAAyD,CAAC;AACnE,CAAC;AAED,MAAM,UAAU,mBAAmB;IACjC,OAAO,uDAAuD,CAAC;AACjE,CAAC"}
1
+ {"version":3,"file":"prompts.js","sourceRoot":"","sources":["../src/prompts.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,CAAC,MAAM,aAAa,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8EA+CiD,CAAC;AAE/E,MAAM,CAAC,MAAM,0BAA0B,GAAG;;;;;;6CAMG,CAAC;AAE9C,MAAM,CAAC,MAAM,2BAA2B,GACtC,oHAAoH,CAAC;AAEvH,MAAM,CAAC,MAAM,yBAAyB,GACpC,4IAA4I,CAAC;AAE/I,MAAM,CAAC,MAAM,wBAAwB,GAAG,aAAa,CAAC,CAAC,eAAe;AAEtE,MAAM,CAAC,MAAM,gBAAgB,GAAG;;;sDAGsB,CAAC;AAEvD,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,6CAA6C;IAC7C,0BAA0B;IAC1B,kCAAkC;IAClC,sCAAsC;IACtC,iCAAiC;CAClC,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,kDAAkD;IAClD,iDAAiD;IACjD,yCAAyC;IACzC,kCAAkC;IAClC,mCAAmC;CACpC,CAAC;AAEF,MAAM,UAAU,qBAAqB;IACnC,OAAO,oBAAoB,CACzB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,oBAAoB,CAAC,MAAM,CAAC,CACxD,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,mBAAmB;IACjC,OAAO,yDAAyD,CAAC;AACnE,CAAC;AAED,MAAM,UAAU,mBAAmB;IACjC,OAAO,uDAAuD,CAAC;AACjE,CAAC"}