@leofcoin/peernet 0.10.3 → 0.10.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/peernet.js +656 -627
- package/dist/commonjs/codec-format-interface.js +20 -4
- package/dist/commonjs/peernet.js +27 -143
- package/dist/module/peernet.js +45 -146
- package/package.json +3 -4
- package/rollup.config.js +7 -4
- package/src/codec/codec-format-interface.js +20 -4
- package/src/messages/data.js +7 -3
- package/src/peernet.js +19 -17
package/dist/browser/peernet.js
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
var PubSub = require('@vandeurenglenn/little-pubsub');
|
|
6
6
|
var sha256 = require('crypto-js/sha256');
|
|
7
7
|
var P2P = require('p2pt');
|
|
8
|
+
var LeofcoinStorage$1 = require('@leofcoin/storage');
|
|
8
9
|
var websocket = require('websocket');
|
|
9
10
|
var http$1 = require('http');
|
|
10
11
|
var Koa = require('koa');
|
|
@@ -21,6 +22,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
21
22
|
var PubSub__default = /*#__PURE__*/_interopDefaultLegacy(PubSub);
|
|
22
23
|
var sha256__default = /*#__PURE__*/_interopDefaultLegacy(sha256);
|
|
23
24
|
var P2P__default = /*#__PURE__*/_interopDefaultLegacy(P2P);
|
|
25
|
+
var LeofcoinStorage__default = /*#__PURE__*/_interopDefaultLegacy(LeofcoinStorage$1);
|
|
24
26
|
var Koa__default = /*#__PURE__*/_interopDefaultLegacy(Koa);
|
|
25
27
|
var protons__default = /*#__PURE__*/_interopDefaultLegacy(protons);
|
|
26
28
|
var bs32__default = /*#__PURE__*/_interopDefaultLegacy(bs32);
|
|
@@ -167,129 +169,7 @@ class PeernetClient {
|
|
|
167
169
|
}
|
|
168
170
|
}
|
|
169
171
|
|
|
170
|
-
|
|
171
|
-
const LevelStore = require('datastore-level');
|
|
172
|
-
const { homedir } = require('os');
|
|
173
|
-
const { join } = require('path');
|
|
174
|
-
const Key = require('interface-datastore').Key;
|
|
175
|
-
const {readdirSync, mkdirSync} = require('fs');
|
|
176
|
-
|
|
177
|
-
class LeofcoinStorage$1 {
|
|
178
|
-
|
|
179
|
-
constructor(path, root = '.leofcoin', home = true) {
|
|
180
|
-
if (!home) this.root = root;
|
|
181
|
-
else this.root = join(homedir(), root);
|
|
182
|
-
if (readdirSync) try {
|
|
183
|
-
readdirSync(this.root);
|
|
184
|
-
} catch (e) {
|
|
185
|
-
let _path = home ? homedir() : root;
|
|
186
|
-
const parts = root.split('/');
|
|
187
|
-
if (e.code === 'ENOENT') {
|
|
188
|
-
|
|
189
|
-
if (parts.length > 0) {
|
|
190
|
-
for (const path of parts) {
|
|
191
|
-
_path = join(_path, path);
|
|
192
|
-
try {
|
|
193
|
-
readdirSync(_path);
|
|
194
|
-
} catch (e) {
|
|
195
|
-
if (e.code === 'ENOENT') mkdirSync(_path);
|
|
196
|
-
else throw e
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
} else {
|
|
200
|
-
mkdirSync(this.root);
|
|
201
|
-
}
|
|
202
|
-
} else throw e
|
|
203
|
-
}
|
|
204
|
-
this.db = new LevelStore(join(this.root, path));
|
|
205
|
-
// this.db = level(path, { prefix: 'lfc-'})
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
toBuffer(value) {
|
|
209
|
-
if (Buffer.isBuffer(value)) return value;
|
|
210
|
-
if (typeof value === 'object' ||
|
|
211
|
-
typeof value === 'boolean' ||
|
|
212
|
-
!isNaN(value)) value = JSON.stringify(value);
|
|
213
|
-
|
|
214
|
-
return Buffer.from(value)
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
async many(type, _value) {
|
|
218
|
-
const jobs = [];
|
|
219
|
-
|
|
220
|
-
for (const key of Object.keys(_value)) {
|
|
221
|
-
const value = this.toBuffer(_value[key]);
|
|
222
|
-
|
|
223
|
-
jobs.push(this[type](key, value));
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
return Promise.all(jobs)
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
async put(key, value) {
|
|
230
|
-
if (typeof key === 'object') return this.many('put', key);
|
|
231
|
-
value = this.toBuffer(value);
|
|
232
|
-
|
|
233
|
-
return this.db.put(new Key(String(key)), value);
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
async query() {
|
|
237
|
-
const object = {};
|
|
238
|
-
|
|
239
|
-
for await (let query of this.db.query({})) {
|
|
240
|
-
const key = query.key.baseNamespace();
|
|
241
|
-
object[key] = this.possibleJSON(query.value);
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
return object
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
async get(key) {
|
|
248
|
-
if (!key) return this.query()
|
|
249
|
-
if (typeof key === 'object') return this.many('get', key);
|
|
250
|
-
let data = await this.db.get(new Key(String(key)));
|
|
251
|
-
if (!data) return undefined
|
|
252
|
-
return this.possibleJSON(data)
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
async has(key) {
|
|
256
|
-
if (typeof key === 'object') return this.many('has', key);
|
|
257
|
-
|
|
258
|
-
try {
|
|
259
|
-
await this.db.get(new Key(String(key)));
|
|
260
|
-
return true;
|
|
261
|
-
} catch (e) {
|
|
262
|
-
return false
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
async delete(key) {
|
|
267
|
-
return this.db.delete(new Key(String(key)))
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
async size() {
|
|
271
|
-
const object = await this.query();
|
|
272
|
-
return Object.keys(object).length
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
// TODO: deprecate usage possibleJSON
|
|
276
|
-
// make possibleJSON optional
|
|
277
|
-
// or release as its own package
|
|
278
|
-
possibleJSON(data) {
|
|
279
|
-
let string = data.toString();
|
|
280
|
-
if (string.charAt(0) === '{' && string.charAt(string.length - 1) === '}' ||
|
|
281
|
-
string.charAt(0) === '[' && string.charAt(string.length - 1) === ']' ||
|
|
282
|
-
string === 'true' ||
|
|
283
|
-
string === 'false' ||
|
|
284
|
-
!isNaN(string))
|
|
285
|
-
return JSON.parse(string);
|
|
286
|
-
|
|
287
|
-
return data
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
var version = "0.10.2";
|
|
172
|
+
var version = "0.10.3";
|
|
293
173
|
|
|
294
174
|
var api$1 = {
|
|
295
175
|
version: ({send}) => send({client: '@peernet/api/http', version}),
|
|
@@ -1284,7 +1164,7 @@ class PeernetHash {
|
|
|
1284
1164
|
|
|
1285
1165
|
class FormatInterface {
|
|
1286
1166
|
/**
|
|
1287
|
-
* @param {Buffer|String|Object} buffer -
|
|
1167
|
+
* @param {Buffer|String|Object} buffer - data - The data needed to create the desired message
|
|
1288
1168
|
* @param {Object} proto - {encode, decode}
|
|
1289
1169
|
* @param {Object} options - {hashFormat, name}
|
|
1290
1170
|
*/
|
|
@@ -1293,7 +1173,9 @@ class FormatInterface {
|
|
|
1293
1173
|
this.protoDecode = proto.decode;
|
|
1294
1174
|
if (options.name) this.name = options.name;
|
|
1295
1175
|
this.hashFormat = options.hashFormat || 'bs32';
|
|
1296
|
-
if (
|
|
1176
|
+
if (buffer.name === options.name) {
|
|
1177
|
+
return buffer
|
|
1178
|
+
} else if (Buffer.isBuffer(buffer)) {
|
|
1297
1179
|
const codec = new PeernetCodec(buffer);
|
|
1298
1180
|
if (codec.name) {
|
|
1299
1181
|
this.fromEncoded(buffer);
|
|
@@ -1411,8 +1293,22 @@ class FormatInterface {
|
|
|
1411
1293
|
* @param {Object} data
|
|
1412
1294
|
*/
|
|
1413
1295
|
create(data) {
|
|
1414
|
-
|
|
1415
|
-
this.
|
|
1296
|
+
const decoded = {};
|
|
1297
|
+
if (this.keys?.length > 0) {
|
|
1298
|
+
for (const key of this.keys) {
|
|
1299
|
+
Object.defineProperties(decoded, {
|
|
1300
|
+
[key]: {
|
|
1301
|
+
enumerable: true,
|
|
1302
|
+
configurable: true,
|
|
1303
|
+
set: (val) => value = data[key],
|
|
1304
|
+
get: () => data[key]
|
|
1305
|
+
}
|
|
1306
|
+
});
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
this.decoded = decoded;
|
|
1310
|
+
this.encode();
|
|
1311
|
+
}
|
|
1416
1312
|
}
|
|
1417
1313
|
}
|
|
1418
1314
|
|
|
@@ -1484,14 +1380,18 @@ message PeernetDataMessage {
|
|
|
1484
1380
|
}
|
|
1485
1381
|
`;
|
|
1486
1382
|
|
|
1383
|
+
/**
|
|
1384
|
+
* @extends {CodecFormat}
|
|
1385
|
+
*/
|
|
1487
1386
|
class DataMessage extends FormatInterface {
|
|
1488
1387
|
get keys() {
|
|
1489
1388
|
return ['hash', 'store']
|
|
1490
1389
|
}
|
|
1491
|
-
|
|
1390
|
+
/**
|
|
1391
|
+
* @param {Buffer|String|Object|DataMessage} data - The data needed to create the DataMessage
|
|
1392
|
+
*/
|
|
1492
1393
|
constructor(data) {
|
|
1493
|
-
|
|
1494
|
-
super(data, protons__default['default'](proto$7).PeernetDataMessage, {name});
|
|
1394
|
+
super(data, protons__default['default'](proto$7).PeernetDataMessage, {name: 'peernet-data'});
|
|
1495
1395
|
}
|
|
1496
1396
|
}
|
|
1497
1397
|
|
|
@@ -2043,7 +1943,7 @@ class Peernet {
|
|
|
2043
1943
|
if (this.hasDaemon) {
|
|
2044
1944
|
Storage = LeofcoinStorageClient;
|
|
2045
1945
|
} else {
|
|
2046
|
-
Storage =
|
|
1946
|
+
Storage = LeofcoinStorage__default['default'];
|
|
2047
1947
|
}
|
|
2048
1948
|
globalThis[`${name}Store`] = globalThis[`${name}Store`] ||
|
|
2049
1949
|
await new Storage(`${prefix}-${name}`, root);
|
|
@@ -2300,22 +2200,20 @@ class Peernet {
|
|
|
2300
2200
|
let data;
|
|
2301
2201
|
|
|
2302
2202
|
if (!store) {
|
|
2303
|
-
|
|
2304
|
-
} else {
|
|
2305
|
-
store = globalThis[`${store}Store`];
|
|
2306
|
-
if (store.private) {
|
|
2307
|
-
// TODO: ban
|
|
2308
|
-
return
|
|
2309
|
-
} else data = await store.get(hash);
|
|
2203
|
+
store = await this.whichStore([...this.stores], hash);
|
|
2310
2204
|
}
|
|
2205
|
+
if (store && !store.private) {
|
|
2206
|
+
data = await store.get(hash);
|
|
2311
2207
|
|
|
2312
|
-
|
|
2313
|
-
|
|
2208
|
+
if (data) {
|
|
2209
|
+
data = new DataMessageResponse({hash, data: data.decoded ? Buffer.from(JSON.stringify(data)) : Buffer.from(data)});
|
|
2314
2210
|
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2211
|
+
const node = await this.prepareMessage(from, data.encoded);
|
|
2212
|
+
peer.write(Buffer.from(JSON.stringify({id, data: node.encoded})));
|
|
2213
|
+
this.bw.up += node.encoded.length;
|
|
2214
|
+
}
|
|
2318
2215
|
}
|
|
2216
|
+
|
|
2319
2217
|
} else if (proto.name === 'peernet-peer') {
|
|
2320
2218
|
const from = proto.decoded.id;
|
|
2321
2219
|
if (!this.peerMap.has(from)) this.peerMap.set(from, [peer.id]);
|
|
@@ -2418,7 +2316,7 @@ class Peernet {
|
|
|
2418
2316
|
get: async (hash) => {
|
|
2419
2317
|
const data = await blockStore.has(hash);
|
|
2420
2318
|
if (data) return await blockStore.get(hash)
|
|
2421
|
-
return this.requestData(hash)
|
|
2319
|
+
return this.requestData(hash, 'block')
|
|
2422
2320
|
},
|
|
2423
2321
|
put: async (hash, data) => {
|
|
2424
2322
|
if (await blockStore.has(hash)) return
|
|
@@ -2554,7 +2452,8 @@ class Peernet {
|
|
|
2554
2452
|
/**
|
|
2555
2453
|
* Get content for given hash
|
|
2556
2454
|
*
|
|
2557
|
-
* @param {String} hash
|
|
2455
|
+
* @param {String} hash - the hash of the wanted data
|
|
2456
|
+
* @param {String} store - storeName to access
|
|
2558
2457
|
*/
|
|
2559
2458
|
async get(hash, store) {
|
|
2560
2459
|
debug(`get ${hash}`);
|
|
@@ -2564,7 +2463,7 @@ class Peernet {
|
|
|
2564
2463
|
if (store && await store.has(hash)) data = await store.get(hash);
|
|
2565
2464
|
if (data) return data
|
|
2566
2465
|
|
|
2567
|
-
return this.requestData(hash,
|
|
2466
|
+
return this.requestData(hash, store)
|
|
2568
2467
|
}
|
|
2569
2468
|
|
|
2570
2469
|
/**
|
|
@@ -2572,10 +2471,11 @@ class Peernet {
|
|
|
2572
2471
|
*
|
|
2573
2472
|
* @param {String} hash
|
|
2574
2473
|
* @param {Buffer} data
|
|
2474
|
+
* @param {String} store - storeName to access
|
|
2575
2475
|
*/
|
|
2576
2476
|
async put(hash, data, store = 'data') {
|
|
2577
2477
|
store = globalThis[`${store}Store`];
|
|
2578
|
-
return
|
|
2478
|
+
return store.put(hash, data)
|
|
2579
2479
|
}
|
|
2580
2480
|
|
|
2581
2481
|
/**
|
|
@@ -2649,7 +2549,7 @@ class Peernet {
|
|
|
2649
2549
|
module.exports = Peernet;
|
|
2650
2550
|
|
|
2651
2551
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
2652
|
-
},{"@leofcoin/multi-wallet":2,"@vandeurenglenn/little-pubsub":
|
|
2552
|
+
},{"@leofcoin/multi-wallet":2,"@leofcoin/storage":3,"@vandeurenglenn/little-pubsub":4,"_process":322,"bs32":85,"bs58":86,"buffer":91,"crypto-js/sha256":118,"http":423,"https":202,"is-hex":220,"keccak":224,"koa":234,"p2pt":307,"protons":350,"varint":451,"websocket":454}],2:[function(require,module,exports){
|
|
2653
2553
|
(function (Buffer){(function (){
|
|
2654
2554
|
'use strict';
|
|
2655
2555
|
|
|
@@ -3085,11 +2985,140 @@ class MultiWallet extends HDWallet {
|
|
|
3085
2985
|
module.exports = MultiWallet;
|
|
3086
2986
|
|
|
3087
2987
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
3088
|
-
},{"bip32":
|
|
3089
|
-
|
|
2988
|
+
},{"bip32":36,"bip39":38,"bs58check":88,"buffer":91,"crypto-js/aes.js":109,"crypto-js/enc-utf8.js":113,"crypto-js/sha512.js":119,"keccak":224,"multi-signature":268,"secp256k1":385,"tiny-secp256k1":429,"varint":451}],3:[function(require,module,exports){
|
|
2989
|
+
(function (Buffer){(function (){
|
|
3090
2990
|
'use strict';
|
|
3091
2991
|
|
|
3092
|
-
const
|
|
2992
|
+
// const level = require('level');
|
|
2993
|
+
const LevelStore = require('datastore-level');
|
|
2994
|
+
const { homedir } = require('os');
|
|
2995
|
+
const { join } = require('path');
|
|
2996
|
+
const Key = require('interface-datastore').Key;
|
|
2997
|
+
const {readdirSync, mkdirSync} = require('fs');
|
|
2998
|
+
|
|
2999
|
+
class LeofcoinStorage {
|
|
3000
|
+
|
|
3001
|
+
constructor(path, root = '.leofcoin', home = true) {
|
|
3002
|
+
if (!home) this.root = root;
|
|
3003
|
+
else this.root = join(homedir(), root);
|
|
3004
|
+
if (readdirSync) try {
|
|
3005
|
+
readdirSync(this.root);
|
|
3006
|
+
} catch (e) {
|
|
3007
|
+
let _path = home ? homedir() : root;
|
|
3008
|
+
const parts = root.split('/');
|
|
3009
|
+
if (e.code === 'ENOENT') {
|
|
3010
|
+
|
|
3011
|
+
if (parts.length > 0) {
|
|
3012
|
+
for (const path of parts) {
|
|
3013
|
+
_path = join(_path, path);
|
|
3014
|
+
try {
|
|
3015
|
+
readdirSync(_path);
|
|
3016
|
+
} catch (e) {
|
|
3017
|
+
if (e.code === 'ENOENT') mkdirSync(_path);
|
|
3018
|
+
else throw e
|
|
3019
|
+
}
|
|
3020
|
+
}
|
|
3021
|
+
} else {
|
|
3022
|
+
mkdirSync(this.root);
|
|
3023
|
+
}
|
|
3024
|
+
} else throw e
|
|
3025
|
+
}
|
|
3026
|
+
this.db = new LevelStore(join(this.root, path));
|
|
3027
|
+
// this.db = level(path, { prefix: 'lfc-'})
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3030
|
+
toBuffer(value) {
|
|
3031
|
+
if (Buffer.isBuffer(value)) return value;
|
|
3032
|
+
if (typeof value === 'object' ||
|
|
3033
|
+
typeof value === 'boolean' ||
|
|
3034
|
+
!isNaN(value)) value = JSON.stringify(value);
|
|
3035
|
+
|
|
3036
|
+
return Buffer.from(value)
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
async many(type, _value) {
|
|
3040
|
+
const jobs = [];
|
|
3041
|
+
|
|
3042
|
+
for (const key of Object.keys(_value)) {
|
|
3043
|
+
const value = this.toBuffer(_value[key]);
|
|
3044
|
+
|
|
3045
|
+
jobs.push(this[type](key, value));
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
return Promise.all(jobs)
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
async put(key, value) {
|
|
3052
|
+
if (typeof key === 'object') return this.many('put', key);
|
|
3053
|
+
value = this.toBuffer(value);
|
|
3054
|
+
|
|
3055
|
+
return this.db.put(new Key(String(key)), value);
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
async query() {
|
|
3059
|
+
const object = {};
|
|
3060
|
+
|
|
3061
|
+
for await (let query of this.db.query({})) {
|
|
3062
|
+
const key = query.key.baseNamespace();
|
|
3063
|
+
object[key] = this.possibleJSON(query.value);
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
return object
|
|
3067
|
+
}
|
|
3068
|
+
|
|
3069
|
+
async get(key) {
|
|
3070
|
+
if (!key) return this.query()
|
|
3071
|
+
if (typeof key === 'object') return this.many('get', key);
|
|
3072
|
+
let data = await this.db.get(new Key(String(key)));
|
|
3073
|
+
if (!data) return undefined
|
|
3074
|
+
return this.possibleJSON(data)
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
async has(key) {
|
|
3078
|
+
if (typeof key === 'object') return this.many('has', key);
|
|
3079
|
+
|
|
3080
|
+
try {
|
|
3081
|
+
await this.db.get(new Key(String(key)));
|
|
3082
|
+
return true;
|
|
3083
|
+
} catch (e) {
|
|
3084
|
+
return false
|
|
3085
|
+
}
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
async delete(key) {
|
|
3089
|
+
return this.db.delete(new Key(String(key)))
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
async size() {
|
|
3093
|
+
const object = await this.query();
|
|
3094
|
+
return Object.keys(object).length
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3097
|
+
// TODO: deprecate usage possibleJSON
|
|
3098
|
+
// make possibleJSON optional
|
|
3099
|
+
// or release as its own package
|
|
3100
|
+
possibleJSON(data) {
|
|
3101
|
+
let string = data.toString();
|
|
3102
|
+
if (string.charAt(0) === '{' && string.charAt(string.length - 1) === '}' ||
|
|
3103
|
+
string.charAt(0) === '[' && string.charAt(string.length - 1) === ']' ||
|
|
3104
|
+
string === 'true' ||
|
|
3105
|
+
string === 'false' ||
|
|
3106
|
+
!isNaN(string))
|
|
3107
|
+
return JSON.parse(string);
|
|
3108
|
+
|
|
3109
|
+
return data
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
module.exports = LeofcoinStorage;
|
|
3115
|
+
|
|
3116
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
3117
|
+
},{"buffer":91,"datastore-level":121,"fs":83,"interface-datastore":213,"os":306,"path":314}],4:[function(require,module,exports){
|
|
3118
|
+
/* @vandeurenglenn/little-pubsub version 1.3.0 */
|
|
3119
|
+
'use strict';
|
|
3120
|
+
|
|
3121
|
+
const ENVIRONMENT = {version: '1.3.0', production: true};
|
|
3093
3122
|
|
|
3094
3123
|
class LittlePubSub {
|
|
3095
3124
|
|
|
@@ -3126,9 +3155,9 @@ class LittlePubSub {
|
|
|
3126
3155
|
if (this.subscribers[event]) {
|
|
3127
3156
|
const index = this.subscribers[event].handlers.indexOf(handler.bind(context));
|
|
3128
3157
|
this.subscribers[event].handlers.splice(index);
|
|
3129
|
-
if (this.subscribers[event].handlers.length === 0) delete this.subscribers[event];
|
|
3158
|
+
if (this.subscribers[event].handlers.length === 0) delete this.subscribers[event];
|
|
3130
3159
|
}
|
|
3131
|
-
|
|
3160
|
+
|
|
3132
3161
|
}
|
|
3133
3162
|
|
|
3134
3163
|
/**
|
|
@@ -3138,10 +3167,10 @@ class LittlePubSub {
|
|
|
3138
3167
|
publish(event, change) {
|
|
3139
3168
|
if (this.subscribers[event]) {
|
|
3140
3169
|
if (this.verbose || this.subscribers[event].value !== change) {
|
|
3170
|
+
this.subscribers[event].value = change;
|
|
3141
3171
|
this.subscribers[event].handlers.forEach(handler => {
|
|
3142
3172
|
handler(change, this.subscribers[event].value);
|
|
3143
3173
|
});
|
|
3144
|
-
this.subscribers[event].value = change;
|
|
3145
3174
|
}
|
|
3146
3175
|
}
|
|
3147
3176
|
}
|
|
@@ -3149,7 +3178,7 @@ class LittlePubSub {
|
|
|
3149
3178
|
|
|
3150
3179
|
module.exports = LittlePubSub;
|
|
3151
3180
|
|
|
3152
|
-
},{}],
|
|
3181
|
+
},{}],5:[function(require,module,exports){
|
|
3153
3182
|
function AbstractChainedBatch (db) {
|
|
3154
3183
|
if (typeof db !== 'object' || db === null) {
|
|
3155
3184
|
throw new TypeError('First argument must be an abstract-leveldown compliant store')
|
|
@@ -3232,7 +3261,7 @@ AbstractChainedBatch.prototype._write = function (options, callback) {
|
|
|
3232
3261
|
|
|
3233
3262
|
module.exports = AbstractChainedBatch
|
|
3234
3263
|
|
|
3235
|
-
},{}],
|
|
3264
|
+
},{}],6:[function(require,module,exports){
|
|
3236
3265
|
(function (process){(function (){
|
|
3237
3266
|
function AbstractIterator (db) {
|
|
3238
3267
|
if (typeof db !== 'object' || db === null) {
|
|
@@ -3308,7 +3337,7 @@ AbstractIterator.prototype._end = function (callback) {
|
|
|
3308
3337
|
module.exports = AbstractIterator
|
|
3309
3338
|
|
|
3310
3339
|
}).call(this)}).call(this,require('_process'))
|
|
3311
|
-
},{"_process":
|
|
3340
|
+
},{"_process":322}],7:[function(require,module,exports){
|
|
3312
3341
|
(function (Buffer,process){(function (){
|
|
3313
3342
|
var xtend = require('xtend')
|
|
3314
3343
|
var AbstractIterator = require('./abstract-iterator')
|
|
@@ -3575,12 +3604,12 @@ AbstractLevelDOWN.prototype._checkValue = function (value) {
|
|
|
3575
3604
|
module.exports = AbstractLevelDOWN
|
|
3576
3605
|
|
|
3577
3606
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")},require('_process'))
|
|
3578
|
-
},{"../is-buffer/index.js":
|
|
3607
|
+
},{"../is-buffer/index.js":218,"./abstract-chained-batch":5,"./abstract-iterator":6,"_process":322,"xtend":458}],8:[function(require,module,exports){
|
|
3579
3608
|
exports.AbstractLevelDOWN = require('./abstract-leveldown')
|
|
3580
3609
|
exports.AbstractIterator = require('./abstract-iterator')
|
|
3581
3610
|
exports.AbstractChainedBatch = require('./abstract-chained-batch')
|
|
3582
3611
|
|
|
3583
|
-
},{"./abstract-chained-batch":
|
|
3612
|
+
},{"./abstract-chained-batch":5,"./abstract-iterator":6,"./abstract-leveldown":7}],9:[function(require,module,exports){
|
|
3584
3613
|
/*!
|
|
3585
3614
|
* accepts
|
|
3586
3615
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -3820,10 +3849,10 @@ function validMime (type) {
|
|
|
3820
3849
|
return typeof type === 'string'
|
|
3821
3850
|
}
|
|
3822
3851
|
|
|
3823
|
-
},{"mime-types":
|
|
3852
|
+
},{"mime-types":264,"negotiator":298}],10:[function(require,module,exports){
|
|
3824
3853
|
module.exports = require('./register')().Promise
|
|
3825
3854
|
|
|
3826
|
-
},{"./register":
|
|
3855
|
+
},{"./register":12}],11:[function(require,module,exports){
|
|
3827
3856
|
"use strict"
|
|
3828
3857
|
// global key for user preferred registration
|
|
3829
3858
|
var REGISTRATION_KEY = '@@any-promise/REGISTRATION',
|
|
@@ -3903,7 +3932,7 @@ module.exports = function(root, loadImplementation){
|
|
|
3903
3932
|
}
|
|
3904
3933
|
}
|
|
3905
3934
|
|
|
3906
|
-
},{}],
|
|
3935
|
+
},{}],12:[function(require,module,exports){
|
|
3907
3936
|
"use strict";
|
|
3908
3937
|
module.exports = require('./loader')(window, loadImplementation)
|
|
3909
3938
|
|
|
@@ -3923,7 +3952,7 @@ function loadImplementation(){
|
|
|
3923
3952
|
}
|
|
3924
3953
|
}
|
|
3925
3954
|
|
|
3926
|
-
},{"./loader":
|
|
3955
|
+
},{"./loader":11}],13:[function(require,module,exports){
|
|
3927
3956
|
'use strict';
|
|
3928
3957
|
|
|
3929
3958
|
const asn1 = exports;
|
|
@@ -3936,7 +3965,7 @@ asn1.constants = require('./asn1/constants');
|
|
|
3936
3965
|
asn1.decoders = require('./asn1/decoders');
|
|
3937
3966
|
asn1.encoders = require('./asn1/encoders');
|
|
3938
3967
|
|
|
3939
|
-
},{"./asn1/api":
|
|
3968
|
+
},{"./asn1/api":14,"./asn1/base":16,"./asn1/constants":20,"./asn1/decoders":22,"./asn1/encoders":25,"bn.js":27}],14:[function(require,module,exports){
|
|
3940
3969
|
'use strict';
|
|
3941
3970
|
|
|
3942
3971
|
const encoders = require('./encoders');
|
|
@@ -3995,7 +4024,7 @@ Entity.prototype.encode = function encode(data, enc, /* internal */ reporter) {
|
|
|
3995
4024
|
return this._getEncoder(enc).encode(data, reporter);
|
|
3996
4025
|
};
|
|
3997
4026
|
|
|
3998
|
-
},{"./decoders":
|
|
4027
|
+
},{"./decoders":22,"./encoders":25,"inherits":210}],15:[function(require,module,exports){
|
|
3999
4028
|
'use strict';
|
|
4000
4029
|
|
|
4001
4030
|
const inherits = require('inherits');
|
|
@@ -4150,7 +4179,7 @@ EncoderBuffer.prototype.join = function join(out, offset) {
|
|
|
4150
4179
|
return out;
|
|
4151
4180
|
};
|
|
4152
4181
|
|
|
4153
|
-
},{"../base/reporter":
|
|
4182
|
+
},{"../base/reporter":18,"inherits":210,"safer-buffer":384}],16:[function(require,module,exports){
|
|
4154
4183
|
'use strict';
|
|
4155
4184
|
|
|
4156
4185
|
const base = exports;
|
|
@@ -4160,7 +4189,7 @@ base.DecoderBuffer = require('./buffer').DecoderBuffer;
|
|
|
4160
4189
|
base.EncoderBuffer = require('./buffer').EncoderBuffer;
|
|
4161
4190
|
base.Node = require('./node');
|
|
4162
4191
|
|
|
4163
|
-
},{"./buffer":
|
|
4192
|
+
},{"./buffer":15,"./node":17,"./reporter":18}],17:[function(require,module,exports){
|
|
4164
4193
|
'use strict';
|
|
4165
4194
|
|
|
4166
4195
|
const Reporter = require('../base/reporter').Reporter;
|
|
@@ -4800,7 +4829,7 @@ Node.prototype._isPrintstr = function isPrintstr(str) {
|
|
|
4800
4829
|
return /^[A-Za-z0-9 '()+,-./:=?]*$/.test(str);
|
|
4801
4830
|
};
|
|
4802
4831
|
|
|
4803
|
-
},{"../base/buffer":
|
|
4832
|
+
},{"../base/buffer":15,"../base/reporter":18,"minimalistic-assert":265}],18:[function(require,module,exports){
|
|
4804
4833
|
'use strict';
|
|
4805
4834
|
|
|
4806
4835
|
const inherits = require('inherits');
|
|
@@ -4925,7 +4954,7 @@ ReporterError.prototype.rethrow = function rethrow(msg) {
|
|
|
4925
4954
|
return this;
|
|
4926
4955
|
};
|
|
4927
4956
|
|
|
4928
|
-
},{"inherits":
|
|
4957
|
+
},{"inherits":210}],19:[function(require,module,exports){
|
|
4929
4958
|
'use strict';
|
|
4930
4959
|
|
|
4931
4960
|
// Helper
|
|
@@ -4985,7 +5014,7 @@ exports.tag = {
|
|
|
4985
5014
|
};
|
|
4986
5015
|
exports.tagByName = reverse(exports.tag);
|
|
4987
5016
|
|
|
4988
|
-
},{}],
|
|
5017
|
+
},{}],20:[function(require,module,exports){
|
|
4989
5018
|
'use strict';
|
|
4990
5019
|
|
|
4991
5020
|
const constants = exports;
|
|
@@ -5008,7 +5037,7 @@ constants._reverse = function reverse(map) {
|
|
|
5008
5037
|
|
|
5009
5038
|
constants.der = require('./der');
|
|
5010
5039
|
|
|
5011
|
-
},{"./der":
|
|
5040
|
+
},{"./der":19}],21:[function(require,module,exports){
|
|
5012
5041
|
'use strict';
|
|
5013
5042
|
|
|
5014
5043
|
const inherits = require('inherits');
|
|
@@ -5345,7 +5374,7 @@ function derDecodeLen(buf, primitive, fail) {
|
|
|
5345
5374
|
return len;
|
|
5346
5375
|
}
|
|
5347
5376
|
|
|
5348
|
-
},{"../base/buffer":
|
|
5377
|
+
},{"../base/buffer":15,"../base/node":17,"../constants/der":19,"bn.js":27,"inherits":210}],22:[function(require,module,exports){
|
|
5349
5378
|
'use strict';
|
|
5350
5379
|
|
|
5351
5380
|
const decoders = exports;
|
|
@@ -5353,7 +5382,7 @@ const decoders = exports;
|
|
|
5353
5382
|
decoders.der = require('./der');
|
|
5354
5383
|
decoders.pem = require('./pem');
|
|
5355
5384
|
|
|
5356
|
-
},{"./der":
|
|
5385
|
+
},{"./der":21,"./pem":23}],23:[function(require,module,exports){
|
|
5357
5386
|
'use strict';
|
|
5358
5387
|
|
|
5359
5388
|
const inherits = require('inherits');
|
|
@@ -5406,7 +5435,7 @@ PEMDecoder.prototype.decode = function decode(data, options) {
|
|
|
5406
5435
|
return DERDecoder.prototype.decode.call(this, input, options);
|
|
5407
5436
|
};
|
|
5408
5437
|
|
|
5409
|
-
},{"./der":
|
|
5438
|
+
},{"./der":21,"inherits":210,"safer-buffer":384}],24:[function(require,module,exports){
|
|
5410
5439
|
'use strict';
|
|
5411
5440
|
|
|
5412
5441
|
const inherits = require('inherits');
|
|
@@ -5703,7 +5732,7 @@ function encodeTag(tag, primitive, cls, reporter) {
|
|
|
5703
5732
|
return res;
|
|
5704
5733
|
}
|
|
5705
5734
|
|
|
5706
|
-
},{"../base/node":
|
|
5735
|
+
},{"../base/node":17,"../constants/der":19,"inherits":210,"safer-buffer":384}],25:[function(require,module,exports){
|
|
5707
5736
|
'use strict';
|
|
5708
5737
|
|
|
5709
5738
|
const encoders = exports;
|
|
@@ -5711,7 +5740,7 @@ const encoders = exports;
|
|
|
5711
5740
|
encoders.der = require('./der');
|
|
5712
5741
|
encoders.pem = require('./pem');
|
|
5713
5742
|
|
|
5714
|
-
},{"./der":
|
|
5743
|
+
},{"./der":24,"./pem":26}],26:[function(require,module,exports){
|
|
5715
5744
|
'use strict';
|
|
5716
5745
|
|
|
5717
5746
|
const inherits = require('inherits');
|
|
@@ -5736,7 +5765,7 @@ PEMEncoder.prototype.encode = function encode(data, options) {
|
|
|
5736
5765
|
return out.join('\n');
|
|
5737
5766
|
};
|
|
5738
5767
|
|
|
5739
|
-
},{"./der":
|
|
5768
|
+
},{"./der":24,"inherits":210}],27:[function(require,module,exports){
|
|
5740
5769
|
(function (module, exports) {
|
|
5741
5770
|
'use strict';
|
|
5742
5771
|
|
|
@@ -9184,7 +9213,7 @@ PEMEncoder.prototype.encode = function encode(data, options) {
|
|
|
9184
9213
|
};
|
|
9185
9214
|
})(typeof module === 'undefined' || module, this);
|
|
9186
9215
|
|
|
9187
|
-
},{"buffer":
|
|
9216
|
+
},{"buffer":55}],28:[function(require,module,exports){
|
|
9188
9217
|
(function (global){(function (){
|
|
9189
9218
|
'use strict';
|
|
9190
9219
|
|
|
@@ -9694,7 +9723,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
9694
9723
|
};
|
|
9695
9724
|
|
|
9696
9725
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
9697
|
-
},{"object-assign":
|
|
9726
|
+
},{"object-assign":303,"util/":31}],29:[function(require,module,exports){
|
|
9698
9727
|
if (typeof Object.create === 'function') {
|
|
9699
9728
|
// implementation from standard node.js 'util' module
|
|
9700
9729
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -9719,14 +9748,14 @@ if (typeof Object.create === 'function') {
|
|
|
9719
9748
|
}
|
|
9720
9749
|
}
|
|
9721
9750
|
|
|
9722
|
-
},{}],
|
|
9751
|
+
},{}],30:[function(require,module,exports){
|
|
9723
9752
|
module.exports = function isBuffer(arg) {
|
|
9724
9753
|
return arg && typeof arg === 'object'
|
|
9725
9754
|
&& typeof arg.copy === 'function'
|
|
9726
9755
|
&& typeof arg.fill === 'function'
|
|
9727
9756
|
&& typeof arg.readUInt8 === 'function';
|
|
9728
9757
|
}
|
|
9729
|
-
},{}],
|
|
9758
|
+
},{}],31:[function(require,module,exports){
|
|
9730
9759
|
(function (process,global){(function (){
|
|
9731
9760
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
9732
9761
|
//
|
|
@@ -10316,7 +10345,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
10316
10345
|
}
|
|
10317
10346
|
|
|
10318
10347
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
10319
|
-
},{"./support/isBuffer":
|
|
10348
|
+
},{"./support/isBuffer":30,"_process":322,"inherits":29}],32:[function(require,module,exports){
|
|
10320
10349
|
'use strict'
|
|
10321
10350
|
// base-x encoding / decoding
|
|
10322
10351
|
// Copyright (c) 2018 base-x contributors
|
|
@@ -10441,7 +10470,7 @@ function base (ALPHABET) {
|
|
|
10441
10470
|
}
|
|
10442
10471
|
module.exports = base
|
|
10443
10472
|
|
|
10444
|
-
},{"safe-buffer":
|
|
10473
|
+
},{"safe-buffer":383}],33:[function(require,module,exports){
|
|
10445
10474
|
'use strict'
|
|
10446
10475
|
|
|
10447
10476
|
exports.byteLength = byteLength
|
|
@@ -10595,7 +10624,7 @@ function fromByteArray (uint8) {
|
|
|
10595
10624
|
return parts.join('')
|
|
10596
10625
|
}
|
|
10597
10626
|
|
|
10598
|
-
},{}],
|
|
10627
|
+
},{}],34:[function(require,module,exports){
|
|
10599
10628
|
(function (Buffer){(function (){
|
|
10600
10629
|
"use strict";
|
|
10601
10630
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -10896,7 +10925,7 @@ function fromSeed(seed, network) {
|
|
|
10896
10925
|
exports.fromSeed = fromSeed;
|
|
10897
10926
|
|
|
10898
10927
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
10899
|
-
},{"./crypto":
|
|
10928
|
+
},{"./crypto":35,"bs58check":88,"buffer":91,"tiny-secp256k1":429,"typeforce":438,"wif":457}],35:[function(require,module,exports){
|
|
10900
10929
|
"use strict";
|
|
10901
10930
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10902
10931
|
const createHash = require('create-hash');
|
|
@@ -10924,7 +10953,7 @@ function hmacSHA512(key, data) {
|
|
|
10924
10953
|
}
|
|
10925
10954
|
exports.hmacSHA512 = hmacSHA512;
|
|
10926
10955
|
|
|
10927
|
-
},{"create-hash":
|
|
10956
|
+
},{"create-hash":104,"create-hmac":106}],36:[function(require,module,exports){
|
|
10928
10957
|
"use strict";
|
|
10929
10958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10930
10959
|
var bip32_1 = require("./bip32");
|
|
@@ -10933,7 +10962,7 @@ exports.fromBase58 = bip32_1.fromBase58;
|
|
|
10933
10962
|
exports.fromPublicKey = bip32_1.fromPublicKey;
|
|
10934
10963
|
exports.fromPrivateKey = bip32_1.fromPrivateKey;
|
|
10935
10964
|
|
|
10936
|
-
},{"./bip32":
|
|
10965
|
+
},{"./bip32":34}],37:[function(require,module,exports){
|
|
10937
10966
|
"use strict";
|
|
10938
10967
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10939
10968
|
// browserify by default only pulls in files that are hard coded in requires
|
|
@@ -10996,7 +11025,7 @@ try {
|
|
|
10996
11025
|
}
|
|
10997
11026
|
catch (err) { }
|
|
10998
11027
|
|
|
10999
|
-
},{"./wordlists/chinese_simplified.json":
|
|
11028
|
+
},{"./wordlists/chinese_simplified.json":39,"./wordlists/chinese_traditional.json":40,"./wordlists/czech.json":41,"./wordlists/english.json":42,"./wordlists/french.json":43,"./wordlists/italian.json":44,"./wordlists/japanese.json":45,"./wordlists/korean.json":46,"./wordlists/portuguese.json":47,"./wordlists/spanish.json":48}],38:[function(require,module,exports){
|
|
11000
11029
|
(function (Buffer){(function (){
|
|
11001
11030
|
"use strict";
|
|
11002
11031
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -11181,7 +11210,7 @@ var _wordlists_2 = require("./_wordlists");
|
|
|
11181
11210
|
exports.wordlists = _wordlists_2.wordlists;
|
|
11182
11211
|
|
|
11183
11212
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
11184
|
-
},{"./_wordlists":
|
|
11213
|
+
},{"./_wordlists":37,"buffer":91,"create-hash":104,"pbkdf2":315,"randombytes":364}],39:[function(require,module,exports){
|
|
11185
11214
|
module.exports=[
|
|
11186
11215
|
"的",
|
|
11187
11216
|
"一",
|
|
@@ -13233,7 +13262,7 @@ module.exports=[
|
|
|
13233
13262
|
"歇"
|
|
13234
13263
|
]
|
|
13235
13264
|
|
|
13236
|
-
},{}],
|
|
13265
|
+
},{}],40:[function(require,module,exports){
|
|
13237
13266
|
module.exports=[
|
|
13238
13267
|
"的",
|
|
13239
13268
|
"一",
|
|
@@ -15285,7 +15314,7 @@ module.exports=[
|
|
|
15285
15314
|
"歇"
|
|
15286
15315
|
]
|
|
15287
15316
|
|
|
15288
|
-
},{}],
|
|
15317
|
+
},{}],41:[function(require,module,exports){
|
|
15289
15318
|
module.exports=[
|
|
15290
15319
|
"abdikace",
|
|
15291
15320
|
"abeceda",
|
|
@@ -17337,7 +17366,7 @@ module.exports=[
|
|
|
17337
17366
|
"zvyk"
|
|
17338
17367
|
]
|
|
17339
17368
|
|
|
17340
|
-
},{}],
|
|
17369
|
+
},{}],42:[function(require,module,exports){
|
|
17341
17370
|
module.exports=[
|
|
17342
17371
|
"abandon",
|
|
17343
17372
|
"ability",
|
|
@@ -19389,7 +19418,7 @@ module.exports=[
|
|
|
19389
19418
|
"zoo"
|
|
19390
19419
|
]
|
|
19391
19420
|
|
|
19392
|
-
},{}],
|
|
19421
|
+
},{}],43:[function(require,module,exports){
|
|
19393
19422
|
module.exports=[
|
|
19394
19423
|
"abaisser",
|
|
19395
19424
|
"abandon",
|
|
@@ -21441,7 +21470,7 @@ module.exports=[
|
|
|
21441
21470
|
"zoologie"
|
|
21442
21471
|
]
|
|
21443
21472
|
|
|
21444
|
-
},{}],
|
|
21473
|
+
},{}],44:[function(require,module,exports){
|
|
21445
21474
|
module.exports=[
|
|
21446
21475
|
"abaco",
|
|
21447
21476
|
"abbaglio",
|
|
@@ -23493,7 +23522,7 @@ module.exports=[
|
|
|
23493
23522
|
"zuppa"
|
|
23494
23523
|
]
|
|
23495
23524
|
|
|
23496
|
-
},{}],
|
|
23525
|
+
},{}],45:[function(require,module,exports){
|
|
23497
23526
|
module.exports=[
|
|
23498
23527
|
"あいこくしん",
|
|
23499
23528
|
"あいさつ",
|
|
@@ -25545,7 +25574,7 @@ module.exports=[
|
|
|
25545
25574
|
"われる"
|
|
25546
25575
|
]
|
|
25547
25576
|
|
|
25548
|
-
},{}],
|
|
25577
|
+
},{}],46:[function(require,module,exports){
|
|
25549
25578
|
module.exports=[
|
|
25550
25579
|
"가격",
|
|
25551
25580
|
"가끔",
|
|
@@ -27597,7 +27626,7 @@ module.exports=[
|
|
|
27597
27626
|
"힘껏"
|
|
27598
27627
|
]
|
|
27599
27628
|
|
|
27600
|
-
},{}],
|
|
27629
|
+
},{}],47:[function(require,module,exports){
|
|
27601
27630
|
module.exports=[
|
|
27602
27631
|
"abacate",
|
|
27603
27632
|
"abaixo",
|
|
@@ -29649,7 +29678,7 @@ module.exports=[
|
|
|
29649
29678
|
"zumbido"
|
|
29650
29679
|
]
|
|
29651
29680
|
|
|
29652
|
-
},{}],
|
|
29681
|
+
},{}],48:[function(require,module,exports){
|
|
29653
29682
|
module.exports=[
|
|
29654
29683
|
"ábaco",
|
|
29655
29684
|
"abdomen",
|
|
@@ -31701,7 +31730,7 @@ module.exports=[
|
|
|
31701
31730
|
"zurdo"
|
|
31702
31731
|
]
|
|
31703
31732
|
|
|
31704
|
-
},{}],
|
|
31733
|
+
},{}],49:[function(require,module,exports){
|
|
31705
31734
|
const EventEmitter = require('events')
|
|
31706
31735
|
|
|
31707
31736
|
class Tracker extends EventEmitter {
|
|
@@ -31731,7 +31760,7 @@ class Tracker extends EventEmitter {
|
|
|
31731
31760
|
|
|
31732
31761
|
module.exports = Tracker
|
|
31733
31762
|
|
|
31734
|
-
},{"events":
|
|
31763
|
+
},{"events":178}],50:[function(require,module,exports){
|
|
31735
31764
|
const debug = require('debug')('bittorrent-tracker:websocket-tracker')
|
|
31736
31765
|
const Peer = require('simple-peer')
|
|
31737
31766
|
const randombytes = require('randombytes')
|
|
@@ -32165,7 +32194,7 @@ function noop () {}
|
|
|
32165
32194
|
|
|
32166
32195
|
module.exports = WebSocketTracker
|
|
32167
32196
|
|
|
32168
|
-
},{"../common":
|
|
32197
|
+
},{"../common":51,"./tracker":49,"debug":122,"randombytes":364,"simple-peer":402,"simple-websocket":52}],51:[function(require,module,exports){
|
|
32169
32198
|
(function (Buffer){(function (){
|
|
32170
32199
|
/**
|
|
32171
32200
|
* Functions/constants needed by both the client and server.
|
|
@@ -32192,7 +32221,7 @@ var config = require('./common-node')
|
|
|
32192
32221
|
Object.assign(exports, config)
|
|
32193
32222
|
|
|
32194
32223
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32195
|
-
},{"./common-node":
|
|
32224
|
+
},{"./common-node":55,"buffer":91}],52:[function(require,module,exports){
|
|
32196
32225
|
(function (Buffer){(function (){
|
|
32197
32226
|
/* global WebSocket, DOMException */
|
|
32198
32227
|
|
|
@@ -32457,7 +32486,7 @@ Socket.WEBSOCKET_SUPPORT = !!_WebSocket
|
|
|
32457
32486
|
module.exports = Socket
|
|
32458
32487
|
|
|
32459
32488
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32460
|
-
},{"buffer":
|
|
32489
|
+
},{"buffer":91,"debug":122,"queue-microtask":363,"randombytes":364,"readable-stream":380,"ws":55}],53:[function(require,module,exports){
|
|
32461
32490
|
(function (module, exports) {
|
|
32462
32491
|
'use strict';
|
|
32463
32492
|
|
|
@@ -35999,7 +36028,7 @@ module.exports = Socket
|
|
|
35999
36028
|
};
|
|
36000
36029
|
})(typeof module === 'undefined' || module, this);
|
|
36001
36030
|
|
|
36002
|
-
},{"buffer":
|
|
36031
|
+
},{"buffer":55}],54:[function(require,module,exports){
|
|
36003
36032
|
var r;
|
|
36004
36033
|
|
|
36005
36034
|
module.exports = function rand(len) {
|
|
@@ -36066,9 +36095,9 @@ if (typeof self === 'object') {
|
|
|
36066
36095
|
}
|
|
36067
36096
|
}
|
|
36068
36097
|
|
|
36069
|
-
},{"crypto":
|
|
36098
|
+
},{"crypto":55}],55:[function(require,module,exports){
|
|
36070
36099
|
|
|
36071
|
-
},{}],
|
|
36100
|
+
},{}],56:[function(require,module,exports){
|
|
36072
36101
|
// based on the aes implimentation in triple sec
|
|
36073
36102
|
// https://github.com/keybase/triplesec
|
|
36074
36103
|
// which is in turn based on the one from crypto-js
|
|
@@ -36298,7 +36327,7 @@ AES.prototype.scrub = function () {
|
|
|
36298
36327
|
|
|
36299
36328
|
module.exports.AES = AES
|
|
36300
36329
|
|
|
36301
|
-
},{"safe-buffer":
|
|
36330
|
+
},{"safe-buffer":383}],57:[function(require,module,exports){
|
|
36302
36331
|
var aes = require('./aes')
|
|
36303
36332
|
var Buffer = require('safe-buffer').Buffer
|
|
36304
36333
|
var Transform = require('cipher-base')
|
|
@@ -36417,7 +36446,7 @@ StreamCipher.prototype.setAAD = function setAAD (buf) {
|
|
|
36417
36446
|
|
|
36418
36447
|
module.exports = StreamCipher
|
|
36419
36448
|
|
|
36420
|
-
},{"./aes":
|
|
36449
|
+
},{"./aes":56,"./ghash":61,"./incr32":62,"buffer-xor":90,"cipher-base":94,"inherits":210,"safe-buffer":383}],58:[function(require,module,exports){
|
|
36421
36450
|
var ciphers = require('./encrypter')
|
|
36422
36451
|
var deciphers = require('./decrypter')
|
|
36423
36452
|
var modes = require('./modes/list.json')
|
|
@@ -36432,7 +36461,7 @@ exports.createDecipher = exports.Decipher = deciphers.createDecipher
|
|
|
36432
36461
|
exports.createDecipheriv = exports.Decipheriv = deciphers.createDecipheriv
|
|
36433
36462
|
exports.listCiphers = exports.getCiphers = getCiphers
|
|
36434
36463
|
|
|
36435
|
-
},{"./decrypter":
|
|
36464
|
+
},{"./decrypter":59,"./encrypter":60,"./modes/list.json":70}],59:[function(require,module,exports){
|
|
36436
36465
|
var AuthCipher = require('./authCipher')
|
|
36437
36466
|
var Buffer = require('safe-buffer').Buffer
|
|
36438
36467
|
var MODES = require('./modes')
|
|
@@ -36558,7 +36587,7 @@ function createDecipher (suite, password) {
|
|
|
36558
36587
|
exports.createDecipher = createDecipher
|
|
36559
36588
|
exports.createDecipheriv = createDecipheriv
|
|
36560
36589
|
|
|
36561
|
-
},{"./aes":
|
|
36590
|
+
},{"./aes":56,"./authCipher":57,"./modes":69,"./streamCipher":72,"cipher-base":94,"evp_bytestokey":179,"inherits":210,"safe-buffer":383}],60:[function(require,module,exports){
|
|
36562
36591
|
var MODES = require('./modes')
|
|
36563
36592
|
var AuthCipher = require('./authCipher')
|
|
36564
36593
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -36674,7 +36703,7 @@ function createCipher (suite, password) {
|
|
|
36674
36703
|
exports.createCipheriv = createCipheriv
|
|
36675
36704
|
exports.createCipher = createCipher
|
|
36676
36705
|
|
|
36677
|
-
},{"./aes":
|
|
36706
|
+
},{"./aes":56,"./authCipher":57,"./modes":69,"./streamCipher":72,"cipher-base":94,"evp_bytestokey":179,"inherits":210,"safe-buffer":383}],61:[function(require,module,exports){
|
|
36678
36707
|
var Buffer = require('safe-buffer').Buffer
|
|
36679
36708
|
var ZEROES = Buffer.alloc(16, 0)
|
|
36680
36709
|
|
|
@@ -36765,7 +36794,7 @@ GHASH.prototype.final = function (abl, bl) {
|
|
|
36765
36794
|
|
|
36766
36795
|
module.exports = GHASH
|
|
36767
36796
|
|
|
36768
|
-
},{"safe-buffer":
|
|
36797
|
+
},{"safe-buffer":383}],62:[function(require,module,exports){
|
|
36769
36798
|
function incr32 (iv) {
|
|
36770
36799
|
var len = iv.length
|
|
36771
36800
|
var item
|
|
@@ -36782,7 +36811,7 @@ function incr32 (iv) {
|
|
|
36782
36811
|
}
|
|
36783
36812
|
module.exports = incr32
|
|
36784
36813
|
|
|
36785
|
-
},{}],
|
|
36814
|
+
},{}],63:[function(require,module,exports){
|
|
36786
36815
|
var xor = require('buffer-xor')
|
|
36787
36816
|
|
|
36788
36817
|
exports.encrypt = function (self, block) {
|
|
@@ -36801,7 +36830,7 @@ exports.decrypt = function (self, block) {
|
|
|
36801
36830
|
return xor(out, pad)
|
|
36802
36831
|
}
|
|
36803
36832
|
|
|
36804
|
-
},{"buffer-xor":
|
|
36833
|
+
},{"buffer-xor":90}],64:[function(require,module,exports){
|
|
36805
36834
|
var Buffer = require('safe-buffer').Buffer
|
|
36806
36835
|
var xor = require('buffer-xor')
|
|
36807
36836
|
|
|
@@ -36836,7 +36865,7 @@ exports.encrypt = function (self, data, decrypt) {
|
|
|
36836
36865
|
return out
|
|
36837
36866
|
}
|
|
36838
36867
|
|
|
36839
|
-
},{"buffer-xor":
|
|
36868
|
+
},{"buffer-xor":90,"safe-buffer":383}],65:[function(require,module,exports){
|
|
36840
36869
|
var Buffer = require('safe-buffer').Buffer
|
|
36841
36870
|
|
|
36842
36871
|
function encryptByte (self, byteParam, decrypt) {
|
|
@@ -36880,7 +36909,7 @@ exports.encrypt = function (self, chunk, decrypt) {
|
|
|
36880
36909
|
return out
|
|
36881
36910
|
}
|
|
36882
36911
|
|
|
36883
|
-
},{"safe-buffer":
|
|
36912
|
+
},{"safe-buffer":383}],66:[function(require,module,exports){
|
|
36884
36913
|
var Buffer = require('safe-buffer').Buffer
|
|
36885
36914
|
|
|
36886
36915
|
function encryptByte (self, byteParam, decrypt) {
|
|
@@ -36907,7 +36936,7 @@ exports.encrypt = function (self, chunk, decrypt) {
|
|
|
36907
36936
|
return out
|
|
36908
36937
|
}
|
|
36909
36938
|
|
|
36910
|
-
},{"safe-buffer":
|
|
36939
|
+
},{"safe-buffer":383}],67:[function(require,module,exports){
|
|
36911
36940
|
var xor = require('buffer-xor')
|
|
36912
36941
|
var Buffer = require('safe-buffer').Buffer
|
|
36913
36942
|
var incr32 = require('../incr32')
|
|
@@ -36939,7 +36968,7 @@ exports.encrypt = function (self, chunk) {
|
|
|
36939
36968
|
return xor(chunk, pad)
|
|
36940
36969
|
}
|
|
36941
36970
|
|
|
36942
|
-
},{"../incr32":
|
|
36971
|
+
},{"../incr32":62,"buffer-xor":90,"safe-buffer":383}],68:[function(require,module,exports){
|
|
36943
36972
|
exports.encrypt = function (self, block) {
|
|
36944
36973
|
return self._cipher.encryptBlock(block)
|
|
36945
36974
|
}
|
|
@@ -36948,7 +36977,7 @@ exports.decrypt = function (self, block) {
|
|
|
36948
36977
|
return self._cipher.decryptBlock(block)
|
|
36949
36978
|
}
|
|
36950
36979
|
|
|
36951
|
-
},{}],
|
|
36980
|
+
},{}],69:[function(require,module,exports){
|
|
36952
36981
|
var modeModules = {
|
|
36953
36982
|
ECB: require('./ecb'),
|
|
36954
36983
|
CBC: require('./cbc'),
|
|
@@ -36968,7 +36997,7 @@ for (var key in modes) {
|
|
|
36968
36997
|
|
|
36969
36998
|
module.exports = modes
|
|
36970
36999
|
|
|
36971
|
-
},{"./cbc":
|
|
37000
|
+
},{"./cbc":63,"./cfb":64,"./cfb1":65,"./cfb8":66,"./ctr":67,"./ecb":68,"./list.json":70,"./ofb":71}],70:[function(require,module,exports){
|
|
36972
37001
|
module.exports={
|
|
36973
37002
|
"aes-128-ecb": {
|
|
36974
37003
|
"cipher": "AES",
|
|
@@ -37161,7 +37190,7 @@ module.exports={
|
|
|
37161
37190
|
}
|
|
37162
37191
|
}
|
|
37163
37192
|
|
|
37164
|
-
},{}],
|
|
37193
|
+
},{}],71:[function(require,module,exports){
|
|
37165
37194
|
(function (Buffer){(function (){
|
|
37166
37195
|
var xor = require('buffer-xor')
|
|
37167
37196
|
|
|
@@ -37181,7 +37210,7 @@ exports.encrypt = function (self, chunk) {
|
|
|
37181
37210
|
}
|
|
37182
37211
|
|
|
37183
37212
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
37184
|
-
},{"buffer":
|
|
37213
|
+
},{"buffer":91,"buffer-xor":90}],72:[function(require,module,exports){
|
|
37185
37214
|
var aes = require('./aes')
|
|
37186
37215
|
var Buffer = require('safe-buffer').Buffer
|
|
37187
37216
|
var Transform = require('cipher-base')
|
|
@@ -37210,7 +37239,7 @@ StreamCipher.prototype._final = function () {
|
|
|
37210
37239
|
|
|
37211
37240
|
module.exports = StreamCipher
|
|
37212
37241
|
|
|
37213
|
-
},{"./aes":
|
|
37242
|
+
},{"./aes":56,"cipher-base":94,"inherits":210,"safe-buffer":383}],73:[function(require,module,exports){
|
|
37214
37243
|
var DES = require('browserify-des')
|
|
37215
37244
|
var aes = require('browserify-aes/browser')
|
|
37216
37245
|
var aesModes = require('browserify-aes/modes')
|
|
@@ -37279,7 +37308,7 @@ exports.createDecipher = exports.Decipher = createDecipher
|
|
|
37279
37308
|
exports.createDecipheriv = exports.Decipheriv = createDecipheriv
|
|
37280
37309
|
exports.listCiphers = exports.getCiphers = getCiphers
|
|
37281
37310
|
|
|
37282
|
-
},{"browserify-aes/browser":
|
|
37311
|
+
},{"browserify-aes/browser":58,"browserify-aes/modes":69,"browserify-des":74,"browserify-des/modes":75,"evp_bytestokey":179}],74:[function(require,module,exports){
|
|
37283
37312
|
var CipherBase = require('cipher-base')
|
|
37284
37313
|
var des = require('des.js')
|
|
37285
37314
|
var inherits = require('inherits')
|
|
@@ -37331,7 +37360,7 @@ DES.prototype._final = function () {
|
|
|
37331
37360
|
return Buffer.from(this._des.final())
|
|
37332
37361
|
}
|
|
37333
37362
|
|
|
37334
|
-
},{"cipher-base":
|
|
37363
|
+
},{"cipher-base":94,"des.js":136,"inherits":210,"safe-buffer":383}],75:[function(require,module,exports){
|
|
37335
37364
|
exports['des-ecb'] = {
|
|
37336
37365
|
key: 8,
|
|
37337
37366
|
iv: 0
|
|
@@ -37357,7 +37386,7 @@ exports['des-ede'] = {
|
|
|
37357
37386
|
iv: 0
|
|
37358
37387
|
}
|
|
37359
37388
|
|
|
37360
|
-
},{}],
|
|
37389
|
+
},{}],76:[function(require,module,exports){
|
|
37361
37390
|
(function (Buffer){(function (){
|
|
37362
37391
|
var BN = require('bn.js')
|
|
37363
37392
|
var randomBytes = require('randombytes')
|
|
@@ -37396,10 +37425,10 @@ crt.getr = getr
|
|
|
37396
37425
|
module.exports = crt
|
|
37397
37426
|
|
|
37398
37427
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
37399
|
-
},{"bn.js":
|
|
37428
|
+
},{"bn.js":53,"buffer":91,"randombytes":364}],77:[function(require,module,exports){
|
|
37400
37429
|
module.exports = require('./browser/algorithms.json')
|
|
37401
37430
|
|
|
37402
|
-
},{"./browser/algorithms.json":
|
|
37431
|
+
},{"./browser/algorithms.json":78}],78:[function(require,module,exports){
|
|
37403
37432
|
module.exports={
|
|
37404
37433
|
"sha224WithRSAEncryption": {
|
|
37405
37434
|
"sign": "rsa",
|
|
@@ -37553,7 +37582,7 @@ module.exports={
|
|
|
37553
37582
|
}
|
|
37554
37583
|
}
|
|
37555
37584
|
|
|
37556
|
-
},{}],
|
|
37585
|
+
},{}],79:[function(require,module,exports){
|
|
37557
37586
|
module.exports={
|
|
37558
37587
|
"1.3.132.0.10": "secp256k1",
|
|
37559
37588
|
"1.3.132.0.33": "p224",
|
|
@@ -37563,7 +37592,7 @@ module.exports={
|
|
|
37563
37592
|
"1.3.132.0.35": "p521"
|
|
37564
37593
|
}
|
|
37565
37594
|
|
|
37566
|
-
},{}],
|
|
37595
|
+
},{}],80:[function(require,module,exports){
|
|
37567
37596
|
var Buffer = require('safe-buffer').Buffer
|
|
37568
37597
|
var createHash = require('create-hash')
|
|
37569
37598
|
var stream = require('readable-stream')
|
|
@@ -37657,7 +37686,7 @@ module.exports = {
|
|
|
37657
37686
|
createVerify: createVerify
|
|
37658
37687
|
}
|
|
37659
37688
|
|
|
37660
|
-
},{"./algorithms.json":
|
|
37689
|
+
},{"./algorithms.json":78,"./sign":81,"./verify":82,"create-hash":104,"inherits":210,"readable-stream":380,"safe-buffer":383}],81:[function(require,module,exports){
|
|
37661
37690
|
// much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js
|
|
37662
37691
|
var Buffer = require('safe-buffer').Buffer
|
|
37663
37692
|
var createHmac = require('create-hmac')
|
|
@@ -37802,7 +37831,7 @@ module.exports = sign
|
|
|
37802
37831
|
module.exports.getKey = getKey
|
|
37803
37832
|
module.exports.makeKey = makeKey
|
|
37804
37833
|
|
|
37805
|
-
},{"./curves.json":
|
|
37834
|
+
},{"./curves.json":79,"bn.js":53,"browserify-rsa":76,"create-hmac":106,"elliptic":149,"parse-asn1":312,"safe-buffer":383}],82:[function(require,module,exports){
|
|
37806
37835
|
// much of this based on https://github.com/indutny/self-signed/blob/gh-pages/lib/rsa.js
|
|
37807
37836
|
var Buffer = require('safe-buffer').Buffer
|
|
37808
37837
|
var BN = require('bn.js')
|
|
@@ -37888,9 +37917,9 @@ function checkValue (b, q) {
|
|
|
37888
37917
|
|
|
37889
37918
|
module.exports = verify
|
|
37890
37919
|
|
|
37891
|
-
},{"./curves.json":
|
|
37892
|
-
arguments[4][
|
|
37893
|
-
},{"dup":
|
|
37920
|
+
},{"./curves.json":79,"bn.js":53,"elliptic":149,"parse-asn1":312,"safe-buffer":383}],83:[function(require,module,exports){
|
|
37921
|
+
arguments[4][55][0].apply(exports,arguments)
|
|
37922
|
+
},{"dup":55}],84:[function(require,module,exports){
|
|
37894
37923
|
(function (Buffer){(function (){
|
|
37895
37924
|
/*!
|
|
37896
37925
|
* base32.js - base32 for bcrypto
|
|
@@ -38178,18 +38207,18 @@ exports.test = test;
|
|
|
38178
38207
|
exports.testHex = testHex;
|
|
38179
38208
|
|
|
38180
38209
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
38181
|
-
},{"bsert":
|
|
38210
|
+
},{"bsert":89,"buffer":91}],85:[function(require,module,exports){
|
|
38182
38211
|
'use strict';
|
|
38183
38212
|
|
|
38184
38213
|
module.exports = require('./base32');
|
|
38185
38214
|
|
|
38186
|
-
},{"./base32":
|
|
38215
|
+
},{"./base32":84}],86:[function(require,module,exports){
|
|
38187
38216
|
var basex = require('base-x')
|
|
38188
38217
|
var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
|
|
38189
38218
|
|
|
38190
38219
|
module.exports = basex(ALPHABET)
|
|
38191
38220
|
|
|
38192
|
-
},{"base-x":
|
|
38221
|
+
},{"base-x":32}],87:[function(require,module,exports){
|
|
38193
38222
|
'use strict'
|
|
38194
38223
|
|
|
38195
38224
|
var base58 = require('bs58')
|
|
@@ -38241,7 +38270,7 @@ module.exports = function (checksumFn) {
|
|
|
38241
38270
|
}
|
|
38242
38271
|
}
|
|
38243
38272
|
|
|
38244
|
-
},{"bs58":
|
|
38273
|
+
},{"bs58":86,"safe-buffer":383}],88:[function(require,module,exports){
|
|
38245
38274
|
'use strict'
|
|
38246
38275
|
|
|
38247
38276
|
var createHash = require('create-hash')
|
|
@@ -38255,7 +38284,7 @@ function sha256x2 (buffer) {
|
|
|
38255
38284
|
|
|
38256
38285
|
module.exports = bs58checkBase(sha256x2)
|
|
38257
38286
|
|
|
38258
|
-
},{"./base":
|
|
38287
|
+
},{"./base":87,"create-hash":104}],89:[function(require,module,exports){
|
|
38259
38288
|
/*!
|
|
38260
38289
|
* assert.js - assertions for javascript
|
|
38261
38290
|
* Copyright (c) 2018, Christopher Jeffrey (MIT License).
|
|
@@ -39221,7 +39250,7 @@ assert.range = range;
|
|
|
39221
39250
|
|
|
39222
39251
|
module.exports = assert;
|
|
39223
39252
|
|
|
39224
|
-
},{}],
|
|
39253
|
+
},{}],90:[function(require,module,exports){
|
|
39225
39254
|
(function (Buffer){(function (){
|
|
39226
39255
|
module.exports = function xor (a, b) {
|
|
39227
39256
|
var length = Math.min(a.length, b.length)
|
|
@@ -39235,7 +39264,7 @@ module.exports = function xor (a, b) {
|
|
|
39235
39264
|
}
|
|
39236
39265
|
|
|
39237
39266
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
39238
|
-
},{"buffer":
|
|
39267
|
+
},{"buffer":91}],91:[function(require,module,exports){
|
|
39239
39268
|
(function (Buffer){(function (){
|
|
39240
39269
|
/*!
|
|
39241
39270
|
* The buffer module from node.js, for the browser.
|
|
@@ -41016,7 +41045,7 @@ function numberIsNaN (obj) {
|
|
|
41016
41045
|
}
|
|
41017
41046
|
|
|
41018
41047
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
41019
|
-
},{"base64-js":
|
|
41048
|
+
},{"base64-js":33,"buffer":91,"ieee754":203}],92:[function(require,module,exports){
|
|
41020
41049
|
module.exports = {
|
|
41021
41050
|
"100": "Continue",
|
|
41022
41051
|
"101": "Switching Protocols",
|
|
@@ -41082,7 +41111,7 @@ module.exports = {
|
|
|
41082
41111
|
"511": "Network Authentication Required"
|
|
41083
41112
|
}
|
|
41084
41113
|
|
|
41085
|
-
},{}],
|
|
41114
|
+
},{}],93:[function(require,module,exports){
|
|
41086
41115
|
'use strict';
|
|
41087
41116
|
|
|
41088
41117
|
const mimeTypes = require('mime-types');
|
|
@@ -41099,7 +41128,7 @@ module.exports = type => {
|
|
|
41099
41128
|
return mimeType;
|
|
41100
41129
|
};
|
|
41101
41130
|
|
|
41102
|
-
},{"mime-types":
|
|
41131
|
+
},{"mime-types":264,"ylru":460}],94:[function(require,module,exports){
|
|
41103
41132
|
var Buffer = require('safe-buffer').Buffer
|
|
41104
41133
|
var Transform = require('stream').Transform
|
|
41105
41134
|
var StringDecoder = require('string_decoder').StringDecoder
|
|
@@ -41200,7 +41229,7 @@ CipherBase.prototype._toString = function (value, enc, fin) {
|
|
|
41200
41229
|
|
|
41201
41230
|
module.exports = CipherBase
|
|
41202
41231
|
|
|
41203
|
-
},{"inherits":
|
|
41232
|
+
},{"inherits":210,"safe-buffer":383,"stream":407,"string_decoder":427}],95:[function(require,module,exports){
|
|
41204
41233
|
'use strict';
|
|
41205
41234
|
|
|
41206
41235
|
function withIs(Class, { className, symbolName }) {
|
|
@@ -41268,7 +41297,7 @@ function withIsProto(Class, { className, symbolName, withoutNew }) {
|
|
|
41268
41297
|
module.exports = withIs;
|
|
41269
41298
|
module.exports.proto = withIsProto;
|
|
41270
41299
|
|
|
41271
|
-
},{}],
|
|
41300
|
+
},{}],96:[function(require,module,exports){
|
|
41272
41301
|
|
|
41273
41302
|
/**
|
|
41274
41303
|
* slice() reference.
|
|
@@ -41507,7 +41536,7 @@ function isObject(val) {
|
|
|
41507
41536
|
return Object == val.constructor;
|
|
41508
41537
|
}
|
|
41509
41538
|
|
|
41510
|
-
},{}],
|
|
41539
|
+
},{}],97:[function(require,module,exports){
|
|
41511
41540
|
/*!
|
|
41512
41541
|
* content-disposition
|
|
41513
41542
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
@@ -41967,7 +41996,7 @@ function ContentDisposition (type, parameters) {
|
|
|
41967
41996
|
this.parameters = parameters
|
|
41968
41997
|
}
|
|
41969
41998
|
|
|
41970
|
-
},{"path":
|
|
41999
|
+
},{"path":314,"safe-buffer":98}],98:[function(require,module,exports){
|
|
41971
42000
|
/* eslint-disable node/no-deprecated-api */
|
|
41972
42001
|
var buffer = require('buffer')
|
|
41973
42002
|
var Buffer = buffer.Buffer
|
|
@@ -42031,7 +42060,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
42031
42060
|
return buffer.SlowBuffer(size)
|
|
42032
42061
|
}
|
|
42033
42062
|
|
|
42034
|
-
},{"buffer":
|
|
42063
|
+
},{"buffer":91}],99:[function(require,module,exports){
|
|
42035
42064
|
/*!
|
|
42036
42065
|
* content-type
|
|
42037
42066
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
@@ -42255,7 +42284,7 @@ function ContentType (type) {
|
|
|
42255
42284
|
this.type = type
|
|
42256
42285
|
}
|
|
42257
42286
|
|
|
42258
|
-
},{}],
|
|
42287
|
+
},{}],100:[function(require,module,exports){
|
|
42259
42288
|
/*!
|
|
42260
42289
|
* cookies
|
|
42261
42290
|
* Copyright(c) 2014 Jed Schmidt, http://jed.is/
|
|
@@ -42481,7 +42510,7 @@ Cookies.Cookie = Cookie
|
|
|
42481
42510
|
|
|
42482
42511
|
module.exports = Cookies
|
|
42483
42512
|
|
|
42484
|
-
},{"depd":
|
|
42513
|
+
},{"depd":135,"http":423,"keygrip":230}],101:[function(require,module,exports){
|
|
42485
42514
|
(function (Buffer){(function (){
|
|
42486
42515
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
42487
42516
|
//
|
|
@@ -42592,7 +42621,7 @@ function objectToString(o) {
|
|
|
42592
42621
|
}
|
|
42593
42622
|
|
|
42594
42623
|
}).call(this)}).call(this,{"isBuffer":require("../../is-buffer/index.js")})
|
|
42595
|
-
},{"../../is-buffer/index.js":
|
|
42624
|
+
},{"../../is-buffer/index.js":218}],102:[function(require,module,exports){
|
|
42596
42625
|
(function (Buffer){(function (){
|
|
42597
42626
|
var elliptic = require('elliptic')
|
|
42598
42627
|
var BN = require('bn.js')
|
|
@@ -42720,9 +42749,9 @@ function formatReturnValue (bn, enc, len) {
|
|
|
42720
42749
|
}
|
|
42721
42750
|
|
|
42722
42751
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
42723
|
-
},{"bn.js":
|
|
42724
|
-
arguments[4][
|
|
42725
|
-
},{"buffer":
|
|
42752
|
+
},{"bn.js":103,"buffer":91,"elliptic":149}],103:[function(require,module,exports){
|
|
42753
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
42754
|
+
},{"buffer":55,"dup":27}],104:[function(require,module,exports){
|
|
42726
42755
|
'use strict'
|
|
42727
42756
|
var inherits = require('inherits')
|
|
42728
42757
|
var MD5 = require('md5.js')
|
|
@@ -42754,14 +42783,14 @@ module.exports = function createHash (alg) {
|
|
|
42754
42783
|
return new Hash(sha(alg))
|
|
42755
42784
|
}
|
|
42756
42785
|
|
|
42757
|
-
},{"cipher-base":
|
|
42786
|
+
},{"cipher-base":94,"inherits":210,"md5.js":258,"ripemd160":381,"sha.js":390}],105:[function(require,module,exports){
|
|
42758
42787
|
var MD5 = require('md5.js')
|
|
42759
42788
|
|
|
42760
42789
|
module.exports = function (buffer) {
|
|
42761
42790
|
return new MD5().update(buffer).digest()
|
|
42762
42791
|
}
|
|
42763
42792
|
|
|
42764
|
-
},{"md5.js":
|
|
42793
|
+
},{"md5.js":258}],106:[function(require,module,exports){
|
|
42765
42794
|
'use strict'
|
|
42766
42795
|
var inherits = require('inherits')
|
|
42767
42796
|
var Legacy = require('./legacy')
|
|
@@ -42825,7 +42854,7 @@ module.exports = function createHmac (alg, key) {
|
|
|
42825
42854
|
return new Hmac(alg, key)
|
|
42826
42855
|
}
|
|
42827
42856
|
|
|
42828
|
-
},{"./legacy":
|
|
42857
|
+
},{"./legacy":107,"cipher-base":94,"create-hash/md5":105,"inherits":210,"ripemd160":381,"safe-buffer":383,"sha.js":390}],107:[function(require,module,exports){
|
|
42829
42858
|
'use strict'
|
|
42830
42859
|
var inherits = require('inherits')
|
|
42831
42860
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -42873,7 +42902,7 @@ Hmac.prototype._final = function () {
|
|
|
42873
42902
|
}
|
|
42874
42903
|
module.exports = Hmac
|
|
42875
42904
|
|
|
42876
|
-
},{"cipher-base":
|
|
42905
|
+
},{"cipher-base":94,"inherits":210,"safe-buffer":383}],108:[function(require,module,exports){
|
|
42877
42906
|
'use strict'
|
|
42878
42907
|
|
|
42879
42908
|
exports.randomBytes = exports.rng = exports.pseudoRandomBytes = exports.prng = require('randombytes')
|
|
@@ -42972,7 +43001,7 @@ exports.constants = {
|
|
|
42972
43001
|
'POINT_CONVERSION_HYBRID': 6
|
|
42973
43002
|
}
|
|
42974
43003
|
|
|
42975
|
-
},{"browserify-cipher":
|
|
43004
|
+
},{"browserify-cipher":73,"browserify-sign":80,"browserify-sign/algos":77,"create-ecdh":102,"create-hash":104,"create-hmac":106,"diffie-hellman":143,"pbkdf2":315,"public-encrypt":352,"randombytes":364,"randomfill":365}],109:[function(require,module,exports){
|
|
42976
43005
|
;(function (root, factory, undef) {
|
|
42977
43006
|
if (typeof exports === "object") {
|
|
42978
43007
|
// CommonJS
|
|
@@ -43207,7 +43236,7 @@ exports.constants = {
|
|
|
43207
43236
|
return CryptoJS.AES;
|
|
43208
43237
|
|
|
43209
43238
|
}));
|
|
43210
|
-
},{"./cipher-core":
|
|
43239
|
+
},{"./cipher-core":110,"./core":111,"./enc-base64":112,"./evpkdf":114,"./md5":116}],110:[function(require,module,exports){
|
|
43211
43240
|
;(function (root, factory, undef) {
|
|
43212
43241
|
if (typeof exports === "object") {
|
|
43213
43242
|
// CommonJS
|
|
@@ -44098,7 +44127,7 @@ exports.constants = {
|
|
|
44098
44127
|
|
|
44099
44128
|
|
|
44100
44129
|
}));
|
|
44101
|
-
},{"./core":
|
|
44130
|
+
},{"./core":111,"./evpkdf":114}],111:[function(require,module,exports){
|
|
44102
44131
|
(function (global){(function (){
|
|
44103
44132
|
;(function (root, factory) {
|
|
44104
44133
|
if (typeof exports === "object") {
|
|
@@ -44908,7 +44937,7 @@ exports.constants = {
|
|
|
44908
44937
|
|
|
44909
44938
|
}));
|
|
44910
44939
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
44911
|
-
},{"crypto":
|
|
44940
|
+
},{"crypto":55}],112:[function(require,module,exports){
|
|
44912
44941
|
;(function (root, factory) {
|
|
44913
44942
|
if (typeof exports === "object") {
|
|
44914
44943
|
// CommonJS
|
|
@@ -45045,7 +45074,7 @@ exports.constants = {
|
|
|
45045
45074
|
return CryptoJS.enc.Base64;
|
|
45046
45075
|
|
|
45047
45076
|
}));
|
|
45048
|
-
},{"./core":
|
|
45077
|
+
},{"./core":111}],113:[function(require,module,exports){
|
|
45049
45078
|
;(function (root, factory) {
|
|
45050
45079
|
if (typeof exports === "object") {
|
|
45051
45080
|
// CommonJS
|
|
@@ -45064,7 +45093,7 @@ exports.constants = {
|
|
|
45064
45093
|
return CryptoJS.enc.Utf8;
|
|
45065
45094
|
|
|
45066
45095
|
}));
|
|
45067
|
-
},{"./core":
|
|
45096
|
+
},{"./core":111}],114:[function(require,module,exports){
|
|
45068
45097
|
;(function (root, factory, undef) {
|
|
45069
45098
|
if (typeof exports === "object") {
|
|
45070
45099
|
// CommonJS
|
|
@@ -45199,7 +45228,7 @@ exports.constants = {
|
|
|
45199
45228
|
return CryptoJS.EvpKDF;
|
|
45200
45229
|
|
|
45201
45230
|
}));
|
|
45202
|
-
},{"./core":
|
|
45231
|
+
},{"./core":111,"./hmac":115,"./sha1":117}],115:[function(require,module,exports){
|
|
45203
45232
|
;(function (root, factory) {
|
|
45204
45233
|
if (typeof exports === "object") {
|
|
45205
45234
|
// CommonJS
|
|
@@ -45343,7 +45372,7 @@ exports.constants = {
|
|
|
45343
45372
|
|
|
45344
45373
|
|
|
45345
45374
|
}));
|
|
45346
|
-
},{"./core":
|
|
45375
|
+
},{"./core":111}],116:[function(require,module,exports){
|
|
45347
45376
|
;(function (root, factory) {
|
|
45348
45377
|
if (typeof exports === "object") {
|
|
45349
45378
|
// CommonJS
|
|
@@ -45612,7 +45641,7 @@ exports.constants = {
|
|
|
45612
45641
|
return CryptoJS.MD5;
|
|
45613
45642
|
|
|
45614
45643
|
}));
|
|
45615
|
-
},{"./core":
|
|
45644
|
+
},{"./core":111}],117:[function(require,module,exports){
|
|
45616
45645
|
;(function (root, factory) {
|
|
45617
45646
|
if (typeof exports === "object") {
|
|
45618
45647
|
// CommonJS
|
|
@@ -45763,7 +45792,7 @@ exports.constants = {
|
|
|
45763
45792
|
return CryptoJS.SHA1;
|
|
45764
45793
|
|
|
45765
45794
|
}));
|
|
45766
|
-
},{"./core":
|
|
45795
|
+
},{"./core":111}],118:[function(require,module,exports){
|
|
45767
45796
|
;(function (root, factory) {
|
|
45768
45797
|
if (typeof exports === "object") {
|
|
45769
45798
|
// CommonJS
|
|
@@ -45963,7 +45992,7 @@ exports.constants = {
|
|
|
45963
45992
|
return CryptoJS.SHA256;
|
|
45964
45993
|
|
|
45965
45994
|
}));
|
|
45966
|
-
},{"./core":
|
|
45995
|
+
},{"./core":111}],119:[function(require,module,exports){
|
|
45967
45996
|
;(function (root, factory, undef) {
|
|
45968
45997
|
if (typeof exports === "object") {
|
|
45969
45998
|
// CommonJS
|
|
@@ -46290,7 +46319,7 @@ exports.constants = {
|
|
|
46290
46319
|
return CryptoJS.SHA512;
|
|
46291
46320
|
|
|
46292
46321
|
}));
|
|
46293
|
-
},{"./core":
|
|
46322
|
+
},{"./core":111,"./x64-core":120}],120:[function(require,module,exports){
|
|
46294
46323
|
;(function (root, factory) {
|
|
46295
46324
|
if (typeof exports === "object") {
|
|
46296
46325
|
// CommonJS
|
|
@@ -46595,7 +46624,7 @@ exports.constants = {
|
|
|
46595
46624
|
return CryptoJS;
|
|
46596
46625
|
|
|
46597
46626
|
}));
|
|
46598
|
-
},{"./core":
|
|
46627
|
+
},{"./core":111}],121:[function(require,module,exports){
|
|
46599
46628
|
(function (Buffer){(function (){
|
|
46600
46629
|
'use strict'
|
|
46601
46630
|
|
|
@@ -46787,7 +46816,7 @@ function levelIteratorToIterator (li) {
|
|
|
46787
46816
|
module.exports = LevelDatastore
|
|
46788
46817
|
|
|
46789
46818
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
46790
|
-
},{"buffer":
|
|
46819
|
+
},{"buffer":91,"interface-datastore":213,"level":252}],122:[function(require,module,exports){
|
|
46791
46820
|
(function (process){(function (){
|
|
46792
46821
|
/* eslint-env browser */
|
|
46793
46822
|
|
|
@@ -47050,7 +47079,7 @@ formatters.j = function (v) {
|
|
|
47050
47079
|
};
|
|
47051
47080
|
|
|
47052
47081
|
}).call(this)}).call(this,require('_process'))
|
|
47053
|
-
},{"./common":
|
|
47082
|
+
},{"./common":123,"_process":322}],123:[function(require,module,exports){
|
|
47054
47083
|
|
|
47055
47084
|
/**
|
|
47056
47085
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -47316,7 +47345,7 @@ function setup(env) {
|
|
|
47316
47345
|
|
|
47317
47346
|
module.exports = setup;
|
|
47318
47347
|
|
|
47319
|
-
},{"ms":
|
|
47348
|
+
},{"ms":267}],124:[function(require,module,exports){
|
|
47320
47349
|
var pSlice = Array.prototype.slice;
|
|
47321
47350
|
var objectKeys = require('./lib/keys.js');
|
|
47322
47351
|
var isArguments = require('./lib/is_arguments.js');
|
|
@@ -47412,7 +47441,7 @@ function objEquiv(a, b, opts) {
|
|
|
47412
47441
|
return typeof a === typeof b;
|
|
47413
47442
|
}
|
|
47414
47443
|
|
|
47415
|
-
},{"./lib/is_arguments.js":
|
|
47444
|
+
},{"./lib/is_arguments.js":125,"./lib/keys.js":126}],125:[function(require,module,exports){
|
|
47416
47445
|
var supportsArgumentsClass = (function(){
|
|
47417
47446
|
return Object.prototype.toString.call(arguments)
|
|
47418
47447
|
})() == '[object Arguments]';
|
|
@@ -47434,7 +47463,7 @@ function unsupported(object){
|
|
|
47434
47463
|
false;
|
|
47435
47464
|
};
|
|
47436
47465
|
|
|
47437
|
-
},{}],
|
|
47466
|
+
},{}],126:[function(require,module,exports){
|
|
47438
47467
|
exports = module.exports = typeof Object.keys === 'function'
|
|
47439
47468
|
? Object.keys : shim;
|
|
47440
47469
|
|
|
@@ -47445,7 +47474,7 @@ function shim (obj) {
|
|
|
47445
47474
|
return keys;
|
|
47446
47475
|
}
|
|
47447
47476
|
|
|
47448
|
-
},{}],
|
|
47477
|
+
},{}],127:[function(require,module,exports){
|
|
47449
47478
|
var AbstractIterator = require('abstract-leveldown').AbstractIterator
|
|
47450
47479
|
var inherits = require('inherits')
|
|
47451
47480
|
|
|
@@ -47484,7 +47513,7 @@ DeferredIterator.prototype.seek = function () {
|
|
|
47484
47513
|
|
|
47485
47514
|
module.exports = DeferredIterator
|
|
47486
47515
|
|
|
47487
|
-
},{"abstract-leveldown":
|
|
47516
|
+
},{"abstract-leveldown":132,"inherits":210}],128:[function(require,module,exports){
|
|
47488
47517
|
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN
|
|
47489
47518
|
var inherits = require('inherits')
|
|
47490
47519
|
var DeferredIterator = require('./deferred-iterator')
|
|
@@ -47583,7 +47612,7 @@ DeferredLevelDOWN.prototype._serializeValue = function (value) {
|
|
|
47583
47612
|
module.exports = DeferredLevelDOWN
|
|
47584
47613
|
module.exports.DeferredIterator = DeferredIterator
|
|
47585
47614
|
|
|
47586
|
-
},{"./deferred-iterator":
|
|
47615
|
+
},{"./deferred-iterator":127,"abstract-leveldown":132,"inherits":210}],129:[function(require,module,exports){
|
|
47587
47616
|
var nextTick = require('./next-tick')
|
|
47588
47617
|
|
|
47589
47618
|
function AbstractChainedBatch (db) {
|
|
@@ -47671,7 +47700,7 @@ AbstractChainedBatch.prototype._nextTick = nextTick
|
|
|
47671
47700
|
|
|
47672
47701
|
module.exports = AbstractChainedBatch
|
|
47673
47702
|
|
|
47674
|
-
},{"./next-tick":
|
|
47703
|
+
},{"./next-tick":133}],130:[function(require,module,exports){
|
|
47675
47704
|
var nextTick = require('./next-tick')
|
|
47676
47705
|
|
|
47677
47706
|
function AbstractIterator (db) {
|
|
@@ -47750,7 +47779,7 @@ AbstractIterator.prototype._nextTick = nextTick
|
|
|
47750
47779
|
|
|
47751
47780
|
module.exports = AbstractIterator
|
|
47752
47781
|
|
|
47753
|
-
},{"./next-tick":
|
|
47782
|
+
},{"./next-tick":133}],131:[function(require,module,exports){
|
|
47754
47783
|
var xtend = require('xtend')
|
|
47755
47784
|
var supports = require('level-supports')
|
|
47756
47785
|
var Buffer = require('buffer').Buffer
|
|
@@ -48072,12 +48101,12 @@ AbstractLevelDOWN.prototype._nextTick = nextTick
|
|
|
48072
48101
|
|
|
48073
48102
|
module.exports = AbstractLevelDOWN
|
|
48074
48103
|
|
|
48075
|
-
},{"./abstract-chained-batch":
|
|
48076
|
-
arguments[4][
|
|
48077
|
-
},{"./abstract-chained-batch":
|
|
48104
|
+
},{"./abstract-chained-batch":129,"./abstract-iterator":130,"./next-tick":133,"buffer":91,"level-supports":251,"xtend":458}],132:[function(require,module,exports){
|
|
48105
|
+
arguments[4][8][0].apply(exports,arguments)
|
|
48106
|
+
},{"./abstract-chained-batch":129,"./abstract-iterator":130,"./abstract-leveldown":131,"dup":8}],133:[function(require,module,exports){
|
|
48078
48107
|
module.exports = require('immediate')
|
|
48079
48108
|
|
|
48080
|
-
},{"immediate":
|
|
48109
|
+
},{"immediate":204}],134:[function(require,module,exports){
|
|
48081
48110
|
|
|
48082
48111
|
/**
|
|
48083
48112
|
* Expose `Delegator`.
|
|
@@ -48200,7 +48229,7 @@ Delegator.prototype.fluent = function (name) {
|
|
|
48200
48229
|
return this;
|
|
48201
48230
|
};
|
|
48202
48231
|
|
|
48203
|
-
},{}],
|
|
48232
|
+
},{}],135:[function(require,module,exports){
|
|
48204
48233
|
/*!
|
|
48205
48234
|
* depd
|
|
48206
48235
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
@@ -48279,7 +48308,7 @@ function wrapproperty (obj, prop, message) {
|
|
|
48279
48308
|
}
|
|
48280
48309
|
}
|
|
48281
48310
|
|
|
48282
|
-
},{}],
|
|
48311
|
+
},{}],136:[function(require,module,exports){
|
|
48283
48312
|
'use strict';
|
|
48284
48313
|
|
|
48285
48314
|
exports.utils = require('./des/utils');
|
|
@@ -48288,7 +48317,7 @@ exports.DES = require('./des/des');
|
|
|
48288
48317
|
exports.CBC = require('./des/cbc');
|
|
48289
48318
|
exports.EDE = require('./des/ede');
|
|
48290
48319
|
|
|
48291
|
-
},{"./des/cbc":
|
|
48320
|
+
},{"./des/cbc":137,"./des/cipher":138,"./des/des":139,"./des/ede":140,"./des/utils":141}],137:[function(require,module,exports){
|
|
48292
48321
|
'use strict';
|
|
48293
48322
|
|
|
48294
48323
|
var assert = require('minimalistic-assert');
|
|
@@ -48355,7 +48384,7 @@ proto._update = function _update(inp, inOff, out, outOff) {
|
|
|
48355
48384
|
}
|
|
48356
48385
|
};
|
|
48357
48386
|
|
|
48358
|
-
},{"inherits":
|
|
48387
|
+
},{"inherits":210,"minimalistic-assert":265}],138:[function(require,module,exports){
|
|
48359
48388
|
'use strict';
|
|
48360
48389
|
|
|
48361
48390
|
var assert = require('minimalistic-assert');
|
|
@@ -48498,7 +48527,7 @@ Cipher.prototype._finalDecrypt = function _finalDecrypt() {
|
|
|
48498
48527
|
return this._unpad(out);
|
|
48499
48528
|
};
|
|
48500
48529
|
|
|
48501
|
-
},{"minimalistic-assert":
|
|
48530
|
+
},{"minimalistic-assert":265}],139:[function(require,module,exports){
|
|
48502
48531
|
'use strict';
|
|
48503
48532
|
|
|
48504
48533
|
var assert = require('minimalistic-assert');
|
|
@@ -48642,7 +48671,7 @@ DES.prototype._decrypt = function _decrypt(state, lStart, rStart, out, off) {
|
|
|
48642
48671
|
utils.rip(l, r, out, off);
|
|
48643
48672
|
};
|
|
48644
48673
|
|
|
48645
|
-
},{"./cipher":
|
|
48674
|
+
},{"./cipher":138,"./utils":141,"inherits":210,"minimalistic-assert":265}],140:[function(require,module,exports){
|
|
48646
48675
|
'use strict';
|
|
48647
48676
|
|
|
48648
48677
|
var assert = require('minimalistic-assert');
|
|
@@ -48698,7 +48727,7 @@ EDE.prototype._update = function _update(inp, inOff, out, outOff) {
|
|
|
48698
48727
|
EDE.prototype._pad = DES.prototype._pad;
|
|
48699
48728
|
EDE.prototype._unpad = DES.prototype._unpad;
|
|
48700
48729
|
|
|
48701
|
-
},{"./cipher":
|
|
48730
|
+
},{"./cipher":138,"./des":139,"inherits":210,"minimalistic-assert":265}],141:[function(require,module,exports){
|
|
48702
48731
|
'use strict';
|
|
48703
48732
|
|
|
48704
48733
|
exports.readUInt32BE = function readUInt32BE(bytes, off) {
|
|
@@ -48956,7 +48985,7 @@ exports.padSplit = function padSplit(num, size, group) {
|
|
|
48956
48985
|
return out.join(' ');
|
|
48957
48986
|
};
|
|
48958
48987
|
|
|
48959
|
-
},{}],
|
|
48988
|
+
},{}],142:[function(require,module,exports){
|
|
48960
48989
|
/*!
|
|
48961
48990
|
* destroy
|
|
48962
48991
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -49033,7 +49062,7 @@ function onOpenClose() {
|
|
|
49033
49062
|
}
|
|
49034
49063
|
}
|
|
49035
49064
|
|
|
49036
|
-
},{"fs":
|
|
49065
|
+
},{"fs":83,"stream":407}],143:[function(require,module,exports){
|
|
49037
49066
|
(function (Buffer){(function (){
|
|
49038
49067
|
var generatePrime = require('./lib/generatePrime')
|
|
49039
49068
|
var primes = require('./lib/primes.json')
|
|
@@ -49079,7 +49108,7 @@ exports.DiffieHellmanGroup = exports.createDiffieHellmanGroup = exports.getDiffi
|
|
|
49079
49108
|
exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman
|
|
49080
49109
|
|
|
49081
49110
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
49082
|
-
},{"./lib/dh":
|
|
49111
|
+
},{"./lib/dh":144,"./lib/generatePrime":145,"./lib/primes.json":146,"buffer":91}],144:[function(require,module,exports){
|
|
49083
49112
|
(function (Buffer){(function (){
|
|
49084
49113
|
var BN = require('bn.js');
|
|
49085
49114
|
var MillerRabin = require('miller-rabin');
|
|
@@ -49247,7 +49276,7 @@ function formatReturnValue(bn, enc) {
|
|
|
49247
49276
|
}
|
|
49248
49277
|
|
|
49249
49278
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
49250
|
-
},{"./generatePrime":
|
|
49279
|
+
},{"./generatePrime":145,"bn.js":147,"buffer":91,"miller-rabin":260,"randombytes":364}],145:[function(require,module,exports){
|
|
49251
49280
|
var randomBytes = require('randombytes');
|
|
49252
49281
|
module.exports = findPrime;
|
|
49253
49282
|
findPrime.simpleSieve = simpleSieve;
|
|
@@ -49354,7 +49383,7 @@ function findPrime(bits, gen) {
|
|
|
49354
49383
|
|
|
49355
49384
|
}
|
|
49356
49385
|
|
|
49357
|
-
},{"bn.js":
|
|
49386
|
+
},{"bn.js":147,"miller-rabin":260,"randombytes":364}],146:[function(require,module,exports){
|
|
49358
49387
|
module.exports={
|
|
49359
49388
|
"modp1": {
|
|
49360
49389
|
"gen": "02",
|
|
@@ -49389,9 +49418,9 @@ module.exports={
|
|
|
49389
49418
|
"prime": "ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"
|
|
49390
49419
|
}
|
|
49391
49420
|
}
|
|
49392
|
-
},{}],
|
|
49393
|
-
arguments[4][
|
|
49394
|
-
},{"buffer":
|
|
49421
|
+
},{}],147:[function(require,module,exports){
|
|
49422
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
49423
|
+
},{"buffer":55,"dup":27}],148:[function(require,module,exports){
|
|
49395
49424
|
/*!
|
|
49396
49425
|
* ee-first
|
|
49397
49426
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -49488,7 +49517,7 @@ function listener(event, done) {
|
|
|
49488
49517
|
}
|
|
49489
49518
|
}
|
|
49490
49519
|
|
|
49491
|
-
},{}],
|
|
49520
|
+
},{}],149:[function(require,module,exports){
|
|
49492
49521
|
'use strict';
|
|
49493
49522
|
|
|
49494
49523
|
var elliptic = exports;
|
|
@@ -49503,7 +49532,7 @@ elliptic.curves = require('./elliptic/curves');
|
|
|
49503
49532
|
elliptic.ec = require('./elliptic/ec');
|
|
49504
49533
|
elliptic.eddsa = require('./elliptic/eddsa');
|
|
49505
49534
|
|
|
49506
|
-
},{"../package.json":
|
|
49535
|
+
},{"../package.json":165,"./elliptic/curve":152,"./elliptic/curves":155,"./elliptic/ec":156,"./elliptic/eddsa":159,"./elliptic/utils":163,"brorand":54}],150:[function(require,module,exports){
|
|
49507
49536
|
'use strict';
|
|
49508
49537
|
|
|
49509
49538
|
var BN = require('bn.js');
|
|
@@ -49881,7 +49910,7 @@ BasePoint.prototype.dblp = function dblp(k) {
|
|
|
49881
49910
|
return r;
|
|
49882
49911
|
};
|
|
49883
49912
|
|
|
49884
|
-
},{"../utils":
|
|
49913
|
+
},{"../utils":163,"bn.js":164}],151:[function(require,module,exports){
|
|
49885
49914
|
'use strict';
|
|
49886
49915
|
|
|
49887
49916
|
var utils = require('../utils');
|
|
@@ -50315,7 +50344,7 @@ Point.prototype.eqXToP = function eqXToP(x) {
|
|
|
50315
50344
|
Point.prototype.toP = Point.prototype.normalize;
|
|
50316
50345
|
Point.prototype.mixedAdd = Point.prototype.add;
|
|
50317
50346
|
|
|
50318
|
-
},{"../utils":
|
|
50347
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],152:[function(require,module,exports){
|
|
50319
50348
|
'use strict';
|
|
50320
50349
|
|
|
50321
50350
|
var curve = exports;
|
|
@@ -50325,7 +50354,7 @@ curve.short = require('./short');
|
|
|
50325
50354
|
curve.mont = require('./mont');
|
|
50326
50355
|
curve.edwards = require('./edwards');
|
|
50327
50356
|
|
|
50328
|
-
},{"./base":
|
|
50357
|
+
},{"./base":150,"./edwards":151,"./mont":153,"./short":154}],153:[function(require,module,exports){
|
|
50329
50358
|
'use strict';
|
|
50330
50359
|
|
|
50331
50360
|
var BN = require('bn.js');
|
|
@@ -50505,7 +50534,7 @@ Point.prototype.getX = function getX() {
|
|
|
50505
50534
|
return this.x.fromRed();
|
|
50506
50535
|
};
|
|
50507
50536
|
|
|
50508
|
-
},{"../utils":
|
|
50537
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],154:[function(require,module,exports){
|
|
50509
50538
|
'use strict';
|
|
50510
50539
|
|
|
50511
50540
|
var utils = require('../utils');
|
|
@@ -51444,7 +51473,7 @@ JPoint.prototype.isInfinity = function isInfinity() {
|
|
|
51444
51473
|
return this.z.cmpn(0) === 0;
|
|
51445
51474
|
};
|
|
51446
51475
|
|
|
51447
|
-
},{"../utils":
|
|
51476
|
+
},{"../utils":163,"./base":150,"bn.js":164,"inherits":210}],155:[function(require,module,exports){
|
|
51448
51477
|
'use strict';
|
|
51449
51478
|
|
|
51450
51479
|
var curves = exports;
|
|
@@ -51652,7 +51681,7 @@ defineCurve('secp256k1', {
|
|
|
51652
51681
|
]
|
|
51653
51682
|
});
|
|
51654
51683
|
|
|
51655
|
-
},{"./curve":
|
|
51684
|
+
},{"./curve":152,"./precomputed/secp256k1":162,"./utils":163,"hash.js":183}],156:[function(require,module,exports){
|
|
51656
51685
|
'use strict';
|
|
51657
51686
|
|
|
51658
51687
|
var BN = require('bn.js');
|
|
@@ -51895,7 +51924,7 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) {
|
|
|
51895
51924
|
throw new Error('Unable to find valid recovery factor');
|
|
51896
51925
|
};
|
|
51897
51926
|
|
|
51898
|
-
},{"../curves":
|
|
51927
|
+
},{"../curves":155,"../utils":163,"./key":157,"./signature":158,"bn.js":164,"brorand":54,"hmac-drbg":195}],157:[function(require,module,exports){
|
|
51899
51928
|
'use strict';
|
|
51900
51929
|
|
|
51901
51930
|
var BN = require('bn.js');
|
|
@@ -52015,7 +52044,7 @@ KeyPair.prototype.inspect = function inspect() {
|
|
|
52015
52044
|
' pub: ' + (this.pub && this.pub.inspect()) + ' >';
|
|
52016
52045
|
};
|
|
52017
52046
|
|
|
52018
|
-
},{"../utils":
|
|
52047
|
+
},{"../utils":163,"bn.js":164}],158:[function(require,module,exports){
|
|
52019
52048
|
'use strict';
|
|
52020
52049
|
|
|
52021
52050
|
var BN = require('bn.js');
|
|
@@ -52183,7 +52212,7 @@ Signature.prototype.toDER = function toDER(enc) {
|
|
|
52183
52212
|
return utils.encode(res, enc);
|
|
52184
52213
|
};
|
|
52185
52214
|
|
|
52186
|
-
},{"../utils":
|
|
52215
|
+
},{"../utils":163,"bn.js":164}],159:[function(require,module,exports){
|
|
52187
52216
|
'use strict';
|
|
52188
52217
|
|
|
52189
52218
|
var hash = require('hash.js');
|
|
@@ -52303,7 +52332,7 @@ EDDSA.prototype.isPoint = function isPoint(val) {
|
|
|
52303
52332
|
return val instanceof this.pointClass;
|
|
52304
52333
|
};
|
|
52305
52334
|
|
|
52306
|
-
},{"../curves":
|
|
52335
|
+
},{"../curves":155,"../utils":163,"./key":160,"./signature":161,"hash.js":183}],160:[function(require,module,exports){
|
|
52307
52336
|
'use strict';
|
|
52308
52337
|
|
|
52309
52338
|
var utils = require('../utils');
|
|
@@ -52400,7 +52429,7 @@ KeyPair.prototype.getPublic = function getPublic(enc) {
|
|
|
52400
52429
|
|
|
52401
52430
|
module.exports = KeyPair;
|
|
52402
52431
|
|
|
52403
|
-
},{"../utils":
|
|
52432
|
+
},{"../utils":163}],161:[function(require,module,exports){
|
|
52404
52433
|
'use strict';
|
|
52405
52434
|
|
|
52406
52435
|
var BN = require('bn.js');
|
|
@@ -52467,7 +52496,7 @@ Signature.prototype.toHex = function toHex() {
|
|
|
52467
52496
|
|
|
52468
52497
|
module.exports = Signature;
|
|
52469
52498
|
|
|
52470
|
-
},{"../utils":
|
|
52499
|
+
},{"../utils":163,"bn.js":164}],162:[function(require,module,exports){
|
|
52471
52500
|
module.exports = {
|
|
52472
52501
|
doubles: {
|
|
52473
52502
|
step: 4,
|
|
@@ -53249,7 +53278,7 @@ module.exports = {
|
|
|
53249
53278
|
}
|
|
53250
53279
|
};
|
|
53251
53280
|
|
|
53252
|
-
},{}],
|
|
53281
|
+
},{}],163:[function(require,module,exports){
|
|
53253
53282
|
'use strict';
|
|
53254
53283
|
|
|
53255
53284
|
var utils = exports;
|
|
@@ -53370,7 +53399,7 @@ function intFromLE(bytes) {
|
|
|
53370
53399
|
utils.intFromLE = intFromLE;
|
|
53371
53400
|
|
|
53372
53401
|
|
|
53373
|
-
},{"bn.js":
|
|
53402
|
+
},{"bn.js":164,"minimalistic-assert":265,"minimalistic-crypto-utils":266}],164:[function(require,module,exports){
|
|
53374
53403
|
(function (module, exports) {
|
|
53375
53404
|
'use strict';
|
|
53376
53405
|
|
|
@@ -56805,7 +56834,7 @@ utils.intFromLE = intFromLE;
|
|
|
56805
56834
|
};
|
|
56806
56835
|
})(typeof module === 'undefined' || module, this);
|
|
56807
56836
|
|
|
56808
|
-
},{"buffer":
|
|
56837
|
+
},{"buffer":55}],165:[function(require,module,exports){
|
|
56809
56838
|
module.exports={
|
|
56810
56839
|
"_from": "elliptic@^6.5.3",
|
|
56811
56840
|
"_id": "elliptic@6.5.3",
|
|
@@ -56894,7 +56923,7 @@ module.exports={
|
|
|
56894
56923
|
"version": "6.5.3"
|
|
56895
56924
|
}
|
|
56896
56925
|
|
|
56897
|
-
},{}],
|
|
56926
|
+
},{}],166:[function(require,module,exports){
|
|
56898
56927
|
/*!
|
|
56899
56928
|
* encodeurl
|
|
56900
56929
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
@@ -56956,7 +56985,7 @@ function encodeUrl (url) {
|
|
|
56956
56985
|
.replace(ENCODE_CHARS_REGEXP, encodeURI)
|
|
56957
56986
|
}
|
|
56958
56987
|
|
|
56959
|
-
},{}],
|
|
56988
|
+
},{}],167:[function(require,module,exports){
|
|
56960
56989
|
'use strict'
|
|
56961
56990
|
|
|
56962
56991
|
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN
|
|
@@ -57136,17 +57165,17 @@ Batch.prototype._write = function (opts, cb) {
|
|
|
57136
57165
|
this.batch.write(opts, cb)
|
|
57137
57166
|
}
|
|
57138
57167
|
|
|
57139
|
-
},{"abstract-leveldown":
|
|
57140
|
-
arguments[4][128][0].apply(exports,arguments)
|
|
57141
|
-
},{"./next-tick":171,"dup":128}],168:[function(require,module,exports){
|
|
57168
|
+
},{"abstract-leveldown":171,"inherits":210,"level-codec":241,"level-errors":243}],168:[function(require,module,exports){
|
|
57142
57169
|
arguments[4][129][0].apply(exports,arguments)
|
|
57143
|
-
},{"./next-tick":
|
|
57170
|
+
},{"./next-tick":172,"dup":129}],169:[function(require,module,exports){
|
|
57144
57171
|
arguments[4][130][0].apply(exports,arguments)
|
|
57145
|
-
},{"./
|
|
57146
|
-
arguments[4][
|
|
57147
|
-
},{"./abstract-chained-batch":
|
|
57148
|
-
arguments[4][
|
|
57149
|
-
},{"
|
|
57172
|
+
},{"./next-tick":172,"dup":130}],170:[function(require,module,exports){
|
|
57173
|
+
arguments[4][131][0].apply(exports,arguments)
|
|
57174
|
+
},{"./abstract-chained-batch":168,"./abstract-iterator":169,"./next-tick":172,"buffer":91,"dup":131,"level-supports":251,"xtend":458}],171:[function(require,module,exports){
|
|
57175
|
+
arguments[4][8][0].apply(exports,arguments)
|
|
57176
|
+
},{"./abstract-chained-batch":168,"./abstract-iterator":169,"./abstract-leveldown":170,"dup":8}],172:[function(require,module,exports){
|
|
57177
|
+
arguments[4][133][0].apply(exports,arguments)
|
|
57178
|
+
},{"dup":133,"immediate":204}],173:[function(require,module,exports){
|
|
57150
57179
|
'use strict';
|
|
57151
57180
|
|
|
57152
57181
|
function assign(obj, props) {
|
|
@@ -57195,7 +57224,7 @@ function createError(err, code, props) {
|
|
|
57195
57224
|
|
|
57196
57225
|
module.exports = createError;
|
|
57197
57226
|
|
|
57198
|
-
},{}],
|
|
57227
|
+
},{}],174:[function(require,module,exports){
|
|
57199
57228
|
var prr = require('prr')
|
|
57200
57229
|
|
|
57201
57230
|
function init (type, message, cause) {
|
|
@@ -57254,7 +57283,7 @@ module.exports = function (errno) {
|
|
|
57254
57283
|
}
|
|
57255
57284
|
}
|
|
57256
57285
|
|
|
57257
|
-
},{"prr":
|
|
57286
|
+
},{"prr":351}],175:[function(require,module,exports){
|
|
57258
57287
|
var all = module.exports.all = [
|
|
57259
57288
|
{
|
|
57260
57289
|
errno: -2,
|
|
@@ -57569,7 +57598,7 @@ all.forEach(function (error) {
|
|
|
57569
57598
|
module.exports.custom = require('./custom')(module.exports)
|
|
57570
57599
|
module.exports.create = module.exports.custom.createError
|
|
57571
57600
|
|
|
57572
|
-
},{"./custom":
|
|
57601
|
+
},{"./custom":174}],176:[function(require,module,exports){
|
|
57573
57602
|
var naiveFallback = function () {
|
|
57574
57603
|
if (typeof self === "object" && self) return self;
|
|
57575
57604
|
if (typeof window === "object" && window) return window;
|
|
@@ -57606,7 +57635,7 @@ module.exports = (function () {
|
|
|
57606
57635
|
}
|
|
57607
57636
|
})();
|
|
57608
57637
|
|
|
57609
|
-
},{}],
|
|
57638
|
+
},{}],177:[function(require,module,exports){
|
|
57610
57639
|
/*!
|
|
57611
57640
|
* escape-html
|
|
57612
57641
|
* Copyright(c) 2012-2013 TJ Holowaychuk
|
|
@@ -57686,7 +57715,7 @@ function escapeHtml(string) {
|
|
|
57686
57715
|
: html;
|
|
57687
57716
|
}
|
|
57688
57717
|
|
|
57689
|
-
},{}],
|
|
57718
|
+
},{}],178:[function(require,module,exports){
|
|
57690
57719
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
57691
57720
|
//
|
|
57692
57721
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -58211,7 +58240,7 @@ function functionBindPolyfill(context) {
|
|
|
58211
58240
|
};
|
|
58212
58241
|
}
|
|
58213
58242
|
|
|
58214
|
-
},{}],
|
|
58243
|
+
},{}],179:[function(require,module,exports){
|
|
58215
58244
|
var Buffer = require('safe-buffer').Buffer
|
|
58216
58245
|
var MD5 = require('md5.js')
|
|
58217
58246
|
|
|
@@ -58258,7 +58287,7 @@ function EVP_BytesToKey (password, salt, keyBits, ivLen) {
|
|
|
58258
58287
|
|
|
58259
58288
|
module.exports = EVP_BytesToKey
|
|
58260
58289
|
|
|
58261
|
-
},{"md5.js":
|
|
58290
|
+
},{"md5.js":258,"safe-buffer":383}],180:[function(require,module,exports){
|
|
58262
58291
|
/*!
|
|
58263
58292
|
* fresh
|
|
58264
58293
|
* Copyright(c) 2012 TJ Holowaychuk
|
|
@@ -58397,7 +58426,7 @@ function parseTokenList (str) {
|
|
|
58397
58426
|
return list
|
|
58398
58427
|
}
|
|
58399
58428
|
|
|
58400
|
-
},{}],
|
|
58429
|
+
},{}],181:[function(require,module,exports){
|
|
58401
58430
|
// originally pulled out of simple-peer
|
|
58402
58431
|
|
|
58403
58432
|
module.exports = function getBrowserRTC () {
|
|
@@ -58414,7 +58443,7 @@ module.exports = function getBrowserRTC () {
|
|
|
58414
58443
|
return wrtc
|
|
58415
58444
|
}
|
|
58416
58445
|
|
|
58417
|
-
},{}],
|
|
58446
|
+
},{}],182:[function(require,module,exports){
|
|
58418
58447
|
'use strict'
|
|
58419
58448
|
var Buffer = require('safe-buffer').Buffer
|
|
58420
58449
|
var Transform = require('readable-stream').Transform
|
|
@@ -58511,7 +58540,7 @@ HashBase.prototype._digest = function () {
|
|
|
58511
58540
|
|
|
58512
58541
|
module.exports = HashBase
|
|
58513
58542
|
|
|
58514
|
-
},{"inherits":
|
|
58543
|
+
},{"inherits":210,"readable-stream":380,"safe-buffer":383}],183:[function(require,module,exports){
|
|
58515
58544
|
var hash = exports;
|
|
58516
58545
|
|
|
58517
58546
|
hash.utils = require('./hash/utils');
|
|
@@ -58528,7 +58557,7 @@ hash.sha384 = hash.sha.sha384;
|
|
|
58528
58557
|
hash.sha512 = hash.sha.sha512;
|
|
58529
58558
|
hash.ripemd160 = hash.ripemd.ripemd160;
|
|
58530
58559
|
|
|
58531
|
-
},{"./hash/common":
|
|
58560
|
+
},{"./hash/common":184,"./hash/hmac":185,"./hash/ripemd":186,"./hash/sha":187,"./hash/utils":194}],184:[function(require,module,exports){
|
|
58532
58561
|
'use strict';
|
|
58533
58562
|
|
|
58534
58563
|
var utils = require('./utils');
|
|
@@ -58622,7 +58651,7 @@ BlockHash.prototype._pad = function pad() {
|
|
|
58622
58651
|
return res;
|
|
58623
58652
|
};
|
|
58624
58653
|
|
|
58625
|
-
},{"./utils":
|
|
58654
|
+
},{"./utils":194,"minimalistic-assert":265}],185:[function(require,module,exports){
|
|
58626
58655
|
'use strict';
|
|
58627
58656
|
|
|
58628
58657
|
var utils = require('./utils');
|
|
@@ -58671,7 +58700,7 @@ Hmac.prototype.digest = function digest(enc) {
|
|
|
58671
58700
|
return this.outer.digest(enc);
|
|
58672
58701
|
};
|
|
58673
58702
|
|
|
58674
|
-
},{"./utils":
|
|
58703
|
+
},{"./utils":194,"minimalistic-assert":265}],186:[function(require,module,exports){
|
|
58675
58704
|
'use strict';
|
|
58676
58705
|
|
|
58677
58706
|
var utils = require('./utils');
|
|
@@ -58819,7 +58848,7 @@ var sh = [
|
|
|
58819
58848
|
8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11
|
|
58820
58849
|
];
|
|
58821
58850
|
|
|
58822
|
-
},{"./common":
|
|
58851
|
+
},{"./common":184,"./utils":194}],187:[function(require,module,exports){
|
|
58823
58852
|
'use strict';
|
|
58824
58853
|
|
|
58825
58854
|
exports.sha1 = require('./sha/1');
|
|
@@ -58828,7 +58857,7 @@ exports.sha256 = require('./sha/256');
|
|
|
58828
58857
|
exports.sha384 = require('./sha/384');
|
|
58829
58858
|
exports.sha512 = require('./sha/512');
|
|
58830
58859
|
|
|
58831
|
-
},{"./sha/1":
|
|
58860
|
+
},{"./sha/1":188,"./sha/224":189,"./sha/256":190,"./sha/384":191,"./sha/512":192}],188:[function(require,module,exports){
|
|
58832
58861
|
'use strict';
|
|
58833
58862
|
|
|
58834
58863
|
var utils = require('../utils');
|
|
@@ -58904,7 +58933,7 @@ SHA1.prototype._digest = function digest(enc) {
|
|
|
58904
58933
|
return utils.split32(this.h, 'big');
|
|
58905
58934
|
};
|
|
58906
58935
|
|
|
58907
|
-
},{"../common":
|
|
58936
|
+
},{"../common":184,"../utils":194,"./common":193}],189:[function(require,module,exports){
|
|
58908
58937
|
'use strict';
|
|
58909
58938
|
|
|
58910
58939
|
var utils = require('../utils');
|
|
@@ -58936,7 +58965,7 @@ SHA224.prototype._digest = function digest(enc) {
|
|
|
58936
58965
|
};
|
|
58937
58966
|
|
|
58938
58967
|
|
|
58939
|
-
},{"../utils":
|
|
58968
|
+
},{"../utils":194,"./256":190}],190:[function(require,module,exports){
|
|
58940
58969
|
'use strict';
|
|
58941
58970
|
|
|
58942
58971
|
var utils = require('../utils');
|
|
@@ -59043,7 +59072,7 @@ SHA256.prototype._digest = function digest(enc) {
|
|
|
59043
59072
|
return utils.split32(this.h, 'big');
|
|
59044
59073
|
};
|
|
59045
59074
|
|
|
59046
|
-
},{"../common":
|
|
59075
|
+
},{"../common":184,"../utils":194,"./common":193,"minimalistic-assert":265}],191:[function(require,module,exports){
|
|
59047
59076
|
'use strict';
|
|
59048
59077
|
|
|
59049
59078
|
var utils = require('../utils');
|
|
@@ -59080,7 +59109,7 @@ SHA384.prototype._digest = function digest(enc) {
|
|
|
59080
59109
|
return utils.split32(this.h.slice(0, 12), 'big');
|
|
59081
59110
|
};
|
|
59082
59111
|
|
|
59083
|
-
},{"../utils":
|
|
59112
|
+
},{"../utils":194,"./512":192}],192:[function(require,module,exports){
|
|
59084
59113
|
'use strict';
|
|
59085
59114
|
|
|
59086
59115
|
var utils = require('../utils');
|
|
@@ -59412,7 +59441,7 @@ function g1_512_lo(xh, xl) {
|
|
|
59412
59441
|
return r;
|
|
59413
59442
|
}
|
|
59414
59443
|
|
|
59415
|
-
},{"../common":
|
|
59444
|
+
},{"../common":184,"../utils":194,"minimalistic-assert":265}],193:[function(require,module,exports){
|
|
59416
59445
|
'use strict';
|
|
59417
59446
|
|
|
59418
59447
|
var utils = require('../utils');
|
|
@@ -59463,7 +59492,7 @@ function g1_256(x) {
|
|
|
59463
59492
|
}
|
|
59464
59493
|
exports.g1_256 = g1_256;
|
|
59465
59494
|
|
|
59466
|
-
},{"../utils":
|
|
59495
|
+
},{"../utils":194}],194:[function(require,module,exports){
|
|
59467
59496
|
'use strict';
|
|
59468
59497
|
|
|
59469
59498
|
var assert = require('minimalistic-assert');
|
|
@@ -59743,7 +59772,7 @@ function shr64_lo(ah, al, num) {
|
|
|
59743
59772
|
}
|
|
59744
59773
|
exports.shr64_lo = shr64_lo;
|
|
59745
59774
|
|
|
59746
|
-
},{"inherits":
|
|
59775
|
+
},{"inherits":210,"minimalistic-assert":265}],195:[function(require,module,exports){
|
|
59747
59776
|
'use strict';
|
|
59748
59777
|
|
|
59749
59778
|
var hash = require('hash.js');
|
|
@@ -59858,7 +59887,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) {
|
|
|
59858
59887
|
return utils.encode(res, enc);
|
|
59859
59888
|
};
|
|
59860
59889
|
|
|
59861
|
-
},{"hash.js":
|
|
59890
|
+
},{"hash.js":183,"minimalistic-assert":265,"minimalistic-crypto-utils":266}],196:[function(require,module,exports){
|
|
59862
59891
|
var createError = require('http-errors')
|
|
59863
59892
|
var eql = require('deep-equal')
|
|
59864
59893
|
|
|
@@ -59897,9 +59926,9 @@ assert.notDeepEqual = function (a, b, status, msg, opts) {
|
|
|
59897
59926
|
assert(!eql(a, b), status, msg, opts)
|
|
59898
59927
|
}
|
|
59899
59928
|
|
|
59900
|
-
},{"deep-equal":
|
|
59901
|
-
arguments[4][
|
|
59902
|
-
},{"dup":
|
|
59929
|
+
},{"deep-equal":124,"http-errors":198}],197:[function(require,module,exports){
|
|
59930
|
+
arguments[4][135][0].apply(exports,arguments)
|
|
59931
|
+
},{"dup":135}],198:[function(require,module,exports){
|
|
59903
59932
|
/*!
|
|
59904
59933
|
* http-errors
|
|
59905
59934
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -60167,7 +60196,7 @@ function populateConstructorExports (exports, codes, HttpError) {
|
|
|
60167
60196
|
'"I\'mateapot"; use "ImATeapot" instead')
|
|
60168
60197
|
}
|
|
60169
60198
|
|
|
60170
|
-
},{"depd":
|
|
60199
|
+
},{"depd":197,"inherits":210,"setprototypeof":388,"statuses":406,"toidentifier":432}],199:[function(require,module,exports){
|
|
60171
60200
|
/*!
|
|
60172
60201
|
* http-errors
|
|
60173
60202
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -60468,9 +60497,9 @@ function toClassName (name) {
|
|
|
60468
60497
|
: name
|
|
60469
60498
|
}
|
|
60470
60499
|
|
|
60471
|
-
},{"depd":
|
|
60472
|
-
arguments[4][
|
|
60473
|
-
},{"dup":
|
|
60500
|
+
},{"depd":200,"inherits":210,"setprototypeof":201,"statuses":406,"toidentifier":432}],200:[function(require,module,exports){
|
|
60501
|
+
arguments[4][135][0].apply(exports,arguments)
|
|
60502
|
+
},{"dup":135}],201:[function(require,module,exports){
|
|
60474
60503
|
'use strict'
|
|
60475
60504
|
/* eslint no-proto: 0 */
|
|
60476
60505
|
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
|
@@ -60489,7 +60518,7 @@ function mixinProperties (obj, proto) {
|
|
|
60489
60518
|
return obj
|
|
60490
60519
|
}
|
|
60491
60520
|
|
|
60492
|
-
},{}],
|
|
60521
|
+
},{}],202:[function(require,module,exports){
|
|
60493
60522
|
var http = require('http')
|
|
60494
60523
|
var url = require('url')
|
|
60495
60524
|
|
|
@@ -60522,7 +60551,7 @@ function validateParams (params) {
|
|
|
60522
60551
|
return params
|
|
60523
60552
|
}
|
|
60524
60553
|
|
|
60525
|
-
},{"http":
|
|
60554
|
+
},{"http":423,"url":443}],203:[function(require,module,exports){
|
|
60526
60555
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
60527
60556
|
var e, m
|
|
60528
60557
|
var eLen = (nBytes * 8) - mLen - 1
|
|
@@ -60608,7 +60637,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
60608
60637
|
buffer[offset + i - d] |= s * 128
|
|
60609
60638
|
}
|
|
60610
60639
|
|
|
60611
|
-
},{}],
|
|
60640
|
+
},{}],204:[function(require,module,exports){
|
|
60612
60641
|
'use strict';
|
|
60613
60642
|
var types = [
|
|
60614
60643
|
require('./nextTick'),
|
|
@@ -60706,7 +60735,7 @@ function immediate(task) {
|
|
|
60706
60735
|
}
|
|
60707
60736
|
}
|
|
60708
60737
|
|
|
60709
|
-
},{"./messageChannel":
|
|
60738
|
+
},{"./messageChannel":205,"./mutation.js":206,"./nextTick":207,"./stateChange":208,"./timeout":209}],205:[function(require,module,exports){
|
|
60710
60739
|
(function (global){(function (){
|
|
60711
60740
|
'use strict';
|
|
60712
60741
|
|
|
@@ -60727,7 +60756,7 @@ exports.install = function (func) {
|
|
|
60727
60756
|
};
|
|
60728
60757
|
};
|
|
60729
60758
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60730
|
-
},{}],
|
|
60759
|
+
},{}],206:[function(require,module,exports){
|
|
60731
60760
|
(function (global){(function (){
|
|
60732
60761
|
'use strict';
|
|
60733
60762
|
//based off rsvp https://github.com/tildeio/rsvp.js
|
|
@@ -60752,7 +60781,7 @@ exports.install = function (handle) {
|
|
|
60752
60781
|
};
|
|
60753
60782
|
};
|
|
60754
60783
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60755
|
-
},{}],
|
|
60784
|
+
},{}],207:[function(require,module,exports){
|
|
60756
60785
|
(function (process){(function (){
|
|
60757
60786
|
'use strict';
|
|
60758
60787
|
exports.test = function () {
|
|
@@ -60767,7 +60796,7 @@ exports.install = function (func) {
|
|
|
60767
60796
|
};
|
|
60768
60797
|
|
|
60769
60798
|
}).call(this)}).call(this,require('_process'))
|
|
60770
|
-
},{"_process":
|
|
60799
|
+
},{"_process":322}],208:[function(require,module,exports){
|
|
60771
60800
|
(function (global){(function (){
|
|
60772
60801
|
'use strict';
|
|
60773
60802
|
|
|
@@ -60794,7 +60823,7 @@ exports.install = function (handle) {
|
|
|
60794
60823
|
};
|
|
60795
60824
|
};
|
|
60796
60825
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60797
|
-
},{}],
|
|
60826
|
+
},{}],209:[function(require,module,exports){
|
|
60798
60827
|
'use strict';
|
|
60799
60828
|
exports.test = function () {
|
|
60800
60829
|
return true;
|
|
@@ -60805,7 +60834,7 @@ exports.install = function (t) {
|
|
|
60805
60834
|
setTimeout(t, 0);
|
|
60806
60835
|
};
|
|
60807
60836
|
};
|
|
60808
|
-
},{}],
|
|
60837
|
+
},{}],210:[function(require,module,exports){
|
|
60809
60838
|
if (typeof Object.create === 'function') {
|
|
60810
60839
|
// implementation from standard node.js 'util' module
|
|
60811
60840
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -60834,7 +60863,7 @@ if (typeof Object.create === 'function') {
|
|
|
60834
60863
|
}
|
|
60835
60864
|
}
|
|
60836
60865
|
|
|
60837
|
-
},{}],
|
|
60866
|
+
},{}],211:[function(require,module,exports){
|
|
60838
60867
|
'use strict'
|
|
60839
60868
|
|
|
60840
60869
|
const { filter, sortAll, take, map } = require('./utils')
|
|
@@ -61011,7 +61040,7 @@ class InterfaceDatastoreAdapter {
|
|
|
61011
61040
|
|
|
61012
61041
|
module.exports = InterfaceDatastoreAdapter
|
|
61013
61042
|
|
|
61014
|
-
},{"./utils":
|
|
61043
|
+
},{"./utils":216,"it-drain":223}],212:[function(require,module,exports){
|
|
61015
61044
|
'use strict'
|
|
61016
61045
|
|
|
61017
61046
|
const errcode = require('err-code')
|
|
@@ -61041,7 +61070,7 @@ module.exports.abortedError = (err) => {
|
|
|
61041
61070
|
return errcode(err, 'ERR_ABORTED')
|
|
61042
61071
|
}
|
|
61043
61072
|
|
|
61044
|
-
},{"err-code":
|
|
61073
|
+
},{"err-code":173}],213:[function(require,module,exports){
|
|
61045
61074
|
'use strict'
|
|
61046
61075
|
|
|
61047
61076
|
const Key = require('./key')
|
|
@@ -61056,7 +61085,7 @@ exports.utils = utils
|
|
|
61056
61085
|
exports.Errors = Errors
|
|
61057
61086
|
exports.Adapter = Adapter
|
|
61058
61087
|
|
|
61059
|
-
},{"./adapter":
|
|
61088
|
+
},{"./adapter":211,"./errors":212,"./key":214,"./memory":215,"./utils":216}],214:[function(require,module,exports){
|
|
61060
61089
|
'use strict'
|
|
61061
61090
|
|
|
61062
61091
|
const { Buffer } = require('buffer')
|
|
@@ -61454,7 +61483,7 @@ const _Key = withIs(Key, { className: 'Key', symbolName: '@ipfs/interface-datast
|
|
|
61454
61483
|
|
|
61455
61484
|
module.exports = _Key
|
|
61456
61485
|
|
|
61457
|
-
},{"buffer":
|
|
61486
|
+
},{"buffer":91,"class-is":95,"nanoid":296}],215:[function(require,module,exports){
|
|
61458
61487
|
'use strict'
|
|
61459
61488
|
|
|
61460
61489
|
const Key = require('./key')
|
|
@@ -61496,7 +61525,7 @@ class MemoryDatastore extends Adapter {
|
|
|
61496
61525
|
|
|
61497
61526
|
module.exports = MemoryDatastore
|
|
61498
61527
|
|
|
61499
|
-
},{"./adapter":
|
|
61528
|
+
},{"./adapter":211,"./errors":212,"./key":214}],216:[function(require,module,exports){
|
|
61500
61529
|
'use strict'
|
|
61501
61530
|
|
|
61502
61531
|
const tempdir = require('ipfs-utils/src/temp-dir')
|
|
@@ -61549,7 +61578,7 @@ exports.replaceStartWith = function (s, r) {
|
|
|
61549
61578
|
|
|
61550
61579
|
exports.tmpdir = tempdir
|
|
61551
61580
|
|
|
61552
|
-
},{"ipfs-utils/src/temp-dir":
|
|
61581
|
+
},{"ipfs-utils/src/temp-dir":217}],217:[function(require,module,exports){
|
|
61553
61582
|
'use strict'
|
|
61554
61583
|
|
|
61555
61584
|
const fs = require('fs')
|
|
@@ -61570,7 +61599,7 @@ const tempdir = (transform = d => d) => {
|
|
|
61570
61599
|
|
|
61571
61600
|
module.exports = tempdir
|
|
61572
61601
|
|
|
61573
|
-
},{"fs":
|
|
61602
|
+
},{"fs":83,"nanoid":296,"os":306,"path":314}],218:[function(require,module,exports){
|
|
61574
61603
|
/*!
|
|
61575
61604
|
* Determine if an object is a Buffer
|
|
61576
61605
|
*
|
|
@@ -61593,7 +61622,7 @@ function isSlowBuffer (obj) {
|
|
|
61593
61622
|
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
61594
61623
|
}
|
|
61595
61624
|
|
|
61596
|
-
},{}],
|
|
61625
|
+
},{}],219:[function(require,module,exports){
|
|
61597
61626
|
'use strict';
|
|
61598
61627
|
|
|
61599
61628
|
var toStr = Object.prototype.toString;
|
|
@@ -61633,7 +61662,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
61633
61662
|
return getProto(fn) === GeneratorFunction;
|
|
61634
61663
|
};
|
|
61635
61664
|
|
|
61636
|
-
},{}],
|
|
61665
|
+
},{}],220:[function(require,module,exports){
|
|
61637
61666
|
'use strict'
|
|
61638
61667
|
|
|
61639
61668
|
var hexRegEx = /([0-9]|[a-f])/gim
|
|
@@ -61643,7 +61672,7 @@ module.exports = function (input) {
|
|
|
61643
61672
|
(input.match(hexRegEx) || []).length === input.length
|
|
61644
61673
|
}
|
|
61645
61674
|
|
|
61646
|
-
},{}],
|
|
61675
|
+
},{}],221:[function(require,module,exports){
|
|
61647
61676
|
module.exports = isTypedArray
|
|
61648
61677
|
isTypedArray.strict = isStrictTypedArray
|
|
61649
61678
|
isTypedArray.loose = isLooseTypedArray
|
|
@@ -61686,14 +61715,14 @@ function isLooseTypedArray(arr) {
|
|
|
61686
61715
|
return names[toString.call(arr)]
|
|
61687
61716
|
}
|
|
61688
61717
|
|
|
61689
|
-
},{}],
|
|
61718
|
+
},{}],222:[function(require,module,exports){
|
|
61690
61719
|
var toString = {}.toString;
|
|
61691
61720
|
|
|
61692
61721
|
module.exports = Array.isArray || function (arr) {
|
|
61693
61722
|
return toString.call(arr) == '[object Array]';
|
|
61694
61723
|
};
|
|
61695
61724
|
|
|
61696
|
-
},{}],
|
|
61725
|
+
},{}],223:[function(require,module,exports){
|
|
61697
61726
|
'use strict'
|
|
61698
61727
|
|
|
61699
61728
|
/**
|
|
@@ -61710,10 +61739,10 @@ const drain = async (source) => {
|
|
|
61710
61739
|
|
|
61711
61740
|
module.exports = drain
|
|
61712
61741
|
|
|
61713
|
-
},{}],
|
|
61742
|
+
},{}],224:[function(require,module,exports){
|
|
61714
61743
|
module.exports = require('./lib/api')(require('./lib/keccak'))
|
|
61715
61744
|
|
|
61716
|
-
},{"./lib/api":
|
|
61745
|
+
},{"./lib/api":225,"./lib/keccak":229}],225:[function(require,module,exports){
|
|
61717
61746
|
const createKeccak = require('./keccak')
|
|
61718
61747
|
const createShake = require('./shake')
|
|
61719
61748
|
|
|
@@ -61742,7 +61771,7 @@ module.exports = function (KeccakState) {
|
|
|
61742
61771
|
}
|
|
61743
61772
|
}
|
|
61744
61773
|
|
|
61745
|
-
},{"./keccak":
|
|
61774
|
+
},{"./keccak":226,"./shake":227}],226:[function(require,module,exports){
|
|
61746
61775
|
(function (Buffer){(function (){
|
|
61747
61776
|
const { Transform } = require('stream')
|
|
61748
61777
|
|
|
@@ -61823,7 +61852,7 @@ module.exports = (KeccakState) => class Keccak extends Transform {
|
|
|
61823
61852
|
}
|
|
61824
61853
|
|
|
61825
61854
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
61826
|
-
},{"buffer":
|
|
61855
|
+
},{"buffer":91,"stream":407}],227:[function(require,module,exports){
|
|
61827
61856
|
(function (Buffer){(function (){
|
|
61828
61857
|
const { Transform } = require('stream')
|
|
61829
61858
|
|
|
@@ -61895,7 +61924,7 @@ module.exports = (KeccakState) => class Shake extends Transform {
|
|
|
61895
61924
|
}
|
|
61896
61925
|
|
|
61897
61926
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
61898
|
-
},{"buffer":
|
|
61927
|
+
},{"buffer":91,"stream":407}],228:[function(require,module,exports){
|
|
61899
61928
|
const P1600_ROUND_CONSTANTS = [1, 0, 32898, 0, 32906, 2147483648, 2147516416, 2147483648, 32907, 0, 2147483649, 0, 2147516545, 2147483648, 32777, 2147483648, 138, 0, 136, 0, 2147516425, 0, 2147483658, 0, 2147516555, 0, 139, 2147483648, 32905, 2147483648, 32771, 2147483648, 32770, 2147483648, 128, 2147483648, 32778, 0, 2147483658, 2147483648, 2147516545, 2147483648, 32896, 2147483648, 2147483649, 0, 2147516424, 2147483648]
|
|
61900
61929
|
|
|
61901
61930
|
exports.p1600 = function (s) {
|
|
@@ -62083,7 +62112,7 @@ exports.p1600 = function (s) {
|
|
|
62083
62112
|
}
|
|
62084
62113
|
}
|
|
62085
62114
|
|
|
62086
|
-
},{}],
|
|
62115
|
+
},{}],229:[function(require,module,exports){
|
|
62087
62116
|
(function (Buffer){(function (){
|
|
62088
62117
|
const keccakState = require('./keccak-state-unroll')
|
|
62089
62118
|
|
|
@@ -62155,7 +62184,7 @@ Keccak.prototype.copy = function (dest) {
|
|
|
62155
62184
|
module.exports = Keccak
|
|
62156
62185
|
|
|
62157
62186
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
62158
|
-
},{"./keccak-state-unroll":
|
|
62187
|
+
},{"./keccak-state-unroll":228,"buffer":91}],230:[function(require,module,exports){
|
|
62159
62188
|
/*!
|
|
62160
62189
|
* keygrip
|
|
62161
62190
|
* Copyright(c) 2011-2014 Jed Schmidt
|
|
@@ -62208,7 +62237,7 @@ Keygrip.sign = Keygrip.verify = Keygrip.index = function() {
|
|
|
62208
62237
|
|
|
62209
62238
|
module.exports = Keygrip
|
|
62210
62239
|
|
|
62211
|
-
},{"crypto":
|
|
62240
|
+
},{"crypto":108,"tsscmp":433}],231:[function(require,module,exports){
|
|
62212
62241
|
'use strict'
|
|
62213
62242
|
|
|
62214
62243
|
/**
|
|
@@ -62258,7 +62287,7 @@ function compose (middleware) {
|
|
|
62258
62287
|
}
|
|
62259
62288
|
}
|
|
62260
62289
|
|
|
62261
|
-
},{}],
|
|
62290
|
+
},{}],232:[function(require,module,exports){
|
|
62262
62291
|
'use strict'
|
|
62263
62292
|
|
|
62264
62293
|
const co = require('co')
|
|
@@ -62320,7 +62349,7 @@ convert.back = function (mw) {
|
|
|
62320
62349
|
return converted
|
|
62321
62350
|
}
|
|
62322
62351
|
|
|
62323
|
-
},{"co":
|
|
62352
|
+
},{"co":96,"koa-compose":233}],233:[function(require,module,exports){
|
|
62324
62353
|
'use strict'
|
|
62325
62354
|
|
|
62326
62355
|
const Promise = require('any-promise')
|
|
@@ -62374,7 +62403,7 @@ function compose (middleware) {
|
|
|
62374
62403
|
}
|
|
62375
62404
|
}
|
|
62376
62405
|
|
|
62377
|
-
},{"any-promise":
|
|
62406
|
+
},{"any-promise":10}],234:[function(require,module,exports){
|
|
62378
62407
|
(function (process,Buffer){(function (){
|
|
62379
62408
|
|
|
62380
62409
|
'use strict';
|
|
@@ -62669,7 +62698,7 @@ function respond(ctx) {
|
|
|
62669
62698
|
module.exports.HttpError = HttpError;
|
|
62670
62699
|
|
|
62671
62700
|
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
62672
|
-
},{"./context":
|
|
62701
|
+
},{"./context":235,"./request":236,"./response":237,"_process":322,"buffer":91,"debug":238,"depd":135,"events":178,"http":423,"http-errors":199,"is-generator-function":219,"koa-compose":231,"koa-convert":232,"on-finished":304,"only":305,"statuses":406,"stream":407,"util":448}],235:[function(require,module,exports){
|
|
62673
62702
|
(function (Buffer){(function (){
|
|
62674
62703
|
|
|
62675
62704
|
'use strict';
|
|
@@ -62924,7 +62953,7 @@ delegate(proto, 'request')
|
|
|
62924
62953
|
.getter('ip');
|
|
62925
62954
|
|
|
62926
62955
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
62927
|
-
},{"buffer":
|
|
62956
|
+
},{"buffer":91,"cookies":100,"delegates":134,"http-assert":196,"http-errors":199,"statuses":406,"util":448}],236:[function(require,module,exports){
|
|
62928
62957
|
|
|
62929
62958
|
'use strict';
|
|
62930
62959
|
|
|
@@ -63652,7 +63681,7 @@ if (util.inspect.custom) {
|
|
|
63652
63681
|
module.exports[util.inspect.custom] = module.exports.inspect;
|
|
63653
63682
|
}
|
|
63654
63683
|
|
|
63655
|
-
},{"accepts":
|
|
63684
|
+
},{"accepts":9,"content-type":99,"fresh":180,"net":83,"only":305,"parseurl":313,"querystring":362,"type-is":434,"url":443,"util":448}],237:[function(require,module,exports){
|
|
63656
63685
|
(function (Buffer){(function (){
|
|
63657
63686
|
|
|
63658
63687
|
'use strict';
|
|
@@ -64242,7 +64271,7 @@ if (util.inspect.custom) {
|
|
|
64242
64271
|
}
|
|
64243
64272
|
|
|
64244
64273
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
64245
|
-
},{"assert":
|
|
64274
|
+
},{"assert":28,"buffer":91,"cache-content-type":93,"content-disposition":97,"destroy":142,"encodeurl":166,"escape-html":177,"on-finished":304,"only":305,"path":314,"statuses":406,"stream":407,"type-is":434,"util":448,"vary":453}],238:[function(require,module,exports){
|
|
64246
64275
|
(function (process){(function (){
|
|
64247
64276
|
/**
|
|
64248
64277
|
* This is the web browser implementation of `debug()`.
|
|
@@ -64441,7 +64470,7 @@ function localstorage() {
|
|
|
64441
64470
|
}
|
|
64442
64471
|
|
|
64443
64472
|
}).call(this)}).call(this,require('_process'))
|
|
64444
|
-
},{"./debug":
|
|
64473
|
+
},{"./debug":239,"_process":322}],239:[function(require,module,exports){
|
|
64445
64474
|
|
|
64446
64475
|
/**
|
|
64447
64476
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -64668,7 +64697,7 @@ function coerce(val) {
|
|
|
64668
64697
|
return val;
|
|
64669
64698
|
}
|
|
64670
64699
|
|
|
64671
|
-
},{"ms":
|
|
64700
|
+
},{"ms":240}],240:[function(require,module,exports){
|
|
64672
64701
|
/**
|
|
64673
64702
|
* Helpers.
|
|
64674
64703
|
*/
|
|
@@ -64822,7 +64851,7 @@ function plural(ms, n, name) {
|
|
|
64822
64851
|
return Math.ceil(ms / n) + ' ' + name + 's';
|
|
64823
64852
|
}
|
|
64824
64853
|
|
|
64825
|
-
},{}],
|
|
64854
|
+
},{}],241:[function(require,module,exports){
|
|
64826
64855
|
var encodings = require('./lib/encodings')
|
|
64827
64856
|
|
|
64828
64857
|
module.exports = Codec
|
|
@@ -64931,7 +64960,7 @@ Codec.prototype.valueAsBuffer = function (opts) {
|
|
|
64931
64960
|
return this._valueEncoding(opts).buffer
|
|
64932
64961
|
}
|
|
64933
64962
|
|
|
64934
|
-
},{"./lib/encodings":
|
|
64963
|
+
},{"./lib/encodings":242}],242:[function(require,module,exports){
|
|
64935
64964
|
var Buffer = require('buffer').Buffer
|
|
64936
64965
|
|
|
64937
64966
|
exports.utf8 = exports['utf-8'] = {
|
|
@@ -64999,7 +65028,7 @@ function isBinary (data) {
|
|
|
64999
65028
|
return data === undefined || data === null || Buffer.isBuffer(data)
|
|
65000
65029
|
}
|
|
65001
65030
|
|
|
65002
|
-
},{"buffer":
|
|
65031
|
+
},{"buffer":91}],243:[function(require,module,exports){
|
|
65003
65032
|
var createError = require('errno').create
|
|
65004
65033
|
var LevelUPError = createError('LevelUPError')
|
|
65005
65034
|
var NotFoundError = createError('NotFoundError', LevelUPError)
|
|
@@ -65017,7 +65046,7 @@ module.exports = {
|
|
|
65017
65046
|
EncodingError: createError('EncodingError', LevelUPError)
|
|
65018
65047
|
}
|
|
65019
65048
|
|
|
65020
|
-
},{"errno":
|
|
65049
|
+
},{"errno":175}],244:[function(require,module,exports){
|
|
65021
65050
|
var inherits = require('inherits')
|
|
65022
65051
|
var Readable = require('readable-stream').Readable
|
|
65023
65052
|
var extend = require('xtend')
|
|
@@ -65063,7 +65092,7 @@ ReadStream.prototype._destroy = function (err, callback) {
|
|
|
65063
65092
|
})
|
|
65064
65093
|
}
|
|
65065
65094
|
|
|
65066
|
-
},{"inherits":
|
|
65095
|
+
},{"inherits":210,"readable-stream":380,"xtend":458}],245:[function(require,module,exports){
|
|
65067
65096
|
(function (Buffer){(function (){
|
|
65068
65097
|
/* global indexedDB */
|
|
65069
65098
|
|
|
@@ -65282,7 +65311,7 @@ Level.destroy = function (location, prefix, callback) {
|
|
|
65282
65311
|
}
|
|
65283
65312
|
|
|
65284
65313
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
65285
|
-
},{"../is-buffer/index.js":
|
|
65314
|
+
},{"../is-buffer/index.js":218,"./iterator":246,"./util/immediate":247,"./util/mixed-to-buffer":248,"./util/support":249,"abstract-leveldown":8,"inherits":210}],246:[function(require,module,exports){
|
|
65286
65315
|
/* global IDBKeyRange */
|
|
65287
65316
|
|
|
65288
65317
|
'use strict'
|
|
@@ -65443,9 +65472,9 @@ Iterator.prototype._end = function (callback) {
|
|
|
65443
65472
|
this.onComplete = callback
|
|
65444
65473
|
}
|
|
65445
65474
|
|
|
65446
|
-
},{"./util/immediate":
|
|
65447
|
-
arguments[4][
|
|
65448
|
-
},{"dup":
|
|
65475
|
+
},{"./util/immediate":247,"./util/mixed-to-buffer":248,"abstract-leveldown":8,"inherits":210,"ltgt":257}],247:[function(require,module,exports){
|
|
65476
|
+
arguments[4][133][0].apply(exports,arguments)
|
|
65477
|
+
},{"dup":133,"immediate":204}],248:[function(require,module,exports){
|
|
65449
65478
|
(function (Buffer){(function (){
|
|
65450
65479
|
'use strict'
|
|
65451
65480
|
|
|
@@ -65458,7 +65487,7 @@ module.exports = function (value) {
|
|
|
65458
65487
|
}
|
|
65459
65488
|
|
|
65460
65489
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
65461
|
-
},{"buffer":
|
|
65490
|
+
},{"buffer":91,"typedarray-to-buffer":435}],249:[function(require,module,exports){
|
|
65462
65491
|
'use strict'
|
|
65463
65492
|
|
|
65464
65493
|
exports.test = function (key) {
|
|
@@ -65475,7 +65504,7 @@ exports.test = function (key) {
|
|
|
65475
65504
|
exports.binaryKeys = exports.test(new Uint8Array(0))
|
|
65476
65505
|
exports.arrayKeys = exports.test([1])
|
|
65477
65506
|
|
|
65478
|
-
},{}],
|
|
65507
|
+
},{}],250:[function(require,module,exports){
|
|
65479
65508
|
var levelup = require('levelup')
|
|
65480
65509
|
var encode = require('encoding-down')
|
|
65481
65510
|
|
|
@@ -65513,7 +65542,7 @@ function packager (leveldown) {
|
|
|
65513
65542
|
|
|
65514
65543
|
module.exports = packager
|
|
65515
65544
|
|
|
65516
|
-
},{"encoding-down":
|
|
65545
|
+
},{"encoding-down":167,"levelup":255}],251:[function(require,module,exports){
|
|
65517
65546
|
'use strict'
|
|
65518
65547
|
|
|
65519
65548
|
// For (old) browser support
|
|
@@ -65550,10 +65579,10 @@ module.exports = function supports () {
|
|
|
65550
65579
|
})
|
|
65551
65580
|
}
|
|
65552
65581
|
|
|
65553
|
-
},{"xtend":
|
|
65582
|
+
},{"xtend":458,"xtend/mutable":459}],252:[function(require,module,exports){
|
|
65554
65583
|
module.exports = require('level-packager')(require('level-js'))
|
|
65555
65584
|
|
|
65556
|
-
},{"level-js":
|
|
65585
|
+
},{"level-js":245,"level-packager":250}],253:[function(require,module,exports){
|
|
65557
65586
|
var WriteError = require('level-errors').WriteError
|
|
65558
65587
|
var promisify = require('./promisify')
|
|
65559
65588
|
var getCallback = require('./common').getCallback
|
|
@@ -65635,7 +65664,7 @@ Batch.prototype.write = function (options, callback) {
|
|
|
65635
65664
|
|
|
65636
65665
|
module.exports = Batch
|
|
65637
65666
|
|
|
65638
|
-
},{"./common":
|
|
65667
|
+
},{"./common":254,"./promisify":256,"level-errors":243}],254:[function(require,module,exports){
|
|
65639
65668
|
exports.getCallback = function (options, callback) {
|
|
65640
65669
|
return typeof options === 'function' ? options : callback
|
|
65641
65670
|
}
|
|
@@ -65644,7 +65673,7 @@ exports.getOptions = function (options) {
|
|
|
65644
65673
|
return typeof options === 'object' && options !== null ? options : {}
|
|
65645
65674
|
}
|
|
65646
65675
|
|
|
65647
|
-
},{}],
|
|
65676
|
+
},{}],255:[function(require,module,exports){
|
|
65648
65677
|
(function (process){(function (){
|
|
65649
65678
|
var EventEmitter = require('events').EventEmitter
|
|
65650
65679
|
var inherits = require('util').inherits
|
|
@@ -65993,7 +66022,7 @@ LevelUP.errors = errors
|
|
|
65993
66022
|
module.exports = LevelUP.default = LevelUP
|
|
65994
66023
|
|
|
65995
66024
|
}).call(this)}).call(this,require('_process'))
|
|
65996
|
-
},{"./batch":
|
|
66025
|
+
},{"./batch":253,"./common":254,"./promisify":256,"_process":322,"assert":28,"deferred-leveldown":128,"events":178,"level-errors":243,"level-iterator-stream":244,"level-supports":251,"util":448,"xtend":458}],256:[function(require,module,exports){
|
|
65997
66026
|
function promisify () {
|
|
65998
66027
|
var callback
|
|
65999
66028
|
var promise = new Promise(function (resolve, reject) {
|
|
@@ -66008,7 +66037,7 @@ function promisify () {
|
|
|
66008
66037
|
|
|
66009
66038
|
module.exports = promisify
|
|
66010
66039
|
|
|
66011
|
-
},{}],
|
|
66040
|
+
},{}],257:[function(require,module,exports){
|
|
66012
66041
|
(function (Buffer){(function (){
|
|
66013
66042
|
|
|
66014
66043
|
exports.compare = function (a, b) {
|
|
@@ -66177,7 +66206,7 @@ exports.filter = function (range, compare) {
|
|
|
66177
66206
|
|
|
66178
66207
|
|
|
66179
66208
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
66180
|
-
},{"../is-buffer/index.js":
|
|
66209
|
+
},{"../is-buffer/index.js":218}],258:[function(require,module,exports){
|
|
66181
66210
|
'use strict'
|
|
66182
66211
|
var inherits = require('inherits')
|
|
66183
66212
|
var HashBase = require('hash-base')
|
|
@@ -66325,7 +66354,7 @@ function fnI (a, b, c, d, m, k, s) {
|
|
|
66325
66354
|
|
|
66326
66355
|
module.exports = MD5
|
|
66327
66356
|
|
|
66328
|
-
},{"hash-base":
|
|
66357
|
+
},{"hash-base":182,"inherits":210,"safe-buffer":383}],259:[function(require,module,exports){
|
|
66329
66358
|
/*!
|
|
66330
66359
|
* media-typer
|
|
66331
66360
|
* Copyright(c) 2014 Douglas Christopher Wilson
|
|
@@ -66597,7 +66626,7 @@ function splitType(string) {
|
|
|
66597
66626
|
return obj
|
|
66598
66627
|
}
|
|
66599
66628
|
|
|
66600
|
-
},{}],
|
|
66629
|
+
},{}],260:[function(require,module,exports){
|
|
66601
66630
|
var bn = require('bn.js');
|
|
66602
66631
|
var brorand = require('brorand');
|
|
66603
66632
|
|
|
@@ -66714,9 +66743,9 @@ MillerRabin.prototype.getDivisor = function getDivisor(n, k) {
|
|
|
66714
66743
|
return false;
|
|
66715
66744
|
};
|
|
66716
66745
|
|
|
66717
|
-
},{"bn.js":
|
|
66718
|
-
arguments[4][
|
|
66719
|
-
},{"buffer":
|
|
66746
|
+
},{"bn.js":261,"brorand":54}],261:[function(require,module,exports){
|
|
66747
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
66748
|
+
},{"buffer":55,"dup":27}],262:[function(require,module,exports){
|
|
66720
66749
|
module.exports={
|
|
66721
66750
|
"application/1d-interleaved-parityfec": {
|
|
66722
66751
|
"source": "iana"
|
|
@@ -74894,7 +74923,7 @@ module.exports={
|
|
|
74894
74923
|
}
|
|
74895
74924
|
}
|
|
74896
74925
|
|
|
74897
|
-
},{}],
|
|
74926
|
+
},{}],263:[function(require,module,exports){
|
|
74898
74927
|
/*!
|
|
74899
74928
|
* mime-db
|
|
74900
74929
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -74907,7 +74936,7 @@ module.exports={
|
|
|
74907
74936
|
|
|
74908
74937
|
module.exports = require('./db.json')
|
|
74909
74938
|
|
|
74910
|
-
},{"./db.json":
|
|
74939
|
+
},{"./db.json":262}],264:[function(require,module,exports){
|
|
74911
74940
|
/*!
|
|
74912
74941
|
* mime-types
|
|
74913
74942
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -75097,7 +75126,7 @@ function populateMaps (extensions, types) {
|
|
|
75097
75126
|
})
|
|
75098
75127
|
}
|
|
75099
75128
|
|
|
75100
|
-
},{"mime-db":
|
|
75129
|
+
},{"mime-db":263,"path":314}],265:[function(require,module,exports){
|
|
75101
75130
|
module.exports = assert;
|
|
75102
75131
|
|
|
75103
75132
|
function assert(val, msg) {
|
|
@@ -75110,7 +75139,7 @@ assert.equal = function assertEqual(l, r, msg) {
|
|
|
75110
75139
|
throw new Error(msg || ('Assertion failed: ' + l + ' != ' + r));
|
|
75111
75140
|
};
|
|
75112
75141
|
|
|
75113
|
-
},{}],
|
|
75142
|
+
},{}],266:[function(require,module,exports){
|
|
75114
75143
|
'use strict';
|
|
75115
75144
|
|
|
75116
75145
|
var utils = exports;
|
|
@@ -75170,7 +75199,7 @@ utils.encode = function encode(arr, enc) {
|
|
|
75170
75199
|
return arr;
|
|
75171
75200
|
};
|
|
75172
75201
|
|
|
75173
|
-
},{}],
|
|
75202
|
+
},{}],267:[function(require,module,exports){
|
|
75174
75203
|
/**
|
|
75175
75204
|
* Helpers.
|
|
75176
75205
|
*/
|
|
@@ -75334,12 +75363,12 @@ function plural(ms, msAbs, n, name) {
|
|
|
75334
75363
|
return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
|
|
75335
75364
|
}
|
|
75336
75365
|
|
|
75337
|
-
},{}],
|
|
75366
|
+
},{}],268:[function(require,module,exports){
|
|
75338
75367
|
(function (Buffer){(function (){
|
|
75339
75368
|
"use strict";function _interopDefault(e){return e&&"object"==typeof e&&"default"in e?e.default:e}var bs58=require("bs58"),bs32=_interopDefault(require("bs32")),ecc=_interopDefault(require("tiny-secp256k1")),varint=_interopDefault(require("varint"));class MultiSignature{constructor(e,t){if(void 0===e)throw ReferenceError("version undefined");if(void 0===t)throw ReferenceError("multicodec undefined");this.multiCodec=t,this.version=e}set multiSignature(e){this._multiSignature=e}get signature(){return this.decoded.signature}get multiSignature(){return this._multiSignature||this.encoded||this.encode(this.signature)}export(){return bs58.encode(this.multiSignature)}import(e){return bs58.decode(this.decode(e))}sign(e,t){if(!e||!t)throw ReferenceError(`${e?"privateKey":"hash"} undefined`);const r=ecc.sign(e,t);return this.decoded={version:this.version,multiCodec:this.multiCodec,signature:r},this.encode(r)}verifySignature(e,t,r){return ecc.verify(t,r,e)}verify(e,t,r){return e=this.decode(e),ecc.verify(t,r,e.signature)}encode(e){if(!(e=e||this.signature))throw ReferenceError("signature undefined");return this.multiSignature=Buffer.concat([Buffer.from(varint.encode(this.version)),Buffer.from(varint.encode(this.multiCodec)),e]),this.multiSignature}decode(e){if(e&&(this.multiSignature=e),!this.multiSignature)throw ReferenceError("multiSignature undefined");let t=this.multiSignature;const r=varint.decode(t);t=t.slice(varint.decode.bytes);const i=varint.decode(t),n=t.slice(varint.decode.bytes);if(r!==this.version)throw TypeError("Invalid version");if(this.multiCodec!==i)throw TypeError("Invalid multiCodec");return this.decoded={version:r,multiCodec:i,signature:n},this.decoded}toHex(){return this.multiSignature.toString("hex")}fromHex(e){return bs58.decode(Buffer.from(e,"hex"))}toBs58(){return bs58.encode(this.multiSignature)}fromBs58(e){return bs58.decode(e)}toBs32(){return bs32.encode(this.multiSignature)}fromBs32(e){return bs32.decode(e)}}module.exports=MultiSignature;
|
|
75340
75369
|
|
|
75341
75370
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
75342
|
-
},{"bs32":
|
|
75371
|
+
},{"bs32":85,"bs58":86,"buffer":91,"tiny-secp256k1":429,"varint":271}],269:[function(require,module,exports){
|
|
75343
75372
|
module.exports = read
|
|
75344
75373
|
|
|
75345
75374
|
var MSB = 0x80
|
|
@@ -75370,7 +75399,7 @@ function read(buf, offset) {
|
|
|
75370
75399
|
return res
|
|
75371
75400
|
}
|
|
75372
75401
|
|
|
75373
|
-
},{}],
|
|
75402
|
+
},{}],270:[function(require,module,exports){
|
|
75374
75403
|
module.exports = encode
|
|
75375
75404
|
|
|
75376
75405
|
var MSB = 0x80
|
|
@@ -75398,14 +75427,14 @@ function encode(num, out, offset) {
|
|
|
75398
75427
|
return out
|
|
75399
75428
|
}
|
|
75400
75429
|
|
|
75401
|
-
},{}],
|
|
75430
|
+
},{}],271:[function(require,module,exports){
|
|
75402
75431
|
module.exports = {
|
|
75403
75432
|
encode: require('./encode.js')
|
|
75404
75433
|
, decode: require('./decode.js')
|
|
75405
75434
|
, encodingLength: require('./length.js')
|
|
75406
75435
|
}
|
|
75407
75436
|
|
|
75408
|
-
},{"./decode.js":
|
|
75437
|
+
},{"./decode.js":269,"./encode.js":270,"./length.js":272}],272:[function(require,module,exports){
|
|
75409
75438
|
|
|
75410
75439
|
var N1 = Math.pow(2, 7)
|
|
75411
75440
|
var N2 = Math.pow(2, 14)
|
|
@@ -75432,7 +75461,7 @@ module.exports = function (value) {
|
|
|
75432
75461
|
)
|
|
75433
75462
|
}
|
|
75434
75463
|
|
|
75435
|
-
},{}],
|
|
75464
|
+
},{}],273:[function(require,module,exports){
|
|
75436
75465
|
'use strict';
|
|
75437
75466
|
|
|
75438
75467
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75601,7 +75630,7 @@ exports.baseX = baseX;
|
|
|
75601
75630
|
exports.from = from;
|
|
75602
75631
|
exports.rfc4648 = rfc4648;
|
|
75603
75632
|
|
|
75604
|
-
},{"../../vendor/base-x.js":
|
|
75633
|
+
},{"../../vendor/base-x.js":294,"../bytes.js":284}],274:[function(require,module,exports){
|
|
75605
75634
|
'use strict';
|
|
75606
75635
|
|
|
75607
75636
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75616,7 +75645,7 @@ const base10 = base.baseX({
|
|
|
75616
75645
|
|
|
75617
75646
|
exports.base10 = base10;
|
|
75618
75647
|
|
|
75619
|
-
},{"./base.js":
|
|
75648
|
+
},{"./base.js":273}],275:[function(require,module,exports){
|
|
75620
75649
|
'use strict';
|
|
75621
75650
|
|
|
75622
75651
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75639,7 +75668,7 @@ const base16upper = base.rfc4648({
|
|
|
75639
75668
|
exports.base16 = base16;
|
|
75640
75669
|
exports.base16upper = base16upper;
|
|
75641
75670
|
|
|
75642
|
-
},{"./base.js":
|
|
75671
|
+
},{"./base.js":273}],276:[function(require,module,exports){
|
|
75643
75672
|
'use strict';
|
|
75644
75673
|
|
|
75645
75674
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75655,7 +75684,7 @@ const base2 = base.rfc4648({
|
|
|
75655
75684
|
|
|
75656
75685
|
exports.base2 = base2;
|
|
75657
75686
|
|
|
75658
|
-
},{"./base.js":
|
|
75687
|
+
},{"./base.js":273}],277:[function(require,module,exports){
|
|
75659
75688
|
'use strict';
|
|
75660
75689
|
|
|
75661
75690
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75727,7 +75756,7 @@ exports.base32padupper = base32padupper;
|
|
|
75727
75756
|
exports.base32upper = base32upper;
|
|
75728
75757
|
exports.base32z = base32z;
|
|
75729
75758
|
|
|
75730
|
-
},{"./base.js":
|
|
75759
|
+
},{"./base.js":273}],278:[function(require,module,exports){
|
|
75731
75760
|
'use strict';
|
|
75732
75761
|
|
|
75733
75762
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75748,7 +75777,7 @@ const base36upper = base.baseX({
|
|
|
75748
75777
|
exports.base36 = base36;
|
|
75749
75778
|
exports.base36upper = base36upper;
|
|
75750
75779
|
|
|
75751
|
-
},{"./base.js":
|
|
75780
|
+
},{"./base.js":273}],279:[function(require,module,exports){
|
|
75752
75781
|
'use strict';
|
|
75753
75782
|
|
|
75754
75783
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75769,7 +75798,7 @@ const base58flickr = base.baseX({
|
|
|
75769
75798
|
exports.base58btc = base58btc;
|
|
75770
75799
|
exports.base58flickr = base58flickr;
|
|
75771
75800
|
|
|
75772
|
-
},{"./base.js":
|
|
75801
|
+
},{"./base.js":273}],280:[function(require,module,exports){
|
|
75773
75802
|
'use strict';
|
|
75774
75803
|
|
|
75775
75804
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75806,7 +75835,7 @@ exports.base64pad = base64pad;
|
|
|
75806
75835
|
exports.base64url = base64url;
|
|
75807
75836
|
exports.base64urlpad = base64urlpad;
|
|
75808
75837
|
|
|
75809
|
-
},{"./base.js":
|
|
75838
|
+
},{"./base.js":273}],281:[function(require,module,exports){
|
|
75810
75839
|
'use strict';
|
|
75811
75840
|
|
|
75812
75841
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75822,7 +75851,7 @@ const base8 = base.rfc4648({
|
|
|
75822
75851
|
|
|
75823
75852
|
exports.base8 = base8;
|
|
75824
75853
|
|
|
75825
|
-
},{"./base.js":
|
|
75854
|
+
},{"./base.js":273}],282:[function(require,module,exports){
|
|
75826
75855
|
'use strict';
|
|
75827
75856
|
|
|
75828
75857
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75839,7 +75868,7 @@ const identity = base.from({
|
|
|
75839
75868
|
|
|
75840
75869
|
exports.identity = identity;
|
|
75841
75870
|
|
|
75842
|
-
},{"../bytes.js":
|
|
75871
|
+
},{"../bytes.js":284,"./base.js":273}],283:[function(require,module,exports){
|
|
75843
75872
|
'use strict';
|
|
75844
75873
|
|
|
75845
75874
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75893,7 +75922,7 @@ exports.bases = bases;
|
|
|
75893
75922
|
exports.codecs = codecs;
|
|
75894
75923
|
exports.hashes = hashes;
|
|
75895
75924
|
|
|
75896
|
-
},{"./bases/base10.js":
|
|
75925
|
+
},{"./bases/base10.js":274,"./bases/base16.js":275,"./bases/base2.js":276,"./bases/base32.js":277,"./bases/base36.js":278,"./bases/base58.js":279,"./bases/base64.js":280,"./bases/base8.js":281,"./bases/identity.js":282,"./bytes.js":284,"./cid.js":285,"./codecs/json.js":286,"./codecs/raw.js":287,"./hashes/digest.js":288,"./hashes/hasher.js":289,"./hashes/identity.js":290,"./hashes/sha2.js":291,"./index.js":292,"./varint.js":293}],284:[function(require,module,exports){
|
|
75897
75926
|
'use strict';
|
|
75898
75927
|
|
|
75899
75928
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -75940,7 +75969,7 @@ exports.isBinary = isBinary;
|
|
|
75940
75969
|
exports.toHex = toHex;
|
|
75941
75970
|
exports.toString = toString;
|
|
75942
75971
|
|
|
75943
|
-
},{}],
|
|
75972
|
+
},{}],285:[function(require,module,exports){
|
|
75944
75973
|
'use strict';
|
|
75945
75974
|
|
|
75946
75975
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76257,7 +76286,7 @@ if (cid) {
|
|
|
76257
76286
|
|
|
76258
76287
|
exports.CID = CID;
|
|
76259
76288
|
|
|
76260
|
-
},{"./bases/base32.js":
|
|
76289
|
+
},{"./bases/base32.js":277,"./bases/base58.js":279,"./bytes.js":284,"./hashes/digest.js":288,"./varint.js":293}],286:[function(require,module,exports){
|
|
76261
76290
|
'use strict';
|
|
76262
76291
|
|
|
76263
76292
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76274,7 +76303,7 @@ exports.decode = decode;
|
|
|
76274
76303
|
exports.encode = encode;
|
|
76275
76304
|
exports.name = name;
|
|
76276
76305
|
|
|
76277
|
-
},{}],
|
|
76306
|
+
},{}],287:[function(require,module,exports){
|
|
76278
76307
|
'use strict';
|
|
76279
76308
|
|
|
76280
76309
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76294,7 +76323,7 @@ exports.decode = decode;
|
|
|
76294
76323
|
exports.encode = encode;
|
|
76295
76324
|
exports.name = name;
|
|
76296
76325
|
|
|
76297
|
-
},{"../bytes.js":
|
|
76326
|
+
},{"../bytes.js":284}],288:[function(require,module,exports){
|
|
76298
76327
|
'use strict';
|
|
76299
76328
|
|
|
76300
76329
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76343,7 +76372,7 @@ exports.create = create;
|
|
|
76343
76372
|
exports.decode = decode;
|
|
76344
76373
|
exports.equals = equals;
|
|
76345
76374
|
|
|
76346
|
-
},{"../bytes.js":
|
|
76375
|
+
},{"../bytes.js":284,"../varint.js":293}],289:[function(require,module,exports){
|
|
76347
76376
|
'use strict';
|
|
76348
76377
|
|
|
76349
76378
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76370,7 +76399,7 @@ class Hasher {
|
|
|
76370
76399
|
exports.Hasher = Hasher;
|
|
76371
76400
|
exports.from = from;
|
|
76372
76401
|
|
|
76373
|
-
},{"./digest.js":
|
|
76402
|
+
},{"./digest.js":288}],290:[function(require,module,exports){
|
|
76374
76403
|
'use strict';
|
|
76375
76404
|
|
|
76376
76405
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76386,7 +76415,7 @@ const identity = hasher.from({
|
|
|
76386
76415
|
|
|
76387
76416
|
exports.identity = identity;
|
|
76388
76417
|
|
|
76389
|
-
},{"../bytes.js":
|
|
76418
|
+
},{"../bytes.js":284,"./hasher.js":289}],291:[function(require,module,exports){
|
|
76390
76419
|
'use strict';
|
|
76391
76420
|
|
|
76392
76421
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76408,7 +76437,7 @@ const sha512 = hasher.from({
|
|
|
76408
76437
|
exports.sha256 = sha256;
|
|
76409
76438
|
exports.sha512 = sha512;
|
|
76410
76439
|
|
|
76411
|
-
},{"./hasher.js":
|
|
76440
|
+
},{"./hasher.js":289}],292:[function(require,module,exports){
|
|
76412
76441
|
'use strict';
|
|
76413
76442
|
|
|
76414
76443
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76427,7 +76456,7 @@ exports.bytes = bytes;
|
|
|
76427
76456
|
exports.hasher = hasher;
|
|
76428
76457
|
exports.digest = digest;
|
|
76429
76458
|
|
|
76430
|
-
},{"./bytes.js":
|
|
76459
|
+
},{"./bytes.js":284,"./cid.js":285,"./hashes/digest.js":288,"./hashes/hasher.js":289,"./varint.js":293}],293:[function(require,module,exports){
|
|
76431
76460
|
'use strict';
|
|
76432
76461
|
|
|
76433
76462
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -76453,7 +76482,7 @@ exports.decode = decode;
|
|
|
76453
76482
|
exports.encodeTo = encodeTo;
|
|
76454
76483
|
exports.encodingLength = encodingLength;
|
|
76455
76484
|
|
|
76456
|
-
},{"../vendor/varint.js":
|
|
76485
|
+
},{"../vendor/varint.js":295}],294:[function(require,module,exports){
|
|
76457
76486
|
'use strict';
|
|
76458
76487
|
|
|
76459
76488
|
function base(ALPHABET, name) {
|
|
@@ -76591,7 +76620,7 @@ var _brrp__multiformats_scope_baseX = src;
|
|
|
76591
76620
|
|
|
76592
76621
|
module.exports = _brrp__multiformats_scope_baseX;
|
|
76593
76622
|
|
|
76594
|
-
},{}],
|
|
76623
|
+
},{}],295:[function(require,module,exports){
|
|
76595
76624
|
'use strict';
|
|
76596
76625
|
|
|
76597
76626
|
var encode_1 = encode;
|
|
@@ -76649,7 +76678,7 @@ var _brrp_varint = varint;
|
|
|
76649
76678
|
|
|
76650
76679
|
module.exports = _brrp_varint;
|
|
76651
76680
|
|
|
76652
|
-
},{}],
|
|
76681
|
+
},{}],296:[function(require,module,exports){
|
|
76653
76682
|
(function (Buffer){(function (){
|
|
76654
76683
|
let crypto = require('crypto')
|
|
76655
76684
|
|
|
@@ -76733,7 +76762,7 @@ let nanoid = (size = 21) => {
|
|
|
76733
76762
|
module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
|
|
76734
76763
|
|
|
76735
76764
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76736
|
-
},{"./url-alphabet/index.cjs":
|
|
76765
|
+
},{"./url-alphabet/index.cjs":297,"buffer":91,"crypto":108}],297:[function(require,module,exports){
|
|
76737
76766
|
// This alphabet uses `A-Za-z0-9_-` symbols. The genetic algorithm helped
|
|
76738
76767
|
// optimize the gzip compression for this alphabet.
|
|
76739
76768
|
let urlAlphabet =
|
|
@@ -76741,7 +76770,7 @@ let urlAlphabet =
|
|
|
76741
76770
|
|
|
76742
76771
|
module.exports = { urlAlphabet }
|
|
76743
76772
|
|
|
76744
|
-
},{}],
|
|
76773
|
+
},{}],298:[function(require,module,exports){
|
|
76745
76774
|
/*!
|
|
76746
76775
|
* negotiator
|
|
76747
76776
|
* Copyright(c) 2012 Federico Romero
|
|
@@ -76867,7 +76896,7 @@ function loadModule(moduleName) {
|
|
|
76867
76896
|
return module;
|
|
76868
76897
|
}
|
|
76869
76898
|
|
|
76870
|
-
},{"./lib/charset":
|
|
76899
|
+
},{"./lib/charset":299,"./lib/encoding":300,"./lib/language":301,"./lib/mediaType":302}],299:[function(require,module,exports){
|
|
76871
76900
|
/**
|
|
76872
76901
|
* negotiator
|
|
76873
76902
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77038,7 +77067,7 @@ function isQuality(spec) {
|
|
|
77038
77067
|
return spec.q > 0;
|
|
77039
77068
|
}
|
|
77040
77069
|
|
|
77041
|
-
},{}],
|
|
77070
|
+
},{}],300:[function(require,module,exports){
|
|
77042
77071
|
/**
|
|
77043
77072
|
* negotiator
|
|
77044
77073
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77224,7 +77253,7 @@ function isQuality(spec) {
|
|
|
77224
77253
|
return spec.q > 0;
|
|
77225
77254
|
}
|
|
77226
77255
|
|
|
77227
|
-
},{}],
|
|
77256
|
+
},{}],301:[function(require,module,exports){
|
|
77228
77257
|
/**
|
|
77229
77258
|
* negotiator
|
|
77230
77259
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77405,7 +77434,7 @@ function isQuality(spec) {
|
|
|
77405
77434
|
return spec.q > 0;
|
|
77406
77435
|
}
|
|
77407
77436
|
|
|
77408
|
-
},{}],
|
|
77437
|
+
},{}],302:[function(require,module,exports){
|
|
77409
77438
|
/**
|
|
77410
77439
|
* negotiator
|
|
77411
77440
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
|
@@ -77701,7 +77730,7 @@ function splitParameters(str) {
|
|
|
77701
77730
|
return parameters;
|
|
77702
77731
|
}
|
|
77703
77732
|
|
|
77704
|
-
},{}],
|
|
77733
|
+
},{}],303:[function(require,module,exports){
|
|
77705
77734
|
/*
|
|
77706
77735
|
object-assign
|
|
77707
77736
|
(c) Sindre Sorhus
|
|
@@ -77793,7 +77822,7 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
77793
77822
|
return to;
|
|
77794
77823
|
};
|
|
77795
77824
|
|
|
77796
|
-
},{}],
|
|
77825
|
+
},{}],304:[function(require,module,exports){
|
|
77797
77826
|
(function (process,setImmediate){(function (){
|
|
77798
77827
|
/*!
|
|
77799
77828
|
* on-finished
|
|
@@ -77993,7 +78022,7 @@ function patchAssignSocket(res, callback) {
|
|
|
77993
78022
|
}
|
|
77994
78023
|
|
|
77995
78024
|
}).call(this)}).call(this,require('_process'),require("timers").setImmediate)
|
|
77996
|
-
},{"_process":
|
|
78025
|
+
},{"_process":322,"ee-first":148,"timers":428}],305:[function(require,module,exports){
|
|
77997
78026
|
|
|
77998
78027
|
module.exports = function(obj, keys){
|
|
77999
78028
|
obj = obj || {};
|
|
@@ -78005,7 +78034,7 @@ module.exports = function(obj, keys){
|
|
|
78005
78034
|
}, {});
|
|
78006
78035
|
};
|
|
78007
78036
|
|
|
78008
|
-
},{}],
|
|
78037
|
+
},{}],306:[function(require,module,exports){
|
|
78009
78038
|
exports.endianness = function () { return 'LE' };
|
|
78010
78039
|
|
|
78011
78040
|
exports.hostname = function () {
|
|
@@ -78056,7 +78085,7 @@ exports.homedir = function () {
|
|
|
78056
78085
|
return '/'
|
|
78057
78086
|
};
|
|
78058
78087
|
|
|
78059
|
-
},{}],
|
|
78088
|
+
},{}],307:[function(require,module,exports){
|
|
78060
78089
|
(function (Buffer){(function (){
|
|
78061
78090
|
/**
|
|
78062
78091
|
* Peer 2 Peer WebRTC connections with WebTorrent Trackers as signalling server
|
|
@@ -78435,7 +78464,7 @@ class P2PT extends EventEmitter {
|
|
|
78435
78464
|
module.exports = P2PT
|
|
78436
78465
|
|
|
78437
78466
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
78438
|
-
},{"bittorrent-tracker/lib/client/websocket-tracker":
|
|
78467
|
+
},{"bittorrent-tracker/lib/client/websocket-tracker":50,"buffer":91,"debug":122,"events":178,"randombytes":364,"simple-sha1":403}],308:[function(require,module,exports){
|
|
78439
78468
|
module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb",
|
|
78440
78469
|
"2.16.840.1.101.3.4.1.2": "aes-128-cbc",
|
|
78441
78470
|
"2.16.840.1.101.3.4.1.3": "aes-128-ofb",
|
|
@@ -78449,7 +78478,7 @@ module.exports={"2.16.840.1.101.3.4.1.1": "aes-128-ecb",
|
|
|
78449
78478
|
"2.16.840.1.101.3.4.1.43": "aes-256-ofb",
|
|
78450
78479
|
"2.16.840.1.101.3.4.1.44": "aes-256-cfb"
|
|
78451
78480
|
}
|
|
78452
|
-
},{}],
|
|
78481
|
+
},{}],309:[function(require,module,exports){
|
|
78453
78482
|
// from https://github.com/indutny/self-signed/blob/gh-pages/lib/asn1.js
|
|
78454
78483
|
// Fedor, you are amazing.
|
|
78455
78484
|
'use strict'
|
|
@@ -78573,7 +78602,7 @@ exports.signature = asn1.define('signature', function () {
|
|
|
78573
78602
|
)
|
|
78574
78603
|
})
|
|
78575
78604
|
|
|
78576
|
-
},{"./certificate":
|
|
78605
|
+
},{"./certificate":310,"asn1.js":13}],310:[function(require,module,exports){
|
|
78577
78606
|
// from https://github.com/Rantanen/node-dtls/blob/25a7dc861bda38cfeac93a723500eea4f0ac2e86/Certificate.js
|
|
78578
78607
|
// thanks to @Rantanen
|
|
78579
78608
|
|
|
@@ -78664,7 +78693,7 @@ var X509Certificate = asn.define('X509Certificate', function () {
|
|
|
78664
78693
|
|
|
78665
78694
|
module.exports = X509Certificate
|
|
78666
78695
|
|
|
78667
|
-
},{"asn1.js":
|
|
78696
|
+
},{"asn1.js":13}],311:[function(require,module,exports){
|
|
78668
78697
|
// adapted from https://github.com/apatil/pemstrip
|
|
78669
78698
|
var findProc = /Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r+/=]+)[\n\r]+/m
|
|
78670
78699
|
var startRegex = /^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m
|
|
@@ -78697,7 +78726,7 @@ module.exports = function (okey, password) {
|
|
|
78697
78726
|
}
|
|
78698
78727
|
}
|
|
78699
78728
|
|
|
78700
|
-
},{"browserify-aes":
|
|
78729
|
+
},{"browserify-aes":58,"evp_bytestokey":179,"safe-buffer":383}],312:[function(require,module,exports){
|
|
78701
78730
|
var asn1 = require('./asn1')
|
|
78702
78731
|
var aesid = require('./aesid.json')
|
|
78703
78732
|
var fixProc = require('./fixProc')
|
|
@@ -78806,7 +78835,7 @@ function decrypt (data, password) {
|
|
|
78806
78835
|
return Buffer.concat(out)
|
|
78807
78836
|
}
|
|
78808
78837
|
|
|
78809
|
-
},{"./aesid.json":
|
|
78838
|
+
},{"./aesid.json":308,"./asn1":309,"./fixProc":311,"browserify-aes":58,"pbkdf2":315,"safe-buffer":383}],313:[function(require,module,exports){
|
|
78810
78839
|
/*!
|
|
78811
78840
|
* parseurl
|
|
78812
78841
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -78966,7 +78995,7 @@ function fresh (url, parsedUrl) {
|
|
|
78966
78995
|
parsedUrl._raw === url
|
|
78967
78996
|
}
|
|
78968
78997
|
|
|
78969
|
-
},{"url":
|
|
78998
|
+
},{"url":443}],314:[function(require,module,exports){
|
|
78970
78999
|
(function (process){(function (){
|
|
78971
79000
|
// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
|
|
78972
79001
|
// backported and transplited with Babel, with backwards-compat fixes
|
|
@@ -79272,11 +79301,11 @@ var substr = 'ab'.substr(-1) === 'b'
|
|
|
79272
79301
|
;
|
|
79273
79302
|
|
|
79274
79303
|
}).call(this)}).call(this,require('_process'))
|
|
79275
|
-
},{"_process":
|
|
79304
|
+
},{"_process":322}],315:[function(require,module,exports){
|
|
79276
79305
|
exports.pbkdf2 = require('./lib/async')
|
|
79277
79306
|
exports.pbkdf2Sync = require('./lib/sync')
|
|
79278
79307
|
|
|
79279
|
-
},{"./lib/async":
|
|
79308
|
+
},{"./lib/async":316,"./lib/sync":319}],316:[function(require,module,exports){
|
|
79280
79309
|
(function (process,global){(function (){
|
|
79281
79310
|
var Buffer = require('safe-buffer').Buffer
|
|
79282
79311
|
|
|
@@ -79382,7 +79411,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback)
|
|
|
79382
79411
|
}
|
|
79383
79412
|
|
|
79384
79413
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79385
|
-
},{"./default-encoding":
|
|
79414
|
+
},{"./default-encoding":317,"./precondition":318,"./sync":319,"./to-buffer":320,"_process":322,"safe-buffer":383}],317:[function(require,module,exports){
|
|
79386
79415
|
(function (process){(function (){
|
|
79387
79416
|
var defaultEncoding
|
|
79388
79417
|
/* istanbul ignore next */
|
|
@@ -79398,7 +79427,7 @@ if (process.browser) {
|
|
|
79398
79427
|
module.exports = defaultEncoding
|
|
79399
79428
|
|
|
79400
79429
|
}).call(this)}).call(this,require('_process'))
|
|
79401
|
-
},{"_process":
|
|
79430
|
+
},{"_process":322}],318:[function(require,module,exports){
|
|
79402
79431
|
var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs
|
|
79403
79432
|
|
|
79404
79433
|
module.exports = function (iterations, keylen) {
|
|
@@ -79419,7 +79448,7 @@ module.exports = function (iterations, keylen) {
|
|
|
79419
79448
|
}
|
|
79420
79449
|
}
|
|
79421
79450
|
|
|
79422
|
-
},{}],
|
|
79451
|
+
},{}],319:[function(require,module,exports){
|
|
79423
79452
|
var md5 = require('create-hash/md5')
|
|
79424
79453
|
var RIPEMD160 = require('ripemd160')
|
|
79425
79454
|
var sha = require('sha.js')
|
|
@@ -79526,7 +79555,7 @@ function pbkdf2 (password, salt, iterations, keylen, digest) {
|
|
|
79526
79555
|
|
|
79527
79556
|
module.exports = pbkdf2
|
|
79528
79557
|
|
|
79529
|
-
},{"./default-encoding":
|
|
79558
|
+
},{"./default-encoding":317,"./precondition":318,"./to-buffer":320,"create-hash/md5":105,"ripemd160":381,"safe-buffer":383,"sha.js":390}],320:[function(require,module,exports){
|
|
79530
79559
|
var Buffer = require('safe-buffer').Buffer
|
|
79531
79560
|
|
|
79532
79561
|
module.exports = function (thing, encoding, name) {
|
|
@@ -79541,7 +79570,7 @@ module.exports = function (thing, encoding, name) {
|
|
|
79541
79570
|
}
|
|
79542
79571
|
}
|
|
79543
79572
|
|
|
79544
|
-
},{"safe-buffer":
|
|
79573
|
+
},{"safe-buffer":383}],321:[function(require,module,exports){
|
|
79545
79574
|
(function (process){(function (){
|
|
79546
79575
|
'use strict';
|
|
79547
79576
|
|
|
@@ -79590,7 +79619,7 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
|
79590
79619
|
|
|
79591
79620
|
|
|
79592
79621
|
}).call(this)}).call(this,require('_process'))
|
|
79593
|
-
},{"_process":
|
|
79622
|
+
},{"_process":322}],322:[function(require,module,exports){
|
|
79594
79623
|
// shim for using process in browser
|
|
79595
79624
|
var process = module.exports = {};
|
|
79596
79625
|
|
|
@@ -79776,7 +79805,7 @@ process.chdir = function (dir) {
|
|
|
79776
79805
|
};
|
|
79777
79806
|
process.umask = function() { return 0; };
|
|
79778
79807
|
|
|
79779
|
-
},{}],
|
|
79808
|
+
},{}],323:[function(require,module,exports){
|
|
79780
79809
|
var parse = require('./parse')
|
|
79781
79810
|
var stringify = require('./stringify')
|
|
79782
79811
|
|
|
@@ -79784,7 +79813,7 @@ module.exports = parse
|
|
|
79784
79813
|
module.exports.parse = parse
|
|
79785
79814
|
module.exports.stringify = stringify
|
|
79786
79815
|
|
|
79787
|
-
},{"./parse":
|
|
79816
|
+
},{"./parse":324,"./stringify":325}],324:[function(require,module,exports){
|
|
79788
79817
|
var tokenize = require('./tokenize')
|
|
79789
79818
|
var MAX_RANGE = 0x1FFFFFFF
|
|
79790
79819
|
|
|
@@ -80545,7 +80574,7 @@ var parse = function (buf) {
|
|
|
80545
80574
|
|
|
80546
80575
|
module.exports = parse
|
|
80547
80576
|
|
|
80548
|
-
},{"./tokenize":
|
|
80577
|
+
},{"./tokenize":326}],325:[function(require,module,exports){
|
|
80549
80578
|
var onfield = function (f, result) {
|
|
80550
80579
|
var prefix = f.repeated ? 'repeated' : f.required ? 'required' : 'optional'
|
|
80551
80580
|
if (f.type === 'map') prefix = 'map<' + f.map.from + ',' + f.map.to + '>'
|
|
@@ -80742,7 +80771,7 @@ module.exports = function (schema) {
|
|
|
80742
80771
|
return result.map(indent('')).join('\n')
|
|
80743
80772
|
}
|
|
80744
80773
|
|
|
80745
|
-
},{}],
|
|
80774
|
+
},{}],326:[function(require,module,exports){
|
|
80746
80775
|
module.exports = function (sch) {
|
|
80747
80776
|
var noComments = function (line) {
|
|
80748
80777
|
var i = line.indexOf('//')
|
|
@@ -80800,15 +80829,15 @@ module.exports = function (sch) {
|
|
|
80800
80829
|
.map(restoreQuotedLines(replacements))
|
|
80801
80830
|
}
|
|
80802
80831
|
|
|
80803
|
-
},{}],
|
|
80804
|
-
arguments[4][268][0].apply(exports,arguments)
|
|
80805
|
-
},{"dup":268}],327:[function(require,module,exports){
|
|
80832
|
+
},{}],327:[function(require,module,exports){
|
|
80806
80833
|
arguments[4][269][0].apply(exports,arguments)
|
|
80807
80834
|
},{"dup":269}],328:[function(require,module,exports){
|
|
80808
80835
|
arguments[4][270][0].apply(exports,arguments)
|
|
80809
|
-
},{"
|
|
80836
|
+
},{"dup":270}],329:[function(require,module,exports){
|
|
80810
80837
|
arguments[4][271][0].apply(exports,arguments)
|
|
80811
|
-
},{"dup":271}],330:[function(require,module,exports){
|
|
80838
|
+
},{"./decode.js":327,"./encode.js":328,"./length.js":330,"dup":271}],330:[function(require,module,exports){
|
|
80839
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
80840
|
+
},{"dup":272}],331:[function(require,module,exports){
|
|
80812
80841
|
/* eslint max-depth: 1 */
|
|
80813
80842
|
'use strict'
|
|
80814
80843
|
|
|
@@ -81140,7 +81169,7 @@ var coerceValue = function (f, def) {
|
|
|
81140
81169
|
|
|
81141
81170
|
module.exports = compileDecode
|
|
81142
81171
|
|
|
81143
|
-
},{"./utils":
|
|
81172
|
+
},{"./utils":349,"varint":329}],332:[function(require,module,exports){
|
|
81144
81173
|
'use strict'
|
|
81145
81174
|
|
|
81146
81175
|
var defined = require('./utils').defined
|
|
@@ -81275,7 +81304,7 @@ function compileEncode (m, resolve, enc, oneofs, encodingLength) {
|
|
|
81275
81304
|
|
|
81276
81305
|
module.exports = compileEncode
|
|
81277
81306
|
|
|
81278
|
-
},{"./utils":
|
|
81307
|
+
},{"./utils":349,"varint":329}],333:[function(require,module,exports){
|
|
81279
81308
|
'use strict'
|
|
81280
81309
|
|
|
81281
81310
|
var defined = require('./utils').defined
|
|
@@ -81379,7 +81408,7 @@ function compileEncodingLength (m, enc, oneofs) {
|
|
|
81379
81408
|
|
|
81380
81409
|
module.exports = compileEncodingLength
|
|
81381
81410
|
|
|
81382
|
-
},{"./utils":
|
|
81411
|
+
},{"./utils":349,"varint":329}],334:[function(require,module,exports){
|
|
81383
81412
|
'use strict'
|
|
81384
81413
|
|
|
81385
81414
|
const encoder = require('./encoder')
|
|
@@ -81402,7 +81431,7 @@ function boolDecode (buffer, dataView, offset) {
|
|
|
81402
81431
|
|
|
81403
81432
|
module.exports = encoder(0, boolEncode, boolDecode, boolEncodingLength)
|
|
81404
81433
|
|
|
81405
|
-
},{"./encoder":
|
|
81434
|
+
},{"./encoder":337}],335:[function(require,module,exports){
|
|
81406
81435
|
'use strict'
|
|
81407
81436
|
|
|
81408
81437
|
const varint = require('varint')
|
|
@@ -81446,7 +81475,7 @@ function bytesDecode (buffer, dataView, offset) {
|
|
|
81446
81475
|
|
|
81447
81476
|
module.exports = encoder(2, bytesEncode, bytesDecode, bytesEncodingLength)
|
|
81448
81477
|
|
|
81449
|
-
},{"./encoder":
|
|
81478
|
+
},{"./encoder":337,"varint":329}],336:[function(require,module,exports){
|
|
81450
81479
|
'use strict'
|
|
81451
81480
|
|
|
81452
81481
|
const encoder = require('./encoder')
|
|
@@ -81469,7 +81498,7 @@ function doubleDecode (buffer, dataView, offset) {
|
|
|
81469
81498
|
|
|
81470
81499
|
module.exports = encoder(1, doubleEncode, doubleDecode, doubleEncodingLength)
|
|
81471
81500
|
|
|
81472
|
-
},{"./encoder":
|
|
81501
|
+
},{"./encoder":337}],337:[function(require,module,exports){
|
|
81473
81502
|
'use strict'
|
|
81474
81503
|
|
|
81475
81504
|
function encoder (type, encode, decode, encodingLength) {
|
|
@@ -81485,7 +81514,7 @@ function encoder (type, encode, decode, encodingLength) {
|
|
|
81485
81514
|
|
|
81486
81515
|
module.exports = encoder
|
|
81487
81516
|
|
|
81488
|
-
},{}],
|
|
81517
|
+
},{}],338:[function(require,module,exports){
|
|
81489
81518
|
'use strict'
|
|
81490
81519
|
|
|
81491
81520
|
const encoder = require('./encoder')
|
|
@@ -81508,7 +81537,7 @@ function fixed32Decode (buffer, dataView, offset) {
|
|
|
81508
81537
|
|
|
81509
81538
|
module.exports = encoder(5, fixed32Encode, fixed32Decode, fixed32EncodingLength)
|
|
81510
81539
|
|
|
81511
|
-
},{"./encoder":
|
|
81540
|
+
},{"./encoder":337}],339:[function(require,module,exports){
|
|
81512
81541
|
'use strict'
|
|
81513
81542
|
|
|
81514
81543
|
const encoder = require('./encoder')
|
|
@@ -81535,7 +81564,7 @@ function fixed64Decode (buffer, dataView, offset) {
|
|
|
81535
81564
|
|
|
81536
81565
|
module.exports = encoder(1, fixed64Encode, fixed64Decode, fixed64EncodingLength)
|
|
81537
81566
|
|
|
81538
|
-
},{"./encoder":
|
|
81567
|
+
},{"./encoder":337}],340:[function(require,module,exports){
|
|
81539
81568
|
'use strict'
|
|
81540
81569
|
|
|
81541
81570
|
const encoder = require('./encoder')
|
|
@@ -81558,7 +81587,7 @@ function floatDecode (buffer, dataView, offset) {
|
|
|
81558
81587
|
|
|
81559
81588
|
module.exports = encoder(5, floatEncode, floatDecode, floatEncodingLength)
|
|
81560
81589
|
|
|
81561
|
-
},{"./encoder":
|
|
81590
|
+
},{"./encoder":337}],341:[function(require,module,exports){
|
|
81562
81591
|
'use strict'
|
|
81563
81592
|
|
|
81564
81593
|
exports.make = require('./encoder')
|
|
@@ -81582,7 +81611,7 @@ exports.fixed32 = require('./fixed32')
|
|
|
81582
81611
|
exports.sfixed32 = require('./sfixed32')
|
|
81583
81612
|
exports.float = require('./float')
|
|
81584
81613
|
|
|
81585
|
-
},{"./bool":
|
|
81614
|
+
},{"./bool":334,"./bytes":335,"./double":336,"./encoder":337,"./fixed32":338,"./fixed64":339,"./float":340,"./int32":342,"./int64":343,"./sfixed32":344,"./sint64":345,"./string":346,"./varint":347}],342:[function(require,module,exports){
|
|
81586
81615
|
'use strict'
|
|
81587
81616
|
|
|
81588
81617
|
const varint = require('varint')
|
|
@@ -81606,7 +81635,7 @@ function int32EncodingLength (val) {
|
|
|
81606
81635
|
|
|
81607
81636
|
module.exports = encoder(0, in32Encode, int32Decode, int32EncodingLength)
|
|
81608
81637
|
|
|
81609
|
-
},{"./encoder":
|
|
81638
|
+
},{"./encoder":337,"varint":329}],343:[function(require,module,exports){
|
|
81610
81639
|
'use strict'
|
|
81611
81640
|
|
|
81612
81641
|
const varint = require('varint')
|
|
@@ -81657,7 +81686,7 @@ function int64EncodingLength (val) {
|
|
|
81657
81686
|
|
|
81658
81687
|
module.exports = encoder(0, int64Encode, int64Decode, int64EncodingLength)
|
|
81659
81688
|
|
|
81660
|
-
},{"./encoder":
|
|
81689
|
+
},{"./encoder":337,"varint":329}],344:[function(require,module,exports){
|
|
81661
81690
|
'use strict'
|
|
81662
81691
|
|
|
81663
81692
|
const encoder = require('./encoder')
|
|
@@ -81680,7 +81709,7 @@ function sfixed32Decode (buffer, dataView, offset) {
|
|
|
81680
81709
|
|
|
81681
81710
|
module.exports = encoder(5, sfixed32Encode, sfixed32Decode, sfixed32EncodingLength)
|
|
81682
81711
|
|
|
81683
|
-
},{"./encoder":
|
|
81712
|
+
},{"./encoder":337}],345:[function(require,module,exports){
|
|
81684
81713
|
'use strict'
|
|
81685
81714
|
|
|
81686
81715
|
const svarint = require('signed-varint')
|
|
@@ -81701,7 +81730,7 @@ function svarintDecode (buffer, dataView, offset) {
|
|
|
81701
81730
|
|
|
81702
81731
|
module.exports = encoder(0, svarintEncode, svarintDecode, svarint.encodingLength)
|
|
81703
81732
|
|
|
81704
|
-
},{"./encoder":
|
|
81733
|
+
},{"./encoder":337,"signed-varint":397}],346:[function(require,module,exports){
|
|
81705
81734
|
'use strict'
|
|
81706
81735
|
|
|
81707
81736
|
const varint = require('varint')
|
|
@@ -81744,7 +81773,7 @@ function stringDecode (buffer, dataView, offset) {
|
|
|
81744
81773
|
|
|
81745
81774
|
module.exports = encoder(2, stringEncode, stringDecode, stringEncodingLength)
|
|
81746
81775
|
|
|
81747
|
-
},{"./encoder":
|
|
81776
|
+
},{"./encoder":337,"uint8arrays/from-string":440,"uint8arrays/to-string":441,"varint":329}],347:[function(require,module,exports){
|
|
81748
81777
|
'use strict'
|
|
81749
81778
|
|
|
81750
81779
|
const varint = require('varint')
|
|
@@ -81765,7 +81794,7 @@ function varintDecode (buffer, dataView, offset) {
|
|
|
81765
81794
|
|
|
81766
81795
|
module.exports = encoder(0, varintEncode, varintDecode, varint.encodingLength)
|
|
81767
81796
|
|
|
81768
|
-
},{"./encoder":
|
|
81797
|
+
},{"./encoder":337,"varint":329}],348:[function(require,module,exports){
|
|
81769
81798
|
'use strict'
|
|
81770
81799
|
|
|
81771
81800
|
const encodings = require('./encodings')
|
|
@@ -81932,14 +81961,14 @@ module.exports = function (schema, extraEncodings) {
|
|
|
81932
81961
|
}))
|
|
81933
81962
|
}
|
|
81934
81963
|
|
|
81935
|
-
},{"./decode":
|
|
81964
|
+
},{"./decode":331,"./encode":332,"./encoding-length":333,"./encodings":341,"varint":329}],349:[function(require,module,exports){
|
|
81936
81965
|
'use strict'
|
|
81937
81966
|
|
|
81938
81967
|
exports.defined = function (val) {
|
|
81939
81968
|
return val !== null && val !== undefined && (typeof val !== 'number' || !isNaN(val))
|
|
81940
81969
|
}
|
|
81941
81970
|
|
|
81942
|
-
},{}],
|
|
81971
|
+
},{}],350:[function(require,module,exports){
|
|
81943
81972
|
'use strict'
|
|
81944
81973
|
|
|
81945
81974
|
var schema = require('protocol-buffers-schema')
|
|
@@ -81980,7 +82009,7 @@ module.exports = function (proto, opts) {
|
|
|
81980
82009
|
return new Messages()
|
|
81981
82010
|
}
|
|
81982
82011
|
|
|
81983
|
-
},{"./compile":
|
|
82012
|
+
},{"./compile":348,"protocol-buffers-schema":323}],351:[function(require,module,exports){
|
|
81984
82013
|
/*!
|
|
81985
82014
|
* prr
|
|
81986
82015
|
* (c) 2013 Rod Vagg <rod@vagg.org>
|
|
@@ -82044,7 +82073,7 @@ module.exports = function (proto, opts) {
|
|
|
82044
82073
|
|
|
82045
82074
|
return prr
|
|
82046
82075
|
})
|
|
82047
|
-
},{}],
|
|
82076
|
+
},{}],352:[function(require,module,exports){
|
|
82048
82077
|
exports.publicEncrypt = require('./publicEncrypt')
|
|
82049
82078
|
exports.privateDecrypt = require('./privateDecrypt')
|
|
82050
82079
|
|
|
@@ -82056,7 +82085,7 @@ exports.publicDecrypt = function publicDecrypt (key, buf) {
|
|
|
82056
82085
|
return exports.privateDecrypt(key, buf, true)
|
|
82057
82086
|
}
|
|
82058
82087
|
|
|
82059
|
-
},{"./privateDecrypt":
|
|
82088
|
+
},{"./privateDecrypt":355,"./publicEncrypt":356}],353:[function(require,module,exports){
|
|
82060
82089
|
var createHash = require('create-hash')
|
|
82061
82090
|
var Buffer = require('safe-buffer').Buffer
|
|
82062
82091
|
|
|
@@ -82077,9 +82106,9 @@ function i2ops (c) {
|
|
|
82077
82106
|
return out
|
|
82078
82107
|
}
|
|
82079
82108
|
|
|
82080
|
-
},{"create-hash":
|
|
82081
|
-
arguments[4][
|
|
82082
|
-
},{"buffer":
|
|
82109
|
+
},{"create-hash":104,"safe-buffer":383}],354:[function(require,module,exports){
|
|
82110
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
82111
|
+
},{"buffer":55,"dup":27}],355:[function(require,module,exports){
|
|
82083
82112
|
var parseKeys = require('parse-asn1')
|
|
82084
82113
|
var mgf = require('./mgf')
|
|
82085
82114
|
var xor = require('./xor')
|
|
@@ -82186,7 +82215,7 @@ function compare (a, b) {
|
|
|
82186
82215
|
return dif
|
|
82187
82216
|
}
|
|
82188
82217
|
|
|
82189
|
-
},{"./mgf":
|
|
82218
|
+
},{"./mgf":353,"./withPublic":357,"./xor":358,"bn.js":354,"browserify-rsa":76,"create-hash":104,"parse-asn1":312,"safe-buffer":383}],356:[function(require,module,exports){
|
|
82190
82219
|
var parseKeys = require('parse-asn1')
|
|
82191
82220
|
var randomBytes = require('randombytes')
|
|
82192
82221
|
var createHash = require('create-hash')
|
|
@@ -82276,7 +82305,7 @@ function nonZero (len) {
|
|
|
82276
82305
|
return out
|
|
82277
82306
|
}
|
|
82278
82307
|
|
|
82279
|
-
},{"./mgf":
|
|
82308
|
+
},{"./mgf":353,"./withPublic":357,"./xor":358,"bn.js":354,"browserify-rsa":76,"create-hash":104,"parse-asn1":312,"randombytes":364,"safe-buffer":383}],357:[function(require,module,exports){
|
|
82280
82309
|
var BN = require('bn.js')
|
|
82281
82310
|
var Buffer = require('safe-buffer').Buffer
|
|
82282
82311
|
|
|
@@ -82290,7 +82319,7 @@ function withPublic (paddedMsg, key) {
|
|
|
82290
82319
|
|
|
82291
82320
|
module.exports = withPublic
|
|
82292
82321
|
|
|
82293
|
-
},{"bn.js":
|
|
82322
|
+
},{"bn.js":354,"safe-buffer":383}],358:[function(require,module,exports){
|
|
82294
82323
|
module.exports = function xor (a, b) {
|
|
82295
82324
|
var len = a.length
|
|
82296
82325
|
var i = -1
|
|
@@ -82300,7 +82329,7 @@ module.exports = function xor (a, b) {
|
|
|
82300
82329
|
return a
|
|
82301
82330
|
}
|
|
82302
82331
|
|
|
82303
|
-
},{}],
|
|
82332
|
+
},{}],359:[function(require,module,exports){
|
|
82304
82333
|
(function (global){(function (){
|
|
82305
82334
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
82306
82335
|
;(function(root) {
|
|
@@ -82837,7 +82866,7 @@ module.exports = function xor (a, b) {
|
|
|
82837
82866
|
}(this));
|
|
82838
82867
|
|
|
82839
82868
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
82840
|
-
},{}],
|
|
82869
|
+
},{}],360:[function(require,module,exports){
|
|
82841
82870
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
82842
82871
|
//
|
|
82843
82872
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -82923,7 +82952,7 @@ var isArray = Array.isArray || function (xs) {
|
|
|
82923
82952
|
return Object.prototype.toString.call(xs) === '[object Array]';
|
|
82924
82953
|
};
|
|
82925
82954
|
|
|
82926
|
-
},{}],
|
|
82955
|
+
},{}],361:[function(require,module,exports){
|
|
82927
82956
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
82928
82957
|
//
|
|
82929
82958
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -83010,13 +83039,13 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
83010
83039
|
return res;
|
|
83011
83040
|
};
|
|
83012
83041
|
|
|
83013
|
-
},{}],
|
|
83042
|
+
},{}],362:[function(require,module,exports){
|
|
83014
83043
|
'use strict';
|
|
83015
83044
|
|
|
83016
83045
|
exports.decode = exports.parse = require('./decode');
|
|
83017
83046
|
exports.encode = exports.stringify = require('./encode');
|
|
83018
83047
|
|
|
83019
|
-
},{"./decode":
|
|
83048
|
+
},{"./decode":360,"./encode":361}],363:[function(require,module,exports){
|
|
83020
83049
|
/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
83021
83050
|
let promise
|
|
83022
83051
|
|
|
@@ -83027,7 +83056,7 @@ module.exports = typeof queueMicrotask === 'function'
|
|
|
83027
83056
|
.then(cb)
|
|
83028
83057
|
.catch(err => setTimeout(() => { throw err }, 0))
|
|
83029
83058
|
|
|
83030
|
-
},{}],
|
|
83059
|
+
},{}],364:[function(require,module,exports){
|
|
83031
83060
|
(function (process,global){(function (){
|
|
83032
83061
|
'use strict'
|
|
83033
83062
|
|
|
@@ -83081,7 +83110,7 @@ function randomBytes (size, cb) {
|
|
|
83081
83110
|
}
|
|
83082
83111
|
|
|
83083
83112
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
83084
|
-
},{"_process":
|
|
83113
|
+
},{"_process":322,"safe-buffer":383}],365:[function(require,module,exports){
|
|
83085
83114
|
(function (process,global){(function (){
|
|
83086
83115
|
'use strict'
|
|
83087
83116
|
|
|
@@ -83193,7 +83222,7 @@ function randomFillSync (buf, offset, size) {
|
|
|
83193
83222
|
}
|
|
83194
83223
|
|
|
83195
83224
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
83196
|
-
},{"_process":
|
|
83225
|
+
},{"_process":322,"randombytes":364,"safe-buffer":383}],366:[function(require,module,exports){
|
|
83197
83226
|
'use strict';
|
|
83198
83227
|
|
|
83199
83228
|
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
|
@@ -83322,7 +83351,7 @@ createErrorType('ERR_UNKNOWN_ENCODING', function (arg) {
|
|
|
83322
83351
|
createErrorType('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event');
|
|
83323
83352
|
module.exports.codes = codes;
|
|
83324
83353
|
|
|
83325
|
-
},{}],
|
|
83354
|
+
},{}],367:[function(require,module,exports){
|
|
83326
83355
|
(function (process){(function (){
|
|
83327
83356
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83328
83357
|
//
|
|
@@ -83464,7 +83493,7 @@ Object.defineProperty(Duplex.prototype, 'destroyed', {
|
|
|
83464
83493
|
}
|
|
83465
83494
|
});
|
|
83466
83495
|
}).call(this)}).call(this,require('_process'))
|
|
83467
|
-
},{"./_stream_readable":
|
|
83496
|
+
},{"./_stream_readable":369,"./_stream_writable":371,"_process":322,"inherits":210}],368:[function(require,module,exports){
|
|
83468
83497
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83469
83498
|
//
|
|
83470
83499
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -83504,7 +83533,7 @@ function PassThrough(options) {
|
|
|
83504
83533
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
83505
83534
|
cb(null, chunk);
|
|
83506
83535
|
};
|
|
83507
|
-
},{"./_stream_transform":
|
|
83536
|
+
},{"./_stream_transform":370,"inherits":210}],369:[function(require,module,exports){
|
|
83508
83537
|
(function (process,global){(function (){
|
|
83509
83538
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
83510
83539
|
//
|
|
@@ -84631,7 +84660,7 @@ function indexOf(xs, x) {
|
|
|
84631
84660
|
return -1;
|
|
84632
84661
|
}
|
|
84633
84662
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
84634
|
-
},{"../errors":
|
|
84663
|
+
},{"../errors":366,"./_stream_duplex":367,"./internal/streams/async_iterator":372,"./internal/streams/buffer_list":373,"./internal/streams/destroy":374,"./internal/streams/from":376,"./internal/streams/state":378,"./internal/streams/stream":379,"_process":322,"buffer":91,"events":178,"inherits":210,"string_decoder/":427,"util":55}],370:[function(require,module,exports){
|
|
84635
84664
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
84636
84665
|
//
|
|
84637
84666
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -84833,7 +84862,7 @@ function done(stream, er, data) {
|
|
|
84833
84862
|
if (stream._transformState.transforming) throw new ERR_TRANSFORM_ALREADY_TRANSFORMING();
|
|
84834
84863
|
return stream.push(null);
|
|
84835
84864
|
}
|
|
84836
|
-
},{"../errors":
|
|
84865
|
+
},{"../errors":366,"./_stream_duplex":367,"inherits":210}],371:[function(require,module,exports){
|
|
84837
84866
|
(function (process,global){(function (){
|
|
84838
84867
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
84839
84868
|
//
|
|
@@ -85533,7 +85562,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
85533
85562
|
cb(err);
|
|
85534
85563
|
};
|
|
85535
85564
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
85536
|
-
},{"../errors":
|
|
85565
|
+
},{"../errors":366,"./_stream_duplex":367,"./internal/streams/destroy":374,"./internal/streams/state":378,"./internal/streams/stream":379,"_process":322,"buffer":91,"inherits":210,"util-deprecate":445}],372:[function(require,module,exports){
|
|
85537
85566
|
(function (process){(function (){
|
|
85538
85567
|
'use strict';
|
|
85539
85568
|
|
|
@@ -85743,7 +85772,7 @@ var createReadableStreamAsyncIterator = function createReadableStreamAsyncIterat
|
|
|
85743
85772
|
|
|
85744
85773
|
module.exports = createReadableStreamAsyncIterator;
|
|
85745
85774
|
}).call(this)}).call(this,require('_process'))
|
|
85746
|
-
},{"./end-of-stream":
|
|
85775
|
+
},{"./end-of-stream":375,"_process":322}],373:[function(require,module,exports){
|
|
85747
85776
|
'use strict';
|
|
85748
85777
|
|
|
85749
85778
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -85954,7 +85983,7 @@ function () {
|
|
|
85954
85983
|
|
|
85955
85984
|
return BufferList;
|
|
85956
85985
|
}();
|
|
85957
|
-
},{"buffer":
|
|
85986
|
+
},{"buffer":91,"util":55}],374:[function(require,module,exports){
|
|
85958
85987
|
(function (process){(function (){
|
|
85959
85988
|
'use strict'; // undocumented cb() API, needed for core, not for public API
|
|
85960
85989
|
|
|
@@ -86062,7 +86091,7 @@ module.exports = {
|
|
|
86062
86091
|
errorOrDestroy: errorOrDestroy
|
|
86063
86092
|
};
|
|
86064
86093
|
}).call(this)}).call(this,require('_process'))
|
|
86065
|
-
},{"_process":
|
|
86094
|
+
},{"_process":322}],375:[function(require,module,exports){
|
|
86066
86095
|
// Ported from https://github.com/mafintosh/end-of-stream with
|
|
86067
86096
|
// permission from the author, Mathias Buus (@mafintosh).
|
|
86068
86097
|
'use strict';
|
|
@@ -86167,12 +86196,12 @@ function eos(stream, opts, callback) {
|
|
|
86167
86196
|
}
|
|
86168
86197
|
|
|
86169
86198
|
module.exports = eos;
|
|
86170
|
-
},{"../../../errors":
|
|
86199
|
+
},{"../../../errors":366}],376:[function(require,module,exports){
|
|
86171
86200
|
module.exports = function () {
|
|
86172
86201
|
throw new Error('Readable.from is not available in the browser')
|
|
86173
86202
|
};
|
|
86174
86203
|
|
|
86175
|
-
},{}],
|
|
86204
|
+
},{}],377:[function(require,module,exports){
|
|
86176
86205
|
// Ported from https://github.com/mafintosh/pump with
|
|
86177
86206
|
// permission from the author, Mathias Buus (@mafintosh).
|
|
86178
86207
|
'use strict';
|
|
@@ -86270,7 +86299,7 @@ function pipeline() {
|
|
|
86270
86299
|
}
|
|
86271
86300
|
|
|
86272
86301
|
module.exports = pipeline;
|
|
86273
|
-
},{"../../../errors":
|
|
86302
|
+
},{"../../../errors":366,"./end-of-stream":375}],378:[function(require,module,exports){
|
|
86274
86303
|
'use strict';
|
|
86275
86304
|
|
|
86276
86305
|
var ERR_INVALID_OPT_VALUE = require('../../../errors').codes.ERR_INVALID_OPT_VALUE;
|
|
@@ -86298,10 +86327,10 @@ function getHighWaterMark(state, options, duplexKey, isDuplex) {
|
|
|
86298
86327
|
module.exports = {
|
|
86299
86328
|
getHighWaterMark: getHighWaterMark
|
|
86300
86329
|
};
|
|
86301
|
-
},{"../../../errors":
|
|
86330
|
+
},{"../../../errors":366}],379:[function(require,module,exports){
|
|
86302
86331
|
module.exports = require('events').EventEmitter;
|
|
86303
86332
|
|
|
86304
|
-
},{"events":
|
|
86333
|
+
},{"events":178}],380:[function(require,module,exports){
|
|
86305
86334
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
86306
86335
|
exports.Stream = exports;
|
|
86307
86336
|
exports.Readable = exports;
|
|
@@ -86312,7 +86341,7 @@ exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
|
86312
86341
|
exports.finished = require('./lib/internal/streams/end-of-stream.js');
|
|
86313
86342
|
exports.pipeline = require('./lib/internal/streams/pipeline.js');
|
|
86314
86343
|
|
|
86315
|
-
},{"./lib/_stream_duplex.js":
|
|
86344
|
+
},{"./lib/_stream_duplex.js":367,"./lib/_stream_passthrough.js":368,"./lib/_stream_readable.js":369,"./lib/_stream_transform.js":370,"./lib/_stream_writable.js":371,"./lib/internal/streams/end-of-stream.js":375,"./lib/internal/streams/pipeline.js":377}],381:[function(require,module,exports){
|
|
86316
86345
|
'use strict'
|
|
86317
86346
|
var Buffer = require('buffer').Buffer
|
|
86318
86347
|
var inherits = require('inherits')
|
|
@@ -86477,7 +86506,7 @@ function fn5 (a, b, c, d, e, m, k, s) {
|
|
|
86477
86506
|
|
|
86478
86507
|
module.exports = RIPEMD160
|
|
86479
86508
|
|
|
86480
|
-
},{"buffer":
|
|
86509
|
+
},{"buffer":91,"hash-base":182,"inherits":210}],382:[function(require,module,exports){
|
|
86481
86510
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
86482
86511
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
86483
86512
|
module.exports = factory();
|
|
@@ -87406,7 +87435,7 @@ module.exports = function () {
|
|
|
87406
87435
|
/***/ })
|
|
87407
87436
|
/******/ ]);
|
|
87408
87437
|
});
|
|
87409
|
-
},{}],
|
|
87438
|
+
},{}],383:[function(require,module,exports){
|
|
87410
87439
|
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
87411
87440
|
/* eslint-disable node/no-deprecated-api */
|
|
87412
87441
|
var buffer = require('buffer')
|
|
@@ -87473,7 +87502,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
87473
87502
|
return buffer.SlowBuffer(size)
|
|
87474
87503
|
}
|
|
87475
87504
|
|
|
87476
|
-
},{"buffer":
|
|
87505
|
+
},{"buffer":91}],384:[function(require,module,exports){
|
|
87477
87506
|
(function (process){(function (){
|
|
87478
87507
|
/* eslint-disable node/no-deprecated-api */
|
|
87479
87508
|
|
|
@@ -87554,10 +87583,10 @@ if (!safer.constants) {
|
|
|
87554
87583
|
module.exports = safer
|
|
87555
87584
|
|
|
87556
87585
|
}).call(this)}).call(this,require('_process'))
|
|
87557
|
-
},{"_process":
|
|
87586
|
+
},{"_process":322,"buffer":91}],385:[function(require,module,exports){
|
|
87558
87587
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
87559
87588
|
|
|
87560
|
-
},{"./lib":
|
|
87589
|
+
},{"./lib":387,"./lib/elliptic":386}],386:[function(require,module,exports){
|
|
87561
87590
|
const EC = require('elliptic').ec
|
|
87562
87591
|
|
|
87563
87592
|
const ec = new EC('secp256k1')
|
|
@@ -87961,7 +87990,7 @@ module.exports = {
|
|
|
87961
87990
|
}
|
|
87962
87991
|
}
|
|
87963
87992
|
|
|
87964
|
-
},{"elliptic":
|
|
87993
|
+
},{"elliptic":149}],387:[function(require,module,exports){
|
|
87965
87994
|
const errors = {
|
|
87966
87995
|
IMPOSSIBLE_CASE: 'Impossible case. Please create issue.',
|
|
87967
87996
|
TWEAK_ADD:
|
|
@@ -88299,7 +88328,7 @@ module.exports = (secp256k1) => {
|
|
|
88299
88328
|
}
|
|
88300
88329
|
}
|
|
88301
88330
|
|
|
88302
|
-
},{}],
|
|
88331
|
+
},{}],388:[function(require,module,exports){
|
|
88303
88332
|
'use strict'
|
|
88304
88333
|
/* eslint no-proto: 0 */
|
|
88305
88334
|
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
|
@@ -88318,7 +88347,7 @@ function mixinProperties (obj, proto) {
|
|
|
88318
88347
|
return obj
|
|
88319
88348
|
}
|
|
88320
88349
|
|
|
88321
|
-
},{}],
|
|
88350
|
+
},{}],389:[function(require,module,exports){
|
|
88322
88351
|
var Buffer = require('safe-buffer').Buffer
|
|
88323
88352
|
|
|
88324
88353
|
// prototype class for hash functions
|
|
@@ -88401,7 +88430,7 @@ Hash.prototype._update = function () {
|
|
|
88401
88430
|
|
|
88402
88431
|
module.exports = Hash
|
|
88403
88432
|
|
|
88404
|
-
},{"safe-buffer":
|
|
88433
|
+
},{"safe-buffer":383}],390:[function(require,module,exports){
|
|
88405
88434
|
var exports = module.exports = function SHA (algorithm) {
|
|
88406
88435
|
algorithm = algorithm.toLowerCase()
|
|
88407
88436
|
|
|
@@ -88418,7 +88447,7 @@ exports.sha256 = require('./sha256')
|
|
|
88418
88447
|
exports.sha384 = require('./sha384')
|
|
88419
88448
|
exports.sha512 = require('./sha512')
|
|
88420
88449
|
|
|
88421
|
-
},{"./sha":
|
|
88450
|
+
},{"./sha":391,"./sha1":392,"./sha224":393,"./sha256":394,"./sha384":395,"./sha512":396}],391:[function(require,module,exports){
|
|
88422
88451
|
/*
|
|
88423
88452
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined
|
|
88424
88453
|
* in FIPS PUB 180-1
|
|
@@ -88514,7 +88543,7 @@ Sha.prototype._hash = function () {
|
|
|
88514
88543
|
|
|
88515
88544
|
module.exports = Sha
|
|
88516
88545
|
|
|
88517
|
-
},{"./hash":
|
|
88546
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],392:[function(require,module,exports){
|
|
88518
88547
|
/*
|
|
88519
88548
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
|
88520
88549
|
* in FIPS PUB 180-1
|
|
@@ -88615,7 +88644,7 @@ Sha1.prototype._hash = function () {
|
|
|
88615
88644
|
|
|
88616
88645
|
module.exports = Sha1
|
|
88617
88646
|
|
|
88618
|
-
},{"./hash":
|
|
88647
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],393:[function(require,module,exports){
|
|
88619
88648
|
/**
|
|
88620
88649
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
88621
88650
|
* in FIPS 180-2
|
|
@@ -88670,7 +88699,7 @@ Sha224.prototype._hash = function () {
|
|
|
88670
88699
|
|
|
88671
88700
|
module.exports = Sha224
|
|
88672
88701
|
|
|
88673
|
-
},{"./hash":
|
|
88702
|
+
},{"./hash":389,"./sha256":394,"inherits":210,"safe-buffer":383}],394:[function(require,module,exports){
|
|
88674
88703
|
/**
|
|
88675
88704
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
88676
88705
|
* in FIPS 180-2
|
|
@@ -88807,7 +88836,7 @@ Sha256.prototype._hash = function () {
|
|
|
88807
88836
|
|
|
88808
88837
|
module.exports = Sha256
|
|
88809
88838
|
|
|
88810
|
-
},{"./hash":
|
|
88839
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],395:[function(require,module,exports){
|
|
88811
88840
|
var inherits = require('inherits')
|
|
88812
88841
|
var SHA512 = require('./sha512')
|
|
88813
88842
|
var Hash = require('./hash')
|
|
@@ -88866,7 +88895,7 @@ Sha384.prototype._hash = function () {
|
|
|
88866
88895
|
|
|
88867
88896
|
module.exports = Sha384
|
|
88868
88897
|
|
|
88869
|
-
},{"./hash":
|
|
88898
|
+
},{"./hash":389,"./sha512":396,"inherits":210,"safe-buffer":383}],396:[function(require,module,exports){
|
|
88870
88899
|
var inherits = require('inherits')
|
|
88871
88900
|
var Hash = require('./hash')
|
|
88872
88901
|
var Buffer = require('safe-buffer').Buffer
|
|
@@ -89128,7 +89157,7 @@ Sha512.prototype._hash = function () {
|
|
|
89128
89157
|
|
|
89129
89158
|
module.exports = Sha512
|
|
89130
89159
|
|
|
89131
|
-
},{"./hash":
|
|
89160
|
+
},{"./hash":389,"inherits":210,"safe-buffer":383}],397:[function(require,module,exports){
|
|
89132
89161
|
var varint = require('varint')
|
|
89133
89162
|
exports.encode = function encode (v, b, o) {
|
|
89134
89163
|
v = v >= 0 ? v*2 : v*-2 - 1
|
|
@@ -89146,15 +89175,15 @@ exports.encodingLength = function (v) {
|
|
|
89146
89175
|
return varint.encodingLength(v >= 0 ? v*2 : v*-2 - 1)
|
|
89147
89176
|
}
|
|
89148
89177
|
|
|
89149
|
-
},{"varint":
|
|
89150
|
-
arguments[4][268][0].apply(exports,arguments)
|
|
89151
|
-
},{"dup":268}],398:[function(require,module,exports){
|
|
89178
|
+
},{"varint":400}],398:[function(require,module,exports){
|
|
89152
89179
|
arguments[4][269][0].apply(exports,arguments)
|
|
89153
89180
|
},{"dup":269}],399:[function(require,module,exports){
|
|
89154
89181
|
arguments[4][270][0].apply(exports,arguments)
|
|
89155
|
-
},{"
|
|
89182
|
+
},{"dup":270}],400:[function(require,module,exports){
|
|
89156
89183
|
arguments[4][271][0].apply(exports,arguments)
|
|
89157
|
-
},{"dup":271}],401:[function(require,module,exports){
|
|
89184
|
+
},{"./decode.js":398,"./encode.js":399,"./length.js":401,"dup":271}],401:[function(require,module,exports){
|
|
89185
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
89186
|
+
},{"dup":272}],402:[function(require,module,exports){
|
|
89158
89187
|
/*! simple-peer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
89159
89188
|
const debug = require('debug')('simple-peer')
|
|
89160
89189
|
const getBrowserRTC = require('get-browser-rtc')
|
|
@@ -90180,7 +90209,7 @@ Peer.channelConfig = {}
|
|
|
90180
90209
|
|
|
90181
90210
|
module.exports = Peer
|
|
90182
90211
|
|
|
90183
|
-
},{"buffer":
|
|
90212
|
+
},{"buffer":91,"debug":122,"err-code":173,"get-browser-rtc":181,"queue-microtask":363,"randombytes":364,"readable-stream":380}],403:[function(require,module,exports){
|
|
90184
90213
|
/* global self */
|
|
90185
90214
|
|
|
90186
90215
|
var Rusha = require('rusha')
|
|
@@ -90258,7 +90287,7 @@ function hex (buf) {
|
|
|
90258
90287
|
module.exports = sha1
|
|
90259
90288
|
module.exports.sync = sha1sync
|
|
90260
90289
|
|
|
90261
|
-
},{"./rusha-worker-sha1":
|
|
90290
|
+
},{"./rusha-worker-sha1":404,"rusha":382}],404:[function(require,module,exports){
|
|
90262
90291
|
var Rusha = require('rusha')
|
|
90263
90292
|
|
|
90264
90293
|
var worker
|
|
@@ -90293,7 +90322,7 @@ function sha1 (buf, cb) {
|
|
|
90293
90322
|
|
|
90294
90323
|
module.exports = sha1
|
|
90295
90324
|
|
|
90296
|
-
},{"rusha":
|
|
90325
|
+
},{"rusha":382}],405:[function(require,module,exports){
|
|
90297
90326
|
module.exports={
|
|
90298
90327
|
"100": "Continue",
|
|
90299
90328
|
"101": "Switching Protocols",
|
|
@@ -90361,7 +90390,7 @@ module.exports={
|
|
|
90361
90390
|
"511": "Network Authentication Required"
|
|
90362
90391
|
}
|
|
90363
90392
|
|
|
90364
|
-
},{}],
|
|
90393
|
+
},{}],406:[function(require,module,exports){
|
|
90365
90394
|
/*!
|
|
90366
90395
|
* statuses
|
|
90367
90396
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -90476,7 +90505,7 @@ function status (code) {
|
|
|
90476
90505
|
return n
|
|
90477
90506
|
}
|
|
90478
90507
|
|
|
90479
|
-
},{"./codes.json":
|
|
90508
|
+
},{"./codes.json":405}],407:[function(require,module,exports){
|
|
90480
90509
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90481
90510
|
//
|
|
90482
90511
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90605,10 +90634,10 @@ Stream.prototype.pipe = function(dest, options) {
|
|
|
90605
90634
|
return dest;
|
|
90606
90635
|
};
|
|
90607
90636
|
|
|
90608
|
-
},{"events":
|
|
90637
|
+
},{"events":178,"inherits":210,"readable-stream/duplex.js":408,"readable-stream/passthrough.js":417,"readable-stream/readable.js":418,"readable-stream/transform.js":419,"readable-stream/writable.js":420}],408:[function(require,module,exports){
|
|
90609
90638
|
module.exports = require('./lib/_stream_duplex.js');
|
|
90610
90639
|
|
|
90611
|
-
},{"./lib/_stream_duplex.js":
|
|
90640
|
+
},{"./lib/_stream_duplex.js":409}],409:[function(require,module,exports){
|
|
90612
90641
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90613
90642
|
//
|
|
90614
90643
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90740,7 +90769,7 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
|
90740
90769
|
|
|
90741
90770
|
pna.nextTick(cb, err);
|
|
90742
90771
|
};
|
|
90743
|
-
},{"./_stream_readable":
|
|
90772
|
+
},{"./_stream_readable":411,"./_stream_writable":413,"core-util-is":101,"inherits":210,"process-nextick-args":321}],410:[function(require,module,exports){
|
|
90744
90773
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90745
90774
|
//
|
|
90746
90775
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -90788,7 +90817,7 @@ function PassThrough(options) {
|
|
|
90788
90817
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
90789
90818
|
cb(null, chunk);
|
|
90790
90819
|
};
|
|
90791
|
-
},{"./_stream_transform":
|
|
90820
|
+
},{"./_stream_transform":412,"core-util-is":101,"inherits":210}],411:[function(require,module,exports){
|
|
90792
90821
|
(function (process,global){(function (){
|
|
90793
90822
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
90794
90823
|
//
|
|
@@ -91810,7 +91839,7 @@ function indexOf(xs, x) {
|
|
|
91810
91839
|
return -1;
|
|
91811
91840
|
}
|
|
91812
91841
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
91813
|
-
},{"./_stream_duplex":
|
|
91842
|
+
},{"./_stream_duplex":409,"./internal/streams/BufferList":414,"./internal/streams/destroy":415,"./internal/streams/stream":416,"_process":322,"core-util-is":101,"events":178,"inherits":210,"isarray":222,"process-nextick-args":321,"safe-buffer":421,"string_decoder/":422,"util":55}],412:[function(require,module,exports){
|
|
91814
91843
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
91815
91844
|
//
|
|
91816
91845
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -92025,7 +92054,7 @@ function done(stream, er, data) {
|
|
|
92025
92054
|
|
|
92026
92055
|
return stream.push(null);
|
|
92027
92056
|
}
|
|
92028
|
-
},{"./_stream_duplex":
|
|
92057
|
+
},{"./_stream_duplex":409,"core-util-is":101,"inherits":210}],413:[function(require,module,exports){
|
|
92029
92058
|
(function (process,global,setImmediate){(function (){
|
|
92030
92059
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
92031
92060
|
//
|
|
@@ -92715,7 +92744,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
92715
92744
|
cb(err);
|
|
92716
92745
|
};
|
|
92717
92746
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("timers").setImmediate)
|
|
92718
|
-
},{"./_stream_duplex":
|
|
92747
|
+
},{"./_stream_duplex":409,"./internal/streams/destroy":415,"./internal/streams/stream":416,"_process":322,"core-util-is":101,"inherits":210,"process-nextick-args":321,"safe-buffer":421,"timers":428,"util-deprecate":445}],414:[function(require,module,exports){
|
|
92719
92748
|
'use strict';
|
|
92720
92749
|
|
|
92721
92750
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -92795,7 +92824,7 @@ if (util && util.inspect && util.inspect.custom) {
|
|
|
92795
92824
|
return this.constructor.name + ' ' + obj;
|
|
92796
92825
|
};
|
|
92797
92826
|
}
|
|
92798
|
-
},{"safe-buffer":
|
|
92827
|
+
},{"safe-buffer":421,"util":55}],415:[function(require,module,exports){
|
|
92799
92828
|
'use strict';
|
|
92800
92829
|
|
|
92801
92830
|
/*<replacement>*/
|
|
@@ -92870,12 +92899,12 @@ module.exports = {
|
|
|
92870
92899
|
destroy: destroy,
|
|
92871
92900
|
undestroy: undestroy
|
|
92872
92901
|
};
|
|
92873
|
-
},{"process-nextick-args":
|
|
92874
|
-
arguments[4][
|
|
92875
|
-
},{"dup":
|
|
92902
|
+
},{"process-nextick-args":321}],416:[function(require,module,exports){
|
|
92903
|
+
arguments[4][379][0].apply(exports,arguments)
|
|
92904
|
+
},{"dup":379,"events":178}],417:[function(require,module,exports){
|
|
92876
92905
|
module.exports = require('./readable').PassThrough
|
|
92877
92906
|
|
|
92878
|
-
},{"./readable":
|
|
92907
|
+
},{"./readable":418}],418:[function(require,module,exports){
|
|
92879
92908
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
92880
92909
|
exports.Stream = exports;
|
|
92881
92910
|
exports.Readable = exports;
|
|
@@ -92884,15 +92913,15 @@ exports.Duplex = require('./lib/_stream_duplex.js');
|
|
|
92884
92913
|
exports.Transform = require('./lib/_stream_transform.js');
|
|
92885
92914
|
exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
92886
92915
|
|
|
92887
|
-
},{"./lib/_stream_duplex.js":
|
|
92916
|
+
},{"./lib/_stream_duplex.js":409,"./lib/_stream_passthrough.js":410,"./lib/_stream_readable.js":411,"./lib/_stream_transform.js":412,"./lib/_stream_writable.js":413}],419:[function(require,module,exports){
|
|
92888
92917
|
module.exports = require('./readable').Transform
|
|
92889
92918
|
|
|
92890
|
-
},{"./readable":
|
|
92919
|
+
},{"./readable":418}],420:[function(require,module,exports){
|
|
92891
92920
|
module.exports = require('./lib/_stream_writable.js');
|
|
92892
92921
|
|
|
92893
|
-
},{"./lib/_stream_writable.js":
|
|
92894
|
-
arguments[4][
|
|
92895
|
-
},{"buffer":
|
|
92922
|
+
},{"./lib/_stream_writable.js":413}],421:[function(require,module,exports){
|
|
92923
|
+
arguments[4][98][0].apply(exports,arguments)
|
|
92924
|
+
},{"buffer":91,"dup":98}],422:[function(require,module,exports){
|
|
92896
92925
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
92897
92926
|
//
|
|
92898
92927
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -93189,7 +93218,7 @@ function simpleWrite(buf) {
|
|
|
93189
93218
|
function simpleEnd(buf) {
|
|
93190
93219
|
return buf && buf.length ? this.write(buf) : '';
|
|
93191
93220
|
}
|
|
93192
|
-
},{"safe-buffer":
|
|
93221
|
+
},{"safe-buffer":421}],423:[function(require,module,exports){
|
|
93193
93222
|
(function (global){(function (){
|
|
93194
93223
|
var ClientRequest = require('./lib/request')
|
|
93195
93224
|
var response = require('./lib/response')
|
|
@@ -93277,7 +93306,7 @@ http.METHODS = [
|
|
|
93277
93306
|
'UNSUBSCRIBE'
|
|
93278
93307
|
]
|
|
93279
93308
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
93280
|
-
},{"./lib/request":
|
|
93309
|
+
},{"./lib/request":425,"./lib/response":426,"builtin-status-codes":92,"url":443,"xtend":458}],424:[function(require,module,exports){
|
|
93281
93310
|
(function (global){(function (){
|
|
93282
93311
|
exports.fetch = isFunction(global.fetch) && isFunction(global.ReadableStream)
|
|
93283
93312
|
|
|
@@ -93340,7 +93369,7 @@ function isFunction (value) {
|
|
|
93340
93369
|
xhr = null // Help gc
|
|
93341
93370
|
|
|
93342
93371
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
93343
|
-
},{}],
|
|
93372
|
+
},{}],425:[function(require,module,exports){
|
|
93344
93373
|
(function (process,global,Buffer){(function (){
|
|
93345
93374
|
var capability = require('./capability')
|
|
93346
93375
|
var inherits = require('inherits')
|
|
@@ -93696,7 +93725,7 @@ var unsafeHeaders = [
|
|
|
93696
93725
|
]
|
|
93697
93726
|
|
|
93698
93727
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
|
93699
|
-
},{"./capability":
|
|
93728
|
+
},{"./capability":424,"./response":426,"_process":322,"buffer":91,"inherits":210,"readable-stream":380}],426:[function(require,module,exports){
|
|
93700
93729
|
(function (process,global,Buffer){(function (){
|
|
93701
93730
|
var capability = require('./capability')
|
|
93702
93731
|
var inherits = require('inherits')
|
|
@@ -93911,9 +93940,9 @@ IncomingMessage.prototype._onXHRProgress = function (resetTimers) {
|
|
|
93911
93940
|
}
|
|
93912
93941
|
|
|
93913
93942
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
|
93914
|
-
},{"./capability":
|
|
93915
|
-
arguments[4][
|
|
93916
|
-
},{"dup":
|
|
93943
|
+
},{"./capability":424,"_process":322,"buffer":91,"inherits":210,"readable-stream":380}],427:[function(require,module,exports){
|
|
93944
|
+
arguments[4][422][0].apply(exports,arguments)
|
|
93945
|
+
},{"dup":422,"safe-buffer":383}],428:[function(require,module,exports){
|
|
93917
93946
|
(function (setImmediate,clearImmediate){(function (){
|
|
93918
93947
|
var nextTick = require('process/browser.js').nextTick;
|
|
93919
93948
|
var apply = Function.prototype.apply;
|
|
@@ -93992,7 +94021,7 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
|
|
|
93992
94021
|
delete immediateIds[id];
|
|
93993
94022
|
};
|
|
93994
94023
|
}).call(this)}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
|
93995
|
-
},{"process/browser.js":
|
|
94024
|
+
},{"process/browser.js":322,"timers":428}],429:[function(require,module,exports){
|
|
93996
94025
|
(function (Buffer){(function (){
|
|
93997
94026
|
const BN = require('bn.js')
|
|
93998
94027
|
const EC = require('elliptic').ec
|
|
@@ -94278,9 +94307,9 @@ module.exports = {
|
|
|
94278
94307
|
}
|
|
94279
94308
|
|
|
94280
94309
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94281
|
-
},{"./rfc6979":
|
|
94282
|
-
arguments[4][
|
|
94283
|
-
},{"buffer":
|
|
94310
|
+
},{"./rfc6979":431,"bn.js":430,"buffer":91,"elliptic":149}],430:[function(require,module,exports){
|
|
94311
|
+
arguments[4][27][0].apply(exports,arguments)
|
|
94312
|
+
},{"buffer":55,"dup":27}],431:[function(require,module,exports){
|
|
94284
94313
|
(function (Buffer){(function (){
|
|
94285
94314
|
const createHmac = require('create-hmac')
|
|
94286
94315
|
|
|
@@ -94346,7 +94375,7 @@ function deterministicGenerateK (hash, x, checkSig, isPrivate, extraEntropy) {
|
|
|
94346
94375
|
module.exports = deterministicGenerateK
|
|
94347
94376
|
|
|
94348
94377
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94349
|
-
},{"buffer":
|
|
94378
|
+
},{"buffer":91,"create-hmac":106}],432:[function(require,module,exports){
|
|
94350
94379
|
/*!
|
|
94351
94380
|
* toidentifier
|
|
94352
94381
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
@@ -94378,7 +94407,7 @@ function toIdentifier (str) {
|
|
|
94378
94407
|
.replace(/[^ _0-9a-z]/gi, '')
|
|
94379
94408
|
}
|
|
94380
94409
|
|
|
94381
|
-
},{}],
|
|
94410
|
+
},{}],433:[function(require,module,exports){
|
|
94382
94411
|
'use strict';
|
|
94383
94412
|
|
|
94384
94413
|
// Implements Brad Hill's Double HMAC pattern from
|
|
@@ -94418,7 +94447,7 @@ function timeSafeCompare(a, b) {
|
|
|
94418
94447
|
|
|
94419
94448
|
module.exports = timeSafeCompare;
|
|
94420
94449
|
|
|
94421
|
-
},{"crypto":
|
|
94450
|
+
},{"crypto":108}],434:[function(require,module,exports){
|
|
94422
94451
|
/*!
|
|
94423
94452
|
* type-is
|
|
94424
94453
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -94686,7 +94715,7 @@ function tryNormalizeType (value) {
|
|
|
94686
94715
|
}
|
|
94687
94716
|
}
|
|
94688
94717
|
|
|
94689
|
-
},{"media-typer":
|
|
94718
|
+
},{"media-typer":259,"mime-types":264}],435:[function(require,module,exports){
|
|
94690
94719
|
(function (Buffer){(function (){
|
|
94691
94720
|
/**
|
|
94692
94721
|
* Convert a typed array to a Buffer without a copy
|
|
@@ -94715,7 +94744,7 @@ module.exports = function typedarrayToBuffer (arr) {
|
|
|
94715
94744
|
}
|
|
94716
94745
|
|
|
94717
94746
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
94718
|
-
},{"buffer":
|
|
94747
|
+
},{"buffer":91,"is-typedarray":221}],436:[function(require,module,exports){
|
|
94719
94748
|
var native = require('./native')
|
|
94720
94749
|
|
|
94721
94750
|
function getTypeName (fn) {
|
|
@@ -94827,7 +94856,7 @@ module.exports = {
|
|
|
94827
94856
|
getValueTypeName: getValueTypeName
|
|
94828
94857
|
}
|
|
94829
94858
|
|
|
94830
|
-
},{"./native":
|
|
94859
|
+
},{"./native":439}],437:[function(require,module,exports){
|
|
94831
94860
|
(function (Buffer){(function (){
|
|
94832
94861
|
var NATIVE = require('./native')
|
|
94833
94862
|
var ERRORS = require('./errors')
|
|
@@ -94922,7 +94951,7 @@ for (var typeName in types) {
|
|
|
94922
94951
|
module.exports = types
|
|
94923
94952
|
|
|
94924
94953
|
}).call(this)}).call(this,{"isBuffer":require("../is-buffer/index.js")})
|
|
94925
|
-
},{"../is-buffer/index.js":
|
|
94954
|
+
},{"../is-buffer/index.js":218,"./errors":436,"./native":439}],438:[function(require,module,exports){
|
|
94926
94955
|
var ERRORS = require('./errors')
|
|
94927
94956
|
var NATIVE = require('./native')
|
|
94928
94957
|
|
|
@@ -95184,7 +95213,7 @@ typeforce.TfPropertyTypeError = TfPropertyTypeError
|
|
|
95184
95213
|
|
|
95185
95214
|
module.exports = typeforce
|
|
95186
95215
|
|
|
95187
|
-
},{"./errors":
|
|
95216
|
+
},{"./errors":436,"./extra":437,"./native":439}],439:[function(require,module,exports){
|
|
95188
95217
|
var types = {
|
|
95189
95218
|
Array: function (value) { return value !== null && value !== undefined && value.constructor === Array },
|
|
95190
95219
|
Boolean: function (value) { return typeof value === 'boolean' },
|
|
@@ -95207,7 +95236,7 @@ for (var typeName in types) {
|
|
|
95207
95236
|
|
|
95208
95237
|
module.exports = types
|
|
95209
95238
|
|
|
95210
|
-
},{}],
|
|
95239
|
+
},{}],440:[function(require,module,exports){
|
|
95211
95240
|
'use strict'
|
|
95212
95241
|
|
|
95213
95242
|
const bases = require('./util/bases')
|
|
@@ -95240,7 +95269,7 @@ function fromString (string, encoding = 'utf8') {
|
|
|
95240
95269
|
|
|
95241
95270
|
module.exports = fromString
|
|
95242
95271
|
|
|
95243
|
-
},{"./util/bases":
|
|
95272
|
+
},{"./util/bases":442}],441:[function(require,module,exports){
|
|
95244
95273
|
'use strict'
|
|
95245
95274
|
|
|
95246
95275
|
const bases = require('./util/bases')
|
|
@@ -95273,7 +95302,7 @@ function toString (array, encoding = 'utf8') {
|
|
|
95273
95302
|
|
|
95274
95303
|
module.exports = toString
|
|
95275
95304
|
|
|
95276
|
-
},{"./util/bases":
|
|
95305
|
+
},{"./util/bases":442}],442:[function(require,module,exports){
|
|
95277
95306
|
'use strict'
|
|
95278
95307
|
|
|
95279
95308
|
const { bases } = require('multiformats/basics')
|
|
@@ -95350,7 +95379,7 @@ const BASES = {
|
|
|
95350
95379
|
|
|
95351
95380
|
module.exports = BASES
|
|
95352
95381
|
|
|
95353
|
-
},{"multiformats/basics":
|
|
95382
|
+
},{"multiformats/basics":283}],443:[function(require,module,exports){
|
|
95354
95383
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
95355
95384
|
//
|
|
95356
95385
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -96084,7 +96113,7 @@ Url.prototype.parseHost = function() {
|
|
|
96084
96113
|
if (host) this.hostname = host;
|
|
96085
96114
|
};
|
|
96086
96115
|
|
|
96087
|
-
},{"./util":
|
|
96116
|
+
},{"./util":444,"punycode":359,"querystring":362}],444:[function(require,module,exports){
|
|
96088
96117
|
'use strict';
|
|
96089
96118
|
|
|
96090
96119
|
module.exports = {
|
|
@@ -96102,7 +96131,7 @@ module.exports = {
|
|
|
96102
96131
|
}
|
|
96103
96132
|
};
|
|
96104
96133
|
|
|
96105
|
-
},{}],
|
|
96134
|
+
},{}],445:[function(require,module,exports){
|
|
96106
96135
|
(function (global){(function (){
|
|
96107
96136
|
|
|
96108
96137
|
/**
|
|
@@ -96173,13 +96202,13 @@ function config (name) {
|
|
|
96173
96202
|
}
|
|
96174
96203
|
|
|
96175
96204
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
96176
|
-
},{}],
|
|
96177
|
-
arguments[4][28][0].apply(exports,arguments)
|
|
96178
|
-
},{"dup":28}],446:[function(require,module,exports){
|
|
96205
|
+
},{}],446:[function(require,module,exports){
|
|
96179
96206
|
arguments[4][29][0].apply(exports,arguments)
|
|
96180
96207
|
},{"dup":29}],447:[function(require,module,exports){
|
|
96181
96208
|
arguments[4][30][0].apply(exports,arguments)
|
|
96182
|
-
},{"
|
|
96209
|
+
},{"dup":30}],448:[function(require,module,exports){
|
|
96210
|
+
arguments[4][31][0].apply(exports,arguments)
|
|
96211
|
+
},{"./support/isBuffer":447,"_process":322,"dup":31,"inherits":446}],449:[function(require,module,exports){
|
|
96183
96212
|
module.exports = read
|
|
96184
96213
|
|
|
96185
96214
|
var MSB = 0x80
|
|
@@ -96210,7 +96239,7 @@ function read(buf, offset) {
|
|
|
96210
96239
|
return res
|
|
96211
96240
|
}
|
|
96212
96241
|
|
|
96213
|
-
},{}],
|
|
96242
|
+
},{}],450:[function(require,module,exports){
|
|
96214
96243
|
module.exports = encode
|
|
96215
96244
|
|
|
96216
96245
|
var MSB = 0x80
|
|
@@ -96242,11 +96271,11 @@ function encode(num, out, offset) {
|
|
|
96242
96271
|
return out
|
|
96243
96272
|
}
|
|
96244
96273
|
|
|
96245
|
-
},{}],
|
|
96246
|
-
arguments[4][270][0].apply(exports,arguments)
|
|
96247
|
-
},{"./decode.js":448,"./encode.js":449,"./length.js":451,"dup":270}],451:[function(require,module,exports){
|
|
96274
|
+
},{}],451:[function(require,module,exports){
|
|
96248
96275
|
arguments[4][271][0].apply(exports,arguments)
|
|
96249
|
-
},{"dup":271}],452:[function(require,module,exports){
|
|
96276
|
+
},{"./decode.js":449,"./encode.js":450,"./length.js":452,"dup":271}],452:[function(require,module,exports){
|
|
96277
|
+
arguments[4][272][0].apply(exports,arguments)
|
|
96278
|
+
},{"dup":272}],453:[function(require,module,exports){
|
|
96250
96279
|
/*!
|
|
96251
96280
|
* vary
|
|
96252
96281
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
@@ -96397,7 +96426,7 @@ function vary (res, field) {
|
|
|
96397
96426
|
}
|
|
96398
96427
|
}
|
|
96399
96428
|
|
|
96400
|
-
},{}],
|
|
96429
|
+
},{}],454:[function(require,module,exports){
|
|
96401
96430
|
var _globalThis;
|
|
96402
96431
|
try {
|
|
96403
96432
|
_globalThis = require('es5-ext/global');
|
|
@@ -96449,10 +96478,10 @@ module.exports = {
|
|
|
96449
96478
|
'version' : websocket_version
|
|
96450
96479
|
};
|
|
96451
96480
|
|
|
96452
|
-
},{"./version":
|
|
96481
|
+
},{"./version":455,"es5-ext/global":176}],455:[function(require,module,exports){
|
|
96453
96482
|
module.exports = require('../package.json').version;
|
|
96454
96483
|
|
|
96455
|
-
},{"../package.json":
|
|
96484
|
+
},{"../package.json":456}],456:[function(require,module,exports){
|
|
96456
96485
|
module.exports={
|
|
96457
96486
|
"_from": "websocket@^1.0.31",
|
|
96458
96487
|
"_id": "websocket@1.0.32",
|
|
@@ -96549,7 +96578,7 @@ module.exports={
|
|
|
96549
96578
|
"version": "1.0.32"
|
|
96550
96579
|
}
|
|
96551
96580
|
|
|
96552
|
-
},{}],
|
|
96581
|
+
},{}],457:[function(require,module,exports){
|
|
96553
96582
|
(function (Buffer){(function (){
|
|
96554
96583
|
var bs58check = require('bs58check')
|
|
96555
96584
|
|
|
@@ -96616,7 +96645,7 @@ module.exports = {
|
|
|
96616
96645
|
}
|
|
96617
96646
|
|
|
96618
96647
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
96619
|
-
},{"bs58check":
|
|
96648
|
+
},{"bs58check":88,"buffer":91}],458:[function(require,module,exports){
|
|
96620
96649
|
module.exports = extend
|
|
96621
96650
|
|
|
96622
96651
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -96637,7 +96666,7 @@ function extend() {
|
|
|
96637
96666
|
return target
|
|
96638
96667
|
}
|
|
96639
96668
|
|
|
96640
|
-
},{}],
|
|
96669
|
+
},{}],459:[function(require,module,exports){
|
|
96641
96670
|
module.exports = extend
|
|
96642
96671
|
|
|
96643
96672
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -96656,7 +96685,7 @@ function extend(target) {
|
|
|
96656
96685
|
return target
|
|
96657
96686
|
}
|
|
96658
96687
|
|
|
96659
|
-
},{}],
|
|
96688
|
+
},{}],460:[function(require,module,exports){
|
|
96660
96689
|
'use strict';
|
|
96661
96690
|
|
|
96662
96691
|
class LRU {
|