@pax2pay/model-banking 0.1.100 → 0.1.102
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/Card/Operation/Authorization.ts +2 -0
- package/Treasury/Account/Category.ts +4 -0
- package/Treasury/Account/Creatable.ts +3 -2
- package/Treasury/Account/Fetchable.ts +3 -2
- package/Treasury/Account/index.ts +5 -2
- package/dist/Card/Operation/Authorization.d.ts +1 -0
- package/dist/Card/Operation/Authorization.js +1 -0
- package/dist/Card/Operation/Authorization.js.map +1 -1
- package/dist/Treasury/Account/Category.d.ts +4 -0
- package/dist/Treasury/Account/Category.js +5 -0
- package/dist/Treasury/Account/Category.js.map +1 -0
- package/dist/Treasury/Account/Creatable.d.ts +2 -1
- package/dist/Treasury/Account/Creatable.js +2 -1
- package/dist/Treasury/Account/Creatable.js.map +1 -1
- package/dist/Treasury/Account/Fetchable.d.ts +2 -1
- package/dist/Treasury/Account/Fetchable.js +2 -1
- package/dist/Treasury/Account/Fetchable.js.map +1 -1
- package/dist/Treasury/Account/index.d.ts +4 -1
- package/dist/Treasury/Account/index.js +3 -1
- package/dist/Treasury/Account/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import { isly } from "isly"
|
|
|
3
3
|
|
|
4
4
|
export interface Authorization {
|
|
5
5
|
type: "authorization"
|
|
6
|
+
id: string
|
|
6
7
|
status: "create" | "approve" | "decline"
|
|
7
8
|
reason?: string
|
|
8
9
|
created: isoly.DateTime
|
|
@@ -11,6 +12,7 @@ export interface Authorization {
|
|
|
11
12
|
export namespace Authorization {
|
|
12
13
|
export const type = isly.object<Authorization>({
|
|
13
14
|
type: isly.string("authorization"),
|
|
15
|
+
id: isly.string(),
|
|
14
16
|
status: isly.union(isly.string("create"), isly.string("approve"), isly.string("decline")),
|
|
15
17
|
reason: isly.string().optional(),
|
|
16
18
|
created: isly.fromIs("isoly.DateTime", isoly.DateTime.is),
|
|
@@ -2,13 +2,14 @@ import { isoly } from "isoly"
|
|
|
2
2
|
import { isly } from "isly"
|
|
3
3
|
import { Realm } from "../../Realm"
|
|
4
4
|
import { Supplier } from "../../Supplier"
|
|
5
|
+
import { Category } from "./Category"
|
|
5
6
|
|
|
6
7
|
export interface Creatable {
|
|
7
8
|
name: string
|
|
8
9
|
realm: Realm
|
|
9
10
|
supplier: Supplier
|
|
10
11
|
currencies: isoly.Currency[]
|
|
11
|
-
type:
|
|
12
|
+
type: Category
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
export namespace Creatable {
|
|
@@ -17,7 +18,7 @@ export namespace Creatable {
|
|
|
17
18
|
realm: isly.fromIs("realm", Realm.is),
|
|
18
19
|
supplier: isly.fromIs("supplier", Supplier.is),
|
|
19
20
|
currencies: isly.fromIs("Account.Creatable.currencies", isoly.Currency.is).array(),
|
|
20
|
-
type: isly.string(
|
|
21
|
+
type: isly.string(Category.type),
|
|
21
22
|
})
|
|
22
23
|
export const is = type.is
|
|
23
24
|
export const flaw = type.flaw
|
|
@@ -3,13 +3,14 @@ import { isly } from "isly"
|
|
|
3
3
|
import { Rail } from "../../Rail"
|
|
4
4
|
import { Supplier } from "../../Supplier"
|
|
5
5
|
import { Balance } from "../Balance"
|
|
6
|
+
import { Category } from "./Category"
|
|
6
7
|
|
|
7
8
|
export interface Fetchable {
|
|
8
9
|
name: string
|
|
9
10
|
supplier: Supplier
|
|
10
11
|
reference: string
|
|
11
12
|
currencies: isoly.Currency[]
|
|
12
|
-
type:
|
|
13
|
+
type: Category
|
|
13
14
|
rail: Rail[]
|
|
14
15
|
balance: Balance
|
|
15
16
|
}
|
|
@@ -20,7 +21,7 @@ export namespace Fetchable {
|
|
|
20
21
|
supplier: isly.fromIs("supplier", Supplier.is),
|
|
21
22
|
reference: isly.string(),
|
|
22
23
|
currencies: isly.fromIs("Account.Fetchable.currencies", isoly.Currency.is).array(),
|
|
23
|
-
type: isly.string(
|
|
24
|
+
type: isly.string(Category.type),
|
|
24
25
|
rail: isly.fromIs("Account.Fetchable.rail", Rail.is).array(),
|
|
25
26
|
balance: isly.fromIs("Account.Fetchable.rail", Balance.is),
|
|
26
27
|
})
|
|
@@ -5,6 +5,7 @@ import { Rail } from "../../Rail"
|
|
|
5
5
|
import { Realm } from "../../Realm"
|
|
6
6
|
import { Supplier } from "../../Supplier"
|
|
7
7
|
import { Balance } from "../Balance"
|
|
8
|
+
import { Category as AccountCategory } from "./Category"
|
|
8
9
|
import { Creatable as AccountCreatable } from "./Creatable"
|
|
9
10
|
import { Fetchable as AccountFetchable } from "./Fetchable"
|
|
10
11
|
import { Storable as AccountStorable } from "./Storable"
|
|
@@ -17,7 +18,7 @@ export interface Account {
|
|
|
17
18
|
supplier: Supplier | "external"
|
|
18
19
|
reference: string
|
|
19
20
|
currencies: isoly.Currency[]
|
|
20
|
-
type:
|
|
21
|
+
type: AccountCategory
|
|
21
22
|
rail: Rail[]
|
|
22
23
|
balance: Balance
|
|
23
24
|
}
|
|
@@ -31,7 +32,7 @@ export namespace Account {
|
|
|
31
32
|
supplier: isly.fromIs("supplier", Supplier.is),
|
|
32
33
|
reference: isly.string(),
|
|
33
34
|
currencies: isly.fromIs("Treasury.Account.currencies", isoly.Currency.is).array(),
|
|
34
|
-
type: isly.string(
|
|
35
|
+
type: isly.string(AccountCategory.type),
|
|
35
36
|
rail: isly.fromIs("Treasury.Account.rail", Rail.is).array(),
|
|
36
37
|
balance: isly.fromIs("Treasury.Account.rail", Balance.is),
|
|
37
38
|
})
|
|
@@ -47,4 +48,6 @@ export namespace Account {
|
|
|
47
48
|
export const Storable = AccountStorable
|
|
48
49
|
export type Fetchable = AccountFetchable
|
|
49
50
|
export const Fetchable = AccountFetchable
|
|
51
|
+
export type Category = AccountCategory
|
|
52
|
+
export const Category = AccountCategory
|
|
50
53
|
}
|
|
@@ -4,6 +4,7 @@ export var Authorization;
|
|
|
4
4
|
(function (Authorization) {
|
|
5
5
|
Authorization.type = isly.object({
|
|
6
6
|
type: isly.string("authorization"),
|
|
7
|
+
id: isly.string(),
|
|
7
8
|
status: isly.union(isly.string("create"), isly.string("approve"), isly.string("decline")),
|
|
8
9
|
reason: isly.string().optional(),
|
|
9
10
|
created: isly.fromIs("isoly.DateTime", isoly.DateTime.is),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Authorization.js","sourceRoot":"../","sources":["Card/Operation/Authorization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"Authorization.js","sourceRoot":"../","sources":["Card/Operation/Authorization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAU3B,MAAM,KAAW,aAAa,CAS7B;AATD,WAAiB,aAAa;IAChB,kBAAI,GAAG,IAAI,CAAC,MAAM,CAAgB;QAC9C,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC;QAClC,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;QACzF,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAChC,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;KACzD,CAAC,CAAA;IACW,gBAAE,GAAG,cAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EATgB,aAAa,KAAb,aAAa,QAS7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Category.js","sourceRoot":"../","sources":["Treasury/Account/Category.ts"],"names":[],"mappings":"AACA,MAAM,KAAW,QAAQ,CAExB;AAFD,WAAiB,QAAQ;IACX,aAAI,GAAG,CAAC,aAAa,EAAE,QAAQ,EAAE,OAAO,EAAE,UAAU,CAAU,CAAA;AAC5E,CAAC,EAFgB,QAAQ,KAAR,QAAQ,QAExB"}
|
|
@@ -2,12 +2,13 @@ import { isoly } from "isoly";
|
|
|
2
2
|
import { isly } from "isly";
|
|
3
3
|
import { Realm } from "../../Realm";
|
|
4
4
|
import { Supplier } from "../../Supplier";
|
|
5
|
+
import { Category } from "./Category";
|
|
5
6
|
export interface Creatable {
|
|
6
7
|
name: string;
|
|
7
8
|
realm: Realm;
|
|
8
9
|
supplier: Supplier;
|
|
9
10
|
currencies: isoly.Currency[];
|
|
10
|
-
type:
|
|
11
|
+
type: Category;
|
|
11
12
|
}
|
|
12
13
|
export declare namespace Creatable {
|
|
13
14
|
const type: isly.object.ExtendableType<Creatable>;
|
|
@@ -2,6 +2,7 @@ import { isoly } from "isoly";
|
|
|
2
2
|
import { isly } from "isly";
|
|
3
3
|
import { Realm } from "../../Realm";
|
|
4
4
|
import { Supplier } from "../../Supplier";
|
|
5
|
+
import { Category } from "./Category";
|
|
5
6
|
export var Creatable;
|
|
6
7
|
(function (Creatable) {
|
|
7
8
|
Creatable.type = isly.object({
|
|
@@ -9,7 +10,7 @@ export var Creatable;
|
|
|
9
10
|
realm: isly.fromIs("realm", Realm.is),
|
|
10
11
|
supplier: isly.fromIs("supplier", Supplier.is),
|
|
11
12
|
currencies: isly.fromIs("Account.Creatable.currencies", isoly.Currency.is).array(),
|
|
12
|
-
type: isly.string(
|
|
13
|
+
type: isly.string(Category.type),
|
|
13
14
|
});
|
|
14
15
|
Creatable.is = Creatable.type.is;
|
|
15
16
|
Creatable.flaw = Creatable.type.flaw;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Treasury/Account/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Treasury/Account/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAUrC,MAAM,KAAW,SAAS,CAUzB;AAVD,WAAiB,SAAS;IACZ,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY;QAC1C,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC;QACrC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;QAC9C,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,8BAA8B,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;QAClF,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;KAChC,CAAC,CAAA;IACW,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;IACZ,cAAI,GAAG,UAAA,IAAI,CAAC,IAAI,CAAA;AAC9B,CAAC,EAVgB,SAAS,KAAT,SAAS,QAUzB"}
|
|
@@ -3,12 +3,13 @@ import { isly } from "isly";
|
|
|
3
3
|
import { Rail } from "../../Rail";
|
|
4
4
|
import { Supplier } from "../../Supplier";
|
|
5
5
|
import { Balance } from "../Balance";
|
|
6
|
+
import { Category } from "./Category";
|
|
6
7
|
export interface Fetchable {
|
|
7
8
|
name: string;
|
|
8
9
|
supplier: Supplier;
|
|
9
10
|
reference: string;
|
|
10
11
|
currencies: isoly.Currency[];
|
|
11
|
-
type:
|
|
12
|
+
type: Category;
|
|
12
13
|
rail: Rail[];
|
|
13
14
|
balance: Balance;
|
|
14
15
|
}
|
|
@@ -3,6 +3,7 @@ import { isly } from "isly";
|
|
|
3
3
|
import { Rail } from "../../Rail";
|
|
4
4
|
import { Supplier } from "../../Supplier";
|
|
5
5
|
import { Balance } from "../Balance";
|
|
6
|
+
import { Category } from "./Category";
|
|
6
7
|
export var Fetchable;
|
|
7
8
|
(function (Fetchable) {
|
|
8
9
|
Fetchable.type = isly.object({
|
|
@@ -10,7 +11,7 @@ export var Fetchable;
|
|
|
10
11
|
supplier: isly.fromIs("supplier", Supplier.is),
|
|
11
12
|
reference: isly.string(),
|
|
12
13
|
currencies: isly.fromIs("Account.Fetchable.currencies", isoly.Currency.is).array(),
|
|
13
|
-
type: isly.string(
|
|
14
|
+
type: isly.string(Category.type),
|
|
14
15
|
rail: isly.fromIs("Account.Fetchable.rail", Rail.is).array(),
|
|
15
16
|
balance: isly.fromIs("Account.Fetchable.rail", Balance.is),
|
|
16
17
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fetchable.js","sourceRoot":"../","sources":["Treasury/Account/Fetchable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACjC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"Fetchable.js","sourceRoot":"../","sources":["Treasury/Account/Fetchable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACjC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAYrC,MAAM,KAAW,SAAS,CAYzB;AAZD,WAAiB,SAAS;IACZ,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY;QAC1C,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;QAC9C,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;QACxB,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,8BAA8B,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;QAClF,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;QAChC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,wBAAwB,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;QAC5D,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,wBAAwB,EAAE,OAAO,CAAC,EAAE,CAAC;KAC1D,CAAC,CAAA;IACW,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;IACZ,cAAI,GAAG,UAAA,IAAI,CAAC,IAAI,CAAA;AAC9B,CAAC,EAZgB,SAAS,KAAT,SAAS,QAYzB"}
|
|
@@ -5,6 +5,7 @@ import { Rail } from "../../Rail";
|
|
|
5
5
|
import { Realm } from "../../Realm";
|
|
6
6
|
import { Supplier } from "../../Supplier";
|
|
7
7
|
import { Balance } from "../Balance";
|
|
8
|
+
import { Category as AccountCategory } from "./Category";
|
|
8
9
|
import { Creatable as AccountCreatable } from "./Creatable";
|
|
9
10
|
import { Fetchable as AccountFetchable } from "./Fetchable";
|
|
10
11
|
import { Storable as AccountStorable } from "./Storable";
|
|
@@ -16,7 +17,7 @@ export interface Account {
|
|
|
16
17
|
supplier: Supplier | "external";
|
|
17
18
|
reference: string;
|
|
18
19
|
currencies: isoly.Currency[];
|
|
19
|
-
type:
|
|
20
|
+
type: AccountCategory;
|
|
20
21
|
rail: Rail[];
|
|
21
22
|
balance: Balance;
|
|
22
23
|
}
|
|
@@ -31,4 +32,6 @@ export declare namespace Account {
|
|
|
31
32
|
const Storable: typeof AccountStorable;
|
|
32
33
|
type Fetchable = AccountFetchable;
|
|
33
34
|
const Fetchable: typeof AccountFetchable;
|
|
35
|
+
type Category = AccountCategory;
|
|
36
|
+
const Category: typeof AccountCategory;
|
|
34
37
|
}
|
|
@@ -5,6 +5,7 @@ import { Rail } from "../../Rail";
|
|
|
5
5
|
import { Realm } from "../../Realm";
|
|
6
6
|
import { Supplier } from "../../Supplier";
|
|
7
7
|
import { Balance } from "../Balance";
|
|
8
|
+
import { Category as AccountCategory } from "./Category";
|
|
8
9
|
import { Creatable as AccountCreatable } from "./Creatable";
|
|
9
10
|
import { Fetchable as AccountFetchable } from "./Fetchable";
|
|
10
11
|
import { Storable as AccountStorable } from "./Storable";
|
|
@@ -18,7 +19,7 @@ export var Account;
|
|
|
18
19
|
supplier: isly.fromIs("supplier", Supplier.is),
|
|
19
20
|
reference: isly.string(),
|
|
20
21
|
currencies: isly.fromIs("Treasury.Account.currencies", isoly.Currency.is).array(),
|
|
21
|
-
type: isly.string(
|
|
22
|
+
type: isly.string(AccountCategory.type),
|
|
22
23
|
rail: isly.fromIs("Treasury.Account.rail", Rail.is).array(),
|
|
23
24
|
balance: isly.fromIs("Treasury.Account.rail", Balance.is),
|
|
24
25
|
});
|
|
@@ -31,5 +32,6 @@ export var Account;
|
|
|
31
32
|
Account.Creatable = AccountCreatable;
|
|
32
33
|
Account.Storable = AccountStorable;
|
|
33
34
|
Account.Fetchable = AccountFetchable;
|
|
35
|
+
Account.Category = AccountCategory;
|
|
34
36
|
})(Account || (Account = {}));
|
|
35
37
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Treasury/Account/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AACpC,OAAO,EAAE,SAAS,IAAI,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAC3D,OAAO,EAAE,SAAS,IAAI,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAC3D,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,MAAM,YAAY,CAAA;AAexD,MAAM,KAAW,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Treasury/Account/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AACpC,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,MAAM,YAAY,CAAA;AACxD,OAAO,EAAE,SAAS,IAAI,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAC3D,OAAO,EAAE,SAAS,IAAI,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAC3D,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,MAAM,YAAY,CAAA;AAexD,MAAM,KAAW,OAAO,CA2BvB;AA3BD,WAAiB,OAAO;IACV,YAAI,GAAG,IAAI,CAAC,MAAM,CAAU;QACxC,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,0BAA0B,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;QACnE,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC;QACrC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;QAC9C,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;QACxB,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,6BAA6B,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;QACjF,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,IAAI,CAAC;QACvC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,uBAAuB,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;QAC3D,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,uBAAuB,EAAE,OAAO,CAAC,EAAE,CAAC;KACzD,CAAC,CAAA;IACW,UAAE,GAAG,QAAA,IAAI,CAAC,EAAE,CAAA;IACZ,YAAI,GAAG,QAAA,IAAI,CAAC,IAAI,CAAA;IAC7B,SAAgB,YAAY,CAAC,KAA+B;QAC3D,OAAO,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;IACvC,CAAC;IAFe,oBAAY,eAE3B,CAAA;IAGY,iBAAS,GAAG,gBAAgB,CAAA;IAE5B,gBAAQ,GAAG,eAAe,CAAA;IAE1B,iBAAS,GAAG,gBAAgB,CAAA;IAE5B,gBAAQ,GAAG,eAAe,CAAA;AACxC,CAAC,EA3BgB,OAAO,KAAP,OAAO,QA2BvB"}
|