@mcp-b/char 0.1.3 → 0.1.4
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 +11 -13
- package/dist/custom-elements.json +491 -141
- package/dist/display-mode-policy.d.ts.map +1 -1
- package/dist/index.d.ts +89 -114
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +699 -281
- package/dist/index.js.map +1 -1
- package/dist/shell-component.d.ts +79 -86
- package/dist/shell-component.d.ts.map +1 -1
- package/dist/shell-component.js +689 -281
- package/dist/shell-component.js.map +1 -1
- package/dist/shell-standalone.iife.js +689 -281
- package/dist/shell-standalone.iife.js.map +1 -1
- package/dist/utils.d.ts +0 -13
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +1 -2
- package/dist/utils.js.map +1 -1
- package/dist/web-component-standalone.iife.js +25 -89
- package/dist/web-component-standalone.iife.js.map +1 -1
- package/dist/web-component.d.ts +20 -83
- package/dist/web-component.d.ts.map +1 -1
- package/dist/web-component.js +25 -89
- package/dist/web-component.js.map +1 -1
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"display-mode-policy.d.ts","names":[],"sources":["../src/types.ts","../src/display-mode-policy.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"display-mode-policy.d.ts","names":[],"sources":["../src/types.ts","../src/display-mode-policy.ts"],"mappings":";;;;AC6DA;;;KDjCY,eAAA;;;;;;;;;;ACfZ;cAAa,+BAAA;;;;AA2Bb;;;;;iBAAgB,aAAA,CACf,KAAA,8BACE,KAAA,IAAS,eAAA;;;;AAmBZ;;;;;AAiBA;;;;;;;iBAjBgB,qBAAA,CAAsB,IAAA,EAAM,eAAA;;;;;;;;AAiD5C;;;;;;iBAhCgB,2BAAA,CACf,SAAA,EAAW,eAAA,EACX,cAAA,YAAyB,eAAA,KACvB,eAAA;;;;;;;;;;;;;;;;;iBA6Ba,wBAAA,CAAyB,OAAA;EACxC,IAAA;EACA,gBAAA;EACA,cAAA,YAA0B,eAAA;AAAA,IACvB,eAAA"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,52 +1,20 @@
|
|
|
1
1
|
|
|
2
2
|
//#region src/types.d.ts
|
|
3
|
-
/**
|
|
4
|
-
* Server-issued ticket auth payload.
|
|
5
|
-
* Used for SSR-friendly authentication flows.
|
|
6
|
-
*
|
|
7
|
-
* @public
|
|
8
|
-
*/
|
|
9
|
-
interface TicketAuth {
|
|
10
|
-
/** Short-lived server-issued ticket used to start an authenticated session. */
|
|
11
|
-
ticket: string;
|
|
12
|
-
/** End-user identifier associated with the issued ticket. */
|
|
13
|
-
userId: string;
|
|
14
|
-
/** Organization identifier used to scope the authenticated session. */
|
|
15
|
-
orgId: string;
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* Development-only embed controls used by local host integrations.
|
|
19
|
-
*
|
|
20
|
-
* @public
|
|
21
|
-
*/
|
|
22
|
-
interface DevModeConfig {
|
|
23
|
-
anthropicApiKey?: string;
|
|
24
|
-
openaiApiKey?: string;
|
|
25
|
-
useLocalApi?: boolean;
|
|
26
|
-
}
|
|
27
3
|
/**
|
|
28
4
|
* Connection options for the imperative connect() method.
|
|
29
5
|
*
|
|
30
|
-
*
|
|
31
|
-
* - `
|
|
32
|
-
* - `
|
|
33
|
-
*
|
|
34
|
-
* Exactly one strategy must be provided. The discriminated union prevents
|
|
35
|
-
* combining `idToken` and `ticketAuth` at the type level.
|
|
6
|
+
* Publishable-key auth:
|
|
7
|
+
* - `publishableKey` is required and identifies the organization
|
|
8
|
+
* - `idToken` is optional and enables per-user identity
|
|
36
9
|
*
|
|
37
10
|
* @public
|
|
38
11
|
*/
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
/** Pre-fetched ticket for SSR-friendly authentication. */ticketAuth: TicketAuth; /** Must not be provided when using `ticketAuth` authentication. */
|
|
46
|
-
idToken?: never; /** Must not be provided when using `ticketAuth` authentication. */
|
|
47
|
-
clientId?: never; /** Must not be provided when using `ticketAuth` authentication. */
|
|
48
|
-
organizationId?: never;
|
|
49
|
-
};
|
|
12
|
+
interface ConnectOptions {
|
|
13
|
+
/** Publishable key for org identification. */
|
|
14
|
+
publishableKey: string;
|
|
15
|
+
/** Optional IDP token for per-user identity. */
|
|
16
|
+
idToken?: string;
|
|
17
|
+
}
|
|
50
18
|
/**
|
|
51
19
|
* Host visual theme hint.
|
|
52
20
|
*
|
|
@@ -106,17 +74,6 @@ interface CharSafeAreaInsets {
|
|
|
106
74
|
bottom?: number;
|
|
107
75
|
left?: number;
|
|
108
76
|
}
|
|
109
|
-
/**
|
|
110
|
-
* Host shell capability flags advertised to the iframe runtime.
|
|
111
|
-
*
|
|
112
|
-
* @public
|
|
113
|
-
*/
|
|
114
|
-
interface CharHostCapabilities {
|
|
115
|
-
supportedDisplayModes?: CharDisplayMode[];
|
|
116
|
-
supportsOpenLink?: boolean;
|
|
117
|
-
supportsTeardown?: boolean;
|
|
118
|
-
maxContainerWidth?: number;
|
|
119
|
-
}
|
|
120
77
|
/**
|
|
121
78
|
* Host context payload sent from the embedding page to the iframe runtime.
|
|
122
79
|
*
|
|
@@ -133,8 +90,6 @@ interface CharHostContext {
|
|
|
133
90
|
platform?: CharPlatform;
|
|
134
91
|
deviceCapabilities?: CharDeviceCapabilities;
|
|
135
92
|
safeAreaInsets?: CharSafeAreaInsets;
|
|
136
|
-
userAgent?: string;
|
|
137
|
-
hostCapabilities?: CharHostCapabilities;
|
|
138
93
|
}
|
|
139
94
|
/**
|
|
140
95
|
* Payload for the `char-size-changed` event.
|
|
@@ -189,10 +144,10 @@ interface CharOpenLinkDetail {
|
|
|
189
144
|
declare class CharAgentElement extends HTMLElement {
|
|
190
145
|
static observedAttributes: string[];
|
|
191
146
|
/**
|
|
192
|
-
*
|
|
193
|
-
*
|
|
147
|
+
* Publishable key for org identification.
|
|
148
|
+
* Set via `publishable-key` attribute or JS property.
|
|
194
149
|
*/
|
|
195
|
-
|
|
150
|
+
publishableKey?: string;
|
|
196
151
|
/**
|
|
197
152
|
* React 19-friendly property form of `api-base`.
|
|
198
153
|
* Read once during `connectedCallback`.
|
|
@@ -276,7 +231,7 @@ declare class CharAgentElement extends HTMLElement {
|
|
|
276
231
|
/**
|
|
277
232
|
* Reacts to observed attribute updates after iframe readiness.
|
|
278
233
|
* Attributes that affect iframe boot configuration are intentionally ignored
|
|
279
|
-
* after mount (`
|
|
234
|
+
* after mount (`enable-debug-tools`, `api-base`).
|
|
280
235
|
*/
|
|
281
236
|
attributeChangedCallback(name: string, _oldValue: string | null, newValue: string | null): void;
|
|
282
237
|
/**
|
|
@@ -285,7 +240,7 @@ declare class CharAgentElement extends HTMLElement {
|
|
|
285
240
|
* The token is stored as a JavaScript property (not as a DOM attribute),
|
|
286
241
|
* preventing exposure to DOM inspection and session replay tools.
|
|
287
242
|
*
|
|
288
|
-
* @param options - Authentication payload
|
|
243
|
+
* @param options - Authentication payload.
|
|
289
244
|
* @returns `true` when the payload is accepted; `false` when validation fails.
|
|
290
245
|
*/
|
|
291
246
|
connect(options: ConnectOptions): boolean;
|
|
@@ -299,7 +254,7 @@ declare class CharAgentElement extends HTMLElement {
|
|
|
299
254
|
setAuth(options: ConnectOptions | null): boolean;
|
|
300
255
|
/**
|
|
301
256
|
* Disconnect from the Char agent.
|
|
302
|
-
* Clears the
|
|
257
|
+
* Clears pending auth state and posts a disconnect message to the iframe.
|
|
303
258
|
*
|
|
304
259
|
* @returns `true` when the disconnect message was sent; `false` when the iframe was not ready.
|
|
305
260
|
*/
|
|
@@ -369,12 +324,6 @@ declare class CharAgentElement extends HTMLElement {
|
|
|
369
324
|
* Observe host element dimensions to provide containerDimensions context.
|
|
370
325
|
*/
|
|
371
326
|
private _observeContainerDimensions;
|
|
372
|
-
/**
|
|
373
|
-
* Resolve devMode from property (React 19) or attribute.
|
|
374
|
-
*
|
|
375
|
-
* @returns Parsed dev-mode configuration when valid.
|
|
376
|
-
*/
|
|
377
|
-
private _resolveDevMode;
|
|
378
327
|
/**
|
|
379
328
|
* Resolve apiBase override from property (React 19) or attribute.
|
|
380
329
|
*
|
|
@@ -388,18 +337,6 @@ declare class CharAgentElement extends HTMLElement {
|
|
|
388
337
|
*
|
|
389
338
|
* @public
|
|
390
339
|
*/
|
|
391
|
-
/**
|
|
392
|
-
* Legacy alias for `CharAgentElement`.
|
|
393
|
-
*
|
|
394
|
-
* @public
|
|
395
|
-
*/
|
|
396
|
-
type CharElement = CharAgentElement;
|
|
397
|
-
/**
|
|
398
|
-
* Backward-compatible alias for `CharAgentElement`.
|
|
399
|
-
*
|
|
400
|
-
* @public
|
|
401
|
-
*/
|
|
402
|
-
type WebMCPAgentElement = CharAgentElement;
|
|
403
340
|
/**
|
|
404
341
|
* Register the <char-agent> custom element.
|
|
405
342
|
* Called automatically when importing this module.
|
|
@@ -416,8 +353,8 @@ declare global {
|
|
|
416
353
|
namespace JSX {
|
|
417
354
|
interface IntrinsicElements {
|
|
418
355
|
'char-agent': {
|
|
419
|
-
/**
|
|
420
|
-
|
|
356
|
+
/** Publishable key for org identification. */'publishable-key'?: string; /** Property form of publishable key. */
|
|
357
|
+
publishableKey?: string; /** Explicit API base override, e.g. `https://staging-app.usechar.ai`. */
|
|
421
358
|
'api-base'?: string; /** Property form of API base override. */
|
|
422
359
|
apiBase?: string; /** Enable debug tools for inspecting embedded agent internal state. */
|
|
423
360
|
'enable-debug-tools'?: boolean; /** Display mode for host orchestration: `pip` is collapsed launcher mode. */
|
|
@@ -433,8 +370,8 @@ declare module 'react/jsx-runtime' {
|
|
|
433
370
|
namespace JSX {
|
|
434
371
|
interface IntrinsicElements {
|
|
435
372
|
'char-agent': {
|
|
436
|
-
'
|
|
437
|
-
|
|
373
|
+
'publishable-key'?: string;
|
|
374
|
+
publishableKey?: string;
|
|
438
375
|
'api-base'?: string;
|
|
439
376
|
apiBase?: string;
|
|
440
377
|
'enable-debug-tools'?: boolean;
|
|
@@ -479,18 +416,26 @@ interface CharShellOpenChangeDetail {
|
|
|
479
416
|
*/
|
|
480
417
|
declare class CharAgentShellElement extends HTMLElement {
|
|
481
418
|
static observedAttributes: string[];
|
|
482
|
-
devMode?: DevModeConfig;
|
|
483
419
|
apiBase?: string;
|
|
484
420
|
private _agent;
|
|
485
421
|
private _open;
|
|
486
|
-
private
|
|
487
|
-
private
|
|
488
|
-
private
|
|
489
|
-
private
|
|
490
|
-
private
|
|
422
|
+
private _savedBodyTransition;
|
|
423
|
+
private _bodyMarginTimeoutId;
|
|
424
|
+
private _currentPanelWidth;
|
|
425
|
+
private _resizeNubElement;
|
|
426
|
+
private _edgeTabElement;
|
|
427
|
+
private _resizeDragging;
|
|
428
|
+
private _resizeDragOverlay;
|
|
429
|
+
private _resizeStartX;
|
|
430
|
+
private _resizeStartWidth;
|
|
431
|
+
private _edgeTabDragStartX;
|
|
432
|
+
private _edgeTabDragging;
|
|
491
433
|
private _isNarrowViewport;
|
|
492
434
|
private _mediaQuery;
|
|
493
435
|
private _mediaQueryHandler;
|
|
436
|
+
private _themeObserver;
|
|
437
|
+
private _themeMediaQuery;
|
|
438
|
+
private _themeMediaHandler;
|
|
494
439
|
private _pendingConnectOptions;
|
|
495
440
|
private _pendingHostContext;
|
|
496
441
|
private _isApplyingOpenAttribute;
|
|
@@ -508,6 +453,7 @@ declare class CharAgentShellElement extends HTMLElement {
|
|
|
508
453
|
private _pipAnimationTimeoutId;
|
|
509
454
|
private _pendingPipMeasuredHeight;
|
|
510
455
|
private _tapOutsideListener;
|
|
456
|
+
private _lastAppliedDisplayMode;
|
|
511
457
|
private _pipHiddenByScroll;
|
|
512
458
|
private _scrollListener;
|
|
513
459
|
private _scrollRafId;
|
|
@@ -523,23 +469,13 @@ declare class CharAgentShellElement extends HTMLElement {
|
|
|
523
469
|
private _wheelDelta;
|
|
524
470
|
get open(): boolean;
|
|
525
471
|
set open(value: boolean);
|
|
526
|
-
get fullscreenBreakpoint(): number;
|
|
527
|
-
set fullscreenBreakpoint(value: number);
|
|
528
|
-
get panelWidth(): number;
|
|
529
|
-
set panelWidth(value: number);
|
|
530
|
-
get pipWidth(): number;
|
|
531
|
-
set pipWidth(value: number);
|
|
532
|
-
get pipHeight(): number;
|
|
533
|
-
set pipHeight(value: number);
|
|
534
|
-
get pipPosition(): CharPipPosition;
|
|
535
|
-
set pipPosition(value: CharPipPosition);
|
|
536
472
|
connectedCallback(): void;
|
|
537
473
|
disconnectedCallback(): void;
|
|
538
474
|
attributeChangedCallback(name: string, _oldValue: string | null, newValue: string | null): void;
|
|
539
475
|
/**
|
|
540
476
|
* Connects shell authentication and starts availability health checks.
|
|
541
477
|
*
|
|
542
|
-
* @param options - Authentication payload
|
|
478
|
+
* @param options - Authentication payload (`publishableKey` + optional `idToken`).
|
|
543
479
|
* @returns `true` when connect is accepted by the inner element.
|
|
544
480
|
*/
|
|
545
481
|
connect(options: ConnectOptions): boolean;
|
|
@@ -584,7 +520,60 @@ declare class CharAgentShellElement extends HTMLElement {
|
|
|
584
520
|
private _setupViewportObserver;
|
|
585
521
|
private _teardownViewportObserver;
|
|
586
522
|
private _applyDisplayModeAndLayout;
|
|
523
|
+
private _isParentFlex;
|
|
524
|
+
private _isDarkMode;
|
|
525
|
+
/**
|
|
526
|
+
* Read a `--char-color-*` variable from the shell element. If the host
|
|
527
|
+
* page has set it (directly or via inheritance) use that value; otherwise
|
|
528
|
+
* fall back to the char design-system default for the current light/dark mode.
|
|
529
|
+
*/
|
|
530
|
+
private _resolveColor;
|
|
531
|
+
private _panelBorder;
|
|
532
|
+
private _setupThemeObserver;
|
|
533
|
+
private _teardownThemeObserver;
|
|
587
534
|
private _applyHostLayout;
|
|
535
|
+
private _applyBodyMargin;
|
|
536
|
+
private _removeBodyMargin;
|
|
537
|
+
private _ensureResizeNub;
|
|
538
|
+
private _applyResizeNubColors;
|
|
539
|
+
private _refreshResizeNubColors;
|
|
540
|
+
private _showResizeNub;
|
|
541
|
+
private _hideResizeNub;
|
|
542
|
+
private _ensureEdgeTab;
|
|
543
|
+
/** Apply visual style (colors, shadow) based on open state — no position change. */
|
|
544
|
+
private _applyEdgeTabVisual;
|
|
545
|
+
/** Set the tab's `right` position immediately (no transition). */
|
|
546
|
+
private _positionEdgeTab;
|
|
547
|
+
private _showEdgeTab;
|
|
548
|
+
private _hideEdgeTab;
|
|
549
|
+
private _removeEdgeTab;
|
|
550
|
+
private _onEdgeTabMouseDown;
|
|
551
|
+
private _onEdgeTabTouchStart;
|
|
552
|
+
private _onEdgeTabMouseMove;
|
|
553
|
+
private _onEdgeTabTouchMove;
|
|
554
|
+
private _onEdgeTabMouseUp;
|
|
555
|
+
private _onEdgeTabTouchEnd;
|
|
556
|
+
/**
|
|
557
|
+
* Once the edge tab drag crosses the threshold, hand off to the existing
|
|
558
|
+
* resize machinery so the panel tracks the pointer smoothly.
|
|
559
|
+
*/
|
|
560
|
+
private _promoteEdgeTabDragToResize;
|
|
561
|
+
/**
|
|
562
|
+
* Run a rAF loop that reads the shell element's actual rendered width
|
|
563
|
+
* and pins the edge tab to it. Used during flex layout transitions so
|
|
564
|
+
* the tab tracks the animated flex-basis exactly, frame by frame.
|
|
565
|
+
*/
|
|
566
|
+
private _syncEdgeTabWithPanelTransition;
|
|
567
|
+
private _showResizeDragOverlay;
|
|
568
|
+
private _removeResizeDragOverlay;
|
|
569
|
+
private _onResizeStart;
|
|
570
|
+
private _onResizeTouchStart;
|
|
571
|
+
private _onResizeMove;
|
|
572
|
+
private _onResizeTouchMove;
|
|
573
|
+
private _applyResizeWidth;
|
|
574
|
+
private _onResizeEnd;
|
|
575
|
+
private _onResizeTouchEnd;
|
|
576
|
+
private _finishResize;
|
|
588
577
|
private _composePipTransform;
|
|
589
578
|
private _applyAgentLayout;
|
|
590
579
|
private _ensurePipPill;
|
|
@@ -647,13 +636,6 @@ declare global {
|
|
|
647
636
|
interface IntrinsicElements {
|
|
648
637
|
'char-agent-shell': {
|
|
649
638
|
open?: boolean;
|
|
650
|
-
'fullscreen-breakpoint'?: number;
|
|
651
|
-
'panel-width'?: number;
|
|
652
|
-
'pip-position'?: CharPipPosition;
|
|
653
|
-
'pip-width'?: number;
|
|
654
|
-
'pip-height'?: number;
|
|
655
|
-
'dev-mode'?: string;
|
|
656
|
-
devMode?: DevModeConfig;
|
|
657
639
|
'api-base'?: string;
|
|
658
640
|
apiBase?: string;
|
|
659
641
|
'enable-debug-tools'?: boolean;
|
|
@@ -668,13 +650,6 @@ declare module 'react/jsx-runtime' {
|
|
|
668
650
|
interface IntrinsicElements {
|
|
669
651
|
'char-agent-shell': {
|
|
670
652
|
open?: boolean;
|
|
671
|
-
'fullscreen-breakpoint'?: number;
|
|
672
|
-
'panel-width'?: number;
|
|
673
|
-
'pip-position'?: CharPipPosition;
|
|
674
|
-
'pip-width'?: number;
|
|
675
|
-
'pip-height'?: number;
|
|
676
|
-
'dev-mode'?: string;
|
|
677
|
-
devMode?: DevModeConfig;
|
|
678
653
|
'api-base'?: string;
|
|
679
654
|
apiBase?: string;
|
|
680
655
|
'enable-debug-tools'?: boolean;
|
|
@@ -756,5 +731,5 @@ declare function resolvePolicyDisplayMode(options: {
|
|
|
756
731
|
availableModes?: readonly CharDisplayMode[];
|
|
757
732
|
}): CharDisplayMode;
|
|
758
733
|
//#endregion
|
|
759
|
-
export { type CharAgentElement, type CharAgentShellElement, type CharContainerDimensions, type CharDeviceCapabilities, type CharDisplayMode, type
|
|
734
|
+
export { type CharAgentElement, type CharAgentShellElement, type CharContainerDimensions, type CharDeviceCapabilities, type CharDisplayMode, type CharErrorDetail, type CharHostContext, type CharHostStyles, type CharOpenLinkDetail, type CharPipPosition, type CharPlatform, type CharRequestDisplayModeDetail, type CharSafeAreaInsets, type CharShellOpenChangeDetail, type CharSizeChangedDetail, type CharTheme, type ConnectOptions, DEFAULT_AVAILABLE_DISPLAY_MODES, isDisplayMode, isExpandedDisplayMode, registerChar, registerCharShell, resolvePolicyDisplayMode, resolveSupportedDisplayMode };
|
|
760
735
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/types.ts","../src/web-component.tsx","../src/shell-component.ts","../src/display-mode-policy.ts"],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/types.ts","../src/web-component.tsx","../src/shell-component.ts","../src/display-mode-policy.ts"],"mappings":";;;AASA;;;;;AAYA;;;UAZiB,cAAA;EAYI;EAVpB,cAAA;EAiB0B;EAf1B,OAAA;AAAA;;AAsBD;;;;KAdY,SAAA;AAqBZ;;;;;AAAA,KAdY,eAAA;;;;AAwBZ;;KAjBY,YAAA;;;;;;UAOK,cAAA;EAChB,SAAA,GAAY,MAAA;EACZ,KAAA;AAAA;;;;;;UAQgB,uBAAA;EAChB,KAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;AAAA;;;;;;UAQgB,sBAAA;EAChB,KAAA;EACA,KAAA;EACA,WAAA;AAAA;;;;;;UAQgB,kBAAA;EAChB,GAAA;EACA,KAAA;EACA,MAAA;EACA,IAAA;AAAA;;;;;;UAQgB,eAAA;EAChB,KAAA,GAAQ,SAAA;EACR,MAAA,GAAS,cAAA;EACT,WAAA,GAAc,eAAA;EACd,qBAAA,GAAwB,eAAA;EACxB,mBAAA,GAAsB,uBAAA;EACtB,MAAA;EACA,QAAA;EACA,QAAA,GAAW,YAAA;EACX,kBAAA,GAAqB,sBAAA;EACrB,cAAA,GAAiB,kBAAA;AAAA;;AAQlB;;;;UAAiB,qBAAA;EAChB,KAAA;EACA,MAAA;EACA,WAAA,GAAc,eAAA;AAAA;;AAQf;;;;UAAiB,4BAAA;EAChB,IAAA,GAAO,eAAA;AAAA;;;;AAkBR;;UAViB,eAAA;EAChB,IAAA;EACA,OAAA;AAAA;;;;;;UAQgB,kBAAA;EAChB,SAAA;EACA,GAAA;EACA,EAAA;AAAA;;;;;;;AA1ED;;;;;;;cC+LM,gBAAA,SAAyB,WAAA;EAAA,OACvB,kBAAA;EDrLS;;;;ECgMR,cAAA;ED9LR;;;;ECoMQ,OAAA;ED1LQ;EAAA,QC6LR,OAAA;;UAEA,MAAA;ED7LC;EAAA,QC+LD,YAAA;ED7LgB;EAAA,QC+LhB,gBAAA;ED3LG;EAAA,QC6LH,iBAAA;ED3LS;EAAA,QC6LT,mBAAA;ED7L2B;EAAA,QC+L3B,qBAAA;EDxMA;EAAA,QC0MA,cAAA;EDzMC;EAAA,QC2MD,wBAAA;ED1MM;EAAA,QC4MN,gBAAA;ED3MgB;EAAA,QC+MhB,iBAAA;ED9Mc;EAAA,QCgNd,gBAAA;ED9MR;EAAA,QCiNQ,YAAA;EDhNG;EAAA,QCmNH,YAAA;EDlNa;;;;EC2NrB,iBAAA,CAAA;EDlNgB;;;EAAA,QC+PR,iBAAA;ED9PR;;;;;EAAA,QCuQQ,oBAAA;ED7PQ;;;EAAA,QCwQR,aAAA;EDvQc;AAQvB;;EARuB,QCoRd,sBAAA;ED3QR;;AASD;EATC,QC4RQ,oBAAA;;;;UAmEA,cAAA;EDnVR;;;EAAA,QC0VQ,wBAAA;;;AArXO;UA4XP,cAAA;;;;EAQR,oBAAA,CAAA;EApP8B;;;EAAA,QAgRtB,mBAAA;EA/QD;;;;;EAqUP,wBAAA,CAAyB,IAAA,UAAc,SAAA,iBAA0B,QAAA;EA3SzD;;;;;;;;;EA4UR,OAAA,CAAQ,OAAA,EAAS,cAAA;EApTT;;;;;;;EAiVR,OAAA,CAAQ,OAAA,EAAS,cAAA;EA/JT;;;;;;EA4KR,UAAA,CAAA;EA3EiE;;;EAAA,QA2FzD,gBAAA;EA7BR;;;;;;EA6CA,cAAA,CAAe,WAAA,EAAa,eAAA;EAAb;;;;;EAAA,QAyBP,mBAAA;EAqKA;;;;;EAAA,QA5GA,iBAAA;EAqNuB;AA0BhC;;;;EA1BgC,QAnMvB,SAAA;EAmOR;;;;;;;EAAA,QA1MQ,gBAAA;EAoNE;;;;;EAAA,QAnKF,uBAAA;EA6KL;;;;;;;;EAAA,QA7JK,sBAAA;EAsKO;AAAA;;EAAA,QAxHP,gBAAA;EAwI2B;;;;EAAA,QAhH3B,oBAAA;EA4GL;;;EAAA,QA9FK,2BAAA;EAkGL;;;;;EAAA,QA7EK,uBAAA;AAAA;;;;;AC74BT;;;;AAOA;;;;;AAoFA;iBD40BgB,YAAA,CAAa,OAAA;AAAA,QAUrB,MAAA;EAAA,UACG,qBAAA;IACT,YAAA,EAAc,gBAAA;EAAA;EAAA,UAIL,GAAA;IAAA,UACC,iBAAA;MACT,YAAA;QC91BwC,8CDg2BvC,iBAAA,WCz1BK;QD21BL,cAAA,WCx1BK;QD01BL,UAAA,WCx1BK;QD01BL,OAAA,WCx1BK;QD01BL,oBAAA,YCx1BK;QD01BL,cAAA,GAAiB,eAAA,ECx1BZ;QD01BL,OAAA,eCx1BK;QD01BL,GAAA;QAAA,CACC,GAAA;MAAA;IAAA;EAAA;AAAA;AAAA;EAAA,UAQM,GAAA;IAAA,UACC,iBAAA;MACT,YAAA;QACC,iBAAA;QACA,cAAA;QACA,UAAA;QACA,OAAA;QACA,oBAAA;QACA,cAAA,GAAiB,eAAA;QACjB,OAAA;QACA,GAAA;QAAA,CACC,GAAA;MAAA;IAAA;EAAA;AAAA;;;AD9hCL;;;;;AAAA,KEiEY,eAAA;;;;;AF9CZ;UEqDiB,yBAAA;EAChB,IAAA;AAAA;AF/CD;;;;;AAOA;;;;;;;;;AAUA;AAjBA,cEkIa,qBAAA,SAA8B,WAAA;EAAA,OACnC,kBAAA;EAMC,OAAA;EAAA,QAEA,MAAA;EAAA,QACA,KAAA;EAAA,QACA,oBAAA;EAAA,QACA,oBAAA;EAAA,QACA,kBAAA;EAAA,QACA,iBAAA;EAAA,QACA,eAAA;EAAA,QACA,eAAA;EAAA,QACA,kBAAA;EAAA,QACA,aAAA;EAAA,QACA,iBAAA;EAAA,QACA,kBAAA;EAAA,QACA,gBAAA;EAAA,QACA,iBAAA;EAAA,QACA,WAAA;EAAA,QACA,kBAAA;EAAA,QACA,cAAA;EAAA,QACA,gBAAA;EAAA,QACA,kBAAA;EAAA,QACA,sBAAA;EAAA,QACA,mBAAA;EAAA,QACA,wBAAA;EAAA,QACA,2BAAA;EAAA,QACA,YAAA;EAAA,QACA,gBAAA;EAAA,QACA,kBAAA;EAAA,QACA,cAAA;EAAA,QACA,YAAA;EAAA,QACA,eAAA;EAAA,QACA,mBAAA;EAAA,QACA,gBAAA;EAAA,QACA,qBAAA;EAAA,QACA,aAAA;EAAA,QACA,sBAAA;EAAA,QACA,yBAAA;EAAA,QACA,mBAAA;EAAA,QACA,uBAAA;EAAA,QACA,kBAAA;EAAA,QACA,eAAA;EAAA,QACA,YAAA;EAAA,QACA,aAAA;EAAA,QACA,cAAA;EAAA,QACA,YAAA;EAAA,QACA,iBAAA;EAAA,QACA,gBAAA;EAAA,QACA,mBAAA;EAAA,QACA,wBAAA;EAAA,QACA,sBAAA;EAAA,QACA,cAAA;EAAA,QACA,WAAA;EAAA,IAEJ,IAAA,CAAA;EAAA,IAIA,IAAA,CAAK,KAAA;EAIT,iBAAA,CAAA;EAcA,oBAAA,CAAA;EAoCA,wBAAA,CACC,IAAA,UACA,SAAA,iBACA,QAAA;EF7LgB;;;AAQlB;;;EE+MC,OAAA,CAAQ,OAAA,EAAS,cAAA;EF9MjB;;;;;EEsOA,UAAA,CAAA;EF5NgB;;;;;AASjB;;EEmOC,OAAA,CAAQ,OAAA,EAAS,cAAA;EFlOjB;;AASD;;;;EEsOC,cAAA,CAAe,WAAA,EAAa,eAAA;EFpO5B;;;;;EEwPA,OAAA,CAAQ,IAAA;;ADlRO;;ECsSf,UAAA,CAAA;EAAA,QAIQ,gBAAA;EAAA,QASA,YAAA;EAAA,QAoBA,qBAAA;EAAA,QAWA,yBAAA;EAAA,QAeA,yBAAA;EAAA,QAeA,yBAAA;EAAA,QAIA,wBAAA;EAAA,QAeA,sBAAA;EAAA,QAqBA,yBAAA;EAAA,QAQA,0BAAA;EAAA,QA6BA,aAAA;EAAA,QAOA,WAAA;ED3RA;;;;;EAAA,QC0SA,aAAA;EAAA,QAgBA,YAAA;EAAA,QAIA,mBAAA;EAAA,QAwBA,sBAAA;EAAA,QAYA,gBAAA;EAAA,QAoFA,gBAAA;EAAA,QAWA,iBAAA;EAAA,QAmBA,gBAAA;EAAA,QAuDA,qBAAA;EAAA,QAOA,uBAAA;EAAA,QAIA,cAAA;EAAA,QAUA,cAAA;EAAA,QAMA,cAAA;EDjWA;EAAA,QCwaA,mBAAA;ED1ZA;EAAA,QC2cA,gBAAA;EAAA,QAMA,YAAA;EAAA,QAeA,YAAA;EAAA,QAMA,cAAA;EAAA,QAOA,mBAAA;EAAA,QAQA,oBAAA;EAAA,QASA,mBAAA;EAAA,QAQA,mBAAA;EAAA,QAUA,iBAAA;EAAA,QAQA,kBAAA;EDhYS;;;;EAAA,QC4YT,2BAAA;ED/VoB;;;;;EAAA,QCyXpB,+BAAA;EAAA,QAiBA,sBAAA;EAAA,QAmBA,wBAAA;EAAA,QAOA,cAAA;EAAA,QAoBA,mBAAA;EAAA,QAoBA,aAAA;EAAA,QAMA,kBAAA;EAAA,QAOA,iBAAA;EAAA,QAwBA,YAAA;EAAA,QAMA,iBAAA;EAAA,QAOA,aAAA;EAAA,QAcA,oBAAA;EAAA,QASA,iBAAA;EAAA,QAoLA,cAAA;EAAA,QAyBA,sBAAA;EAAA,QAsBA,oBAAA;EAAA,QAqBA,eAAA;EAAA,QA2BA,8BAAA;EAAA,QAUA,cAAA;EAAA,QAQA,8BAAA;EAAA,QAiBA,8BAAA;EAAA,QAsBA,oBAAA;EAAA,QAQA,sBAAA;EAAA,QAOA,yBAAA;EAAA,QAYA,yBAAA;EAAA,QAOA,sBAAA;EAAA,QAOA,sBAAA;EAAA,QAMA,yBAAA;EAAA,QA4BA,uBAAA;EAAA,QAmEA,yBAAA;EAAA,QAeA,4BAAA;EAAA,QAkDA,4BAAA;EAAA,QAYA,4BAAA;EAAA,QA0CA,4BAAA;EAAA,QAQA,gBAAA;EAAA,QAYA,kBAAA;EAAA,QAQA,YAAA;EAAA,QAOA,sBAAA;EAAA,QAiBA,uBAAA;EAAA,QAwBA,uBAAA;EAAA,QAmBA,oBAAA;EAAA,QAIA,gBAAA;EAAA,QAiBA,eAAA;EAAA,QAQA,YAAA;EAAA,QAQA,iBAAA;EAAA,QASA,gBAAA;EAAA,QAgBA,eAAA;EAAA,QAmBA,uBAAA;EAAA,QAwBA,gBAAA;EAAA,QAqCA,qBAAA;EAAA,QAMA,8BAAA;EAAA,QAgBA,yBAAA;EAAA,QAgBA,YAAA;EAAA,QAIA,kBAAA;EAAA,QAIA,iBAAA;EAAA,QAWA,uBAAA;AAAA;;;;;AAl/DT;;;iBA0hEgB,iBAAA,CAAkB,OAAA;AAAA,QAS1B,MAAA;EAAA,UACG,qBAAA;IACT,kBAAA,EAAoB,qBAAA;EAAA;EAAA,UAIX,GAAA;IAAA,UACC,iBAAA;MACT,kBAAA;QACC,IAAA;QACA,UAAA;QACA,OAAA;QACA,oBAAA;QACA,GAAA;QAAA,CACC,GAAA;MAAA;IAAA;EAAA;AAAA;AAAA;EAAA,UAQM,GAAA;IAAA,UACC,iBAAA;MACT,kBAAA;QACC,IAAA;QACA,UAAA;QACA,OAAA;QACA,oBAAA;QACA,GAAA;QAAA,CACC,GAAA;MAAA;IAAA;EAAA;AAAA;;;;;;;AFtnEL;;;;cGRa,+BAAA;AHeb;;;;;AAOA;;;AAPA,iBGYgB,aAAA,CACf,KAAA,8BACE,KAAA,IAAS,eAAA;;AHAZ;;;;;;;;;AAUA;;;;;iBGSgB,qBAAA,CAAsB,IAAA,EAAM,eAAA;;;;;AHG5C;;;;;;;;;iBGcgB,2BAAA,CACf,SAAA,EAAW,eAAA,EACX,cAAA,YAAyB,eAAA,KACvB,eAAA;;;;;;;;;;AHMH;;;;;;;iBGuBgB,wBAAA,CAAyB,OAAA;EACxC,IAAA;EACA,gBAAA;EACA,cAAA,YAA0B,eAAA;AAAA,IACvB,eAAA"}
|