@stackframe/stack-shared 2.8.52 → 2.8.55
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/CHANGELOG.md +18 -0
- package/dist/apps/apps-ui.d.mts +9 -1
- package/dist/apps/apps-ui.d.ts +9 -1
- package/dist/apps/apps-ui.js +48 -54
- package/dist/apps/apps-ui.js.map +1 -1
- package/dist/config/schema.d.mts +189 -189
- package/dist/config/schema.d.ts +189 -189
- package/dist/config/schema.js +2 -1
- package/dist/config/schema.js.map +1 -1
- package/dist/esm/apps/apps-ui.js +48 -54
- package/dist/esm/apps/apps-ui.js.map +1 -1
- package/dist/esm/config/schema.js +2 -1
- package/dist/esm/config/schema.js.map +1 -1
- package/dist/esm/helpers/emails.js +9 -7
- package/dist/esm/helpers/emails.js.map +1 -1
- package/dist/esm/interface/admin-interface.js +14 -0
- package/dist/esm/interface/admin-interface.js.map +1 -1
- package/dist/esm/interface/crud/projects.js +6 -2
- package/dist/esm/interface/crud/projects.js.map +1 -1
- package/dist/esm/interface/crud/transactions.js +107 -13
- package/dist/esm/interface/crud/transactions.js.map +1 -1
- package/dist/esm/known-errors.js +62 -0
- package/dist/esm/known-errors.js.map +1 -1
- package/dist/esm/schema-fields.js +22 -2
- package/dist/esm/schema-fields.js.map +1 -1
- package/dist/helpers/emails.d.mts +1 -1
- package/dist/helpers/emails.d.ts +1 -1
- package/dist/helpers/emails.js +9 -7
- package/dist/helpers/emails.js.map +1 -1
- package/dist/interface/admin-interface.d.mts +9 -3
- package/dist/interface/admin-interface.d.ts +9 -3
- package/dist/interface/admin-interface.js +14 -0
- package/dist/interface/admin-interface.js.map +1 -1
- package/dist/interface/crud/products.d.mts +2 -2
- package/dist/interface/crud/products.d.ts +2 -2
- package/dist/interface/crud/projects.d.mts +42 -14
- package/dist/interface/crud/projects.d.ts +42 -14
- package/dist/interface/crud/projects.js +6 -2
- package/dist/interface/crud/projects.js.map +1 -1
- package/dist/interface/crud/transactions.d.mts +160 -39
- package/dist/interface/crud/transactions.d.ts +160 -39
- package/dist/interface/crud/transactions.js +99 -13
- package/dist/interface/crud/transactions.js.map +1 -1
- package/dist/known-errors.d.mts +15 -0
- package/dist/known-errors.d.ts +15 -0
- package/dist/known-errors.js +62 -0
- package/dist/known-errors.js.map +1 -1
- package/dist/schema-fields.d.mts +6 -3
- package/dist/schema-fields.d.ts +6 -3
- package/dist/schema-fields.js +26 -3
- package/dist/schema-fields.js.map +1 -1
- package/dist/sessions.d.mts +1 -1
- package/dist/sessions.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @stackframe/stack-shared
|
|
2
2
|
|
|
3
|
+
## 2.8.55
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Various changes
|
|
8
|
+
|
|
9
|
+
## 2.8.54
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Various changes
|
|
14
|
+
|
|
15
|
+
## 2.8.53
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Various changes
|
|
20
|
+
|
|
3
21
|
## 2.8.52
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/apps/apps-ui.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
2
3
|
import { AppId } from './apps-config.mjs';
|
|
3
4
|
|
|
4
5
|
declare const appSquareWidthExpression = "max(min(11vw,180px),80px)";
|
|
@@ -14,6 +15,13 @@ type AppIconProps = {
|
|
|
14
15
|
*/
|
|
15
16
|
LogoComponent?: React.FunctionComponent<{}>;
|
|
16
17
|
className?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Whether this app is enabled/installed (shows green icon)
|
|
20
|
+
*/
|
|
21
|
+
enabled?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Whether this app is disabled (shows dashed border)
|
|
24
|
+
*/
|
|
17
25
|
disabled?: boolean;
|
|
18
26
|
style?: React.CSSProperties;
|
|
19
27
|
/**
|
|
@@ -21,6 +29,6 @@ type AppIconProps = {
|
|
|
21
29
|
*/
|
|
22
30
|
cn: (...inputs: any[]) => string;
|
|
23
31
|
};
|
|
24
|
-
declare function AppIcon({ appId, IconComponent, LogoComponent, className, disabled, style, cn, }: AppIconProps): react_jsx_runtime.JSX.Element;
|
|
32
|
+
declare function AppIcon({ appId, IconComponent, LogoComponent, className, enabled, disabled, style, cn, }: AppIconProps): react_jsx_runtime.JSX.Element;
|
|
25
33
|
|
|
26
34
|
export { AppIcon, type AppIconProps, appSquarePaddingExpression, appSquareWidthExpression };
|
package/dist/apps/apps-ui.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
2
3
|
import { AppId } from './apps-config.js';
|
|
3
4
|
|
|
4
5
|
declare const appSquareWidthExpression = "max(min(11vw,180px),80px)";
|
|
@@ -14,6 +15,13 @@ type AppIconProps = {
|
|
|
14
15
|
*/
|
|
15
16
|
LogoComponent?: React.FunctionComponent<{}>;
|
|
16
17
|
className?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Whether this app is enabled/installed (shows green icon)
|
|
20
|
+
*/
|
|
21
|
+
enabled?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Whether this app is disabled (shows dashed border)
|
|
24
|
+
*/
|
|
17
25
|
disabled?: boolean;
|
|
18
26
|
style?: React.CSSProperties;
|
|
19
27
|
/**
|
|
@@ -21,6 +29,6 @@ type AppIconProps = {
|
|
|
21
29
|
*/
|
|
22
30
|
cn: (...inputs: any[]) => string;
|
|
23
31
|
};
|
|
24
|
-
declare function AppIcon({ appId, IconComponent, LogoComponent, className, disabled, style, cn, }: AppIconProps): react_jsx_runtime.JSX.Element;
|
|
32
|
+
declare function AppIcon({ appId, IconComponent, LogoComponent, className, enabled, disabled, style, cn, }: AppIconProps): react_jsx_runtime.JSX.Element;
|
|
25
33
|
|
|
26
34
|
export { AppIcon, type AppIconProps, appSquarePaddingExpression, appSquareWidthExpression };
|
package/dist/apps/apps-ui.js
CHANGED
|
@@ -25,8 +25,6 @@ __export(apps_ui_exports, {
|
|
|
25
25
|
appSquareWidthExpression: () => appSquareWidthExpression
|
|
26
26
|
});
|
|
27
27
|
module.exports = __toCommonJS(apps_ui_exports);
|
|
28
|
-
var import_arrays = require("../utils/arrays.js");
|
|
29
|
-
var import_apps_config = require("./apps-config.js");
|
|
30
28
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
31
29
|
var appSquareWidthExpression = "max(min(11vw,180px),80px)";
|
|
32
30
|
var appSquarePaddingExpression = "max(min(1vw,1.5rem),0.25rem)";
|
|
@@ -35,71 +33,67 @@ function AppIcon({
|
|
|
35
33
|
IconComponent,
|
|
36
34
|
LogoComponent,
|
|
37
35
|
className,
|
|
36
|
+
enabled = false,
|
|
38
37
|
disabled,
|
|
39
38
|
style,
|
|
40
39
|
cn
|
|
41
40
|
}) {
|
|
42
|
-
const
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
41
|
+
const filterId = "glow-fx";
|
|
42
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { height: "0", width: "0", style: { position: "absolute", marginLeft: "-100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("filter", { id: filterId, colorInterpolationFilters: "sRGB", x: "-50%", y: "-50%", width: "200%", height: "200%", children: [
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feOffset", { dx: "0", dy: "2", in: "SourceAlpha", result: "dropOffset" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feGaussianBlur", { stdDeviation: "8", in: "dropOffset", result: "dropBlur" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feFlood", { floodColor: "#4271FF", floodOpacity: "0.8", result: "dropFlood" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { operator: "in", in: "dropFlood", in2: "dropBlur", result: "dropShadow" }),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feOffset", { dx: "0", dy: "0", in: "SourceAlpha", result: "outerOffset" }),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feGaussianBlur", { stdDeviation: "4", in: "outerOffset", result: "outerBlur" }),
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feFlood", { floodColor: "#00BBFF", floodOpacity: "0.3", result: "outerFlood" }),
|
|
51
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { operator: "in", in: "outerFlood", in2: "outerBlur", result: "outerShadow" }),
|
|
52
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { operator: "over", in: "outerShadow", in2: "dropShadow", result: "combinedShadows" }),
|
|
53
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("feComposite", { operator: "over", in: "SourceGraphic", in2: "combinedShadows" })
|
|
54
|
+
] }) }) }),
|
|
55
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
56
|
+
"div",
|
|
57
|
+
{
|
|
58
|
+
style,
|
|
59
|
+
className: cn(
|
|
60
|
+
"relative w-[72px] h-[72px] overflow-hidden select-none",
|
|
61
|
+
"rounded-[20%] supports-[corner-shape:superellipse(1.5)]:[border-radius:30%] supports-[corner-shape:superellipse(1.5)]:[corner-shape:superellipse(1.5)]",
|
|
62
|
+
// https://x.com/konstiwohlwend/status/1991221528206405685
|
|
63
|
+
"shadow-[0_4px_12px_0_rgba(0,0,0,0.08)] dark:!shadow-[0_10px_24px_0_rgba(10,69,151,0.28)]",
|
|
64
|
+
"before:absolute before:inset-0 before:bg-gradient-to-br before:from-slate-300 before:via-slate-400 before:to-slate-300 dark:before:from-[#4E7598] dark:before:via-[#0D233D] dark:before:to-[#4E7598] before:rounded-[inherit] before:supports-[corner-shape:superellipse(1.5)]:[border-radius:30%] before:supports-[corner-shape:superellipse(1.5)]:[corner-shape:superellipse(1.5)]",
|
|
65
|
+
// !disabled && "bg-gray-300 dark:bg-gray-900",
|
|
66
|
+
// disabled && 'bg-gray-300 dark:bg-gray-900',
|
|
67
|
+
className
|
|
68
|
+
),
|
|
69
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: cn("absolute inset-[1px] isolate flex items-center justify-center rounded-[inherit] supports-[corner-shape:superellipse(1.5)]:[border-radius:30%] supports-[corner-shape:superellipse(1.5)]:[corner-shape:superellipse(1.5)]", !disabled && "bg-gradient-to-br from-slate-100 to-slate-200 dark:from-[#163050] dark:to-[#090C11]", disabled && "bg-gray-300 dark:bg-gray-900"), children: LogoComponent ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
62
70
|
"div",
|
|
63
71
|
{
|
|
64
|
-
className:
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
72
|
+
className: cn(
|
|
73
|
+
"w-[42%] h-[42%] flex items-center justify-center",
|
|
74
|
+
"[&_svg]:overflow-visible",
|
|
75
|
+
!enabled && "grayscale opacity-60"
|
|
76
|
+
),
|
|
77
|
+
style: { filter: `url(#${filterId})` },
|
|
68
78
|
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(LogoComponent, {})
|
|
69
79
|
}
|
|
70
|
-
) : /* @__PURE__ */ (0, import_jsx_runtime.
|
|
71
|
-
|
|
72
|
-
"app-icon-gradient-light": ["#c0f", "#66f", "#4af"],
|
|
73
|
-
"app-icon-gradient-dark": ["#3ec", "#9af", "#a5f"],
|
|
74
|
-
"app-icon-gradient-light-expert": ["#f0c", "#f66", "#fa4"],
|
|
75
|
-
"app-icon-gradient-dark-expert": ["#f0c", "#f66", "#fa4"],
|
|
76
|
-
"app-icon-gradient-light-integration": ["#E5AB00", "#FFBA00", "#F8DF80"],
|
|
77
|
-
"app-icon-gradient-dark-integration": ["#E5AB00", "#FFBA00", "#F8DF80"]
|
|
78
|
-
}) }),
|
|
79
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
80
|
-
IconComponent,
|
|
81
|
-
{
|
|
82
|
-
opacity: disabled ? 0.75 : 1,
|
|
83
|
-
className: cn(
|
|
84
|
-
"inset-[20%] w-[60%] h-[60%] bg-clip-text text-transparent text-white absolute",
|
|
85
|
-
(0, import_arrays.typedIncludes)(app.tags, "expert") ? "stroke-[url(#app-icon-gradient-light-expert)] dark:stroke-[url(#app-icon-gradient-dark-expert)]" : (0, import_arrays.typedIncludes)(app.tags, "integration") ? "stroke-[url(#app-icon-gradient-light-integration)] dark:stroke-[url(#app-icon-gradient-dark-integration)]" : "stroke-[url(#app-icon-gradient-light)] dark:stroke-[url(#app-icon-gradient-dark)]"
|
|
86
|
-
)
|
|
87
|
-
}
|
|
88
|
-
)
|
|
89
|
-
] }) }),
|
|
90
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "absolute top-0 left-[-100%] right-0 flex flex-col gap-1 [transform:_rotate(-45deg)_translateY(24px)] [transform-origin:top_center]", children: app.stage !== "stable" && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
91
|
-
"div",
|
|
80
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
81
|
+
IconComponent,
|
|
92
82
|
{
|
|
93
83
|
className: cn(
|
|
94
|
-
"
|
|
95
|
-
|
|
84
|
+
"w-[42%] h-[42%]",
|
|
85
|
+
enabled ? "stroke-emerald-600 dark:stroke-emerald-400" : "stroke-slate-500 dark:stroke-gray-500"
|
|
96
86
|
),
|
|
97
|
-
|
|
87
|
+
style: {
|
|
88
|
+
opacity: disabled ? 0.5 : 1,
|
|
89
|
+
filter: `url(#${filterId})`
|
|
90
|
+
},
|
|
91
|
+
overflow: "visible"
|
|
98
92
|
}
|
|
99
93
|
) })
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
);
|
|
94
|
+
}
|
|
95
|
+
)
|
|
96
|
+
] });
|
|
103
97
|
}
|
|
104
98
|
// Annotate the CommonJS export names for ESM import in node:
|
|
105
99
|
0 && (module.exports = {
|
package/dist/apps/apps-ui.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/apps/apps-ui.tsx"],"sourcesContent":["import
|
|
1
|
+
{"version":3,"sources":["../../src/apps/apps-ui.tsx"],"sourcesContent":["import React from \"react\";\nimport { AppId } from \"./apps-config\";\n\nexport const appSquareWidthExpression = \"max(min(11vw,180px),80px)\";\nexport const appSquarePaddingExpression = \"max(min(1vw,1.5rem),0.25rem)\";\n\nexport type AppIconProps = {\n appId: AppId,\n /**\n * Icon component from the app frontend config\n */\n IconComponent: React.FunctionComponent<React.SVGProps<SVGSVGElement>>,\n /**\n * Optional logo component from the app frontend config\n */\n LogoComponent?: React.FunctionComponent<{}>,\n className?: string,\n /**\n * Whether this app is enabled/installed (shows green icon)\n */\n enabled?: boolean,\n /**\n * Whether this app is disabled (shows dashed border)\n */\n disabled?: boolean,\n style?: React.CSSProperties,\n /**\n * cn utility function for className merging (e.g., from stack-ui or tailwind-merge)\n */\n cn: (...inputs: any[]) => string,\n};\n\nexport function AppIcon({\n appId,\n IconComponent,\n LogoComponent,\n className,\n enabled = false,\n disabled,\n style,\n cn,\n}: AppIconProps) {\n\n const filterId = \"glow-fx\";\n\n return (\n <>\n {/* theoretically, this only needs to be in the dom once: */}\n <svg height=\"0\" width=\"0\" style={{ position: \"absolute\", marginLeft: \"-100%\" }}>\n <defs>\n <filter id={filterId} colorInterpolationFilters=\"sRGB\" x=\"-50%\" y=\"-50%\" width=\"200%\" height=\"200%\">\n {/* drop shadow */}\n <feOffset dx=\"0\" dy=\"2\" in=\"SourceAlpha\" result=\"dropOffset\" />\n <feGaussianBlur stdDeviation=\"8\" in=\"dropOffset\" result=\"dropBlur\" />\n <feFlood floodColor=\"#4271FF\" floodOpacity=\"0.8\" result=\"dropFlood\" />\n <feComposite operator=\"in\" in=\"dropFlood\" in2=\"dropBlur\" result=\"dropShadow\" />\n {/* outer shadow */}\n <feOffset dx=\"0\" dy=\"0\" in=\"SourceAlpha\" result=\"outerOffset\" />\n <feGaussianBlur stdDeviation=\"4\" in=\"outerOffset\" result=\"outerBlur\" />\n <feFlood floodColor=\"#00BBFF\" floodOpacity=\"0.3\" result=\"outerFlood\" />\n <feComposite operator=\"in\" in=\"outerFlood\" in2=\"outerBlur\" result=\"outerShadow\" />\n {/* Combine: drop shadow behind, then outer shadow, then source graphic on top */}\n <feComposite operator=\"over\" in=\"outerShadow\" in2=\"dropShadow\" result=\"combinedShadows\" />\n <feComposite operator=\"over\" in=\"SourceGraphic\" in2=\"combinedShadows\" />\n </filter>\n </defs>\n </svg>\n <div\n style={style}\n className={cn(\n \"relative w-[72px] h-[72px] overflow-hidden select-none\",\n \"rounded-[20%] supports-[corner-shape:superellipse(1.5)]:[border-radius:30%] supports-[corner-shape:superellipse(1.5)]:[corner-shape:superellipse(1.5)]\", // https://x.com/konstiwohlwend/status/1991221528206405685\n \"shadow-[0_4px_12px_0_rgba(0,0,0,0.08)] dark:!shadow-[0_10px_24px_0_rgba(10,69,151,0.28)]\",\n \"before:absolute before:inset-0 before:bg-gradient-to-br before:from-slate-300 before:via-slate-400 before:to-slate-300 dark:before:from-[#4E7598] dark:before:via-[#0D233D] dark:before:to-[#4E7598] before:rounded-[inherit] before:supports-[corner-shape:superellipse(1.5)]:[border-radius:30%] before:supports-[corner-shape:superellipse(1.5)]:[corner-shape:superellipse(1.5)]\",\n // !disabled && \"bg-gray-300 dark:bg-gray-900\",\n // disabled && 'bg-gray-300 dark:bg-gray-900',\n className,\n )}\n >\n <div className={cn(\"absolute inset-[1px] isolate flex items-center justify-center rounded-[inherit] supports-[corner-shape:superellipse(1.5)]:[border-radius:30%] supports-[corner-shape:superellipse(1.5)]:[corner-shape:superellipse(1.5)]\", !disabled && \"bg-gradient-to-br from-slate-100 to-slate-200 dark:from-[#163050] dark:to-[#090C11]\", disabled && \"bg-gray-300 dark:bg-gray-900\")}>\n {LogoComponent ? (\n <div\n className={cn(\n \"w-[42%] h-[42%] flex items-center justify-center\",\n \"[&_svg]:overflow-visible\",\n !enabled && \"grayscale opacity-60\"\n )}\n style={{ filter: `url(#${filterId})` }}\n >\n <LogoComponent />\n </div>\n ) : (\n <IconComponent\n className={cn(\n \"w-[42%] h-[42%]\",\n enabled\n ? \"stroke-emerald-600 dark:stroke-emerald-400\"\n : \"stroke-slate-500 dark:stroke-gray-500\"\n )}\n style={{\n opacity: disabled ? 0.5 : 1,\n filter: `url(#${filterId})`,\n }}\n overflow=\"visible\"\n />\n )}\n </div>\n </div>\n </>\n );\n}\n\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AA8CI;AA3CG,IAAM,2BAA2B;AACjC,IAAM,6BAA6B;AA4BnC,SAAS,QAAQ;AAAA,EACtB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA,UAAU;AAAA,EACV;AAAA,EACA;AAAA,EACA;AACF,GAAiB;AAEf,QAAM,WAAW;AAEjB,SACE,4EAEE;AAAA,gDAAC,SAAI,QAAO,KAAI,OAAM,KAAI,OAAO,EAAE,UAAU,YAAY,YAAY,QAAQ,GAC3E,sDAAC,UACC,uDAAC,YAAO,IAAI,UAAU,2BAA0B,QAAO,GAAE,QAAO,GAAE,QAAO,OAAM,QAAO,QAAO,QAE3F;AAAA,kDAAC,cAAS,IAAG,KAAI,IAAG,KAAI,IAAG,eAAc,QAAO,cAAa;AAAA,MAC7D,4CAAC,oBAAe,cAAa,KAAI,IAAG,cAAa,QAAO,YAAW;AAAA,MACnE,4CAAC,aAAQ,YAAW,WAAU,cAAa,OAAM,QAAO,aAAY;AAAA,MACpE,4CAAC,iBAAY,UAAS,MAAK,IAAG,aAAY,KAAI,YAAW,QAAO,cAAa;AAAA,MAE7E,4CAAC,cAAS,IAAG,KAAI,IAAG,KAAI,IAAG,eAAc,QAAO,eAAc;AAAA,MAC9D,4CAAC,oBAAe,cAAa,KAAI,IAAG,eAAc,QAAO,aAAY;AAAA,MACrE,4CAAC,aAAQ,YAAW,WAAU,cAAa,OAAM,QAAO,cAAa;AAAA,MACrE,4CAAC,iBAAY,UAAS,MAAK,IAAG,cAAa,KAAI,aAAY,QAAO,eAAc;AAAA,MAEhF,4CAAC,iBAAY,UAAS,QAAO,IAAG,eAAc,KAAI,cAAa,QAAO,mBAAkB;AAAA,MACxF,4CAAC,iBAAY,UAAS,QAAO,IAAG,iBAAgB,KAAI,mBAAkB;AAAA,OACxE,GACF,GACF;AAAA,IACA;AAAA,MAAC;AAAA;AAAA,QACC;AAAA,QACA,WAAW;AAAA,UACT;AAAA,UACA;AAAA;AAAA,UACA;AAAA,UACA;AAAA;AAAA;AAAA,UAGA;AAAA,QACF;AAAA,QAEA,sDAAC,SAAI,WAAW,GAAG,4NAA4N,CAAC,YAAY,uFAAuF,YAAY,8BAA8B,GAC1X,0BACC;AAAA,UAAC;AAAA;AAAA,YACC,WAAW;AAAA,cACT;AAAA,cACA;AAAA,cACA,CAAC,WAAW;AAAA,YACd;AAAA,YACA,OAAO,EAAE,QAAQ,QAAQ,QAAQ,IAAI;AAAA,YAErC,sDAAC,iBAAc;AAAA;AAAA,QACjB,IAEA;AAAA,UAAC;AAAA;AAAA,YACC,WAAW;AAAA,cACT;AAAA,cACA,UACI,+CACA;AAAA,YACN;AAAA,YACA,OAAO;AAAA,cACL,SAAS,WAAW,MAAM;AAAA,cAC1B,QAAQ,QAAQ,QAAQ;AAAA,YAC1B;AAAA,YACA,UAAS;AAAA;AAAA,QACX,GAEJ;AAAA;AAAA,IACF;AAAA,KACF;AAEJ;","names":[]}
|