interaqt 0.1.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/README.md +53 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/runtime/ActivityCall.d.ts +68 -0
- package/dist/runtime/ActivityCall.d.ts.map +1 -0
- package/dist/runtime/ActivityCall.js +379 -0
- package/dist/runtime/ActivityCall.js.map +1 -0
- package/dist/runtime/Controller.d.ts +60 -0
- package/dist/runtime/Controller.d.ts.map +1 -0
- package/dist/runtime/Controller.js +225 -0
- package/dist/runtime/Controller.js.map +1 -0
- package/dist/runtime/InteractionCall.d.ts +102 -0
- package/dist/runtime/InteractionCall.d.ts.map +1 -0
- package/dist/runtime/InteractionCall.js +385 -0
- package/dist/runtime/InteractionCall.js.map +1 -0
- package/dist/runtime/MonoSystem.d.ts +26 -0
- package/dist/runtime/MonoSystem.d.ts.map +1 -0
- package/dist/runtime/MonoSystem.js +331 -0
- package/dist/runtime/MonoSystem.js.map +1 -0
- package/dist/runtime/Mysql.d.ts +35 -0
- package/dist/runtime/Mysql.d.ts.map +1 -0
- package/dist/runtime/Mysql.js +171 -0
- package/dist/runtime/Mysql.js.map +1 -0
- package/dist/runtime/PostgreSQL.d.ts +36 -0
- package/dist/runtime/PostgreSQL.d.ts.map +1 -0
- package/dist/runtime/PostgreSQL.js +172 -0
- package/dist/runtime/PostgreSQL.js.map +1 -0
- package/dist/runtime/SQLite.d.ts +34 -0
- package/dist/runtime/SQLite.d.ts.map +1 -0
- package/dist/runtime/SQLite.js +146 -0
- package/dist/runtime/SQLite.js.map +1 -0
- package/dist/runtime/Scheduler.d.ts +81 -0
- package/dist/runtime/Scheduler.d.ts.map +1 -0
- package/dist/runtime/Scheduler.js +457 -0
- package/dist/runtime/Scheduler.js.map +1 -0
- package/dist/runtime/System.d.ts +312 -0
- package/dist/runtime/System.d.ts.map +1 -0
- package/dist/runtime/System.js +90 -0
- package/dist/runtime/System.js.map +1 -0
- package/dist/runtime/asyncInteractionContext.d.ts +3 -0
- package/dist/runtime/asyncInteractionContext.d.ts.map +1 -0
- package/dist/runtime/asyncInteractionContext.js +3 -0
- package/dist/runtime/asyncInteractionContext.js.map +1 -0
- package/dist/runtime/boolExpression.d.ts +23 -0
- package/dist/runtime/boolExpression.d.ts.map +1 -0
- package/dist/runtime/boolExpression.js +43 -0
- package/dist/runtime/boolExpression.js.map +1 -0
- package/dist/runtime/computedDataHandles/Any.d.ts +52 -0
- package/dist/runtime/computedDataHandles/Any.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/Any.js +152 -0
- package/dist/runtime/computedDataHandles/Any.js.map +1 -0
- package/dist/runtime/computedDataHandles/Computation.d.ts +108 -0
- package/dist/runtime/computedDataHandles/Computation.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/Computation.js +49 -0
- package/dist/runtime/computedDataHandles/Computation.js.map +1 -0
- package/dist/runtime/computedDataHandles/ComputedDataHandle.d.ts +42 -0
- package/dist/runtime/computedDataHandles/ComputedDataHandle.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/ComputedDataHandle.js +4 -0
- package/dist/runtime/computedDataHandles/ComputedDataHandle.js.map +1 -0
- package/dist/runtime/computedDataHandles/Count.d.ts +45 -0
- package/dist/runtime/computedDataHandles/Count.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/Count.js +85 -0
- package/dist/runtime/computedDataHandles/Count.js.map +1 -0
- package/dist/runtime/computedDataHandles/Every.d.ts +56 -0
- package/dist/runtime/computedDataHandles/Every.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/Every.js +178 -0
- package/dist/runtime/computedDataHandles/Every.js.map +1 -0
- package/dist/runtime/computedDataHandles/StateMachine.d.ts +74 -0
- package/dist/runtime/computedDataHandles/StateMachine.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/StateMachine.js +180 -0
- package/dist/runtime/computedDataHandles/StateMachine.js.map +1 -0
- package/dist/runtime/computedDataHandles/Transform.d.ts +26 -0
- package/dist/runtime/computedDataHandles/Transform.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/Transform.js +106 -0
- package/dist/runtime/computedDataHandles/Transform.js.map +1 -0
- package/dist/runtime/computedDataHandles/TransitionFinder.d.ts +57 -0
- package/dist/runtime/computedDataHandles/TransitionFinder.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/TransitionFinder.js +40 -0
- package/dist/runtime/computedDataHandles/TransitionFinder.js.map +1 -0
- package/dist/runtime/computedDataHandles/WeightedSummation.d.ts +57 -0
- package/dist/runtime/computedDataHandles/WeightedSummation.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/WeightedSummation.js +146 -0
- package/dist/runtime/computedDataHandles/WeightedSummation.js.map +1 -0
- package/dist/runtime/computedDataHandles/index.d.ts +7 -0
- package/dist/runtime/computedDataHandles/index.d.ts.map +1 -0
- package/dist/runtime/computedDataHandles/index.js +7 -0
- package/dist/runtime/computedDataHandles/index.js.map +1 -0
- package/dist/runtime/index.d.ts +15 -0
- package/dist/runtime/index.d.ts.map +1 -0
- package/dist/runtime/index.js +15 -0
- package/dist/runtime/index.js.map +1 -0
- package/dist/runtime/server.d.ts +35 -0
- package/dist/runtime/server.d.ts.map +1 -0
- package/dist/runtime/server.js +171 -0
- package/dist/runtime/server.js.map +1 -0
- package/dist/runtime/types/boolExpression.d.ts +22 -0
- package/dist/runtime/types/boolExpression.d.ts.map +1 -0
- package/dist/runtime/types/boolExpression.js +6 -0
- package/dist/runtime/types/boolExpression.js.map +1 -0
- package/dist/runtime/util.d.ts +10 -0
- package/dist/runtime/util.d.ts.map +1 -0
- package/dist/runtime/util.js +39 -0
- package/dist/runtime/util.js.map +1 -0
- package/dist/shared/BoolExp.d.ts +97 -0
- package/dist/shared/BoolExp.d.ts.map +1 -0
- package/dist/shared/BoolExp.js +252 -0
- package/dist/shared/BoolExp.js.map +1 -0
- package/dist/shared/activity/Activity.d.ts +465 -0
- package/dist/shared/activity/Activity.d.ts.map +1 -0
- package/dist/shared/activity/Activity.js +264 -0
- package/dist/shared/activity/Activity.js.map +1 -0
- package/dist/shared/activity/Condition.d.ts +75 -0
- package/dist/shared/activity/Condition.d.ts.map +1 -0
- package/dist/shared/activity/Condition.js +51 -0
- package/dist/shared/activity/Condition.js.map +1 -0
- package/dist/shared/activity/Data.d.ts +115 -0
- package/dist/shared/activity/Data.d.ts.map +1 -0
- package/dist/shared/activity/Data.js +89 -0
- package/dist/shared/activity/Data.js.map +1 -0
- package/dist/shared/attributive.d.ts +93 -0
- package/dist/shared/attributive.d.ts.map +1 -0
- package/dist/shared/attributive.js +59 -0
- package/dist/shared/attributive.js.map +1 -0
- package/dist/shared/computed.d.ts +607 -0
- package/dist/shared/computed.d.ts.map +1 -0
- package/dist/shared/computed.js +202 -0
- package/dist/shared/computed.js.map +1 -0
- package/dist/shared/createClass.d.ts +102 -0
- package/dist/shared/createClass.d.ts.map +1 -0
- package/dist/shared/createClass.js +276 -0
- package/dist/shared/createClass.js.map +1 -0
- package/dist/shared/dictionary/Dictionary.d.ts +40 -0
- package/dist/shared/dictionary/Dictionary.d.ts.map +1 -0
- package/dist/shared/dictionary/Dictionary.js +51 -0
- package/dist/shared/dictionary/Dictionary.js.map +1 -0
- package/dist/shared/entity/Entity.d.ts +149 -0
- package/dist/shared/entity/Entity.d.ts.map +1 -0
- package/dist/shared/entity/Entity.js +226 -0
- package/dist/shared/entity/Entity.js.map +1 -0
- package/dist/shared/index.d.ts +11 -0
- package/dist/shared/index.d.ts.map +1 -0
- package/dist/shared/index.js +11 -0
- package/dist/shared/index.js.map +1 -0
- package/dist/shared/user/User.d.ts +21 -0
- package/dist/shared/user/User.d.ts.map +1 -0
- package/dist/shared/user/User.js +11 -0
- package/dist/shared/user/User.js.map +1 -0
- package/dist/shared/utils.d.ts +11 -0
- package/dist/shared/utils.d.ts.map +1 -0
- package/dist/shared/utils.js +19 -0
- package/dist/shared/utils.js.map +1 -0
- package/dist/storage/erstorage/AttributeInfo.d.ts +40 -0
- package/dist/storage/erstorage/AttributeInfo.d.ts.map +1 -0
- package/dist/storage/erstorage/AttributeInfo.js +147 -0
- package/dist/storage/erstorage/AttributeInfo.js.map +1 -0
- package/dist/storage/erstorage/AttributeQuery.d.ts +33 -0
- package/dist/storage/erstorage/AttributeQuery.d.ts.map +1 -0
- package/dist/storage/erstorage/AttributeQuery.js +190 -0
- package/dist/storage/erstorage/AttributeQuery.js.map +1 -0
- package/dist/storage/erstorage/EntityQueryHandle.d.ts +29 -0
- package/dist/storage/erstorage/EntityQueryHandle.d.ts.map +1 -0
- package/dist/storage/erstorage/EntityQueryHandle.js +78 -0
- package/dist/storage/erstorage/EntityQueryHandle.js.map +1 -0
- package/dist/storage/erstorage/EntityToTableMap.d.ts +85 -0
- package/dist/storage/erstorage/EntityToTableMap.d.ts.map +1 -0
- package/dist/storage/erstorage/EntityToTableMap.js +262 -0
- package/dist/storage/erstorage/EntityToTableMap.js.map +1 -0
- package/dist/storage/erstorage/LinkInfo.d.ts +35 -0
- package/dist/storage/erstorage/LinkInfo.d.ts.map +1 -0
- package/dist/storage/erstorage/LinkInfo.js +89 -0
- package/dist/storage/erstorage/LinkInfo.js.map +1 -0
- package/dist/storage/erstorage/MatchExp.d.ts +37 -0
- package/dist/storage/erstorage/MatchExp.d.ts.map +1 -0
- package/dist/storage/erstorage/MatchExp.js +211 -0
- package/dist/storage/erstorage/MatchExp.js.map +1 -0
- package/dist/storage/erstorage/Modifier.d.ts +23 -0
- package/dist/storage/erstorage/Modifier.d.ts.map +1 -0
- package/dist/storage/erstorage/Modifier.js +24 -0
- package/dist/storage/erstorage/Modifier.js.map +1 -0
- package/dist/storage/erstorage/NewRecordData.d.ts +42 -0
- package/dist/storage/erstorage/NewRecordData.d.ts.map +1 -0
- package/dist/storage/erstorage/NewRecordData.js +178 -0
- package/dist/storage/erstorage/NewRecordData.js.map +1 -0
- package/dist/storage/erstorage/RecordInfo.d.ts +26 -0
- package/dist/storage/erstorage/RecordInfo.d.ts.map +1 -0
- package/dist/storage/erstorage/RecordInfo.js +111 -0
- package/dist/storage/erstorage/RecordInfo.js.map +1 -0
- package/dist/storage/erstorage/RecordQuery.d.ts +73 -0
- package/dist/storage/erstorage/RecordQuery.d.ts.map +1 -0
- package/dist/storage/erstorage/RecordQuery.js +158 -0
- package/dist/storage/erstorage/RecordQuery.js.map +1 -0
- package/dist/storage/erstorage/RecordQueryAgent.d.ts +84 -0
- package/dist/storage/erstorage/RecordQueryAgent.d.ts.map +1 -0
- package/dist/storage/erstorage/RecordQueryAgent.js +1130 -0
- package/dist/storage/erstorage/RecordQueryAgent.js.map +1 -0
- package/dist/storage/erstorage/Setup.d.ts +49 -0
- package/dist/storage/erstorage/Setup.d.ts.map +1 -0
- package/dist/storage/erstorage/Setup.js +400 -0
- package/dist/storage/erstorage/Setup.js.map +1 -0
- package/dist/storage/erstorage/util.d.ts +6 -0
- package/dist/storage/erstorage/util.d.ts.map +1 -0
- package/dist/storage/erstorage/util.js +25 -0
- package/dist/storage/erstorage/util.js.map +1 -0
- package/dist/storage/index.d.ts +13 -0
- package/dist/storage/index.d.ts.map +1 -0
- package/dist/storage/index.js +13 -0
- package/dist/storage/index.js.map +1 -0
- package/dist/storage/utils.d.ts +10 -0
- package/dist/storage/utils.d.ts.map +1 -0
- package/dist/storage/utils.js +48 -0
- package/dist/storage/utils.js.map +1 -0
- package/package.json +59 -0
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { KlassInstance } from "./createClass.js";
|
|
2
|
+
import { BoolExp } from "./BoolExp.js";
|
|
3
|
+
export type ConceptType = {};
|
|
4
|
+
export interface Concept {
|
|
5
|
+
name: string;
|
|
6
|
+
}
|
|
7
|
+
export interface DerivedConcept extends Concept {
|
|
8
|
+
base?: Concept;
|
|
9
|
+
attributive?: any;
|
|
10
|
+
}
|
|
11
|
+
export interface ConceptAlias extends Concept {
|
|
12
|
+
for: Concept[];
|
|
13
|
+
}
|
|
14
|
+
export type ConceptInstance = any;
|
|
15
|
+
export declare const Attributive: import("./createClass.js").Klass<{
|
|
16
|
+
stringContent: {
|
|
17
|
+
type: "string";
|
|
18
|
+
};
|
|
19
|
+
content: {
|
|
20
|
+
type: "function";
|
|
21
|
+
required: true;
|
|
22
|
+
collection: false;
|
|
23
|
+
};
|
|
24
|
+
name: {
|
|
25
|
+
type: "string";
|
|
26
|
+
};
|
|
27
|
+
isRef: {
|
|
28
|
+
type: "boolean";
|
|
29
|
+
};
|
|
30
|
+
}>;
|
|
31
|
+
export declare const Attributives: import("./createClass.js").Klass<{
|
|
32
|
+
content: {
|
|
33
|
+
type: (import("./createClass.js").Klass<import("./BoolExp.js").BoolAtomPublic> | import("./createClass.js").Klass<{
|
|
34
|
+
type: {
|
|
35
|
+
type: "string";
|
|
36
|
+
required: true;
|
|
37
|
+
collection: false;
|
|
38
|
+
defaultValue: () => string;
|
|
39
|
+
};
|
|
40
|
+
operator: {
|
|
41
|
+
type: "string";
|
|
42
|
+
required: true;
|
|
43
|
+
collection: false;
|
|
44
|
+
options: string[];
|
|
45
|
+
defaultValue: () => string;
|
|
46
|
+
};
|
|
47
|
+
left: {
|
|
48
|
+
instanceType: (KlassInstance<import("./createClass.js").Klass<import("./BoolExp.js").BoolAtomPublic>> | import("./BoolExp.js").UnwrappedBoolExpressionInstanceType<any>);
|
|
49
|
+
required: true;
|
|
50
|
+
collection: false;
|
|
51
|
+
};
|
|
52
|
+
right: {
|
|
53
|
+
instanceType: (KlassInstance<import("./createClass.js").Klass<import("./BoolExp.js").BoolAtomPublic>> | import("./BoolExp.js").UnwrappedBoolExpressionInstanceType<any>);
|
|
54
|
+
required: false;
|
|
55
|
+
collection: false;
|
|
56
|
+
};
|
|
57
|
+
}>)[];
|
|
58
|
+
collection: false;
|
|
59
|
+
required: false;
|
|
60
|
+
};
|
|
61
|
+
}>;
|
|
62
|
+
export declare function boolExpToAttributives(obj: BoolExp<KlassInstance<typeof Attributive>>): import("./createClass.js").KlassInstanceOfPublic<{
|
|
63
|
+
content: {
|
|
64
|
+
type: (import("./createClass.js").Klass<import("./BoolExp.js").BoolAtomPublic> | import("./createClass.js").Klass<{
|
|
65
|
+
type: {
|
|
66
|
+
type: "string";
|
|
67
|
+
required: true;
|
|
68
|
+
collection: false;
|
|
69
|
+
defaultValue: () => string;
|
|
70
|
+
};
|
|
71
|
+
operator: {
|
|
72
|
+
type: "string";
|
|
73
|
+
required: true;
|
|
74
|
+
collection: false;
|
|
75
|
+
options: string[];
|
|
76
|
+
defaultValue: () => string;
|
|
77
|
+
};
|
|
78
|
+
left: {
|
|
79
|
+
instanceType: (KlassInstance<import("./createClass.js").Klass<import("./BoolExp.js").BoolAtomPublic>> | import("./BoolExp.js").UnwrappedBoolExpressionInstanceType<any>);
|
|
80
|
+
required: true;
|
|
81
|
+
collection: false;
|
|
82
|
+
};
|
|
83
|
+
right: {
|
|
84
|
+
instanceType: (KlassInstance<import("./createClass.js").Klass<import("./BoolExp.js").BoolAtomPublic>> | import("./BoolExp.js").UnwrappedBoolExpressionInstanceType<any>);
|
|
85
|
+
required: false;
|
|
86
|
+
collection: false;
|
|
87
|
+
};
|
|
88
|
+
}>)[];
|
|
89
|
+
collection: false;
|
|
90
|
+
required: false;
|
|
91
|
+
};
|
|
92
|
+
}>;
|
|
93
|
+
//# sourceMappingURL=attributive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attributive.d.ts","sourceRoot":"","sources":["../../src/shared/attributive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAC,OAAO,EAA0D,MAAM,cAAc,CAAC;AAK9F,MAAM,MAAM,WAAW,GAAG,EAAE,CAAA;AAG5B,MAAM,WAAW,OAAO;IACpB,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,cAAe,SAAQ,OAAO;IAC3C,IAAI,CAAC,EAAG,OAAO,CAAC;IAChB,WAAW,CAAC,EAAE,GAAG,CAAC;CACrB;AAED,MAAM,WAAW,YAAa,SAAQ,OAAO;IACzC,GAAG,EAAE,OAAO,EAAE,CAAA;CACjB;AAGD,MAAM,MAAM,eAAe,GAAG,GAAG,CAAA;AAEjC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;EAqBtB,CAAA;AAEF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWvB,CAAA;AAsBF,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,OAAO,CAAC,aAAa,CAAC,OAAO,WAAW,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAIpF"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { createClass } from "./createClass.js";
|
|
2
|
+
import { BoolExpressionData, BoolAtomData } from "./BoolExp.js";
|
|
3
|
+
export const Attributive = createClass({
|
|
4
|
+
name: 'Attributive',
|
|
5
|
+
display: (obj) => `${obj.name}`,
|
|
6
|
+
public: {
|
|
7
|
+
stringContent: {
|
|
8
|
+
type: 'string',
|
|
9
|
+
},
|
|
10
|
+
content: {
|
|
11
|
+
type: 'function',
|
|
12
|
+
required: true,
|
|
13
|
+
collection: false
|
|
14
|
+
},
|
|
15
|
+
name: {
|
|
16
|
+
type: 'string'
|
|
17
|
+
},
|
|
18
|
+
// 是否是引用了同 activity 下其他的 interaction 的 user/entity。
|
|
19
|
+
// 这个值只有在 isRole 为 true 时才可能为 true
|
|
20
|
+
isRef: {
|
|
21
|
+
type: 'boolean'
|
|
22
|
+
},
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
export const Attributives = createClass({
|
|
26
|
+
name: 'Attributives',
|
|
27
|
+
display: (obj) => `${obj.name}`,
|
|
28
|
+
public: {
|
|
29
|
+
// CAUTION content 的类型是 BoolExpressionData<UserAttributiveAtom>
|
|
30
|
+
content: {
|
|
31
|
+
type: [BoolExpressionData, BoolAtomData],
|
|
32
|
+
collection: false,
|
|
33
|
+
required: false
|
|
34
|
+
},
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
function toAttributives(obj) {
|
|
38
|
+
if (!obj)
|
|
39
|
+
return undefined;
|
|
40
|
+
if (obj.raw.type === 'atom') {
|
|
41
|
+
return BoolAtomData.create({
|
|
42
|
+
type: 'atom',
|
|
43
|
+
data: obj.raw.data
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
const expData = obj.raw;
|
|
47
|
+
return BoolExpressionData.create({
|
|
48
|
+
type: 'expression',
|
|
49
|
+
operator: expData.operator,
|
|
50
|
+
left: toAttributives(obj.left),
|
|
51
|
+
right: toAttributives(obj.right),
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
export function boolExpToAttributives(obj) {
|
|
55
|
+
return Attributives.create({
|
|
56
|
+
content: toAttributives(obj)
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=attributive.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attributive.js","sourceRoot":"","sources":["../../src/shared/attributive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAgB,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAiC,kBAAkB,EAAE,YAAY,EAAC,MAAM,cAAc,CAAC;AAwB9F,MAAM,CAAC,MAAM,WAAW,GAAG,WAAW,CAAC;IACnC,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE;IAC/B,MAAM,EAAE;QACJ,aAAa,EAAE;YACX,IAAI,EAAE,QAAQ;SACjB;QACD,OAAO,EAAE;YACL,IAAI,EAAE,UAAU;YAChB,QAAQ,EAAE,IAAI;YACd,UAAU,EAAE,KAAK;SACpB;QACD,IAAI,EAAE;YACF,IAAI,EAAE,QAAQ;SACjB;QACD,mDAAmD;QACnD,mCAAmC;QACnC,KAAK,EAAE;YACH,IAAI,EAAE,SAAS;SAClB;KACJ;CACJ,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,WAAW,CAAC;IACpC,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE;IAC/B,MAAM,EAAE;QACJ,+DAA+D;QAC/D,OAAO,EAAE;YACL,IAAI,EAAE,CAAC,kBAAkB,EAAE,YAAY,CAAC;YACxC,UAAU,EAAE,KAAK;YACjB,QAAQ,EAAE,KAAK;SAClB;KACJ;CACJ,CAAC,CAAA;AAEF,SAAS,cAAc,CAAC,GAAgD;IACpE,IAAI,CAAC,GAAG;QAAE,OAAO,SAAS,CAAA;IAE1B,IAAI,GAAG,CAAC,GAAG,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;QAC1B,OAAO,YAAY,CAAC,MAAM,CAAC;YACvB,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,GAAG,CAAC,GAAG,CAAC,IAAI;SACrB,CAAC,CAAA;IACN,CAAC;IAED,MAAM,OAAO,GAAG,GAAG,CAAC,GAA+D,CAAA;IACnF,OAAO,kBAAkB,CAAC,MAAM,CAAC;QAC7B,IAAI,EAAE,YAAY;QAClB,QAAQ,EAAE,OAAO,CAAC,QAAQ;QAC1B,IAAI,EAAE,cAAc,CAAC,GAAG,CAAC,IAAI,CAAE;QAC/B,KAAK,EAAE,cAAc,CAAC,GAAG,CAAC,KAAK,CAAC;KACnC,CAAC,CAAA;AACN,CAAC;AAGD,MAAM,UAAU,qBAAqB,CAAC,GAA+C;IACjF,OAAO,YAAY,CAAC,MAAM,CAAC;QACvB,OAAO,EAAE,cAAc,CAAC,GAAG,CAA6C;KAC3E,CAAC,CAAA;AACN,CAAC"}
|