@workflow/core 4.0.1-beta.4 → 4.0.1-beta.41
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/LICENSE.md +201 -21
- package/dist/builtins.js +1 -1
- package/dist/class-serialization.d.ts +26 -0
- package/dist/class-serialization.d.ts.map +1 -0
- package/dist/class-serialization.js +66 -0
- package/dist/create-hook.js +1 -1
- package/dist/define-hook.d.ts +40 -25
- package/dist/define-hook.d.ts.map +1 -1
- package/dist/define-hook.js +22 -27
- package/dist/events-consumer.js +1 -1
- package/dist/flushable-stream.d.ts +82 -0
- package/dist/flushable-stream.d.ts.map +1 -0
- package/dist/flushable-stream.js +214 -0
- package/dist/global.d.ts +12 -2
- package/dist/global.d.ts.map +1 -1
- package/dist/global.js +32 -8
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/logger.js +1 -1
- package/dist/observability.d.ts +60 -0
- package/dist/observability.d.ts.map +1 -1
- package/dist/observability.js +175 -19
- package/dist/parse-name.d.ts +12 -0
- package/dist/parse-name.d.ts.map +1 -1
- package/dist/parse-name.js +28 -3
- package/dist/private.d.ts +10 -1
- package/dist/private.d.ts.map +1 -1
- package/dist/private.js +6 -1
- package/dist/runtime/helpers.d.ts +52 -0
- package/dist/runtime/helpers.d.ts.map +1 -0
- package/dist/runtime/helpers.js +264 -0
- package/dist/runtime/resume-hook.d.ts +16 -11
- package/dist/runtime/resume-hook.d.ts.map +1 -1
- package/dist/runtime/resume-hook.js +76 -64
- package/dist/runtime/start.d.ts +10 -0
- package/dist/runtime/start.d.ts.map +1 -1
- package/dist/runtime/start.js +56 -45
- package/dist/runtime/step-handler.d.ts +7 -0
- package/dist/runtime/step-handler.d.ts.map +1 -0
- package/dist/runtime/step-handler.js +353 -0
- package/dist/runtime/suspension-handler.d.ts +20 -0
- package/dist/runtime/suspension-handler.d.ts.map +1 -0
- package/dist/runtime/suspension-handler.js +179 -0
- package/dist/runtime/world.d.ts.map +1 -1
- package/dist/runtime/world.js +22 -21
- package/dist/runtime.d.ts +3 -7
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +76 -334
- package/dist/schemas.d.ts +1 -15
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +2 -15
- package/dist/serialization.d.ts +74 -10
- package/dist/serialization.d.ts.map +1 -1
- package/dist/serialization.js +295 -56
- package/dist/sleep.d.ts +33 -0
- package/dist/sleep.d.ts.map +1 -0
- package/dist/sleep.js +10 -0
- package/dist/source-map.d.ts +10 -0
- package/dist/source-map.d.ts.map +1 -0
- package/dist/source-map.js +56 -0
- package/dist/step/context-storage.d.ts +2 -0
- package/dist/step/context-storage.d.ts.map +1 -1
- package/dist/step/context-storage.js +1 -1
- package/dist/step/get-closure-vars.d.ts +9 -0
- package/dist/step/get-closure-vars.d.ts.map +1 -0
- package/dist/step/get-closure-vars.js +16 -0
- package/dist/step/get-step-metadata.js +1 -1
- package/dist/step/get-workflow-metadata.js +1 -1
- package/dist/step/writable-stream.d.ts +14 -0
- package/dist/step/writable-stream.d.ts.map +1 -0
- package/dist/step/writable-stream.js +30 -0
- package/dist/step.d.ts +1 -1
- package/dist/step.d.ts.map +1 -1
- package/dist/step.js +51 -11
- package/dist/symbols.d.ts +7 -0
- package/dist/symbols.d.ts.map +1 -1
- package/dist/symbols.js +8 -1
- package/dist/telemetry/semantic-conventions.d.ts +66 -38
- package/dist/telemetry/semantic-conventions.d.ts.map +1 -1
- package/dist/telemetry/semantic-conventions.js +16 -3
- package/dist/telemetry.d.ts +8 -4
- package/dist/telemetry.d.ts.map +1 -1
- package/dist/telemetry.js +39 -6
- package/dist/types.d.ts +0 -7
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +1 -26
- package/dist/util.d.ts +9 -27
- package/dist/util.d.ts.map +1 -1
- package/dist/util.js +37 -44
- package/dist/vm/index.js +2 -2
- package/dist/vm/uuid.js +1 -1
- package/dist/workflow/create-hook.js +1 -1
- package/dist/workflow/define-hook.d.ts +3 -3
- package/dist/workflow/define-hook.d.ts.map +1 -1
- package/dist/workflow/define-hook.js +1 -1
- package/dist/workflow/get-workflow-metadata.js +1 -1
- package/dist/workflow/hook.d.ts.map +1 -1
- package/dist/workflow/hook.js +6 -9
- package/dist/workflow/index.d.ts +1 -0
- package/dist/workflow/index.d.ts.map +1 -1
- package/dist/workflow/index.js +2 -1
- package/dist/workflow/sleep.d.ts +4 -0
- package/dist/workflow/sleep.d.ts.map +1 -0
- package/dist/workflow/sleep.js +54 -0
- package/dist/workflow/writable-stream.js +1 -1
- package/dist/workflow.d.ts.map +1 -1
- package/dist/workflow.js +60 -9
- package/dist/writable-stream.d.ts +5 -4
- package/dist/writable-stream.d.ts.map +1 -1
- package/dist/writable-stream.js +7 -6
- package/package.json +23 -18
- package/dist/builtins.js.map +0 -1
- package/dist/create-hook.js.map +0 -1
- package/dist/define-hook.js.map +0 -1
- package/dist/events-consumer.js.map +0 -1
- package/dist/global.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/logger.js.map +0 -1
- package/dist/observability.js.map +0 -1
- package/dist/parse-name.js.map +0 -1
- package/dist/private.js.map +0 -1
- package/dist/runtime/resume-hook.js.map +0 -1
- package/dist/runtime/start.js.map +0 -1
- package/dist/runtime/world.js.map +0 -1
- package/dist/runtime.js.map +0 -1
- package/dist/schemas.js.map +0 -1
- package/dist/serialization.js.map +0 -1
- package/dist/step/context-storage.js.map +0 -1
- package/dist/step/get-step-metadata.js.map +0 -1
- package/dist/step/get-workflow-metadata.js.map +0 -1
- package/dist/step.js.map +0 -1
- package/dist/symbols.js.map +0 -1
- package/dist/telemetry/semantic-conventions.js.map +0 -1
- package/dist/telemetry.js.map +0 -1
- package/dist/types.js.map +0 -1
- package/dist/util.js.map +0 -1
- package/dist/vm/index.js.map +0 -1
- package/dist/vm/uuid.js.map +0 -1
- package/dist/workflow/create-hook.js.map +0 -1
- package/dist/workflow/define-hook.js.map +0 -1
- package/dist/workflow/get-workflow-metadata.js.map +0 -1
- package/dist/workflow/hook.js.map +0 -1
- package/dist/workflow/index.js.map +0 -1
- package/dist/workflow/writable-stream.js.map +0 -1
- package/dist/workflow.js.map +0 -1
- package/dist/writable-stream.js.map +0 -1
package/dist/serialization.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { unflatten } from 'devalue';
|
|
2
2
|
/**
|
|
3
3
|
* Detect if a readable stream is a byte stream.
|
|
4
4
|
*
|
|
@@ -13,7 +13,7 @@ export declare class WorkflowServerReadableStream extends ReadableStream<Uint8Ar
|
|
|
13
13
|
constructor(name: string, startIndex?: number);
|
|
14
14
|
}
|
|
15
15
|
export declare class WorkflowServerWritableStream extends WritableStream<Uint8Array> {
|
|
16
|
-
constructor(name: string);
|
|
16
|
+
constructor(name: string, runId: string | Promise<string>);
|
|
17
17
|
}
|
|
18
18
|
export interface SerializableSpecial {
|
|
19
19
|
ArrayBuffer: string;
|
|
@@ -57,7 +57,22 @@ export interface SerializableSpecial {
|
|
|
57
57
|
body: Response['body'];
|
|
58
58
|
redirected: boolean;
|
|
59
59
|
};
|
|
60
|
+
Class: {
|
|
61
|
+
classId: string;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Custom serialized class instance.
|
|
65
|
+
* The class must have a `classId` property and be registered for deserialization.
|
|
66
|
+
*/
|
|
67
|
+
Instance: {
|
|
68
|
+
classId: string;
|
|
69
|
+
data: unknown;
|
|
70
|
+
};
|
|
60
71
|
Set: any[];
|
|
72
|
+
StepFunction: {
|
|
73
|
+
stepId: string;
|
|
74
|
+
closureVars?: Record<string, any>;
|
|
75
|
+
};
|
|
61
76
|
URL: string;
|
|
62
77
|
URLSearchParams: string;
|
|
63
78
|
Uint8Array: string;
|
|
@@ -82,7 +97,7 @@ type Revivers = {
|
|
|
82
97
|
* @param ops
|
|
83
98
|
* @returns
|
|
84
99
|
*/
|
|
85
|
-
export declare function getExternalReducers(global: Record<string, any> | undefined, ops: Promise<
|
|
100
|
+
export declare function getExternalReducers(global: Record<string, any> | undefined, ops: Promise<void>[], runId: string | Promise<string>): Reducers;
|
|
86
101
|
/**
|
|
87
102
|
* Reducers for serialization boundary from within the workflow execution
|
|
88
103
|
* environment, passing return value to the client side and into step arguments.
|
|
@@ -91,14 +106,52 @@ export declare function getExternalReducers(global: Record<string, any> | undefi
|
|
|
91
106
|
* @returns
|
|
92
107
|
*/
|
|
93
108
|
export declare function getWorkflowReducers(global?: Record<string, any>): Reducers;
|
|
109
|
+
export declare function getCommonRevivers(global?: Record<string, any>): {
|
|
110
|
+
readonly ArrayBuffer: (value: string) => any;
|
|
111
|
+
readonly BigInt: (value: string) => any;
|
|
112
|
+
readonly BigInt64Array: (value: string) => any;
|
|
113
|
+
readonly BigUint64Array: (value: string) => any;
|
|
114
|
+
readonly Date: (value: string) => any;
|
|
115
|
+
readonly Error: (value: Record<string, any>) => any;
|
|
116
|
+
readonly Float32Array: (value: string) => any;
|
|
117
|
+
readonly Float64Array: (value: string) => any;
|
|
118
|
+
readonly Headers: (value: [string, string][]) => any;
|
|
119
|
+
readonly Int8Array: (value: string) => any;
|
|
120
|
+
readonly Int16Array: (value: string) => any;
|
|
121
|
+
readonly Int32Array: (value: string) => any;
|
|
122
|
+
readonly Map: (value: [any, any][]) => any;
|
|
123
|
+
readonly RegExp: (value: {
|
|
124
|
+
source: string;
|
|
125
|
+
flags: string;
|
|
126
|
+
}) => any;
|
|
127
|
+
readonly Class: (value: {
|
|
128
|
+
classId: string;
|
|
129
|
+
}) => Function;
|
|
130
|
+
readonly Instance: (value: {
|
|
131
|
+
classId: string;
|
|
132
|
+
data: unknown;
|
|
133
|
+
}) => any;
|
|
134
|
+
readonly Set: (value: any[]) => any;
|
|
135
|
+
readonly StepFunction: (value: {
|
|
136
|
+
stepId: string;
|
|
137
|
+
closureVars?: Record<string, any>;
|
|
138
|
+
}) => any;
|
|
139
|
+
readonly URL: (value: string) => any;
|
|
140
|
+
readonly URLSearchParams: (value: string) => any;
|
|
141
|
+
readonly Uint8Array: (value: string) => any;
|
|
142
|
+
readonly Uint8ClampedArray: (value: string) => any;
|
|
143
|
+
readonly Uint16Array: (value: string) => any;
|
|
144
|
+
readonly Uint32Array: (value: string) => any;
|
|
145
|
+
};
|
|
94
146
|
/**
|
|
95
147
|
* Revivers for deserialization boundary from the client side,
|
|
96
148
|
* receiving the return value from the workflow handler.
|
|
97
149
|
*
|
|
98
150
|
* @param global
|
|
99
151
|
* @param ops
|
|
152
|
+
* @param runId
|
|
100
153
|
*/
|
|
101
|
-
export declare function getExternalRevivers(global: Record<string, any> | undefined, ops: Promise<
|
|
154
|
+
export declare function getExternalRevivers(global: Record<string, any> | undefined, ops: Promise<void>[], runId: string | Promise<string>): Revivers;
|
|
102
155
|
/**
|
|
103
156
|
* Revivers for deserialization boundary from within the workflow execution
|
|
104
157
|
* environment, receiving arguments from the client side, and return values
|
|
@@ -115,9 +168,10 @@ export declare function getWorkflowRevivers(global?: Record<string, any>): Reviv
|
|
|
115
168
|
*
|
|
116
169
|
* @param value
|
|
117
170
|
* @param global
|
|
171
|
+
* @param runId
|
|
118
172
|
* @returns The dehydrated value, ready to be inserted into the database
|
|
119
173
|
*/
|
|
120
|
-
export declare function dehydrateWorkflowArguments(value: unknown, ops: Promise<
|
|
174
|
+
export declare function dehydrateWorkflowArguments(value: unknown, ops: Promise<void>[], runId: string | Promise<string>, global?: Record<string, any>): any;
|
|
121
175
|
/**
|
|
122
176
|
* Called from workflow execution environment to hydrate the workflow
|
|
123
177
|
* arguments from the database at the start of workflow execution.
|
|
@@ -127,7 +181,7 @@ export declare function dehydrateWorkflowArguments(value: unknown, ops: Promise<
|
|
|
127
181
|
* @param global
|
|
128
182
|
* @returns The hydrated value
|
|
129
183
|
*/
|
|
130
|
-
export declare function hydrateWorkflowArguments(value: Parameters<typeof
|
|
184
|
+
export declare function hydrateWorkflowArguments(value: Parameters<typeof unflatten>[0], global?: Record<string, any>, extraRevivers?: Record<string, (value: any) => any>): any;
|
|
131
185
|
/**
|
|
132
186
|
* Called at the end of a completed workflow execution to serialize the
|
|
133
187
|
* return value into a format that can be saved to the database.
|
|
@@ -143,10 +197,13 @@ export declare function dehydrateWorkflowReturnValue(value: unknown, global?: Re
|
|
|
143
197
|
* return value of a completed workflow run.
|
|
144
198
|
*
|
|
145
199
|
* @param value
|
|
200
|
+
* @param ops
|
|
146
201
|
* @param global
|
|
202
|
+
* @param extraRevivers
|
|
203
|
+
* @param runId
|
|
147
204
|
* @returns The hydrated return value, ready to be consumed by the client
|
|
148
205
|
*/
|
|
149
|
-
export declare function hydrateWorkflowReturnValue(value: Parameters<typeof
|
|
206
|
+
export declare function hydrateWorkflowReturnValue(value: Parameters<typeof unflatten>[0], ops: Promise<void>[], runId: string | Promise<string>, global?: Record<string, any>, extraRevivers?: Record<string, (value: any) => any>): any;
|
|
150
207
|
/**
|
|
151
208
|
* Called from the workflow handler when a step is being created.
|
|
152
209
|
* Dehydrates values from within the workflow execution environment
|
|
@@ -162,28 +219,35 @@ export declare function dehydrateStepArguments(value: unknown, global: Record<st
|
|
|
162
219
|
* from the database at the start of the step execution.
|
|
163
220
|
*
|
|
164
221
|
* @param value
|
|
222
|
+
* @param ops
|
|
165
223
|
* @param global
|
|
224
|
+
* @param extraRevivers
|
|
225
|
+
* @param runId
|
|
166
226
|
* @returns The hydrated value, ready to be consumed by the step user-code function
|
|
167
227
|
*/
|
|
168
|
-
export declare function hydrateStepArguments(value: Parameters<typeof
|
|
228
|
+
export declare function hydrateStepArguments(value: Parameters<typeof unflatten>[0], ops: Promise<any>[], runId: string | Promise<string>, global?: Record<string, any>, extraRevivers?: Record<string, (value: any) => any>): any;
|
|
169
229
|
/**
|
|
170
230
|
* Called from the step handler when a step has completed.
|
|
171
231
|
* Dehydrates values from within the step execution environment
|
|
172
232
|
* into a format that can be saved to the database.
|
|
173
233
|
*
|
|
174
234
|
* @param value
|
|
235
|
+
* @param ops
|
|
175
236
|
* @param global
|
|
237
|
+
* @param runId
|
|
176
238
|
* @returns The dehydrated value, ready to be inserted into the database
|
|
177
239
|
*/
|
|
178
|
-
export declare function dehydrateStepReturnValue(value: unknown, ops: Promise<any>[], global?: Record<string, any>): any;
|
|
240
|
+
export declare function dehydrateStepReturnValue(value: unknown, ops: Promise<any>[], runId: string | Promise<string>, global?: Record<string, any>): any;
|
|
179
241
|
/**
|
|
180
242
|
* Called from the workflow handler when replaying the event log of a `step_completed` event.
|
|
181
243
|
* Hydrates the return value of a step from the database.
|
|
182
244
|
*
|
|
183
245
|
* @param value
|
|
184
246
|
* @param global
|
|
247
|
+
* @param extraRevivers
|
|
248
|
+
* @param runId
|
|
185
249
|
* @returns The hydrated return value of a step, ready to be consumed by the workflow handler
|
|
186
250
|
*/
|
|
187
|
-
export declare function hydrateStepReturnValue(value: Parameters<typeof
|
|
251
|
+
export declare function hydrateStepReturnValue(value: Parameters<typeof unflatten>[0], global?: Record<string, any>, extraRevivers?: Record<string, (value: any) => any>): any;
|
|
188
252
|
export {};
|
|
189
253
|
//# sourceMappingURL=serialization.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"serialization.d.ts","sourceRoot":"","sources":["../src/serialization.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"serialization.d.ts","sourceRoot":"","sources":["../src/serialization.ts"],"names":[],"mappings":"AAEA,OAAO,EAAkC,SAAS,EAAE,MAAM,SAAS,CAAC;AAsDpE;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,GAAG,SAAS,CAMzE;AAED,wBAAgB,kBAAkB,CAChC,QAAQ,EAAE,QAAQ,GACjB,eAAe,CAAC,GAAG,EAAE,UAAU,CAAC,CAkBlC;AAED,wBAAgB,oBAAoB,CAClC,QAAQ,EAAE,QAAQ,GACjB,eAAe,CAAC,UAAU,EAAE,GAAG,CAAC,CA6BlC;AAED,qBAAa,4BAA6B,SAAQ,cAAc,CAAC,UAAU,CAAC;;gBAG9D,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM;CA8B9C;AAED,qBAAa,4BAA6B,SAAQ,cAAc,CAAC,UAAU,CAAC;gBAC9D,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CAyB1D;AAID,MAAM,WAAW,mBAAmB;IAClC,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC3B,OAAO,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC;IAClB,cAAc,EACV;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,GACrD;QAAE,QAAQ,EAAE,GAAG,CAAA;KAAE,CAAC;IACtB,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAC1C,OAAO,EAAE;QACP,MAAM,EAAE,MAAM,CAAC;QACf,GAAG,EAAE,MAAM,CAAC;QACZ,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;QACtB,MAAM,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAC;QAG1B,gBAAgB,CAAC,EAAE,cAAc,CAAC,QAAQ,CAAC,CAAC;KAC7C,CAAC;IACF,QAAQ,EAAE;QACR,IAAI,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;QACvB,GAAG,EAAE,MAAM,CAAC;QACZ,MAAM,EAAE,MAAM,CAAC;QACf,UAAU,EAAE,MAAM,CAAC;QACnB,OAAO,EAAE,OAAO,CAAC;QACjB,IAAI,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;QACvB,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;IACF,KAAK,EAAE;QACL,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;IACF;;;OAGG;IACH,QAAQ,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,EAAE,OAAO,CAAC;KACf,CAAC;IACF,GAAG,EAAE,GAAG,EAAE,CAAC;IACX,YAAY,EAAE;QACZ,MAAM,EAAE,MAAM,CAAC;QACf,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KACnC,CAAC;IACF,GAAG,EAAE,MAAM,CAAC;IACZ,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;CAClC;AAED,KAAK,QAAQ,GAAG;KACb,CAAC,IAAI,MAAM,mBAAmB,GAAG,CAChC,KAAK,EAAE,GAAG,KACP,mBAAmB,CAAC,CAAC,CAAC,GAAG,KAAK;CACpC,CAAC;AAEF,KAAK,QAAQ,GAAG;KACb,CAAC,IAAI,MAAM,mBAAmB,GAAG,CAAC,KAAK,EAAE,mBAAmB,CAAC,CAAC,CAAC,KAAK,GAAG;CACzE,CAAC;AAgKF;;;;;;;GAOG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,YAAa,EACxC,GAAG,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,EACpB,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,GAC9B,QAAQ,CA8CV;AAED;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,GACvC,QAAQ,CAmCV;AA0FD,wBAAgB,iBAAiB,CAAC,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc;kCACtC,MAAM;6BAWtB,MAAM;oCACC,MAAM;qCAIL,MAAM;;;mCAWR,MAAM;mCAIN,MAAM;;gCAKT,MAAM;iCAIL,MAAM;iCAIN,MAAM;;;gBApcV,MAAM;eAAS,MAAM;;;iBAqB5B,MAAM;;;iBAON,MAAM;cACT,OAAO;;;;gBAIL,MAAM;sBACA,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;;;;iCAqgBb,MAAM;wCAIC,MAAM;kCAIZ,MAAM;kCAIN,MAAM;EAK9B;AAED;;;;;;;GAOG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,YAAa,EACxC,GAAG,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,EACpB,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,GAC9B,QAAQ,CA+FV;AAED;;;;;;;GAOG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,GACvC,QAAQ,CAsDV;AA0HD;;;;;;;;;GASG;AACH,wBAAgB,0BAA0B,CACxC,KAAK,EAAE,OAAO,EACd,GAAG,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,EACpB,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,EAC/B,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,OAWzC;AAED;;;;;;;;GAQG;AACH,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,EACtC,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,EACxC,aAAa,GAAE,MAAM,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,GAAG,CAAM,OAOxD;AAED;;;;;;;GAOG;AACH,wBAAgB,4BAA4B,CAC1C,KAAK,EAAE,OAAO,EACd,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,OAWzC;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,0BAA0B,CACxC,KAAK,EAAE,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,EACtC,GAAG,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,EACpB,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,EAC/B,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,EACxC,aAAa,GAAE,MAAM,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,GAAG,CAAM,OAOxD;AAED;;;;;;;;GAQG;AACH,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,OAAO,EACd,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,OAW5B;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,EACtC,GAAG,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,EACnB,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,EAC/B,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,EACxC,aAAa,GAAE,MAAM,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,GAAG,CAAM,OAOxD;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,OAAO,EACd,GAAG,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,EACnB,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,EAC/B,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,OAWzC;AAED;;;;;;;;;GASG;AACH,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,EACtC,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAc,EACxC,aAAa,GAAE,MAAM,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,GAAG,CAAM,OAOxD"}
|