@kronos-ts/axon-server 0.3.2 → 0.5.0
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/dist/axon-server-event-store.d.ts +3 -15
- package/dist/axon-server-event-store.d.ts.map +1 -1
- package/dist/axon-server-event-store.js +85 -44
- package/dist/axon-server-event-store.js.map +1 -1
- package/dist/axon-server-snapshotting-event-store.d.ts +30 -0
- package/dist/axon-server-snapshotting-event-store.d.ts.map +1 -0
- package/dist/axon-server-snapshotting-event-store.js +153 -0
- package/dist/axon-server-snapshotting-event-store.js.map +1 -0
- package/dist/axon-server.d.ts +92 -208
- package/dist/axon-server.d.ts.map +1 -1
- package/dist/axon-server.js +221 -323
- package/dist/axon-server.js.map +1 -1
- package/dist/connection-manager.d.ts +2 -2
- package/dist/connection-manager.d.ts.map +1 -1
- package/dist/connection.d.ts +134 -4
- package/dist/connection.d.ts.map +1 -1
- package/dist/connection.js +135 -10
- package/dist/connection.js.map +1 -1
- package/dist/context-view.d.ts +30 -0
- package/dist/context-view.d.ts.map +1 -0
- package/dist/context-view.js +19 -0
- package/dist/context-view.js.map +1 -0
- package/dist/control-plane.d.ts +18 -17
- package/dist/control-plane.d.ts.map +1 -1
- package/dist/control-plane.js +8 -6
- package/dist/control-plane.js.map +1 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js.map +1 -1
- package/dist/event-processor-info.d.ts +4 -4
- package/dist/event-processor-info.d.ts.map +1 -1
- package/dist/flow-controlled-sender.d.ts +2 -2
- package/dist/flow-controlled-sender.d.ts.map +1 -1
- package/dist/flow-controlled-sender.js.map +1 -1
- package/dist/generated/command.d.ts +20 -20
- package/dist/generated/command.d.ts.map +1 -1
- package/dist/generated/command.js.map +1 -1
- package/dist/generated/common.d.ts +20 -20
- package/dist/generated/common.d.ts.map +1 -1
- package/dist/generated/common.js.map +1 -1
- package/dist/generated/control.d.ts +36 -40
- package/dist/generated/control.d.ts.map +1 -1
- package/dist/generated/control.js.map +1 -1
- package/dist/generated/dcb.d.ts +88 -94
- package/dist/generated/dcb.d.ts.map +1 -1
- package/dist/generated/dcb.js.map +1 -1
- package/dist/generated/event.d.ts +81 -84
- package/dist/generated/event.d.ts.map +1 -1
- package/dist/generated/event.js.map +1 -1
- package/dist/generated/google/protobuf/empty.d.ts +3 -4
- package/dist/generated/google/protobuf/empty.d.ts.map +1 -1
- package/dist/generated/google/protobuf/empty.js.map +1 -1
- package/dist/generated/query.d.ts +40 -40
- package/dist/generated/query.d.ts.map +1 -1
- package/dist/generated/query.js.map +1 -1
- package/dist/index.d.ts +4 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -5
- package/dist/index.js.map +1 -1
- package/dist/message-size.d.ts +2 -2
- package/dist/message-size.d.ts.map +1 -1
- package/dist/metadata-conversion.d.ts +1 -1
- package/dist/metadata-conversion.d.ts.map +1 -1
- package/dist/outbound-stream.d.ts +2 -2
- package/dist/outbound-stream.d.ts.map +1 -1
- package/dist/platform-service.d.ts +4 -4
- package/dist/platform-service.d.ts.map +1 -1
- package/dist/resilience.d.ts +62 -0
- package/dist/resilience.d.ts.map +1 -0
- package/dist/resilience.js +103 -0
- package/dist/resilience.js.map +1 -0
- package/dist/shutdown-latch.d.ts +4 -4
- package/dist/shutdown-latch.d.ts.map +1 -1
- package/dist/shutdown-latch.js.map +1 -1
- package/package.json +5 -9
- package/src/axon-server-event-store.ts +97 -57
- package/src/axon-server-snapshotting-event-store.ts +191 -0
- package/src/axon-server.ts +365 -524
- package/src/connection-manager.ts +1 -1
- package/src/connection.ts +274 -20
- package/src/context-view.ts +46 -0
- package/src/control-plane.ts +19 -19
- package/src/event-processor-info.ts +2 -2
- package/src/flow-controlled-sender.ts +1 -1
- package/src/generated/command.ts +10 -10
- package/src/generated/common.ts +10 -10
- package/src/generated/control.ts +20 -20
- package/src/generated/dcb.ts +47 -47
- package/src/generated/event.ts +42 -42
- package/src/generated/google/protobuf/empty.ts +2 -2
- package/src/generated/query.ts +20 -20
- package/src/index.ts +12 -18
- package/src/message-size.ts +1 -1
- package/src/metadata-conversion.ts +1 -1
- package/src/outbound-stream.ts +1 -1
- package/src/platform-service.ts +2 -2
- package/src/resilience.ts +149 -0
- package/src/shutdown-latch.ts +2 -2
- package/dist/axon-server-snapshot-store.d.ts +0 -12
- package/dist/axon-server-snapshot-store.d.ts.map +0 -1
- package/dist/axon-server-snapshot-store.js +0 -88
- package/dist/axon-server-snapshot-store.js.map +0 -1
- package/src/axon-server-snapshot-store.ts +0 -118
|
@@ -3,7 +3,7 @@ import type { CallContext, CallOptions } from "nice-grpc-common";
|
|
|
3
3
|
import { ErrorMessage, FlowControl, InstructionAck, MetaDataValue, ProcessingInstruction, SerializedObject } from "./common.js";
|
|
4
4
|
export declare const protobufPackage = "io.axoniq.axonserver.grpc.query";
|
|
5
5
|
/** Message containing Query related instructions for Axon Server */
|
|
6
|
-
export
|
|
6
|
+
export type QueryProviderOutbound = {
|
|
7
7
|
/** Registers a Query Handler with AxonServer */
|
|
8
8
|
subscribe?: QuerySubscription | undefined;
|
|
9
9
|
/** Unregisters a Query Handler with AxonServer */
|
|
@@ -20,9 +20,9 @@ export interface QueryProviderOutbound {
|
|
|
20
20
|
ack?: InstructionAck | undefined;
|
|
21
21
|
/** Instruction identifier. If this identifier is set, this instruction will be acknowledged via inbound stream */
|
|
22
22
|
instructionId: string;
|
|
23
|
-
}
|
|
23
|
+
};
|
|
24
24
|
/** Queries or Query related instructions from AxonServer for the connected application */
|
|
25
|
-
export
|
|
25
|
+
export type QueryProviderInbound = {
|
|
26
26
|
/** Acknowledgement of previously sent instruction via outbound stream */
|
|
27
27
|
ack?: InstructionAck | undefined;
|
|
28
28
|
/** Represents an incoming Query, for which this component is expected to provide a response */
|
|
@@ -35,27 +35,27 @@ export interface QueryProviderInbound {
|
|
|
35
35
|
queryFlowControl?: QueryFlowControl | undefined;
|
|
36
36
|
/** Instruction identifier. If this identifier is set, this instruction will be acknowledged via outbound stream */
|
|
37
37
|
instructionId: string;
|
|
38
|
-
}
|
|
39
|
-
export
|
|
38
|
+
};
|
|
39
|
+
export type QueryReference = {
|
|
40
40
|
/** The identifier of the query request. */
|
|
41
41
|
requestId: string;
|
|
42
|
-
}
|
|
42
|
+
};
|
|
43
43
|
/** Message indicating that query has been completed. */
|
|
44
|
-
export
|
|
44
|
+
export type QueryComplete = {
|
|
45
45
|
/** A unique identifier for this message */
|
|
46
46
|
messageId: string;
|
|
47
47
|
/** The identifier of the incoming query to complete */
|
|
48
48
|
requestId: string;
|
|
49
|
-
}
|
|
49
|
+
};
|
|
50
50
|
/** Message indicating that consumer is requesting more messages from producer. */
|
|
51
|
-
export
|
|
51
|
+
export type QueryFlowControl = {
|
|
52
52
|
/** The identifier of the incoming query to complete */
|
|
53
53
|
queryReference: QueryReference | undefined;
|
|
54
54
|
/** Number of messages requested */
|
|
55
55
|
permits: bigint;
|
|
56
|
-
}
|
|
56
|
+
};
|
|
57
57
|
/** Message representing an incoming Query */
|
|
58
|
-
export
|
|
58
|
+
export type QueryRequest = {
|
|
59
59
|
/** The message ID of the incoming Query */
|
|
60
60
|
messageIdentifier: string;
|
|
61
61
|
/** The name of the Query to execute */
|
|
@@ -80,13 +80,13 @@ export interface QueryRequest {
|
|
|
80
80
|
clientId: string;
|
|
81
81
|
/** The Name of the Component dispatching the query */
|
|
82
82
|
componentName: string;
|
|
83
|
-
}
|
|
84
|
-
export
|
|
83
|
+
};
|
|
84
|
+
export type QueryRequest_MetaDataEntry = {
|
|
85
85
|
key: string;
|
|
86
86
|
value: MetaDataValue | undefined;
|
|
87
|
-
}
|
|
87
|
+
};
|
|
88
88
|
/** Message that represents the Response to a Query */
|
|
89
|
-
export
|
|
89
|
+
export type QueryResponse = {
|
|
90
90
|
/** The unique identifier of the Response Message */
|
|
91
91
|
messageIdentifier: string;
|
|
92
92
|
/** An Error Code identifying the type of error, if any */
|
|
@@ -103,13 +103,13 @@ export interface QueryResponse {
|
|
|
103
103
|
processingInstructions: ProcessingInstruction[];
|
|
104
104
|
/** The unique identifier of the Query to which this is a response */
|
|
105
105
|
requestIdentifier: string;
|
|
106
|
-
}
|
|
107
|
-
export
|
|
106
|
+
};
|
|
107
|
+
export type QueryResponse_MetaDataEntry = {
|
|
108
108
|
key: string;
|
|
109
109
|
value: MetaDataValue | undefined;
|
|
110
|
-
}
|
|
110
|
+
};
|
|
111
111
|
/** Message that represents a Subscription Query */
|
|
112
|
-
export
|
|
112
|
+
export type SubscriptionQuery = {
|
|
113
113
|
/** A unique identifier for this subscription */
|
|
114
114
|
subscriptionIdentifier: string;
|
|
115
115
|
/** The number of messages the Server may send before needing to await additional permits */
|
|
@@ -122,9 +122,9 @@ export interface SubscriptionQuery {
|
|
|
122
122
|
* @deprecated
|
|
123
123
|
*/
|
|
124
124
|
updateResponseType: SerializedObject | undefined;
|
|
125
|
-
}
|
|
125
|
+
};
|
|
126
126
|
/** A message containing an Update of a Query Subscription Response */
|
|
127
|
-
export
|
|
127
|
+
export type QueryUpdate = {
|
|
128
128
|
/** The unique identifier of this Update */
|
|
129
129
|
messageIdentifier: string;
|
|
130
130
|
/** The object representing the Update */
|
|
@@ -141,20 +141,20 @@ export interface QueryUpdate {
|
|
|
141
141
|
errorCode: string;
|
|
142
142
|
/** A detailed description of the error, if any */
|
|
143
143
|
errorMessage: ErrorMessage | undefined;
|
|
144
|
-
}
|
|
145
|
-
export
|
|
144
|
+
};
|
|
145
|
+
export type QueryUpdate_MetaDataEntry = {
|
|
146
146
|
key: string;
|
|
147
147
|
value: MetaDataValue | undefined;
|
|
148
|
-
}
|
|
148
|
+
};
|
|
149
149
|
/** Message indicating that all relevant Updates have been sent for a Subscription Query, and that no further Updates are available */
|
|
150
|
-
export
|
|
150
|
+
export type QueryUpdateComplete = {
|
|
151
151
|
/** The identifier of the Client instance providing the Update */
|
|
152
152
|
clientId: string;
|
|
153
153
|
/** The Component Name of the Client providing the Update */
|
|
154
154
|
componentName: string;
|
|
155
|
-
}
|
|
155
|
+
};
|
|
156
156
|
/** Message indicating that an Error occurred and that no Updates will be sent for a Subscription Query */
|
|
157
|
-
export
|
|
157
|
+
export type QueryUpdateCompleteExceptionally = {
|
|
158
158
|
/** The identifier of the Client instance providing the Update */
|
|
159
159
|
clientId: string;
|
|
160
160
|
/** The Component Name of the Client providing the Update */
|
|
@@ -163,9 +163,9 @@ export interface QueryUpdateCompleteExceptionally {
|
|
|
163
163
|
errorCode: string;
|
|
164
164
|
/** A detailed description of the error, if available */
|
|
165
165
|
errorMessage: ErrorMessage | undefined;
|
|
166
|
-
}
|
|
166
|
+
};
|
|
167
167
|
/** Message describing possible interactions for a Subscription Query */
|
|
168
|
-
export
|
|
168
|
+
export type SubscriptionQueryRequest = {
|
|
169
169
|
/** Start a Subscription Query with the given details. */
|
|
170
170
|
subscribe?: SubscriptionQuery | undefined;
|
|
171
171
|
/** Ends a previously started Subscription Query with the given details */
|
|
@@ -184,9 +184,9 @@ export interface SubscriptionQueryRequest {
|
|
|
184
184
|
* set on this message.
|
|
185
185
|
*/
|
|
186
186
|
flowControl?: SubscriptionQuery | undefined;
|
|
187
|
-
}
|
|
187
|
+
};
|
|
188
188
|
/** Represents a Response Message for a Subscription Query */
|
|
189
|
-
export
|
|
189
|
+
export type SubscriptionQueryResponse = {
|
|
190
190
|
/** The unique identifier for this message */
|
|
191
191
|
messageIdentifier: string;
|
|
192
192
|
/** The identifier of the subscription query this is a response for */
|
|
@@ -199,9 +199,9 @@ export interface SubscriptionQueryResponse {
|
|
|
199
199
|
complete?: QueryUpdateComplete | undefined;
|
|
200
200
|
/** Indicates the Query failed exceptionally, and no more Updates will be sent */
|
|
201
201
|
completeExceptionally?: QueryUpdateCompleteExceptionally | undefined;
|
|
202
|
-
}
|
|
202
|
+
};
|
|
203
203
|
/** Message containing details of a Registration of a Query Handler in a component */
|
|
204
|
-
export
|
|
204
|
+
export type QuerySubscription = {
|
|
205
205
|
/** The unique identifier of this Message */
|
|
206
206
|
messageId: string;
|
|
207
207
|
/** The name of the Query the Handler is subscribed to */
|
|
@@ -212,7 +212,7 @@ export interface QuerySubscription {
|
|
|
212
212
|
componentName: string;
|
|
213
213
|
/** The unique identifier of the Client Instance containing the Query Handler */
|
|
214
214
|
clientId: string;
|
|
215
|
-
}
|
|
215
|
+
};
|
|
216
216
|
export declare const QueryProviderOutbound: MessageFns<QueryProviderOutbound>;
|
|
217
217
|
export declare const QueryProviderInbound: MessageFns<QueryProviderInbound>;
|
|
218
218
|
export declare const QueryReference: MessageFns<QueryReference>;
|
|
@@ -265,22 +265,22 @@ export declare const QueryServiceDefinition: {
|
|
|
265
265
|
};
|
|
266
266
|
};
|
|
267
267
|
};
|
|
268
|
-
export
|
|
268
|
+
export type QueryServiceImplementation<CallContextExt = {}> = {
|
|
269
269
|
/** Opens a Query- and Instruction stream to AxonServer. */
|
|
270
270
|
openStream(request: AsyncIterable<QueryProviderOutbound>, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<QueryProviderInbound>>;
|
|
271
271
|
/** Sends a point-to-point or scatter-gather Query */
|
|
272
272
|
query(request: QueryRequest, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<QueryResponse>>;
|
|
273
273
|
/** Opens a Subscription Query */
|
|
274
274
|
subscription(request: AsyncIterable<SubscriptionQueryRequest>, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<SubscriptionQueryResponse>>;
|
|
275
|
-
}
|
|
276
|
-
export
|
|
275
|
+
};
|
|
276
|
+
export type QueryServiceClient<CallOptionsExt = {}> = {
|
|
277
277
|
/** Opens a Query- and Instruction stream to AxonServer. */
|
|
278
278
|
openStream(request: AsyncIterable<DeepPartial<QueryProviderOutbound>>, options?: CallOptions & CallOptionsExt): AsyncIterable<QueryProviderInbound>;
|
|
279
279
|
/** Sends a point-to-point or scatter-gather Query */
|
|
280
280
|
query(request: DeepPartial<QueryRequest>, options?: CallOptions & CallOptionsExt): AsyncIterable<QueryResponse>;
|
|
281
281
|
/** Opens a Subscription Query */
|
|
282
282
|
subscription(request: AsyncIterable<DeepPartial<SubscriptionQueryRequest>>, options?: CallOptions & CallOptionsExt): AsyncIterable<SubscriptionQueryResponse>;
|
|
283
|
-
}
|
|
283
|
+
};
|
|
284
284
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;
|
|
285
285
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
286
286
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
@@ -288,13 +288,13 @@ export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<
|
|
|
288
288
|
export type ServerStreamingMethodResult<Response> = {
|
|
289
289
|
[Symbol.asyncIterator](): AsyncIterator<Response, void>;
|
|
290
290
|
};
|
|
291
|
-
export
|
|
291
|
+
export type MessageFns<T> = {
|
|
292
292
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
293
293
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
294
294
|
fromJSON(object: any): T;
|
|
295
295
|
toJSON(message: T): unknown;
|
|
296
296
|
create(base?: DeepPartial<T>): T;
|
|
297
297
|
fromPartial(object: DeepPartial<T>): T;
|
|
298
|
-
}
|
|
298
|
+
};
|
|
299
299
|
export {};
|
|
300
300
|
//# sourceMappingURL=query.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../src/generated/query.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EACL,YAAY,EACZ,WAAW,EACX,cAAc,EACd,aAAa,EACb,qBAAqB,EACrB,gBAAgB,EACjB,MAAM,aAAa,CAAC;AAErB,eAAO,MAAM,eAAe,oCAAoC,CAAC;AAEjE,oEAAoE;AACpE,MAAM,
|
|
1
|
+
{"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../src/generated/query.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EACL,YAAY,EACZ,WAAW,EACX,cAAc,EACd,aAAa,EACb,qBAAqB,EACrB,gBAAgB,EACjB,MAAM,aAAa,CAAC;AAErB,eAAO,MAAM,eAAe,oCAAoC,CAAC;AAEjE,oEAAoE;AACpE,MAAM,MAAM,qBAAqB,GAAG;IAClC,gDAAgD;IAChD,SAAS,CAAC,EACN,iBAAiB,GACjB,SAAS,CAAC;IACd,kDAAkD;IAClD,WAAW,CAAC,EACR,iBAAiB,GACjB,SAAS,CAAC;IACd,6EAA6E;IAC7E,WAAW,CAAC,EACR,WAAW,GACX,SAAS,CAAC;IACd,kEAAkE;IAClE,aAAa,CAAC,EACV,aAAa,GACb,SAAS,CAAC;IACd,4DAA4D;IAC5D,aAAa,CAAC,EACV,aAAa,GACb,SAAS,CAAC;IACd,8FAA8F;IAC9F,yBAAyB,CAAC,EACtB,yBAAyB,GACzB,SAAS,CAAC;IACd,wEAAwE;IACxE,GAAG,CAAC,EACA,cAAc,GACd,SAAS,CAAC;IACd,kHAAkH;IAClH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAA;AAED,0FAA0F;AAC1F,MAAM,MAAM,oBAAoB,GAAG;IACjC,yEAAyE;IACzE,GAAG,CAAC,EACA,cAAc,GACd,SAAS,CAAC;IACd,+FAA+F;IAC/F,KAAK,CAAC,EACF,YAAY,GACZ,SAAS,CAAC;IACd,wHAAwH;IACxH,wBAAwB,CAAC,EACrB,wBAAwB,GACxB,SAAS,CAAC;IACd,6EAA6E;IAC7E,WAAW,CAAC,EACR,cAAc,GACd,SAAS,CAAC;IACd,qEAAqE;IACrE,gBAAgB,CAAC,EACb,gBAAgB,GAChB,SAAS,CAAC;IACd,mHAAmH;IACnH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B,2CAA2C;IAC3C,SAAS,EAAE,MAAM,CAAC;CACnB,CAAA;AAED,wDAAwD;AACxD,MAAM,MAAM,aAAa,GAAG;IAC1B,2CAA2C;IAC3C,SAAS,EAAE,MAAM,CAAC;IAClB,uDAAuD;IACvD,SAAS,EAAE,MAAM,CAAC;CACnB,CAAA;AAED,kFAAkF;AAClF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,uDAAuD;IACvD,cAAc,EACV,cAAc,GACd,SAAS,CAAC;IACd,mCAAmC;IACnC,OAAO,EAAE,MAAM,CAAC;CACjB,CAAA;AAED,6CAA6C;AAC7C,MAAM,MAAM,YAAY,GAAG;IACzB,2CAA2C;IAC3C,iBAAiB,EAAE,MAAM,CAAC;IAC1B,uCAAuC;IACvC,KAAK,EAAE,MAAM,CAAC;IACd,0CAA0C;IAC1C,SAAS,EAAE,MAAM,CAAC;IAClB,uCAAuC;IACvC,OAAO,EACH,gBAAgB,GAChB,SAAS,CAAC;IACd,8DAA8D;IAC9D,QAAQ,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,CAAC;IAC3C;;;;OAIG;IACH,YAAY,EACR,gBAAgB,GAChB,SAAS,CAAC;IACd,oEAAoE;IACpE,sBAAsB,EAAE,qBAAqB,EAAE,CAAC;IAChD,yEAAyE;IACzE,QAAQ,EAAE,MAAM,CAAC;IACjB,sDAAsD;IACtD,aAAa,EAAE,MAAM,CAAC;CACvB,CAAA;AAED,MAAM,MAAM,0BAA0B,GAAG;IACvC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,aAAa,GAAG,SAAS,CAAC;CAClC,CAAA;AAED,sDAAsD;AACtD,MAAM,MAAM,aAAa,GAAG;IAC1B,oDAAoD;IACpD,iBAAiB,EAAE,MAAM,CAAC;IAC1B,0DAA0D;IAC1D,SAAS,EAAE,MAAM,CAAC;IAClB,kDAAkD;IAClD,YAAY,EACR,YAAY,GACZ,SAAS,CAAC;IACd,0CAA0C;IAC1C,OAAO,EACH,gBAAgB,GAChB,SAAS,CAAC;IACd,mEAAmE;IACnE,QAAQ,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,CAAC;IAC3C,+EAA+E;IAC/E,sBAAsB,EAAE,qBAAqB,EAAE,CAAC;IAChD,qEAAqE;IACrE,iBAAiB,EAAE,MAAM,CAAC;CAC3B,CAAA;AAED,MAAM,MAAM,2BAA2B,GAAG;IACxC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,aAAa,GAAG,SAAS,CAAC;CAClC,CAAA;AAED,mDAAmD;AACnD,MAAM,MAAM,iBAAiB,GAAG;IAC9B,gDAAgD;IAChD,sBAAsB,EAAE,MAAM,CAAC;IAC/B,4FAA4F;IAC5F,eAAe,EAAE,MAAM,CAAC;IACxB,sDAAsD;IACtD,YAAY,EACR,YAAY,GACZ,SAAS,CAAC;IACd;;;;OAIG;IACH,kBAAkB,EAAE,gBAAgB,GAAG,SAAS,CAAC;CAClD,CAAA;AAED,sEAAsE;AACtE,MAAM,MAAM,WAAW,GAAG;IACxB,2CAA2C;IAC3C,iBAAiB,EAAE,MAAM,CAAC;IAC1B,yCAAyC;IACzC,OAAO,EACH,gBAAgB,GAChB,SAAS,CAAC;IACd,+DAA+D;IAC/D,QAAQ,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,CAAC;IAC3C,iEAAiE;IACjE,QAAQ,EAAE,MAAM,CAAC;IACjB,4DAA4D;IAC5D,aAAa,EAAE,MAAM,CAAC;IACtB,0DAA0D;IAC1D,SAAS,EAAE,MAAM,CAAC;IAClB,kDAAkD;IAClD,YAAY,EAAE,YAAY,GAAG,SAAS,CAAC;CACxC,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG;IACtC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,aAAa,GAAG,SAAS,CAAC;CAClC,CAAA;AAED,sIAAsI;AACtI,MAAM,MAAM,mBAAmB,GAAG;IAChC,iEAAiE;IACjE,QAAQ,EAAE,MAAM,CAAC;IACjB,4DAA4D;IAC5D,aAAa,EAAE,MAAM,CAAC;CACvB,CAAA;AAED,0GAA0G;AAC1G,MAAM,MAAM,gCAAgC,GAAG;IAC7C,iEAAiE;IACjE,QAAQ,EAAE,MAAM,CAAC;IACjB,4DAA4D;IAC5D,aAAa,EAAE,MAAM,CAAC;IACtB,0DAA0D;IAC1D,SAAS,EAAE,MAAM,CAAC;IAClB,wDAAwD;IACxD,YAAY,EAAE,YAAY,GAAG,SAAS,CAAC;CACxC,CAAA;AAED,wEAAwE;AACxE,MAAM,MAAM,wBAAwB,GAAG;IACrC,yDAAyD;IACzD,SAAS,CAAC,EACN,iBAAiB,GACjB,SAAS,CAAC;IACd,0EAA0E;IAC1E,WAAW,CAAC,EACR,iBAAiB,GACjB,SAAS,CAAC;IACd;;;;;;;OAOG;IACH,gBAAgB,CAAC,EACb,iBAAiB,GACjB,SAAS,CAAC;IACd;;;OAGG;IACH,WAAW,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;CAC7C,CAAA;AAED,6DAA6D;AAC7D,MAAM,MAAM,yBAAyB,GAAG;IACtC,6CAA6C;IAC7C,iBAAiB,EAAE,MAAM,CAAC;IAC1B,sEAAsE;IACtE,sBAAsB,EAAE,MAAM,CAAC;IAC/B,mCAAmC;IACnC,aAAa,CAAC,EACV,aAAa,GACb,SAAS,CAAC;IACd,kCAAkC;IAClC,MAAM,CAAC,EACH,WAAW,GACX,SAAS,CAAC;IACd,wEAAwE;IACxE,QAAQ,CAAC,EACL,mBAAmB,GACnB,SAAS,CAAC;IACd,iFAAiF;IACjF,qBAAqB,CAAC,EAAE,gCAAgC,GAAG,SAAS,CAAC;CACtE,CAAA;AAED,qFAAqF;AACrF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,4CAA4C;IAC5C,SAAS,EAAE,MAAM,CAAC;IAClB,yDAAyD;IACzD,KAAK,EAAE,MAAM,CAAC;IACd,+CAA+C;IAC/C,UAAU,EAAE,MAAM,CAAC;IACnB,6DAA6D;IAC7D,aAAa,EAAE,MAAM,CAAC;IACtB,gFAAgF;IAChF,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAA;AAeD,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,qBAAqB,CAyMnE,CAAC;AAaF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,oBAAoB,CAiKjE,CAAC;AAMF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,cAAc,CA0DrD,CAAC;AAMF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,aAAa,CA8EnD,CAAC;AAMF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,gBAAgB,CA+EzD,CAAC;AAgBF,eAAO,MAAM,YAAY,EAAE,UAAU,CAAC,YAAY,CAmPjD,CAAC;AAMF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,0BAA0B,CAwE7E,CAAC;AAcF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,aAAa,CAgNnD,CAAC;AAMF,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,2BAA2B,CAwE/E,CAAC;AAMF,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,iBAAiB,CA6H3D,CAAC;AAcF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,WAAW,CA+M/C,CAAC;AAMF,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,yBAAyB,CAwE3E,CAAC;AAMF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,CA8E/D,CAAC;AAMF,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,gCAAgC,CAwHzF,CAAC;AAMF,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,CAsHzE,CAAC;AAaF,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,yBAAyB,CA+J3E,CAAC;AAMF,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,iBAAiB,CAsI3D,CAAC;AAEF,mFAAmF;AACnF,MAAM,MAAM,sBAAsB,GAAG,OAAO,sBAAsB,CAAC;AACnE,eAAO,MAAM,sBAAsB;aACjC,IAAI,EAAE,cAAc;aACpB,QAAQ,EAAE,8CAA8C;aACxD,OAAO;QACL,2DAA2D;iBAC3D,UAAU;qBACR,IAAI,EAAE,YAAY;qBAClB,WAAW,EAA2B,OAAO,qBAAqB;qBAClE,aAAa;qBACb,YAAY,EAA0B,OAAO,oBAAoB;qBACjE,cAAc;qBACd,OAAO;;QAET,qDAAqD;iBACrD,KAAK;qBACH,IAAI,EAAE,OAAO;qBACb,WAAW,EAAkB,OAAO,YAAY;qBAChD,aAAa;qBACb,YAAY,EAAmB,OAAO,aAAa;qBACnD,cAAc;qBACd,OAAO;;QAET,iCAAiC;iBACjC,YAAY;qBACV,IAAI,EAAE,cAAc;qBACpB,WAAW,EAA8B,OAAO,wBAAwB;qBACxE,aAAa;qBACb,YAAY,EAA+B,OAAO,yBAAyB;qBAC3E,cAAc;qBACd,OAAO;;;CAGH,CAAC;AAEX,MAAM,MAAM,0BAA0B,CAAC,cAAc,GAAG,EAAE,IAAI;IAC5D,2DAA2D;IAC3D,UAAU,CACR,OAAO,EAAE,aAAa,CAAC,qBAAqB,CAAC,EAC7C,OAAO,EAAE,WAAW,GAAG,cAAc,GACpC,2BAA2B,CAAC,WAAW,CAAC,oBAAoB,CAAC,CAAC,CAAC;IAClE,qDAAqD;IACrD,KAAK,CACH,OAAO,EAAE,YAAY,EACrB,OAAO,EAAE,WAAW,GAAG,cAAc,GACpC,2BAA2B,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC;IAC3D,iCAAiC;IACjC,YAAY,CACV,OAAO,EAAE,aAAa,CAAC,wBAAwB,CAAC,EAChD,OAAO,EAAE,WAAW,GAAG,cAAc,GACpC,2BAA2B,CAAC,WAAW,CAAC,yBAAyB,CAAC,CAAC,CAAC;CACxE,CAAA;AAED,MAAM,MAAM,kBAAkB,CAAC,cAAc,GAAG,EAAE,IAAI;IACpD,2DAA2D;IAC3D,UAAU,CACR,OAAO,EAAE,aAAa,CAAC,WAAW,CAAC,qBAAqB,CAAC,CAAC,EAC1D,OAAO,CAAC,EAAE,WAAW,GAAG,cAAc,GACrC,aAAa,CAAC,oBAAoB,CAAC,CAAC;IACvC,qDAAqD;IACrD,KAAK,CAAC,OAAO,EAAE,WAAW,CAAC,YAAY,CAAC,EAAE,OAAO,CAAC,EAAE,WAAW,GAAG,cAAc,GAAG,aAAa,CAAC,aAAa,CAAC,CAAC;IAChH,iCAAiC;IACjC,YAAY,CACV,OAAO,EAAE,aAAa,CAAC,WAAW,CAAC,wBAAwB,CAAC,CAAC,EAC7D,OAAO,CAAC,EAAE,WAAW,GAAG,cAAc,GACrC,aAAa,CAAC,yBAAyB,CAAC,CAAC;CAC7C,CAAA;AAED,KAAK,OAAO,GAAG,IAAI,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAC;AAE7F,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,GAAG,CAAC,GAC9C,CAAC,SAAS,UAAU,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,GAAG,UAAU,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,GACtE,CAAC,SAAS,aAAa,CAAC,MAAM,CAAC,CAAC,GAAG,aAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,GAChE,CAAC,SAAS,EAAE,GAAG;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GACrD,OAAO,CAAC,CAAC,CAAC,CAAC;AAUf,MAAM,MAAM,2BAA2B,CAAC,QAAQ,IAAI;IAAE,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,aAAa,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;CAAE,CAAC;AAEhH,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI;IAC1B,MAAM,CAAC,OAAO,EAAE,CAAC,EAAE,MAAM,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC;IACxD,MAAM,CAAC,KAAK,EAAE,YAAY,GAAG,UAAU,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC;IAC7D,QAAQ,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC;IACzB,MAAM,CAAC,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC;IAC5B,MAAM,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IACjC,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;CACxC,CAAA"}
|