@gjsify/gamepad 0.4.0 → 0.4.3
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/package.json +50 -47
- package/src/axis-mapping.ts +0 -50
- package/src/button-mapping.ts +0 -87
- package/src/gamepad-button.ts +0 -22
- package/src/gamepad-event.ts +0 -29
- package/src/gamepad-manager.ts +0 -299
- package/src/gamepad.spec.ts +0 -191
- package/src/gamepad.ts +0 -66
- package/src/haptic-actuator.ts +0 -49
- package/src/index.ts +0 -18
- package/src/register.ts +0 -21
- package/src/test.mts +0 -5
- package/tsconfig.json +0 -33
- package/tsconfig.tsbuildinfo +0 -1
package/package.json
CHANGED
|
@@ -1,50 +1,53 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"name": "@gjsify/gamepad",
|
|
3
|
+
"version": "0.4.3",
|
|
4
|
+
"description": "Gamepad Web API for GJS using libmanette as backend",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "lib/esm/index.js",
|
|
7
|
+
"types": "lib/types/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./lib/types/index.d.ts",
|
|
11
|
+
"default": "./lib/esm/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./register": {
|
|
14
|
+
"types": "./lib/types/register.d.ts",
|
|
15
|
+
"default": "./lib/esm/register.js"
|
|
16
|
+
}
|
|
12
17
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
18
|
+
"files": [
|
|
19
|
+
"lib"
|
|
20
|
+
],
|
|
21
|
+
"sideEffects": [
|
|
22
|
+
"./lib/esm/register.js"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"clear": "rm -rf lib tsconfig.tsbuildinfo tsconfig.types.tsbuildinfo test.gjs.mjs || exit 0",
|
|
26
|
+
"check": "tsc --noEmit",
|
|
27
|
+
"build": "gjsify run build:gjsify && gjsify run build:types",
|
|
28
|
+
"build:gjsify": "gjsify build --library 'src/**/*.{ts,js}' --exclude 'src/**/*.spec.{mts,ts}' 'src/test.{mts,ts}'",
|
|
29
|
+
"build:types": "tsc",
|
|
30
|
+
"build:test": "gjsify run build:test:gjs",
|
|
31
|
+
"build:test:gjs": "gjsify build src/test.mts --app gjs --outfile test.gjs.mjs",
|
|
32
|
+
"test": "gjsify run build:gjsify && gjsify run build:test && gjsify run test:gjs",
|
|
33
|
+
"test:gjs": "gjsify run test.gjs.mjs"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"gjs",
|
|
37
|
+
"gamepad",
|
|
38
|
+
"libmanette",
|
|
39
|
+
"controller"
|
|
40
|
+
],
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@gjsify/dom-events": "workspace:^"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@girs/gjs": "4.0.0-rc.15",
|
|
46
|
+
"@girs/glib-2.0": "2.88.0-4.0.0-rc.15",
|
|
47
|
+
"@girs/manette-0.2": "0.2.13-4.0.0-rc.15",
|
|
48
|
+
"@gjsify/cli": "workspace:^",
|
|
49
|
+
"@gjsify/unit": "workspace:^",
|
|
50
|
+
"@types/node": "^25.6.2",
|
|
51
|
+
"typescript": "^6.0.3"
|
|
16
52
|
}
|
|
17
|
-
|
|
18
|
-
"sideEffects": [
|
|
19
|
-
"./lib/esm/register.js"
|
|
20
|
-
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"clear": "rm -rf lib tsconfig.tsbuildinfo tsconfig.types.tsbuildinfo test.gjs.mjs || exit 0",
|
|
23
|
-
"check": "tsc --noEmit",
|
|
24
|
-
"build": "yarn build:gjsify && yarn build:types",
|
|
25
|
-
"build:gjsify": "gjsify build --library 'src/**/*.{ts,js}' --exclude 'src/**/*.spec.{mts,ts}' 'src/test.{mts,ts}'",
|
|
26
|
-
"build:types": "tsc",
|
|
27
|
-
"build:test": "yarn build:test:gjs",
|
|
28
|
-
"build:test:gjs": "gjsify build src/test.mts --app gjs --outfile test.gjs.mjs",
|
|
29
|
-
"test": "yarn build:gjsify && yarn build:test && yarn test:gjs",
|
|
30
|
-
"test:gjs": "gjsify run test.gjs.mjs"
|
|
31
|
-
},
|
|
32
|
-
"keywords": [
|
|
33
|
-
"gjs",
|
|
34
|
-
"gamepad",
|
|
35
|
-
"libmanette",
|
|
36
|
-
"controller"
|
|
37
|
-
],
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"@gjsify/dom-events": "^0.4.0"
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@girs/gjs": "4.0.0-rc.15",
|
|
43
|
-
"@girs/glib-2.0": "2.88.0-4.0.0-rc.15",
|
|
44
|
-
"@girs/manette-0.2": "0.2.13-4.0.0-rc.15",
|
|
45
|
-
"@gjsify/cli": "^0.4.0",
|
|
46
|
-
"@gjsify/unit": "^0.4.0",
|
|
47
|
-
"@types/node": "^25.6.2",
|
|
48
|
-
"typescript": "^6.0.3"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
53
|
+
}
|
package/src/axis-mapping.ts
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — axis mapping from libmanette to W3C standard gamepad layout
|
|
2
|
-
// Reference: https://w3c.github.io/gamepad/#remapping
|
|
3
|
-
//
|
|
4
|
-
// NOTE: Unlike buttons (which use Linux BTN_* hardware codes), libmanette 0.2
|
|
5
|
-
// axis events use SDL logical indices: 0=leftx, 1=lefty, 2=rightx, 3=righty,
|
|
6
|
-
// 4=lefttrigger, 5=righttrigger. The hardware ABS_* code is available via
|
|
7
|
-
// event.get_hardware_code() but the main axis index from get_absolute() is
|
|
8
|
-
// the SDL-mapped logical index.
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* SDL logical axis indices as reported by Manette.Event.get_absolute().
|
|
12
|
-
* These are the SDL gamepad mapping indices, NOT Linux ABS_* hardware codes.
|
|
13
|
-
*/
|
|
14
|
-
export const ManetteAxis = {
|
|
15
|
-
LEFT_X: 0, // SDL leftx
|
|
16
|
-
LEFT_Y: 1, // SDL lefty
|
|
17
|
-
RIGHT_X: 2, // SDL rightx
|
|
18
|
-
RIGHT_Y: 3, // SDL righty
|
|
19
|
-
LEFT_TRIGGER: 4, // SDL lefttrigger
|
|
20
|
-
RIGHT_TRIGGER: 5, // SDL righttrigger
|
|
21
|
-
} as const;
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* W3C standard gamepad axis indices.
|
|
25
|
-
* https://w3c.github.io/gamepad/#remapping
|
|
26
|
-
*/
|
|
27
|
-
export const W3CAxis = {
|
|
28
|
-
LEFT_STICK_X: 0,
|
|
29
|
-
LEFT_STICK_Y: 1,
|
|
30
|
-
RIGHT_STICK_X: 2,
|
|
31
|
-
RIGHT_STICK_Y: 3,
|
|
32
|
-
} as const;
|
|
33
|
-
|
|
34
|
-
/** Total number of axes in the W3C standard mapping. */
|
|
35
|
-
export const W3C_AXIS_COUNT = 4;
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* Maps SDL logical axis → W3C axis index.
|
|
39
|
-
* Stick axes (0–3) map 1:1. Trigger axes (4–5) are NOT in this map —
|
|
40
|
-
* they are handled separately in gamepad-manager as buttons[6]/buttons[7].
|
|
41
|
-
*/
|
|
42
|
-
export const MANETTE_TO_W3C_AXIS: ReadonlyMap<number, number> = new Map([
|
|
43
|
-
[ManetteAxis.LEFT_X, W3CAxis.LEFT_STICK_X],
|
|
44
|
-
[ManetteAxis.LEFT_Y, W3CAxis.LEFT_STICK_Y],
|
|
45
|
-
[ManetteAxis.RIGHT_X, W3CAxis.RIGHT_STICK_X],
|
|
46
|
-
[ManetteAxis.RIGHT_Y, W3CAxis.RIGHT_STICK_Y],
|
|
47
|
-
]);
|
|
48
|
-
|
|
49
|
-
/** Threshold above which an analog trigger is considered "pressed". */
|
|
50
|
-
export const TRIGGER_PRESS_THRESHOLD = 0.5;
|
package/src/button-mapping.ts
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — button mapping from libmanette to W3C standard gamepad layout
|
|
2
|
-
// Reference: https://w3c.github.io/gamepad/#remapping
|
|
3
|
-
//
|
|
4
|
-
// IMPORTANT: libmanette 0.2 delivers Linux input event codes (BTN_*) in
|
|
5
|
-
// Event.get_button(), NOT the Manette.Button enum values from the docs.
|
|
6
|
-
// The enum (SOUTH=5, EAST=7, …) describes the semantic meaning, but the
|
|
7
|
-
// actual values transmitted over signals are the kernel BTN_* constants.
|
|
8
|
-
// Reference: linux/input-event-codes.h
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Linux BTN_* input event codes as reported by Manette.Event.get_button().
|
|
12
|
-
* These are the actual values libmanette 0.2 passes in button-press/release signals.
|
|
13
|
-
*/
|
|
14
|
-
export const LinuxButton = {
|
|
15
|
-
BTN_SOUTH: 304, // 0x130 — A (Xbox), B (Nintendo), Cross (PlayStation)
|
|
16
|
-
BTN_EAST: 305, // 0x131 — B (Xbox), A (Nintendo), Circle (PlayStation)
|
|
17
|
-
BTN_C: 306, // 0x132
|
|
18
|
-
BTN_NORTH: 307, // 0x133 — Y (Xbox), X (Nintendo), Triangle (PlayStation)
|
|
19
|
-
BTN_WEST: 308, // 0x134 — X (Xbox), Y (Nintendo), Square (PlayStation)
|
|
20
|
-
BTN_Z: 309, // 0x135
|
|
21
|
-
BTN_TL: 310, // 0x136 — Left shoulder (L, LB)
|
|
22
|
-
BTN_TR: 311, // 0x137 — Right shoulder (R, RB)
|
|
23
|
-
BTN_TL2: 312, // 0x138 — Left trigger (LT, L2)
|
|
24
|
-
BTN_TR2: 313, // 0x139 — Right trigger (RT, R2)
|
|
25
|
-
BTN_SELECT: 314, // 0x13a — Select / Back / Share
|
|
26
|
-
BTN_START: 315, // 0x13b — Start / Menu / Options
|
|
27
|
-
BTN_MODE: 316, // 0x13c — Home / Guide / PS
|
|
28
|
-
BTN_THUMBL: 317, // 0x13d — Left stick click (L3)
|
|
29
|
-
BTN_THUMBR: 318, // 0x13e — Right stick click (R3)
|
|
30
|
-
BTN_DPAD_UP: 544, // 0x220
|
|
31
|
-
BTN_DPAD_DOWN: 545, // 0x221
|
|
32
|
-
BTN_DPAD_LEFT: 546, // 0x222
|
|
33
|
-
BTN_DPAD_RIGHT:547, // 0x223
|
|
34
|
-
} as const;
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* W3C standard gamepad button indices.
|
|
38
|
-
* https://w3c.github.io/gamepad/#remapping
|
|
39
|
-
*/
|
|
40
|
-
export const W3CButton = {
|
|
41
|
-
FACE_1: 0, // A (Xbox), B (Nintendo), Cross (PlayStation)
|
|
42
|
-
FACE_2: 1, // B (Xbox), A (Nintendo), Circle (PlayStation)
|
|
43
|
-
FACE_3: 2, // X (Xbox), Y (Nintendo), Square (PlayStation)
|
|
44
|
-
FACE_4: 3, // Y (Xbox), X (Nintendo), Triangle (PlayStation)
|
|
45
|
-
LEFT_BUMPER: 4,
|
|
46
|
-
RIGHT_BUMPER: 5,
|
|
47
|
-
LEFT_TRIGGER: 6, // Analog trigger — also populated from axis events
|
|
48
|
-
RIGHT_TRIGGER: 7, // Analog trigger — also populated from axis events
|
|
49
|
-
SELECT: 8,
|
|
50
|
-
START: 9,
|
|
51
|
-
LEFT_STICK: 10,
|
|
52
|
-
RIGHT_STICK: 11,
|
|
53
|
-
DPAD_UP: 12,
|
|
54
|
-
DPAD_DOWN: 13,
|
|
55
|
-
DPAD_LEFT: 14,
|
|
56
|
-
DPAD_RIGHT: 15,
|
|
57
|
-
HOME: 16,
|
|
58
|
-
} as const;
|
|
59
|
-
|
|
60
|
-
/** Total number of buttons in the W3C standard mapping. */
|
|
61
|
-
export const W3C_BUTTON_COUNT = 17;
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Maps Linux BTN_* code → W3C standard button index.
|
|
65
|
-
*/
|
|
66
|
-
export const MANETTE_TO_W3C_BUTTON: ReadonlyMap<number, number> = new Map([
|
|
67
|
-
[LinuxButton.BTN_SOUTH, W3CButton.FACE_1],
|
|
68
|
-
[LinuxButton.BTN_EAST, W3CButton.FACE_2],
|
|
69
|
-
[LinuxButton.BTN_WEST, W3CButton.FACE_3],
|
|
70
|
-
[LinuxButton.BTN_NORTH, W3CButton.FACE_4],
|
|
71
|
-
[LinuxButton.BTN_TL, W3CButton.LEFT_BUMPER],
|
|
72
|
-
[LinuxButton.BTN_TR, W3CButton.RIGHT_BUMPER],
|
|
73
|
-
[LinuxButton.BTN_TL2, W3CButton.LEFT_TRIGGER],
|
|
74
|
-
[LinuxButton.BTN_TR2, W3CButton.RIGHT_TRIGGER],
|
|
75
|
-
[LinuxButton.BTN_SELECT, W3CButton.SELECT],
|
|
76
|
-
[LinuxButton.BTN_START, W3CButton.START],
|
|
77
|
-
[LinuxButton.BTN_THUMBL, W3CButton.LEFT_STICK],
|
|
78
|
-
[LinuxButton.BTN_THUMBR, W3CButton.RIGHT_STICK],
|
|
79
|
-
[LinuxButton.BTN_DPAD_UP, W3CButton.DPAD_UP],
|
|
80
|
-
[LinuxButton.BTN_DPAD_DOWN, W3CButton.DPAD_DOWN],
|
|
81
|
-
[LinuxButton.BTN_DPAD_LEFT, W3CButton.DPAD_LEFT],
|
|
82
|
-
[LinuxButton.BTN_DPAD_RIGHT, W3CButton.DPAD_RIGHT],
|
|
83
|
-
[LinuxButton.BTN_MODE, W3CButton.HOME],
|
|
84
|
-
]);
|
|
85
|
-
|
|
86
|
-
// Keep the old name exported for backward compat in tests/examples
|
|
87
|
-
export { LinuxButton as ManetteButton };
|
package/src/gamepad-button.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — GamepadButton
|
|
2
|
-
// Reference: https://w3c.github.io/gamepad/#dom-gamepadbutton
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Represents the state of a single button on a gamepad.
|
|
6
|
-
* https://w3c.github.io/gamepad/#dom-gamepadbutton
|
|
7
|
-
*/
|
|
8
|
-
export class GamepadButton {
|
|
9
|
-
pressed: boolean;
|
|
10
|
-
touched: boolean;
|
|
11
|
-
value: number;
|
|
12
|
-
|
|
13
|
-
constructor(pressed = false, touched = false, value = 0) {
|
|
14
|
-
this.pressed = pressed;
|
|
15
|
-
this.touched = touched;
|
|
16
|
-
this.value = value;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
get [Symbol.toStringTag]() {
|
|
20
|
-
return 'GamepadButton';
|
|
21
|
-
}
|
|
22
|
-
}
|
package/src/gamepad-event.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — GamepadEvent
|
|
2
|
-
// Reference: https://w3c.github.io/gamepad/#dom-gamepadevent
|
|
3
|
-
|
|
4
|
-
import { Event } from '@gjsify/dom-events';
|
|
5
|
-
import type { Gamepad } from './gamepad.js';
|
|
6
|
-
|
|
7
|
-
export interface GamepadEventInit {
|
|
8
|
-
gamepad: Gamepad;
|
|
9
|
-
bubbles?: boolean;
|
|
10
|
-
cancelable?: boolean;
|
|
11
|
-
composed?: boolean;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Fired on the Window when a gamepad is connected or disconnected.
|
|
16
|
-
* https://w3c.github.io/gamepad/#dom-gamepadevent
|
|
17
|
-
*/
|
|
18
|
-
export class GamepadEvent extends Event {
|
|
19
|
-
readonly gamepad: Gamepad;
|
|
20
|
-
|
|
21
|
-
constructor(type: string, eventInitDict: GamepadEventInit) {
|
|
22
|
-
super(type, eventInitDict);
|
|
23
|
-
this.gamepad = eventInitDict.gamepad;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
get [Symbol.toStringTag]() {
|
|
27
|
-
return 'GamepadEvent';
|
|
28
|
-
}
|
|
29
|
-
}
|
package/src/gamepad-manager.ts
DELETED
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — GamepadManager
|
|
2
|
-
// Bridges libmanette's event-driven model to the W3C polling-based Gamepad API.
|
|
3
|
-
// Reference: https://w3c.github.io/gamepad/
|
|
4
|
-
// Reimplemented for GJS using libmanette (gi://Manette)
|
|
5
|
-
|
|
6
|
-
import type Manette from '@girs/manette-0.2';
|
|
7
|
-
import { GamepadButton } from './gamepad-button.js';
|
|
8
|
-
import { Gamepad } from './gamepad.js';
|
|
9
|
-
import { GamepadEvent } from './gamepad-event.js';
|
|
10
|
-
import { ManetteHapticActuator } from './haptic-actuator.js';
|
|
11
|
-
import { MANETTE_TO_W3C_BUTTON, W3C_BUTTON_COUNT } from './button-mapping.js';
|
|
12
|
-
import { MANETTE_TO_W3C_AXIS, ManetteAxis, W3C_AXIS_COUNT, TRIGGER_PRESS_THRESHOLD } from './axis-mapping.js';
|
|
13
|
-
import { W3CButton } from './button-mapping.js';
|
|
14
|
-
|
|
15
|
-
/** Internal mutable state for a single connected gamepad. */
|
|
16
|
-
interface DeviceState {
|
|
17
|
-
device: Manette.Device;
|
|
18
|
-
index: number;
|
|
19
|
-
connected: boolean;
|
|
20
|
-
timestamp: number;
|
|
21
|
-
buttons: Float64Array;
|
|
22
|
-
buttonsPressed: boolean[];
|
|
23
|
-
axes: Float64Array;
|
|
24
|
-
hapticActuator: ManetteHapticActuator;
|
|
25
|
-
signalIds: number[];
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
const MAX_GAMEPADS = 4;
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Singleton manager that wraps Manette.Monitor and maintains gamepad state.
|
|
32
|
-
*
|
|
33
|
-
* libmanette fires GObject signals on button/axis changes. This manager
|
|
34
|
-
* caches the latest state so that `getGamepads()` can return a snapshot
|
|
35
|
-
* matching the W3C Gamepad API's polling model.
|
|
36
|
-
*/
|
|
37
|
-
export class GamepadManager {
|
|
38
|
-
private _monitor: Manette.Monitor | null = null;
|
|
39
|
-
private _slots: (DeviceState | null)[] = new Array(MAX_GAMEPADS).fill(null);
|
|
40
|
-
private _monitorSignalIds: number[] = [];
|
|
41
|
-
private _ManetteModule: typeof Manette | null = null;
|
|
42
|
-
private _initPromise: Promise<void> | null = null;
|
|
43
|
-
private _initialized = false;
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* Lazily initialize the Manette.Monitor.
|
|
47
|
-
* Called on first `getGamepads()` invocation.
|
|
48
|
-
*/
|
|
49
|
-
private _ensureInit(): void {
|
|
50
|
-
if (this._initialized) return;
|
|
51
|
-
if (this._initPromise) return;
|
|
52
|
-
|
|
53
|
-
this._initPromise = this._init();
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
private async _init(): Promise<void> {
|
|
57
|
-
try {
|
|
58
|
-
const mod = await import('gi://Manette');
|
|
59
|
-
this._ManetteModule = mod.default;
|
|
60
|
-
} catch {
|
|
61
|
-
// libmanette not available — getGamepads() will return empty array
|
|
62
|
-
this._initialized = true;
|
|
63
|
-
return;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
const monitor = new this._ManetteModule.Monitor();
|
|
67
|
-
this._monitor = monitor;
|
|
68
|
-
|
|
69
|
-
// Enumerate already-connected devices
|
|
70
|
-
const iter = monitor.iterate();
|
|
71
|
-
let result = iter.next();
|
|
72
|
-
while (result[0]) {
|
|
73
|
-
const device = result[1];
|
|
74
|
-
if (device) {
|
|
75
|
-
this._onDeviceConnected(device);
|
|
76
|
-
}
|
|
77
|
-
result = iter.next();
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
// Listen for future connect/disconnect
|
|
81
|
-
this._monitorSignalIds.push(
|
|
82
|
-
monitor.connect('device-connected', (_monitor: Manette.Monitor, device: Manette.Device) => {
|
|
83
|
-
this._onDeviceConnected(device);
|
|
84
|
-
}),
|
|
85
|
-
monitor.connect('device-disconnected', (_monitor: Manette.Monitor, device: Manette.Device) => {
|
|
86
|
-
this._onDeviceDisconnected(device);
|
|
87
|
-
}),
|
|
88
|
-
);
|
|
89
|
-
|
|
90
|
-
this._initialized = true;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
private _onDeviceConnected(device: Manette.Device): void {
|
|
94
|
-
// Find a free slot
|
|
95
|
-
let slotIndex = -1;
|
|
96
|
-
for (let i = 0; i < MAX_GAMEPADS; i++) {
|
|
97
|
-
if (this._slots[i] === null) {
|
|
98
|
-
slotIndex = i;
|
|
99
|
-
break;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
if (slotIndex === -1) return; // All slots occupied
|
|
103
|
-
|
|
104
|
-
const state: DeviceState = {
|
|
105
|
-
device,
|
|
106
|
-
index: slotIndex,
|
|
107
|
-
connected: true,
|
|
108
|
-
timestamp: performance.now(),
|
|
109
|
-
buttons: new Float64Array(W3C_BUTTON_COUNT),
|
|
110
|
-
buttonsPressed: new Array(W3C_BUTTON_COUNT).fill(false),
|
|
111
|
-
axes: new Float64Array(W3C_AXIS_COUNT),
|
|
112
|
-
hapticActuator: new ManetteHapticActuator(device),
|
|
113
|
-
signalIds: [],
|
|
114
|
-
};
|
|
115
|
-
|
|
116
|
-
// Wire up device signals
|
|
117
|
-
state.signalIds.push(
|
|
118
|
-
device.connect('button-press-event', (_device: Manette.Device, event: Manette.Event) => {
|
|
119
|
-
this._onButtonPress(state, event);
|
|
120
|
-
}),
|
|
121
|
-
device.connect('button-release-event', (_device: Manette.Device, event: Manette.Event) => {
|
|
122
|
-
this._onButtonRelease(state, event);
|
|
123
|
-
}),
|
|
124
|
-
device.connect('absolute-axis-event', (_device: Manette.Device, event: Manette.Event) => {
|
|
125
|
-
this._onAxisChange(state, event);
|
|
126
|
-
}),
|
|
127
|
-
device.connect('hat-axis-event', (_device: Manette.Device, event: Manette.Event) => {
|
|
128
|
-
this._onHatChange(state, event);
|
|
129
|
-
}),
|
|
130
|
-
device.connect('disconnected', () => {
|
|
131
|
-
this._onDeviceDisconnected(device);
|
|
132
|
-
}),
|
|
133
|
-
);
|
|
134
|
-
|
|
135
|
-
this._slots[slotIndex] = state;
|
|
136
|
-
|
|
137
|
-
// Dispatch gamepadconnected event
|
|
138
|
-
const snapshot = this._createSnapshot(state);
|
|
139
|
-
if (snapshot) {
|
|
140
|
-
globalThis.dispatchEvent?.(new GamepadEvent('gamepadconnected', { gamepad: snapshot }) as unknown as Event);
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
private _onDeviceDisconnected(device: Manette.Device): void {
|
|
145
|
-
const state = this._findStateByDevice(device);
|
|
146
|
-
if (!state) return;
|
|
147
|
-
|
|
148
|
-
// Disconnect all device signals
|
|
149
|
-
for (const id of state.signalIds) {
|
|
150
|
-
device.disconnect(id);
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
state.connected = false;
|
|
154
|
-
const snapshot = this._createSnapshot(state);
|
|
155
|
-
this._slots[state.index] = null;
|
|
156
|
-
|
|
157
|
-
// Dispatch gamepaddisconnected event
|
|
158
|
-
if (snapshot) {
|
|
159
|
-
globalThis.dispatchEvent?.(new GamepadEvent('gamepaddisconnected', { gamepad: snapshot }) as unknown as Event);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
private _onButtonPress(state: DeviceState, event: Manette.Event): void {
|
|
164
|
-
const [ok, button] = event.get_button();
|
|
165
|
-
if (!ok) return;
|
|
166
|
-
|
|
167
|
-
const w3cIdx = MANETTE_TO_W3C_BUTTON.get(button);
|
|
168
|
-
if (w3cIdx === undefined) return;
|
|
169
|
-
|
|
170
|
-
state.buttons[w3cIdx] = 1.0;
|
|
171
|
-
state.buttonsPressed[w3cIdx] = true;
|
|
172
|
-
state.timestamp = performance.now();
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
private _onButtonRelease(state: DeviceState, event: Manette.Event): void {
|
|
176
|
-
const [ok, button] = event.get_button();
|
|
177
|
-
if (!ok) return;
|
|
178
|
-
|
|
179
|
-
const w3cIdx = MANETTE_TO_W3C_BUTTON.get(button);
|
|
180
|
-
if (w3cIdx === undefined) return;
|
|
181
|
-
|
|
182
|
-
state.buttons[w3cIdx] = 0.0;
|
|
183
|
-
state.buttonsPressed[w3cIdx] = false;
|
|
184
|
-
state.timestamp = performance.now();
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
private _onAxisChange(state: DeviceState, event: Manette.Event): void {
|
|
188
|
-
const [ok, axis, value] = event.get_absolute();
|
|
189
|
-
if (!ok) return;
|
|
190
|
-
|
|
191
|
-
const w3cAxisIdx = MANETTE_TO_W3C_AXIS.get(axis);
|
|
192
|
-
if (w3cAxisIdx !== undefined) {
|
|
193
|
-
// Stick axis → axes array
|
|
194
|
-
state.axes[w3cAxisIdx] = value;
|
|
195
|
-
} else if (axis === ManetteAxis.LEFT_TRIGGER) {
|
|
196
|
-
// Left trigger (SDL idx 4) → buttons[6] with analog value
|
|
197
|
-
const normalized = (value + 1) / 2; // libmanette: -1..1 → 0..1
|
|
198
|
-
state.buttons[W3CButton.LEFT_TRIGGER] = normalized;
|
|
199
|
-
state.buttonsPressed[W3CButton.LEFT_TRIGGER] = normalized > TRIGGER_PRESS_THRESHOLD;
|
|
200
|
-
} else if (axis === ManetteAxis.RIGHT_TRIGGER) {
|
|
201
|
-
// Right trigger (SDL idx 5) → buttons[7] with analog value
|
|
202
|
-
const normalized = (value + 1) / 2;
|
|
203
|
-
state.buttons[W3CButton.RIGHT_TRIGGER] = normalized;
|
|
204
|
-
state.buttonsPressed[W3CButton.RIGHT_TRIGGER] = normalized > TRIGGER_PRESS_THRESHOLD;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
state.timestamp = performance.now();
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
private _onHatChange(state: DeviceState, event: Manette.Event): void {
|
|
211
|
-
const [ok, hatAxis, hatValue] = event.get_hat();
|
|
212
|
-
if (!ok) return;
|
|
213
|
-
|
|
214
|
-
// Hat axes: 0 = horizontal (left/right), 1 = vertical (up/down)
|
|
215
|
-
// Values: -1, 0, 1
|
|
216
|
-
if (hatAxis === 0) {
|
|
217
|
-
// Horizontal: negative = left, positive = right
|
|
218
|
-
state.buttonsPressed[W3CButton.DPAD_LEFT] = hatValue < 0;
|
|
219
|
-
state.buttons[W3CButton.DPAD_LEFT] = hatValue < 0 ? 1.0 : 0.0;
|
|
220
|
-
state.buttonsPressed[W3CButton.DPAD_RIGHT] = hatValue > 0;
|
|
221
|
-
state.buttons[W3CButton.DPAD_RIGHT] = hatValue > 0 ? 1.0 : 0.0;
|
|
222
|
-
} else if (hatAxis === 1) {
|
|
223
|
-
// Vertical: negative = up, positive = down
|
|
224
|
-
state.buttonsPressed[W3CButton.DPAD_UP] = hatValue < 0;
|
|
225
|
-
state.buttons[W3CButton.DPAD_UP] = hatValue < 0 ? 1.0 : 0.0;
|
|
226
|
-
state.buttonsPressed[W3CButton.DPAD_DOWN] = hatValue > 0;
|
|
227
|
-
state.buttons[W3CButton.DPAD_DOWN] = hatValue > 0 ? 1.0 : 0.0;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
state.timestamp = performance.now();
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
private _findStateByDevice(device: Manette.Device): DeviceState | null {
|
|
234
|
-
for (const state of this._slots) {
|
|
235
|
-
if (state && state.device === device) return state;
|
|
236
|
-
}
|
|
237
|
-
return null;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
private _createSnapshot(state: DeviceState): Gamepad {
|
|
241
|
-
const buttons: GamepadButton[] = [];
|
|
242
|
-
for (let i = 0; i < W3C_BUTTON_COUNT; i++) {
|
|
243
|
-
buttons.push(new GamepadButton(
|
|
244
|
-
state.buttonsPressed[i],
|
|
245
|
-
state.buttonsPressed[i] || state.buttons[i] > 0,
|
|
246
|
-
state.buttons[i],
|
|
247
|
-
));
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
return new Gamepad({
|
|
251
|
-
id: state.device.get_name() ?? `Gamepad (${state.device.get_guid()})`,
|
|
252
|
-
index: state.index,
|
|
253
|
-
connected: state.connected,
|
|
254
|
-
timestamp: state.timestamp,
|
|
255
|
-
mapping: 'standard',
|
|
256
|
-
axes: Array.from(state.axes),
|
|
257
|
-
buttons,
|
|
258
|
-
vibrationActuator: state.hapticActuator,
|
|
259
|
-
});
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
/**
|
|
263
|
-
* Returns a snapshot array matching the W3C `navigator.getGamepads()` contract.
|
|
264
|
-
* Each non-null entry is a frozen Gamepad object with current state.
|
|
265
|
-
*/
|
|
266
|
-
getGamepads(): (Gamepad | null)[] {
|
|
267
|
-
this._ensureInit();
|
|
268
|
-
|
|
269
|
-
const result: (Gamepad | null)[] = [];
|
|
270
|
-
for (let i = 0; i < MAX_GAMEPADS; i++) {
|
|
271
|
-
const state = this._slots[i];
|
|
272
|
-
result.push(state ? this._createSnapshot(state) : null);
|
|
273
|
-
}
|
|
274
|
-
return result;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
/** Cleanup — disconnect all signal handlers. */
|
|
278
|
-
dispose(): void {
|
|
279
|
-
for (const state of this._slots) {
|
|
280
|
-
if (state) {
|
|
281
|
-
for (const id of state.signalIds) {
|
|
282
|
-
state.device.disconnect(id);
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
this._slots.fill(null);
|
|
287
|
-
|
|
288
|
-
if (this._monitor) {
|
|
289
|
-
for (const id of this._monitorSignalIds) {
|
|
290
|
-
this._monitor.disconnect(id);
|
|
291
|
-
}
|
|
292
|
-
this._monitorSignalIds = [];
|
|
293
|
-
this._monitor = null;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
this._initialized = false;
|
|
297
|
-
this._initPromise = null;
|
|
298
|
-
}
|
|
299
|
-
}
|
package/src/gamepad.spec.ts
DELETED
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — tests
|
|
2
|
-
// Ported tests verify class construction, mapping tables, and event dispatch.
|
|
3
|
-
|
|
4
|
-
import { describe, it, expect } from '@gjsify/unit';
|
|
5
|
-
import { GamepadButton } from './gamepad-button.js';
|
|
6
|
-
import { Gamepad } from './gamepad.js';
|
|
7
|
-
import { GamepadEvent } from './gamepad-event.js';
|
|
8
|
-
import { MANETTE_TO_W3C_BUTTON, W3CButton, ManetteButton, W3C_BUTTON_COUNT } from './button-mapping.js';
|
|
9
|
-
import { MANETTE_TO_W3C_AXIS, W3CAxis, ManetteAxis, W3C_AXIS_COUNT } from './axis-mapping.js';
|
|
10
|
-
import { GamepadManager } from './gamepad-manager.js';
|
|
11
|
-
|
|
12
|
-
export default async () => {
|
|
13
|
-
await describe('GamepadButton', async () => {
|
|
14
|
-
await it('should construct with default values', async () => {
|
|
15
|
-
const btn = new GamepadButton();
|
|
16
|
-
expect(btn.pressed).toBe(false);
|
|
17
|
-
expect(btn.touched).toBe(false);
|
|
18
|
-
expect(btn.value).toBe(0);
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
await it('should construct with specified values', async () => {
|
|
22
|
-
const btn = new GamepadButton(true, true, 0.75);
|
|
23
|
-
expect(btn.pressed).toBe(true);
|
|
24
|
-
expect(btn.touched).toBe(true);
|
|
25
|
-
expect(btn.value).toBe(0.75);
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
await it('should have correct Symbol.toStringTag', async () => {
|
|
29
|
-
const btn = new GamepadButton();
|
|
30
|
-
expect(Object.prototype.toString.call(btn)).toBe('[object GamepadButton]');
|
|
31
|
-
});
|
|
32
|
-
});
|
|
33
|
-
|
|
34
|
-
await describe('Gamepad', async () => {
|
|
35
|
-
await it('should construct with all properties', async () => {
|
|
36
|
-
const buttons = Array.from({ length: W3C_BUTTON_COUNT }, () => new GamepadButton());
|
|
37
|
-
const axes = [0, 0, 0, 0];
|
|
38
|
-
const gp = new Gamepad({
|
|
39
|
-
id: 'Test Controller',
|
|
40
|
-
index: 0,
|
|
41
|
-
connected: true,
|
|
42
|
-
timestamp: 123.456,
|
|
43
|
-
mapping: 'standard',
|
|
44
|
-
axes,
|
|
45
|
-
buttons,
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
expect(gp.id).toBe('Test Controller');
|
|
49
|
-
expect(gp.index).toBe(0);
|
|
50
|
-
expect(gp.connected).toBe(true);
|
|
51
|
-
expect(gp.timestamp).toBe(123.456);
|
|
52
|
-
expect(gp.mapping).toBe('standard');
|
|
53
|
-
expect(gp.axes.length).toBe(4);
|
|
54
|
-
expect(gp.buttons.length).toBe(W3C_BUTTON_COUNT);
|
|
55
|
-
expect(gp.vibrationActuator).toBeNull();
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
await it('should freeze axes and buttons arrays', async () => {
|
|
59
|
-
const buttons = Array.from({ length: W3C_BUTTON_COUNT }, () => new GamepadButton());
|
|
60
|
-
const gp = new Gamepad({
|
|
61
|
-
id: 'Test',
|
|
62
|
-
index: 0,
|
|
63
|
-
connected: true,
|
|
64
|
-
timestamp: 0,
|
|
65
|
-
mapping: 'standard',
|
|
66
|
-
axes: [0, 0, 0, 0],
|
|
67
|
-
buttons,
|
|
68
|
-
});
|
|
69
|
-
|
|
70
|
-
expect(Object.isFrozen(gp.axes)).toBe(true);
|
|
71
|
-
expect(Object.isFrozen(gp.buttons)).toBe(true);
|
|
72
|
-
});
|
|
73
|
-
});
|
|
74
|
-
|
|
75
|
-
await describe('GamepadEvent', async () => {
|
|
76
|
-
await it('should construct with gamepad', async () => {
|
|
77
|
-
const buttons = Array.from({ length: W3C_BUTTON_COUNT }, () => new GamepadButton());
|
|
78
|
-
const gp = new Gamepad({
|
|
79
|
-
id: 'Test',
|
|
80
|
-
index: 0,
|
|
81
|
-
connected: true,
|
|
82
|
-
timestamp: 0,
|
|
83
|
-
mapping: 'standard',
|
|
84
|
-
axes: [0, 0, 0, 0],
|
|
85
|
-
buttons,
|
|
86
|
-
});
|
|
87
|
-
|
|
88
|
-
const event = new GamepadEvent('gamepadconnected', { gamepad: gp });
|
|
89
|
-
expect(event.type).toBe('gamepadconnected');
|
|
90
|
-
expect(event.gamepad).toBe(gp);
|
|
91
|
-
});
|
|
92
|
-
|
|
93
|
-
await it('should have correct Symbol.toStringTag', async () => {
|
|
94
|
-
const buttons = Array.from({ length: W3C_BUTTON_COUNT }, () => new GamepadButton());
|
|
95
|
-
const gp = new Gamepad({
|
|
96
|
-
id: 'Test',
|
|
97
|
-
index: 0,
|
|
98
|
-
connected: true,
|
|
99
|
-
timestamp: 0,
|
|
100
|
-
mapping: 'standard',
|
|
101
|
-
axes: [0, 0, 0, 0],
|
|
102
|
-
buttons,
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
const event = new GamepadEvent('gamepadconnected', { gamepad: gp });
|
|
106
|
-
expect(Object.prototype.toString.call(event)).toBe('[object GamepadEvent]');
|
|
107
|
-
});
|
|
108
|
-
});
|
|
109
|
-
|
|
110
|
-
await describe('Button Mapping', async () => {
|
|
111
|
-
await it('should map 17 buttons (including triggers)', async () => {
|
|
112
|
-
expect(MANETTE_TO_W3C_BUTTON.size).toBe(17);
|
|
113
|
-
});
|
|
114
|
-
|
|
115
|
-
await it('should map face buttons (Linux BTN_* codes)', async () => {
|
|
116
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_SOUTH)).toBe(W3CButton.FACE_1);
|
|
117
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_EAST)).toBe(W3CButton.FACE_2);
|
|
118
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_WEST)).toBe(W3CButton.FACE_3);
|
|
119
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_NORTH)).toBe(W3CButton.FACE_4);
|
|
120
|
-
});
|
|
121
|
-
|
|
122
|
-
await it('should map d-pad buttons correctly', async () => {
|
|
123
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_DPAD_UP)).toBe(W3CButton.DPAD_UP);
|
|
124
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_DPAD_DOWN)).toBe(W3CButton.DPAD_DOWN);
|
|
125
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_DPAD_LEFT)).toBe(W3CButton.DPAD_LEFT);
|
|
126
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_DPAD_RIGHT)).toBe(W3CButton.DPAD_RIGHT);
|
|
127
|
-
});
|
|
128
|
-
|
|
129
|
-
await it('should map shoulder, trigger and stick buttons correctly', async () => {
|
|
130
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_TL)).toBe(W3CButton.LEFT_BUMPER);
|
|
131
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_TR)).toBe(W3CButton.RIGHT_BUMPER);
|
|
132
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_TL2)).toBe(W3CButton.LEFT_TRIGGER);
|
|
133
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_TR2)).toBe(W3CButton.RIGHT_TRIGGER);
|
|
134
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_THUMBL)).toBe(W3CButton.LEFT_STICK);
|
|
135
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_THUMBR)).toBe(W3CButton.RIGHT_STICK);
|
|
136
|
-
});
|
|
137
|
-
|
|
138
|
-
await it('should map meta buttons correctly', async () => {
|
|
139
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_SELECT)).toBe(W3CButton.SELECT);
|
|
140
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_START)).toBe(W3CButton.START);
|
|
141
|
-
expect(MANETTE_TO_W3C_BUTTON.get(ManetteButton.BTN_MODE)).toBe(W3CButton.HOME);
|
|
142
|
-
});
|
|
143
|
-
|
|
144
|
-
await it('should produce unique W3C indices', async () => {
|
|
145
|
-
const w3cIndices = new Set(MANETTE_TO_W3C_BUTTON.values());
|
|
146
|
-
expect(w3cIndices.size).toBe(MANETTE_TO_W3C_BUTTON.size);
|
|
147
|
-
});
|
|
148
|
-
});
|
|
149
|
-
|
|
150
|
-
await describe('Axis Mapping', async () => {
|
|
151
|
-
await it('should map 4 stick axes', async () => {
|
|
152
|
-
expect(MANETTE_TO_W3C_AXIS.size).toBe(4);
|
|
153
|
-
});
|
|
154
|
-
|
|
155
|
-
await it('should map stick axes correctly (SDL logical indices)', async () => {
|
|
156
|
-
expect(MANETTE_TO_W3C_AXIS.get(ManetteAxis.LEFT_X)).toBe(W3CAxis.LEFT_STICK_X);
|
|
157
|
-
expect(MANETTE_TO_W3C_AXIS.get(ManetteAxis.LEFT_Y)).toBe(W3CAxis.LEFT_STICK_Y);
|
|
158
|
-
expect(MANETTE_TO_W3C_AXIS.get(ManetteAxis.RIGHT_X)).toBe(W3CAxis.RIGHT_STICK_X);
|
|
159
|
-
expect(MANETTE_TO_W3C_AXIS.get(ManetteAxis.RIGHT_Y)).toBe(W3CAxis.RIGHT_STICK_Y);
|
|
160
|
-
});
|
|
161
|
-
|
|
162
|
-
await it('should NOT map trigger axes (they go to buttons)', async () => {
|
|
163
|
-
expect(MANETTE_TO_W3C_AXIS.get(ManetteAxis.LEFT_TRIGGER)).toBeUndefined();
|
|
164
|
-
expect(MANETTE_TO_W3C_AXIS.get(ManetteAxis.RIGHT_TRIGGER)).toBeUndefined();
|
|
165
|
-
});
|
|
166
|
-
});
|
|
167
|
-
|
|
168
|
-
await describe('GamepadManager', async () => {
|
|
169
|
-
await it('should return an array of 4 slots from getGamepads()', async () => {
|
|
170
|
-
const manager = new GamepadManager();
|
|
171
|
-
const pads = manager.getGamepads();
|
|
172
|
-
expect(pads.length).toBe(4);
|
|
173
|
-
});
|
|
174
|
-
|
|
175
|
-
await it('should return null for all slots when no device is connected', async () => {
|
|
176
|
-
const manager = new GamepadManager();
|
|
177
|
-
const pads = manager.getGamepads();
|
|
178
|
-
for (const pad of pads) {
|
|
179
|
-
expect(pad).toBeNull();
|
|
180
|
-
}
|
|
181
|
-
});
|
|
182
|
-
|
|
183
|
-
await it('should be safe to call dispose()', async () => {
|
|
184
|
-
const manager = new GamepadManager();
|
|
185
|
-
manager.getGamepads();
|
|
186
|
-
manager.dispose();
|
|
187
|
-
// Should not throw
|
|
188
|
-
expect(true).toBe(true);
|
|
189
|
-
});
|
|
190
|
-
});
|
|
191
|
-
};
|
package/src/gamepad.ts
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — Gamepad
|
|
2
|
-
// Reference: https://w3c.github.io/gamepad/#dom-gamepad
|
|
3
|
-
|
|
4
|
-
import { GamepadButton } from './gamepad-button.js';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Represents a single gamepad device.
|
|
8
|
-
* Instances are snapshots — they are not live-updating.
|
|
9
|
-
* https://w3c.github.io/gamepad/#dom-gamepad
|
|
10
|
-
*/
|
|
11
|
-
export class Gamepad {
|
|
12
|
-
readonly id: string;
|
|
13
|
-
readonly index: number;
|
|
14
|
-
readonly connected: boolean;
|
|
15
|
-
readonly timestamp: number;
|
|
16
|
-
readonly mapping: GamepadMappingType;
|
|
17
|
-
readonly axes: readonly number[];
|
|
18
|
-
readonly buttons: readonly GamepadButton[];
|
|
19
|
-
readonly vibrationActuator: GamepadHapticActuator | null;
|
|
20
|
-
|
|
21
|
-
constructor(init: {
|
|
22
|
-
id: string;
|
|
23
|
-
index: number;
|
|
24
|
-
connected: boolean;
|
|
25
|
-
timestamp: number;
|
|
26
|
-
mapping: GamepadMappingType;
|
|
27
|
-
axes: number[];
|
|
28
|
-
buttons: GamepadButton[];
|
|
29
|
-
vibrationActuator?: GamepadHapticActuator | null;
|
|
30
|
-
}) {
|
|
31
|
-
this.id = init.id;
|
|
32
|
-
this.index = init.index;
|
|
33
|
-
this.connected = init.connected;
|
|
34
|
-
this.timestamp = init.timestamp;
|
|
35
|
-
this.mapping = init.mapping;
|
|
36
|
-
this.axes = Object.freeze([...init.axes]);
|
|
37
|
-
this.buttons = Object.freeze(init.buttons);
|
|
38
|
-
this.vibrationActuator = init.vibrationActuator ?? null;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
get [Symbol.toStringTag]() {
|
|
42
|
-
return 'Gamepad';
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export type GamepadMappingType = '' | 'standard' | 'xr-standard';
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* Provides access to haptic feedback (rumble) on the gamepad.
|
|
50
|
-
* https://w3c.github.io/gamepad/#dom-gamepadhapticactuator
|
|
51
|
-
*/
|
|
52
|
-
export interface GamepadHapticActuator {
|
|
53
|
-
readonly effects: readonly GamepadHapticEffectType[];
|
|
54
|
-
playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
|
|
55
|
-
reset(): Promise<GamepadHapticsResult>;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
export type GamepadHapticEffectType = 'dual-rumble' | 'trigger-rumble';
|
|
59
|
-
export type GamepadHapticsResult = 'complete' | 'preempted';
|
|
60
|
-
|
|
61
|
-
export interface GamepadEffectParameters {
|
|
62
|
-
duration?: number;
|
|
63
|
-
startDelay?: number;
|
|
64
|
-
strongMagnitude?: number;
|
|
65
|
-
weakMagnitude?: number;
|
|
66
|
-
}
|
package/src/haptic-actuator.ts
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — GamepadHapticActuator backed by libmanette
|
|
2
|
-
// Reference: https://w3c.github.io/gamepad/#dom-gamepadhapticactuator
|
|
3
|
-
// libmanette: Device.rumble(strong_magnitude, weak_magnitude, milliseconds)
|
|
4
|
-
|
|
5
|
-
import type Manette from '@girs/manette-0.2';
|
|
6
|
-
import type {
|
|
7
|
-
GamepadHapticActuator,
|
|
8
|
-
GamepadHapticEffectType,
|
|
9
|
-
GamepadEffectParameters,
|
|
10
|
-
GamepadHapticsResult,
|
|
11
|
-
} from './gamepad.js';
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Wraps libmanette's rumble support as a W3C GamepadHapticActuator.
|
|
15
|
-
*
|
|
16
|
-
* libmanette supports dual-rumble with strong/weak magnitude control
|
|
17
|
-
* via `Device.rumble(strong_magnitude, weak_magnitude, milliseconds)`.
|
|
18
|
-
* Magnitudes are in the range 0–65535 (uint16).
|
|
19
|
-
*/
|
|
20
|
-
export class ManetteHapticActuator implements GamepadHapticActuator {
|
|
21
|
-
readonly effects: readonly GamepadHapticEffectType[];
|
|
22
|
-
private _device: Manette.Device;
|
|
23
|
-
|
|
24
|
-
constructor(device: Manette.Device) {
|
|
25
|
-
this._device = device;
|
|
26
|
-
this.effects = device.has_rumble() ? ['dual-rumble'] : [];
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult> {
|
|
30
|
-
if (type !== 'dual-rumble' || !this._device.has_rumble()) {
|
|
31
|
-
return Promise.resolve('complete');
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
const duration = params?.duration ?? 200;
|
|
35
|
-
// W3C spec uses 0.0–1.0, libmanette uses 0–65535 (uint16)
|
|
36
|
-
const strong = Math.round((params?.strongMagnitude ?? 1.0) * 65535);
|
|
37
|
-
const weak = Math.round((params?.weakMagnitude ?? 1.0) * 65535);
|
|
38
|
-
|
|
39
|
-
this._device.rumble(strong, weak, Math.min(duration, 32767));
|
|
40
|
-
return Promise.resolve('complete');
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
reset(): Promise<GamepadHapticsResult> {
|
|
44
|
-
if (this._device.has_rumble()) {
|
|
45
|
-
this._device.rumble(0, 0, 0);
|
|
46
|
-
}
|
|
47
|
-
return Promise.resolve('complete');
|
|
48
|
-
}
|
|
49
|
-
}
|
package/src/index.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API for GJS — original implementation using libmanette
|
|
2
|
-
// Reference: https://w3c.github.io/gamepad/
|
|
3
|
-
|
|
4
|
-
export { GamepadButton } from './gamepad-button.js';
|
|
5
|
-
export { Gamepad } from './gamepad.js';
|
|
6
|
-
export type {
|
|
7
|
-
GamepadMappingType,
|
|
8
|
-
GamepadHapticActuator,
|
|
9
|
-
GamepadHapticEffectType,
|
|
10
|
-
GamepadHapticsResult,
|
|
11
|
-
GamepadEffectParameters,
|
|
12
|
-
} from './gamepad.js';
|
|
13
|
-
export { GamepadEvent } from './gamepad-event.js';
|
|
14
|
-
export type { GamepadEventInit } from './gamepad-event.js';
|
|
15
|
-
export { GamepadManager } from './gamepad-manager.js';
|
|
16
|
-
export { ManetteHapticActuator } from './haptic-actuator.js';
|
|
17
|
-
export { MANETTE_TO_W3C_BUTTON, ManetteButton, W3CButton, W3C_BUTTON_COUNT } from './button-mapping.js';
|
|
18
|
-
export { MANETTE_TO_W3C_AXIS, ManetteAxis, W3CAxis, W3C_AXIS_COUNT, TRIGGER_PRESS_THRESHOLD } from './axis-mapping.js';
|
package/src/register.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
// Gamepad Web API — global registration for GJS
|
|
2
|
-
// Patches navigator.getGamepads and registers GamepadEvent on globalThis.
|
|
3
|
-
// Side-effect module: import '@gjsify/gamepad/register'
|
|
4
|
-
|
|
5
|
-
import { GamepadEvent } from './gamepad-event.js';
|
|
6
|
-
import { GamepadManager } from './gamepad-manager.js';
|
|
7
|
-
|
|
8
|
-
const manager = new GamepadManager();
|
|
9
|
-
|
|
10
|
-
// Ensure navigator object exists
|
|
11
|
-
if (typeof (globalThis as any).navigator === 'undefined') {
|
|
12
|
-
(globalThis as any).navigator = {};
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
// Register navigator.getGamepads()
|
|
16
|
-
(globalThis as any).navigator.getGamepads = () => manager.getGamepads();
|
|
17
|
-
|
|
18
|
-
// Register GamepadEvent globally
|
|
19
|
-
if (typeof (globalThis as any).GamepadEvent === 'undefined') {
|
|
20
|
-
(globalThis as any).GamepadEvent = GamepadEvent;
|
|
21
|
-
}
|
package/src/test.mts
DELETED
package/tsconfig.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"module": "ESNext",
|
|
4
|
-
"types": [
|
|
5
|
-
"node",
|
|
6
|
-
"@girs/gjs",
|
|
7
|
-
"@girs/glib-2.0",
|
|
8
|
-
"@girs/manette-0.2"
|
|
9
|
-
],
|
|
10
|
-
"target": "ESNext",
|
|
11
|
-
"experimentalDecorators": true,
|
|
12
|
-
"emitDeclarationOnly": true,
|
|
13
|
-
"declaration": true,
|
|
14
|
-
"outDir": "lib",
|
|
15
|
-
"rootDir": "src",
|
|
16
|
-
"declarationDir": "lib/types",
|
|
17
|
-
"composite": true,
|
|
18
|
-
"moduleResolution": "bundler",
|
|
19
|
-
"allowImportingTsExtensions": true,
|
|
20
|
-
"skipLibCheck": true,
|
|
21
|
-
"allowJs": true,
|
|
22
|
-
"checkJs": false,
|
|
23
|
-
"strict": false
|
|
24
|
-
},
|
|
25
|
-
"reflection": false,
|
|
26
|
-
"include": [
|
|
27
|
-
"src/**/*.ts"
|
|
28
|
-
],
|
|
29
|
-
"exclude": [
|
|
30
|
-
"src/test.ts",
|
|
31
|
-
"src/test.mts"
|
|
32
|
-
]
|
|
33
|
-
}
|
package/tsconfig.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
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.es2024.d.ts","../../../node_modules/typescript/lib/lib.es2025.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.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.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.esnext.full.d.ts","./src/axis-mapping.ts","./src/button-mapping.ts","./src/gamepad-button.ts","../dom-exception/lib/types/index.d.ts","../dom-events/lib/types/index.d.ts","./src/gamepad.ts","./src/gamepad-event.ts","../../../node_modules/@girs/manette-0.2/manette-0.2-ambient.d.ts","../../../node_modules/@girs/gjs/gettext.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0-ambient.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0-import.d.ts","../../../node_modules/@girs/glib-2.0/glib-2.0-ambient.d.ts","../../../node_modules/@girs/glib-2.0/glib-2.0-import.d.ts","../../../node_modules/@girs/glib-2.0/glib-2.0.d.ts","../../../node_modules/@girs/glib-2.0/index.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0.d.ts","../../../node_modules/@girs/gobject-2.0/index.d.ts","../../../node_modules/@girs/gjs/system.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0-ambient.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0-import.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0.d.ts","../../../node_modules/@girs/cairo-1.0/index.d.ts","../../../node_modules/@girs/gjs/cairo.d.ts","../../../node_modules/@girs/gjs/console.d.ts","../../../node_modules/@girs/gjs/gi.d.ts","../../../node_modules/@girs/gjs/gjs-ambient.d.ts","../../../node_modules/@girs/gjs/gjs.d.ts","../../../node_modules/@girs/gjs/index.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0-ambient.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0-import.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-ambient.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-import.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0.d.ts","../../../node_modules/@girs/gmodule-2.0/index.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0.d.ts","../../../node_modules/@girs/gio-2.0/index.d.ts","../../../node_modules/@girs/gudev-1.0/gudev-1.0-ambient.d.ts","../../../node_modules/@girs/gudev-1.0/gudev-1.0-import.d.ts","../../../node_modules/@girs/gudev-1.0/gudev-1.0.d.ts","../../../node_modules/@girs/gudev-1.0/index.d.ts","../../../node_modules/@girs/manette-0.2/manette-0.2.d.ts","../../../node_modules/@girs/manette-0.2/index.d.ts","./src/haptic-actuator.ts","./src/gamepad-manager.ts","../../gjs/unit/lib/types/spy.d.ts","../../gjs/unit/lib/types/index.d.ts","./src/gamepad.spec.ts","./src/index.ts","./src/register.ts","../../../node_modules/@types/node/compatibility/iterators.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/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/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/buffer/index.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/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/index.d.ts"],"fileIdsList":[[112,115,119,145,208,211,216,220,223,225,226,227,240],[115,119,145,208,211,216,220,223,225,226,227,240],[108,110,119,121,145,208,211,216,220,223,225,226,227,240],[113,114,119,145,208,211,216,220,223,225,226,227,240],[119,122,129,145,208,211,216,220,223,225,226,227,240],[119,129,145,208,211,216,220,223,225,226,227,240],[108,110,119,121,127,145,208,211,216,220,223,225,226,227,240],[119,123,128,145,208,211,216,220,223,225,226,227,240],[110,115,119,145,208,211,216,220,223,225,226,227,240],[119,145,208,211,216,220,223,225,226,227,240],[102,111,116,117,118,145,208,211,216,220,223,225,226,227,240],[102,108,110,111,116,119,145,208,211,216,220,223,225,226,227,240],[119,120,145,208,211,216,220,223,225,226,227,240],[110,119,145,208,211,216,220,223,225,226,227,240],[105,108,119,145,208,211,216,220,223,225,226,227,240],[108,119,145,208,211,216,220,223,225,226,227,240],[110,119,121,145,208,211,216,220,223,225,226,227,240],[106,107,119,145,208,211,216,220,223,225,226,227,240],[119,124,127,145,208,211,216,220,223,225,226,227,240],[119,127,145,208,211,216,220,223,225,226,227,240],[119,125,126,145,208,211,216,220,223,225,226,227,240],[103,110,119,145,208,211,216,220,223,225,226,227,240],[108,119,121,145,208,211,216,220,223,225,226,227,240],[104,109,119,145,208,211,216,220,223,225,226,227,240],[119,130,133,145,208,211,216,220,223,225,226,227,240],[119,133,145,208,211,216,220,223,225,226,227,240],[119,131,132,145,208,211,216,220,223,225,226,227,240],[119,134,145,208,211,216,220,223,225,226,227,240],[101,119,135,145,208,211,216,220,223,225,226,227,240],[108,110,119,121,127,129,133,145,208,211,216,220,223,225,226,227,240],[119,145,205,206,208,211,216,220,223,225,226,227,240],[119,145,207,208,211,216,220,223,225,226,227,240],[119,208,211,216,220,223,225,226,227,240],[119,145,208,211,216,220,223,225,226,227,240,248],[119,145,208,209,211,214,216,219,220,223,225,226,227,229,240,245,257],[119,145,208,209,210,211,216,219,220,223,225,226,227,240],[119,145,208,211,216,220,223,225,226,227,240,258],[119,145,208,211,212,213,216,220,223,225,226,227,231,240],[119,145,208,211,213,216,220,223,225,226,227,240,245,254],[119,145,208,211,214,216,219,220,223,225,226,227,229,240],[119,145,207,208,211,215,216,220,223,225,226,227,240],[119,145,208,211,216,217,220,223,225,226,227,240],[119,145,208,211,216,218,219,220,223,225,226,227,240],[119,145,207,208,211,216,219,220,223,225,226,227,240],[119,145,208,211,216,219,220,221,223,225,226,227,240,245,257],[119,145,208,211,216,219,220,221,223,225,226,227,240,245,248],[119,145,195,208,211,216,219,220,222,223,225,226,227,229,240,245,257],[119,145,208,211,216,219,220,222,223,225,226,227,229,240,245,254,257],[119,145,208,211,216,220,222,223,224,225,226,227,240,245,254,257],[119,143,144,145,146,147,148,149,150,151,152,153,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,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,262,263,264],[119,145,208,211,216,219,220,223,225,226,227,240],[119,145,208,211,216,220,223,225,227,240],[119,145,208,211,216,220,223,225,226,227,228,240,257],[119,145,208,211,216,219,220,223,225,226,227,229,240,245],[119,145,208,211,216,220,223,225,226,227,231,240],[119,145,208,211,216,220,223,225,226,227,232,240],[119,145,208,211,216,219,220,223,225,226,227,235,240],[119,145,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,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,262,263,264],[119,145,208,211,216,220,223,225,226,227,237,240],[119,145,208,211,216,220,223,225,226,227,238,240],[119,145,208,211,213,216,220,223,225,226,227,229,240,248],[119,145,208,211,216,219,220,223,225,226,227,240,241],[119,145,208,211,216,220,223,225,226,227,240,242,258,261],[119,145,208,211,216,219,220,223,225,226,227,240,245,247,248],[119,145,208,211,216,220,223,225,226,227,240,246,248],[119,145,208,211,216,220,223,225,226,227,240,248,258],[119,145,208,211,216,220,223,225,226,227,240,249],[119,145,205,208,211,216,220,223,225,226,227,240,245,251,257],[119,145,208,211,216,220,223,225,226,227,240,245,250],[119,145,208,211,216,219,220,223,225,226,227,240,252,253],[119,145,208,211,216,220,223,225,226,227,240,252,253],[119,145,208,211,213,216,220,223,225,226,227,229,240,245,254],[119,145,208,211,216,220,223,225,226,227,240,255],[119,145,208,211,216,220,223,225,226,227,229,240,256],[119,145,208,211,216,220,222,223,225,226,227,238,240,257],[119,145,208,211,216,220,223,225,226,227,240,258,259],[119,145,208,211,213,216,220,223,225,226,227,240,259],[119,145,208,211,216,220,223,225,226,227,240,245,260],[119,145,208,211,216,220,223,225,226,227,228,240,261],[119,145,208,211,216,220,223,225,226,227,240,262],[119,145,208,211,213,216,220,223,225,226,227,240],[119,145,195,208,211,216,220,223,225,226,227,240],[119,145,208,211,216,220,223,225,226,227,240,257],[119,145,208,211,216,220,223,225,226,227,240,263],[119,145,208,211,216,220,223,225,226,227,235,240],[119,145,208,211,216,220,223,225,226,227,240,253],[119,145,195,208,211,216,219,220,221,223,225,226,227,235,240,245,248,257,260,261,263],[119,145,208,211,216,220,223,225,226,227,240,245,264],[119,145,160,163,166,167,208,211,216,220,223,225,226,227,240,257],[119,145,163,208,211,216,220,223,225,226,227,240,245,257],[119,145,163,167,208,211,216,220,223,225,226,227,240,257],[119,145,208,211,216,220,223,225,226,227,240,245],[119,145,157,208,211,216,220,223,225,226,227,240],[119,145,161,208,211,216,220,223,225,226,227,240],[119,145,159,160,163,208,211,216,220,223,225,226,227,240,257],[119,145,208,211,216,220,223,225,226,227,229,240,254],[119,145,208,211,216,220,223,225,226,227,240,265],[119,145,157,208,211,216,220,223,225,226,227,240,265],[119,145,159,163,208,211,216,220,223,225,226,227,229,240,257],[119,145,154,155,156,158,162,208,211,216,219,220,223,225,226,227,240,245,257],[119,145,163,172,180,208,211,216,220,223,225,226,227,240],[119,145,155,161,208,211,216,220,223,225,226,227,240],[119,145,163,189,190,208,211,216,220,223,225,226,227,240],[119,145,155,158,163,208,211,216,220,223,225,226,227,240,248,257,265],[119,145,163,208,211,216,220,223,225,226,227,240],[119,145,159,163,208,211,216,220,223,225,226,227,240,257],[119,145,154,208,211,216,220,223,225,226,227,240],[119,145,157,158,159,161,162,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,190,191,192,193,194,208,211,216,220,223,225,226,227,240],[119,145,163,182,185,208,211,216,220,223,225,226,227,240],[119,145,163,172,173,174,208,211,216,220,223,225,226,227,240],[119,145,161,163,173,175,208,211,216,220,223,225,226,227,240],[119,145,162,208,211,216,220,223,225,226,227,240],[119,145,155,157,163,208,211,216,220,223,225,226,227,240],[119,145,163,167,173,175,208,211,216,220,223,225,226,227,240],[119,145,167,208,211,216,220,223,225,226,227,240],[119,145,161,163,166,208,211,216,220,223,225,226,227,240,257],[119,145,155,159,163,172,208,211,216,220,223,225,226,227,240],[119,145,163,182,208,211,216,220,223,225,226,227,240],[119,145,175,208,211,216,220,223,225,226,227,240],[119,145,157,163,189,208,211,216,220,223,225,226,227,240,248,263,265],[119,121,138,145,208,211,216,220,223,225,226,227,240],[97,119,145,208,211,216,220,223,225,226,227,240],[98,99,119,145,208,211,216,220,223,225,226,227,240],[94,95,96,99,100,101,119,135,136,145,208,211,216,220,223,225,226,227,240],[94,95,96,99,100,119,137,139,145,208,211,216,220,223,225,226,227,240],[96,119,145,208,211,216,220,223,225,226,227,240],[99,119,135,145,208,211,216,220,223,225,226,227,240],[94,95,96,99,100,119,136,137,145,208,211,216,220,223,225,226,227,240],[100,119,137,145,208,211,216,220,223,225,226,227,240]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"2a2de5b9459b3fc44decd9ce6100b72f1b002ef523126c1d3d8b2a4a63d74d78","affectsGlobalScope":true,"impliedFormat":1},{"version":"f13f4b465c99041e912db5c44129a94588e1aafee35a50eab51044833f50b4ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"ef4a897cd2a3f91000c10264e400b3667c7e51e1b7365f03b62e8081dc53bde6","impliedFormat":1},{"version":"4087d0e8dd7a1960383679a424ef67e921ce3ac915a92d96a70aa7376e0131f6","signature":"b94e0e1615f26604198ed2ff2831730c7546c214dfd9fac2f1ce9fa8e1495d16"},{"version":"25d225028ff8ed5adb8f762d96fbb6d3e9d3583126f94ed3603f751660b0f717","signature":"46a641f24a660fedf111d20b3e12e5fa2f337cc435d6fecb87c63a0a98aecc03"},{"version":"12c25955ec73de4271560953a774e93eedeafde761422528bf5747d365b8f79e","signature":"4e79472732ef45a19daf77af5a49714606985ae372ebb14d3d5621a46f632d38"},"e176cbd59020ce3184e68f10e5f286e027dd444e66d490fe3836118e17babf9c","8ff24dc5ca7e7ad39d6af837d4fb84abd2d0c5e4772422db4ede1bfd5ee5408b",{"version":"5ce60a79d98b4a9ea736b4dc16dd8e1a2d610493f4aa193e0d2e2c0939cf137c","signature":"cbd63fe4c2f8cf86f8bbe97f6c2a8698a870f367a3fa72c3d07e1deb4e12b6c1"},{"version":"32e66b72045034a9c9b061b659bfa03ca22e697594c03284d2c0f403d0cc4e63","signature":"8c77741cac957dd7c956f8b721d75002ccbf807eb244c573fbe793dc29279afa"},{"version":"f01668e9c02d87a9e05d2f8bdf1c1948bf764a2e9b897386dfd51822901d32a6","impliedFormat":99},{"version":"4936d25ba31379ce4e3d4289f6c0ea936510e111f823ec377015de6ba7047adf","impliedFormat":99},{"version":"1ffa53902f87f288dbaebc1dd9c754a0f0f1c4af2733fc7e173022209e7d4ef8","impliedFormat":99},{"version":"d7801240a49920afb07e1a83597b05a26e5e3758163a70448ba14df3f7ab5286","affectsGlobalScope":true,"impliedFormat":99},{"version":"2aed5de224f5094280addfaf59e82b362b3680083917cfa7f066c4b89cc58b74","impliedFormat":99},{"version":"86ecf772256f9205f72c768dc9b47d27b4254a64a1dd94f61c8c2f29219c24e1","affectsGlobalScope":true,"impliedFormat":99},{"version":"f62bcd0d626998f4b14a5e4bf6c65abf4dfeaa042243dd57e4e92125fd602ed6","impliedFormat":99},{"version":"9462f849ff8d50a61639f09a8e369f7584c623a8cbcf9d99c6b81aacbca91fd2","impliedFormat":99},{"version":"6da820ee582c593971e71a933dbf54d72b47984bb11f888d225c7a8476e74790","impliedFormat":99},{"version":"048a292f9fb06d0aab8c52cabd81bc820c70d68500530afe1867c08e431d4e46","impliedFormat":99},{"version":"e2f9944677cba1c7f636dde67d7ca77982da3b52134c617bd86d3a4d8607b498","impliedFormat":99},{"version":"ceaf67c6cb2df4f38f466bd3709a72199d1d98377dcf215bf760b2a383fc73a8","impliedFormat":99},{"version":"c5f89dedf8e238012d580d16ee2286bf0681f1389f14d419c87711070430995c","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc996a90baa100126e6014b2f55022930e1a44621ec68eb163f322714b7596bc","impliedFormat":99},{"version":"cdd5245a59183386c7b465ad56e2353a0a1b49c32733520ec5c0eeb718781012","impliedFormat":99},{"version":"35c6737b37a2c92e67a14ba7692f3216df6c140c28133835768f7c66cb15fa88","impliedFormat":99},{"version":"7b607f4711c496c7c4f57abddfc7b9912059e1f264417ff8f4280b65f756bf4d","impliedFormat":99},{"version":"17122ddf1e2ff9f0538a06af6edc8d2666d7e1a428239e86358afc09ac7a8779","impliedFormat":99},{"version":"2cc6a5c34041442caa16aff0686d41595296248c7c33bfac5b94cd4fe8ae20de","impliedFormat":99},{"version":"8384e3ab082eecd9d0faa07ddf7e9ff3879bfac60216e47328f799600e47ea80","affectsGlobalScope":true,"impliedFormat":99},{"version":"715e7c015d2f3f4de0da107d9be2db02b52cea3d2d446ad11d2e732848d8e3e7","impliedFormat":99},{"version":"1a7eec8977d21e8bf216ea62b836bdda1768c2a49ee689e5e09fb2f56a7837e4","impliedFormat":99},{"version":"8deb0c1eae578bb83a0056727ddec6be752d015acebfdd90f53797f8a035e57d","affectsGlobalScope":true,"impliedFormat":99},{"version":"d0b90b2c22bda9b6a7dabfb505a7fd3896e0267ab791d63a4a37098d0829e1b0","impliedFormat":99},{"version":"d26efa37b7cbdcc391dc201683de609900869d285213abf1dcbfb5275427142f","affectsGlobalScope":true,"impliedFormat":99},{"version":"0fe0f52d9ee15bf4fbeef129a5841a706720641554be2220df52c994f343a2f1","impliedFormat":99},{"version":"586cc6c492134b4680582124d2cd7d20efe0993917871647e0000dbf670bc0da","impliedFormat":99},{"version":"eaac6969d2a0d853a8870b9ba9591b429b80f99308cc97c3fe223b54bfc4127f","impliedFormat":99},{"version":"4b8b7197750fcbfe01b0c3b0e42a18367763e07eb937e0a278a27c69489a2575","impliedFormat":99},{"version":"b6b289133e038a7ddf423469d24ea7c282dba63f2e7a7369b77e4afd98077aea","impliedFormat":99},{"version":"63d2be2cb06c5c5c75b54a669a1666037b2c2f48b974aa8a211babe3463254f7","affectsGlobalScope":true,"impliedFormat":99},{"version":"88dc5001d38e88c4211ebdfae0ee01276cf3edf88b62fa6fbd16115a7e9ce454","impliedFormat":99},{"version":"16a19dcc44c424d0e91cb4566651af7489f21123c97b9d42665970a5e7c00991","impliedFormat":99},{"version":"555dd25aed00e44a62029a9983e0e8a2bad0adeb12239e310570e4a10f7813fb","impliedFormat":99},{"version":"45176eba2e76f1af894c0cdcf707f468fb9a9309fe9064204432212fda83dcca","impliedFormat":99},{"version":"3729a892aa24dc326258d581758ef2eca5e410b19c767e55caf37944e3f56939","signature":"4f80dfbcdeb81e24a841a487db7835d60352db6f16b766f15eeaa2eb95edac9c"},{"version":"d205c3c799c017326fde6a3244d02cacf01cec4ff0fe16b04645ae7c24264cb5","signature":"c2ef47fcd10f7d509c149966604e0f79bf54f5d7e0b0819cfb1f496d753ec71a"},"cda120f78df4c624c7fb1bd8e17343a39bfbede803f38312fb8e51fa818e1a7a","d9e135cc1dcf9f798edb9665b777dcad812d980a467b6ed11ce1d1bb9f017176",{"version":"ba92c02b7cc02ae670817cc6f453000585a9d19eafb1bb80a6f7abcdd772fee5","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574"},{"version":"6d3ec73a377ec0aea64b6a32f07e93bede166084f7b4ff9eab493be79ad7c4c7","signature":"424888b494e45344dd7982fdce2fa84dff3b91670260ba5bc09d5699483c99d1"},{"version":"0432b6aec43a17f2758749a2bffae78a49e035f6c57e3da740e14af335171741","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","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":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","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":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"10deca769dfed888051b1808d6746f8883a490a707f8bdf9367079146987d6d0","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[[94,96],99,100,136,137,[140,142]],"options":{"allowImportingTsExtensions":true,"allowJs":true,"checkJs":false,"composite":true,"declaration":true,"declarationDir":"./lib/types","emitDeclarationOnly":true,"experimentalDecorators":true,"module":99,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":false,"target":99},"referencedMap":[[112,1],[113,2],[114,3],[115,4],[122,5],[123,6],[128,7],[129,8],[116,9],[117,10],[102,10],[118,10],[119,11],[120,12],[121,13],[111,14],[105,15],[106,16],[107,17],[108,18],[124,19],[125,20],[126,3],[127,21],[103,22],[104,14],[109,23],[110,24],[130,25],[131,26],[132,3],[133,27],[135,28],[101,29],[134,30],[205,31],[206,31],[207,32],[145,33],[208,34],[209,35],[210,36],[143,10],[211,37],[212,38],[213,39],[214,40],[215,41],[216,42],[217,42],[218,43],[219,44],[220,45],[221,46],[146,10],[144,10],[222,47],[223,48],[224,49],[265,50],[225,51],[226,52],[227,51],[228,53],[229,54],[231,55],[232,56],[233,56],[234,56],[235,57],[236,58],[237,59],[238,60],[239,61],[240,62],[241,62],[242,63],[243,10],[244,10],[245,64],[246,65],[247,64],[248,66],[249,67],[250,68],[251,69],[252,70],[253,71],[254,72],[255,73],[256,74],[257,75],[258,76],[259,77],[260,78],[261,79],[262,80],[147,51],[148,10],[149,10],[150,81],[151,10],[152,37],[153,10],[196,82],[197,83],[198,84],[199,84],[200,85],[201,10],[202,34],[203,86],[204,83],[263,87],[264,88],[230,10],[91,10],[92,10],[16,10],[14,10],[15,10],[20,10],[19,10],[2,10],[21,10],[22,10],[23,10],[24,10],[25,10],[26,10],[27,10],[28,10],[3,10],[29,10],[30,10],[4,10],[31,10],[35,10],[32,10],[33,10],[34,10],[36,10],[37,10],[38,10],[5,10],[39,10],[40,10],[41,10],[42,10],[6,10],[46,10],[43,10],[44,10],[45,10],[47,10],[7,10],[48,10],[53,10],[54,10],[49,10],[50,10],[51,10],[52,10],[8,10],[58,10],[55,10],[56,10],[57,10],[59,10],[9,10],[60,10],[61,10],[62,10],[64,10],[63,10],[65,10],[66,10],[10,10],[67,10],[68,10],[69,10],[11,10],[70,10],[71,10],[72,10],[73,10],[74,10],[75,10],[12,10],[76,10],[77,10],[78,10],[79,10],[80,10],[1,10],[81,10],[82,10],[13,10],[83,10],[84,10],[85,10],[86,10],[93,10],[87,10],[88,10],[89,10],[90,10],[18,10],[17,10],[172,89],[184,90],[169,91],[185,92],[194,93],[160,94],[161,95],[159,96],[193,97],[188,98],[192,99],[163,100],[181,101],[162,102],[191,103],[157,104],[158,98],[164,105],[165,10],[171,106],[168,105],[155,107],[195,108],[186,109],[175,110],[174,105],[176,111],[179,112],[173,113],[177,114],[189,97],[166,115],[167,116],[180,117],[156,92],[183,118],[182,105],[170,116],[178,119],[187,10],[154,10],[190,120],[139,121],[138,10],[98,122],[97,10],[94,10],[95,10],[96,10],[100,123],[137,124],[140,125],[99,126],[136,127],[141,128],[142,129]],"latestChangedDtsFile":"./lib/types/register.d.ts","version":"6.0.3"}
|