flash-sdk 1.0.1 → 1.0.2

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.
@@ -1,5 +1,5 @@
1
1
  import { PublicKey } from "@solana/web3.js";
2
- import { Assets, FeesStats, Custody, Fees, PricingParams, TradeStats, Permissions, BorrowRateParams, OracleParams, VolumeStats, PositionStats, BorrowRateState } from "./types";
2
+ import { Assets, FeesStats, Custody, Fees, PricingParams, TradeStats, Permissions, BorrowRateParams, OracleParams, VolumeStats, PositionStats, BorrowRateState, Side } from "./types";
3
3
  import { PositionAccount } from "./PositionAccount";
4
4
  import BN from "bn.js";
5
5
  export declare class CustodyAccount {
@@ -26,4 +26,5 @@ export declare class CustodyAccount {
26
26
  updateCustodyData(custody: Custody): void;
27
27
  getCumulativeInterest(curtime: BN): BN;
28
28
  getInterestAmountUsd(position: PositionAccount, curtime: BN): BN;
29
+ getCollectivePosition(side: Side): PositionAccount;
29
30
  }
@@ -15,6 +15,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  exports.CustodyAccount = void 0;
18
+ var types_1 = require("./types");
18
19
  var bn_js_1 = __importDefault(require("bn.js"));
19
20
  var constants_1 = require("./constants");
20
21
  var utils_1 = require("./utils");
@@ -59,6 +60,35 @@ var CustodyAccount = /** @class */ (function () {
59
60
  return (position_interest.mul(position.sizeUsd))
60
61
  .div(new bn_js_1.default(constants_1.RATE_POWER));
61
62
  };
63
+ CustodyAccount.prototype.getCollectivePosition = function (side) {
64
+ var stats;
65
+ if ((0, types_1.isVariant)(side, 'long')) {
66
+ stats = this.longPositions;
67
+ }
68
+ else {
69
+ stats = this.shortPositions;
70
+ }
71
+ ;
72
+ // if (!stats.openPositions.isNeg()) {
73
+ // const obj: Position = {
74
+ // side,
75
+ // price:
76
+ // stats.weighted_price.div(stats.total_quantity)
77
+ // size_usd: stats.size_usd,
78
+ // collateral_usd: stats.collateral_usd,
79
+ // unrealized_loss_usd: stats.cumulative_interest_usd,
80
+ // cumulative_interest_snapshot: stats.cumulative_interest_snapshot,
81
+ // locked_amount: stats.locked_amount,
82
+ // ..Position::default()
83
+ // }
84
+ // return new PositionAccount(
85
+ // new PublicKey('dgfgfg'),
86
+ // )
87
+ // } else {
88
+ // Ok(Position::default())
89
+ // }
90
+ throw Error("Incomplete");
91
+ };
62
92
  return CustodyAccount;
63
93
  }());
64
94
  exports.CustodyAccount = CustodyAccount;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="bn.js" />
2
2
  import { BN } from "@coral-xyz/anchor";
3
- import { Pool, Side, TokenRatios } from "./types";
3
+ import { AumCalcMode, Pool, Side, TokenRatios } from "./types";
4
4
  import { PublicKey } from "@solana/web3.js";
5
5
  import { CustodyAccount } from "./CustodyAccount";
6
6
  import { OraclePrice } from "./OraclePrice";
@@ -31,4 +31,5 @@ export declare class PoolAccount {
31
31
  loss: BN;
32
32
  exitFee: BN;
33
33
  };
34
+ getAssetsUnderManagementUsd(token_prices: OraclePrice[], token_ema_prices: OraclePrice[], custodies: CustodyAccount[], aum_calc_mode: AumCalcMode): BN;
34
35
  }
@@ -20,9 +20,6 @@ var PoolAccount = /** @class */ (function () {
20
20
  PoolAccount.prototype.getTokenId = function (custodyKey) {
21
21
  return this.custodies.findIndex(function (i) { return i.toBase58() == custodyKey.toBase58(); });
22
22
  };
23
- // loadlpData(lpTokenInfo : Mint){
24
- // this.lpTokenInfo = lpTokenInfo
25
- // }
26
23
  PoolAccount.prototype.getAddLiquidityFee = function (tokenId, amount, custody, tokenPrice) {
27
24
  return this.getFee(tokenId, custody.fees.addLiquidity, amount, new anchor_1.BN(0), custody, tokenPrice);
28
25
  };
@@ -243,6 +240,66 @@ var PoolAccount = /** @class */ (function () {
243
240
  }
244
241
  }
245
242
  }; //getPnlUsd
243
+ PoolAccount.prototype.getAssetsUnderManagementUsd = function (token_prices, token_ema_prices, custodies, aum_calc_mode) {
244
+ var pool_amount_usd = constants_1.BN_ZERO;
245
+ for (var index = 0; index < this.custodies.length; index++) {
246
+ if (token_prices.length != this.custodies.length || token_prices.length != token_ema_prices.length) {
247
+ throw Error("token prices length incorrect");
248
+ }
249
+ var aum_token_price = void 0;
250
+ // switch unable to match enum
251
+ if ((0, types_1.isVariant)(aum_calc_mode, "last")) {
252
+ aum_token_price = token_prices[index];
253
+ }
254
+ else if ((0, types_1.isVariant)(aum_calc_mode, "ema")) {
255
+ aum_token_price = token_ema_prices[index];
256
+ }
257
+ else if ((0, types_1.isVariant)(aum_calc_mode, "min")) {
258
+ if (token_prices[index].cmp(token_ema_prices[index])) {
259
+ aum_token_price = token_prices[index];
260
+ }
261
+ else {
262
+ aum_token_price = token_ema_prices[index];
263
+ }
264
+ }
265
+ else if ((0, types_1.isVariant)(aum_calc_mode, "max")) {
266
+ if (token_ema_prices[index].cmp(token_prices[index])) {
267
+ aum_token_price = token_prices[index];
268
+ }
269
+ else {
270
+ aum_token_price = token_ema_prices[index];
271
+ }
272
+ }
273
+ var token_amount_usd = aum_token_price.getAssetAmountUsd(custodies[index].assets.owned, custodies[index].decimals);
274
+ pool_amount_usd = pool_amount_usd.add(token_amount_usd);
275
+ // if (custodies[index].pricing.useUnrealizedPnlInAum) {
276
+ // // compute aggregate unrealized pnl
277
+ // let (long_profit, long_loss, _) = this.getPnlUsd(
278
+ // &custodies[index].get_collective_position(Side::Long)?,
279
+ // &token_price,
280
+ // &token_ema_price,
281
+ // &custodies[index],
282
+ // curtime,
283
+ // false,
284
+ // )?;
285
+ // let (short_profit, short_loss, _) = self.get_pnl_usd(
286
+ // &custodies[index].get_collective_position(Side::Short)?,
287
+ // &token_price,
288
+ // &token_ema_price,
289
+ // &custodies[index],
290
+ // curtime,
291
+ // false,
292
+ // )?;
293
+ // // adjust pool amount by collective profit/loss
294
+ // pool_amount_usd = math::checked_add(pool_amount_usd, long_profit as u128)?;
295
+ // pool_amount_usd = math::checked_add(pool_amount_usd, short_profit as u128)?;
296
+ // pool_amount_usd = pool_amount_usd.saturating_sub(long_loss as u128);
297
+ // pool_amount_usd = pool_amount_usd.saturating_sub(short_loss as u128);
298
+ // }
299
+ throw Error("Incomplete");
300
+ }
301
+ return pool_amount_usd;
302
+ };
246
303
  return PoolAccount;
247
304
  }()); // Pool
248
305
  exports.PoolAccount = PoolAccount;
@@ -1,13 +1,34 @@
1
1
  /// <reference types="bn.js" />
2
2
  import { BN } from "@coral-xyz/anchor";
3
3
  import { Mint } from "@solana/spl-token";
4
- import { Pool } from "./types";
5
4
  import { CustodyAccount } from "./CustodyAccount";
6
5
  import { PoolConfig } from "./PoolConfig";
6
+ import { PoolAccount } from "./PoolAccount";
7
7
  export declare class PoolDisplayData {
8
8
  poolConfig: PoolConfig;
9
- poolData: Pool;
9
+ pool: PoolAccount;
10
10
  lpTokenInfo: Mint;
11
11
  custodies: CustodyAccount[];
12
12
  totalPoolValueUsd: BN;
13
+ constructor(poolConfig: PoolConfig, pool: PoolAccount, lpTokenInfo: Mint, custodies: CustodyAccount[]);
14
+ loadCustodies(custodies: CustodyAccount[]): void;
15
+ loadPoolData(pool: PoolAccount): void;
16
+ loadlpData(lpTokenInfo: Mint): void;
17
+ getLpStats(prices: any): {
18
+ lpTokenSupply: BN;
19
+ decimals: number;
20
+ totalPoolValue: BN;
21
+ price: BN;
22
+ stableCoinPercentage: BN;
23
+ marketCap: BN;
24
+ };
25
+ getOiLongUI(): BN;
26
+ getOiShortUI(): BN;
27
+ getCustodyDetails(prices: any): any[];
28
+ getPoolStats(): {
29
+ totalFees: BN;
30
+ totalVolume: BN;
31
+ currentLongPositionsUsd: BN;
32
+ currentShortPositionsUsd: BN;
33
+ };
13
34
  }
@@ -1,9 +1,152 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PoolDisplayData = void 0;
4
+ var constants_1 = require("./constants");
5
+ var anchor_1 = require("@coral-xyz/anchor");
6
+ var utils_1 = require("./utils");
4
7
  var PoolDisplayData = /** @class */ (function () {
5
- function PoolDisplayData() {
8
+ function PoolDisplayData(poolConfig, pool, lpTokenInfo, custodies) {
9
+ this.poolConfig = poolConfig;
10
+ this.pool = pool;
11
+ this.lpTokenInfo = lpTokenInfo;
12
+ this.custodies = custodies;
13
+ this.totalPoolValueUsd = new anchor_1.BN(-1); // -1 meaning unset
6
14
  }
15
+ PoolDisplayData.prototype.loadCustodies = function (custodies) {
16
+ this.custodies = custodies;
17
+ };
18
+ PoolDisplayData.prototype.loadPoolData = function (pool) {
19
+ this.pool = pool;
20
+ };
21
+ PoolDisplayData.prototype.loadlpData = function (lpTokenInfo) {
22
+ this.lpTokenInfo = lpTokenInfo;
23
+ };
24
+ // TODO :: replace this with PoolAccount.getAssetsUnderManagementUsd()
25
+ // should take pnl's into account
26
+ PoolDisplayData.prototype.getLpStats = function (prices) {
27
+ var stableCoinAmount = new anchor_1.BN(0);
28
+ var totalPoolValueUsd = new anchor_1.BN(0);
29
+ var _loop_1 = function (custody) {
30
+ var custodyData = this_1.custodies.find(function (t) { return t.mint.toBase58() === custody.mintKey.toBase58(); });
31
+ if (custodyData) {
32
+ if (custodyData.isStable) {
33
+ stableCoinAmount = stableCoinAmount.add(custodyData.assets.owned);
34
+ }
35
+ var priceBN = new anchor_1.BN(prices.get(custody.symbol) * Math.pow(10, constants_1.PRICE_DECIMALS)); // so always keep prices with 6 decimals
36
+ var custodyValue = priceBN.mul(custodyData.assets.owned).div(new anchor_1.BN(Math.pow(10, custody.decimals)));
37
+ totalPoolValueUsd = totalPoolValueUsd.add(custodyValue);
38
+ }
39
+ };
40
+ var this_1 = this;
41
+ for (var _i = 0, _a = this.poolConfig.custodies; _i < _a.length; _i++) {
42
+ var custody = _a[_i];
43
+ _loop_1(custody);
44
+ }
45
+ // console.log("totalPoolValueUsd.toNumber():",totalPoolValueUsd.toString())
46
+ // console.log("stableCoinAmount.toNumber():",stableCoinAmount.toString())
47
+ // if(this.lpTokenInfo.supply.toString() =='0' || totalPoolValueUsd.toString()=='0'){
48
+ // console.error("supply or amt cannot be zero")
49
+ // throw "supply or amt cannot be zero";
50
+ // }
51
+ this.totalPoolValueUsd = totalPoolValueUsd;
52
+ var lpPrice = totalPoolValueUsd.div(new anchor_1.BN(this.lpTokenInfo.supply.toString() === '0' ? 1 : this.lpTokenInfo.supply.toString()));
53
+ return {
54
+ lpTokenSupply: new anchor_1.BN(this.lpTokenInfo.supply.toString()),
55
+ decimals: this.poolConfig.lpDecimals,
56
+ totalPoolValue: totalPoolValueUsd,
57
+ price: lpPrice,
58
+ stableCoinPercentage: totalPoolValueUsd.toNumber() != 0 ? stableCoinAmount.mul(new anchor_1.BN(constants_1.PERCENTAGE_DECIMALS)).div(totalPoolValueUsd) : new anchor_1.BN(1),
59
+ marketCap: lpPrice.mul(new anchor_1.BN(this.lpTokenInfo.supply.toString())),
60
+ // totalStaked : BN,
61
+ };
62
+ };
63
+ PoolDisplayData.prototype.getOiLongUI = function () {
64
+ var totalAmount = new anchor_1.BN('0');
65
+ this.custodies.forEach(function (i) {
66
+ totalAmount = totalAmount.add(i.tradeStats.oiLongUsd);
67
+ });
68
+ return totalAmount;
69
+ };
70
+ PoolDisplayData.prototype.getOiShortUI = function () {
71
+ var totalAmount = new anchor_1.BN('0');
72
+ this.custodies.forEach(function (i) {
73
+ totalAmount = totalAmount.add(i.tradeStats.oiShortUsd);
74
+ });
75
+ return totalAmount;
76
+ };
77
+ // handle decimal and this should accept a list of prices probs map or object
78
+ PoolDisplayData.prototype.getCustodyDetails = function (prices) {
79
+ var custodyDetails = [];
80
+ var _loop_2 = function (i) {
81
+ var custody = this_2.poolConfig.custodies[i];
82
+ if (!custody)
83
+ return "continue";
84
+ // console.log('this.pool :>> ', this.pool);
85
+ // const token = this.pool.tokens.find(t => t.custody.toBase58() === custody.custodyAccount.toBase58());
86
+ var tokenRatio = this_2.pool.ratios[i];
87
+ var custodyData = this_2.custodies.find(function (t) { return t.mint.toBase58() === custody.mintKey.toBase58(); });
88
+ var priceBN = new anchor_1.BN(prices.get(custody.symbol) * Math.pow(10, 6)); // so always keep prices with 6 decimals
89
+ if (this_2.totalPoolValueUsd.toString() == "-1") {
90
+ console.error("call getLpStats first");
91
+ throw "call getLpStats first";
92
+ }
93
+ // if(this.totalPoolValueUsd.toString()=='0'){
94
+ // console.error("call getLpStats first , totalPoolValueUsd ZERO")
95
+ // return defaultData.custodyDetails;
96
+ // }
97
+ // console.log("this.totalPoolValueUsd:",this.totalPoolValueUsd.toString())
98
+ if (custodyData && tokenRatio) {
99
+ custodyDetails.push({
100
+ symbol: custody.symbol,
101
+ price: new anchor_1.BN(prices.get(custody.symbol)),
102
+ targetWeight: tokenRatio.target,
103
+ currentWeight: this_2.totalPoolValueUsd.toNumber() ?
104
+ (custodyData.assets.owned.mul(priceBN)).mul(new anchor_1.BN(Math.pow(10, constants_1.PERCENTAGE_DECIMALS))).div(this_2.totalPoolValueUsd).div(new anchor_1.BN(Math.pow(10, custody.decimals)))
105
+ : new anchor_1.BN(0),
106
+ utilization: custodyData.assets.owned.toNumber() ?
107
+ (0, utils_1.toUiDecimals)(custodyData.assets.locked.mul(new anchor_1.BN(Math.pow(10, constants_1.PERCENTAGE_DECIMALS))).div(custodyData.assets.owned), constants_1.PERCENTAGE_DECIMALS, 2)
108
+ : '0',
109
+ // assetsAmountUi : (custodyData.assets.owned.toNumber() / 10**(custody.decimals)).toFixed(4),
110
+ assetsAmountUi: (0, utils_1.toUiDecimals)(custodyData.assets.owned, custody.decimals, 4, true),
111
+ // totalUsdAmountUi : ((custodyData.assets.owned.mul(priceBN)).div(new BN(10**(custody.decimals))).toNumber() / 10**6).toFixed(4),
112
+ totalUsdAmountUi: (0, utils_1.toUiDecimals)((custodyData.assets.owned.mul(priceBN)), custody.decimals + constants_1.PRICE_DECIMALS, 2, true),
113
+ });
114
+ }
115
+ };
116
+ var this_2 = this;
117
+ for (var i = 0; i < this.poolConfig.custodies.length; i++) {
118
+ _loop_2(i);
119
+ }
120
+ return custodyDetails;
121
+ };
122
+ PoolDisplayData.prototype.getPoolStats = function () {
123
+ var totalFees = new anchor_1.BN(0);
124
+ var totalVolume = new anchor_1.BN(0);
125
+ var currentLongPositionsUsd = new anchor_1.BN(0);
126
+ var currentShortPositionsUsd = new anchor_1.BN(0);
127
+ var _loop_3 = function (custody) {
128
+ var custodyData = this_3.custodies.find(function (t) { return t.mint.toBase58() === custody.mintKey.toBase58(); });
129
+ if (custodyData) {
130
+ var custodyFeeTotal = Object.values(custodyData.collectedFees).reduce(function (a, b) { return a.add(b); }, new anchor_1.BN(0));
131
+ totalFees = totalFees.add(custodyFeeTotal);
132
+ var custodyVolume = Object.values(custodyData.volumeStats).reduce(function (a, b) { return a.add(b); }, new anchor_1.BN(0));
133
+ totalVolume = totalVolume.add(custodyVolume);
134
+ currentLongPositionsUsd = currentLongPositionsUsd.add(custodyData.tradeStats.oiLongUsd);
135
+ currentShortPositionsUsd = currentShortPositionsUsd.add(custodyData.tradeStats.oiShortUsd);
136
+ }
137
+ };
138
+ var this_3 = this;
139
+ for (var _i = 0, _a = this.poolConfig.custodies; _i < _a.length; _i++) {
140
+ var custody = _a[_i];
141
+ _loop_3(custody);
142
+ }
143
+ return {
144
+ totalFees: totalFees,
145
+ totalVolume: totalVolume,
146
+ currentLongPositionsUsd: currentLongPositionsUsd,
147
+ currentShortPositionsUsd: currentShortPositionsUsd
148
+ };
149
+ };
7
150
  return PoolDisplayData;
8
- }()); // Pool
151
+ }()); // PoolDisplayData
9
152
  exports.PoolDisplayData = PoolDisplayData;
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.d.ts","../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/buffer/index.d.ts","../node_modules/formdata-polyfill/esm.min.d.ts","../node_modules/fetch-blob/file.d.ts","../node_modules/fetch-blob/index.d.ts","../node_modules/fetch-blob/from.d.ts","../node_modules/node-fetch/@types/index.d.ts","../node_modules/@solana/web3.js/lib/index.d.ts","../node_modules/eventemitter3/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/idl.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/context.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/common.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/rpc.d.ts","../node_modules/@project-serum/anchor/dist/cjs/provider.d.ts","../node_modules/@project-serum/anchor/dist/cjs/nodewallet.d.ts","../node_modules/@types/bn.js/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/error.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/transaction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/simulate.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/rpc.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/views.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/account.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/methods.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/event.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/accounts.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/event.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/accounts.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/events.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/accounts.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/events.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/sha256.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/pubkey.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/hex.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/utf8.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/bs58.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/base64.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/token.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/features.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/registry.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/accounts.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/events.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/spl/associated-token.d.ts","../node_modules/@project-serum/anchor/dist/cjs/spl/token.d.ts","../node_modules/@project-serum/anchor/dist/cjs/spl/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/native/system.d.ts","../node_modules/@project-serum/anchor/dist/cjs/native/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/idl.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/context.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/common.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/rpc.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/provider.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/nodewallet.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/error.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/account.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/accounts-resolver.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/transaction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/rpc.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/simulate.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/views.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/methods.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/event.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/accounts.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/event.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/accounts.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/events.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/sha256.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/pubkey.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/hex.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/utf8.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/bs58.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/base64.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/token.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/features.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/registry.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/native/system.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/native/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/index.d.ts","../src/constants/index.ts","../src/utils/index.ts","../src/oracleprice.ts","../src/types/index.ts","../src/positionaccount.ts","../src/custodyaccount.ts","../node_modules/@solana/spl-token/lib/types/actions/amounttouiamount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/approve.d.ts","../node_modules/@solana/spl-token/lib/types/actions/approvechecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/burn.d.ts","../node_modules/@solana/spl-token/lib/types/actions/burnchecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/closeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createassociatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createassociatedtokenaccountidempotent.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createmint.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createmultisig.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createnativemint.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createwrappednativeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/freezeaccount.d.ts","../node_modules/@solana/buffer-layout/lib/layout.d.ts","../node_modules/@solana/spl-token/lib/types/state/mint.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/extensiontype.d.ts","../node_modules/@solana/spl-token/lib/types/state/account.d.ts","../node_modules/@solana/spl-token/lib/types/actions/getorcreateassociatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/mintto.d.ts","../node_modules/@solana/spl-token/lib/types/actions/minttochecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/revoke.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/types.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/setauthority.d.ts","../node_modules/@solana/spl-token/lib/types/actions/setauthority.d.ts","../node_modules/@solana/spl-token/lib/types/actions/syncnative.d.ts","../node_modules/@solana/spl-token/lib/types/actions/thawaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/transfer.d.ts","../node_modules/@solana/spl-token/lib/types/actions/transferchecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/uiamounttoamount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/index.d.ts","../node_modules/@solana/spl-token/lib/types/constants.d.ts","../node_modules/@solana/spl-token/lib/types/errors.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/accounttype.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/immutableowner.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/mintcloseauthority.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/nontransferable.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/permanentdelegate.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/index.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/associatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/amounttouiamount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/approve.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/approvechecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/burn.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/burnchecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/closeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/freezeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount3.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemint2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemultisig.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/mintto.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/minttochecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/revoke.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/syncnative.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/thawaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/transfer.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/transferchecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/uiamounttoamount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/decode.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemultisig2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeimmutableowner.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemintcloseauthority.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/reallocate.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/createnativemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializenontransferablemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializepermanentdelegate.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/index.d.ts","../node_modules/@solana/spl-token/lib/types/state/multisig.d.ts","../node_modules/@solana/spl-token/lib/types/state/index.d.ts","../node_modules/@solana/spl-token/lib/types/index.d.ts","../node_modules/js-sha256/index.d.ts","../node_modules/base-x/src/index.d.ts","../node_modules/bs58/index.d.ts","../src/poolaccount.ts","../src/target/types/perpetuals.ts","../src/perpetualsclient.ts","../src/poolconfig.json","../src/poolconfig.ts","../src/pooldisplaydata.ts","../src/index.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/ws/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/mocha/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"b4473933ebd454f0b38bf002e92738f978f5197ad47627e6b2a6647046997256","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"84168c1e1f6e21906eea5167154748c1e9fea5ef6f2e1b2b2d2cb19e89fbd81a",{"version":"8155b7b79b6e7d7c13d3203f40cd8c201bdf2c0c25af536992d8962a28cac561","affectsGlobalScope":true},"5ca34a9a8b59bcc0e58730e702aa0823557122c86d6a6e1b6eeae85babb48513","c1d93a28c5312d757e449ad068c3a43ad0d961ab06e6a3b7aaa7d48c204a1deb",{"version":"77b2a2f1719b4c19b79bf2bf4833f67770e30767e49102a6b75ab3b3cf8b5db7","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","57e75559358fd6f9593b44506d75871004c124a70b6be3e0ce18597b71a08fc2","160f307d5ccc1f934de7fbed97f1d2016402f90f204c484e20bd5c2a19a4172a","9c1363edb96f09d8d2140284a39015dba08d5b01a98334ba9ad8784ab160c835","2a56407acc5881608ef5fa4c0688d446df6adfd010578ce83dd1b747d895b17f","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","ad5c7ca4a4dc8e39e0aa221b981f6306ca1c037c99bd4902bf02831ba5d7fae9",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"5362b44ccdfba77ac392febf7f8d755af484222cfdc7a9aa1dee67bf51a352f9","affectsGlobalScope":true},"4866843595b27b290ce6cc8092818ede98631734525453dec48d32d7f6726f18","d036da8d9e6391ad06ff5a71b8018838f0990667a178390eb48462059dba92de","63728b518fee91037e3d44081b0c7f3cc6fafb79a997dca5300a899277384867","8c4a16f8523cd932b16f3b6feb983037d2ca5699946d1f32b3787055fccbfff3","b76baf9af98ef1da1c3a681e66034c9ce21862fa4177235153d9719df72c2b1d","89d639ae440d34751d94c0333d83bc4dcfadc45cd15849f74cc1d9c0f0ce0413",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"92cfb0fd9ea018f140b7a9af0868daa80646e4f2fcbde2d60fb60c0319862ec8","7faa534c9c865c9338a8b46fe3fc3822f6ad58747240b103d0606e63990a4935","0ae6b96cc95c41d86deb7c208256f126bc58bbb6829e1e29b063aa9eed9ea3f7",{"version":"c6e4a85271072ff15b04d09075b357407d4cdead8ca536ec613a2bb02a03285e","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"e9f997f4724f4a19ddb396660061b55ae90dd0e4bb7a34788f7c9d1ceaf7dade","f6c9e1baa89f163bc1b29001ed43d3a24734e53a756e0ed89a92e40be17af5e3","4103297e96869b5226a7570a295fbf5f845e9dc4a3b3f8f242993c7f8aad1d42","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f3b323d28220d61475dc0229fad6d0bff24381766b40a30fe67743da772c82ad","b966a6e620b297ecd31d0359894a4018255d85da5a277b21867296e97e21fefd","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","cd2b61246eeb62ebc6842fe28f7b3389c081d3b6355091cffe3d12c083bd5705","48e2eb12763f6f72f9daf15967499f69bc4dcda00e1c93696ba25d14af513660",{"version":"57141225815ac2d5caf7e781c6442861854149675096afd9ed5b699aff80a5e7","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","1edbd43bfc703943f0eabfef8aac222fb3e509d9b13c60295cb206b9b75bb6be","12fd795309573a15193cf71d22f7e5debbec599b77ffeb3bb5c0fd1bd15cbe6d","4082bc53696f77cae7f84dd002d4766f3a814b9b2b0d9be4e399ee3f9afc501d",{"version":"e32d7b239d2649efbb57eca949ffc764fb76fd8cce9f57632c0217407a79fa1a","affectsGlobalScope":true},{"version":"5bf73febf7c8cc741ba62e94758eed3208f62473c50702d209bcfece18e12421","affectsGlobalScope":true},"3758d3cb9971c113455a802ad7fa16fa216639add0f2c90767cf177f8d85106d","048a373805662e209f7af8717b45ae77a8052ff2272234d6f8cb84d87831f516","f71e0cc279b5086fa3f46f0bb467d376a18776ec7c99c45b3bd7c670097e1308",{"version":"09e6c9b5d3f323c84bc103e387d1b41e03f5155909615ad877d862ff82758d00","affectsGlobalScope":true},"5af698993d8ba0b74e6d34902091b9cadab8e30d3b009746331721651b5890a4",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"27fea46e25bceaf52375ad48afdf5b9f78af76d551e30cc86077541d1c405e8e","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","d782e571cb7d6ec0f0645957ed843d00e3f8577e08cc2940f400c931bc47a8df","9167246623f181441e6116605221268d94e33a1ebd88075e2dc80133c928ae7e","dc1a838d8a514b6de9fbce3bd5e6feb9ccfe56311e9338bb908eb4d0d966ecaf","186f09ed4b1bc1d5a5af5b1d9f42e2d798f776418e82599b3de16423a349d184","d692ae73951775d2448df535ce8bc8abf162dc343911fedda2c37b8de3b20d8e","867d62c61432e319e2cbdef2980ae7e1fc034f72fd265c91f92eec3d07e4d9d6","b80c780c52524beb13488942543972c8b0e54400e8b59cee0169f38d0fabb968","f9d5804488942b5b1bc7629dac766ac874d03fe7c5d836d1d13a11d83f593966","2b5fe3253ecc77ba7f4211cc84600435dad654d9478dfbd37ebea6f8f0ae3d90","9c01a5cd8ed8a68fd2a05b4775388bf5398942b08b10dfe90dec84784cc48cbb","17d39cad53f387e1f6897e63c767b9898f8f9bf094f6d8528cd5c11a9d348824","b3b7403b7376cdfd847575682b5758bb581f319ef30c9a9cdc63a95354515450","dd35fe52f9b11fbbac675606766a17784815daa0dff13cb376515b4af7803e67","01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb","95bd65f5f86b08b0107c84e39fbd8b654c702a62a8abd85f212368753758caf3","2e2da62d0c8291a079b03bffc4b7288c925aa878367ef8eaceb37eaadf0910db","6f3b6750d038e578b1cabf6598d5e7a0c7b5b235132e9c0d76f6f6bb7dc7bc14","7dfe98521fbab89712c79005ed7f22155608cd3e192757f51ab58339c3fa5a9f","a680c84205139381ccddf3f7f26bc1a27066b15db04d76a72dee15fbe1ea5cda","e3b753df518a12c5fa3585bd1f3e9e4f82883b4a4f5e56255983a3225d0418da","b2d61f8f9bd7a437adcbcab3dc95779e13a5dc4551fea309ae44c8ced3596840","b8dd3b284bb2c32806a0095afe47896f94ccdd2962fdf8d6f4576e29f4bb2bbe","b9fc3d5183709484052e1e5bfc4680afd869e17ad40c41f1ee8df8c5dd5e69a4","e260de7605709824b8d92bc1f1b5d29887bf8e99736291a98e49ce4d28e71e4e","f23c3266d5bccc867939015f7aa47974ca2aa189ca8a6fa52868e9e19a429c61","8835ccff7f7bf75094749fd5da9604becacc31016f683907642f92cfefa9346d","27ac323cb20f83effd5df8702ca0c9fc7acdec44752c12a16569fa563437637a","8ac4904be5b82699041086aa0dd33327d2afa3bcb107fa887c308bbdde1ea7ce","396bddfb398080726d898f3d5ffc31b948d3656a1ffc15a06f0d29553b32f849","0af3c39051df3bd29daa050e5f5c6795f19dfa86eef615193faf1653557ecabb","4c82fa6ab6ac436b266758887c02413005d1163c784969877082dba7b990b5da","91edd3000d83a3852311142468c676c65889d29b5758c3cf54bdca7206d78531","c10401d8005c3087964ad0faa61fefab5a1b678bd58a210742c86e430b801aeb","8f9e9c32a8fcdeb9f1ae7dd7b91c52b4596fb0ea0f34a2281c00a9c92b78c0e9","0204e869ce582075a962c966750a638d5e056d1897d85b042daaec2d4bc0c0b3","18584847cdf14e522faa67916d50b8ba7479c8f12262c99d90078dffcae12a8e","686cc171d209d67c85ec2fc18b184e25ebbd18046aae40fd58b003c8ec8474f8","44e590a660a2ed3c71e92c85a4af2507b43359825ab4805ec2dcef54e9d564ee","30a39429dd194c9bd3bbb32a32e247d9b547524308d61acc1ba8f16e72e61ee9","f0b04452cd330d29522cbe34176e683f21429e690c2aaec5ecee88303537fda4","4227216ab5aede8768a946124803719be0bef4996af1a039989b49e58dda6706","6cf1fc031d9c5a64b53dbe2ed01c1d213e3b117659fd60aa8cff152898ac1213","5411a24f5b370634d57bb2ef7678072bd0897bd7846a858234a65f6fcd594640","847ccc20490110124a2252c5a705dfe1355921470d2bd6da9af1d4943e54346b","ab25cc3ceb86c474d955f722cc3da4caea63cc74b3ef19ae2bf5d2abfb238ef8","3b0309147d62225ffd116d3440f480e8df63a47e71e47fb6b432858db931b9e0","139db12276e11f90df65778f7513bc3f85957d74fd0d1bbeb19e4a1dace4f662","2884fcc91f5d42a3288a75a558b036923e3d926354fa0c3fa0251c2c3d4b54e8","013446b40d561ed0b2c2822d01954d4612d5e67222369073345aeebeb03fd406","4cb9df3ea8035d85480096a5ff94dbbcf941efb38c5c1ea77f1dc164d4342728","fef0479f7aca65cc547847ce77879abf60976d61c710465163df6a70c124977d","291b47b629e4c15e96bacb8d1f707573e72fedbb0fcab43f729e5f9d73560c3c","29afd807016e0f801c3e85920615c7eeac3c4e984c843c116209e86071cc888c","2a1d0598c9acba389f6a3369d52822a34045bd2ce75d012613bd0b802663c73b","1717e20e8b20694272830fac015f8eea0f0d4eee669fbfb817cf2d44005ada4c","4a6719ead14087a825e11e23478c4dced358119f9127de8e2462a11e241a179b","52a4e0a1081df5bfcb6c1ad54893601a7fbf174f41163e10fa3e2e53dad9d91b","e45e0bb1e74911082e40dff74e7243fd83e865c73c8a0fc02c9f1042de93397e","f2a9c0afd978d1e4ec0e0480cdc72475114f44f8d2624228fb3e5940742c6d4d","4f9e377c8d8c9ce140c37bfee80ece518206c3393d400a2c1610891957b281b7","675574af71799bfc6968d72331b03ff2950624d034e3a36d0e1fd5ec7c09dc3b","1b3fdc89782b57c476c2e190bc5633ca14080422720caccf77bbe10b5662edf0","3cd162efcadc267982fae972d96be3971a6feea7964ec6ac842d2da14858807c","1350bf1395fb50eb220062a52d57e3bca4410b2eb86c9e3d1b827af2b5c8de57","2015d77b1567aba094cd3f8d74b390c15300e5be5fc047936d35ad09258a4233","1fbbf80bdd9751ac6bb36e34daa9da7d087fe6c2de7cacf1b36ea2ef27d16774","d9b0235adce3f9c127317965341e3f2cb4e2e50ba029e04b2fe3a3a1c7981e6b","f253b0f34ac2757af5c73868b3235104f5e311c03859987b2402afd1382db058","0e7f5c11d845d4c3ceedaeedc03d9949a63e07f65c21dd1cf13d53ecb1c57b25","b61b573ff4ba88d0ca9f59655f66ddd34db4696d2b51c6ef7a959f2b70cb4109","8174e9c229331b9202cf34327e89794a98bb1a442aeee03c46c4b50034b72142","f40fd5b46add805ff018d3490352931e069eb524e3068b86d46d048534d1b824","2c31f69dc0e07f3c396462dae566bf822b1fbc9b56ae1f64ac73a652cf7e4a35","6888c13dda417d9057790a8c403e77e0fa1d7a083d947fdd9310961548a0a08e","a0ff940b1a0e503c45976623abdb39bcfecee97e9f40c3c59f16c659a4da3239","e2befcff13777268fe913fdae10fdca86632e142d0a56bafa88c2a15ee220701","5a739f3dbc49e8769afe70233c31489ed34ba9efe7f1150635658497cb1cbc71","3035306296b362047b08a2a4040a3bf33f0625287b3891e69b864b5d78b8286b","b11e5173a66497863b6d525009624f56ec5124cd6c30e56e8a3e9b41dd303962","178e4bbf4575f0f3d8027d67870aa11bf30ea98663a9f205ca03adc05fa135d7","d57e501aa9e3208fa52cdf03c414173e40523b20a89b5f70c5bffb53ead42c07","a011ef547fb4aca43d5b37d44419f9fc16ba089edf1eb96d20d9c9ee6beefc77","0eb499336fda2cdb3acbfb5c160153028f647904326921b84103e2c83f6892fb","29d441a45ca67aa4b9dc48eb80f26dce82602a066e51af92978a1b4bcb78c507","c5dbca090d5b388006482f4c159f9560ac5a44a7a6d77bb4a64c8749cf8ddb4b","cf18efc36568036078617bb6bd66186f3f68ba789baa67147a0e3128c9398bd0","dc4b884038ecf1dc687a89944e04cf6b1e83391f2d541212dccbb0de67c97f1d","8835ccff7f7bf75094749fd5da9604becacc31016f683907642f92cfefa9346d","8ac4904be5b82699041086aa0dd33327d2afa3bcb107fa887c308bbdde1ea7ce","257e143511763fc89bde384f58bf0a02e1708330705370c0a4483e9f1500ceaa","18584847cdf14e522faa67916d50b8ba7479c8f12262c99d90078dffcae12a8e","44e590a660a2ed3c71e92c85a4af2507b43359825ab4805ec2dcef54e9d564ee","30a39429dd194c9bd3bbb32a32e247d9b547524308d61acc1ba8f16e72e61ee9","f0b04452cd330d29522cbe34176e683f21429e690c2aaec5ecee88303537fda4","f499b42bfdba1be1e0a9cf2ea797ad00694bc7908fdbb8f1f50e4a8034387f67","57794fc7348347817d469e09db6a3faf7aec386f92cb0dad0acbe1336a3f68d7","b82e3f89b8b5d563df90b8e5da3dc2b39443a4db8a3c0310919d55a242da56dc","847ccc20490110124a2252c5a705dfe1355921470d2bd6da9af1d4943e54346b","4cc6d8bdf1e7d492569cf7437ca3f01bf9cc767c3295953b415a6c8d5badf1ab","3b0309147d62225ffd116d3440f480e8df63a47e71e47fb6b432858db931b9e0","139db12276e11f90df65778f7513bc3f85957d74fd0d1bbeb19e4a1dace4f662","2884fcc91f5d42a3288a75a558b036923e3d926354fa0c3fa0251c2c3d4b54e8","013446b40d561ed0b2c2822d01954d4612d5e67222369073345aeebeb03fd406","4cb9df3ea8035d85480096a5ff94dbbcf941efb38c5c1ea77f1dc164d4342728","b35517e270f8735aa771989daa684625bc6285c91e8e4377f13f70a6ff415fc9","291b47b629e4c15e96bacb8d1f707573e72fedbb0fcab43f729e5f9d73560c3c","ae147af43f062662157775c85e3801ea3b70dc7b8f39c7aa260ad215e1942cb3","2a1d0598c9acba389f6a3369d52822a34045bd2ce75d012613bd0b802663c73b","78e817751f43865838b80e44aec551f4d2eb50c7a8ef528a628da9cf8c427b66","878d8319802cbd907be389848225859546d87c66c5b8cf7b864fab14d3dda283","897537e8a5aa22a4ec865ade55b791c0010c863ac5f34e57e7e1c156d9862546","f253b0f34ac2757af5c73868b3235104f5e311c03859987b2402afd1382db058","88f98a99221fa413325886b54d3f2eec69c6092190c2693c2a460240c7bb2f28",{"version":"2c9dde3ae76045c82a56129c31fb81f3d4dc32a7b20439f8ed56a31ab72fe458","signature":"48ba10d1f6ea9356a7395eb4adebae61972eb6c62b2af44b5e23a54a27aaa2ec"},{"version":"f9361ff6789f7890cafefd0b4b4b5206ae9d93623bc31b43051c5899dfc44186","signature":"f44fb979e93ab21797f86ae51218806e50f4ba8fe323a32157068bc08051a92a"},{"version":"40da90d5a0a2ea07dfc2d4cb9364bcc280083228eb05265fc2366513cb47b309","signature":"c4ca8d5d13a8bf87c4def6b5a68d5eceff032375616217bc9a905eaf0ae2f4cf"},{"version":"127d5d95b412dfd3ed7c19670afde7b72054f363823525603bc964515bd9a18b","signature":"a29d63ef58e60e27abe7c658a5c7f1af96e5b9adbea563f32c84bdd7709aca4c"},{"version":"9ae41166a02f508f556768e575557ba506b416ed873fa321b72c90d9a4dd925f","signature":"6d7ed083d01899789b603933b9e36c643aa2b1385c4ece8e15c1cc87f30e0a82"},{"version":"d44e3570b180adf7ab1ad1c2b14d416164bbffb7eca33837196ff4a8de7ee1c6","signature":"5cc74e13bb9cc1ec804d77f8157070d20ea3df0669e330c3f42b124c401f1bb0"},"f2e5fa7d4aefe542762909ac966abdeaaaa76befbf561924edabb02b9b57542d","28e9fcac58f5957d1b82ab2b856799c24f7530e1d048198c1d0b9923762265ed","072a49808080400016c2557d47648297d854da5d75c2005083432f5bbbc19949","f25d3ac13258725686f0fbad31b82418ce00799f5d145570d6ee398a39651043","bbfcec9ed673c3dcb2668c3b216c7be9102a9e900e3d73801611da7f21746fdc","da3e4adedc5b5fd041f31a11d6bd98dde20febb2f2705988396d5a07f6f17543","9e6a844fae8202f8aa8bc6c7d076980221a15106c2a6a6f1e38fe1f2b8d07d62","99b07e053c9eae92b706ce3914d4b14bde4d896afc5a351c4660918ac64c6584","9fd36cbc7e5eaa50308919a4496ac677490c20a36a26208ef288f3033ad4c855","739adbaa02fd46f768fb88c72bc3359966241d36bc844a54f158fc68539f951b","8909288948f7bf5a408b6521a659a78765939ee319cd68ad5df4fb76fe1a755d","ff90f20e235b71cea80a352916e7f2a4737302e4f5b539d00e75204c82014b70","10ed1e58a17e61a6eb4f1bca430999ac214629058239489d498b88dc891f2327","1d1c0c879e2139313479670b032fc056ac93136a8199ed3e30fd118004077627","92ad95e6220ab829c8f5cfca9be43e26e041a2922cde6e998782030d41c49963","12c924e7f2e516943ce436ad51965a38cbbd9dee5fe670ae6349bd8c1bf76f52","75f4d060766b9c61825a122b94d61c45bbb6cafaa9f077c59987dc6c00467c76","42b7e0b9bed165997eb168904dfcd11254ff978ceeacda906e77d8f44c89f31f","b16879b91b181532922b7f279d8cba9c877c1436d3b0c55285ab8c6f43fd5dce","278055752eff1ed4b30b663d6b812923f041fbfd6cb6563d1b9350b53850059e","4ba1b1b1750a88a8fcc7d521d3ec3ba6235c28c73993e38adcaaec51afd57d5b","4991ee4482820b62aa2e6cd775d9984e0a45a7f6ba64d8a2737cbbb8af7c53f9","450257cba6657271a6646f9561b43062a5d2b39dba8b2e7b4d7c7fda73c6fe57","9a909c6bcc1cd061f649dc3b4dc9922fda9858166617bbc7263dd4c8bee7546f","c47421f20cec5286ce39834a3327579f36cad21f053ef8c09076c1894cd66d93","4c9975f07791ea91c74c2b8140ab48eb5ac2cc81417a108e6612c889a8bd23b3","b7b49dc760f6440dc8677ef49f0ca75c7f0f2f97f461a07bf2aa03723ac61d3d","79d938cb2e44b94e4f1497a9ccc2ff5da2fb7360d4eb7485da114055bc712379","566fd6af165b3acfa13b916594e422994e5d14f4138609fd252504800c9b96b7","ba9605656fa2ff88d69fd3676770ff1440fd70b4cbdce4ca85ac4ce27e659c7a","fedb9303cc3d1af9e5698092e3fd3622c2eb05805582107ac36c8cf0a160d16e","65d51b460383b6f7546f22c888c8b41e0de7385f20ec971acbb56da83bcbe611","b64e1ff30069e6fcfbd6b01df71b89e9f7d34581d1eba2e1fe3f3b1eaf70f28e","b725c869a5ff20458780f26afbe392017e690ee03decdb7d1202ac3539a8e235","4aaaa437c7b26c9b2668da29c1674d5be3b8f8fa150f3d7dac75d67314be9f37","f945eeb4aa141ce1af78affc6547c979f97b1cbb7d8995d4762d006e3e35c667","13bce356dc26c750244fe75f160388f59a1725d33e401ae26dc084277dd9491e","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","8a561d8bcaf60594a95c3390a489824c6688e81802701260444fb47881950257","cbc6cad822896d9d97bda9a0cea0834be8999dbe2040758cd6da3948c24415b3","e6ee1dcd00ca1c765c95b0abb2114c2ead786ae7610c823df4cd8fffbcbede10","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","8b25e65927ea90be5da89799997c6f7e7dbcd826a954bd1a466a931d380a3511","af7d2a7f8f8a0d9bcce2a017b1a9f6ec85f57e9484a65f46b6cafe8fb079e9a3","9cb1f37abda1396ced2508edf3d111c99a94421553138edc06353c1c824b8cc8","68a8ceeea894c6d5989c89207e3ac1b33c2c2026ad4a9e8c3cff1d87ea67ec77","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","989b5f3bf15619484ef2327c0a108ad33191bfc2e3deb6347bf175e79fd02e51","2b51763cbd722ee2747bc9e860dd0cc0200cdfdf6735c5c2fd4f5e3e02f1ec86","b650f3fdfd9e86f82d906dfbd81b87ef7c7d7434ee1de923d7d6cf5647434a02","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","3e2b6603bed1f4a82bdad05b68a66cc5943f8e12c647bf2f45a06c9d72cc0e00","eabca6c007c20da02a0cbbf23f6de3c39e662a9adc1a92736968179d7c4cc569","625ea89b6b179966c652b7bb93b57e7c1c2343eb9aba6cfb3ddf801359cde65c","1a69659e9cd6e3785e995d1e748809aa708a76fda03988b7ead402534311c106","27e553ea7ffbcaef2be2af5a79fdbf83cfcda0f95bf17e3c378b33402a28c1d6","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","068a6c2f0554b945cbfb006187f4c9c27386684810189dfe026a9b30470d3984","dd22a6e590d7fbabb29b903a809141cb1426846d23c21164ff4223a7f9dcff1d","93cd3ba5193ea2029b2eb0b20b94ca9c4e6b9c2a696d7d1a05211a2916ca0d77","748553e51bfbef2b4c8e646275f687e60ea77665c514ee1f880bf5a3cd509f37","a4d09f9410ec90d4b07cd054e8e2f234feb27b66b106202b386ab0b157663358","3749f5690d24338ff4b878db8d0f1b47d04fe891634c88ca56f7166f944fb96b","939f5a5215d6be2165c6a4116f5abb433b84df00f3ac4e458f3cd732786e8431","5f92a8bc72a87fca63d413ed8f303a2df36fb8143f0e974d0844c7422318909c","2a0e1e0a89c6a3991cc04812d4c6fcf92fe7511de87a684bc60357438dddf399","4ddb790ba5f1fd3689213c0501dbf21a7285f2edf562a8f7d86654877a868fc9","b0b840a3379f3539d037cb5b602541d2ab6984462761e505a23793866dc7a0d7","7aed6616e78d880577a37fa5edd42b690354874f1001acdbf21ead2f803a36a0","73a7dc6d00925ef047bc915a54cab15bb242d549b9334d9b5151cc0f35cfaf77","0a1c74bccc0c5a1f22012144a3d9afc19951348540c7ff5e5feaf4eef6259b80","3a1d5de5adaede0fb1ca2045f8b10a0e86f480a1082a11829a0b48da8ad6157f","0a1057aef93b764fb9665d101f2a050f6e060c37ec5b88f2d27bb83412a3487e","6164b754612e5776cc934dc0d6494fe2ee084d39d1cbc6fe4a23a45326730ccc","47679a6b6411019e8f7a443ec3addbec38a79a7e4679c00bc73d3ccdb81d64ce","cac86b9dbfd00f0ac7731f4074d2c69260c88ea28de96a71b0cb4efb5779b869","65bd0d34233fcaab54f5463703a0f022b2db197ef24c4a1d3adda1a9d3d6d502","f5cd1b398a44c53407e4aa1e8b503d0664299f002313d31bbce221644aadc6cb","c2f032cbe6aa8d59f021ccd865990d4d55c11fd3a1b96b81c56903cf05e36f1f","aa20bc1ba435f2a49bd640992da9517e31896e8f6d1a4817800ac96d6f10d6ea","5621180d5cf6e50f53fd6c73e0a60cd4115353f919bdd193580746896167da63","9cc5c390465b87096b69b2b0612a341d974b658cd28447696583f2762226f8c3","08371984685828cedaa25037b76def8f8f7f8304910dc66627bb58a2f53ecea4","7dd1c6c1b927f9edb94773f9333666f52f7b0bdf49a9a7f63129e9e66d1222cf","174f99dc1948a64c4211702a0fcc45d684d05fdfba3100ba4485fe45adb4d7f3","19405c79422e9c2d9ae1affae558857d3cbd138b17db596c642d008cd6c485cb","6c2ba8fe0797b626104a2fd4e8de0dad6edc4b932e4a50a7b72afa09fdcddbe9","dabc6bfb18fc1f988d37c8b659eb07fd35e8269bfa099b6dc02c14093c2b8b1a","ec9dd267b792e7c5c3733a45a3d2e43b93f02b98d86d8be50e11f9c15940c02b","a8f278a697ab8646f88cb2ba9783814e5438637cdfc3c5278e8aca82b4a1fc44","239d9e77e0026e7375dc9b6122f1b62d2c39fc2e5c10f50787cd321880146b95","0f3ca52b0d50160be177f8c79efbbcd666726c2de9256d6335e0d0bcb2e40d6f","1d8820a067af2309ef4f7739d2ada59882eebb3b2b595ff78496760c6f51ba60","0afbe91142eb631d6f31be624cf8a550b03736bfd22b0f309405a6fe4d4c9517","a3c89483a38d76c77a13b69b268a9e5d13abcdf0957ca3f28c9702c47ce8050f","40ec7e761ea0ddfc0add7aedb95dacfc579b25010ed0e2190abc1d34bb67f81e",{"version":"82312cdfa6be25a47c4efd4533bab1aa475be0b454bfa28b49b1e15f092bca83","signature":"5445b2a201444e1006d691b33977bd4b18476f77a70b5b784c0bf31657bd918e"},{"version":"0e46d91edb6738a19b4cbbb03f68406275841f2402a35deef193c8be93ccafd9","signature":"67e87404b0e4c4be1b98b06e25f91bb9d0db5c1cddc6468df50ab2bd2bc04947"},{"version":"ba55dc41d9b102d27cb51bcdcad754ed97000cb367bf436acda464325b8c32ea","signature":"b67f9a77da5f070d69d70b4670fa59cd6a1e8b227b712e35682ad7392a901853"},{"version":"29549d663128c855bde20c146f826db3c4a542fea8313a1b1c862ef6feda29c5","signature":"5e6e3edba67e2ac467081ca655b4bd228cbaafdf3d4cbbddea026c70793a3d36"},{"version":"70b3e6f2305113dece16610863d03373b9125eec566374f645e35a62514d0743","signature":"b63eea59bad267c4f6f235ca7daeedd61fc351bd321eedc975cf70530a2cd6ab"},{"version":"8aaff4d617c042cd0f3f4fd165b399068b65e8b0c9346256dbf4fa0eb6c1b9e0","signature":"1e499d798936b32924f5c0611a0ffadbc2df482f35ee6d3a69f9a0b60db8e40d"},{"version":"66946e12bd2865f30e524e007ccc7d12b3eb6f08251e379f739c5f5e123f8f5f","signature":"784f92e6003c91c311d35fd94f8c00a22b61b7222873c0360b5804a8f08304af"},"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",{"version":"677646e2620795c98a539fb12fb531f10331c217cef1492132b2518f894fa92d","affectsGlobalScope":true}],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"target":1},"fileIdsList":[[50,92,99,170,196],[50,92,99,170,186,196],[92,170,187,188,189,196,197],[50,92,99,106,170,196],[92,99,170,186,190,195],[92,99,170,196],[92,170,186,196],[92,170,191,192,193,194,196],[92,106],[50,92,99,106],[92,106,114,170,174,175,176,178,196,197,208,210,212],[92,211,213],[92,174,195,210],[92,106,174],[92,106,170,174,177,184,185],[92,106,107,170,171],[92,106,170,172],[92,106,170,174,185,196],[92,106,170,171,172,174,178,186,196,209],[92,99,106,107,170,172,174,185,196],[92,106,170,174,177,178,179,180,181,182,183,184,185,196],[92,99,106,170,171,185],[92,106,170,171,172,174,177,178,179,180,181,182,183,185],[92,106,170,174,180,185],[92,106,170,174,180,185,186,196],[92,106,170,179,185],[92,99,106,114,170,171,184,213],[92,106,170,182,185],[92,106,173],[50,92,99],[92,99],[92,200,201,202,203],[92],[92,173,198,199,204,205,206,207],[50,92,99,106,172],[92,99,106,114],[50,92,99,106,172,174],[50,92,99,108,142],[50,92,99,108,124,142],[92,108,125,126,127,128,142,143],[50,92,99,106,108,142],[50,92,99,108],[92,99,108,124,129,135,141],[92,99,108,142],[92,108,124,142],[92,108,142,158,159,160,161,162],[92,108,130,131,132,133,134,142],[92,108,136,137,138,139,140,142],[92,106,108,112,113,114,115,142,143,154,157,166,168],[92,167,169],[92,112,141,157],[92,106,112],[92,106,107,108,109],[92,106,108,110],[92,106,108,112,123,142],[92,106,108,109,110,112,124,142,156],[92,99,106,107,108,110,112,123,142],[92,106,108,112,116,117,118,119,120,121,122,123,142,155],[92,99,106,108,109,123],[92,106,108,109,112,116,117,118,119,120,121,123],[92,106,108,112,117,123],[92,106,108,112,117,123,124,142],[92,106,107,108,112,123,142,156],[92,106,108,116,123],[92,106,108,109,114,122,169],[92,106,108,118,123],[92,106,111],[92,112,157,163],[92,164,165,169],[92,112,135,157],[92,146,147,148,149],[92,111,144,145,150,151,152,153],[50,92,99,106,110],[50,92,99,106,110,112],[50,92],[92,106,237],[92,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,244,245,246,247,248,249],[92,106,243],[92,254,255,256],[92,106,234,242],[92,234,237],[92,258,259,260],[92,106,234,237,242],[92,234,235,237],[92,99,235],[92,236,253,257,261,262,266,270,271,272,276,277],[92,263,264,265],[92,106,234,235],[92,267,268,269],[92,234,235],[92,273,274,275],[92,106,234,235,237],[92,250,251,252,278,309,311],[92,106,243,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300],[92,242,243,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308],[92,106,236,242],[92,106,242],[92,99,106,234,236],[92,235,237,310],[92,99,106,234],[50,65,67,92,99,105],[65,92,99],[46,92],[49,92],[50,55,83,92],[51,62,63,70,80,91,92],[51,52,62,70,92],[53,92],[54,55,63,71,92],[55,80,88,92],[56,58,62,70,92],[57,92],[58,59,92],[62,92],[60,62,92],[62,63,64,80,91,92],[62,63,64,77,80,83,92],[92,96],[58,65,70,80,91,92],[62,63,65,66,70,80,88,91,92],[65,67,80,88,91,92],[46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98],[62,68,92],[69,91,92],[58,62,70,80,92],[71,92],[72,92],[49,73,92],[74,90,92,96],[75,92],[76,92],[62,77,78,92],[77,79,92,94],[50,62,80,81,82,83,92],[50,80,82,92],[80,81,92],[83,92],[84,92],[62,86,87,92],[86,87,92],[55,70,80,88,92],[89,92],[70,90,92],[50,65,76,91,92],[55,92],[80,92,93],[92,94],[92,95],[50,55,62,64,73,80,91,92,94,96],[80,92,97],[62,65,67,70,80,88,91,92,97,99],[92,314],[92,102,103],[65,92,99,101,104],[92,106,114],[92,106,114,214,215,217,218],[92,214,215,216,217,218,219,316,318,320],[92,106,213,214,215,217],[63,92,105,106,213,216,217,218,219,312,313,315,316,317],[92,106,213,214,215,216,217,218,219,312],[92,106,169,319],[92,106,213,214,215,216,217,218,219,312,320],[92,106,213,217],[92,106,169,216],[92,114,214],[106,114],[106,114,217,218],[214,215,216,217,218,219,316,318,320],[213],[106,213,216,217,219,316,317],[106,213,216,217,218,219],[106,169],[213,217,219,312,320],[106,213,217],[106,169,216],[114]],"referencedMap":[[187,1],[188,2],[190,3],[197,4],[189,1],[196,5],[192,6],[193,7],[195,8],[191,6],[194,6],[176,9],[170,10],[213,11],[212,12],[211,13],[175,14],[178,15],[172,16],[171,17],[186,18],[210,19],[177,20],[209,21],[179,22],[184,23],[181,24],[182,25],[180,26],[185,27],[183,28],[174,29],[203,30],[202,31],[200,30],[204,32],[201,33],[206,33],[208,34],[199,35],[207,36],[173,37],[198,33],[205,9],[125,38],[126,39],[129,40],[143,41],[127,42],[128,38],[142,43],[160,44],[161,45],[163,46],[158,44],[159,44],[162,44],[132,44],[133,45],[135,47],[130,44],[131,44],[134,44],[138,44],[139,45],[141,48],[136,44],[137,44],[140,44],[115,9],[108,10],[169,49],[168,50],[167,51],[113,52],[110,53],[109,54],[124,55],[157,56],[121,57],[156,58],[116,59],[122,60],[119,61],[118,62],[155,63],[117,64],[123,65],[120,66],[112,67],[164,68],[166,69],[165,70],[149,30],[148,31],[146,30],[150,71],[147,33],[152,33],[154,72],[145,73],[153,36],[111,74],[144,33],[151,9],[234,75],[220,9],[221,9],[222,9],[223,9],[224,9],[225,9],[226,9],[227,9],[228,9],[229,9],[230,9],[231,9],[232,9],[233,9],[238,76],[250,77],[239,9],[240,9],[241,9],[244,78],[245,9],[246,9],[247,9],[248,9],[249,9],[251,9],[252,33],[253,33],[254,9],[257,79],[255,80],[256,81],[258,76],[261,82],[259,83],[260,84],[236,85],[262,81],[278,86],[263,9],[266,87],[264,80],[265,88],[267,9],[270,89],[268,80],[269,81],[271,88],[272,90],[277,88],[273,9],[276,91],[274,80],[275,92],[312,93],[280,80],[281,80],[282,80],[279,9],[283,80],[284,80],[285,80],[306,80],[301,94],[286,80],[309,95],[287,80],[288,80],[289,80],[303,80],[290,80],[291,80],[304,80],[292,80],[302,33],[307,80],[308,80],[293,80],[294,80],[305,96],[295,80],[243,80],[296,80],[297,80],[298,80],[299,80],[242,33],[300,97],[237,98],[311,99],[235,98],[310,100],[106,101],[114,31],[323,102],[46,103],[47,103],[49,104],[50,105],[51,106],[52,107],[53,108],[54,109],[55,110],[56,111],[57,112],[58,113],[59,113],[61,114],[60,115],[62,114],[63,116],[64,117],[48,118],[98,33],[65,119],[66,120],[67,121],[99,122],[68,123],[69,124],[70,125],[71,126],[72,127],[73,128],[74,129],[75,130],[76,131],[77,132],[78,132],[79,133],[80,134],[82,135],[81,136],[83,137],[84,138],[85,33],[86,139],[87,140],[88,141],[89,142],[90,143],[91,144],[92,145],[93,146],[94,147],[95,148],[96,149],[97,150],[324,151],[314,33],[315,152],[100,33],[107,33],[102,33],[104,153],[103,33],[101,33],[313,33],[105,154],[1,33],[9,33],[13,33],[12,33],[3,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[20,33],[21,33],[4,33],[5,33],[25,33],[22,33],[23,33],[24,33],[26,33],[27,33],[28,33],[6,33],[29,33],[30,33],[31,33],[32,33],[7,33],[36,33],[33,33],[34,33],[35,33],[37,33],[8,33],[38,33],[43,33],[44,33],[39,33],[40,33],[41,33],[42,33],[2,33],[45,33],[11,33],[10,33],[214,155],[219,156],[322,157],[216,158],[318,159],[316,160],[319,33],[320,161],[321,162],[218,163],[317,33],[217,164],[215,165],[325,33],[326,33],[327,33]],"exportedModulesMap":[[187,1],[188,2],[190,3],[197,4],[189,1],[196,5],[192,6],[193,7],[195,8],[191,6],[194,6],[176,9],[170,10],[213,11],[212,12],[211,13],[175,14],[178,15],[172,16],[171,17],[186,18],[210,19],[177,20],[209,21],[179,22],[184,23],[181,24],[182,25],[180,26],[185,27],[183,28],[174,29],[203,30],[202,31],[200,30],[204,32],[201,33],[206,33],[208,34],[199,35],[207,36],[173,37],[198,33],[205,9],[125,38],[126,39],[129,40],[143,41],[127,42],[128,38],[142,43],[160,44],[161,45],[163,46],[158,44],[159,44],[162,44],[132,44],[133,45],[135,47],[130,44],[131,44],[134,44],[138,44],[139,45],[141,48],[136,44],[137,44],[140,44],[115,9],[108,10],[169,49],[168,50],[167,51],[113,52],[110,53],[109,54],[124,55],[157,56],[121,57],[156,58],[116,59],[122,60],[119,61],[118,62],[155,63],[117,64],[123,65],[120,66],[112,67],[164,68],[166,69],[165,70],[149,30],[148,31],[146,30],[150,71],[147,33],[152,33],[154,72],[145,73],[153,36],[111,74],[144,33],[151,9],[234,75],[220,9],[221,9],[222,9],[223,9],[224,9],[225,9],[226,9],[227,9],[228,9],[229,9],[230,9],[231,9],[232,9],[233,9],[238,76],[250,77],[239,9],[240,9],[241,9],[244,78],[245,9],[246,9],[247,9],[248,9],[249,9],[251,9],[252,33],[253,33],[254,9],[257,79],[255,80],[256,81],[258,76],[261,82],[259,83],[260,84],[236,85],[262,81],[278,86],[263,9],[266,87],[264,80],[265,88],[267,9],[270,89],[268,80],[269,81],[271,88],[272,90],[277,88],[273,9],[276,91],[274,80],[275,92],[312,93],[280,80],[281,80],[282,80],[279,9],[283,80],[284,80],[285,80],[306,80],[301,94],[286,80],[309,95],[287,80],[288,80],[289,80],[303,80],[290,80],[291,80],[304,80],[292,80],[302,33],[307,80],[308,80],[293,80],[294,80],[305,96],[295,80],[243,80],[296,80],[297,80],[298,80],[299,80],[242,33],[300,97],[237,98],[311,99],[235,98],[310,100],[106,101],[114,31],[323,102],[46,103],[47,103],[49,104],[50,105],[51,106],[52,107],[53,108],[54,109],[55,110],[56,111],[57,112],[58,113],[59,113],[61,114],[60,115],[62,114],[63,116],[64,117],[48,118],[98,33],[65,119],[66,120],[67,121],[99,122],[68,123],[69,124],[70,125],[71,126],[72,127],[73,128],[74,129],[75,130],[76,131],[77,132],[78,132],[79,133],[80,134],[82,135],[81,136],[83,137],[84,138],[85,33],[86,139],[87,140],[88,141],[89,142],[90,143],[91,144],[92,145],[93,146],[94,147],[95,148],[96,149],[97,150],[324,151],[314,33],[315,152],[100,33],[107,33],[102,33],[104,153],[103,33],[101,33],[313,33],[105,154],[1,33],[9,33],[13,33],[12,33],[3,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[20,33],[21,33],[4,33],[5,33],[25,33],[22,33],[23,33],[24,33],[26,33],[27,33],[28,33],[6,33],[29,33],[30,33],[31,33],[32,33],[7,33],[36,33],[33,33],[34,33],[35,33],[37,33],[8,33],[38,33],[43,33],[44,33],[39,33],[40,33],[41,33],[42,33],[2,33],[45,33],[11,33],[10,33],[214,166],[219,167],[322,168],[216,169],[318,170],[316,171],[320,172],[321,173],[218,174],[217,175],[215,176],[325,33],[326,33],[327,33]],"semanticDiagnosticsPerFile":[187,188,190,197,189,196,192,193,195,191,194,176,170,213,212,211,175,178,172,171,186,210,177,209,179,184,181,182,180,185,183,174,203,202,200,204,201,206,208,199,207,173,198,205,125,126,129,143,127,128,142,160,161,163,158,159,162,132,133,135,130,131,134,138,139,141,136,137,140,115,108,169,168,167,113,110,109,124,157,121,156,116,122,119,118,155,117,123,120,112,164,166,165,149,148,146,150,147,152,154,145,153,111,144,151,234,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,250,239,240,241,244,245,246,247,248,249,251,252,253,254,257,255,256,258,261,259,260,236,262,278,263,266,264,265,267,270,268,269,271,272,277,273,276,274,275,312,280,281,282,279,283,284,285,306,301,286,309,287,288,289,303,290,291,304,292,302,307,308,293,294,305,295,243,296,297,298,299,242,300,237,311,235,310,106,114,323,46,47,49,50,51,52,53,54,55,56,57,58,59,61,60,62,63,64,48,98,65,66,67,99,68,69,70,71,72,73,74,75,76,77,78,79,80,82,81,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,324,314,315,100,107,102,104,103,101,313,105,1,9,13,12,3,14,15,16,17,18,19,20,21,4,5,25,22,23,24,26,27,28,6,29,30,31,32,7,36,33,34,35,37,8,38,43,44,39,40,41,42,2,45,11,10,214,219,322,216,318,316,319,320,321,218,317,217,215,325,326,327]},"version":"4.9.5"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.d.ts","../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/buffer/index.d.ts","../node_modules/formdata-polyfill/esm.min.d.ts","../node_modules/fetch-blob/file.d.ts","../node_modules/fetch-blob/index.d.ts","../node_modules/fetch-blob/from.d.ts","../node_modules/node-fetch/@types/index.d.ts","../node_modules/@solana/web3.js/lib/index.d.ts","../node_modules/eventemitter3/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/idl.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/context.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/common.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/rpc.d.ts","../node_modules/@project-serum/anchor/dist/cjs/provider.d.ts","../node_modules/@project-serum/anchor/dist/cjs/nodewallet.d.ts","../node_modules/@types/bn.js/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/error.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/transaction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/simulate.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/rpc.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/views.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/account.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/methods.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/event.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/accounts.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/event.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/accounts.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/events.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-token/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/accounts.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/events.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/system/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/borsh/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/sha256.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/pubkey.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/hex.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/utf8.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/bs58.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/base64.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/bytes/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/token.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/features.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/registry.d.ts","../node_modules/@project-serum/anchor/dist/cjs/utils/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/namespace/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/program/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/instruction.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/state.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/accounts.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/events.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/types.d.ts","../node_modules/@project-serum/anchor/dist/cjs/coder/spl-associated-token/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/spl/associated-token.d.ts","../node_modules/@project-serum/anchor/dist/cjs/spl/token.d.ts","../node_modules/@project-serum/anchor/dist/cjs/spl/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/native/system.d.ts","../node_modules/@project-serum/anchor/dist/cjs/native/index.d.ts","../node_modules/@project-serum/anchor/dist/cjs/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/idl.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/context.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/common.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/rpc.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/provider.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/nodewallet.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/error.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/account.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/accounts-resolver.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/transaction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/rpc.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/simulate.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/views.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/methods.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/event.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/accounts.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/event.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/accounts.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/events.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/sha256.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/pubkey.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/hex.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/utf8.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/bs58.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/base64.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/token.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/features.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/registry.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/native/system.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/native/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/index.d.ts","../src/constants/index.ts","../src/utils/index.ts","../src/oracleprice.ts","../src/types/index.ts","../src/positionaccount.ts","../src/custodyaccount.ts","../node_modules/@solana/spl-token/lib/types/actions/amounttouiamount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/approve.d.ts","../node_modules/@solana/spl-token/lib/types/actions/approvechecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/burn.d.ts","../node_modules/@solana/spl-token/lib/types/actions/burnchecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/closeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createassociatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createassociatedtokenaccountidempotent.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createmint.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createmultisig.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createnativemint.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createwrappednativeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/freezeaccount.d.ts","../node_modules/@solana/buffer-layout/lib/layout.d.ts","../node_modules/@solana/spl-token/lib/types/state/mint.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/extensiontype.d.ts","../node_modules/@solana/spl-token/lib/types/state/account.d.ts","../node_modules/@solana/spl-token/lib/types/actions/getorcreateassociatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/mintto.d.ts","../node_modules/@solana/spl-token/lib/types/actions/minttochecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/revoke.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/types.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/setauthority.d.ts","../node_modules/@solana/spl-token/lib/types/actions/setauthority.d.ts","../node_modules/@solana/spl-token/lib/types/actions/syncnative.d.ts","../node_modules/@solana/spl-token/lib/types/actions/thawaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/transfer.d.ts","../node_modules/@solana/spl-token/lib/types/actions/transferchecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/uiamounttoamount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/index.d.ts","../node_modules/@solana/spl-token/lib/types/constants.d.ts","../node_modules/@solana/spl-token/lib/types/errors.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/accounttype.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/immutableowner.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/mintcloseauthority.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/nontransferable.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/permanentdelegate.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/index.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/associatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/amounttouiamount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/approve.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/approvechecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/burn.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/burnchecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/closeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/freezeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount3.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemint2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemultisig.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/mintto.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/minttochecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/revoke.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/syncnative.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/thawaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/transfer.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/transferchecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/uiamounttoamount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/decode.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemultisig2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeimmutableowner.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemintcloseauthority.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/reallocate.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/createnativemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializenontransferablemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializepermanentdelegate.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/index.d.ts","../node_modules/@solana/spl-token/lib/types/state/multisig.d.ts","../node_modules/@solana/spl-token/lib/types/state/index.d.ts","../node_modules/@solana/spl-token/lib/types/index.d.ts","../node_modules/js-sha256/index.d.ts","../node_modules/base-x/src/index.d.ts","../node_modules/bs58/index.d.ts","../src/poolaccount.ts","../src/target/types/perpetuals.ts","../src/perpetualsclient.ts","../src/poolconfig.json","../src/poolconfig.ts","../src/pooldisplaydata.ts","../src/index.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/ws/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/mocha/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"b4473933ebd454f0b38bf002e92738f978f5197ad47627e6b2a6647046997256","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"84168c1e1f6e21906eea5167154748c1e9fea5ef6f2e1b2b2d2cb19e89fbd81a",{"version":"8155b7b79b6e7d7c13d3203f40cd8c201bdf2c0c25af536992d8962a28cac561","affectsGlobalScope":true},"5ca34a9a8b59bcc0e58730e702aa0823557122c86d6a6e1b6eeae85babb48513","c1d93a28c5312d757e449ad068c3a43ad0d961ab06e6a3b7aaa7d48c204a1deb",{"version":"77b2a2f1719b4c19b79bf2bf4833f67770e30767e49102a6b75ab3b3cf8b5db7","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","57e75559358fd6f9593b44506d75871004c124a70b6be3e0ce18597b71a08fc2","160f307d5ccc1f934de7fbed97f1d2016402f90f204c484e20bd5c2a19a4172a","9c1363edb96f09d8d2140284a39015dba08d5b01a98334ba9ad8784ab160c835","2a56407acc5881608ef5fa4c0688d446df6adfd010578ce83dd1b747d895b17f","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","ad5c7ca4a4dc8e39e0aa221b981f6306ca1c037c99bd4902bf02831ba5d7fae9",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"5362b44ccdfba77ac392febf7f8d755af484222cfdc7a9aa1dee67bf51a352f9","affectsGlobalScope":true},"4866843595b27b290ce6cc8092818ede98631734525453dec48d32d7f6726f18","d036da8d9e6391ad06ff5a71b8018838f0990667a178390eb48462059dba92de","63728b518fee91037e3d44081b0c7f3cc6fafb79a997dca5300a899277384867","8c4a16f8523cd932b16f3b6feb983037d2ca5699946d1f32b3787055fccbfff3","b76baf9af98ef1da1c3a681e66034c9ce21862fa4177235153d9719df72c2b1d","89d639ae440d34751d94c0333d83bc4dcfadc45cd15849f74cc1d9c0f0ce0413",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"92cfb0fd9ea018f140b7a9af0868daa80646e4f2fcbde2d60fb60c0319862ec8","7faa534c9c865c9338a8b46fe3fc3822f6ad58747240b103d0606e63990a4935","0ae6b96cc95c41d86deb7c208256f126bc58bbb6829e1e29b063aa9eed9ea3f7",{"version":"c6e4a85271072ff15b04d09075b357407d4cdead8ca536ec613a2bb02a03285e","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"e9f997f4724f4a19ddb396660061b55ae90dd0e4bb7a34788f7c9d1ceaf7dade","f6c9e1baa89f163bc1b29001ed43d3a24734e53a756e0ed89a92e40be17af5e3","4103297e96869b5226a7570a295fbf5f845e9dc4a3b3f8f242993c7f8aad1d42","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f3b323d28220d61475dc0229fad6d0bff24381766b40a30fe67743da772c82ad","b966a6e620b297ecd31d0359894a4018255d85da5a277b21867296e97e21fefd","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","cd2b61246eeb62ebc6842fe28f7b3389c081d3b6355091cffe3d12c083bd5705","48e2eb12763f6f72f9daf15967499f69bc4dcda00e1c93696ba25d14af513660",{"version":"57141225815ac2d5caf7e781c6442861854149675096afd9ed5b699aff80a5e7","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","1edbd43bfc703943f0eabfef8aac222fb3e509d9b13c60295cb206b9b75bb6be","12fd795309573a15193cf71d22f7e5debbec599b77ffeb3bb5c0fd1bd15cbe6d","4082bc53696f77cae7f84dd002d4766f3a814b9b2b0d9be4e399ee3f9afc501d",{"version":"e32d7b239d2649efbb57eca949ffc764fb76fd8cce9f57632c0217407a79fa1a","affectsGlobalScope":true},{"version":"5bf73febf7c8cc741ba62e94758eed3208f62473c50702d209bcfece18e12421","affectsGlobalScope":true},"3758d3cb9971c113455a802ad7fa16fa216639add0f2c90767cf177f8d85106d","048a373805662e209f7af8717b45ae77a8052ff2272234d6f8cb84d87831f516","f71e0cc279b5086fa3f46f0bb467d376a18776ec7c99c45b3bd7c670097e1308",{"version":"09e6c9b5d3f323c84bc103e387d1b41e03f5155909615ad877d862ff82758d00","affectsGlobalScope":true},"5af698993d8ba0b74e6d34902091b9cadab8e30d3b009746331721651b5890a4",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"27fea46e25bceaf52375ad48afdf5b9f78af76d551e30cc86077541d1c405e8e","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","d782e571cb7d6ec0f0645957ed843d00e3f8577e08cc2940f400c931bc47a8df","9167246623f181441e6116605221268d94e33a1ebd88075e2dc80133c928ae7e","dc1a838d8a514b6de9fbce3bd5e6feb9ccfe56311e9338bb908eb4d0d966ecaf","186f09ed4b1bc1d5a5af5b1d9f42e2d798f776418e82599b3de16423a349d184","d692ae73951775d2448df535ce8bc8abf162dc343911fedda2c37b8de3b20d8e","867d62c61432e319e2cbdef2980ae7e1fc034f72fd265c91f92eec3d07e4d9d6","b80c780c52524beb13488942543972c8b0e54400e8b59cee0169f38d0fabb968","f9d5804488942b5b1bc7629dac766ac874d03fe7c5d836d1d13a11d83f593966","2b5fe3253ecc77ba7f4211cc84600435dad654d9478dfbd37ebea6f8f0ae3d90","9c01a5cd8ed8a68fd2a05b4775388bf5398942b08b10dfe90dec84784cc48cbb","17d39cad53f387e1f6897e63c767b9898f8f9bf094f6d8528cd5c11a9d348824","b3b7403b7376cdfd847575682b5758bb581f319ef30c9a9cdc63a95354515450","dd35fe52f9b11fbbac675606766a17784815daa0dff13cb376515b4af7803e67","01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb","95bd65f5f86b08b0107c84e39fbd8b654c702a62a8abd85f212368753758caf3","2e2da62d0c8291a079b03bffc4b7288c925aa878367ef8eaceb37eaadf0910db","6f3b6750d038e578b1cabf6598d5e7a0c7b5b235132e9c0d76f6f6bb7dc7bc14","7dfe98521fbab89712c79005ed7f22155608cd3e192757f51ab58339c3fa5a9f","a680c84205139381ccddf3f7f26bc1a27066b15db04d76a72dee15fbe1ea5cda","e3b753df518a12c5fa3585bd1f3e9e4f82883b4a4f5e56255983a3225d0418da","b2d61f8f9bd7a437adcbcab3dc95779e13a5dc4551fea309ae44c8ced3596840","b8dd3b284bb2c32806a0095afe47896f94ccdd2962fdf8d6f4576e29f4bb2bbe","b9fc3d5183709484052e1e5bfc4680afd869e17ad40c41f1ee8df8c5dd5e69a4","e260de7605709824b8d92bc1f1b5d29887bf8e99736291a98e49ce4d28e71e4e","f23c3266d5bccc867939015f7aa47974ca2aa189ca8a6fa52868e9e19a429c61","8835ccff7f7bf75094749fd5da9604becacc31016f683907642f92cfefa9346d","27ac323cb20f83effd5df8702ca0c9fc7acdec44752c12a16569fa563437637a","8ac4904be5b82699041086aa0dd33327d2afa3bcb107fa887c308bbdde1ea7ce","396bddfb398080726d898f3d5ffc31b948d3656a1ffc15a06f0d29553b32f849","0af3c39051df3bd29daa050e5f5c6795f19dfa86eef615193faf1653557ecabb","4c82fa6ab6ac436b266758887c02413005d1163c784969877082dba7b990b5da","91edd3000d83a3852311142468c676c65889d29b5758c3cf54bdca7206d78531","c10401d8005c3087964ad0faa61fefab5a1b678bd58a210742c86e430b801aeb","8f9e9c32a8fcdeb9f1ae7dd7b91c52b4596fb0ea0f34a2281c00a9c92b78c0e9","0204e869ce582075a962c966750a638d5e056d1897d85b042daaec2d4bc0c0b3","18584847cdf14e522faa67916d50b8ba7479c8f12262c99d90078dffcae12a8e","686cc171d209d67c85ec2fc18b184e25ebbd18046aae40fd58b003c8ec8474f8","44e590a660a2ed3c71e92c85a4af2507b43359825ab4805ec2dcef54e9d564ee","30a39429dd194c9bd3bbb32a32e247d9b547524308d61acc1ba8f16e72e61ee9","f0b04452cd330d29522cbe34176e683f21429e690c2aaec5ecee88303537fda4","4227216ab5aede8768a946124803719be0bef4996af1a039989b49e58dda6706","6cf1fc031d9c5a64b53dbe2ed01c1d213e3b117659fd60aa8cff152898ac1213","5411a24f5b370634d57bb2ef7678072bd0897bd7846a858234a65f6fcd594640","847ccc20490110124a2252c5a705dfe1355921470d2bd6da9af1d4943e54346b","ab25cc3ceb86c474d955f722cc3da4caea63cc74b3ef19ae2bf5d2abfb238ef8","3b0309147d62225ffd116d3440f480e8df63a47e71e47fb6b432858db931b9e0","139db12276e11f90df65778f7513bc3f85957d74fd0d1bbeb19e4a1dace4f662","2884fcc91f5d42a3288a75a558b036923e3d926354fa0c3fa0251c2c3d4b54e8","013446b40d561ed0b2c2822d01954d4612d5e67222369073345aeebeb03fd406","4cb9df3ea8035d85480096a5ff94dbbcf941efb38c5c1ea77f1dc164d4342728","fef0479f7aca65cc547847ce77879abf60976d61c710465163df6a70c124977d","291b47b629e4c15e96bacb8d1f707573e72fedbb0fcab43f729e5f9d73560c3c","29afd807016e0f801c3e85920615c7eeac3c4e984c843c116209e86071cc888c","2a1d0598c9acba389f6a3369d52822a34045bd2ce75d012613bd0b802663c73b","1717e20e8b20694272830fac015f8eea0f0d4eee669fbfb817cf2d44005ada4c","4a6719ead14087a825e11e23478c4dced358119f9127de8e2462a11e241a179b","52a4e0a1081df5bfcb6c1ad54893601a7fbf174f41163e10fa3e2e53dad9d91b","e45e0bb1e74911082e40dff74e7243fd83e865c73c8a0fc02c9f1042de93397e","f2a9c0afd978d1e4ec0e0480cdc72475114f44f8d2624228fb3e5940742c6d4d","4f9e377c8d8c9ce140c37bfee80ece518206c3393d400a2c1610891957b281b7","675574af71799bfc6968d72331b03ff2950624d034e3a36d0e1fd5ec7c09dc3b","1b3fdc89782b57c476c2e190bc5633ca14080422720caccf77bbe10b5662edf0","3cd162efcadc267982fae972d96be3971a6feea7964ec6ac842d2da14858807c","1350bf1395fb50eb220062a52d57e3bca4410b2eb86c9e3d1b827af2b5c8de57","2015d77b1567aba094cd3f8d74b390c15300e5be5fc047936d35ad09258a4233","1fbbf80bdd9751ac6bb36e34daa9da7d087fe6c2de7cacf1b36ea2ef27d16774","d9b0235adce3f9c127317965341e3f2cb4e2e50ba029e04b2fe3a3a1c7981e6b","f253b0f34ac2757af5c73868b3235104f5e311c03859987b2402afd1382db058","0e7f5c11d845d4c3ceedaeedc03d9949a63e07f65c21dd1cf13d53ecb1c57b25","b61b573ff4ba88d0ca9f59655f66ddd34db4696d2b51c6ef7a959f2b70cb4109","8174e9c229331b9202cf34327e89794a98bb1a442aeee03c46c4b50034b72142","f40fd5b46add805ff018d3490352931e069eb524e3068b86d46d048534d1b824","2c31f69dc0e07f3c396462dae566bf822b1fbc9b56ae1f64ac73a652cf7e4a35","6888c13dda417d9057790a8c403e77e0fa1d7a083d947fdd9310961548a0a08e","a0ff940b1a0e503c45976623abdb39bcfecee97e9f40c3c59f16c659a4da3239","e2befcff13777268fe913fdae10fdca86632e142d0a56bafa88c2a15ee220701","5a739f3dbc49e8769afe70233c31489ed34ba9efe7f1150635658497cb1cbc71","3035306296b362047b08a2a4040a3bf33f0625287b3891e69b864b5d78b8286b","b11e5173a66497863b6d525009624f56ec5124cd6c30e56e8a3e9b41dd303962","178e4bbf4575f0f3d8027d67870aa11bf30ea98663a9f205ca03adc05fa135d7","d57e501aa9e3208fa52cdf03c414173e40523b20a89b5f70c5bffb53ead42c07","a011ef547fb4aca43d5b37d44419f9fc16ba089edf1eb96d20d9c9ee6beefc77","0eb499336fda2cdb3acbfb5c160153028f647904326921b84103e2c83f6892fb","29d441a45ca67aa4b9dc48eb80f26dce82602a066e51af92978a1b4bcb78c507","c5dbca090d5b388006482f4c159f9560ac5a44a7a6d77bb4a64c8749cf8ddb4b","cf18efc36568036078617bb6bd66186f3f68ba789baa67147a0e3128c9398bd0","dc4b884038ecf1dc687a89944e04cf6b1e83391f2d541212dccbb0de67c97f1d","8835ccff7f7bf75094749fd5da9604becacc31016f683907642f92cfefa9346d","8ac4904be5b82699041086aa0dd33327d2afa3bcb107fa887c308bbdde1ea7ce","257e143511763fc89bde384f58bf0a02e1708330705370c0a4483e9f1500ceaa","18584847cdf14e522faa67916d50b8ba7479c8f12262c99d90078dffcae12a8e","44e590a660a2ed3c71e92c85a4af2507b43359825ab4805ec2dcef54e9d564ee","30a39429dd194c9bd3bbb32a32e247d9b547524308d61acc1ba8f16e72e61ee9","f0b04452cd330d29522cbe34176e683f21429e690c2aaec5ecee88303537fda4","f499b42bfdba1be1e0a9cf2ea797ad00694bc7908fdbb8f1f50e4a8034387f67","57794fc7348347817d469e09db6a3faf7aec386f92cb0dad0acbe1336a3f68d7","b82e3f89b8b5d563df90b8e5da3dc2b39443a4db8a3c0310919d55a242da56dc","847ccc20490110124a2252c5a705dfe1355921470d2bd6da9af1d4943e54346b","4cc6d8bdf1e7d492569cf7437ca3f01bf9cc767c3295953b415a6c8d5badf1ab","3b0309147d62225ffd116d3440f480e8df63a47e71e47fb6b432858db931b9e0","139db12276e11f90df65778f7513bc3f85957d74fd0d1bbeb19e4a1dace4f662","2884fcc91f5d42a3288a75a558b036923e3d926354fa0c3fa0251c2c3d4b54e8","013446b40d561ed0b2c2822d01954d4612d5e67222369073345aeebeb03fd406","4cb9df3ea8035d85480096a5ff94dbbcf941efb38c5c1ea77f1dc164d4342728","b35517e270f8735aa771989daa684625bc6285c91e8e4377f13f70a6ff415fc9","291b47b629e4c15e96bacb8d1f707573e72fedbb0fcab43f729e5f9d73560c3c","ae147af43f062662157775c85e3801ea3b70dc7b8f39c7aa260ad215e1942cb3","2a1d0598c9acba389f6a3369d52822a34045bd2ce75d012613bd0b802663c73b","78e817751f43865838b80e44aec551f4d2eb50c7a8ef528a628da9cf8c427b66","878d8319802cbd907be389848225859546d87c66c5b8cf7b864fab14d3dda283","897537e8a5aa22a4ec865ade55b791c0010c863ac5f34e57e7e1c156d9862546","f253b0f34ac2757af5c73868b3235104f5e311c03859987b2402afd1382db058","88f98a99221fa413325886b54d3f2eec69c6092190c2693c2a460240c7bb2f28",{"version":"2c9dde3ae76045c82a56129c31fb81f3d4dc32a7b20439f8ed56a31ab72fe458","signature":"48ba10d1f6ea9356a7395eb4adebae61972eb6c62b2af44b5e23a54a27aaa2ec"},{"version":"9b001f46c8455250c9e7d84ba28eb89228bf098b9cdae0889aed01b6a0fe3874","signature":"afa8d40c6c1ec38f3ed913d74647100d9c2170a95ad9049bf334d2095008c33c"},{"version":"40da90d5a0a2ea07dfc2d4cb9364bcc280083228eb05265fc2366513cb47b309","signature":"c4ca8d5d13a8bf87c4def6b5a68d5eceff032375616217bc9a905eaf0ae2f4cf"},{"version":"90c24a261440f4f3a5b8d1790f63e71f451be74b51724647599e389de0242c9d","signature":"db6a0b5f46688f9847c32c5317d11d1c38ed8b416c69f2d6af7b0688be10406b"},{"version":"9ae41166a02f508f556768e575557ba506b416ed873fa321b72c90d9a4dd925f","signature":"6d7ed083d01899789b603933b9e36c643aa2b1385c4ece8e15c1cc87f30e0a82"},{"version":"5063b791edbe101d2fff29b3e8bd1a982b4ad7b16fa4e6a03225097f1408330c","signature":"cb91662898c70c0a467787cdc792abaf4e144d84adf35376d26507c03d86c846"},"f2e5fa7d4aefe542762909ac966abdeaaaa76befbf561924edabb02b9b57542d","28e9fcac58f5957d1b82ab2b856799c24f7530e1d048198c1d0b9923762265ed","072a49808080400016c2557d47648297d854da5d75c2005083432f5bbbc19949","f25d3ac13258725686f0fbad31b82418ce00799f5d145570d6ee398a39651043","bbfcec9ed673c3dcb2668c3b216c7be9102a9e900e3d73801611da7f21746fdc","da3e4adedc5b5fd041f31a11d6bd98dde20febb2f2705988396d5a07f6f17543","9e6a844fae8202f8aa8bc6c7d076980221a15106c2a6a6f1e38fe1f2b8d07d62","99b07e053c9eae92b706ce3914d4b14bde4d896afc5a351c4660918ac64c6584","9fd36cbc7e5eaa50308919a4496ac677490c20a36a26208ef288f3033ad4c855","739adbaa02fd46f768fb88c72bc3359966241d36bc844a54f158fc68539f951b","8909288948f7bf5a408b6521a659a78765939ee319cd68ad5df4fb76fe1a755d","ff90f20e235b71cea80a352916e7f2a4737302e4f5b539d00e75204c82014b70","10ed1e58a17e61a6eb4f1bca430999ac214629058239489d498b88dc891f2327","1d1c0c879e2139313479670b032fc056ac93136a8199ed3e30fd118004077627","92ad95e6220ab829c8f5cfca9be43e26e041a2922cde6e998782030d41c49963","12c924e7f2e516943ce436ad51965a38cbbd9dee5fe670ae6349bd8c1bf76f52","75f4d060766b9c61825a122b94d61c45bbb6cafaa9f077c59987dc6c00467c76","42b7e0b9bed165997eb168904dfcd11254ff978ceeacda906e77d8f44c89f31f","b16879b91b181532922b7f279d8cba9c877c1436d3b0c55285ab8c6f43fd5dce","278055752eff1ed4b30b663d6b812923f041fbfd6cb6563d1b9350b53850059e","4ba1b1b1750a88a8fcc7d521d3ec3ba6235c28c73993e38adcaaec51afd57d5b","4991ee4482820b62aa2e6cd775d9984e0a45a7f6ba64d8a2737cbbb8af7c53f9","450257cba6657271a6646f9561b43062a5d2b39dba8b2e7b4d7c7fda73c6fe57","9a909c6bcc1cd061f649dc3b4dc9922fda9858166617bbc7263dd4c8bee7546f","c47421f20cec5286ce39834a3327579f36cad21f053ef8c09076c1894cd66d93","4c9975f07791ea91c74c2b8140ab48eb5ac2cc81417a108e6612c889a8bd23b3","b7b49dc760f6440dc8677ef49f0ca75c7f0f2f97f461a07bf2aa03723ac61d3d","79d938cb2e44b94e4f1497a9ccc2ff5da2fb7360d4eb7485da114055bc712379","566fd6af165b3acfa13b916594e422994e5d14f4138609fd252504800c9b96b7","ba9605656fa2ff88d69fd3676770ff1440fd70b4cbdce4ca85ac4ce27e659c7a","fedb9303cc3d1af9e5698092e3fd3622c2eb05805582107ac36c8cf0a160d16e","65d51b460383b6f7546f22c888c8b41e0de7385f20ec971acbb56da83bcbe611","b64e1ff30069e6fcfbd6b01df71b89e9f7d34581d1eba2e1fe3f3b1eaf70f28e","b725c869a5ff20458780f26afbe392017e690ee03decdb7d1202ac3539a8e235","4aaaa437c7b26c9b2668da29c1674d5be3b8f8fa150f3d7dac75d67314be9f37","f945eeb4aa141ce1af78affc6547c979f97b1cbb7d8995d4762d006e3e35c667","13bce356dc26c750244fe75f160388f59a1725d33e401ae26dc084277dd9491e","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","8a561d8bcaf60594a95c3390a489824c6688e81802701260444fb47881950257","cbc6cad822896d9d97bda9a0cea0834be8999dbe2040758cd6da3948c24415b3","e6ee1dcd00ca1c765c95b0abb2114c2ead786ae7610c823df4cd8fffbcbede10","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","8b25e65927ea90be5da89799997c6f7e7dbcd826a954bd1a466a931d380a3511","af7d2a7f8f8a0d9bcce2a017b1a9f6ec85f57e9484a65f46b6cafe8fb079e9a3","9cb1f37abda1396ced2508edf3d111c99a94421553138edc06353c1c824b8cc8","68a8ceeea894c6d5989c89207e3ac1b33c2c2026ad4a9e8c3cff1d87ea67ec77","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","989b5f3bf15619484ef2327c0a108ad33191bfc2e3deb6347bf175e79fd02e51","2b51763cbd722ee2747bc9e860dd0cc0200cdfdf6735c5c2fd4f5e3e02f1ec86","b650f3fdfd9e86f82d906dfbd81b87ef7c7d7434ee1de923d7d6cf5647434a02","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","3e2b6603bed1f4a82bdad05b68a66cc5943f8e12c647bf2f45a06c9d72cc0e00","eabca6c007c20da02a0cbbf23f6de3c39e662a9adc1a92736968179d7c4cc569","625ea89b6b179966c652b7bb93b57e7c1c2343eb9aba6cfb3ddf801359cde65c","1a69659e9cd6e3785e995d1e748809aa708a76fda03988b7ead402534311c106","27e553ea7ffbcaef2be2af5a79fdbf83cfcda0f95bf17e3c378b33402a28c1d6","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","068a6c2f0554b945cbfb006187f4c9c27386684810189dfe026a9b30470d3984","dd22a6e590d7fbabb29b903a809141cb1426846d23c21164ff4223a7f9dcff1d","93cd3ba5193ea2029b2eb0b20b94ca9c4e6b9c2a696d7d1a05211a2916ca0d77","748553e51bfbef2b4c8e646275f687e60ea77665c514ee1f880bf5a3cd509f37","a4d09f9410ec90d4b07cd054e8e2f234feb27b66b106202b386ab0b157663358","3749f5690d24338ff4b878db8d0f1b47d04fe891634c88ca56f7166f944fb96b","939f5a5215d6be2165c6a4116f5abb433b84df00f3ac4e458f3cd732786e8431","5f92a8bc72a87fca63d413ed8f303a2df36fb8143f0e974d0844c7422318909c","2a0e1e0a89c6a3991cc04812d4c6fcf92fe7511de87a684bc60357438dddf399","4ddb790ba5f1fd3689213c0501dbf21a7285f2edf562a8f7d86654877a868fc9","b0b840a3379f3539d037cb5b602541d2ab6984462761e505a23793866dc7a0d7","7aed6616e78d880577a37fa5edd42b690354874f1001acdbf21ead2f803a36a0","73a7dc6d00925ef047bc915a54cab15bb242d549b9334d9b5151cc0f35cfaf77","0a1c74bccc0c5a1f22012144a3d9afc19951348540c7ff5e5feaf4eef6259b80","3a1d5de5adaede0fb1ca2045f8b10a0e86f480a1082a11829a0b48da8ad6157f","0a1057aef93b764fb9665d101f2a050f6e060c37ec5b88f2d27bb83412a3487e","6164b754612e5776cc934dc0d6494fe2ee084d39d1cbc6fe4a23a45326730ccc","47679a6b6411019e8f7a443ec3addbec38a79a7e4679c00bc73d3ccdb81d64ce","cac86b9dbfd00f0ac7731f4074d2c69260c88ea28de96a71b0cb4efb5779b869","65bd0d34233fcaab54f5463703a0f022b2db197ef24c4a1d3adda1a9d3d6d502","f5cd1b398a44c53407e4aa1e8b503d0664299f002313d31bbce221644aadc6cb","c2f032cbe6aa8d59f021ccd865990d4d55c11fd3a1b96b81c56903cf05e36f1f","aa20bc1ba435f2a49bd640992da9517e31896e8f6d1a4817800ac96d6f10d6ea","5621180d5cf6e50f53fd6c73e0a60cd4115353f919bdd193580746896167da63","9cc5c390465b87096b69b2b0612a341d974b658cd28447696583f2762226f8c3","08371984685828cedaa25037b76def8f8f7f8304910dc66627bb58a2f53ecea4","7dd1c6c1b927f9edb94773f9333666f52f7b0bdf49a9a7f63129e9e66d1222cf","174f99dc1948a64c4211702a0fcc45d684d05fdfba3100ba4485fe45adb4d7f3","19405c79422e9c2d9ae1affae558857d3cbd138b17db596c642d008cd6c485cb","6c2ba8fe0797b626104a2fd4e8de0dad6edc4b932e4a50a7b72afa09fdcddbe9","dabc6bfb18fc1f988d37c8b659eb07fd35e8269bfa099b6dc02c14093c2b8b1a","ec9dd267b792e7c5c3733a45a3d2e43b93f02b98d86d8be50e11f9c15940c02b","a8f278a697ab8646f88cb2ba9783814e5438637cdfc3c5278e8aca82b4a1fc44","239d9e77e0026e7375dc9b6122f1b62d2c39fc2e5c10f50787cd321880146b95","0f3ca52b0d50160be177f8c79efbbcd666726c2de9256d6335e0d0bcb2e40d6f","1d8820a067af2309ef4f7739d2ada59882eebb3b2b595ff78496760c6f51ba60","0afbe91142eb631d6f31be624cf8a550b03736bfd22b0f309405a6fe4d4c9517","a3c89483a38d76c77a13b69b268a9e5d13abcdf0957ca3f28c9702c47ce8050f","40ec7e761ea0ddfc0add7aedb95dacfc579b25010ed0e2190abc1d34bb67f81e",{"version":"a7538bd959e8502cc4c737285f4546253cf6cfc2f50ea5934053ec5e066c6e52","signature":"165703cb372df1e4480bda536e6d79537c12e7cdd10fb6f0845e8a65cc8a2213"},{"version":"0e46d91edb6738a19b4cbbb03f68406275841f2402a35deef193c8be93ccafd9","signature":"67e87404b0e4c4be1b98b06e25f91bb9d0db5c1cddc6468df50ab2bd2bc04947"},{"version":"ba55dc41d9b102d27cb51bcdcad754ed97000cb367bf436acda464325b8c32ea","signature":"b67f9a77da5f070d69d70b4670fa59cd6a1e8b227b712e35682ad7392a901853"},{"version":"29549d663128c855bde20c146f826db3c4a542fea8313a1b1c862ef6feda29c5","signature":"5e6e3edba67e2ac467081ca655b4bd228cbaafdf3d4cbbddea026c70793a3d36"},{"version":"70b3e6f2305113dece16610863d03373b9125eec566374f645e35a62514d0743","signature":"b63eea59bad267c4f6f235ca7daeedd61fc351bd321eedc975cf70530a2cd6ab"},{"version":"d23914e10a4a9ff71ec5ad5a3fc6f49652bb0ac5a7143e4674c923915e22d299","signature":"4aaab687d170a0cd540902d475cef53ec9209c9ee1314da5b9e3af8c49deec57"},{"version":"66946e12bd2865f30e524e007ccc7d12b3eb6f08251e379f739c5f5e123f8f5f","signature":"784f92e6003c91c311d35fd94f8c00a22b61b7222873c0360b5804a8f08304af"},"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",{"version":"677646e2620795c98a539fb12fb531f10331c217cef1492132b2518f894fa92d","affectsGlobalScope":true}],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"target":1},"fileIdsList":[[50,92,99,170,196],[50,92,99,170,186,196],[92,170,187,188,189,196,197],[50,92,99,106,170,196],[92,99,170,186,190,195],[92,99,170,196],[92,170,186,196],[92,170,191,192,193,194,196],[92,106],[50,92,99,106],[92,106,114,170,174,175,176,178,196,197,208,210,212],[92,211,213],[92,174,195,210],[92,106,174],[92,106,170,174,177,184,185],[92,106,107,170,171],[92,106,170,172],[92,106,170,174,185,196],[92,106,170,171,172,174,178,186,196,209],[92,99,106,107,170,172,174,185,196],[92,106,170,174,177,178,179,180,181,182,183,184,185,196],[92,99,106,170,171,185],[92,106,170,171,172,174,177,178,179,180,181,182,183,185],[92,106,170,174,180,185],[92,106,170,174,180,185,186,196],[92,106,170,179,185],[92,99,106,114,170,171,184,213],[92,106,170,182,185],[92,106,173],[50,92,99],[92,99],[92,200,201,202,203],[92],[92,173,198,199,204,205,206,207],[50,92,99,106,172],[92,99,106,114],[50,92,99,106,172,174],[50,92,99,108,142],[50,92,99,108,124,142],[92,108,125,126,127,128,142,143],[50,92,99,106,108,142],[50,92,99,108],[92,99,108,124,129,135,141],[92,99,108,142],[92,108,124,142],[92,108,142,158,159,160,161,162],[92,108,130,131,132,133,134,142],[92,108,136,137,138,139,140,142],[92,106,108,112,113,114,115,142,143,154,157,166,168],[92,167,169],[92,112,141,157],[92,106,112],[92,106,107,108,109],[92,106,108,110],[92,106,108,112,123,142],[92,106,108,109,110,112,124,142,156],[92,99,106,107,108,110,112,123,142],[92,106,108,112,116,117,118,119,120,121,122,123,142,155],[92,99,106,108,109,123],[92,106,108,109,112,116,117,118,119,120,121,123],[92,106,108,112,117,123],[92,106,108,112,117,123,124,142],[92,106,107,108,112,123,142,156],[92,106,108,116,123],[92,106,108,109,114,122,169],[92,106,108,118,123],[92,106,111],[92,112,157,163],[92,164,165,169],[92,112,135,157],[92,146,147,148,149],[92,111,144,145,150,151,152,153],[50,92,99,106,110],[50,92,99,106,110,112],[50,92],[92,106,237],[92,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,244,245,246,247,248,249],[92,106,243],[92,254,255,256],[92,106,234,242],[92,234,237],[92,258,259,260],[92,106,234,237,242],[92,234,235,237],[92,99,235],[92,236,253,257,261,262,266,270,271,272,276,277],[92,263,264,265],[92,106,234,235],[92,267,268,269],[92,234,235],[92,273,274,275],[92,106,234,235,237],[92,250,251,252,278,309,311],[92,106,243,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300],[92,242,243,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308],[92,106,236,242],[92,106,242],[92,99,106,234,236],[92,235,237,310],[92,99,106,234],[50,65,67,92,99,105],[65,92,99],[46,92],[49,92],[50,55,83,92],[51,62,63,70,80,91,92],[51,52,62,70,92],[53,92],[54,55,63,71,92],[55,80,88,92],[56,58,62,70,92],[57,92],[58,59,92],[62,92],[60,62,92],[62,63,64,80,91,92],[62,63,64,77,80,83,92],[92,96],[58,65,70,80,91,92],[62,63,65,66,70,80,88,91,92],[65,67,80,88,91,92],[46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98],[62,68,92],[69,91,92],[58,62,70,80,92],[71,92],[72,92],[49,73,92],[74,90,92,96],[75,92],[76,92],[62,77,78,92],[77,79,92,94],[50,62,80,81,82,83,92],[50,80,82,92],[80,81,92],[83,92],[84,92],[62,86,87,92],[86,87,92],[55,70,80,88,92],[89,92],[70,90,92],[50,65,76,91,92],[55,92],[80,92,93],[92,94],[92,95],[50,55,62,64,73,80,91,92,94,96],[80,92,97],[62,65,67,70,80,88,91,92,97,99],[92,314],[92,102,103],[65,92,99,101,104],[92,106,114],[92,106,114,214,215,217,218],[92,214,215,216,217,218,219,316,318,320],[92,106,213,214,215,217],[63,92,105,106,213,216,217,218,219,312,313,315,316,317],[92,106,213,214,215,216,217,218,219,312],[92,106,169,319],[92,106,213,214,215,216,217,218,219,312,316,320],[92,106,213,217],[92,106,169,216],[92,114,214],[106,114],[106,114,217,218],[214,215,216,217,218,219,316,318,320],[213],[106,213,216,217,219,316,317],[106,213,216,217,218,219],[106,169],[213,219,312,316,320],[106,213,217],[106,169,216],[114]],"referencedMap":[[187,1],[188,2],[190,3],[197,4],[189,1],[196,5],[192,6],[193,7],[195,8],[191,6],[194,6],[176,9],[170,10],[213,11],[212,12],[211,13],[175,14],[178,15],[172,16],[171,17],[186,18],[210,19],[177,20],[209,21],[179,22],[184,23],[181,24],[182,25],[180,26],[185,27],[183,28],[174,29],[203,30],[202,31],[200,30],[204,32],[201,33],[206,33],[208,34],[199,35],[207,36],[173,37],[198,33],[205,9],[125,38],[126,39],[129,40],[143,41],[127,42],[128,38],[142,43],[160,44],[161,45],[163,46],[158,44],[159,44],[162,44],[132,44],[133,45],[135,47],[130,44],[131,44],[134,44],[138,44],[139,45],[141,48],[136,44],[137,44],[140,44],[115,9],[108,10],[169,49],[168,50],[167,51],[113,52],[110,53],[109,54],[124,55],[157,56],[121,57],[156,58],[116,59],[122,60],[119,61],[118,62],[155,63],[117,64],[123,65],[120,66],[112,67],[164,68],[166,69],[165,70],[149,30],[148,31],[146,30],[150,71],[147,33],[152,33],[154,72],[145,73],[153,36],[111,74],[144,33],[151,9],[234,75],[220,9],[221,9],[222,9],[223,9],[224,9],[225,9],[226,9],[227,9],[228,9],[229,9],[230,9],[231,9],[232,9],[233,9],[238,76],[250,77],[239,9],[240,9],[241,9],[244,78],[245,9],[246,9],[247,9],[248,9],[249,9],[251,9],[252,33],[253,33],[254,9],[257,79],[255,80],[256,81],[258,76],[261,82],[259,83],[260,84],[236,85],[262,81],[278,86],[263,9],[266,87],[264,80],[265,88],[267,9],[270,89],[268,80],[269,81],[271,88],[272,90],[277,88],[273,9],[276,91],[274,80],[275,92],[312,93],[280,80],[281,80],[282,80],[279,9],[283,80],[284,80],[285,80],[306,80],[301,94],[286,80],[309,95],[287,80],[288,80],[289,80],[303,80],[290,80],[291,80],[304,80],[292,80],[302,33],[307,80],[308,80],[293,80],[294,80],[305,96],[295,80],[243,80],[296,80],[297,80],[298,80],[299,80],[242,33],[300,97],[237,98],[311,99],[235,98],[310,100],[106,101],[114,31],[323,102],[46,103],[47,103],[49,104],[50,105],[51,106],[52,107],[53,108],[54,109],[55,110],[56,111],[57,112],[58,113],[59,113],[61,114],[60,115],[62,114],[63,116],[64,117],[48,118],[98,33],[65,119],[66,120],[67,121],[99,122],[68,123],[69,124],[70,125],[71,126],[72,127],[73,128],[74,129],[75,130],[76,131],[77,132],[78,132],[79,133],[80,134],[82,135],[81,136],[83,137],[84,138],[85,33],[86,139],[87,140],[88,141],[89,142],[90,143],[91,144],[92,145],[93,146],[94,147],[95,148],[96,149],[97,150],[324,151],[314,33],[315,152],[100,33],[107,33],[102,33],[104,153],[103,33],[101,33],[313,33],[105,154],[1,33],[9,33],[13,33],[12,33],[3,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[20,33],[21,33],[4,33],[5,33],[25,33],[22,33],[23,33],[24,33],[26,33],[27,33],[28,33],[6,33],[29,33],[30,33],[31,33],[32,33],[7,33],[36,33],[33,33],[34,33],[35,33],[37,33],[8,33],[38,33],[43,33],[44,33],[39,33],[40,33],[41,33],[42,33],[2,33],[45,33],[11,33],[10,33],[214,155],[219,156],[322,157],[216,158],[318,159],[316,160],[319,33],[320,161],[321,162],[218,163],[317,33],[217,164],[215,165],[325,33],[326,33],[327,33]],"exportedModulesMap":[[187,1],[188,2],[190,3],[197,4],[189,1],[196,5],[192,6],[193,7],[195,8],[191,6],[194,6],[176,9],[170,10],[213,11],[212,12],[211,13],[175,14],[178,15],[172,16],[171,17],[186,18],[210,19],[177,20],[209,21],[179,22],[184,23],[181,24],[182,25],[180,26],[185,27],[183,28],[174,29],[203,30],[202,31],[200,30],[204,32],[201,33],[206,33],[208,34],[199,35],[207,36],[173,37],[198,33],[205,9],[125,38],[126,39],[129,40],[143,41],[127,42],[128,38],[142,43],[160,44],[161,45],[163,46],[158,44],[159,44],[162,44],[132,44],[133,45],[135,47],[130,44],[131,44],[134,44],[138,44],[139,45],[141,48],[136,44],[137,44],[140,44],[115,9],[108,10],[169,49],[168,50],[167,51],[113,52],[110,53],[109,54],[124,55],[157,56],[121,57],[156,58],[116,59],[122,60],[119,61],[118,62],[155,63],[117,64],[123,65],[120,66],[112,67],[164,68],[166,69],[165,70],[149,30],[148,31],[146,30],[150,71],[147,33],[152,33],[154,72],[145,73],[153,36],[111,74],[144,33],[151,9],[234,75],[220,9],[221,9],[222,9],[223,9],[224,9],[225,9],[226,9],[227,9],[228,9],[229,9],[230,9],[231,9],[232,9],[233,9],[238,76],[250,77],[239,9],[240,9],[241,9],[244,78],[245,9],[246,9],[247,9],[248,9],[249,9],[251,9],[252,33],[253,33],[254,9],[257,79],[255,80],[256,81],[258,76],[261,82],[259,83],[260,84],[236,85],[262,81],[278,86],[263,9],[266,87],[264,80],[265,88],[267,9],[270,89],[268,80],[269,81],[271,88],[272,90],[277,88],[273,9],[276,91],[274,80],[275,92],[312,93],[280,80],[281,80],[282,80],[279,9],[283,80],[284,80],[285,80],[306,80],[301,94],[286,80],[309,95],[287,80],[288,80],[289,80],[303,80],[290,80],[291,80],[304,80],[292,80],[302,33],[307,80],[308,80],[293,80],[294,80],[305,96],[295,80],[243,80],[296,80],[297,80],[298,80],[299,80],[242,33],[300,97],[237,98],[311,99],[235,98],[310,100],[106,101],[114,31],[323,102],[46,103],[47,103],[49,104],[50,105],[51,106],[52,107],[53,108],[54,109],[55,110],[56,111],[57,112],[58,113],[59,113],[61,114],[60,115],[62,114],[63,116],[64,117],[48,118],[98,33],[65,119],[66,120],[67,121],[99,122],[68,123],[69,124],[70,125],[71,126],[72,127],[73,128],[74,129],[75,130],[76,131],[77,132],[78,132],[79,133],[80,134],[82,135],[81,136],[83,137],[84,138],[85,33],[86,139],[87,140],[88,141],[89,142],[90,143],[91,144],[92,145],[93,146],[94,147],[95,148],[96,149],[97,150],[324,151],[314,33],[315,152],[100,33],[107,33],[102,33],[104,153],[103,33],[101,33],[313,33],[105,154],[1,33],[9,33],[13,33],[12,33],[3,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[20,33],[21,33],[4,33],[5,33],[25,33],[22,33],[23,33],[24,33],[26,33],[27,33],[28,33],[6,33],[29,33],[30,33],[31,33],[32,33],[7,33],[36,33],[33,33],[34,33],[35,33],[37,33],[8,33],[38,33],[43,33],[44,33],[39,33],[40,33],[41,33],[42,33],[2,33],[45,33],[11,33],[10,33],[214,166],[219,167],[322,168],[216,169],[318,170],[316,171],[320,172],[321,173],[218,174],[217,175],[215,176],[325,33],[326,33],[327,33]],"semanticDiagnosticsPerFile":[187,188,190,197,189,196,192,193,195,191,194,176,170,213,212,211,175,178,172,171,186,210,177,209,179,184,181,182,180,185,183,174,203,202,200,204,201,206,208,199,207,173,198,205,125,126,129,143,127,128,142,160,161,163,158,159,162,132,133,135,130,131,134,138,139,141,136,137,140,115,108,169,168,167,113,110,109,124,157,121,156,116,122,119,118,155,117,123,120,112,164,166,165,149,148,146,150,147,152,154,145,153,111,144,151,234,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,250,239,240,241,244,245,246,247,248,249,251,252,253,254,257,255,256,258,261,259,260,236,262,278,263,266,264,265,267,270,268,269,271,272,277,273,276,274,275,312,280,281,282,279,283,284,285,306,301,286,309,287,288,289,303,290,291,304,292,302,307,308,293,294,305,295,243,296,297,298,299,242,300,237,311,235,310,106,114,323,46,47,49,50,51,52,53,54,55,56,57,58,59,61,60,62,63,64,48,98,65,66,67,99,68,69,70,71,72,73,74,75,76,77,78,79,80,82,81,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,324,314,315,100,107,102,104,103,101,313,105,1,9,13,12,3,14,15,16,17,18,19,20,21,4,5,25,22,23,24,26,27,28,6,29,30,31,32,7,36,33,34,35,37,8,38,43,44,39,40,41,42,2,45,11,10,214,219,322,216,318,316,319,320,321,218,317,217,215,325,326,327]},"version":"4.9.5"}
@@ -16,6 +16,20 @@ export declare class Side {
16
16
  short: {};
17
17
  };
18
18
  }
19
+ export declare class AumCalcMode {
20
+ static Min: {
21
+ min: {};
22
+ };
23
+ static Max: {
24
+ max: {};
25
+ };
26
+ static Last: {
27
+ last: {};
28
+ };
29
+ static EMA: {
30
+ ema: {};
31
+ };
32
+ }
19
33
  export interface Position {
20
34
  owner: PublicKey;
21
35
  pool: PublicKey;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.OracleType = exports.FeesMode = exports.Side = exports.isOneOfVariant = exports.isVariant = void 0;
3
+ exports.OracleType = exports.FeesMode = exports.AumCalcMode = exports.Side = exports.isOneOfVariant = exports.isVariant = void 0;
4
4
  // taken from drift
5
5
  function isVariant(object, type) {
6
6
  return object.hasOwnProperty(type);
@@ -28,6 +28,16 @@ var Side = /** @class */ (function () {
28
28
  return Side;
29
29
  }());
30
30
  exports.Side = Side;
31
+ var AumCalcMode = /** @class */ (function () {
32
+ function AumCalcMode() {
33
+ }
34
+ AumCalcMode.Min = { min: {} };
35
+ AumCalcMode.Max = { max: {} };
36
+ AumCalcMode.Last = { last: {} };
37
+ AumCalcMode.EMA = { ema: {} };
38
+ return AumCalcMode;
39
+ }());
40
+ exports.AumCalcMode = AumCalcMode;
31
41
  // export enum FeesMode {
32
42
  // Fixed,
33
43
  // Linear
@@ -1,5 +1,6 @@
1
1
  import BN from "bn.js";
2
2
  export declare const getUnixTs: () => number;
3
+ export declare function toUiDecimals(nativeAmount: BN | number | string, decimals: number, precision?: number, commaSeperated?: boolean): string;
3
4
  export declare const scaleToExponent: (arg: BN, exponent: BN, target_exponent: BN) => BN;
4
5
  export declare const checkedCeilDiv: (arg1: BN, arg2: BN) => BN;
5
6
  export declare const checkedDecimalCeilMul: (coefficient1: BN, exponent1: BN, coefficient2: BN, exponent2: BN, target_exponent: BN) => BN;
@@ -3,13 +3,57 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.checkedDecimalDiv = exports.checkedDecimalMul = exports.checkedDecimalCeilMul = exports.checkedCeilDiv = exports.scaleToExponent = exports.getUnixTs = void 0;
6
+ exports.checkedDecimalDiv = exports.checkedDecimalMul = exports.checkedDecimalCeilMul = exports.checkedCeilDiv = exports.scaleToExponent = exports.toUiDecimals = exports.getUnixTs = void 0;
7
7
  var bn_js_1 = __importDefault(require("bn.js"));
8
8
  var constants_1 = require("../constants");
9
9
  var getUnixTs = function () {
10
10
  return new Date().getTime() / 1000;
11
11
  };
12
12
  exports.getUnixTs = getUnixTs;
13
+ // 99999.123456
14
+ // 99999.123
15
+ function toUiDecimals(nativeAmount, decimals, precision, commaSeperated) {
16
+ // TODO: remove BN and upgrade to bigint https://github.com/solana-labs/solana/issues/27440
17
+ if (precision === void 0) { precision = 3; }
18
+ if (commaSeperated === void 0) { commaSeperated = false; }
19
+ if (precision > decimals) {
20
+ throw "not allowed precision> decimals";
21
+ }
22
+ var r = '';
23
+ if (nativeAmount instanceof bn_js_1.default) {
24
+ var nativeAmountString = nativeAmount.toString();
25
+ // get decimals
26
+ var d = nativeAmountString.slice((decimals) * -1);
27
+ var p = d.slice(0, precision);
28
+ var nativeAmountWithoutDecimalsStr = nativeAmount.div(new bn_js_1.default(Math.pow(10, decimals))).toString();
29
+ r = nativeAmountWithoutDecimalsStr + "." + p;
30
+ }
31
+ else if (typeof nativeAmount === "string") {
32
+ if (isNaN(Number(nativeAmount))) {
33
+ throw "String No valid ";
34
+ }
35
+ var d = nativeAmount.slice((decimals) * -1);
36
+ var p = d.slice(0, precision);
37
+ var nativeAmountWithoutDecimalsStr = (new bn_js_1.default(nativeAmount)).div(new bn_js_1.default(Math.pow(10, decimals))).toString();
38
+ r = nativeAmountWithoutDecimalsStr + "." + p;
39
+ }
40
+ else if (typeof nativeAmount === "number") {
41
+ var d = nativeAmount.toString().slice((decimals) * -1);
42
+ var p = d.slice(0, precision);
43
+ var nativeAmountWithoutDecimalsStr = (new bn_js_1.default(nativeAmount)).div(new bn_js_1.default(Math.pow(10, decimals))).toString();
44
+ r = nativeAmountWithoutDecimalsStr + "." + p;
45
+ }
46
+ else {
47
+ return 'type unknown';
48
+ }
49
+ if (commaSeperated) {
50
+ return Number(r).toLocaleString();
51
+ }
52
+ else {
53
+ return r;
54
+ }
55
+ }
56
+ exports.toUiDecimals = toUiDecimals;
13
57
  // recheck ?? logic
14
58
  var scaleToExponent = function (arg, exponent, target_exponent) {
15
59
  if (target_exponent.eq(exponent)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flash-sdk",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "description": "Client to interact with the Flash program on Solana",
@@ -1,5 +1,5 @@
1
1
  import { PublicKey } from "@solana/web3.js";
2
- import { Assets, FeesStats, Custody, Fees, PricingParams, TradeStats, Permissions, BorrowRateParams, OracleParams, VolumeStats, PositionStats, BorrowRateState } from "./types";
2
+ import { Assets, FeesStats, Custody, Fees, PricingParams, TradeStats, Permissions, BorrowRateParams, OracleParams, VolumeStats, PositionStats, BorrowRateState, Side, isVariant, Position } from "./types";
3
3
  import { PositionAccount } from "./PositionAccount";
4
4
  import BN from "bn.js";
5
5
  import { BN_ZERO, RATE_POWER } from "./constants";
@@ -84,6 +84,38 @@ export class CustodyAccount {
84
84
 
85
85
  }
86
86
 
87
+ getCollectivePosition(side: Side):PositionAccount {
88
+ let stats : PositionStats;
89
+ if ( isVariant(side,'long')) {
90
+ stats = this.longPositions;
91
+ } else {
92
+ stats = this.shortPositions;
93
+ };
94
+ // if (!stats.openPositions.isNeg()) {
95
+
96
+ // const obj: Position = {
97
+ // side,
98
+ // price:
99
+ // stats.weighted_price.div(stats.total_quantity)
100
+
101
+ // size_usd: stats.size_usd,
102
+ // collateral_usd: stats.collateral_usd,
103
+ // unrealized_loss_usd: stats.cumulative_interest_usd,
104
+ // cumulative_interest_snapshot: stats.cumulative_interest_snapshot,
105
+ // locked_amount: stats.locked_amount,
106
+ // ..Position::default()
107
+ // }
108
+ // return new PositionAccount(
109
+ // new PublicKey('dgfgfg'),
110
+
111
+ // )
112
+ // } else {
113
+ // Ok(Position::default())
114
+ // }
115
+
116
+ throw Error("Incomplete")
117
+ }
118
+
87
119
 
88
120
 
89
121
 
@@ -2,7 +2,7 @@
2
2
  import { BN_ZERO, BPS_DECIMALS, BPS_POWER, PERCENTAGE_DECIMALS, PRICE_DECIMALS, USD_DECIMALS } from "./constants";
3
3
  import { BN } from "@coral-xyz/anchor";
4
4
  import { Mint } from "@solana/spl-token";
5
- import { Custody, FeesMode, Pool, Side, TokenRatios, isVariant } from "./types";
5
+ import { AumCalcMode, Custody, FeesMode, Pool, Side, TokenRatios, isVariant } from "./types";
6
6
  import { PublicKey } from "@solana/web3.js";
7
7
  import {CustodyAccount} from "./CustodyAccount";
8
8
  import { OraclePrice } from "./OraclePrice";
@@ -10,6 +10,7 @@ import { PositionAccount } from "./PositionAccount";
10
10
  import { checkedCeilDiv, checkedDecimalCeilMul, checkedDecimalMul, scaleToExponent } from "./utils";
11
11
 
12
12
 
13
+
13
14
  export class PoolAccount {
14
15
 
15
16
  publicKey: PublicKey;
@@ -42,9 +43,6 @@ export class PoolAccount {
42
43
  return this.custodies.findIndex(i => i.toBase58()==custodyKey.toBase58())
43
44
  }
44
45
 
45
- // loadlpData(lpTokenInfo : Mint){
46
- // this.lpTokenInfo = lpTokenInfo
47
- // }
48
46
 
49
47
  getAddLiquidityFee(
50
48
  tokenId: number,
@@ -367,5 +365,78 @@ export class PoolAccount {
367
365
  }
368
366
  }
369
367
  } //getPnlUsd
368
+
369
+
370
+ getAssetsUnderManagementUsd(
371
+ token_prices: OraclePrice[],
372
+ token_ema_prices: OraclePrice[],
373
+ custodies : CustodyAccount[],
374
+ aum_calc_mode: AumCalcMode,
375
+ ) :BN {
376
+
377
+ let pool_amount_usd: BN = BN_ZERO;
378
+
379
+ for (let index=0;index<this.custodies.length;index++) {
380
+
381
+ if( token_prices.length != this.custodies.length || token_prices.length != token_ema_prices.length ){
382
+ throw Error("token prices length incorrect");
383
+ }
384
+
385
+
386
+ let aum_token_price : OraclePrice;
387
+ // switch unable to match enum
388
+ if(isVariant(aum_calc_mode,"last")){
389
+ aum_token_price = token_prices[index];
390
+ } else if( isVariant(aum_calc_mode, "ema") ){
391
+ aum_token_price = token_ema_prices[index];
392
+ } else if( isVariant(aum_calc_mode, "min") ) {
393
+ if (token_prices[index].cmp(token_ema_prices[index])) {
394
+ aum_token_price = token_prices[index];
395
+ } else {
396
+ aum_token_price = token_ema_prices[index];
397
+ }
398
+ } else if( isVariant(aum_calc_mode, "max") ) {
399
+ if (token_ema_prices[index].cmp(token_prices[index])) {
400
+ aum_token_price = token_prices[index];
401
+ } else {
402
+ aum_token_price = token_ema_prices[index];
403
+ }
404
+ }
405
+
406
+ let token_amount_usd :BN =
407
+ aum_token_price.getAssetAmountUsd(custodies[index].assets.owned, custodies[index].decimals);
408
+
409
+ pool_amount_usd = pool_amount_usd.add(token_amount_usd);
410
+
411
+ // if (custodies[index].pricing.useUnrealizedPnlInAum) {
412
+ // // compute aggregate unrealized pnl
413
+ // let (long_profit, long_loss, _) = this.getPnlUsd(
414
+ // &custodies[index].get_collective_position(Side::Long)?,
415
+ // &token_price,
416
+ // &token_ema_price,
417
+ // &custodies[index],
418
+ // curtime,
419
+ // false,
420
+ // )?;
421
+ // let (short_profit, short_loss, _) = self.get_pnl_usd(
422
+ // &custodies[index].get_collective_position(Side::Short)?,
423
+ // &token_price,
424
+ // &token_ema_price,
425
+ // &custodies[index],
426
+ // curtime,
427
+ // false,
428
+ // )?;
429
+
430
+ // // adjust pool amount by collective profit/loss
431
+ // pool_amount_usd = math::checked_add(pool_amount_usd, long_profit as u128)?;
432
+ // pool_amount_usd = math::checked_add(pool_amount_usd, short_profit as u128)?;
433
+ // pool_amount_usd = pool_amount_usd.saturating_sub(long_loss as u128);
434
+ // pool_amount_usd = pool_amount_usd.saturating_sub(short_loss as u128);
435
+ // }
436
+ throw Error("Incomplete")
437
+ }
438
+
439
+ return pool_amount_usd;
440
+ }
370
441
 
371
442
  } // Pool
@@ -4,20 +4,170 @@ import { BN } from "@coral-xyz/anchor";
4
4
  import { Mint } from "@solana/spl-token";
5
5
  import { Custody, FeesMode, Pool, Side, TokenRatios, isVariant } from "./types";
6
6
  import { PublicKey } from "@solana/web3.js";
7
- import {CustodyAccount} from "./CustodyAccount";
7
+ import { CustodyAccount } from "./CustodyAccount";
8
8
  import { OraclePrice } from "./OraclePrice";
9
9
  import { PositionAccount } from "./PositionAccount";
10
- import { checkedCeilDiv, checkedDecimalCeilMul, checkedDecimalMul, scaleToExponent } from "./utils";
10
+ import { checkedCeilDiv, checkedDecimalCeilMul, checkedDecimalMul, scaleToExponent, toUiDecimals } from "./utils";
11
11
  import { PoolConfig } from "./PoolConfig";
12
+ import { PoolAccount } from "./PoolAccount";
12
13
 
13
14
  export class PoolDisplayData {
14
15
 
15
16
  public poolConfig: PoolConfig;
16
- public poolData : Pool;
17
- public lpTokenInfo : Mint;
18
- public custodies : CustodyAccount[];
19
- public totalPoolValueUsd : BN;
17
+ public pool: PoolAccount;
18
+ public lpTokenInfo: Mint;
19
+ public custodies: CustodyAccount[];
20
+ public totalPoolValueUsd: BN;
20
21
 
22
+ constructor(poolConfig: PoolConfig, pool: PoolAccount, lpTokenInfo: Mint, custodies: CustodyAccount[]) {
23
+ this.poolConfig = poolConfig;
24
+ this.pool = pool;
25
+ this.lpTokenInfo = lpTokenInfo;
26
+ this.custodies = custodies;
27
+ this.totalPoolValueUsd = new BN(-1); // -1 meaning unset
28
+ }
21
29
 
30
+ loadCustodies(custodies: CustodyAccount[]) {
31
+ this.custodies = custodies;
32
+ }
22
33
 
23
- } // Pool
34
+ loadPoolData(pool: PoolAccount) {
35
+ this.pool = pool
36
+ }
37
+
38
+ loadlpData(lpTokenInfo: Mint) {
39
+ this.lpTokenInfo = lpTokenInfo
40
+ }
41
+
42
+ // TODO :: replace this with PoolAccount.getAssetsUnderManagementUsd()
43
+ // should take pnl's into account
44
+ getLpStats(prices: any) {
45
+
46
+ let stableCoinAmount = new BN(0);
47
+ let totalPoolValueUsd = new BN(0);
48
+
49
+ for (const custody of this.poolConfig.custodies) {
50
+ const custodyData = this.custodies.find(t => t.mint.toBase58() === custody.mintKey.toBase58())
51
+ if (custodyData) {
52
+ if (custodyData.isStable) {
53
+ stableCoinAmount = stableCoinAmount.add(custodyData.assets.owned)
54
+ }
55
+ const priceBN = new BN(prices.get(custody.symbol) * 10 ** PRICE_DECIMALS); // so always keep prices with 6 decimals
56
+ const custodyValue = priceBN.mul(custodyData.assets.owned).div(new BN(10 ** custody.decimals));
57
+ totalPoolValueUsd = totalPoolValueUsd.add(custodyValue)
58
+ }
59
+ }
60
+
61
+ // console.log("totalPoolValueUsd.toNumber():",totalPoolValueUsd.toString())
62
+ // console.log("stableCoinAmount.toNumber():",stableCoinAmount.toString())
63
+
64
+ // if(this.lpTokenInfo.supply.toString() =='0' || totalPoolValueUsd.toString()=='0'){
65
+ // console.error("supply or amt cannot be zero")
66
+ // throw "supply or amt cannot be zero";
67
+ // }
68
+ this.totalPoolValueUsd = totalPoolValueUsd;
69
+ const lpPrice = totalPoolValueUsd.div(new BN(this.lpTokenInfo.supply.toString() === '0' ? 1 : this.lpTokenInfo.supply.toString()))
70
+
71
+ return {
72
+ lpTokenSupply: new BN(this.lpTokenInfo.supply.toString()),
73
+ decimals: this.poolConfig.lpDecimals,
74
+ totalPoolValue: totalPoolValueUsd,
75
+ price: lpPrice,
76
+ stableCoinPercentage: totalPoolValueUsd.toNumber() != 0 ? stableCoinAmount.mul(new BN(PERCENTAGE_DECIMALS)).div(totalPoolValueUsd) : new BN(1),
77
+ marketCap: lpPrice.mul(new BN(this.lpTokenInfo.supply.toString())),
78
+ // totalStaked : BN,
79
+ }
80
+ }
81
+
82
+ getOiLongUI() {
83
+ let totalAmount = new BN('0');
84
+ this.custodies.forEach(i => {
85
+ totalAmount = totalAmount.add(i.tradeStats.oiLongUsd);
86
+ })
87
+ return totalAmount;
88
+ }
89
+
90
+ getOiShortUI() {
91
+ let totalAmount = new BN('0');
92
+ this.custodies.forEach(i => {
93
+ totalAmount = totalAmount.add(i.tradeStats.oiShortUsd);
94
+ })
95
+ return totalAmount;
96
+ }
97
+
98
+ // handle decimal and this should accept a list of prices probs map or object
99
+ getCustodyDetails(prices: any) {
100
+ const custodyDetails = [];
101
+
102
+ for (let i = 0; i < this.poolConfig.custodies.length; i++) {
103
+ const custody = this.poolConfig.custodies[i];
104
+ if (!custody) continue;
105
+
106
+ // console.log('this.pool :>> ', this.pool);
107
+ // const token = this.pool.tokens.find(t => t.custody.toBase58() === custody.custodyAccount.toBase58());
108
+ const tokenRatio = this.pool.ratios[i]
109
+ const custodyData = this.custodies.find(t => t.mint.toBase58() === custody.mintKey.toBase58())
110
+ const priceBN = new BN(prices.get(custody.symbol) * 10 ** 6); // so always keep prices with 6 decimals
111
+
112
+ if (this.totalPoolValueUsd.toString() == "-1") {
113
+ console.error("call getLpStats first")
114
+ throw "call getLpStats first";
115
+ }
116
+
117
+ // if(this.totalPoolValueUsd.toString()=='0'){
118
+ // console.error("call getLpStats first , totalPoolValueUsd ZERO")
119
+ // return defaultData.custodyDetails;
120
+ // }
121
+ // console.log("this.totalPoolValueUsd:",this.totalPoolValueUsd.toString())
122
+
123
+ if (custodyData && tokenRatio) {
124
+ custodyDetails.push({
125
+ symbol: custody.symbol,
126
+ price: new BN(prices.get(custody.symbol)),
127
+ targetWeight: tokenRatio.target,
128
+ currentWeight: this.totalPoolValueUsd.toNumber() ?
129
+ (custodyData.assets.owned.mul(priceBN)).mul(new BN(10 ** PERCENTAGE_DECIMALS)).div(this.totalPoolValueUsd).div(new BN(10 ** custody.decimals))
130
+ : new BN(0),
131
+ utilization: custodyData.assets.owned.toNumber() ?
132
+ toUiDecimals(custodyData.assets.locked.mul(new BN(10 ** PERCENTAGE_DECIMALS)).div(custodyData.assets.owned), PERCENTAGE_DECIMALS, 2)
133
+ : '0',
134
+ // assetsAmountUi : (custodyData.assets.owned.toNumber() / 10**(custody.decimals)).toFixed(4),
135
+ assetsAmountUi: toUiDecimals(custodyData.assets.owned, custody.decimals, 4, true),
136
+ // totalUsdAmountUi : ((custodyData.assets.owned.mul(priceBN)).div(new BN(10**(custody.decimals))).toNumber() / 10**6).toFixed(4),
137
+ totalUsdAmountUi: toUiDecimals((custodyData.assets.owned.mul(priceBN)), custody.decimals + PRICE_DECIMALS, 2, true),
138
+ })
139
+ }
140
+ }
141
+ return custodyDetails;
142
+ }
143
+
144
+ getPoolStats() {
145
+ let totalFees = new BN(0)
146
+ let totalVolume = new BN(0)
147
+ let currentLongPositionsUsd = new BN(0)
148
+ let currentShortPositionsUsd = new BN(0)
149
+
150
+ for (const custody of this.poolConfig.custodies) {
151
+ const custodyData = this.custodies.find(t => t.mint.toBase58() === custody.mintKey.toBase58())
152
+ if (custodyData) {
153
+ const custodyFeeTotal = Object.values(custodyData.collectedFees).reduce((a: BN, b: BN) => a.add(b), new BN(0))
154
+ totalFees = totalFees.add(custodyFeeTotal)
155
+
156
+ const custodyVolume = Object.values(custodyData.volumeStats).reduce((a: BN, b: BN) => a.add(b), new BN(0))
157
+ totalVolume = totalVolume.add(custodyVolume)
158
+
159
+ currentLongPositionsUsd = currentLongPositionsUsd.add(custodyData.tradeStats.oiLongUsd)
160
+ currentShortPositionsUsd = currentShortPositionsUsd.add(custodyData.tradeStats.oiShortUsd)
161
+ }
162
+ }
163
+ return {
164
+ totalFees,
165
+ totalVolume,
166
+ currentLongPositionsUsd,
167
+ currentShortPositionsUsd
168
+ }
169
+ }
170
+
171
+
172
+
173
+ } // PoolDisplayData
@@ -28,6 +28,13 @@ export class Side {
28
28
  static Short = { short: {} };
29
29
  }
30
30
 
31
+ export class AumCalcMode {
32
+ static Min = { min: {} };
33
+ static Max = { max: {}};
34
+ static Last = {last : {}};
35
+ static EMA = {ema : {}};
36
+ }
37
+
31
38
  // =======================================================
32
39
  // ================== POSITION ====================
33
40
  // =======================================================
@@ -125,8 +132,8 @@ export interface PositionStats {
125
132
  collateralUsd: BN,
126
133
  sizeUsd: BN,
127
134
  lockedAmount: BN,
128
- weightedLeverage: BN,
129
- totalLeverage: BN,
135
+ weightedLeverage: BN, // weighted_price
136
+ totalLeverage: BN, // total_quantity
130
137
  cumulativeInterestUsd: BN,
131
138
  cumulativeInterestSnapshot: BN,
132
139
  }
@@ -5,6 +5,57 @@ export const getUnixTs = () => {
5
5
  return new Date().getTime() / 1000;
6
6
  };
7
7
 
8
+ // 99999.123456
9
+ // 99999.123
10
+ export function toUiDecimals(
11
+ nativeAmount: BN | number | string,
12
+ decimals: number,
13
+ precision = 3,
14
+ commaSeperated = false
15
+ ): string {
16
+ // TODO: remove BN and upgrade to bigint https://github.com/solana-labs/solana/issues/27440
17
+
18
+ if(precision> decimals){
19
+ throw "not allowed precision> decimals"
20
+ }
21
+ let r = '';
22
+
23
+ if (nativeAmount instanceof BN) {
24
+ const nativeAmountString = nativeAmount.toString();
25
+ // get decimals
26
+ const d = nativeAmountString.slice((decimals) * -1);
27
+ const p = d.slice(0 ,precision);
28
+ const nativeAmountWithoutDecimalsStr = nativeAmount.div(new BN( 10 ** decimals)).toString();
29
+
30
+ r = nativeAmountWithoutDecimalsStr + "." + p;
31
+ }
32
+ else if (typeof nativeAmount === "string") {
33
+ if( isNaN(Number(nativeAmount))){
34
+ throw "String No valid "
35
+ }
36
+ const d = nativeAmount.slice((decimals) * -1);
37
+ const p = d.slice(0 ,precision);
38
+ const nativeAmountWithoutDecimalsStr = (new BN(nativeAmount)).div(new BN( 10 ** decimals)).toString();
39
+
40
+ r = nativeAmountWithoutDecimalsStr + "." + p;
41
+ }
42
+ else if (typeof nativeAmount === "number") {
43
+ const d = nativeAmount.toString().slice((decimals) * -1);
44
+ const p = d.slice(0 ,precision);
45
+ const nativeAmountWithoutDecimalsStr = (new BN(nativeAmount)).div(new BN( 10 ** decimals)).toString();
46
+ r = nativeAmountWithoutDecimalsStr + "." + p;
47
+ }
48
+ else {
49
+ return 'type unknown'
50
+ }
51
+
52
+ if(commaSeperated){
53
+ return Number(r).toLocaleString();
54
+ } else {
55
+ return r;
56
+ }
57
+
58
+ }
8
59
 
9
60
  // recheck ?? logic
10
61
  export const scaleToExponent = (arg: BN, exponent: BN, target_exponent: BN) : BN => {