@ue-too/ecs 0.7.3 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -1,248 +1,267 @@
1
- /** This is a direct port of the tutorial from https://austinmorlan.com/posts/entity_component_system/ with slight modifications */
2
- const MAX_ENTITIES = 10000;
3
- const MAX_COMPONENTS = 32;
1
+ // src/index.ts
2
+ var MAX_ENTITIES = 1e4;
3
+ var MAX_COMPONENTS = 32;
4
+
4
5
  class EntityManager {
5
- constructor(maxEntities = MAX_ENTITIES) {
6
- this._availableEntities = [];
7
- this._signatures = [];
8
- this._livingEntityCount = 0;
9
- this._maxEntities = maxEntities;
10
- for (let i = 0; i < this._maxEntities; i++) {
11
- this._availableEntities.push(i);
12
- this._signatures.push(0);
13
- }
14
- }
15
- createEntity() {
16
- if (this._livingEntityCount >= this._maxEntities) {
17
- throw new Error('Max entities reached');
18
- }
19
- const entity = this._availableEntities.shift();
20
- if (entity === undefined) {
21
- throw new Error('No available entities');
22
- }
23
- this._signatures[entity] = 0;
24
- this._livingEntityCount++;
25
- return entity;
26
- }
27
- destroyEntity(entity) {
28
- if (entity >= this._maxEntities || entity < 0) {
29
- throw new Error('Invalid entity out of range');
30
- }
31
- this._signatures[entity] = 0;
32
- this._availableEntities.push(entity);
33
- this._livingEntityCount--;
34
- }
35
- setSignature(entity, signature) {
36
- if (entity >= this._maxEntities || entity < 0) {
37
- throw new Error('Invalid entity out of range');
38
- }
39
- this._signatures[entity] = signature;
40
- }
41
- getSignature(entity) {
42
- if (entity >= this._maxEntities || entity < 0) {
43
- return null;
44
- }
45
- return this._signatures[entity];
46
- }
6
+ _availableEntities = [];
7
+ _signatures = [];
8
+ _maxEntities;
9
+ _livingEntityCount = 0;
10
+ constructor(maxEntities = MAX_ENTITIES) {
11
+ this._maxEntities = maxEntities;
12
+ for (let i = 0;i < this._maxEntities; i++) {
13
+ this._availableEntities.push(i);
14
+ this._signatures.push(0);
15
+ }
16
+ }
17
+ createEntity() {
18
+ if (this._livingEntityCount >= this._maxEntities) {
19
+ throw new Error("Max entities reached");
20
+ }
21
+ const entity = this._availableEntities.shift();
22
+ if (entity === undefined) {
23
+ throw new Error("No available entities");
24
+ }
25
+ this._signatures[entity] = 0;
26
+ this._livingEntityCount++;
27
+ return entity;
28
+ }
29
+ destroyEntity(entity) {
30
+ if (entity >= this._maxEntities || entity < 0) {
31
+ throw new Error("Invalid entity out of range");
32
+ }
33
+ this._signatures[entity] = 0;
34
+ this._availableEntities.push(entity);
35
+ this._livingEntityCount--;
36
+ }
37
+ setSignature(entity, signature) {
38
+ if (entity >= this._maxEntities || entity < 0) {
39
+ throw new Error("Invalid entity out of range");
40
+ }
41
+ this._signatures[entity] = signature;
42
+ }
43
+ getSignature(entity) {
44
+ if (entity >= this._maxEntities || entity < 0) {
45
+ return null;
46
+ }
47
+ return this._signatures[entity];
48
+ }
47
49
  }
50
+
48
51
  class ComponentArray {
49
- constructor(maxEntities) {
50
- this._count = 0;
51
- this.denseArray = new Array(maxEntities);
52
- this.sparse = new Array(maxEntities);
53
- this.reverse = new Array(maxEntities);
54
- }
55
- insertData(entity, data) {
56
- if (this.sparse.length < entity) {
57
- // resize the array for the new entity but normally this should not happen
58
- this.sparse = [...this.sparse, ...new Array(entity - this.sparse.length).fill(null)];
59
- }
60
- this.denseArray[this._count] = data;
61
- this.reverse[this._count] = entity;
62
- this.sparse[entity] = this._count;
63
- this._count++;
64
- }
65
- getData(entity) {
66
- if (this.sparse.length <= entity) {
67
- return null;
68
- }
69
- const denseIndex = this.sparse[entity];
70
- if (denseIndex === undefined || denseIndex === null || denseIndex >= this._count) {
71
- return null;
72
- }
73
- if (this.reverse[denseIndex] !== entity) {
74
- return null;
75
- }
76
- return this.denseArray[denseIndex];
77
- }
78
- removeData(entity) {
79
- const denseIndex = this.sparse[entity];
80
- if (denseIndex === undefined || denseIndex === null || denseIndex >= this._count) {
81
- return;
82
- }
83
- const lastEntity = this.reverse[this._count - 1];
84
- if (lastEntity === null) {
85
- return;
86
- }
87
- this.denseArray[denseIndex] = this.denseArray[this._count - 1];
88
- this.reverse[denseIndex] = lastEntity;
89
- this.sparse[lastEntity] = denseIndex;
90
- this.sparse[entity] = null;
91
- this._count--;
92
- }
93
- entityDestroyed(entity) {
94
- this.removeData(entity);
95
- }
52
+ denseArray;
53
+ sparse;
54
+ reverse;
55
+ _count;
56
+ constructor(maxEntities) {
57
+ this._count = 0;
58
+ this.denseArray = new Array(maxEntities);
59
+ this.sparse = new Array(maxEntities);
60
+ this.reverse = new Array(maxEntities);
61
+ }
62
+ insertData(entity, data) {
63
+ if (this.getData(entity) !== null) {
64
+ this.removeData(entity);
65
+ }
66
+ if (this.sparse.length < entity) {
67
+ this.sparse = [...this.sparse, ...new Array(entity - this.sparse.length).fill(null)];
68
+ }
69
+ this.denseArray[this._count] = data;
70
+ this.reverse[this._count] = entity;
71
+ this.sparse[entity] = this._count;
72
+ this._count++;
73
+ }
74
+ getData(entity) {
75
+ if (this.sparse.length <= entity) {
76
+ return null;
77
+ }
78
+ const denseIndex = this.sparse[entity];
79
+ if (denseIndex === undefined || denseIndex === null || denseIndex >= this._count) {
80
+ return null;
81
+ }
82
+ if (this.reverse[denseIndex] !== entity) {
83
+ return null;
84
+ }
85
+ return this.denseArray[denseIndex];
86
+ }
87
+ removeData(entity) {
88
+ const denseIndex = this.sparse[entity];
89
+ if (denseIndex === undefined || denseIndex === null || denseIndex >= this._count) {
90
+ return;
91
+ }
92
+ const lastEntity = this.reverse[this._count - 1];
93
+ if (lastEntity === null) {
94
+ return;
95
+ }
96
+ this.denseArray[denseIndex] = this.denseArray[this._count - 1];
97
+ this.reverse[denseIndex] = lastEntity;
98
+ this.sparse[lastEntity] = denseIndex;
99
+ this.sparse[entity] = null;
100
+ this._count--;
101
+ }
102
+ entityDestroyed(entity) {
103
+ this.removeData(entity);
104
+ }
96
105
  }
106
+
97
107
  class ComponentManager {
98
- constructor() {
99
- this._componentNameToTypeMap = new Map();
100
- this._nextAvailableComponentType = 0;
101
- }
102
- registerComponent(componentName) {
103
- if (this._componentNameToTypeMap.has(componentName)) {
104
- console.warn(`Component ${componentName} already registered`);
105
- }
106
- const componentType = this._nextAvailableComponentType;
107
- this._componentNameToTypeMap.set(componentName, { componentType, componentArray: new ComponentArray(MAX_ENTITIES) });
108
- this._nextAvailableComponentType++;
109
- }
110
- getComponentType(componentName) {
111
- return this._componentNameToTypeMap.get(componentName)?.componentType ?? null;
112
- }
113
- addComponentToEntity(componentName, entity, component) {
114
- const componentArray = this._getComponentArray(componentName);
115
- if (componentArray === null) {
116
- return;
117
- }
118
- componentArray.insertData(entity, component);
119
- }
120
- removeComponentFromEntity(componentName, entity) {
121
- const componentArray = this._getComponentArray(componentName);
122
- if (componentArray === null) {
123
- return;
124
- }
125
- componentArray.removeData(entity);
126
- }
127
- getComponentFromEntity(componentName, entity) {
128
- const componentArray = this._getComponentArray(componentName);
129
- if (componentArray === null) {
130
- return null;
131
- }
132
- return componentArray.getData(entity);
133
- }
134
- entityDestroyed(entity) {
135
- for (const component of this._componentNameToTypeMap.values()) {
136
- component.componentArray.entityDestroyed(entity);
137
- }
138
- }
139
- _getComponentArray(componentName) {
140
- const component = this._componentNameToTypeMap.get(componentName);
141
- if (component === undefined) {
142
- console.warn(`Component ${componentName} not registered`);
143
- return null;
144
- }
145
- return component.componentArray;
146
- }
108
+ _componentNameToTypeMap = new Map;
109
+ _nextAvailableComponentType = 0;
110
+ registerComponent(componentName) {
111
+ if (this._componentNameToTypeMap.has(componentName)) {
112
+ console.warn(`Component ${componentName} already registered; registering with the given new type`);
113
+ }
114
+ const componentType = this._nextAvailableComponentType;
115
+ this._componentNameToTypeMap.set(componentName, { componentType, componentArray: new ComponentArray(MAX_ENTITIES) });
116
+ this._nextAvailableComponentType++;
117
+ }
118
+ getComponentType(componentName) {
119
+ return this._componentNameToTypeMap.get(componentName)?.componentType ?? null;
120
+ }
121
+ addComponentToEntity(componentName, entity, component) {
122
+ const componentArray = this._getComponentArray(componentName);
123
+ if (componentArray === null) {
124
+ return;
125
+ }
126
+ componentArray.insertData(entity, component);
127
+ }
128
+ removeComponentFromEntity(componentName, entity) {
129
+ const componentArray = this._getComponentArray(componentName);
130
+ if (componentArray === null) {
131
+ return;
132
+ }
133
+ componentArray.removeData(entity);
134
+ }
135
+ getComponentFromEntity(componentName, entity) {
136
+ const componentArray = this._getComponentArray(componentName);
137
+ if (componentArray === null) {
138
+ return null;
139
+ }
140
+ return componentArray.getData(entity);
141
+ }
142
+ entityDestroyed(entity) {
143
+ for (const component of this._componentNameToTypeMap.values()) {
144
+ component.componentArray.entityDestroyed(entity);
145
+ }
146
+ }
147
+ _getComponentArray(componentName) {
148
+ const component = this._componentNameToTypeMap.get(componentName);
149
+ if (component === undefined) {
150
+ console.warn(`Component ${componentName} not registered`);
151
+ return null;
152
+ }
153
+ return component.componentArray;
154
+ }
147
155
  }
156
+
148
157
  class SystemManager {
149
- constructor() {
150
- this._systems = new Map();
151
- }
152
- registerSystem(systemName, system) {
153
- if (this._systems.has(systemName)) {
154
- console.warn(`System ${systemName} already registered`);
155
- return;
156
- }
157
- this._systems.set(systemName, { system, signature: 0 });
158
- }
159
- setSignature(systemName, signature) {
160
- if (!this._systems.has(systemName)) {
161
- console.warn(`System ${systemName} not registered`);
162
- return;
163
- }
164
- const system = this._systems.get(systemName);
165
- if (system === undefined) {
166
- console.warn(`System ${systemName} not registered`);
167
- return;
168
- }
169
- system.signature = signature;
170
- }
171
- entityDestroyed(entity) {
172
- for (const system of this._systems.values()) {
173
- system.system.entities.delete(entity);
174
- }
175
- }
176
- entitySignatureChanged(entity, signature) {
177
- for (const system of this._systems.values()) {
178
- const systemSignature = system.signature;
179
- if ((systemSignature & signature) === systemSignature) {
180
- system.system.entities.add(entity);
181
- }
182
- else {
183
- system.system.entities.delete(entity);
184
- }
185
- }
186
- }
158
+ _systems = new Map;
159
+ registerSystem(systemName, system) {
160
+ if (this._systems.has(systemName)) {
161
+ console.warn(`System ${systemName} already registered`);
162
+ return;
163
+ }
164
+ this._systems.set(systemName, { system, signature: 0 });
165
+ }
166
+ setSignature(systemName, signature) {
167
+ if (!this._systems.has(systemName)) {
168
+ console.warn(`System ${systemName} not registered`);
169
+ return;
170
+ }
171
+ const system = this._systems.get(systemName);
172
+ if (system === undefined) {
173
+ console.warn(`System ${systemName} not registered`);
174
+ return;
175
+ }
176
+ system.signature = signature;
177
+ }
178
+ entityDestroyed(entity) {
179
+ for (const system of this._systems.values()) {
180
+ system.system.entities.delete(entity);
181
+ }
182
+ }
183
+ entitySignatureChanged(entity, signature) {
184
+ for (const system of this._systems.values()) {
185
+ const systemSignature = system.signature;
186
+ if ((systemSignature & signature) === systemSignature) {
187
+ system.system.entities.add(entity);
188
+ } else {
189
+ system.system.entities.delete(entity);
190
+ }
191
+ }
192
+ }
187
193
  }
194
+
188
195
  class Coordinator {
189
- constructor() {
190
- this._entityManager = new EntityManager();
191
- this._componentManager = new ComponentManager();
192
- this._systemManager = new SystemManager();
193
- }
194
- createEntity() {
195
- return this._entityManager.createEntity();
196
- }
197
- destroyEntity(entity) {
198
- this._entityManager.destroyEntity(entity);
199
- this._componentManager.entityDestroyed(entity);
200
- this._systemManager.entityDestroyed(entity);
201
- }
202
- registerComponent(componentName) {
203
- this._componentManager.registerComponent(componentName);
204
- }
205
- addComponentToEntity(componentName, entity, component) {
206
- this._componentManager.addComponentToEntity(componentName, entity, component);
207
- let signature = this._entityManager.getSignature(entity);
208
- if (signature === null) {
209
- signature = 0;
210
- }
211
- const componentType = this._componentManager.getComponentType(componentName);
212
- if (componentType === null) {
213
- return;
214
- }
215
- signature |= 1 << componentType;
216
- this._entityManager.setSignature(entity, signature);
217
- this._systemManager.entitySignatureChanged(entity, signature);
218
- }
219
- removeComponentFromEntity(componentName, entity) {
220
- this._componentManager.removeComponentFromEntity(componentName, entity);
221
- let signature = this._entityManager.getSignature(entity);
222
- if (signature === null) {
223
- signature = 0;
224
- }
225
- const componentType = this._componentManager.getComponentType(componentName);
226
- if (componentType === null) {
227
- return;
228
- }
229
- signature &= ~(1 << componentType);
230
- this._entityManager.setSignature(entity, signature);
231
- this._systemManager.entitySignatureChanged(entity, signature);
232
- }
233
- getComponentFromEntity(componentName, entity) {
234
- return this._componentManager.getComponentFromEntity(componentName, entity);
235
- }
236
- getComponentType(componentName) {
237
- return this._componentManager.getComponentType(componentName) ?? null;
238
- }
239
- registerSystem(systemName, system) {
240
- this._systemManager.registerSystem(systemName, system);
241
- }
242
- setSystemSignature(systemName, signature) {
243
- this._systemManager.setSignature(systemName, signature);
244
- }
196
+ _entityManager;
197
+ _componentManager;
198
+ _systemManager;
199
+ constructor() {
200
+ this._entityManager = new EntityManager;
201
+ this._componentManager = new ComponentManager;
202
+ this._systemManager = new SystemManager;
203
+ }
204
+ createEntity() {
205
+ return this._entityManager.createEntity();
206
+ }
207
+ destroyEntity(entity) {
208
+ this._entityManager.destroyEntity(entity);
209
+ this._componentManager.entityDestroyed(entity);
210
+ this._systemManager.entityDestroyed(entity);
211
+ }
212
+ registerComponent(componentName) {
213
+ this._componentManager.registerComponent(componentName);
214
+ }
215
+ addComponentToEntity(componentName, entity, component) {
216
+ this._componentManager.addComponentToEntity(componentName, entity, component);
217
+ let signature = this._entityManager.getSignature(entity);
218
+ if (signature === null) {
219
+ signature = 0;
220
+ }
221
+ const componentType = this._componentManager.getComponentType(componentName);
222
+ if (componentType === null) {
223
+ console.warn(`Component ${componentName} not registered`);
224
+ return;
225
+ }
226
+ signature |= 1 << componentType;
227
+ this._entityManager.setSignature(entity, signature);
228
+ this._systemManager.entitySignatureChanged(entity, signature);
229
+ }
230
+ removeComponentFromEntity(componentName, entity) {
231
+ this._componentManager.removeComponentFromEntity(componentName, entity);
232
+ let signature = this._entityManager.getSignature(entity);
233
+ if (signature === null) {
234
+ signature = 0;
235
+ }
236
+ const componentType = this._componentManager.getComponentType(componentName);
237
+ if (componentType === null) {
238
+ return;
239
+ }
240
+ signature &= ~(1 << componentType);
241
+ this._entityManager.setSignature(entity, signature);
242
+ this._systemManager.entitySignatureChanged(entity, signature);
243
+ }
244
+ getComponentFromEntity(componentName, entity) {
245
+ return this._componentManager.getComponentFromEntity(componentName, entity);
246
+ }
247
+ getComponentType(componentName) {
248
+ return this._componentManager.getComponentType(componentName) ?? null;
249
+ }
250
+ registerSystem(systemName, system) {
251
+ this._systemManager.registerSystem(systemName, system);
252
+ }
253
+ setSystemSignature(systemName, signature) {
254
+ this._systemManager.setSignature(systemName, signature);
255
+ }
245
256
  }
257
+ export {
258
+ SystemManager,
259
+ MAX_ENTITIES,
260
+ MAX_COMPONENTS,
261
+ EntityManager,
262
+ Coordinator,
263
+ ComponentManager,
264
+ ComponentArray
265
+ };
246
266
 
247
- export { ComponentArray, ComponentManager, Coordinator, EntityManager, MAX_COMPONENTS, MAX_ENTITIES, SystemManager };
248
- //# sourceMappingURL=index.js.map
267
+ //# debugId=840788BF2D72B20064756E2164756E21
package/index.js.map CHANGED
@@ -1 +1,10 @@
1
- {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/index.ts"],
4
+ "sourcesContent": [
5
+ "/** This is a direct port of the tutorial from https://austinmorlan.com/posts/entity_component_system/ with slight modifications */\n\nexport const MAX_ENTITIES = 10000;\nexport const MAX_COMPONENTS = 32;\n\nexport type ComponentSignature = number;\nexport type ComponentType = number;\n\nexport type Entity = number;\n\n\nexport class EntityManager {\n\n private _availableEntities: Entity[] = [];\n private _signatures: ComponentSignature[] = [];\n private _maxEntities: number;\n\n private _livingEntityCount = 0;\n\n constructor(maxEntities: number = MAX_ENTITIES) {\n this._maxEntities = maxEntities;\n for (let i = 0; i < this._maxEntities; i++) {\n this._availableEntities.push(i);\n this._signatures.push(0);\n }\n }\n\n createEntity(): Entity {\n if(this._livingEntityCount >= this._maxEntities) {\n throw new Error('Max entities reached');\n }\n const entity = this._availableEntities.shift();\n if(entity === undefined) {\n throw new Error('No available entities');\n }\n this._signatures[entity] = 0;\n this._livingEntityCount++;\n return entity;\n }\n\n destroyEntity(entity: Entity): void {\n if(entity >= this._maxEntities || entity < 0) {\n throw new Error('Invalid entity out of range');\n }\n this._signatures[entity] = 0;\n this._availableEntities.push(entity);\n this._livingEntityCount--;\n }\n\n setSignature(entity: Entity, signature: ComponentSignature): void {\n if(entity >= this._maxEntities || entity < 0) {\n throw new Error('Invalid entity out of range');\n }\n this._signatures[entity] = signature;\n }\n\n getSignature(entity: Entity): ComponentSignature | null {\n if(entity >= this._maxEntities || entity < 0) {\n return null;\n }\n return this._signatures[entity];\n }\n}\n\ntype Tuple<T, N extends number> = N extends N\n ? number extends N\n ? T[]\n : _TupleOf<T, N, []>\n : never;\n\ntype _TupleOf<T, N extends number, R extends unknown[]> = R['length'] extends N\n ? R\n : _TupleOf<T, N, [...R, T]>;\n\n// Usage\n\nexport interface CArray {\n entityDestroyed(entity: Entity): void;\n}\n\nexport class ComponentArray<T> implements CArray {\n\n private denseArray: T[]; // packed array of data\n private sparse: (Entity | null)[]; // maps entity to index in dense array\n private reverse: (Entity | null)[]; // maps index in dense array to entity\n private _count: number;\n\n constructor(maxEntities: number) {\n this._count = 0;\n this.denseArray = new Array(maxEntities);\n this.sparse = new Array(maxEntities);\n this.reverse = new Array(maxEntities);\n }\n\n insertData(entity: Entity, data: T): void {\n if(this.getData(entity) !== null) {\n this.removeData(entity);\n }\n if(this.sparse.length < entity){\n // resize the array for the new entity but normally this should not happen\n this.sparse = [...this.sparse, ...new Array(entity - this.sparse.length).fill(null)];\n }\n\n this.denseArray[this._count] = data;\n this.reverse[this._count] = entity;\n this.sparse[entity] = this._count;\n this._count++;\n }\n\n getData(entity: Entity): T | null {\n if(this.sparse.length <= entity){\n return null;\n }\n\n const denseIndex = this.sparse[entity];\n if(denseIndex === undefined || denseIndex === null || denseIndex >= this._count){\n return null;\n }\n\n if(this.reverse[denseIndex] !== entity) {\n return null;\n }\n\n return this.denseArray[denseIndex];\n }\n\n removeData(entity: Entity): void {\n const denseIndex = this.sparse[entity];\n if(denseIndex === undefined || denseIndex === null || denseIndex >= this._count){\n return;\n }\n\n const lastEntity = this.reverse[this._count - 1];\n\n if(lastEntity === null) {\n return;\n }\n\n this.denseArray[denseIndex] = this.denseArray[this._count - 1];\n this.reverse[denseIndex] = lastEntity;\n this.sparse[lastEntity] = denseIndex;\n this.sparse[entity] = null;\n\n this._count--;\n }\n\n entityDestroyed(entity: Entity): void {\n this.removeData(entity);\n }\n}\n\nexport class ComponentManager {\n\n private _componentNameToTypeMap: Map<string, {componentType: ComponentType, componentArray: CArray}> = new Map();\n private _nextAvailableComponentType: ComponentType = 0;\n \n registerComponent<T>(componentName: string){\n if(this._componentNameToTypeMap.has(componentName)) {\n console.warn(`Component ${componentName} already registered; registering with the given new type`);\n }\n const componentType = this._nextAvailableComponentType;\n this._componentNameToTypeMap.set(componentName, {componentType, componentArray: new ComponentArray<T>(MAX_ENTITIES)});\n this._nextAvailableComponentType++;\n }\n\n getComponentType(componentName: string): ComponentType | null {\n return this._componentNameToTypeMap.get(componentName)?.componentType ?? null;\n }\n\n addComponentToEntity<T>(componentName: string, entity: Entity, component: T){\n const componentArray = this._getComponentArray<T>(componentName);\n if(componentArray === null) {\n return;\n }\n componentArray.insertData(entity, component);\n }\n\n removeComponentFromEntity<T>(componentName: string, entity: Entity){\n const componentArray = this._getComponentArray<T>(componentName);\n if(componentArray === null) {\n return;\n }\n componentArray.removeData(entity);\n }\n\n getComponentFromEntity<T>(componentName: string, entity: Entity): T | null {\n const componentArray = this._getComponentArray<T>(componentName);\n if(componentArray === null) {\n return null;\n }\n return componentArray.getData(entity);\n }\n\n entityDestroyed(entity: Entity){\n for(const component of this._componentNameToTypeMap.values()){\n component.componentArray.entityDestroyed(entity);\n }\n }\n\n private _getComponentArray<T>(componentName: string): ComponentArray<T> | null {\n const component = this._componentNameToTypeMap.get(componentName);\n if(component === undefined) {\n console.warn(`Component ${componentName} not registered`);\n return null;\n }\n return component.componentArray as ComponentArray<T>;\n }\n\n}\n\nexport interface System {\n entities: Set<Entity>;\n}\n\nexport class SystemManager {\n private _systems: Map<string, {system: System, signature: ComponentSignature}> = new Map();\n\n registerSystem(systemName: string, system: System){\n if(this._systems.has(systemName)) {\n console.warn(`System ${systemName} already registered`);\n return;\n }\n this._systems.set(systemName, {system, signature: 0});\n }\n\n setSignature(systemName: string, signature: ComponentSignature){\n if(!this._systems.has(systemName)) {\n console.warn(`System ${systemName} not registered`);\n return;\n }\n const system = this._systems.get(systemName);\n if(system === undefined) {\n console.warn(`System ${systemName} not registered`);\n return;\n }\n system.signature = signature;\n }\n\n entityDestroyed(entity: Entity){\n for(const system of this._systems.values()){\n system.system.entities.delete(entity);\n }\n }\n\n entitySignatureChanged(entity: Entity, signature: ComponentSignature){\n for(const system of this._systems.values()){\n const systemSignature = system.signature;\n if((systemSignature & signature) === systemSignature){\n system.system.entities.add(entity);\n } else {\n system.system.entities.delete(entity);\n }\n }\n }\n}\n\nexport class Coordinator {\n private _entityManager: EntityManager;\n private _componentManager: ComponentManager;\n private _systemManager: SystemManager;\n\n constructor(){\n this._entityManager = new EntityManager();\n this._componentManager = new ComponentManager();\n this._systemManager = new SystemManager();\n }\n\n createEntity(): Entity {\n return this._entityManager.createEntity();\n }\n\n destroyEntity(entity: Entity): void {\n this._entityManager.destroyEntity(entity);\n this._componentManager.entityDestroyed(entity);\n this._systemManager.entityDestroyed(entity);\n }\n\n registerComponent<T>(componentName: string): void {\n this._componentManager.registerComponent<T>(componentName);\n }\n\n addComponentToEntity<T>(componentName: string, entity: Entity, component: T): void {\n this._componentManager.addComponentToEntity<T>(componentName, entity, component);\n let signature = this._entityManager.getSignature(entity);\n if(signature === null) {\n signature = 0;\n }\n const componentType = this._componentManager.getComponentType(componentName);\n if(componentType === null) {\n console.warn(`Component ${componentName} not registered`);\n return;\n }\n signature |= 1 << componentType;\n this._entityManager.setSignature(entity, signature);\n this._systemManager.entitySignatureChanged(entity, signature);\n }\n\n removeComponentFromEntity<T>(componentName: string, entity: Entity): void {\n this._componentManager.removeComponentFromEntity<T>(componentName, entity);\n let signature = this._entityManager.getSignature(entity);\n if(signature === null) {\n signature = 0;\n }\n const componentType = this._componentManager.getComponentType(componentName);\n if(componentType === null) {\n return;\n }\n signature &= ~(1 << componentType);\n this._entityManager.setSignature(entity, signature);\n this._systemManager.entitySignatureChanged(entity, signature);\n }\n\n getComponentFromEntity<T>(componentName: string, entity: Entity): T | null {\n return this._componentManager.getComponentFromEntity<T>(componentName, entity);\n }\n\n getComponentType(componentName: string): ComponentType | null {\n return this._componentManager.getComponentType(componentName) ?? null;\n }\n\n registerSystem(systemName: string, system: System): void {\n this._systemManager.registerSystem(systemName, system);\n }\n\n setSystemSignature(systemName: string, signature: ComponentSignature): void {\n this._systemManager.setSignature(systemName, signature);\n }\n}\n"
6
+ ],
7
+ "mappings": "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",
8
+ "debugId": "840788BF2D72B20064756E2164756E21",
9
+ "names": []
10
+ }
package/math.tsbuildinfo CHANGED
@@ -1 +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.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.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.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.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","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.full.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../src/index.ts","../../../node_modules/.pnpm/@jest+expect-utils@30.2.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/symbols/symbols.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/symbols/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/any/any.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/any/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped-key.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/async-iterator/async-iterator.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/async-iterator/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/readonly/readonly.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/readonly/readonly-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/readonly/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/readonly-optional/readonly-optional.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/readonly-optional/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/constructor/constructor.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/constructor/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/literal/literal.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/literal/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/enum/enum.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/enum/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/function/function.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/function/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/computed/computed.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/computed/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/never/never.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/never/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect-type.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect-evaluated.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intersect/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/union/union-type.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/union/union-evaluated.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/union/union.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/union/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/recursive/recursive.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/recursive/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/unsafe/unsafe.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/unsafe/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/ref/ref.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/ref/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/tuple/tuple.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/tuple/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/error/error.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/error/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/string/string.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/string/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/boolean/boolean.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/boolean/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/number/number.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/number/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/integer/integer.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/integer/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/bigint/bigint.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/bigint/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/template-literal/parse.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/template-literal/finite.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/template-literal/generate.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/template-literal/syntax.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/template-literal/pattern.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/template-literal/template-literal.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/template-literal/union.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/template-literal/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-property-keys.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-from-mapped-key.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/indexed/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/iterator/iterator.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/iterator/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/promise/promise.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/promise/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/sets/set.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/sets/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/mapped/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/optional/optional.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/optional/optional-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/optional/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/awaited/awaited.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/awaited/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-property-keys.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-property-entries.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/keyof/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/omit/omit-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/omit/omit.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/omit/omit-from-mapped-key.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/omit/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/pick/pick-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/pick/pick.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/pick/pick-from-mapped-key.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/pick/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/null/null.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/null/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/symbol/symbol.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/symbol/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/undefined/undefined.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/undefined/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/partial/partial.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/partial/partial-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/partial/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/regexp/regexp.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/regexp/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/record/record.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/record/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/required/required.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/required/required-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/required/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/transform/transform.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/transform/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/module/compute.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/module/infer.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/module/module.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/module/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/not/not.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/not/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/static/static.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/static/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/object/object.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/object/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/helpers/helpers.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/helpers/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/array/array.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/array/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/date/date.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/date/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/uint8array/uint8array.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/uint8array/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/unknown/unknown.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/unknown/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/void/void.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/void/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/schema/schema.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/schema/anyschema.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/schema/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/clone/type.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/clone/value.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/clone/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/create/type.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/create/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/argument/argument.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/argument/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/guard/kind.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/guard/type.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/guard/value.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/guard/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/patterns/patterns.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/patterns/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/registry/format.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/registry/type.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/registry/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/composite/composite.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/composite/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/const/const.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/const/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/constructor-parameters/constructor-parameters.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/constructor-parameters/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude-from-template-literal.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/exclude/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extends/extends-check.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extends/extends-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extends/extends.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extends/extends-from-mapped-key.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extends/extends-undefined.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extends/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extract/extract-from-template-literal.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extract/extract.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extract/extract-from-mapped-result.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/extract/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/instance-type/instance-type.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/instance-type/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/instantiate/instantiate.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/instantiate/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intrinsic/intrinsic-from-mapped-key.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intrinsic/intrinsic.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intrinsic/capitalize.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intrinsic/lowercase.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intrinsic/uncapitalize.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intrinsic/uppercase.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/intrinsic/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/parameters/parameters.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/parameters/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/rest/rest.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/rest/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/return-type/return-type.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/return-type/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/type/json.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/type/javascript.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/type/type/index.d.mts","../../../node_modules/.pnpm/@sinclair+typebox@0.34.41/node_modules/@sinclair/typebox/build/esm/index.d.mts","../../../node_modules/.pnpm/@jest+schemas@30.0.5/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/.pnpm/pretty-format@30.2.0/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@30.2.0/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@30.2.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/jest-mock@30.2.0/node_modules/jest-mock/build/index.d.ts","../../../node_modules/.pnpm/expect@30.2.0/node_modules/expect/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@30.0.0/node_modules/@types/jest/index.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/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@7.16.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.9.1/node_modules/@types/node/index.d.ts"],"fileIdsList":[[260,315,332,333],[250,260,315,332,333],[60,62,66,69,71,73,75,77,79,83,87,91,93,95,97,99,101,103,105,107,109,111,119,124,126,128,130,132,135,137,142,146,150,152,154,156,159,161,163,166,168,172,174,176,178,180,182,184,186,188,190,193,196,198,200,204,206,209,211,213,215,219,225,229,231,233,240,242,244,246,249,260,315,332,333],[60,193,260,315,332,333],[61,260,315,332,333],[199,260,315,332,333],[60,176,180,193,260,315,332,333],[181,260,315,332,333],[60,176,193,260,315,332,333],[65,260,315,332,333],[81,87,91,97,128,180,193,260,315,332,333],[136,260,315,332,333],[110,260,315,332,333],[104,260,315,332,333],[194,195,260,315,332,333],[193,260,315,332,333],[83,87,124,130,142,178,180,193,260,315,332,333],[210,260,315,332,333],[59,193,260,315,332,333],[80,260,315,332,333],[62,69,75,79,83,99,111,152,154,156,178,180,184,186,188,193,260,315,332,333],[212,260,315,332,333],[73,83,99,193,260,315,332,333],[214,260,315,332,333],[60,69,71,135,176,180,193,260,315,332,333],[72,260,315,332,333],[197,260,315,332,333],[191,260,315,332,333],[183,260,315,332,333],[60,75,193,260,315,332,333],[76,260,315,332,333],[100,260,315,332,333],[132,178,193,217,260,315,332,333],[119,193,217,260,315,332,333],[83,91,119,132,176,180,193,216,218,260,315,332,333],[216,217,218,260,315,332,333],[101,193,260,315,332,333],[75,132,178,180,193,222,260,315,332,333],[132,178,193,222,260,315,332,333],[91,132,176,180,193,221,223,260,315,332,333],[220,221,222,223,224,260,315,332,333],[132,178,193,227,260,315,332,333],[119,193,227,260,315,332,333],[83,91,119,132,176,180,193,226,228,260,315,332,333],[226,227,228,260,315,332,333],[78,260,315,332,333],[201,202,203,260,315,332,333],[60,62,66,69,73,75,79,81,83,87,91,93,95,97,99,103,105,107,109,111,119,126,128,132,135,152,154,156,161,163,168,172,174,178,182,184,186,188,190,193,200,260,315,332,333],[60,62,66,69,73,75,79,81,83,87,91,93,95,97,99,101,103,105,107,109,111,119,126,128,132,135,152,154,156,161,163,168,172,174,178,182,184,186,188,190,193,200,260,315,332,333],[83,178,193,260,315,332,333],[179,260,315,332,333],[120,121,122,123,260,315,332,333],[122,132,178,180,193,260,315,332,333],[120,124,132,178,193,260,315,332,333],[75,91,107,109,119,193,260,315,332,333],[81,83,87,91,93,97,99,120,121,123,132,178,180,182,193,260,315,332,333],[230,260,315,332,333],[73,83,193,260,315,332,333],[232,260,315,332,333],[66,69,71,73,79,87,91,99,126,128,135,163,178,182,188,193,200,260,315,332,333],[108,260,315,332,333],[84,85,86,260,315,332,333],[69,83,84,135,193,260,315,332,333],[83,84,193,260,315,332,333],[193,235,260,315,332,333],[234,235,236,237,238,239,260,315,332,333],[75,132,178,180,193,235,260,315,332,333],[75,91,119,132,193,234,260,315,332,333],[125,260,315,332,333],[138,139,140,141,260,315,332,333],[132,139,178,180,193,260,315,332,333],[87,91,93,99,130,178,180,182,193,260,315,332,333],[75,81,91,97,107,132,138,140,180,193,260,315,332,333],[74,260,315,332,333],[63,64,131,260,315,332,333],[60,178,193,260,315,332,333],[63,64,66,69,73,75,77,79,87,91,99,124,126,128,130,135,178,180,182,193,260,315,332,333],[66,69,73,77,79,81,83,87,91,97,99,124,126,135,137,142,146,150,159,163,166,168,178,180,182,193,260,315,332,333],[171,260,315,332,333],[66,69,73,77,79,87,91,93,97,99,126,135,163,176,178,180,182,193,260,315,332,333],[60,169,170,176,178,193,260,315,332,333],[82,260,315,332,333],[173,260,315,332,333],[151,260,315,332,333],[106,260,315,332,333],[177,260,315,332,333],[60,69,135,176,180,193,260,315,332,333],[143,144,145,260,315,332,333],[132,144,178,193,260,315,332,333],[132,144,178,180,193,260,315,332,333],[75,81,87,91,93,97,124,132,143,145,178,180,193,260,315,332,333],[133,134,260,315,332,333],[132,133,178,260,315,332,333],[60,132,134,180,193,260,315,332,333],[241,260,315,332,333],[79,83,99,193,260,315,332,333],[157,158,260,315,332,333],[132,157,178,180,193,260,315,332,333],[69,71,75,81,87,91,93,97,103,105,107,109,111,132,135,152,154,156,158,178,180,193,260,315,332,333],[205,260,315,332,333],[147,148,149,260,315,332,333],[132,148,178,193,260,315,332,333],[132,148,178,180,193,260,315,332,333],[75,81,87,91,93,97,124,132,147,149,178,180,193,260,315,332,333],[127,260,315,332,333],[70,260,315,332,333],[69,135,193,260,315,332,333],[67,68,260,315,332,333],[67,132,178,260,315,332,333],[60,68,132,180,193,260,315,332,333],[162,260,315,332,333],[60,62,75,77,83,91,103,105,107,109,119,161,176,178,180,193,260,315,332,333],[92,260,315,332,333],[96,260,315,332,333],[60,95,176,193,260,315,332,333],[160,260,315,332,333],[207,208,260,315,332,333],[164,165,260,315,332,333],[132,164,178,180,193,260,315,332,333],[69,71,75,81,87,91,93,97,103,105,107,109,111,132,135,152,154,156,165,178,180,193,260,315,332,333],[243,260,315,332,333],[87,91,99,193,260,315,332,333],[245,260,315,332,333],[79,83,193,260,315,332,333],[62,66,73,75,77,79,87,91,93,97,99,103,105,107,109,111,119,126,128,152,154,156,161,163,174,178,182,184,186,188,190,191,260,315,332,333],[191,192,260,315,332,333],[60,260,315,332,333],[129,260,315,332,333],[175,260,315,332,333],[66,69,73,77,79,83,87,91,93,95,97,99,126,128,135,163,168,172,174,178,180,182,193,260,315,332,333],[102,260,315,332,333],[153,260,315,332,333],[59,260,315,332,333],[75,91,101,103,105,107,109,111,112,119,260,315,332,333],[75,91,101,105,112,113,119,180,260,315,332,333],[112,113,114,115,116,117,118,260,315,332,333],[101,260,315,332,333],[101,119,260,315,332,333],[75,91,103,105,107,111,119,180,260,315,332,333],[60,75,83,91,103,105,107,109,111,115,176,180,193,260,315,332,333],[75,91,117,176,180,260,315,332,333],[167,260,315,332,333],[98,260,315,332,333],[247,248,260,315,332,333],[66,73,79,111,126,128,137,154,156,161,184,186,190,193,200,215,231,233,242,246,247,260,315,332,333],[62,69,71,75,77,83,87,91,93,95,97,99,103,105,107,109,119,124,132,135,142,146,150,152,159,163,166,168,172,174,178,182,188,193,211,213,219,225,229,240,244,260,315,332,333],[185,260,315,332,333],[155,260,315,332,333],[88,89,90,260,315,332,333],[69,83,88,135,193,260,315,332,333],[83,88,193,260,315,332,333],[187,260,315,332,333],[94,260,315,332,333],[189,260,315,332,333],[252,256,260,315,332,333],[260,312,313,315,332,333],[260,314,315,332,333],[315,332,333],[260,315,320,332,333,350],[260,315,316,321,326,332,333,335,347,358],[260,315,316,317,326,332,333,335],[260,315,318,332,333,359],[260,315,319,320,327,332,333,336],[260,315,320,332,333,347,355],[260,315,321,323,326,332,333,335],[260,314,315,322,332,333],[260,315,323,324,332,333],[260,315,325,326,332,333],[260,314,315,326,332,333],[260,315,326,327,328,332,333,347,358],[260,315,326,327,328,332,333,342,347,350],[260,307,315,323,326,329,332,333,335,347,358],[260,315,326,327,329,330,332,333,335,347,355,358],[260,315,329,331,332,333,347,355,358],[258,259,260,261,262,263,264,265,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364],[260,315,326,332,333],[260,315,332,333,334,358],[260,315,323,326,332,333,335,347],[260,315,332,333,336],[260,315,332,333,337],[260,314,315,332,333,338],[260,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364],[260,315,332,333,340],[260,315,332,333,341],[260,315,326,332,333,342,343],[260,315,332,333,342,344,359,361],[260,315,327,332,333],[260,315,326,332,333,347,348,350],[260,315,332,333,349,350],[260,315,332,333,347,348],[260,315,332,333,350],[260,315,332,333,351],[260,312,315,332,333,347,352],[260,315,326,332,333,353,354],[260,315,332,333,353,354],[260,315,320,332,333,335,347,355],[260,315,332,333,356],[260,315,332,333,335,357],[260,315,329,332,333,341,358],[260,315,320,332,333,359],[260,315,332,333,347,360],[260,315,332,333,334,361],[260,315,332,333,362],[260,315,320,332,333],[260,307,315,332,333],[260,315,332,333,363],[260,307,315,326,328,332,333,338,347,350,358,360,361,363],[260,315,332,333,347,364],[57,254,255,260,315,332,333],[252,260,315,332,333],[58,253,260,315,332,333],[251,260,315,332,333],[54,260,315,332,333],[260,273,276,279,280,315,332,333,358],[260,276,315,332,333,347,358],[260,276,280,315,332,333,358],[260,315,332,333,347],[260,270,315,332,333],[260,274,315,332,333],[260,272,273,276,315,332,333,358],[260,315,332,333,335,355],[260,315,332,333,365],[260,270,315,332,333,365],[260,272,276,315,332,333,335,358],[260,267,268,269,271,275,315,326,332,333,347,358],[260,276,284,292,315,332,333],[260,268,274,315,332,333],[260,276,301,302,315,332,333],[260,268,271,276,315,332,333,350,358,365],[260,276,315,332,333],[260,272,276,315,332,333,358],[260,267,315,332,333],[260,270,271,272,274,275,276,277,278,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,302,303,304,305,306,315,332,333],[260,276,294,297,315,323,332,333],[260,276,284,285,286,315,332,333],[260,274,276,285,287,315,332,333],[260,275,315,332,333],[260,268,270,276,315,332,333],[260,276,280,285,287,315,332,333],[260,280,315,332,333],[260,274,276,279,315,332,333,358],[260,268,272,276,284,315,332,333],[260,276,294,315,332,333],[260,287,315,332,333],[260,270,276,301,315,332,333,350,363,365],[55,260,315,332,333]],"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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"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":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1305d1e76ca44e30fb8b2b8075fa522b83f60c0bcf5d4326a9d2cf79b53724f8","impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},"5b79c74f9b42850c51215cc79a8c144b63ca09266ef272ba871b64d16abeb287",{"version":"d934a06d62d87a7e2d75a3586b5f9fb2d94d5fe4725ff07252d5f4651485100f","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"b104e2da53231a529373174880dc0abfbc80184bb473b6bf2a9a0746bebb663d","impliedFormat":99},{"version":"3d4bb4d84af5f0b348f01c85537da1c7afabc174e48806c8b20901377c57b8e4","impliedFormat":99},{"version":"a2500b15294325d9784a342145d16ef13d9efb1c3c6cb4d89934b2c0d521b4ab","impliedFormat":99},{"version":"79d5c409e84764fabdd276976a31928576dcf9aea37be3b5a81f74943f01f3ff","impliedFormat":99},{"version":"8ea020ea63ecc981b9318fc532323e31270c911a7ade4ba74ab902fcf8281c45","impliedFormat":99},{"version":"c81e1a9b03e4de1225b33ac84aaf50a876837057828e0806d025daf919bf2d51","impliedFormat":99},{"version":"bb7264d8bd6152524f2ef5dae5c260ae60d459bf406202258bd0ce57c79e5a6d","impliedFormat":99},{"version":"fb66165c4976bc21a4fde14101e36c43d46f907489b7b6a5f2a2679108335d4a","impliedFormat":99},{"version":"628c2e0a0b61be3e44f296083e6af9b5a9b6881037dd43e7685ee473930a4404","impliedFormat":99},{"version":"4776f1e810184f538d55c5da92da77f491999054a1a1ee69a2d995ab2e8d1bc0","impliedFormat":99},{"version":"11544c4e626eab113df9432e97a371693c98c17ae4291d2ad425af5ef00e580b","impliedFormat":99},{"version":"e1847b81166d25f29213d37115253c5b82ec9ee78f19037592aa173e017636d5","impliedFormat":99},{"version":"fe0bd60f36509711c4a69c0e00c0111f5ecdc685e6c1a2ae99bd4d56c76c07fc","impliedFormat":99},{"version":"b8f3f4ee9aae88a9cec9797d166209eb2a7e4beb8a15e0fc3c8b90c9682c337d","impliedFormat":99},{"version":"ea3c4f5121fe2e86101c155ebe60b435c729027ae50025b2a4e1d12a476002ae","impliedFormat":99},{"version":"372db10bea0dbe1f8588f82b339152b11847e6a4535d57310292660c8a9acfc5","impliedFormat":99},{"version":"6f9fba6349c16eed21d139d5562295e8d5aafa5abe6e8ebcde43615a80c69ac1","impliedFormat":99},{"version":"1474533e27d0e3e45a417ea153d4612f0adbff055f244a29606a1fae6db56cda","impliedFormat":99},{"version":"c7fd8a79d0495955d55bfea34bbdb85235b0f27b417a81afc395655ef43d091d","impliedFormat":99},{"version":"987405949bfafbb1c93d976c3352fe33bfb85303a79fc5d9588b681e4af6c3b3","impliedFormat":99},{"version":"867bc1f5a168fd86d12d828dfafd77c557f13b4326588615b19e301f6856f70c","impliedFormat":99},{"version":"6beddab08d635b4c16409a748dcd8de38a8e444a501b8e79d89f458ae88579d1","impliedFormat":99},{"version":"1dea5c7bf28569228ffcc83e69e1c759e7f0133c232708e09cfa4d7ed3ec7079","impliedFormat":99},{"version":"6114545678bb75e581982c990597ca3ba7eeef185256a14c906edfc949db2cd1","impliedFormat":99},{"version":"5c8625f8dbbd94ab6ca171d621049c810cce4fce6ec1fd1c24c331d9858dce17","impliedFormat":99},{"version":"af36e5f207299ba2013f981dffacd4a04cdce2dd4bd255fff084e7257bf8b947","impliedFormat":99},{"version":"c69c720b733cdaa3b4542f4c1206d9f0fcf3696f87a6e88adb15db6882fbcd69","impliedFormat":99},{"version":"9c37e66916cbbe7d96301934b665ec712679c3cb99081ccaae4034b987533a59","impliedFormat":99},{"version":"2e1a163ab5b5c2640d7f5a100446bbcaeda953a06439c901b2ae307f7088dc30","impliedFormat":99},{"version":"f0b3406d2bc2c262f218c42a125832e026997278a890ef3549fa49e62177ce86","impliedFormat":99},{"version":"756cf223ca25eb36c413b2a286fa108f19a5ac39dc6d65f2c590dc118f6150df","impliedFormat":99},{"version":"70ce03da8740ca786a1a78b8a61394ecf812dd1acf2564d0ce6be5caf29e58d9","impliedFormat":99},{"version":"e0f5707d91bb950edb6338e83dd31b6902b6620018f6aa5fd0f504c2b0ea61f5","impliedFormat":99},{"version":"0dc7ae20eab8097b0c7a48b5833f6329e976f88af26055cdae6337141ff2c12e","impliedFormat":99},{"version":"76b6db79c0f5b326ff98b15829505efd25d36ce436b47fe59781ac9aec0d7f1b","impliedFormat":99},{"version":"786f3f186af874ea3e34c2aeef56a0beab90926350f3375781c0a3aa844cd76e","impliedFormat":99},{"version":"63dbc8fa1dcbfb8af6c48f004a1d31988f42af171596c5cca57e4c9d5000d291","impliedFormat":99},{"version":"aa235b26568b02c10d74007f577e0fa21a266745029f912e4fba2c38705b3abe","impliedFormat":99},{"version":"3d6d570b5f36cf08d9ad8d93db7ddc90fa7ccc0c177de2e9948bb23cde805d32","impliedFormat":99},{"version":"037b63ef3073b5f589102cb7b2ace22a69b0c2dcf2359ff6093d4048f9b96daa","impliedFormat":99},{"version":"627e2ac450dcd71bdd8c1614b5d3a02b214ad92a1621ebeb2642dffb9be93715","impliedFormat":99},{"version":"813514ef625cb8fc3befeec97afddfb3b80b80ced859959339d99f3ad538d8fe","impliedFormat":99},{"version":"624f8a7a76f26b9b0af9524e6b7fa50f492655ab7489c3f5f0ddd2de5461b0c3","impliedFormat":99},{"version":"d6b6fa535b18062680e96b2f9336e301312a2f7bdaeb47c4a5b3114c3de0c08b","impliedFormat":99},{"version":"818e8f95d3851073e92bcad7815367dd8337863aaf50d79e703ac479cca0b6a4","impliedFormat":99},{"version":"29b716ff24d0db64060c9a90287f9de2863adf0ef1efef71dbaba33ebc20b390","impliedFormat":99},{"version":"2530c36527a988debd39fed6504d8c51a3e0f356aaf2d270edd492f4223bdeff","impliedFormat":99},{"version":"2553cfd0ec0164f3ea228c5badd1ba78607d034fc2dec96c781026a28095204b","impliedFormat":99},{"version":"6e943693dbc91aa2c6c520e7814316469c8482d5d93df51178d8ded531bb29ee","impliedFormat":99},{"version":"e74e1249b69d9f49a6d9bfa5305f2a9f501e18de6ab0829ab342abf6d55d958b","impliedFormat":99},{"version":"16f60d6924a9e0b4b9961e42b5e586b28ffd57cdfa236ae4408f7bed9855a816","impliedFormat":99},{"version":"493c2d42f1b6cfe3b13358ff3085b90fa9a65d4858ea4d02d43772c0795006ec","impliedFormat":99},{"version":"3702c7cbcd937d7b96e5376fe562fd77b4598fe93c7595ee696ebbfefddac70f","impliedFormat":99},{"version":"848621f6b65b3963f86c51c8b533aea13eadb045da52515e6e1407dea19b8457","impliedFormat":99},{"version":"c15b679c261ce17551e17a40a42934aeba007580357f1a286c79e8e091ee3a76","impliedFormat":99},{"version":"156108cedad653a6277b1cb292b18017195881f5fe837fb7f9678642da8fa8f2","impliedFormat":99},{"version":"0a0bb42c33e9faf63e0b49a429e60533ab392f4f02528732ecbd62cfc2d54c10","impliedFormat":99},{"version":"70fa95cd7cb511e55c9262246de1f35f3966c50e8795a147a93c538db824cdc8","impliedFormat":99},{"version":"bc28d8cec56b5f91c8a2ec131444744b13f63c53ce670cb31d4dffdfc246ba34","impliedFormat":99},{"version":"7bd87c0667376e7d6325ada642ec29bf28e940cb146d21d270cac46b127e5313","impliedFormat":99},{"version":"0318969deede7190dd3567433a24133f709874c5414713aac8b706a5cb0fe347","impliedFormat":99},{"version":"3770586d5263348c664379f748428e6f17e275638f8620a60490548d1fada8b4","impliedFormat":99},{"version":"ff65e6f720ba4bf3da5815ca1c2e0df2ece2911579f307c72f320d692410e03d","impliedFormat":99},{"version":"edb4f17f49580ebcec71e1b7217ad1139a52c575e83f4f126db58438a549b6df","impliedFormat":99},{"version":"353c0cbb6e39e73e12c605f010fddc912c8212158ee0c49a6b2e16ede22cdaab","impliedFormat":99},{"version":"e125fdbea060b339306c30c33597b3c677e00c9e78cd4bf9a15b3fb9474ebb5d","impliedFormat":99},{"version":"ee141f547382d979d56c3b059fc12b01a88b7700d96f085e74268bc79f48c40a","impliedFormat":99},{"version":"1d64132735556e2a1823044b321c929ad4ede45b81f3e04e0e23cf76f4cbf638","impliedFormat":99},{"version":"8b4a3550a3cac035fe928701bc046f5fac76cca32c7851376424b37312f4b4ca","impliedFormat":99},{"version":"5fd7f9b36f48d6308feba95d98817496274be1939a9faa5cd9ed0f8adf3adf3a","impliedFormat":99},{"version":"15a8f79b1557978d752c0be488ee5a70daa389638d79570507a3d4cfc620d49d","impliedFormat":99},{"version":"d4c14ea7d76619ef4244e2c220c2caeec78d10f28e1490eeac89df7d2556b79f","impliedFormat":99},{"version":"8096207a00346207d9baf7bc8f436ef45a20818bf306236a4061d6ccc45b0372","impliedFormat":99},{"version":"040f2531989793c4846be366c100455789834ba420dfd6f36464fe73b68e35b6","impliedFormat":99},{"version":"c5c7020a1d11b7129eb8ddffb7087f59c83161a3792b3560dcd43e7528780ab0","impliedFormat":99},{"version":"d1f97ea020060753089059e9b6de1ab05be4cb73649b595c475e2ec197cbce0f","impliedFormat":99},{"version":"b5ddca6fd676daf45113412aa2b8242b8ee2588e99d68c231ab7cd3d88b392fa","impliedFormat":99},{"version":"77404ec69978995e3278f4a2d42940acbf221da672ae9aba95ffa485d0611859","impliedFormat":99},{"version":"4e6672fb142798b69bcb8d6cd5cc2ec9628dbea9744840ee3599b3dcd7b74b09","impliedFormat":99},{"version":"609653f5b74ef61422271a28dea232207e7ab8ad1446de2d57922e3678160f01","impliedFormat":99},{"version":"9f96251a94fbff4038b464ee2d99614bca48e086e1731ae7a2b5b334826d3a86","impliedFormat":99},{"version":"cacbb7f3e679bdea680c6c609f4403574a5de8b66167b8867967083a40821e2a","impliedFormat":99},{"version":"ee4cf97e8bad27c9e13a17a9f9cbd86b32e9fbc969a5c3f479dafb219209848c","impliedFormat":99},{"version":"3a4e35b6e99ed398e77583ffc17f8774cb4253f8796c0e04ce07c26636fed4a9","impliedFormat":99},{"version":"08d323cb848564baef1ecbe29df14f7ad84e5b2eaf2e02ea8cb422f069dcb2fa","impliedFormat":99},{"version":"e640df876f436395b62342518b114be951312a618eee28335b04cd9be7349e81","impliedFormat":99},{"version":"c3b9c02a31b36dd3a4067f420316c550f93d463e46b2704391100428e145fd7f","impliedFormat":99},{"version":"b2a4d01fcf005530c3f8689ac0197e5fd6b75eb031e73ca39e5a27d41793a5d8","impliedFormat":99},{"version":"e99d9167596f997dd2da0de0751a9f0e2f4100f07bddf049378719191aee87f6","impliedFormat":99},{"version":"3f9c7d3b86994c40e199fca9d3144e0a4430bff908a26d58904d7fab68d03e6a","impliedFormat":99},{"version":"403971c465292dedc8dff308f430c6b69ec5e19ea98d650dae40c70f2399dc14","impliedFormat":99},{"version":"fd3774aa27a30b17935ad360d34570820b26ec70fa5fcfd44c7e884247354d37","impliedFormat":99},{"version":"7b149b38e54fe0149fe500c5d5a049654ce17b1705f6a1f72dd50d84c6a678b9","impliedFormat":99},{"version":"3eb76327823b6288eb4ed4648ebf4e75cf47c6fbc466ed920706b801399f7dc3","impliedFormat":99},{"version":"c6a219d0d39552594a4cc75970768004f99684f28890fc36a42b853af04997b7","impliedFormat":99},{"version":"2110d74b178b022ca8c5ae8dcc46e759c34cf3b7e61cb2f8891fd8d24cb614ef","impliedFormat":99},{"version":"38f5e025404a3108f5bb41e52cead694a86d16ad0005e0ef7718a2a31e959d1e","impliedFormat":99},{"version":"8db133d270ebb1ba3fa8e2c4ab48df2cc79cb03a705d47ca9f959b0756113d3d","impliedFormat":99},{"version":"bc2930d6f7099833b3e47fc45440d30984b84e8a457bbe443bb0c686ea623663","impliedFormat":99},{"version":"f06e5783d10123b74b14e141426a80234b9d6e5ad94bfc4850ea912719f4987c","impliedFormat":99},{"version":"de9466be4b561ad0079ac95ca7445c99fdf45ef115a93af8e2e933194b3cdf4c","impliedFormat":99},{"version":"0c1eed961c15e1242389b0497628709f59d7afd50d5a1955daa10b5bd3b68fc2","impliedFormat":99},{"version":"5e07a9f7f130e5404c202bf7b0625a624c9d266b980576f5d62608ef21d96eab","impliedFormat":99},{"version":"2f97d5063ab69bf32d6417d71765fc154dc6ff7c16700db7c4af5341a965c277","impliedFormat":99},{"version":"a8a9459dd76ef5eeef768da4ce466c5539d73b26334131bd1dd6cbd74ce48fa2","impliedFormat":99},{"version":"c9fdc6ea16a7375f149c45eba5b3e5e071bb54103bacae2eb523da8e2e040e8e","impliedFormat":99},{"version":"9e4d81dd52d5a8b6c159c0b2f2b5fbe2566f12fcc81f7ba7ebb46ca604657b45","impliedFormat":99},{"version":"9ee245e7c6aa2d81ee0d7f30ff6897334842c469b0e20da24b3cddc6f635cc06","impliedFormat":99},{"version":"e7d5132674ddcd01673b0517eebc44c17f478126284c3eabd0a552514cb992bb","impliedFormat":99},{"version":"a820710a917f66fa88a27564465a033c393e1322a61eb581d1f20e0680b498f1","impliedFormat":99},{"version":"19086752f80202e6a993e2e45c0e7fc7c7fc4315c4805f3464625f54d919fa2e","impliedFormat":99},{"version":"141aebe2ee4fecd417d44cf0dabf6b80592c43164e1fbd9bfaf03a4ec377c18e","impliedFormat":99},{"version":"72c35a5291e2e913387583717521a25d15f1e77d889191440dc855c7e821b451","impliedFormat":99},{"version":"ec1c67b32d477ceeebf18bdeb364646d6572e9dd63bb736f461d7ea8510aca4f","impliedFormat":99},{"version":"fb555843022b96141c2bfaf9adcc3e5e5c2d3f10e2bcbd1b2b666bd701cf9303","impliedFormat":99},{"version":"f851083fc20ecc00ff8aaf91ba9584e924385768940654518705423822de09e8","impliedFormat":99},{"version":"c8d53cdb22eedf9fc0c8e41a1d9a147d7ad8997ed1e306f1216ed4e8daedb6b3","impliedFormat":99},{"version":"6c052f137bab4ba9ed6fd76f88a8d00484df9d5cb921614bb4abe60f51970447","impliedFormat":99},{"version":"ff4eff8479b0548b2ebc1af1bc7612253c3d44704c3c20dfd8a8df397fc3f2a1","impliedFormat":99},{"version":"7d5c2df0c3706f45b77970232aa3a38952561311ccc8fcb7591e1b7a469ad761","impliedFormat":99},{"version":"2c41502b030205006ea3849c83063c4327342fbf925d8ed93b18309428fdd832","impliedFormat":99},{"version":"d12eecede214f8807a719178d7d7e2fc32f227d4705d123c3f45d8a3b5765f38","impliedFormat":99},{"version":"c8893abd114f341b860622b92c9ffc8c9eb9f21f6541bd3cbc9a4aa9b1097e42","impliedFormat":99},{"version":"825674da70d892b7e32c53f844c5dfce5b15ea67ceda4768f752eed2f02d8077","impliedFormat":99},{"version":"2c676d27ef1afbc8f8e514bb46f38550adf177ae9b0102951111116fa7ea2e10","impliedFormat":99},{"version":"a6072f5111ea2058cb4d592a4ee241f88b198498340d9ad036499184f7798ae2","impliedFormat":99},{"version":"ab87c99f96d9b1bf93684b114b27191944fef9a164476f2c6c052b93eaac0a4f","impliedFormat":99},{"version":"13e48eaca1087e1268f172607ae2f39c72c831a482cab597076c6073c97a15e7","impliedFormat":99},{"version":"19597dbe4500c782a4252755510be8324451847354cd8e204079ae81ab8d0ef6","impliedFormat":99},{"version":"f7d487e5f0104f0737951510ea361bc919f5b5f3ebc51807f81ce54934a3556f","impliedFormat":99},{"version":"efa8c5897e0239017e5b53e3f465d106b00d01ee94c9ead378a33284a2998356","impliedFormat":99},{"version":"fe3c53940b26832930246d4c39d6e507c26a86027817882702cf03bff314fa1d","impliedFormat":99},{"version":"53ee33b91d4dc2787eccebdbd396291e063db1405514bb3ab446e1ca3fd81a90","impliedFormat":99},{"version":"c4a97da118b4e6dde7c1daa93c4da17f0c4eedece638fc6dcc84f4eb1d370808","impliedFormat":99},{"version":"71666363fbdb0946bfc38a8056c6010060d1a526c0584145a9560151c6962b4f","impliedFormat":99},{"version":"1326f3630d26716257e09424f33074a945940afd64f2482e2bbc885258fca6bb","impliedFormat":99},{"version":"cc2eb5b23140bbceadf000ef2b71d27ac011d1c325b0fc5ecd42a3221db5fb2e","impliedFormat":99},{"version":"d04f5f3e90755ed40b25ed4c6095b6ad13fc9ce98b34a69c8da5ed38e2dbab5a","impliedFormat":99},{"version":"280b04a2238c0636dad2f25bbbbac18cf7bb933c80e8ec0a44a1d6a9f9d69537","impliedFormat":99},{"version":"0e9a2d784877b62ad97ed31816b1f9992563fdda58380cd696e796022a46bfdf","impliedFormat":99},{"version":"1b1411e7a3729bc632d8c0a4d265de9c6cbba4dc36d679c26dad87507faedee3","impliedFormat":99},{"version":"c478cfb0a2474672343b932ea69da64005bbfc23af5e661b907b0df8eb87bcb7","impliedFormat":99},{"version":"1a7bff494148b6e66642db236832784b8b2c9f5ad9bff82de14bcdb863dadcd9","impliedFormat":99},{"version":"65e6ad2d939dd38d03b157450ba887d2e9c7fd0f8f9d3008c0d1e59a0d8a73b4","impliedFormat":99},{"version":"f72b400dbf8f27adbda4c39a673884cb05daf8e0a1d8152eec2480f5700db36c","impliedFormat":99},{"version":"347f6fe4308288802eb123596ad9caf06755e80cfc7f79bbe56f4141a8ee4c50","impliedFormat":99},{"version":"5f5baa59149d3d6d6cef2c09d46bb4d19beb10d6bee8c05b7850c33535b3c438","impliedFormat":99},{"version":"a8f0c99380c9e91a73ecfc0a8582fbdefde3a1351e748079dc8c0439ea97b6db","impliedFormat":99},{"version":"be02e3c3cb4e187fd252e7ae12f6383f274e82288c8772bb0daf1a4e4af571ad","impliedFormat":99},{"version":"82ca40fb541799273571b011cd9de6ee9b577ef68acc8408135504ae69365b74","impliedFormat":99},{"version":"e671e3fc9b6b2290338352606f6c92e6ecf1a56459c3f885a11080301ca7f8de","impliedFormat":99},{"version":"04453db2eb9c577d0d7c46a7cd8c3dd52ca8d9bc1220069de2a564c07cdeb8c4","impliedFormat":99},{"version":"5559ab4aa1ba9fac7225398231a179d63a4c4dccd982a17f09404b536980dae8","impliedFormat":99},{"version":"2d7b9e1626f44684252d826a8b35770b77ce7c322734a5d3236b629a301efdcf","impliedFormat":99},{"version":"5b8dafbb90924201f655931d429a4eceb055f11c836a6e9cbc7c3aecf735912d","impliedFormat":99},{"version":"0b9be1f90e5e154b61924a28ed2de133fd1115b79c682b1e3988ac810674a5c4","impliedFormat":99},{"version":"7a9477ba5fc17786ee74340780083f39f437904229a0cd57fc9a468fd6567eb8","impliedFormat":99},{"version":"3da1dd252145e279f23d85294399ed2120bf8124ed574d34354a0a313c8554b6","impliedFormat":99},{"version":"e5c4080de46b1a486e25a54ddbb6b859312359f9967a7dc3c9d5cf4676378201","impliedFormat":99},{"version":"cfe1cdf673d2db391fd1a1f123e0e69c7ca06c31d9ac8b35460130c5817c8d29","impliedFormat":99},{"version":"b9701f688042f44529f99fd312c49fea853e66538c19cfcbb9ef024fdb5470cc","impliedFormat":99},{"version":"6daa62c5836cc12561d12220d385a4a243a4a5a89afd6f2e48009a8dd8f0ad83","impliedFormat":99},{"version":"c74550758053cf21f7fea90c7f84fa66c27c5f5ac1eca77ce6c2877dbfdec4d1","impliedFormat":99},{"version":"bd8310114a3a5283faac25bfbfc0d75b685a3a3e0d827ee35d166286bdd4f82e","impliedFormat":99},{"version":"1459ae97d13aeb6e457ccffac1fbb5c5b6d469339729d9ef8aeb8f0355e1e2c9","impliedFormat":99},{"version":"1bf03857edaebf4beba27459edf97f9407467dc5c30195425cb8a5d5a573ea52","impliedFormat":99},{"version":"f6b4833d66c12c9106a3299e520ed46f9a4c443cefc22c993315c4bb97a28db1","impliedFormat":99},{"version":"746c02f8b99bd90c4d135badaab575c6cfce0d030528cf90190c8914b0934ea3","impliedFormat":99},{"version":"a858ba8df5e703977dee467b10af084398919e99c9e42559180e75953a1f6ef6","impliedFormat":99},{"version":"d2dcd6105c195d0409abd475b41363789c63ae633282f04465e291a68a151685","impliedFormat":99},{"version":"0b569ed836f0431c2efaef9b6017e8b700a7fed319866d7667f1189957275045","impliedFormat":99},{"version":"9371612fd8638d7f6a249a14843132e7adb0b5c84edba9ed7905e835b644c013","impliedFormat":99},{"version":"0c72189b6ec67331476a36ec70a2b8ce6468dc4db5d3eb52deb9fefbd6981ebb","impliedFormat":99},{"version":"e723c58ce0406b459b2ed8cca98baaba724bbc7d7a44797b240f4d23dd2eea03","impliedFormat":99},{"version":"7e4a27fd17dbb256314c2513784236f2ae2023573e83d0e65ebddfda336701db","impliedFormat":99},{"version":"131ecac1c7c961041df80a1dc353223af4e658d56ba1516317f79bd5400cffeb","impliedFormat":99},{"version":"f3a55347fb874828e442c2916716d56552ac3478204c29c0d47e698c00eb5d28","impliedFormat":99},{"version":"49ebbdfe7427d784ccdc8325bdecc8dda1719a7881086f14751879b4f8d70c21","impliedFormat":99},{"version":"c1692845412646f17177eb62feb9588c8b5d5013602383f02ae9d38f3915020c","impliedFormat":99},{"version":"b1b440e6c973d920935591a3d360d79090b8cf58947c0230259225b02cf98a83","impliedFormat":99},{"version":"defc2ae12099f46649d12aa4872ce23ba43fba275920c00c398487eaf091bbae","impliedFormat":99},{"version":"620390fbef44884902e4911e7473531e9be4db37eeef2da52a34449d456b4617","impliedFormat":99},{"version":"e60440cbd3ec916bc5f25ada3a6c174619745c38bfca58d3554f7d62905dc376","impliedFormat":99},{"version":"86388eda63dcb65b4982786eec9f80c3ef21ca9fb2808ff58634e712f1f39a27","impliedFormat":99},{"version":"022cd098956e78c9644e4b3ad1fe460fac6914ca9349d6213f518386baf7c96b","impliedFormat":99},{"version":"dfc67e73325643e92f71f94276b5fb3be09c59a1eeee022e76c61ae99f3eda4b","impliedFormat":99},{"version":"8c3d6c9abaa0b383f43cac0c227f063dc4018d851a14b6c2142745a78553c426","impliedFormat":99},{"version":"ee551dc83df0963c1ee03dc32ce36d83b3db9793f50b1686dc57ec2bbffc98af","impliedFormat":99},{"version":"968832c4ffd675a0883e3d208b039f205e881ae0489cc13060274cf12e0e4370","impliedFormat":99},{"version":"c593ca754961cfd13820add8b34da35a114cda7215d214e4177a1b0e1a7f3377","impliedFormat":99},{"version":"ed88c51aa3b33bb2b6a8f2434c34f125946ba7b91ed36973169813fdad57f1ec","impliedFormat":99},{"version":"a9ea477d5607129269848510c2af8bcfd8e262ebfbd6cd33a6c451f0cd8f5257","impliedFormat":99},{"version":"772b2865dd86088c6e0cab71e23534ad7254961c1f791bdeaf31a57a2254df43","impliedFormat":1},{"version":"786d837fba58af9145e7ad685bc1990f52524dc4f84f3e60d9382a0c3f4a0f77","impliedFormat":1},{"version":"539dd525bf1d52094e7a35c2b4270bee757d3a35770462bcb01cd07683b4d489","impliedFormat":1},{"version":"69135303a105f3b058d79ea7e582e170721e621b1222e8f8e51ea29c61cd3acf","impliedFormat":1},{"version":"e92e6f0d63e0675fe2538e8031e1ece36d794cb6ecc07a036d82c33fa3e091a9","impliedFormat":1},{"version":"1fdb07843cdb9bd7e24745d357c6c1fde5e7f2dd7c668dd68b36c0dff144a390","impliedFormat":1},{"version":"3e2f739bdfb6b194ae2af13316b4c5bb18b3fe81ac340288675f92ba2061b370","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b21e13ed07d0df176ae31d6b7f01f7b17d66dbeb489c0d31d00de2ca14883da","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f929f0b6b3421a2d34344b0f421f45aeb2c84ad365ebf29d04312023b3accc58","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8cf132379078d0974a59df26069689a2d33c7dc826b5be56231841cb2f32e58","impliedFormat":1},{"version":"fbf413fc617837453c878a9174a1f1b383616857a3f8366bc41cf30df4aea7d5","impliedFormat":1},{"version":"148c73ec11318850f571172ceae3e55ce479d850fe18ec8eae0abd99d9f6c319","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"e8aabbee5e7b9101b03bb4222607d57f38859b8115a8050a4eb91b4ee43a3a73","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"9043daec15206650fa119bad6b8d70136021ea7d52673a71f79a87a42ee38d44","affectsGlobalScope":true,"impliedFormat":1},{"version":"150d28d98d2f6aa7053ee0eb7de5a1c2ab23a6dbcc92eed0a630b2f572a1a5ec","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"28e3631087ecef78fef8efdb21d4d2509f776ef6f0d660ff605b5ee6a22ebb8c","impliedFormat":1},{"version":"b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"72f8936aebf0c4a1adab767b97d34ba7d3a308afcf76de4417b9c16fb92ed548","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"04aa8fb012abeecf5666b013c59ba01dca5aa0c28173cb5385bc88d4adeb8d64","affectsGlobalScope":true,"impliedFormat":1},{"version":"3585d6891e9ea18e07d0755a6d90d71331558ba5dc5561933553209f886db106","affectsGlobalScope":true,"impliedFormat":1},{"version":"86be71cbb0593468644932a6eb96d527cfa600cecfc0b698af5f52e51804451d","impliedFormat":1},{"version":"84dd6b0fd2505135692935599d6606f50a421389e8d4535194bcded307ee5cf2","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"db19ea066fdc5f97df3f769e582ae3000380ab7942e266654bdb1a4650d19eaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a034894bf28c220a331c7a0229d33564803abe2ac1b9a5feee91b6b9b6e88ea","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[56],"options":{"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitHelpers":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"tsBuildInfoFile":"./math.tsbuildinfo"},"referencedMap":[[57,1],[251,2],[250,3],[61,4],[62,5],[199,4],[200,6],[181,7],[182,8],[65,9],[66,10],[136,11],[137,12],[110,4],[111,13],[104,4],[105,14],[196,15],[194,16],[195,1],[210,17],[211,18],[80,19],[81,20],[212,21],[213,22],[214,23],[215,24],[72,25],[73,26],[198,27],[197,28],[183,4],[184,29],[76,30],[77,31],[100,1],[101,32],[218,33],[216,34],[217,35],[219,36],[220,37],[223,38],[221,39],[224,16],[222,40],[225,41],[228,42],[226,43],[227,44],[229,45],[78,25],[79,46],[204,47],[201,48],[202,49],[203,1],[179,50],[180,51],[124,52],[123,53],[121,54],[120,55],[122,56],[231,57],[230,58],[233,59],[232,60],[109,61],[108,4],[87,62],[85,63],[84,9],[86,64],[236,65],[240,66],[234,67],[235,68],[237,65],[238,65],[239,65],[126,69],[125,9],[142,70],[140,71],[141,16],[138,72],[139,73],[75,74],[74,4],[132,75],[63,4],[64,76],[131,77],[169,78],[172,79],[170,80],[171,81],[83,82],[82,4],[174,83],[173,9],[152,84],[151,4],[107,85],[106,4],[178,86],[177,87],[146,88],[145,89],[143,90],[144,91],[135,92],[134,93],[133,94],[242,95],[241,96],[159,97],[158,98],[157,99],[206,100],[205,1],[150,101],[149,102],[147,103],[148,104],[128,105],[127,9],[71,106],[70,107],[69,108],[68,109],[67,110],[163,111],[162,112],[93,113],[92,9],[97,114],[96,115],[161,116],[160,4],[207,1],[209,117],[208,1],[166,118],[165,119],[164,120],[244,121],[243,122],[246,123],[245,124],[192,125],[193,126],[191,127],[130,128],[129,1],[176,129],[175,130],[103,131],[102,4],[154,132],[153,4],[60,133],[59,1],[113,134],[114,135],[119,136],[112,137],[116,138],[115,139],[117,140],[118,141],[168,142],[167,9],[99,143],[98,9],[249,144],[248,145],[247,146],[186,147],[185,4],[156,148],[155,4],[91,149],[89,150],[88,9],[90,151],[188,152],[187,4],[95,153],[94,4],[190,154],[189,4],[257,155],[312,156],[313,156],[314,157],[260,158],[315,159],[316,160],[317,161],[258,1],[318,162],[319,163],[320,164],[321,165],[322,166],[323,167],[324,167],[325,168],[326,169],[327,170],[328,171],[261,1],[259,1],[329,172],[330,173],[331,174],[365,175],[332,176],[333,1],[334,177],[335,178],[336,179],[337,180],[338,181],[339,182],[340,183],[341,184],[342,185],[343,185],[344,186],[345,1],[346,187],[347,188],[349,189],[348,190],[350,191],[351,192],[352,193],[353,194],[354,195],[355,196],[356,197],[357,198],[358,199],[359,200],[360,201],[361,202],[362,203],[262,1],[263,204],[264,1],[265,1],[308,205],[309,206],[310,1],[311,191],[363,207],[364,208],[266,1],[58,1],[256,209],[253,210],[254,211],[255,1],[252,212],[55,213],[54,1],[51,1],[52,1],[10,1],[8,1],[9,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[23,1],[24,1],[4,1],[25,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[5,1],[33,1],[34,1],[35,1],[36,1],[6,1],[40,1],[37,1],[38,1],[39,1],[41,1],[7,1],[42,1],[53,1],[47,1],[48,1],[43,1],[44,1],[45,1],[46,1],[1,1],[49,1],[50,1],[12,1],[11,1],[284,214],[296,215],[282,216],[297,217],[306,218],[273,219],[274,220],[272,221],[305,222],[300,223],[304,224],[276,225],[293,226],[275,227],[303,228],[270,229],[271,223],[277,230],[278,1],[283,231],[281,230],[268,232],[307,233],[298,234],[287,235],[286,230],[288,236],[291,237],[285,238],[289,239],[301,222],[279,240],[280,241],[292,242],[269,217],[295,243],[294,230],[290,244],[299,1],[267,1],[302,245],[56,246]],"emitSignatures":[[56,"0c8fac04076d3aa2838bda8749e88454d8f26e0adf0be3432c47feae9875e901"]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.full.d.ts","../src/index.ts"],"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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"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":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1305d1e76ca44e30fb8b2b8075fa522b83f60c0bcf5d4326a9d2cf79b53724f8","impliedFormat":1},{"version":"593805aea4cbd10b544706bc7a9d20ebb0bd69f4183aa06a5ba5beeaa45fbaaf","signature":"0c8fac04076d3aa2838bda8749e88454d8f26e0adf0be3432c47feae9875e901"}],"root":[52],"options":{"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"outDir":"./","rootDir":"../src","sourceMap":true,"strict":true,"target":7,"tsBuildInfoFile":"./math.tsbuildinfo"},"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
package/package.json CHANGED
@@ -2,14 +2,14 @@
2
2
  "name": "@ue-too/ecs",
3
3
  "author": "niuee",
4
4
  "type": "module",
5
- "version": "0.7.3",
5
+ "version": "0.8.0",
6
6
  "description": "Entity Component System for uē-tôo",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/niuee/ue-too.git"
10
+ "url": "https://github.com/ue-too/ue-too.git"
11
11
  },
12
- "homepage": "https://github.com/niuee/ue-too",
12
+ "homepage": "https://github.com/ue-too/ue-too",
13
13
  "exports": {
14
14
  ".": {
15
15
  "types": "./index.d.ts",
@@ -18,10 +18,10 @@
18
18
  },
19
19
  "./package.json": "./package.json"
20
20
  },
21
- "main": "./index.js",
22
- "types": "./index.d.ts",
23
- "module": "./index.js",
24
21
  "scripts": {
25
22
  "test": "echo \"Error: no test specified\" && exit 1"
26
- }
23
+ },
24
+ "main": "./index.js",
25
+ "types": "./index.d.ts",
26
+ "module": "./index.js"
27
27
  }
package/LICENSE.txt DELETED
@@ -1,19 +0,0 @@
1
- Copyright (c) 2023 niuee
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the “Software”), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16
- THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.