@dot-ai/adapter-openclaw 0.5.2
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/LICENSE +21 -0
- package/dist/__tests__/format.test.d.ts +2 -0
- package/dist/__tests__/format.test.d.ts.map +1 -0
- package/dist/__tests__/format.test.js +121 -0
- package/dist/__tests__/format.test.js.map +1 -0
- package/dist/index.d.ts +35 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +118 -0
- package/dist/index.js.map +1 -0
- package/package.json +35 -0
- package/src/__tests__/format.test.ts +134 -0
- package/src/index.ts +176 -0
- package/tsconfig.json +24 -0
- package/tsconfig.tsbuildinfo +1 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jonathan Gelin
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"format.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/format.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { describe, it, expect } from 'vitest';
|
|
2
|
+
import { formatContext } from '@dot-ai/core';
|
|
3
|
+
function makeEmptyContext() {
|
|
4
|
+
return {
|
|
5
|
+
prompt: '',
|
|
6
|
+
labels: [],
|
|
7
|
+
identities: [],
|
|
8
|
+
memories: [],
|
|
9
|
+
skills: [],
|
|
10
|
+
tools: [],
|
|
11
|
+
routing: { model: 'default', reason: 'no match' },
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
describe('formatContext', () => {
|
|
15
|
+
it('returns empty string for empty context', () => {
|
|
16
|
+
const ctx = makeEmptyContext();
|
|
17
|
+
expect(formatContext(ctx)).toBe('');
|
|
18
|
+
});
|
|
19
|
+
it('orders identities by priority (highest first)', () => {
|
|
20
|
+
const ctx = makeEmptyContext();
|
|
21
|
+
ctx.identities = [
|
|
22
|
+
{ type: 'soul', content: 'Soul content', source: 'file', priority: 1 },
|
|
23
|
+
{ type: 'agents', content: 'Agents content', source: 'file', priority: 10 },
|
|
24
|
+
{ type: 'user', content: 'User content', source: 'file', priority: 5 },
|
|
25
|
+
];
|
|
26
|
+
const result = formatContext(ctx);
|
|
27
|
+
const agentsPos = result.indexOf('Agents content');
|
|
28
|
+
const userPos = result.indexOf('User content');
|
|
29
|
+
const soulPos = result.indexOf('Soul content');
|
|
30
|
+
expect(agentsPos).toBeLessThan(userPos);
|
|
31
|
+
expect(userPos).toBeLessThan(soulPos);
|
|
32
|
+
});
|
|
33
|
+
it('skips identities with no content', () => {
|
|
34
|
+
const ctx = makeEmptyContext();
|
|
35
|
+
ctx.identities = [
|
|
36
|
+
{ type: 'agents', content: '', source: 'file', priority: 10 },
|
|
37
|
+
{ type: 'soul', content: 'Soul content', source: 'file', priority: 1 },
|
|
38
|
+
];
|
|
39
|
+
const result = formatContext(ctx);
|
|
40
|
+
expect(result).toBe('Soul content');
|
|
41
|
+
});
|
|
42
|
+
it('includes memories section with up to 10 entries', () => {
|
|
43
|
+
const ctx = makeEmptyContext();
|
|
44
|
+
ctx.memories = Array.from({ length: 15 }, (_, i) => ({
|
|
45
|
+
content: `Memory ${i}`,
|
|
46
|
+
type: 'fact',
|
|
47
|
+
source: 'file',
|
|
48
|
+
}));
|
|
49
|
+
const result = formatContext(ctx);
|
|
50
|
+
expect(result).toContain('## Relevant Memory');
|
|
51
|
+
// Only first 10 should appear
|
|
52
|
+
expect(result).toContain('Memory 0');
|
|
53
|
+
expect(result).toContain('Memory 9');
|
|
54
|
+
expect(result).not.toContain('Memory 10');
|
|
55
|
+
});
|
|
56
|
+
it('includes memory date when present', () => {
|
|
57
|
+
const ctx = makeEmptyContext();
|
|
58
|
+
ctx.memories = [{ content: 'A fact', type: 'fact', source: 'file', date: '2026-03-01' }];
|
|
59
|
+
const result = formatContext(ctx);
|
|
60
|
+
expect(result).toContain('A fact (2026-03-01)');
|
|
61
|
+
});
|
|
62
|
+
it('omits memory date when absent', () => {
|
|
63
|
+
const ctx = makeEmptyContext();
|
|
64
|
+
ctx.memories = [{ content: 'A fact', type: 'fact', source: 'file' }];
|
|
65
|
+
const result = formatContext(ctx);
|
|
66
|
+
expect(result).toContain('- A fact');
|
|
67
|
+
expect(result).not.toContain('- A fact (');
|
|
68
|
+
});
|
|
69
|
+
it('includes skills section only for skills with content', () => {
|
|
70
|
+
const ctx = makeEmptyContext();
|
|
71
|
+
ctx.skills = [
|
|
72
|
+
{ name: 'skill-with-content', description: 'Has content', labels: [], content: 'Skill body' },
|
|
73
|
+
{ name: 'skill-no-content', description: 'No content', labels: [] },
|
|
74
|
+
];
|
|
75
|
+
const result = formatContext(ctx);
|
|
76
|
+
expect(result).toContain('## Active Skills');
|
|
77
|
+
expect(result).toContain('### skill-with-content');
|
|
78
|
+
expect(result).toContain('Skill body');
|
|
79
|
+
expect(result).not.toContain('### skill-no-content');
|
|
80
|
+
});
|
|
81
|
+
it('omits skills section when no skills have content', () => {
|
|
82
|
+
const ctx = makeEmptyContext();
|
|
83
|
+
ctx.skills = [
|
|
84
|
+
{ name: 'skill-a', description: 'No content', labels: [] },
|
|
85
|
+
];
|
|
86
|
+
const result = formatContext(ctx);
|
|
87
|
+
expect(result).not.toContain('## Active Skills');
|
|
88
|
+
});
|
|
89
|
+
it('includes tools section', () => {
|
|
90
|
+
const ctx = makeEmptyContext();
|
|
91
|
+
ctx.tools = [
|
|
92
|
+
{ name: 'my-tool', description: 'Does things', labels: [], config: {}, source: 'file' },
|
|
93
|
+
];
|
|
94
|
+
const result = formatContext(ctx);
|
|
95
|
+
expect(result).toContain('## Available Tools');
|
|
96
|
+
expect(result).toContain('**my-tool**: Does things');
|
|
97
|
+
});
|
|
98
|
+
it('includes routing section when model is not default', () => {
|
|
99
|
+
const ctx = makeEmptyContext();
|
|
100
|
+
ctx.routing = { model: 'opus', reason: 'complex task' };
|
|
101
|
+
const result = formatContext(ctx);
|
|
102
|
+
expect(result).toContain('## Model Routing');
|
|
103
|
+
expect(result).toContain('**opus**');
|
|
104
|
+
expect(result).toContain('complex task');
|
|
105
|
+
});
|
|
106
|
+
it('omits routing section when model is default', () => {
|
|
107
|
+
const ctx = makeEmptyContext();
|
|
108
|
+
ctx.routing = { model: 'default', reason: 'no match' };
|
|
109
|
+
const result = formatContext(ctx);
|
|
110
|
+
expect(result).not.toContain('## Model Routing');
|
|
111
|
+
});
|
|
112
|
+
it('joins all sections with separator', () => {
|
|
113
|
+
const ctx = makeEmptyContext();
|
|
114
|
+
ctx.identities = [{ type: 'agents', content: 'Identity', source: 'file', priority: 1 }];
|
|
115
|
+
ctx.memories = [{ content: 'Memory', type: 'fact', source: 'file' }];
|
|
116
|
+
ctx.routing = { model: 'sonnet', reason: 'matched' };
|
|
117
|
+
const result = formatContext(ctx);
|
|
118
|
+
expect(result).toContain('\n\n---\n\n');
|
|
119
|
+
});
|
|
120
|
+
});
|
|
121
|
+
//# sourceMappingURL=format.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"format.test.js","sourceRoot":"","sources":["../../src/__tests__/format.test.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
interface OpenClawLogger {
|
|
2
|
+
info(msg: string): void;
|
|
3
|
+
debug?(msg: string): void;
|
|
4
|
+
}
|
|
5
|
+
interface OpenClawPluginApi {
|
|
6
|
+
logger: OpenClawLogger;
|
|
7
|
+
pluginConfig?: Record<string, unknown>;
|
|
8
|
+
on(event: string, handler: (event: unknown, ctx: {
|
|
9
|
+
workspaceDir?: string;
|
|
10
|
+
sessionKey?: string;
|
|
11
|
+
prompt?: string;
|
|
12
|
+
}) => Promise<{
|
|
13
|
+
prependContext?: string;
|
|
14
|
+
} | void> | void, options?: {
|
|
15
|
+
priority?: number;
|
|
16
|
+
}): void;
|
|
17
|
+
registerService(service: {
|
|
18
|
+
id: string;
|
|
19
|
+
start(ctx: {
|
|
20
|
+
logger: OpenClawLogger;
|
|
21
|
+
}): void;
|
|
22
|
+
stop(ctx: {
|
|
23
|
+
logger: OpenClawLogger;
|
|
24
|
+
}): void;
|
|
25
|
+
}): void;
|
|
26
|
+
}
|
|
27
|
+
declare const plugin: {
|
|
28
|
+
id: string;
|
|
29
|
+
name: string;
|
|
30
|
+
version: string;
|
|
31
|
+
description: string;
|
|
32
|
+
register(api: OpenClawPluginApi): void;
|
|
33
|
+
};
|
|
34
|
+
export default plugin;
|
|
35
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAsBA,UAAU,cAAc;IACtB,IAAI,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,KAAK,CAAC,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3B;AAED,UAAU,iBAAiB;IACzB,MAAM,EAAE,cAAc,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACvC,EAAE,CACA,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,CACP,KAAK,EAAE,OAAO,EACd,GAAG,EAAE;QAAE,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,KACjE,OAAO,CAAC;QAAE,cAAc,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC,GAAG,IAAI,EACvD,OAAO,CAAC,EAAE;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,GAC9B,IAAI,CAAC;IACR,eAAe,CAAC,OAAO,EAAE;QACvB,EAAE,EAAE,MAAM,CAAC;QACX,KAAK,CAAC,GAAG,EAAE;YAAE,MAAM,EAAE,cAAc,CAAA;SAAE,GAAG,IAAI,CAAC;QAC7C,IAAI,CAAC,GAAG,EAAE;YAAE,MAAM,EAAE,cAAc,CAAA;SAAE,GAAG,IAAI,CAAC;KAC7C,GAAG,IAAI,CAAC;CACV;AA4CD,QAAA,MAAM,MAAM;;;;;kBAMI,iBAAiB;CAgFhC,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* dot-ai OpenClaw plugin v4
|
|
3
|
+
*
|
|
4
|
+
* Hooks into before_agent_start to run the full dot-ai pipeline:
|
|
5
|
+
* loadConfig → registerDefaults → createProviders → boot → enrich → formatContext
|
|
6
|
+
*
|
|
7
|
+
* Returns enriched context as prependContext for the agent.
|
|
8
|
+
*/
|
|
9
|
+
import { loadConfig, registerDefaults, registerProvider, createProviders, boot, enrich, injectRoot, formatContext, } from '@dot-ai/core';
|
|
10
|
+
/**
|
|
11
|
+
* Load custom providers declared in pluginConfig.
|
|
12
|
+
* Workspaces declare custom providers via openclaw.json:
|
|
13
|
+
* plugins.entries.dot-ai.config.customProviders: [
|
|
14
|
+
* { type: "cockpit", module: "/abs/path/to/provider.ts" }
|
|
15
|
+
* ]
|
|
16
|
+
*/
|
|
17
|
+
async function loadCustomProviders(config, logger) {
|
|
18
|
+
const providers = config.customProviders;
|
|
19
|
+
if (!Array.isArray(providers))
|
|
20
|
+
return;
|
|
21
|
+
for (const entry of providers) {
|
|
22
|
+
if (!entry || typeof entry !== 'object' || !('type' in entry) || !('module' in entry))
|
|
23
|
+
continue;
|
|
24
|
+
const { type, module: modulePath } = entry;
|
|
25
|
+
try {
|
|
26
|
+
const mod = await import(modulePath);
|
|
27
|
+
// Find the exported provider class or factory
|
|
28
|
+
for (const [name, exported] of Object.entries(mod)) {
|
|
29
|
+
if (typeof exported === 'function') {
|
|
30
|
+
if (name.endsWith('Provider')) {
|
|
31
|
+
const ProviderClass = exported;
|
|
32
|
+
registerProvider(`@custom/${type}`, (opts) => new ProviderClass(opts));
|
|
33
|
+
logger.info(`[dot-ai] Registered custom provider: ${type} (${name})`);
|
|
34
|
+
break;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
catch (err) {
|
|
40
|
+
logger.info(`[dot-ai] Failed to load custom provider "${type}" from ${modulePath}: ${err}`);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
// Session-level cache
|
|
45
|
+
let cachedProviders = null;
|
|
46
|
+
let cachedBoot = null;
|
|
47
|
+
let cachedWorkspace = null;
|
|
48
|
+
const plugin = {
|
|
49
|
+
id: 'dot-ai',
|
|
50
|
+
name: 'dot-ai — Universal AI Workspace Convention',
|
|
51
|
+
version: '0.4.0',
|
|
52
|
+
description: 'Deterministic context enrichment for OpenClaw agents',
|
|
53
|
+
register(api) {
|
|
54
|
+
api.logger.info('[dot-ai] Plugin loaded (v4)');
|
|
55
|
+
// Load custom providers if configured — capture the promise so before_agent_start can await it
|
|
56
|
+
let providerPromise = Promise.resolve();
|
|
57
|
+
if (api.pluginConfig) {
|
|
58
|
+
providerPromise = loadCustomProviders(api.pluginConfig, api.logger);
|
|
59
|
+
}
|
|
60
|
+
// Register default file-based providers
|
|
61
|
+
registerDefaults();
|
|
62
|
+
// Hook: before_agent_start — run the full pipeline
|
|
63
|
+
api.on('before_agent_start', async (_event, ctx) => {
|
|
64
|
+
// Ensure custom providers are registered before proceeding
|
|
65
|
+
await providerPromise;
|
|
66
|
+
const workspaceDir = ctx.workspaceDir;
|
|
67
|
+
if (!workspaceDir) {
|
|
68
|
+
api.logger.info('[dot-ai] No workspaceDir, skipping');
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
// Skip sub-agent/cron sessions
|
|
72
|
+
const isSubagent = ctx.sessionKey?.includes(':subagent:') || ctx.sessionKey?.includes(':cron:');
|
|
73
|
+
if (isSubagent) {
|
|
74
|
+
api.logger.debug?.('[dot-ai] Sub-agent/cron session, skipping');
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
try {
|
|
78
|
+
// Boot once per workspace (cache across prompts in same session)
|
|
79
|
+
if (!cachedProviders || cachedWorkspace !== workspaceDir) {
|
|
80
|
+
const rawConfig = await loadConfig(workspaceDir);
|
|
81
|
+
// Inject workspaceDir into all provider options
|
|
82
|
+
const config = injectRoot(rawConfig, workspaceDir);
|
|
83
|
+
cachedProviders = await createProviders(config);
|
|
84
|
+
cachedBoot = await boot(cachedProviders);
|
|
85
|
+
cachedWorkspace = workspaceDir;
|
|
86
|
+
api.logger.info(`[dot-ai] Booted: ${cachedBoot.identities.length} identities, ${cachedBoot.vocabulary.length} vocabulary, ${cachedBoot.skills.length} skills`);
|
|
87
|
+
}
|
|
88
|
+
// Enrich the prompt
|
|
89
|
+
const prompt = ctx.prompt ?? '';
|
|
90
|
+
const enriched = await enrich(prompt, cachedProviders, cachedBoot);
|
|
91
|
+
// Load skill content for matched skills
|
|
92
|
+
for (const skill of enriched.skills) {
|
|
93
|
+
if (!skill.content && skill.name) {
|
|
94
|
+
skill.content = await cachedProviders.skills.load(skill.name) ?? undefined;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
// Format and inject
|
|
98
|
+
const formatted = formatContext(enriched);
|
|
99
|
+
if (formatted) {
|
|
100
|
+
api.logger.info(`[dot-ai] Injected: ${enriched.identities.length} identities, ${enriched.memories.length} memories, ${enriched.skills.length} skills`);
|
|
101
|
+
return { prependContext: formatted };
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
catch (err) {
|
|
105
|
+
api.logger.info(`[dot-ai] Pipeline error: ${err}`);
|
|
106
|
+
}
|
|
107
|
+
return;
|
|
108
|
+
}, { priority: 10 });
|
|
109
|
+
// Service registration
|
|
110
|
+
api.registerService({
|
|
111
|
+
id: 'dot-ai',
|
|
112
|
+
start: (svc) => svc.logger.info('[dot-ai] Active'),
|
|
113
|
+
stop: (svc) => svc.logger.info('[dot-ai] Stopped'),
|
|
114
|
+
});
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
export default plugin;
|
|
118
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dot-ai/adapter-openclaw",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/jogelin/dot-ai",
|
|
7
|
+
"directory": "packages/adapter-openclaw"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "dist/index.js",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"openclaw": {
|
|
13
|
+
"extensions": [
|
|
14
|
+
"./src/index.ts"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"openclaw": "^2026.2.0"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@dot-ai/core": "0.5.2"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/node": "^22.0.0",
|
|
25
|
+
"typescript": "^5.9.3",
|
|
26
|
+
"vitest": "^4.0.0"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsc",
|
|
33
|
+
"test": "vitest run"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { describe, it, expect } from 'vitest';
|
|
2
|
+
import { formatContext } from '@dot-ai/core';
|
|
3
|
+
import type { EnrichedContext } from '@dot-ai/core';
|
|
4
|
+
|
|
5
|
+
function makeEmptyContext(): EnrichedContext {
|
|
6
|
+
return {
|
|
7
|
+
prompt: '',
|
|
8
|
+
labels: [],
|
|
9
|
+
identities: [],
|
|
10
|
+
memories: [],
|
|
11
|
+
skills: [],
|
|
12
|
+
tools: [],
|
|
13
|
+
routing: { model: 'default', reason: 'no match' },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
describe('formatContext', () => {
|
|
18
|
+
it('returns empty string for empty context', () => {
|
|
19
|
+
const ctx = makeEmptyContext();
|
|
20
|
+
expect(formatContext(ctx)).toBe('');
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
it('orders identities by priority (highest first)', () => {
|
|
24
|
+
const ctx = makeEmptyContext();
|
|
25
|
+
ctx.identities = [
|
|
26
|
+
{ type: 'soul', content: 'Soul content', source: 'file', priority: 1 },
|
|
27
|
+
{ type: 'agents', content: 'Agents content', source: 'file', priority: 10 },
|
|
28
|
+
{ type: 'user', content: 'User content', source: 'file', priority: 5 },
|
|
29
|
+
];
|
|
30
|
+
const result = formatContext(ctx);
|
|
31
|
+
const agentsPos = result.indexOf('Agents content');
|
|
32
|
+
const userPos = result.indexOf('User content');
|
|
33
|
+
const soulPos = result.indexOf('Soul content');
|
|
34
|
+
expect(agentsPos).toBeLessThan(userPos);
|
|
35
|
+
expect(userPos).toBeLessThan(soulPos);
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('skips identities with no content', () => {
|
|
39
|
+
const ctx = makeEmptyContext();
|
|
40
|
+
ctx.identities = [
|
|
41
|
+
{ type: 'agents', content: '', source: 'file', priority: 10 },
|
|
42
|
+
{ type: 'soul', content: 'Soul content', source: 'file', priority: 1 },
|
|
43
|
+
];
|
|
44
|
+
const result = formatContext(ctx);
|
|
45
|
+
expect(result).toBe('Soul content');
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
it('includes memories section with up to 10 entries', () => {
|
|
49
|
+
const ctx = makeEmptyContext();
|
|
50
|
+
ctx.memories = Array.from({ length: 15 }, (_, i) => ({
|
|
51
|
+
content: `Memory ${i}`,
|
|
52
|
+
type: 'fact',
|
|
53
|
+
source: 'file',
|
|
54
|
+
}));
|
|
55
|
+
const result = formatContext(ctx);
|
|
56
|
+
expect(result).toContain('## Relevant Memory');
|
|
57
|
+
// Only first 10 should appear
|
|
58
|
+
expect(result).toContain('Memory 0');
|
|
59
|
+
expect(result).toContain('Memory 9');
|
|
60
|
+
expect(result).not.toContain('Memory 10');
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
it('includes memory date when present', () => {
|
|
64
|
+
const ctx = makeEmptyContext();
|
|
65
|
+
ctx.memories = [{ content: 'A fact', type: 'fact', source: 'file', date: '2026-03-01' }];
|
|
66
|
+
const result = formatContext(ctx);
|
|
67
|
+
expect(result).toContain('A fact (2026-03-01)');
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
it('omits memory date when absent', () => {
|
|
71
|
+
const ctx = makeEmptyContext();
|
|
72
|
+
ctx.memories = [{ content: 'A fact', type: 'fact', source: 'file' }];
|
|
73
|
+
const result = formatContext(ctx);
|
|
74
|
+
expect(result).toContain('- A fact');
|
|
75
|
+
expect(result).not.toContain('- A fact (');
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
it('includes skills section only for skills with content', () => {
|
|
79
|
+
const ctx = makeEmptyContext();
|
|
80
|
+
ctx.skills = [
|
|
81
|
+
{ name: 'skill-with-content', description: 'Has content', labels: [], content: 'Skill body' },
|
|
82
|
+
{ name: 'skill-no-content', description: 'No content', labels: [] },
|
|
83
|
+
];
|
|
84
|
+
const result = formatContext(ctx);
|
|
85
|
+
expect(result).toContain('## Active Skills');
|
|
86
|
+
expect(result).toContain('### skill-with-content');
|
|
87
|
+
expect(result).toContain('Skill body');
|
|
88
|
+
expect(result).not.toContain('### skill-no-content');
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
it('omits skills section when no skills have content', () => {
|
|
92
|
+
const ctx = makeEmptyContext();
|
|
93
|
+
ctx.skills = [
|
|
94
|
+
{ name: 'skill-a', description: 'No content', labels: [] },
|
|
95
|
+
];
|
|
96
|
+
const result = formatContext(ctx);
|
|
97
|
+
expect(result).not.toContain('## Active Skills');
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
it('includes tools section', () => {
|
|
101
|
+
const ctx = makeEmptyContext();
|
|
102
|
+
ctx.tools = [
|
|
103
|
+
{ name: 'my-tool', description: 'Does things', labels: [], config: {}, source: 'file' },
|
|
104
|
+
];
|
|
105
|
+
const result = formatContext(ctx);
|
|
106
|
+
expect(result).toContain('## Available Tools');
|
|
107
|
+
expect(result).toContain('**my-tool**: Does things');
|
|
108
|
+
});
|
|
109
|
+
|
|
110
|
+
it('includes routing section when model is not default', () => {
|
|
111
|
+
const ctx = makeEmptyContext();
|
|
112
|
+
ctx.routing = { model: 'opus', reason: 'complex task' };
|
|
113
|
+
const result = formatContext(ctx);
|
|
114
|
+
expect(result).toContain('## Model Routing');
|
|
115
|
+
expect(result).toContain('**opus**');
|
|
116
|
+
expect(result).toContain('complex task');
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
it('omits routing section when model is default', () => {
|
|
120
|
+
const ctx = makeEmptyContext();
|
|
121
|
+
ctx.routing = { model: 'default', reason: 'no match' };
|
|
122
|
+
const result = formatContext(ctx);
|
|
123
|
+
expect(result).not.toContain('## Model Routing');
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
it('joins all sections with separator', () => {
|
|
127
|
+
const ctx = makeEmptyContext();
|
|
128
|
+
ctx.identities = [{ type: 'agents', content: 'Identity', source: 'file', priority: 1 }];
|
|
129
|
+
ctx.memories = [{ content: 'Memory', type: 'fact', source: 'file' }];
|
|
130
|
+
ctx.routing = { model: 'sonnet', reason: 'matched' };
|
|
131
|
+
const result = formatContext(ctx);
|
|
132
|
+
expect(result).toContain('\n\n---\n\n');
|
|
133
|
+
});
|
|
134
|
+
});
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* dot-ai OpenClaw plugin v4
|
|
3
|
+
*
|
|
4
|
+
* Hooks into before_agent_start to run the full dot-ai pipeline:
|
|
5
|
+
* loadConfig → registerDefaults → createProviders → boot → enrich → formatContext
|
|
6
|
+
*
|
|
7
|
+
* Returns enriched context as prependContext for the agent.
|
|
8
|
+
*/
|
|
9
|
+
import {
|
|
10
|
+
loadConfig,
|
|
11
|
+
registerDefaults,
|
|
12
|
+
registerProvider,
|
|
13
|
+
createProviders,
|
|
14
|
+
boot,
|
|
15
|
+
enrich,
|
|
16
|
+
injectRoot,
|
|
17
|
+
formatContext,
|
|
18
|
+
type Providers,
|
|
19
|
+
type BootCache,
|
|
20
|
+
} from '@dot-ai/core';
|
|
21
|
+
|
|
22
|
+
// Inline OpenClaw plugin API types
|
|
23
|
+
interface OpenClawLogger {
|
|
24
|
+
info(msg: string): void;
|
|
25
|
+
debug?(msg: string): void;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
interface OpenClawPluginApi {
|
|
29
|
+
logger: OpenClawLogger;
|
|
30
|
+
pluginConfig?: Record<string, unknown>;
|
|
31
|
+
on(
|
|
32
|
+
event: string,
|
|
33
|
+
handler: (
|
|
34
|
+
event: unknown,
|
|
35
|
+
ctx: { workspaceDir?: string; sessionKey?: string; prompt?: string },
|
|
36
|
+
) => Promise<{ prependContext?: string } | void> | void,
|
|
37
|
+
options?: { priority?: number },
|
|
38
|
+
): void;
|
|
39
|
+
registerService(service: {
|
|
40
|
+
id: string;
|
|
41
|
+
start(ctx: { logger: OpenClawLogger }): void;
|
|
42
|
+
stop(ctx: { logger: OpenClawLogger }): void;
|
|
43
|
+
}): void;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Load custom providers declared in pluginConfig.
|
|
48
|
+
* Workspaces declare custom providers via openclaw.json:
|
|
49
|
+
* plugins.entries.dot-ai.config.customProviders: [
|
|
50
|
+
* { type: "cockpit", module: "/abs/path/to/provider.ts" }
|
|
51
|
+
* ]
|
|
52
|
+
*/
|
|
53
|
+
async function loadCustomProviders(
|
|
54
|
+
config: Record<string, unknown>,
|
|
55
|
+
logger: OpenClawLogger,
|
|
56
|
+
): Promise<void> {
|
|
57
|
+
const providers = config.customProviders;
|
|
58
|
+
if (!Array.isArray(providers)) return;
|
|
59
|
+
|
|
60
|
+
for (const entry of providers) {
|
|
61
|
+
if (!entry || typeof entry !== 'object' || !('type' in entry) || !('module' in entry)) continue;
|
|
62
|
+
|
|
63
|
+
const { type, module: modulePath } = entry as { type: string; module: string };
|
|
64
|
+
try {
|
|
65
|
+
const mod = await import(modulePath);
|
|
66
|
+
// Find the exported provider class or factory
|
|
67
|
+
for (const [name, exported] of Object.entries(mod)) {
|
|
68
|
+
if (typeof exported === 'function') {
|
|
69
|
+
if (name.endsWith('Provider')) {
|
|
70
|
+
const ProviderClass = exported as new (opts: Record<string, unknown>) => unknown;
|
|
71
|
+
registerProvider(`@custom/${type}`, (opts) => new ProviderClass(opts));
|
|
72
|
+
logger.info(`[dot-ai] Registered custom provider: ${type} (${name})`);
|
|
73
|
+
break;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
} catch (err) {
|
|
78
|
+
logger.info(`[dot-ai] Failed to load custom provider "${type}" from ${modulePath}: ${err}`);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Session-level cache
|
|
84
|
+
let cachedProviders: Providers | null = null;
|
|
85
|
+
let cachedBoot: BootCache | null = null;
|
|
86
|
+
let cachedWorkspace: string | null = null;
|
|
87
|
+
|
|
88
|
+
const plugin = {
|
|
89
|
+
id: 'dot-ai',
|
|
90
|
+
name: 'dot-ai — Universal AI Workspace Convention',
|
|
91
|
+
version: '0.4.0',
|
|
92
|
+
description: 'Deterministic context enrichment for OpenClaw agents',
|
|
93
|
+
|
|
94
|
+
register(api: OpenClawPluginApi) {
|
|
95
|
+
api.logger.info('[dot-ai] Plugin loaded (v4)');
|
|
96
|
+
|
|
97
|
+
// Load custom providers if configured — capture the promise so before_agent_start can await it
|
|
98
|
+
let providerPromise: Promise<void> = Promise.resolve();
|
|
99
|
+
if (api.pluginConfig) {
|
|
100
|
+
providerPromise = loadCustomProviders(api.pluginConfig, api.logger);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// Register default file-based providers
|
|
104
|
+
registerDefaults();
|
|
105
|
+
|
|
106
|
+
// Hook: before_agent_start — run the full pipeline
|
|
107
|
+
api.on(
|
|
108
|
+
'before_agent_start',
|
|
109
|
+
async (
|
|
110
|
+
_event: unknown,
|
|
111
|
+
ctx: { workspaceDir?: string; sessionKey?: string; prompt?: string },
|
|
112
|
+
) => {
|
|
113
|
+
// Ensure custom providers are registered before proceeding
|
|
114
|
+
await providerPromise;
|
|
115
|
+
|
|
116
|
+
const workspaceDir = ctx.workspaceDir;
|
|
117
|
+
if (!workspaceDir) {
|
|
118
|
+
api.logger.info('[dot-ai] No workspaceDir, skipping');
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// Skip sub-agent/cron sessions
|
|
123
|
+
const isSubagent = ctx.sessionKey?.includes(':subagent:') || ctx.sessionKey?.includes(':cron:');
|
|
124
|
+
if (isSubagent) {
|
|
125
|
+
api.logger.debug?.('[dot-ai] Sub-agent/cron session, skipping');
|
|
126
|
+
return;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
try {
|
|
130
|
+
// Boot once per workspace (cache across prompts in same session)
|
|
131
|
+
if (!cachedProviders || cachedWorkspace !== workspaceDir) {
|
|
132
|
+
const rawConfig = await loadConfig(workspaceDir);
|
|
133
|
+
|
|
134
|
+
// Inject workspaceDir into all provider options
|
|
135
|
+
const config = injectRoot(rawConfig, workspaceDir);
|
|
136
|
+
cachedProviders = await createProviders(config);
|
|
137
|
+
cachedBoot = await boot(cachedProviders);
|
|
138
|
+
cachedWorkspace = workspaceDir;
|
|
139
|
+
api.logger.info(`[dot-ai] Booted: ${cachedBoot.identities.length} identities, ${cachedBoot.vocabulary.length} vocabulary, ${cachedBoot.skills.length} skills`);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// Enrich the prompt
|
|
143
|
+
const prompt = ctx.prompt ?? '';
|
|
144
|
+
const enriched = await enrich(prompt, cachedProviders, cachedBoot!);
|
|
145
|
+
|
|
146
|
+
// Load skill content for matched skills
|
|
147
|
+
for (const skill of enriched.skills) {
|
|
148
|
+
if (!skill.content && skill.name) {
|
|
149
|
+
skill.content = await cachedProviders.skills.load(skill.name) ?? undefined;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// Format and inject
|
|
154
|
+
const formatted = formatContext(enriched);
|
|
155
|
+
if (formatted) {
|
|
156
|
+
api.logger.info(`[dot-ai] Injected: ${enriched.identities.length} identities, ${enriched.memories.length} memories, ${enriched.skills.length} skills`);
|
|
157
|
+
return { prependContext: formatted };
|
|
158
|
+
}
|
|
159
|
+
} catch (err) {
|
|
160
|
+
api.logger.info(`[dot-ai] Pipeline error: ${err}`);
|
|
161
|
+
}
|
|
162
|
+
return;
|
|
163
|
+
},
|
|
164
|
+
{ priority: 10 },
|
|
165
|
+
);
|
|
166
|
+
|
|
167
|
+
// Service registration
|
|
168
|
+
api.registerService({
|
|
169
|
+
id: 'dot-ai',
|
|
170
|
+
start: (svc) => svc.logger.info('[dot-ai] Active'),
|
|
171
|
+
stop: (svc) => svc.logger.info('[dot-ai] Stopped'),
|
|
172
|
+
});
|
|
173
|
+
},
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
export default plugin;
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2023",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"lib": ["ES2023"],
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"strict": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"noImplicitReturns": true,
|
|
13
|
+
"resolveJsonModule": true,
|
|
14
|
+
"outDir": "./dist",
|
|
15
|
+
"rootDir": "./src",
|
|
16
|
+
"declaration": true,
|
|
17
|
+
"declarationMap": true,
|
|
18
|
+
"sourceMap": true,
|
|
19
|
+
"composite": true
|
|
20
|
+
},
|
|
21
|
+
"include": ["src"],
|
|
22
|
+
"exclude": ["node_modules", "dist"],
|
|
23
|
+
"references": [{ "path": "../core" }]
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../core/dist/types.d.ts","../core/dist/contracts.d.ts","../core/dist/logger.d.ts","../core/dist/engine.d.ts","../core/dist/config.d.ts","../core/dist/format.d.ts","../core/dist/loader.d.ts","../core/dist/labels.d.ts","../core/dist/nodes.d.ts","../core/dist/index.d.ts","./src/index.ts","../../node_modules/.pnpm/@vitest+pretty-format@4.0.18/node_modules/@vitest/pretty-format/dist/index.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/display.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/helpers.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/timers.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/tasks.d-C7UxawJ9.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../node_modules/.pnpm/@vitest+utils@4.0.18/node_modules/@vitest/utils/dist/diff.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/types.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/traces.d.402V_yFI.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vite/types/hmrPayload.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vite/types/customEvent.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vite/dist/node/module-runner.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/environment.d-DHdQ1Csl.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/rawSnapshot.d-lFsMJFUd.d.ts","../../node_modules/.pnpm/@vitest+snapshot@4.0.18/node_modules/@vitest/snapshot/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/config.d.Cy95HiCx.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/worker.d.Dyxm8DEL.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/browser.d.ChKACdzH.d.ts","../../node_modules/.pnpm/@vitest+spy@4.0.18/node_modules/@vitest/spy/dist/index.d.ts","../../node_modules/.pnpm/tinyrainbow@3.0.3/node_modules/tinyrainbow/dist/index.d.ts","../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../node_modules/.pnpm/@vitest+expect@4.0.18/node_modules/@vitest/expect/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/utils.d.ts","../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/global.d.B15mdLcR.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/suite.d.BJWk38HB.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../node_modules/.pnpm/vitest@4.0.18_@types+node@22.19.12_jiti@2.6.1_yaml@2.8.2/node_modules/vitest/dist/index.d.ts","./src/__tests__/format.test.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@22.19.12/node_modules/@types/node/index.d.ts"],"fileIdsList":[[123,172,189,190],[101,102,123,172,189,190],[123,169,170,172,189,190],[123,171,172,189,190],[172,189,190],[123,172,177,189,190,207],[123,172,173,178,183,189,190,192,204,215],[123,172,173,174,183,189,190,192],[118,119,120,123,172,189,190],[123,172,175,189,190,216],[123,172,176,177,184,189,190,193],[123,172,177,189,190,204,212],[123,172,178,180,183,189,190,192],[123,171,172,179,189,190],[123,172,180,181,189,190],[123,172,182,183,189,190],[123,171,172,183,189,190],[123,172,183,184,185,189,190,204,215],[123,172,183,184,185,189,190,199,204,207],[123,165,172,180,183,186,189,190,192,204,215],[123,172,183,184,186,187,189,190,192,204,212,215],[123,172,186,188,189,190,204,212,215],[121,122,123,124,125,126,127,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221],[123,172,183,189,190],[123,172,189,190,191,215],[123,172,180,183,189,190,192,204],[123,172,189,190,193],[123,172,189,190,194],[123,171,172,189,190,195],[123,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221],[123,172,189,190,197],[123,172,189,190,198],[123,172,183,189,190,199,200],[123,172,189,190,199,201,216,218],[123,172,184,189,190],[123,172,183,189,190,204,205,207],[123,172,189,190,206,207],[123,172,189,190,204,205],[123,172,189,190,207],[123,172,189,190,208],[123,169,172,189,190,204,209,215],[123,172,183,189,190,210,211],[123,172,189,190,210,211],[123,172,177,189,190,192,204,212],[123,172,189,190,213],[123,172,189,190,192,214],[123,172,186,189,190,198,215],[123,172,177,189,190,216],[123,172,189,190,204,217],[123,172,189,190,191,218],[123,172,189,190,219],[123,165,172,189,190],[123,165,172,183,185,189,190,195,204,207,215,217,218,220],[123,172,189,190,204,221],[74,78,81,83,98,99,100,103,108,123,172,189,190],[78,79,81,82,123,172,189,190],[78,123,172,189,190],[78,79,81,123,172,189,190],[78,79,123,172,189,190],[73,90,91,123,172,189,190],[73,90,123,172,189,190],[73,80,123,172,189,190],[73,123,172,189,190],[75,123,172,189,190],[73,74,75,76,77,123,172,189,190],[111,112,123,172,189,190],[111,112,113,114,123,172,189,190],[111,113,123,172,189,190],[111,123,172,189,190],[123,137,141,172,189,190,215],[123,137,172,189,190,204,215],[123,132,172,189,190],[123,134,137,172,189,190,212,215],[123,172,189,190,192,212],[123,172,189,190,222],[123,132,172,189,190,222],[123,134,137,172,189,190,192,215],[123,129,130,133,136,172,183,189,190,204,215],[123,137,144,172,189,190],[123,129,135,172,189,190],[123,137,158,159,172,189,190],[123,133,137,172,189,190,207,215,222],[123,158,172,189,190,222],[123,131,132,172,189,190,222],[123,137,172,189,190],[123,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,172,189,190],[123,137,152,172,189,190],[123,137,144,145,172,189,190],[123,135,137,145,146,172,189,190],[123,136,172,189,190],[123,129,132,137,172,189,190],[123,137,141,145,146,172,189,190],[123,141,172,189,190],[123,135,137,140,172,189,190,215],[123,129,134,137,144,172,189,190],[123,172,189,190,204],[123,132,137,158,172,189,190,220,222],[85,123,172,189,190],[85,86,87,88,123,172,189,190],[87,123,172,189,190],[83,105,106,108,123,172,189,190],[83,84,96,108,123,172,189,190],[73,81,83,92,108,123,172,189,190],[89,123,172,189,190],[73,83,92,95,104,107,108,123,172,189,190],[83,84,89,92,108,123,172,189,190],[83,105,106,107,108,123,172,189,190],[83,89,93,94,95,108,123,172,189,190],[73,78,81,83,84,89,92,93,94,95,96,97,98,104,105,106,107,108,109,110,115,123,172,189,190],[71,116,123,172,189,190],[71,123,172,189,190],[62,123,172,189,190],[62,63,64,123,172,189,190],[62,64,123,172,189,190],[62,63,64,65,66,67,68,69,70,123,172,189,190],[62,65,123,172,189,190]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"3bd97ca46a6c05a4f285a1a382b6dce009fc4a058081e9e74aaa32d06adefcac","709e5d4fe8b301b05f2517c0abc0d9167f655bb97494b7908bcb1132d032df51","9580b41ef016f4a000994815283c52484f7d1f5a1937147710eef003e84d4824","c068e357b81691f013bfc6668010c51616697bba73e7b79f9e3c62f8e9ad7213","7fcef6b142db0ad673aa3d94e02aa906c3da1caa4ea7c3bd5e26acd8fbc37d50","2d936d9c7ec209b9487435c4ca38c1e67c6ac237f0b4701c0d3c8d41733ed947","ee34288d5565604e1f952a67299475e54969783b507b5242cf129559ac8bba00","84f5d002464b4ee8172fab70ad1352c9f2b2f1c692470f2a5e58db948e9e57a9","687962b0869f76a160a90bdf3981daf58edfc467eabeb82f5b4e611215b048f4","c95c1e63df382e67baf508c489fce3849c18e22458cb63f7e3cf787ccf95ffa0",{"version":"b4524a6d3e788890b021c0d6a30289c0f9c3905cd0b37cc710d39a29b47a5389","signature":"4bc3f2c19c6466caffcb3e2265040796fca91170d5ccc9ae7d0e961452459ebe"},{"version":"acfb723d81eda39156251aed414c553294870bf53062429ebfcfba8a68cb4753","impliedFormat":99},{"version":"fa69a90381c2f85889722a911a732a5ee3596dc3acecda8a9aa2fa89b9615d8d","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"57e9e1b0911874c62d743af24b5d56032759846533641d550b12a45ff404bf07","impliedFormat":99},{"version":"b0857bb28fd5236ace84280f79a25093f919fd0eff13e47cc26ea03de60a7294","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"854cd3a3375ffc4e7a92b2168dd065d7ff2614b43341038a65cca865a44c00c5","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"3b0a56d056d81a011e484b9c05d5e430711aaecd561a788bad1d0498aad782c7","impliedFormat":99},{"version":"2f863ee9b873a65d9c3338ea7aaddbdb41a9673f062f06983d712bd01c25dc6b","impliedFormat":99},{"version":"67aa128c2bc170b93794f191feffc65a4b33e878db211cfcb7658c4b72f7a1f5","impliedFormat":99},{"version":"ac3d263474022e9a14c43f588f485d549641d839b159ecc971978b90f34bdf6b","impliedFormat":99},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"72950913f4900b680f44d8cab6dd1ea0311698fc1eefb014eb9cdfc37ac4a734","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"ff0a83c9a0489a627e264ffcb63f2264b935b20a502afa3a018848139e3d8575","impliedFormat":99},{"version":"324ac98294dab54fbd580c7d0e707d94506d7b2c3d5efe981a8495f02cf9ad96","impliedFormat":99},{"version":"9ec72eb493ff209b470467e24264116b6a8616484bca438091433a545dfba17e","impliedFormat":99},{"version":"c35b8117804c639c53c87f2c23e0c786df61d552e513bd5179f5b88e29964838","impliedFormat":99},{"version":"c609331c6ed4ad4af54e101088c6a4dcb48f8db7b0b97e44a6efeb130f4331bd","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"67acaedb46832d66c15f1b09fb7b6a0b7f41bdbf8eaa586ec70459b3e8896eb9","impliedFormat":99},{"version":"4535ab977ee871e956eb7bebe2db5de79f5d5ec7dfbbf1d35e08f4a2d6630dac","impliedFormat":99},{"version":"b79b5ed99f26ffb2f8ae4bdcc4b34a9542197dc3fa96cfb425c2a81e618cff28","impliedFormat":99},{"version":"31fd7c12f6e27154efb52a916b872509a771880f3b20f2dfd045785c13aa813f","impliedFormat":99},{"version":"b481de4ab5379bd481ca12fc0b255cdc47341629a22c240a89cdb4e209522be2","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"4e258d11c899cb9ff36b4b5c53df59cf4a5ccae9a9931529686e77431e0a3518","affectsGlobalScope":true,"impliedFormat":99},{"version":"a5ae67a67f786ffe92d34b55467a40fb50fb0093e92388cadce6168fa42690fd","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"a534e61c2f06a147d97aebad720db97dffd8066b7142212e46bcbcdcb640b81a","impliedFormat":99},{"version":"ddf569d04470a4d629090d43a16735185001f3fcf0ae036ead99f2ceab62be48","impliedFormat":99},{"version":"b413fbc6658fe2774f8bf9a15cf4c53e586fc38a2d5256b3b9647da242c14389","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"53c448183c7177c83d3eb0b40824cf8952721a6584cf22052adc24f778986732","impliedFormat":99},{"version":"ba4c277f78907604c2282153ca3b22a48b7fbfa2557505cfab8afd17d01217c1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"f949f7f6c7802a338039cfc2156d1fe285cdd1e092c64437ebe15ae8edc854e0","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2bc7425ef40526650d6db7e072c1ff4a51101c3ac2cc4b666623b19496a6e27","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[72,117],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":99,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10},"referencedMap":[[100,1],[103,2],[101,1],[169,3],[170,3],[171,4],[123,5],[172,6],[173,7],[174,8],[118,1],[121,9],[119,1],[120,1],[175,10],[176,11],[177,12],[178,13],[179,14],[180,15],[181,15],[182,16],[183,17],[184,18],[185,19],[124,1],[122,1],[186,20],[187,21],[188,22],[222,23],[189,24],[190,1],[191,25],[192,26],[193,27],[194,28],[195,29],[196,30],[197,31],[198,32],[199,33],[200,33],[201,34],[202,1],[203,35],[204,36],[206,37],[205,38],[207,39],[208,40],[209,41],[210,42],[211,43],[212,44],[213,45],[214,46],[215,47],[216,48],[217,49],[218,50],[219,51],[125,1],[126,1],[127,1],[166,52],[167,1],[168,1],[220,53],[221,54],[104,55],[73,1],[83,56],[79,57],[82,58],[105,59],[90,1],[92,60],[91,61],[98,1],[81,62],[74,63],[76,64],[78,65],[77,1],[80,63],[75,1],[102,1],[128,1],[113,66],[115,67],[114,68],[112,69],[111,1],[106,1],[99,1],[60,1],[61,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[22,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[56,1],[55,1],[57,1],[58,1],[10,1],[59,1],[1,1],[144,70],[154,71],[143,70],[164,72],[135,73],[134,74],[163,75],[157,76],[162,77],[137,78],[151,79],[136,80],[160,81],[132,82],[131,75],[161,83],[133,84],[138,85],[139,1],[142,85],[129,1],[165,86],[155,87],[146,88],[147,89],[149,90],[145,91],[148,92],[158,75],[140,93],[141,94],[150,95],[130,96],[153,87],[152,85],[156,1],[159,97],[86,98],[89,99],[87,98],[85,1],[88,100],[107,101],[97,102],[93,103],[94,57],[110,104],[108,105],[95,106],[109,107],[84,1],[96,108],[116,109],[117,110],[72,111],[66,112],[63,112],[65,113],[67,114],[71,115],[69,112],[68,116],[64,1],[70,112],[62,1]],"latestChangedDtsFile":"./dist/__tests__/format.test.d.ts","version":"5.9.3"}
|