@waku/enr 0.0.27-f599932.0 โ 0.0.27
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 +8 -0
- package/bundle/index.js +225 -85
- package/dist/.tsbuildinfo +1 -1
- package/package.json +99 -1
package/CHANGELOG.md
CHANGED
@@ -91,6 +91,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
91
91
|
* devDependencies
|
92
92
|
* @waku/interfaces bumped from 0.0.25 to 0.0.26
|
93
93
|
|
94
|
+
### Dependencies
|
95
|
+
|
96
|
+
* The following workspace dependencies were updated
|
97
|
+
* dependencies
|
98
|
+
* @waku/utils bumped from 0.0.20 to 0.0.21
|
99
|
+
* devDependencies
|
100
|
+
* @waku/interfaces bumped from 0.0.27 to 0.0.28
|
101
|
+
|
94
102
|
## [0.0.26](https://github.com/waku-org/js-waku/compare/enr-v0.0.25...enr-v0.0.26) (2024-09-05)
|
95
103
|
|
96
104
|
|
package/bundle/index.js
CHANGED
@@ -241,11 +241,12 @@ class Decoder {
|
|
241
241
|
constructor(name, prefix, baseDecode) {
|
242
242
|
this.name = name;
|
243
243
|
this.prefix = prefix;
|
244
|
+
const prefixCodePoint = prefix.codePointAt(0);
|
244
245
|
/* c8 ignore next 3 */
|
245
|
-
if (
|
246
|
+
if (prefixCodePoint === undefined) {
|
246
247
|
throw new Error('Invalid prefix character');
|
247
248
|
}
|
248
|
-
this.prefixCodePoint =
|
249
|
+
this.prefixCodePoint = prefixCodePoint;
|
249
250
|
this.baseDecode = baseDecode;
|
250
251
|
}
|
251
252
|
decode(text) {
|
@@ -449,7 +450,14 @@ var base2$1 = /*#__PURE__*/Object.freeze({
|
|
449
450
|
|
450
451
|
const alphabet = Array.from('๐๐ชโ๐ฐ๐๐๐๐๐๐๐๐๐๐๐๐๐โ๐ป๐ฅ๐พ๐ฟ๐โค๐๐คฃ๐๐๐๐ญ๐๐๐
๐๐๐ฅ๐ฅฐ๐๐๐๐ข๐ค๐๐๐ช๐โบ๐๐ค๐๐๐๐๐น๐คฆ๐๐โโจ๐คท๐ฑ๐๐ธ๐๐๐๐๐๐๐๐๐คฉ๐๐๐ค๐๐ฏ๐๐๐ถ๐๐คญโฃ๐๐๐๐ช๐๐ฅ๐๐๐ฉ๐ก๐คช๐๐ฅณ๐ฅ๐คค๐๐๐ณโ๐๐๐ด๐๐ฌ๐๐๐ท๐ป๐โญโ
๐ฅบ๐๐๐ค๐ฆโ๐ฃ๐๐โน๐๐๐ โ๐๐บ๐๐ป๐๐๐๐๐น๐ฃ๐ซ๐๐๐ต๐ค๐๐ด๐ค๐ผ๐ซโฝ๐คโ๐๐คซ๐๐ฎ๐๐ป๐๐ถ๐๐ฒ๐ฟ๐งก๐โก๐๐โโ๐๐ฐ๐คจ๐ถ๐ค๐ถ๐ฐ๐๐ข๐ค๐๐จ๐จ๐คฌโ๐๐บ๐ค๐๐๐ฑ๐๐ถ๐ฅดโถโกโ๐๐ธโฌ๐จ๐๐ฆ๐ท๐บโ ๐
๐๐ต๐๐คฒ๐ค ๐คง๐๐ต๐
๐ง๐พ๐๐๐ค๐๐คฏ๐ทโ๐ง๐ฏ๐๐๐ค๐๐โ๐ด๐ฃ๐ธ๐๐๐ฅ๐คข๐
๐ก๐ฉ๐๐ธ๐ป๐ค๐คฎ๐ผ๐ฅต๐ฉ๐๐๐ผ๐๐ฃ๐ฅ');
|
451
452
|
const alphabetBytesToChars = (alphabet.reduce((p, c, i) => { p[i] = c; return p; }, ([])));
|
452
|
-
const alphabetCharsToBytes = (alphabet.reduce((p, c, i) => {
|
453
|
+
const alphabetCharsToBytes = (alphabet.reduce((p, c, i) => {
|
454
|
+
const codePoint = c.codePointAt(0);
|
455
|
+
if (codePoint == null) {
|
456
|
+
throw new Error(`Invalid character: ${c}`);
|
457
|
+
}
|
458
|
+
p[codePoint] = i;
|
459
|
+
return p;
|
460
|
+
}, ([])));
|
453
461
|
function encode$4(data) {
|
454
462
|
return data.reduce((p, c) => {
|
455
463
|
p += alphabetBytesToChars[c];
|
@@ -459,8 +467,12 @@ function encode$4(data) {
|
|
459
467
|
function decode$5(str) {
|
460
468
|
const byts = [];
|
461
469
|
for (const char of str) {
|
462
|
-
const
|
463
|
-
if (
|
470
|
+
const codePoint = char.codePointAt(0);
|
471
|
+
if (codePoint == null) {
|
472
|
+
throw new Error(`Invalid character: ${char}`);
|
473
|
+
}
|
474
|
+
const byt = alphabetCharsToBytes[codePoint];
|
475
|
+
if (byt == null) {
|
464
476
|
throw new Error(`Non-base256emoji character: ${char}`);
|
465
477
|
}
|
466
478
|
byts.push(byt);
|
@@ -1148,9 +1160,13 @@ function parseCIDtoBytes(source, base) {
|
|
1148
1160
|
const decoder = base ?? base32;
|
1149
1161
|
return [base32.prefix, decoder.decode(source)];
|
1150
1162
|
}
|
1163
|
+
case base36.prefix: {
|
1164
|
+
const decoder = base ?? base36;
|
1165
|
+
return [base36.prefix, decoder.decode(source)];
|
1166
|
+
}
|
1151
1167
|
default: {
|
1152
1168
|
if (base == null) {
|
1153
|
-
throw Error('To parse non base32 or base58btc encoded CID multibase decoder must be provided');
|
1169
|
+
throw Error('To parse non base32, base36 or base58btc encoded CID multibase decoder must be provided');
|
1154
1170
|
}
|
1155
1171
|
return [source[0], base.decode(source)];
|
1156
1172
|
}
|
@@ -3208,10 +3224,16 @@ function randomBytes$1(bytesLength = 32) {
|
|
3208
3224
|
if (crypto$1 && typeof crypto$1.getRandomValues === 'function') {
|
3209
3225
|
return crypto$1.getRandomValues(new Uint8Array(bytesLength));
|
3210
3226
|
}
|
3227
|
+
// Legacy Node.js compatibility
|
3228
|
+
if (crypto$1 && typeof crypto$1.randomBytes === 'function') {
|
3229
|
+
return crypto$1.randomBytes(bytesLength);
|
3230
|
+
}
|
3211
3231
|
throw new Error('crypto.getRandomValues must be defined');
|
3212
3232
|
}
|
3213
3233
|
|
3214
|
-
|
3234
|
+
/**
|
3235
|
+
* Polyfill for Safari 14
|
3236
|
+
*/
|
3215
3237
|
function setBigUint64(view, byteOffset, value, isLE) {
|
3216
3238
|
if (typeof view.setBigUint64 === 'function')
|
3217
3239
|
return view.setBigUint64(byteOffset, value, isLE);
|
@@ -3224,9 +3246,13 @@ function setBigUint64(view, byteOffset, value, isLE) {
|
|
3224
3246
|
view.setUint32(byteOffset + h, wh, isLE);
|
3225
3247
|
view.setUint32(byteOffset + l, wl, isLE);
|
3226
3248
|
}
|
3227
|
-
|
3249
|
+
/**
|
3250
|
+
* Choice: a ? b : c
|
3251
|
+
*/
|
3228
3252
|
const Chi = (a, b, c) => (a & b) ^ (~a & c);
|
3229
|
-
|
3253
|
+
/**
|
3254
|
+
* Majority function, true if any two inputs is true
|
3255
|
+
*/
|
3230
3256
|
const Maj = (a, b, c) => (a & b) ^ (a & c) ^ (b & c);
|
3231
3257
|
/**
|
3232
3258
|
* Merkle-Damgard hash construction base class.
|
@@ -3621,7 +3647,7 @@ function requireMs () {
|
|
3621
3647
|
* @api public
|
3622
3648
|
*/
|
3623
3649
|
|
3624
|
-
ms = function(val, options) {
|
3650
|
+
ms = function (val, options) {
|
3625
3651
|
options = options || {};
|
3626
3652
|
var type = typeof val;
|
3627
3653
|
if (type === 'string' && val.length > 0) {
|
@@ -4314,7 +4340,6 @@ var debug = /*@__PURE__*/getDefaultExportFromCjs(browserExports);
|
|
4314
4340
|
|
4315
4341
|
const APP_NAME = "waku";
|
4316
4342
|
let Logger$1 = class Logger {
|
4317
|
-
_debug;
|
4318
4343
|
_info;
|
4319
4344
|
_warn;
|
4320
4345
|
_error;
|
@@ -4322,14 +4347,10 @@ let Logger$1 = class Logger {
|
|
4322
4347
|
return prefix ? `${APP_NAME}:${level}:${prefix}` : `${APP_NAME}:${level}`;
|
4323
4348
|
}
|
4324
4349
|
constructor(prefix) {
|
4325
|
-
this._debug = debug(Logger.createDebugNamespace("debug", prefix));
|
4326
4350
|
this._info = debug(Logger.createDebugNamespace("info", prefix));
|
4327
4351
|
this._warn = debug(Logger.createDebugNamespace("warn", prefix));
|
4328
4352
|
this._error = debug(Logger.createDebugNamespace("error", prefix));
|
4329
4353
|
}
|
4330
|
-
get debug() {
|
4331
|
-
return this._debug;
|
4332
|
-
}
|
4333
4354
|
get info() {
|
4334
4355
|
return this._info;
|
4335
4356
|
}
|
@@ -4345,34 +4366,6 @@ let Logger$1 = class Logger {
|
|
4345
4366
|
}
|
4346
4367
|
};
|
4347
4368
|
|
4348
|
-
const peerIdSymbol = Symbol.for('@libp2p/peer-id');
|
4349
|
-
|
4350
|
-
/**
|
4351
|
-
* When this error is thrown it means an operation was aborted,
|
4352
|
-
* usually in response to the `abort` event being emitted by an
|
4353
|
-
* AbortSignal.
|
4354
|
-
*/
|
4355
|
-
class CodeError extends Error {
|
4356
|
-
code;
|
4357
|
-
props;
|
4358
|
-
constructor(message, code, props) {
|
4359
|
-
super(message);
|
4360
|
-
this.code = code;
|
4361
|
-
this.name = props?.name ?? 'CodeError';
|
4362
|
-
this.props = props ?? {}; // eslint-disable-line @typescript-eslint/consistent-type-assertions
|
4363
|
-
}
|
4364
|
-
}
|
4365
|
-
class AggregateCodeError extends AggregateError {
|
4366
|
-
code;
|
4367
|
-
props;
|
4368
|
-
constructor(errors, message, code, props) {
|
4369
|
-
super(errors, message);
|
4370
|
-
this.code = code;
|
4371
|
-
this.name = props?.name ?? 'AggregateCodeError';
|
4372
|
-
this.props = props ?? {}; // eslint-disable-line @typescript-eslint/consistent-type-assertions
|
4373
|
-
}
|
4374
|
-
}
|
4375
|
-
|
4376
4369
|
/**
|
4377
4370
|
* Returns true if the two passed Uint8Arrays have the same content
|
4378
4371
|
*/
|
@@ -5430,6 +5423,12 @@ const DNS_CODES = [
|
|
5430
5423
|
getProtocol('dns6').code,
|
5431
5424
|
getProtocol('dnsaddr').code
|
5432
5425
|
];
|
5426
|
+
class NoAvailableResolverError extends Error {
|
5427
|
+
constructor(message = 'No available resolver') {
|
5428
|
+
super(message);
|
5429
|
+
this.name = 'NoAvailableResolverError';
|
5430
|
+
}
|
5431
|
+
}
|
5433
5432
|
/**
|
5434
5433
|
* Creates a {@link Multiaddr} from a {@link MultiaddrInput}
|
5435
5434
|
*/
|
@@ -5599,7 +5598,7 @@ class Multiaddr {
|
|
5599
5598
|
}
|
5600
5599
|
const resolver = resolvers.get(resolvableProto.name);
|
5601
5600
|
if (resolver == null) {
|
5602
|
-
throw new
|
5601
|
+
throw new NoAvailableResolverError(`no available resolver for ${resolvableProto.name}`);
|
5603
5602
|
}
|
5604
5603
|
const result = await resolver(this, options);
|
5605
5604
|
return result.map(str => multiaddr(str));
|
@@ -5813,6 +5812,24 @@ function locationMultiaddrFromEnrFields(enr, protocol) {
|
|
5813
5812
|
return multiaddrFromFields(isIpv6 ? "ip6" : "ip4", protoName, ipVal, protoVal);
|
5814
5813
|
}
|
5815
5814
|
|
5815
|
+
const peerIdSymbol = Symbol.for('@libp2p/peer-id');
|
5816
|
+
|
5817
|
+
/**
|
5818
|
+
* When this error is thrown it means an operation was aborted,
|
5819
|
+
* usually in response to the `abort` event being emitted by an
|
5820
|
+
* AbortSignal.
|
5821
|
+
*/
|
5822
|
+
class CodeError extends Error {
|
5823
|
+
code;
|
5824
|
+
props;
|
5825
|
+
constructor(message, code, props) {
|
5826
|
+
super(message);
|
5827
|
+
this.code = code;
|
5828
|
+
this.name = props?.name ?? 'CodeError';
|
5829
|
+
this.props = props ?? {}; // eslint-disable-line @typescript-eslint/consistent-type-assertions
|
5830
|
+
}
|
5831
|
+
}
|
5832
|
+
|
5816
5833
|
function isPromise(thing) {
|
5817
5834
|
if (thing == null) {
|
5818
5835
|
return false;
|
@@ -6907,6 +6924,60 @@ function wNAF(c, bits) {
|
|
6907
6924
|
},
|
6908
6925
|
};
|
6909
6926
|
}
|
6927
|
+
/**
|
6928
|
+
* Pippenger algorithm for multi-scalar multiplication (MSM).
|
6929
|
+
* MSM is basically (Pa + Qb + Rc + ...).
|
6930
|
+
* 30x faster vs naive addition on L=4096, 10x faster with precomputes.
|
6931
|
+
* For N=254bit, L=1, it does: 1024 ADD + 254 DBL. For L=5: 1536 ADD + 254 DBL.
|
6932
|
+
* Algorithmically constant-time (for same L), even when 1 point + scalar, or when scalar = 0.
|
6933
|
+
* @param c Curve Point constructor
|
6934
|
+
* @param field field over CURVE.N - important that it's not over CURVE.P
|
6935
|
+
* @param points array of L curve points
|
6936
|
+
* @param scalars array of L scalars (aka private keys / bigints)
|
6937
|
+
*/
|
6938
|
+
function pippenger(c, field, points, scalars) {
|
6939
|
+
// If we split scalars by some window (let's say 8 bits), every chunk will only
|
6940
|
+
// take 256 buckets even if there are 4096 scalars, also re-uses double.
|
6941
|
+
// TODO:
|
6942
|
+
// - https://eprint.iacr.org/2024/750.pdf
|
6943
|
+
// - https://tches.iacr.org/index.php/TCHES/article/view/10287
|
6944
|
+
// 0 is accepted in scalars
|
6945
|
+
if (!Array.isArray(points) || !Array.isArray(scalars) || scalars.length !== points.length)
|
6946
|
+
throw new Error('arrays of points and scalars must have equal length');
|
6947
|
+
scalars.forEach((s, i) => {
|
6948
|
+
if (!field.isValid(s))
|
6949
|
+
throw new Error(`wrong scalar at index ${i}`);
|
6950
|
+
});
|
6951
|
+
points.forEach((p, i) => {
|
6952
|
+
if (!(p instanceof c))
|
6953
|
+
throw new Error(`wrong point at index ${i}`);
|
6954
|
+
});
|
6955
|
+
const wbits = bitLen(BigInt(points.length));
|
6956
|
+
const windowSize = wbits > 12 ? wbits - 3 : wbits > 4 ? wbits - 2 : wbits ? 2 : 1; // in bits
|
6957
|
+
const MASK = (1 << windowSize) - 1;
|
6958
|
+
const buckets = new Array(MASK + 1).fill(c.ZERO); // +1 for zero array
|
6959
|
+
const lastBits = Math.floor((field.BITS - 1) / windowSize) * windowSize;
|
6960
|
+
let sum = c.ZERO;
|
6961
|
+
for (let i = lastBits; i >= 0; i -= windowSize) {
|
6962
|
+
buckets.fill(c.ZERO);
|
6963
|
+
for (let j = 0; j < scalars.length; j++) {
|
6964
|
+
const scalar = scalars[j];
|
6965
|
+
const wbits = Number((scalar >> BigInt(i)) & BigInt(MASK));
|
6966
|
+
buckets[wbits] = buckets[wbits].add(points[j]);
|
6967
|
+
}
|
6968
|
+
let resI = c.ZERO; // not using this will do small speed-up, but will lose ct
|
6969
|
+
// Skip first bucket, because it is zero
|
6970
|
+
for (let j = buckets.length - 1, sumI = c.ZERO; j > 0; j--) {
|
6971
|
+
sumI = sumI.add(buckets[j]);
|
6972
|
+
resI = resI.add(sumI);
|
6973
|
+
}
|
6974
|
+
sum = sum.add(resI);
|
6975
|
+
if (i !== 0)
|
6976
|
+
for (let j = 0; j < windowSize; j++)
|
6977
|
+
sum = sum.double();
|
6978
|
+
}
|
6979
|
+
return sum;
|
6980
|
+
}
|
6910
6981
|
function validateBasic(curve) {
|
6911
6982
|
validateField(curve.Fp);
|
6912
6983
|
validateObject(curve, {
|
@@ -6961,6 +7032,7 @@ function twistedEdwards(curveDef) {
|
|
6961
7032
|
const { Fp, n: CURVE_ORDER, prehash: prehash, hash: cHash, randomBytes, nByteLength, h: cofactor, } = CURVE;
|
6962
7033
|
const MASK = _2n$2 << (BigInt(nByteLength * 8) - _1n$3);
|
6963
7034
|
const modP = Fp.create; // Function overrides
|
7035
|
+
const Fn = Field(CURVE.n, CURVE.nBitLength);
|
6964
7036
|
// sqrt(u/v)
|
6965
7037
|
const uvRatio = CURVE.uvRatio ||
|
6966
7038
|
((u, v) => {
|
@@ -7059,6 +7131,10 @@ function twistedEdwards(curveDef) {
|
|
7059
7131
|
const toInv = Fp.invertBatch(points.map((p) => p.ez));
|
7060
7132
|
return points.map((p, i) => p.toAffine(toInv[i])).map(Point.fromAffine);
|
7061
7133
|
}
|
7134
|
+
// Multiscalar Multiplication
|
7135
|
+
static msm(points, scalars) {
|
7136
|
+
return pippenger(Point, Fn, points, scalars);
|
7137
|
+
}
|
7062
7138
|
// "Private method", don't use it directly
|
7063
7139
|
_setWindowSize(windowSize) {
|
7064
7140
|
wnaf.setWindowSize(this, windowSize);
|
@@ -9152,6 +9228,10 @@ class HMAC extends Hash {
|
|
9152
9228
|
* @param hash - function that would be used e.g. sha256
|
9153
9229
|
* @param key - message key
|
9154
9230
|
* @param message - message data
|
9231
|
+
* @example
|
9232
|
+
* import { hmac } from '@noble/hashes/hmac';
|
9233
|
+
* import { sha256 } from '@noble/hashes/sha2';
|
9234
|
+
* const mac1 = hmac(sha256, 'key', 'message');
|
9155
9235
|
*/
|
9156
9236
|
const hmac = (hash, key, message) => new HMAC(hash, key).update(message).digest();
|
9157
9237
|
hmac.create = (hash, key) => new HMAC(hash, key);
|
@@ -12935,8 +13015,14 @@ function validatePointOpts(curve) {
|
|
12935
13015
|
}
|
12936
13016
|
return Object.freeze({ ...opts });
|
12937
13017
|
}
|
12938
|
-
// ASN.1 DER encoding utilities
|
12939
13018
|
const { bytesToNumberBE: b2n, hexToBytes: h2b } = ut;
|
13019
|
+
/**
|
13020
|
+
* ASN.1 DER encoding utilities. ASN is very complex & fragile. Format:
|
13021
|
+
*
|
13022
|
+
* [0x30 (SEQUENCE), bytelength, 0x02 (INTEGER), intLength, R, 0x02 (INTEGER), intLength, S]
|
13023
|
+
*
|
13024
|
+
* Docs: https://letsencrypt.org/docs/a-warm-welcome-to-asn1-and-der/, https://luca.ntop.org/Teaching/Appunti/asn1.html
|
13025
|
+
*/
|
12940
13026
|
const DER = {
|
12941
13027
|
// asn.1 DER encoding utils
|
12942
13028
|
Err: class DERErr extends Error {
|
@@ -12944,54 +13030,103 @@ const DER = {
|
|
12944
13030
|
super(m);
|
12945
13031
|
}
|
12946
13032
|
},
|
12947
|
-
|
12948
|
-
|
12949
|
-
|
12950
|
-
|
12951
|
-
|
12952
|
-
|
12953
|
-
|
12954
|
-
|
12955
|
-
|
12956
|
-
|
12957
|
-
|
12958
|
-
|
12959
|
-
|
12960
|
-
|
12961
|
-
|
12962
|
-
|
12963
|
-
|
13033
|
+
// Basic building block is TLV (Tag-Length-Value)
|
13034
|
+
_tlv: {
|
13035
|
+
encode: (tag, data) => {
|
13036
|
+
const { Err: E } = DER;
|
13037
|
+
if (tag < 0 || tag > 256)
|
13038
|
+
throw new E('tlv.encode: wrong tag');
|
13039
|
+
if (data.length & 1)
|
13040
|
+
throw new E('tlv.encode: unpadded data');
|
13041
|
+
const dataLen = data.length / 2;
|
13042
|
+
const len = numberToHexUnpadded(dataLen);
|
13043
|
+
if ((len.length / 2) & 128)
|
13044
|
+
throw new E('tlv.encode: long form length too big');
|
13045
|
+
// length of length with long form flag
|
13046
|
+
const lenLen = dataLen > 127 ? numberToHexUnpadded((len.length / 2) | 128) : '';
|
13047
|
+
return `${numberToHexUnpadded(tag)}${lenLen}${len}${data}`;
|
13048
|
+
},
|
13049
|
+
// v - value, l - left bytes (unparsed)
|
13050
|
+
decode(tag, data) {
|
13051
|
+
const { Err: E } = DER;
|
13052
|
+
let pos = 0;
|
13053
|
+
if (tag < 0 || tag > 256)
|
13054
|
+
throw new E('tlv.encode: wrong tag');
|
13055
|
+
if (data.length < 2 || data[pos++] !== tag)
|
13056
|
+
throw new E('tlv.decode: wrong tlv');
|
13057
|
+
const first = data[pos++];
|
13058
|
+
const isLong = !!(first & 128); // First bit of first length byte is flag for short/long form
|
13059
|
+
let length = 0;
|
13060
|
+
if (!isLong)
|
13061
|
+
length = first;
|
13062
|
+
else {
|
13063
|
+
// Long form: [longFlag(1bit), lengthLength(7bit), length (BE)]
|
13064
|
+
const lenLen = first & 127;
|
13065
|
+
if (!lenLen)
|
13066
|
+
throw new E('tlv.decode(long): indefinite length not supported');
|
13067
|
+
if (lenLen > 4)
|
13068
|
+
throw new E('tlv.decode(long): byte length is too big'); // this will overflow u32 in js
|
13069
|
+
const lengthBytes = data.subarray(pos, pos + lenLen);
|
13070
|
+
if (lengthBytes.length !== lenLen)
|
13071
|
+
throw new E('tlv.decode: length bytes not complete');
|
13072
|
+
if (lengthBytes[0] === 0)
|
13073
|
+
throw new E('tlv.decode(long): zero leftmost byte');
|
13074
|
+
for (const b of lengthBytes)
|
13075
|
+
length = (length << 8) | b;
|
13076
|
+
pos += lenLen;
|
13077
|
+
if (length < 128)
|
13078
|
+
throw new E('tlv.decode(long): not minimal encoding');
|
13079
|
+
}
|
13080
|
+
const v = data.subarray(pos, pos + length);
|
13081
|
+
if (v.length !== length)
|
13082
|
+
throw new E('tlv.decode: wrong value length');
|
13083
|
+
return { v, l: data.subarray(pos + length) };
|
13084
|
+
},
|
13085
|
+
},
|
13086
|
+
// https://crypto.stackexchange.com/a/57734 Leftmost bit of first byte is 'negative' flag,
|
13087
|
+
// since we always use positive integers here. It must always be empty:
|
13088
|
+
// - add zero byte if exists
|
13089
|
+
// - if next byte doesn't have a flag, leading zero is not allowed (minimal encoding)
|
13090
|
+
_int: {
|
13091
|
+
encode(num) {
|
13092
|
+
const { Err: E } = DER;
|
13093
|
+
if (num < _0n)
|
13094
|
+
throw new E('integer: negative integers are not allowed');
|
13095
|
+
let hex = numberToHexUnpadded(num);
|
13096
|
+
// Pad with zero byte if negative flag is present
|
13097
|
+
if (Number.parseInt(hex[0], 16) & 0b1000)
|
13098
|
+
hex = '00' + hex;
|
13099
|
+
if (hex.length & 1)
|
13100
|
+
throw new E('unexpected assertion');
|
13101
|
+
return hex;
|
13102
|
+
},
|
13103
|
+
decode(data) {
|
13104
|
+
const { Err: E } = DER;
|
13105
|
+
if (data[0] & 128)
|
13106
|
+
throw new E('Invalid signature integer: negative');
|
13107
|
+
if (data[0] === 0x00 && !(data[1] & 128))
|
13108
|
+
throw new E('Invalid signature integer: unnecessary leading zero');
|
13109
|
+
return b2n(data);
|
13110
|
+
},
|
12964
13111
|
},
|
12965
13112
|
toSig(hex) {
|
12966
13113
|
// parse DER signature
|
12967
|
-
const { Err: E } = DER;
|
13114
|
+
const { Err: E, _int: int, _tlv: tlv } = DER;
|
12968
13115
|
const data = typeof hex === 'string' ? h2b(hex) : hex;
|
12969
13116
|
abytes(data);
|
12970
|
-
|
12971
|
-
if (
|
12972
|
-
throw new E('Invalid signature
|
12973
|
-
|
12974
|
-
|
12975
|
-
|
12976
|
-
const { d: s, l: rBytesLeft } = DER._parseInt(sBytes);
|
12977
|
-
if (rBytesLeft.length)
|
13117
|
+
const { v: seqBytes, l: seqLeftBytes } = tlv.decode(0x30, data);
|
13118
|
+
if (seqLeftBytes.length)
|
13119
|
+
throw new E('Invalid signature: left bytes after parsing');
|
13120
|
+
const { v: rBytes, l: rLeftBytes } = tlv.decode(0x02, seqBytes);
|
13121
|
+
const { v: sBytes, l: sLeftBytes } = tlv.decode(0x02, rLeftBytes);
|
13122
|
+
if (sLeftBytes.length)
|
12978
13123
|
throw new E('Invalid signature: left bytes after parsing');
|
12979
|
-
return { r, s };
|
13124
|
+
return { r: int.decode(rBytes), s: int.decode(sBytes) };
|
12980
13125
|
},
|
12981
13126
|
hexFromSig(sig) {
|
12982
|
-
|
12983
|
-
const
|
12984
|
-
|
12985
|
-
const hex = num.toString(16);
|
12986
|
-
return hex.length & 1 ? `0${hex}` : hex;
|
12987
|
-
};
|
12988
|
-
const s = slice(h(sig.s));
|
12989
|
-
const r = slice(h(sig.r));
|
12990
|
-
const shl = s.length / 2;
|
12991
|
-
const rhl = r.length / 2;
|
12992
|
-
const sl = h(shl);
|
12993
|
-
const rl = h(rhl);
|
12994
|
-
return `30${h(rhl + shl + 4)}02${rl}${r}02${sl}${s}`;
|
13127
|
+
const { _tlv: tlv, _int: int } = DER;
|
13128
|
+
const seq = `${tlv.encode(0x02, int.encode(sig.r))}${tlv.encode(0x02, int.encode(sig.s))}`;
|
13129
|
+
return tlv.encode(0x30, seq);
|
12995
13130
|
},
|
12996
13131
|
};
|
12997
13132
|
// Be friendly to bad ECMAScript parsers by not using bigint literals
|
@@ -13000,6 +13135,7 @@ const _0n = BigInt(0), _1n$1 = BigInt(1); BigInt(2); const _3n = BigInt(3); BigI
|
|
13000
13135
|
function weierstrassPoints(opts) {
|
13001
13136
|
const CURVE = validatePointOpts(opts);
|
13002
13137
|
const { Fp } = CURVE; // All curves has same field / group length as for now, but they can differ
|
13138
|
+
const Fn = Field(CURVE.n, CURVE.nBitLength);
|
13003
13139
|
const toBytes = CURVE.toBytes ||
|
13004
13140
|
((_c, point, _isCompressed) => {
|
13005
13141
|
const a = point.toAffine();
|
@@ -13173,6 +13309,10 @@ function weierstrassPoints(opts) {
|
|
13173
13309
|
static fromPrivateKey(privateKey) {
|
13174
13310
|
return Point.BASE.multiply(normPrivateKeyToScalar(privateKey));
|
13175
13311
|
}
|
13312
|
+
// Multiscalar Multiplication
|
13313
|
+
static msm(points, scalars) {
|
13314
|
+
return pippenger(Point, Fn, points, scalars);
|
13315
|
+
}
|
13176
13316
|
// "Private method", don't use it directly
|
13177
13317
|
_setWindowSize(windowSize) {
|
13178
13318
|
wnaf.setWindowSize(this, windowSize);
|
package/dist/.tsbuildinfo
CHANGED
@@ -1 +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.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.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.es2016.intl.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.sharedmemory.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/constants.ts","../../../node_modules/uint8arraylist/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/keys/index.d.ts","../../../node_modules/multiformats/dist/src/bases/interface.d.ts","../../../node_modules/multiformats/dist/src/block/interface.d.ts","../../../node_modules/multiformats/dist/src/hashes/interface.d.ts","../../../node_modules/multiformats/dist/src/link/interface.d.ts","../../../node_modules/multiformats/dist/src/cid.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-id/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/protocols-table.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/dns-over-https.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/dns-json-over-https.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/index.d.ts","../../../node_modules/progress-events/dist/src/index.d.ts","../../../node_modules/@multiformats/dns/dist/src/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/resolvers/dnsaddr.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/resolvers/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/filter/multiaddr-filter.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/index.d.ts","../../../node_modules/it-stream-types/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-info/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/content-routing/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/event-target.d.ts","../../../node_modules/@libp2p/interface/dist/src/metrics/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-routing/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-store/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/startable.d.ts","../../../node_modules/@libp2p/interface/dist/src/stream-handler/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/topology/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/stream-muxer/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/transport/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection-encrypter/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection-gater/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-discovery/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-store/tags.d.ts","../../../node_modules/it-pushable/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/pubsub/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/record/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/errors.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.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.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/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.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/mock-errors.d.ts","../../../node_modules/undici-types/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/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/filereader.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/interceptors.d.ts","../../../node_modules/undici-types/index.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/dom-events.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.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/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/wasi.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/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/events.d.ts","../../../node_modules/@libp2p/interface/dist/src/index.d.ts","../../interfaces/dist/sharding.d.ts","../../interfaces/dist/enr.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message/decodeRpc.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/codec.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/decode.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/encode.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/codecs/enum.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/codecs/message.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/utils/reader.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/utils/writer.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message/rpc.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/types.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message-cache.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score-thresholds.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/metrics.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score-params.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/utils/set.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-stats.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/compute-score.d.ts","../../../node_modules/denque/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/message-deliveries.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/stream.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/tracer.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/config.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/address-manager/index.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/map.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/set.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/list.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/filter.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-map.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-set.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-list.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/connection-manager/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/random-walk/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/record/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/registrar/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/transport-manager/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/index.d.ts","../../../node_modules/@libp2p/identify/dist/src/index.d.ts","../../../node_modules/@libp2p/ping/dist/src/constants.d.ts","../../../node_modules/@libp2p/ping/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/address-manager/index.d.ts","../../../node_modules/multiformats/dist/src/codecs/interface.d.ts","../../../node_modules/multiformats/dist/src/codecs/json.d.ts","../../../node_modules/multiformats/dist/src/codecs/raw.d.ts","../../../node_modules/multiformats/dist/src/bytes.d.ts","../../../node_modules/multiformats/dist/src/hashes/digest.d.ts","../../../node_modules/multiformats/dist/src/hashes/hasher.d.ts","../../../node_modules/multiformats/dist/src/varint.d.ts","../../../node_modules/multiformats/dist/src/interface.d.ts","../../../node_modules/multiformats/dist/src/index.d.ts","../../../node_modules/multiformats/dist/src/bases/base.d.ts","../../../node_modules/multiformats/dist/src/basics.d.ts","../../../node_modules/uint8arrays/dist/src/util/bases.d.ts","../../../node_modules/uint8arrays/dist/src/to-string.d.ts","../../../node_modules/interface-datastore/dist/src/key.d.ts","../../../node_modules/interface-store/dist/src/errors.d.ts","../../../node_modules/interface-store/dist/src/index.d.ts","../../../node_modules/interface-datastore/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/components.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/auto-dial.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/connection-pruner.d.ts","../../../node_modules/p-defer/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/recipient.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/job.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/priority-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/dial-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/index.d.ts","../../../node_modules/libp2p/dist/src/transport-manager.d.ts","../../../node_modules/@libp2p/peer-store/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/index.d.ts","../../interfaces/dist/metadata.d.ts","../../interfaces/dist/libp2p.d.ts","../../interfaces/dist/protocols.d.ts","../../interfaces/dist/misc.d.ts","../../interfaces/dist/message.d.ts","../../interfaces/dist/receiver.d.ts","../../interfaces/dist/filter.d.ts","../../interfaces/dist/sender.d.ts","../../interfaces/dist/light_push.d.ts","../../interfaces/dist/peer_exchange.d.ts","../../interfaces/dist/relay.d.ts","../../interfaces/dist/store.d.ts","../../interfaces/dist/connection_manager.d.ts","../../interfaces/dist/health_manager.d.ts","../../interfaces/dist/waku.d.ts","../../interfaces/dist/keep_alive_manager.d.ts","../../interfaces/dist/dns_discovery.d.ts","../../interfaces/dist/constants.d.ts","../../interfaces/dist/local_storage.d.ts","../../interfaces/dist/index.d.ts","../../utils/dist/bytes/index.d.ts","../../../node_modules/@noble/secp256k1/lib/index.d.ts","../../../node_modules/js-sha3/index.d.ts","../src/crypto.ts","../../utils/dist/common/is_defined.d.ts","../../utils/dist/common/random_subset.d.ts","../../utils/dist/common/group_by.d.ts","../../utils/dist/common/to_async_iterator.d.ts","../../utils/dist/common/is_size_valid.d.ts","../../utils/dist/common/sharding/type_guards.d.ts","../../utils/dist/common/sharding/index.d.ts","../../utils/dist/common/push_or_init_map.d.ts","../../utils/dist/common/relay_shard_codec.d.ts","../../utils/dist/common/delay.d.ts","../../utils/dist/common/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../utils/dist/logger/index.d.ts","../../utils/dist/index.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/util.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/ip.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/ipnet.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/cidr.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/convert.d.ts","../src/multiaddr_from_fields.ts","../src/get_multiaddr.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/ed25519-class.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/interface.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/ecdh.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/ephemeral-keys.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/key-stretcher.d.ts","../../../node_modules/protons-runtime/dist/src/codec.d.ts","../../../node_modules/protons-runtime/dist/src/decode.d.ts","../../../node_modules/protons-runtime/dist/src/encode.d.ts","../../../node_modules/protons-runtime/dist/src/codecs/enum.d.ts","../../../node_modules/protons-runtime/dist/src/codecs/message.d.ts","../../../node_modules/protons-runtime/dist/src/utils/reader.d.ts","../../../node_modules/protons-runtime/dist/src/utils/writer.d.ts","../../../node_modules/protons-runtime/dist/src/index.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/keys.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/rsa-class.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/secp256k1-class.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/index.d.ts","../../../node_modules/@libp2p/peer-id/dist/src/index.d.ts","../src/peer_id.ts","../src/multiaddrs_codec.ts","../src/waku2_codec.ts","../src/raw_enr.ts","../src/v4.ts","../src/enr.ts","../src/creator.ts","../../../node_modules/@ethersproject/bytes/lib/index.d.ts","../../../node_modules/@ethersproject/rlp/lib/index.d.ts","../../../node_modules/uint8arrays/dist/src/from-string.d.ts","../src/decoder.ts","../src/encoder.ts","../src/index.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"3ee50043db7667957e6879f00e1638bc1af3ae660d8c31c51442d39a5a7d0dfc","signature":"02745a73c954228b9ee7fdb90451051e3f93a14f4a20ec3190113b37d101a021"},"d35b5db21a04a45ae6323c4d4b25acc983dfe2870fc670fd05249eb19d839a5e","e6877d43c2eb116aeafde2c81bec47e68dbb7d964804d65beaf9c7cdf81b5fa6","4a3605bef1a5ef29fd5a1696dd95b0b4e2259e2d07a4d88fac79f3a9765c44a2","370079895f1acdd4bb5194a403c85bf60cfbb2654bced9430a6c7210e7246be8","90240231e730deed31569f6c686766a538e4a024bbc33ea1738fe924f477ba61","552223520e823223ee13c5764e9b69b1819c985818a8bcda435d8d1dbd909bee","49b7c3ddd683c09aa437dd92681699387441f522524b14d2331ce494a9bf2f27","3292bd23ca5d9b8d02492b49099f6917f9715e0fd48b7b5fbb1edbf8c2021c5f","5212dd78d1d63ab33332c8846a0ea5ce248159e74033cde16de48373036b4704","954b3c04ee9f94ca1e262f3e5a6e833b0da0066514b3d4b97b92b7f0c85f8700","a2fc9ce1ae5bed7068d701d8aeebf13321de0f42c217dc2e10f1622dcaa53a7f","8e81f220cb935d551e88cff11541d5e89d3a3494a52fe6247e98016a9dbd4c2d","6b2576a04253626ba41b7dc7ec5977bec07f3b6952b16249d9fa8a3a0d79901c","9de17491f2bfbccea92500e174079d53bdedae34dbebe5d4a12a06ab09814710","e88481085a8576fa52efc913e631c1a833d16179486469b8538d8c4fab2f7381","aec68502c8f4ffaecb4440b37363473582fec0bfee4fb8668a87daa7f700f708","d71577e78c7a4257074aaf82f595724175210c89e8b467ef82f949a6cbd891bc","cf548af8b03cbbc79fdc4f357b5560f618c6d2f68c8688e6eb759c3c11d962c3","c84146dbc9d2e5f43d2cbf15485a4eabf90219dbb66c0d481f20f12d3851bffc","6f27a01e3be326f1f7cd42c1a67f9912f2d58c80f864b263a848a2142212bc0c","99c24f331c9f4e75a779b9a988e942442db3cf29923ceb820d3bdd4ed1edfef2","25b1f20d5868ef9ef18132f7dd76b40b7038688ff7c56c58930537a8dff9f231","0699e4b82c89b8b4da3c56de9457ce959ee8e7ac346af75785bc59a91f688d3f","9bba18dcac8cc9bdce65a4e34122d90474617cdf857feddeeba1e7a3638097d4","8c92080253bac0506d82b83d555a029582595f0944abb349954ea732322baa5c","9196da290a76cf32b70a8cfdbeb165f75bee9a094d70662cee6383fa09a73e43","230eb449f719119cab1728252f20ecdd36d7a20cef659e4a51ada1a232a8aaad","85786f052b5dcd0b36564b657a9aea3e80f1fd0e76e4606a4400ec21928892c1","3ac9cfb334b17c90aae03c3d17d978f829488b22d48b7a00b019dc16f62db77d","1bf687d978bdd6d5aff10b9eb0ff0695179f8594d4446946fd0182d6d25fa433","a01d0d5afa693508187608b13a4b6ccf6105cd896b7ee950954364ac71670580","f5337c3ea7b8702ffe2718f56a24325a67d517c0d552ef71b8d578d9f33a99d3","2113d72680c7ddad6d3b6f70a29432a35c074c94ec6823a7c16ccd69847d965c","c8ffd61bf2db2e7bccb996dd70c9499805cb338f1b1c781987e38ba99dd5b296","55e5a976b594dc02f054860fb59a5299872a5b3c8c90e96733a5c9c9d4ed1fb8","fac83d4c6898d5bf90c508cc84409ded40fdc14611cf42d7fb750fb2c7847979","8a1cce1f66006707d7219898543512bbdce3eb744b7e730606965b2c9680f5f7","cdebdc5861de7a07ddfbd6740a7ad3415068522e19a82bc652ae313c76e4f83d","9c7aa50c1eaa6e0fb07d478ef1b047e9bedb89efd626bfe342f57c8dec15536c","e142fda89ed689ea53d6f2c93693898464c7d29a0ae71c6dc8cdfe5a1d76c775","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","34b4f256dd3c591cb7c9e96a763d79d54b69d417709b9015dcec3ac5583eec73","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","57386628c539248e4f428d5308a69f98f4a6a3cd42a053f017d9dd3fd5a43bc5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","8b9bf58d580d9b36ab2f23178c88757ce7cc6830ccbdd09e8a76f4cb1bc0fcf7","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","7782678102bd835ef2c54330ee16c31388e51dfd9ca535b47f6fd8f3d6e07993","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","1a42891defae8cec268a4f8903140dbf0d214c0cf9ed8fdc1eb6c25e5b3e9a5c","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","37e97c64b890352421ccb29cd8ede863774df8f03763416f6a572093f6058284",{"version":"6f73fc82f51bcdf0487fc982f062eeadae02e0251dd2e4c444043edb247a7d3b","affectsGlobalScope":true},"db3ec8993b7596a4ef47f309c7b25ee2505b519c13050424d9c34701e5973315",{"version":"e7f13a977b01cc54adb4408a9265cda9ddf11db878d70f4f3cac64bef00062e6","affectsGlobalScope":true},"af49b066a76ce26673fe49d1885cc6b44153f1071ed2d952f2a90fccba1095c9","f22fd1dc2df53eaf5ce0ff9e0a3326fc66f880d6a652210d50563ae72625455f",{"version":"3ddbdb519e87a7827c4f0c4007013f3628ca0ebb9e2b018cf31e5b2f61c593f1","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"6d498d4fd8036ea02a4edcae10375854a0eb1df0496cf0b9d692577d3c0fd603","affectsGlobalScope":true},"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","fd09b892597ab93e7f79745ce725a3aaf6dd005e8db20f0c63a5d10984cba328","a3be878ff1e1964ab2dc8e0a3b67087cf838731c7f3d8f603337e7b712fdd558","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","9be74296ee565af0c12d7071541fdd23260f53c3da7731fb6361f61150a791f6",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true},"aa658b5d765f630c312ac9202d110bbaf2b82d180376457f0a9d57b42629714a","312ac7cbd070107766a9886fd27f9faad997ef57d93fdfb4095df2c618ac8162","bcfcff784a59db3f323c25cea5ae99a903ca9292c060f2c7e470ea73aaf71b44","672ad3045f329e94002256f8ed460cfd06173a50c92cde41edaadfacffd16808","64da4965d1e0559e134d9c1621ae400279a216f87ed00c4cce4f2c7c78021712","ddbf3aac94f85dbb8e4d0360782e60020da75a0becfc0d3c69e437c645feb30f",{"version":"0166fce1204d520fdfd6b5febb3cda3deee438bcbf8ce9ffeb2b1bcde7155346","affectsGlobalScope":true},"d8b13eab85b532285031b06a971fa051bf0175d8fff68065a24a6da9c1c986cf","50c382ba1827988c59aa9cc9d046e386d55d70f762e9e352e95ee8cb7337cdb8","2178ab4b68402d1de2dda199d3e4a55f7200e3334f5a9727fbd9d16975cdf75f",{"version":"21d7e87f271e72d02f8d167edc902f90b04525edc7918f00f01dd0bd00599f7e","affectsGlobalScope":true},{"version":"9e523e73ee7dd119d99072fd855404efc33938c168063771528bd1deb6df56d2","affectsGlobalScope":true},"a215554477f7629e3dcbc8cde104bec036b78673650272f5ffdc5a2cee399a0a","c3497fc242aabfedcd430b5932412f94f157b5906568e737f6a18cc77b36a954","cdc1de3b672f9ef03ff15c443aa1b631edca35b6ae6970a7da6400647ff74d95","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","bf01fdd3b93cf633b3f7420718457af19c57ab8cbfea49268df60bae2e84d627","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","65b39cc6b610a4a4aecc321f6efb436f10c0509d686124795b4c36a5e915b89e","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","d3edb86744e2c19f2c1503849ac7594a5e06024f2451bacae032390f2e20314a",{"version":"97a1d365f71c72ebc3256b0fb8ada716f70c7482309535b7a56c78e651f18b33","affectsGlobalScope":true},{"version":"8a3e61347b8f80aa5af532094498bceb0c0b257b25a6aa8ab4880fd6ed57c95a","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","4301becc26a79eb5f4552f7bee356c2534466d3b5cd68b71523e1929d543de89","5475df7cfc493a08483c9d7aa61cc04791aecba9d0a2efc213f23c4006d4d3cd","000720870b275764c65e9f28ac97cc9e4d9e4a36942d4750ca8603e416e9c57c",{"version":"54412c70bacb9ed547ed6caae8836f712a83ccf58d94466f3387447ec4e82dc3","affectsGlobalScope":true},{"version":"1d274b8bb8ca011148f87e128392bfcd17a12713b6a4e843f0fa9f3f6b45e2b1","affectsGlobalScope":true},"4c48e931a72f6971b5add7fdb1136be1d617f124594e94595f7114af749395e0","478eb5c32250678a906d91e0529c70243fc4d75477a08f3da408e2615396f558","e686a88c9ee004c8ba12ffc9d674ca3192a4c50ed0ca6bd5b2825c289e2b2bfe",{"version":"98d547613610452ac9323fb9ec4eafc89acab77644d6e23105b3c94913f712b3","affectsGlobalScope":true},"4423fb3d6abe6eefb8d7f79eb2df9510824a216ec1c6feee46718c9b18e6d89f",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","c663a7e4ee2cb54d99cf095479a5bcf1dd18d762ffdfa038aa1b2d79b070b0d7","d26127118c28d9ea66bdeeaa25e25ee02c6ece837741a3b0c80e507a683db8af","7ed48493953e1f10eb2da6f35b5e04941d3ac8bb618a9d1888da77f7ee43422c","b35182ba2344e5b4a1387b193fa7a1d3f2321f2bbeadab6ddf5c2571d0b67e44","7ad3e0aaeb840047fa4711306188cac803514091f251b6baecb9b2aacf15b976","6d268309f0e15dd820b2df9806234166554cb4e2fe00d11737adcb4e5489f700","58cf96187feb10cc8ad3bb080871cd30888ef63bc5db131f11458850ef8f6245","9102986ff52326a2016e8cddc1cf3092f0808ac916dcc8dc2d2c7195cd181987","fa82b7b22d9df87323e31e9e2ad75911028f3e544647fd212424b3c4452fee3f","01f20dac9dc14f0d306e5d1215c5c1c3b4d1805905e60ae92fabac4031eae7da","9ceec2a882368c0160a8a3879aa0efce0fb985751fc23ff6191006030969cfa4","cad5d6451789234434c28dd2d6a8267b0d64c479b1ad267321faa31ba90d570b","d5197053be441d40f4d074185a40d461137c8fa8db9e00cceedf2d9ca6583157","3cd33c37432c2de7bdd9f1d48b3ea4fd03afad4969cfc5ba88d81e6ed03f432c","6db29cf7af1d68c8194d98f1c444cea3b30a2c65deda3428452efaa05717b81d","561ef05d7e369040c28800d878d7e6461af62e459460263e911d508f319c8d5d","a1b60bd2328318dcbec30bdf529dad31a13315ff2df60c8bd71630c58a575b06","a399dd9b73e4bbfbed2ad1c1259d707f5f147f40dc5e3eeb541bf0bf2da42b25","8cc6a35806cd10d448b0f2ab01fe0b6194ca57fdaced2d71781b68e83c55bd88","8f364fec0ef20506aa9cf00b5cd8b620c1c0389687b11a3a32b0b5d4716ad894","5d11703e2c5d4dbe00bbe79f3bc864d178cf8d6ebccc2d1448ea29e93654f029","f4e82c91aac3b61f3ad04f11a44c5b79f724ff8a09281d0afa24a6624633ff25","ed849d616865076f44a41c87f27698f7cdf230290c44bafc71d7c2bc6919b202","7b8b9017156ef8bf3bbe42785fac8956e5c9869f4a494536d7f548a7c1c7d98a","07c34d1f83dfc5746de4229e01f0cb4d388a9f128eab6beadb4ae1621ebb87c6","763bb8df872cbb8783e29e19bd7a1dea0f88f7fd7398343af38be8509a65df82","372b3681eb9618821c0e0e10bcc775b838e45b51912b8998bc5ba035100dc9e5","c286b410193495d067668bcdbd13ea3f3a39001edff02edee248babf2652e563","ba1405da509cc84896a588978efc45400d4f9844ee738d750b59868b1ad1618a","af89ab13b40dd28cd91818fc6329914d2b9663591831f032ff0f0cb4a028d4a5","63007f1618ada5041fb3b47630b64a9987d268bf740dd72334c38b5d23f5239b","3395f90467d2bb9db039a5c22ed6659ca2ff6f0b4f7ee5f223b0f77288f54ea7","20df2907d398e369d49e8906d6e0f096c465501e9ceff9d61293bf0f4e9020f1","302aa8248dab7c689c103162e542224aa7f3b0db46e29d0fb468fac721cf1c41","ea0a3bb69845621165c21e80ebb0d2b28dad22cd9920564516ce8e927a828f79","6a81475a67505af60be3242841c65ce4bf6d0b624d8b3fada646ba459a3eaad8","6834dd6cc060648604278cdb920a9316fa916e9116134b17dfad90e42800ca47","19fba62f1aab90f0110738261ed8bc1da82c89433fc43265f14870d4380d10b8","fbb2df54f4778b4d691bbc7c0a6e1e241dfffaca19f443cc9f230f450458bf89","da98d8109f379be48d459a6821ebd7cc728af62557e1c44f864e04360686af93","ef6e6d838cc600162626a53167046484f38e9a4bab9454e72350bed76c497228","8adf9a02b0c2508f81516b561a6c8080ea2169126f166e39767bcb5389b9cfbc","c8b50ecedc9ff1b0e83c96f0a334d022874199f7c2d00d182ca6672176b0ea9d","b66ede73039e8751e06e3cab843e5a4265c1124a3285c3d854092c37a966b1f5","a4e6ff57edb9f48421f1084bb264878caba6d632f25e32767b68472727bc856b","fa301b2933323df25f8e033bfb6dc16223751b9d01a3ee1c085004bce8f9ad9f","ea9b8f7426fe0e92b4e7d3cdffa9c2d0bf994abddf3a4bb469beda7b45be34e2","135d2c5bb3919efdd655f2a868533582504827b2d1c10188e1bc3ba80ee015cc","25578b2e19ab0fd92fdc00543abc195d65bdfcb0b800243d5c001129c93907b5","1447d46bff9e7c5c77da14515a7456ea5e919ce6e28f5e6746edf99818e4be47","ba3f6f0ee47f46cdce55620aec5726de80e92a930982634afe9918c114c38f0b","6f38045547cdfd54ec19abcd943cace72c775fde739c5e0e1d917cf3030c16b5","929fc31f7523aaa1d19735b77e637af06e58d76007648ec088ecfbec1521cbfe","8510595d2ca2660e6407be65d8bf95f0c53877dbb812e269cdd980fc34de5f78","a6eb23f2a83113ce0ab7203bfda2be0888720f8d694a20abaef83b9f62832061","363dca5004ac5a3d9c2bba12812b97a64461911762f0b8f9320a8856ec53bcad","557b8c7481296f4b7ed362320f3bbb40bb87404edf880c81224f365a8d1e17f3","283ed3d075bf7d3e8793f63b2a52f475ed84d95b7b6351c5d5bcc6c49d4b845b","6544dab49004fecb69a4ef775e9ad2773a6148b1f9bfd9b75508e3afa11f5d35","bd4c741820ec3574b7ed3b782c8d78034d6e4631d11997e701e6b955b86a87c1","e2dd36a524ea5b13de1ed104ede9cea79696588175c1df1940d6a29113a4aee0","a878d4c7237a7af50e96534295fcf723134d70cbb1e9bfd8365266b912aee6ec","a1f708ddf34053065f8f53682123421af299cee37ae110a86ba07851adf940da","395e6fa1fc8f46f827a5f7d3b7dabc836627ae57e41338f93c221b88d4978f15","749effab6d7e72df8d126868c82b8166cdde84d48453e44f65cbad42ad900b06","11705a4aad6e2e724b82ffee6c4fa271d798f0fb68806ace4b1c425c266f8d98","3630ed70bc81eb54659965fcac105c0d420e667b1d0eaf96ab243de4e81ecd68","a6cb689a6c97d8cffb0a4bd649711838d37d2e574eeb8d40402d4a47c645dbd3","3c783303d3de2fac94bbe484a276e4d87a37ae9a7868318a5127c3cb0720a2bd","68f02ba57c531227ef5804dd57f2e940b10c544c96dadd3c0ef958ba4b6fdbc1","d84174912accc090e9b061b36101f8401add7f486ee532f45d298fb8e550dcb8","f0e9c96fe0af329a25c943d4a19fc3f6d2430914f49a83d1666cbaace3e41a7a","e4515754fbef20229cb3479d25ff0fc858f71d494cf1adeda1bcfa7ad02851f7","3780b990e935be00e1d77afaaf9e80ec9b7d79ea4d1f230206c054eb6717c9d5","89d55270e34359d2c38b432aaa551c2998ecaf94d5ec402ef485f9db9f755605","979ae534126f0425943594de327c5816427a27ad57bb3c8ad7ca9ef9c89928f5","357f2ba403c4f78a11b64df1e9ffb56e241924d6cc768a38c05c7dc7cfe70ff0","d68afd5ea85e35c4c4e8995e55f10d6861439ea9dc2666293c0cf4124bf56f32","f085107c3ee4181e6ea03092b1056060b75e965c0d70bc65c3bb6e4678f06f7e","5bfbc7923d86040aeed60f6729ef2f580099d8ba383399f254fc1852c773e7e4","9ab35348dfa05a141dfa8c1e2454a74b3fba256f0726142b958cf16af93b43bf","c2d923941bba3cc811a51262106aeade1beff9d51a0612dae78bedcacaf6c1f2","5dbd990df344a7628e5c585def6171b1acf2a98c55347ac9b9079f7be0acbc3c","0240ed08a314c20bc76b99cf07ed283b0c238dfda466c064cfa9b86dae9e2108","ac2df65093d53e2be927e46c0dd60e087110c5864f937179cf9d56cdce7b2c69","36e9104b426c5a69de8b1e9b55023167e37628be07040a4057f5182ccc29b0ca","c32e702bf03ae9e5234690829a53c95851a70f93ae745fa51ed26e94232c2952","01d29d12c4745439a4258b260a695c277f9ac339c84444ca7fd13aaf37019a08","a775a05e0b9dcc2e65e9837f3e2a198e2d8c5e64cd9167670efaeb6157f77d8c","a9c9cc04b5d804c36666f17778d804741224480f6841bc9d8fa5d530a91a0acf","a2d43b98c12e855908d640f277836191f0e46f53a5e2f82f5f60c4cec6345b16","aa2ec2fce1f7f7023395a9a42124b5eb18ee7d63680624e5b26bbf4c66de3245","e375db5d6e39e62142a53c6c7545179eb2f784ef11dbb6ba4b0dc56b9b23161b","0e311fda2854da7a33915b771f214251600b7dc0018e8989e7d97eaaae689de9","09ac11dc22366cb89d815665ca03e3388fe437b270592bce1c1ca7fe3ddaec5d","7fdb4fef9d733572da36bab73f1dddfb68936673528a301398124457b07493c7","0d41406b8c120d55a3930fbb2c98536ac5feeda78d13dc6a0a785716ee8ba825","1e9e07cdc0218f4a3fccc43ce59199cd45cc5217d7f2f5c2f3cba948905c57df","5f80210f554e793c24ece8a4890b590878a5fcd3b748296a57316252719d4116","b3221b2c362171434c0452fd73c27c8a40d42e7d854f1fc85a493c3ed157bbfd","193f3eeb12d0c70404fddd0d6c6d395a6721320284d0d4d39e0538e47ac6931e","f0dbab413bd86c25237078f4219b5cb79099aca5ec2ebf2169513dd669aa8d83",{"version":"64a9dd80ef20dcf59bdccd2d111817cb6cfb66842a958a024ed0e208a001b7e0","signature":"de6928bfa2e865593212ca1b31d36e8243f17fb5a9c3110d36017e0485d77e37"},"d84450725701131933730844923a4974de4cfe0f6e1fe8d3a74e132e292b44c7","433a8fabb08be4997b99eee7863a2362b52c0aca1fcb54330fbf6567a2c92ab0","a4ae79da4d1bb7fb6196294897f1f78a70c8213d2683f750246deab0527511d2","0bbcaafb46edeaf8a72ba969c070fbe9d98459b7b3a17b8c99f79cab49121032","d713b07550ea416686316c24e88dc6245c0f0c12ef78603cae4c9a9791557fb8","7dbb21add04613e1638c36eacc28b9713f65d62080d3611fc82a546641ae4233","603c6d6d5d61f7100a198de05ab675b21fa85b7e9d4776350f1165f7a9055a5e","e8423fe31351f1ce358798b0e0d64e7b0b3396f9f8ef2cfb5713fa3b7d9020f2","4b54f90cffb36f4bc8175ed414995b6432279d6fe9c9dccb704b8472bd7d88b4","95f8beace3ed894e3e5e3ebaae46c855dfc133e2c63d37663a760c801750f7d4","74d53dbd8fe0d1124911539b879ea9b3461e93ab82bab16497945bf8d73541da","68cc8d6fcc2f270d7108f02f3ebc59480a54615be3e09a47e14527f349e9d53e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","f7358ae08d4d675cfb7eb7f1a62f70195c3691441e4ceb89669206a895de0417","3762f27827fd30d8372c355e7b8739fb4bfc830c6ce33c241f236416d34924a1","603177107b8f7d1e5b993470f4cdec86b61d48a052c5c12e51e340b93531334e","3fff2e6159326d7dbb59c163736a0c522f1cbba6730dc01823a973452666fccd","6a445cf1acf23219aac91c5909f5c338b9408fb7ae6467a434f0e15eff913814","6aa9a466f775ad6d8d48a4d69eac063e4ed47365dfa7aec82a8b554b70938bb4","c1dba063181dfe84123cc9e8afdb0e5a20a0ec72300def7786447499b67a61ff","fba062292ee802cb4f5de98f6f7fe10727fa0f3b8b5dfc5bc0ccb8f77a33ca4d",{"version":"77a292e0ee4cb78779317915e61d7fdad984bee8aef1643e43a3feaf3d3d42db","signature":"529541874c65a8126f902bc5880899e3fcc7b09da4f12a9b2bf8c8230728d9d2"},{"version":"d37a3cabc4df152ebe2bf46b9a9eb586a349cdd4a3009a698a78141b0bb16f8d","signature":"4fe2e11394e5f52464091793af38a99b545fe7ce9e9f64f91bbabd0a97e7bcc2"},"d033994de04b457aa98fb6983bf30d4bce081925a4b999c8a7011c4dc19e12f0","7a6f74294b8fb90f5e3832be21e25898dd81b2a1adc36dda6929813ba4135311","d25e693302c8e284b417884b40dbadffe693b0daff8999a000995114dbf74c49","a1d4ac1b15cd62c7346d976e3a01e6cbcd4f166ea6b7866907d25c5acc832d77","5d40e6a7071d0d1e6e558e17214ff786ecb3ea73e31b25a88c2cbe2435fa1252","6d268309f0e15dd820b2df9806234166554cb4e2fe00d11737adcb4e5489f700","58cf96187feb10cc8ad3bb080871cd30888ef63bc5db131f11458850ef8f6245","9102986ff52326a2016e8cddc1cf3092f0808ac916dcc8dc2d2c7195cd181987","fa82b7b22d9df87323e31e9e2ad75911028f3e544647fd212424b3c4452fee3f","01f20dac9dc14f0d306e5d1215c5c1c3b4d1805905e60ae92fabac4031eae7da","9ceec2a882368c0160a8a3879aa0efce0fb985751fc23ff6191006030969cfa4","cad5d6451789234434c28dd2d6a8267b0d64c479b1ad267321faa31ba90d570b","6516fc98fa10b0cb22c7e332bacea4a7ea80257e113f6cdddd924d03bfde218e","c45242078469b9680653d6a0667b23b1b767ec908825a14bfa8bb1dde2e30dae","266993722f7de555dcc4086aa939265567f2b98605b3c968f5dca0e746a21d0b","62d20f9d1facac05fc63e939206d1a9a2b9be8abc15f085df720641cf8a38313","169c460509c155b8a407c4e5cbfc384fa1ac3a73a34e7d06a21a892b65fc2c0d","6ab8be5dc7330220864694d9fa1c6ce22dde178d4faab8082290a656d45422f9",{"version":"80f2c5e6a6cf53725d68e682f45b7a086aa99086ec2553c25eb1b3f6164728f4","signature":"2bd0daba849641a5d74f5ed5b3b24fca00c31ba37aa8f78eb305c47efce9c628"},{"version":"aab524f890e80e5434a12cefa31546c6d54a251680d6250688a33c7441b1f569","signature":"fa817097d96819d59f3bc02a7fdeb216294b0bef0c0a388c3abbc6c4b672074f"},{"version":"05502f675afd32c6a3b6806e15b93b16c6ccc27fcbff63884e618d758ae09b50","signature":"4179c29964885be3f24fd7dd3d7848fa36a4f2db2d619d6629fc57cb2d485ab9"},{"version":"4994e1400c74e42caa0d0ef02ea579954431f3a9d2262ec86ef07baafa1f6dc0","signature":"5c0a4e37b766b3ad2d05fe696b04d88423e336fa001735a59afa355f8ceb39c2"},{"version":"430d476fa3ae6527989e3a24b5311544168528dd9ce9fe777997084fc799da68","signature":"7a11bafdb085133174e0604797bf17d0b46c87d126067bf003f572da9eb9562f"},{"version":"c7cf96db21f837c93c2c659bcbf63c41c9be8dc9988ca648ac95b759ec5c65eb","signature":"5955f2d04b1bd225aba69dd4958e67c71edd8aef6b0a26a224ff5f5e3eceb4bd"},{"version":"23dcde9ef4c6fde25d7dc830d5300f140122b2ede3764c73eb1bade4d24a1e1b","signature":"4ef6914da8349455f64844f4ae750dc89c9ce1f409ef9ab96dc2565918de88cd"},"691732c9f7b276b9692e5b37735fca2962d323f3c6b01ffb81d76ed8df8917e0","2a8172b7b016ea984d3539402021d04a819b8b1dff7b637fdd806a90ea418409","ac63a01fcac70315fc9b416e9a57e568b18032c7cfcaa314e1751f03ef71286f",{"version":"fee8c81ab136652ee9daeadb3cf3473228ec8aef190358c483de3b1f35145ebd","signature":"8a5b3464a391ec690d3bf48f2caf432009ecfbe8a1947bca52ca500124c3d5b9"},{"version":"c83949910e5d1c9818269246ece24b45f8a094fe37cb3d9f12c6a6d1bd1ecc95","signature":"ed41ca7a8baa91a6aeca711a61bc8eed3497dc1cb54286ccfadebc061a21e6c8"},"9a09602a78e685b385cfc15e78b49fa6db9b8abe1903026b63a33176c75f9f01",{"version":"90ebf5865e27d8966ef44b073e6e83b0ddd45058bab1d58b1e4b5a47d36396c4","affectsGlobalScope":true}],"root":[60,294,316,317,[336,342],[346,348]],"options":{"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"module":7,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[193,196,205,206,207,209,217,218,219,220,235],[205,206],[61,204],[193,205,206,208],[210,212],[208,210,216],[214],[193,206,209,210,211,212,213,215],[206],[61,193],[206,209],[78,193,205],[204],[197],[61,197],[197,198,199,200,201,202,203],[310,311,312,313],[343],[319],[61,193,249],[320],[193,318,319,321,322,331,332,333],[61,330],[193,235],[78],[73,78,193,229],[221,230,231,232,233,234],[193],[73,78,193],[61,68,79,80],[68,78,80],[61,68,78,79,193],[67,81,193],[153,191],[62,68,73,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,192],[61],[80],[81,83],[62,65,67],[68,78],[68,81,193],[61,68,80,83,96],[61,68],[61,79,80,193],[68,80],[73,78,80,83,90,193],[222,223,224,225,226,227,228],[193,224],[193,222],[193,223],[63,65,67,193],[78,193,257],[78,193,235,238],[193,264],[193,263],[193,262,264],[261],[72,73],[72],[70,71,74],[78,314],[69,74,76,77],[74,76,78],[75,78],[306],[100],[140],[141,146,175],[142,147,153,154,161,172,183],[142,143,153,161],[144,184],[145,146,154,162],[146,172,180],[147,149,153,161],[140,148],[149,150],[153],[151,153],[140,153],[153,154,155,172,183],[153,154,155,168,172,175],[138,141,188],[149,153,156,161,172,183],[153,154,156,157,161,172,180,183],[156,158,172,180,183],[100,101,139,140,141,142,143,144,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],[153,159],[160,183,188],[149,153,161,172],[162],[163],[140,164],[161,162,165,182,188],[166],[167],[153,168,169],[168,170,184,186],[141,153,172,173,174,175],[141,172,174],[172,173],[175],[176],[100,172],[153,178,179],[178,179],[146,161,172,180],[181],[161,182],[141,156,167,183],[146,184],[172,185],[160,186],[187],[141,146,153,155,164,172,183,186,188],[172,189],[254,256],[253],[255],[78,193,235],[74,193,235,257],[78,193,229,235],[73,74,78,193,229,235,265],[78,193,229,235,259,260,266],[74,193,240,257,258,267,268,269],[63],[242,243,249,250],[66,67],[66],[64],[241],[65],[65,245],[67,244,245,246,247,248],[63,64,65,66,241],[63,64,65],[330],[323],[61,323],[323,324,325,326,327,328,329],[252],[249,251],[111,115,183],[111,172,183],[106],[108,111,180,183],[161,180],[191],[106,191],[108,111,161,183],[103,104,107,110,141,153,172,183],[103,109],[130,131],[107,111,141,175,183,191],[141,191],[130,141,191],[105,106,191],[111],[105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,136,137],[111,118,119],[109,111,119,120],[110],[103,106,111],[111,115,119,120],[115],[109,111,114,183],[103,108,111,118],[141,172],[103,108,111,118,125],[106,111,130,141,188,191],[193,290,291,294,336,341],[291,292,293],[290,291,309,341,344,345],[60,253,290,291,341,344],[60,78,193,290,294,309,317,336,339,340],[78,290,316],[60,294,336,338,341,342,346],[78,315],[60,78],[193,334,335],[60,78,290,291,309,315,337,338],[290,291,292,294],[290],[193,274],[194],[78,193,194],[193,273,274,275,276],[273],[194,195,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289],[193,236,237,239,270,271],[273,278],[274],[193,194,273,274],[273,275],[193,195,235,273,274],[193,194,272,274,275],[273,274,275],[206,236,274,276,278],[78,193,272,273,277,279,281,282,283,284],[78,295,296,297,298,299,301,302,303,304],[290,300],[305,308],[307],[193,290,341],[341],[290,341],[78,193,290,339],[78,290]],"referencedMap":[[236,1],[207,2],[205,3],[209,4],[213,5],[217,6],[215,7],[216,8],[212,9],[218,10],[219,11],[206,12],[197,13],[200,14],[201,14],[198,15],[199,14],[204,16],[202,3],[203,13],[314,17],[344,18],[320,19],[318,20],[321,21],[334,22],[322,19],[331,23],[332,20],[333,20],[237,24],[221,25],[230,26],[235,27],[231,28],[232,10],[233,28],[234,29],[92,30],[93,31],[80,32],[82,33],[192,34],[193,35],[62,36],[84,37],[94,38],[68,39],[81,40],[85,41],[86,40],[97,42],[98,43],[88,37],[90,44],[89,45],[91,46],[225,28],[229,47],[224,28],[222,28],[223,28],[228,48],[226,49],[227,50],[335,51],[269,52],[239,53],[265,54],[264,55],[263,56],[262,57],[74,58],[71,59],[70,59],[72,60],[315,61],[77,25],[78,62],[69,25],[75,63],[76,64],[307,65],[100,66],[101,66],[140,67],[141,68],[142,69],[143,70],[144,71],[145,72],[146,73],[147,74],[148,75],[149,76],[150,76],[152,77],[151,78],[153,79],[154,80],[155,81],[139,82],[156,83],[157,84],[158,85],[191,86],[159,87],[160,88],[161,89],[162,90],[163,91],[164,92],[165,93],[166,94],[167,95],[168,96],[169,96],[170,97],[172,98],[174,99],[173,100],[175,101],[176,102],[177,103],[178,104],[179,105],[180,106],[181,107],[182,108],[183,109],[184,110],[185,111],[186,112],[187,113],[188,114],[189,115],[257,116],[254,117],[256,118],[240,119],[258,120],[259,24],[260,121],[266,122],[267,123],[270,124],[268,119],[250,125],[251,126],[64,127],[67,128],[241,129],[242,130],[243,130],[245,131],[246,132],[249,133],[248,134],[66,135],[323,136],[326,137],[327,137],[324,138],[325,137],[330,139],[328,23],[329,136],[345,140],[253,140],[252,141],[118,142],[127,143],[117,142],[136,144],[109,145],[108,146],[135,147],[129,148],[134,149],[111,150],[110,151],[132,152],[106,153],[105,154],[133,155],[107,156],[112,157],[116,157],[138,158],[137,157],[120,159],[121,160],[123,161],[119,162],[122,163],[130,147],[114,164],[115,165],[124,166],[104,167],[126,168],[125,157],[131,169],[342,170],[294,171],[346,172],[347,173],[341,174],[317,175],[348,176],[316,177],[337,178],[336,179],[339,180],[340,181],[338,182],[283,183],[288,184],[287,28],[195,185],[277,186],[284,187],[290,188],[272,189],[279,190],[275,191],[271,192],[274,193],[280,194],[273,195],[276,196],[281,197],[278,193],[282,193],[285,198],[305,199],[299,182],[303,182],[301,200],[300,182],[298,182],[309,201],[308,202]],"exportedModulesMap":[[236,1],[207,2],[205,3],[209,4],[213,5],[217,6],[215,7],[216,8],[212,9],[218,10],[219,11],[206,12],[197,13],[200,14],[201,14],[198,15],[199,14],[204,16],[202,3],[203,13],[314,17],[344,18],[320,19],[318,20],[321,21],[334,22],[322,19],[331,23],[332,20],[333,20],[237,24],[221,25],[230,26],[235,27],[231,28],[232,10],[233,28],[234,29],[92,30],[93,31],[80,32],[82,33],[192,34],[193,35],[62,36],[84,37],[94,38],[68,39],[81,40],[85,41],[86,40],[97,42],[98,43],[88,37],[90,44],[89,45],[91,46],[225,28],[229,47],[224,28],[222,28],[223,28],[228,48],[226,49],[227,50],[335,51],[269,52],[239,53],[265,54],[264,55],[263,56],[262,57],[74,58],[71,59],[70,59],[72,60],[315,61],[77,25],[78,62],[69,25],[75,63],[76,64],[307,65],[100,66],[101,66],[140,67],[141,68],[142,69],[143,70],[144,71],[145,72],[146,73],[147,74],[148,75],[149,76],[150,76],[152,77],[151,78],[153,79],[154,80],[155,81],[139,82],[156,83],[157,84],[158,85],[191,86],[159,87],[160,88],[161,89],[162,90],[163,91],[164,92],[165,93],[166,94],[167,95],[168,96],[169,96],[170,97],[172,98],[174,99],[173,100],[175,101],[176,102],[177,103],[178,104],[179,105],[180,106],[181,107],[182,108],[183,109],[184,110],[185,111],[186,112],[187,113],[188,114],[189,115],[257,116],[254,117],[256,118],[240,119],[258,120],[259,24],[260,121],[266,122],[267,123],[270,124],[268,119],[250,125],[251,126],[64,127],[67,128],[241,129],[242,130],[243,130],[245,131],[246,132],[249,133],[248,134],[66,135],[323,136],[326,137],[327,137],[324,138],[325,137],[330,139],[328,23],[329,136],[345,140],[253,140],[252,141],[118,142],[127,143],[117,142],[136,144],[109,145],[108,146],[135,147],[129,148],[134,149],[111,150],[110,151],[132,152],[106,153],[105,154],[133,155],[107,156],[112,157],[116,157],[138,158],[137,157],[120,159],[121,160],[123,161],[119,162],[122,163],[130,147],[114,164],[115,165],[124,166],[104,167],[126,168],[125,157],[131,169],[342,203],[346,204],[347,205],[341,206],[317,207],[348,176],[316,25],[337,25],[336,28],[339,207],[340,182],[338,182],[283,183],[288,184],[287,28],[195,185],[277,186],[284,187],[290,188],[272,189],[279,190],[275,191],[271,192],[274,193],[280,194],[273,195],[276,196],[281,197],[278,193],[282,193],[285,198],[305,199],[299,182],[303,182],[301,200],[300,182],[298,182],[309,201],[308,202]],"semanticDiagnosticsPerFile":[220,236,207,196,205,209,213,217,215,210,208,216,212,218,219,206,211,197,200,201,198,199,204,202,203,313,314,311,312,310,343,344,320,318,321,334,319,322,331,332,333,237,221,230,235,231,232,233,234,92,93,80,82,99,83,192,193,62,84,94,68,81,85,86,95,97,98,87,88,90,89,91,225,229,224,222,223,228,226,227,335,269,238,239,265,264,263,262,74,71,70,72,315,77,78,69,75,76,292,307,349,306,100,101,140,141,142,143,144,145,146,147,148,149,150,152,151,153,154,155,139,190,156,157,158,191,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,173,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,102,214,257,254,255,256,96,79,293,240,258,259,260,266,267,270,268,250,63,251,64,244,67,241,242,243,245,246,65,249,248,66,247,261,73,323,326,327,324,325,330,328,329,58,59,10,12,11,2,13,14,15,16,17,18,19,20,3,21,4,22,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,1,57,61,345,253,252,118,127,117,136,109,108,135,129,134,111,110,132,106,105,133,107,112,113,116,103,138,137,120,121,123,119,122,130,114,115,124,104,126,125,128,131,60,342,294,346,347,341,317,348,316,337,336,339,340,338,283,288,287,195,277,284,290,286,272,279,289,275,271,274,280,273,276,281,278,194,282,285,291,304,297,305,295,299,302,296,303,301,300,298,309,308]},"version":"5.4.5"}
|
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.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.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.es2016.intl.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.sharedmemory.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/constants.ts","../../../node_modules/uint8arraylist/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/keys/index.d.ts","../../../node_modules/multiformats/dist/src/bases/interface.d.ts","../../../node_modules/multiformats/dist/src/block/interface.d.ts","../../../node_modules/multiformats/dist/src/hashes/interface.d.ts","../../../node_modules/multiformats/dist/src/link/interface.d.ts","../../../node_modules/multiformats/dist/src/cid.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-id/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/protocols-table.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/dns-over-https.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/dns-json-over-https.d.ts","../../../node_modules/@multiformats/dns/dist/src/resolvers/index.d.ts","../../../node_modules/progress-events/dist/src/index.d.ts","../../../node_modules/@multiformats/dns/dist/src/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/resolvers/dnsaddr.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/resolvers/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/filter/multiaddr-filter.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/index.d.ts","../../../node_modules/it-stream-types/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-info/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/content-routing/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/event-target.d.ts","../../../node_modules/@libp2p/interface/dist/src/metrics/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-routing/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-store/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/startable.d.ts","../../../node_modules/@libp2p/interface/dist/src/stream-handler/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/topology/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/stream-muxer/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/transport/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection-encrypter/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/connection-gater/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-discovery/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/peer-store/tags.d.ts","../../../node_modules/it-pushable/dist/src/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/pubsub/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/record/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/errors.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.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.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/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.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/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/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/filereader.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/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/dom-events.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/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/promises.d.ts","../../../node_modules/@types/node/stream/consumers.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/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/wasi.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/ts5.6/index.d.ts","../../../node_modules/@libp2p/interface/dist/src/events.d.ts","../../../node_modules/@libp2p/interface/dist/src/index.d.ts","../../interfaces/dist/sharding.d.ts","../../interfaces/dist/enr.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message/decodeRpc.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/codec.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/decode.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/encode.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/codecs/enum.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/codecs/message.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/utils/reader.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/utils/writer.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/node_modules/protons-runtime/dist/src/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message/rpc.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/types.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/message-cache.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score-thresholds.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/metrics.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score-params.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/utils/set.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-stats.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/compute-score.d.ts","../../../node_modules/denque/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/message-deliveries.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/peer-score.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/score/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/stream.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/tracer.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/config.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/address-manager/index.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/map.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/set.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/list.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/filter.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-map.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-set.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/tracked-list.d.ts","../../../node_modules/@libp2p/peer-collections/dist/src/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/connection-manager/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/random-walk/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/record/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/registrar/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/transport-manager/index.d.ts","../../../node_modules/@libp2p/interface-internal/dist/src/index.d.ts","../../../node_modules/@chainsafe/libp2p-gossipsub/dist/src/index.d.ts","../../../node_modules/@libp2p/identify/dist/src/index.d.ts","../../../node_modules/@libp2p/ping/dist/src/constants.d.ts","../../../node_modules/@libp2p/ping/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/address-manager/index.d.ts","../../../node_modules/multiformats/dist/src/codecs/interface.d.ts","../../../node_modules/multiformats/dist/src/codecs/json.d.ts","../../../node_modules/multiformats/dist/src/codecs/raw.d.ts","../../../node_modules/multiformats/dist/src/bytes.d.ts","../../../node_modules/multiformats/dist/src/hashes/digest.d.ts","../../../node_modules/multiformats/dist/src/hashes/hasher.d.ts","../../../node_modules/multiformats/dist/src/varint.d.ts","../../../node_modules/multiformats/dist/src/interface.d.ts","../../../node_modules/multiformats/dist/src/index.d.ts","../../../node_modules/multiformats/dist/src/bases/base.d.ts","../../../node_modules/multiformats/dist/src/basics.d.ts","../../../node_modules/uint8arrays/dist/src/util/bases.d.ts","../../../node_modules/uint8arrays/dist/src/to-string.d.ts","../../../node_modules/interface-datastore/dist/src/key.d.ts","../../../node_modules/interface-datastore/node_modules/interface-store/dist/src/errors.d.ts","../../../node_modules/interface-datastore/node_modules/interface-store/dist/src/index.d.ts","../../../node_modules/interface-datastore/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/components.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/auto-dial.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/connection-pruner.d.ts","../../../node_modules/p-defer/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/recipient.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/job.d.ts","../../../node_modules/@libp2p/utils/dist/src/queue/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/priority-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/dial-queue.d.ts","../../../node_modules/libp2p/dist/src/connection-manager/index.d.ts","../../../node_modules/any-signal/dist/src/index.d.ts","../../../node_modules/@libp2p/utils/dist/src/adaptive-timeout.d.ts","../../../node_modules/libp2p/dist/src/connection-monitor.d.ts","../../../node_modules/libp2p/dist/src/transport-manager.d.ts","../../../node_modules/@libp2p/peer-store/dist/src/index.d.ts","../../../node_modules/libp2p/dist/src/index.d.ts","../../interfaces/dist/metadata.d.ts","../../interfaces/dist/libp2p.d.ts","../../interfaces/dist/protocols.d.ts","../../interfaces/dist/misc.d.ts","../../interfaces/dist/message.d.ts","../../interfaces/dist/receiver.d.ts","../../interfaces/dist/filter.d.ts","../../interfaces/dist/sender.d.ts","../../interfaces/dist/light_push.d.ts","../../interfaces/dist/peer_exchange.d.ts","../../interfaces/dist/relay.d.ts","../../interfaces/dist/store.d.ts","../../interfaces/dist/connection_manager.d.ts","../../interfaces/dist/health_manager.d.ts","../../interfaces/dist/waku.d.ts","../../interfaces/dist/keep_alive_manager.d.ts","../../interfaces/dist/dns_discovery.d.ts","../../interfaces/dist/constants.d.ts","../../interfaces/dist/local_storage.d.ts","../../interfaces/dist/index.d.ts","../../utils/dist/bytes/index.d.ts","../../../node_modules/@noble/secp256k1/lib/index.d.ts","../../../node_modules/js-sha3/index.d.ts","../src/crypto.ts","../../utils/dist/common/is_defined.d.ts","../../utils/dist/common/random_subset.d.ts","../../utils/dist/common/group_by.d.ts","../../utils/dist/common/to_async_iterator.d.ts","../../utils/dist/common/is_size_valid.d.ts","../../utils/dist/common/sharding/type_guards.d.ts","../../utils/dist/common/sharding/index.d.ts","../../utils/dist/common/push_or_init_map.d.ts","../../utils/dist/common/relay_shard_codec.d.ts","../../utils/dist/common/delay.d.ts","../../utils/dist/common/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../utils/dist/logger/index.d.ts","../../utils/dist/index.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/util.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/ip.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/ipnet.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/cidr.d.ts","../../../node_modules/@chainsafe/netmask/dist/src/index.d.ts","../../../node_modules/@multiformats/multiaddr/dist/src/convert.d.ts","../src/multiaddr_from_fields.ts","../src/get_multiaddr.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/ed25519-class.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/interface.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/ecdh.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/ephemeral-keys.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/key-stretcher.d.ts","../../../node_modules/protons-runtime/dist/src/codec.d.ts","../../../node_modules/protons-runtime/dist/src/decode.d.ts","../../../node_modules/protons-runtime/dist/src/encode.d.ts","../../../node_modules/protons-runtime/dist/src/codecs/enum.d.ts","../../../node_modules/protons-runtime/dist/src/codecs/message.d.ts","../../../node_modules/protons-runtime/dist/src/utils/reader.d.ts","../../../node_modules/protons-runtime/dist/src/utils/writer.d.ts","../../../node_modules/protons-runtime/dist/src/index.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/keys.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/rsa-class.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/secp256k1-class.d.ts","../../../node_modules/@libp2p/crypto/dist/src/keys/index.d.ts","../../../node_modules/@libp2p/peer-id/dist/src/index.d.ts","../src/peer_id.ts","../src/multiaddrs_codec.ts","../src/waku2_codec.ts","../src/raw_enr.ts","../src/v4.ts","../src/enr.ts","../src/creator.ts","../../../node_modules/@ethersproject/bytes/lib/index.d.ts","../../../node_modules/@ethersproject/rlp/lib/index.d.ts","../../../node_modules/uint8arrays/dist/src/from-string.d.ts","../src/decoder.ts","../src/encoder.ts","../src/index.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"3ee50043db7667957e6879f00e1638bc1af3ae660d8c31c51442d39a5a7d0dfc","signature":"02745a73c954228b9ee7fdb90451051e3f93a14f4a20ec3190113b37d101a021"},"d35b5db21a04a45ae6323c4d4b25acc983dfe2870fc670fd05249eb19d839a5e","e6877d43c2eb116aeafde2c81bec47e68dbb7d964804d65beaf9c7cdf81b5fa6","4a3605bef1a5ef29fd5a1696dd95b0b4e2259e2d07a4d88fac79f3a9765c44a2","370079895f1acdd4bb5194a403c85bf60cfbb2654bced9430a6c7210e7246be8","90240231e730deed31569f6c686766a538e4a024bbc33ea1738fe924f477ba61","552223520e823223ee13c5764e9b69b1819c985818a8bcda435d8d1dbd909bee","49b7c3ddd683c09aa437dd92681699387441f522524b14d2331ce494a9bf2f27","3292bd23ca5d9b8d02492b49099f6917f9715e0fd48b7b5fbb1edbf8c2021c5f","5212dd78d1d63ab33332c8846a0ea5ce248159e74033cde16de48373036b4704","954b3c04ee9f94ca1e262f3e5a6e833b0da0066514b3d4b97b92b7f0c85f8700","a2fc9ce1ae5bed7068d701d8aeebf13321de0f42c217dc2e10f1622dcaa53a7f","8e81f220cb935d551e88cff11541d5e89d3a3494a52fe6247e98016a9dbd4c2d","6b2576a04253626ba41b7dc7ec5977bec07f3b6952b16249d9fa8a3a0d79901c","9de17491f2bfbccea92500e174079d53bdedae34dbebe5d4a12a06ab09814710","e88481085a8576fa52efc913e631c1a833d16179486469b8538d8c4fab2f7381","aec68502c8f4ffaecb4440b37363473582fec0bfee4fb8668a87daa7f700f708","d71577e78c7a4257074aaf82f595724175210c89e8b467ef82f949a6cbd891bc","cf548af8b03cbbc79fdc4f357b5560f618c6d2f68c8688e6eb759c3c11d962c3","c84146dbc9d2e5f43d2cbf15485a4eabf90219dbb66c0d481f20f12d3851bffc","6f27a01e3be326f1f7cd42c1a67f9912f2d58c80f864b263a848a2142212bc0c","99c24f331c9f4e75a779b9a988e942442db3cf29923ceb820d3bdd4ed1edfef2","25b1f20d5868ef9ef18132f7dd76b40b7038688ff7c56c58930537a8dff9f231","0699e4b82c89b8b4da3c56de9457ce959ee8e7ac346af75785bc59a91f688d3f","9bba18dcac8cc9bdce65a4e34122d90474617cdf857feddeeba1e7a3638097d4","8c92080253bac0506d82b83d555a029582595f0944abb349954ea732322baa5c","9196da290a76cf32b70a8cfdbeb165f75bee9a094d70662cee6383fa09a73e43","230eb449f719119cab1728252f20ecdd36d7a20cef659e4a51ada1a232a8aaad","85786f052b5dcd0b36564b657a9aea3e80f1fd0e76e4606a4400ec21928892c1","3ac9cfb334b17c90aae03c3d17d978f829488b22d48b7a00b019dc16f62db77d","1bf687d978bdd6d5aff10b9eb0ff0695179f8594d4446946fd0182d6d25fa433","a01d0d5afa693508187608b13a4b6ccf6105cd896b7ee950954364ac71670580","f5337c3ea7b8702ffe2718f56a24325a67d517c0d552ef71b8d578d9f33a99d3","2113d72680c7ddad6d3b6f70a29432a35c074c94ec6823a7c16ccd69847d965c","c8ffd61bf2db2e7bccb996dd70c9499805cb338f1b1c781987e38ba99dd5b296","55e5a976b594dc02f054860fb59a5299872a5b3c8c90e96733a5c9c9d4ed1fb8","fac83d4c6898d5bf90c508cc84409ded40fdc14611cf42d7fb750fb2c7847979","8a1cce1f66006707d7219898543512bbdce3eb744b7e730606965b2c9680f5f7","cdebdc5861de7a07ddfbd6740a7ad3415068522e19a82bc652ae313c76e4f83d","9c7aa50c1eaa6e0fb07d478ef1b047e9bedb89efd626bfe342f57c8dec15536c",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true},"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"bb2cd9339d0201e7e78ccb6ff2f71aac103934bf35eaaa37e139ac2b68af0db8","affectsGlobalScope":true},"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0",{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true},"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"42a872b757f365f61369e869f8403ec1e78b5a85418622801011009a1430d87f","affectsGlobalScope":true},"c956ba45704d4a97f7a96923a307a6203bc0e7c4c532930d4c8ca261eaaff32a","ab0e88d33ccf15d8b3c891038b5a16094b0dd7e860ab0e2ba08da4384afce02b","954580f86c8e2a4abd5dcd1bcdf1a4c7e012495f1c39e058dc738bc93024642a","fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6",{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true},"94c4187083503a74f4544503b5a30e2bd7af0032dc739b0c9a7ce87f8bddc7b9","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","c86b9afa9b39b12db8e877d23b48888d80f26e1fe72a95f58552746a6e1fa4fe","e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","07b9d3b7204d931acc29269c98ac3aac87ebcba6e05141552d42a4c17f895aa4","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633",{"version":"1425f76ac97ce8617d1e2fa79e9a14e0fd1cfdaa155e13d4e92403a468177bc2","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada",{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true},"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"18f5c7c4ad71748cffdd42e829398acdfd2d150a887e5f07aae4f2acab68e71b","affectsGlobalScope":true},{"version":"72ed3074450a4a315063278f046637afdeea90aa72b2292a7976958ceafc344a","affectsGlobalScope":true},"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true},"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"f2b6058d3dd78c1b4dafc97083c5d44bdfbf4155194044bd17b8fcca554e766a","c663a7e4ee2cb54d99cf095479a5bcf1dd18d762ffdfa038aa1b2d79b070b0d7","d26127118c28d9ea66bdeeaa25e25ee02c6ece837741a3b0c80e507a683db8af","7ed48493953e1f10eb2da6f35b5e04941d3ac8bb618a9d1888da77f7ee43422c","b35182ba2344e5b4a1387b193fa7a1d3f2321f2bbeadab6ddf5c2571d0b67e44","7ad3e0aaeb840047fa4711306188cac803514091f251b6baecb9b2aacf15b976","6d268309f0e15dd820b2df9806234166554cb4e2fe00d11737adcb4e5489f700","58cf96187feb10cc8ad3bb080871cd30888ef63bc5db131f11458850ef8f6245","9102986ff52326a2016e8cddc1cf3092f0808ac916dcc8dc2d2c7195cd181987","fa82b7b22d9df87323e31e9e2ad75911028f3e544647fd212424b3c4452fee3f","01f20dac9dc14f0d306e5d1215c5c1c3b4d1805905e60ae92fabac4031eae7da","9ceec2a882368c0160a8a3879aa0efce0fb985751fc23ff6191006030969cfa4","cad5d6451789234434c28dd2d6a8267b0d64c479b1ad267321faa31ba90d570b","d5197053be441d40f4d074185a40d461137c8fa8db9e00cceedf2d9ca6583157","3cd33c37432c2de7bdd9f1d48b3ea4fd03afad4969cfc5ba88d81e6ed03f432c","6db29cf7af1d68c8194d98f1c444cea3b30a2c65deda3428452efaa05717b81d","561ef05d7e369040c28800d878d7e6461af62e459460263e911d508f319c8d5d","a1b60bd2328318dcbec30bdf529dad31a13315ff2df60c8bd71630c58a575b06","a399dd9b73e4bbfbed2ad1c1259d707f5f147f40dc5e3eeb541bf0bf2da42b25","8cc6a35806cd10d448b0f2ab01fe0b6194ca57fdaced2d71781b68e83c55bd88","8f364fec0ef20506aa9cf00b5cd8b620c1c0389687b11a3a32b0b5d4716ad894","5d11703e2c5d4dbe00bbe79f3bc864d178cf8d6ebccc2d1448ea29e93654f029","f4e82c91aac3b61f3ad04f11a44c5b79f724ff8a09281d0afa24a6624633ff25","ed849d616865076f44a41c87f27698f7cdf230290c44bafc71d7c2bc6919b202","7b8b9017156ef8bf3bbe42785fac8956e5c9869f4a494536d7f548a7c1c7d98a","07c34d1f83dfc5746de4229e01f0cb4d388a9f128eab6beadb4ae1621ebb87c6","763bb8df872cbb8783e29e19bd7a1dea0f88f7fd7398343af38be8509a65df82","372b3681eb9618821c0e0e10bcc775b838e45b51912b8998bc5ba035100dc9e5","c286b410193495d067668bcdbd13ea3f3a39001edff02edee248babf2652e563","87c73268165bf20f01c101ac785e8a9d1d95ff203d05d3548a6c49952597e321","af89ab13b40dd28cd91818fc6329914d2b9663591831f032ff0f0cb4a028d4a5","63007f1618ada5041fb3b47630b64a9987d268bf740dd72334c38b5d23f5239b","3395f90467d2bb9db039a5c22ed6659ca2ff6f0b4f7ee5f223b0f77288f54ea7","20df2907d398e369d49e8906d6e0f096c465501e9ceff9d61293bf0f4e9020f1","302aa8248dab7c689c103162e542224aa7f3b0db46e29d0fb468fac721cf1c41","ea0a3bb69845621165c21e80ebb0d2b28dad22cd9920564516ce8e927a828f79","6a81475a67505af60be3242841c65ce4bf6d0b624d8b3fada646ba459a3eaad8","6834dd6cc060648604278cdb920a9316fa916e9116134b17dfad90e42800ca47","19fba62f1aab90f0110738261ed8bc1da82c89433fc43265f14870d4380d10b8","fbb2df54f4778b4d691bbc7c0a6e1e241dfffaca19f443cc9f230f450458bf89","da98d8109f379be48d459a6821ebd7cc728af62557e1c44f864e04360686af93","ef6e6d838cc600162626a53167046484f38e9a4bab9454e72350bed76c497228","8adf9a02b0c2508f81516b561a6c8080ea2169126f166e39767bcb5389b9cfbc","c8b50ecedc9ff1b0e83c96f0a334d022874199f7c2d00d182ca6672176b0ea9d","b66ede73039e8751e06e3cab843e5a4265c1124a3285c3d854092c37a966b1f5","580ac7757b426f045be01f7e47fff9910b922442b45266fd3fe39c44b53ef5ad","fa301b2933323df25f8e033bfb6dc16223751b9d01a3ee1c085004bce8f9ad9f","ea9b8f7426fe0e92b4e7d3cdffa9c2d0bf994abddf3a4bb469beda7b45be34e2","135d2c5bb3919efdd655f2a868533582504827b2d1c10188e1bc3ba80ee015cc","25578b2e19ab0fd92fdc00543abc195d65bdfcb0b800243d5c001129c93907b5","1447d46bff9e7c5c77da14515a7456ea5e919ce6e28f5e6746edf99818e4be47","ba3f6f0ee47f46cdce55620aec5726de80e92a930982634afe9918c114c38f0b","6f38045547cdfd54ec19abcd943cace72c775fde739c5e0e1d917cf3030c16b5","929fc31f7523aaa1d19735b77e637af06e58d76007648ec088ecfbec1521cbfe","3d0e04c8ca3f41da5f3d689500d9c4aeb54a1c59764d66d58f0e579b9af720e5","a6eb23f2a83113ce0ab7203bfda2be0888720f8d694a20abaef83b9f62832061","363dca5004ac5a3d9c2bba12812b97a64461911762f0b8f9320a8856ec53bcad","557b8c7481296f4b7ed362320f3bbb40bb87404edf880c81224f365a8d1e17f3","283ed3d075bf7d3e8793f63b2a52f475ed84d95b7b6351c5d5bcc6c49d4b845b","6544dab49004fecb69a4ef775e9ad2773a6148b1f9bfd9b75508e3afa11f5d35","b499490bd2f0d602501eb24d4e91ccb2d7fdfd24acb86889d74d5f16ac15c4ca","e2dd36a524ea5b13de1ed104ede9cea79696588175c1df1940d6a29113a4aee0","a878d4c7237a7af50e96534295fcf723134d70cbb1e9bfd8365266b912aee6ec","a1f708ddf34053065f8f53682123421af299cee37ae110a86ba07851adf940da","406ad29837d74e2ec97cdd8bba6295b6c984c1793d287c77fd1bb9ac9ff105cc","749effab6d7e72df8d126868c82b8166cdde84d48453e44f65cbad42ad900b06","11705a4aad6e2e724b82ffee6c4fa271d798f0fb68806ace4b1c425c266f8d98","3630ed70bc81eb54659965fcac105c0d420e667b1d0eaf96ab243de4e81ecd68","a6cb689a6c97d8cffb0a4bd649711838d37d2e574eeb8d40402d4a47c645dbd3","3c783303d3de2fac94bbe484a276e4d87a37ae9a7868318a5127c3cb0720a2bd","68f02ba57c531227ef5804dd57f2e940b10c544c96dadd3c0ef958ba4b6fdbc1","d84174912accc090e9b061b36101f8401add7f486ee532f45d298fb8e550dcb8","f0e9c96fe0af329a25c943d4a19fc3f6d2430914f49a83d1666cbaace3e41a7a","e4515754fbef20229cb3479d25ff0fc858f71d494cf1adeda1bcfa7ad02851f7","3780b990e935be00e1d77afaaf9e80ec9b7d79ea4d1f230206c054eb6717c9d5","89d55270e34359d2c38b432aaa551c2998ecaf94d5ec402ef485f9db9f755605","979ae534126f0425943594de327c5816427a27ad57bb3c8ad7ca9ef9c89928f5","ca027df9fd496a200d99ca0db4b0077463ce4926a6c8e05cfae522c5971ccbc0","e043a9288022e8d802117e5e9e718443296f9c69a5eab7ed89b2fb76128a0140","4be845d5beacd9fe46dde7d632baa349ec639c3db4ea4299b7e93d431f3b29a8","357f2ba403c4f78a11b64df1e9ffb56e241924d6cc768a38c05c7dc7cfe70ff0","d68afd5ea85e35c4c4e8995e55f10d6861439ea9dc2666293c0cf4124bf56f32","ddf202e8feefdfe006f26c0c08ed7a338b6f81c150eacf044b33711f843320b0","5bfbc7923d86040aeed60f6729ef2f580099d8ba383399f254fc1852c773e7e4","9ab35348dfa05a141dfa8c1e2454a74b3fba256f0726142b958cf16af93b43bf","ea67ea9edbdc03d9734e019bdaa3a2ab60f8f4ba1b9cc0f65898d818f6657917","5dbd990df344a7628e5c585def6171b1acf2a98c55347ac9b9079f7be0acbc3c","0240ed08a314c20bc76b99cf07ed283b0c238dfda466c064cfa9b86dae9e2108","ac2df65093d53e2be927e46c0dd60e087110c5864f937179cf9d56cdce7b2c69","cdc7fe807111ab055f1a2d013131e3a51007ca2653fe475f93ec5a62eccdaf93","0060d09faed43c4d14a1e9577ce394a2dc569d25102a26ba5ede7f3c46ec3e64","5cefc4ddf67b82f35d6cee76160ff09a8ff9c1fe637f1fa0834375c6847911e2","a775a05e0b9dcc2e65e9837f3e2a198e2d8c5e64cd9167670efaeb6157f77d8c","e351b0cc89334136f2a764dea59bf961a68602d6f41346c84a13a0fe6f9c6d26","f63a350f313bf2a8ff2d5adaa9b5e79cfbe351395ba07eee4a6b07a2cb9959c4","aa2ec2fce1f7f7023395a9a42124b5eb18ee7d63680624e5b26bbf4c66de3245","e375db5d6e39e62142a53c6c7545179eb2f784ef11dbb6ba4b0dc56b9b23161b","0978516c236a50c34f22fb9d5786b9b40076d5bf8f9d33a5b76b7676c3b62ad5","09ac11dc22366cb89d815665ca03e3388fe437b270592bce1c1ca7fe3ddaec5d","7fdb4fef9d733572da36bab73f1dddfb68936673528a301398124457b07493c7","0d41406b8c120d55a3930fbb2c98536ac5feeda78d13dc6a0a785716ee8ba825","1e9e07cdc0218f4a3fccc43ce59199cd45cc5217d7f2f5c2f3cba948905c57df","5f80210f554e793c24ece8a4890b590878a5fcd3b748296a57316252719d4116","b3221b2c362171434c0452fd73c27c8a40d42e7d854f1fc85a493c3ed157bbfd","193f3eeb12d0c70404fddd0d6c6d395a6721320284d0d4d39e0538e47ac6931e","f0dbab413bd86c25237078f4219b5cb79099aca5ec2ebf2169513dd669aa8d83",{"version":"64a9dd80ef20dcf59bdccd2d111817cb6cfb66842a958a024ed0e208a001b7e0","signature":"de6928bfa2e865593212ca1b31d36e8243f17fb5a9c3110d36017e0485d77e37"},"d84450725701131933730844923a4974de4cfe0f6e1fe8d3a74e132e292b44c7","433a8fabb08be4997b99eee7863a2362b52c0aca1fcb54330fbf6567a2c92ab0","a4ae79da4d1bb7fb6196294897f1f78a70c8213d2683f750246deab0527511d2","0bbcaafb46edeaf8a72ba969c070fbe9d98459b7b3a17b8c99f79cab49121032","d713b07550ea416686316c24e88dc6245c0f0c12ef78603cae4c9a9791557fb8","7dbb21add04613e1638c36eacc28b9713f65d62080d3611fc82a546641ae4233","603c6d6d5d61f7100a198de05ab675b21fa85b7e9d4776350f1165f7a9055a5e","e8423fe31351f1ce358798b0e0d64e7b0b3396f9f8ef2cfb5713fa3b7d9020f2","4b54f90cffb36f4bc8175ed414995b6432279d6fe9c9dccb704b8472bd7d88b4","95f8beace3ed894e3e5e3ebaae46c855dfc133e2c63d37663a760c801750f7d4","74d53dbd8fe0d1124911539b879ea9b3461e93ab82bab16497945bf8d73541da","68cc8d6fcc2f270d7108f02f3ebc59480a54615be3e09a47e14527f349e9d53e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","d4e17b7b5dc170df915c7bd7345cd19b16b929d57aebf11e4c19226e8810f753","3762f27827fd30d8372c355e7b8739fb4bfc830c6ce33c241f236416d34924a1","603177107b8f7d1e5b993470f4cdec86b61d48a052c5c12e51e340b93531334e","3fff2e6159326d7dbb59c163736a0c522f1cbba6730dc01823a973452666fccd","6a445cf1acf23219aac91c5909f5c338b9408fb7ae6467a434f0e15eff913814","6aa9a466f775ad6d8d48a4d69eac063e4ed47365dfa7aec82a8b554b70938bb4","c1dba063181dfe84123cc9e8afdb0e5a20a0ec72300def7786447499b67a61ff","fba062292ee802cb4f5de98f6f7fe10727fa0f3b8b5dfc5bc0ccb8f77a33ca4d",{"version":"77a292e0ee4cb78779317915e61d7fdad984bee8aef1643e43a3feaf3d3d42db","signature":"529541874c65a8126f902bc5880899e3fcc7b09da4f12a9b2bf8c8230728d9d2"},{"version":"d37a3cabc4df152ebe2bf46b9a9eb586a349cdd4a3009a698a78141b0bb16f8d","signature":"4fe2e11394e5f52464091793af38a99b545fe7ce9e9f64f91bbabd0a97e7bcc2"},"d033994de04b457aa98fb6983bf30d4bce081925a4b999c8a7011c4dc19e12f0","7a6f74294b8fb90f5e3832be21e25898dd81b2a1adc36dda6929813ba4135311","d25e693302c8e284b417884b40dbadffe693b0daff8999a000995114dbf74c49","a1d4ac1b15cd62c7346d976e3a01e6cbcd4f166ea6b7866907d25c5acc832d77","5d40e6a7071d0d1e6e558e17214ff786ecb3ea73e31b25a88c2cbe2435fa1252","6d268309f0e15dd820b2df9806234166554cb4e2fe00d11737adcb4e5489f700","58cf96187feb10cc8ad3bb080871cd30888ef63bc5db131f11458850ef8f6245","9102986ff52326a2016e8cddc1cf3092f0808ac916dcc8dc2d2c7195cd181987","fa82b7b22d9df87323e31e9e2ad75911028f3e544647fd212424b3c4452fee3f","01f20dac9dc14f0d306e5d1215c5c1c3b4d1805905e60ae92fabac4031eae7da","9ceec2a882368c0160a8a3879aa0efce0fb985751fc23ff6191006030969cfa4","cad5d6451789234434c28dd2d6a8267b0d64c479b1ad267321faa31ba90d570b","6516fc98fa10b0cb22c7e332bacea4a7ea80257e113f6cdddd924d03bfde218e","c45242078469b9680653d6a0667b23b1b767ec908825a14bfa8bb1dde2e30dae","266993722f7de555dcc4086aa939265567f2b98605b3c968f5dca0e746a21d0b","62d20f9d1facac05fc63e939206d1a9a2b9be8abc15f085df720641cf8a38313","169c460509c155b8a407c4e5cbfc384fa1ac3a73a34e7d06a21a892b65fc2c0d","6ab8be5dc7330220864694d9fa1c6ce22dde178d4faab8082290a656d45422f9",{"version":"80f2c5e6a6cf53725d68e682f45b7a086aa99086ec2553c25eb1b3f6164728f4","signature":"2bd0daba849641a5d74f5ed5b3b24fca00c31ba37aa8f78eb305c47efce9c628"},{"version":"aab524f890e80e5434a12cefa31546c6d54a251680d6250688a33c7441b1f569","signature":"fa817097d96819d59f3bc02a7fdeb216294b0bef0c0a388c3abbc6c4b672074f"},{"version":"05502f675afd32c6a3b6806e15b93b16c6ccc27fcbff63884e618d758ae09b50","signature":"4179c29964885be3f24fd7dd3d7848fa36a4f2db2d619d6629fc57cb2d485ab9"},{"version":"4994e1400c74e42caa0d0ef02ea579954431f3a9d2262ec86ef07baafa1f6dc0","signature":"5c0a4e37b766b3ad2d05fe696b04d88423e336fa001735a59afa355f8ceb39c2"},{"version":"430d476fa3ae6527989e3a24b5311544168528dd9ce9fe777997084fc799da68","signature":"7a11bafdb085133174e0604797bf17d0b46c87d126067bf003f572da9eb9562f"},{"version":"c7cf96db21f837c93c2c659bcbf63c41c9be8dc9988ca648ac95b759ec5c65eb","signature":"5955f2d04b1bd225aba69dd4958e67c71edd8aef6b0a26a224ff5f5e3eceb4bd"},{"version":"23dcde9ef4c6fde25d7dc830d5300f140122b2ede3764c73eb1bade4d24a1e1b","signature":"4ef6914da8349455f64844f4ae750dc89c9ce1f409ef9ab96dc2565918de88cd"},"691732c9f7b276b9692e5b37735fca2962d323f3c6b01ffb81d76ed8df8917e0","2a8172b7b016ea984d3539402021d04a819b8b1dff7b637fdd806a90ea418409","ac63a01fcac70315fc9b416e9a57e568b18032c7cfcaa314e1751f03ef71286f",{"version":"fee8c81ab136652ee9daeadb3cf3473228ec8aef190358c483de3b1f35145ebd","signature":"8a5b3464a391ec690d3bf48f2caf432009ecfbe8a1947bca52ca500124c3d5b9"},{"version":"c83949910e5d1c9818269246ece24b45f8a094fe37cb3d9f12c6a6d1bd1ecc95","signature":"ed41ca7a8baa91a6aeca711a61bc8eed3497dc1cb54286ccfadebc061a21e6c8"},"9a09602a78e685b385cfc15e78b49fa6db9b8abe1903026b63a33176c75f9f01",{"version":"ed2e21d0d42025b6a09c30fe0923e2ee4f8911f5c41f4ff0525ea0c2fd315e75","affectsGlobalScope":true}],"root":[60,301,323,324,[343,349],[353,355]],"options":{"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"module":7,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[101,144],[101,144,197,200,209,210,211,213,221,222,223,224,239],[101,144,209,210],[61,101,144,208],[101,144,197,209,210,212],[101,144,214,216],[101,144,212,214,220],[101,144,218],[101,144,197,210,213,214,215,216,217,219],[101,144,210],[61,101,144,197],[101,144,210,213],[78,101,144,197,209],[101,144,208],[101,144,201],[61,101,144,201],[101,144,201,202,203,204,205,206,207],[101,144,317,318,319,320],[101,144,350],[101,144,326],[61,101,144,197,253],[101,144,327],[101,144,197,325,326,328,329,338,339,340],[61,101,144,337],[101,144,197,239],[78,101,144],[73,78,101,144,197,233],[101,144,225,234,235,236,237,238],[101,144,197],[73,78,101,144,197],[61,68,79,80,101,144],[68,78,80,101,144],[61,68,78,79,101,144,197],[67,81,101,144,197],[101,144,156,195],[62,68,73,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,101,144,196],[61,101,144],[80,101,144],[81,83,101,144],[62,65,67,101,144],[68,78,101,144],[68,81,101,144,197],[61,68,80,83,96,101,144],[61,68,101,144],[61,79,80,101,144,197],[68,80,101,144],[73,78,80,83,90,101,144,197],[101,144,226,227,228,229,230,231,232],[101,144,197,228],[101,144,197,226],[101,144,197,227],[63,65,67,101,144,197],[78,101,144,197,261],[78,101,144,197,239,242],[101,144,197,272],[101,144,197,268],[101,144,197,267],[101,144,197,266,268],[101,144,265],[72,73,101,144],[72,101,144],[70,71,74,101,144],[78,101,144,321],[69,74,76,77,101,144],[74,76,78,101,144],[75,78,101,144],[101,144,313],[101,102,144],[101,143,144],[101,144,149,179],[101,144,145,150,156,157,164,176,187],[101,144,145,146,156,164],[101,144,147,188],[101,144,148,149,157,165],[101,144,149,176,184],[101,144,150,152,156,164],[101,143,144,151],[101,144,152,153],[101,144,156],[101,144,154,156],[101,143,144,156],[101,144,156,157,158,176,187],[101,144,156,157,158,171,176,179],[101,141,144,192],[101,141,144,152,156,159,164,176,187],[101,144,156,157,159,160,164,176,184,187],[101,144,159,161,176,184,187],[101,144,156,162],[101,144,163,187,192],[101,144,152,156,164,176],[101,144,165],[101,144,166],[101,143,144,167],[101,102,103,143,144,145,146,147,148,149,150,151,152,153,154,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],[101,144,169],[101,144,170],[101,144,156,171,172],[101,144,171,173,188,190],[101,144,156,176,177,178,179],[101,144,176,178],[101,144,176,177],[101,144,179],[101,144,180],[101,102,144,176],[101,144,156,182,183],[101,144,182,183],[101,144,149,164,176,184],[101,144,185],[144],[100,101,102,103,142,143,144,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],[101,144,164,186],[101,144,159,170,187],[101,144,149,188],[101,144,176,189],[101,144,163,190],[101,144,191],[101,144,149,156,158,167,176,187,190,192],[101,144,176,193],[101,144,258,260],[101,144,257],[101,144,259],[78,101,144,197,239],[74,101,144,197,239,261],[78,101,144,197,233,239],[73,74,78,101,144,197,233,239,269],[78,101,144,197,233,239,263,264,270],[101,144,197,239,273],[74,101,144,197,244,261,262,271,274,275,276],[63,101,144],[101,144,246,247,253,254],[66,67,101,144],[66,101,144],[64,101,144],[101,144,245],[65,101,144],[65,101,144,249],[67,101,144,248,249,250,251,252],[63,64,65,66,101,144,245],[63,64,65,101,144],[101,144,337],[101,144,330],[61,101,144,330],[101,144,330,331,332,333,334,335,336],[101,144,256],[101,144,253,255],[101,113,117,144,187],[101,113,144,176,187],[101,108,144],[101,110,113,144,184,187],[101,144,164,184],[101,144,195],[101,108,144,195],[101,110,113,144,164,187],[101,105,106,109,112,144,156,176,187],[101,113,120,144],[101,105,111,144],[101,113,134,135,144],[101,109,113,144,179,187,195],[101,134,144,195],[101,107,108,144,195],[101,113,144],[101,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,144],[101,113,128,144],[101,113,120,121,144],[101,111,113,121,122,144],[101,112,144],[101,105,108,113,144],[101,113,117,121,122,144],[101,117,144],[101,111,113,116,144,187],[101,105,110,113,120,144],[101,144,176],[101,108,113,134,144,192,195],[101,144,197,297,298,301,343,348],[101,144,298,299,300],[101,144,297,298,316,348,351,352],[60,101,144,257,297,298,348,351],[60,78,101,144,197,297,301,316,324,343,346,347],[78,101,144,297,323],[60,101,144,301,343,345,348,349,353],[78,101,144,322],[60,78,101,144],[101,144,197,341,342],[60,78,101,144,297,298,316,322,344,345],[101,144,297,298,299,301],[101,144,297],[101,144,197,281],[101,144,198],[78,101,144,197,198],[101,144,197,280,281,282,283],[101,144,280],[101,144,198,199,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296],[101,144,197,240,241,243,277,278],[101,144,280,285],[101,144,281],[101,144,197,198,280,281],[101,144,280,282],[101,144,197,199,239,280,281],[101,144,197,198,279,281,282],[101,144,280,281,282],[101,144,210,240,281,283,285],[78,101,144,197,279,280,284,286,288,289,290,291],[78,101,144,302,303,304,305,306,308,309,310,311],[101,144,297,307],[101,144,312,315],[101,144,314],[197,297,348],[348],[297,348],[78,197,297,346],[78,297],[78],[197],[297]],"referencedMap":[[224,1],[240,2],[211,3],[200,1],[209,4],[213,5],[217,6],[221,7],[219,8],[214,1],[212,1],[220,9],[216,10],[222,11],[223,12],[210,13],[215,1],[201,14],[204,15],[205,15],[202,16],[203,15],[208,17],[206,4],[207,14],[320,1],[321,18],[318,1],[319,1],[317,1],[350,1],[351,19],[327,20],[325,21],[328,22],[341,23],[326,1],[329,20],[338,24],[339,21],[340,21],[241,25],[225,26],[234,27],[239,28],[235,29],[236,11],[237,29],[238,30],[92,31],[93,32],[80,33],[82,34],[99,1],[83,1],[196,35],[197,36],[62,37],[84,38],[94,39],[68,40],[81,41],[85,42],[86,41],[95,1],[97,43],[98,44],[87,1],[88,38],[90,45],[89,46],[91,47],[229,29],[233,48],[228,29],[226,29],[227,29],[232,49],[230,50],[231,51],[342,52],[276,53],[242,1],[243,54],[273,55],[269,56],[268,57],[267,58],[266,59],[74,60],[71,61],[70,61],[72,62],[322,63],[77,26],[78,64],[69,26],[75,65],[76,66],[299,1],[314,67],[356,1],[313,1],[102,68],[103,68],[143,69],[144,70],[145,71],[146,72],[147,73],[148,74],[149,75],[150,76],[151,77],[152,78],[153,78],[155,79],[154,80],[156,81],[157,82],[158,83],[142,84],[194,1],[159,85],[160,86],[161,87],[162,88],[163,89],[164,90],[165,91],[166,92],[167,93],[168,94],[169,95],[170,96],[171,97],[172,97],[173,98],[174,1],[175,1],[176,99],[178,100],[177,101],[179,102],[180,103],[181,104],[182,105],[183,106],[184,107],[185,108],[101,109],[100,1],[195,110],[186,111],[187,112],[188,113],[189,114],[190,115],[191,116],[192,117],[193,118],[272,1],[104,1],[218,1],[261,119],[258,120],[259,1],[260,121],[96,1],[79,1],[300,1],[244,122],[262,123],[263,25],[264,124],[270,125],[271,126],[274,127],[277,128],[275,122],[254,129],[63,1],[255,130],[64,131],[248,1],[67,132],[245,133],[246,134],[247,134],[249,135],[250,136],[65,1],[253,137],[252,138],[66,139],[251,1],[265,1],[73,1],[330,140],[333,141],[334,141],[331,142],[332,141],[337,143],[335,24],[336,140],[58,1],[59,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[56,1],[54,1],[55,1],[1,1],[57,1],[61,1],[352,144],[257,144],[256,145],[120,146],[130,147],[119,146],[140,148],[111,149],[110,150],[139,151],[133,152],[138,153],[113,154],[127,155],[112,156],[136,157],[108,158],[107,151],[137,159],[109,160],[114,161],[115,1],[118,161],[105,1],[141,162],[131,163],[122,164],[123,165],[125,166],[121,167],[124,168],[134,151],[116,169],[117,170],[126,171],[106,172],[129,163],[128,161],[132,1],[135,173],[60,1],[349,174],[301,175],[353,176],[354,177],[348,178],[324,179],[355,180],[323,181],[344,182],[343,183],[346,184],[347,185],[345,186],[290,187],[295,188],[294,29],[199,189],[284,190],[291,191],[297,192],[293,1],[279,193],[286,194],[296,1],[282,195],[278,196],[281,197],[287,198],[280,199],[283,200],[288,201],[285,197],[198,1],[289,197],[292,202],[298,1],[311,1],[304,1],[312,203],[302,1],[306,186],[309,1],[303,1],[310,186],[308,204],[307,186],[305,186],[316,205],[315,206]],"exportedModulesMap":[[224,1],[240,2],[211,3],[200,1],[209,4],[213,5],[217,6],[221,7],[219,8],[214,1],[212,1],[220,9],[216,10],[222,11],[223,12],[210,13],[215,1],[201,14],[204,15],[205,15],[202,16],[203,15],[208,17],[206,4],[207,14],[320,1],[321,18],[318,1],[319,1],[317,1],[350,1],[351,19],[327,20],[325,21],[328,22],[341,23],[326,1],[329,20],[338,24],[339,21],[340,21],[241,25],[225,26],[234,27],[239,28],[235,29],[236,11],[237,29],[238,30],[92,31],[93,32],[80,33],[82,34],[99,1],[83,1],[196,35],[197,36],[62,37],[84,38],[94,39],[68,40],[81,41],[85,42],[86,41],[95,1],[97,43],[98,44],[87,1],[88,38],[90,45],[89,46],[91,47],[229,29],[233,48],[228,29],[226,29],[227,29],[232,49],[230,50],[231,51],[342,52],[276,53],[242,1],[243,54],[273,55],[269,56],[268,57],[267,58],[266,59],[74,60],[71,61],[70,61],[72,62],[322,63],[77,26],[78,64],[69,26],[75,65],[76,66],[299,1],[314,67],[356,1],[313,1],[102,68],[103,68],[143,69],[144,70],[145,71],[146,72],[147,73],[148,74],[149,75],[150,76],[151,77],[152,78],[153,78],[155,79],[154,80],[156,81],[157,82],[158,83],[142,84],[194,1],[159,85],[160,86],[161,87],[162,88],[163,89],[164,90],[165,91],[166,92],[167,93],[168,94],[169,95],[170,96],[171,97],[172,97],[173,98],[174,1],[175,1],[176,99],[178,100],[177,101],[179,102],[180,103],[181,104],[182,105],[183,106],[184,107],[185,108],[101,109],[100,1],[195,110],[186,111],[187,112],[188,113],[189,114],[190,115],[191,116],[192,117],[193,118],[272,1],[104,1],[218,1],[261,119],[258,120],[259,1],[260,121],[96,1],[79,1],[300,1],[244,122],[262,123],[263,25],[264,124],[270,125],[271,126],[274,127],[277,128],[275,122],[254,129],[63,1],[255,130],[64,131],[248,1],[67,132],[245,133],[246,134],[247,134],[249,135],[250,136],[65,1],[253,137],[252,138],[66,139],[251,1],[265,1],[73,1],[330,140],[333,141],[334,141],[331,142],[332,141],[337,143],[335,24],[336,140],[58,1],[59,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[56,1],[54,1],[55,1],[1,1],[57,1],[61,1],[352,144],[257,144],[256,145],[120,146],[130,147],[119,146],[140,148],[111,149],[110,150],[139,151],[133,152],[138,153],[113,154],[127,155],[112,156],[136,157],[108,158],[107,151],[137,159],[109,160],[114,161],[115,1],[118,161],[105,1],[141,162],[131,163],[122,164],[123,165],[125,166],[121,167],[124,168],[134,151],[116,169],[117,170],[126,171],[106,172],[129,163],[128,161],[132,1],[135,173],[349,207],[353,208],[354,209],[348,210],[324,211],[355,180],[323,212],[344,212],[343,213],[346,211],[347,214],[345,214],[290,187],[295,188],[294,29],[199,189],[284,190],[291,191],[297,192],[293,1],[279,193],[286,194],[296,1],[282,195],[278,196],[281,197],[287,198],[280,199],[283,200],[288,201],[285,197],[198,1],[289,197],[292,202],[298,1],[311,1],[304,1],[312,203],[302,1],[306,186],[309,1],[303,1],[310,186],[308,204],[307,186],[305,186],[316,205],[315,206]],"semanticDiagnosticsPerFile":[224,240,211,200,209,213,217,221,219,214,212,220,216,222,223,210,215,201,204,205,202,203,208,206,207,320,321,318,319,317,350,351,327,325,328,341,326,329,338,339,340,241,225,234,239,235,236,237,238,92,93,80,82,99,83,196,197,62,84,94,68,81,85,86,95,97,98,87,88,90,89,91,229,233,228,226,227,232,230,231,342,276,242,243,273,269,268,267,266,74,71,70,72,322,77,78,69,75,76,299,314,356,313,102,103,143,144,145,146,147,148,149,150,151,152,153,155,154,156,157,158,142,194,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,177,179,180,181,182,183,184,185,101,100,195,186,187,188,189,190,191,192,193,272,104,218,261,258,259,260,96,79,300,244,262,263,264,270,271,274,277,275,254,63,255,64,248,67,245,246,247,249,250,65,253,252,66,251,265,73,330,333,334,331,332,337,335,336,58,59,10,12,11,2,13,14,15,16,17,18,19,20,3,21,4,22,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,1,57,61,352,257,256,120,130,119,140,111,110,139,133,138,113,127,112,136,108,107,137,109,114,115,118,105,141,131,122,123,125,121,124,134,116,117,126,106,129,128,132,135,60,349,301,353,354,348,324,355,323,344,343,346,347,345,290,295,294,199,284,291,297,293,279,286,296,282,278,281,287,280,283,288,285,198,289,292,298,311,304,312,302,306,309,303,310,308,307,305,316,315]},"version":"5.4.5"}
|
package/package.json
CHANGED
@@ -1 +1,99 @@
|
|
1
|
-
{
|
1
|
+
{
|
2
|
+
"name": "@waku/enr",
|
3
|
+
"version": "0.0.27",
|
4
|
+
"description": "ENR (EIP-778) for Waku",
|
5
|
+
"types": "./dist/index.d.ts",
|
6
|
+
"module": "./dist/index.js",
|
7
|
+
"exports": {
|
8
|
+
".": {
|
9
|
+
"types": "./dist/index.d.ts",
|
10
|
+
"import": "./dist/index.js"
|
11
|
+
}
|
12
|
+
},
|
13
|
+
"type": "module",
|
14
|
+
"author": "Waku Team",
|
15
|
+
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/enr#readme",
|
16
|
+
"repository": {
|
17
|
+
"type": "git",
|
18
|
+
"url": "https://github.com/waku-org/js-waku.git"
|
19
|
+
},
|
20
|
+
"bugs": {
|
21
|
+
"url": "https://github.com/waku-org/js-waku/issues"
|
22
|
+
},
|
23
|
+
"license": "MIT OR Apache-2.0",
|
24
|
+
"keywords": [
|
25
|
+
"waku",
|
26
|
+
"decentralized",
|
27
|
+
"secure",
|
28
|
+
"communication",
|
29
|
+
"web3",
|
30
|
+
"ethereum",
|
31
|
+
"dapps",
|
32
|
+
"privacy"
|
33
|
+
],
|
34
|
+
"scripts": {
|
35
|
+
"build": "run-s build:**",
|
36
|
+
"build:esm": "tsc",
|
37
|
+
"build:bundle": "rollup --config rollup.config.js",
|
38
|
+
"fix": "run-s fix:*",
|
39
|
+
"fix:lint": "eslint src *.js --fix",
|
40
|
+
"check": "run-s check:*",
|
41
|
+
"check:lint": "eslint src --ext .ts",
|
42
|
+
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
43
|
+
"check:tsc": "tsc -p tsconfig.dev.json",
|
44
|
+
"test": "NODE_ENV=test run-s test:*",
|
45
|
+
"test:node": "NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
46
|
+
"test:browser": "NODE_ENV=test karma start karma.conf.cjs",
|
47
|
+
"prepublish": "npm run build",
|
48
|
+
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
49
|
+
},
|
50
|
+
"engines": {
|
51
|
+
"node": ">=20"
|
52
|
+
},
|
53
|
+
"dependencies": {
|
54
|
+
"@ethersproject/rlp": "^5.7.0",
|
55
|
+
"@libp2p/crypto": "^4.1.6",
|
56
|
+
"@libp2p/peer-id": "^4.2.1",
|
57
|
+
"@multiformats/multiaddr": "^12.0.0",
|
58
|
+
"@noble/secp256k1": "^1.7.1",
|
59
|
+
"@waku/utils": "0.0.21",
|
60
|
+
"debug": "^4.3.4",
|
61
|
+
"js-sha3": "^0.9.2"
|
62
|
+
},
|
63
|
+
"devDependencies": {
|
64
|
+
"@libp2p/peer-id-factory": "^4.2.1",
|
65
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
66
|
+
"@rollup/plugin-json": "^6.0.0",
|
67
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
68
|
+
"@types/chai": "^4.3.11",
|
69
|
+
"@types/mocha": "^10.0.6",
|
70
|
+
"@waku/build-utils": "*",
|
71
|
+
"@waku/interfaces": "0.0.28",
|
72
|
+
"chai": "^4.3.10",
|
73
|
+
"cspell": "^8.6.1",
|
74
|
+
"fast-check": "^3.19.0",
|
75
|
+
"mocha": "^10.3.0",
|
76
|
+
"npm-run-all": "^4.1.5",
|
77
|
+
"process": "^0.11.10",
|
78
|
+
"rollup": "^4.12.0",
|
79
|
+
"uint8arrays": "^5.0.1"
|
80
|
+
},
|
81
|
+
"peerDependencies": {
|
82
|
+
"@multiformats/multiaddr": "^12.0.0"
|
83
|
+
},
|
84
|
+
"peerDependenciesMeta": {
|
85
|
+
"@multiformats/multiaddr": {
|
86
|
+
"optional": true
|
87
|
+
}
|
88
|
+
},
|
89
|
+
"files": [
|
90
|
+
"dist",
|
91
|
+
"bundle",
|
92
|
+
"src/**/*.ts",
|
93
|
+
"!**/*.spec.*",
|
94
|
+
"!**/*.json",
|
95
|
+
"CHANGELOG.md",
|
96
|
+
"LICENSE",
|
97
|
+
"README.md"
|
98
|
+
]
|
99
|
+
}
|