@elaraai/e3-ui 1.0.3 → 1.0.5

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 (100) hide show
  1. package/README.md +3 -2
  2. package/dist/src/data.d.ts +22 -1
  3. package/dist/src/data.d.ts.map +1 -1
  4. package/dist/src/data.js.map +1 -1
  5. package/dist/src/decision/bind.d.ts +4594 -0
  6. package/dist/src/decision/bind.d.ts.map +1 -0
  7. package/dist/src/decision/bind.js +156 -0
  8. package/dist/src/decision/bind.js.map +1 -0
  9. package/dist/src/decision/index.d.ts +1787 -0
  10. package/dist/src/decision/index.d.ts.map +1 -0
  11. package/dist/src/decision/index.js +36 -0
  12. package/dist/src/decision/index.js.map +1 -0
  13. package/dist/src/decision/journal.d.ts +405 -0
  14. package/dist/src/decision/journal.d.ts.map +1 -0
  15. package/dist/src/decision/journal.js +74 -0
  16. package/dist/src/decision/journal.js.map +1 -0
  17. package/dist/src/decision/queue.d.ts +2876 -0
  18. package/dist/src/decision/queue.d.ts.map +1 -0
  19. package/dist/src/decision/queue.js +166 -0
  20. package/dist/src/decision/queue.js.map +1 -0
  21. package/dist/src/decision/types.d.ts +1338 -0
  22. package/dist/src/decision/types.d.ts.map +1 -0
  23. package/dist/src/decision/types.js +389 -0
  24. package/dist/src/decision/types.js.map +1 -0
  25. package/dist/src/diff.d.ts +72 -0
  26. package/dist/src/diff.d.ts.map +1 -1
  27. package/dist/src/diff.js +6 -0
  28. package/dist/src/diff.js.map +1 -1
  29. package/dist/src/index.d.ts +27 -11
  30. package/dist/src/index.d.ts.map +1 -1
  31. package/dist/src/index.js +30 -10
  32. package/dist/src/index.js.map +1 -1
  33. package/dist/src/internal.d.ts +28 -0
  34. package/dist/src/internal.d.ts.map +1 -0
  35. package/dist/src/internal.js +28 -0
  36. package/dist/src/internal.js.map +1 -0
  37. package/dist/src/ontology.d.ts +205 -10
  38. package/dist/src/ontology.d.ts.map +1 -1
  39. package/dist/src/ontology.js +23 -4
  40. package/dist/src/ontology.js.map +1 -1
  41. package/dist/src/runtime/decision/journal.d.ts +29 -0
  42. package/dist/src/runtime/decision/journal.d.ts.map +1 -0
  43. package/dist/src/runtime/decision/journal.js +27 -0
  44. package/dist/src/runtime/decision/journal.js.map +1 -0
  45. package/dist/src/runtime/decision/queue.d.ts +47 -0
  46. package/dist/src/runtime/decision/queue.d.ts.map +1 -0
  47. package/dist/src/runtime/decision/queue.js +45 -0
  48. package/dist/src/runtime/decision/queue.js.map +1 -0
  49. package/dist/src/runtime/diff.d.ts +36 -0
  50. package/dist/src/runtime/diff.d.ts.map +1 -0
  51. package/dist/src/runtime/diff.js +34 -0
  52. package/dist/src/runtime/diff.js.map +1 -0
  53. package/dist/src/runtime/index.d.ts +15 -0
  54. package/dist/src/runtime/index.d.ts.map +1 -0
  55. package/dist/src/runtime/index.js +15 -0
  56. package/dist/src/runtime/index.js.map +1 -0
  57. package/dist/src/runtime/ontology.d.ts +36 -0
  58. package/dist/src/runtime/ontology.d.ts.map +1 -0
  59. package/dist/src/runtime/ontology.js +34 -0
  60. package/dist/src/runtime/ontology.js.map +1 -0
  61. package/dist/src/runtime/runtime.d.ts +7 -0
  62. package/dist/src/runtime/runtime.d.ts.map +1 -0
  63. package/dist/src/runtime/runtime.js +7 -0
  64. package/dist/src/runtime/runtime.js.map +1 -0
  65. package/dist/src/ui.d.ts +6 -6
  66. package/dist/src/ui.d.ts.map +1 -1
  67. package/dist/src/ui.js +9 -1
  68. package/dist/src/ui.js.map +1 -1
  69. package/dist/test/{data.examples.d.ts → data/data.examples.d.ts} +1 -0
  70. package/dist/test/data/data.examples.d.ts.map +1 -0
  71. package/dist/test/{data.examples.js → data/data.examples.js} +30 -68
  72. package/dist/test/data/data.examples.js.map +1 -0
  73. package/dist/test/decision/journal.examples.d.ts +266 -0
  74. package/dist/test/decision/journal.examples.d.ts.map +1 -0
  75. package/dist/test/decision/journal.examples.js +107 -0
  76. package/dist/test/decision/journal.examples.js.map +1 -0
  77. package/dist/test/decision/loop.examples.d.ts +455 -0
  78. package/dist/test/decision/loop.examples.d.ts.map +1 -0
  79. package/dist/test/decision/loop.examples.js +120 -0
  80. package/dist/test/decision/loop.examples.js.map +1 -0
  81. package/dist/test/decision/queue.examples.d.ts +269 -0
  82. package/dist/test/decision/queue.examples.d.ts.map +1 -0
  83. package/dist/test/decision/queue.examples.js +273 -0
  84. package/dist/test/decision/queue.examples.js.map +1 -0
  85. package/dist/test/{diff.examples.d.ts → diff/diff.examples.d.ts} +5 -4
  86. package/dist/test/diff/diff.examples.d.ts.map +1 -0
  87. package/dist/test/diff/diff.examples.js +582 -0
  88. package/dist/test/diff/diff.examples.js.map +1 -0
  89. package/dist/test/{ontology.examples.d.ts → ontology/ontology.examples.d.ts} +6 -4
  90. package/dist/test/ontology/ontology.examples.d.ts.map +1 -0
  91. package/dist/test/{ontology.examples.js → ontology/ontology.examples.js} +37 -57
  92. package/dist/test/ontology/ontology.examples.js.map +1 -0
  93. package/package.json +19 -19
  94. package/dist/test/data.examples.d.ts.map +0 -1
  95. package/dist/test/data.examples.js.map +0 -1
  96. package/dist/test/diff.examples.d.ts.map +0 -1
  97. package/dist/test/diff.examples.js +0 -964
  98. package/dist/test/diff.examples.js.map +0 -1
  99. package/dist/test/ontology.examples.d.ts.map +0 -1
  100. package/dist/test/ontology.examples.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"queue.d.ts","sourceRoot":"","sources":["../../../src/decision/queue.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAkF,CAAC;AAMtH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAM,WAAW,oBAAoB;IACjC,MAAM,EAAE,kBAAkB,CAAC;IAC3B,OAAO,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,CAAC;IACzC,MAAM,CAAC,EAAE,CACL,QAAQ,EAAE,QAAQ,CAAC,YAAY,CAAC,EAChC,MAAM,EAAE,QAAQ,CAAC,kBAAkB,CAAC,KACnC,kBAAkB,CAAC,eAAe,CAAC,CAAC;IACzC,MAAM,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,YAAY,CAAC,KAAK,kBAAkB,CAAC,eAAe,CAAC,CAAC;IACnF,eAAe,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC/D,YAAY,CAAC,EAAE,YAAY,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC;IAC5D,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,YAAY,CAAC,KAAK,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IAC7E,QAAQ,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,YAAY,CAAC,KAAK,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IAC9E,KAAK,CAAC,EAAE,sBAAsB,EAAE,GAAG,IAAI,CAAC;IACxC,SAAS,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,CAAC;IAC3C,OAAO,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,GAAG,cAAc,CAAC;CAC1E;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa,EAAE;IACxB,IAAI,CAAC,OAAO,EAAE,oBAAoB,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC;IAC/D,SAAS,EAAE,OAAO,sBAAsB,CAAC;IACzC,KAAK,EAAE;QACH,OAAO,EAAE,wBAAwB,CAAC;QAClC,MAAM,EAAE,kBAAkB,CAAC;QAC3B,KAAK,EAAE,SAAS,CAAC;KACpB,CAAC;CA4EI,CAAC"}
@@ -0,0 +1,166 @@
1
+ /**
2
+ * Copyright (c) 2025 Elara AI Pty Ltd
3
+ * Dual-licensed under AGPL-3.0 and commercial license. See LICENSE for details.
4
+ */
5
+ /**
6
+ * `DecisionQueue` — *the* Decide surface (see `design/decide.html` §2.3).
7
+ * One queue over the handle's unioned cases, sorted by urgency with the
8
+ * routine tail collapsed. The case view is the row's expanded state, not a
9
+ * sibling component: selecting a row opens one compact facet at a time
10
+ * beneath it — `Evidence` (the model's argument + the host's per-decision
11
+ * `detail` canvas), `Options` (the ranked stack), `Judgement` (prompts ·
12
+ * knowledge · lever builder, gating Apply), `Modify` (the host's per-kind
13
+ * probe via the `modify` slot). Apply / Reject stay on the row and resolve
14
+ * through the handle.
15
+ *
16
+ * An `EastUI.component` extension: the payload carries the handle's ref
17
+ * (binding descriptors) plus the host's slots; the renderer registers
18
+ * against {@link DecisionQueue.Component} in `@elaraai/e3-ui-components`.
19
+ *
20
+ * @packageDocumentation
21
+ */
22
+ import { East, ArrayType, StructType, OptionType, VariantType, StringType, NullType, FunctionType, some, none, variant, } from "@elaraai/east";
23
+ import { EastUI, DensityType, UIComponentType } from "@elaraai/east-ui";
24
+ import { SliceAffordanceType } from "@elaraai/east-ui/internal";
25
+ import { DecisionHandleRefType } from "./bind.js";
26
+ import { DecisionType, DecisionUpdateType } from "./types.js";
27
+ export { DecisionUpdateType } from "./types.js";
28
+ // ============================================================================
29
+ // Payload — the fixed IR shape the renderer decodes.
30
+ // ============================================================================
31
+ /** The expanded row's facet. */
32
+ export const FacetType = VariantType({
33
+ evidence: NullType,
34
+ options: NullType,
35
+ judgement: NullType,
36
+ modify: NullType,
37
+ });
38
+ /**
39
+ * The `DecisionQueue` component payload.
40
+ *
41
+ * @property handle - The surface's decision handle ref (binding descriptors).
42
+ * @property heading - Optional header label (e.g. `"Decisions waiting"`).
43
+ * @property modify - Optional per-kind probe editor: `(decision, update) =>
44
+ * UIComponentType`; renders as the expanded row's Modify facet.
45
+ * `update(edited)` writes the decision back through its owning binding.
46
+ * @property detail - Optional per-decision canvas: `(decision) =>
47
+ * UIComponentType`; renders inside the Evidence facet (the host's chart /
48
+ * working surface / trajectory).
49
+ * @property defaultExpanded - The case shown expanded before any selection
50
+ * exists (a display-only default — clicking rows writes the real
51
+ * selection).
52
+ * @property defaultFacet - The facet the expansion opens with (defaults to
53
+ * `evidence`).
54
+ * @property onApply - Optional side-effect hook fired with the decision when
55
+ * Apply resolves it (the resolution itself goes through the handle).
56
+ * @property onReject - Optional side-effect hook fired with the decision
57
+ * when Reject resolves it.
58
+ * @property slice - Optional rail affordances. The slice itself is
59
+ * handle-owned (bound by `Decision.bind`, seeded there); this field only
60
+ * chooses what mounts in the queue's eyebrow rail.
61
+ * @property maxHeight - Optional cap on the queue's height (a CSS length).
62
+ * The header stays pinned; the rows scroll.
63
+ * @property density - Information-density preset.
64
+ */
65
+ export const DecisionQueuePayloadType = StructType({
66
+ handle: DecisionHandleRefType,
67
+ heading: OptionType(StringType),
68
+ modify: OptionType(FunctionType([DecisionType, DecisionUpdateType], UIComponentType)),
69
+ detail: OptionType(FunctionType([DecisionType], UIComponentType)),
70
+ defaultExpanded: OptionType(DecisionType),
71
+ defaultFacet: OptionType(FacetType),
72
+ onApply: OptionType(FunctionType([DecisionType], NullType)),
73
+ onReject: OptionType(FunctionType([DecisionType], NullType)),
74
+ slice: OptionType(ArrayType(SliceAffordanceType)),
75
+ maxHeight: OptionType(StringType),
76
+ density: OptionType(DensityType),
77
+ });
78
+ /**
79
+ * Internal {@link EastUI.component} carrier. The React renderer registers
80
+ * against this in `@elaraai/e3-ui-components` via `implementUIComponent`.
81
+ */
82
+ export const DecisionQueueComponent = EastUI.component("DecisionQueue", DecisionQueuePayloadType, { optional: true });
83
+ /**
84
+ * The Decision queue component namespace — the Decide surface.
85
+ *
86
+ * @remarks
87
+ * Use `DecisionQueue.Root({ handle, modify: …, detail: … })` inside a
88
+ * `Reactive` block, with the handle from `Decision.bind`. The `Component`
89
+ * property is the {@link EastUI.component} carrier the renderer registers
90
+ * against.
91
+ */
92
+ export const DecisionQueue = {
93
+ /**
94
+ * Build a decision queue bound to a decision handle.
95
+ *
96
+ * @param options - {@link DecisionQueueOptions}. Only `handle` is required.
97
+ * @returns An East expression of {@link UIComponentType}.
98
+ */
99
+ Root(options) {
100
+ const modify = options.modify === undefined
101
+ ? none
102
+ : some(East.function([DecisionType, DecisionUpdateType], UIComponentType, (_$, decision, update) => East.value(options.modify(decision, update), UIComponentType)));
103
+ const detail = options.detail === undefined
104
+ ? none
105
+ : some(East.function([DecisionType], UIComponentType, (_$, decision) => East.value(options.detail(decision), UIComponentType)));
106
+ const onApply = options.onApply === undefined
107
+ ? none
108
+ : some(East.function([DecisionType], NullType, ($, decision) => {
109
+ $(East.value(options.onApply(decision), NullType));
110
+ }));
111
+ const onReject = options.onReject === undefined
112
+ ? none
113
+ : some(East.function([DecisionType], NullType, ($, decision) => {
114
+ $(East.value(options.onReject(decision), NullType));
115
+ }));
116
+ const defaultFacet = options.defaultFacet === undefined
117
+ ? none
118
+ : some(typeof options.defaultFacet === "string"
119
+ ? East.value(variant(options.defaultFacet, null), FacetType)
120
+ : options.defaultFacet);
121
+ const sliceAffordances = options.slice === undefined
122
+ ? undefined
123
+ : options.slice === true ? ["filter", "search"] : options.slice;
124
+ if (sliceAffordances?.includes("brush")) {
125
+ throw new Error("DecisionQueue does not support the 'brush' affordance — it has no continuous axis.");
126
+ }
127
+ const slice = sliceAffordances === undefined
128
+ ? none
129
+ : some(East.value(sliceAffordances.map(a => variant(a, null)), ArrayType(SliceAffordanceType)));
130
+ const density = options.density === undefined
131
+ ? none
132
+ : typeof options.density === "string"
133
+ ? some(East.value(variant(options.density, null), DensityType))
134
+ : options.density;
135
+ return DecisionQueueComponent.Root({
136
+ handle: East.value({
137
+ decisions: options.handle.decisions,
138
+ judgements: options.handle.judgements,
139
+ slice: options.handle.sliceInit,
140
+ }, DecisionHandleRefType),
141
+ heading: options.heading !== undefined ? some(options.heading) : none,
142
+ modify,
143
+ detail,
144
+ defaultExpanded: options.defaultExpanded !== undefined
145
+ ? East.value(options.defaultExpanded, OptionType(DecisionType))
146
+ : none,
147
+ defaultFacet,
148
+ onApply,
149
+ onReject,
150
+ slice,
151
+ maxHeight: options.maxHeight !== undefined ? some(options.maxHeight) : none,
152
+ density,
153
+ });
154
+ },
155
+ /** The internal {@link EastUI.component} carrier renderers register against. */
156
+ Component: DecisionQueueComponent,
157
+ Types: {
158
+ /** The rendered payload struct. */
159
+ Payload: DecisionQueuePayloadType,
160
+ /** The probe editor's `update` writer. */
161
+ Update: DecisionUpdateType,
162
+ /** The expanded row's facet variant. */
163
+ Facet: FacetType,
164
+ },
165
+ };
166
+ //# sourceMappingURL=queue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"queue.js","sourceRoot":"","sources":["../../../src/decision/queue.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EACH,IAAI,EACJ,SAAS,EACT,UAAU,EACV,UAAU,EACV,WAAW,EACX,UAAU,EACV,QAAQ,EACR,YAAY,EACZ,IAAI,EACJ,IAAI,EACJ,OAAO,GAGV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,eAAe,EAAuB,MAAM,kBAAkB,CAAC;AAC7F,OAAO,EAAE,mBAAmB,EAA+B,MAAM,2BAA2B,CAAC;AAE7F,OAAO,EAAE,qBAAqB,EAA2B,MAAM,WAAW,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAE9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAEhD,+EAA+E;AAC/E,qDAAqD;AACrD,+EAA+E;AAE/E,gCAAgC;AAChC,MAAM,CAAC,MAAM,SAAS,GAAG,WAAW,CAAC;IACjC,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,QAAQ;IACjB,SAAS,EAAE,QAAQ;IACnB,MAAM,EAAE,QAAQ;CACnB,CAAC,CAAC;AAMH;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAG,UAAU,CAAC;IAC/C,MAAM,EAAE,qBAAqB;IAC7B,OAAO,EAAE,UAAU,CAAC,UAAU,CAAC;IAC/B,MAAM,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC,YAAY,EAAE,kBAAkB,CAAC,EAAE,eAAe,CAAC,CAAC;IACrF,MAAM,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC,YAAY,CAAC,EAAE,eAAe,CAAC,CAAC;IACjE,eAAe,EAAE,UAAU,CAAC,YAAY,CAAC;IACzC,YAAY,EAAE,UAAU,CAAC,SAAS,CAAC;IACnC,OAAO,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC,YAAY,CAAC,EAAE,QAAQ,CAAC,CAAC;IAC3D,QAAQ,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC,YAAY,CAAC,EAAE,QAAQ,CAAC,CAAC;IAC5D,KAAK,EAAE,UAAU,CAAC,SAAS,CAAC,mBAAmB,CAAC,CAAC;IACjD,SAAS,EAAE,UAAU,CAAC,UAAU,CAAC;IACjC,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC;CACnC,CAAC,CAAC;AAIH;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,MAAM,CAAC,SAAS,CAAC,eAAe,EAAE,wBAAwB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;AAsDtH;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,aAAa,GAQtB;IACA;;;;;OAKG;IACH,IAAI,CAAC,OAA6B;QAC9B,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,KAAK,SAAS;YACvC,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,YAAY,EAAE,kBAAkB,CAAC,EAAE,eAAe,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,CAC/F,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAO,CAAC,QAAQ,EAAE,MAAM,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC;QACzE,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,KAAK,SAAS;YACvC,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC,EAAE,eAAe,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,EAAE,CACnE,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAO,CAAC,QAAQ,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC;QACjE,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,KAAK,SAAS;YACzC,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAE;gBAC3D,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAQ,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;YACxD,CAAC,CAAC,CAAC,CAAC;QACR,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,KAAK,SAAS;YAC3C,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAE;gBAC3D,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,QAAS,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;YACzD,CAAC,CAAC,CAAC,CAAC;QACR,MAAM,YAAY,GAAG,OAAO,CAAC,YAAY,KAAK,SAAS;YACnD,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,IAAI,CAAC,OAAO,OAAO,CAAC,YAAY,KAAK,QAAQ;gBAC3C,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,CAAC,EAAE,SAAS,CAAC;gBAC5D,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;QAChC,MAAM,gBAAgB,GAAG,OAAO,CAAC,KAAK,KAAK,SAAS;YAChD,CAAC,CAAC,SAAS;YACX,CAAC,CAAC,OAAO,CAAC,KAAK,KAAK,IAAI,CAAC,CAAC,CAAE,CAAC,QAAQ,EAAE,QAAQ,CAA8B,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;QAClG,IAAI,gBAAgB,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC;YACtC,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;QAC1G,CAAC;QACD,MAAM,KAAK,GAAG,gBAAgB,KAAK,SAAS;YACxC,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC;QACpG,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,KAAK,SAAS;YACzC,CAAC,CAAC,IAAI;YACN,CAAC,CAAC,OAAO,OAAO,CAAC,OAAO,KAAK,QAAQ;gBACjC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,EAAE,IAAI,CAAC,EAAE,WAAW,CAAC,CAAC;gBAC/D,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC;QAC1B,OAAO,sBAAsB,CAAC,IAAI,CAAC;YAC/B,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC;gBACf,SAAS,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS;gBACnC,UAAU,EAAE,OAAO,CAAC,MAAM,CAAC,UAAU;gBACrC,KAAK,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS;aAClC,EAAE,qBAAqB,CAAC;YACzB,OAAO,EAAE,OAAO,CAAC,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;YACrE,MAAM;YACN,MAAM;YACN,eAAe,EAAE,OAAO,CAAC,eAAe,KAAK,SAAS;gBAClD,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC;gBAC/D,CAAC,CAAC,IAAI;YACV,YAAY;YACZ,OAAO;YACP,QAAQ;YACR,KAAK;YACL,SAAS,EAAE,OAAO,CAAC,SAAS,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI;YAC3E,OAAO;SACV,CAAC,CAAC;IACP,CAAC;IACD,gFAAgF;IAChF,SAAS,EAAE,sBAAsB;IACjC,KAAK,EAAE;QACH,mCAAmC;QACnC,OAAO,EAAE,wBAAwB;QACjC,0CAA0C;QAC1C,MAAM,EAAE,kBAAkB;QAC1B,wCAAwC;QACxC,KAAK,EAAE,SAAS;KACnB;CACK,CAAC"}