@manehorizons/cadence-core 1.6.0 → 1.6.1
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/cli/commands/assumption.d.ts.map +1 -1
- package/dist/cli/commands/assumption.js +2 -1
- package/dist/cli/commands/assumption.js.map +1 -1
- package/dist/cli/commands/decision.d.ts.map +1 -1
- package/dist/cli/commands/decision.js +2 -1
- package/dist/cli/commands/decision.js.map +1 -1
- package/dist/cli/commands/draft-new.d.ts.map +1 -1
- package/dist/cli/commands/draft-new.js +2 -1
- package/dist/cli/commands/draft-new.js.map +1 -1
- package/dist/cli/commands/intelligence.d.ts.map +1 -1
- package/dist/cli/commands/intelligence.js +4 -1
- package/dist/cli/commands/intelligence.js.map +1 -1
- package/dist/cli/commands/milestone.js +1 -1
- package/dist/cli/commands/milestone.js.map +1 -1
- package/dist/cli/commands/recommendation.d.ts.map +1 -1
- package/dist/cli/commands/recommendation.js +2 -1
- package/dist/cli/commands/recommendation.js.map +1 -1
- package/dist/cli/commands/spec.d.ts.map +1 -1
- package/dist/cli/commands/spec.js +2 -1
- package/dist/cli/commands/spec.js.map +1 -1
- package/dist/intelligence/context.js +2 -1
- package/dist/intelligence/context.js.map +1 -1
- package/dist/intelligence/inspect.js +2 -1
- package/dist/intelligence/inspect.js.map +1 -1
- package/dist/intelligence/milestone.d.ts.map +1 -1
- package/dist/intelligence/milestone.js +2 -1
- package/dist/intelligence/milestone.js.map +1 -1
- package/dist/intelligence/recommend.d.ts.map +1 -1
- package/dist/intelligence/recommend.js +2 -1
- package/dist/intelligence/recommend.js.map +1 -1
- package/dist/intelligence/render-intelligence-audit.d.ts +1 -1
- package/dist/intelligence/render-intelligence-audit.d.ts.map +1 -1
- package/dist/intelligence/render-intelligence-stats.d.ts +1 -1
- package/dist/intelligence/render-intelligence-stats.d.ts.map +1 -1
- package/dist/intelligence/store/assumptions.d.ts +17 -0
- package/dist/intelligence/store/assumptions.d.ts.map +1 -0
- package/dist/intelligence/store/assumptions.js +63 -0
- package/dist/intelligence/store/assumptions.js.map +1 -0
- package/dist/intelligence/store/audit.d.ts +42 -0
- package/dist/intelligence/store/audit.d.ts.map +1 -0
- package/dist/intelligence/store/audit.js +88 -0
- package/dist/intelligence/store/audit.js.map +1 -0
- package/dist/intelligence/store/decisions.d.ts +19 -0
- package/dist/intelligence/store/decisions.d.ts.map +1 -0
- package/dist/intelligence/store/decisions.js +147 -0
- package/dist/intelligence/store/decisions.js.map +1 -0
- package/dist/intelligence/store/ids.d.ts +6 -0
- package/dist/intelligence/store/ids.d.ts.map +1 -0
- package/dist/intelligence/store/ids.js +44 -0
- package/dist/intelligence/store/ids.js.map +1 -0
- package/dist/intelligence/store/io.d.ts +10 -0
- package/dist/intelligence/store/io.d.ts.map +1 -0
- package/dist/intelligence/store/io.js +70 -0
- package/dist/intelligence/store/io.js.map +1 -0
- package/dist/intelligence/store/milestones.d.ts +4 -0
- package/dist/intelligence/store/milestones.d.ts.map +1 -0
- package/dist/intelligence/store/milestones.js +20 -0
- package/dist/intelligence/store/milestones.js.map +1 -0
- package/dist/intelligence/store/paths.d.ts +11 -0
- package/dist/intelligence/store/paths.d.ts.map +1 -0
- package/dist/intelligence/store/paths.js +42 -0
- package/dist/intelligence/store/paths.js.map +1 -0
- package/dist/intelligence/store/recommendations.d.ts +23 -0
- package/dist/intelligence/store/recommendations.d.ts.map +1 -0
- package/dist/intelligence/store/recommendations.js +115 -0
- package/dist/intelligence/store/recommendations.js.map +1 -0
- package/dist/intelligence/store/reconcile.d.ts +8 -0
- package/dist/intelligence/store/reconcile.d.ts.map +1 -0
- package/dist/intelligence/store/reconcile.js +42 -0
- package/dist/intelligence/store/reconcile.js.map +1 -0
- package/dist/intelligence/store/stats.d.ts +36 -0
- package/dist/intelligence/store/stats.d.ts.map +1 -0
- package/dist/intelligence/store/stats.js +106 -0
- package/dist/intelligence/store/stats.js.map +1 -0
- package/package.json +2 -2
- package/dist/intelligence/store.d.ts +0 -143
- package/dist/intelligence/store.d.ts.map +0 -1
- package/dist/intelligence/store.js +0 -701
- package/dist/intelligence/store.js.map +0 -1
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
import { type Assumption, type AssumptionLedger, type Evidence, type EvidenceLedger, type IntelligenceDecision, type IntelligenceDecisionLedger, type MilestoneLedger, type Recommendation, type RecommendationLedger, type RecommendationPriority, type RecommendationReadiness } from '@manehorizons/cadence-types';
|
|
2
|
-
export type AddRecommendationInput = {
|
|
3
|
-
title: string;
|
|
4
|
-
summary: string;
|
|
5
|
-
priority: RecommendationPriority;
|
|
6
|
-
readiness: RecommendationReadiness;
|
|
7
|
-
affectedAreas: string[];
|
|
8
|
-
affectedFiles: string[];
|
|
9
|
-
evidenceSummary?: string;
|
|
10
|
-
};
|
|
11
|
-
export declare function intelligenceDir(root: string): string;
|
|
12
|
-
export declare function readRecommendationLedger(root: string): Promise<RecommendationLedger>;
|
|
13
|
-
export declare function readEvidenceLedger(root: string): Promise<EvidenceLedger>;
|
|
14
|
-
export declare function readAssumptionLedger(root: string): Promise<AssumptionLedger>;
|
|
15
|
-
export declare function readIntelligenceDecisionLedger(root: string): Promise<IntelligenceDecisionLedger>;
|
|
16
|
-
export declare function addRecommendation(root: string, input: AddRecommendationInput): Promise<Recommendation>;
|
|
17
|
-
export type AddAssumptionInput = {
|
|
18
|
-
recommendationId: string;
|
|
19
|
-
text: string;
|
|
20
|
-
};
|
|
21
|
-
export declare function addAssumption(root: string, input: AddAssumptionInput): Promise<Assumption>;
|
|
22
|
-
export type AssumptionTransitionAction = 'validate' | 'reject' | 'reopen';
|
|
23
|
-
export type AssumptionTransitionResult = {
|
|
24
|
-
ok: true;
|
|
25
|
-
ledger: AssumptionLedger;
|
|
26
|
-
} | {
|
|
27
|
-
ok: false;
|
|
28
|
-
error: string;
|
|
29
|
-
};
|
|
30
|
-
export declare function applyAssumptionTransition(ledger: AssumptionLedger, id: string, action: AssumptionTransitionAction, _now?: Date): AssumptionTransitionResult;
|
|
31
|
-
export declare function runAssumptionTransition(root: string, id: string, action: AssumptionTransitionAction): Promise<AssumptionTransitionResult>;
|
|
32
|
-
export declare function deriveRecommendationLinks(recLedger: RecommendationLedger, asLedger: AssumptionLedger, decLedger: IntelligenceDecisionLedger): RecommendationLedger;
|
|
33
|
-
export type AddIntelligenceDecisionInput = {
|
|
34
|
-
recommendationId?: string;
|
|
35
|
-
title: string;
|
|
36
|
-
rationale: string;
|
|
37
|
-
};
|
|
38
|
-
export declare function addIntelligenceDecision(root: string, input: AddIntelligenceDecisionInput): Promise<IntelligenceDecision>;
|
|
39
|
-
export type DecisionTransitionAction = 'supersede' | 'rescind' | 'reactivate';
|
|
40
|
-
export type DecisionTransitionResult = {
|
|
41
|
-
ok: true;
|
|
42
|
-
ledger: IntelligenceDecisionLedger;
|
|
43
|
-
} | {
|
|
44
|
-
ok: false;
|
|
45
|
-
error: string;
|
|
46
|
-
};
|
|
47
|
-
export declare function deriveDecisionInverseLinks(ledger: IntelligenceDecisionLedger): IntelligenceDecisionLedger;
|
|
48
|
-
export declare function applyDecisionTransition(ledger: IntelligenceDecisionLedger, id: string, action: DecisionTransitionAction, by?: string, _now?: Date): DecisionTransitionResult;
|
|
49
|
-
export declare function runDecisionTransition(root: string, id: string, action: DecisionTransitionAction, by?: string): Promise<DecisionTransitionResult>;
|
|
50
|
-
export type RecommendationTransitionAction = 'convert';
|
|
51
|
-
export type RecommendationTransitionResult = {
|
|
52
|
-
ok: true;
|
|
53
|
-
ledger: RecommendationLedger;
|
|
54
|
-
} | {
|
|
55
|
-
ok: false;
|
|
56
|
-
error: string;
|
|
57
|
-
};
|
|
58
|
-
export declare function applyRecommendationTransition(ledger: RecommendationLedger, id: string, action: RecommendationTransitionAction, toPhase: string, now: Date): RecommendationTransitionResult;
|
|
59
|
-
export declare function runRecommendationTransition(root: string, id: string, action: RecommendationTransitionAction, toPhase: string): Promise<RecommendationTransitionResult>;
|
|
60
|
-
export type IntelligenceStats = {
|
|
61
|
-
recommendations: {
|
|
62
|
-
total: number;
|
|
63
|
-
byStatus: Record<Recommendation['status'], number>;
|
|
64
|
-
byReadiness: Record<Recommendation['readiness'], number>;
|
|
65
|
-
};
|
|
66
|
-
evidence: {
|
|
67
|
-
total: number;
|
|
68
|
-
byKind: Record<Evidence['kind'], number>;
|
|
69
|
-
};
|
|
70
|
-
assumptions: {
|
|
71
|
-
total: number;
|
|
72
|
-
byStatus: Record<Assumption['status'], number>;
|
|
73
|
-
};
|
|
74
|
-
decisions: {
|
|
75
|
-
total: number;
|
|
76
|
-
byStatus: Record<IntelligenceDecision['status'], number>;
|
|
77
|
-
untied: number;
|
|
78
|
-
};
|
|
79
|
-
links: {
|
|
80
|
-
brokenAssumptionLinks: number;
|
|
81
|
-
brokenDecisionLinks: number;
|
|
82
|
-
brokenEvidenceLinks: number;
|
|
83
|
-
};
|
|
84
|
-
perRec: Array<{
|
|
85
|
-
id: string;
|
|
86
|
-
title: string;
|
|
87
|
-
status: Recommendation['status'];
|
|
88
|
-
assumptionsByStatus: Record<Assumption['status'], number>;
|
|
89
|
-
decisionsByStatus: Record<IntelligenceDecision['status'], number>;
|
|
90
|
-
evidenceCount: number;
|
|
91
|
-
}>;
|
|
92
|
-
};
|
|
93
|
-
export declare function computeIntelligenceStats(recLedger: RecommendationLedger, evLedger: EvidenceLedger, asLedger: AssumptionLedger, decLedger: IntelligenceDecisionLedger): IntelligenceStats;
|
|
94
|
-
export type IntelligenceAuditFinding = {
|
|
95
|
-
kind: 'broken-assumption-link';
|
|
96
|
-
recId: string;
|
|
97
|
-
assumptionId: string;
|
|
98
|
-
} | {
|
|
99
|
-
kind: 'broken-decision-link';
|
|
100
|
-
recId: string;
|
|
101
|
-
decisionId: string;
|
|
102
|
-
} | {
|
|
103
|
-
kind: 'broken-evidence-link';
|
|
104
|
-
recId: string;
|
|
105
|
-
evidenceId: string;
|
|
106
|
-
} | {
|
|
107
|
-
kind: 'orphan-assumption';
|
|
108
|
-
assumptionId: string;
|
|
109
|
-
missingRecId: string;
|
|
110
|
-
} | {
|
|
111
|
-
kind: 'orphan-decision';
|
|
112
|
-
decisionId: string;
|
|
113
|
-
missingRecId: string;
|
|
114
|
-
} | {
|
|
115
|
-
kind: 'orphan-evidence';
|
|
116
|
-
evidenceId: string;
|
|
117
|
-
missingRecId: string;
|
|
118
|
-
} | {
|
|
119
|
-
kind: 'stale-supersededby';
|
|
120
|
-
decisionId: string;
|
|
121
|
-
missingTargetId: string;
|
|
122
|
-
} | {
|
|
123
|
-
kind: 'stale-converted-phase';
|
|
124
|
-
recommendationId: string;
|
|
125
|
-
missingPhaseId: string;
|
|
126
|
-
};
|
|
127
|
-
export type IntelligenceAuditReport = {
|
|
128
|
-
findings: IntelligenceAuditFinding[];
|
|
129
|
-
byKind: Record<IntelligenceAuditFinding['kind'], IntelligenceAuditFinding[]>;
|
|
130
|
-
};
|
|
131
|
-
export declare const AUDIT_KINDS: readonly ["broken-assumption-link", "broken-decision-link", "broken-evidence-link", "orphan-assumption", "orphan-decision", "orphan-evidence", "stale-supersededby", "stale-converted-phase"];
|
|
132
|
-
export type AuditKind = (typeof AUDIT_KINDS)[number];
|
|
133
|
-
export declare function computeIntelligenceAudit(recLedger: RecommendationLedger, evLedger: EvidenceLedger, asLedger: AssumptionLedger, decLedger: IntelligenceDecisionLedger, existingPhaseIds?: Set<string>): IntelligenceAuditReport;
|
|
134
|
-
export type IntelligenceReconcileResult = {
|
|
135
|
-
present: boolean;
|
|
136
|
-
recommendations: number;
|
|
137
|
-
assumptions: number;
|
|
138
|
-
decisions: number;
|
|
139
|
-
};
|
|
140
|
-
export declare function runIntelligenceReconcile(root: string): Promise<IntelligenceReconcileResult>;
|
|
141
|
-
export declare function readMilestoneLedger(root: string): Promise<MilestoneLedger>;
|
|
142
|
-
export declare function writeMilestoneLedger(root: string, ledger: MilestoneLedger): Promise<void>;
|
|
143
|
-
//# sourceMappingURL=store.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../src/intelligence/store.ts"],"names":[],"mappings":"AAGA,OAAO,EAWL,KAAK,UAAU,EACf,KAAK,gBAAgB,EACrB,KAAK,QAAQ,EACb,KAAK,cAAc,EACnB,KAAK,oBAAoB,EACzB,KAAK,0BAA0B,EAC/B,KAAK,eAAe,EACpB,KAAK,cAAc,EACnB,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAC7B,MAAM,6BAA6B,CAAC;AAgBrC,MAAM,MAAM,sBAAsB,GAAG;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,sBAAsB,CAAC;IACjC,SAAS,EAAE,uBAAuB,CAAC;IACnC,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAEpD;AA8BD,wBAAsB,wBAAwB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAK1F;AAED,wBAAsB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAK9E;AAED,wBAAsB,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAKlF;AAED,wBAAsB,8BAA8B,CAClD,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,0BAA0B,CAAC,CAKrC;AAyED,wBAAsB,iBAAiB,CACrC,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,sBAAsB,GAC5B,OAAO,CAAC,cAAc,CAAC,CAwCzB;AAED,MAAM,MAAM,kBAAkB,GAAG;IAC/B,gBAAgB,EAAE,MAAM,CAAC;IACzB,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AASF,wBAAsB,aAAa,CACjC,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,kBAAkB,GACxB,OAAO,CAAC,UAAU,CAAC,CAqBrB;AAED,MAAM,MAAM,0BAA0B,GAAG,UAAU,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAE1E,MAAM,MAAM,0BAA0B,GAClC;IAAE,EAAE,EAAE,IAAI,CAAC;IAAC,MAAM,EAAE,gBAAgB,CAAA;CAAE,GACtC;IAAE,EAAE,EAAE,KAAK,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAoBjC,wBAAgB,yBAAyB,CACvC,MAAM,EAAE,gBAAgB,EACxB,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,0BAA0B,EAClC,IAAI,CAAC,EAAE,IAAI,GACV,0BAA0B,CAmB5B;AAED,wBAAsB,uBAAuB,CAC3C,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,0BAA0B,GACjC,OAAO,CAAC,0BAA0B,CAAC,CAQrC;AAcD,wBAAgB,yBAAyB,CACvC,SAAS,EAAE,oBAAoB,EAC/B,QAAQ,EAAE,gBAAgB,EAC1B,SAAS,EAAE,0BAA0B,GACpC,oBAAoB,CAatB;AAED,MAAM,MAAM,4BAA4B,GAAG;IACzC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAYF,wBAAsB,uBAAuB,CAC3C,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,4BAA4B,GAClC,OAAO,CAAC,oBAAoB,CAAC,CAqC/B;AAED,MAAM,MAAM,wBAAwB,GAAG,WAAW,GAAG,SAAS,GAAG,YAAY,CAAC;AAE9E,MAAM,MAAM,wBAAwB,GAChC;IAAE,EAAE,EAAE,IAAI,CAAC;IAAC,MAAM,EAAE,0BAA0B,CAAA;CAAE,GAChD;IAAE,EAAE,EAAE,KAAK,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AA2CjC,wBAAgB,0BAA0B,CACxC,MAAM,EAAE,0BAA0B,GACjC,0BAA0B,CAU5B;AAED,wBAAgB,uBAAuB,CACrC,MAAM,EAAE,0BAA0B,EAClC,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,wBAAwB,EAChC,EAAE,CAAC,EAAE,MAAM,EACX,IAAI,CAAC,EAAE,IAAI,GACV,wBAAwB,CAqD1B;AAED,wBAAsB,qBAAqB,CACzC,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,wBAAwB,EAChC,EAAE,CAAC,EAAE,MAAM,GACV,OAAO,CAAC,wBAAwB,CAAC,CAQnC;AAKD,MAAM,MAAM,8BAA8B,GAAG,SAAS,CAAC;AAEvD,MAAM,MAAM,8BAA8B,GACtC;IAAE,EAAE,EAAE,IAAI,CAAC;IAAC,MAAM,EAAE,oBAAoB,CAAA;CAAE,GAC1C;IAAE,EAAE,EAAE,KAAK,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAgBjC,wBAAgB,6BAA6B,CAC3C,MAAM,EAAE,oBAAoB,EAC5B,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,8BAA8B,EACtC,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,IAAI,GACR,8BAA8B,CAoBhC;AAcD,wBAAsB,2BAA2B,CAC/C,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,8BAA8B,EACtC,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,8BAA8B,CAAC,CAczC;AAKD,MAAM,MAAM,iBAAiB,GAAG;IAC9B,eAAe,EAAE;QACf,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;QACnD,WAAW,EAAE,MAAM,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC,CAAC;KAC1D,CAAC;IACF,QAAQ,EAAE;QACR,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;KAC1C,CAAC;IACF,WAAW,EAAE;QACX,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;KAChD,CAAC;IACF,SAAS,EAAE;QACT,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC,oBAAoB,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;QACzD,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,KAAK,EAAE;QACL,qBAAqB,EAAE,MAAM,CAAC;QAC9B,mBAAmB,EAAE,MAAM,CAAC;QAC5B,mBAAmB,EAAE,MAAM,CAAC;KAC7B,CAAC;IACF,MAAM,EAAE,KAAK,CAAC;QACZ,EAAE,EAAE,MAAM,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,cAAc,CAAC,QAAQ,CAAC,CAAC;QACjC,mBAAmB,EAAE,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;QAC1D,iBAAiB,EAAE,MAAM,CAAC,oBAAoB,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;QAClE,aAAa,EAAE,MAAM,CAAC;KACvB,CAAC,CAAC;CACJ,CAAC;AAyBF,wBAAgB,wBAAwB,CACtC,SAAS,EAAE,oBAAoB,EAC/B,QAAQ,EAAE,cAAc,EACxB,QAAQ,EAAE,gBAAgB,EAC1B,SAAS,EAAE,0BAA0B,GACpC,iBAAiB,CA0FnB;AAED,MAAM,MAAM,wBAAwB,GAChC;IAAE,IAAI,EAAE,wBAAwB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,GACvE;IAAE,IAAI,EAAE,sBAAsB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,GACnE;IAAE,IAAI,EAAE,sBAAsB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,GACnE;IAAE,IAAI,EAAE,mBAAmB,CAAC;IAAC,YAAY,EAAE,MAAM,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,GACzE;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,UAAU,EAAE,MAAM,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,GACrE;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,UAAU,EAAE,MAAM,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,GACrE;IAAE,IAAI,EAAE,oBAAoB,CAAC;IAAC,UAAU,EAAE,MAAM,CAAC;IAAC,eAAe,EAAE,MAAM,CAAA;CAAE,GAC3E;IAAE,IAAI,EAAE,uBAAuB,CAAC;IAAC,gBAAgB,EAAE,MAAM,CAAC;IAAC,cAAc,EAAE,MAAM,CAAA;CAAE,CAAC;AAExF,MAAM,MAAM,uBAAuB,GAAG;IACpC,QAAQ,EAAE,wBAAwB,EAAE,CAAC;IACrC,MAAM,EAAE,MAAM,CAAC,wBAAwB,CAAC,MAAM,CAAC,EAAE,wBAAwB,EAAE,CAAC,CAAC;CAC9E,CAAC;AAEF,eAAO,MAAM,WAAW,+LASd,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,CAAC,CAAC;AAErD,wBAAgB,wBAAwB,CACtC,SAAS,EAAE,oBAAoB,EAC/B,QAAQ,EAAE,cAAc,EACxB,QAAQ,EAAE,gBAAgB,EAC1B,SAAS,EAAE,0BAA0B,EACrC,gBAAgB,GAAE,GAAG,CAAC,MAAM,CAAa,GACxC,uBAAuB,CAqFzB;AAED,MAAM,MAAM,2BAA2B,GAAG;IACxC,OAAO,EAAE,OAAO,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,wBAAsB,wBAAwB,CAC5C,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,2BAA2B,CAAC,CA+BtC;AAOD,wBAAsB,mBAAmB,CACvC,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,eAAe,CAAC,CAK1B;AAED,wBAAsB,oBAAoB,CACxC,IAAI,EAAE,MAAM,EACZ,MAAM,EAAE,eAAe,GACtB,OAAO,CAAC,IAAI,CAAC,CAMf"}
|