@ttt-productions/ttt-core 0.33.0 → 0.35.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/dist/doc-schemas/ncii/allegations.d.ts +95 -1
- package/dist/doc-schemas/ncii/allegations.d.ts.map +1 -1
- package/dist/doc-schemas/ncii/allegations.js +12 -2
- package/dist/doc-schemas/ncii/allegations.js.map +1 -1
- package/dist/doc-schemas/registry.d.ts +90 -0
- package/dist/doc-schemas/registry.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
/** Who alleged: an authenticated user
|
|
2
|
+
/** Who alleged: an authenticated user, an anonymous member of the public, or an `operator` — an
|
|
3
|
+
* admin who found existing on-platform content and marked it as NCII-linked evidence (the
|
|
4
|
+
* admin-only "NCII linked evidence" report option). Operator allegations are the unlinked
|
|
5
|
+
* evidence POOL (status `received`, no `caseId`) until an operator links one to a case. */
|
|
3
6
|
export declare const NciiAllegationReporterTypeSchema: z.ZodEnum<{
|
|
7
|
+
operator: "operator";
|
|
4
8
|
authenticatedUser: "authenticatedUser";
|
|
5
9
|
anonymousPublic: "anonymousPublic";
|
|
6
10
|
}>;
|
|
@@ -22,6 +26,7 @@ export declare const NciiAllegationV1Schema: z.ZodObject<{
|
|
|
22
26
|
allegationId: z.ZodString;
|
|
23
27
|
caseId: z.ZodOptional<z.ZodString>;
|
|
24
28
|
reporterType: z.ZodEnum<{
|
|
29
|
+
operator: "operator";
|
|
25
30
|
authenticatedUser: "authenticatedUser";
|
|
26
31
|
anonymousPublic: "anonymousPublic";
|
|
27
32
|
}>;
|
|
@@ -93,6 +98,95 @@ export declare const NciiAllegationV1Schema: z.ZodObject<{
|
|
|
93
98
|
dismissed: "dismissed";
|
|
94
99
|
escalated: "escalated";
|
|
95
100
|
}>;
|
|
101
|
+
resolvedTarget: z.ZodOptional<z.ZodObject<{
|
|
102
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
103
|
+
itemType: z.ZodEnum<{
|
|
104
|
+
username: "username";
|
|
105
|
+
"craft-skill": "craft-skill";
|
|
106
|
+
"commission-listing": "commission-listing";
|
|
107
|
+
"commission-proposal": "commission-proposal";
|
|
108
|
+
"square-streetz-post": "square-streetz-post";
|
|
109
|
+
"profile-picture": "profile-picture";
|
|
110
|
+
"guild-invite-message": "guild-invite-message";
|
|
111
|
+
"guild-chat-message": "guild-chat-message";
|
|
112
|
+
"hall-library-item": "hall-library-item";
|
|
113
|
+
audition: "audition";
|
|
114
|
+
"audition-entry": "audition-entry";
|
|
115
|
+
"work-project": "work-project";
|
|
116
|
+
"work-asset": "work-asset";
|
|
117
|
+
"work-realm": "work-realm";
|
|
118
|
+
}>;
|
|
119
|
+
canonicalParentPath: z.ZodString;
|
|
120
|
+
canonicalItemId: z.ZodString;
|
|
121
|
+
revision: z.ZodNumber;
|
|
122
|
+
ownerUid: z.ZodString;
|
|
123
|
+
ownerBlockKey: z.ZodString;
|
|
124
|
+
mediaAssetId: z.ZodOptional<z.ZodString>;
|
|
125
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
126
|
+
messageId: z.ZodOptional<z.ZodString>;
|
|
127
|
+
attachmentId: z.ZodOptional<z.ZodString>;
|
|
128
|
+
locator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
129
|
+
kind: z.ZodLiteral<"mediaAsset">;
|
|
130
|
+
mediaAssetId: z.ZodString;
|
|
131
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
132
|
+
kind: z.ZodLiteral<"hallItem">;
|
|
133
|
+
hallItemId: z.ZodString;
|
|
134
|
+
subItemId: z.ZodOptional<z.ZodString>;
|
|
135
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
136
|
+
kind: z.ZodLiteral<"squarePost">;
|
|
137
|
+
postId: z.ZodString;
|
|
138
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
139
|
+
kind: z.ZodLiteral<"profileImage">;
|
|
140
|
+
profileUid: z.ZodString;
|
|
141
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
142
|
+
kind: z.ZodLiteral<"username">;
|
|
143
|
+
profileUid: z.ZodString;
|
|
144
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
145
|
+
kind: z.ZodLiteral<"craftSkill">;
|
|
146
|
+
profileUid: z.ZodString;
|
|
147
|
+
craftSkillId: z.ZodString;
|
|
148
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
149
|
+
kind: z.ZodLiteral<"commissionListing">;
|
|
150
|
+
commissionListingId: z.ZodString;
|
|
151
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
152
|
+
kind: z.ZodLiteral<"commissionProposal">;
|
|
153
|
+
commissionListingId: z.ZodString;
|
|
154
|
+
commissionProposalId: z.ZodString;
|
|
155
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
156
|
+
kind: z.ZodLiteral<"workProject">;
|
|
157
|
+
workProjectId: z.ZodString;
|
|
158
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
159
|
+
kind: z.ZodLiteral<"workAsset">;
|
|
160
|
+
workProjectId: z.ZodString;
|
|
161
|
+
workAssetId: z.ZodString;
|
|
162
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
163
|
+
kind: z.ZodLiteral<"workRealm">;
|
|
164
|
+
workRealmId: z.ZodString;
|
|
165
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
166
|
+
kind: z.ZodLiteral<"audition">;
|
|
167
|
+
auditionId: z.ZodString;
|
|
168
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
169
|
+
kind: z.ZodLiteral<"auditionEntry">;
|
|
170
|
+
auditionId: z.ZodString;
|
|
171
|
+
auditionEntryId: z.ZodString;
|
|
172
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
173
|
+
kind: z.ZodLiteral<"guildInviteMessage">;
|
|
174
|
+
channelId: z.ZodString;
|
|
175
|
+
messageId: z.ZodString;
|
|
176
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
177
|
+
kind: z.ZodLiteral<"chatAttachment">;
|
|
178
|
+
channelId: z.ZodString;
|
|
179
|
+
messageId: z.ZodString;
|
|
180
|
+
attachmentId: z.ZodString;
|
|
181
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
182
|
+
kind: z.ZodLiteral<"url">;
|
|
183
|
+
url: z.ZodString;
|
|
184
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
185
|
+
kind: z.ZodLiteral<"additionalText">;
|
|
186
|
+
textRef: z.ZodString;
|
|
187
|
+
}, z.core.$strict>], "kind">;
|
|
188
|
+
resolvedAt: z.ZodNumber;
|
|
189
|
+
}, z.core.$strict>>;
|
|
96
190
|
}, z.core.$strict>;
|
|
97
191
|
export type NciiAllegationV1 = z.infer<typeof NciiAllegationV1Schema>;
|
|
98
192
|
//# sourceMappingURL=allegations.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"allegations.d.ts","sourceRoot":"","sources":["../../../src/doc-schemas/ncii/allegations.ts"],"names":[],"mappings":"AAqBA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"allegations.d.ts","sourceRoot":"","sources":["../../../src/doc-schemas/ncii/allegations.ts"],"names":[],"mappings":"AAqBA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB;;;4FAG4F;AAC5F,eAAO,MAAM,gCAAgC;;;;EAA+D,CAAC;AAC7G,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAE1F;8EAC8E;AAC9E,eAAO,MAAM,0BAA0B;;;;;EAA2D,CAAC;AACnG,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E;;oDAEoD;AACpD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAgBxB,CAAC;AACZ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -20,11 +20,15 @@
|
|
|
20
20
|
// documented on the schema below.
|
|
21
21
|
import { z } from 'zod';
|
|
22
22
|
import { TargetLocatorV1Schema } from '../safety/foundation.js';
|
|
23
|
+
import { ResolvedReportTargetV1Schema } from '../safety/report.js';
|
|
23
24
|
// ===========================================================================
|
|
24
25
|
// §A11 (1) — nciiAllegations/{allegationId}
|
|
25
26
|
// ===========================================================================
|
|
26
|
-
/** Who alleged: an authenticated user
|
|
27
|
-
|
|
27
|
+
/** Who alleged: an authenticated user, an anonymous member of the public, or an `operator` — an
|
|
28
|
+
* admin who found existing on-platform content and marked it as NCII-linked evidence (the
|
|
29
|
+
* admin-only "NCII linked evidence" report option). Operator allegations are the unlinked
|
|
30
|
+
* evidence POOL (status `received`, no `caseId`) until an operator links one to a case. */
|
|
31
|
+
export const NciiAllegationReporterTypeSchema = z.enum(['authenticatedUser', 'anonymousPublic', 'operator']);
|
|
28
32
|
/** Allegation lifecycle status — `received` until triaged into one of the
|
|
29
33
|
* terminal/linked states. An allegation NEVER becomes a statutory request. */
|
|
30
34
|
export const NciiAllegationStatusSchema = z.enum(['received', 'linked', 'dismissed', 'escalated']);
|
|
@@ -41,5 +45,11 @@ export const NciiAllegationV1Schema = z.object({
|
|
|
41
45
|
targetLocator: TargetLocatorV1Schema,
|
|
42
46
|
allegationReason: z.string(), // free-text reason; NEVER substitutes for a statutory request
|
|
43
47
|
status: NciiAllegationStatusSchema,
|
|
48
|
+
// For an OPERATOR-marked evidence allegation (reporterType 'operator'): the server-resolved
|
|
49
|
+
// target captured at mark time (owner / canonical parent+item / revision). Carried so the
|
|
50
|
+
// link-to-case step can arm the `nciiTemporary` preservation hold and pre-fill the ban target
|
|
51
|
+
// WITHOUT re-resolving (a TargetLocatorV1 kind does not map cleanly back to a report itemType).
|
|
52
|
+
// Absent on authenticatedUser / anonymousPublic allegations.
|
|
53
|
+
resolvedTarget: ResolvedReportTargetV1Schema.optional(),
|
|
44
54
|
}).strict();
|
|
45
55
|
//# sourceMappingURL=allegations.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"allegations.js","sourceRoot":"","sources":["../../../src/doc-schemas/ncii/allegations.ts"],"names":[],"mappings":"AAAA,oEAAoE;AACpE,EAAE;AACF,kFAAkF;AAClF,iFAAiF;AACjF,8EAA8E;AAC9E,4EAA4E;AAC5E,gEAAgE;AAChE,EAAE;AACF,0EAA0E;AAC1E,4EAA4E;AAC5E,2BAA2B;AAC3B,EAAE;AACF,kFAAkF;AAClF,6EAA6E;AAC7E,iCAAiC;AACjC,EAAE;AACF,8EAA8E;AAC9E,kFAAkF;AAClF,4EAA4E;AAC5E,kCAAkC;AAElC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"allegations.js","sourceRoot":"","sources":["../../../src/doc-schemas/ncii/allegations.ts"],"names":[],"mappings":"AAAA,oEAAoE;AACpE,EAAE;AACF,kFAAkF;AAClF,iFAAiF;AACjF,8EAA8E;AAC9E,4EAA4E;AAC5E,gEAAgE;AAChE,EAAE;AACF,0EAA0E;AAC1E,4EAA4E;AAC5E,2BAA2B;AAC3B,EAAE;AACF,kFAAkF;AAClF,6EAA6E;AAC7E,iCAAiC;AACjC,EAAE;AACF,8EAA8E;AAC9E,kFAAkF;AAClF,4EAA4E;AAC5E,kCAAkC;AAElC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,4BAA4B,EAAE,MAAM,qBAAqB,CAAC;AAEnE,8EAA8E;AAC9E,4CAA4C;AAC5C,8EAA8E;AAE9E;;;4FAG4F;AAC5F,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,mBAAmB,EAAE,iBAAiB,EAAE,UAAU,CAAC,CAAC,CAAC;AAG7G;8EAC8E;AAC9E,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC;AAGnG;;oDAEoD;AACpD,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;IAC3B,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACpC,YAAY,EAAE,gCAAgC;IAC9C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,uFAAuF;IACvF,aAAa,EAAE,qBAAqB;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,8DAA8D;IAC5F,MAAM,EAAE,0BAA0B;IAClC,4FAA4F;IAC5F,0FAA0F;IAC1F,8FAA8F;IAC9F,gGAAgG;IAChG,6DAA6D;IAC7D,cAAc,EAAE,4BAA4B,CAAC,QAAQ,EAAE;CACxD,CAAC,CAAC,MAAM,EAAE,CAAC"}
|
|
@@ -4469,6 +4469,7 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
4469
4469
|
allegationId: z.ZodString;
|
|
4470
4470
|
caseId: z.ZodOptional<z.ZodString>;
|
|
4471
4471
|
reporterType: z.ZodEnum<{
|
|
4472
|
+
operator: "operator";
|
|
4472
4473
|
authenticatedUser: "authenticatedUser";
|
|
4473
4474
|
anonymousPublic: "anonymousPublic";
|
|
4474
4475
|
}>;
|
|
@@ -4540,6 +4541,95 @@ export declare const COLLECTION_SCHEMAS: {
|
|
|
4540
4541
|
dismissed: "dismissed";
|
|
4541
4542
|
escalated: "escalated";
|
|
4542
4543
|
}>;
|
|
4544
|
+
resolvedTarget: z.ZodOptional<z.ZodObject<{
|
|
4545
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
4546
|
+
itemType: z.ZodEnum<{
|
|
4547
|
+
username: "username";
|
|
4548
|
+
"craft-skill": "craft-skill";
|
|
4549
|
+
"commission-listing": "commission-listing";
|
|
4550
|
+
"commission-proposal": "commission-proposal";
|
|
4551
|
+
"square-streetz-post": "square-streetz-post";
|
|
4552
|
+
"profile-picture": "profile-picture";
|
|
4553
|
+
"guild-invite-message": "guild-invite-message";
|
|
4554
|
+
"guild-chat-message": "guild-chat-message";
|
|
4555
|
+
"hall-library-item": "hall-library-item";
|
|
4556
|
+
audition: "audition";
|
|
4557
|
+
"audition-entry": "audition-entry";
|
|
4558
|
+
"work-project": "work-project";
|
|
4559
|
+
"work-asset": "work-asset";
|
|
4560
|
+
"work-realm": "work-realm";
|
|
4561
|
+
}>;
|
|
4562
|
+
canonicalParentPath: z.ZodString;
|
|
4563
|
+
canonicalItemId: z.ZodString;
|
|
4564
|
+
revision: z.ZodNumber;
|
|
4565
|
+
ownerUid: z.ZodString;
|
|
4566
|
+
ownerBlockKey: z.ZodString;
|
|
4567
|
+
mediaAssetId: z.ZodOptional<z.ZodString>;
|
|
4568
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
4569
|
+
messageId: z.ZodOptional<z.ZodString>;
|
|
4570
|
+
attachmentId: z.ZodOptional<z.ZodString>;
|
|
4571
|
+
locator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4572
|
+
kind: z.ZodLiteral<"mediaAsset">;
|
|
4573
|
+
mediaAssetId: z.ZodString;
|
|
4574
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4575
|
+
kind: z.ZodLiteral<"hallItem">;
|
|
4576
|
+
hallItemId: z.ZodString;
|
|
4577
|
+
subItemId: z.ZodOptional<z.ZodString>;
|
|
4578
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4579
|
+
kind: z.ZodLiteral<"squarePost">;
|
|
4580
|
+
postId: z.ZodString;
|
|
4581
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4582
|
+
kind: z.ZodLiteral<"profileImage">;
|
|
4583
|
+
profileUid: z.ZodString;
|
|
4584
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4585
|
+
kind: z.ZodLiteral<"username">;
|
|
4586
|
+
profileUid: z.ZodString;
|
|
4587
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4588
|
+
kind: z.ZodLiteral<"craftSkill">;
|
|
4589
|
+
profileUid: z.ZodString;
|
|
4590
|
+
craftSkillId: z.ZodString;
|
|
4591
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4592
|
+
kind: z.ZodLiteral<"commissionListing">;
|
|
4593
|
+
commissionListingId: z.ZodString;
|
|
4594
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4595
|
+
kind: z.ZodLiteral<"commissionProposal">;
|
|
4596
|
+
commissionListingId: z.ZodString;
|
|
4597
|
+
commissionProposalId: z.ZodString;
|
|
4598
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4599
|
+
kind: z.ZodLiteral<"workProject">;
|
|
4600
|
+
workProjectId: z.ZodString;
|
|
4601
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4602
|
+
kind: z.ZodLiteral<"workAsset">;
|
|
4603
|
+
workProjectId: z.ZodString;
|
|
4604
|
+
workAssetId: z.ZodString;
|
|
4605
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4606
|
+
kind: z.ZodLiteral<"workRealm">;
|
|
4607
|
+
workRealmId: z.ZodString;
|
|
4608
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4609
|
+
kind: z.ZodLiteral<"audition">;
|
|
4610
|
+
auditionId: z.ZodString;
|
|
4611
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4612
|
+
kind: z.ZodLiteral<"auditionEntry">;
|
|
4613
|
+
auditionId: z.ZodString;
|
|
4614
|
+
auditionEntryId: z.ZodString;
|
|
4615
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4616
|
+
kind: z.ZodLiteral<"guildInviteMessage">;
|
|
4617
|
+
channelId: z.ZodString;
|
|
4618
|
+
messageId: z.ZodString;
|
|
4619
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4620
|
+
kind: z.ZodLiteral<"chatAttachment">;
|
|
4621
|
+
channelId: z.ZodString;
|
|
4622
|
+
messageId: z.ZodString;
|
|
4623
|
+
attachmentId: z.ZodString;
|
|
4624
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4625
|
+
kind: z.ZodLiteral<"url">;
|
|
4626
|
+
url: z.ZodString;
|
|
4627
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4628
|
+
kind: z.ZodLiteral<"additionalText">;
|
|
4629
|
+
textRef: z.ZodString;
|
|
4630
|
+
}, z.core.$strict>], "kind">;
|
|
4631
|
+
resolvedAt: z.ZodNumber;
|
|
4632
|
+
}, z.core.$strict>>;
|
|
4543
4633
|
}, z.core.$strict>;
|
|
4544
4634
|
readonly 'takeItDownRequests/{requestId}': z.ZodObject<{
|
|
4545
4635
|
schemaVersion: z.ZodLiteral<1>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../src/doc-schemas/registry.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoL7B,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../src/doc-schemas/registry.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoL7B,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2LkB,CAAC;AAElD,MAAM,MAAM,wBAAwB,GAAG,MAAM,OAAO,kBAAkB,CAAC;AAEvE;;;;;;;;;GASG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;CAaiC,CAAC;AAEvE;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,mBAAmB,EAAE,SAAS,MAAM,EAIvC,CAAC"}
|