@theway-ai/sdk 0.1.9
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/README.md +108 -0
- package/dist/client.d.ts +180 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +531 -0
- package/dist/client.js.map +1 -0
- package/dist/generated/commands.d.ts +195 -0
- package/dist/generated/commands.d.ts.map +1 -0
- package/dist/generated/commands.js +633 -0
- package/dist/generated/commands.js.map +1 -0
- package/dist/generated/events.d.ts +158 -0
- package/dist/generated/events.d.ts.map +1 -0
- package/dist/generated/events.js +1122 -0
- package/dist/generated/events.js.map +1 -0
- package/dist/generated/extensions.d.ts +184 -0
- package/dist/generated/extensions.d.ts.map +1 -0
- package/dist/generated/extensions.js +1309 -0
- package/dist/generated/extensions.js.map +1 -0
- package/dist/generated/graph_engine.d.ts +422 -0
- package/dist/generated/graph_engine.d.ts.map +1 -0
- package/dist/generated/graph_engine.js +3048 -0
- package/dist/generated/graph_engine.js.map +1 -0
- package/dist/generated/health.d.ts +83 -0
- package/dist/generated/health.d.ts.map +1 -0
- package/dist/generated/health.js +179 -0
- package/dist/generated/health.js.map +1 -0
- package/dist/generated/session.d.ts +854 -0
- package/dist/generated/session.d.ts.map +1 -0
- package/dist/generated/session.js +6790 -0
- package/dist/generated/session.js.map +1 -0
- package/dist/generated/settings.d.ts +182 -0
- package/dist/generated/settings.d.ts.map +1 -0
- package/dist/generated/settings.js +324 -0
- package/dist/generated/settings.js.map +1 -0
- package/dist/generated/state.d.ts +304 -0
- package/dist/generated/state.d.ts.map +1 -0
- package/dist/generated/state.js +1391 -0
- package/dist/generated/state.js.map +1 -0
- package/dist/generated/tools.d.ts +413 -0
- package/dist/generated/tools.d.ts.map +1 -0
- package/dist/generated/tools.js +2487 -0
- package/dist/generated/tools.js.map +1 -0
- package/dist/health.d.ts +20 -0
- package/dist/health.d.ts.map +1 -0
- package/dist/health.js +62 -0
- package/dist/health.js.map +1 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +21 -0
- package/dist/index.js.map +1 -0
- package/docs/PROTOCOL.md +129 -0
- package/package.json +47 -0
- package/proto/commands.proto +70 -0
- package/proto/events.proto +87 -0
- package/proto/extensions.proto +99 -0
- package/proto/graph_engine.proto +236 -0
- package/proto/health.proto +26 -0
- package/proto/session.proto +498 -0
- package/proto/settings.proto +79 -0
- package/proto/state.proto +130 -0
- package/proto/tools.proto +238 -0
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
|
+
import { type CallOptions, type ChannelCredentials, Client, type ClientOptions, type ClientUnaryCall, type handleUnaryCall, type Metadata, type ServiceError, type UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
3
|
+
export declare const protobufPackage = "theway.grpc.v1";
|
|
4
|
+
export declare enum MessageMode {
|
|
5
|
+
QUEUE = 0,
|
|
6
|
+
INTERRUPT = 1,
|
|
7
|
+
UNRECOGNIZED = -1
|
|
8
|
+
}
|
|
9
|
+
export declare function messageModeFromJSON(object: any): MessageMode;
|
|
10
|
+
export declare function messageModeToJSON(object: MessageMode): string;
|
|
11
|
+
/**
|
|
12
|
+
* Command result: `accepted` carries the same semantics as the existing
|
|
13
|
+
* `GET /prompt`-style endpoints (true = the command was queued into the event loop).
|
|
14
|
+
*/
|
|
15
|
+
export interface CommandResult {
|
|
16
|
+
accepted: boolean;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Empty request marker. Kept as a local message (instead of
|
|
20
|
+
* google/protobuf/empty.proto) so the build has no well-known-type include
|
|
21
|
+
* dependency and works with the pure-Rust proto compiler.
|
|
22
|
+
*/
|
|
23
|
+
export interface Empty {
|
|
24
|
+
}
|
|
25
|
+
export interface SendMessageRequest {
|
|
26
|
+
text: string;
|
|
27
|
+
images: Image[];
|
|
28
|
+
/** QUEUE (default): queue after the current turn; INTERRUPT: stop the current turn and run now */
|
|
29
|
+
mode: MessageMode;
|
|
30
|
+
/**
|
|
31
|
+
* Target session. Omitted = the process-current session for compatibility;
|
|
32
|
+
* clients should pass an explicit session_id when operating concurrently.
|
|
33
|
+
*/
|
|
34
|
+
sessionId?: string | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface Image {
|
|
37
|
+
data: string;
|
|
38
|
+
name?: string | undefined;
|
|
39
|
+
}
|
|
40
|
+
export interface SetModelRequest {
|
|
41
|
+
spec: string;
|
|
42
|
+
sessionId: string;
|
|
43
|
+
}
|
|
44
|
+
export interface SetThinkingRequest {
|
|
45
|
+
level: string;
|
|
46
|
+
sessionId: string;
|
|
47
|
+
}
|
|
48
|
+
export interface CancelRequest {
|
|
49
|
+
sessionId: string;
|
|
50
|
+
}
|
|
51
|
+
export interface ApproveRequest {
|
|
52
|
+
approve: boolean;
|
|
53
|
+
sessionId: string;
|
|
54
|
+
}
|
|
55
|
+
export declare const CommandResult: MessageFns<CommandResult>;
|
|
56
|
+
export declare const Empty: MessageFns<Empty>;
|
|
57
|
+
export declare const SendMessageRequest: MessageFns<SendMessageRequest>;
|
|
58
|
+
export declare const Image: MessageFns<Image>;
|
|
59
|
+
export declare const SetModelRequest: MessageFns<SetModelRequest>;
|
|
60
|
+
export declare const SetThinkingRequest: MessageFns<SetThinkingRequest>;
|
|
61
|
+
export declare const CancelRequest: MessageFns<CancelRequest>;
|
|
62
|
+
export declare const ApproveRequest: MessageFns<ApproveRequest>;
|
|
63
|
+
export type CommandServiceService = typeof CommandServiceService;
|
|
64
|
+
export declare const CommandServiceService: {
|
|
65
|
+
/**
|
|
66
|
+
* Submit a message. mode=QUEUE queues after the current turn (default);
|
|
67
|
+
* mode=INTERRUPT stops the current turn and runs the message immediately.
|
|
68
|
+
*/
|
|
69
|
+
readonly sendMessage: {
|
|
70
|
+
readonly path: "/theway.grpc.v1.CommandService/SendMessage";
|
|
71
|
+
readonly requestStream: false;
|
|
72
|
+
readonly responseStream: false;
|
|
73
|
+
readonly requestSerialize: (value: SendMessageRequest) => Buffer;
|
|
74
|
+
readonly requestDeserialize: (value: Buffer) => SendMessageRequest;
|
|
75
|
+
readonly responseSerialize: (value: CommandResult) => Buffer;
|
|
76
|
+
readonly responseDeserialize: (value: Buffer) => CommandResult;
|
|
77
|
+
};
|
|
78
|
+
readonly setModel: {
|
|
79
|
+
readonly path: "/theway.grpc.v1.CommandService/SetModel";
|
|
80
|
+
readonly requestStream: false;
|
|
81
|
+
readonly responseStream: false;
|
|
82
|
+
readonly requestSerialize: (value: SetModelRequest) => Buffer;
|
|
83
|
+
readonly requestDeserialize: (value: Buffer) => SetModelRequest;
|
|
84
|
+
readonly responseSerialize: (value: CommandResult) => Buffer;
|
|
85
|
+
readonly responseDeserialize: (value: Buffer) => CommandResult;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Set the active thinking level ("off" | "minimal" | "low" | "medium" |
|
|
89
|
+
* "high" | "xhigh"). Same runtime effect as the `/thinking` slash command.
|
|
90
|
+
*/
|
|
91
|
+
readonly setThinking: {
|
|
92
|
+
readonly path: "/theway.grpc.v1.CommandService/SetThinking";
|
|
93
|
+
readonly requestStream: false;
|
|
94
|
+
readonly responseStream: false;
|
|
95
|
+
readonly requestSerialize: (value: SetThinkingRequest) => Buffer;
|
|
96
|
+
readonly requestDeserialize: (value: Buffer) => SetThinkingRequest;
|
|
97
|
+
readonly responseSerialize: (value: CommandResult) => Buffer;
|
|
98
|
+
readonly responseDeserialize: (value: Buffer) => CommandResult;
|
|
99
|
+
};
|
|
100
|
+
/** Stop the in-flight turn (same as local Ctrl-C). Does not cancel DAG runs. */
|
|
101
|
+
readonly cancel: {
|
|
102
|
+
readonly path: "/theway.grpc.v1.CommandService/Cancel";
|
|
103
|
+
readonly requestStream: false;
|
|
104
|
+
readonly responseStream: false;
|
|
105
|
+
readonly requestSerialize: (value: CancelRequest) => Buffer;
|
|
106
|
+
readonly requestDeserialize: (value: Buffer) => CancelRequest;
|
|
107
|
+
readonly responseSerialize: (value: CommandResult) => Buffer;
|
|
108
|
+
readonly responseDeserialize: (value: Buffer) => CommandResult;
|
|
109
|
+
};
|
|
110
|
+
/** Resolve a pending control-plane approval request (approve / reject). */
|
|
111
|
+
readonly approve: {
|
|
112
|
+
readonly path: "/theway.grpc.v1.CommandService/Approve";
|
|
113
|
+
readonly requestStream: false;
|
|
114
|
+
readonly responseStream: false;
|
|
115
|
+
readonly requestSerialize: (value: ApproveRequest) => Buffer;
|
|
116
|
+
readonly requestDeserialize: (value: Buffer) => ApproveRequest;
|
|
117
|
+
readonly responseSerialize: (value: CommandResult) => Buffer;
|
|
118
|
+
readonly responseDeserialize: (value: Buffer) => CommandResult;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
export interface CommandServiceServer extends UntypedServiceImplementation {
|
|
122
|
+
/**
|
|
123
|
+
* Submit a message. mode=QUEUE queues after the current turn (default);
|
|
124
|
+
* mode=INTERRUPT stops the current turn and runs the message immediately.
|
|
125
|
+
*/
|
|
126
|
+
sendMessage: handleUnaryCall<SendMessageRequest, CommandResult>;
|
|
127
|
+
setModel: handleUnaryCall<SetModelRequest, CommandResult>;
|
|
128
|
+
/**
|
|
129
|
+
* Set the active thinking level ("off" | "minimal" | "low" | "medium" |
|
|
130
|
+
* "high" | "xhigh"). Same runtime effect as the `/thinking` slash command.
|
|
131
|
+
*/
|
|
132
|
+
setThinking: handleUnaryCall<SetThinkingRequest, CommandResult>;
|
|
133
|
+
/** Stop the in-flight turn (same as local Ctrl-C). Does not cancel DAG runs. */
|
|
134
|
+
cancel: handleUnaryCall<CancelRequest, CommandResult>;
|
|
135
|
+
/** Resolve a pending control-plane approval request (approve / reject). */
|
|
136
|
+
approve: handleUnaryCall<ApproveRequest, CommandResult>;
|
|
137
|
+
}
|
|
138
|
+
export interface CommandServiceClient extends Client {
|
|
139
|
+
/**
|
|
140
|
+
* Submit a message. mode=QUEUE queues after the current turn (default);
|
|
141
|
+
* mode=INTERRUPT stops the current turn and runs the message immediately.
|
|
142
|
+
*/
|
|
143
|
+
sendMessage(request: SendMessageRequest, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
144
|
+
sendMessage(request: SendMessageRequest, metadata: Metadata, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
145
|
+
sendMessage(request: SendMessageRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
146
|
+
setModel(request: SetModelRequest, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
147
|
+
setModel(request: SetModelRequest, metadata: Metadata, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
148
|
+
setModel(request: SetModelRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
149
|
+
/**
|
|
150
|
+
* Set the active thinking level ("off" | "minimal" | "low" | "medium" |
|
|
151
|
+
* "high" | "xhigh"). Same runtime effect as the `/thinking` slash command.
|
|
152
|
+
*/
|
|
153
|
+
setThinking(request: SetThinkingRequest, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
154
|
+
setThinking(request: SetThinkingRequest, metadata: Metadata, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
155
|
+
setThinking(request: SetThinkingRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
156
|
+
/** Stop the in-flight turn (same as local Ctrl-C). Does not cancel DAG runs. */
|
|
157
|
+
cancel(request: CancelRequest, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
158
|
+
cancel(request: CancelRequest, metadata: Metadata, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
159
|
+
cancel(request: CancelRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
160
|
+
/** Resolve a pending control-plane approval request (approve / reject). */
|
|
161
|
+
approve(request: ApproveRequest, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
162
|
+
approve(request: ApproveRequest, metadata: Metadata, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
163
|
+
approve(request: ApproveRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: CommandResult) => void): ClientUnaryCall;
|
|
164
|
+
}
|
|
165
|
+
export declare const CommandServiceClient: {
|
|
166
|
+
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): CommandServiceClient;
|
|
167
|
+
service: typeof CommandServiceService;
|
|
168
|
+
serviceName: string;
|
|
169
|
+
};
|
|
170
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
171
|
+
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 {
|
|
172
|
+
$case: string;
|
|
173
|
+
} ? {
|
|
174
|
+
[K in keyof Omit<T, "$case">]?: DeepPartial<T[K]>;
|
|
175
|
+
} & {
|
|
176
|
+
$case: T["$case"];
|
|
177
|
+
} : T extends {} ? {
|
|
178
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
179
|
+
} : Partial<T>;
|
|
180
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
181
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
182
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
183
|
+
} & {
|
|
184
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
185
|
+
};
|
|
186
|
+
export interface MessageFns<T> {
|
|
187
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
188
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
189
|
+
fromJSON(object: any): T;
|
|
190
|
+
toJSON(message: T): unknown;
|
|
191
|
+
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
|
|
192
|
+
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
193
|
+
}
|
|
194
|
+
export {};
|
|
195
|
+
//# sourceMappingURL=commands.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../../src/generated/commands.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,kBAAkB,EACvB,MAAM,EACN,KAAK,aAAa,EAClB,KAAK,eAAe,EACpB,KAAK,eAAe,EAEpB,KAAK,QAAQ,EACb,KAAK,YAAY,EACjB,KAAK,4BAA4B,EAClC,MAAM,eAAe,CAAC;AAEvB,eAAO,MAAM,eAAe,mBAAmB,CAAC;AAEhD,oBAAY,WAAW;IACrB,KAAK,IAAI;IACT,SAAS,IAAI;IACb,YAAY,KAAK;CAClB;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,GAAG,GAAG,WAAW,CAa5D;AAED,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CAU7D;AAED;;;GAGG;AACH,MAAM,WAAW,aAAa;IAC5B,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED;;;;GAIG;AACH,MAAM,WAAW,KAAK;CACrB;AAED,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,KAAK,EAAE,CAAC;IAChB,kGAAkG;IAClG,IAAI,EAAE,WAAW,CAAC;IAClB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAChC;AAED,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B;AAED,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;CACnB;AAMD,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,aAAa,CAoDnD,CAAC;AAMF,eAAO,MAAM,KAAK,EAAE,UAAU,CAAC,KAAK,CAqCnC,CAAC;AAMF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,kBAAkB,CA0G7D,CAAC;AAMF,eAAO,MAAM,KAAK,EAAE,UAAU,CAAC,KAAK,CAsEnC,CAAC;AAMF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAAe,CA0EvD,CAAC;AAMF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,kBAAkB,CA0E7D,CAAC;AAMF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,aAAa,CA0DnD,CAAC;AAMF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,cAAc,CA0ErD,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,OAAO,qBAAqB,CAAC;AACjE,eAAO,MAAM,qBAAqB;IAChC;;;OAGG;;;;;2CAKyB,kBAAkB,KAAG,MAAM;6CACzB,MAAM,KAAG,kBAAkB;4CAC5B,aAAa,KAAG,MAAM;8CACpB,MAAM,KAAG,aAAa;;;;;;2CAMzB,eAAe,KAAG,MAAM;6CACtB,MAAM,KAAG,eAAe;4CACzB,aAAa,KAAG,MAAM;8CACpB,MAAM,KAAG,aAAa;;IAErD;;;OAGG;;;;;2CAKyB,kBAAkB,KAAG,MAAM;6CACzB,MAAM,KAAG,kBAAkB;4CAC5B,aAAa,KAAG,MAAM;8CACpB,MAAM,KAAG,aAAa;;IAErD,gFAAgF;;;;;2CAKpD,aAAa,KAAG,MAAM;6CACpB,MAAM,KAAG,aAAa;4CACvB,aAAa,KAAG,MAAM;8CACpB,MAAM,KAAG,aAAa;;IAErD,2EAA2E;;;;;2CAK/C,cAAc,KAAG,MAAM;6CACrB,MAAM,KAAG,cAAc;4CACxB,aAAa,KAAG,MAAM;8CACpB,MAAM,KAAG,aAAa;;CAE7C,CAAC;AAEX,MAAM,WAAW,oBAAqB,SAAQ,4BAA4B;IACxE;;;OAGG;IACH,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,aAAa,CAAC,CAAC;IAChE,QAAQ,EAAE,eAAe,CAAC,eAAe,EAAE,aAAa,CAAC,CAAC;IAC1D;;;OAGG;IACH,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,aAAa,CAAC,CAAC;IAChE,gFAAgF;IAChF,MAAM,EAAE,eAAe,CAAC,aAAa,EAAE,aAAa,CAAC,CAAC;IACtD,2EAA2E;IAC3E,OAAO,EAAE,eAAe,CAAC,cAAc,EAAE,aAAa,CAAC,CAAC;CACzD;AAED,MAAM,WAAW,oBAAqB,SAAQ,MAAM;IAClD;;;OAGG;IACH,WAAW,CACT,OAAO,EAAE,kBAAkB,EAC3B,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,WAAW,CACT,OAAO,EAAE,kBAAkB,EAC3B,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,WAAW,CACT,OAAO,EAAE,kBAAkB,EAC3B,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,CAAC,WAAW,CAAC,EAC7B,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,QAAQ,CACN,OAAO,EAAE,eAAe,EACxB,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,QAAQ,CACN,OAAO,EAAE,eAAe,EACxB,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,QAAQ,CACN,OAAO,EAAE,eAAe,EACxB,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,CAAC,WAAW,CAAC,EAC7B,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB;;;OAGG;IACH,WAAW,CACT,OAAO,EAAE,kBAAkB,EAC3B,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,WAAW,CACT,OAAO,EAAE,kBAAkB,EAC3B,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,WAAW,CACT,OAAO,EAAE,kBAAkB,EAC3B,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,CAAC,WAAW,CAAC,EAC7B,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,gFAAgF;IAChF,MAAM,CACJ,OAAO,EAAE,aAAa,EACtB,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,MAAM,CACJ,OAAO,EAAE,aAAa,EACtB,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,MAAM,CACJ,OAAO,EAAE,aAAa,EACtB,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,CAAC,WAAW,CAAC,EAC7B,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,2EAA2E;IAC3E,OAAO,CACL,OAAO,EAAE,cAAc,EACvB,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,OAAO,CACL,OAAO,EAAE,cAAc,EACvB,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;IACnB,OAAO,CACL,OAAO,EAAE,cAAc,EACvB,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,CAAC,WAAW,CAAC,EAC7B,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI,EAAE,QAAQ,EAAE,aAAa,KAAK,IAAI,GACtE,eAAe,CAAC;CACpB;AAED,eAAO,MAAM,oBAAoB,EAGjB;IACd,KAAK,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,kBAAkB,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,oBAAoB,CAAC;IAC/G,OAAO,EAAE,OAAO,qBAAqB,CAAC;IACtC,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,KAAK,OAAO,GAAG,IAAI,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;AAEpF,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;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG;KAAG,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GAAG;IAAE,KAAK,EAAE,CAAC,CAAC,OAAO,CAAC,CAAA;CAAE,GAC3G,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;AAEf,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,MAAM,CAAC,GAAG,KAAK,CAAC;AACpD,MAAM,MAAM,KAAK,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,OAAO,GAAG,CAAC,GACrD,CAAC,GAAG;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GAAG;KAAG,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK;CAAE,CAAC;AAMnG,MAAM,WAAW,UAAU,CAAC,CAAC;IAC3B,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,CAAC,SAAS,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IACxD,WAAW,CAAC,CAAC,SAAS,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;CAC/D"}
|