@shapeshiftoss/hdwallet-walletconnect 1.23.1-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,394 @@
1
+ import * as core from "@shapeshiftoss/hdwallet-core";
2
+ import WalletConnectProvider from "@walletconnect/web3-provider";
3
+ import isObject from "lodash/isObject";
4
+
5
+ import * as eth from "./ethereum";
6
+
7
+ interface WCState {
8
+ connected?: boolean;
9
+ chainId: number;
10
+ accounts: string[];
11
+ address: string;
12
+ }
13
+
14
+ export function isWalletConnect(wallet: core.HDWallet): wallet is WalletConnectHDWallet {
15
+ return isObject(wallet) && (wallet as any)._isWalletConnect;
16
+ }
17
+
18
+ /**
19
+ * WalletConnect Wallet Info
20
+ *
21
+ * Supported JSON-RPC API Methods:
22
+ * - personal_sign
23
+ * - eth_sign
24
+ * - eth_signTypedData
25
+ * - eth_sendTransaction
26
+ * - eth_signTransaction
27
+ * 🚧 eth_sendRawTransaction
28
+ * @see https://docs.walletconnect.com/
29
+ */
30
+ export class WalletConnectWalletInfo implements core.HDWalletInfo, core.ETHWalletInfo {
31
+ readonly _supportsETHInfo = true;
32
+ readonly _supportsBTCInfo = false;
33
+ public getVendor(): string {
34
+ return "WalletConnect";
35
+ }
36
+
37
+ public hasOnDevicePinEntry(): boolean {
38
+ return false;
39
+ }
40
+
41
+ public hasOnDevicePassphrase(): boolean {
42
+ return false;
43
+ }
44
+
45
+ public hasOnDeviceDisplay(): boolean {
46
+ return false;
47
+ }
48
+
49
+ public hasOnDeviceRecovery(): boolean {
50
+ return false;
51
+ }
52
+
53
+ public hasNativeShapeShift(): boolean {
54
+ return false;
55
+ }
56
+
57
+ public supportsOfflineSigning(): boolean {
58
+ return false;
59
+ }
60
+
61
+ public supportsBroadcast(): boolean {
62
+ return true;
63
+ }
64
+
65
+ public describePath(msg: core.DescribePath): core.PathDescription {
66
+ switch (msg.coin) {
67
+ case "Ethereum":
68
+ return eth.describeETHPath(msg.path);
69
+ default:
70
+ throw new Error("Unsupported path");
71
+ }
72
+ }
73
+
74
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
75
+ public ethNextAccountPath(_msg: core.ETHAccountPath): core.ETHAccountPath | undefined {
76
+ return undefined;
77
+ }
78
+
79
+ public async ethSupportsNetwork(chainId = 1): Promise<boolean> {
80
+ return chainId === 1;
81
+ }
82
+
83
+ public async ethSupportsSecureTransfer(): Promise<boolean> {
84
+ return false;
85
+ }
86
+
87
+ public ethSupportsNativeShapeShift(): boolean {
88
+ return false;
89
+ }
90
+
91
+ public async ethSupportsEIP1559(): Promise<boolean> {
92
+ return false;
93
+ }
94
+
95
+ public ethGetAccountPaths(msg: core.ETHGetAccountPath): Array<core.ETHAccountPath> {
96
+ const slip44 = core.slip44ByCoin(msg.coin);
97
+ if (slip44 === undefined) return [];
98
+ return [
99
+ {
100
+ addressNList: [0x80000000 + 44, 0x80000000 + slip44, 0x80000000 + msg.accountIdx, 0, 0],
101
+ hardenedPath: [0x80000000 + 44, 0x80000000 + slip44, 0x80000000 + msg.accountIdx],
102
+ relPath: [0, 0],
103
+ description: "WalletConnect",
104
+ },
105
+ ];
106
+ }
107
+ }
108
+
109
+ export class WalletConnectHDWallet implements core.HDWallet, core.ETHWallet {
110
+ readonly _supportsETH = true;
111
+ readonly _supportsETHInfo = true;
112
+ readonly _supportsBTCInfo = false;
113
+ readonly _supportsBTC = false;
114
+ readonly _isWalletConnect = true;
115
+
116
+ info: WalletConnectWalletInfo & core.HDWalletInfo;
117
+ provider: WalletConnectProvider;
118
+ connected = false;
119
+ chainId = -1;
120
+ accounts: string[] = [];
121
+ ethAddress = "";
122
+
123
+ constructor(provider: WalletConnectProvider) {
124
+ this.provider = provider;
125
+ this.info = new WalletConnectWalletInfo();
126
+ }
127
+
128
+ async getFeatures(): Promise<Record<string, any>> {
129
+ return {};
130
+ }
131
+
132
+ public async isLocked(): Promise<boolean> {
133
+ return false;
134
+ }
135
+
136
+ public getVendor(): string {
137
+ return "WalletConnect";
138
+ }
139
+
140
+ public async getModel(): Promise<string> {
141
+ return "WalletConnect";
142
+ }
143
+
144
+ public async getLabel(): Promise<string> {
145
+ return "WalletConnect";
146
+ }
147
+
148
+ /**
149
+ * Initialize
150
+ *
151
+ * Subscribes to EIP-1193 events
152
+ */
153
+ public async initialize(): Promise<void> {
154
+ this.provider.connector.on("session_update", async (error, payload) => {
155
+ if (error) {
156
+ throw error;
157
+ }
158
+
159
+ const { chainId, accounts } = payload.params[0];
160
+ this.onSessionUpdate(accounts, chainId);
161
+ });
162
+
163
+ this.provider.connector.on("connect", (error, payload) => {
164
+ if (error) {
165
+ throw error;
166
+ }
167
+
168
+ this.onConnect(payload);
169
+ });
170
+
171
+ this.provider.connector.on("disconnect", (error) => {
172
+ if (error) {
173
+ throw error;
174
+ }
175
+
176
+ this.onDisconnect();
177
+ });
178
+
179
+ // Display QR modal to connect
180
+ await this.provider.enable();
181
+
182
+ if (this.provider.connector.connected) {
183
+ const { chainId, accounts } = this.provider.connector;
184
+ const [address] = accounts;
185
+ this.setState({ connected: true, chainId, accounts, address });
186
+ this.onSessionUpdate(accounts, chainId);
187
+ }
188
+ }
189
+
190
+ public hasOnDevicePinEntry(): boolean {
191
+ return this.info.hasOnDevicePinEntry();
192
+ }
193
+
194
+ public hasOnDevicePassphrase(): boolean {
195
+ return this.info.hasOnDevicePassphrase();
196
+ }
197
+
198
+ public hasOnDeviceDisplay(): boolean {
199
+ return this.info.hasOnDeviceDisplay();
200
+ }
201
+
202
+ public hasOnDeviceRecovery(): boolean {
203
+ return this.info.hasOnDeviceRecovery();
204
+ }
205
+
206
+ public hasNativeShapeShift(srcCoin: core.Coin, dstCoin: core.Coin): boolean {
207
+ return this.info.hasNativeShapeShift(srcCoin, dstCoin);
208
+ }
209
+
210
+ /**
211
+ * Supports Offline Signing
212
+ *
213
+ * Offline signing is supported when `signTransaction` does not broadcast
214
+ * the tx message. WalletConnect's core Connector implementation always
215
+ * makes a request, so offline signing is not supported.
216
+ * @see https://github.com/WalletConnect/walletconnect-monorepo/blob/7573fa9e1d91588d4af3409159b4fd2f9448a0e2/packages/clients/core/src/index.ts#L630
217
+ */
218
+ public supportsOfflineSigning(): boolean {
219
+ return false;
220
+ }
221
+
222
+ public supportsBroadcast(): boolean {
223
+ return true;
224
+ }
225
+
226
+ public async clearSession(): Promise<void> {
227
+ this.disconnect();
228
+ }
229
+
230
+ public async ping(msg: core.Ping): Promise<core.Pong> {
231
+ // ping function for Wallet Connect?
232
+ return { msg: msg.msg };
233
+ }
234
+
235
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
236
+ public async sendPin(_pin: string): Promise<void> {
237
+ // no concept of pin in WalletConnect
238
+ }
239
+
240
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
241
+ public async sendPassphrase(_passphrase: string): Promise<void> {
242
+ // cannot send passphrase. Could show the widget?
243
+ }
244
+
245
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
246
+ public async sendCharacter(_character: string): Promise<void> {
247
+ // no concept of sendCharacter
248
+ }
249
+
250
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
251
+ public async sendWord(_word: string): Promise<void> {
252
+ // no concept of sendWord
253
+ }
254
+
255
+ public async cancel(): Promise<void> {
256
+ // no concept of cancel
257
+ }
258
+
259
+ public async wipe(): Promise<void> {
260
+ return;
261
+ }
262
+
263
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
264
+ public async reset(_msg: core.ResetDevice): Promise<void> {
265
+ return;
266
+ }
267
+
268
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
269
+ public async recover(_msg: core.RecoverDevice): Promise<void> {
270
+ // no concept of recover
271
+ }
272
+
273
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
274
+ public async loadDevice(_msg: core.LoadDevice): Promise<void> {
275
+ return;
276
+ }
277
+
278
+ public describePath(msg: core.DescribePath): core.PathDescription {
279
+ return this.info.describePath(msg);
280
+ }
281
+
282
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
283
+ public async getPublicKeys(_msg: Array<core.GetPublicKey>): Promise<Array<core.PublicKey | null>> {
284
+ // Ethereum public keys are not exposed by the RPC API
285
+ return [];
286
+ }
287
+
288
+ public async isInitialized(): Promise<boolean> {
289
+ return true;
290
+ }
291
+
292
+ public async disconnect(): Promise<void> {
293
+ this.provider.disconnect();
294
+ }
295
+
296
+ public async ethSupportsNetwork(chainId = 1): Promise<boolean> {
297
+ return chainId === 1;
298
+ }
299
+
300
+ public async ethSupportsSecureTransfer(): Promise<boolean> {
301
+ return false;
302
+ }
303
+
304
+ public ethSupportsNativeShapeShift(): boolean {
305
+ return false;
306
+ }
307
+
308
+ public async ethSupportsEIP1559(): Promise<boolean> {
309
+ return false;
310
+ }
311
+
312
+ public ethGetAccountPaths(msg: core.ETHGetAccountPath): Array<core.ETHAccountPath> {
313
+ return this.info.ethGetAccountPaths(msg);
314
+ }
315
+
316
+ public ethNextAccountPath(msg: core.ETHAccountPath): core.ETHAccountPath | undefined {
317
+ return this.info.ethNextAccountPath(msg);
318
+ }
319
+
320
+ public async ethGetAddress(): Promise<string | null> {
321
+ return this.ethAddress;
322
+ }
323
+
324
+ /**
325
+ * Ethereum Signed Transaction
326
+ *
327
+ * @see https://docs.walletconnect.com/client-api#sign-transaction-eth_signtransaction
328
+ */
329
+ public async ethSignTx(msg: core.ETHSignTx): Promise<core.ETHSignedTx | null> {
330
+ return eth.ethSignTx({ ...msg, from: this.ethAddress }, this.provider);
331
+ }
332
+
333
+ /**
334
+ * Ethereum Send Transaction
335
+ *
336
+ * @see https://docs.walletconnect.com/client-api#send-transaction-eth_sendtransaction
337
+ */
338
+ public async ethSendTx(msg: core.ETHSignTx): Promise<core.ETHTxHash | null> {
339
+ return eth.ethSendTx({ ...msg, from: this.ethAddress }, this.provider);
340
+ }
341
+
342
+ /**
343
+ * Ethereum Sign Message
344
+ *
345
+ * @see https://docs.walletconnect.com/client-api#sign-message-eth_sign
346
+ */
347
+ public async ethSignMessage(msg: core.ETHSignMessage): Promise<core.ETHSignedMessage | null> {
348
+ return eth.ethSignMessage({ data: msg.message, fromAddress: this.ethAddress }, this.provider);
349
+ }
350
+
351
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
352
+ public async ethVerifyMessage(msg: core.ETHVerifyMessage): Promise<boolean | null> {
353
+ console.error("Method ethVerifyMessage unsupported for WalletConnect wallet!");
354
+ return null;
355
+ }
356
+
357
+ public async getDeviceID(): Promise<string> {
358
+ return "wc:" + (await this.ethGetAddress());
359
+ }
360
+
361
+ public async getFirmwareVersion(): Promise<string> {
362
+ return "WalletConnect";
363
+ }
364
+
365
+ private onConnect(payload: any) {
366
+ const { accounts, chainId } = payload.params[0];
367
+ const [address] = accounts;
368
+ this.setState({ connected: true, chainId, accounts, address });
369
+ }
370
+
371
+ private onSessionUpdate(accounts: string[], chainId: number) {
372
+ const [address] = accounts;
373
+ this.setState({ accounts, address, chainId });
374
+ }
375
+
376
+ /**
377
+ * onDisconnect
378
+ *
379
+ * Resets state
380
+ */
381
+ private onDisconnect() {
382
+ this.setState({ connected: false, chainId: 1, accounts: [], address: "" });
383
+ }
384
+
385
+ private setState(config: WCState) {
386
+ const { connected, chainId, accounts, address } = config;
387
+ if (connected !== undefined) {
388
+ this.connected = connected;
389
+ }
390
+ this.chainId = chainId;
391
+ this.accounts = accounts;
392
+ this.ethAddress = address;
393
+ }
394
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "src",
5
+ "outDir": "dist"
6
+ },
7
+ "include": ["src/**/*"],
8
+ "exclude": ["node_modules", "dist"],
9
+ "references": [{ "path": "../hdwallet-core" }]
10
+ }
@@ -0,0 +1 @@
1
+ {"program":{"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.dom.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.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.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/bitcoin.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/cosmos.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/debuglink.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/eos.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/ethereum.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/fio.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/kava.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/osmosis.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/ripple.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/secret.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/terra.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/thorchain.d.ts","../../node_modules/eventemitter2/eventemitter2.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/keyring.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/transport.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/wallet.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/binance.d.ts","../../node_modules/@types/google-protobuf/index.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/event.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/exceptions.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.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/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/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/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/string_decoder.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/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/rxjs/internal/subscription.d.ts","../../node_modules/rxjs/internal/types.d.ts","../../node_modules/rxjs/internal/subscriber.d.ts","../../node_modules/rxjs/internal/operator.d.ts","../../node_modules/rxjs/internal/observable/iif.d.ts","../../node_modules/rxjs/internal/observable/throwerror.d.ts","../../node_modules/rxjs/internal/observable.d.ts","../../node_modules/rxjs/internal/subject.d.ts","../../node_modules/rxjs/internal/observable/connectableobservable.d.ts","../../node_modules/rxjs/internal/operators/groupby.d.ts","../../node_modules/rxjs/internal/symbol/observable.d.ts","../../node_modules/rxjs/internal/behaviorsubject.d.ts","../../node_modules/rxjs/internal/replaysubject.d.ts","../../node_modules/rxjs/internal/asyncsubject.d.ts","../../node_modules/rxjs/internal/scheduler.d.ts","../../node_modules/rxjs/internal/scheduler/action.d.ts","../../node_modules/rxjs/internal/scheduler/asyncscheduler.d.ts","../../node_modules/rxjs/internal/scheduler/asyncaction.d.ts","../../node_modules/rxjs/internal/scheduler/asapscheduler.d.ts","../../node_modules/rxjs/internal/scheduler/asap.d.ts","../../node_modules/rxjs/internal/scheduler/async.d.ts","../../node_modules/rxjs/internal/scheduler/queuescheduler.d.ts","../../node_modules/rxjs/internal/scheduler/queue.d.ts","../../node_modules/rxjs/internal/scheduler/animationframescheduler.d.ts","../../node_modules/rxjs/internal/scheduler/animationframe.d.ts","../../node_modules/rxjs/internal/scheduler/virtualtimescheduler.d.ts","../../node_modules/rxjs/internal/notification.d.ts","../../node_modules/rxjs/internal/util/pipe.d.ts","../../node_modules/rxjs/internal/util/noop.d.ts","../../node_modules/rxjs/internal/util/identity.d.ts","../../node_modules/rxjs/internal/util/isobservable.d.ts","../../node_modules/rxjs/internal/util/argumentoutofrangeerror.d.ts","../../node_modules/rxjs/internal/util/emptyerror.d.ts","../../node_modules/rxjs/internal/util/objectunsubscribederror.d.ts","../../node_modules/rxjs/internal/util/unsubscriptionerror.d.ts","../../node_modules/rxjs/internal/util/timeouterror.d.ts","../../node_modules/rxjs/internal/observable/bindcallback.d.ts","../../node_modules/rxjs/internal/observable/bindnodecallback.d.ts","../../node_modules/rxjs/internal/innersubscriber.d.ts","../../node_modules/rxjs/internal/outersubscriber.d.ts","../../node_modules/rxjs/internal/observable/combinelatest.d.ts","../../node_modules/rxjs/internal/observable/concat.d.ts","../../node_modules/rxjs/internal/observable/defer.d.ts","../../node_modules/rxjs/internal/observable/empty.d.ts","../../node_modules/rxjs/internal/observable/forkjoin.d.ts","../../node_modules/rxjs/internal/observable/from.d.ts","../../node_modules/rxjs/internal/observable/fromevent.d.ts","../../node_modules/rxjs/internal/observable/fromeventpattern.d.ts","../../node_modules/rxjs/internal/observable/generate.d.ts","../../node_modules/rxjs/internal/observable/interval.d.ts","../../node_modules/rxjs/internal/observable/merge.d.ts","../../node_modules/rxjs/internal/observable/never.d.ts","../../node_modules/rxjs/internal/observable/of.d.ts","../../node_modules/rxjs/internal/observable/onerrorresumenext.d.ts","../../node_modules/rxjs/internal/observable/pairs.d.ts","../../node_modules/rxjs/internal/observable/partition.d.ts","../../node_modules/rxjs/internal/observable/race.d.ts","../../node_modules/rxjs/internal/observable/range.d.ts","../../node_modules/rxjs/internal/observable/timer.d.ts","../../node_modules/rxjs/internal/observable/using.d.ts","../../node_modules/rxjs/internal/observable/zip.d.ts","../../node_modules/rxjs/internal/scheduled/scheduled.d.ts","../../node_modules/rxjs/internal/config.d.ts","../../node_modules/rxjs/index.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/utils.d.ts","./node_modules/@shapeshiftoss/hdwallet-core/dist/index.d.ts","../../node_modules/@walletconnect/http-connection/node_modules/eventemitter3/index.d.ts","../../node_modules/@walletconnect/http-connection/dist/cjs/index.d.ts","../../node_modules/@walletconnect/types/index.d.ts","../../node_modules/@walletconnect/web3-provider/dist/cjs/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/@types/lodash/isobject.d.ts","./src/ethereum.ts","./src/walletconnect.ts","./src/adapter.ts","./src/index.ts","../../node_modules/@types/asn1js/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/bchaddrjs/index.d.ts","../../node_modules/@types/big.js/index.d.ts","../../node_modules/@types/bn.js/index.d.ts","../../node_modules/base-x/src/index.d.ts","../../node_modules/@types/bs58/index.d.ts","../../node_modules/@types/bs58check/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/create-hash/index.d.ts","../../node_modules/@types/crypto-js/index.d.ts","../../node_modules/@types/elliptic/node_modules/@types/bn.js/index.d.ts","../../node_modules/@types/elliptic/index.d.ts","../../node_modules/@types/ethereumjs-tx/node_modules/@types/bn.js/index.d.ts","../../node_modules/@types/ethereumjs-tx/index.d.ts","../../node_modules/@types/eventsource/dom-monkeypatch.d.ts","../../node_modules/@types/eventsource/index.d.ts","../../node_modules/@types/fast-text-encoding/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/icepick/index.d.ts","../../node_modules/@types/inquirer/lib/objects/choice.d.ts","../../node_modules/@types/inquirer/lib/objects/separator.d.ts","../../node_modules/@types/inquirer/lib/objects/choices.d.ts","../../node_modules/@types/inquirer/lib/utils/screen-manager.d.ts","../../node_modules/@types/inquirer/lib/prompts/base.d.ts","../../node_modules/@types/inquirer/lib/utils/paginator.d.ts","../../node_modules/@types/inquirer/lib/prompts/checkbox.d.ts","../../node_modules/@types/inquirer/lib/prompts/confirm.d.ts","../../node_modules/@types/inquirer/lib/prompts/editor.d.ts","../../node_modules/@types/inquirer/lib/prompts/expand.d.ts","../../node_modules/@types/inquirer/lib/prompts/input.d.ts","../../node_modules/@types/inquirer/lib/prompts/list.d.ts","../../node_modules/@types/inquirer/lib/prompts/number.d.ts","../../node_modules/@types/inquirer/lib/prompts/password.d.ts","../../node_modules/@types/inquirer/lib/prompts/rawlist.d.ts","../../node_modules/@types/inquirer/lib/utils/events.d.ts","../../node_modules/@types/inquirer/lib/utils/readline.d.ts","../../node_modules/@types/inquirer/lib/utils/utils.d.ts","../../node_modules/@types/through/index.d.ts","../../node_modules/@types/inquirer/lib/ui/baseui.d.ts","../../node_modules/@types/inquirer/lib/ui/bottom-bar.d.ts","../../node_modules/@types/inquirer/lib/ui/prompt.d.ts","../../node_modules/@types/inquirer/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/difflines.d.ts","../../node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/js-levenshtein/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/ledgerhq__hw-transport/index.d.ts","../../node_modules/@types/long/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/node-hid/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/pbkdf2/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/randombytes/index.d.ts","../../node_modules/@types/secp256k1/index.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/set-cookie-parser/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tiny-secp256k1/index.d.ts","../../node_modules/@types/urijs/dom-monkeypatch.d.ts","../../node_modules/@types/urijs/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/w3c-web-hid/index.d.ts","../../node_modules/@types/w3c-web-usb/index.d.ts","../../node_modules/@types/wif/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"296227b157758c15c4cc37c71f91ef83e12f3f7239817c4a31891a3d0cca2a08","0e019b6319e35c867f3b0387ee88f2fd601c5006ab7448c3a736b7b3bd156475","8fbe0bce8a907e919ed549516ced492a96d9ed6ec48cab2a62aef92c12c8a3eb","5b7df3d0b4e5f639d4ec797fa1d2b35086a1ae33078ea45278bd79b9cac6a6c7","45d56133bd3e3862ee22f7b05d3ef07b07a329e1bf91e5beb6fcfe2818ba6e02","0ce4ea218d791df793475b09eb5ac650c92a1b87dce27a6d19ea03fc53ae32f6","94839cbc853c5af5dac224240104b7460a11aba23c8174b24c5d916ed82058b3","e107162d6586f60a92aa72284573e8b45445268f43b234101d2ab403cde7f595","7f10467d4b0b6f18d7d1f1112c7a1a3c32c7febe8d2acded071d301977454feb","c44e79842d11240627e3973a08da84d4e197640863e66daa4ab593d32a4f96d0","f0105721bb56a2168c69ff87118e423c4aed3cb7e71cc026950fbf64102bf01f","8ab809fd3ea03eff871b0769dac52735b22193a1cfb8d26c37409d90bc12a296","b0aee3205e95d808c67b2238f937f5dd4a8ee11ffbe042c056f875981a2b627d","6cc54e7bea5143529f204aa8f14c6622c674a13e5bb660fa5e18cf04a574ec70","d0c394876c9357436b800884f14acbfa9946340b723a8061928e7bce9ec047f7","3b2debd091e244254113fa4033b79fae066b1c8eb67ff8893f8563455a2b5832","a9a245e6d896d5fffa12b1f3cebcd83008f259bf032c5a02567fd28c64d3d474","6fac4580509499548f07cd24cea9e46183d062919f625bc162e854ab5310a795","9987ba110bf5684786f6adbd299e9c2f5ee45421e3de90875f7348db3968c874","85717edce973c3340a6715988228c841465dbfbe94397395ade8c5e29a8fd726","ae02396b40b1b6f448a5b610d6b8c34bcdf18a568ac8fa9ab23e1e4784959003",{"version":"bf629ebbac2c65601bcb5c032644023a2b4b3b1151c0d1bf60ced7c35cc81b5d","affectsGlobalScope":true},"9d07804fffa0680a15b100ea9312078ffd9779429719240d3576bb592511bf31",{"version":"9adf779532ec8ce69192cace098bad43e000f14aeb5d76a53a708fca1cf522a4","affectsGlobalScope":true},"d1b94ecf8d7077c19a5f1c095d74ed3e559ce1eb56e4fe0a26bb1aa1abec5e64","ec51a04fcf9460704972d6f4ad4e2ad6ebdccdc178e5896a6e9ee705fa019c07",{"version":"fc6eaec79a8c780a7075ed62c82d94f292cce50b339ae95c256c818995a54fef","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","26d2d7f1641db03285a8f5ed95fb1f42a4caf8df222e36754d438403350aca7b","213536e5e9a2af58caa431dd9ee619ee01bd888e86afd66c96369a321a56aca3","62dd9da839184d7f205604d6f449bfbed6b2b5141e4325b914448fd55865cb93","0b94777a9f37fabc830f7b2059489f8763a1c90977cc31f489aaaffc4e7aeaa1","e7517b142aa0dd024ade4d0742298a76eabcbd906a33783a35dc79805b9f2423","e7cfeeca82ca81101e2f58e97b160058f3aedaf175ceb9ae4fe7cd0cedaa1fb7",{"version":"5a66ce5569c85d17c8d2ef1c0fde85f3474e74122e6d6b38120155677de17904","affectsGlobalScope":true},"a219441e8a436d3c28e28f2d3c4a3693d54dae6482d97b3ef91909d04548a1bd","84794740590d050a719c7c5f59ee70d19e84b8a1d4a3e25edbedc11e1492830c","582096bfd96a8dc9a59305d2d014096e3372b1af2fbc8558236d31a52265b5a7","96b8bc3c8a1445ccc2b5a5f7f9dbc6953fcc781ad58e238215d61260404c7c17","67f3be5ef161ebfde5f597ed9f97595915fa186761563430dfd161ad918506a6","01234f62a40d56a43fa21c1eed851f1341ec3cd388ce54d816e29d43113d7e7c",{"version":"0af813cb2b02501faa3d778a1e2fb84eba93edbaa28c80569b540b8596648308","affectsGlobalScope":true},"b09abdb1b3dd19d4a77fedc77e62fabb96f352fc1d2331be0a3484a6d30566bb","e1aea0bae8186fee1b966d4e4e2a167ed0edd86668c609b1440ed0e81247462d","d15d11ea31228ad0c57cda43b406f7bb1712c6c8fe6dd9c27a90dbfc7a8d6117","e841f6a9736f6a57652c3d8153e94b8bd62ec69173648c4b7a36f981d6df8661",{"version":"d05ec82ef330abb1b780a55d8df5c28cd8b0ae251ad071aa8616796c033e59b6","affectsGlobalScope":true},"b89ea948a92ce598bac83e0fd39ab4dd1f938b337287abe33d756950bfe31bd7","e09cc4f66a6cf31c2224129e990b91ca00b25b0826989264fbc4aaa7bf9f6460","8d33b542eb574e7662b4bb4d5b989eabc16b7dcc004a8b35b3d4e15118048de3","66b1d6af6036b6b0441a898b8610b2a43ab3e981aaffd0778fdb35efcd4ac10e","2b4eb1b3f1aaf046e6b1aedcd514f769184976bb75db7a9a9affcd7a93db1f03","d6b1cd14fddfb186e056ca3d89a319ed237b3ded61ce94db48062e01ad332190","c55b1e6bee98c27c3ff8477a47ef182841cbf7883c0e8b47c76506532366c34c",{"version":"fd58f729536faa80e0bc18fdd50c788eeb9fd47ee102f65ae8961ef5b7eb08ac","affectsGlobalScope":true},"d064178ad738111c860104971248a4cdb1b19a76620dedbdeff2b4e8035d0c02","b28d0596bc1c2a91ee5670fffbf49d0c293af00095e62f67eca5f820565569ee","5367052357620c6e14cf2a53f7ede9f8d85f4a9dab6facc3da6ae445541b7372","1ca653dfd6774ad08e4a0cc240086e59a9d6fca5608c0ab9226f0feb39180e19","58a42ee27d7a738bd561e09adecc774d801f2e15d7abb48641249c840446dd5e","2ba501f8d216768ad6ed19e905ebf6dd176acf1c524f3bf42f257a4e99ba9cea","3bc4bf73867c7aaebf5f8d8c367306e9e01007e9e0f3c3022d9717bea3666c55","6e25f951f1c64dc1fdda83ad3183b4af572b95218e736bf454185ac0c8abdf41","8daceda051793fad176cfbac941fa34457a3afad17d3eb40f3fdc9533d3a3fbf","c3f93d077a06bc8c8f0e6c1b0a645fabfe9aaf2a40080fd7d8cd81e90fa0ac4a",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"f87509fed855ba8d77bcc1bbdd1acb8380a8092373c2caf3f04e5a8f8f3c5e5b","de0e63feaddfdf1a7a92071f6e7897d86ca497499116433e99fe15bf4af32e01","c279f541b15691f99c82e130c9897740adf4584442b3610c5634f5684c1f5b60","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","90c15e72362e4a25075de190840094b7c75498604737166a578b3c44d4f4a53c","6cb35d83d21a7e72bd00398c93302749bcd38349d0cc5e76ff3a90c6d1498a4d",{"version":"369dd7668d0e6c91550bce0c325f37ce6402e5dd40ecfca66fbb5283e23e559d","affectsGlobalScope":true},"2632057d8b983ee33295566088c080384d7d69a492bc60b008d6a6dfd3508d6b","4bf71cf2a94492fc71e97800bdf2bcb0a9a0fa5fce921c8fe42c67060780cbfa","0996ff06f64cb05b6dac158a6ada2e16f8c2ccd20f9ff6f3c3e871f1ba5fb6d9","5c492d01a19fea5ebfff9d27e786bc533e5078909521ca17ae41236f16f9686a","a6ee930b81c65ec79aca49025b797817dde6f2d2e9b0e0106f0844e18e2cc819","84fce15473e993e6b656db9dd3c9196b80f545647458e6621675e840fd700d29","7d5336ee766aa72dffb1cc2a515f61d18a4fb61b7a2757cbccfb7b286b783dfb","63e96248ab63f6e7a86e31aa3e654ed6de1c3f99e3b668e04800df05874e8b77","80da0f61195385d22b666408f6cccbc261c066d401611a286f07dfddf7764017","06a20cc7d937074863861ea1159ac783ff97b13952b4b5d1811c7d8ab5c94776","ab6de4af0e293eae73b67dad251af097d7bcc0b8b62de84e3674e831514cb056","18cbd79079af97af66c9c07c61b481fce14a4e7282eca078c474b40c970ba1d0","e7b45405689d87e745a217b648d3646fb47a6aaba9c8d775204de90c7ea9ff35","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","bcfaca4a8ff50f57fd36df91fba5d34056883f213baff7192cbfc4d3805d2084","76a564b360b267502219a89514953058494713ee0923a63b2024e542c18b40e5","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","a20629551ed7923f35f7556c4c15d0c8b2ebe7afaa68ceaab079a1707ba64be2","d6de66600c97cd499526ddecea6e12166ab1c0e8d9bf36fb2339fd39c8b3372a","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","a8932876de2e3138a5a27f9426b225a4d27f0ba0a1e2764ba20930b4c3faf4b9","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","027d600e00c5f5e1816c207854285d736f2f5fa28276e2829db746d5d6811ba1","5443113a16ef378446e08d6500bb48b35de582426459abdb5c9704f5c7d327d9","0fb581ecb53304a3c95bb930160b4fa610537470cce850371cbaad5a458ca0d9","7da4e290c009d7967343a7f8c3f145a3d2c157c62483362183ba9f637a536489","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","914560d0c4c6aa947cfe7489fe970c94ba25383c414bbe0168b44fd20dbf0df4","4fb3405055b54566dea2135845c3a776339e7e170d692401d97fd41ad9a20e5d","8d607832a6ef0eac30657173441367dd76c96bf7800d77193428b922e060c3af","20ff7207f0bb5cdde5fee8e83315ade7e5b8100cfa2087d20d39069a3d7d06f4","7ca4c534eab7cff43d81327e369a23464bc37ef38ce5337ceff24a42c6c84eb2","5252dec18a34078398be4e321dee884dc7f47930e5225262543a799b591b36d2","23caed4dff98bd28157d2b798b43f1dfefe727f18641648c01ce4e0e929a1630","f67e013d5374826596d7c23dbae1cdb14375a27cd72e16c5fb46a4b445059329","ea3401b70e2302683bbf4c18b69ef2292b60f4d8f8e6d920413b81fb7bde0f65","71afe26642c0fb86b9f8b1af4af5deb5181b43b6542a3ff2314871b53d04c749","0d7f01634e6234d84cf0106508efdb8ae00e5ed126eff9606d37b031ac1de654","f8d209086bad78af6bd7fef063c1ed449c815e6f8d36058115f222d9f788b848","3ad003278d569d1953779e2f838f7798f02e793f6a1eceac8e0065f1a202669b","fb2c5eceffcd918dbb86332afa0199f5e7b6cf6ee42809e930a827b28ef25afe","f664aaff6a981eeca68f1ff2d9fd21b6664f47bf45f3ae19874df5a6683a8d8a","ce066f85d73e09e9adbd0049bcf6471c7eefbfc2ec4b5692b5bcef1e36babd2a","09d302513cacfbcc54b67088739bd8ac1c3c57917f83f510b2d1adcb99fd7d2a","3faa54e978b92a6f726440c13fe3ab35993dc74d697c7709681dc1764a25219f","2bd0489e968925eb0c4c0fb12ef090be5165c86bd088e1e803102c38d4a717d8","88924207132b9ba339c1adb1ed3ea07e47b3149ff8a2e21a3ea1f91cee68589d","b8800b93d8ab532f8915be73f8195b9d4ef06376d8a82e8cdc17c400553172d6","d7d469703b78beba76d511957f8c8b534c3bbb02bea7ab4705c65ef573532fb8","74c8c3057669c03264263d911d0f82e876cef50b05be21c54fef23c900de0420","b303eda2ff2d582a9c3c5ecb708fb57355cdc25e8c8197a9f66d4d1bf09fda19","4e5dc89fa22ff43da3dee1db97d5add0591ebaff9e4adef6c8b6f0b41f0f60f0","ec4e82cb42a902fe83dc13153c7a260bee95684541f8d7ef26cb0629a2f4ca31","5f36e24cd92b0ff3e2a243685a8a780c9413941c36739f04b428cc4e15de629d","40a26494e6ab10a91851791169582ab77fed4fbd799518968177e7eefe08c7a9","208e125b45bc561765a74f6f1019d88e44e94678769824cf93726e1bac457961","b3985971de086ef3aa698ef19009a53527b72e65851b782dc188ac341a1e1390","c81d421aabb6113cd98b9d4f11e9a03273b363b841f294b457f37c15d513151d","30063e3a184ff31254bbafa782c78a2d6636943dfe59e1a34f451827fd7a68dc","c05d4cae0bceed02c9d013360d3e65658297acb1b7a90252fe366f2bf4f9ccc9","6f14b92848889abba03a474e0750f7350cc91fc190c107408ca48679a03975ae","a588d0765b1d18bf00a498b75a83e095aef75a9300b6c1e91cbf39e408f2fe2f","7f9e99f3ceb0110c434b71d9d1a32f83774799dce7a8004c81db420fe63a5599","f652cc88d400c410f566f1a82fa37d612f040adaf1ce2d6dd16d3cbb8013f1e9","b80c780c52524beb13488942543972c8b0e54400e8b59cee0169f38d0fabb968","d1c9f45a2401b2372f6d523471d7775e501401411c1ddec8aceb09e93f242c6b","ec23ea828cdd31b5f3e5adfff57a611c80b2896e01a049ce6e2ff2a762868b5a","a7d13f7c794ed9c8ffd5d3b78e720c3330355eed5b11a104d433146dc8e7b10c","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"08906ca4df290e78211120ae722953b460e978096c01ab2d42a682088fd1203e","ee62b963f6c038259a0e974e47658bd4df432abe514b0d089e24e5b4b63c10fe","7b022ff64b529e5944fb98cc968f4ea8e63a8ac5f8045b5e356e1a3c9002c130","66bd53c1aadcea3f9bc5ba66de9767355224d6ba1b8c7f95938d6c6581f0c066","bbddd8e3db4dcb3c96d6943a1a92d92aa1d7760fa15f1476eaeef7fa22abe51d","c53cdb0195a9103489a97d79baf26c1d8d4e695476be311a932b54a68363cbae","7bfbdf19a5d95af4976a0c32188b836f66bd190cd94643ee06321ef0024d0deb","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","9ed0773022bff64bccb1f4dc772d584c4bfba68bb7f6a82cd17334c925954b96","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","9c0b569ed9e010f815c6c0a01dd590b7cbccdc4d2819acba8e22bf096e09d7d3","23a6a8de10b40eb59194c822e6d6bfa43c88d45792283ae63f42950736931f27","bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5","e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1","5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4","0153187869e718a7e49ab33e22e9fd0c03603c243b86092b678373f23731529a","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","0d7082297e54305e4fc76620097873cc85e0998fa051e68f07dafea9cffbe83b",{"version":"070fafc332546049324c5eb0559b40974f700aa78eee7a12d1486035baa39558","affectsGlobalScope":true},"cdac7e46e615e1fdcca7c3a2aab2fbd19085443048733cf239a090f7a17efa27","c7b3a657627398805dcab6524ee943aad6d32ef8fae0c96740797667570adf1c","cdac7e46e615e1fdcca7c3a2aab2fbd19085443048733cf239a090f7a17efa27","8718da3ec51e3d9bcef26a3b07df96b1f5d859d9cc2fb2b94acd4e2e823296a6",{"version":"5811439ec45d2a0ca25acee273aa74a49a5059a99c690161ac6550dab24f7d80","affectsGlobalScope":true},"b01ca9e4906ce4e80b2f02b409afb6146cc5d1ca1e0b5d1087760354f5d75f59",{"version":"347cb61f2fb94a351b8dd9115309832a525d6f2ae56d77404a3ba550cc321b80","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","180d306d98a6e2c61f2d7d1f11ddf23ac49cdb0553a62ecb83d5746eb75406ef","502bd3d3dd93b012e56864157c9ec3a3a53695fb05d1f42671f3e6314698a665","6b1b045b3e848a844ff1922ce2f82925f21d482bdeba5710883ab0c7df2c7e2b","8fac536b0b73249d9153424adafe49282c389a08163544917c18dfc1ddcbbd25","05a21cbb7cbe1ec502e7baca1f4846a4e860d96bad112f3e316b995ba99715b7","1eaee2b52f1c0e1848845a79050c1d06ae554d8050c35e3bf479f13d6ee19dd5","fd219904eea67c470dfebbaf44129b0db858207c3c3b55514bdc84de547b1687","4de232968f584b960b4101b4cdae593456aff149c5d0c70c2389248e9eb9fbac","9d6f6d1d788d8010417b914f4bad17be02645c6c5177a098dca97bee7561a0e1","c5430542eeebb207d651e8b00a08e4bb680c47ecb73dd388d8fa597a1fc5de5b","a6c5c9906262cf10549989c0061e5a44afdc1f61da77d5e09418a9ecea0018fe","1405d8968a5da39a3aed8c1701ca813d3284f51adb87b184337bb35402b077eb","33d63a317a3d2f2e06a10cf04a5caf7a781fe5f644a0dda5dfe81883c1ab2cca","ab60a5aea46b4fd3ee9d52ba0059d908f6f974cf4aba52a693f03361aa1adec0","7faa24bb6f24e79337fa302cc328d9f50ba3fb1af45a5aedcaa64e9b326a0bab","1a8f503c64bdb36308f245960d9e4acac4cf65d8b6bd0534f88230ebf0be7883","83c54a3b3e836d1773b8c23ff76ce6e0aae1a2209fc772b75e9de173fec9eac0","475e411f48f74c14b1f6e50cc244387a5cc8ce52340dddfae897c96e03f86527","948d08b7c693d1a4d0101bd2a48a2930e814811acde8f2a4c1226fd4a907cac0","656424ca784760c679bf2677d8aaf55d1cb8452cd0ac04bbe1c0f659f45f8c11","a2c1f4012459547d62116d724e7ec820bb2e6848da40ea0747bf160ffd99b283","0dc197e52512a7cbea4823cc33c23b0337af97bd59b38bf83be047f37cd8c9a8","492c93ade227fe4545fabb3035b9dd5d57d8b4fde322e5217fdaef20aa1b80a8","e84784554ccec0a03886acbd0b08dece208335465800bc3b5c9ab152c780a303","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","d38e588a10943bbab1d4ce03d94759bf065ff802a9a72fc57aa75a72f1725b71","74aadc16ec50dafaffd815c2bf5fd50f2dacde84ff126a00d834c908e9f75465","e8465811693dfe4e96ef2b3dffda539d6edfe896961b7af37b44db2c0e48532b","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","554c9868b4f1bfb9109585c3a3ea56218d74156b18849bf97978405abf682f01","ae314e42f8d1a86017fbc658aff59f82e848f9a977de3b61393eb8beb1518e20","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","a73a445c1e0a6d0f8b48e8eb22dc9d647896783a7f8991cbbc31c0d94bf1f5a2","65455ea1b00bae7bd26d3c8c2401eb3d10401c09c55192d6f3b8b2275eda20c2","e109f5f766ef2fb64aa3c0a8918ebfb66c011f3f43611b536512675bc1d32834","3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","db1bcf6210cc48986c17a758bff8dca8c4b93c3e9cc6cefd50316dcc5f90e1d1","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","0ec9669e7b351eecc99d7ea4a7d371aa44934d10ba70748c3074bc6c87ffd2e2",{"version":"159733de19927f949b83112a45b7c52ebc0bbad1605a668d5c19ba65e0ee9128","affectsGlobalScope":true},{"version":"511a5e63333726bf17f80205be46f18ac9bcf35a31a87093ec6c0445b3288d73","affectsGlobalScope":true},"fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e",{"version":"3542af6affb3a47eb25c919b4d1a86e2611b4ab573c8a46bed27c36b8cae0851","affectsGlobalScope":true},{"version":"bf422ca2aaea09ccad6777881a2aa33d06ea625f9ac7be02455db2b35cd80aef","affectsGlobalScope":true},"f2d7099cf990ace5b8c8b47e43d3bc4b2b2f10015d83780dd10e8d542a775ae5","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":3},"fileIdsList":[[89,189],[89],[89,189,190,191,192,193],[89,189,191],[89,99],[89,198],[89,204],[89,99,204],[89,208],[63,89,99,211],[64,89,99],[78,89,163,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,235,236],[89,237],[89,215,216,237],[78,89,163,218,237],[78,89,219,220,237],[78,89,219,237],[78,89,163,219,237],[78,89,225,237],[78,89,237],[89,233,234,237],[89,163,234,237],[78,89,163],[89,218],[78,89],[89,163,237],[89,238],[89,239],[89,245,247],[89,170,172,173,174,175,176,177,178,179,180,181,182],[89,170,171,173,174,175,176,177,178,179,180,181,182],[89,171,172,173,174,175,176,177,178,179,180,181,182],[89,170,171,172,174,175,176,177,178,179,180,181,182],[89,170,171,172,173,175,176,177,178,179,180,181,182],[89,170,171,172,173,174,176,177,178,179,180,181,182],[89,170,171,172,173,174,175,177,178,179,180,181,182],[89,170,171,172,173,174,175,176,178,179,180,181,182],[89,170,171,172,173,174,175,176,177,179,180,181,182],[89,170,171,172,173,174,175,176,177,178,180,181,182],[89,170,171,172,173,174,175,176,177,178,179,181,182],[89,170,171,172,173,174,175,176,177,178,179,180,182],[89,170,171,172,173,174,175,176,177,178,179,180,181],[89,182],[66,88,89,99,254,255],[63,89,99],[89,97],[51,89],[89,96,97],[52,57,89],[53,63,64,71,80,88,89],[53,54,63,71,89],[55,89],[56,57,64,72,89],[57,80,85,89],[58,60,63,71,89],[59,89],[60,61,89],[62,63,89],[63,89],[63,64,65,80,88,89],[63,64,65,80,89],[66,71,80,88,89],[63,64,66,67,71,80,85,88,89],[66,68,85,88,89],[89,98],[63,69,89],[70,88,89],[60,63,71,80,89],[72,89],[73,89],[51,74,89],[75,87,89,92],[76,89],[77,89],[63,78,89],[78,79,89,91],[63,80,81,89],[80,81,89],[82,89],[63,83,84,89],[83,84,89],[57,71,85,89],[86,89],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[71,87,89],[66,77,88,89],[57,89],[80,89,90],[89,91],[89,95],[52,57,63,65,74,80,88,89,91,92],[80,89,93],[57,89,99],[66,89,99],[80,89,99],[89,268],[63,66,68,71,80,85,88,89,93,99],[89,275],[89,166],[89,167,168],[66,80,89,99],[89,241,242],[89,241,242,243,244],[89,246],[89,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,119,120,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[89,100,102,107],[89,102,139],[89,101,106],[89,100,101,102,103,104,105],[89,101,102,103,106,139],[89,100,102,106,107],[89,106],[89,106,146],[89,100,101,102,106],[89,101,102,103,106],[89,101,102],[89,100,101,102,106,107],[89,102,138],[89,100,101,102,107],[89,163],[89,100,101,115],[89,100,101,114],[89,123],[89,116,117],[89,118],[89,116],[89,100,101,115,116],[89,100,101,114,115,117],[89,121],[89,100,101,116,117],[89,100,101,102,103,106],[89,100,101],[89,101],[89,100,106],[44,89],[46,89],[29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,47,48,89,164],[41,44,89],[41,42,89],[41,44,89,99,163],[29,30,31,32,33,34,35,36,37,38,39,40,43,45,89],[89,165,169,185],[89,165],[89,185,186],[89,165,169,183,184]],"referencedMap":[[191,1],[189,2],[188,2],[194,3],[190,1],[192,4],[193,1],[195,2],[196,2],[197,5],[199,6],[200,5],[201,2],[202,5],[203,2],[205,7],[204,5],[207,8],[206,5],[208,2],[209,9],[210,2],[212,10],[46,2],[213,11],[214,2],[237,12],[215,13],[217,14],[216,13],[219,15],[221,16],[222,17],[223,18],[224,16],[225,17],[226,16],[227,19],[228,17],[229,16],[234,20],[235,21],[236,22],[230,23],[220,24],[231,25],[218,25],[232,26],[238,2],[239,27],[240,28],[248,29],[249,2],[250,2],[251,5],[171,30],[172,31],[170,32],[173,33],[174,34],[175,35],[176,36],[177,37],[178,38],[179,39],[180,40],[181,41],[182,42],[183,43],[252,2],[211,2],[253,2],[255,2],[256,44],[257,45],[97,46],[49,46],[51,47],[98,48],[52,49],[53,50],[54,51],[55,52],[56,53],[57,54],[58,55],[59,56],[60,57],[61,57],[62,58],[63,59],[64,60],[65,61],[50,2],[94,2],[66,62],[67,63],[68,64],[99,65],[69,66],[70,67],[71,68],[72,69],[73,70],[74,71],[75,72],[76,73],[77,74],[78,75],[79,76],[80,77],[81,78],[82,79],[83,80],[84,81],[85,82],[86,83],[96,84],[87,85],[88,86],[89,87],[90,88],[91,89],[95,90],[92,91],[93,92],[258,2],[259,2],[260,5],[261,2],[262,93],[263,5],[264,2],[265,94],[266,2],[233,95],[267,5],[268,2],[269,96],[270,2],[271,2],[272,2],[273,5],[274,97],[275,2],[276,98],[167,99],[166,2],[168,2],[169,100],[198,5],[41,2],[254,101],[241,2],[243,102],[245,103],[244,102],[242,2],[247,104],[246,2],[163,105],[113,106],[111,106],[162,2],[138,107],[126,108],[106,109],[136,108],[137,108],[140,110],[141,108],[108,111],[142,108],[143,108],[144,108],[145,108],[146,112],[147,113],[148,108],[104,108],[149,108],[150,108],[151,112],[152,108],[153,108],[154,114],[155,108],[156,110],[157,108],[105,108],[158,108],[159,108],[160,115],[103,116],[109,117],[139,118],[112,119],[161,120],[114,121],[115,122],[124,123],[123,124],[119,125],[118,124],[120,126],[117,127],[116,128],[122,129],[121,126],[125,130],[107,131],[102,132],[100,133],[110,2],[101,134],[131,2],[132,2],[129,2],[130,112],[128,2],[133,2],[127,133],[135,2],[134,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[45,135],[29,135],[30,135],[31,135],[32,135],[33,135],[47,136],[48,2],[34,135],[165,137],[35,135],[42,138],[36,135],[37,135],[38,135],[39,135],[40,135],[43,139],[164,140],[44,141],[186,142],[184,143],[187,144],[185,145]],"exportedModulesMap":[[191,1],[189,2],[188,2],[194,3],[190,1],[192,4],[193,1],[195,2],[196,2],[197,5],[199,6],[200,5],[201,2],[202,5],[203,2],[205,7],[204,5],[207,8],[206,5],[208,2],[209,9],[210,2],[212,10],[46,2],[213,11],[214,2],[237,12],[215,13],[217,14],[216,13],[219,15],[221,16],[222,17],[223,18],[224,16],[225,17],[226,16],[227,19],[228,17],[229,16],[234,20],[235,21],[236,22],[230,23],[220,24],[231,25],[218,25],[232,26],[238,2],[239,27],[240,28],[248,29],[249,2],[250,2],[251,5],[171,30],[172,31],[170,32],[173,33],[174,34],[175,35],[176,36],[177,37],[178,38],[179,39],[180,40],[181,41],[182,42],[183,43],[252,2],[211,2],[253,2],[255,2],[256,44],[257,45],[97,46],[49,46],[51,47],[98,48],[52,49],[53,50],[54,51],[55,52],[56,53],[57,54],[58,55],[59,56],[60,57],[61,57],[62,58],[63,59],[64,60],[65,61],[50,2],[94,2],[66,62],[67,63],[68,64],[99,65],[69,66],[70,67],[71,68],[72,69],[73,70],[74,71],[75,72],[76,73],[77,74],[78,75],[79,76],[80,77],[81,78],[82,79],[83,80],[84,81],[85,82],[86,83],[96,84],[87,85],[88,86],[89,87],[90,88],[91,89],[95,90],[92,91],[93,92],[258,2],[259,2],[260,5],[261,2],[262,93],[263,5],[264,2],[265,94],[266,2],[233,95],[267,5],[268,2],[269,96],[270,2],[271,2],[272,2],[273,5],[274,97],[275,2],[276,98],[167,99],[166,2],[168,2],[169,100],[198,5],[41,2],[254,101],[241,2],[243,102],[245,103],[244,102],[242,2],[247,104],[246,2],[163,105],[113,106],[111,106],[162,2],[138,107],[126,108],[106,109],[136,108],[137,108],[140,110],[141,108],[108,111],[142,108],[143,108],[144,108],[145,108],[146,112],[147,113],[148,108],[104,108],[149,108],[150,108],[151,112],[152,108],[153,108],[154,114],[155,108],[156,110],[157,108],[105,108],[158,108],[159,108],[160,115],[103,116],[109,117],[139,118],[112,119],[161,120],[114,121],[115,122],[124,123],[123,124],[119,125],[118,124],[120,126],[117,127],[116,128],[122,129],[121,126],[125,130],[107,131],[102,132],[100,133],[110,2],[101,134],[131,2],[132,2],[129,2],[130,112],[128,2],[133,2],[127,133],[135,2],[134,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[45,135],[29,135],[30,135],[31,135],[32,135],[33,135],[47,136],[48,2],[34,135],[165,137],[35,135],[42,138],[36,135],[37,135],[38,135],[39,135],[40,135],[43,139],[164,140],[44,141],[186,142],[184,143],[187,144],[185,145]],"semanticDiagnosticsPerFile":[191,189,188,194,190,192,193,195,196,197,199,200,201,202,203,205,204,207,206,208,209,210,212,46,213,214,237,215,217,216,219,221,222,223,224,225,226,227,228,229,234,235,236,230,220,231,218,232,238,239,240,248,249,250,251,171,172,170,173,174,175,176,177,178,179,180,181,182,183,252,211,253,255,256,257,97,49,51,98,52,53,54,55,56,57,58,59,60,61,62,63,64,65,50,94,66,67,68,99,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,96,87,88,89,90,91,95,92,93,258,259,260,261,262,263,264,265,266,233,267,268,269,270,271,272,273,274,275,276,167,166,168,169,198,41,254,241,243,245,244,242,247,246,163,113,111,162,138,126,106,136,137,140,141,108,142,143,144,145,146,147,148,104,149,150,151,152,153,154,155,156,157,105,158,159,160,103,109,139,112,161,114,115,124,123,119,118,120,117,116,122,121,125,107,102,100,110,101,131,132,129,130,128,133,127,135,134,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,45,29,30,31,32,33,47,48,34,165,35,42,36,37,38,39,40,43,164,44,186,184,187,185]},"version":"4.3.5"}