@capitalos/react 1.6.0 → 1.8.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/index.d.mts +328 -52
- package/dist/index.d.mts.map +1 -0
- package/dist/index.d.ts +328 -52
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +18 -7
- package/dist/_tsup-dts-rollup.d.mts +0 -1733
- package/dist/_tsup-dts-rollup.d.ts +0 -1733
- package/dist/esm/index.js +0 -11
- package/dist/esm/index.js.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,52 +1,328 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import React, { ReactNode } from "react";
|
|
4
|
+
import * as z$1 from "zod";
|
|
5
|
+
import { z } from "zod";
|
|
6
|
+
import "schemas";
|
|
7
|
+
import "utils";
|
|
8
|
+
|
|
9
|
+
//#region ../../client/common/rendering-context-schema.d.ts
|
|
10
|
+
declare const issueCardDefaultValuesSchema: z.ZodUnion<[z.ZodObject<{
|
|
11
|
+
firstName: z.ZodString;
|
|
12
|
+
lastName: z.ZodString;
|
|
13
|
+
phone: z.ZodString;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
firstName: string;
|
|
16
|
+
lastName: string;
|
|
17
|
+
phone: string;
|
|
18
|
+
}, {
|
|
19
|
+
firstName: string;
|
|
20
|
+
lastName: string;
|
|
21
|
+
phone: string;
|
|
22
|
+
}>, z.ZodObject<{
|
|
23
|
+
userId: z.ZodString;
|
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
userId: string;
|
|
26
|
+
}, {
|
|
27
|
+
userId: string;
|
|
28
|
+
}>]>;
|
|
29
|
+
type IssueCardDefaultValues = z.infer<typeof issueCardDefaultValuesSchema>;
|
|
30
|
+
|
|
31
|
+
//#endregion
|
|
32
|
+
//#region ../../server/src/core/common.schema.d.ts
|
|
33
|
+
|
|
34
|
+
declare const accountStatusSchema: z$1.ZodEnum<["eligible", "ineligible", "engaged", "onboarding", "approved", "processing", "pending", "declined", "closed", "waiting"]>;
|
|
35
|
+
type AccountStatus = z$1.infer<typeof accountStatusSchema>; //#endregion
|
|
36
|
+
//#region src/types.d.ts
|
|
37
|
+
type ThemeColorScheme = 'light' | 'dark' | 'system';
|
|
38
|
+
declare const LogLevel: {
|
|
39
|
+
readonly log: "log";
|
|
40
|
+
readonly warn: "warn";
|
|
41
|
+
readonly error: "error";
|
|
42
|
+
};
|
|
43
|
+
type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
44
|
+
type Logger = {
|
|
45
|
+
[LogLevel.log]: (message: string) => void;
|
|
46
|
+
[LogLevel.warn]: (message: string) => void;
|
|
47
|
+
[LogLevel.error]: (message: string) => void;
|
|
48
|
+
};
|
|
49
|
+
type CommonProps = {
|
|
50
|
+
token?: string;
|
|
51
|
+
className?: string;
|
|
52
|
+
enableLogging?: boolean;
|
|
53
|
+
logger?: Logger;
|
|
54
|
+
onError?: (error: Error) => void;
|
|
55
|
+
loadingComponent?: ReactNode;
|
|
56
|
+
theme?: ThemeColorScheme;
|
|
57
|
+
};
|
|
58
|
+
type Account = {
|
|
59
|
+
status: AccountStatus;
|
|
60
|
+
};
|
|
61
|
+
type Card = {
|
|
62
|
+
status: 'active' | 'inactive' | 'canceled' | 'frozen';
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
//#endregion
|
|
66
|
+
//#region src/iframe-connection/types.d.ts
|
|
67
|
+
|
|
68
|
+
type ClientActionResult<T> = {
|
|
69
|
+
success: true;
|
|
70
|
+
canceled: false;
|
|
71
|
+
data: T;
|
|
72
|
+
} | {
|
|
73
|
+
success: false;
|
|
74
|
+
canceled: true;
|
|
75
|
+
} | {
|
|
76
|
+
success: false;
|
|
77
|
+
canceled: false;
|
|
78
|
+
error: string;
|
|
79
|
+
};
|
|
80
|
+
type ChildFunctions = {
|
|
81
|
+
freezeCard: (cardId: string) => Promise<ClientActionResult<Card>>;
|
|
82
|
+
unfreezeCard: (cardId: string) => Promise<ClientActionResult<Card>>;
|
|
83
|
+
}; //#endregion
|
|
84
|
+
//#region src/context/capital-os-authentication-context.d.ts
|
|
85
|
+
|
|
86
|
+
//# sourceMappingURL=types.d.ts.map
|
|
87
|
+
type ProviderProps = {
|
|
88
|
+
getToken: () => Promise<string>;
|
|
89
|
+
enableLogging?: boolean | undefined;
|
|
90
|
+
logger?: Logger | undefined;
|
|
91
|
+
children: React.ReactNode;
|
|
92
|
+
};
|
|
93
|
+
declare const CapitalOsAuthenticationProvider: React.FC<ProviderProps>;
|
|
94
|
+
|
|
95
|
+
//#endregion
|
|
96
|
+
//#region src/dev-tools.d.ts
|
|
97
|
+
type DevToolsProps = CommonProps;
|
|
98
|
+
declare function DevTools(props: DevToolsProps): JSX.Element;
|
|
99
|
+
|
|
100
|
+
//#endregion
|
|
101
|
+
//#region src/index.d.ts
|
|
102
|
+
//# sourceMappingURL=dev-tools.d.ts.map
|
|
103
|
+
declare function CardsApp(props: CommonProps): JSX.Element;
|
|
104
|
+
declare const App: typeof CardsApp;
|
|
105
|
+
type IssueCardResult = {
|
|
106
|
+
cardId: string;
|
|
107
|
+
};
|
|
108
|
+
type IssueCardProps = CommonProps & {
|
|
109
|
+
cardholder?: IssueCardDefaultValues;
|
|
110
|
+
onCreate?: (result: IssueCardResult) => void;
|
|
111
|
+
onDone: (result: IssueCardResult) => void;
|
|
112
|
+
onCancel: () => void;
|
|
113
|
+
};
|
|
114
|
+
declare function IssueCard({
|
|
115
|
+
cardholder,
|
|
116
|
+
onCreate,
|
|
117
|
+
onDone,
|
|
118
|
+
onCancel,
|
|
119
|
+
...restOfProps
|
|
120
|
+
}: IssueCardProps): JSX.Element;
|
|
121
|
+
type DisputeTransactionProps = CommonProps & {
|
|
122
|
+
transactionId: string;
|
|
123
|
+
onDone: () => void;
|
|
124
|
+
onCancel: () => void;
|
|
125
|
+
};
|
|
126
|
+
declare function DisputeTransaction({
|
|
127
|
+
transactionId,
|
|
128
|
+
onDone,
|
|
129
|
+
onCancel,
|
|
130
|
+
...restOfProps
|
|
131
|
+
}: DisputeTransactionProps): JSX.Element;
|
|
132
|
+
type BillPayAppProps = CommonProps;
|
|
133
|
+
declare function BillPayApp(props: BillPayAppProps): JSX.Element;
|
|
134
|
+
type CardDetailsConditionalProps = {
|
|
135
|
+
cardOnly?: false;
|
|
136
|
+
backOnly?: never;
|
|
137
|
+
} | {
|
|
138
|
+
cardOnly: true;
|
|
139
|
+
backOnly?: boolean;
|
|
140
|
+
};
|
|
141
|
+
type CardDetailsProps = CommonProps & {
|
|
142
|
+
cardId: string;
|
|
143
|
+
hideAddress?: boolean | undefined;
|
|
144
|
+
onCardCanceled?: () => void;
|
|
145
|
+
onHideSensitiveDetails?: () => void;
|
|
146
|
+
} & CardDetailsConditionalProps;
|
|
147
|
+
declare function CardDetails(props: CardDetailsProps): JSX.Element;
|
|
148
|
+
type AccountDetailsProps = CommonProps;
|
|
149
|
+
declare function AccountDetails(props: AccountDetailsProps): JSX.Element;
|
|
150
|
+
type AccountActionsProps = CommonProps;
|
|
151
|
+
declare function AccountActions(props: AccountActionsProps): JSX.Element;
|
|
152
|
+
type ManageBankConnectionsExternalAccount = {
|
|
153
|
+
id: string;
|
|
154
|
+
name: string;
|
|
155
|
+
last4: string;
|
|
156
|
+
status: 'enabled' | 'revoked' | 'disabled';
|
|
157
|
+
type: string;
|
|
158
|
+
};
|
|
159
|
+
type ManageBankConnectionsSummary = {
|
|
160
|
+
id: string;
|
|
161
|
+
bankName: string;
|
|
162
|
+
provider: 'fake' | 'plaid' | 'manual' | 'stripeTreasury' | 'treasuryPrime' | 'platformManagedBaas';
|
|
163
|
+
status: 'healthy' | 'actionRequired' | 'temporarilyUnavailable' | 'disabled';
|
|
164
|
+
externalAccounts: ManageBankConnectionsExternalAccount[];
|
|
165
|
+
};
|
|
166
|
+
type ManageBankConnectionsResult = {
|
|
167
|
+
bankConnections: ManageBankConnectionsSummary[];
|
|
168
|
+
};
|
|
169
|
+
type ManageBankConnectionsProps = CommonProps & {
|
|
170
|
+
onClose: () => void;
|
|
171
|
+
onChange?: (result: ManageBankConnectionsResult) => void;
|
|
172
|
+
hideTopLevelBackButton?: boolean;
|
|
173
|
+
hideTopLevelHeader?: boolean;
|
|
174
|
+
};
|
|
175
|
+
declare function ManageBankConnections({
|
|
176
|
+
onClose,
|
|
177
|
+
onChange,
|
|
178
|
+
hideTopLevelBackButton,
|
|
179
|
+
hideTopLevelHeader,
|
|
180
|
+
...restOfProps
|
|
181
|
+
}: ManageBankConnectionsProps): JSX.Element;
|
|
182
|
+
type ConfigureAutoPayProps = CommonProps & {
|
|
183
|
+
onClose: () => void;
|
|
184
|
+
};
|
|
185
|
+
declare function ConfigureAutoPay({
|
|
186
|
+
onClose,
|
|
187
|
+
...restOfProps
|
|
188
|
+
}: ConfigureAutoPayProps): JSX.Element;
|
|
189
|
+
type PolicySettingsProps = CommonProps & {
|
|
190
|
+
onClose: () => void;
|
|
191
|
+
};
|
|
192
|
+
declare function PolicySettings({
|
|
193
|
+
onClose,
|
|
194
|
+
...restOfProps
|
|
195
|
+
}: PolicySettingsProps): JSX.Element;
|
|
196
|
+
type ConnectToVendorsProps = CommonProps & {
|
|
197
|
+
cardId?: string;
|
|
198
|
+
onClose: () => void;
|
|
199
|
+
inlineCardOnFile?: boolean;
|
|
200
|
+
};
|
|
201
|
+
declare function ConnectToVendors({
|
|
202
|
+
cardId,
|
|
203
|
+
onClose,
|
|
204
|
+
inlineCardOnFile,
|
|
205
|
+
...restOfProps
|
|
206
|
+
}: ConnectToVendorsProps): JSX.Element;
|
|
207
|
+
type ApplicationStatus = 'ineligible' | 'eligible' | 'preapproved';
|
|
208
|
+
type BankAccount = {
|
|
209
|
+
id: string;
|
|
210
|
+
bankName: string;
|
|
211
|
+
accountName: string;
|
|
212
|
+
accountNumberMask: string;
|
|
213
|
+
accountNumber: string;
|
|
214
|
+
routingNumber: string;
|
|
215
|
+
type: string;
|
|
216
|
+
status: 'enabled' | 'disabled';
|
|
217
|
+
};
|
|
218
|
+
type ConnectBankAccountsResult = {
|
|
219
|
+
accounts: BankAccount[];
|
|
220
|
+
applicationStatus: ApplicationStatus;
|
|
221
|
+
};
|
|
222
|
+
type ConnectBankAccountsProps = CommonProps & {
|
|
223
|
+
onClose: () => void;
|
|
224
|
+
onDone: (result: ConnectBankAccountsResult) => void;
|
|
225
|
+
};
|
|
226
|
+
declare function ConnectBankAccounts({
|
|
227
|
+
onClose,
|
|
228
|
+
onDone,
|
|
229
|
+
...restOfProps
|
|
230
|
+
}: ConnectBankAccountsProps): JSX.Element;
|
|
231
|
+
type InsightsDashboardProps = CommonProps;
|
|
232
|
+
declare function InsightsDashboard(props: InsightsDashboardProps): JSX.Element;
|
|
233
|
+
type InsightsWidgetProps = CommonProps & {
|
|
234
|
+
widget: 'over-time-spend-by-card-per-month' | 'over-time-spend-by-category-per-month' | 'top-cards-by-spend-this-month' | 'top-categories-by-spend-this-month' | 'top-transactions-by-amount-this-month' | 'comparison-spend-this-month-vs-last-month';
|
|
235
|
+
hideTitle?: boolean | undefined;
|
|
236
|
+
height?: number | undefined;
|
|
237
|
+
width?: number | undefined;
|
|
238
|
+
};
|
|
239
|
+
declare function InsightsWidget(props: InsightsWidgetProps): JSX.Element;
|
|
240
|
+
type AllowedExitPoints = {
|
|
241
|
+
welcome: 'application' | 'activation';
|
|
242
|
+
application: 'application' | 'activation';
|
|
243
|
+
};
|
|
244
|
+
type OnboardingEntryPoint = keyof AllowedExitPoints;
|
|
245
|
+
type OnboardingProps<T extends keyof AllowedExitPoints> = CommonProps & {
|
|
246
|
+
entryPoint?: T;
|
|
247
|
+
exitPoint?: AllowedExitPoints[T];
|
|
248
|
+
allowExitOnNonApproved?: boolean | undefined;
|
|
249
|
+
doneButtonText?: string | undefined;
|
|
250
|
+
product?: 'billPay' | 'card' | undefined;
|
|
251
|
+
onDone: (account: Account) => void;
|
|
252
|
+
};
|
|
253
|
+
declare function Onboarding<T extends OnboardingEntryPoint>({
|
|
254
|
+
onDone,
|
|
255
|
+
entryPoint: onboardingEntryPoint,
|
|
256
|
+
exitPoint: onboardingExitPoint,
|
|
257
|
+
allowExitOnNonApproved,
|
|
258
|
+
doneButtonText,
|
|
259
|
+
product,
|
|
260
|
+
...restOfProps
|
|
261
|
+
}: OnboardingProps<T>): JSX.Element;
|
|
262
|
+
type MakePaymentProps = CommonProps & {
|
|
263
|
+
onDone: () => void;
|
|
264
|
+
};
|
|
265
|
+
declare function MakePayment({
|
|
266
|
+
onDone,
|
|
267
|
+
...restOfProps
|
|
268
|
+
}: MakePaymentProps): JSX.Element;
|
|
269
|
+
type ContactSupportProps = CommonProps & {
|
|
270
|
+
onDone: () => void;
|
|
271
|
+
onCancel: () => void;
|
|
272
|
+
};
|
|
273
|
+
declare function ContactSupport({
|
|
274
|
+
onDone,
|
|
275
|
+
onCancel,
|
|
276
|
+
...restOfProps
|
|
277
|
+
}: ContactSupportProps): JSX.Element;
|
|
278
|
+
type StatementsProps = CommonProps & {
|
|
279
|
+
onDone: () => void;
|
|
280
|
+
};
|
|
281
|
+
declare function Statements({
|
|
282
|
+
onDone,
|
|
283
|
+
...restOfProps
|
|
284
|
+
}: StatementsProps): JSX.Element;
|
|
285
|
+
type LegalDocumentsProps = CommonProps & {
|
|
286
|
+
onDone: () => void;
|
|
287
|
+
};
|
|
288
|
+
declare function LegalDocuments({
|
|
289
|
+
onDone,
|
|
290
|
+
...restOfProps
|
|
291
|
+
}: LegalDocumentsProps): JSX.Element;
|
|
292
|
+
type ReplaceCardProps = CommonProps & {
|
|
293
|
+
cardId: string;
|
|
294
|
+
onDone: (result: {
|
|
295
|
+
oldCardId: string;
|
|
296
|
+
newCardId: string;
|
|
297
|
+
}) => void;
|
|
298
|
+
onClose: () => void;
|
|
299
|
+
};
|
|
300
|
+
declare function ReplaceCard({
|
|
301
|
+
cardId,
|
|
302
|
+
onDone,
|
|
303
|
+
onClose,
|
|
304
|
+
...restOfProps
|
|
305
|
+
}: ReplaceCardProps): JSX.Element;
|
|
306
|
+
type TerminateCardProps = CommonProps & {
|
|
307
|
+
cardId: string;
|
|
308
|
+
onDone: () => void;
|
|
309
|
+
onClose: () => void;
|
|
310
|
+
};
|
|
311
|
+
declare function TerminateCard({
|
|
312
|
+
cardId,
|
|
313
|
+
onDone,
|
|
314
|
+
onClose,
|
|
315
|
+
...restOfProps
|
|
316
|
+
}: TerminateCardProps): JSX.Element;
|
|
317
|
+
type TransactionsProps = CommonProps;
|
|
318
|
+
declare function Transactions(props: TransactionsProps): JSX.Element;
|
|
319
|
+
declare function useActions(): {
|
|
320
|
+
actions: ChildFunctions | null;
|
|
321
|
+
isLoading: boolean;
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
//#endregion
|
|
325
|
+
//# sourceMappingURL=index.d.ts.map
|
|
326
|
+
|
|
327
|
+
export { Account, AccountActions, AccountActionsProps, AccountDetails, AccountDetailsProps, App, ApplicationStatus, BankAccount, BillPayApp, BillPayAppProps, CapitalOsAuthenticationProvider, CardDetails, CardDetailsProps, CardsApp, ConfigureAutoPay, ConfigureAutoPayProps, ConnectBankAccounts, ConnectBankAccountsProps, ConnectBankAccountsResult, ConnectToVendors, ConnectToVendorsProps, ContactSupport, ContactSupportProps, DevTools, DisputeTransaction, DisputeTransactionProps, InsightsDashboard, InsightsDashboardProps, InsightsWidget, InsightsWidgetProps, IssueCard, IssueCardProps, IssueCardResult, LegalDocuments, LegalDocumentsProps, LogLevel, Logger, MakePayment, MakePaymentProps, ManageBankConnections, ManageBankConnectionsExternalAccount, ManageBankConnectionsProps, ManageBankConnectionsResult, ManageBankConnectionsSummary, Onboarding, PolicySettings, PolicySettingsProps, ReplaceCard, ReplaceCardProps, Statements, StatementsProps, TerminateCard, TerminateCardProps, ThemeColorScheme, Transactions, TransactionsProps, useActions };
|
|
328
|
+
//# sourceMappingURL=index.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../../../client/common/rendering-context-schema.ts","../../../server/src/core/common.schema.ts","../src/types.ts","../src/iframe-connection/types.ts","../src/context/capital-os-authentication-context.tsx","../src/dev-tools.tsx","../src/index.tsx"],"sourcesContent":null,"mappings":";;;;;;;;;cAEM,8BAA4B,CAAA,CAAA,UAAA,CAAA,CAAA;aAOhC,CAAA,CAAA;;;;;;EAPI,KAAA,EAAA,MAAA;CAOJ,EAAA;EAAA,SAAA,EAAA,MAAA;;;;QAPgC,EAAA,CAAA,CAAA,SAAA;CAAA,EAAA,OAAA,cAAA,EAAA;;;QAAA,EAAA,MAAA;AAAA,CAAA,CAAA,CAAA,CAAA;AAStB,KAAA,sBAAA,GAAyB,CAAA,CAAE,KAAL,CAAA,OAAkB,4BAAlB,CAAA;;;;;AMuLH,cL7HlB,mBK6HkB,EL7HC,GAAA,CAAA,OK6HD,CAAA,CAAA,UAAA,EAAA,YAAA,EAAA,SAAA,EAAA,YAAA,EAAA,UAAA,EAAA,YAAA,EAAA,SAAA,EAAA,UAAA,EAAA,QAAA,EAAA,SAAA,CAAA,CAAA;AAKf,KLtHJ,aAAA,GAAgB,GAAA,CAAE,KKsHH,CAAA,OLtHgB,mBKsHhB,CAAA,CAAA;;KJjMf,gBAAA;cAEN;;;EFNA,SAAA,KAAA,EAAA,OAAA;CAOJ;AAAA,KEIU,QAAA,GFJV,CAAA,OEI6B,QFJ7B,CAAA,CAAA,MAAA,OEIoD,QFJpD,CAAA;KEUU,MAAA;GACT,QAAA,CAAS,GAAA;GACT,QAAA,CAAS,IAAA;GACT,QAAA,CAAS,KAAA,CFpBsB,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,GAAA,IAAA;CAAA;KEuBtB,WAAA;;WFvBsB,CAAA,EAAA,MAAA;EAAA,aAAA,CAAA,EAAA,OAAA;EAStB,MAAA,CAAA,EEgCD,MFhCC;EAAsB,OAAA,CAAA,EAAA,CAAA,KAAA,EEqCd,KFrCc,EAAA,GAAA,IAAA;EAAA,gBAAkB,CAAA,EE0C/B,SF1C+B;EAA4B,KAAzC,CAAA,EE+C7B,gBF/C6B;AAAK,CAAA;KEkDhC,OAAA;UACF;;ADOG,KCJD,IAAA,GDIC;EAYD,MAAA,EAAA,QAAa,GAAA,UAAA,GAAA,UAAA,GAAA,QAAA;CAAA;;;;;AKKyB,KH2EtC,kBG3EsC,CAAA,CAAA,CAAA,GAAA;EAAM,OAAE,EAAA,IAAA;EAAQ,QAAoB,EAAA,KAAA;EAAc,IAAA,EH4ExD,CG5EwD;AAAA,CAAA,GAAA;EAqBxF,OAAA,EAAA,KAAA;EAoBI,QAAA,EAAA,IAAA;CAAkB,GAAA;EAAA,OAAG,EAAA,KAAA;EAAa,QAAE,EAAA,KAAA;EAAM,KAAE,EAAA,MAAA;CAAQ;AAA2C,KHuCnG,cAAA,GGvCmG;EAAA,UAAA,EAAA,CAAA,MAAA,EAAA,MAAA,EAAA,GHwC7E,OGxC6E,CHwCrE,kBGxCqE,CHwClD,IGxCkD,CAAA,CAAA;EAWnG,YAAA,EAAA,CAAA,MAAe,EAAA,MAAG,EAAA,GH8BM,OG9BK,CH8BG,kBG9BH,CH8BsB,IG9BtB,CAAA,CAAA;AAKzC,CAAA,CAAA;;;;KF7GK,aAAA,GJzBH;kBI0BgB;;WAEP;UJnCuB,EIoCtB,KAAA,CAAM,SJpCgB;CAAA;cI8CrB,iCAAiC,KAAA,CAAM,GAAG;;;;KC7B3C,aAAA,GAAgB;iBAMZ,QAAA,QAAgB,gBAAa,GAAA,CAAA;;;;;iBCT7B,QAAA,QAAgB,cAAW,GAAA,CAAA;cAUrC,YAAG;KAQG,eAAA;ENhCN,MAAA,EAAA,MAAA;CAOJ;AAAA,KMgCU,cAAA,GAAiB,WNhC3B,GAAA;eMsCa;sBAgBO;mBAYH;UNzEe,EAAA,GAAA,GAAA,IAAA;CAAA;iBMoFlB,SAAA;;;;;;GAAsE,iBAAc,GAAA,CAAA;KAqBxF,uBAAA,GAA0B;eNzGJ,EAAA,MAAA;EAAA,MAAA,EAAA,GAAA,GAAA,IAAA;EAStB,QAAA,EAAA,GAAA,GAAA,IAAA;CAAsB;AAAkB,iBMoHpC,kBAAA,CNpHoC;EAAA,aAAA;EAAA,MAAA;EAAA,QAAA;EAAA,GAAA;AAAA,CAAA,EMoHoC,uBNpHpC,CAAA,EMoH2D,GAAA,CAAA,ONpH3D;AAAf,KM+HzB,eAAA,GAAkB,WN/HS;AAAK,iBMoI5B,UAAA,CNpI4B,KAAA,EMoIV,eNpIU,CAAA,EMoIK,GAAA,CAAA,ONpIL;KM8IvC,2BAAA;;;ALpFL,CAAA,GAAa;EAYD,QAAA,EAAA,IAAA;EAAa,QAAA,CAAA,EAAA,OAAA;CAAA;AAAG,KKgGhB,gBAAA,GAAmB,WLhGD,GAAA;EAAK,MAAA,EAAA,MAAA;;;;AC3EnC,CAAA,GI4LI,2BJ5LwB;AAEtB,iBI+LU,WAAA,CJ3LN,KAAA,EI2LyB,gBJ3LzB,CAAA,EI2LyC,GAAA,CAAA,OJ3LzC;AACE,KIwNA,mBAAA,GAAsB,WJxNd;AAAA,iBI6NJ,cAAA,CJ7NI,KAAA,EI6NkB,mBJ7NlB,CAAA,EI6NqC,GAAA,CAAA,OJ7NrC;AAAW,KIsOnB,mBAAA,GAAsB,WJtOH;AAAuB,iBI2OtC,cAAA,CJ3OsC,KAAA,EI2OhB,mBJ3OgB,CAAA,EI2OG,GAAA,CAAA,OJ3OH;AAAQ,KIuPlD,oCAAA,GJvPkD;EAMlD,EAAA,EAAA,MAAM;EAAA,IAAA,EAAA,MAAA;EAAA,KACf,EAAA,MAAS;EAAG,MACZ,EAAA,SAAS,GAAA,SAAA,GAAA,UAAA;EAAI,IACb,EAAA,MAAS;AAAK,CAAA;AAGL,KIqQA,4BAAA,GJrQW;EAAA,EAAA,EAAA,MAAA;EAAA,QAkBZ,EAAA,MAAA;EAAM,QAKG,EAAA,MAAA,GAAA,OAAA,GAAA,QAAA,GAAA,gBAAA,GAAA,eAAA,GAAA,qBAAA;EAAK,MAKJ,EAAA,SAAA,GAAA,gBAAA,GAAA,wBAAA,GAAA,UAAA;EAAS,gBAKpB,EI4PU,oCJ5PV,EAAA;AAAgB,CAAA;AAGd,KI+PA,2BAAA,GJ9PW;EAGX,eAAI,EI+PG,4BJ/PH,EAAA;;KIkQJ,0BAAA,GAA6B;;EHlK7B,QAAA,CAAA,EAAA,CAAA,MAAA,EGoLU,2BHnLuB,EAAA,GAAA,IAAA;EAIjC,sBAAc,CAAA,EAAA,OAAA;EAAA,kBAAA,CAAA,EAAA,OAAA;CAAA;AACgB,iBG6L1B,qBAAA,CH7L0B;EAAA,OAAA;EAAA,QAAA;EAAA,sBAAA;EAAA,kBAAA;EAAA,GAAA;AAAA,CAAA,EGmMvC,0BHnMuC,CAAA,EGmMb,GAAA,CAAA,OHnMa;AAAR,KGqNtB,qBAAA,GAAwB,WHrNF,GAAA;EAAO,OACsB,EAAA,GAAA,GAAA,IAAA;CAAI;AAA/B,iBG8NpB,gBAAA,CH9NoB;EAAA,OAAA;EAAA,GAAA;AAAA,CAAA,EG8N0B,qBH9N1B,CAAA,EG8N+C,GAAA,CAAA,OH9N/C;AAAO,KGuO/B,mBAAA,GAAsB,WHvOS,GAAA;;;iBGiP3B,cAAA;;;GAA4C,sBAAmB,GAAA,CAAA;AFvX1E,KEgYO,qBAAA,GAAwB,WFhYlB,GAAA;EAAA,MAAA,CAAA,EAAA,MAAA;EAAA,OACA,EAAA,GAAA,GAAA,IAAA;EAAO,gBAEd,CAAA,EAAA,OAAA;CAAM;AACU,iBE+YX,gBAAA,CF/YW;EAAA,MAAA;EAAA,OAAA;EAAA,gBAAA;EAAA,GAAA;AAAA,CAAA,EE+Y6D,qBF/Y7D,CAAA,EE+YkF,GAAA,CAAA,OF/YlF;AAUd,KEuZD,iBAAA,GFvZC,YA6FZ,GAAA,UAAA,GAAA,aAAA;AAAA,KEgUW,WAAA,GFhUX;EAAA,EAAA,EA7FsD,MAAA;EAAa,QAAtB,EAAM,MAAA;EAAE,WAAA,EAAA,MAAA;;;;EC7B1C,IAAA,EAAA,MAAA;EAMI,MAAA,EAAA,SAAQ,GAAA,UAAA;CAAA;AAAQ,KCudpB,yBAAA,GDvdoB;EAAa,QAAA,EC2djC,WD3diC,EAAA;EAAA,iBAAA,EC+dxB,iBD/dwB;;KCkejC,wBAAA,GAA2B;;EA3evB,MAAA,EAAA,CAAA,MAAQ,EAufL,yBAvfK,EAAA,GAAA,IAAA;CAAA;AAAQ,iBA+fhB,mBAAA,CA/fgB;EAAA,OAAA;EAAA,MAAA;EAAA,GAAA;AAAA,CAAA,EA+fyC,wBA/fzC,CAAA,EA+fiE,GAAA,CAAA,OA/fjE;AAAW,KA8gB/B,sBAAA,GAAyB,WA9gBM;AAAA,iBAmhB3B,iBAAA,CAnhB2B,KAAA,EAmhBF,sBAnhBE,CAAA,EAmhBoB,GAAA,CAAA,OAnhBpB;AAUrC,KAkhBM,mBAAA,GAAsB,WAlhBd,GAAA;EAQR,MAAA,EAAA,mCAAe,GAAA,uCAAA,GAAA,+BAAA,GAAA,oCAAA,GAAA,uCAAA,GAAA,2CAAA;EAOf,SAAA,CAAA,EAAA,OAAc,GAAA,SAAA;EAAA,MAAA,CAAA,EAAA,MAAA,GAAA,SAAA;EAAA,KAAG,CAAA,EAAA,MAAA,GAAA,SAAA;CAAW;AAsBlB,iBAghBN,cAAA,CAhhBM,KAAA,EAghBgB,mBAhhBhB,CAAA,EAghBmC,GAAA,CAAA,OAhhBnC;KA6hBjB,iBAAA,GAjhBc;EAAe,OAAA,EAAA,aAAA,GAAA,YAAA;EAWlB,WAAA,EAAS,aAAA,GAAA,YAAA;CAAA;KA2gBpB,oBAAA,GA3gBuB,MA2gBM,iBA3gBN;KA4gBvB,eA5gBmC,CAAA,UAAA,MA4gBH,iBA5gBG,CAAA,GA4gBkB,WA5gBlB,GAAA;EAAQ,UAAE,CAAA,EA6gBnC,CA7gBmC;EAAM,SAAE,CAAA,EA8gB5C,iBA9gB4C,CA8gB1B,CA9gB0B,CAAA;EAAQ,sBAAoB,CAAA,EAAA,OAAA,GAAA,SAAA;EAAc,cAAA,CAAA,EAAA,MAAA,GAAA,SAAA;EAAA,OAAA,CAAA,EAAA,SAAA,GAAA,MAAA,GAAA,SAAA;EAqBxF,MAAA,EAAA,CAAA,OAAA,EA4gBQ,OA5gBR,EAAuB,GAAA,IAAA;AAoBnC,CAAA;AAAkC,iBA2flB,UA3fkB,CAAA,UA2fG,oBA3fH,CAAA,CAAA;EAAA,MAAA;EAAA,UAAA,EA6fpB,oBA7foB;EAAA,SAAA,EA8frB,mBA9fqB;EAAA,sBAAA;EAAA,cAAA;EAAA,OAAA;EAAA,GAAA;AAAA,CAAA,EAmgB/B,eAngB+B,CAmgBf,CAngBe,CAAA,CAAA,EAmgBb,GAAA,CAAA,OAngBa;AAAG,KA8hBzB,gBAAA,GAAmB,WA9hBM,GAAA;EAAa,MAAE,EAAA,GAAA,GAAA,IAAA;CAAM;AAA8B,iBAwiBxE,WAAA,CAxiBwE;EAAA,MAAA;EAAA,GAAA;AAAA,CAAA,EAwiBhC,gBAxiBgC,CAAA,EAwiBhB,GAAA,CAAA,OAxiBgB;AAAuB,KAqjBnG,mBAAA,GAAsB,WArjB6E,GAAA;EAWnG,MAAA,EAAA,GAAA,GAAA,IAAe;EAKX,QAAA,EAAA,GAAU,GAAA,IAAA;CAAA;AAAQ,iBA0iBlB,cAAA,CA1iBkB;EAAA,MAAA;EAAA,QAAA;EAAA,GAAA;AAAA,CAAA,EA0iBmC,mBA1iBnC,CAAA,EA0iBsD,GAAA,CAAA,OA1iBtD;AAAe,KA0jBrC,eAAA,GAAkB,WA1jBmB,GAAA;EAAA,MAAA,EAAA,GAAA,GAAA,IAAA;AAKhD,CAAA;AA6BW,iBA4hBI,UAAA,CA5hBY;EAAA,MAAA;EAAA,GAAA;AAAA,CAAA,EA4hB2B,eA5hB3B,CAAA,EA4hB0C,GAAA,CAAA,OA5hB1C;AAAA,KAqiBhB,mBAAA,GAAsB,WAriBN,GAAA;EAAA,MAAG,EAAA,GAAA,GAAA,IAAA;CAAW;AAiBX,iBAwhBf,cAAA,CAxhBe;EAAA,MAAA;EAAA,GAAA;AAAA,CAAA,EAwhB4B,mBAxhB5B,CAAA,EAwhB+C,GAAA,CAAA,OAxhB/C;AAKf,KA4hBJ,gBAAA,GAAmB,WA5hBJ,GAAA;EAAA,MAAA,EAAA,MAAA;EAAA,MAAQ,EAAA,CAAA,MAAA,EAAA;IAAgB,SAAA,EAAA,MAAA;IAAA,SAAA,EAAA,MAAA;EA8BvC,CAAA,EAAA,GAAA,IAAA;EAKI,OAAA,EAAA,GAAA,GAAA,IAAc;CAAA;AAAQ,iBA+ftB,WAAA,CA/fsB;EAAA,MAAA;EAAA,MAAA;EAAA,OAAA;EAAA,GAAA;AAAA,CAAA,EA+fmC,gBA/fnC,CAAA,EA+fmD,GAAA,CAAA,OA/fnD;AAAmB,KA0gB7C,kBAAA,GAAqB,WA1gBwB,GAAA;EAAA,MAAA,EAAA,MAAA;EAS7C,MAAA,EAAA,GAAA,GAAA,IAAA;EAKI,OAAA,EAAA,GAAA,GAAA,IAAc;CAAA;AAAQ,iBAkgBtB,aAAA,CAlgBsB;EAAA,MAAA;EAAA,MAAA;EAAA,OAAA;EAAA,GAAA;AAAA,CAAA,EAkgBqC,kBAlgBrC,CAAA,EAkgBuD,GAAA,CAAA,OAlgBvD;AAAmB,KA6gB7C,iBAAA,GAAoB,WA7gByB;AAAA,iBAkhBzC,YAAA,CAlhByC,KAAA,EAkhBrB,iBAlhBqB,CAAA,EAkhBJ,GAAA,CAAA,OAlhBI;AAoE7C,iBA8eI,UAAA,CAAA,CA9euB,EAAA;EAO3B,OAAA,EAuec,cAAA,GAveY,IAAA;EAAA,SAAA,EAAA,OAAA;CAAA"}
|