@quotemedia.com/streamer 2.36.0 → 2.40.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -284,7 +284,7 @@ var Connection = function () {
284
284
 
285
285
  exports["default"] = Connection;
286
286
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/Connection.js","/lib")
287
- },{"./EventSupport.js":2,"./logging.js":16,"./streamer-events.js":97,"_process":119,"buffer":109,"timers":140}],2:[function(require,module,exports){
287
+ },{"./EventSupport.js":2,"./logging.js":16,"./streamer-events.js":109,"_process":131,"buffer":121,"timers":152}],2:[function(require,module,exports){
288
288
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
289
289
  "use strict";
290
290
 
@@ -333,7 +333,7 @@ var EventSupport = function () {
333
333
 
334
334
  exports["default"] = EventSupport;
335
335
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/EventSupport.js","/lib")
336
- },{"_process":119,"buffer":109,"timers":140}],3:[function(require,module,exports){
336
+ },{"_process":131,"buffer":121,"timers":152}],3:[function(require,module,exports){
337
337
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
338
338
  "use strict";
339
339
 
@@ -382,7 +382,7 @@ var FlowControl = function () {
382
382
 
383
383
  exports["default"] = FlowControl;
384
384
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/FlowControl.js","/lib")
385
- },{"./LongSequence.js":4,"./streamer-api.js":96,"_process":119,"buffer":109,"timers":140}],4:[function(require,module,exports){
385
+ },{"./LongSequence.js":4,"./streamer-api.js":108,"_process":131,"buffer":121,"timers":152}],4:[function(require,module,exports){
386
386
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
387
387
  "use strict";
388
388
 
@@ -415,7 +415,7 @@ LongSequence.MAX_VALUE = Number.MAX_SAFE_INTEGER;
415
415
 
416
416
  exports["default"] = LongSequence;
417
417
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/LongSequence.js","/lib")
418
- },{"_process":119,"buffer":109,"timers":140}],5:[function(require,module,exports){
418
+ },{"_process":131,"buffer":121,"timers":152}],5:[function(require,module,exports){
419
419
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
420
420
  "use strict";
421
421
 
@@ -481,7 +481,7 @@ var SMessage = function SMessage() {
481
481
 
482
482
  exports["default"] = SMessage;
483
483
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/SMessage.js","/lib")
484
- },{"./serialization/v1/codec.js":91,"_process":119,"buffer":109,"timers":140}],6:[function(require,module,exports){
484
+ },{"./serialization/v1/codec.js":103,"_process":131,"buffer":121,"timers":152}],6:[function(require,module,exports){
485
485
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
486
486
  "use strict";
487
487
 
@@ -628,7 +628,8 @@ var Stream = function () {
628
628
  subscribed: [],
629
629
  rejected: [],
630
630
  unentitled: [],
631
- invalidSymbols: []
631
+ invalidSymbols: [],
632
+ messageFilters: []
632
633
  }
633
634
  };
634
635
 
@@ -1075,6 +1076,7 @@ var Stream = function () {
1075
1076
  }
1076
1077
  if (opts) {
1077
1078
  msg.conflation = opts.conflation;
1079
+ msg.intervalPeriod = opts.intervalPeriod;
1078
1080
  }
1079
1081
  return msg;
1080
1082
  };
@@ -1303,6 +1305,25 @@ var Stream = function () {
1303
1305
  (_result$invalidSymbol = result.invalidSymbols).push.apply(_result$invalidSymbol, msg.invalidSymbols);
1304
1306
  }
1305
1307
  }
1308
+ if (msg.messageFilters) {
1309
+ this.log.debug('MESSAGE FILTERS ' + JSON.stringify(msg.messageFilters));
1310
+ for (var _iterator4 = msg.messageFilters, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) {
1311
+ var _ref4;
1312
+
1313
+ if (_isArray4) {
1314
+ if (_i4 >= _iterator4.length) break;
1315
+ _ref4 = _iterator4[_i4++];
1316
+ } else {
1317
+ _i4 = _iterator4.next();
1318
+ if (_i4.done) break;
1319
+ _ref4 = _i4.value;
1320
+ }
1321
+
1322
+ var filter = _ref4;
1323
+
1324
+ result.messageFilters.push(filter);
1325
+ }
1326
+ }
1306
1327
 
1307
1328
  if (subscription.ids.length === 0 && !subscription.failed) {
1308
1329
  if (callback) {
@@ -1359,25 +1380,7 @@ var Stream = function () {
1359
1380
  return;
1360
1381
  }
1361
1382
  if (msg.newsFilters) {
1362
- for (var _iterator4 = msg.newsFilters, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) {
1363
- var _ref4;
1364
-
1365
- if (_isArray4) {
1366
- if (_i4 >= _iterator4.length) break;
1367
- _ref4 = _iterator4[_i4++];
1368
- } else {
1369
- _i4 = _iterator4.next();
1370
- if (_i4.done) break;
1371
- _ref4 = _i4.value;
1372
- }
1373
-
1374
- var newsFilter = _ref4;
1375
-
1376
- result.newsFilters.push(newsFilter);
1377
- }
1378
- }
1379
- if (msg.rejectedNewsFilters) {
1380
- for (var _iterator5 = msg.rejectedNewsFilters, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) {
1383
+ for (var _iterator5 = msg.newsFilters, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) {
1381
1384
  var _ref5;
1382
1385
 
1383
1386
  if (_isArray5) {
@@ -1389,13 +1392,13 @@ var Stream = function () {
1389
1392
  _ref5 = _i5.value;
1390
1393
  }
1391
1394
 
1392
- var rejectedFilter = _ref5;
1395
+ var newsFilter = _ref5;
1393
1396
 
1394
- result.rejectedNewsFilters.push(rejectedFilter);
1397
+ result.newsFilters.push(newsFilter);
1395
1398
  }
1396
1399
  }
1397
- if (msg.unentitledNewsFilters) {
1398
- for (var _iterator6 = msg.unentitledNewsFilters, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : _iterator6[Symbol.iterator]();;) {
1400
+ if (msg.rejectedNewsFilters) {
1401
+ for (var _iterator6 = msg.rejectedNewsFilters, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : _iterator6[Symbol.iterator]();;) {
1399
1402
  var _ref6;
1400
1403
 
1401
1404
  if (_isArray6) {
@@ -1407,7 +1410,25 @@ var Stream = function () {
1407
1410
  _ref6 = _i6.value;
1408
1411
  }
1409
1412
 
1410
- var unentitledFilter = _ref6;
1413
+ var rejectedFilter = _ref6;
1414
+
1415
+ result.rejectedNewsFilters.push(rejectedFilter);
1416
+ }
1417
+ }
1418
+ if (msg.unentitledNewsFilters) {
1419
+ for (var _iterator7 = msg.unentitledNewsFilters, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : _iterator7[Symbol.iterator]();;) {
1420
+ var _ref7;
1421
+
1422
+ if (_isArray7) {
1423
+ if (_i7 >= _iterator7.length) break;
1424
+ _ref7 = _iterator7[_i7++];
1425
+ } else {
1426
+ _i7 = _iterator7.next();
1427
+ if (_i7.done) break;
1428
+ _ref7 = _i7.value;
1429
+ }
1430
+
1431
+ var unentitledFilter = _ref7;
1411
1432
 
1412
1433
  result.unentitledNewsFilters.push(unentitledFilter);
1413
1434
  }
@@ -1514,19 +1535,19 @@ var Stream = function () {
1514
1535
  }
1515
1536
 
1516
1537
  if (msg.newsFilters) {
1517
- for (var _iterator7 = msg.newsFilters, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : _iterator7[Symbol.iterator]();;) {
1518
- var _ref7;
1538
+ for (var _iterator8 = msg.newsFilters, _isArray8 = Array.isArray(_iterator8), _i8 = 0, _iterator8 = _isArray8 ? _iterator8 : _iterator8[Symbol.iterator]();;) {
1539
+ var _ref8;
1519
1540
 
1520
- if (_isArray7) {
1521
- if (_i7 >= _iterator7.length) break;
1522
- _ref7 = _iterator7[_i7++];
1541
+ if (_isArray8) {
1542
+ if (_i8 >= _iterator8.length) break;
1543
+ _ref8 = _iterator8[_i8++];
1523
1544
  } else {
1524
- _i7 = _iterator7.next();
1525
- if (_i7.done) break;
1526
- _ref7 = _i7.value;
1545
+ _i8 = _iterator8.next();
1546
+ if (_i8.done) break;
1547
+ _ref8 = _i8.value;
1527
1548
  }
1528
1549
 
1529
- var newsFilter = _ref7;
1550
+ var newsFilter = _ref8;
1530
1551
 
1531
1552
  result.unsubscribed.push(newsFilter);
1532
1553
  }
@@ -1809,7 +1830,7 @@ var Stream = function () {
1809
1830
 
1810
1831
  exports["default"] = Stream;
1811
1832
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/Stream.js","/lib")
1812
- },{"./EventSupport.js":2,"./FlowControl.js":3,"./UShortId.js":9,"./formatting.js":13,"./logging.js":16,"./polyfills.js":18,"./streamer-api.js":96,"./streamer-events.js":97,"./streamer-utils.js":98,"./utils.js":103,"_process":119,"buffer":109,"timers":140}],7:[function(require,module,exports){
1833
+ },{"./EventSupport.js":2,"./FlowControl.js":3,"./UShortId.js":9,"./formatting.js":13,"./logging.js":16,"./polyfills.js":18,"./streamer-api.js":108,"./streamer-events.js":109,"./streamer-utils.js":110,"./utils.js":115,"_process":131,"buffer":121,"timers":152}],7:[function(require,module,exports){
1813
1834
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
1814
1835
  "use strict";
1815
1836
 
@@ -1918,7 +1939,7 @@ Object.assign(Streamer, {
1918
1939
 
1919
1940
  exports["default"] = Streamer;
1920
1941
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/Streamer.js","/lib")
1921
- },{"./StreamingService.js":8,"./atmosphere.js/lib/atmosphere.js":10,"./auth/AuthService.js":11,"./auth/EnduserAuthService.js":12,"./http.js":14,"./logging.js":16,"./polyfills.js":18,"./stomp.js/lib/stomp.js":92,"./stomp/StompStreamingService.js":95,"_process":119,"buffer":109,"timers":140}],8:[function(require,module,exports){
1942
+ },{"./StreamingService.js":8,"./atmosphere.js/lib/atmosphere.js":10,"./auth/AuthService.js":11,"./auth/EnduserAuthService.js":12,"./http.js":14,"./logging.js":16,"./polyfills.js":18,"./stomp.js/lib/stomp.js":104,"./stomp/StompStreamingService.js":107,"_process":131,"buffer":121,"timers":152}],8:[function(require,module,exports){
1922
1943
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
1923
1944
  "use strict";
1924
1945
 
@@ -2021,6 +2042,11 @@ var StreamingService = function () {
2021
2042
  headers['X-Stream-Conflation'] = _conflation;
2022
2043
  }
2023
2044
 
2045
+ var _intervalPeriod = this.config.intervalPeriod;
2046
+ if (_intervalPeriod != null && _intervalPeriod !== '') {
2047
+ headers['X-Stream-Interval-Period'] = _intervalPeriod;
2048
+ }
2049
+
2024
2050
  if (connectionId != null && connectionId !== '') {
2025
2051
  headers['X-Stream-Previous-Connection-Id'] = connectionId;
2026
2052
  }
@@ -2131,7 +2157,7 @@ var StreamingService = function () {
2131
2157
 
2132
2158
  exports["default"] = StreamingService;
2133
2159
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/StreamingService.js","/lib")
2134
- },{"./Connection.js":1,"./Stream.js":6,"./logging.js":16,"./message.js":17,"./polyfills.js":18,"./qitch/encoder/QitchEncoder":67,"./serialization/SMessageDecoder.js":87,"./serialization/SMessageEncoder.js":88,"./streamer-api.js":96,"./transmission/JsonTransmitter.js":100,"./transmission/QitchTransmitter.js":101,"./transmission/SMessageTransmitter.js":102,"_process":119,"buffer":109,"timers":140}],9:[function(require,module,exports){
2160
+ },{"./Connection.js":1,"./Stream.js":6,"./logging.js":16,"./message.js":17,"./polyfills.js":18,"./qitch/encoder/QitchEncoder":76,"./serialization/SMessageDecoder.js":99,"./serialization/SMessageEncoder.js":100,"./streamer-api.js":108,"./transmission/JsonTransmitter.js":112,"./transmission/QitchTransmitter.js":113,"./transmission/SMessageTransmitter.js":114,"_process":131,"buffer":121,"timers":152}],9:[function(require,module,exports){
2135
2161
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
2136
2162
  "use strict";
2137
2163
 
@@ -2165,7 +2191,7 @@ UShortId.MAX_VALUE = 65535; // 2^16-1
2165
2191
 
2166
2192
  exports["default"] = UShortId;
2167
2193
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/UShortId.js","/lib")
2168
- },{"_process":119,"buffer":109,"timers":140}],10:[function(require,module,exports){
2194
+ },{"_process":131,"buffer":121,"timers":152}],10:[function(require,module,exports){
2169
2195
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
2170
2196
  "use strict";
2171
2197
 
@@ -5680,7 +5706,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5680
5706
  });
5681
5707
  /* jshint eqnull:true, noarg:true, noempty:true, eqeqeq:true, evil:true, laxbreak:true, undef:true, browser:true, indent:false, maxerr:50 */
5682
5708
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/atmosphere.js/lib/atmosphere.js","/lib/atmosphere.js/lib")
5683
- },{"_process":119,"buffer":109,"timers":140}],11:[function(require,module,exports){
5709
+ },{"_process":131,"buffer":121,"timers":152}],11:[function(require,module,exports){
5684
5710
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
5685
5711
  "use strict";
5686
5712
 
@@ -5780,7 +5806,7 @@ function asCredentials(credentials) {
5780
5806
  }
5781
5807
  };
5782
5808
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/auth/AuthService.js","/lib/auth")
5783
- },{"./EnduserAuthService.js":12,"_process":119,"array-equal":104,"buffer":109,"timers":140}],12:[function(require,module,exports){
5809
+ },{"./EnduserAuthService.js":12,"_process":131,"array-equal":116,"buffer":121,"timers":152}],12:[function(require,module,exports){
5784
5810
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
5785
5811
  "use strict";
5786
5812
 
@@ -5856,7 +5882,7 @@ var EnduserAuthService = function () {
5856
5882
 
5857
5883
  exports["default"] = EnduserAuthService;
5858
5884
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/auth/EnduserAuthService.js","/lib/auth")
5859
- },{"_process":119,"buffer":109,"timers":140}],13:[function(require,module,exports){
5885
+ },{"_process":131,"buffer":121,"timers":152}],13:[function(require,module,exports){
5860
5886
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
5861
5887
  "use strict";
5862
5888
 
@@ -5945,6 +5971,8 @@ fmt.Formatter = function () {
5945
5971
  this.formatters[_streamerApi.messages.MessageTypeNames.data.NEWSCMDFILTER] = this._fmtnewscmdfilter;
5946
5972
  this.formatters[_streamerApi.messages.MessageTypeNames.data.NEWSERROR] = this._fmtnewserror;
5947
5973
  this.formatters[_streamerApi.messages.MessageTypeNames.data.DIVIDEND] = this._fmtdividend;
5974
+ this.formatters[_streamerApi.messages.MessageTypeNames.data.EARNINGS] = this._fmtearnings;
5975
+ this.formatters[_streamerApi.messages.MessageTypeNames.data.SPLIT] = this._fmtsplit;
5948
5976
  };
5949
5977
 
5950
5978
  fmt.Formatter._UNKOWNTYPE = '__UNKNOWN__';
@@ -6052,6 +6080,8 @@ fmt.Formatter.prototype._fmtpricedata = function (val) {
6052
6080
  s.sep();
6053
6081
  s.append(val.vwap);
6054
6082
  s.sep();
6083
+ s.append(val.vwapVolume);
6084
+ s.sep();
6055
6085
  s.datetime(val.preMarketTradeTime);
6056
6086
  s.sep();
6057
6087
  s.append(val.preMarketLast);
@@ -6256,6 +6286,8 @@ fmt.Formatter.prototype._fmtinterval = function (val) {
6256
6286
  s.append(val.volume);
6257
6287
  s.sep();
6258
6288
  s.append(val.vwap);
6289
+ s.sep();
6290
+ s.append(val.periodMs);
6259
6291
  return s.toString();
6260
6292
  };
6261
6293
 
@@ -6587,6 +6619,8 @@ fmt.Formatter.prototype._fmtdividend = function (val) {
6587
6619
  s.sep();
6588
6620
  s.append(val.symbolId);
6589
6621
  s.sep();
6622
+ s.append(val.symbol);
6623
+ s.sep();
6590
6624
  s.append(val.instrument);
6591
6625
  s.sep();
6592
6626
  s.datetime(val.declarationDate);
@@ -6606,6 +6640,58 @@ fmt.Formatter.prototype._fmtdividend = function (val) {
6606
6640
  return s.toString();
6607
6641
  };
6608
6642
 
6643
+ fmt.Formatter.prototype._fmtearnings = function (val) {
6644
+ var s = new fmt.StringBuilder();
6645
+ s.append("ERN");
6646
+ s.sep();
6647
+ s.datetime(val.occuredOn);
6648
+ s.sep();
6649
+ s.append(val.symbolId);
6650
+ s.sep();
6651
+ s.append(val.symbol);
6652
+ s.sep();
6653
+ s.append(val.fiscalYear);
6654
+ s.sep();
6655
+ s.append(val.quarter);
6656
+ s.sep();
6657
+ s.append(val.earningsPerShare);
6658
+ s.sep();
6659
+ s.datetime(val.announcementDate);
6660
+ s.sep();
6661
+ s.append(val.announcementTimeOfDay);
6662
+ s.sep();
6663
+ s.append(val.announcementUrl);
6664
+
6665
+ return s.toString();
6666
+ };
6667
+
6668
+ fmt.Formatter.prototype._fmtsplit = function (val) {
6669
+ var s = new fmt.StringBuilder();
6670
+ s.append("SPLT");
6671
+ s.sep();
6672
+ s.datetime(val.occuredOn);
6673
+ s.sep();
6674
+ s.append(val.symbolId);
6675
+ s.sep();
6676
+ s.append(val.symbol);
6677
+ s.sep();
6678
+ s.datetime(val.executionDate);
6679
+ s.sep();
6680
+ s.datetime(val.declarationDate);
6681
+ s.sep();
6682
+ s.datetime(val.recordDate);
6683
+ s.sep();
6684
+ s.datetime(val.paymentDate);
6685
+ s.sep();
6686
+ s.append(val.ratio);
6687
+ s.sep();
6688
+ s.append(val.ratioNumerator);
6689
+ s.sep();
6690
+ s.append(val.ratioDenominator);
6691
+
6692
+ return s.toString();
6693
+ };
6694
+
6609
6695
  fmt.Formatter.prototype._fmtheartbeat = function (val) {
6610
6696
  var s = new fmt.StringBuilder();
6611
6697
  s.append("HEARBEAT");
@@ -6936,7 +7022,7 @@ fmt.format = function (msg) {
6936
7022
 
6937
7023
  module.exports = fmt;
6938
7024
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/formatting.js","/lib")
6939
- },{"./streamer-api.js":96,"./streamer-utils.js":98,"_process":119,"buffer":109,"jsbi":116,"timers":140}],14:[function(require,module,exports){
7025
+ },{"./streamer-api.js":108,"./streamer-utils.js":110,"_process":131,"buffer":121,"jsbi":128,"timers":152}],14:[function(require,module,exports){
6940
7026
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
6941
7027
  "use strict";
6942
7028
 
@@ -7018,7 +7104,7 @@ function http(opts) {
7018
7104
  xhr.send(data);
7019
7105
  };
7020
7106
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/http.js","/lib")
7021
- },{"_process":119,"buffer":109,"timers":140,"xmlhttprequest":145}],15:[function(require,module,exports){
7107
+ },{"_process":131,"buffer":121,"timers":152,"xmlhttprequest":157}],15:[function(require,module,exports){
7022
7108
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7023
7109
  "use strict";
7024
7110
 
@@ -7089,7 +7175,7 @@ _Streamer2["default"].subscriptionTypes = _streamerApi.messages.market.Subscript
7089
7175
 
7090
7176
  module.exports = _Streamer2["default"];
7091
7177
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/index.js","/lib")
7092
- },{"./Streamer.js":7,"./formatting.js":13,"./polyfills":18,"./streamer-api.js":96,"./streamer-utils.js":98,"_process":119,"buffer":109,"json3":117,"timers":140}],16:[function(require,module,exports){
7178
+ },{"./Streamer.js":7,"./formatting.js":13,"./polyfills":18,"./streamer-api.js":108,"./streamer-utils.js":110,"_process":131,"buffer":121,"json3":129,"timers":152}],16:[function(require,module,exports){
7093
7179
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7094
7180
  "use strict";
7095
7181
 
@@ -7149,7 +7235,7 @@ function asLogger(logger) {
7149
7235
  }
7150
7236
  }
7151
7237
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/logging.js","/lib")
7152
- },{"_process":119,"buffer":109,"timers":140}],17:[function(require,module,exports){
7238
+ },{"_process":131,"buffer":121,"timers":152}],17:[function(require,module,exports){
7153
7239
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7154
7240
  "use strict";
7155
7241
 
@@ -7225,7 +7311,7 @@ var lpad = exports.lpad = function lpad(num, len) {
7225
7311
  return _pad + _numstr;
7226
7312
  };
7227
7313
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/message.js","/lib")
7228
- },{"_process":119,"buffer":109,"timers":140}],18:[function(require,module,exports){
7314
+ },{"_process":131,"buffer":121,"timers":152}],18:[function(require,module,exports){
7229
7315
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7230
7316
  'use strict';
7231
7317
 
@@ -7443,7 +7529,7 @@ if (!Array.from) {
7443
7529
  }();
7444
7530
  }
7445
7531
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/polyfills.js","/lib")
7446
- },{"_process":119,"buffer":109,"timers":140}],19:[function(require,module,exports){
7532
+ },{"_process":131,"buffer":121,"timers":152}],19:[function(require,module,exports){
7447
7533
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7448
7534
  "use strict";
7449
7535
 
@@ -7505,7 +7591,7 @@ var BlockHeader = function () {
7505
7591
 
7506
7592
  exports["default"] = BlockHeader;
7507
7593
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/BlockHeader.js","/lib/qitch")
7508
- },{"./Bytes":20,"./DataOperations":21,"./Qitch":25,"./QitchConstants":26,"_process":119,"buffer":109,"timers":140}],20:[function(require,module,exports){
7594
+ },{"./Bytes":20,"./DataOperations":21,"./Qitch":25,"./QitchConstants":26,"_process":131,"buffer":121,"timers":152}],20:[function(require,module,exports){
7509
7595
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7510
7596
  "use strict";
7511
7597
 
@@ -7600,7 +7686,7 @@ var Bytes = function () {
7600
7686
 
7601
7687
  exports["default"] = Bytes;
7602
7688
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/Bytes.js","/lib/qitch")
7603
- },{"_process":119,"buffer":109,"jsbi":116,"timers":140}],21:[function(require,module,exports){
7689
+ },{"_process":131,"buffer":121,"jsbi":128,"timers":152}],21:[function(require,module,exports){
7604
7690
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7605
7691
  "use strict";
7606
7692
 
@@ -7751,7 +7837,7 @@ exports.UShort = UShort;
7751
7837
  exports.UInt = UInt;
7752
7838
  exports.ASCIIString = ASCIIString;
7753
7839
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/DataOperations.js","/lib/qitch")
7754
- },{"_process":119,"buffer":109,"timers":140}],22:[function(require,module,exports){
7840
+ },{"_process":131,"buffer":121,"timers":152}],22:[function(require,module,exports){
7755
7841
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7756
7842
  "use strict";
7757
7843
 
@@ -7825,7 +7911,7 @@ var EnumValueTranslator = function () {
7825
7911
 
7826
7912
  exports["default"] = EnumValueTranslator;
7827
7913
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/EnumValueTranslator.js","/lib/qitch")
7828
- },{"../streamer-api":96,"_process":119,"buffer":109,"timers":140}],23:[function(require,module,exports){
7914
+ },{"../streamer-api":108,"_process":131,"buffer":121,"timers":152}],23:[function(require,module,exports){
7829
7915
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7830
7916
  "use strict";
7831
7917
 
@@ -7846,7 +7932,7 @@ var LocateCodeInjector = function () {
7846
7932
  if (message instanceof _streamerApi.messages.market.SymbolInfo) {
7847
7933
  this.symbols.set(message.locateCode, message.symbol);
7848
7934
  } else if (message instanceof _streamerApi.messages.market.DataMessage) {
7849
- if (message.locateCode !== null) {
7935
+ if (message.locateCode !== null && !(message instanceof _streamerApi.messages.market.ImbalanceStatus) && !(message instanceof _streamerApi.messages.market.SymbolStatus) && !(message instanceof _streamerApi.messages.market.Alert)) {
7850
7936
  message.symbol = this.symbols.get(message.locateCode);
7851
7937
  }
7852
7938
  }
@@ -7857,7 +7943,7 @@ var LocateCodeInjector = function () {
7857
7943
 
7858
7944
  exports["default"] = LocateCodeInjector;
7859
7945
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/LocateCodeInjector.js","/lib/qitch")
7860
- },{"../streamer-api":96,"_process":119,"buffer":109,"timers":140}],24:[function(require,module,exports){
7946
+ },{"../streamer-api":108,"_process":131,"buffer":121,"timers":152}],24:[function(require,module,exports){
7861
7947
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7862
7948
  "use strict";
7863
7949
 
@@ -7902,7 +7988,7 @@ var MessageHeader = function () {
7902
7988
 
7903
7989
  exports["default"] = MessageHeader;
7904
7990
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/MessageHeader.js","/lib/qitch")
7905
- },{"./Bytes":20,"./DataOperations":21,"./QitchConstants":26,"_process":119,"buffer":109,"timers":140}],25:[function(require,module,exports){
7991
+ },{"./Bytes":20,"./DataOperations":21,"./QitchConstants":26,"_process":131,"buffer":121,"timers":152}],25:[function(require,module,exports){
7906
7992
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
7907
7993
  "use strict";
7908
7994
 
@@ -8244,6 +8330,42 @@ var Qitch = function () {
8244
8330
  throw "Invalid destination. Expected: Int8Array";
8245
8331
  };
8246
8332
 
8333
+ /**
8334
+ * Gets String value from source byte array at specified offset.
8335
+ * @param src The source array.
8336
+ * @param offset The offset.
8337
+ * @param maxLength The max length of returning value.
8338
+ * @returns {null|String} Returns null in case if specified offset is too big (offset + maxLength in bytes is bigger than length of source array),
8339
+ * otherwise returns obtained value.
8340
+ * @throws Exception in case if src is not {@link Int8Array}
8341
+ */
8342
+
8343
+
8344
+ Qitch.asciiString = function asciiString(src, offset, maxLength) {
8345
+ if (src instanceof Int8Array) {
8346
+ return _DataOperations.ASCIIString.get(src, offset, maxLength);
8347
+ }
8348
+ throw "Invalid source. Expected: Int8Array";
8349
+ };
8350
+
8351
+ /**
8352
+ * Puts String value into destination array.
8353
+ * @param dst The destination array.
8354
+ * @param offset The offset.
8355
+ * @param val String value.
8356
+ * @param maxLength The max length of returning value.
8357
+ * @returns {Int8Array} destination array.
8358
+ * @throws Exception in case if dst is not {@link Int8Array}
8359
+ */
8360
+
8361
+
8362
+ Qitch.putAsciiString = function putAsciiString(dst, offset, val, maxLength) {
8363
+ if (dst instanceof Int8Array) {
8364
+ return _DataOperations.ASCIIString.put(dst, offset, val, maxLength);
8365
+ }
8366
+ throw "Invalid destination. Expected: Int8Array";
8367
+ };
8368
+
8247
8369
  /**
8248
8370
  * Gets excode value from source byte array at specified offset.
8249
8371
  * @param src The source array.
@@ -8264,6 +8386,23 @@ var Qitch = function () {
8264
8386
  throw "Invalid source. Expected: Int8Array";
8265
8387
  };
8266
8388
 
8389
+ /**
8390
+ * Puts excode value into destination array.
8391
+ * @param dst The destination array.
8392
+ * @param offset The offset.
8393
+ * @param val excode value.
8394
+ * @returns {Int8Array} destination array.
8395
+ * @throws Exception in case if dst is not {@link Int8Array}
8396
+ */
8397
+
8398
+
8399
+ Qitch.putExcode = function putExcode(dst, offset, val) {
8400
+ if (dst instanceof Int8Array) {
8401
+ return _DataOperations.ASCIIString.put(dst, offset, val, Constants.EXCODE_LENGTH);
8402
+ }
8403
+ throw "Invalid destination. Expected: Int8Array";
8404
+ };
8405
+
8267
8406
  /**
8268
8407
  * Gets mmid value from source byte array at specified offset.
8269
8408
  * @param src The source array.
@@ -8704,7 +8843,7 @@ var Qitch = function () {
8704
8843
 
8705
8844
  exports["default"] = Qitch;
8706
8845
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/Qitch.js","/lib/qitch")
8707
- },{"../streamer-api":96,"./Bytes":20,"./DataOperations":21,"./EnumValueTranslator":22,"./QitchConstants":26,"_process":119,"bignumber.js":106,"buffer":109,"jsbi":116,"timers":140}],26:[function(require,module,exports){
8846
+ },{"../streamer-api":108,"./Bytes":20,"./DataOperations":21,"./EnumValueTranslator":22,"./QitchConstants":26,"_process":131,"bignumber.js":118,"buffer":121,"jsbi":128,"timers":152}],26:[function(require,module,exports){
8708
8847
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8709
8848
  "use strict";
8710
8849
 
@@ -8767,7 +8906,7 @@ var BLOCK_HEADER_RESERVED_OFFSET = exports.BLOCK_HEADER_RESERVED_OFFSET = BLOCK_
8767
8906
  var BLOCK_HEADER_SEQUENCE_OFFSET = exports.BLOCK_HEADER_SEQUENCE_OFFSET = BLOCK_HEADER_RESERVED_OFFSET + BYTE_LENGTH;
8768
8907
  var BLOCK_HEADER_LENGTH = exports.BLOCK_HEADER_LENGTH = BLOCK_HEADER_SEQUENCE_OFFSET + INT_LENGTH;
8769
8908
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/QitchConstants.js","/lib/qitch")
8770
- },{"_process":119,"buffer":109,"jsbi":116,"timers":140}],27:[function(require,module,exports){
8909
+ },{"_process":131,"buffer":121,"jsbi":128,"timers":152}],27:[function(require,module,exports){
8771
8910
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8772
8911
  "use strict";
8773
8912
 
@@ -8790,7 +8929,7 @@ var MAX_ENTITLEMENTS_PER_SUBSCRIPTION_OFFSET = exports.MAX_ENTITLEMENTS_PER_SUBS
8790
8929
 
8791
8930
  var LENGTH = exports.LENGTH = MAX_ENTITLEMENTS_PER_SUBSCRIPTION_OFFSET + _QitchConstants.INT_LENGTH;
8792
8931
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ConnectResponseDef.js","/lib/qitch/controlMessageDefinition")
8793
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],28:[function(require,module,exports){
8932
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],28:[function(require,module,exports){
8794
8933
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8795
8934
  "use strict";
8796
8935
 
@@ -8806,7 +8945,54 @@ var REASON_OFFSET = exports.REASON_OFFSET = CODE_OFFSET + _QitchConstants.INT_LE
8806
8945
 
8807
8946
  var LENGTH = exports.LENGTH = REASON_OFFSET + _QitchConstants.REASON_LENGTH;
8808
8947
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ConnectionCloseDef.js","/lib/qitch/controlMessageDefinition")
8809
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],29:[function(require,module,exports){
8948
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],29:[function(require,module,exports){
8949
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8950
+ "use strict";
8951
+
8952
+ exports.__esModule = true;
8953
+ exports.FIXED_LENGTH = exports.EXCODE_OFFSET = exports.CONFLATION_OFFSET = exports.MIMETYPE_OFFSET = exports.ACTION_OFFSET = exports.REQUEST_ID_OFFSET = exports.TYPEID = undefined;
8954
+
8955
+ var _QitchConstants = require("../QitchConstants");
8956
+
8957
+ var TYPEID = exports.TYPEID = 114;
8958
+ var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = 0;
8959
+ var ACTION_OFFSET = exports.ACTION_OFFSET = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
8960
+ var MIMETYPE_OFFSET = exports.MIMETYPE_OFFSET = ACTION_OFFSET + _QitchConstants.ACTION_LENGTH;
8961
+ var CONFLATION_OFFSET = exports.CONFLATION_OFFSET = MIMETYPE_OFFSET + _QitchConstants.MIMETYPE_LENGTH;
8962
+ var EXCODE_OFFSET = exports.EXCODE_OFFSET = CONFLATION_OFFSET + _QitchConstants.CONFLATION_LENGTH;
8963
+ var FIXED_LENGTH = exports.FIXED_LENGTH = EXCODE_OFFSET + _QitchConstants.EXCODE_LENGTH;
8964
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ExchangeSubscribeMessageDef.js","/lib/qitch/controlMessageDefinition")
8965
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],30:[function(require,module,exports){
8966
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8967
+ "use strict";
8968
+
8969
+ exports.__esModule = true;
8970
+ exports.LENGTH = exports.REQUEST_ID_OFFSET = exports.REASON_OFFSET = exports.CODE_OFFSET = exports.TYPEID = undefined;
8971
+
8972
+ var _QitchConstants = require("../QitchConstants");
8973
+
8974
+ var TYPEID = exports.TYPEID = 115;
8975
+ var CODE_OFFSET = exports.CODE_OFFSET = 0;
8976
+ var REASON_OFFSET = exports.REASON_OFFSET = CODE_OFFSET + _QitchConstants.INT_LENGTH;
8977
+ var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = REASON_OFFSET + _QitchConstants.REASON_LENGTH;
8978
+ var LENGTH = exports.LENGTH = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
8979
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ExchangeSubscribeResponseDef.js","/lib/qitch/controlMessageDefinition")
8980
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],31:[function(require,module,exports){
8981
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8982
+ "use strict";
8983
+
8984
+ exports.__esModule = true;
8985
+ exports.LENGTH = exports.REQUEST_ID_OFFSET = exports.REASON_OFFSET = exports.CODE_OFFSET = exports.TYPEID = undefined;
8986
+
8987
+ var _QitchConstants = require("../QitchConstants");
8988
+
8989
+ var TYPEID = exports.TYPEID = 116;
8990
+ var CODE_OFFSET = exports.CODE_OFFSET = 0;
8991
+ var REASON_OFFSET = exports.REASON_OFFSET = CODE_OFFSET + _QitchConstants.INT_LENGTH;
8992
+ var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = REASON_OFFSET + _QitchConstants.REASON_LENGTH;
8993
+ var LENGTH = exports.LENGTH = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
8994
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ExchangeUnsubResponseDef.js","/lib/qitch/controlMessageDefinition")
8995
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],32:[function(require,module,exports){
8810
8996
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8811
8997
  "use strict";
8812
8998
 
@@ -8820,7 +9006,7 @@ var TYPEID = exports.TYPEID = 107;
8820
9006
  var SEQUENCE_NUMBER_OFFSET = exports.SEQUENCE_NUMBER_OFFSET = 0;
8821
9007
  var LENGTH = exports.LENGTH = SEQUENCE_NUMBER_OFFSET + _QitchConstants.INT_LENGTH;
8822
9008
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/FlowMessageDef.js","/lib/qitch/controlMessageDefinition")
8823
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],30:[function(require,module,exports){
9009
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],33:[function(require,module,exports){
8824
9010
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8825
9011
  "use strict";
8826
9012
 
@@ -8834,7 +9020,7 @@ var TYPEID = exports.TYPEID = 101;
8834
9020
  var TIMESTAMP_OFFSET = exports.TIMESTAMP_OFFSET = 0;
8835
9021
  var LENGTH = exports.LENGTH = TIMESTAMP_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
8836
9022
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/HeartbeatDef.js","/lib/qitch/controlMessageDefinition")
8837
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],31:[function(require,module,exports){
9023
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],34:[function(require,module,exports){
8838
9024
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8839
9025
  "use strict";
8840
9026
 
@@ -8849,7 +9035,7 @@ var TIMESTAMP_OFFSET = exports.TIMESTAMP_OFFSET = 0;
8849
9035
  var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = TIMESTAMP_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
8850
9036
  var LENGTH = exports.LENGTH = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
8851
9037
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/InitialDataSentDef.js","/lib/qitch/controlMessageDefinition")
8852
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],32:[function(require,module,exports){
9038
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],35:[function(require,module,exports){
8853
9039
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8854
9040
  "use strict";
8855
9041
 
@@ -8863,7 +9049,7 @@ var TYPEID = exports.TYPEID = 112;
8863
9049
  var TIMESTAMP_OFFSET = exports.TIMESTAMP_OFFSET = 0;
8864
9050
  var LENGTH = exports.LENGTH = TIMESTAMP_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
8865
9051
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/ResubscribeMessageDef.js","/lib/qitch/controlMessageDefinition")
8866
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],33:[function(require,module,exports){
9052
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],36:[function(require,module,exports){
8867
9053
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8868
9054
  "use strict";
8869
9055
 
@@ -8879,7 +9065,7 @@ var MAX_EXCEED_OFFSET = exports.MAX_EXCEED_OFFSET = TIMES_EXCEED_OFFSET + _Qitch
8879
9065
 
8880
9066
  var LENGTH = exports.LENGTH = MAX_EXCEED_OFFSET + _QitchConstants.INT_LENGTH;
8881
9067
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SlowConnectionDef.js","/lib/qitch/controlMessageDefinition")
8882
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],34:[function(require,module,exports){
9068
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],37:[function(require,module,exports){
8883
9069
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8884
9070
  "use strict";
8885
9071
 
@@ -8893,7 +9079,7 @@ var TYPEID = exports.TYPEID = 108;
8893
9079
  var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = 0;
8894
9080
  var LENGTH = exports.LENGTH = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
8895
9081
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/StatsMessageDef.js","/lib/qitch/controlMessageDefinition")
8896
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],35:[function(require,module,exports){
9082
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],38:[function(require,module,exports){
8897
9083
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8898
9084
  "use strict";
8899
9085
 
@@ -8916,7 +9102,48 @@ var NUMBER_OF_AVAILABLE_CONNECTIONS = exports.NUMBER_OF_AVAILABLE_CONNECTIONS =
8916
9102
 
8917
9103
  var LENGTH = exports.LENGTH = NUMBER_OF_AVAILABLE_CONNECTIONS + _QitchConstants.INT_LENGTH;
8918
9104
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/StatsResponseDef.js","/lib/qitch/controlMessageDefinition")
8919
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],36:[function(require,module,exports){
9105
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],39:[function(require,module,exports){
9106
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9107
+ "use strict";
9108
+
9109
+ exports.__esModule = true;
9110
+ exports.FIXED_LENGTH = exports.MIMETYPE_OFFSET = exports.OPERATION_OFFSET = exports.REQUEST_ID_OFFSET = exports.FIXED_OPERATION_LENGTH = exports.TYPEID = undefined;
9111
+
9112
+ var _QitchConstants = require("../QitchConstants");
9113
+
9114
+ var TYPEID = exports.TYPEID = 117;
9115
+
9116
+ // Will take at most 11 bytes for UNSUBSCRIBE/SUBSCRIBE operation string type
9117
+ var FIXED_OPERATION_LENGTH = exports.FIXED_OPERATION_LENGTH = 11;
9118
+
9119
+ var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = 0;
9120
+ var OPERATION_OFFSET = exports.OPERATION_OFFSET = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
9121
+ var MIMETYPE_OFFSET = exports.MIMETYPE_OFFSET = OPERATION_OFFSET + FIXED_OPERATION_LENGTH;
9122
+
9123
+ var FIXED_LENGTH = exports.FIXED_LENGTH = MIMETYPE_OFFSET + _QitchConstants.MIMETYPE_LENGTH;
9124
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SubUnsubAlertMessageDef.js","/lib/qitch/controlMessageDefinition")
9125
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],40:[function(require,module,exports){
9126
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9127
+ "use strict";
9128
+
9129
+ exports.__esModule = true;
9130
+ exports.LENGTH = exports.OPERATION_OFFSET = exports.REQUEST_ID_OFFSET = exports.REASON_OFFSET = exports.CODE_OFFSET = exports.FIXED_OPERATION_LENGTH = exports.TYPEID = undefined;
9131
+
9132
+ var _QitchConstants = require("../QitchConstants");
9133
+
9134
+ var TYPEID = exports.TYPEID = 118;
9135
+
9136
+ // Will take at most 12 bytes for UNSUBSCRIBED/SUBSCRIBED operation string type
9137
+ var FIXED_OPERATION_LENGTH = exports.FIXED_OPERATION_LENGTH = 12;
9138
+
9139
+ var CODE_OFFSET = exports.CODE_OFFSET = 0;
9140
+ var REASON_OFFSET = exports.REASON_OFFSET = CODE_OFFSET + _QitchConstants.INT_LENGTH;
9141
+ var REQUEST_ID_OFFSET = exports.REQUEST_ID_OFFSET = REASON_OFFSET + _QitchConstants.REASON_LENGTH;
9142
+ var OPERATION_OFFSET = exports.OPERATION_OFFSET = REQUEST_ID_OFFSET + _QitchConstants.INT_LENGTH;
9143
+
9144
+ var LENGTH = exports.LENGTH = OPERATION_OFFSET + FIXED_OPERATION_LENGTH;
9145
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SubUnsubAlertResponseDef.js","/lib/qitch/controlMessageDefinition")
9146
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],41:[function(require,module,exports){
8920
9147
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8921
9148
  "use strict";
8922
9149
 
@@ -8937,7 +9164,7 @@ var NUMBER_OF_TYPES_OFFSET = exports.NUMBER_OF_TYPES_OFFSET = NUMBER_OF_SYMBOLS_
8937
9164
 
8938
9165
  var FIXED_LENGTH = exports.FIXED_LENGTH = NUMBER_OF_TYPES_OFFSET + _QitchConstants.BYTE_LENGTH;
8939
9166
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SubscribeMessageDef.js","/lib/qitch/controlMessageDefinition")
8940
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],37:[function(require,module,exports){
9167
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],42:[function(require,module,exports){
8941
9168
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8942
9169
  "use strict";
8943
9170
 
@@ -8957,7 +9184,7 @@ var NUMBER_OF_INVALID_SYMBOLS_OFFSET = exports.NUMBER_OF_INVALID_SYMBOLS_OFFSET
8957
9184
 
8958
9185
  var FIXED_LENGTH = exports.FIXED_LENGTH = NUMBER_OF_INVALID_SYMBOLS_OFFSET + _QitchConstants.INT_LENGTH;
8959
9186
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/SubscribeResponseDef.js","/lib/qitch/controlMessageDefinition")
8960
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],38:[function(require,module,exports){
9187
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],43:[function(require,module,exports){
8961
9188
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8962
9189
  "use strict";
8963
9190
 
@@ -8975,7 +9202,7 @@ var NUMBER_OF_UNSUBSCRIBED_ENTITLEMENTS_OFFSET = exports.NUMBER_OF_UNSUBSCRIBED_
8975
9202
 
8976
9203
  var FIXED_LENGTH = exports.FIXED_LENGTH = NUMBER_OF_UNSUBSCRIBED_ENTITLEMENTS_OFFSET + _QitchConstants.INT_LENGTH;
8977
9204
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/controlMessageDefinition/UnsubscribeResponseDef.js","/lib/qitch/controlMessageDefinition")
8978
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],39:[function(require,module,exports){
9205
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],44:[function(require,module,exports){
8979
9206
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
8980
9207
  "use strict";
8981
9208
 
@@ -9234,7 +9461,7 @@ var DecodeMessage = function () {
9234
9461
 
9235
9462
  exports["default"] = BlockDecoder;
9236
9463
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/BlockDecoder.js","/lib/qitch/decoder")
9237
- },{"../BlockHeader":19,"../MessageHeader":24,"../Qitch":25,"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],40:[function(require,module,exports){
9464
+ },{"../BlockHeader":19,"../MessageHeader":24,"../Qitch":25,"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],45:[function(require,module,exports){
9238
9465
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9239
9466
  "use strict";
9240
9467
 
@@ -9296,7 +9523,7 @@ var MessageDecoder = function () {
9296
9523
 
9297
9524
  exports["default"] = MessageDecoder;
9298
9525
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/MessageDecoder.js","/lib/qitch/decoder")
9299
- },{"../MessageHeader":24,"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],41:[function(require,module,exports){
9526
+ },{"../MessageHeader":24,"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],46:[function(require,module,exports){
9300
9527
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9301
9528
  "use strict";
9302
9529
 
@@ -9417,6 +9644,22 @@ var _ResubscribeMessageDecoder = require("./controlMessageDecoder/ResubscribeMes
9417
9644
 
9418
9645
  var _ResubscribeMessageDecoder2 = _interopRequireDefault(_ResubscribeMessageDecoder);
9419
9646
 
9647
+ var _ExchangeSubscribeResponseDecoder = require("./controlMessageDecoder/ExchangeSubscribeResponseDecoder");
9648
+
9649
+ var _ExchangeSubscribeResponseDecoder2 = _interopRequireDefault(_ExchangeSubscribeResponseDecoder);
9650
+
9651
+ var _ExchangeUnsubResponseDecoder = require("./controlMessageDecoder/ExchangeUnsubResponseDecoder");
9652
+
9653
+ var _ExchangeUnsubResponseDecoder2 = _interopRequireDefault(_ExchangeUnsubResponseDecoder);
9654
+
9655
+ var _AlertDecoder = require("./dataDecoder/AlertDecoder");
9656
+
9657
+ var _AlertDecoder2 = _interopRequireDefault(_AlertDecoder);
9658
+
9659
+ var _SubUnsubAlertResponseDecoder = require("./controlMessageDecoder/SubUnsubAlertResponseDecoder");
9660
+
9661
+ var _SubUnsubAlertResponseDecoder2 = _interopRequireDefault(_SubUnsubAlertResponseDecoder);
9662
+
9420
9663
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9421
9664
 
9422
9665
  function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
@@ -9432,7 +9675,11 @@ var QitchDecoder = function () {
9432
9675
  function QitchDecoder(bufferSize) {
9433
9676
  _classCallCheck(this, QitchDecoder);
9434
9677
 
9435
- var decoders = [new _HeartbeatDecoder2["default"](), new _SubscribeResponseDecoder2["default"](), new _UnsubscribeResponseDecoder2["default"](), new _ConnectResponseDecoder2["default"](), new _ConnectionCloseDecoder2["default"](), new _StatsResponseDecoder2["default"](), new _SlowConnectionDecoder2["default"](), new _InitialDataSentDecoder2["default"](), new _ResubscribeMessageDecoder2["default"](), new _SymbolInfoDecoder2["default"](), new _TradeDecoder2["default"](), new _PricedataDecoder2["default"](), new _SymbolStatusDecoder2["default"](), new _QuoteDecoder2["default"](), new _DerivativeInfoDecoder2["default"](), new _IVGreeksDecoder2["default"](), new _LastSaleDecoder2["default"](), new _LimitUpLimitDownDecoder2["default"](), new _ImbalanceStatusDecoder2["default"](), new _NethousePositionDecoder2["default"](), new _IntervalDecoder2["default"](), new _MMQuoteDecoder2["default"](), new _PurgeBookDecoder2["default"](), new _BookDeleteDecoder2["default"](), new _BookOrderDecoder2["default"]()];
9678
+ var decoders = [
9679
+ // Ctr Messages
9680
+ new _HeartbeatDecoder2["default"](), new _SubscribeResponseDecoder2["default"](), new _UnsubscribeResponseDecoder2["default"](), new _ConnectResponseDecoder2["default"](), new _ConnectionCloseDecoder2["default"](), new _StatsResponseDecoder2["default"](), new _SlowConnectionDecoder2["default"](), new _InitialDataSentDecoder2["default"](), new _ResubscribeMessageDecoder2["default"](), new _SubUnsubAlertResponseDecoder2["default"](),
9681
+ // Market Data Messages
9682
+ new _SymbolInfoDecoder2["default"](), new _TradeDecoder2["default"](), new _PricedataDecoder2["default"](), new _SymbolStatusDecoder2["default"](), new _QuoteDecoder2["default"](), new _DerivativeInfoDecoder2["default"](), new _IVGreeksDecoder2["default"](), new _LastSaleDecoder2["default"](), new _LimitUpLimitDownDecoder2["default"](), new _ImbalanceStatusDecoder2["default"](), new _NethousePositionDecoder2["default"](), new _IntervalDecoder2["default"](), new _MMQuoteDecoder2["default"](), new _PurgeBookDecoder2["default"](), new _BookDeleteDecoder2["default"](), new _BookOrderDecoder2["default"](), new _ExchangeSubscribeResponseDecoder2["default"](), new _ExchangeUnsubResponseDecoder2["default"](), new _AlertDecoder2["default"]()];
9436
9683
  this.decoder = new _BlockDecoder2["default"](new _MessageDecoder2["default"](decoders), bufferSize);
9437
9684
  }
9438
9685
 
@@ -9540,7 +9787,7 @@ var MessageBlock = exports.MessageBlock = function (_SMessage2) {
9540
9787
 
9541
9788
  exports["default"] = QitchDecoder;
9542
9789
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/QitchDecoder.js","/lib/qitch/decoder")
9543
- },{"../../SMessage":5,"../../message.js":17,"./BlockDecoder":39,"./MessageDecoder":40,"./controlMessageDecoder/ConnectResponseDecoder":42,"./controlMessageDecoder/ConnectionCloseDecoder":43,"./controlMessageDecoder/HeartbeatDecoder":44,"./controlMessageDecoder/InitialDataSentDecoder":45,"./controlMessageDecoder/ResubscribeMessageDecoder":46,"./controlMessageDecoder/SlowConnectionDecoder":47,"./controlMessageDecoder/StatsResponseDecoder":48,"./controlMessageDecoder/SubscribeResponseDecoder":49,"./controlMessageDecoder/UnsubscribeResponseDecoder":50,"./dataDecoder/BookDeleteDecoder":51,"./dataDecoder/BookOrderDecoder":52,"./dataDecoder/DerivativeInfoDecoder":53,"./dataDecoder/IVGreeksDecoder":54,"./dataDecoder/ImbalanceStatusDecoder":55,"./dataDecoder/IntervalDecoder":56,"./dataDecoder/LastSaleDecoder":57,"./dataDecoder/LimitUpLimitDownDecoder":58,"./dataDecoder/MMQuoteDecoder":59,"./dataDecoder/NethousePositionDecoder":60,"./dataDecoder/PricedataDecoder":61,"./dataDecoder/PurgeBookDecoder":62,"./dataDecoder/QuoteDecoder":63,"./dataDecoder/SymbolInfoDecoder":64,"./dataDecoder/SymbolStatusDecoder":65,"./dataDecoder/TradeDecoder":66,"_process":119,"buffer":109,"timers":140}],42:[function(require,module,exports){
9790
+ },{"../../SMessage":5,"../../message.js":17,"./BlockDecoder":44,"./MessageDecoder":45,"./controlMessageDecoder/ConnectResponseDecoder":47,"./controlMessageDecoder/ConnectionCloseDecoder":48,"./controlMessageDecoder/ExchangeSubscribeResponseDecoder":49,"./controlMessageDecoder/ExchangeUnsubResponseDecoder":50,"./controlMessageDecoder/HeartbeatDecoder":51,"./controlMessageDecoder/InitialDataSentDecoder":52,"./controlMessageDecoder/ResubscribeMessageDecoder":53,"./controlMessageDecoder/SlowConnectionDecoder":54,"./controlMessageDecoder/StatsResponseDecoder":55,"./controlMessageDecoder/SubUnsubAlertResponseDecoder":56,"./controlMessageDecoder/SubscribeResponseDecoder":57,"./controlMessageDecoder/UnsubscribeResponseDecoder":58,"./dataDecoder/AlertDecoder":59,"./dataDecoder/BookDeleteDecoder":60,"./dataDecoder/BookOrderDecoder":61,"./dataDecoder/DerivativeInfoDecoder":62,"./dataDecoder/IVGreeksDecoder":63,"./dataDecoder/ImbalanceStatusDecoder":64,"./dataDecoder/IntervalDecoder":65,"./dataDecoder/LastSaleDecoder":66,"./dataDecoder/LimitUpLimitDownDecoder":67,"./dataDecoder/MMQuoteDecoder":68,"./dataDecoder/NethousePositionDecoder":69,"./dataDecoder/PricedataDecoder":70,"./dataDecoder/PurgeBookDecoder":71,"./dataDecoder/QuoteDecoder":72,"./dataDecoder/SymbolInfoDecoder":73,"./dataDecoder/SymbolStatusDecoder":74,"./dataDecoder/TradeDecoder":75,"_process":131,"buffer":121,"timers":152}],47:[function(require,module,exports){
9544
9791
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9545
9792
  "use strict";
9546
9793
 
@@ -9590,7 +9837,7 @@ var ConnectResponseDecoder = function () {
9590
9837
 
9591
9838
  exports["default"] = ConnectResponseDecoder;
9592
9839
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ConnectResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9593
- },{"../../../streamer-api":96,"../../Qitch":25,"../../controlMessageDefinition/ConnectResponseDef":27,"_process":119,"buffer":109,"timers":140}],43:[function(require,module,exports){
9840
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ConnectResponseDef":27,"_process":131,"buffer":121,"timers":152}],48:[function(require,module,exports){
9594
9841
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9595
9842
  "use strict";
9596
9843
 
@@ -9633,7 +9880,97 @@ var ConnectionCloseDecoder = function () {
9633
9880
 
9634
9881
  exports["default"] = ConnectionCloseDecoder;
9635
9882
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ConnectionCloseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9636
- },{"../../../streamer-api":96,"../../Qitch":25,"../../controlMessageDefinition/ConnectionCloseDef":28,"_process":119,"buffer":109,"timers":140}],44:[function(require,module,exports){
9883
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ConnectionCloseDef":28,"_process":131,"buffer":121,"timers":152}],49:[function(require,module,exports){
9884
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9885
+ "use strict";
9886
+
9887
+ exports.__esModule = true;
9888
+
9889
+ var _ExchangeSubscribeResponseDef = require("../../controlMessageDefinition/ExchangeSubscribeResponseDef");
9890
+
9891
+ var def = _interopRequireWildcard(_ExchangeSubscribeResponseDef);
9892
+
9893
+ var _streamerApi = require("../../../streamer-api");
9894
+
9895
+ var _Qitch = require("../../Qitch");
9896
+
9897
+ var _Qitch2 = _interopRequireDefault(_Qitch);
9898
+
9899
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9900
+
9901
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
9902
+
9903
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
9904
+
9905
+ var ExchangeSubscribeResponseDecoder = function () {
9906
+ function ExchangeSubscribeResponseDecoder() {
9907
+ _classCallCheck(this, ExchangeSubscribeResponseDecoder);
9908
+ }
9909
+
9910
+ ExchangeSubscribeResponseDecoder.prototype.type = function type() {
9911
+ return def.TYPEID;
9912
+ };
9913
+
9914
+ ExchangeSubscribeResponseDecoder.prototype.decode = function decode(src, offset) {
9915
+ var out = new _streamerApi.messages.control.ExchangeSubscribeResponse();
9916
+ out.code = _Qitch2["default"].int32(src, offset + def.CODE_OFFSET);
9917
+ out.reason = _Qitch2["default"].reason(src, offset + def.REASON_OFFSET);
9918
+ out.requestId = _Qitch2["default"].int32(src, offset + def.REQUEST_ID_OFFSET);
9919
+
9920
+ return out;
9921
+ };
9922
+
9923
+ return ExchangeSubscribeResponseDecoder;
9924
+ }();
9925
+
9926
+ exports["default"] = ExchangeSubscribeResponseDecoder;
9927
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ExchangeSubscribeResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9928
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ExchangeSubscribeResponseDef":30,"_process":131,"buffer":121,"timers":152}],50:[function(require,module,exports){
9929
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9930
+ "use strict";
9931
+
9932
+ exports.__esModule = true;
9933
+
9934
+ var _ExchangeUnsubResponseDef = require("../../controlMessageDefinition/ExchangeUnsubResponseDef");
9935
+
9936
+ var def = _interopRequireWildcard(_ExchangeUnsubResponseDef);
9937
+
9938
+ var _streamerApi = require("../../../streamer-api");
9939
+
9940
+ var _Qitch = require("../../Qitch");
9941
+
9942
+ var _Qitch2 = _interopRequireDefault(_Qitch);
9943
+
9944
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9945
+
9946
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
9947
+
9948
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
9949
+
9950
+ var ExchangeUnsubResponseDecoder = function () {
9951
+ function ExchangeUnsubResponseDecoder() {
9952
+ _classCallCheck(this, ExchangeUnsubResponseDecoder);
9953
+ }
9954
+
9955
+ ExchangeUnsubResponseDecoder.prototype.type = function type() {
9956
+ return def.TYPEID;
9957
+ };
9958
+
9959
+ ExchangeUnsubResponseDecoder.prototype.decode = function decode(src, offset) {
9960
+ var out = new _streamerApi.messages.control.ExchangeUnsubscribeResponse();
9961
+ out.code = _Qitch2["default"].int32(src, offset + def.CODE_OFFSET);
9962
+ out.reason = _Qitch2["default"].reason(src, offset + def.REASON_OFFSET);
9963
+ out.requestId = _Qitch2["default"].int32(src, offset + def.REQUEST_ID_OFFSET);
9964
+
9965
+ return out;
9966
+ };
9967
+
9968
+ return ExchangeUnsubResponseDecoder;
9969
+ }();
9970
+
9971
+ exports["default"] = ExchangeUnsubResponseDecoder;
9972
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ExchangeUnsubResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9973
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ExchangeUnsubResponseDef":31,"_process":131,"buffer":121,"timers":152}],51:[function(require,module,exports){
9637
9974
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9638
9975
  "use strict";
9639
9976
 
@@ -9675,7 +10012,7 @@ var HeartbeatDecoder = function () {
9675
10012
 
9676
10013
  exports["default"] = HeartbeatDecoder;
9677
10014
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/HeartbeatDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9678
- },{"../../../streamer-api":96,"../../Qitch":25,"../../controlMessageDefinition/HeartbeatDef":30,"_process":119,"buffer":109,"timers":140}],45:[function(require,module,exports){
10015
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/HeartbeatDef":33,"_process":131,"buffer":121,"timers":152}],52:[function(require,module,exports){
9679
10016
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9680
10017
  "use strict";
9681
10018
 
@@ -9718,7 +10055,7 @@ var InitialDataSentDecoder = function () {
9718
10055
 
9719
10056
  exports["default"] = InitialDataSentDecoder;
9720
10057
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/InitialDataSentDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9721
- },{"../../../streamer-api":96,"../../Qitch":25,"../../controlMessageDefinition/InitialDataSentDef":31,"_process":119,"buffer":109,"timers":140}],46:[function(require,module,exports){
10058
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/InitialDataSentDef":34,"_process":131,"buffer":121,"timers":152}],53:[function(require,module,exports){
9722
10059
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9723
10060
  "use strict";
9724
10061
 
@@ -9760,7 +10097,7 @@ var ResubscribeMessageDecoder = function () {
9760
10097
 
9761
10098
  exports["default"] = ResubscribeMessageDecoder;
9762
10099
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/ResubscribeMessageDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9763
- },{"../../../streamer-api":96,"../../Qitch":25,"../../controlMessageDefinition/ResubscribeMessageDef":32,"_process":119,"buffer":109,"timers":140}],47:[function(require,module,exports){
10100
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/ResubscribeMessageDef":35,"_process":131,"buffer":121,"timers":152}],54:[function(require,module,exports){
9764
10101
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9765
10102
  "use strict";
9766
10103
 
@@ -9803,7 +10140,7 @@ var SlowConnectionDecoder = function () {
9803
10140
 
9804
10141
  exports["default"] = SlowConnectionDecoder;
9805
10142
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/SlowConnectionDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9806
- },{"../../../streamer-api":96,"../../Qitch":25,"../../controlMessageDefinition/SlowConnectionDef":33,"_process":119,"buffer":109,"timers":140}],48:[function(require,module,exports){
10143
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/SlowConnectionDef":36,"_process":131,"buffer":121,"timers":152}],55:[function(require,module,exports){
9807
10144
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9808
10145
  "use strict";
9809
10146
 
@@ -9853,7 +10190,52 @@ var StatsResponseDecoder = function () {
9853
10190
 
9854
10191
  exports["default"] = StatsResponseDecoder;
9855
10192
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/StatsResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9856
- },{"../../../streamer-api":96,"../../Qitch":25,"../../controlMessageDefinition/StatsResponseDef":35,"_process":119,"buffer":109,"timers":140}],49:[function(require,module,exports){
10193
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/StatsResponseDef":38,"_process":131,"buffer":121,"timers":152}],56:[function(require,module,exports){
10194
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10195
+ "use strict";
10196
+
10197
+ exports.__esModule = true;
10198
+
10199
+ var _SubUnsubAlertResponseDef = require("../../controlMessageDefinition/SubUnsubAlertResponseDef");
10200
+
10201
+ var def = _interopRequireWildcard(_SubUnsubAlertResponseDef);
10202
+
10203
+ var _streamerApi = require("../../../streamer-api");
10204
+
10205
+ var _Qitch = require("../../Qitch");
10206
+
10207
+ var _Qitch2 = _interopRequireDefault(_Qitch);
10208
+
10209
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
10210
+
10211
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
10212
+
10213
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
10214
+
10215
+ var SubUnsubAlertResponseDecoder = function () {
10216
+ function SubUnsubAlertResponseDecoder() {
10217
+ _classCallCheck(this, SubUnsubAlertResponseDecoder);
10218
+ }
10219
+
10220
+ SubUnsubAlertResponseDecoder.prototype.type = function type() {
10221
+ return def.TYPEID;
10222
+ };
10223
+
10224
+ SubUnsubAlertResponseDecoder.prototype.decode = function decode(src, offset) {
10225
+ var out = new _streamerApi.messages.control.AlertSubUnsubResponse();
10226
+ out.code = _Qitch2["default"].int32(src, offset + def.CODE_OFFSET);
10227
+ out.reason = _Qitch2["default"].reason(src, offset + def.REASON_OFFSET);
10228
+ out.requestId = _Qitch2["default"].int32(src, offset + def.REQUEST_ID_OFFSET);
10229
+ out.operation = _Qitch2["default"].asciiString(src, offset + def.OPERATION_OFFSET, def.FIXED_OPERATION_LENGTH);
10230
+ return out;
10231
+ };
10232
+
10233
+ return SubUnsubAlertResponseDecoder;
10234
+ }();
10235
+
10236
+ exports["default"] = SubUnsubAlertResponseDecoder;
10237
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/SubUnsubAlertResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
10238
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../controlMessageDefinition/SubUnsubAlertResponseDef":40,"_process":131,"buffer":121,"timers":152}],57:[function(require,module,exports){
9857
10239
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9858
10240
  "use strict";
9859
10241
 
@@ -9924,7 +10306,7 @@ var SubscribeResponseDecoder = function () {
9924
10306
 
9925
10307
  exports["default"] = SubscribeResponseDecoder;
9926
10308
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/SubscribeResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9927
- },{"../../../streamer-api":96,"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/SubscribeResponseDef":37,"_process":119,"buffer":109,"timers":140}],50:[function(require,module,exports){
10309
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/SubscribeResponseDef":42,"_process":131,"buffer":121,"timers":152}],58:[function(require,module,exports){
9928
10310
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9929
10311
  "use strict";
9930
10312
 
@@ -9982,7 +10364,53 @@ var UnsubscribeResponseDecoder = function () {
9982
10364
 
9983
10365
  exports["default"] = UnsubscribeResponseDecoder;
9984
10366
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/controlMessageDecoder/UnsubscribeResponseDecoder.js","/lib/qitch/decoder/controlMessageDecoder")
9985
- },{"../../../streamer-api":96,"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/UnsubscribeResponseDef":38,"_process":119,"buffer":109,"timers":140}],51:[function(require,module,exports){
10367
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/UnsubscribeResponseDef":43,"_process":131,"buffer":121,"timers":152}],59:[function(require,module,exports){
10368
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10369
+ "use strict";
10370
+
10371
+ exports.__esModule = true;
10372
+
10373
+ var _AlertDef = require("../../marketDataDefinition/AlertDef");
10374
+
10375
+ var def = _interopRequireWildcard(_AlertDef);
10376
+
10377
+ var _streamerApi = require("../../../streamer-api");
10378
+
10379
+ var _Qitch = require("../../Qitch");
10380
+
10381
+ var _Qitch2 = _interopRequireDefault(_Qitch);
10382
+
10383
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
10384
+
10385
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
10386
+
10387
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
10388
+
10389
+ var AlertDecoder = function () {
10390
+ function AlertDecoder() {
10391
+ _classCallCheck(this, AlertDecoder);
10392
+ }
10393
+
10394
+ AlertDecoder.prototype.type = function type() {
10395
+ return def.TYPEID;
10396
+ };
10397
+
10398
+ AlertDecoder.prototype.decode = function decode(src, offset) {
10399
+ var out = new _streamerApi.messages.market.Alert();
10400
+ out.symbol = _Qitch2["default"].symbol(src, offset + def.SYMBOL_OFFSET);
10401
+ out.timestamp = _Qitch2["default"].timestamp(src, offset + def.TIMESTAMP_OFFSET);
10402
+ out.instrumentType = _Qitch2["default"].instrumenttype(src, offset + def.INSTRUMENTTYPE_OFFSET);
10403
+ out.alertId = _Qitch2["default"].int64(src, offset + def.ALERT_ID_OFFSET);
10404
+ out.triggerValue = _Qitch2["default"].dec8double(src, offset + def.TRIGGER_VALUE_OFFSET);
10405
+ return out;
10406
+ };
10407
+
10408
+ return AlertDecoder;
10409
+ }();
10410
+
10411
+ exports["default"] = AlertDecoder;
10412
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/AlertDecoder.js","/lib/qitch/decoder/dataDecoder")
10413
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/AlertDef":82,"_process":131,"buffer":121,"timers":152}],60:[function(require,module,exports){
9986
10414
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
9987
10415
  "use strict";
9988
10416
 
@@ -10026,7 +10454,7 @@ var BookDeleteDecoder = function () {
10026
10454
 
10027
10455
  exports["default"] = BookDeleteDecoder;
10028
10456
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/BookDeleteDecoder.js","/lib/qitch/decoder/dataDecoder")
10029
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/BookDeleteDef":71,"_process":119,"buffer":109,"timers":140}],52:[function(require,module,exports){
10457
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/BookDeleteDef":83,"_process":131,"buffer":121,"timers":152}],61:[function(require,module,exports){
10030
10458
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10031
10459
  "use strict";
10032
10460
 
@@ -10081,7 +10509,7 @@ var BookOrderDecoder = function () {
10081
10509
 
10082
10510
  exports["default"] = BookOrderDecoder;
10083
10511
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/BookOrderDecoder.js","/lib/qitch/decoder/dataDecoder")
10084
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/BookOrderDef":72,"_process":119,"buffer":109,"timers":140}],53:[function(require,module,exports){
10512
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/BookOrderDef":84,"_process":131,"buffer":121,"timers":152}],62:[function(require,module,exports){
10085
10513
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10086
10514
  "use strict";
10087
10515
 
@@ -10130,7 +10558,7 @@ var DerivativeInfoDecoder = function () {
10130
10558
 
10131
10559
  exports["default"] = DerivativeInfoDecoder;
10132
10560
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/DerivativeInfoDecoder.js","/lib/qitch/decoder/dataDecoder")
10133
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/DerivativeInfoDef":73,"_process":119,"buffer":109,"timers":140}],54:[function(require,module,exports){
10561
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/DerivativeInfoDef":85,"_process":131,"buffer":121,"timers":152}],63:[function(require,module,exports){
10134
10562
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10135
10563
  "use strict";
10136
10564
 
@@ -10188,7 +10616,7 @@ var IVGreeksDecoder = function () {
10188
10616
 
10189
10617
  exports["default"] = IVGreeksDecoder;
10190
10618
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/IVGreeksDecoder.js","/lib/qitch/decoder/dataDecoder")
10191
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/IVGreeksDef":74,"_process":119,"buffer":109,"timers":140}],55:[function(require,module,exports){
10619
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/IVGreeksDef":86,"_process":131,"buffer":121,"timers":152}],64:[function(require,module,exports){
10192
10620
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10193
10621
  "use strict";
10194
10622
 
@@ -10231,6 +10659,7 @@ var ImbalanceStatusDecoder = function () {
10231
10659
  out.nearIndicativePrice = _Qitch2["default"].dec8double(src, offset + def.NEARINDICATIVEPRICE_OFFSET);
10232
10660
  out.farIndicativePrice = _Qitch2["default"].dec8double(src, offset + def.FARINDICATIVEPRICE_OFFSET);
10233
10661
  out.priceVariation = _Qitch2["default"].dec8double(src, offset + def.PRICEVARIATION_OFFSET);
10662
+ out.symbol = _Qitch2["default"].symbol(src, offset + def.SYMBOL_OFFSET);
10234
10663
  return out;
10235
10664
  };
10236
10665
 
@@ -10239,7 +10668,7 @@ var ImbalanceStatusDecoder = function () {
10239
10668
 
10240
10669
  exports["default"] = ImbalanceStatusDecoder;
10241
10670
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/ImbalanceStatusDecoder.js","/lib/qitch/decoder/dataDecoder")
10242
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/ImbalanceStatusDef":75,"_process":119,"buffer":109,"timers":140}],56:[function(require,module,exports){
10671
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/ImbalanceStatusDef":87,"_process":131,"buffer":121,"timers":152}],65:[function(require,module,exports){
10243
10672
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10244
10673
  "use strict";
10245
10674
 
@@ -10292,6 +10721,7 @@ var IntervalDecoder = function () {
10292
10721
  out.lastTime = _Qitch2["default"].timestamp(src, offset + def.LASTTIME_OFFSET);
10293
10722
  out.tradeValue = _Qitch2["default"].int64(src, offset + def.TRADEVALUE_OFFSET);
10294
10723
  out.vwap = this._vwap(out);
10724
+ out.periodMs = _Qitch2["default"].int32(src, offset + def.PERIODMS_OFFSET);
10295
10725
  return out;
10296
10726
  };
10297
10727
 
@@ -10307,7 +10737,7 @@ var IntervalDecoder = function () {
10307
10737
 
10308
10738
  exports["default"] = IntervalDecoder;
10309
10739
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/IntervalDecoder.js","/lib/qitch/decoder/dataDecoder")
10310
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/IntervalDef":76,"_process":119,"bignumber.js":106,"buffer":109,"jsbi":116,"timers":140}],57:[function(require,module,exports){
10740
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/IntervalDef":88,"_process":131,"bignumber.js":118,"buffer":121,"jsbi":128,"timers":152}],66:[function(require,module,exports){
10311
10741
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10312
10742
  "use strict";
10313
10743
 
@@ -10371,7 +10801,7 @@ var LastSaleDecoder = function () {
10371
10801
 
10372
10802
  exports["default"] = LastSaleDecoder;
10373
10803
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/LastSaleDecoder.js","/lib/qitch/decoder/dataDecoder")
10374
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/LastSaleDef":77,"_process":119,"buffer":109,"timers":140}],58:[function(require,module,exports){
10804
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/LastSaleDef":89,"_process":131,"buffer":121,"timers":152}],67:[function(require,module,exports){
10375
10805
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10376
10806
  "use strict";
10377
10807
 
@@ -10421,7 +10851,7 @@ var LimitUpLimitDownDecoder = function () {
10421
10851
 
10422
10852
  exports["default"] = LimitUpLimitDownDecoder;
10423
10853
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/LimitUpLimitDownDecoder.js","/lib/qitch/decoder/dataDecoder")
10424
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/LimitUpLimitDownDef":78,"_process":119,"buffer":109,"timers":140}],59:[function(require,module,exports){
10854
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/LimitUpLimitDownDef":90,"_process":131,"buffer":121,"timers":152}],68:[function(require,module,exports){
10425
10855
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10426
10856
  "use strict";
10427
10857
 
@@ -10473,7 +10903,7 @@ var MMQuoteDecoder = function () {
10473
10903
 
10474
10904
  exports["default"] = MMQuoteDecoder;
10475
10905
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/MMQuoteDecoder.js","/lib/qitch/decoder/dataDecoder")
10476
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/MMQuoteDef":79,"_process":119,"buffer":109,"timers":140}],60:[function(require,module,exports){
10906
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/MMQuoteDef":91,"_process":131,"buffer":121,"timers":152}],69:[function(require,module,exports){
10477
10907
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10478
10908
  "use strict";
10479
10909
 
@@ -10529,7 +10959,7 @@ var NethousePositionDecoder = function () {
10529
10959
 
10530
10960
  exports["default"] = NethousePositionDecoder;
10531
10961
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/NethousePositionDecoder.js","/lib/qitch/decoder/dataDecoder")
10532
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/NethousePositionDef":80,"_process":119,"buffer":109,"timers":140}],61:[function(require,module,exports){
10962
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/NethousePositionDef":92,"_process":131,"buffer":121,"timers":152}],70:[function(require,module,exports){
10533
10963
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10534
10964
  "use strict";
10535
10965
 
@@ -10597,6 +11027,7 @@ var PricedataDecoder = function () {
10597
11027
  out.postMarketPercentChange = this._postmarketPercentChange(out);
10598
11028
  out.lastTradeExcode = _Qitch2["default"].excode(src, offset + def.LASTTRADEEXCODE_OFFSET);
10599
11029
  out.currencyID = _Qitch2["default"].currencyid(src, offset + def.CURRENCYID_OFFSET);
11030
+ out.vwapVolume = _Qitch2["default"].dec8double(src, offset + def.VWAPVOLUME_OFFSET);
10600
11031
 
10601
11032
  return out;
10602
11033
  };
@@ -10638,7 +11069,7 @@ var PricedataDecoder = function () {
10638
11069
 
10639
11070
  exports["default"] = PricedataDecoder;
10640
11071
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/PricedataDecoder.js","/lib/qitch/decoder/dataDecoder")
10641
- },{"../../../streamer-api.js":96,"../../Qitch":25,"../../marketDataDefinition/PricedataDef":81,"_process":119,"buffer":109,"timers":140}],62:[function(require,module,exports){
11072
+ },{"../../../streamer-api.js":108,"../../Qitch":25,"../../marketDataDefinition/PricedataDef":93,"_process":131,"buffer":121,"timers":152}],71:[function(require,module,exports){
10642
11073
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10643
11074
  "use strict";
10644
11075
 
@@ -10680,7 +11111,7 @@ var PurgeBookDecoder = function () {
10680
11111
 
10681
11112
  exports["default"] = PurgeBookDecoder;
10682
11113
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/PurgeBookDecoder.js","/lib/qitch/decoder/dataDecoder")
10683
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/PurgeBookDef":82,"_process":119,"buffer":109,"timers":140}],63:[function(require,module,exports){
11114
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/PurgeBookDef":94,"_process":131,"buffer":121,"timers":152}],72:[function(require,module,exports){
10684
11115
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10685
11116
  "use strict";
10686
11117
 
@@ -10733,7 +11164,7 @@ var QuoteDecoder = function () {
10733
11164
 
10734
11165
  exports["default"] = QuoteDecoder;
10735
11166
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/QuoteDecoder.js","/lib/qitch/decoder/dataDecoder")
10736
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/QuoteDef":83,"_process":119,"buffer":109,"timers":140}],64:[function(require,module,exports){
11167
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/QuoteDef":95,"_process":131,"buffer":121,"timers":152}],73:[function(require,module,exports){
10737
11168
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10738
11169
  "use strict";
10739
11170
 
@@ -10786,7 +11217,7 @@ var SymbolInfoDecoder = function () {
10786
11217
 
10787
11218
  exports["default"] = SymbolInfoDecoder;
10788
11219
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/SymbolInfoDecoder.js","/lib/qitch/decoder/dataDecoder")
10789
- },{"../../../streamer-api.js":96,"../../Qitch":25,"../../marketDataDefinition/SymbolInfoDef":84,"_process":119,"buffer":109,"timers":140}],65:[function(require,module,exports){
11220
+ },{"../../../streamer-api.js":108,"../../Qitch":25,"../../marketDataDefinition/SymbolInfoDef":96,"_process":131,"buffer":121,"timers":152}],74:[function(require,module,exports){
10790
11221
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10791
11222
  "use strict";
10792
11223
 
@@ -10823,10 +11254,11 @@ var SymbolStatusDecoder = function () {
10823
11254
  out.haltStatus = _Qitch2["default"].sbyte(src, offset + def.HALTSTATUS_OFFSET);
10824
11255
  out.haltIndicator = _Qitch2["default"].sbyte(src, offset + def.HALTINDICATOR_OFFSET);
10825
11256
  out.regSHOStatus = _Qitch2["default"].asciichar(src, offset + def.REGSHOSTATUS_OFFSET);
10826
- out.calculatedClosingPrice = _Qitch2["default"].dec8double(src, offset + def.CLOSINGPRICE_OFFSET);
11257
+ out.closingCalculatedPrice = _Qitch2["default"].dec8double(src, offset + def.CLOSINGPRICE_OFFSET);
10827
11258
  out.effectiveTime = _Qitch2["default"].timestamp(src, offset + def.EFFECTIVETIME_OFFSET);
10828
11259
  out.openingTime = _Qitch2["default"].timestamp(src, offset + def.OPENINGTIME_OFFSET);
10829
11260
  out.note = _Qitch2["default"].note(src, offset + def.NOTE_OFFSET);
11261
+ out.symbol = _Qitch2["default"].symbol(src, offset + def.SYMBOL_OFFSET);
10830
11262
  return out;
10831
11263
  };
10832
11264
 
@@ -10835,7 +11267,7 @@ var SymbolStatusDecoder = function () {
10835
11267
 
10836
11268
  exports["default"] = SymbolStatusDecoder;
10837
11269
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/SymbolStatusDecoder.js","/lib/qitch/decoder/dataDecoder")
10838
- },{"../../../streamer-api":96,"../../Qitch":25,"../../marketDataDefinition/SymbolStatusDef":85,"_process":119,"buffer":109,"timers":140}],66:[function(require,module,exports){
11270
+ },{"../../../streamer-api":108,"../../Qitch":25,"../../marketDataDefinition/SymbolStatusDef":97,"_process":131,"buffer":121,"timers":152}],75:[function(require,module,exports){
10839
11271
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10840
11272
  "use strict";
10841
11273
 
@@ -10891,7 +11323,7 @@ var TradeDecoder = function () {
10891
11323
 
10892
11324
  exports["default"] = TradeDecoder;
10893
11325
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/decoder/dataDecoder/TradeDecoder.js","/lib/qitch/decoder/dataDecoder")
10894
- },{"../../../streamer-api.js":96,"../../Qitch":25,"../../marketDataDefinition/TradeDef":86,"_process":119,"buffer":109,"timers":140}],67:[function(require,module,exports){
11326
+ },{"../../../streamer-api.js":108,"../../Qitch":25,"../../marketDataDefinition/TradeDef":98,"_process":131,"buffer":121,"timers":152}],76:[function(require,module,exports){
10895
11327
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
10896
11328
  "use strict";
10897
11329
 
@@ -10927,6 +11359,14 @@ var _FlowMessageEncoder = require("./controlMessageEncoder/FlowMessageEncoder");
10927
11359
 
10928
11360
  var _FlowMessageEncoder2 = _interopRequireDefault(_FlowMessageEncoder);
10929
11361
 
11362
+ var _ExchangeSubscribeMessageEncoder = require("./controlMessageEncoder/ExchangeSubscribeMessageEncoder");
11363
+
11364
+ var _ExchangeSubscribeMessageEncoder2 = _interopRequireDefault(_ExchangeSubscribeMessageEncoder);
11365
+
11366
+ var _SubUnsubAlertMessageEncoder = require("./controlMessageEncoder/SubUnsubAlertMessageEncoder");
11367
+
11368
+ var _SubUnsubAlertMessageEncoder2 = _interopRequireDefault(_SubUnsubAlertMessageEncoder);
11369
+
10930
11370
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
10931
11371
 
10932
11372
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -10978,6 +11418,8 @@ var MessageEncoder = function () {
10978
11418
  this[_streamerApi.messages.MessageTypeNames.ctrl.STATS] = new _StatsMessageEncoder2["default"]();
10979
11419
  this[_streamerApi.messages.MessageTypeNames.ctrl.FLOW] = new _FlowMessageEncoder2["default"]();
10980
11420
  this[_streamerApi.messages.MessageTypeNames.ctrl.SUBSCRIBE] = new _SubscribeMessageEncoder2["default"]();
11421
+ this[_streamerApi.messages.MessageTypeNames.ctrl.EXCHANGE_SUBSCRIBE] = new _ExchangeSubscribeMessageEncoder2["default"]();
11422
+ this[_streamerApi.messages.MessageTypeNames.ctrl.ALERTS_SUBUNSUB] = new _SubUnsubAlertMessageEncoder2["default"]();
10981
11423
  }
10982
11424
 
10983
11425
  MessageEncoder.prototype.length = function length(message) {
@@ -11003,7 +11445,54 @@ var MessageEncoder = function () {
11003
11445
 
11004
11446
  exports["default"] = QitchEncoder;
11005
11447
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/QitchEncoder.js","/lib/qitch/encoder")
11006
- },{"../../SMessage":5,"../../streamer-api":96,"../../streamer-utils":98,"../BlockHeader":19,"../MessageHeader":24,"../QitchConstants":26,"./controlMessageEncoder/FlowMessageEncoder":68,"./controlMessageEncoder/StatsMessageEncoder":69,"./controlMessageEncoder/SubscribeMessageEncoder":70,"_process":119,"buffer":109,"timers":140}],68:[function(require,module,exports){
11448
+ },{"../../SMessage":5,"../../streamer-api":108,"../../streamer-utils":110,"../BlockHeader":19,"../MessageHeader":24,"../QitchConstants":26,"./controlMessageEncoder/ExchangeSubscribeMessageEncoder":77,"./controlMessageEncoder/FlowMessageEncoder":78,"./controlMessageEncoder/StatsMessageEncoder":79,"./controlMessageEncoder/SubUnsubAlertMessageEncoder":80,"./controlMessageEncoder/SubscribeMessageEncoder":81,"_process":131,"buffer":121,"timers":152}],77:[function(require,module,exports){
11449
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11450
+ "use strict";
11451
+
11452
+ exports.__esModule = true;
11453
+
11454
+ var _ExchangeSubscribeMessageDef = require("../../controlMessageDefinition/ExchangeSubscribeMessageDef");
11455
+
11456
+ var def = _interopRequireWildcard(_ExchangeSubscribeMessageDef);
11457
+
11458
+ var _Qitch = require("../../Qitch");
11459
+
11460
+ var _Qitch2 = _interopRequireDefault(_Qitch);
11461
+
11462
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11463
+
11464
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
11465
+
11466
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
11467
+
11468
+ var ExchangeSubscribeMessageEncoder = function () {
11469
+ function ExchangeSubscribeMessageEncoder() {
11470
+ _classCallCheck(this, ExchangeSubscribeMessageEncoder);
11471
+ }
11472
+
11473
+ ExchangeSubscribeMessageEncoder.prototype.type = function type() {
11474
+ return def.TYPEID;
11475
+ };
11476
+
11477
+ ExchangeSubscribeMessageEncoder.prototype.length = function length(message) {
11478
+ return def.FIXED_LENGTH;
11479
+ };
11480
+
11481
+ ExchangeSubscribeMessageEncoder.prototype.encode = function encode(dst, offset, message) {
11482
+ _Qitch2["default"].putInt32(dst, offset + def.REQUEST_ID_OFFSET, message.id);
11483
+ _Qitch2["default"].putAction(dst, offset + def.ACTION_OFFSET, message.action);
11484
+ _Qitch2["default"].putMimetype(dst, offset + def.MIMETYPE_OFFSET, message.mimetype);
11485
+ _Qitch2["default"].putConflation(dst, offset + def.CONFLATION_OFFSET, message.conflation);
11486
+ _Qitch2["default"].putExcode(dst, offset + def.EXCODE_OFFSET, message.exchange);
11487
+ return dst;
11488
+ };
11489
+
11490
+ return ExchangeSubscribeMessageEncoder;
11491
+ }();
11492
+
11493
+ exports["default"] = ExchangeSubscribeMessageEncoder;
11494
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/ExchangeSubscribeMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
11495
+ },{"../../Qitch":25,"../../controlMessageDefinition/ExchangeSubscribeMessageDef":29,"_process":131,"buffer":121,"timers":152}],78:[function(require,module,exports){
11007
11496
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11008
11497
  "use strict";
11009
11498
 
@@ -11046,7 +11535,7 @@ var FlowMessageEncoder = function () {
11046
11535
 
11047
11536
  exports["default"] = FlowMessageEncoder;
11048
11537
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/FlowMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
11049
- },{"../../Qitch":25,"../../controlMessageDefinition/FlowMessageDef":29,"_process":119,"buffer":109,"timers":140}],69:[function(require,module,exports){
11538
+ },{"../../Qitch":25,"../../controlMessageDefinition/FlowMessageDef":32,"_process":131,"buffer":121,"timers":152}],79:[function(require,module,exports){
11050
11539
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11051
11540
  "use strict";
11052
11541
 
@@ -11089,7 +11578,52 @@ var StatsMessageEncoder = function () {
11089
11578
 
11090
11579
  exports["default"] = StatsMessageEncoder;
11091
11580
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/StatsMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
11092
- },{"../../Qitch":25,"../../controlMessageDefinition/StatsMessageDef":34,"_process":119,"buffer":109,"timers":140}],70:[function(require,module,exports){
11581
+ },{"../../Qitch":25,"../../controlMessageDefinition/StatsMessageDef":37,"_process":131,"buffer":121,"timers":152}],80:[function(require,module,exports){
11582
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11583
+ "use strict";
11584
+
11585
+ exports.__esModule = true;
11586
+
11587
+ var _SubUnsubAlertMessageDef = require("../../controlMessageDefinition/SubUnsubAlertMessageDef");
11588
+
11589
+ var def = _interopRequireWildcard(_SubUnsubAlertMessageDef);
11590
+
11591
+ var _Qitch = require("../../Qitch");
11592
+
11593
+ var _Qitch2 = _interopRequireDefault(_Qitch);
11594
+
11595
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11596
+
11597
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
11598
+
11599
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
11600
+
11601
+ var SubUnsubAlertMessageEncoder = function () {
11602
+ function SubUnsubAlertMessageEncoder() {
11603
+ _classCallCheck(this, SubUnsubAlertMessageEncoder);
11604
+ }
11605
+
11606
+ SubUnsubAlertMessageEncoder.prototype.type = function type() {
11607
+ return def.TYPEID;
11608
+ };
11609
+
11610
+ SubUnsubAlertMessageEncoder.prototype.length = function length(message) {
11611
+ return def.FIXED_LENGTH;
11612
+ };
11613
+
11614
+ SubUnsubAlertMessageEncoder.prototype.encode = function encode(dst, offset, message) {
11615
+ _Qitch2["default"].putInt32(dst, offset + def.REQUEST_ID_OFFSET, message.id);
11616
+ _Qitch2["default"].putAsciiString(dst, offset + def.OPERATION_OFFSET, message.operation, def.FIXED_OPERATION_LENGTH);
11617
+ _Qitch2["default"].putMimetype(dst, offset + def.MIMETYPE_OFFSET, message.mimetype);
11618
+ return dst;
11619
+ };
11620
+
11621
+ return SubUnsubAlertMessageEncoder;
11622
+ }();
11623
+
11624
+ exports["default"] = SubUnsubAlertMessageEncoder;
11625
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/SubUnsubAlertMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
11626
+ },{"../../Qitch":25,"../../controlMessageDefinition/SubUnsubAlertMessageDef":39,"_process":131,"buffer":121,"timers":152}],81:[function(require,module,exports){
11093
11627
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11094
11628
  "use strict";
11095
11629
 
@@ -11158,7 +11692,25 @@ var SubscribeMessageEncoder = function () {
11158
11692
 
11159
11693
  exports["default"] = SubscribeMessageEncoder;
11160
11694
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/encoder/controlMessageEncoder/SubscribeMessageEncoder.js","/lib/qitch/encoder/controlMessageEncoder")
11161
- },{"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/SubscribeMessageDef":36,"_process":119,"buffer":109,"timers":140}],71:[function(require,module,exports){
11695
+ },{"../../Qitch":25,"../../QitchConstants":26,"../../controlMessageDefinition/SubscribeMessageDef":41,"_process":131,"buffer":121,"timers":152}],82:[function(require,module,exports){
11696
+ (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11697
+ "use strict";
11698
+
11699
+ exports.__esModule = true;
11700
+ exports.LENGTH = exports.TRIGGER_VALUE_OFFSET = exports.ALERT_ID_OFFSET = exports.INSTRUMENTTYPE_OFFSET = exports.TIMESTAMP_OFFSET = exports.SYMBOL_OFFSET = exports.TYPEID = undefined;
11701
+
11702
+ var _QitchConstants = require("../QitchConstants");
11703
+
11704
+ var TYPEID = exports.TYPEID = 17;
11705
+
11706
+ var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = 0;
11707
+ var TIMESTAMP_OFFSET = exports.TIMESTAMP_OFFSET = SYMBOL_OFFSET + _QitchConstants.SYMBOL_LENGTH;
11708
+ var INSTRUMENTTYPE_OFFSET = exports.INSTRUMENTTYPE_OFFSET = TIMESTAMP_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
11709
+ var ALERT_ID_OFFSET = exports.ALERT_ID_OFFSET = INSTRUMENTTYPE_OFFSET + _QitchConstants.INSTRUMENTTYPE_LENGTH;
11710
+ var TRIGGER_VALUE_OFFSET = exports.TRIGGER_VALUE_OFFSET = ALERT_ID_OFFSET + _QitchConstants.LONG_LENGTH;
11711
+ var LENGTH = exports.LENGTH = TRIGGER_VALUE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11712
+ }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/AlertDef.js","/lib/qitch/marketDataDefinition")
11713
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],83:[function(require,module,exports){
11162
11714
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11163
11715
  "use strict";
11164
11716
 
@@ -11174,7 +11726,7 @@ var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = TIMESTAMP_OFFSET + _QitchConstants.T
11174
11726
  var ORDER_REFERENCE_OFFSET = exports.ORDER_REFERENCE_OFFSET = SYMBOL_OFFSET + _QitchConstants.LOCATECODE_LENGTH;
11175
11727
  var LENGTH = exports.LENGTH = ORDER_REFERENCE_OFFSET + _QitchConstants.ORDER_REFERENCE_LENGTH;
11176
11728
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/BookDeleteDef.js","/lib/qitch/marketDataDefinition")
11177
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],72:[function(require,module,exports){
11729
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],84:[function(require,module,exports){
11178
11730
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11179
11731
  "use strict";
11180
11732
 
@@ -11295,7 +11847,7 @@ BookOrderFlags.prototype.PRICE_MUSTBEFILLED_MASK = 0x40000000;
11295
11847
  BookOrderFlags.prototype.FUTURESETTLEMENT_MASK = 0x0800;
11296
11848
  BookOrderFlags.prototype.NEXTDAYSETTLEMENT_MASK = 0x1000;
11297
11849
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/BookOrderDef.js","/lib/qitch/marketDataDefinition")
11298
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],73:[function(require,module,exports){
11850
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],85:[function(require,module,exports){
11299
11851
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11300
11852
  "use strict";
11301
11853
 
@@ -11316,7 +11868,7 @@ var CALLPUTINDICATOR_OFFSET = exports.CALLPUTINDICATOR_OFFSET = CONTRACTSIZE_OFF
11316
11868
  var MINTICKSIZE_OFFSET = exports.MINTICKSIZE_OFFSET = CALLPUTINDICATOR_OFFSET + _QitchConstants.ASCIICHAR_LENGTH;
11317
11869
  var LENGTH = exports.LENGTH = MINTICKSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11318
11870
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/DerivativeInfoDef.js","/lib/qitch/marketDataDefinition")
11319
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],74:[function(require,module,exports){
11871
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],86:[function(require,module,exports){
11320
11872
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11321
11873
  "use strict";
11322
11874
 
@@ -11347,12 +11899,12 @@ var MARK_CHANGE_PERCENT_OFFSET = exports.MARK_CHANGE_PERCENT_OFFSET = MARK_CHANG
11347
11899
 
11348
11900
  var LENGTH = exports.LENGTH = MARK_CHANGE_PERCENT_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11349
11901
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/IVGreeksDef.js","/lib/qitch/marketDataDefinition")
11350
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],75:[function(require,module,exports){
11902
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],87:[function(require,module,exports){
11351
11903
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11352
11904
  "use strict";
11353
11905
 
11354
11906
  exports.__esModule = true;
11355
- exports.LENGTH = exports.PRICEVARIATION_OFFSET = exports.FARINDICATIVEPRICE_OFFSET = exports.NEARINDICATIVEPRICE_OFFSET = exports.PAIREDVOLUME_OFFSET = exports.ORDERSIDE_OFFSET = exports.SIZE_OFFSET = exports.REFERENCEPRICE_OFFSET = exports.TIMESTAMP_OFFSET = exports.IMBALANCE_TYPE_OFFSET = exports.LOCATECODE_OFFSET = exports.TYPEID = undefined;
11907
+ exports.LENGTH = exports.SYMBOL_OFFSET = exports.PRICEVARIATION_OFFSET = exports.FARINDICATIVEPRICE_OFFSET = exports.NEARINDICATIVEPRICE_OFFSET = exports.PAIREDVOLUME_OFFSET = exports.ORDERSIDE_OFFSET = exports.SIZE_OFFSET = exports.REFERENCEPRICE_OFFSET = exports.TIMESTAMP_OFFSET = exports.IMBALANCE_TYPE_OFFSET = exports.LOCATECODE_OFFSET = exports.TYPEID = undefined;
11356
11908
 
11357
11909
  var _QitchConstants = require("../QitchConstants");
11358
11910
 
@@ -11368,14 +11920,15 @@ var PAIREDVOLUME_OFFSET = exports.PAIREDVOLUME_OFFSET = ORDERSIDE_OFFSET + _Qitc
11368
11920
  var NEARINDICATIVEPRICE_OFFSET = exports.NEARINDICATIVEPRICE_OFFSET = PAIREDVOLUME_OFFSET + _QitchConstants.INT_LENGTH;
11369
11921
  var FARINDICATIVEPRICE_OFFSET = exports.FARINDICATIVEPRICE_OFFSET = NEARINDICATIVEPRICE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11370
11922
  var PRICEVARIATION_OFFSET = exports.PRICEVARIATION_OFFSET = FARINDICATIVEPRICE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11371
- var LENGTH = exports.LENGTH = PRICEVARIATION_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11923
+ var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = PRICEVARIATION_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11924
+ var LENGTH = exports.LENGTH = SYMBOL_OFFSET + _QitchConstants.SYMBOL_LENGTH;
11372
11925
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/ImbalanceStatusDef.js","/lib/qitch/marketDataDefinition")
11373
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],76:[function(require,module,exports){
11926
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],88:[function(require,module,exports){
11374
11927
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11375
11928
  "use strict";
11376
11929
 
11377
11930
  exports.__esModule = true;
11378
- exports.LENGTH = exports.LONGDECIMALVOLUME_OFFSET = exports.TRADEVALUE_OFFSET = exports.LASTTIME_OFFSET = exports.OPENTIME_OFFSET = exports.STARTTIME_OFFSET = exports.VOLUME_OFFSET = exports.LAST_OFFSET = exports.HIGH_OFFSET = exports.LOW_OFFSET = exports.OPEN_OFFSET = exports.SYMBOL_OFFSET = exports.TIMESTAMP_OFFSET = exports.TYPEID = undefined;
11931
+ exports.LENGTH = exports.PERIODMS_OFFSET = exports.LONGDECIMALVOLUME_OFFSET = exports.TRADEVALUE_OFFSET = exports.LASTTIME_OFFSET = exports.OPENTIME_OFFSET = exports.STARTTIME_OFFSET = exports.VOLUME_OFFSET = exports.LAST_OFFSET = exports.HIGH_OFFSET = exports.LOW_OFFSET = exports.OPEN_OFFSET = exports.SYMBOL_OFFSET = exports.TIMESTAMP_OFFSET = exports.TYPEID = undefined;
11379
11932
 
11380
11933
  var _QitchConstants = require("../QitchConstants");
11381
11934
 
@@ -11393,9 +11946,10 @@ var OPENTIME_OFFSET = exports.OPENTIME_OFFSET = STARTTIME_OFFSET + _QitchConstan
11393
11946
  var LASTTIME_OFFSET = exports.LASTTIME_OFFSET = OPENTIME_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
11394
11947
  var TRADEVALUE_OFFSET = exports.TRADEVALUE_OFFSET = LASTTIME_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
11395
11948
  var LONGDECIMALVOLUME_OFFSET = exports.LONGDECIMALVOLUME_OFFSET = TRADEVALUE_OFFSET + _QitchConstants.LONG_LENGTH;
11396
- var LENGTH = exports.LENGTH = LONGDECIMALVOLUME_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11949
+ var PERIODMS_OFFSET = exports.PERIODMS_OFFSET = LONGDECIMALVOLUME_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11950
+ var LENGTH = exports.LENGTH = PERIODMS_OFFSET + _QitchConstants.INT_LENGTH;
11397
11951
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/IntervalDef.js","/lib/qitch/marketDataDefinition")
11398
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],77:[function(require,module,exports){
11952
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],89:[function(require,module,exports){
11399
11953
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11400
11954
  "use strict";
11401
11955
 
@@ -11415,7 +11969,7 @@ var TICK_OFFSET = exports.TICK_OFFSET = ACCUMULATEDVOLUME_OFFSET + _QitchConstan
11415
11969
  var LASTTRADE_EXCODE_OFFSET = exports.LASTTRADE_EXCODE_OFFSET = TICK_OFFSET + _QitchConstants.TICK_LENGTH;
11416
11970
  var LENGTH = exports.LENGTH = LASTTRADE_EXCODE_OFFSET + _QitchConstants.EXCODE_LENGTH;
11417
11971
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/LastSaleDef.js","/lib/qitch/marketDataDefinition")
11418
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],78:[function(require,module,exports){
11972
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],90:[function(require,module,exports){
11419
11973
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11420
11974
  "use strict";
11421
11975
 
@@ -11455,7 +12009,7 @@ var LimitUpLimitDownFlags = exports.LimitUpLimitDownFlags = function () {
11455
12009
  LimitUpLimitDownFlags.prototype.BID_NOT_EXECUTABLE = 0x1;
11456
12010
  LimitUpLimitDownFlags.prototype.ASK_NOT_EXECUTABLE = 0x2;
11457
12011
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/LimitUpLimitDownDef.js","/lib/qitch/marketDataDefinition")
11458
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],79:[function(require,module,exports){
12012
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],91:[function(require,module,exports){
11459
12013
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11460
12014
  "use strict";
11461
12015
 
@@ -11481,7 +12035,7 @@ var DECIMALBIDSIZE_OFFSET = exports.DECIMALBIDSIZE_OFFSET = SHARESPERSIZEUNIT_OF
11481
12035
  var DECIMALASKSIZE_OFFSET = exports.DECIMALASKSIZE_OFFSET = DECIMALBIDSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11482
12036
  var LENGTH = exports.LENGTH = DECIMALASKSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11483
12037
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/MMQuoteDef.js","/lib/qitch/marketDataDefinition")
11484
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],80:[function(require,module,exports){
12038
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],92:[function(require,module,exports){
11485
12039
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11486
12040
  "use strict";
11487
12041
 
@@ -11509,12 +12063,12 @@ var BUYBLOCKTRANSACTIONS_OFFSET = exports.BUYBLOCKTRANSACTIONS_OFFSET = SELLTRAN
11509
12063
  var SELLBLOCKTRANSACTIONS_OFFSET = exports.SELLBLOCKTRANSACTIONS_OFFSET = BUYBLOCKTRANSACTIONS_OFFSET + _QitchConstants.INT_LENGTH;
11510
12064
  var LENGTH = exports.LENGTH = SELLBLOCKTRANSACTIONS_OFFSET + _QitchConstants.INT_LENGTH;
11511
12065
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/NethousePositionDef.js","/lib/qitch/marketDataDefinition")
11512
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],81:[function(require,module,exports){
12066
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],93:[function(require,module,exports){
11513
12067
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11514
12068
  "use strict";
11515
12069
 
11516
12070
  exports.__esModule = true;
11517
- exports.PricedataFlags = exports.LENGTH = exports.CURRENCYID_OFFSET = exports.DECIMALLASTTRADESIZE_OFFSET = exports.DECIMALPOSTMARKETVOLUME_OFFSET = exports.DECIMALPREMARKETVOLUME_OFFSET = exports.DECIMALACCUMULATEDVOLUME_OFFSET = exports.LASTTRADEEXCODE_OFFSET = exports.POSTMARKETCHANGE_OFFSET = exports.POSTMARKETVOLUME_OFFSET = exports.POSTMARKETLASTPRICE_OFFSET = exports.POSTMARKETTRADETIME_OFFSET = exports.PREMARKETCHANGE_OFFSET = exports.PREMARKETVOLUME_OFFSET = exports.PREMARKETLASTPRICE_OFFSET = exports.PREMARKETTRADETIME_OFFSET = exports.TWAP_OFFSET = exports.VWAP_OFFSET = exports.FLAGS_OFFSET = exports.ACCUMULATEDTRADEVALUE_OFFSET = exports.TRADECOUNT_OFFSET = exports.CLOSE_OFFSET = exports.LASTTRADESIZE_OFFSET = exports.TICK_OFFSET = exports.LASTTRADETIME_OFFSET = exports.ACCUMULATEDVOLUME_OFFSET = exports.LOW_OFFSET = exports.HIGH_OFFSET = exports.OPEN_OFFSET = exports.PREVCLOSE_OFFSET = exports.LAST_OFFSET = exports.SYMBOL_OFFSET = exports.TIMESTAMP_OFFSET = exports.TYPEID = undefined;
12071
+ exports.PricedataFlags = exports.LENGTH = exports.VWAPVOLUME_OFFSET = exports.CURRENCYID_OFFSET = exports.DECIMALLASTTRADESIZE_OFFSET = exports.DECIMALPOSTMARKETVOLUME_OFFSET = exports.DECIMALPREMARKETVOLUME_OFFSET = exports.DECIMALACCUMULATEDVOLUME_OFFSET = exports.LASTTRADEEXCODE_OFFSET = exports.POSTMARKETCHANGE_OFFSET = exports.POSTMARKETVOLUME_OFFSET = exports.POSTMARKETLASTPRICE_OFFSET = exports.POSTMARKETTRADETIME_OFFSET = exports.PREMARKETCHANGE_OFFSET = exports.PREMARKETVOLUME_OFFSET = exports.PREMARKETLASTPRICE_OFFSET = exports.PREMARKETTRADETIME_OFFSET = exports.TWAP_OFFSET = exports.VWAP_OFFSET = exports.FLAGS_OFFSET = exports.ACCUMULATEDTRADEVALUE_OFFSET = exports.TRADECOUNT_OFFSET = exports.CLOSE_OFFSET = exports.LASTTRADESIZE_OFFSET = exports.TICK_OFFSET = exports.LASTTRADETIME_OFFSET = exports.ACCUMULATEDVOLUME_OFFSET = exports.LOW_OFFSET = exports.HIGH_OFFSET = exports.OPEN_OFFSET = exports.PREVCLOSE_OFFSET = exports.LAST_OFFSET = exports.SYMBOL_OFFSET = exports.TIMESTAMP_OFFSET = exports.TYPEID = undefined;
11518
12072
 
11519
12073
  var _QitchConstants = require("../QitchConstants");
11520
12074
 
@@ -11556,7 +12110,9 @@ var DECIMALLASTTRADESIZE_OFFSET = exports.DECIMALLASTTRADESIZE_OFFSET = DECIMALP
11556
12110
 
11557
12111
  var CURRENCYID_OFFSET = exports.CURRENCYID_OFFSET = DECIMALLASTTRADESIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11558
12112
 
11559
- var LENGTH = exports.LENGTH = CURRENCYID_OFFSET + _QitchConstants.CURRENCYID_LENGTH;
12113
+ var VWAPVOLUME_OFFSET = exports.VWAPVOLUME_OFFSET = CURRENCYID_OFFSET + _QitchConstants.CURRENCYID_LENGTH;
12114
+
12115
+ var LENGTH = exports.LENGTH = VWAPVOLUME_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11560
12116
 
11561
12117
  var PricedataFlags = exports.PricedataFlags = function () {
11562
12118
  function PricedataFlags() {
@@ -11577,7 +12133,7 @@ var PricedataFlags = exports.PricedataFlags = function () {
11577
12133
  PricedataFlags.prototype.ANNUALHIGH_MASK = 0x01;
11578
12134
  PricedataFlags.prototype.ANNUALLOW_MASK = 0x02;
11579
12135
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/PricedataDef.js","/lib/qitch/marketDataDefinition")
11580
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],82:[function(require,module,exports){
12136
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],94:[function(require,module,exports){
11581
12137
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11582
12138
  "use strict";
11583
12139
 
@@ -11591,7 +12147,7 @@ var TYPEID = exports.TYPEID = 6;
11591
12147
  var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = 0;
11592
12148
  var LENGTH = exports.LENGTH = SYMBOL_OFFSET + _QitchConstants.LOCATECODE_LENGTH;
11593
12149
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/PurgeBookDef.js","/lib/qitch/marketDataDefinition")
11594
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],83:[function(require,module,exports){
12150
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],95:[function(require,module,exports){
11595
12151
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11596
12152
  "use strict";
11597
12153
 
@@ -11618,7 +12174,7 @@ var DECIMALASKSIZE_OFFSET = exports.DECIMALASKSIZE_OFFSET = SHARESPERSIZEUNIT_OF
11618
12174
  var DECIMALBIDSIZE_OFFSET = exports.DECIMALBIDSIZE_OFFSET = DECIMALASKSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11619
12175
  var LENGTH = exports.LENGTH = DECIMALBIDSIZE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11620
12176
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/QuoteDef.js","/lib/qitch/marketDataDefinition")
11621
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],84:[function(require,module,exports){
12177
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],96:[function(require,module,exports){
11622
12178
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11623
12179
  "use strict";
11624
12180
 
@@ -11642,12 +12198,12 @@ var CAVEATEMPTOR_OFFSET = exports.CAVEATEMPTOR_OFFSET = PQE_OFFSET + _QitchConst
11642
12198
  var BOARDLOTSIZE_OFFSET = exports.BOARDLOTSIZE_OFFSET = CAVEATEMPTOR_OFFSET + _QitchConstants.BYTE_LENGTH;
11643
12199
  var LENGTH = exports.LENGTH = BOARDLOTSIZE_OFFSET + _QitchConstants.INT_LENGTH;
11644
12200
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/SymbolInfoDef.js","/lib/qitch/marketDataDefinition")
11645
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],85:[function(require,module,exports){
12201
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],97:[function(require,module,exports){
11646
12202
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11647
12203
  "use strict";
11648
12204
 
11649
12205
  exports.__esModule = true;
11650
- exports.LENGTH = exports.NOTE_OFFSET = exports.OPENINGTIME_OFFSET = exports.EFFECTIVETIME_OFFSET = exports.CLOSINGPRICE_OFFSET = exports.REGSHOSTATUS_OFFSET = exports.HALTINDICATOR_OFFSET = exports.HALTSTATUS_OFFSET = exports.LOCATE_CODE_OFFSET = exports.TYPEID = undefined;
12206
+ exports.LENGTH = exports.SYMBOL_OFFSET = exports.NOTE_OFFSET = exports.OPENINGTIME_OFFSET = exports.EFFECTIVETIME_OFFSET = exports.CLOSINGPRICE_OFFSET = exports.REGSHOSTATUS_OFFSET = exports.HALTINDICATOR_OFFSET = exports.HALTSTATUS_OFFSET = exports.LOCATE_CODE_OFFSET = exports.TYPEID = undefined;
11651
12207
 
11652
12208
  var _QitchConstants = require("../QitchConstants");
11653
12209
 
@@ -11661,10 +12217,11 @@ var CLOSINGPRICE_OFFSET = exports.CLOSINGPRICE_OFFSET = REGSHOSTATUS_OFFSET + _Q
11661
12217
  var EFFECTIVETIME_OFFSET = exports.EFFECTIVETIME_OFFSET = CLOSINGPRICE_OFFSET + _QitchConstants.DOUBLE_LENGTH;
11662
12218
  var OPENINGTIME_OFFSET = exports.OPENINGTIME_OFFSET = EFFECTIVETIME_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
11663
12219
  var NOTE_OFFSET = exports.NOTE_OFFSET = OPENINGTIME_OFFSET + _QitchConstants.TIMESTAMP_LENGTH;
12220
+ var SYMBOL_OFFSET = exports.SYMBOL_OFFSET = NOTE_OFFSET + _QitchConstants.NOTE_LENGTH;
11664
12221
 
11665
- var LENGTH = exports.LENGTH = NOTE_OFFSET + _QitchConstants.NOTE_LENGTH;
12222
+ var LENGTH = exports.LENGTH = SYMBOL_OFFSET + _QitchConstants.SYMBOL_LENGTH;
11666
12223
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/SymbolStatusDef.js","/lib/qitch/marketDataDefinition")
11667
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],86:[function(require,module,exports){
12224
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],98:[function(require,module,exports){
11668
12225
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11669
12226
  "use strict";
11670
12227
 
@@ -11799,7 +12356,7 @@ TradeFlags.prototype.TRADETHROUGHEXEMPT = 0x00000200;
11799
12356
  TradeFlags.prototype.CORRECTION_MASK = 0x08000000;
11800
12357
  TradeFlags.prototype.OUTOFSEQUENCE_MASK = 0x00000400;
11801
12358
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/qitch/marketDataDefinition/TradeDef.js","/lib/qitch/marketDataDefinition")
11802
- },{"../QitchConstants":26,"_process":119,"buffer":109,"timers":140}],87:[function(require,module,exports){
12359
+ },{"../QitchConstants":26,"_process":131,"buffer":121,"timers":152}],99:[function(require,module,exports){
11803
12360
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11804
12361
  "use strict";
11805
12362
 
@@ -11849,7 +12406,7 @@ var SMessageDecoder = function () {
11849
12406
 
11850
12407
  exports["default"] = SMessageDecoder;
11851
12408
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/SMessageDecoder.js","/lib/serialization")
11852
- },{"./v1/SMessageDecoder_1.js":89,"_process":119,"buffer":109,"timers":140}],88:[function(require,module,exports){
12409
+ },{"./v1/SMessageDecoder_1.js":101,"_process":131,"buffer":121,"timers":152}],100:[function(require,module,exports){
11853
12410
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11854
12411
  "use strict";
11855
12412
 
@@ -11896,7 +12453,7 @@ var SMessageEncoder = function () {
11896
12453
 
11897
12454
  exports["default"] = SMessageEncoder;
11898
12455
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/SMessageEncoder.js","/lib/serialization")
11899
- },{"./v1/SMessageEncoder_1.js":90,"_process":119,"buffer":109,"timers":140}],89:[function(require,module,exports){
12456
+ },{"./v1/SMessageEncoder_1.js":102,"_process":131,"buffer":121,"timers":152}],101:[function(require,module,exports){
11900
12457
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11901
12458
  "use strict";
11902
12459
 
@@ -11950,7 +12507,7 @@ var SMessageDecoder_1 = function () {
11950
12507
 
11951
12508
  exports["default"] = SMessageDecoder_1;
11952
12509
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/v1/SMessageDecoder_1.js","/lib/serialization/v1")
11953
- },{"../../SMessage.js":5,"./codec.js":91,"_process":119,"buffer":109,"timers":140}],90:[function(require,module,exports){
12510
+ },{"../../SMessage.js":5,"./codec.js":103,"_process":131,"buffer":121,"timers":152}],102:[function(require,module,exports){
11954
12511
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
11955
12512
  "use strict";
11956
12513
 
@@ -12000,7 +12557,7 @@ var SMessageEncoder_1 = function () {
12000
12557
 
12001
12558
  exports["default"] = SMessageEncoder_1;
12002
12559
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/v1/SMessageEncoder_1.js","/lib/serialization/v1")
12003
- },{"../../message.js":17,"./codec.js":91,"_process":119,"buffer":109,"timers":140}],91:[function(require,module,exports){
12560
+ },{"../../message.js":17,"./codec.js":103,"_process":131,"buffer":121,"timers":152}],103:[function(require,module,exports){
12004
12561
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
12005
12562
  "use strict";
12006
12563
 
@@ -12045,7 +12602,7 @@ exports["default"] = new function () {
12045
12602
  this.HEADER_LENGTH_CHAR = this.PAYLOADLENGTH_OFFSET + this.UINT_LENGTH_CHAR;
12046
12603
  }();
12047
12604
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/serialization/v1/codec.js","/lib/serialization/v1")
12048
- },{"_process":119,"buffer":109,"timers":140}],92:[function(require,module,exports){
12605
+ },{"_process":131,"buffer":121,"timers":152}],104:[function(require,module,exports){
12049
12606
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
12050
12607
  'use strict';
12051
12608
 
@@ -12538,7 +13095,7 @@ exports["default"] = new function () {
12538
13095
  }
12539
13096
  }).call(undefined);
12540
13097
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/stomp.js/lib/stomp.js","/lib/stomp.js/lib")
12541
- },{"_process":119,"buffer":109,"timers":140}],93:[function(require,module,exports){
13098
+ },{"_process":131,"buffer":121,"timers":152}],105:[function(require,module,exports){
12542
13099
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
12543
13100
  "use strict";
12544
13101
 
@@ -12768,7 +13325,7 @@ var StompConnection = function () {
12768
13325
 
12769
13326
  exports["default"] = StompConnection;
12770
13327
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/stomp/StompConnection.js","/lib/stomp")
12771
- },{"../EventSupport.js":2,"../http.js":14,"../logging.js":16,"../streamer-events.js":97,"_process":119,"buffer":109,"timers":140}],94:[function(require,module,exports){
13328
+ },{"../EventSupport.js":2,"../http.js":14,"../logging.js":16,"../streamer-events.js":109,"_process":131,"buffer":121,"timers":152}],106:[function(require,module,exports){
12772
13329
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
12773
13330
  "use strict";
12774
13331
 
@@ -14090,7 +14647,7 @@ var StompStream = function () {
14090
14647
 
14091
14648
  exports["default"] = StompStream;
14092
14649
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/stomp/StompStream.js","/lib/stomp")
14093
- },{"../EventSupport.js":2,"../UShortId.js":9,"../formatting.js":13,"../logging.js":16,"../polyfills.js":18,"../streamer-api.js":96,"../streamer-events.js":97,"../streamer-utils.js":98,"../utils.js":103,"_process":119,"buffer":109,"timers":140}],95:[function(require,module,exports){
14650
+ },{"../EventSupport.js":2,"../UShortId.js":9,"../formatting.js":13,"../logging.js":16,"../polyfills.js":18,"../streamer-api.js":108,"../streamer-events.js":109,"../streamer-utils.js":110,"../utils.js":115,"_process":131,"buffer":121,"timers":152}],107:[function(require,module,exports){
14094
14651
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
14095
14652
  "use strict";
14096
14653
 
@@ -14312,7 +14869,7 @@ var StompStreamingService = function () {
14312
14869
 
14313
14870
  exports["default"] = StompStreamingService;
14314
14871
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/stomp/StompStreamingService.js","/lib/stomp")
14315
- },{"../logging.js":16,"../message.js":17,"../polyfills.js":18,"../streamer-api.js":96,"../transmission/JsonStompTransmitter.js":99,"./StompConnection.js":93,"./StompStream.js":94,"_process":119,"buffer":109,"timers":140}],96:[function(require,module,exports){
14872
+ },{"../logging.js":16,"../message.js":17,"../polyfills.js":18,"../streamer-api.js":108,"../transmission/JsonStompTransmitter.js":111,"./StompConnection.js":105,"./StompStream.js":106,"_process":131,"buffer":121,"timers":152}],108:[function(require,module,exports){
14316
14873
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
14317
14874
  "use strict";
14318
14875
 
@@ -14325,7 +14882,7 @@ exports.__esModule = true;
14325
14882
  */
14326
14883
 
14327
14884
  var LIBRARY_NAME = exports.LIBRARY_NAME = "JavaScript";
14328
- var VERSION = exports.VERSION = "2.36.0";
14885
+ var VERSION = exports.VERSION = "2.40.0";
14329
14886
 
14330
14887
  /**
14331
14888
  * Streamer message api namespace.
@@ -14421,7 +14978,9 @@ messages.MessageTypeNames = {
14421
14978
  TRADENOTIFICATION: 'D19',
14422
14979
  NEWSCMDFILTER: 'D20',
14423
14980
  NEWSERROR: 'D21',
14424
- DIVIDEND: 'D22'
14981
+ DIVIDEND: 'D22',
14982
+ EARNINGS: 'D23',
14983
+ SPLIT: 'D24'
14425
14984
  }
14426
14985
  };
14427
14986
 
@@ -14709,6 +15268,15 @@ messages.control.ExchangeSubscribeResponse = function () {
14709
15268
 
14710
15269
  messages.control.ExchangeSubscribeResponse.prototype = new messages.control.BaseResponse();
14711
15270
 
15271
+ /**
15272
+ * Creates an Alert un-subscribe response message.
15273
+ * @constructor
15274
+ */
15275
+ messages.control.AlertSubUnsubResponse = function () {
15276
+ this.init(messages.MessageTypeNames.ctrl.ALERTS_SUBUNSUB_RESPONSE);
15277
+ };
15278
+ messages.control.AlertSubUnsubResponse.prototype = new messages.control.BaseResponse();
15279
+
14712
15280
  /**
14713
15281
  * Creates Trade notification subscribe response message.
14714
15282
  * @constructor
@@ -15464,7 +16032,7 @@ messages.market.OrderChangeType = {
15464
16032
  'E': "EXECUTE"
15465
16033
  };
15466
16034
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/streamer-api.js","/lib")
15467
- },{"_process":119,"buffer":109,"timers":140}],97:[function(require,module,exports){
16035
+ },{"_process":131,"buffer":121,"timers":152}],109:[function(require,module,exports){
15468
16036
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
15469
16037
  "use strict";
15470
16038
 
@@ -15518,7 +16086,7 @@ var close = exports.close = function close(moreArgs) {
15518
16086
  return event("close", moreArgs);
15519
16087
  };
15520
16088
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/streamer-events.js","/lib")
15521
- },{"./polyfills":18,"_process":119,"buffer":109,"timers":140}],98:[function(require,module,exports){
16089
+ },{"./polyfills":18,"_process":131,"buffer":121,"timers":152}],110:[function(require,module,exports){
15522
16090
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
15523
16091
  'use strict';
15524
16092
 
@@ -15643,7 +16211,7 @@ var getMessageName = exports.getMessageName = function () {
15643
16211
  };
15644
16212
  }();
15645
16213
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/streamer-utils.js","/lib")
15646
- },{"./streamer-api.js":96,"_process":119,"buffer":109,"timers":140}],99:[function(require,module,exports){
16214
+ },{"./streamer-api.js":108,"_process":131,"buffer":121,"timers":152}],111:[function(require,module,exports){
15647
16215
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
15648
16216
  "use strict";
15649
16217
 
@@ -15693,7 +16261,7 @@ var JsonStompTransmitter = function () {
15693
16261
 
15694
16262
  exports["default"] = JsonStompTransmitter;
15695
16263
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/transmission/JsonStompTransmitter.js","/lib/transmission")
15696
- },{"../EventSupport.js":2,"_process":119,"buffer":109,"timers":140}],100:[function(require,module,exports){
16264
+ },{"../EventSupport.js":2,"_process":131,"buffer":121,"timers":152}],112:[function(require,module,exports){
15697
16265
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
15698
16266
  "use strict";
15699
16267
 
@@ -15752,7 +16320,7 @@ var JsonTransmitter = function () {
15752
16320
 
15753
16321
  exports["default"] = JsonTransmitter;
15754
16322
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/transmission/JsonTransmitter.js","/lib/transmission")
15755
- },{"../EventSupport.js":2,"../message.js":17,"_process":119,"buffer":109,"timers":140}],101:[function(require,module,exports){
16323
+ },{"../EventSupport.js":2,"../message.js":17,"_process":131,"buffer":121,"timers":152}],113:[function(require,module,exports){
15756
16324
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
15757
16325
  "use strict";
15758
16326
 
@@ -15876,7 +16444,7 @@ QitchTransmitter.prototype.DEFAULT_BUFFERSIZE = 4096;
15876
16444
 
15877
16445
  exports["default"] = QitchTransmitter;
15878
16446
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/transmission/QitchTransmitter.js","/lib/transmission")
15879
- },{"../EventSupport.js":2,"../SMessage":5,"../UShortId.js":9,"../message.js":17,"../qitch/LocateCodeInjector":23,"../qitch/decoder/QitchDecoder":41,"../qitch/encoder/QitchEncoder":67,"../utils":103,"_process":119,"buffer":109,"timers":140}],102:[function(require,module,exports){
16447
+ },{"../EventSupport.js":2,"../SMessage":5,"../UShortId.js":9,"../message.js":17,"../qitch/LocateCodeInjector":23,"../qitch/decoder/QitchDecoder":46,"../qitch/encoder/QitchEncoder":76,"../utils":115,"_process":131,"buffer":121,"timers":152}],114:[function(require,module,exports){
15880
16448
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
15881
16449
  "use strict";
15882
16450
 
@@ -15966,7 +16534,7 @@ var SMessageTransmitter = function () {
15966
16534
 
15967
16535
  exports["default"] = SMessageTransmitter;
15968
16536
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/transmission/SMessageTransmitter.js","/lib/transmission")
15969
- },{"../EventSupport.js":2,"../SMessage.js":5,"../UShortId.js":9,"../formatting.js":13,"../message.js":17,"_process":119,"buffer":109,"timers":140}],103:[function(require,module,exports){
16537
+ },{"../EventSupport.js":2,"../SMessage.js":5,"../UShortId.js":9,"../formatting.js":13,"../message.js":17,"_process":131,"buffer":121,"timers":152}],115:[function(require,module,exports){
15970
16538
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
15971
16539
  "use strict";
15972
16540
 
@@ -16017,7 +16585,7 @@ var asciiStringToArrayBuffer = exports.asciiStringToArrayBuffer = function ascii
16017
16585
  return buf;
16018
16586
  };
16019
16587
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/lib/utils.js","/lib")
16020
- },{"_process":119,"buffer":109,"timers":140}],104:[function(require,module,exports){
16588
+ },{"_process":131,"buffer":121,"timers":152}],116:[function(require,module,exports){
16021
16589
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
16022
16590
 
16023
16591
  module.exports = function equal(arr1, arr2) {
@@ -16030,7 +16598,7 @@ module.exports = function equal(arr1, arr2) {
16030
16598
  }
16031
16599
 
16032
16600
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/array-equal/index.js","/node_modules/array-equal")
16033
- },{"_process":119,"buffer":109,"timers":140}],105:[function(require,module,exports){
16601
+ },{"_process":131,"buffer":121,"timers":152}],117:[function(require,module,exports){
16034
16602
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
16035
16603
  'use strict'
16036
16604
 
@@ -16185,7 +16753,7 @@ function fromByteArray (uint8) {
16185
16753
  }
16186
16754
 
16187
16755
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/base64-js/index.js","/node_modules/base64-js")
16188
- },{"_process":119,"buffer":109,"timers":140}],106:[function(require,module,exports){
16756
+ },{"_process":131,"buffer":121,"timers":152}],118:[function(require,module,exports){
16189
16757
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
16190
16758
  ;(function (globalObject) {
16191
16759
  'use strict';
@@ -19091,15 +19659,15 @@ function fromByteArray (uint8) {
19091
19659
  })(this);
19092
19660
 
19093
19661
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/bignumber.js/bignumber.js","/node_modules/bignumber.js")
19094
- },{"_process":119,"buffer":109,"timers":140}],107:[function(require,module,exports){
19662
+ },{"_process":131,"buffer":121,"timers":152}],119:[function(require,module,exports){
19095
19663
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
19096
19664
 
19097
19665
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/browser-resolve/empty.js","/node_modules/browser-resolve")
19098
- },{"_process":119,"buffer":109,"timers":140}],108:[function(require,module,exports){
19666
+ },{"_process":131,"buffer":121,"timers":152}],120:[function(require,module,exports){
19099
19667
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
19100
19668
 
19101
19669
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/browserify/lib/_empty.js","/node_modules/browserify/lib")
19102
- },{"_process":119,"buffer":109,"timers":140}],109:[function(require,module,exports){
19670
+ },{"_process":131,"buffer":121,"timers":152}],121:[function(require,module,exports){
19103
19671
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
19104
19672
  /*!
19105
19673
  * The buffer module from node.js, for the browser.
@@ -20839,7 +21407,7 @@ function numberIsNaN (obj) {
20839
21407
  }
20840
21408
 
20841
21409
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/buffer/index.js","/node_modules/buffer")
20842
- },{"_process":119,"base64-js":105,"buffer":109,"ieee754":114,"timers":140}],110:[function(require,module,exports){
21410
+ },{"_process":131,"base64-js":117,"buffer":121,"ieee754":126,"timers":152}],122:[function(require,module,exports){
20843
21411
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
20844
21412
  module.exports = {
20845
21413
  "100": "Continue",
@@ -20907,7 +21475,7 @@ module.exports = {
20907
21475
  }
20908
21476
 
20909
21477
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/builtin-status-codes/browser.js","/node_modules/builtin-status-codes")
20910
- },{"_process":119,"buffer":109,"timers":140}],111:[function(require,module,exports){
21478
+ },{"_process":131,"buffer":121,"timers":152}],123:[function(require,module,exports){
20911
21479
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
20912
21480
  // Copyright Joyent, Inc. and other Node contributors.
20913
21481
  //
@@ -21018,7 +21586,7 @@ function objectToString(o) {
21018
21586
  }
21019
21587
 
21020
21588
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/core-util-is/lib/util.js","/node_modules/core-util-is/lib")
21021
- },{"_process":119,"buffer":109,"timers":140}],112:[function(require,module,exports){
21589
+ },{"_process":131,"buffer":121,"timers":152}],124:[function(require,module,exports){
21022
21590
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
21023
21591
  // Copyright Joyent, Inc. and other Node contributors.
21024
21592
  //
@@ -21545,7 +22113,7 @@ function functionBindPolyfill(context) {
21545
22113
  }
21546
22114
 
21547
22115
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/events/events.js","/node_modules/events")
21548
- },{"_process":119,"buffer":109,"timers":140}],113:[function(require,module,exports){
22116
+ },{"_process":131,"buffer":121,"timers":152}],125:[function(require,module,exports){
21549
22117
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
21550
22118
  var http = require('http')
21551
22119
  var url = require('url')
@@ -21580,7 +22148,7 @@ function validateParams (params) {
21580
22148
  }
21581
22149
 
21582
22150
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/https-browserify/index.js","/node_modules/https-browserify")
21583
- },{"_process":119,"buffer":109,"http":125,"timers":140,"url":142}],114:[function(require,module,exports){
22151
+ },{"_process":131,"buffer":121,"http":137,"timers":152,"url":154}],126:[function(require,module,exports){
21584
22152
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
21585
22153
  exports.read = function (buffer, offset, isLE, mLen, nBytes) {
21586
22154
  var e, m
@@ -21668,7 +22236,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
21668
22236
  }
21669
22237
 
21670
22238
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/ieee754/index.js","/node_modules/ieee754")
21671
- },{"_process":119,"buffer":109,"timers":140}],115:[function(require,module,exports){
22239
+ },{"_process":131,"buffer":121,"timers":152}],127:[function(require,module,exports){
21672
22240
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
21673
22241
  if (typeof Object.create === 'function') {
21674
22242
  // implementation from standard node.js 'util' module
@@ -21695,12 +22263,12 @@ if (typeof Object.create === 'function') {
21695
22263
  }
21696
22264
 
21697
22265
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/inherits/inherits_browser.js","/node_modules/inherits")
21698
- },{"_process":119,"buffer":109,"timers":140}],116:[function(require,module,exports){
22266
+ },{"_process":131,"buffer":121,"timers":152}],128:[function(require,module,exports){
21699
22267
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
21700
22268
  (function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self,e.JSBI=t())})(this,function(){'use strict';function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var _,n=0;n<t.length;n++)_=t[n],_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(e,_.key,_)}function _(e,t,_){return t&&i(e.prototype,t),_&&i(e,_),e}function n(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&l(e,t)}function g(e){return g=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},g(e)}function l(e,t){return l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},l(e,t)}function o(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function a(){return a=o()?Reflect.construct:function(e,t,i){var _=[null];_.push.apply(_,t);var n=Function.bind.apply(e,_),g=new n;return i&&l(g,i.prototype),g},a.apply(null,arguments)}function s(e){return-1!==Function.toString.call(e).indexOf("[native code]")}function u(e){var t="function"==typeof Map?new Map:void 0;return u=function(e){function i(){return a(e,arguments,g(this).constructor)}if(null===e||!s(e))return e;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if("undefined"!=typeof t){if(t.has(e))return t.get(e);t.set(e,i)}return i.prototype=Object.create(e.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),l(i,e)},u(e)}function r(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function d(e,t){return t&&("object"==typeof t||"function"==typeof t)?t:r(e)}var h=function(i){var o=Math.abs,a=Math.max,s=Math.imul,u=Math.clz32;function l(e,i){var _;if(t(this,l),e>l.__kMaxLength)throw new RangeError("Maximum BigInt size exceeded");return _=d(this,g(l).call(this,e)),_.sign=i,_}return n(l,i),_(l,[{key:"toDebugString",value:function(){var e=["BigInt["],t=!0,i=!1,_=void 0;try{for(var n,g,l=this[Symbol.iterator]();!(t=(n=l.next()).done);t=!0)g=n.value,e.push((g?(g>>>0).toString(16):g)+", ")}catch(e){i=!0,_=e}finally{try{t||null==l["return"]||l["return"]()}finally{if(i)throw _}}return e.push("]"),e.join("")}},{key:"toString",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:10;if(2>e||36<e)throw new RangeError("toString() radix argument must be between 2 and 36");return 0===this.length?"0":0==(e&e-1)?l.__toStringBasePowerOfTwo(this,e):l.__toStringGeneric(this,e,!1)}},{key:"__copy",value:function(){for(var e=new l(this.length,this.sign),t=0;t<this.length;t++)e[t]=this[t];return e}},{key:"__trim",value:function(){for(var e=this.length,t=this[e-1];0===t;)e--,t=this[e-1],this.pop();return 0===e&&(this.sign=!1),this}},{key:"__initializeDigits",value:function(){for(var e=0;e<this.length;e++)this[e]=0}},{key:"__clzmsd",value:function(){return u(this[this.length-1])}},{key:"__inplaceMultiplyAdd",value:function(e,t,_){_>this.length&&(_=this.length);for(var n=65535&e,g=e>>>16,l=0,o=65535&t,a=t>>>16,u=0;u<_;u++){var r=this.__digit(u),d=65535&r,h=r>>>16,b=s(d,n),m=s(d,g),c=s(h,n),v=s(h,g),y=o+(65535&b),f=a+l+(y>>>16)+(b>>>16)+(65535&m)+(65535&c);o=(m>>>16)+(c>>>16)+(65535&v)+(f>>>16),l=o>>>16,o&=65535,a=v>>>16;this.__setDigit(u,65535&y|f<<16)}if(0!==l||0!==o||0!==a)throw new Error("implementation bug")}},{key:"__inplaceAdd",value:function(e,t,_){for(var n,g=0,l=0;l<_;l++)n=this.__halfDigit(t+l)+e.__halfDigit(l)+g,g=n>>>16,this.__setHalfDigit(t+l,n);return g}},{key:"__inplaceSub",value:function(e,t,_){var n=0;if(1&t){t>>=1;for(var g=this.__digit(t),l=65535&g,o=0;o<_-1>>>1;o++){var a=e.__digit(o),s=(g>>>16)-(65535&a)-n;n=1&s>>>16,this.__setDigit(t+o,s<<16|65535&l),g=this.__digit(t+o+1),l=(65535&g)-(a>>>16)-n,n=1&l>>>16}var u=e.__digit(o),r=(g>>>16)-(65535&u)-n;n=1&r>>>16,this.__setDigit(t+o,r<<16|65535&l);if(t+o+1>=this.length)throw new RangeError("out of bounds");0==(1&_)&&(g=this.__digit(t+o+1),l=(65535&g)-(u>>>16)-n,n=1&l>>>16,this.__setDigit(t+e.length,4294901760&g|65535&l))}else{t>>=1;for(var d=0;d<e.length-1;d++){var h=this.__digit(t+d),b=e.__digit(d),m=(65535&h)-(65535&b)-n;n=1&m>>>16;var c=(h>>>16)-(b>>>16)-n;n=1&c>>>16,this.__setDigit(t+d,c<<16|65535&m)}var v=this.__digit(t+d),y=e.__digit(d),f=(65535&v)-(65535&y)-n;n=1&f>>>16;var k=0;0==(1&_)&&(k=(v>>>16)-(y>>>16)-n,n=1&k>>>16),this.__setDigit(t+d,k<<16|65535&f)}return n}},{key:"__inplaceRightShift",value:function(e){if(0!==e){for(var t,_=this.__digit(0)>>>e,n=this.length-1,g=0;g<n;g++)t=this.__digit(g+1),this.__setDigit(g,t<<32-e|_),_=t>>>e;this.__setDigit(n,_)}}},{key:"__digit",value:function(e){return this[e]}},{key:"__unsignedDigit",value:function(e){return this[e]>>>0}},{key:"__setDigit",value:function(e,t){this[e]=0|t}},{key:"__setDigitGrow",value:function(e,t){this[e]=0|t}},{key:"__halfDigitLength",value:function(){var e=this.length;return 65535>=this.__unsignedDigit(e-1)?2*e-1:2*e}},{key:"__halfDigit",value:function(e){return 65535&this[e>>>1]>>>((1&e)<<4)}},{key:"__setHalfDigit",value:function(e,t){var i=e>>>1,_=this.__digit(i),n=1&e?65535&_|t<<16:4294901760&_|65535&t;this.__setDigit(i,n)}}],[{key:"BigInt",value:function(t){var i=Math.floor,_=Number.isFinite;if("number"==typeof t){if(0===t)return l.__zero();if((0|t)===t)return 0>t?l.__oneDigit(-t,!0):l.__oneDigit(t,!1);if(!_(t)||i(t)!==t)throw new RangeError("The number "+t+" cannot be converted to BigInt because it is not an integer");return l.__fromDouble(t)}if("string"==typeof t){var n=l.__fromString(t);if(null===n)throw new SyntaxError("Cannot convert "+t+" to a BigInt");return n}if("boolean"==typeof t)return!0===t?l.__oneDigit(1,!1):l.__zero();if("object"===e(t)){if(t.constructor===l)return t;var g=l.__toPrimitive(t);return l.BigInt(g)}throw new TypeError("Cannot convert "+t+" to a BigInt")}},{key:"toNumber",value:function(e){var t=e.length;if(0===t)return 0;if(1===t){var i=e.__unsignedDigit(0);return e.sign?-i:i}var _=e.__digit(t-1),n=u(_),g=32*t-n;if(1024<g)return e.sign?-Infinity:1/0;var o=g-1,a=_,s=t-1,r=n+1,d=32===r?0:a<<r;d>>>=12;var h=r-12,b=12<=r?0:a<<20+r,m=20+r;0<h&&0<s&&(s--,a=e.__digit(s),d|=a>>>32-h,b=a<<h,m=h),0<m&&0<s&&(s--,a=e.__digit(s),b|=a>>>32-m,m-=32);var c=l.__decideRounding(e,m,s,a);if((1===c||0===c&&1==(1&b))&&(b=b+1>>>0,0===b&&(d++,0!=d>>>20&&(d=0,o++,1023<o))))return e.sign?-Infinity:1/0;var v=e.sign?-2147483648:0;return o=o+1023<<20,l.__kBitConversionInts[1]=v|o|d,l.__kBitConversionInts[0]=b,l.__kBitConversionDouble[0]}},{key:"unaryMinus",value:function(e){if(0===e.length)return e;var t=e.__copy();return t.sign=!e.sign,t}},{key:"bitwiseNot",value:function(e){return e.sign?l.__absoluteSubOne(e).__trim():l.__absoluteAddOne(e,!0)}},{key:"exponentiate",value:function(e,t){if(t.sign)throw new RangeError("Exponent must be positive");if(0===t.length)return l.__oneDigit(1,!1);if(0===e.length)return e;if(1===e.length&&1===e.__digit(0))return e.sign&&0==(1&t.__digit(0))?l.unaryMinus(e):e;if(1<t.length)throw new RangeError("BigInt too big");var i=t.__unsignedDigit(0);if(1===i)return e;if(i>=l.__kMaxLengthBits)throw new RangeError("BigInt too big");if(1===e.length&&2===e.__digit(0)){var _=1+(i>>>5),n=e.sign&&0!=(1&i),g=new l(_,n);g.__initializeDigits();var o=1<<(31&i);return g.__setDigit(_-1,o),g}var a=null,s=e;for(0!=(1&i)&&(a=e),i>>=1;0!==i;i>>=1)s=l.multiply(s,s),0!=(1&i)&&(null===a?a=s:a=l.multiply(a,s));return a}},{key:"multiply",value:function(e,t){if(0===e.length)return e;if(0===t.length)return t;var _=e.length+t.length;32<=e.__clzmsd()+t.__clzmsd()&&_--;var n=new l(_,e.sign!==t.sign);n.__initializeDigits();for(var g=0;g<e.length;g++)l.__multiplyAccumulate(t,e.__digit(g),n,g);return n.__trim()}},{key:"divide",value:function(e,t){if(0===t.length)throw new RangeError("Division by zero");if(0>l.__absoluteCompare(e,t))return l.__zero();var i,_=e.sign!==t.sign,n=t.__unsignedDigit(0);if(1===t.length&&65535>=n){if(1===n)return _===e.sign?e:l.unaryMinus(e);i=l.__absoluteDivSmall(e,n,null)}else i=l.__absoluteDivLarge(e,t,!0,!1);return i.sign=_,i.__trim()}},{key:"remainder",value:function e(t,i){if(0===i.length)throw new RangeError("Division by zero");if(0>l.__absoluteCompare(t,i))return t;var _=i.__unsignedDigit(0);if(1===i.length&&65535>=_){if(1===_)return l.__zero();var n=l.__absoluteModSmall(t,_);return 0===n?l.__zero():l.__oneDigit(n,t.sign)}var e=l.__absoluteDivLarge(t,i,!1,!0);return e.sign=t.sign,e.__trim()}},{key:"add",value:function(e,t){var i=e.sign;return i===t.sign?l.__absoluteAdd(e,t,i):0<=l.__absoluteCompare(e,t)?l.__absoluteSub(e,t,i):l.__absoluteSub(t,e,!i)}},{key:"subtract",value:function(e,t){var i=e.sign;return i===t.sign?0<=l.__absoluteCompare(e,t)?l.__absoluteSub(e,t,i):l.__absoluteSub(t,e,!i):l.__absoluteAdd(e,t,i)}},{key:"leftShift",value:function(e,t){return 0===t.length||0===e.length?e:t.sign?l.__rightShiftByAbsolute(e,t):l.__leftShiftByAbsolute(e,t)}},{key:"signedRightShift",value:function(e,t){return 0===t.length||0===e.length?e:t.sign?l.__leftShiftByAbsolute(e,t):l.__rightShiftByAbsolute(e,t)}},{key:"unsignedRightShift",value:function(){throw new TypeError("BigInts have no unsigned right shift; use >> instead")}},{key:"lessThan",value:function(e,t){return 0>l.__compareToBigInt(e,t)}},{key:"lessThanOrEqual",value:function(e,t){return 0>=l.__compareToBigInt(e,t)}},{key:"greaterThan",value:function(e,t){return 0<l.__compareToBigInt(e,t)}},{key:"greaterThanOrEqual",value:function(e,t){return 0<=l.__compareToBigInt(e,t)}},{key:"equal",value:function(e,t){if(e.sign!==t.sign)return!1;if(e.length!==t.length)return!1;for(var _=0;_<e.length;_++)if(e.__digit(_)!==t.__digit(_))return!1;return!0}},{key:"notEqual",value:function(e,t){return!l.equal(e,t)}},{key:"bitwiseAnd",value:function(e,t){if(!e.sign&&!t.sign)return l.__absoluteAnd(e,t).__trim();if(e.sign&&t.sign){var i=a(e.length,t.length)+1,_=l.__absoluteSubOne(e,i),n=l.__absoluteSubOne(t);return _=l.__absoluteOr(_,n,_),l.__absoluteAddOne(_,!0,_).__trim()}if(e.sign){var g=[t,e];e=g[0],t=g[1]}return l.__absoluteAndNot(e,l.__absoluteSubOne(t)).__trim()}},{key:"bitwiseXor",value:function(e,t){if(!e.sign&&!t.sign)return l.__absoluteXor(e,t).__trim();if(e.sign&&t.sign){var i=a(e.length,t.length),_=l.__absoluteSubOne(e,i),n=l.__absoluteSubOne(t);return l.__absoluteXor(_,n,_).__trim()}var g=a(e.length,t.length)+1;if(e.sign){var o=[t,e];e=o[0],t=o[1]}var s=l.__absoluteSubOne(t,g);return s=l.__absoluteXor(s,e,s),l.__absoluteAddOne(s,!0,s).__trim()}},{key:"bitwiseOr",value:function(e,t){var i=a(e.length,t.length);if(!e.sign&&!t.sign)return l.__absoluteOr(e,t).__trim();if(e.sign&&t.sign){var _=l.__absoluteSubOne(e,i),n=l.__absoluteSubOne(t);return _=l.__absoluteAnd(_,n,_),l.__absoluteAddOne(_,!0,_).__trim()}if(e.sign){var g=[t,e];e=g[0],t=g[1]}var o=l.__absoluteSubOne(t,i);return o=l.__absoluteAndNot(o,e,o),l.__absoluteAddOne(o,!0,o).__trim()}},{key:"asIntN",value:function(e,t){if(0===t.length)return t;if(0===e)return l.__zero();if(e>=l.__kMaxLengthBits)return t;var _=e+31>>>5;if(t.length<_)return t;var n=t.__unsignedDigit(_-1),g=1<<(31&e-1);if(t.length===_&&n<g)return t;if(!((n&g)===g))return l.__truncateToNBits(e,t);if(!t.sign)return l.__truncateAndSubFromPowerOfTwo(e,t,!0);if(0==(n&g-1)){for(var o=_-2;0<=o;o--)if(0!==t.__digit(o))return l.__truncateAndSubFromPowerOfTwo(e,t,!1);return t.length===_&&n===g?t:l.__truncateToNBits(e,t)}return l.__truncateAndSubFromPowerOfTwo(e,t,!1)}},{key:"asUintN",value:function(e,t){if(0===t.length)return t;if(0===e)return l.__zero();if(t.sign){if(e>l.__kMaxLengthBits)throw new RangeError("BigInt too big");return l.__truncateAndSubFromPowerOfTwo(e,t,!1)}if(e>=l.__kMaxLengthBits)return t;var i=e+31>>>5;if(t.length<i)return t;var _=31&e;if(t.length==i){if(0==_)return t;var n=t.__digit(i-1);if(0==n>>>_)return t}return l.__truncateToNBits(e,t)}},{key:"ADD",value:function(e,t){if(e=l.__toPrimitive(e),t=l.__toPrimitive(t),"string"==typeof e)return"string"!=typeof t&&(t=t.toString()),e+t;if("string"==typeof t)return e.toString()+t;if(e=l.__toNumeric(e),t=l.__toNumeric(t),l.__isBigInt(e)&&l.__isBigInt(t))return l.add(e,t);if("number"==typeof e&&"number"==typeof t)return e+t;throw new TypeError("Cannot mix BigInt and other types, use explicit conversions")}},{key:"LT",value:function(e,t){return l.__compare(e,t,0)}},{key:"LE",value:function(e,t){return l.__compare(e,t,1)}},{key:"GT",value:function(e,t){return l.__compare(e,t,2)}},{key:"GE",value:function(e,t){return l.__compare(e,t,3)}},{key:"EQ",value:function(t,i){for(;;){if(l.__isBigInt(t))return l.__isBigInt(i)?l.equal(t,i):l.EQ(i,t);if("number"==typeof t){if(l.__isBigInt(i))return l.__equalToNumber(i,t);if("object"!==e(i))return t==i;i=l.__toPrimitive(i)}else if("string"==typeof t){if(l.__isBigInt(i))return t=l.__fromString(t),null!==t&&l.equal(t,i);if("object"!==e(i))return t==i;i=l.__toPrimitive(i)}else if("boolean"==typeof t){if(l.__isBigInt(i))return l.__equalToNumber(i,+t);if("object"!==e(i))return t==i;i=l.__toPrimitive(i)}else if("symbol"===e(t)){if(l.__isBigInt(i))return!1;if("object"!==e(i))return t==i;i=l.__toPrimitive(i)}else if("object"===e(t)){if("object"===e(i)&&i.constructor!==l)return t==i;t=l.__toPrimitive(t)}else return t==i}}},{key:"NE",value:function(e,t){return!l.EQ(e,t)}},{key:"__zero",value:function(){return new l(0,!1)}},{key:"__oneDigit",value:function(e,t){var i=new l(1,t);return i.__setDigit(0,e),i}},{key:"__decideRounding",value:function(e,t,i,_){if(0<t)return-1;var n;if(0>t)n=-t-1;else{if(0===i)return-1;i--,_=e.__digit(i),n=31}var g=1<<n;if(0==(_&g))return-1;if(g-=1,0!=(_&g))return 1;for(;0<i;)if(i--,0!==e.__digit(i))return 1;return 0}},{key:"__fromDouble",value:function(e){l.__kBitConversionDouble[0]=e;var t,i=2047&l.__kBitConversionInts[1]>>>20,_=i-1023,n=(_>>>5)+1,g=new l(n,0>e),o=1048575&l.__kBitConversionInts[1]|1048576,a=l.__kBitConversionInts[0],s=20,u=31&_,r=0;if(u<s){var d=s-u;r=d+32,t=o>>>d,o=o<<32-d|a>>>d,a<<=32-d}else if(u===s)r=32,t=o,o=a;else{var h=u-s;r=32-h,t=o<<h|a>>>32-h,o=a<<h}g.__setDigit(n-1,t);for(var b=n-2;0<=b;b--)0<r?(r-=32,t=o,o=a):t=0,g.__setDigit(b,t);return g.__trim()}},{key:"__isWhitespace",value:function(e){return!!(13>=e&&9<=e)||(159>=e?32==e:131071>=e?160==e||5760==e:196607>=e?(e&=131071,10>=e||40==e||41==e||47==e||95==e||4096==e):65279==e)}},{key:"__fromString",value:function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,i=0,_=e.length,n=0;if(n===_)return l.__zero();for(var g=e.charCodeAt(n);l.__isWhitespace(g);){if(++n===_)return l.__zero();g=e.charCodeAt(n)}if(43===g){if(++n===_)return null;g=e.charCodeAt(n),i=1}else if(45===g){if(++n===_)return null;g=e.charCodeAt(n),i=-1}if(0===t){if(t=10,48===g){if(++n===_)return l.__zero();if(g=e.charCodeAt(n),88===g||120===g){if(t=16,++n===_)return null;g=e.charCodeAt(n)}else if(79===g||111===g){if(t=8,++n===_)return null;g=e.charCodeAt(n)}else if(66===g||98===g){if(t=2,++n===_)return null;g=e.charCodeAt(n)}}}else if(16===t&&48===g){if(++n===_)return l.__zero();if(g=e.charCodeAt(n),88===g||120===g){if(++n===_)return null;g=e.charCodeAt(n)}}for(;48===g;){if(++n===_)return l.__zero();g=e.charCodeAt(n)}var o=_-n,a=l.__kMaxBitsPerChar[t],s=l.__kBitsPerCharTableMultiplier-1;if(o>1073741824/a)return null;var u=a*o+s>>>l.__kBitsPerCharTableShift,r=new l(u+31>>>5,!1),h=10>t?t:10,b=10<t?t-10:0;if(0==(t&t-1)){a>>=l.__kBitsPerCharTableShift;var c=[],v=[],y=!1;do{for(var f,k=0,D=0;;){if(f=void 0,g-48>>>0<h)f=g-48;else if((32|g)-97>>>0<b)f=(32|g)-87;else{y=!0;break}if(D+=a,k=k<<a|f,++n===_){y=!0;break}if(g=e.charCodeAt(n),32<D+a)break}c.push(k),v.push(D)}while(!y);l.__fillFromParts(r,c,v)}else{r.__initializeDigits();var p=!1,B=0;do{for(var S,C=0,A=1;;){if(S=void 0,g-48>>>0<h)S=g-48;else if((32|g)-97>>>0<b)S=(32|g)-87;else{p=!0;break}var T=A*t;if(4294967295<T)break;if(A=T,C=C*t+S,B++,++n===_){p=!0;break}g=e.charCodeAt(n)}s=32*l.__kBitsPerCharTableMultiplier-1;var m=a*B+s>>>l.__kBitsPerCharTableShift+5;r.__inplaceMultiplyAdd(A,C,m)}while(!p)}for(;n!==_;){if(!l.__isWhitespace(g))return null;g=e.charCodeAt(n++)}return 0!==i&&10!==t?null:(r.sign=-1===i,r.__trim())}},{key:"__fillFromParts",value:function(e,t,_){for(var n=0,g=0,l=0,o=t.length-1;0<=o;o--){var a=t[o],s=_[o];g|=a<<l,l+=s,32===l?(e.__setDigit(n++,g),l=0,g=0):32<l&&(e.__setDigit(n++,g),l-=32,g=a>>>s-l)}if(0!==g){if(n>=e.length)throw new Error("implementation bug");e.__setDigit(n++,g)}for(;n<e.length;n++)e.__setDigit(n,0)}},{key:"__toStringBasePowerOfTwo",value:function(e,t){var _=e.length,n=t-1;n=(85&n>>>1)+(85&n),n=(51&n>>>2)+(51&n),n=(15&n>>>4)+(15&n);var g=n,o=t-1,a=e.__digit(_-1),s=u(a),r=0|(32*_-s+g-1)/g;if(e.sign&&r++,268435456<r)throw new Error("string too long");for(var d=Array(r),h=r-1,b=0,m=0,c=0;c<_-1;c++){var v=e.__digit(c),y=(b|v<<m)&o;d[h--]=l.__kConversionChars[y];var f=g-m;for(b=v>>>f,m=32-f;m>=g;)d[h--]=l.__kConversionChars[b&o],b>>>=g,m-=g}var k=(b|a<<m)&o;for(d[h--]=l.__kConversionChars[k],b=a>>>g-m;0!==b;)d[h--]=l.__kConversionChars[b&o],b>>>=g;if(e.sign&&(d[h--]="-"),-1!==h)throw new Error("implementation bug");return d.join("")}},{key:"__toStringGeneric",value:function(e,t,_){var n=e.length;if(0===n)return"";if(1===n){var g=e.__unsignedDigit(0).toString(t);return!1===_&&e.sign&&(g="-"+g),g}var o=32*n-u(e.__digit(n-1)),a=l.__kMaxBitsPerChar[t],s=a-1,r=o*l.__kBitsPerCharTableMultiplier;r+=s-1,r=0|r/s;var d,h,b=r+1>>1,m=l.exponentiate(l.__oneDigit(t,!1),l.__oneDigit(b,!1)),c=m.__unsignedDigit(0);if(1===m.length&&65535>=c){d=new l(e.length,!1),d.__initializeDigits();for(var v,y=0,f=2*e.length-1;0<=f;f--)v=y<<16|e.__halfDigit(f),d.__setHalfDigit(f,0|v/c),y=0|v%c;h=y.toString(t)}else{var k=l.__absoluteDivLarge(e,m,!0,!0);d=k.quotient;var D=k.remainder.__trim();h=l.__toStringGeneric(D,t,!0)}d.__trim();for(var p=l.__toStringGeneric(d,t,!0);h.length<b;)h="0"+h;return!1===_&&e.sign&&(p="-"+p),p+h}},{key:"__unequalSign",value:function(e){return e?-1:1}},{key:"__absoluteGreater",value:function(e){return e?-1:1}},{key:"__absoluteLess",value:function(e){return e?1:-1}},{key:"__compareToBigInt",value:function(e,t){var i=e.sign;if(i!==t.sign)return l.__unequalSign(i);var _=l.__absoluteCompare(e,t);return 0<_?l.__absoluteGreater(i):0>_?l.__absoluteLess(i):0}},{key:"__compareToNumber",value:function(e,t){if(!0|t){var i=e.sign,_=0>t;if(i!==_)return l.__unequalSign(i);if(0===e.length){if(_)throw new Error("implementation bug");return 0===t?0:-1}if(1<e.length)return l.__absoluteGreater(i);var n=o(t),g=e.__unsignedDigit(0);return g>n?l.__absoluteGreater(i):g<n?l.__absoluteLess(i):0}return l.__compareToDouble(e,t)}},{key:"__compareToDouble",value:function(e,t){if(t!==t)return t;if(t===1/0)return-1;if(t===-Infinity)return 1;var i=e.sign;if(i!==0>t)return l.__unequalSign(i);if(0===t)throw new Error("implementation bug: should be handled elsewhere");if(0===e.length)return-1;l.__kBitConversionDouble[0]=t;var _=2047&l.__kBitConversionInts[1]>>>20;if(2047==_)throw new Error("implementation bug: handled elsewhere");var n=_-1023;if(0>n)return l.__absoluteGreater(i);var g=e.length,o=e.__digit(g-1),a=u(o),s=32*g-a,r=n+1;if(s<r)return l.__absoluteLess(i);if(s>r)return l.__absoluteGreater(i);var d=1048576|1048575&l.__kBitConversionInts[1],h=l.__kBitConversionInts[0],b=20,m=31-a;if(m!==(s-1)%31)throw new Error("implementation bug");var c,v=0;if(m<b){var y=b-m;v=y+32,c=d>>>y,d=d<<32-y|h>>>y,h<<=32-y}else if(m===b)v=32,c=d,d=h;else{var f=m-b;v=32-f,c=d<<f|h>>>32-f,d=h<<f}if(o>>>=0,c>>>=0,o>c)return l.__absoluteGreater(i);if(o<c)return l.__absoluteLess(i);for(var k=g-2;0<=k;k--){0<v?(v-=32,c=d>>>0,d=h,h=0):c=0;var D=e.__unsignedDigit(k);if(D>c)return l.__absoluteGreater(i);if(D<c)return l.__absoluteLess(i)}if(0!==d||0!==h){if(0===v)throw new Error("implementation bug");return l.__absoluteLess(i)}return 0}},{key:"__equalToNumber",value:function(e,t){return t|0===t?0===t?0===e.length:1===e.length&&e.sign===0>t&&e.__unsignedDigit(0)===o(t):0===l.__compareToDouble(e,t)}},{key:"__comparisonResultToBool",value:function(e,t){switch(t){case 0:return 0>e;case 1:return 0>=e;case 2:return 0<e;case 3:return 0<=e;}throw new Error("unreachable")}},{key:"__compare",value:function(e,t,i){if(e=l.__toPrimitive(e),t=l.__toPrimitive(t),"string"==typeof e&&"string"==typeof t)switch(i){case 0:return e<t;case 1:return e<=t;case 2:return e>t;case 3:return e>=t;}if(l.__isBigInt(e)&&"string"==typeof t)return t=l.__fromString(t),null!==t&&l.__comparisonResultToBool(l.__compareToBigInt(e,t),i);if("string"==typeof e&&l.__isBigInt(t))return e=l.__fromString(e),null!==e&&l.__comparisonResultToBool(l.__compareToBigInt(e,t),i);if(e=l.__toNumeric(e),t=l.__toNumeric(t),l.__isBigInt(e)){if(l.__isBigInt(t))return l.__comparisonResultToBool(l.__compareToBigInt(e,t),i);if("number"!=typeof t)throw new Error("implementation bug");return l.__comparisonResultToBool(l.__compareToNumber(e,t),i)}if("number"!=typeof e)throw new Error("implementation bug");if(l.__isBigInt(t))return l.__comparisonResultToBool(l.__compareToNumber(t,e),2^i);if("number"!=typeof t)throw new Error("implementation bug");return 0===i?e<t:1===i?e<=t:2===i?e>t:3===i?e>=t:void 0}},{key:"__absoluteAdd",value:function(e,t,_){if(e.length<t.length)return l.__absoluteAdd(t,e,_);if(0===e.length)return e;if(0===t.length)return e.sign===_?e:l.unaryMinus(e);var n=e.length;(0===e.__clzmsd()||t.length===e.length&&0===t.__clzmsd())&&n++;for(var g=new l(n,_),o=0,a=0;a<t.length;a++){var s=t.__digit(a),u=e.__digit(a),r=(65535&u)+(65535&s)+o,d=(u>>>16)+(s>>>16)+(r>>>16);o=d>>>16,g.__setDigit(a,65535&r|d<<16)}for(;a<e.length;a++){var h=e.__digit(a),b=(65535&h)+o,m=(h>>>16)+(b>>>16);o=m>>>16,g.__setDigit(a,65535&b|m<<16)}return a<g.length&&g.__setDigit(a,o),g.__trim()}},{key:"__absoluteSub",value:function(e,t,_){if(0===e.length)return e;if(0===t.length)return e.sign===_?e:l.unaryMinus(e);for(var n=new l(e.length,_),g=0,o=0;o<t.length;o++){var a=e.__digit(o),s=t.__digit(o),u=(65535&a)-(65535&s)-g;g=1&u>>>16;var r=(a>>>16)-(s>>>16)-g;g=1&r>>>16,n.__setDigit(o,65535&u|r<<16)}for(;o<e.length;o++){var d=e.__digit(o),h=(65535&d)-g;g=1&h>>>16;var b=(d>>>16)-g;g=1&b>>>16,n.__setDigit(o,65535&h|b<<16)}return n.__trim()}},{key:"__absoluteAddOne",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length;null===_?_=new l(n,t):_.sign=t;for(var g=!0,o=0;o<n;o++){var a=e.__digit(o),s=-1===a;g&&(a=0|a+1),g=s,_.__setDigit(o,a)}return g&&_.__setDigitGrow(n,1),_}},{key:"__absoluteSubOne",value:function(e,t){var _=e.length;t=t||_;for(var n=new l(t,!1),g=!0,o=0;o<_;o++){var a=e.__digit(o),s=0===a;g&&(a=0|a-1),g=s,n.__setDigit(o,a)}for(var u=_;u<t;u++)n.__setDigit(u,0);return n}},{key:"__absoluteAnd",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length,g=t.length,o=g;if(n<g){o=n;var a=e,s=n;e=t,n=g,t=a,g=s}var u=o;null===_?_=new l(u,!1):u=_.length;for(var r=0;r<o;r++)_.__setDigit(r,e.__digit(r)&t.__digit(r));for(;r<u;r++)_.__setDigit(r,0);return _}},{key:"__absoluteAndNot",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length,g=t.length,o=g;n<g&&(o=n);var a=n;null===_?_=new l(a,!1):a=_.length;for(var s=0;s<o;s++)_.__setDigit(s,e.__digit(s)&~t.__digit(s));for(;s<n;s++)_.__setDigit(s,e.__digit(s));for(;s<a;s++)_.__setDigit(s,0);return _}},{key:"__absoluteOr",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length,g=t.length,o=g;if(n<g){o=n;var a=e,s=n;e=t,n=g,t=a,g=s}var u=n;null===_?_=new l(u,!1):u=_.length;for(var r=0;r<o;r++)_.__setDigit(r,e.__digit(r)|t.__digit(r));for(;r<n;r++)_.__setDigit(r,e.__digit(r));for(;r<u;r++)_.__setDigit(r,0);return _}},{key:"__absoluteXor",value:function(e,t){var _=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null,n=e.length,g=t.length,o=g;if(n<g){o=n;var a=e,s=n;e=t,n=g,t=a,g=s}var u=n;null===_?_=new l(u,!1):u=_.length;for(var r=0;r<o;r++)_.__setDigit(r,e.__digit(r)^t.__digit(r));for(;r<n;r++)_.__setDigit(r,e.__digit(r));for(;r<u;r++)_.__setDigit(r,0);return _}},{key:"__absoluteCompare",value:function(e,t){var _=e.length-t.length;if(0!=_)return _;for(var n=e.length-1;0<=n&&e.__digit(n)===t.__digit(n);)n--;return 0>n?0:e.__unsignedDigit(n)>t.__unsignedDigit(n)?1:-1}},{key:"__multiplyAccumulate",value:function(e,t,_,n){if(0!==t){for(var g=65535&t,l=t>>>16,o=0,a=0,u=0,r=0;r<e.length;r++,n++){var d=_.__digit(n),h=65535&d,b=d>>>16,m=e.__digit(r),c=65535&m,v=m>>>16,y=s(c,g),f=s(c,l),k=s(v,g),D=s(v,l);h+=a+(65535&y),b+=u+o+(h>>>16)+(y>>>16)+(65535&f)+(65535&k),o=b>>>16,a=(f>>>16)+(k>>>16)+(65535&D)+o,o=a>>>16,a&=65535,u=D>>>16,d=65535&h|b<<16,_.__setDigit(n,d)}for(;0!==o||0!==a||0!==u;n++){var p=_.__digit(n),B=(65535&p)+a,S=(p>>>16)+(B>>>16)+u+o;a=0,u=0,o=S>>>16,p=65535&B|S<<16,_.__setDigit(n,p)}}}},{key:"__internalMultiplyAdd",value:function(e,t,_,g,l){for(var o=_,a=0,u=0;u<g;u++){var r=e.__digit(u),d=s(65535&r,t),h=(65535&d)+a+o;o=h>>>16;var b=s(r>>>16,t),m=(65535&b)+(d>>>16)+o;o=m>>>16,a=b>>>16,l.__setDigit(u,m<<16|65535&h)}if(l.length>g)for(l.__setDigit(g++,o+a);g<l.length;)l.__setDigit(g++,0);else if(0!==o+a)throw new Error("implementation bug")}},{key:"__absoluteDivSmall",value:function(e,t,_){null===_&&(_=new l(e.length,!1));for(var n=0,g=2*e.length-1;0<=g;g-=2){var o=(n<<16|e.__halfDigit(g))>>>0,a=0|o/t;n=0|o%t,o=(n<<16|e.__halfDigit(g-1))>>>0;var s=0|o/t;n=0|o%t,_.__setDigit(g>>>1,a<<16|s)}return _}},{key:"__absoluteModSmall",value:function(e,t){for(var _,n=0,g=2*e.length-1;0<=g;g--)_=(n<<16|e.__halfDigit(g))>>>0,n=0|_%t;return n}},{key:"__absoluteDivLarge",value:function(e,t,i,_){var g=t.__halfDigitLength(),n=t.length,o=e.__halfDigitLength()-g,a=null;i&&(a=new l(o+2>>>1,!1),a.__initializeDigits());var r=new l(g+2>>>1,!1);r.__initializeDigits();var d=l.__clz16(t.__halfDigit(g-1));0<d&&(t=l.__specialLeftShift(t,d,0));for(var h=l.__specialLeftShift(e,d,1),u=t.__halfDigit(g-1),b=0,m=o;0<=m;m--){var v=65535,y=h.__halfDigit(m+g);if(y!==u){var f=(y<<16|h.__halfDigit(m+g-1))>>>0;v=0|f/u;for(var k=0|f%u,D=t.__halfDigit(g-2),p=h.__halfDigit(m+g-2);s(v,D)>>>0>(k<<16|p)>>>0&&(v--,k+=u,!(65535<k)););}l.__internalMultiplyAdd(t,v,0,n,r);var B=h.__inplaceSub(r,m,g+1);0!==B&&(B=h.__inplaceAdd(t,m,g),h.__setHalfDigit(m+g,h.__halfDigit(m+g)+B),v--),i&&(1&m?b=v<<16:a.__setDigit(m>>>1,b|v))}return _?(h.__inplaceRightShift(d),i?{quotient:a,remainder:h}:h):i?a:void 0}},{key:"__clz16",value:function(e){return u(e)-16}},{key:"__specialLeftShift",value:function(e,t,_){var g=e.length,n=new l(g+_,!1);if(0===t){for(var o=0;o<g;o++)n.__setDigit(o,e.__digit(o));return 0<_&&n.__setDigit(g,0),n}for(var a,s=0,u=0;u<g;u++)a=e.__digit(u),n.__setDigit(u,a<<t|s),s=a>>>32-t;return 0<_&&n.__setDigit(g,s),n}},{key:"__leftShiftByAbsolute",value:function(e,t){var _=l.__toShiftAmount(t);if(0>_)throw new RangeError("BigInt too big");var n=_>>>5,g=31&_,o=e.length,a=0!==g&&0!=e.__digit(o-1)>>>32-g,s=o+n+(a?1:0),u=new l(s,e.sign);if(0===g){for(var r=0;r<n;r++)u.__setDigit(r,0);for(;r<s;r++)u.__setDigit(r,e.__digit(r-n))}else{for(var h=0,b=0;b<n;b++)u.__setDigit(b,0);for(var m,c=0;c<o;c++)m=e.__digit(c),u.__setDigit(c+n,m<<g|h),h=m>>>32-g;if(a)u.__setDigit(o+n,h);else if(0!==h)throw new Error("implementation bug")}return u.__trim()}},{key:"__rightShiftByAbsolute",value:function(e,t){var _=e.length,n=e.sign,g=l.__toShiftAmount(t);if(0>g)return l.__rightShiftByMaximum(n);var o=g>>>5,a=31&g,s=_-o;if(0>=s)return l.__rightShiftByMaximum(n);var u=!1;if(n){if(0!=(e.__digit(o)&(1<<a)-1))u=!0;else for(var r=0;r<o;r++)if(0!==e.__digit(r)){u=!0;break}}if(u&&0===a){var h=e.__digit(_-1);0==~h&&s++}var b=new l(s,n);if(0===a)for(var m=o;m<_;m++)b.__setDigit(m-o,e.__digit(m));else{for(var c,v=e.__digit(o)>>>a,y=_-o-1,f=0;f<y;f++)c=e.__digit(f+o+1),b.__setDigit(f,c<<32-a|v),v=c>>>a;b.__setDigit(y,v)}return u&&(b=l.__absoluteAddOne(b,!0,b)),b.__trim()}},{key:"__rightShiftByMaximum",value:function(e){return e?l.__oneDigit(1,!0):l.__zero()}},{key:"__toShiftAmount",value:function(e){if(1<e.length)return-1;var t=e.__unsignedDigit(0);return t>l.__kMaxLengthBits?-1:t}},{key:"__toPrimitive",value:function(t){var i=1<arguments.length&&void 0!==arguments[1]?arguments[1]:"default";if("object"!==e(t))return t;if(t.constructor===l)return t;var _=t[Symbol.toPrimitive];if(_){var n=_(i);if("object"!==e(n))return n;throw new TypeError("Cannot convert object to primitive value")}var g=t.valueOf;if(g){var o=g.call(t);if("object"!==e(o))return o}var a=t.toString;if(a){var s=a.call(t);if("object"!==e(s))return s}throw new TypeError("Cannot convert object to primitive value")}},{key:"__toNumeric",value:function(e){return l.__isBigInt(e)?e:+e}},{key:"__isBigInt",value:function(t){return"object"===e(t)&&t.constructor===l}},{key:"__truncateToNBits",value:function(e,t){for(var _=e+31>>>5,n=new l(_,t.sign),g=_-1,o=0;o<g;o++)n.__setDigit(o,t.__digit(o));var a=t.__digit(g);if(0!=(31&e)){var s=32-(31&e);a=a<<s>>>s}return n.__setDigit(g,a),n.__trim()}},{key:"__truncateAndSubFromPowerOfTwo",value:function(e,t,_){for(var n=Math.min,g=e+31>>>5,o=new l(g,_),a=0,s=g-1,u=0,r=n(s,t.length);a<r;a++){var d=t.__digit(a),h=0-(65535&d)-u;u=1&h>>>16;var b=0-(d>>>16)-u;u=1&b>>>16,o.__setDigit(a,65535&h|b<<16)}for(;a<s;a++)o.__setDigit(a,0|-u);var m,c=s<t.length?t.__digit(s):0,v=31&e;if(0===v){var y=0-(65535&c)-u;u=1&y>>>16;var f=0-(c>>>16)-u;m=65535&y|f<<16}else{var k=32-v;c=c<<k>>>k;var D=1<<32-k,p=(65535&D)-(65535&c)-u;u=1&p>>>16;var B=(D>>>16)-(c>>>16)-u;m=65535&p|B<<16,m&=D-1}return o.__setDigit(s,m),o.__trim()}},{key:"__digitPow",value:function(e,t){for(var i=1;0<t;)1&t&&(i*=e),t>>>=1,e*=e;return i}}]),l}(u(Array));return h.__kMaxLength=33554432,h.__kMaxLengthBits=h.__kMaxLength<<5,h.__kMaxBitsPerChar=[0,0,32,51,64,75,83,90,96,102,107,111,115,119,122,126,128,131,134,136,139,141,143,145,147,149,151,153,154,156,158,159,160,162,163,165,166],h.__kBitsPerCharTableShift=5,h.__kBitsPerCharTableMultiplier=1<<h.__kBitsPerCharTableShift,h.__kConversionChars=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],h.__kBitConversionBuffer=new ArrayBuffer(8),h.__kBitConversionDouble=new Float64Array(h.__kBitConversionBuffer),h.__kBitConversionInts=new Int32Array(h.__kBitConversionBuffer),h});
21701
22269
 
21702
22270
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/jsbi/dist/jsbi-umd.js","/node_modules/jsbi/dist")
21703
- },{"_process":119,"buffer":109,"timers":140}],117:[function(require,module,exports){
22271
+ },{"_process":131,"buffer":121,"timers":152}],129:[function(require,module,exports){
21704
22272
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
21705
22273
  /*! JSON v3.3.2 | http://bestiejs.github.io/json3 | Copyright 2012-2014, Kit Cambridge | http://kit.mit-license.org */
21706
22274
  ;(function () {
@@ -22606,7 +23174,7 @@ if (typeof Object.create === 'function') {
22606
23174
  }).call(this);
22607
23175
 
22608
23176
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/json3/lib/json3.js","/node_modules/json3/lib")
22609
- },{"_process":119,"buffer":109,"timers":140}],118:[function(require,module,exports){
23177
+ },{"_process":131,"buffer":121,"timers":152}],130:[function(require,module,exports){
22610
23178
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
22611
23179
  'use strict';
22612
23180
 
@@ -22654,7 +23222,7 @@ function nextTick(fn, arg1, arg2, arg3) {
22654
23222
 
22655
23223
 
22656
23224
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/process-nextick-args/index.js","/node_modules/process-nextick-args")
22657
- },{"_process":119,"buffer":109,"timers":140}],119:[function(require,module,exports){
23225
+ },{"_process":131,"buffer":121,"timers":152}],131:[function(require,module,exports){
22658
23226
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
22659
23227
  // shim for using process in browser
22660
23228
  var process = module.exports = {};
@@ -22842,7 +23410,7 @@ process.chdir = function (dir) {
22842
23410
  process.umask = function() { return 0; };
22843
23411
 
22844
23412
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/process/browser.js","/node_modules/process")
22845
- },{"_process":119,"buffer":109,"timers":140}],120:[function(require,module,exports){
23413
+ },{"_process":131,"buffer":121,"timers":152}],132:[function(require,module,exports){
22846
23414
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
22847
23415
  /*! https://mths.be/punycode v1.4.1 by @mathias */
22848
23416
  ;(function(root) {
@@ -23379,7 +23947,7 @@ process.umask = function() { return 0; };
23379
23947
  }(this));
23380
23948
 
23381
23949
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/punycode/punycode.js","/node_modules/punycode")
23382
- },{"_process":119,"buffer":109,"timers":140}],121:[function(require,module,exports){
23950
+ },{"_process":131,"buffer":121,"timers":152}],133:[function(require,module,exports){
23383
23951
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
23384
23952
  // Copyright Joyent, Inc. and other Node contributors.
23385
23953
  //
@@ -23467,7 +24035,7 @@ var isArray = Array.isArray || function (xs) {
23467
24035
  };
23468
24036
 
23469
24037
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/querystring-es3/decode.js","/node_modules/querystring-es3")
23470
- },{"_process":119,"buffer":109,"timers":140}],122:[function(require,module,exports){
24038
+ },{"_process":131,"buffer":121,"timers":152}],134:[function(require,module,exports){
23471
24039
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
23472
24040
  // Copyright Joyent, Inc. and other Node contributors.
23473
24041
  //
@@ -23556,7 +24124,7 @@ var objectKeys = Object.keys || function (obj) {
23556
24124
  };
23557
24125
 
23558
24126
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/querystring-es3/encode.js","/node_modules/querystring-es3")
23559
- },{"_process":119,"buffer":109,"timers":140}],123:[function(require,module,exports){
24127
+ },{"_process":131,"buffer":121,"timers":152}],135:[function(require,module,exports){
23560
24128
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
23561
24129
  'use strict';
23562
24130
 
@@ -23564,7 +24132,7 @@ exports.decode = exports.parse = require('./decode');
23564
24132
  exports.encode = exports.stringify = require('./encode');
23565
24133
 
23566
24134
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/querystring-es3/index.js","/node_modules/querystring-es3")
23567
- },{"./decode":121,"./encode":122,"_process":119,"buffer":109,"timers":140}],124:[function(require,module,exports){
24135
+ },{"./decode":133,"./encode":134,"_process":131,"buffer":121,"timers":152}],136:[function(require,module,exports){
23568
24136
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
23569
24137
  /* eslint-disable node/no-deprecated-api */
23570
24138
  var buffer = require('buffer')
@@ -23630,7 +24198,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
23630
24198
  }
23631
24199
 
23632
24200
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/safe-buffer/index.js","/node_modules/safe-buffer")
23633
- },{"_process":119,"buffer":109,"timers":140}],125:[function(require,module,exports){
24201
+ },{"_process":131,"buffer":121,"timers":152}],137:[function(require,module,exports){
23634
24202
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
23635
24203
  var ClientRequest = require('./lib/request')
23636
24204
  var response = require('./lib/response')
@@ -23718,7 +24286,7 @@ http.METHODS = [
23718
24286
  'UNSUBSCRIBE'
23719
24287
  ]
23720
24288
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/index.js","/node_modules/stream-http")
23721
- },{"./lib/request":127,"./lib/response":128,"_process":119,"buffer":109,"builtin-status-codes":110,"timers":140,"url":142,"xtend":146}],126:[function(require,module,exports){
24289
+ },{"./lib/request":139,"./lib/response":140,"_process":131,"buffer":121,"builtin-status-codes":122,"timers":152,"url":154,"xtend":158}],138:[function(require,module,exports){
23722
24290
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
23723
24291
  exports.fetch = isFunction(global.fetch) && isFunction(global.ReadableStream)
23724
24292
 
@@ -23795,7 +24363,7 @@ function isFunction (value) {
23795
24363
  xhr = null // Help gc
23796
24364
 
23797
24365
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/lib/capability.js","/node_modules/stream-http/lib")
23798
- },{"_process":119,"buffer":109,"timers":140}],127:[function(require,module,exports){
24366
+ },{"_process":131,"buffer":121,"timers":152}],139:[function(require,module,exports){
23799
24367
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
23800
24368
  var capability = require('./capability')
23801
24369
  var inherits = require('inherits')
@@ -24126,7 +24694,7 @@ var unsafeHeaders = [
24126
24694
  ]
24127
24695
 
24128
24696
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/lib/request.js","/node_modules/stream-http/lib")
24129
- },{"./capability":126,"./response":128,"_process":119,"buffer":109,"inherits":115,"readable-stream":138,"timers":140,"to-arraybuffer":141}],128:[function(require,module,exports){
24697
+ },{"./capability":138,"./response":140,"_process":131,"buffer":121,"inherits":127,"readable-stream":150,"timers":152,"to-arraybuffer":153}],140:[function(require,module,exports){
24130
24698
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
24131
24699
  var capability = require('./capability')
24132
24700
  var inherits = require('inherits')
@@ -24354,7 +24922,7 @@ IncomingMessage.prototype._onXHRProgress = function () {
24354
24922
  }
24355
24923
 
24356
24924
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/lib/response.js","/node_modules/stream-http/lib")
24357
- },{"./capability":126,"_process":119,"buffer":109,"inherits":115,"readable-stream":138,"timers":140}],129:[function(require,module,exports){
24925
+ },{"./capability":138,"_process":131,"buffer":121,"inherits":127,"readable-stream":150,"timers":152}],141:[function(require,module,exports){
24358
24926
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
24359
24927
  var toString = {}.toString;
24360
24928
 
@@ -24363,7 +24931,7 @@ module.exports = Array.isArray || function (arr) {
24363
24931
  };
24364
24932
 
24365
24933
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/isarray/index.js","/node_modules/stream-http/node_modules/isarray")
24366
- },{"_process":119,"buffer":109,"timers":140}],130:[function(require,module,exports){
24934
+ },{"_process":131,"buffer":121,"timers":152}],142:[function(require,module,exports){
24367
24935
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
24368
24936
  // Copyright Joyent, Inc. and other Node contributors.
24369
24937
  //
@@ -24497,7 +25065,7 @@ Duplex.prototype._destroy = function (err, cb) {
24497
25065
  pna.nextTick(cb, err);
24498
25066
  };
24499
25067
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_duplex.js","/node_modules/stream-http/node_modules/readable-stream/lib")
24500
- },{"./_stream_readable":132,"./_stream_writable":134,"_process":119,"buffer":109,"core-util-is":111,"inherits":115,"process-nextick-args":118,"timers":140}],131:[function(require,module,exports){
25068
+ },{"./_stream_readable":144,"./_stream_writable":146,"_process":131,"buffer":121,"core-util-is":123,"inherits":127,"process-nextick-args":130,"timers":152}],143:[function(require,module,exports){
24501
25069
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
24502
25070
  // Copyright Joyent, Inc. and other Node contributors.
24503
25071
  //
@@ -24547,7 +25115,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) {
24547
25115
  cb(null, chunk);
24548
25116
  };
24549
25117
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_passthrough.js","/node_modules/stream-http/node_modules/readable-stream/lib")
24550
- },{"./_stream_transform":133,"_process":119,"buffer":109,"core-util-is":111,"inherits":115,"timers":140}],132:[function(require,module,exports){
25118
+ },{"./_stream_transform":145,"_process":131,"buffer":121,"core-util-is":123,"inherits":127,"timers":152}],144:[function(require,module,exports){
24551
25119
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
24552
25120
  // Copyright Joyent, Inc. and other Node contributors.
24553
25121
  //
@@ -25569,7 +26137,7 @@ function indexOf(xs, x) {
25569
26137
  return -1;
25570
26138
  }
25571
26139
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_readable.js","/node_modules/stream-http/node_modules/readable-stream/lib")
25572
- },{"./_stream_duplex":130,"./internal/streams/BufferList":135,"./internal/streams/destroy":136,"./internal/streams/stream":137,"_process":119,"buffer":109,"core-util-is":111,"events":112,"inherits":115,"isarray":129,"process-nextick-args":118,"safe-buffer":124,"string_decoder/":139,"timers":140,"util":107}],133:[function(require,module,exports){
26140
+ },{"./_stream_duplex":142,"./internal/streams/BufferList":147,"./internal/streams/destroy":148,"./internal/streams/stream":149,"_process":131,"buffer":121,"core-util-is":123,"events":124,"inherits":127,"isarray":141,"process-nextick-args":130,"safe-buffer":136,"string_decoder/":151,"timers":152,"util":119}],145:[function(require,module,exports){
25573
26141
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
25574
26142
  // Copyright Joyent, Inc. and other Node contributors.
25575
26143
  //
@@ -25786,7 +26354,7 @@ function done(stream, er, data) {
25786
26354
  return stream.push(null);
25787
26355
  }
25788
26356
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_transform.js","/node_modules/stream-http/node_modules/readable-stream/lib")
25789
- },{"./_stream_duplex":130,"_process":119,"buffer":109,"core-util-is":111,"inherits":115,"timers":140}],134:[function(require,module,exports){
26357
+ },{"./_stream_duplex":142,"_process":131,"buffer":121,"core-util-is":123,"inherits":127,"timers":152}],146:[function(require,module,exports){
25790
26358
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
25791
26359
  // Copyright Joyent, Inc. and other Node contributors.
25792
26360
  //
@@ -26476,7 +27044,7 @@ Writable.prototype._destroy = function (err, cb) {
26476
27044
  cb(err);
26477
27045
  };
26478
27046
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/_stream_writable.js","/node_modules/stream-http/node_modules/readable-stream/lib")
26479
- },{"./_stream_duplex":130,"./internal/streams/destroy":136,"./internal/streams/stream":137,"_process":119,"buffer":109,"core-util-is":111,"inherits":115,"process-nextick-args":118,"safe-buffer":124,"timers":140,"util-deprecate":144}],135:[function(require,module,exports){
27047
+ },{"./_stream_duplex":142,"./internal/streams/destroy":148,"./internal/streams/stream":149,"_process":131,"buffer":121,"core-util-is":123,"inherits":127,"process-nextick-args":130,"safe-buffer":136,"timers":152,"util-deprecate":156}],147:[function(require,module,exports){
26480
27048
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
26481
27049
  'use strict';
26482
27050
 
@@ -26558,7 +27126,7 @@ if (util && util.inspect && util.inspect.custom) {
26558
27126
  };
26559
27127
  }
26560
27128
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams/BufferList.js","/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams")
26561
- },{"_process":119,"buffer":109,"safe-buffer":124,"timers":140,"util":107}],136:[function(require,module,exports){
27129
+ },{"_process":131,"buffer":121,"safe-buffer":136,"timers":152,"util":119}],148:[function(require,module,exports){
26562
27130
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
26563
27131
  'use strict';
26564
27132
 
@@ -26635,12 +27203,12 @@ module.exports = {
26635
27203
  undestroy: undestroy
26636
27204
  };
26637
27205
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams/destroy.js","/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams")
26638
- },{"_process":119,"buffer":109,"process-nextick-args":118,"timers":140}],137:[function(require,module,exports){
27206
+ },{"_process":131,"buffer":121,"process-nextick-args":130,"timers":152}],149:[function(require,module,exports){
26639
27207
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
26640
27208
  module.exports = require('events').EventEmitter;
26641
27209
 
26642
27210
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams/stream-browser.js","/node_modules/stream-http/node_modules/readable-stream/lib/internal/streams")
26643
- },{"_process":119,"buffer":109,"events":112,"timers":140}],138:[function(require,module,exports){
27211
+ },{"_process":131,"buffer":121,"events":124,"timers":152}],150:[function(require,module,exports){
26644
27212
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
26645
27213
  exports = module.exports = require('./lib/_stream_readable.js');
26646
27214
  exports.Stream = exports;
@@ -26651,7 +27219,7 @@ exports.Transform = require('./lib/_stream_transform.js');
26651
27219
  exports.PassThrough = require('./lib/_stream_passthrough.js');
26652
27220
 
26653
27221
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/readable-stream/readable-browser.js","/node_modules/stream-http/node_modules/readable-stream")
26654
- },{"./lib/_stream_duplex.js":130,"./lib/_stream_passthrough.js":131,"./lib/_stream_readable.js":132,"./lib/_stream_transform.js":133,"./lib/_stream_writable.js":134,"_process":119,"buffer":109,"timers":140}],139:[function(require,module,exports){
27222
+ },{"./lib/_stream_duplex.js":142,"./lib/_stream_passthrough.js":143,"./lib/_stream_readable.js":144,"./lib/_stream_transform.js":145,"./lib/_stream_writable.js":146,"_process":131,"buffer":121,"timers":152}],151:[function(require,module,exports){
26655
27223
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
26656
27224
  // Copyright Joyent, Inc. and other Node contributors.
26657
27225
  //
@@ -26950,7 +27518,7 @@ function simpleEnd(buf) {
26950
27518
  return buf && buf.length ? this.write(buf) : '';
26951
27519
  }
26952
27520
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/stream-http/node_modules/string_decoder/lib/string_decoder.js","/node_modules/stream-http/node_modules/string_decoder/lib")
26953
- },{"_process":119,"buffer":109,"safe-buffer":124,"timers":140}],140:[function(require,module,exports){
27521
+ },{"_process":131,"buffer":121,"safe-buffer":136,"timers":152}],152:[function(require,module,exports){
26954
27522
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
26955
27523
  var nextTick = require('process/browser.js').nextTick;
26956
27524
  var apply = Function.prototype.apply;
@@ -27029,7 +27597,7 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
27029
27597
  delete immediateIds[id];
27030
27598
  };
27031
27599
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/timers-browserify/main.js","/node_modules/timers-browserify")
27032
- },{"_process":119,"buffer":109,"process/browser.js":119,"timers":140}],141:[function(require,module,exports){
27600
+ },{"_process":131,"buffer":121,"process/browser.js":131,"timers":152}],153:[function(require,module,exports){
27033
27601
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
27034
27602
  var Buffer = require('buffer').Buffer
27035
27603
 
@@ -27060,7 +27628,7 @@ module.exports = function (buf) {
27060
27628
  }
27061
27629
 
27062
27630
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/to-arraybuffer/index.js","/node_modules/to-arraybuffer")
27063
- },{"_process":119,"buffer":109,"timers":140}],142:[function(require,module,exports){
27631
+ },{"_process":131,"buffer":121,"timers":152}],154:[function(require,module,exports){
27064
27632
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
27065
27633
  // Copyright Joyent, Inc. and other Node contributors.
27066
27634
  //
@@ -27796,7 +28364,7 @@ Url.prototype.parseHost = function() {
27796
28364
  };
27797
28365
 
27798
28366
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/url/url.js","/node_modules/url")
27799
- },{"./util":143,"_process":119,"buffer":109,"punycode":120,"querystring":123,"timers":140}],143:[function(require,module,exports){
28367
+ },{"./util":155,"_process":131,"buffer":121,"punycode":132,"querystring":135,"timers":152}],155:[function(require,module,exports){
27800
28368
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
27801
28369
  'use strict';
27802
28370
 
@@ -27816,7 +28384,7 @@ module.exports = {
27816
28384
  };
27817
28385
 
27818
28386
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/url/util.js","/node_modules/url")
27819
- },{"_process":119,"buffer":109,"timers":140}],144:[function(require,module,exports){
28387
+ },{"_process":131,"buffer":121,"timers":152}],156:[function(require,module,exports){
27820
28388
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
27821
28389
 
27822
28390
  /**
@@ -27887,7 +28455,7 @@ function config (name) {
27887
28455
  }
27888
28456
 
27889
28457
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/util-deprecate/browser.js","/node_modules/util-deprecate")
27890
- },{"_process":119,"buffer":109,"timers":140}],145:[function(require,module,exports){
28458
+ },{"_process":131,"buffer":121,"timers":152}],157:[function(require,module,exports){
27891
28459
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
27892
28460
  /**
27893
28461
  * Wrapper for built-in http.js to emulate the browser XMLHttpRequest object.
@@ -28511,7 +29079,7 @@ exports.XMLHttpRequest = function() {
28511
29079
  };
28512
29080
 
28513
29081
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/xmlhttprequest/lib/XMLHttpRequest.js","/node_modules/xmlhttprequest/lib")
28514
- },{"_process":119,"buffer":109,"child_process":108,"fs":108,"http":125,"https":113,"timers":140,"url":142}],146:[function(require,module,exports){
29082
+ },{"_process":131,"buffer":121,"child_process":120,"fs":120,"http":137,"https":125,"timers":152,"url":154}],158:[function(require,module,exports){
28515
29083
  (function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate,clearImmediate,__filename,__dirname){
28516
29084
  module.exports = extend
28517
29085
 
@@ -28534,5 +29102,5 @@ function extend() {
28534
29102
  }
28535
29103
 
28536
29104
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate,require("timers").clearImmediate,"/node_modules/xtend/immutable.js","/node_modules/xtend")
28537
- },{"_process":119,"buffer":109,"timers":140}]},{},[15])(15)
29105
+ },{"_process":131,"buffer":121,"timers":152}]},{},[15])(15)
28538
29106
  });