ruvector 0.1.38 → 0.1.39
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/.claude-flow/metrics/agent-metrics.json +1 -0
- package/.claude-flow/metrics/performance.json +87 -0
- package/.claude-flow/metrics/task-metrics.json +10 -0
- package/PACKAGE_SUMMARY.md +409 -0
- package/README.md +1679 -508
- package/bin/cli.js +2427 -0
- package/dist/core/agentdb-fast.d.ts +149 -0
- package/dist/core/agentdb-fast.d.ts.map +1 -0
- package/dist/core/agentdb-fast.js +301 -0
- package/dist/core/attention-fallbacks.d.ts +221 -0
- package/dist/core/attention-fallbacks.d.ts.map +1 -0
- package/dist/core/attention-fallbacks.js +361 -0
- package/dist/core/gnn-wrapper.d.ts +143 -0
- package/dist/core/gnn-wrapper.d.ts.map +1 -0
- package/dist/core/gnn-wrapper.js +213 -0
- package/dist/core/index.d.ts +15 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +39 -0
- package/dist/core/sona-wrapper.d.ts +215 -0
- package/dist/core/sona-wrapper.d.ts.map +1 -0
- package/dist/core/sona-wrapper.js +258 -0
- package/dist/index.d.ts +87 -82
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +169 -89
- package/dist/services/embedding-service.d.ts +136 -0
- package/dist/services/embedding-service.d.ts.map +1 -0
- package/dist/services/embedding-service.js +294 -0
- package/dist/services/index.d.ts +6 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/index.js +26 -0
- package/dist/types.d.ts +145 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/examples/api-usage.js +211 -0
- package/examples/cli-demo.sh +85 -0
- package/package.json +41 -93
- package/bin/ruvector.js +0 -1150
- package/dist/index.d.mts +0 -95
- package/dist/index.mjs +0 -5
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* SONA Wrapper - Self-Optimizing Neural Architecture
|
|
4
|
+
*
|
|
5
|
+
* Provides a safe, flexible interface to @ruvector/sona with:
|
|
6
|
+
* - Automatic array type conversion (Array <-> Float64Array)
|
|
7
|
+
* - Graceful handling when sona is not installed
|
|
8
|
+
* - TypeScript types for all APIs
|
|
9
|
+
*
|
|
10
|
+
* SONA Features:
|
|
11
|
+
* - Micro-LoRA: Ultra-fast rank-1/2 adaptations (~0.1ms)
|
|
12
|
+
* - Base-LoRA: Deeper adaptations for complex patterns
|
|
13
|
+
* - EWC++: Elastic Weight Consolidation to prevent catastrophic forgetting
|
|
14
|
+
* - ReasoningBank: Pattern storage and retrieval
|
|
15
|
+
* - Trajectory tracking: Record and learn from execution paths
|
|
16
|
+
*/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Sona = exports.SonaEngine = void 0;
|
|
19
|
+
exports.isSonaAvailable = isSonaAvailable;
|
|
20
|
+
// ============================================================================
|
|
21
|
+
// Helper Functions
|
|
22
|
+
// ============================================================================
|
|
23
|
+
/** Convert any array-like to regular Array (SONA expects number[]) */
|
|
24
|
+
function toArray(input) {
|
|
25
|
+
if (Array.isArray(input))
|
|
26
|
+
return input;
|
|
27
|
+
return Array.from(input);
|
|
28
|
+
}
|
|
29
|
+
// ============================================================================
|
|
30
|
+
// Lazy Loading
|
|
31
|
+
// ============================================================================
|
|
32
|
+
let sonaModule = null;
|
|
33
|
+
let sonaLoadError = null;
|
|
34
|
+
function getSonaModule() {
|
|
35
|
+
if (sonaModule)
|
|
36
|
+
return sonaModule;
|
|
37
|
+
if (sonaLoadError)
|
|
38
|
+
throw sonaLoadError;
|
|
39
|
+
try {
|
|
40
|
+
sonaModule = require('@ruvector/sona');
|
|
41
|
+
return sonaModule;
|
|
42
|
+
}
|
|
43
|
+
catch (e) {
|
|
44
|
+
sonaLoadError = new Error(`@ruvector/sona is not installed. Install it with:\n` +
|
|
45
|
+
` npm install @ruvector/sona\n\n` +
|
|
46
|
+
`Original error: ${e.message}`);
|
|
47
|
+
throw sonaLoadError;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
/** Check if sona is available */
|
|
51
|
+
function isSonaAvailable() {
|
|
52
|
+
try {
|
|
53
|
+
getSonaModule();
|
|
54
|
+
return true;
|
|
55
|
+
}
|
|
56
|
+
catch {
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
// ============================================================================
|
|
61
|
+
// SONA Engine Wrapper
|
|
62
|
+
// ============================================================================
|
|
63
|
+
/**
|
|
64
|
+
* SONA Engine - Self-Optimizing Neural Architecture
|
|
65
|
+
*
|
|
66
|
+
* Provides runtime-adaptive learning with:
|
|
67
|
+
* - Micro-LoRA for instant adaptations
|
|
68
|
+
* - Base-LoRA for deeper learning
|
|
69
|
+
* - EWC++ for preventing forgetting
|
|
70
|
+
* - ReasoningBank for pattern storage
|
|
71
|
+
*
|
|
72
|
+
* @example
|
|
73
|
+
* ```typescript
|
|
74
|
+
* import { Sona } from 'ruvector';
|
|
75
|
+
*
|
|
76
|
+
* // Create engine with hidden dimension
|
|
77
|
+
* const engine = new Sona.Engine(256);
|
|
78
|
+
*
|
|
79
|
+
* // Or with custom config
|
|
80
|
+
* const engine = Sona.Engine.withConfig({
|
|
81
|
+
* hiddenDim: 256,
|
|
82
|
+
* microLoraRank: 2,
|
|
83
|
+
* patternClusters: 100
|
|
84
|
+
* });
|
|
85
|
+
*
|
|
86
|
+
* // Record a trajectory
|
|
87
|
+
* const trajId = engine.beginTrajectory([0.1, 0.2, ...]);
|
|
88
|
+
* engine.addStep(trajId, activations, attentionWeights, 0.8);
|
|
89
|
+
* engine.endTrajectory(trajId, 0.9);
|
|
90
|
+
*
|
|
91
|
+
* // Apply learned adaptations
|
|
92
|
+
* const adapted = engine.applyMicroLora(input);
|
|
93
|
+
* ```
|
|
94
|
+
*/
|
|
95
|
+
class SonaEngine {
|
|
96
|
+
/**
|
|
97
|
+
* Create a new SONA engine
|
|
98
|
+
* @param hiddenDim Hidden dimension size (e.g., 256, 512, 768)
|
|
99
|
+
*/
|
|
100
|
+
constructor(hiddenDim) {
|
|
101
|
+
const mod = getSonaModule();
|
|
102
|
+
this._native = new mod.SonaEngine(hiddenDim);
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Create engine with custom configuration
|
|
106
|
+
* @param config SONA configuration options
|
|
107
|
+
*/
|
|
108
|
+
static withConfig(config) {
|
|
109
|
+
const mod = getSonaModule();
|
|
110
|
+
const engine = new SonaEngine(config.hiddenDim);
|
|
111
|
+
// Replace native with configured version
|
|
112
|
+
engine._native = mod.SonaEngine.withConfig(config);
|
|
113
|
+
return engine;
|
|
114
|
+
}
|
|
115
|
+
// -------------------------------------------------------------------------
|
|
116
|
+
// Trajectory Recording
|
|
117
|
+
// -------------------------------------------------------------------------
|
|
118
|
+
/**
|
|
119
|
+
* Begin recording a new trajectory
|
|
120
|
+
* @param queryEmbedding Initial query embedding
|
|
121
|
+
* @returns Trajectory ID for subsequent operations
|
|
122
|
+
*/
|
|
123
|
+
beginTrajectory(queryEmbedding) {
|
|
124
|
+
return this._native.beginTrajectory(toArray(queryEmbedding));
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Add a step to an active trajectory
|
|
128
|
+
* @param trajectoryId Trajectory ID from beginTrajectory
|
|
129
|
+
* @param activations Layer activations
|
|
130
|
+
* @param attentionWeights Attention weights
|
|
131
|
+
* @param reward Reward signal for this step (0.0 - 1.0)
|
|
132
|
+
*/
|
|
133
|
+
addStep(trajectoryId, activations, attentionWeights, reward) {
|
|
134
|
+
this._native.addTrajectoryStep(trajectoryId, toArray(activations), toArray(attentionWeights), reward);
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Alias for addStep for API compatibility
|
|
138
|
+
*/
|
|
139
|
+
addTrajectoryStep(trajectoryId, activations, attentionWeights, reward) {
|
|
140
|
+
this.addStep(trajectoryId, activations, attentionWeights, reward);
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* Set the model route for a trajectory
|
|
144
|
+
* @param trajectoryId Trajectory ID
|
|
145
|
+
* @param route Model route identifier (e.g., "gpt-4", "claude-3")
|
|
146
|
+
*/
|
|
147
|
+
setRoute(trajectoryId, route) {
|
|
148
|
+
this._native.setTrajectoryRoute(trajectoryId, route);
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Add context to a trajectory
|
|
152
|
+
* @param trajectoryId Trajectory ID
|
|
153
|
+
* @param contextId Context identifier
|
|
154
|
+
*/
|
|
155
|
+
addContext(trajectoryId, contextId) {
|
|
156
|
+
this._native.addTrajectoryContext(trajectoryId, contextId);
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* Complete a trajectory and submit for learning
|
|
160
|
+
* @param trajectoryId Trajectory ID
|
|
161
|
+
* @param quality Final quality score (0.0 - 1.0)
|
|
162
|
+
*/
|
|
163
|
+
endTrajectory(trajectoryId, quality) {
|
|
164
|
+
this._native.endTrajectory(trajectoryId, quality);
|
|
165
|
+
}
|
|
166
|
+
// -------------------------------------------------------------------------
|
|
167
|
+
// LoRA Transformations
|
|
168
|
+
// -------------------------------------------------------------------------
|
|
169
|
+
/**
|
|
170
|
+
* Apply micro-LoRA transformation (ultra-fast, ~0.1ms)
|
|
171
|
+
* @param input Input vector
|
|
172
|
+
* @returns Transformed output vector
|
|
173
|
+
*/
|
|
174
|
+
applyMicroLora(input) {
|
|
175
|
+
return this._native.applyMicroLora(toArray(input));
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Apply base-LoRA transformation to a specific layer
|
|
179
|
+
* @param layerIdx Layer index
|
|
180
|
+
* @param input Input vector
|
|
181
|
+
* @returns Transformed output vector
|
|
182
|
+
*/
|
|
183
|
+
applyBaseLora(layerIdx, input) {
|
|
184
|
+
return this._native.applyBaseLora(layerIdx, toArray(input));
|
|
185
|
+
}
|
|
186
|
+
// -------------------------------------------------------------------------
|
|
187
|
+
// Learning Control
|
|
188
|
+
// -------------------------------------------------------------------------
|
|
189
|
+
/**
|
|
190
|
+
* Run background learning cycle if due
|
|
191
|
+
* Call this periodically (e.g., every few seconds)
|
|
192
|
+
* @returns Status message if learning occurred, null otherwise
|
|
193
|
+
*/
|
|
194
|
+
tick() {
|
|
195
|
+
return this._native.tick();
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Force immediate background learning cycle
|
|
199
|
+
* @returns Status message with learning results
|
|
200
|
+
*/
|
|
201
|
+
forceLearn() {
|
|
202
|
+
return this._native.forceLearn();
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* Flush pending instant loop updates
|
|
206
|
+
*/
|
|
207
|
+
flush() {
|
|
208
|
+
this._native.flush();
|
|
209
|
+
}
|
|
210
|
+
// -------------------------------------------------------------------------
|
|
211
|
+
// Pattern Retrieval
|
|
212
|
+
// -------------------------------------------------------------------------
|
|
213
|
+
/**
|
|
214
|
+
* Find similar learned patterns to a query
|
|
215
|
+
* @param queryEmbedding Query embedding
|
|
216
|
+
* @param k Number of patterns to return
|
|
217
|
+
* @returns Array of similar patterns
|
|
218
|
+
*/
|
|
219
|
+
findPatterns(queryEmbedding, k) {
|
|
220
|
+
return this._native.findPatterns(toArray(queryEmbedding), k);
|
|
221
|
+
}
|
|
222
|
+
// -------------------------------------------------------------------------
|
|
223
|
+
// Engine Control
|
|
224
|
+
// -------------------------------------------------------------------------
|
|
225
|
+
/**
|
|
226
|
+
* Get engine statistics
|
|
227
|
+
* @returns Statistics object
|
|
228
|
+
*/
|
|
229
|
+
getStats() {
|
|
230
|
+
const statsJson = this._native.getStats();
|
|
231
|
+
return JSON.parse(statsJson);
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* Enable or disable the engine
|
|
235
|
+
* @param enabled Whether to enable
|
|
236
|
+
*/
|
|
237
|
+
setEnabled(enabled) {
|
|
238
|
+
this._native.setEnabled(enabled);
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* Check if engine is enabled
|
|
242
|
+
*/
|
|
243
|
+
isEnabled() {
|
|
244
|
+
return this._native.isEnabled();
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
exports.SonaEngine = SonaEngine;
|
|
248
|
+
// ============================================================================
|
|
249
|
+
// Convenience Exports
|
|
250
|
+
// ============================================================================
|
|
251
|
+
/**
|
|
252
|
+
* SONA namespace with all exports
|
|
253
|
+
*/
|
|
254
|
+
exports.Sona = {
|
|
255
|
+
Engine: SonaEngine,
|
|
256
|
+
isAvailable: isSonaAvailable,
|
|
257
|
+
};
|
|
258
|
+
exports.default = exports.Sona;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,95 +1,100 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* ruvector - High-performance vector database for Node.js
|
|
3
|
+
*
|
|
4
|
+
* This package automatically detects and uses the best available implementation:
|
|
5
|
+
* 1. Native (Rust-based, fastest) - if available for your platform
|
|
6
|
+
* 2. WASM (WebAssembly, universal fallback) - works everywhere
|
|
7
|
+
*
|
|
8
|
+
* Also provides safe wrappers for GNN and Attention modules that handle
|
|
9
|
+
* array type conversions automatically.
|
|
3
10
|
*/
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
metadata?: Record<string, any>;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
interface SearchResult {
|
|
12
|
-
id: string;
|
|
13
|
-
score: number;
|
|
14
|
-
metadata?: Record<string, any>;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
interface IndexStats {
|
|
18
|
-
vectorCount: number;
|
|
19
|
-
dimension: number;
|
|
20
|
-
indexType: string;
|
|
21
|
-
memoryUsage?: number;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
interface CreateIndexOptions {
|
|
25
|
-
dimension: number;
|
|
26
|
-
metric?: 'cosine' | 'euclidean' | 'dot';
|
|
27
|
-
indexType?: 'flat' | 'hnsw';
|
|
28
|
-
hnswConfig?: {
|
|
29
|
-
m?: number;
|
|
30
|
-
efConstruction?: number;
|
|
31
|
-
};
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
interface SearchOptions {
|
|
35
|
-
k?: number;
|
|
36
|
-
ef?: number;
|
|
37
|
-
filter?: Record<string, any>;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
interface BatchInsertOptions {
|
|
41
|
-
batchSize?: number;
|
|
42
|
-
progressCallback?: (progress: number) => void;
|
|
43
|
-
}
|
|
44
|
-
|
|
11
|
+
export * from './types';
|
|
12
|
+
export * from './core';
|
|
13
|
+
export * from './services';
|
|
14
|
+
declare let implementation: any;
|
|
45
15
|
/**
|
|
46
|
-
*
|
|
16
|
+
* Get the current implementation type
|
|
47
17
|
*/
|
|
48
|
-
|
|
49
|
-
type: 'native' | 'wasm';
|
|
50
|
-
version: string;
|
|
51
|
-
features: string[];
|
|
52
|
-
}
|
|
53
|
-
|
|
18
|
+
export declare function getImplementationType(): 'native' | 'wasm';
|
|
54
19
|
/**
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
* Smart loader that tries native bindings first, falls back to WASM
|
|
20
|
+
* Check if native implementation is being used
|
|
58
21
|
*/
|
|
59
|
-
|
|
22
|
+
export declare function isNative(): boolean;
|
|
60
23
|
/**
|
|
61
|
-
*
|
|
24
|
+
* Check if WASM implementation is being used
|
|
62
25
|
*/
|
|
63
|
-
declare
|
|
64
|
-
private index;
|
|
65
|
-
constructor(options: CreateIndexOptions);
|
|
66
|
-
insert(vector: Vector): Promise<void>;
|
|
67
|
-
insertBatch(vectors: Vector[], options?: BatchInsertOptions): Promise<void>;
|
|
68
|
-
search(query: number[], options?: SearchOptions): Promise<SearchResult[]>;
|
|
69
|
-
get(id: string): Promise<Vector | null>;
|
|
70
|
-
delete(id: string): Promise<boolean>;
|
|
71
|
-
stats(): Promise<IndexStats>;
|
|
72
|
-
save(path: string): Promise<void>;
|
|
73
|
-
static load(path: string): Promise<VectorIndex>;
|
|
74
|
-
clear(): Promise<void>;
|
|
75
|
-
optimize(): Promise<void>;
|
|
76
|
-
}
|
|
26
|
+
export declare function isWasm(): boolean;
|
|
77
27
|
/**
|
|
78
|
-
*
|
|
28
|
+
* Get version information
|
|
79
29
|
*/
|
|
80
|
-
declare
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
normalize(vector: number[]): number[];
|
|
84
|
-
randomVector(dimension: number): number[];
|
|
30
|
+
export declare function getVersion(): {
|
|
31
|
+
version: string;
|
|
32
|
+
implementation: string;
|
|
85
33
|
};
|
|
86
34
|
/**
|
|
87
|
-
*
|
|
35
|
+
* Wrapper class that automatically handles metadata JSON conversion
|
|
88
36
|
*/
|
|
89
|
-
declare
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
37
|
+
declare class VectorDBWrapper {
|
|
38
|
+
private db;
|
|
39
|
+
constructor(options: {
|
|
40
|
+
dimensions: number;
|
|
41
|
+
storagePath?: string;
|
|
42
|
+
distanceMetric?: string;
|
|
43
|
+
hnswConfig?: any;
|
|
44
|
+
});
|
|
45
|
+
/**
|
|
46
|
+
* Insert a vector with optional metadata (objects are auto-converted to JSON)
|
|
47
|
+
*/
|
|
48
|
+
insert(entry: {
|
|
49
|
+
id?: string;
|
|
50
|
+
vector: Float32Array | number[];
|
|
51
|
+
metadata?: Record<string, any>;
|
|
52
|
+
}): Promise<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Insert multiple vectors in batch
|
|
55
|
+
*/
|
|
56
|
+
insertBatch(entries: Array<{
|
|
57
|
+
id?: string;
|
|
58
|
+
vector: Float32Array | number[];
|
|
59
|
+
metadata?: Record<string, any>;
|
|
60
|
+
}>): Promise<string[]>;
|
|
61
|
+
/**
|
|
62
|
+
* Search for similar vectors (metadata is auto-parsed from JSON)
|
|
63
|
+
*/
|
|
64
|
+
search(query: {
|
|
65
|
+
vector: Float32Array | number[];
|
|
66
|
+
k: number;
|
|
67
|
+
filter?: Record<string, any>;
|
|
68
|
+
efSearch?: number;
|
|
69
|
+
}): Promise<Array<{
|
|
70
|
+
id: string;
|
|
71
|
+
score: number;
|
|
72
|
+
vector?: Float32Array;
|
|
73
|
+
metadata?: Record<string, any>;
|
|
74
|
+
}>>;
|
|
75
|
+
/**
|
|
76
|
+
* Get a vector by ID (metadata is auto-parsed from JSON)
|
|
77
|
+
*/
|
|
78
|
+
get(id: string): Promise<{
|
|
79
|
+
id?: string;
|
|
80
|
+
vector: Float32Array;
|
|
81
|
+
metadata?: Record<string, any>;
|
|
82
|
+
} | null>;
|
|
83
|
+
/**
|
|
84
|
+
* Delete a vector by ID
|
|
85
|
+
*/
|
|
86
|
+
delete(id: string): Promise<boolean>;
|
|
87
|
+
/**
|
|
88
|
+
* Get the number of vectors in the database
|
|
89
|
+
*/
|
|
90
|
+
len(): Promise<number>;
|
|
91
|
+
/**
|
|
92
|
+
* Check if the database is empty
|
|
93
|
+
*/
|
|
94
|
+
isEmpty(): Promise<boolean>;
|
|
95
|
+
}
|
|
96
|
+
export declare const VectorDb: typeof VectorDBWrapper;
|
|
97
|
+
export declare const VectorDB: typeof VectorDBWrapper;
|
|
98
|
+
export declare const NativeVectorDb: any;
|
|
99
|
+
export default implementation;
|
|
100
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,cAAc,SAAS,CAAC;AAGxB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAE3B,QAAA,IAAI,cAAc,EAAE,GAAG,CAAC;AA0BxB;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,QAAQ,GAAG,MAAM,CAEzD;AAED;;GAEG;AACH,wBAAgB,QAAQ,IAAI,OAAO,CAElC;AAED;;GAEG;AACH,wBAAgB,MAAM,IAAI,OAAO,CAEhC;AAED;;GAEG;AACH,wBAAgB,UAAU,IAAI;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,cAAc,EAAE,MAAM,CAAA;CAAE,CAMxE;AAED;;GAEG;AACH,cAAM,eAAe;IACnB,OAAO,CAAC,EAAE,CAAM;gBAEJ,OAAO,EAAE;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,cAAc,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,GAAG,CAAA;KAAE;IAI5G;;OAEG;IACG,MAAM,CAAC,KAAK,EAAE;QAAE,EAAE,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,YAAY,GAAG,MAAM,EAAE,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC,MAAM,CAAC;IActH;;OAEG;IACG,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC;QAAE,EAAE,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,YAAY,GAAG,MAAM,EAAE,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAUtI;;OAEG;IACG,MAAM,CAAC,KAAK,EAAE;QAAE,MAAM,EAAE,YAAY,GAAG,MAAM,EAAE,CAAC;QAAC,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,YAAY,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,CAAC,CAAC;IAuB1N;;OAEG;IACG,GAAG,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,EAAE,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,YAAY,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,GAAG,IAAI,CAAC;IAW5G;;OAEG;IACG,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAI1C;;OAEG;IACG,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC;IAI5B;;OAEG;IACG,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC;CAGlC;AAGD,eAAO,MAAM,QAAQ,wBAAkB,CAAC;AACxC,eAAO,MAAM,QAAQ,wBAAkB,CAAC;AAGxC,eAAO,MAAM,cAAc,KAA0B,CAAC;AAGtD,eAAe,cAAc,CAAC"}
|