@helixdev/helix-sdk 0.1.1-staging.10 → 0.1.1-staging.11
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/dist/index.js +14 -8
- package/dist/index.js.map +1 -1
- package/dist/multiplayer-contract/index.d.ts +1 -1
- package/dist/multiplayer-contract/index.js +1 -1
- package/dist/multiplayer-contract/index.js.map +1 -1
- package/dist/multiplayer-contract/messages.d.ts +114 -3
- package/dist/multiplayer-contract/messages.js +54 -2
- package/dist/multiplayer-contract/messages.js.map +1 -1
- package/dist/multiplayer-contract/room.d.ts +40 -6
- package/dist/multiplayer-contract/state.d.ts +7 -0
- package/dist/multiplayer-contract/state.js.map +1 -1
- package/dist/multiplayer.d.ts +37 -2
- package/dist/multiplayer.js +85 -5
- package/dist/multiplayer.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5,6 +5,7 @@ import { HelixMultiplayer } from './multiplayer';
|
|
|
5
5
|
// consumers that want only the contract import the lighter '@hypersoniclabs/helix-sdk/multiplayer-contract'.
|
|
6
6
|
export * from './multiplayer-contract';
|
|
7
7
|
const INIT_TIMEOUT_MS = 3000;
|
|
8
|
+
const READY_RETRY_MS = 200; // re-post helix:ready this often until the shell answers (handshake race — see waitForInit)
|
|
8
9
|
const LOGIN_TIMEOUT_MS = 5 * 60 * 1000;
|
|
9
10
|
const DEBUG_LOG_MAX = 200; // bounded ring of recent log entries (overlay backfill + pre-init forward flush)
|
|
10
11
|
class HelixSdk {
|
|
@@ -25,7 +26,6 @@ class HelixSdk {
|
|
|
25
26
|
return this.snapshot();
|
|
26
27
|
window.addEventListener('message', this.onMessage);
|
|
27
28
|
if (window.parent !== window) {
|
|
28
|
-
this.post({ type: 'helix:ready', protocolVersion: PROTOCOL_VERSION }, '*');
|
|
29
29
|
await this.waitForInit();
|
|
30
30
|
}
|
|
31
31
|
this.initialized = true;
|
|
@@ -114,19 +114,25 @@ class HelixSdk {
|
|
|
114
114
|
throw new Error('Helix: call Helix.init() before using the SDK');
|
|
115
115
|
}
|
|
116
116
|
}
|
|
117
|
+
// Handshake: announce readiness and wait for the shell's helix:init reply. We RE-POST helix:ready until the
|
|
118
|
+
// shell answers (or we time out) because the shell may attach its message listener AFTER our first post — it
|
|
119
|
+
// registers in a post-hydration effect, and a lightweight world (no heavy assets, cached) can fire helix:ready
|
|
120
|
+
// before then, so a single post would be lost and we'd fall back to embedded=false. Retrying closes that race;
|
|
121
|
+
// the moment the shell answers (shellOrigin set) we stop, so a shell that's already listening sees just one post.
|
|
117
122
|
waitForInit() {
|
|
118
123
|
return new Promise((resolve) => {
|
|
119
|
-
const
|
|
124
|
+
const deadline = Date.now() + INIT_TIMEOUT_MS;
|
|
125
|
+
const ready = () => this.post({ type: 'helix:ready', protocolVersion: PROTOCOL_VERSION }, '*');
|
|
126
|
+
ready();
|
|
120
127
|
const check = () => {
|
|
121
|
-
if (this.shellOrigin) {
|
|
122
|
-
clearTimeout(timer);
|
|
128
|
+
if (this.shellOrigin || Date.now() >= deadline) {
|
|
123
129
|
resolve();
|
|
130
|
+
return;
|
|
124
131
|
}
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}
|
|
132
|
+
ready();
|
|
133
|
+
setTimeout(check, READY_RETRY_MS);
|
|
128
134
|
};
|
|
129
|
-
check
|
|
135
|
+
setTimeout(check, READY_RETRY_MS);
|
|
130
136
|
});
|
|
131
137
|
}
|
|
132
138
|
onMessage = (event) => {
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,cAAc,EACd,gBAAgB,GACjB,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAKjD,qGAAqG;AACrG,uGAAuG;AACvG,6GAA6G;AAC7G,cAAc,wBAAwB,CAAC;AAYvC,MAAM,eAAe,GAAG,IAAI,CAAC;AAC7B,MAAM,gBAAgB,GAAG,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC;AACvC,MAAM,aAAa,GAAG,GAAG,CAAC,CAAC,iFAAiF;AAE5G,MAAM,QAAQ;IACJ,WAAW,GAAkB,IAAI,CAAC;IAClC,OAAO,GAAwB,IAAI,CAAC;IACpC,KAAK,GAA6B,IAAI,CAAC;IACvC,WAAW,GAAG,KAAK,CAAC;IACpB,SAAS,GAAG,IAAI,GAAG,EAAgB,CAAC;IACpC,YAAY,GAAG,KAAK,CAAC;IACrB,SAAS,GAAoB,EAAE,CAAC;IAChC,cAAc,GAAG,IAAI,GAAG,EAAkC,CAAC;IAC3D,aAAa,GAAG,KAAK,CAAC;IACtB,aAAa,GAAG,IAAI,GAAG,EAG5B,CAAC;IAEJ,2EAA2E;IAC3E,2EAA2E;IAC3E,KAAK,CAAC,IAAI;QACR,IAAI,IAAI,CAAC,WAAW;YAAE,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAC;QAC7C,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;QAEnD,IAAI,MAAM,CAAC,MAAM,KAAK,MAAM,EAAE,CAAC;YAC7B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* builds; rejecting on mismatch would brick every published world on a bump. The detection is for
|
|
8
8
|
* cross-version diagnostics, and contract changes are kept additive/forward so older clients still play.
|
|
9
9
|
*/
|
|
10
|
-
export declare const CONTRACT_VERSION:
|
|
10
|
+
export declare const CONTRACT_VERSION: 16;
|
|
11
11
|
export * from './state';
|
|
12
12
|
export * from './room';
|
|
13
13
|
export * from './messages';
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* builds; rejecting on mismatch would brick every published world on a bump. The detection is for
|
|
23
23
|
* cross-version diagnostics, and contract changes are kept additive/forward so older clients still play.
|
|
24
24
|
*/
|
|
25
|
-
export const CONTRACT_VERSION =
|
|
25
|
+
export const CONTRACT_VERSION = 16; // v16: networked physics — optional EntityState velocity/angularVelocity/orientation (+ EntityStateMessage/batch lv/av/q + ack lv/q) carry dynamic-body state for `physics` kinds; MOVEMENT_GATE.impulseMul/graceMs open a bounded collision-grace gate exception (plan Phase 0/3). v15: first-class elimination — PlayerState.active (boolean, default true); an eliminated-but-connected player drops out of the gameplay active set while staying connected + rendered + reachable by broadcast (Tier 2 P3-B2)
|
|
26
26
|
export * from './state';
|
|
27
27
|
export * from './room';
|
|
28
28
|
export * from './messages';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/multiplayer-contract/index.ts"],"names":[],"mappings":"AAAA,kFAAkF;AAClF,EAAE;AACF,iGAAiG;AACjG,0FAA0F;AAC1F,oEAAoE;AACpE,wFAAwF;AACxF,8EAA8E;AAC9E,EAAE;AACF,mGAAmG;AACnG,+FAA+F;AAC/F,gDAAgD;AAChD,EAAE;AACF,uGAAuG;AACvG,qGAAqG;AACrG,iGAAiG;AAEjG;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,EAAW,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/multiplayer-contract/index.ts"],"names":[],"mappings":"AAAA,kFAAkF;AAClF,EAAE;AACF,iGAAiG;AACjG,0FAA0F;AAC1F,oEAAoE;AACpE,wFAAwF;AACxF,8EAA8E;AAC9E,EAAE;AACF,mGAAmG;AACnG,+FAA+F;AAC/F,gDAAgD;AAChD,EAAE;AACF,uGAAuG;AACvG,qGAAqG;AACrG,iGAAiG;AAEjG;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,EAAW,CAAC,CAAC,kfAAkf;AAE/hB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Vec3 } from './state';
|
|
1
|
+
import type { Vec3, Quat } from './state';
|
|
2
2
|
import type { RoomVarValue } from './room';
|
|
3
3
|
export declare const ClientMessageType: {
|
|
4
4
|
/** The player's predicted kinematic state for this tick (seq-tagged for reconciliation). */
|
|
@@ -24,6 +24,20 @@ export type ClientMessageType = (typeof ClientMessageType)[keyof typeof ClientMe
|
|
|
24
24
|
export declare const ServerMessageType: {
|
|
25
25
|
/** Reply to a Ping: the client's echoed timestamp + the server's current time, for offset estimation. */
|
|
26
26
|
readonly Pong: "pong";
|
|
27
|
+
/**
|
|
28
|
+
* A2 reconnection ack — the player-seat divergence correction (spec §9). Sent ONLY to the uploading client and
|
|
29
|
+
* ONLY when the movement gate REJECTED its `state` frame (the accepted case is silent — the accepted position is
|
|
30
|
+
* already in synced state). The client snaps its local body to the anchored position and prunes its reconciliation
|
|
31
|
+
* buffer through the echoed seq. See StateAckMessage.
|
|
32
|
+
*/
|
|
33
|
+
readonly StateAck: "stateAck";
|
|
34
|
+
/**
|
|
35
|
+
* A2 reconnection ack — the owner-hosted entity divergence correction (spec §9). Sent ONLY to the hosting client,
|
|
36
|
+
* BATCHED (one message per tick acks every hosted entity whose upload the gate rejected — mirrors EntityStateBatch).
|
|
37
|
+
* The host re-anchors each entity's local sim to the anchored position so its uploads stop being fenced. See
|
|
38
|
+
* EntityStateAckMessage.
|
|
39
|
+
*/
|
|
40
|
+
readonly EntityStateAck: "entityStateAck";
|
|
27
41
|
};
|
|
28
42
|
export type ServerMessageType = (typeof ServerMessageType)[keyof typeof ServerMessageType];
|
|
29
43
|
/** Per-tick state upload. Units match PlayerReplicaState (position m; all angles degrees, see *Deg). */
|
|
@@ -39,6 +53,13 @@ export interface StateMessage {
|
|
|
39
53
|
crouched: boolean;
|
|
40
54
|
aimYawDeg: number;
|
|
41
55
|
aimPitchDeg: number;
|
|
56
|
+
/**
|
|
57
|
+
* Sender send-time — the client's monotonic `performance.now()` ms when it sampled this frame. The server
|
|
58
|
+
* SANITIZES it into the synced `PlayerState.posT` (room.ts) for source-time interpolation: clients space keyframes
|
|
59
|
+
* by `posT` deltas, not arrival time, so delivery jitter stops becoming motion jitter. Only deltas matter (the
|
|
60
|
+
* origin is arbitrary). Optional — an older client omits it and the server falls back to its own apply-clock.
|
|
61
|
+
*/
|
|
62
|
+
tMs?: number;
|
|
42
63
|
}
|
|
43
64
|
/**
|
|
44
65
|
* An owner-authoritative entity's client-simulated state for this tick (Tier 2 Phase 4.6c, spec §9/§10.4). The
|
|
@@ -54,6 +75,15 @@ export interface EntityStateMessage {
|
|
|
54
75
|
seq: number;
|
|
55
76
|
/** The entity's world position, METERS — gated against the kind's declared maxSpeed. */
|
|
56
77
|
position: Vec3;
|
|
78
|
+
/**
|
|
79
|
+
* Physics state — uploaded ONLY for a `physics` (dynamic-body) kind (networked-physics, plan Phase 0). `velocity`
|
|
80
|
+
* is gated against the kind's maxSpeed (magnitude-clamped on ingest, widened during a collision-grace window);
|
|
81
|
+
* `orientation` is normalized (zero/non-finite → identity). Synced so remotes extrapolate with the right velocity
|
|
82
|
+
* + reproduce spin (research §2). Omit for a kinematic kind.
|
|
83
|
+
*/
|
|
84
|
+
velocity?: Vec3;
|
|
85
|
+
angularVelocity?: Vec3;
|
|
86
|
+
orientation?: Quat;
|
|
57
87
|
/** Declared per-kind vars to set (same vocabulary as roomVars); each is clamped to its declared type/bounds on ingest. */
|
|
58
88
|
vars?: Record<string, RoomVarValue>;
|
|
59
89
|
/**
|
|
@@ -64,6 +94,11 @@ export interface EntityStateMessage {
|
|
|
64
94
|
* first frame before the field is observed; the room tolerates absence (sessionId ownership still gates).
|
|
65
95
|
*/
|
|
66
96
|
epoch?: number;
|
|
97
|
+
/**
|
|
98
|
+
* Sender send-time (the owner's monotonic `performance.now()` ms at upload) — the server SANITIZES it into the
|
|
99
|
+
* entity's synced `posT` for source-time interpolation, exactly like the player's `StateMessage.tMs`. Optional.
|
|
100
|
+
*/
|
|
101
|
+
tMs?: number;
|
|
67
102
|
}
|
|
68
103
|
/**
|
|
69
104
|
* One entity's slot in an EntityStateBatchMessage. Compact, short keys (sent verbatim in msgpack), with position
|
|
@@ -75,6 +110,12 @@ export interface EntityStateBatchEntry {
|
|
|
75
110
|
e: string;
|
|
76
111
|
/** World position as [x, y, z], METERS — gated against the kind's declared maxSpeed. */
|
|
77
112
|
p: [number, number, number];
|
|
113
|
+
/** Linear velocity [x,y,z], m/s — physics kinds only; magnitude-clamped to the gate on ingest. Omit when unchanged/non-physics. */
|
|
114
|
+
lv?: [number, number, number];
|
|
115
|
+
/** Angular velocity [x,y,z], rad/s — physics kinds only. Omit when unchanged/non-physics. */
|
|
116
|
+
av?: [number, number, number];
|
|
117
|
+
/** Orientation quaternion [x,y,z,w] — physics kinds only; normalized (zero/non-finite → identity) on ingest. Omit when unchanged/non-physics. */
|
|
118
|
+
q?: [number, number, number, number];
|
|
78
119
|
/** Declared per-kind vars to set (clamped to declared type/bounds on ingest). Omit when unchanged this tick. */
|
|
79
120
|
v?: Record<string, RoomVarValue>;
|
|
80
121
|
/** Authority epoch this entity is simulated under (mirror its synced authorityEpoch). Omit before observed. */
|
|
@@ -91,6 +132,11 @@ export interface EntityStateBatchMessage {
|
|
|
91
132
|
seq: number;
|
|
92
133
|
/** One entry per hosted entity changed this tick (bounded by the room's per-owner entity cap). */
|
|
93
134
|
states: EntityStateBatchEntry[];
|
|
135
|
+
/**
|
|
136
|
+
* Sender send-time (the host's monotonic `performance.now()` ms when it sampled this batch) — ONE per batch (all
|
|
137
|
+
* entries are sampled the same frame); the server sanitizes it into each entity's synced `posT`. Optional.
|
|
138
|
+
*/
|
|
139
|
+
tMs?: number;
|
|
94
140
|
}
|
|
95
141
|
/** Discrete ability activation intent. */
|
|
96
142
|
export interface AbilityMessage {
|
|
@@ -124,6 +170,44 @@ export interface PongMessage {
|
|
|
124
170
|
clientTimeMs: number;
|
|
125
171
|
serverTimeMs: number;
|
|
126
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* A2 player-seat divergence ack (spec §9). Sent to ONE client when the room's movement gate rejected its `state`
|
|
175
|
+
* upload — the client's prediction diverged from authority, so it must correct. Under Tier-1 lean (no server
|
|
176
|
+
* physics) the correction is a thin SNAP: the client moves its local body to `position` (no input replay). The
|
|
177
|
+
* accepted case sends nothing — the accepted position is already in synced state; this fires only on divergence.
|
|
178
|
+
*/
|
|
179
|
+
export interface StateAckMessage {
|
|
180
|
+
/** The highest client `seq` the room has processed for this seat — the client prunes its reconciliation buffer through it. */
|
|
181
|
+
seq: number;
|
|
182
|
+
/** The room's authoritative position for this seat (the last ACCEPTED upload) — the anchor the client snaps to. */
|
|
183
|
+
position: Vec3;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* One entity's slot in an EntityStateAckMessage — compact short keys + a [x,y,z] tuple, mirroring EntityStateBatchEntry
|
|
187
|
+
* (the upload it answers).
|
|
188
|
+
*/
|
|
189
|
+
export interface EntityStateAckEntry {
|
|
190
|
+
/** Entity id (the state.entities map key). */
|
|
191
|
+
e: string;
|
|
192
|
+
/** The last per-entity `seq` the room ACCEPTED for this entity — the host re-anchors/prunes through it. */
|
|
193
|
+
seq: number;
|
|
194
|
+
/** The room's authoritative anchored position [x, y, z], METERS — the host snaps its local sim to it. */
|
|
195
|
+
p: [number, number, number];
|
|
196
|
+
/** Anchored linear velocity [x,y,z], m/s — physics kinds only, so a reconciled body resets its velocity too (else a stale spin/drift survives). Omit for non-physics. */
|
|
197
|
+
lv?: [number, number, number];
|
|
198
|
+
/** Anchored orientation quaternion [x,y,z,w] — physics kinds only, so a reconciled body resets its spin. Omit for non-physics. */
|
|
199
|
+
q?: [number, number, number, number];
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* A2 owner-entity divergence ack (spec §9). Sent to ONE hosting client, BATCHED: one message per tick carries an entry
|
|
203
|
+
* for every entity this host uploaded whose position the gate rejected (mirrors the EntityStateBatch upload channel).
|
|
204
|
+
* The host re-anchors each entity's local sim to its anchor, so a sparse/throttled host stops being fenced by the gate
|
|
205
|
+
* — replacing the engine's prior conservative `0.83 × gate-reach` guess with the room's actual accepted position.
|
|
206
|
+
*/
|
|
207
|
+
export interface EntityStateAckMessage {
|
|
208
|
+
/** One entry per hosted entity whose upload the gate rejected this tick. Never empty (the room omits the message instead). */
|
|
209
|
+
acks: EntityStateAckEntry[];
|
|
210
|
+
}
|
|
127
211
|
/**
|
|
128
212
|
* A server→client broadcast event (Tier 2 Phase 2.5, spec §10.3). A world declares named events with a
|
|
129
213
|
* payload schema; a `broadcast` rule-effect sends one on the event's NAME (not a fixed ServerMessageType),
|
|
@@ -137,7 +221,7 @@ export type BroadcastPayload = Record<string, RoomVarValue>;
|
|
|
137
221
|
* can't collide with `pong` (or confuse the fixed channels). Inlined in @hypersoniclabs/helix-manifest with
|
|
138
222
|
* a cross-ref (the manifest takes no SDK dependency); keep the two in sync.
|
|
139
223
|
*/
|
|
140
|
-
export declare const RESERVED_MESSAGE_TYPES: readonly ["state", "ability", "action", "entityState", "entityStateBatch", "ping", "pong"];
|
|
224
|
+
export declare const RESERVED_MESSAGE_TYPES: readonly ["state", "ability", "action", "entityState", "entityStateBatch", "ping", "pong", "stateAck", "entityStateAck"];
|
|
141
225
|
/** Maps each client→server message type to its payload, so senders/handlers stay in lockstep. */
|
|
142
226
|
export interface ClientMessagePayloads {
|
|
143
227
|
[ClientMessageType.State]: StateMessage;
|
|
@@ -150,10 +234,18 @@ export interface ClientMessagePayloads {
|
|
|
150
234
|
/** Maps each server→client message type to its payload. */
|
|
151
235
|
export interface ServerMessagePayloads {
|
|
152
236
|
[ServerMessageType.Pong]: PongMessage;
|
|
237
|
+
[ServerMessageType.StateAck]: StateAckMessage;
|
|
238
|
+
[ServerMessageType.EntityStateAck]: EntityStateAckMessage;
|
|
153
239
|
}
|
|
154
240
|
/**
|
|
155
241
|
* Per-connection rate ceilings (messages/second) the room enforces; over-rate clients are dropped.
|
|
156
|
-
* State is the throttled input channel (
|
|
242
|
+
* State is the throttled input channel (plan D3); ability is bursty but bounded.
|
|
243
|
+
*
|
|
244
|
+
* `stateHz`/`entityStateHz` are the DEFAULT per-connection upload cadence. A world may raise BOTH to `maxUploadHz`
|
|
245
|
+
* via `multiplayer.uploadHz: 20` — the room derives the actual ceiling from the trusted configUrl, the client from
|
|
246
|
+
* its bundled manifest, so they agree without a handshake (a client that lies is simply rate-limited). Sending under
|
|
247
|
+
* the cap is always legal, so this is purely a cap → no CONTRACT_VERSION bump.
|
|
248
|
+
* SYNC: the {10, 20} tier set mirrors the manifest's MULTIPLAYER_CAPS.uploadHzAllowed — widen in lockstep.
|
|
157
249
|
*/
|
|
158
250
|
export declare const MESSAGE_RATE: {
|
|
159
251
|
readonly stateHz: 10;
|
|
@@ -161,6 +253,25 @@ export declare const MESSAGE_RATE: {
|
|
|
161
253
|
readonly actionHz: 20;
|
|
162
254
|
readonly entityStateHz: 10;
|
|
163
255
|
readonly pingHz: 4;
|
|
256
|
+
readonly maxUploadHz: 20;
|
|
257
|
+
};
|
|
258
|
+
/**
|
|
259
|
+
* Movement-plausibility gate — the canonical home for the bound the colyseus room ENFORCES and the engine's
|
|
260
|
+
* client-side upload clamp MIRRORS, so both compute the SAME bound from the SAME inputs and never disagree. A
|
|
261
|
+
* frame moving more than `maxSpeed × Δt × toleranceMul` from the last accepted position is implausible: the
|
|
262
|
+
* server holds + acks it, the client pre-clamps its upload to stay inside it. `Δt` is the SANITIZED real
|
|
263
|
+
* send-interval (the source-time `posT` delta — clamped, spoof-bounded; see nextSourceTime), NOT integer ticks —
|
|
264
|
+
* time-based so the gate is cadence-agnostic and a non-tick-aligned send rate can't quantize the budget away.
|
|
265
|
+
* This is a SANITY bound (anti-teleport), not cheat-proof movement (Tier 3). The room imports this; the
|
|
266
|
+
* standalone engine mirrors the two values (it takes no SDK build dep — same SYNC pattern as the declared-state
|
|
267
|
+
* mirror) → keep them in lockstep.
|
|
268
|
+
*/
|
|
269
|
+
export declare const MOVEMENT_GATE: {
|
|
270
|
+
readonly toleranceMul: 1.25;
|
|
271
|
+
readonly ownerEntityToleranceMul: 3;
|
|
272
|
+
readonly maxCatchupMs: 300;
|
|
273
|
+
readonly impulseMul: 6;
|
|
274
|
+
readonly graceMs: 250;
|
|
164
275
|
};
|
|
165
276
|
/**
|
|
166
277
|
* Hard payload bound the room rejects above (defense against oversized frames), measured on the JSON form (a
|
|
@@ -28,6 +28,20 @@ export const ClientMessageType = {
|
|
|
28
28
|
export const ServerMessageType = {
|
|
29
29
|
/** Reply to a Ping: the client's echoed timestamp + the server's current time, for offset estimation. */
|
|
30
30
|
Pong: 'pong',
|
|
31
|
+
/**
|
|
32
|
+
* A2 reconnection ack — the player-seat divergence correction (spec §9). Sent ONLY to the uploading client and
|
|
33
|
+
* ONLY when the movement gate REJECTED its `state` frame (the accepted case is silent — the accepted position is
|
|
34
|
+
* already in synced state). The client snaps its local body to the anchored position and prunes its reconciliation
|
|
35
|
+
* buffer through the echoed seq. See StateAckMessage.
|
|
36
|
+
*/
|
|
37
|
+
StateAck: 'stateAck',
|
|
38
|
+
/**
|
|
39
|
+
* A2 reconnection ack — the owner-hosted entity divergence correction (spec §9). Sent ONLY to the hosting client,
|
|
40
|
+
* BATCHED (one message per tick acks every hosted entity whose upload the gate rejected — mirrors EntityStateBatch).
|
|
41
|
+
* The host re-anchors each entity's local sim to the anchored position so its uploads stop being fenced. See
|
|
42
|
+
* EntityStateAckMessage.
|
|
43
|
+
*/
|
|
44
|
+
EntityStateAck: 'entityStateAck',
|
|
31
45
|
};
|
|
32
46
|
/**
|
|
33
47
|
* Wire message-type names a world's declared event/action names MUST NOT shadow — the fixed client→server
|
|
@@ -35,10 +49,16 @@ export const ServerMessageType = {
|
|
|
35
49
|
* can't collide with `pong` (or confuse the fixed channels). Inlined in @hypersoniclabs/helix-manifest with
|
|
36
50
|
* a cross-ref (the manifest takes no SDK dependency); keep the two in sync.
|
|
37
51
|
*/
|
|
38
|
-
export const RESERVED_MESSAGE_TYPES = ['state', 'ability', 'action', 'entityState', 'entityStateBatch', 'ping', 'pong'];
|
|
52
|
+
export const RESERVED_MESSAGE_TYPES = ['state', 'ability', 'action', 'entityState', 'entityStateBatch', 'ping', 'pong', 'stateAck', 'entityStateAck'];
|
|
39
53
|
/**
|
|
40
54
|
* Per-connection rate ceilings (messages/second) the room enforces; over-rate clients are dropped.
|
|
41
|
-
* State is the throttled input channel (
|
|
55
|
+
* State is the throttled input channel (plan D3); ability is bursty but bounded.
|
|
56
|
+
*
|
|
57
|
+
* `stateHz`/`entityStateHz` are the DEFAULT per-connection upload cadence. A world may raise BOTH to `maxUploadHz`
|
|
58
|
+
* via `multiplayer.uploadHz: 20` — the room derives the actual ceiling from the trusted configUrl, the client from
|
|
59
|
+
* its bundled manifest, so they agree without a handshake (a client that lies is simply rate-limited). Sending under
|
|
60
|
+
* the cap is always legal, so this is purely a cap → no CONTRACT_VERSION bump.
|
|
61
|
+
* SYNC: the {10, 20} tier set mirrors the manifest's MULTIPLAYER_CAPS.uploadHzAllowed — widen in lockstep.
|
|
42
62
|
*/
|
|
43
63
|
export const MESSAGE_RATE = {
|
|
44
64
|
stateHz: 10,
|
|
@@ -46,6 +66,38 @@ export const MESSAGE_RATE = {
|
|
|
46
66
|
actionHz: 20,
|
|
47
67
|
entityStateHz: 10, // owner-entity upload — same cadence as the player state channel (one bucket per connection)
|
|
48
68
|
pingHz: 4, // clock-sync probe — a few per second is ample to track offset/RTT
|
|
69
|
+
maxUploadHz: 20, // ceiling a world may raise stateHz/entityStateHz to (multiplayer.uploadHz:20); = SIM_HZ, above it buys nothing
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Movement-plausibility gate — the canonical home for the bound the colyseus room ENFORCES and the engine's
|
|
73
|
+
* client-side upload clamp MIRRORS, so both compute the SAME bound from the SAME inputs and never disagree. A
|
|
74
|
+
* frame moving more than `maxSpeed × Δt × toleranceMul` from the last accepted position is implausible: the
|
|
75
|
+
* server holds + acks it, the client pre-clamps its upload to stay inside it. `Δt` is the SANITIZED real
|
|
76
|
+
* send-interval (the source-time `posT` delta — clamped, spoof-bounded; see nextSourceTime), NOT integer ticks —
|
|
77
|
+
* time-based so the gate is cadence-agnostic and a non-tick-aligned send rate can't quantize the budget away.
|
|
78
|
+
* This is a SANITY bound (anti-teleport), not cheat-proof movement (Tier 3). The room imports this; the
|
|
79
|
+
* standalone engine mirrors the two values (it takes no SDK build dep — same SYNC pattern as the declared-state
|
|
80
|
+
* mirror) → keep them in lockstep.
|
|
81
|
+
*/
|
|
82
|
+
export const MOVEMENT_GATE = {
|
|
83
|
+
toleranceMul: 1.25, // accepted displacement = maxSpeed × Δt × this; the small clock-skew margin that replaces the old client 0.83 / server 2.0 tick-quantization fudge
|
|
84
|
+
// A client-HOSTED owner-authority ENTITY (a rolling ball, a car, any owner-hosted body — physics OR kinematic
|
|
85
|
+
// transport) can live AT maxSpeed continuously, so the player tolerance (1.25×) leaves it riding the exact gate
|
|
86
|
+
// edge — cadence/clock jitter then false-rejects legitimate motion and the client pre-clamp crawls the auth behind
|
|
87
|
+
// the sim (the fence → reanchor "slingshot" + remote extrapolation chop). Owner-entity uploads get a wider
|
|
88
|
+
// STEADY-STATE budget: enough to clear maxSpeed motion + the render-delay lag + the cadence quantum, while still
|
|
89
|
+
// catching a real teleport (a sanity bound, not Tier-3 anti-cheat). Used by the server entity gate AND the engine
|
|
90
|
+
// #clampToGate for ALL owner-hosted entity uploads. (Players keep `toleranceMul`; their gate is MAX_SPEED_MPS.)
|
|
91
|
+
ownerEntityToleranceMul: 3.0,
|
|
92
|
+
maxCatchupMs: 300, // ceiling on the Δt credited since the last ACCEPTED frame, so a long silence can't bank a teleport (was MAX_GATE_CATCHUP_TICKS 6 × 50ms)
|
|
93
|
+
// ── Collision-grace exception (networked-physics, plan Phase 3.3) ──────────────────────────────────────
|
|
94
|
+
// A collision impulse legitimately spikes a physics body's velocity past maxSpeed × Δt for an instant; the plain
|
|
95
|
+
// gate would reject that frame. On a SERVER-DETECTED contact involving an owner physics entity the room stamps a
|
|
96
|
+
// short grace window during which the gate budget is multiplied by `impulseMul`; the engine's #clampToGate mirrors
|
|
97
|
+
// the same widened bound so it never pre-clamps a real collision frame. Bounded by graceMs + only opened by a
|
|
98
|
+
// server-detected contact (a soft anti-cheat spot, documented in tuning.ts — visuals-first, not Tier-3).
|
|
99
|
+
impulseMul: 6, // gate multiplier while a collision-grace window is open on the entity
|
|
100
|
+
graceMs: 250, // grace duration (ms) after a server-detected contact involving an owner physics entity
|
|
49
101
|
};
|
|
50
102
|
/**
|
|
51
103
|
* Hard payload bound the room rejects above (defense against oversized frames), measured on the JSON form (a
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.js","sourceRoot":"","sources":["../../src/multiplayer-contract/messages.ts"],"names":[],"mappings":"AAAA,8FAA8F;AAC9F,mGAAmG;AACnG,kGAAkG;AAClG,EAAE;AACF,kGAAkG;AAClG,qGAAqG;AACrG,0FAA0F;AAK1F,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,4FAA4F;IAC5F,KAAK,EAAE,OAAO;IACd,4FAA4F;IAC5F,OAAO,EAAE,SAAS;IAClB,gGAAgG;IAChG,MAAM,EAAE,QAAQ;IAChB,yHAAyH;IACzH,WAAW,EAAE,aAAa;IAC1B;;;;;OAKG;IACH,gBAAgB,EAAE,kBAAkB;IACpC,sGAAsG;IACtG,IAAI,EAAE,MAAM;CACJ,CAAC;AAGX,sGAAsG;AACtG,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,yGAAyG;IACzG,IAAI,EAAE,MAAM;
|
|
1
|
+
{"version":3,"file":"messages.js","sourceRoot":"","sources":["../../src/multiplayer-contract/messages.ts"],"names":[],"mappings":"AAAA,8FAA8F;AAC9F,mGAAmG;AACnG,kGAAkG;AAClG,EAAE;AACF,kGAAkG;AAClG,qGAAqG;AACrG,0FAA0F;AAK1F,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,4FAA4F;IAC5F,KAAK,EAAE,OAAO;IACd,4FAA4F;IAC5F,OAAO,EAAE,SAAS;IAClB,gGAAgG;IAChG,MAAM,EAAE,QAAQ;IAChB,yHAAyH;IACzH,WAAW,EAAE,aAAa;IAC1B;;;;;OAKG;IACH,gBAAgB,EAAE,kBAAkB;IACpC,sGAAsG;IACtG,IAAI,EAAE,MAAM;CACJ,CAAC;AAGX,sGAAsG;AACtG,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,yGAAyG;IACzG,IAAI,EAAE,MAAM;IACZ;;;;;OAKG;IACH,QAAQ,EAAE,UAAU;IACpB;;;;;OAKG;IACH,cAAc,EAAE,gBAAgB;CACxB,CAAC;AA8LX;;;;;GAKG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,gBAAgB,CAAU,CAAC;AAmB/J;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,OAAO,EAAE,EAAE;IACX,SAAS,EAAE,EAAE;IACb,QAAQ,EAAE,EAAE;IACZ,aAAa,EAAE,EAAE,EAAE,6FAA6F;IAChH,MAAM,EAAE,CAAC,EAAE,mEAAmE;IAC9E,WAAW,EAAE,EAAE,EAAE,gHAAgH;CACzH,CAAC;AAEX;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,YAAY,EAAE,IAAI,EAAE,mJAAmJ;IACvK,8GAA8G;IAC9G,gHAAgH;IAChH,mHAAmH;IACnH,2GAA2G;IAC3G,iHAAiH;IACjH,kHAAkH;IAClH,gHAAgH;IAChH,uBAAuB,EAAE,GAAG;IAC5B,YAAY,EAAE,GAAG,EAAE,0IAA0I;IAC7J,0GAA0G;IAC1G,iHAAiH;IACjH,iHAAiH;IACjH,mHAAmH;IACnH,8GAA8G;IAC9G,yGAAyG;IACzG,UAAU,EAAE,CAAC,EAAE,uEAAuE;IACtF,OAAO,EAAE,GAAG,EAAE,wFAAwF;CAC9F,CAAC;AAEX;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,KAAK,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Vec3 } from './state';
|
|
1
|
+
import type { Vec3, Quat } from './state';
|
|
2
2
|
import type { PlayerIdentity, PlayerReplicaState } from './state';
|
|
3
3
|
/**
|
|
4
4
|
* The runtime value vocabulary for declared custom state. A `ref`-typed var's value is the **id** of a live
|
|
@@ -8,12 +8,15 @@ import type { PlayerIdentity, PlayerReplicaState } from './state';
|
|
|
8
8
|
*/
|
|
9
9
|
export type RoomVarValue = number | string | boolean | Vec3 | null | RoomVarCollection;
|
|
10
10
|
/**
|
|
11
|
-
* Per-player/room COLLECTION values (Tier 2 Phase 4.5.13, spec §5). A `list` var reads as
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
11
|
+
* Per-player/room/entity COLLECTION values (Tier 2 Phase 4.5.13 + P3 collections, spec §5). A `list` var reads as
|
|
12
|
+
* an ordered array — of a scalar element (`number`/`string`/`boolean`), a **ref** element (an id `string`), or a
|
|
13
|
+
* flat **record** (`{field: scalar}`, P3) — realized server-side as a colyseus ArraySchema; a `counterMap` var
|
|
14
|
+
* reads as a string→number record over its declared keys (a MapSchema<number>). P3 also lets entities hold
|
|
15
|
+
* collections and broadcast payloads carry a collection snapshot. Mutated only via the dedicated effects
|
|
16
|
+
* (append/clear/addCount/removeAt/setField) + read via listLength/listAt/count — never a normal scalar expr/arg.
|
|
15
17
|
*/
|
|
16
|
-
export type
|
|
18
|
+
export type RoomVarRecord = Record<string, number | string | boolean | Vec3>;
|
|
19
|
+
export type RoomVarCollection = number[] | string[] | boolean[] | RoomVarRecord[] | Record<string, number>;
|
|
17
20
|
/** A declared bag of custom state — names + types are declared per-world; used for both room-level and per-player vars. */
|
|
18
21
|
export type RoomVars = Record<string, RoomVarValue>;
|
|
19
22
|
/** Full authoritative per-player state: the FIXED character contract + identity + DECLARED game vars. */
|
|
@@ -27,6 +30,22 @@ export interface PlayerState extends PlayerIdentity, PlayerReplicaState {
|
|
|
27
30
|
* This layers on Colyseus's own reconnection — it annotates the seat, it does not drive the reconnect handshake.
|
|
28
31
|
*/
|
|
29
32
|
connected: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Participation (Tier 2 P3-B2 elimination): `false` when this still-connected player has been removed from the
|
|
35
|
+
* ACTIVE set mid-match (eliminated / benched / a spectator). An inactive seat is excluded from the same gameplay
|
|
36
|
+
* reductions + spatial detection a disconnected seat is (forEachPlayer / playerCount / aggregate players /
|
|
37
|
+
* nearestPlayer / zone + contact), but it stays `connected` and keeps rendering, and `broadcast` still reaches it
|
|
38
|
+
* (so it can spectate). The room sets it via the `eliminate`/`revive` effects; defaults `true`. Clients may read it
|
|
39
|
+
* to render spectators (e.g. greyed out). (Distinct from `connected`, which is presence/reconnection-grace.)
|
|
40
|
+
*/
|
|
41
|
+
active: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Source-time stamp (ms) of this seat's current `position` — the SANITIZED sender send-time (`StateMessage.tMs`), or
|
|
44
|
+
* the server's apply-clock when the upload carried none. Clients SPACE interpolation keyframes by `posT` deltas
|
|
45
|
+
* instead of local arrival time, so jitter in DELIVERY (network + 20 Hz-tick aliasing) stops becoming jitter in
|
|
46
|
+
* rendered MOTION. Monotonic per seat; only deltas are meaningful (origin = the sender's arbitrary clock base).
|
|
47
|
+
*/
|
|
48
|
+
posT: number;
|
|
30
49
|
}
|
|
31
50
|
/**
|
|
32
51
|
* RESERVED (Tier 2): a server-spawned object (pickup, projectile, NPC). Empty in v1 — the shape is
|
|
@@ -38,6 +57,15 @@ export interface EntityState {
|
|
|
38
57
|
/** Author-defined kind (e.g. 'flag', 'pickup'). */
|
|
39
58
|
kind: string;
|
|
40
59
|
position?: Vec3;
|
|
60
|
+
/**
|
|
61
|
+
* Physics state — present ONLY for a `physics` (dynamic-body) kind (networked-physics, plan Phase 0). A kinematic
|
|
62
|
+
* entity carries position only (these stay undefined; @colyseus/schema delta-encodes an unwritten field to ~0 bytes).
|
|
63
|
+
* Synced so a remote client extrapolates with the RIGHT velocities (research §2: without synced velocity, remote
|
|
64
|
+
* extrapolation pops) and reproduces orientation. Units: m/s (linear), rad/s (angular), unit quaternion.
|
|
65
|
+
*/
|
|
66
|
+
velocity?: Vec3;
|
|
67
|
+
angularVelocity?: Vec3;
|
|
68
|
+
orientation?: Quat;
|
|
41
69
|
/**
|
|
42
70
|
* Who simulates this entity (Tier 2 Phase 4.6c, spec §9). '' = server-authoritative (deterministic kinematics).
|
|
43
71
|
* A player id (a state.players key) = an owner-authoritative entity that client simulates + uploads (the others
|
|
@@ -53,6 +81,12 @@ export interface EntityState {
|
|
|
53
81
|
authorityEpoch: number;
|
|
54
82
|
/** Declared custom vars (same vocabulary as roomVars). */
|
|
55
83
|
vars: RoomVars;
|
|
84
|
+
/**
|
|
85
|
+
* Source-time stamp (ms) of this entity's current `position` — the server's apply-clock (owner-entity sender-time is
|
|
86
|
+
* a follow-up; server-authoritative entities self-stamp each tick). Consumers space interpolation by `posT` deltas,
|
|
87
|
+
* not arrival time. Monotonic; deltas only. 0 before first move.
|
|
88
|
+
*/
|
|
89
|
+
posT: number;
|
|
56
90
|
}
|
|
57
91
|
/** The authoritative shared state. Always carries all three collections (entities empty until Tier 2). */
|
|
58
92
|
export interface RoomState {
|
|
@@ -3,6 +3,13 @@ export type Vec3 = {
|
|
|
3
3
|
y: number;
|
|
4
4
|
z: number;
|
|
5
5
|
};
|
|
6
|
+
/** A rotation quaternion. Physics (dynamic-body) kinds only — kinematic kinds carry no orientation on the wire. */
|
|
7
|
+
export type Quat = {
|
|
8
|
+
x: number;
|
|
9
|
+
y: number;
|
|
10
|
+
z: number;
|
|
11
|
+
w: number;
|
|
12
|
+
};
|
|
6
13
|
/** Pinned units. Linear in meters / meters-per-second; every angle is degrees (see the *Deg suffixes). */
|
|
7
14
|
export declare const UNITS: {
|
|
8
15
|
readonly position: "meters";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../src/multiplayer-contract/state.ts"],"names":[],"mappings":"AAAA,oGAAoG;AACpG,sGAAsG;AACtG,gEAAgE;AAChE,EAAE;AACF,sGAAsG;AACtG,mGAAmG;AACnG,mGAAmG;AACnG,wEAAwE;
|
|
1
|
+
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../src/multiplayer-contract/state.ts"],"names":[],"mappings":"AAAA,oGAAoG;AACpG,sGAAsG;AACtG,gEAAgE;AAChE,EAAE;AACF,sGAAsG;AACtG,mGAAmG;AACnG,mGAAmG;AACnG,wEAAwE;AAOxE,0GAA0G;AAC1G,MAAM,CAAC,MAAM,KAAK,GAAG;IACnB,QAAQ,EAAE,QAAQ;IAClB,QAAQ,EAAE,eAAe;IACzB,MAAM,EAAE,SAAS;CACT,CAAC"}
|
package/dist/multiplayer.d.ts
CHANGED
|
@@ -1,14 +1,25 @@
|
|
|
1
|
-
import { type StateMessage, type RoomState, type PlayerState, type EntityState, type RoomVarValue, type Vec3 } from './multiplayer-contract';
|
|
2
|
-
export type ReplicaInput = Omit<StateMessage, 'seq'>;
|
|
1
|
+
import { type StateMessage, type StateAckMessage, type EntityStateAckMessage, type RoomState, type PlayerState, type EntityState, type RoomVarValue, type Vec3, type Quat } from './multiplayer-contract';
|
|
2
|
+
export type ReplicaInput = Omit<StateMessage, 'seq' | 'tMs'>;
|
|
3
3
|
/** Options for joinRoom — only needed where the API base can't be derived from the token (local dev/tests). */
|
|
4
4
|
export interface JoinRoomOptions {
|
|
5
5
|
/** Override the platform API base URL. Default: the world_session token's `iss`, else configure({ apiBaseUrl }). */
|
|
6
6
|
apiBaseUrl?: string;
|
|
7
|
+
/**
|
|
8
|
+
* State upload cadence (Hz) for the player-seat flush — from the world's `multiplayer.uploadHz`. Clamped to
|
|
9
|
+
* [MESSAGE_RATE.stateHz, MESSAGE_RATE.maxUploadHz] (10..20); absent ⇒ the 10 Hz default. The room derives its
|
|
10
|
+
* own ceiling from the trusted configUrl, so a lying client only throttles itself.
|
|
11
|
+
*/
|
|
12
|
+
uploadHz?: number;
|
|
7
13
|
}
|
|
8
14
|
/** The curated live-room surface handed to world authors. Colyseus's API, re-exposed under Helix.*. */
|
|
9
15
|
export interface HelixRoom {
|
|
10
16
|
readonly roomId: string;
|
|
11
17
|
readonly sessionId: string;
|
|
18
|
+
/**
|
|
19
|
+
* The clamped player-seat upload cadence (Hz) this connection flushes at — `multiplayer.uploadHz` resolved to
|
|
20
|
+
* [10,20]. The engine paces its hosted-entity (EntityScene) uploads to the SAME value so both channels match.
|
|
21
|
+
*/
|
|
22
|
+
readonly effectiveUploadHz: number;
|
|
12
23
|
/** Authoritative shared state (a @colyseus/schema instance shaped like the contract RoomState). */
|
|
13
24
|
readonly state: RoomState;
|
|
14
25
|
/** Fires after every applied patch from the server. */
|
|
@@ -20,6 +31,17 @@ export interface HelixRoom {
|
|
|
20
31
|
onRemove(collection: 'entities', cb: (entity: EntityState, id: string) => void): void;
|
|
21
32
|
/** A world-authored server→client message (the room broadcasts these for declared events). */
|
|
22
33
|
onMessage<Payload = unknown>(type: string, cb: (payload: Payload) => void): void;
|
|
34
|
+
/**
|
|
35
|
+
* A2 (spec §9) the room's player-seat divergence correction — fires ONLY when the movement gate REJECTED an
|
|
36
|
+
* upload (the accepted case is silent). The engine snaps the local body to `position`; the SDK has already
|
|
37
|
+
* pruned its reconciliation buffer through `seq` before this fires.
|
|
38
|
+
*/
|
|
39
|
+
onStateAck(cb: (ack: StateAckMessage) => void): void;
|
|
40
|
+
/**
|
|
41
|
+
* A2 (spec §9) the room's owner-hosted-entity divergence correction, BATCHED — the engine re-anchors each
|
|
42
|
+
* hosted entity's local sim to its anchor so a sparse/throttled host stops being fenced by the gate.
|
|
43
|
+
*/
|
|
44
|
+
onEntityStateAck(cb: (ack: EntityStateAckMessage) => void): void;
|
|
23
45
|
/** Per-tick predicted state. Coalesced + flushed at MESSAGE_RATE.stateHz, seq-tagged (D3/D4). */
|
|
24
46
|
sendState(input: ReplicaInput): void;
|
|
25
47
|
/** Activate/deactivate a built-in ability (sent immediately; server enforces the rate ceiling). */
|
|
@@ -33,6 +55,9 @@ export interface HelixRoom {
|
|
|
33
55
|
*/
|
|
34
56
|
uploadEntity(entityId: string, input: {
|
|
35
57
|
position: Vec3;
|
|
58
|
+
velocity?: Vec3;
|
|
59
|
+
angularVelocity?: Vec3;
|
|
60
|
+
orientation?: Quat;
|
|
36
61
|
vars?: Record<string, RoomVarValue>;
|
|
37
62
|
epoch?: number;
|
|
38
63
|
}): void;
|
|
@@ -45,6 +70,9 @@ export interface HelixRoom {
|
|
|
45
70
|
uploadEntities(entities: ReadonlyArray<{
|
|
46
71
|
id: string;
|
|
47
72
|
position: Vec3;
|
|
73
|
+
velocity?: Vec3;
|
|
74
|
+
angularVelocity?: Vec3;
|
|
75
|
+
orientation?: Quat;
|
|
48
76
|
vars?: Record<string, RoomVarValue>;
|
|
49
77
|
epoch?: number;
|
|
50
78
|
}>): void;
|
|
@@ -76,8 +104,13 @@ export declare class HelixMultiplayer {
|
|
|
76
104
|
private entityBatchSeq;
|
|
77
105
|
private pendingInput;
|
|
78
106
|
private flushTimer;
|
|
107
|
+
private effectiveUploadHz;
|
|
79
108
|
private inputBuffer;
|
|
80
109
|
private worldId;
|
|
110
|
+
private onStateAckCb;
|
|
111
|
+
private onEntityStateAckCb;
|
|
112
|
+
private nlSend;
|
|
113
|
+
private nlPatch;
|
|
81
114
|
constructor(host: MultiplayerHost);
|
|
82
115
|
configure(options: {
|
|
83
116
|
apiBaseUrl: string;
|
|
@@ -87,6 +120,8 @@ export declare class HelixMultiplayer {
|
|
|
87
120
|
private makeHandle;
|
|
88
121
|
private startFlush;
|
|
89
122
|
private flush;
|
|
123
|
+
private nlOnPatch;
|
|
124
|
+
private nlTick;
|
|
90
125
|
private persistReconnect;
|
|
91
126
|
private readReconnect;
|
|
92
127
|
private reconnectWsUrl;
|
package/dist/multiplayer.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// → Client.joinOrCreate(token) → a curated HelixRoom handle. The engine NetworkDriver consumes the
|
|
6
6
|
// room state; this module owns the connect handshake, the throttled seq-tagged send path (D3), the
|
|
7
7
|
// reconciliation buffer (D4), and teardown/reconnection wiring (D5).
|
|
8
|
-
import { ClientMessageType, MESSAGE_RATE, CONTRACT_VERSION, } from './multiplayer-contract';
|
|
8
|
+
import { ClientMessageType, ServerMessageType, MESSAGE_RATE, CONTRACT_VERSION, } from './multiplayer-contract';
|
|
9
9
|
// ~12s of inputs at 10Hz — generous reconciliation window; bounded so a missing server ack can't grow it forever.
|
|
10
10
|
const INPUT_BUFFER_MAX = 120;
|
|
11
11
|
// sessionStorage key (per world) for the colyseus reconnectionToken + its wsUrl. sessionStorage is per-tab and
|
|
@@ -24,8 +24,17 @@ export class HelixMultiplayer {
|
|
|
24
24
|
entityBatchSeq = 0; // per-connection monotonic batch seq (4.10 owner-entity batch channel)
|
|
25
25
|
pendingInput = null;
|
|
26
26
|
flushTimer = null;
|
|
27
|
+
// The clamped player-seat flush cadence (Hz), set on join from JoinRoomOptions.uploadHz. Default = stateHz (10).
|
|
28
|
+
effectiveUploadHz = MESSAGE_RATE.stateHz;
|
|
27
29
|
inputBuffer = [];
|
|
28
30
|
worldId = null; // the joined world (the reconnect-token storage key)
|
|
31
|
+
// A2 (spec §9) engine consumers of the reconnection acks — set via the handle's onStateAck/onEntityStateAck.
|
|
32
|
+
onStateAckCb = null;
|
|
33
|
+
onEntityStateAckCb = null;
|
|
34
|
+
// Opt-in netlog accumulators (1 s windows) — the SOURCE cadence feeding the engine interpolators: the throttled
|
|
35
|
+
// upload (flush) rate and the server patch-arrival rate. Off unless globalThis.__HELIX_NETLOG__ is a sink fn.
|
|
36
|
+
nlSend = { last: 0, count: 0, win: 0, maxGap: 0 };
|
|
37
|
+
nlPatch = { last: 0, count: 0, win: 0, maxGap: 0 };
|
|
29
38
|
constructor(host) {
|
|
30
39
|
this.host = host;
|
|
31
40
|
}
|
|
@@ -67,7 +76,22 @@ export class HelixMultiplayer {
|
|
|
67
76
|
this.worldId = id;
|
|
68
77
|
this.room = room;
|
|
69
78
|
this.callbacks = colyseus.getStateCallbacks(room);
|
|
79
|
+
// Resolve the player-seat upload cadence from the world's uploadHz tier, clamped to the contract's [10,20] range.
|
|
80
|
+
this.effectiveUploadHz = Math.max(MESSAGE_RATE.stateHz, Math.min(options.uploadHz ?? MESSAGE_RATE.stateHz, MESSAGE_RATE.maxUploadHz));
|
|
70
81
|
this.startFlush();
|
|
82
|
+
// A2 (spec §9) reconnection acks. Registered ONCE here (not in the handle) so the reconciliation buffer is
|
|
83
|
+
// pruned through the accepted seq whether or not a consumer subscribed — then the divergence correction is
|
|
84
|
+
// handed to the engine consumer (onStateAck/onEntityStateAck). Both fire only when the room's gate rejected
|
|
85
|
+
// an upload, so they're silent in steady state.
|
|
86
|
+
room.onMessage(ServerMessageType.StateAck, (p) => {
|
|
87
|
+
const ack = p;
|
|
88
|
+
this.inputBuffer = this.inputBuffer.filter((m) => m.seq > ack.seq);
|
|
89
|
+
this.onStateAckCb?.(ack);
|
|
90
|
+
});
|
|
91
|
+
room.onMessage(ServerMessageType.EntityStateAck, (p) => this.onEntityStateAckCb?.(p));
|
|
92
|
+
// netlog (opt-in): measure server patch-arrival cadence — the rate at which synced state changes feed the
|
|
93
|
+
// engine interpolators. A jittery patch rate here is the upstream cause of an interp starve/lapse.
|
|
94
|
+
room.onStateChange(() => this.nlOnPatch());
|
|
71
95
|
// Keep the persisted token fresh as colyseus rotates it (e.g. after an in-page auto-reconnect).
|
|
72
96
|
room.onReconnect(() => this.persistReconnect(id, this.reconnectWsUrl(id), room.reconnectionToken));
|
|
73
97
|
room.onLeave(() => this.teardown());
|
|
@@ -94,6 +118,7 @@ export class HelixMultiplayer {
|
|
|
94
118
|
return {
|
|
95
119
|
roomId: room.roomId,
|
|
96
120
|
sessionId: room.sessionId,
|
|
121
|
+
effectiveUploadHz: this.effectiveUploadHz,
|
|
97
122
|
get state() {
|
|
98
123
|
return room.state;
|
|
99
124
|
},
|
|
@@ -101,6 +126,12 @@ export class HelixMultiplayer {
|
|
|
101
126
|
onAdd: (name, cb) => void collection(name).onAdd((v, k) => cb(v, k), true),
|
|
102
127
|
onRemove: (name, cb) => void collection(name).onRemove((v, k) => cb(v, k)),
|
|
103
128
|
onMessage: (type, cb) => void room.onMessage(type, (p) => cb(p)),
|
|
129
|
+
onStateAck: (cb) => {
|
|
130
|
+
this.onStateAckCb = cb;
|
|
131
|
+
},
|
|
132
|
+
onEntityStateAck: (cb) => {
|
|
133
|
+
this.onEntityStateAckCb = cb;
|
|
134
|
+
},
|
|
104
135
|
sendState: (input) => {
|
|
105
136
|
this.pendingInput = input;
|
|
106
137
|
},
|
|
@@ -109,7 +140,14 @@ export class HelixMultiplayer {
|
|
|
109
140
|
uploadEntity: (entityId, input) => {
|
|
110
141
|
const seq = (this.entitySeq[entityId] = (this.entitySeq[entityId] ?? 0) + 1);
|
|
111
142
|
// (P1.C1) forward the authority epoch (when the caller has it) so the server fence can drop a stale-era frame.
|
|
112
|
-
|
|
143
|
+
// networked-physics: a physics kind also carries velocity/angularVelocity/orientation (omitted for kinematic).
|
|
144
|
+
room.send(ClientMessageType.EntityState, {
|
|
145
|
+
entity: entityId, seq, position: input.position, vars: input.vars,
|
|
146
|
+
...(input.velocity !== undefined ? { velocity: input.velocity } : {}),
|
|
147
|
+
...(input.angularVelocity !== undefined ? { angularVelocity: input.angularVelocity } : {}),
|
|
148
|
+
...(input.orientation !== undefined ? { orientation: input.orientation } : {}),
|
|
149
|
+
...(input.epoch !== undefined ? { epoch: input.epoch } : {}), tMs: performance.now(),
|
|
150
|
+
});
|
|
113
151
|
},
|
|
114
152
|
uploadEntities: (entities) => {
|
|
115
153
|
if (entities.length === 0)
|
|
@@ -118,10 +156,14 @@ export class HelixMultiplayer {
|
|
|
118
156
|
const states = entities.map((e) => ({
|
|
119
157
|
e: e.id,
|
|
120
158
|
p: [e.position.x, e.position.y, e.position.z],
|
|
159
|
+
// networked-physics: compact lv/av/q tuples for a physics kind (omitted when the caller passes none).
|
|
160
|
+
...(e.velocity !== undefined ? { lv: [e.velocity.x, e.velocity.y, e.velocity.z] } : {}),
|
|
161
|
+
...(e.angularVelocity !== undefined ? { av: [e.angularVelocity.x, e.angularVelocity.y, e.angularVelocity.z] } : {}),
|
|
162
|
+
...(e.orientation !== undefined ? { q: [e.orientation.x, e.orientation.y, e.orientation.z, e.orientation.w] } : {}),
|
|
121
163
|
...(e.vars !== undefined ? { v: e.vars } : {}),
|
|
122
164
|
...(e.epoch !== undefined ? { ep: e.epoch } : {}),
|
|
123
165
|
}));
|
|
124
|
-
room.send(ClientMessageType.EntityStateBatch, { seq, states });
|
|
166
|
+
room.send(ClientMessageType.EntityStateBatch, { seq, states, tMs: performance.now() });
|
|
125
167
|
},
|
|
126
168
|
pendingInputs: () => this.inputBuffer.slice(),
|
|
127
169
|
acknowledge: (seq) => {
|
|
@@ -136,18 +178,47 @@ export class HelixMultiplayer {
|
|
|
136
178
|
// D3: coalesce per-frame sendState calls and flush the latest at most stateHz times/second, tagging a
|
|
137
179
|
// monotonic seq. D4: buffer each sent state (bounded) so the engine can replay the unacknowledged tail.
|
|
138
180
|
startFlush() {
|
|
139
|
-
const periodMs = Math.round(1000 /
|
|
181
|
+
const periodMs = Math.round(1000 / this.effectiveUploadHz);
|
|
140
182
|
this.flushTimer = setInterval(() => this.flush(), periodMs);
|
|
141
183
|
}
|
|
142
184
|
flush() {
|
|
143
185
|
if (!this.pendingInput || !this.room)
|
|
144
186
|
return;
|
|
145
|
-
|
|
187
|
+
// tMs = the send-time stamp (monotonic performance.now()) the server sanitizes into PlayerState.posT for
|
|
188
|
+
// source-time interpolation. Stamped at flush ≈ sample time (pendingInput is overwritten every frame, so the
|
|
189
|
+
// latest is ~one frame old); consecutive tMs deltas track the real send cadence → jitter-free keyframe spacing.
|
|
190
|
+
const message = { ...this.pendingInput, seq: ++this.seq, tMs: performance.now() };
|
|
146
191
|
this.pendingInput = null;
|
|
147
192
|
this.room.send(ClientMessageType.State, message);
|
|
148
193
|
this.inputBuffer.push(message);
|
|
149
194
|
if (this.inputBuffer.length > INPUT_BUFFER_MAX)
|
|
150
195
|
this.inputBuffer.shift();
|
|
196
|
+
if (netSink())
|
|
197
|
+
this.nlTick(this.nlSend, `player-upload (this client → server state, ≤${this.effectiveUploadHz}Hz, ~${Math.round(1000 / this.effectiveUploadHz)}ms target)`);
|
|
198
|
+
}
|
|
199
|
+
// netlog: roll a 1 s window of an event cadence (send / patch) and emit count + max inter-event gap. Off (no
|
|
200
|
+
// sink) → not called. Diagnostic only.
|
|
201
|
+
nlOnPatch() {
|
|
202
|
+
if (netSink())
|
|
203
|
+
this.nlTick(this.nlPatch, 'server-patches (server → this client state deltas — the interp source)');
|
|
204
|
+
}
|
|
205
|
+
nlTick(a, label) {
|
|
206
|
+
const sink = netSink();
|
|
207
|
+
if (!sink)
|
|
208
|
+
return;
|
|
209
|
+
const now = performance.now();
|
|
210
|
+
if (a.last)
|
|
211
|
+
a.maxGap = Math.max(a.maxGap, now - a.last);
|
|
212
|
+
a.last = now;
|
|
213
|
+
a.count += 1;
|
|
214
|
+
if (!a.win)
|
|
215
|
+
a.win = now;
|
|
216
|
+
if (now - a.win >= 1000) {
|
|
217
|
+
sink(`sdk ${label}: ${a.count}/s gapMax=${a.maxGap | 0}ms`);
|
|
218
|
+
a.count = 0;
|
|
219
|
+
a.win = now;
|
|
220
|
+
a.maxGap = 0;
|
|
221
|
+
}
|
|
151
222
|
}
|
|
152
223
|
// D5 RECONNECTION (sessionStorage-backed): persist / read / clear the colyseus reconnectionToken + its wsUrl
|
|
153
224
|
// per world. sessionStorage is per-tab and survives a RELOAD but not a close — so a reload resumes the held
|
|
@@ -227,8 +298,17 @@ export class HelixMultiplayer {
|
|
|
227
298
|
this.seq = 0;
|
|
228
299
|
this.entitySeq = {};
|
|
229
300
|
this.entityBatchSeq = 0;
|
|
301
|
+
this.onStateAckCb = null;
|
|
302
|
+
this.onEntityStateAckCb = null;
|
|
230
303
|
}
|
|
231
304
|
}
|
|
305
|
+
// netlog sink lookup (opt-in): the host installs globalThis.__HELIX_NETLOG__ = (msg) => ... to turn on the
|
|
306
|
+
// message/movement/interpolation diagnostics. Unset → a cheap typeof check, no logging. Shared shape with the
|
|
307
|
+
// engine's TransformInterpolator sink so one toggle lights up the whole pipeline.
|
|
308
|
+
function netSink() {
|
|
309
|
+
const s = globalThis.__HELIX_NETLOG__;
|
|
310
|
+
return typeof s === 'function' ? s : undefined;
|
|
311
|
+
}
|
|
232
312
|
// Read the `iss` claim from a JWT without verifying (the world_session issuer is the platform API
|
|
233
313
|
// origin). Verification isn't this side's job; the room verifies the credential against JWKS. Returns
|
|
234
314
|
// null if there's no usable http(s) issuer — in which case the world must configure({ apiBaseUrl }).
|
package/dist/multiplayer.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multiplayer.js","sourceRoot":"","sources":["../src/multiplayer.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"multiplayer.js","sourceRoot":"","sources":["../src/multiplayer.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/protocol.ts","../src/multiplayer-contract/state.ts","../src/multiplayer-contract/room.ts","../src/multiplayer-contract/messages.ts","../src/multiplayer-contract/credential.ts","../src/multiplayer-contract/index.ts","../node_modules/@colyseus/sdk/build/legacy.d.ts","../node_modules/@standard-schema/spec/dist/index.d.ts","../node_modules/@colyseus/shared-types/build/Protocol.d.ts","../node_modules/@colyseus/shared-types/build/index.d.ts","../node_modules/@colyseus/schema/build/encoding/spec.d.ts","../node_modules/@colyseus/schema/build/symbol.shim.d.ts","../node_modules/@colyseus/schema/build/types/symbols.d.ts","../node_modules/@colyseus/schema/build/encoder/StateView.d.ts","../node_modules/@colyseus/schema/build/types/TypeContext.d.ts","../node_modules/@colyseus/schema/build/encoding/encode.d.ts","../node_modules/@colyseus/schema/build/encoding/decode.d.ts","../node_modules/@colyseus/schema/build/encoder/Root.d.ts","../node_modules/@colyseus/schema/build/encoder/Encoder.d.ts","../node_modules/@colyseus/schema/build/Metadata.d.ts","../node_modules/@colyseus/schema/build/encoder/EncodeOperation.d.ts","../node_modules/@colyseus/schema/build/decoder/ReferenceTracker.d.ts","../node_modules/@colyseus/schema/build/decoder/Decoder.d.ts","../node_modules/@colyseus/schema/build/decoder/DecodeOperation.d.ts","../node_modules/@colyseus/schema/build/types/custom/CollectionSchema.d.ts","../node_modules/@colyseus/schema/build/types/custom/SetSchema.d.ts","../node_modules/@colyseus/schema/build/types/HelperTypes.d.ts","../node_modules/@colyseus/schema/build/types/custom/MapSchema.d.ts","../node_modules/@colyseus/schema/build/encoder/ChangeTree.d.ts","../node_modules/@colyseus/schema/build/types/custom/ArraySchema.d.ts","../node_modules/@colyseus/schema/build/types/registry.d.ts","../node_modules/@colyseus/schema/build/annotations.d.ts","../node_modules/@colyseus/schema/build/Schema.d.ts","../node_modules/@colyseus/schema/build/utils.d.ts","../node_modules/@colyseus/schema/build/Reflection.d.ts","../node_modules/@colyseus/schema/build/decoder/strategy/getDecoderStateCallbacks.d.ts","../node_modules/@colyseus/schema/build/decoder/strategy/Callbacks.d.ts","../node_modules/@colyseus/schema/build/decoder/strategy/RawChanges.d.ts","../node_modules/@colyseus/schema/build/index.d.ts","../node_modules/@colyseus/msgpackr/index.d.ts","../node_modules/@colyseus/sdk/build/transport/ITransport.d.ts","../node_modules/@colyseus/sdk/build/Connection.d.ts","../node_modules/@colyseus/sdk/build/serializer/Serializer.d.ts","../node_modules/@colyseus/sdk/build/serializer/SchemaSerializer.d.ts","../node_modules/@colyseus/sdk/build/core/signal.d.ts","../node_modules/@colyseus/sdk/build/core/nanoevents.d.ts","../node_modules/@colyseus/sdk/build/Room.d.ts","../node_modules/@colyseus/better-call/dist/helper.d.mts","../node_modules/@colyseus/better-call/dist/standard-schema.d.mts","../node_modules/@colyseus/better-call/dist/error.d.mts","../node_modules/@colyseus/better-call/dist/cookies.d.mts","../node_modules/@colyseus/better-call/dist/openapi.d.mts","../node_modules/@colyseus/better-call/dist/endpoint.d.mts","../node_modules/@colyseus/better-call/dist/middleware.d.mts","../node_modules/@colyseus/better-call/dist/context.d.mts","../node_modules/@colyseus/better-call/dist/router.d.mts","../node_modules/@colyseus/better-call/dist/to-response.d.mts","../node_modules/@colyseus/better-call/dist/index.d.mts","../node_modules/@colyseus/sdk/build/HTTP.d.ts","../node_modules/@colyseus/sdk/build/Auth.d.ts","../node_modules/@colyseus/sdk/build/Client.d.ts","../node_modules/@colyseus/sdk/build/errors/Errors.d.ts","../node_modules/@colyseus/sdk/build/core/utils.d.ts","../node_modules/@colyseus/sdk/build/index.d.ts","../src/multiplayer.ts","../src/index.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/node/ts5.7/compatibility/float16array.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/blob.d.ts","../node_modules/@types/node/web-globals/console.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/encoding.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/round-robin-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/dispatcher1-wrapper.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/socks5-proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/importmeta.d.ts","../node_modules/@types/node/web-globals/messaging.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/performance.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/web-globals/timers.d.ts","../node_modules/@types/node/web-globals/url.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/inspector/promises.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/path/posix.d.ts","../node_modules/@types/node/path/win32.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/quic.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/iter.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/test/reporters.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/util/types.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/zlib/iter.d.ts","../node_modules/@types/node/ts5.7/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/parse5/dist/common/html.d.ts","../node_modules/parse5/dist/common/token.d.ts","../node_modules/parse5/dist/common/error-codes.d.ts","../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../node_modules/entities/dist/esm/generated/decode-data-html.d.ts","../node_modules/entities/dist/esm/generated/decode-data-xml.d.ts","../node_modules/entities/dist/esm/decode-codepoint.d.ts","../node_modules/entities/dist/esm/decode.d.ts","../node_modules/parse5/dist/tokenizer/index.d.ts","../node_modules/parse5/dist/tree-adapters/interface.d.ts","../node_modules/parse5/dist/parser/open-element-stack.d.ts","../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../node_modules/parse5/dist/parser/index.d.ts","../node_modules/parse5/dist/tree-adapters/default.d.ts","../node_modules/parse5/dist/serializer/index.d.ts","../node_modules/parse5/dist/common/foreign-content.d.ts","../node_modules/parse5/dist/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/jsdom/base.d.ts","../node_modules/@types/jsdom/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[131,139,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235],[112,113,114,115,117,118,139,204,212,216,219,221,222,223,235],[112,113,114,115,116,118,119,139,204,212,216,219,221,222,223,235],[113,139,204,212,216,219,221,222,223,235],[112,113,114,115,116,117,118,119,120,121,139,204,212,216,219,221,222,223,235],[112,117,119,139,204,212,216,219,221,222,223,235],[117,139,204,212,216,219,221,222,223,235],[117,118,139,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,240],[77,96,139,204,212,216,219,221,222,223,235],[81,83,87,96,97,103,139,204,212,216,219,221,222,223,235],[75,77,78,84,85,87,88,91,93,96,139,204,212,216,219,221,222,223,235],[75,76,89,90,91,92,94,95,97,103,139,204,212,216,219,221,222,223,235],[75,81,87,93,97,139,204,212,216,219,221,222,223,235],[79,81,86,88,91,93,97,139,204,212,216,219,221,222,223,235],[93,139,204,212,216,219,221,222,223,235],[75,77,86,87,88,91,92,93,94,97,100,139,204,212,216,219,221,222,223,235],[87,88,139,204,212,216,219,221,222,223,235],[87,91,97,139,204,212,216,219,221,222,223,235],[75,77,82,84,85,88,89,90,92,94,97,139,204,212,216,219,221,222,223,235],[75,81,83,84,93,139,204,212,216,219,221,222,223,235],[78,79,81,82,93,97,139,204,212,216,219,221,222,223,235],[79,93,139,204,212,216,219,221,222,223,235],[80,139,204,212,216,219,221,222,223,235],[81,139,204,212,216,219,221,222,223,235],[75,77,78,79,80,81,83,84,85,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,139,204,212,216,219,221,222,223,235],[89,90,92,94,96,97,139,204,212,216,219,221,222,223,235],[97,139,204,212,216,219,221,222,223,235],[75,77,78,85,88,91,93,97,139,204,212,216,219,221,222,223,235],[77,78,85,88,91,93,97,139,204,212,216,219,221,222,223,235],[80,81,139,204,212,216,219,221,222,223,235],[123,139,204,212,216,219,221,222,223,235],[74,108,111,123,124,139,204,212,216,219,221,222,223,235],[105,139,204,212,216,219,221,222,223,235],[122,125,139,204,212,216,219,221,222,223,235],[74,103,104,106,107,108,109,110,139,204,212,216,219,221,222,223,235],[74,103,107,108,111,123,124,125,126,127,139,204,212,216,219,221,222,223,235],[103,107,111,139,204,212,216,219,221,222,223,235],[103,139,204,212,216,219,221,222,223,235],[72,73,139,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,269],[131,132,133,134,135,139,204,212,216,219,221,222,223,235],[131,133,139,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,262],[139,204,212,216,219,221,222,223,235,264],[139,204,212,216,219,221,222,223,235,265],[139,204,212,216,219,221,222,223,235,271,274],[139,204,212,215,216,219,221,222,223,235,257,262,292,293,295],[139,204,212,216,219,221,222,223,235,294],[139,201,202,204,212,216,219,221,222,223,235],[139,203,204,212,216,219,221,222,223,235],[204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,244],[139,204,205,210,212,215,216,219,221,222,223,225,235,240,253],[139,204,205,206,212,215,216,219,221,222,223,235],[139,204,207,212,216,219,221,222,223,235,254],[139,204,208,209,212,216,219,221,222,223,226,235],[139,204,209,212,216,219,221,222,223,235,240,250],[139,204,210,212,215,216,219,221,222,223,225,235],[139,203,204,211,212,216,219,221,222,223,235],[139,204,212,213,216,219,221,222,223,235],[139,204,212,214,215,216,219,221,222,223,235],[139,203,204,212,215,216,219,221,222,223,235],[139,204,212,215,216,217,219,221,222,223,235,240,253],[139,204,212,215,216,217,219,221,222,223,235,240,242,244],[139,191,204,212,215,216,218,219,221,222,223,225,235,240,253],[139,204,212,215,216,218,219,221,222,223,225,235,240,250,253],[139,204,212,216,218,219,220,221,222,223,235,240,250,253],[139,204,212,215,216,219,221,222,223,235],[139,204,212,216,219,221,223,235],[139,204,212,216,219,221,222,223,224,235,253],[139,204,212,215,216,219,221,222,223,225,235,240],[139,204,212,216,219,221,222,223,226,235],[139,204,212,216,219,221,222,223,227,235],[139,204,212,215,216,219,221,222,223,230,235],[139,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260],[139,204,212,216,219,221,222,223,232,235],[139,204,212,216,219,221,222,223,233,235],[139,204,209,212,216,219,221,222,223,225,235,244],[139,204,212,215,216,219,221,222,223,235,236],[139,204,212,216,219,221,222,223,235,237,254,257],[139,204,212,215,216,219,221,222,223,235,240,243,244],[139,204,212,216,219,221,222,223,235,241,244],[139,204,212,216,219,221,222,223,235,242],[139,204,212,216,219,221,222,223,235,244,254],[139,204,212,216,219,221,222,223,235,245],[139,201,204,212,216,219,221,222,223,235,240,247,253],[139,204,212,216,219,221,222,223,235,240,246],[139,204,212,215,216,219,221,222,223,235,248,249],[139,204,212,216,219,221,222,223,235,248,249],[139,204,209,212,216,219,221,222,223,225,235,240,250],[139,204,212,216,219,221,222,223,235,251],[137,138,139,140,141,142,143,144,145,146,147,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261],[139,204,212,216,219,221,222,223,225,235,252],[139,204,212,216,218,219,221,222,223,233,235,253],[139,204,212,216,219,221,222,223,235,254,255],[139,204,209,212,216,219,221,222,223,235,255],[139,204,212,216,219,221,222,223,235,240,256],[139,204,212,216,219,221,222,223,224,235,257],[139,204,212,216,219,221,222,223,235,258],[139,204,207,212,216,219,221,222,223,235],[139,204,209,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,254],[139,191,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,253],[139,204,212,216,219,221,222,223,235,259],[139,204,212,216,219,221,222,223,230,235],[139,204,212,216,219,221,222,223,235,249],[139,191,204,212,215,216,217,219,221,222,223,230,235,240,244,253,256,257,259],[139,204,212,216,219,221,222,223,235,240,260],[139,204,212,216,219,221,222,223,235,242,261],[139,204,212,216,219,221,222,223,235,297],[139,204,212,216,219,221,222,223,235,280,281,282],[139,204,212,216,219,221,222,223,235,267,273],[139,204,212,216,219,221,222,223,235,271],[139,204,212,216,219,221,222,223,235,268,272],[139,204,212,216,219,221,222,223,235,277],[139,204,212,216,219,221,222,223,235,276,277],[139,204,212,216,219,221,222,223,235,276],[139,204,212,216,219,221,222,223,235,276,277,278,284,285,288,289,290,291],[139,204,212,216,219,221,222,223,235,277,285],[139,204,212,216,219,221,222,223,235,276,277,278,284,285,286,287],[139,204,212,216,219,221,222,223,235,276,285],[139,204,212,216,219,221,222,223,235,285,289],[139,204,212,216,219,221,222,223,235,277,278,279,283],[139,204,212,216,219,221,222,223,235,278],[139,204,212,216,219,221,222,223,235,276,277,285],[139,204,212,216,219,221,222,223,235,270],[139,154,157,160,161,204,212,216,219,221,222,223,235,253],[139,157,204,212,216,219,221,222,223,235,240,253],[139,157,161,204,212,216,219,221,222,223,235,253],[139,151,204,212,216,219,221,222,223,235],[139,155,204,212,216,219,221,222,223,235],[139,153,154,157,204,212,216,219,221,222,223,235,253],[139,204,212,216,219,221,222,223,225,235,250],[139,151,204,212,216,219,221,222,223,235,262],[139,153,157,204,212,216,219,221,222,223,225,235,253],[139,148,149,150,152,156,204,212,215,216,219,221,222,223,235,240,253],[139,157,204,212,216,219,221,222,223,235],[139,157,166,175,204,212,216,219,221,222,223,235],[139,149,155,204,212,216,219,221,222,223,235],[139,157,185,186,204,212,216,219,221,222,223,235],[139,149,152,157,204,212,216,219,221,222,223,235,244,253,262],[139,153,157,204,212,216,219,221,222,223,235,253],[139,148,204,212,216,219,221,222,223,235],[139,151,152,153,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,186,187,188,189,190,204,212,216,219,221,222,223,235],[139,157,178,181,204,212,216,219,221,222,223,235],[139,157,166,168,169,204,212,216,219,221,222,223,235],[139,155,157,168,170,204,212,216,219,221,222,223,235],[139,156,204,212,216,219,221,222,223,235],[139,149,151,157,204,212,216,219,221,222,223,235],[139,157,161,168,170,204,212,216,219,221,222,223,235],[139,161,204,212,216,219,221,222,223,235],[139,155,157,160,204,212,216,219,221,222,223,235,253],[139,149,153,157,166,204,212,216,219,221,222,223,235],[139,157,178,204,212,216,219,221,222,223,235],[139,170,204,212,216,219,221,222,223,235],[139,149,153,157,161,204,212,216,219,221,222,223,235],[139,151,157,185,204,212,216,219,221,222,223,235,244,259,262],[65,70,129,139,204,212,216,219,221,222,223,235],[66,67,68,69,139,204,212,216,219,221,222,223,235],[66,67,139,204,212,216,219,221,222,223,235],[66,139,204,212,216,219,221,222,223,235],[70,128,139,204,212,216,219,221,222,223,235]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f4a146b7332a65334d4808f59f93ae79b9b3db208dd7c5b15cda9e9ccb60bbe","signature":"e5f8504be732cfe9205a742d3d77d71559ee3f336854b69741b140812dacbef9"},{"version":"8601f62f8de1d323f92b92088096e302e8e90414f8a44d10ef4b7c8ac9e3a59c","signature":"97d09c5e4364f6df7d1a6b7ba9548ff801e11ba978d99db2f5b1e9a6a897d56f"},{"version":"9005d39882b8e85af3b0d998cd0021e57a1f3d1dae46e66d90b96c3ed3db0e4c","signature":"3a8890c7bc5a04a6cae671f6733d1538eb21a81c1c45e13c056072e80ccb537b"},{"version":"f5dbc750383743dce5c64f9d59bfcaf6f1cc48ef5ec397e96c0c055807058a72","signature":"13ec54a3ab9e30e691bd10ab6d6d7fd4d3bd82af62c5ad4ac92c2a7e8456b29f"},{"version":"85141dfa0f8f5fcd57ef5ed3fae810bbd09254cf3f3342c7328e5d941440f05d","signature":"aaf875acb75b553985a1024cae6ccef418713f2abdc73fa5deae946ad0517605"},{"version":"cf51091739cfe5157c726e3394605fd0d1219b1f6ab9b2758e0cf94925a5f6a2","signature":"13cd4eb8a9ae1acbb1691ebc6506db878132ef68062bc739de53b0e500b2cb16"},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"e3ef129dc51e131068e6cd025789f405fd1b7ab0142397364c51d6cf11a58238","impliedFormat":99},{"version":"9e5927b182ea7aeb463ed8ee2b13bf7e4e96f5e3bfa26b097cdc8bb006d858d4","impliedFormat":99},{"version":"8270df05e495c8a618bdfaf0c49c83a07bc7cdd0750525b78fb7bd1e771fb03b","impliedFormat":99},{"version":"f45246a7a8ee560984696029f277e5f86377495f89c2d418df8abf9e19fb2990","affectsGlobalScope":true,"impliedFormat":99},{"version":"43d21296b16a2171ba6bfbc518cceecad0b05f4db6653f081534a36e9d9c5910","impliedFormat":99},{"version":"e12d2f436faccdc227c8bca75b7ee9fbd8de528f02611169a927d9868a8e91eb","impliedFormat":99},{"version":"55926a9ce1ca733a689c61721591ad156f6fd0b92f48eb5b42d59eb6209893b0","impliedFormat":99},{"version":"5992a3187574e46c970865247b5553044a5e8a05aac596b71486898e76272cc2","impliedFormat":99},{"version":"0cf050a836edf5bf00b6f120c81eefc9dc710bf5d1d78dea89e87c09e8f30879","impliedFormat":99},{"version":"0aa11dc4f4dd2b77d16e35e03071a7ff8e09aaf282be977f09e7de438708bce0","impliedFormat":99},{"version":"867bb8b49fcc286560140aaa32062adeb8542bb3d554a69039f2b71195942c85","impliedFormat":99},{"version":"18c19db2d439d376b3b009ec585af0b8f7f88c20f268c20a3d91ef8ffb060ccd","impliedFormat":99},{"version":"b1f0f6979e4c7a23ca4b79274e28ee44c96449559ce1d30b103714306bd55f71","impliedFormat":99},{"version":"ed2f3765976327e31fc1df8f5baacbc178e6168a1330d80080e36442ea83deab","impliedFormat":99},{"version":"fdc51a118ab68c73780eb6ee7bd4c42260a193b613c0c6c5916aeef3aa60df81","impliedFormat":99},{"version":"aa0fe5ea3330aa939533788105b9cb89aa9ccfe9346dff2838c8454dbbb22e48","impliedFormat":99},{"version":"e6443a8f2cdfb639fb27d06b46f2779a9a4e2ed37862d1033b89d59b534ec946","impliedFormat":99},{"version":"994b1ef8dac1f4145c9ec1e76750019f071894d2006552b9ff4bb2f6552b6c9e","impliedFormat":99},{"version":"d6f69a976a1d7774f81a844275ccab7da0a8134bf26938e93df3b18b219dd514","impliedFormat":99},{"version":"6511c81fa9473915f20d0ced0d55b530d752d7b61daa92599d09b03d5f08b904","impliedFormat":99},{"version":"c7298861b1bb6ed6590358c39b39cd6c5223e77caba80d58b67f18e372edb71e","affectsGlobalScope":true,"impliedFormat":99},{"version":"169ea0353fd8d6b8ceea01c867ddcaf9ac3c6fc029585492518fe9b6af27a4e9","impliedFormat":99},{"version":"313c2032fc38557ae38a3f450f5d22baca411e8fad0ff7a8cfb8d60312672134","impliedFormat":99},{"version":"64ed5aa54688ed7bf2389b5ae64b418aef046afa405b7ccbd09e668b54f25a4e","impliedFormat":99},{"version":"7699de0b8fe5282d216259107959b6b899e0de25a69f31f474a767f5c8e8d42f","impliedFormat":99},{"version":"f5083f15e35d17da5d472a5858531940d8fa51d6107ef4fb03d6b8ecc67da547","impliedFormat":99},{"version":"f4048c9a1ab8ad01960e3424403adc0b988994e0b0f9357ff4146893276600a4","impliedFormat":99},{"version":"02d578cf62571de1d1e5768fee82da981748a61186ebc3a9024e85772b7d700e","impliedFormat":99},{"version":"f68ca3b5c6df435c5465b326a93bfb51bf245d59a1126265859725a553cf69d4","impliedFormat":99},{"version":"08bdf9e8a0226958def47a0fdcdda9985e62be643a771aaebd7b2dfecb7ef766","impliedFormat":99},{"version":"dab440222ac0e689aa1436f0f9e149bc80cca8f88fc23093cbaadb2d5e472262","impliedFormat":99},{"version":"5ddc9b07a1f21f4d498721165bafa339528e989af0741aa367ec60dc31de331c","impliedFormat":99},{"version":"69773f9a33f734a896046e80024f74551ffb2b66b668583bcc1d6d8ac4ea94e3","impliedFormat":99},{"version":"6bcf134636c0dec10fcaba1e461b41ea35ad1d4ce880c409aaaeeb6255789f18","impliedFormat":99},{"version":"ae11bfc8bca6601b802647f81546520469cf2e7f5e267bf71a5997a9be041741","impliedFormat":99},{"version":"6f4aa08e82445cf10c5b22cf0c5b62e91865d2cfe66159fce18b275931107008","impliedFormat":99},{"version":"6be853b81aab58f72e77d404aff81bc9bd602723bcec966a93fd23c259b8638e","impliedFormat":99},{"version":"10488b6129451b2729811d281ad7c0d1354fc2207e8916da7f8d289b9f287971","impliedFormat":99},{"version":"a7c9ae15af4332eb5ae448e7f1c2c5b33316503e97c8a25344ce55691c4aac52","impliedFormat":99},{"version":"767cfb1496df590e9132052dbf9d5a2ed4d7864823eafb4eafcc5f9569f3c152","impliedFormat":99},{"version":"b9f9f77327ef54fc055ab78fc6fc6c93b88410621fd9b2374bb956022018a62a","impliedFormat":99},{"version":"5498a276bff1969c1bee4375f0c41d9a00e26597ecf35d174d61d59e47f6c158","impliedFormat":99},{"version":"aa015d746ff96c12818a7ad742e45f40bc6f72f4b7df2af0f7200dacfe0ca65e","impliedFormat":99},{"version":"01a6da71fc05a9195f334ab1092b3f4952b0f2e2c460ea55d206ef629309062d","impliedFormat":99},{"version":"4f213c7e007630af73b6f3d3525191b3d4b9387dc903ea7b002d1c82d2989108","impliedFormat":99},{"version":"8d9b0d78ee11670d4caa429ce908ef681663d65e94dc1507b47d6eb44abf903d","impliedFormat":99},{"version":"f4bbfedc2a1b2cdba481f59ef5ac1c239b889cb2d64737260895417d300351c9","impliedFormat":99},{"version":"f4627f7b94088c75527e5fe21124b431782032a35022fcac6ecaa0ad52618d46","impliedFormat":99},{"version":"6a8ab860d18807ef3ebcbba3c436ae6432640a8e9fd3b3e965d3b923d7ab1043","impliedFormat":99},{"version":"792c99091f78c76438d644bfb960d343b08c90ecec02b5f2e9f7170b90c1c4dd","impliedFormat":99},{"version":"673ffa56b8d26d79fa7ba4b8ef51a17245fe4ad754c5541e634c44dec8d71fa9","impliedFormat":99},{"version":"af4ca4266eb49eb93950f1b40af2b159f5b457756c22ed90da470ad35035cef9","impliedFormat":99},{"version":"3466cc0ea5600192770f1b1ca9205b8fb8d801b2a86e96c0e509a9be5d3cbaab","impliedFormat":99},{"version":"4c0ca485b3e45bda2bcbf81dfa1675e7404832eb770935223d32c0582784b822","impliedFormat":99},{"version":"6691c27223e3f40b66607da59baf24a4d5988c352955a6646e7d4c91a4c1aaf9","impliedFormat":99},{"version":"e15d9bbfd0802af440138e918e6d8e6c39429ad92dd725f489272ca8b82938a0","impliedFormat":99},{"version":"a25eb598ccefc2292930f20f604774afdf7beb9e53cc01dd0bb6881f4597b2a2","signature":"b1e5bd74ecd57f18acd1e722d9433e013111b3e4f987f11b703831af0a10cd44"},{"version":"e9f57e3a2461f3d3ae210109e4a690a895b0f87521f47b8362c527a40f194c28","signature":"a7947eca644b1e17d40c895663c7b8981ca1f972c0d404acf7aa7ff2dc01fd85"},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"cebfeedf63623d54f7423d58cae1ec204c0d8d97a66d5fb17579e26a902085e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"3ac40516c33b87f751f7507346933081a26cdb8a3e11a6b3aa07d23f803c85db","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"829bc57ee8f287b490ab5bbc5a962fca57e432c1e38ec680ecd3ecaf12800613","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"3a3ff14da53d5013f3e6d8c4ad55225e3649c08786c4421ce639c00d8d589b7d","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"d243db6b25788f439e7e2f03c05688e92f46764351673bb0e7b2f3631232e186","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"9ac977503f15bf13ca7c82ad9a32a782f42d43e474824e8b3bffe228fd5f2639","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"7cb4f431a4591b0e23002bed805dc871a874dfed6b9a3994dce68a6df73e6739","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"0828724f6c17d63075bc7bfdd2f22875c4d00f90a6d8ef16d2e718a9e5f7e135","affectsGlobalScope":true,"impliedFormat":1},{"version":"177459cba484e2f1e08872a3d2fdbca3162d9d43ca5ec9dc0c946835b55f74be","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"637e244cbc5174cce5482388be2b4b51c49f7ce6dead7316448da61d7aa283b1","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"afa8be176b15487addede2f996c733e8d33a23497e6efe01c3945f768cf79184","impliedFormat":1},{"version":"6a0de93048a43c4f492e1fe43cc4ec52eed57d4e03a07c78b2d502e20dbdcfd8","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"66e5d81f637da29b03689fbc84cc61f18c6fdde769b134e0649259384df453e2","impliedFormat":1},{"version":"f2bb6c145c2112b33fa26e7464c9c69212fd3fc163ee389230c22db39408ad1e","impliedFormat":1},{"version":"b02c915a1b0d9777a17e3249674735eec3f2fd929f0d63da84157aac7f9a4345","impliedFormat":1},{"version":"62e8f884c3bc6dff6189b6e662ebe8b238a645938f2df7a97b8a82fca56773a4","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"57a0d1b3d59063d4af2d3f8aac27cfe3c20a0f5d1faf0f8598ccf0b779637939","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"93ecf87143cac7b9d05cffc1d6bdc075b7e4fdd48ff05f1fad85043f6ae678d3","impliedFormat":1},{"version":"6f200afcb82b3e9a54bed6db23f2edf2508cd266801257312c0f124b47f2bdb9","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"39338f84e8c4d0e3de7b3c4a7024fb3925f42100eed5cbe73be58902799dff4d","impliedFormat":1},{"version":"f1c92c0b24d678486042dfc038c7c1d6e8520fe384b82155720a42a893204588","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"8413d0641f293aed551c7464615b770d34a02dedede889b9591172287d68e773","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"8bb351077998efc2d986a6a7373cba6f098a91a3679cefce3ba2aab90493161c","impliedFormat":1},{"version":"734665cf52eb63e20252412ca891601b1405f7c6abef6425f1939cbb15ed239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f36b3fbe2be150a9ca140da48593f21e6a8172004f92ddc549b43efec39f3e54","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"b4769767f13a1692a66186e01c3aa186ff808d5ff72ed36eda8c37738fb2ac92","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"ae6adca0538007af480cf43e20b1e7631c5321406bc515bff980a0d31252f79f","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"e47f532d6e1617833f13a5b0710c0089d402c89c2f2b54f324e5a20e418d287a","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"5cbb49cb13edc05e52b239329932cfde34323c6bfe33020e381faa97d2300b22","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"62e02b8bbc05076243cf153d10c27b3d886c7c08558dfb797f280d837881b3cd","impliedFormat":1},{"version":"045a210189ec63c5488410b33f9fca53d77d051599d0d6506d8048551399c5f3","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"3ead5b9bea1c59a375acdd494ac503f6e16a2b47cffbc31da1824fc17d023205","impliedFormat":1},{"version":"c9a2daf6cd1eb854cd5b9e424247c5e306692055738c2effd35f7871d942b76e","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"bec726f1f7d2061cf17cfbb01b74283ada49933037695423f37fc91c1c2e2db6","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"19990350fca066265b2c190c9b6cde1229f35002ea2d4df8c9e397e9942f6c89","impliedFormat":99},{"version":"8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","impliedFormat":99},{"version":"66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","impliedFormat":99},{"version":"9863f888da357e35e013ca3465b794a490a198226bd8232c2f81fb44e16ff323","impliedFormat":99},{"version":"84bc2d80326a83ee4a6e7cba2fd480b86502660770c0e24da96535af597c9f1e","impliedFormat":99},{"version":"ea27768379b866ee3f5da2419650acdb01125479f7af73580a4bceb25b79e372","impliedFormat":99},{"version":"598931eeb4362542cae5845f95c5f0e45ac668925a40ce201e244d7fe808e965","impliedFormat":99},{"version":"da9ef88cde9f715756da642ad80c4cd87a987f465d325462d6bc2a0b11d202c8","impliedFormat":99},{"version":"b4c6184d78303b0816e779a48bef779b15aea4a66028eb819aac0abee8407dea","impliedFormat":99},{"version":"db085d2171d48938a99e851dafe0e486dce9859e5dfa73c21de5ed3d4d6fb0c5","impliedFormat":99},{"version":"62a3ad1ddd1f5974b3bf105680b3e09420f2230711d6520a521fab2be1a32838","impliedFormat":99},{"version":"a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","impliedFormat":99},{"version":"06cf55b6da5cef54eaaf51cdc3d4e5ebf16adfdd9ebd20cec7fe719be9ced017","impliedFormat":99},{"version":"91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","impliedFormat":99},{"version":"052ba354bab8fb943e0bc05a0769f7b81d7c3b3c6cd0f5cfa53c7b2da2a525c5","impliedFormat":99},{"version":"927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","impliedFormat":99},{"version":"fec804d54cd97dd77e956232fc37dc13f53e160d4bbeeb5489e86eeaa91f7ebd","impliedFormat":99},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175","impliedFormat":1},{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[65,70],129,130],"options":{"declaration":true,"esModuleInterop":true,"module":7,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictPropertyInitialization":false,"target":10},"referencedMap":[[133,1],[131,2],[119,3],[115,2],[117,4],[114,5],[112,2],[122,6],[118,7],[116,8],[120,9],[113,2],[121,2],[104,10],[84,11],[99,12],[97,13],[96,14],[88,15],[87,16],[86,17],[101,18],[102,19],[100,20],[93,21],[85,22],[83,23],[82,24],[78,17],[81,25],[80,26],[75,2],[103,27],[76,2],[91,28],[79,29],[94,30],[89,31],[92,31],[90,31],[95,32],[77,2],[98,29],[124,33],[125,34],[106,35],[123,36],[111,37],[110,2],[109,2],[127,2],[126,2],[128,38],[71,2],[108,39],[107,40],[105,2],[73,2],[74,41],[267,2],[270,42],[269,2],[72,2],[136,43],[132,1],[134,44],[135,1],[263,45],[264,2],[265,46],[266,47],[275,48],[294,49],[295,50],[201,51],[202,51],[203,52],[139,53],[204,54],[205,55],[206,56],[207,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,62],[214,63],[215,64],[216,65],[217,66],[140,2],[138,2],[218,67],[219,68],[220,69],[221,70],[222,71],[223,70],[224,72],[225,73],[226,74],[227,75],[228,75],[229,75],[230,76],[231,77],[232,78],[233,79],[234,80],[235,81],[236,81],[237,82],[238,2],[239,2],[240,83],[241,84],[242,85],[243,83],[244,86],[245,87],[246,88],[247,89],[248,90],[249,91],[250,92],[251,93],[137,2],[262,94],[252,95],[253,96],[254,97],[255,98],[256,99],[257,100],[258,101],[141,70],[142,2],[143,102],[144,103],[145,2],[146,104],[147,2],[192,105],[193,106],[194,107],[195,107],[196,108],[197,2],[198,54],[199,109],[200,106],[259,110],[260,111],[261,112],[296,2],[293,2],[297,2],[298,113],[268,2],[282,2],[283,114],[280,2],[281,2],[274,115],[272,116],[273,117],[278,118],[291,119],[276,2],[277,120],[292,121],[287,122],[288,123],[286,124],[290,125],[284,126],[279,127],[289,128],[285,119],[271,129],[63,2],[64,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[58,2],[57,2],[59,2],[60,2],[10,2],[61,2],[1,2],[62,2],[166,130],[180,131],[163,132],[181,10],[190,133],[154,134],[155,135],[153,136],[189,45],[184,137],[188,138],[157,139],[167,140],[177,141],[156,142],[187,143],[151,144],[152,137],[158,140],[159,2],[165,145],[162,140],[149,146],[191,147],[182,148],[170,149],[169,140],[171,150],[174,151],[168,152],[172,153],[185,45],[160,154],[161,155],[175,156],[150,10],[179,157],[178,140],[164,155],[173,158],[176,159],[183,2],[148,2],[186,160],[130,161],[69,2],[70,162],[68,163],[67,164],[66,2],[129,165],[65,2]],"version":"5.7.3"}
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/protocol.ts","../src/multiplayer-contract/state.ts","../src/multiplayer-contract/room.ts","../src/multiplayer-contract/messages.ts","../src/multiplayer-contract/credential.ts","../src/multiplayer-contract/index.ts","../node_modules/@colyseus/sdk/build/legacy.d.ts","../node_modules/@standard-schema/spec/dist/index.d.ts","../node_modules/@colyseus/shared-types/build/Protocol.d.ts","../node_modules/@colyseus/shared-types/build/index.d.ts","../node_modules/@colyseus/schema/build/encoding/spec.d.ts","../node_modules/@colyseus/schema/build/symbol.shim.d.ts","../node_modules/@colyseus/schema/build/types/symbols.d.ts","../node_modules/@colyseus/schema/build/encoder/StateView.d.ts","../node_modules/@colyseus/schema/build/types/TypeContext.d.ts","../node_modules/@colyseus/schema/build/encoding/encode.d.ts","../node_modules/@colyseus/schema/build/encoding/decode.d.ts","../node_modules/@colyseus/schema/build/encoder/Root.d.ts","../node_modules/@colyseus/schema/build/encoder/Encoder.d.ts","../node_modules/@colyseus/schema/build/Metadata.d.ts","../node_modules/@colyseus/schema/build/encoder/EncodeOperation.d.ts","../node_modules/@colyseus/schema/build/decoder/ReferenceTracker.d.ts","../node_modules/@colyseus/schema/build/decoder/Decoder.d.ts","../node_modules/@colyseus/schema/build/decoder/DecodeOperation.d.ts","../node_modules/@colyseus/schema/build/types/custom/CollectionSchema.d.ts","../node_modules/@colyseus/schema/build/types/custom/SetSchema.d.ts","../node_modules/@colyseus/schema/build/types/HelperTypes.d.ts","../node_modules/@colyseus/schema/build/types/custom/MapSchema.d.ts","../node_modules/@colyseus/schema/build/encoder/ChangeTree.d.ts","../node_modules/@colyseus/schema/build/types/custom/ArraySchema.d.ts","../node_modules/@colyseus/schema/build/types/registry.d.ts","../node_modules/@colyseus/schema/build/annotations.d.ts","../node_modules/@colyseus/schema/build/Schema.d.ts","../node_modules/@colyseus/schema/build/utils.d.ts","../node_modules/@colyseus/schema/build/Reflection.d.ts","../node_modules/@colyseus/schema/build/decoder/strategy/getDecoderStateCallbacks.d.ts","../node_modules/@colyseus/schema/build/decoder/strategy/Callbacks.d.ts","../node_modules/@colyseus/schema/build/decoder/strategy/RawChanges.d.ts","../node_modules/@colyseus/schema/build/index.d.ts","../node_modules/@colyseus/msgpackr/index.d.ts","../node_modules/@colyseus/sdk/build/transport/ITransport.d.ts","../node_modules/@colyseus/sdk/build/Connection.d.ts","../node_modules/@colyseus/sdk/build/serializer/Serializer.d.ts","../node_modules/@colyseus/sdk/build/serializer/SchemaSerializer.d.ts","../node_modules/@colyseus/sdk/build/core/signal.d.ts","../node_modules/@colyseus/sdk/build/core/nanoevents.d.ts","../node_modules/@colyseus/sdk/build/Room.d.ts","../node_modules/@colyseus/better-call/dist/helper.d.mts","../node_modules/@colyseus/better-call/dist/standard-schema.d.mts","../node_modules/@colyseus/better-call/dist/error.d.mts","../node_modules/@colyseus/better-call/dist/cookies.d.mts","../node_modules/@colyseus/better-call/dist/openapi.d.mts","../node_modules/@colyseus/better-call/dist/endpoint.d.mts","../node_modules/@colyseus/better-call/dist/middleware.d.mts","../node_modules/@colyseus/better-call/dist/context.d.mts","../node_modules/@colyseus/better-call/dist/router.d.mts","../node_modules/@colyseus/better-call/dist/to-response.d.mts","../node_modules/@colyseus/better-call/dist/index.d.mts","../node_modules/@colyseus/sdk/build/HTTP.d.ts","../node_modules/@colyseus/sdk/build/Auth.d.ts","../node_modules/@colyseus/sdk/build/Client.d.ts","../node_modules/@colyseus/sdk/build/errors/Errors.d.ts","../node_modules/@colyseus/sdk/build/core/utils.d.ts","../node_modules/@colyseus/sdk/build/index.d.ts","../src/multiplayer.ts","../src/index.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/node/ts5.7/compatibility/float16array.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/blob.d.ts","../node_modules/@types/node/web-globals/console.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/encoding.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/round-robin-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/dispatcher1-wrapper.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/socks5-proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/importmeta.d.ts","../node_modules/@types/node/web-globals/messaging.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/performance.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/web-globals/timers.d.ts","../node_modules/@types/node/web-globals/url.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/inspector/promises.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/path/posix.d.ts","../node_modules/@types/node/path/win32.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/quic.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/iter.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/test/reporters.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/util/types.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/zlib/iter.d.ts","../node_modules/@types/node/ts5.7/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/parse5/dist/common/html.d.ts","../node_modules/parse5/dist/common/token.d.ts","../node_modules/parse5/dist/common/error-codes.d.ts","../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../node_modules/entities/dist/esm/generated/decode-data-html.d.ts","../node_modules/entities/dist/esm/generated/decode-data-xml.d.ts","../node_modules/entities/dist/esm/decode-codepoint.d.ts","../node_modules/entities/dist/esm/decode.d.ts","../node_modules/parse5/dist/tokenizer/index.d.ts","../node_modules/parse5/dist/tree-adapters/interface.d.ts","../node_modules/parse5/dist/parser/open-element-stack.d.ts","../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../node_modules/parse5/dist/parser/index.d.ts","../node_modules/parse5/dist/tree-adapters/default.d.ts","../node_modules/parse5/dist/serializer/index.d.ts","../node_modules/parse5/dist/common/foreign-content.d.ts","../node_modules/parse5/dist/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/jsdom/base.d.ts","../node_modules/@types/jsdom/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[131,139,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235],[112,113,114,115,117,118,139,204,212,216,219,221,222,223,235],[112,113,114,115,116,118,119,139,204,212,216,219,221,222,223,235],[113,139,204,212,216,219,221,222,223,235],[112,113,114,115,116,117,118,119,120,121,139,204,212,216,219,221,222,223,235],[112,117,119,139,204,212,216,219,221,222,223,235],[117,139,204,212,216,219,221,222,223,235],[117,118,139,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,240],[77,96,139,204,212,216,219,221,222,223,235],[81,83,87,96,97,103,139,204,212,216,219,221,222,223,235],[75,77,78,84,85,87,88,91,93,96,139,204,212,216,219,221,222,223,235],[75,76,89,90,91,92,94,95,97,103,139,204,212,216,219,221,222,223,235],[75,81,87,93,97,139,204,212,216,219,221,222,223,235],[79,81,86,88,91,93,97,139,204,212,216,219,221,222,223,235],[93,139,204,212,216,219,221,222,223,235],[75,77,86,87,88,91,92,93,94,97,100,139,204,212,216,219,221,222,223,235],[87,88,139,204,212,216,219,221,222,223,235],[87,91,97,139,204,212,216,219,221,222,223,235],[75,77,82,84,85,88,89,90,92,94,97,139,204,212,216,219,221,222,223,235],[75,81,83,84,93,139,204,212,216,219,221,222,223,235],[78,79,81,82,93,97,139,204,212,216,219,221,222,223,235],[79,93,139,204,212,216,219,221,222,223,235],[80,139,204,212,216,219,221,222,223,235],[81,139,204,212,216,219,221,222,223,235],[75,77,78,79,80,81,83,84,85,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,139,204,212,216,219,221,222,223,235],[89,90,92,94,96,97,139,204,212,216,219,221,222,223,235],[97,139,204,212,216,219,221,222,223,235],[75,77,78,85,88,91,93,97,139,204,212,216,219,221,222,223,235],[77,78,85,88,91,93,97,139,204,212,216,219,221,222,223,235],[80,81,139,204,212,216,219,221,222,223,235],[123,139,204,212,216,219,221,222,223,235],[74,108,111,123,124,139,204,212,216,219,221,222,223,235],[105,139,204,212,216,219,221,222,223,235],[122,125,139,204,212,216,219,221,222,223,235],[74,103,104,106,107,108,109,110,139,204,212,216,219,221,222,223,235],[74,103,107,108,111,123,124,125,126,127,139,204,212,216,219,221,222,223,235],[103,107,111,139,204,212,216,219,221,222,223,235],[103,139,204,212,216,219,221,222,223,235],[72,73,139,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,269],[131,132,133,134,135,139,204,212,216,219,221,222,223,235],[131,133,139,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,262],[139,204,212,216,219,221,222,223,235,264],[139,204,212,216,219,221,222,223,235,265],[139,204,212,216,219,221,222,223,235,271,274],[139,204,212,215,216,219,221,222,223,235,257,262,292,293,295],[139,204,212,216,219,221,222,223,235,294],[139,201,202,204,212,216,219,221,222,223,235],[139,203,204,212,216,219,221,222,223,235],[204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,244],[139,204,205,210,212,215,216,219,221,222,223,225,235,240,253],[139,204,205,206,212,215,216,219,221,222,223,235],[139,204,207,212,216,219,221,222,223,235,254],[139,204,208,209,212,216,219,221,222,223,226,235],[139,204,209,212,216,219,221,222,223,235,240,250],[139,204,210,212,215,216,219,221,222,223,225,235],[139,203,204,211,212,216,219,221,222,223,235],[139,204,212,213,216,219,221,222,223,235],[139,204,212,214,215,216,219,221,222,223,235],[139,203,204,212,215,216,219,221,222,223,235],[139,204,212,215,216,217,219,221,222,223,235,240,253],[139,204,212,215,216,217,219,221,222,223,235,240,242,244],[139,191,204,212,215,216,218,219,221,222,223,225,235,240,253],[139,204,212,215,216,218,219,221,222,223,225,235,240,250,253],[139,204,212,216,218,219,220,221,222,223,235,240,250,253],[139,204,212,215,216,219,221,222,223,235],[139,204,212,216,219,221,223,235],[139,204,212,216,219,221,222,223,224,235,253],[139,204,212,215,216,219,221,222,223,225,235,240],[139,204,212,216,219,221,222,223,226,235],[139,204,212,216,219,221,222,223,227,235],[139,204,212,215,216,219,221,222,223,230,235],[139,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260],[139,204,212,216,219,221,222,223,232,235],[139,204,212,216,219,221,222,223,233,235],[139,204,209,212,216,219,221,222,223,225,235,244],[139,204,212,215,216,219,221,222,223,235,236],[139,204,212,216,219,221,222,223,235,237,254,257],[139,204,212,215,216,219,221,222,223,235,240,243,244],[139,204,212,216,219,221,222,223,235,241,244],[139,204,212,216,219,221,222,223,235,242],[139,204,212,216,219,221,222,223,235,244,254],[139,204,212,216,219,221,222,223,235,245],[139,201,204,212,216,219,221,222,223,235,240,247,253],[139,204,212,216,219,221,222,223,235,240,246],[139,204,212,215,216,219,221,222,223,235,248,249],[139,204,212,216,219,221,222,223,235,248,249],[139,204,209,212,216,219,221,222,223,225,235,240,250],[139,204,212,216,219,221,222,223,235,251],[137,138,139,140,141,142,143,144,145,146,147,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261],[139,204,212,216,219,221,222,223,225,235,252],[139,204,212,216,218,219,221,222,223,233,235,253],[139,204,212,216,219,221,222,223,235,254,255],[139,204,209,212,216,219,221,222,223,235,255],[139,204,212,216,219,221,222,223,235,240,256],[139,204,212,216,219,221,222,223,224,235,257],[139,204,212,216,219,221,222,223,235,258],[139,204,207,212,216,219,221,222,223,235],[139,204,209,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,254],[139,191,204,212,216,219,221,222,223,235],[139,204,212,216,219,221,222,223,235,253],[139,204,212,216,219,221,222,223,235,259],[139,204,212,216,219,221,222,223,230,235],[139,204,212,216,219,221,222,223,235,249],[139,191,204,212,215,216,217,219,221,222,223,230,235,240,244,253,256,257,259],[139,204,212,216,219,221,222,223,235,240,260],[139,204,212,216,219,221,222,223,235,242,261],[139,204,212,216,219,221,222,223,235,297],[139,204,212,216,219,221,222,223,235,280,281,282],[139,204,212,216,219,221,222,223,235,267,273],[139,204,212,216,219,221,222,223,235,271],[139,204,212,216,219,221,222,223,235,268,272],[139,204,212,216,219,221,222,223,235,277],[139,204,212,216,219,221,222,223,235,276,277],[139,204,212,216,219,221,222,223,235,276],[139,204,212,216,219,221,222,223,235,276,277,278,284,285,288,289,290,291],[139,204,212,216,219,221,222,223,235,277,285],[139,204,212,216,219,221,222,223,235,276,277,278,284,285,286,287],[139,204,212,216,219,221,222,223,235,276,285],[139,204,212,216,219,221,222,223,235,285,289],[139,204,212,216,219,221,222,223,235,277,278,279,283],[139,204,212,216,219,221,222,223,235,278],[139,204,212,216,219,221,222,223,235,276,277,285],[139,204,212,216,219,221,222,223,235,270],[139,154,157,160,161,204,212,216,219,221,222,223,235,253],[139,157,204,212,216,219,221,222,223,235,240,253],[139,157,161,204,212,216,219,221,222,223,235,253],[139,151,204,212,216,219,221,222,223,235],[139,155,204,212,216,219,221,222,223,235],[139,153,154,157,204,212,216,219,221,222,223,235,253],[139,204,212,216,219,221,222,223,225,235,250],[139,151,204,212,216,219,221,222,223,235,262],[139,153,157,204,212,216,219,221,222,223,225,235,253],[139,148,149,150,152,156,204,212,215,216,219,221,222,223,235,240,253],[139,157,204,212,216,219,221,222,223,235],[139,157,166,175,204,212,216,219,221,222,223,235],[139,149,155,204,212,216,219,221,222,223,235],[139,157,185,186,204,212,216,219,221,222,223,235],[139,149,152,157,204,212,216,219,221,222,223,235,244,253,262],[139,153,157,204,212,216,219,221,222,223,235,253],[139,148,204,212,216,219,221,222,223,235],[139,151,152,153,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,186,187,188,189,190,204,212,216,219,221,222,223,235],[139,157,178,181,204,212,216,219,221,222,223,235],[139,157,166,168,169,204,212,216,219,221,222,223,235],[139,155,157,168,170,204,212,216,219,221,222,223,235],[139,156,204,212,216,219,221,222,223,235],[139,149,151,157,204,212,216,219,221,222,223,235],[139,157,161,168,170,204,212,216,219,221,222,223,235],[139,161,204,212,216,219,221,222,223,235],[139,155,157,160,204,212,216,219,221,222,223,235,253],[139,149,153,157,166,204,212,216,219,221,222,223,235],[139,157,178,204,212,216,219,221,222,223,235],[139,170,204,212,216,219,221,222,223,235],[139,149,153,157,161,204,212,216,219,221,222,223,235],[139,151,157,185,204,212,216,219,221,222,223,235,244,259,262],[65,70,129,139,204,212,216,219,221,222,223,235],[66,67,68,69,139,204,212,216,219,221,222,223,235],[66,67,139,204,212,216,219,221,222,223,235],[66,139,204,212,216,219,221,222,223,235],[70,128,139,204,212,216,219,221,222,223,235]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f4a146b7332a65334d4808f59f93ae79b9b3db208dd7c5b15cda9e9ccb60bbe","signature":"e5f8504be732cfe9205a742d3d77d71559ee3f336854b69741b140812dacbef9"},{"version":"7c2a18af9ec011a31f3d41e17dd8d7ce2da70018086c483f54d93aa13440c255","signature":"85b388be9b3d68b8b86f2e03c5f81a31fca72dd2ec5e67da6a3da88938bd1ae9"},{"version":"d6d0f7cd9aa2fac1e4fc9d2922e15ba0e25710159a9269448b81ce7af0151464","signature":"76d99c41d634fa0fd0f814e599807be7d27b03613fa820246b010d2a8da2da0d"},{"version":"297dcc7e16f2b9cb732ed7c9e54daf7e912a0d58a305b79521c699b1dec0e0ee","signature":"277ab55be73a2a58aea4cd807bcf0ab2368df791b6a1e2b55d55d2a13abe3990"},{"version":"85141dfa0f8f5fcd57ef5ed3fae810bbd09254cf3f3342c7328e5d941440f05d","signature":"aaf875acb75b553985a1024cae6ccef418713f2abdc73fa5deae946ad0517605"},{"version":"25c0dbee4f53a7d30182c4e52378b1224432e452bdba09fdd3f6bbb793f841e8","signature":"2c12c78dee845bbc26cf91669b8b49257444a84abfdbe177e219190a2e44aaba"},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"e3ef129dc51e131068e6cd025789f405fd1b7ab0142397364c51d6cf11a58238","impliedFormat":99},{"version":"9e5927b182ea7aeb463ed8ee2b13bf7e4e96f5e3bfa26b097cdc8bb006d858d4","impliedFormat":99},{"version":"8270df05e495c8a618bdfaf0c49c83a07bc7cdd0750525b78fb7bd1e771fb03b","impliedFormat":99},{"version":"f45246a7a8ee560984696029f277e5f86377495f89c2d418df8abf9e19fb2990","affectsGlobalScope":true,"impliedFormat":99},{"version":"43d21296b16a2171ba6bfbc518cceecad0b05f4db6653f081534a36e9d9c5910","impliedFormat":99},{"version":"e12d2f436faccdc227c8bca75b7ee9fbd8de528f02611169a927d9868a8e91eb","impliedFormat":99},{"version":"55926a9ce1ca733a689c61721591ad156f6fd0b92f48eb5b42d59eb6209893b0","impliedFormat":99},{"version":"5992a3187574e46c970865247b5553044a5e8a05aac596b71486898e76272cc2","impliedFormat":99},{"version":"0cf050a836edf5bf00b6f120c81eefc9dc710bf5d1d78dea89e87c09e8f30879","impliedFormat":99},{"version":"0aa11dc4f4dd2b77d16e35e03071a7ff8e09aaf282be977f09e7de438708bce0","impliedFormat":99},{"version":"610b8b0b8cfdbb2c494322426d4be1ea079d9850e97fabe111fb74eb4ba353ae","impliedFormat":99},{"version":"18c19db2d439d376b3b009ec585af0b8f7f88c20f268c20a3d91ef8ffb060ccd","impliedFormat":99},{"version":"b1f0f6979e4c7a23ca4b79274e28ee44c96449559ce1d30b103714306bd55f71","impliedFormat":99},{"version":"ed2f3765976327e31fc1df8f5baacbc178e6168a1330d80080e36442ea83deab","impliedFormat":99},{"version":"fdc51a118ab68c73780eb6ee7bd4c42260a193b613c0c6c5916aeef3aa60df81","impliedFormat":99},{"version":"aa0fe5ea3330aa939533788105b9cb89aa9ccfe9346dff2838c8454dbbb22e48","impliedFormat":99},{"version":"e6443a8f2cdfb639fb27d06b46f2779a9a4e2ed37862d1033b89d59b534ec946","impliedFormat":99},{"version":"994b1ef8dac1f4145c9ec1e76750019f071894d2006552b9ff4bb2f6552b6c9e","impliedFormat":99},{"version":"d6f69a976a1d7774f81a844275ccab7da0a8134bf26938e93df3b18b219dd514","impliedFormat":99},{"version":"6511c81fa9473915f20d0ced0d55b530d752d7b61daa92599d09b03d5f08b904","impliedFormat":99},{"version":"c7298861b1bb6ed6590358c39b39cd6c5223e77caba80d58b67f18e372edb71e","affectsGlobalScope":true,"impliedFormat":99},{"version":"169ea0353fd8d6b8ceea01c867ddcaf9ac3c6fc029585492518fe9b6af27a4e9","impliedFormat":99},{"version":"313c2032fc38557ae38a3f450f5d22baca411e8fad0ff7a8cfb8d60312672134","impliedFormat":99},{"version":"64ed5aa54688ed7bf2389b5ae64b418aef046afa405b7ccbd09e668b54f25a4e","impliedFormat":99},{"version":"7699de0b8fe5282d216259107959b6b899e0de25a69f31f474a767f5c8e8d42f","impliedFormat":99},{"version":"f5083f15e35d17da5d472a5858531940d8fa51d6107ef4fb03d6b8ecc67da547","impliedFormat":99},{"version":"f4048c9a1ab8ad01960e3424403adc0b988994e0b0f9357ff4146893276600a4","impliedFormat":99},{"version":"02d578cf62571de1d1e5768fee82da981748a61186ebc3a9024e85772b7d700e","impliedFormat":99},{"version":"f68ca3b5c6df435c5465b326a93bfb51bf245d59a1126265859725a553cf69d4","impliedFormat":99},{"version":"08bdf9e8a0226958def47a0fdcdda9985e62be643a771aaebd7b2dfecb7ef766","impliedFormat":99},{"version":"dab440222ac0e689aa1436f0f9e149bc80cca8f88fc23093cbaadb2d5e472262","impliedFormat":99},{"version":"5ddc9b07a1f21f4d498721165bafa339528e989af0741aa367ec60dc31de331c","impliedFormat":99},{"version":"69773f9a33f734a896046e80024f74551ffb2b66b668583bcc1d6d8ac4ea94e3","impliedFormat":99},{"version":"6bcf134636c0dec10fcaba1e461b41ea35ad1d4ce880c409aaaeeb6255789f18","impliedFormat":99},{"version":"ae11bfc8bca6601b802647f81546520469cf2e7f5e267bf71a5997a9be041741","impliedFormat":99},{"version":"6f4aa08e82445cf10c5b22cf0c5b62e91865d2cfe66159fce18b275931107008","impliedFormat":99},{"version":"6be853b81aab58f72e77d404aff81bc9bd602723bcec966a93fd23c259b8638e","impliedFormat":99},{"version":"10488b6129451b2729811d281ad7c0d1354fc2207e8916da7f8d289b9f287971","impliedFormat":99},{"version":"a7c9ae15af4332eb5ae448e7f1c2c5b33316503e97c8a25344ce55691c4aac52","impliedFormat":99},{"version":"767cfb1496df590e9132052dbf9d5a2ed4d7864823eafb4eafcc5f9569f3c152","impliedFormat":99},{"version":"b9f9f77327ef54fc055ab78fc6fc6c93b88410621fd9b2374bb956022018a62a","impliedFormat":99},{"version":"5498a276bff1969c1bee4375f0c41d9a00e26597ecf35d174d61d59e47f6c158","impliedFormat":99},{"version":"aa015d746ff96c12818a7ad742e45f40bc6f72f4b7df2af0f7200dacfe0ca65e","impliedFormat":99},{"version":"01a6da71fc05a9195f334ab1092b3f4952b0f2e2c460ea55d206ef629309062d","impliedFormat":99},{"version":"4f213c7e007630af73b6f3d3525191b3d4b9387dc903ea7b002d1c82d2989108","impliedFormat":99},{"version":"8d9b0d78ee11670d4caa429ce908ef681663d65e94dc1507b47d6eb44abf903d","impliedFormat":99},{"version":"f4bbfedc2a1b2cdba481f59ef5ac1c239b889cb2d64737260895417d300351c9","impliedFormat":99},{"version":"f4627f7b94088c75527e5fe21124b431782032a35022fcac6ecaa0ad52618d46","impliedFormat":99},{"version":"6a8ab860d18807ef3ebcbba3c436ae6432640a8e9fd3b3e965d3b923d7ab1043","impliedFormat":99},{"version":"792c99091f78c76438d644bfb960d343b08c90ecec02b5f2e9f7170b90c1c4dd","impliedFormat":99},{"version":"673ffa56b8d26d79fa7ba4b8ef51a17245fe4ad754c5541e634c44dec8d71fa9","impliedFormat":99},{"version":"af4ca4266eb49eb93950f1b40af2b159f5b457756c22ed90da470ad35035cef9","impliedFormat":99},{"version":"3466cc0ea5600192770f1b1ca9205b8fb8d801b2a86e96c0e509a9be5d3cbaab","impliedFormat":99},{"version":"4c0ca485b3e45bda2bcbf81dfa1675e7404832eb770935223d32c0582784b822","impliedFormat":99},{"version":"6691c27223e3f40b66607da59baf24a4d5988c352955a6646e7d4c91a4c1aaf9","impliedFormat":99},{"version":"e15d9bbfd0802af440138e918e6d8e6c39429ad92dd725f489272ca8b82938a0","impliedFormat":99},{"version":"fffc568c9f50f854ca7a9860876ec32ede80010c5d61bed87d96bc33d98fca32","signature":"8556e6fea21c3ed7670cc22f78c11e27889cf050c84a6a4fc8b64ac417b1dafa"},{"version":"e586f5f4ea552a4e46ddeb405b9f2872b46d25b0045e1a3d1570e9af6f56aec4","signature":"a7947eca644b1e17d40c895663c7b8981ca1f972c0d404acf7aa7ff2dc01fd85"},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"cebfeedf63623d54f7423d58cae1ec204c0d8d97a66d5fb17579e26a902085e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"3ac40516c33b87f751f7507346933081a26cdb8a3e11a6b3aa07d23f803c85db","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"829bc57ee8f287b490ab5bbc5a962fca57e432c1e38ec680ecd3ecaf12800613","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"3a3ff14da53d5013f3e6d8c4ad55225e3649c08786c4421ce639c00d8d589b7d","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"d243db6b25788f439e7e2f03c05688e92f46764351673bb0e7b2f3631232e186","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"9ac977503f15bf13ca7c82ad9a32a782f42d43e474824e8b3bffe228fd5f2639","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"7cb4f431a4591b0e23002bed805dc871a874dfed6b9a3994dce68a6df73e6739","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"0828724f6c17d63075bc7bfdd2f22875c4d00f90a6d8ef16d2e718a9e5f7e135","affectsGlobalScope":true,"impliedFormat":1},{"version":"177459cba484e2f1e08872a3d2fdbca3162d9d43ca5ec9dc0c946835b55f74be","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"637e244cbc5174cce5482388be2b4b51c49f7ce6dead7316448da61d7aa283b1","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"afa8be176b15487addede2f996c733e8d33a23497e6efe01c3945f768cf79184","impliedFormat":1},{"version":"6a0de93048a43c4f492e1fe43cc4ec52eed57d4e03a07c78b2d502e20dbdcfd8","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"66e5d81f637da29b03689fbc84cc61f18c6fdde769b134e0649259384df453e2","impliedFormat":1},{"version":"f2bb6c145c2112b33fa26e7464c9c69212fd3fc163ee389230c22db39408ad1e","impliedFormat":1},{"version":"b02c915a1b0d9777a17e3249674735eec3f2fd929f0d63da84157aac7f9a4345","impliedFormat":1},{"version":"62e8f884c3bc6dff6189b6e662ebe8b238a645938f2df7a97b8a82fca56773a4","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"57a0d1b3d59063d4af2d3f8aac27cfe3c20a0f5d1faf0f8598ccf0b779637939","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"93ecf87143cac7b9d05cffc1d6bdc075b7e4fdd48ff05f1fad85043f6ae678d3","impliedFormat":1},{"version":"6f200afcb82b3e9a54bed6db23f2edf2508cd266801257312c0f124b47f2bdb9","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"39338f84e8c4d0e3de7b3c4a7024fb3925f42100eed5cbe73be58902799dff4d","impliedFormat":1},{"version":"f1c92c0b24d678486042dfc038c7c1d6e8520fe384b82155720a42a893204588","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"8413d0641f293aed551c7464615b770d34a02dedede889b9591172287d68e773","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"8bb351077998efc2d986a6a7373cba6f098a91a3679cefce3ba2aab90493161c","impliedFormat":1},{"version":"734665cf52eb63e20252412ca891601b1405f7c6abef6425f1939cbb15ed239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f36b3fbe2be150a9ca140da48593f21e6a8172004f92ddc549b43efec39f3e54","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"b4769767f13a1692a66186e01c3aa186ff808d5ff72ed36eda8c37738fb2ac92","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"ae6adca0538007af480cf43e20b1e7631c5321406bc515bff980a0d31252f79f","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"e47f532d6e1617833f13a5b0710c0089d402c89c2f2b54f324e5a20e418d287a","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"5cbb49cb13edc05e52b239329932cfde34323c6bfe33020e381faa97d2300b22","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"62e02b8bbc05076243cf153d10c27b3d886c7c08558dfb797f280d837881b3cd","impliedFormat":1},{"version":"045a210189ec63c5488410b33f9fca53d77d051599d0d6506d8048551399c5f3","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"3ead5b9bea1c59a375acdd494ac503f6e16a2b47cffbc31da1824fc17d023205","impliedFormat":1},{"version":"c9a2daf6cd1eb854cd5b9e424247c5e306692055738c2effd35f7871d942b76e","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"bec726f1f7d2061cf17cfbb01b74283ada49933037695423f37fc91c1c2e2db6","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"19990350fca066265b2c190c9b6cde1229f35002ea2d4df8c9e397e9942f6c89","impliedFormat":99},{"version":"8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","impliedFormat":99},{"version":"66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","impliedFormat":99},{"version":"9863f888da357e35e013ca3465b794a490a198226bd8232c2f81fb44e16ff323","impliedFormat":99},{"version":"84bc2d80326a83ee4a6e7cba2fd480b86502660770c0e24da96535af597c9f1e","impliedFormat":99},{"version":"ea27768379b866ee3f5da2419650acdb01125479f7af73580a4bceb25b79e372","impliedFormat":99},{"version":"598931eeb4362542cae5845f95c5f0e45ac668925a40ce201e244d7fe808e965","impliedFormat":99},{"version":"da9ef88cde9f715756da642ad80c4cd87a987f465d325462d6bc2a0b11d202c8","impliedFormat":99},{"version":"b4c6184d78303b0816e779a48bef779b15aea4a66028eb819aac0abee8407dea","impliedFormat":99},{"version":"db085d2171d48938a99e851dafe0e486dce9859e5dfa73c21de5ed3d4d6fb0c5","impliedFormat":99},{"version":"62a3ad1ddd1f5974b3bf105680b3e09420f2230711d6520a521fab2be1a32838","impliedFormat":99},{"version":"a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","impliedFormat":99},{"version":"06cf55b6da5cef54eaaf51cdc3d4e5ebf16adfdd9ebd20cec7fe719be9ced017","impliedFormat":99},{"version":"91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","impliedFormat":99},{"version":"052ba354bab8fb943e0bc05a0769f7b81d7c3b3c6cd0f5cfa53c7b2da2a525c5","impliedFormat":99},{"version":"927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","impliedFormat":99},{"version":"fec804d54cd97dd77e956232fc37dc13f53e160d4bbeeb5489e86eeaa91f7ebd","impliedFormat":99},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175","impliedFormat":1},{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[65,70],129,130],"options":{"declaration":true,"esModuleInterop":true,"module":7,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictPropertyInitialization":false,"target":10},"referencedMap":[[133,1],[131,2],[119,3],[115,2],[117,4],[114,5],[112,2],[122,6],[118,7],[116,8],[120,9],[113,2],[121,2],[104,10],[84,11],[99,12],[97,13],[96,14],[88,15],[87,16],[86,17],[101,18],[102,19],[100,20],[93,21],[85,22],[83,23],[82,24],[78,17],[81,25],[80,26],[75,2],[103,27],[76,2],[91,28],[79,29],[94,30],[89,31],[92,31],[90,31],[95,32],[77,2],[98,29],[124,33],[125,34],[106,35],[123,36],[111,37],[110,2],[109,2],[127,2],[126,2],[128,38],[71,2],[108,39],[107,40],[105,2],[73,2],[74,41],[267,2],[270,42],[269,2],[72,2],[136,43],[132,1],[134,44],[135,1],[263,45],[264,2],[265,46],[266,47],[275,48],[294,49],[295,50],[201,51],[202,51],[203,52],[139,53],[204,54],[205,55],[206,56],[207,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,62],[214,63],[215,64],[216,65],[217,66],[140,2],[138,2],[218,67],[219,68],[220,69],[221,70],[222,71],[223,70],[224,72],[225,73],[226,74],[227,75],[228,75],[229,75],[230,76],[231,77],[232,78],[233,79],[234,80],[235,81],[236,81],[237,82],[238,2],[239,2],[240,83],[241,84],[242,85],[243,83],[244,86],[245,87],[246,88],[247,89],[248,90],[249,91],[250,92],[251,93],[137,2],[262,94],[252,95],[253,96],[254,97],[255,98],[256,99],[257,100],[258,101],[141,70],[142,2],[143,102],[144,103],[145,2],[146,104],[147,2],[192,105],[193,106],[194,107],[195,107],[196,108],[197,2],[198,54],[199,109],[200,106],[259,110],[260,111],[261,112],[296,2],[293,2],[297,2],[298,113],[268,2],[282,2],[283,114],[280,2],[281,2],[274,115],[272,116],[273,117],[278,118],[291,119],[276,2],[277,120],[292,121],[287,122],[288,123],[286,124],[290,125],[284,126],[279,127],[289,128],[285,119],[271,129],[63,2],[64,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[58,2],[57,2],[59,2],[60,2],[10,2],[61,2],[1,2],[62,2],[166,130],[180,131],[163,132],[181,10],[190,133],[154,134],[155,135],[153,136],[189,45],[184,137],[188,138],[157,139],[167,140],[177,141],[156,142],[187,143],[151,144],[152,137],[158,140],[159,2],[165,145],[162,140],[149,146],[191,147],[182,148],[170,149],[169,140],[171,150],[174,151],[168,152],[172,153],[185,45],[160,154],[161,155],[175,156],[150,10],[179,157],[178,140],[164,155],[173,158],[176,159],[183,2],[148,2],[186,160],[130,161],[69,2],[70,162],[68,163],[67,164],[66,2],[129,165],[65,2]],"version":"5.7.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helixdev/helix-sdk",
|
|
3
|
-
"version": "0.1.1-staging.
|
|
3
|
+
"version": "0.1.1-staging.11",
|
|
4
4
|
"description": "HELIX Instant SDK — identity (and later multiplayer/voice/wallet) for worlds running on HELIX Instant",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|