@mastra/core 0.1.27-alpha.75 → 0.1.27-alpha.78
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 +185 -4
- package/dist/action/index.d.ts +0 -2
- package/dist/action/index.d.ts.map +1 -1
- package/dist/agent/index.d.ts.map +1 -1
- package/dist/core.esm.js +143 -260
- package/dist/core.esm.js.map +1 -1
- package/dist/embeddings/index.d.ts +2 -1
- package/dist/embeddings/index.d.ts.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/integration/integration.d.ts +0 -7
- package/dist/integration/integration.d.ts.map +1 -1
- package/dist/llm/index.d.ts +13 -0
- package/dist/llm/index.d.ts.map +1 -1
- package/dist/llm/types.d.ts +52 -1
- package/dist/llm/types.d.ts.map +1 -1
- package/dist/mastra/index.d.ts +1 -8
- package/dist/mastra/index.d.ts.map +1 -1
- package/dist/relevance/cohere/index.d.ts +1 -1
- package/dist/relevance/cohere/index.d.ts.map +1 -1
- package/dist/relevance/mastra-agent/index.d.ts +2 -1
- package/dist/relevance/mastra-agent/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/sync/index.d.ts +0 -3
- package/dist/sync/index.d.ts.map +0 -1
- package/dist/sync/sync.d.ts +0 -14
- package/dist/sync/sync.d.ts.map +0 -1
- package/dist/sync/types.d.ts +0 -8
- package/dist/sync/types.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -1,8 +1,189 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Installation
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
```bash
|
|
8
|
+
npm install @mastra/core
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Overview
|
|
12
|
+
|
|
13
|
+
`@mastra/core` is the foundational package of the Mastra framework, providing:
|
|
14
|
+
|
|
15
|
+
- Core abstractions and interfaces
|
|
16
|
+
- AI agent management and execution
|
|
17
|
+
- Integration with multiple AI providers
|
|
18
|
+
- Workflow orchestration
|
|
19
|
+
- Memory and vector store management
|
|
20
|
+
- Telemetry and logging infrastructure
|
|
21
|
+
- Text-to-speech capabilities
|
|
22
|
+
|
|
23
|
+
## Core Components
|
|
24
|
+
|
|
25
|
+
### Actions (`/action`)
|
|
26
|
+
|
|
27
|
+
Actions are the fundamental building blocks of Mastra workflows. They represent discrete, executable tasks with well-defined inputs and outputs. Each action can validate its inputs using Zod schemas and can access Mastra's core services through the execution context.
|
|
28
|
+
|
|
29
|
+
```typescript
|
|
30
|
+
interface IAction<TId, TSchemaIn, TSchemaOut, TContext> {
|
|
31
|
+
id: TId;
|
|
32
|
+
description?: string;
|
|
33
|
+
inputSchema?: TSchemaIn;
|
|
34
|
+
outputSchema?: TSchemaOut;
|
|
35
|
+
execute: (context: TContext) => Promise<TSchemaOut>;
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Agents (`/agent`)
|
|
40
|
+
|
|
41
|
+
Agents are autonomous AI entities that can understand instructions, use tools, and complete tasks. They encapsulate LLM interactions and can maintain conversation history, use provided tools, and follow specific behavioral guidelines through instructions.
|
|
42
|
+
|
|
43
|
+
```typescript
|
|
44
|
+
import { Agent } from '@mastra/core';
|
|
45
|
+
|
|
46
|
+
const agent = new Agent({
|
|
47
|
+
name: 'my-agent',
|
|
48
|
+
instructions: 'Your task-specific instructions',
|
|
49
|
+
model: {
|
|
50
|
+
provider: 'openai',
|
|
51
|
+
model: 'gpt-4',
|
|
52
|
+
},
|
|
53
|
+
tools: {}, // Optional tools
|
|
54
|
+
});
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Embeddings (`/embeddings`)
|
|
58
|
+
|
|
59
|
+
The embeddings module provides a unified interface for converting text into vector representations across multiple AI providers. These vectors are essential for semantic search, similarity comparisons, and other NLP tasks.
|
|
60
|
+
|
|
61
|
+
```typescript
|
|
62
|
+
import { embed, EmbeddingOptions } from '@mastra/core';
|
|
63
|
+
|
|
64
|
+
const embeddings = await embed('text to embed', {
|
|
65
|
+
provider: 'OPEN_AI',
|
|
66
|
+
model: 'text-embedding-ada-002',
|
|
67
|
+
});
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Supported providers:
|
|
71
|
+
|
|
72
|
+
- OpenAI: State-of-the-art embeddings
|
|
73
|
+
- Cohere: Multilingual support
|
|
74
|
+
- Amazon Bedrock: Enterprise-grade embeddings
|
|
75
|
+
- Google AI: PaLM-based embeddings
|
|
76
|
+
- Mistral: Open-source alternative
|
|
77
|
+
- Voyage: Specialized embeddings
|
|
78
|
+
|
|
79
|
+
### Evaluations (`/eval`)
|
|
80
|
+
|
|
81
|
+
The evaluation system enables quantitative assessment of AI outputs. Create custom metrics to measure specific aspects of AI performance, from response quality to task completion accuracy.
|
|
82
|
+
|
|
83
|
+
```typescript
|
|
84
|
+
import { Metric, evaluate } from '@mastra/core';
|
|
85
|
+
|
|
86
|
+
class CustomMetric extends Metric {
|
|
87
|
+
async measure(input: string, output: string): Promise<MetricResult> {
|
|
88
|
+
// Your evaluation logic
|
|
89
|
+
return { score: 0.95 };
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Hooks (`/hooks`)
|
|
95
|
+
|
|
96
|
+
Hooks provide an event system for monitoring and extending Mastra's functionality. They allow you to react to key events in the AI pipeline, enabling logging, monitoring, and custom behavior injection.
|
|
97
|
+
|
|
98
|
+
```typescript
|
|
99
|
+
import { AvailableHooks, registerHook } from '@mastra/core';
|
|
100
|
+
|
|
101
|
+
registerHook(AvailableHooks.ON_GENERATION, ({ input, output, metric, runId, agentName }) => {
|
|
102
|
+
// Handle generation event
|
|
103
|
+
});
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
Available hooks:
|
|
107
|
+
|
|
108
|
+
- `ON_EVALUATION`: Triggered after evaluation, useful for logging and analysis
|
|
109
|
+
- `ON_GENERATION`: Triggered after text generation, perfect for monitoring outputs
|
|
110
|
+
|
|
111
|
+
### Memory (`/memory`)
|
|
112
|
+
|
|
113
|
+
Memory management provides persistent storage and retrieval of AI interactions. It supports different storage backends and enables context-aware conversations and long-term learning.
|
|
114
|
+
|
|
115
|
+
```typescript
|
|
116
|
+
import { MastraMemory } from '@mastra/core';
|
|
117
|
+
|
|
118
|
+
const memory = new MastraMemory({
|
|
119
|
+
// Memory configuration
|
|
120
|
+
});
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
### Vector Stores (`/vector`)
|
|
124
|
+
|
|
125
|
+
Vector stores provide the infrastructure for storing and querying vector embeddings. They support semantic search, similarity matching, and efficient vector operations across different backend implementations.
|
|
126
|
+
|
|
127
|
+
```typescript
|
|
128
|
+
import { MastraVector } from '@mastra/core';
|
|
129
|
+
|
|
130
|
+
class CustomVectorStore extends MastraVector {
|
|
131
|
+
// Vector store implementation
|
|
132
|
+
}
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
### Workflows (`/workflows`)
|
|
136
|
+
|
|
137
|
+
Workflows orchestrate complex AI tasks by combining multiple actions into a coherent sequence. They handle state management, error recovery, and can include conditional logic and parallel execution.
|
|
138
|
+
|
|
139
|
+
```typescript
|
|
140
|
+
import { Workflow } from '@mastra/core';
|
|
141
|
+
|
|
142
|
+
const workflow = new Workflow({
|
|
143
|
+
name: 'my-workflow',
|
|
144
|
+
steps: [
|
|
145
|
+
// Workflow steps
|
|
146
|
+
],
|
|
147
|
+
});
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### Tools (`/tools`)
|
|
151
|
+
|
|
152
|
+
Tools are functions that agents can use to interact with external systems or perform specific tasks. Each tool has a clear description and schema, making it easy for AI to understand and use them effectively.
|
|
153
|
+
|
|
154
|
+
```typescript
|
|
155
|
+
import { ToolAction } from '@mastra/core';
|
|
156
|
+
|
|
157
|
+
const tool = new ToolAction({
|
|
158
|
+
name: 'tool-name',
|
|
159
|
+
description: 'Tool description',
|
|
160
|
+
execute: async context => {
|
|
161
|
+
// Tool implementation
|
|
162
|
+
},
|
|
163
|
+
});
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
### Logger (`/logger`)
|
|
167
|
+
|
|
168
|
+
The logging system provides structured, leveled logging with multiple transport options. It supports debug information, performance monitoring, and error tracking across your AI applications.
|
|
169
|
+
|
|
170
|
+
```typescript
|
|
171
|
+
import { createLogger, LogLevel } from '@mastra/core';
|
|
172
|
+
|
|
173
|
+
const logger = createLogger({
|
|
174
|
+
name: 'MyApp',
|
|
175
|
+
level: LogLevel.INFO,
|
|
176
|
+
});
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
### Telemetry (`/telemetry`)
|
|
180
|
+
|
|
181
|
+
Telemetry provides OpenTelemetry integration for comprehensive monitoring of your AI systems. Track latency, success rates, and system health with distributed tracing and metrics collection.
|
|
182
|
+
|
|
183
|
+
```typescript
|
|
184
|
+
import { Telemetry } from '@mastra/core';
|
|
185
|
+
|
|
186
|
+
const telemetry = Telemetry.init({
|
|
187
|
+
serviceName: 'my-service',
|
|
188
|
+
});
|
|
189
|
+
```
|
package/dist/action/index.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ import { LLM } from '../llm';
|
|
|
5
5
|
import { ModelConfig } from '../llm/types';
|
|
6
6
|
import { Logger } from '../logger';
|
|
7
7
|
import { MastraMemory } from '../memory';
|
|
8
|
-
import { SyncAction } from '../sync';
|
|
9
8
|
import { Telemetry } from '../telemetry';
|
|
10
9
|
import { MastraTTS } from '../tts';
|
|
11
10
|
import { MastraVector } from '../vector';
|
|
@@ -18,7 +17,6 @@ export type MastraPrimitives = {
|
|
|
18
17
|
tts?: Record<string, MastraTTS>;
|
|
19
18
|
vectors?: Record<string, MastraVector>;
|
|
20
19
|
memory?: MastraMemory;
|
|
21
|
-
syncs?: Record<string, SyncAction<any, any, any, any>>;
|
|
22
20
|
llm?: (model: ModelConfig) => LLM;
|
|
23
21
|
};
|
|
24
22
|
export interface IExecutionContext<TSchemaIn extends z.ZodSchema | undefined = undefined, TContext extends WorkflowContext = WorkflowContext> {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/action/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAC;AAC7B,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/action/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAC;AAC7B,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,gBAAgB,GAAG;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IAChC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;IACvC,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,GAAG,CAAC,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,GAAG,CAAC;CACnC,CAAC;AACF,MAAM,WAAW,iBAAiB,CAChC,SAAS,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,GAAG,SAAS,EACrD,QAAQ,SAAS,eAAe,GAAG,eAAe;IAElD,OAAO,EAAE,SAAS,SAAS,CAAC,CAAC,SAAS,GAClC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,GAAG;QAAE,cAAc,CAAC,EAAE,QAAQ,CAAA;KAAE,GAClD;QAAE,cAAc,CAAC,EAAE,QAAQ,CAAA;KAAE,CAAC;IAClC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,OAAO,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC9B;AACD,MAAM,WAAW,OAAO,CACtB,GAAG,SAAS,MAAM,EAClB,SAAS,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,EACzC,UAAU,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,EAC1C,QAAQ,SAAS,iBAAiB,CAAC,SAAS,CAAC;IAE7C,EAAE,EAAE,GAAG,CAAC;IACR,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,OAAO,CAAC,EAAE,SAAS,SAAS,CAAC,CAAC,SAAS,GAAG,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,GAAG,OAAO,CAAC;IAChF,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,KAAK,OAAO,CAAC,UAAU,SAAS,CAAC,CAAC,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,GAAG,OAAO,CAAC,CAAC;IACxG,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/agent/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/agent/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,oBAAoB,EACpB,WAAW,EACX,eAAe,EACf,eAAe,EAIhB,MAAM,IAAI,CAAC;AAEZ,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAK,SAAS,EAAE,MAAM,KAAK,CAAC;AAEnC,OAAO,eAAe,CAAC;AAEvB,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAEjC,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAC;AAC7B,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAIzE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEtD,OAAO,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAElF,qBAIa,KAAK,CAChB,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,EAC9G,QAAQ,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAChE,SAAQ,UAAU;;IACX,IAAI,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,GAAG,EAAE,GAAG,CAAC;IAClB,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC;IAE5B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,QAAQ,CAAC;gBAEN,MAAM,EAAE;QAClB,IAAI,EAAE,MAAM,CAAC;QACb,YAAY,EAAE,MAAM,CAAC;QACrB,KAAK,EAAE,WAAW,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,MAAM,CAAC,EAAE,gBAAgB,CAAC;QAC1B,OAAO,CAAC,EAAE,QAAQ,CAAC;KACpB;IA2BD,oBAAoB,CAAC,CAAC,EAAE,gBAAgB;IAexC;;;OAGG;IACH,UAAU,CAAC,KAAK,EAAE,MAAM;IAKlB,4BAA4B,CAAC,EAAE,OAAO,EAAE,EAAE;QAAE,OAAO,EAAE,eAAe,CAAA;KAAE;IAwB5E,wBAAwB,CAAC,QAAQ,EAAE,KAAK,CAAC,WAAW,CAAC;IAK/C,QAAQ,CAAC,WAAW,EAAE,eAAe,GAAG,SAAS;IAcjD,UAAU,CAAC,EACf,QAAQ,EACR,UAAU,EACV,YAAY,EACZ,KAAK,GACN,EAAE;QACD,UAAU,EAAE,MAAM,CAAC;QACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,YAAY,EAAE,WAAW,EAAE,CAAC;QAC5B,IAAI,CAAC,EAAE,IAAI,CAAC;QACZ,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB;;;;IAwHK,YAAY,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE;IAyEhH,wBAAwB,CACtB,QAAQ,EAAE,KAAK,CAAC,eAAe,GAAG,oBAAoB,CAAC,GACtD,KAAK,CAAC,eAAe,GAAG,oBAAoB,CAAC;IAmChD,YAAY,CAAC,EACX,QAAQ,EACR,QAAQ,EACR,KAAK,GACN,EAAE;QACD,QAAQ,CAAC,EAAE,aAAa,CAAC;QACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC;IAqFtB,UAAU,CAAC,EACf,UAAU,EACV,KAAK,EACL,QAAQ,EACR,QAAQ,GACT,EAAE;QACD,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,QAAQ,EAAE,WAAW,EAAE,CAAC;QACxB,UAAU,EAAE,MAAM,CAAC;KACpB;;;;IAeD,WAAW,CAAC,EACV,QAAQ,EACR,OAAO,EACP,QAAQ,EACR,UAAU,EACV,KAAK,EACL,QAAQ,GACT,EAAE;QACD,QAAQ,CAAC,EAAE,aAAa,CAAC;QACzB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,OAAO,CAAC,EAAE,WAAW,EAAE,CAAC;QACxB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,QAAQ,EAAE,WAAW,EAAE,CAAC;KACzB;;;;sBAsDyE,MAAM;;0DAOzE;YACD,KAAK,EAAE,MAAM,CAAC;YACd,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;YAC5B,QAAQ,EAAE,MAAM,CAAC;YACjB,UAAU,EAAE,MAAM,CAAC;SACpB;;IAqEC,QAAQ,CAAC,CAAC,SAAS,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,EACtE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,EAAE,EAC3C,EACE,OAAO,EACP,QAAQ,EAAE,YAAY,EACtB,UAAU,EACV,QAAY,EACZ,YAAY,EACZ,KAAK,EACL,QAAQ,EACR,MAAe,EACf,WAAW,GACZ,GAAE,oBAAoB,CAAC,CAAC,CAAM,GAC9B,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;IAuEvB,MAAM,CAAC,CAAC,SAAS,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,EACpE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,EAAE,EAC3C,EACE,OAAO,EACP,QAAQ,EAAE,YAAY,EACtB,UAAU,EACV,QAAY,EACZ,QAAQ,EACR,YAAY,EACZ,KAAK,EACL,QAAQ,EACR,MAAe,EACf,WAAW,GACZ,GAAE,kBAAkB,CAAC,CAAC,CAAM,GAC5B,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;CA0F5B"}
|