opencode-swarm-plugin 0.45.1 → 0.45.3
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 +68 -0
- package/dist/bin/swarm.js +883 -467
- package/dist/cass-tools.d.ts +75 -0
- package/dist/cass-tools.d.ts.map +1 -0
- package/dist/eval-capture.d.ts +6 -6
- package/dist/hive.d.ts +20 -20
- package/dist/hive.d.ts.map +1 -1
- package/dist/hive.js +79 -0
- package/dist/index.d.ts +91 -10
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +750 -524
- package/dist/memory-tools.d.ts.map +1 -1
- package/dist/plugin.js +594 -524
- package/dist/schemas/cell-events.d.ts +4 -4
- package/dist/schemas/cell.d.ts +10 -10
- package/dist/schemas/swarm-context.d.ts +2 -2
- package/dist/skills.d.ts +8 -8
- package/dist/skills.d.ts.map +1 -1
- package/dist/swarm-orchestrate.d.ts.map +1 -1
- package/dist/swarm-prompts.js +242 -29
- package/examples/plugin-wrapper-template.ts +108 -7
- package/package.json +2 -2
|
@@ -44,9 +44,9 @@ export declare const CellCreatedEventSchema: z.ZodObject<{
|
|
|
44
44
|
title: z.ZodString;
|
|
45
45
|
description: z.ZodOptional<z.ZodString>;
|
|
46
46
|
issue_type: z.ZodEnum<{
|
|
47
|
+
task: "task";
|
|
47
48
|
bug: "bug";
|
|
48
49
|
feature: "feature";
|
|
49
|
-
task: "task";
|
|
50
50
|
epic: "epic";
|
|
51
51
|
chore: "chore";
|
|
52
52
|
}>;
|
|
@@ -398,9 +398,9 @@ export declare const CellEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
398
398
|
title: z.ZodString;
|
|
399
399
|
description: z.ZodOptional<z.ZodString>;
|
|
400
400
|
issue_type: z.ZodEnum<{
|
|
401
|
+
task: "task";
|
|
401
402
|
bug: "bug";
|
|
402
403
|
feature: "feature";
|
|
403
|
-
task: "task";
|
|
404
404
|
epic: "epic";
|
|
405
405
|
chore: "chore";
|
|
406
406
|
}>;
|
|
@@ -718,9 +718,9 @@ export declare const BeadCreatedEventSchema: z.ZodObject<{
|
|
|
718
718
|
title: z.ZodString;
|
|
719
719
|
description: z.ZodOptional<z.ZodString>;
|
|
720
720
|
issue_type: z.ZodEnum<{
|
|
721
|
+
task: "task";
|
|
721
722
|
bug: "bug";
|
|
722
723
|
feature: "feature";
|
|
723
|
-
task: "task";
|
|
724
724
|
epic: "epic";
|
|
725
725
|
chore: "chore";
|
|
726
726
|
}>;
|
|
@@ -1030,9 +1030,9 @@ export declare const BeadEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1030
1030
|
title: z.ZodString;
|
|
1031
1031
|
description: z.ZodOptional<z.ZodString>;
|
|
1032
1032
|
issue_type: z.ZodEnum<{
|
|
1033
|
+
task: "task";
|
|
1033
1034
|
bug: "bug";
|
|
1034
1035
|
feature: "feature";
|
|
1035
|
-
task: "task";
|
|
1036
1036
|
epic: "epic";
|
|
1037
1037
|
chore: "chore";
|
|
1038
1038
|
}>;
|
package/dist/schemas/cell.d.ts
CHANGED
|
@@ -18,9 +18,9 @@ export declare const CellStatusSchema: z.ZodEnum<{
|
|
|
18
18
|
export type CellStatus = z.infer<typeof CellStatusSchema>;
|
|
19
19
|
/** Valid cell types */
|
|
20
20
|
export declare const CellTypeSchema: z.ZodEnum<{
|
|
21
|
+
task: "task";
|
|
21
22
|
bug: "bug";
|
|
22
23
|
feature: "feature";
|
|
23
|
-
task: "task";
|
|
24
24
|
epic: "epic";
|
|
25
25
|
chore: "chore";
|
|
26
26
|
}>;
|
|
@@ -57,9 +57,9 @@ export declare const CellSchema: z.ZodObject<{
|
|
|
57
57
|
}>>;
|
|
58
58
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
59
59
|
issue_type: z.ZodDefault<z.ZodEnum<{
|
|
60
|
+
task: "task";
|
|
60
61
|
bug: "bug";
|
|
61
62
|
feature: "feature";
|
|
62
|
-
task: "task";
|
|
63
63
|
epic: "epic";
|
|
64
64
|
chore: "chore";
|
|
65
65
|
}>>;
|
|
@@ -83,9 +83,9 @@ export type Cell = z.infer<typeof CellSchema>;
|
|
|
83
83
|
export declare const CellCreateArgsSchema: z.ZodObject<{
|
|
84
84
|
title: z.ZodString;
|
|
85
85
|
type: z.ZodDefault<z.ZodEnum<{
|
|
86
|
+
task: "task";
|
|
86
87
|
bug: "bug";
|
|
87
88
|
feature: "feature";
|
|
88
|
-
task: "task";
|
|
89
89
|
epic: "epic";
|
|
90
90
|
chore: "chore";
|
|
91
91
|
}>>;
|
|
@@ -123,9 +123,9 @@ export declare const CellQueryArgsSchema: z.ZodObject<{
|
|
|
123
123
|
closed: "closed";
|
|
124
124
|
}>>;
|
|
125
125
|
type: z.ZodOptional<z.ZodEnum<{
|
|
126
|
+
task: "task";
|
|
126
127
|
bug: "bug";
|
|
127
128
|
feature: "feature";
|
|
128
|
-
task: "task";
|
|
129
129
|
epic: "epic";
|
|
130
130
|
chore: "chore";
|
|
131
131
|
}>>;
|
|
@@ -199,9 +199,9 @@ export declare const EpicCreateResultSchema: z.ZodObject<{
|
|
|
199
199
|
}>>;
|
|
200
200
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
201
201
|
issue_type: z.ZodDefault<z.ZodEnum<{
|
|
202
|
+
task: "task";
|
|
202
203
|
bug: "bug";
|
|
203
204
|
feature: "feature";
|
|
204
|
-
task: "task";
|
|
205
205
|
epic: "epic";
|
|
206
206
|
chore: "chore";
|
|
207
207
|
}>>;
|
|
@@ -232,9 +232,9 @@ export declare const EpicCreateResultSchema: z.ZodObject<{
|
|
|
232
232
|
}>>;
|
|
233
233
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
234
234
|
issue_type: z.ZodDefault<z.ZodEnum<{
|
|
235
|
+
task: "task";
|
|
235
236
|
bug: "bug";
|
|
236
237
|
feature: "feature";
|
|
237
|
-
task: "task";
|
|
238
238
|
epic: "epic";
|
|
239
239
|
chore: "chore";
|
|
240
240
|
}>>;
|
|
@@ -267,9 +267,9 @@ export declare const BeadStatusSchema: z.ZodEnum<{
|
|
|
267
267
|
export type BeadStatus = CellStatus;
|
|
268
268
|
/** @deprecated Use CellTypeSchema instead */
|
|
269
269
|
export declare const BeadTypeSchema: z.ZodEnum<{
|
|
270
|
+
task: "task";
|
|
270
271
|
bug: "bug";
|
|
271
272
|
feature: "feature";
|
|
272
|
-
task: "task";
|
|
273
273
|
epic: "epic";
|
|
274
274
|
chore: "chore";
|
|
275
275
|
}>;
|
|
@@ -300,9 +300,9 @@ export declare const BeadSchema: z.ZodObject<{
|
|
|
300
300
|
}>>;
|
|
301
301
|
priority: z.ZodDefault<z.ZodNumber>;
|
|
302
302
|
issue_type: z.ZodDefault<z.ZodEnum<{
|
|
303
|
+
task: "task";
|
|
303
304
|
bug: "bug";
|
|
304
305
|
feature: "feature";
|
|
305
|
-
task: "task";
|
|
306
306
|
epic: "epic";
|
|
307
307
|
chore: "chore";
|
|
308
308
|
}>>;
|
|
@@ -327,9 +327,9 @@ export type Bead = Cell;
|
|
|
327
327
|
export declare const BeadCreateArgsSchema: z.ZodObject<{
|
|
328
328
|
title: z.ZodString;
|
|
329
329
|
type: z.ZodDefault<z.ZodEnum<{
|
|
330
|
+
task: "task";
|
|
330
331
|
bug: "bug";
|
|
331
332
|
feature: "feature";
|
|
332
|
-
task: "task";
|
|
333
333
|
epic: "epic";
|
|
334
334
|
chore: "chore";
|
|
335
335
|
}>>;
|
|
@@ -370,9 +370,9 @@ export declare const BeadQueryArgsSchema: z.ZodObject<{
|
|
|
370
370
|
closed: "closed";
|
|
371
371
|
}>>;
|
|
372
372
|
type: z.ZodOptional<z.ZodEnum<{
|
|
373
|
+
task: "task";
|
|
373
374
|
bug: "bug";
|
|
374
375
|
feature: "feature";
|
|
375
|
-
task: "task";
|
|
376
376
|
epic: "epic";
|
|
377
377
|
chore: "chore";
|
|
378
378
|
}>>;
|
|
@@ -70,8 +70,6 @@ export type SwarmBeadContext = z.infer<typeof SwarmBeadContextSchema>;
|
|
|
70
70
|
* Args for creating a swarm context
|
|
71
71
|
*/
|
|
72
72
|
export declare const CreateSwarmContextArgsSchema: z.ZodObject<{
|
|
73
|
-
dependencies: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
74
|
-
files: z.ZodArray<z.ZodString>;
|
|
75
73
|
epic_id: z.ZodString;
|
|
76
74
|
bead_id: z.ZodString;
|
|
77
75
|
strategy: z.ZodEnum<{
|
|
@@ -79,6 +77,8 @@ export declare const CreateSwarmContextArgsSchema: z.ZodObject<{
|
|
|
79
77
|
"feature-based": "feature-based";
|
|
80
78
|
"risk-based": "risk-based";
|
|
81
79
|
}>;
|
|
80
|
+
files: z.ZodArray<z.ZodString>;
|
|
81
|
+
dependencies: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
82
82
|
directives: z.ZodObject<{
|
|
83
83
|
shared_context: z.ZodString;
|
|
84
84
|
skills_to_load: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
package/dist/skills.d.ts
CHANGED
|
@@ -207,10 +207,10 @@ export declare const skills_create: {
|
|
|
207
207
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
208
208
|
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
209
209
|
directory: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
210
|
+
global: "global";
|
|
210
211
|
".opencode/skills": ".opencode/skills";
|
|
211
212
|
".claude/skills": ".claude/skills";
|
|
212
213
|
skills: "skills";
|
|
213
|
-
global: "global";
|
|
214
214
|
"global-claude": "global-claude";
|
|
215
215
|
}>>;
|
|
216
216
|
};
|
|
@@ -220,7 +220,7 @@ export declare const skills_create: {
|
|
|
220
220
|
body: string;
|
|
221
221
|
tags?: string[] | undefined;
|
|
222
222
|
tools?: string[] | undefined;
|
|
223
|
-
directory?: ".opencode/skills" | ".claude/skills" | "skills" | "global
|
|
223
|
+
directory?: "global" | ".opencode/skills" | ".claude/skills" | "skills" | "global-claude" | undefined;
|
|
224
224
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
225
225
|
};
|
|
226
226
|
/**
|
|
@@ -297,10 +297,10 @@ export declare const skills_init: {
|
|
|
297
297
|
name: import("zod").ZodString;
|
|
298
298
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
299
299
|
directory: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
300
|
+
global: "global";
|
|
300
301
|
".opencode/skills": ".opencode/skills";
|
|
301
302
|
".claude/skills": ".claude/skills";
|
|
302
303
|
skills: "skills";
|
|
303
|
-
global: "global";
|
|
304
304
|
}>>;
|
|
305
305
|
include_example_script: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
306
306
|
include_reference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -310,7 +310,7 @@ export declare const skills_init: {
|
|
|
310
310
|
include_example_script: boolean;
|
|
311
311
|
include_reference: boolean;
|
|
312
312
|
description?: string | undefined;
|
|
313
|
-
directory?: ".opencode/skills" | ".claude/skills" | "skills" |
|
|
313
|
+
directory?: "global" | ".opencode/skills" | ".claude/skills" | "skills" | undefined;
|
|
314
314
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
315
315
|
};
|
|
316
316
|
/**
|
|
@@ -370,10 +370,10 @@ export declare const skillsTools: {
|
|
|
370
370
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
371
371
|
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
372
372
|
directory: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
373
|
+
global: "global";
|
|
373
374
|
".opencode/skills": ".opencode/skills";
|
|
374
375
|
".claude/skills": ".claude/skills";
|
|
375
376
|
skills: "skills";
|
|
376
|
-
global: "global";
|
|
377
377
|
"global-claude": "global-claude";
|
|
378
378
|
}>>;
|
|
379
379
|
};
|
|
@@ -383,7 +383,7 @@ export declare const skillsTools: {
|
|
|
383
383
|
body: string;
|
|
384
384
|
tags?: string[] | undefined;
|
|
385
385
|
tools?: string[] | undefined;
|
|
386
|
-
directory?: ".opencode/skills" | ".claude/skills" | "skills" | "global
|
|
386
|
+
directory?: "global" | ".opencode/skills" | ".claude/skills" | "skills" | "global-claude" | undefined;
|
|
387
387
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
388
388
|
};
|
|
389
389
|
skills_update: {
|
|
@@ -441,10 +441,10 @@ export declare const skillsTools: {
|
|
|
441
441
|
name: import("zod").ZodString;
|
|
442
442
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
443
443
|
directory: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
444
|
+
global: "global";
|
|
444
445
|
".opencode/skills": ".opencode/skills";
|
|
445
446
|
".claude/skills": ".claude/skills";
|
|
446
447
|
skills: "skills";
|
|
447
|
-
global: "global";
|
|
448
448
|
}>>;
|
|
449
449
|
include_example_script: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
450
450
|
include_reference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -454,7 +454,7 @@ export declare const skillsTools: {
|
|
|
454
454
|
include_example_script: boolean;
|
|
455
455
|
include_reference: boolean;
|
|
456
456
|
description?: string | undefined;
|
|
457
|
-
directory?: ".opencode/skills" | ".claude/skills" | "skills" |
|
|
457
|
+
directory?: "global" | ".opencode/skills" | ".claude/skills" | "skills" | undefined;
|
|
458
458
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
459
459
|
};
|
|
460
460
|
};
|
package/dist/skills.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skills.d.ts","sourceRoot":"","sources":["../src/skills.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;
|
|
1
|
+
{"version":3,"file":"skills.d.ts","sourceRoot":"","sources":["../src/skills.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"swarm-orchestrate.d.ts","sourceRoot":"","sources":["../src/swarm-orchestrate.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAGH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,OAAO,EACL,KAAK,aAAa,EAEnB,MAAM,0BAA0B,CAAC;AAsDlC;;;;;;;;GAQG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE;IAC5C,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,sBAAsB,CAAC,EAAE,MAAM,EAAE,CAAC;IAClC,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,GAAG,aAAa,CA4BhB;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,wBAAgB,gBAAgB,CAC9B,aAAa,EAAE,MAAM,EAAE,EACvB,WAAW,EAAE,MAAM,EAAE,GACpB;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,UAAU,EAAE,MAAM,EAAE,CAAA;CAAE,CAqC1C;AAkaD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;CA8JrB,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;CAoFvB,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;CAoIzB,CAAC;AAEH;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;CA6E1B,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"swarm-orchestrate.d.ts","sourceRoot":"","sources":["../src/swarm-orchestrate.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAGH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,OAAO,EACL,KAAK,aAAa,EAEnB,MAAM,0BAA0B,CAAC;AAsDlC;;;;;;;;GAQG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE;IAC5C,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,sBAAsB,CAAC,EAAE,MAAM,EAAE,CAAC;IAClC,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,GAAG,aAAa,CA4BhB;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,wBAAgB,gBAAgB,CAC9B,aAAa,EAAE,MAAM,EAAE,EACvB,WAAW,EAAE,MAAM,EAAE,GACpB;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,UAAU,EAAE,MAAM,EAAE,CAAA;CAAE,CAqC1C;AAkaD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;CA8JrB,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;CAoFvB,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;CAoIzB,CAAC;AAEH;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;CA6E1B,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsxBzB,CAAC;AAEH;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0K/B,CAAC;AAwBH;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAUvD;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,uCAAuC;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,kCAAkC;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,2CAA2C;IAC3C,MAAM,EAAE,MAAM,CAAC;IACf,mCAAmC;IACnC,aAAa,EAAE,kBAAkB,CAAC;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,6CAA6C;IAC7C,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,gDAAgD;IAChD,kBAAkB,EAAE,wBAAwB,EAAE,CAAC;IAC/C,yCAAyC;IACzC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAClC,mDAAmD;IACnD,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,wBAAsB,gBAAgB,CACpC,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE;IAAE,aAAa,CAAC,EAAE,OAAO,CAAA;CAAE,GACpC,OAAO,CAAC,cAAc,CAAC,CAgDzB;AAED;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;CAqC/B,CAAC;AAEH;;;;;;;;GAQG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;CA6CjC,CAAC;AAEH;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;CAmClC,CAAC;AAEH;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;CAmB9B,CAAC;AAEH;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;CAoJ9B,CAAC;AA4BH;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwG3B,CAAC;AAEH;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;CAuGxB,CAAC;AAEH;;;;;;;;GAQG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgMtB,CAAC;AAMH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAe5B,CAAC"}
|