node-devicectl 1.1.5 → 1.2.1
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/CHANGELOG.md +12 -0
- package/README.md +19 -0
- package/build/lib/devicectl.d.ts +5 -2
- package/build/lib/devicectl.d.ts.map +1 -1
- package/build/lib/devicectl.js +24 -4
- package/build/lib/devicectl.js.map +1 -1
- package/build/lib/types.d.ts +16 -0
- package/build/lib/types.d.ts.map +1 -1
- package/lib/devicectl.ts +28 -4
- package/lib/types.ts +17 -0
- package/package.json +8 -8
- package/build/tsconfig.tsbuildinfo +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.2.1](https://github.com/appium/node-devicectl/compare/v1.2.0...v1.2.1) (2026-04-10)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* **deps-dev:** bump typescript from 5.9.3 to 6.0.2 ([#15](https://github.com/appium/node-devicectl/issues/15)) ([9b60022](https://github.com/appium/node-devicectl/commit/9b6002244310ffc318c101cebcc05c897b8f3154))
|
|
6
|
+
|
|
7
|
+
## [1.2.0](https://github.com/appium/node-devicectl/compare/v1.1.5...v1.2.0) (2026-03-20)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Default to execution as non-root ([#14](https://github.com/appium/node-devicectl/issues/14)) ([04c75d5](https://github.com/appium/node-devicectl/commit/04c75d5f713d821fe87305d9772b893ff3183084))
|
|
12
|
+
|
|
1
13
|
## [1.1.5](https://github.com/appium/node-devicectl/compare/v1.1.4...v1.1.5) (2026-03-20)
|
|
2
14
|
|
|
3
15
|
### Miscellaneous Chores
|
package/README.md
CHANGED
|
@@ -30,6 +30,25 @@ await devicectl.launchApp('com.example.app', {
|
|
|
30
30
|
});
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
When Node is running under `sudo`, `node-devicectl` runs `xcrun devicectl` as the original
|
|
34
|
+
non-root user by default (`SUDO_UID`/`SUDO_GID`) to avoid CoreDevice provider lookup errors.
|
|
35
|
+
|
|
36
|
+
You can disable this globally via constructor options:
|
|
37
|
+
|
|
38
|
+
```typescript
|
|
39
|
+
const devicectl = new Devicectl('device-udid', {
|
|
40
|
+
preferNonRootWhenSudo: false,
|
|
41
|
+
});
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Or override for a single command:
|
|
45
|
+
|
|
46
|
+
```typescript
|
|
47
|
+
await devicectl.execute(['device', 'info'], {
|
|
48
|
+
runAsNonRootWhenSudo: false,
|
|
49
|
+
});
|
|
50
|
+
```
|
|
51
|
+
|
|
33
52
|
## Requirements
|
|
34
53
|
|
|
35
54
|
- Xcode 15+
|
package/build/lib/devicectl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ExecuteOptions, ExecuteResult } from './types';
|
|
1
|
+
import type { DevicectlOptions, ExecuteOptions, ExecuteResult } from './types';
|
|
2
2
|
import * as processMixins from './mixins/process';
|
|
3
3
|
import * as infoMixins from './mixins/info';
|
|
4
4
|
import * as copyMixins from './mixins/copy';
|
|
@@ -13,12 +13,14 @@ import * as listMixins from './mixins/list';
|
|
|
13
13
|
export declare class Devicectl {
|
|
14
14
|
/** The unique device identifier */
|
|
15
15
|
readonly udid: string;
|
|
16
|
+
private readonly preferNonRootWhenSudo;
|
|
17
|
+
private readonly sudoUser;
|
|
16
18
|
/**
|
|
17
19
|
* Creates a new Devicectl instance
|
|
18
20
|
*
|
|
19
21
|
* @param udid - The unique device identifier
|
|
20
22
|
*/
|
|
21
|
-
constructor(udid: string);
|
|
23
|
+
constructor(udid: string, opts?: DevicectlOptions);
|
|
22
24
|
/**
|
|
23
25
|
* Executes a devicectl command
|
|
24
26
|
*
|
|
@@ -35,5 +37,6 @@ export declare class Devicectl {
|
|
|
35
37
|
listFiles: typeof copyMixins.listFiles;
|
|
36
38
|
pullFile: typeof copyMixins.pullFile;
|
|
37
39
|
listDevices: typeof listMixins.listDevices;
|
|
40
|
+
private resolveSudoUser;
|
|
38
41
|
}
|
|
39
42
|
//# sourceMappingURL=devicectl.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devicectl.d.ts","sourceRoot":"","sources":["../../lib/devicectl.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,cAAc,EAAE,aAAa,EAAC,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"devicectl.d.ts","sourceRoot":"","sources":["../../lib/devicectl.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,gBAAgB,EAAE,cAAc,EAAE,aAAa,EAAC,MAAM,SAAS,CAAC;AAC7E,OAAO,KAAK,aAAa,MAAM,kBAAkB,CAAC;AAClD,OAAO,KAAK,UAAU,MAAM,eAAe,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,eAAe,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,eAAe,CAAC;AAM5C;;;;;;GAMG;AACH,qBAAa,SAAS;IACpB,mCAAmC;IACnC,SAAgB,IAAI,EAAE,MAAM,CAAC;IAC7B,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAU;IAChD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAkB;IAE3C;;;;OAIG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,gBAAgB;IAMjD;;;;;;OAMG;IACG,OAAO,CAAC,CAAC,SAAS,cAAc,EACpC,UAAU,EAAE,MAAM,EAAE,EACpB,IAAI,CAAC,EAAE,CAAC,GACP,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;IAkD5B,iBAAiB,yCAAmC;IACpD,mBAAmB,2CAAqC;IACxD,SAAS,iCAA2B;IAEpC,aAAa,kCAA4B;IACzC,QAAQ,6BAAuB;IAE/B,SAAS,8BAAwB;IACjC,QAAQ,6BAAuB;IAE/B,WAAW,gCAA0B;IAErC,OAAO,CAAC,eAAe;CAYxB"}
|
package/build/lib/devicectl.js
CHANGED
|
@@ -56,13 +56,17 @@ const LOG_TAG = 'Devicectl';
|
|
|
56
56
|
class Devicectl {
|
|
57
57
|
/** The unique device identifier */
|
|
58
58
|
udid;
|
|
59
|
+
preferNonRootWhenSudo;
|
|
60
|
+
sudoUser;
|
|
59
61
|
/**
|
|
60
62
|
* Creates a new Devicectl instance
|
|
61
63
|
*
|
|
62
64
|
* @param udid - The unique device identifier
|
|
63
65
|
*/
|
|
64
|
-
constructor(udid) {
|
|
66
|
+
constructor(udid, opts) {
|
|
65
67
|
this.udid = udid;
|
|
68
|
+
this.preferNonRootWhenSudo = opts?.preferNonRootWhenSudo ?? true;
|
|
69
|
+
this.sudoUser = this.resolveSudoUser();
|
|
66
70
|
}
|
|
67
71
|
/**
|
|
68
72
|
* Executes a devicectl command
|
|
@@ -72,7 +76,7 @@ class Devicectl {
|
|
|
72
76
|
* @returns Promise that resolves to the command result
|
|
73
77
|
*/
|
|
74
78
|
async execute(subcommand, opts) {
|
|
75
|
-
const { logStdout = false, asynchronous = false, asJson = true, noDevice = false, subcommandOptions, timeout, } = opts ?? {};
|
|
79
|
+
const { logStdout = false, asynchronous = false, asJson = true, noDevice = false, subcommandOptions, timeout, runAsNonRootWhenSudo = this.preferNonRootWhenSudo, } = opts ?? {};
|
|
76
80
|
const finalArgs = ['devicectl', ...subcommand, ...(noDevice ? [] : ['--device', this.udid])];
|
|
77
81
|
if (subcommandOptions && !lodash_1.default.isEmpty(subcommandOptions)) {
|
|
78
82
|
finalArgs.push(...(Array.isArray(subcommandOptions) ? subcommandOptions : [subcommandOptions]));
|
|
@@ -80,15 +84,20 @@ class Devicectl {
|
|
|
80
84
|
if (asJson) {
|
|
81
85
|
finalArgs.push('--quiet', '--json-output', '-');
|
|
82
86
|
}
|
|
87
|
+
const userOpts = runAsNonRootWhenSudo && this.sudoUser ? this.sudoUser : undefined;
|
|
83
88
|
const cmdStr = [XCRUN, ...finalArgs].map((arg) => `"${arg}"`).join(' ');
|
|
84
89
|
logger_1.default.debug(LOG_TAG, `Executing ${cmdStr}`);
|
|
85
90
|
try {
|
|
86
91
|
if (asynchronous) {
|
|
87
|
-
const result = new teen_process_1.SubProcess(XCRUN, finalArgs);
|
|
92
|
+
const result = new teen_process_1.SubProcess(XCRUN, finalArgs, userOpts);
|
|
88
93
|
await result.start(0);
|
|
89
94
|
return result;
|
|
90
95
|
}
|
|
91
|
-
const
|
|
96
|
+
const execOpts = {
|
|
97
|
+
...userOpts,
|
|
98
|
+
...(lodash_1.default.isNumber(timeout) ? { timeout } : {}),
|
|
99
|
+
};
|
|
100
|
+
const result = await (0, teen_process_1.exec)(XCRUN, finalArgs, execOpts);
|
|
92
101
|
if (logStdout) {
|
|
93
102
|
logger_1.default.debug(LOG_TAG, `Command output: ${result.stdout}`);
|
|
94
103
|
}
|
|
@@ -106,6 +115,17 @@ class Devicectl {
|
|
|
106
115
|
listFiles = copyMixins.listFiles;
|
|
107
116
|
pullFile = copyMixins.pullFile;
|
|
108
117
|
listDevices = listMixins.listDevices;
|
|
118
|
+
resolveSudoUser() {
|
|
119
|
+
if (!process.geteuid || process.geteuid() !== 0) {
|
|
120
|
+
return null;
|
|
121
|
+
}
|
|
122
|
+
const uid = Number(process.env.SUDO_UID);
|
|
123
|
+
const gid = Number(process.env.SUDO_GID);
|
|
124
|
+
if (!Number.isInteger(uid) || !Number.isInteger(gid)) {
|
|
125
|
+
return null;
|
|
126
|
+
}
|
|
127
|
+
return { uid, gid };
|
|
128
|
+
}
|
|
109
129
|
}
|
|
110
130
|
exports.Devicectl = Devicectl;
|
|
111
131
|
//# sourceMappingURL=devicectl.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devicectl.js","sourceRoot":"","sources":["../../lib/devicectl.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA8C;AAC9C,oDAAuB;AACvB,4DAAoC;AAEpC,gEAAkD;AAClD,0DAA4C;AAC5C,0DAA4C;AAC5C,0DAA4C;AAE5C,MAAM,KAAK,GAAG,OAAO,CAAC;AACtB,MAAM,OAAO,GAAG,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"devicectl.js","sourceRoot":"","sources":["../../lib/devicectl.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA8C;AAC9C,oDAAuB;AACvB,4DAAoC;AAEpC,gEAAkD;AAClD,0DAA4C;AAC5C,0DAA4C;AAC5C,0DAA4C;AAE5C,MAAM,KAAK,GAAG,OAAO,CAAC;AACtB,MAAM,OAAO,GAAG,WAAW,CAAC;AAG5B;;;;;;GAMG;AACH,MAAa,SAAS;IACpB,mCAAmC;IACnB,IAAI,CAAS;IACZ,qBAAqB,CAAU;IAC/B,QAAQ,CAAkB;IAE3C;;;;OAIG;IACH,YAAY,IAAY,EAAE,IAAuB;QAC/C,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,qBAAqB,GAAG,IAAI,EAAE,qBAAqB,IAAI,IAAI,CAAC;QACjE,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,eAAe,EAAE,CAAC;IACzC,CAAC;IAED;;;;;;OAMG;IACH,KAAK,CAAC,OAAO,CACX,UAAoB,EACpB,IAAQ;QAER,MAAM,EACJ,SAAS,GAAG,KAAK,EACjB,YAAY,GAAG,KAAK,EACpB,MAAM,GAAG,IAAI,EACb,QAAQ,GAAG,KAAK,EAChB,iBAAiB,EACjB,OAAO,EACP,oBAAoB,GAAG,IAAI,CAAC,qBAAqB,GAClD,GAAG,IAAI,IAAI,EAAE,CAAC;QAEf,MAAM,SAAS,GAAG,CAAC,WAAW,EAAE,GAAG,UAAU,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE7F,IAAI,iBAAiB,IAAI,CAAC,gBAAC,CAAC,OAAO,CAAC,iBAAiB,CAAC,EAAE,CAAC;YACvD,SAAS,CAAC,IAAI,CACZ,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAChF,CAAC;QACJ,CAAC;QAED,IAAI,MAAM,EAAE,CAAC;YACX,SAAS,CAAC,IAAI,CAAC,SAAS,EAAE,eAAe,EAAE,GAAG,CAAC,CAAC;QAClD,CAAC;QAED,MAAM,QAAQ,GAAG,oBAAoB,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;QACnF,MAAM,MAAM,GAAG,CAAC,KAAK,EAAE,GAAG,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACxE,gBAAM,CAAC,KAAK,CAAC,OAAO,EAAE,aAAa,MAAM,EAAE,CAAC,CAAC;QAE7C,IAAI,CAAC;YACH,IAAI,YAAY,EAAE,CAAC;gBACjB,MAAM,MAAM,GAAG,IAAI,yBAAU,CAAC,KAAK,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;gBAC1D,MAAM,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBACtB,OAAO,MAA0B,CAAC;YACpC,CAAC;YAED,MAAM,QAAQ,GAAG;gBACf,GAAG,QAAQ;gBACX,GAAG,CAAC,gBAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAC,OAAO,EAAC,CAAC,CAAC,CAAC,EAAE,CAAC;aAC1C,CAAC;YACF,MAAM,MAAM,GAAG,MAAM,IAAA,mBAAI,EAAC,KAAK,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;YAEtD,IAAI,SAAS,EAAE,CAAC;gBACd,gBAAM,CAAC,KAAK,CAAC,OAAO,EAAE,mBAAmB,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;YAC5D,CAAC;YAED,OAAO,MAA0B,CAAC;QACpC,CAAC;QAAC,OAAO,CAAM,EAAE,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC,IAAI,MAAM,6BAA6B,CAAC,CAAC,MAAM,IAAI,CAAC,CAAC,MAAM,IAAI,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;QAC9F,CAAC;IACH,CAAC;IAED,iBAAiB,GAAG,aAAa,CAAC,iBAAiB,CAAC;IACpD,mBAAmB,GAAG,aAAa,CAAC,mBAAmB,CAAC;IACxD,SAAS,GAAG,aAAa,CAAC,SAAS,CAAC;IAEpC,aAAa,GAAG,UAAU,CAAC,aAAa,CAAC;IACzC,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC;IAE/B,SAAS,GAAG,UAAU,CAAC,SAAS,CAAC;IACjC,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC;IAE/B,WAAW,GAAG,UAAU,CAAC,WAAW,CAAC;IAE7B,eAAe;QACrB,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC;YAChD,OAAO,IAAI,CAAC;QACd,CAAC;QAED,MAAM,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QACzC,MAAM,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;YACrD,OAAO,IAAI,CAAC;QACd,CAAC;QACD,OAAO,EAAC,GAAG,EAAE,GAAG,EAAC,CAAC;IACpB,CAAC;CACF;AArGD,8BAqGC"}
|
package/build/lib/types.d.ts
CHANGED
|
@@ -63,6 +63,22 @@ export interface ExecuteOptions {
|
|
|
63
63
|
subcommandOptions?: string[] | string;
|
|
64
64
|
/** Timeout in milliseconds */
|
|
65
65
|
timeout?: number;
|
|
66
|
+
/**
|
|
67
|
+
* Whether to run as the original non-root user when current process is running via sudo
|
|
68
|
+
*
|
|
69
|
+
* If not set, this falls back to `DevicectlOptions.preferNonRootWhenSudo`.
|
|
70
|
+
*/
|
|
71
|
+
runAsNonRootWhenSudo?: boolean;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Options for creating a Devicectl instance
|
|
75
|
+
*/
|
|
76
|
+
export interface DevicectlOptions {
|
|
77
|
+
/**
|
|
78
|
+
* Whether to run `devicectl` as the original non-root user when parent process runs via sudo
|
|
79
|
+
* @default true
|
|
80
|
+
*/
|
|
81
|
+
preferNonRootWhenSudo?: boolean;
|
|
66
82
|
}
|
|
67
83
|
/**
|
|
68
84
|
* Options for asynchronous execution
|
package/build/lib/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../lib/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAE,qBAAqB,EAAC,MAAM,cAAc,CAAC;AAE/D;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,6BAA6B;IAC7B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,0BAA0B;IAC1B,UAAU,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,kCAAkC;IAClC,OAAO,EAAE,OAAO,CAAC;IACjB,gDAAgD;IAChD,gBAAgB,EAAE,OAAO,CAAC;IAC1B,4BAA4B;IAC5B,gBAAgB,EAAE,MAAM,CAAC;IACzB,yBAAyB;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,2CAA2C;IAC3C,UAAU,EAAE,OAAO,CAAC;IACpB,iCAAiC;IACjC,MAAM,EAAE,OAAO,CAAC;IAChB,6CAA6C;IAC7C,WAAW,EAAE,OAAO,CAAC;IACrB,mBAAmB;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,sCAAsC;IACtC,SAAS,EAAE,OAAO,CAAC;IACnB,uBAAuB;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,sBAAsB;IACtB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB;;;OAGG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,oCAAoC;IACpC,iBAAiB,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;IACtC,8BAA8B;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../lib/types.ts"],"names":[],"mappings":"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"}
|
package/lib/devicectl.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {exec, SubProcess} from 'teen_process';
|
|
2
2
|
import _ from 'lodash';
|
|
3
3
|
import logger from '@appium/logger';
|
|
4
|
-
import type {ExecuteOptions, ExecuteResult} from './types';
|
|
4
|
+
import type {DevicectlOptions, ExecuteOptions, ExecuteResult} from './types';
|
|
5
5
|
import * as processMixins from './mixins/process';
|
|
6
6
|
import * as infoMixins from './mixins/info';
|
|
7
7
|
import * as copyMixins from './mixins/copy';
|
|
@@ -9,6 +9,7 @@ import * as listMixins from './mixins/list';
|
|
|
9
9
|
|
|
10
10
|
const XCRUN = 'xcrun';
|
|
11
11
|
const LOG_TAG = 'Devicectl';
|
|
12
|
+
type SudoUser = {uid: number; gid: number};
|
|
12
13
|
|
|
13
14
|
/**
|
|
14
15
|
* Node.js wrapper around Apple's devicectl tool
|
|
@@ -20,14 +21,18 @@ const LOG_TAG = 'Devicectl';
|
|
|
20
21
|
export class Devicectl {
|
|
21
22
|
/** The unique device identifier */
|
|
22
23
|
public readonly udid: string;
|
|
24
|
+
private readonly preferNonRootWhenSudo: boolean;
|
|
25
|
+
private readonly sudoUser: SudoUser | null;
|
|
23
26
|
|
|
24
27
|
/**
|
|
25
28
|
* Creates a new Devicectl instance
|
|
26
29
|
*
|
|
27
30
|
* @param udid - The unique device identifier
|
|
28
31
|
*/
|
|
29
|
-
constructor(udid: string) {
|
|
32
|
+
constructor(udid: string, opts?: DevicectlOptions) {
|
|
30
33
|
this.udid = udid;
|
|
34
|
+
this.preferNonRootWhenSudo = opts?.preferNonRootWhenSudo ?? true;
|
|
35
|
+
this.sudoUser = this.resolveSudoUser();
|
|
31
36
|
}
|
|
32
37
|
|
|
33
38
|
/**
|
|
@@ -48,6 +53,7 @@ export class Devicectl {
|
|
|
48
53
|
noDevice = false,
|
|
49
54
|
subcommandOptions,
|
|
50
55
|
timeout,
|
|
56
|
+
runAsNonRootWhenSudo = this.preferNonRootWhenSudo,
|
|
51
57
|
} = opts ?? {};
|
|
52
58
|
|
|
53
59
|
const finalArgs = ['devicectl', ...subcommand, ...(noDevice ? [] : ['--device', this.udid])];
|
|
@@ -62,17 +68,22 @@ export class Devicectl {
|
|
|
62
68
|
finalArgs.push('--quiet', '--json-output', '-');
|
|
63
69
|
}
|
|
64
70
|
|
|
71
|
+
const userOpts = runAsNonRootWhenSudo && this.sudoUser ? this.sudoUser : undefined;
|
|
65
72
|
const cmdStr = [XCRUN, ...finalArgs].map((arg) => `"${arg}"`).join(' ');
|
|
66
73
|
logger.debug(LOG_TAG, `Executing ${cmdStr}`);
|
|
67
74
|
|
|
68
75
|
try {
|
|
69
76
|
if (asynchronous) {
|
|
70
|
-
const result = new SubProcess(XCRUN, finalArgs);
|
|
77
|
+
const result = new SubProcess(XCRUN, finalArgs, userOpts);
|
|
71
78
|
await result.start(0);
|
|
72
79
|
return result as ExecuteResult<T>;
|
|
73
80
|
}
|
|
74
81
|
|
|
75
|
-
const
|
|
82
|
+
const execOpts = {
|
|
83
|
+
...userOpts,
|
|
84
|
+
...(_.isNumber(timeout) ? {timeout} : {}),
|
|
85
|
+
};
|
|
86
|
+
const result = await exec(XCRUN, finalArgs, execOpts);
|
|
76
87
|
|
|
77
88
|
if (logStdout) {
|
|
78
89
|
logger.debug(LOG_TAG, `Command output: ${result.stdout}`);
|
|
@@ -95,4 +106,17 @@ export class Devicectl {
|
|
|
95
106
|
pullFile = copyMixins.pullFile;
|
|
96
107
|
|
|
97
108
|
listDevices = listMixins.listDevices;
|
|
109
|
+
|
|
110
|
+
private resolveSudoUser(): SudoUser | null {
|
|
111
|
+
if (!process.geteuid || process.geteuid() !== 0) {
|
|
112
|
+
return null;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
const uid = Number(process.env.SUDO_UID);
|
|
116
|
+
const gid = Number(process.env.SUDO_GID);
|
|
117
|
+
if (!Number.isInteger(uid) || !Number.isInteger(gid)) {
|
|
118
|
+
return null;
|
|
119
|
+
}
|
|
120
|
+
return {uid, gid};
|
|
121
|
+
}
|
|
98
122
|
}
|
package/lib/types.ts
CHANGED
|
@@ -66,6 +66,23 @@ export interface ExecuteOptions {
|
|
|
66
66
|
subcommandOptions?: string[] | string;
|
|
67
67
|
/** Timeout in milliseconds */
|
|
68
68
|
timeout?: number;
|
|
69
|
+
/**
|
|
70
|
+
* Whether to run as the original non-root user when current process is running via sudo
|
|
71
|
+
*
|
|
72
|
+
* If not set, this falls back to `DevicectlOptions.preferNonRootWhenSudo`.
|
|
73
|
+
*/
|
|
74
|
+
runAsNonRootWhenSudo?: boolean;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Options for creating a Devicectl instance
|
|
79
|
+
*/
|
|
80
|
+
export interface DevicectlOptions {
|
|
81
|
+
/**
|
|
82
|
+
* Whether to run `devicectl` as the original non-root user when parent process runs via sudo
|
|
83
|
+
* @default true
|
|
84
|
+
*/
|
|
85
|
+
preferNonRootWhenSudo?: boolean;
|
|
69
86
|
}
|
|
70
87
|
|
|
71
88
|
/**
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"device",
|
|
9
9
|
"xcode"
|
|
10
10
|
],
|
|
11
|
-
"version": "1.1
|
|
11
|
+
"version": "1.2.1",
|
|
12
12
|
"author": "Appium Contributors",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"repository": {
|
|
@@ -30,14 +30,13 @@
|
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"lib",
|
|
33
|
-
"build",
|
|
34
|
-
"CHANGELOG.md"
|
|
35
|
-
"!build/test"
|
|
33
|
+
"build/lib",
|
|
34
|
+
"CHANGELOG.md"
|
|
36
35
|
],
|
|
37
36
|
"dependencies": {
|
|
38
37
|
"@appium/logger": "^2.0.0-rc.1",
|
|
39
38
|
"lodash": "^4.2.1",
|
|
40
|
-
"teen_process": "^4.0
|
|
39
|
+
"teen_process": "^4.1.0"
|
|
41
40
|
},
|
|
42
41
|
"scripts": {
|
|
43
42
|
"build": "tsc -b",
|
|
@@ -49,8 +48,8 @@
|
|
|
49
48
|
"format": "prettier -w ./lib ./test",
|
|
50
49
|
"format:check": "prettier --check ./lib ./test",
|
|
51
50
|
"prepare": "npm run build",
|
|
52
|
-
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs
|
|
53
|
-
"e2e-test": "mocha --exit --timeout 5m \"./test/e2e/**/*-specs.
|
|
51
|
+
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.ts\"",
|
|
52
|
+
"e2e-test": "mocha --exit --timeout 5m \"./test/e2e/**/*-specs.ts\""
|
|
54
53
|
},
|
|
55
54
|
"prettier": {
|
|
56
55
|
"bracketSpacing": false,
|
|
@@ -63,6 +62,7 @@
|
|
|
63
62
|
"@appium/types": "^1.0.0-rc.1",
|
|
64
63
|
"@semantic-release/changelog": "^6.0.1",
|
|
65
64
|
"@semantic-release/git": "^10.0.1",
|
|
65
|
+
"@types/chai": "^5.2.3",
|
|
66
66
|
"@types/lodash": "^4.14.196",
|
|
67
67
|
"@types/mocha": "^10.0.1",
|
|
68
68
|
"@types/node": "^25.0.3",
|
|
@@ -73,6 +73,6 @@
|
|
|
73
73
|
"prettier": "^3.0.0",
|
|
74
74
|
"semantic-release": "^25.0.2",
|
|
75
75
|
"ts-node": "^10.9.1",
|
|
76
|
-
"typescript": "^
|
|
76
|
+
"typescript": "^6.0.2"
|
|
77
77
|
}
|
|
78
78
|
}
|
|
@@ -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.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/teen_process/build/lib/types.d.ts","../node_modules/teen_process/build/lib/subprocess.d.ts","../node_modules/teen_process/build/lib/exec.d.ts","../node_modules/teen_process/build/lib/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@appium/logger/build/lib/types.d.ts","../node_modules/@appium/logger/build/lib/secure-values-preprocessor.d.ts","../node_modules/@appium/logger/build/lib/log.d.ts","../node_modules/@appium/logger/build/index.d.ts","../lib/types.ts","../lib/mixins/process.ts","../lib/mixins/info.ts","../lib/mixins/copy.ts","../lib/mixins/list.ts","../lib/devicectl.ts","../lib/index.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/@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":[[67,80,84,85,86,87,88,89,94,157,165,169,172,174,175,176,188],[85,90,94,157,165,169,172,174,175,176,188],[80,85,90,94,157,165,169,172,174,175,176,188],[67,94,157,165,169,172,174,175,176,188],[81,83,94,157,165,169,172,174,175,176,188],[81,82,94,156,157,165,168,169,172,174,175,176,188,193],[81,94,157,165,169,172,174,175,176,188],[94,156,157,165,168,169,172,174,175,176,188,193],[68,70,71,72,73,74,75,76,77,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,71,72,73,74,75,76,77,78,79,80,94,157,165,169,172,174,175,176,188],[69,70,71,72,73,74,75,76,77,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,72,73,74,75,76,77,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,73,74,75,76,77,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,72,74,75,76,77,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,72,73,75,76,77,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,72,73,74,76,77,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,72,73,74,75,77,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,72,73,74,75,76,78,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,72,73,74,75,76,77,79,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,72,73,74,75,76,77,78,80,94,157,165,169,172,174,175,176,188],[68,69,70,71,72,73,74,75,76,77,78,79,94,157,165,169,172,174,175,176,188],[94,154,155,157,165,169,172,174,175,176,188],[94,156,157,165,169,172,174,175,176,188],[157,165,169,172,174,175,176,188],[94,157,165,169,172,174,175,176,188,196],[94,157,158,163,165,168,169,172,174,175,176,178,188,193,205],[94,157,158,159,165,168,169,172,174,175,176,188],[94,157,165,169,172,174,175,176,188],[94,157,160,165,169,172,174,175,176,188,206],[94,157,161,162,165,169,172,174,175,176,179,188],[94,157,162,165,169,172,174,175,176,188,193,202],[94,157,163,165,168,169,172,174,175,176,178,188],[94,156,157,164,165,169,172,174,175,176,188],[94,157,165,166,169,172,174,175,176,188],[94,157,165,167,168,169,172,174,175,176,188],[94,156,157,165,168,169,172,174,175,176,188],[94,157,165,168,169,170,172,174,175,176,188,193,205],[94,157,165,168,169,170,172,174,175,176,188,193,196],[94,144,157,165,168,169,171,172,174,175,176,178,188,193,205],[94,157,165,168,169,171,172,174,175,176,178,188,193,202,205],[94,157,165,169,171,172,173,174,175,176,188,193,202,205],[92,93,94,95,96,97,98,99,100,101,102,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[94,157,165,168,169,172,174,175,176,188],[94,157,165,169,172,174,176,188],[94,157,165,169,172,174,175,176,177,188,205],[94,157,165,168,169,172,174,175,176,178,188,193],[94,157,165,169,172,174,175,176,179,188],[94,157,165,169,172,174,175,176,180,188],[94,157,165,168,169,172,174,175,176,183,188],[94,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[94,157,165,169,172,174,175,176,185,188],[94,157,165,169,172,174,175,176,186,188],[94,157,162,165,169,172,174,175,176,178,188,196],[94,157,165,168,169,172,174,175,176,188,189],[94,157,165,169,172,174,175,176,188,190,206,209],[94,157,165,168,169,172,174,175,176,188,193,195,196],[94,157,165,169,172,174,175,176,188,194,196],[94,157,165,169,172,174,175,176,188,196,206],[94,157,165,169,172,174,175,176,188,197],[94,154,157,165,169,172,174,175,176,188,193,199,205],[94,157,165,169,172,174,175,176,188,193,198],[94,157,165,168,169,172,174,175,176,188,200,201],[94,157,165,169,172,174,175,176,188,200,201],[94,157,162,165,169,172,174,175,176,178,188,193,202],[94,157,165,169,172,174,175,176,188,203],[94,157,165,169,172,174,175,176,178,188,204],[94,157,165,169,171,172,174,175,176,186,188,205],[94,157,165,169,172,174,175,176,188,206,207],[94,157,162,165,169,172,174,175,176,188,207],[94,157,165,169,172,174,175,176,188,193,208],[94,157,165,169,172,174,175,176,177,188,209],[94,157,165,169,172,174,175,176,188,210],[94,157,160,165,169,172,174,175,176,188],[94,157,162,165,169,172,174,175,176,188],[94,157,165,169,172,174,175,176,188,206],[94,144,157,165,169,172,174,175,176,188],[94,157,165,169,172,174,175,176,188,205],[94,157,165,169,172,174,175,176,188,211],[94,157,165,169,172,174,175,176,183,188],[94,157,165,169,172,174,175,176,188,201],[94,144,157,165,168,169,170,172,174,175,176,183,188,193,196,205,208,209,211],[94,157,165,169,172,174,175,176,188,193,212],[64,94,157,165,169,172,174,175,176,188],[64,65,66,94,157,158,165,169,172,174,175,176,188],[64,94,157,158,165,168,169,172,174,175,176,188],[94,157,158,165,169,172,174,175,176,188],[94,109,112,115,116,157,165,169,172,174,175,176,188,205],[94,112,157,165,169,172,174,175,176,188,193,205],[94,112,116,157,165,169,172,174,175,176,188,205],[94,157,165,169,172,174,175,176,188,193],[94,106,157,165,169,172,174,175,176,188],[94,110,157,165,169,172,174,175,176,188],[94,108,109,112,157,165,169,172,174,175,176,188,205],[94,157,165,169,172,174,175,176,178,188,202],[94,157,165,169,172,174,175,176,188,213],[94,106,157,165,169,172,174,175,176,188,213],[94,108,112,157,165,169,172,174,175,176,178,188,205],[94,103,104,105,107,111,157,165,168,169,172,174,175,176,188,193,205],[94,112,121,129,157,165,169,172,174,175,176,188],[94,104,110,157,165,169,172,174,175,176,188],[94,112,138,139,157,165,169,172,174,175,176,188],[94,104,107,112,157,165,169,172,174,175,176,188,196,205,213],[94,112,157,165,169,172,174,175,176,188],[94,108,112,157,165,169,172,174,175,176,188,205],[94,103,157,165,169,172,174,175,176,188],[94,106,107,108,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,143,157,165,169,172,174,175,176,188],[94,112,131,134,157,165,169,172,174,175,176,188],[94,112,121,122,123,157,165,169,172,174,175,176,188],[94,110,112,122,124,157,165,169,172,174,175,176,188],[94,111,157,165,169,172,174,175,176,188],[94,104,106,112,157,165,169,172,174,175,176,188],[94,112,116,122,124,157,165,169,172,174,175,176,188],[94,116,157,165,169,172,174,175,176,188],[94,110,112,115,157,165,169,172,174,175,176,188,205],[94,104,108,112,121,157,165,169,172,174,175,176,188],[94,112,131,157,165,169,172,174,175,176,188],[94,124,157,165,169,172,174,175,176,188],[94,106,112,138,157,165,169,172,174,175,176,188,196,211,213]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"02854570bb33e444db16b9c99fea2a2ce0e0db79f84dd544bd64b559b1ea6a1c","impliedFormat":1},{"version":"cacac94dad1cc7f7ef0326a8b8cdb2daa456c352c46ad58ee2ac84ce91224293","impliedFormat":1},{"version":"4ad9635e5136b4f6f19b057026795bced0e33dd781eb8d98e9b27b578cdf18c4","impliedFormat":1},{"version":"5bec45a71f4a3c950af998fc5e5c57c08c11c290ff1f22f9df7a5ec32bf6ce3d","impliedFormat":1},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","impliedFormat":1},{"version":"0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"0d6318a092d6b003cddbbbb50f62615e68470a1d1d3f5bdb089405f573c2e5e9","impliedFormat":1},{"version":"792441f3474fbc9cc78d47981c067ef4859c6ea716ab5d9fa1b7bfc6310b26db","impliedFormat":1},{"version":"1e5f1d1f671fe16a4507d5b771685b82c7b5b898bebf864582881b133b95ac1d","impliedFormat":1},{"version":"d6076b41c73c486fbe2e8ddb37d43fd5dd1349d5ea29db983ba697f663646da6","impliedFormat":1},{"version":"d87d082123b9c0915bba934e1afe6912e57ca5cf04dc463fbf77422a871a5918","signature":"393bfcc0d64eed21cb8afbf338392cfaca0f2fe038e4e2740646b12c793faecb","impliedFormat":1},{"version":"c107ea04f543b8b854a615d8e12f1930cea1c9fae7e1deee0caa4977fab7e506","signature":"2e7b685d489813a38259923c1c4af1496ca7ac5c93c535493e2f7b56782b301f","impliedFormat":1},{"version":"4318a46e2de1f936970cd19a8add801f347eab3e9fdfd59e62587cc839444a2f","signature":"6b31a2c7a8e4a9cafa3f0a5ef42cc62b00cb50fc0ed52e048eb92dc1e1231b02","impliedFormat":1},{"version":"ff69af1c2f3475ce9390b373441aa013535fe380681d313b3230f3472e2ed546","signature":"cf936c8a43d6853bc76d938e0f756f1aa94628a7a06327a984b6e69c53723808","impliedFormat":1},{"version":"42b71b02845a80bba6105ce735bc3f998958f006d1301f0e547483ed0d1b343d","signature":"ab39f0e1fc5a21ff2447e6103bdf08a707f4bb2ccee9a5a84dea86c4214aac40","impliedFormat":1},{"version":"8ca00bd74768dbfe3c17ea5a75730e3acefa6535bb098acaff58c7ea8e4689a2","signature":"14e3a6cbfe2ca0cb9a40fb29356292a237c2b19da7ee1a5a674b0f065dd12cfc","impliedFormat":1},{"version":"bb46ac69df86cc555af3a4af3870f77d74800f0deda688079931f6d7b345952e","signature":"e1b0135a73df09526b177be282ff7ec9b2747bed1072d459a7a62c85513a253a","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","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":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","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":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","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":"3fad5618174d74a34ee006406d4eb37e8d07dd62eb1315dbf52f48d31a337547","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b50a819485ffe0d237bf0d131e92178d14d11e2aa873d73615a9ec578b341f5","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"12d602a8fe4c2f2ba4f7804f5eda8ba07e0c83bf5cf0cda8baffa2e9967bfb77","affectsGlobalScope":true,"impliedFormat":1},{"version":"a856ab781967b62b288dfd85b860bef0e62f005ed4b1b8fa25c53ce17856acaf","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"8db46b61a690f15b245cf16270db044dc047dce9f93b103a59f50262f677ea1f","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"959d0327c96dd9bb5521f3ed6af0c435996504cc8dd46baa8e12cb3b3518cef1","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"266bee0a41e9c3ba335583e21e9277ae03822402cf5e8e1d99f5196853613b98","affectsGlobalScope":true,"impliedFormat":1},{"version":"386606f8a297988535cb1401959041cfa7f59d54b8a9ed09738e65c98684c976","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"90a278f5fab7557e69e97056c0841adf269c42697194f0bd5c5e69152637d4b3","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f263485c9ca90df9fe7bb3a906db9701997dc6cae86ace1f8106ac8d2f7f677b","impliedFormat":1},{"version":"1edcf2f36fc332615846bde6dcc71a8fe526065505bc5e3dcfd65a14becdf698","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"1dbca38aa4b0db1f4f9e6edacc2780af7e028b733d2a98dd3598cd235ca0c97d","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"19143c930aef7ccf248549f3e78992f2f1049118ec5d4622e95025057d8e392b","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"cca8917838a876e2d7016c9b6af57cbf11fdf903c5fdd8e613fa31840b2957bf","impliedFormat":1},{"version":"d91ae55e4282c22b9c21bc26bd3ef637d3fe132507b10529ae68bf76f5de785b","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"7e8a671604329e178bb479c8f387715ebd40a091fc4a7552a0a75c2f3a21c65c","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"4c5e90ddbcd177ad3f2ffc909ae217c87820f1e968f6959e4b6ba38a8cec935e","impliedFormat":1},{"version":"b70dd9a44e1ac42f030bb12e7d79117eac7cb74170d72d381a1e7913320af23a","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[[85,91]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":199,"outDir":"./","removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"stripInternal":true,"target":9},"referencedMap":[[90,1],[91,2],[88,2],[87,2],[89,2],[86,3],[85,4],[84,5],[83,6],[82,7],[81,8],[69,9],[70,10],[68,11],[71,12],[72,13],[73,14],[74,15],[75,16],[76,17],[77,18],[78,19],[79,20],[80,21],[154,22],[155,22],[156,23],[94,24],[157,25],[158,26],[159,27],[92,28],[160,29],[161,30],[162,31],[163,32],[164,33],[165,34],[166,34],[167,35],[168,36],[169,37],[170,38],[95,28],[93,28],[171,39],[172,40],[173,41],[213,42],[174,43],[175,44],[176,43],[177,45],[178,46],[179,47],[180,48],[181,48],[182,48],[183,49],[184,50],[185,51],[186,52],[187,53],[188,54],[189,54],[190,55],[191,28],[192,28],[193,56],[194,57],[195,56],[196,58],[197,59],[198,60],[199,61],[200,62],[201,63],[202,64],[203,65],[204,66],[205,67],[206,68],[207,69],[208,70],[209,71],[210,72],[96,43],[97,28],[98,73],[99,74],[100,28],[101,75],[102,28],[145,76],[146,77],[147,78],[148,78],[149,79],[150,28],[151,25],[152,80],[153,77],[211,81],[212,82],[66,83],[67,84],[65,85],[64,86],[62,28],[63,28],[12,28],[11,28],[2,28],[13,28],[14,28],[15,28],[16,28],[17,28],[18,28],[19,28],[20,28],[3,28],[21,28],[22,28],[4,28],[23,28],[27,28],[24,28],[25,28],[26,28],[28,28],[29,28],[30,28],[5,28],[31,28],[32,28],[33,28],[34,28],[6,28],[38,28],[35,28],[36,28],[37,28],[39,28],[7,28],[40,28],[45,28],[46,28],[41,28],[42,28],[43,28],[44,28],[8,28],[50,28],[47,28],[48,28],[49,28],[51,28],[9,28],[52,28],[53,28],[54,28],[56,28],[55,28],[57,28],[58,28],[10,28],[59,28],[1,28],[60,28],[61,28],[121,87],[133,88],[118,89],[134,90],[143,91],[109,92],[110,93],[108,94],[142,95],[137,96],[141,97],[112,98],[130,99],[111,100],[140,101],[106,102],[107,96],[113,103],[114,28],[120,104],[117,103],[104,105],[144,106],[135,107],[124,108],[123,103],[125,109],[128,110],[122,111],[126,112],[138,95],[115,113],[116,114],[129,115],[105,90],[132,116],[131,103],[119,114],[127,117],[136,28],[103,28],[139,118]],"latestChangedDtsFile":"./lib/index.d.ts","version":"5.9.3"}
|