From d5b249c46a47d5af3f42936905edb6ad22fc62f6 Mon Sep 17 00:00:00 2001 From: Ivan Zhelyazkov Date: Fri, 17 Nov 2023 10:07:47 +0200 Subject: [PATCH] carbon pol eth conversion - minor fixes --- contracts/pol/CarbonPOL.sol | 11 +- contracts/pol/interfaces/ICarbonPOL.sol | 15 +- test/forge/CarbonPOL.t.sol | 104 +- test/forge/POLTestCaseParser.t.sol | 30 +- test/helpers/data/polPricingTestData.json | 4400 +++++++++--------- test/helpers/data/polPricingTestDataEth.json | 3084 ------------ 6 files changed, 2276 insertions(+), 5368 deletions(-) delete mode 100644 test/helpers/data/polPricingTestDataEth.json diff --git a/contracts/pol/CarbonPOL.sol b/contracts/pol/CarbonPOL.sol index 30687801..e5817f96 100644 --- a/contracts/pol/CarbonPOL.sol +++ b/contracts/pol/CarbonPOL.sol @@ -196,15 +196,8 @@ contract CarbonPOL is ICarbonPOL, Upgradeable, ReentrancyGuardUpgradeable, Utils /** * @inheritdoc ICarbonPOL */ - function ethSaleAmount() external view returns (uint128) { - return _ethSaleAmount.initial; - } - - /** - * @inheritdoc ICarbonPOL - */ - function currentEthSaleAmount() external view returns (uint128) { - return _ethSaleAmount.current; + function ethSaleAmount() external view returns (EthSaleAmount memory) { + return _ethSaleAmount; } /** diff --git a/contracts/pol/interfaces/ICarbonPOL.sol b/contracts/pol/interfaces/ICarbonPOL.sol index ee0b5af0..0837c316 100644 --- a/contracts/pol/interfaces/ICarbonPOL.sol +++ b/contracts/pol/interfaces/ICarbonPOL.sol @@ -32,12 +32,12 @@ interface ICarbonPOL is IUpgradeable { event TradingEnabled(Token indexed token, Price price); /** - * @notice triggered after a successful trade TKN->ETH or ETH->BNT is executed + * @notice triggered after a successful trade is executed */ event TokenTraded(address indexed caller, Token indexed token, uint128 inputAmount, uint128 outputAmount); /** - * @notice triggered after an eth sale leaves less than 10% of the initial eth sale amount + * @notice triggered after an eth trade leaves less than 10% of the initial eth sale amount */ event PriceUpdated(Token indexed token, Price price); @@ -67,14 +67,9 @@ interface ICarbonPOL is IUpgradeable { function priceDecayHalfLife() external view returns (uint32); /** - * @notice returns the initial eth sale amount + * @notice returns the initial and current eth sale amount */ - function ethSaleAmount() external view returns (uint128); - - /** - * @notice returns the current eth sale amount - */ - function currentEthSaleAmount() external view returns (uint128); + function ethSaleAmount() external view returns (EthSaleAmount memory); /** * @notice returns true if trading is enabled for token @@ -93,7 +88,7 @@ interface ICarbonPOL is IUpgradeable { /** * @notice returns the current token price (ETH / TKN) - * @notice if token == ETH, returns ETH / BNT price + * @notice if token == ETH, returns BNT / ETH price */ function tokenPrice(Token token) external view returns (Price memory price); diff --git a/test/forge/CarbonPOL.t.sol b/test/forge/CarbonPOL.t.sol index 057a2117..9d9b7ea7 100644 --- a/test/forge/CarbonPOL.t.sol +++ b/test/forge/CarbonPOL.t.sol @@ -209,14 +209,14 @@ contract CarbonPOLTest is TestFixture { /// @dev test that admin should be able to update the eth sale amount function testShouldBeAbleToSetAndUpdateTheEthSaleAmount() public { vm.startPrank(admin); - uint128 ethSaleAmount = carbonPOL.ethSaleAmount(); + uint128 ethSaleAmount = carbonPOL.ethSaleAmount().initial; assertEq(ethSaleAmount, ETH_SALE_AMOUNT_DEFAULT); vm.expectEmit(); emit EthSaleAmountUpdated(ETH_SALE_AMOUNT_DEFAULT, ETH_SALE_AMOUNT_UPDATED); carbonPOL.setEthSaleAmount(ETH_SALE_AMOUNT_UPDATED); - ethSaleAmount = carbonPOL.ethSaleAmount(); + ethSaleAmount = carbonPOL.ethSaleAmount().initial; assertEq(ethSaleAmount, ETH_SALE_AMOUNT_UPDATED); vm.stopPrank(); } @@ -224,7 +224,7 @@ contract CarbonPOLTest is TestFixture { /// @dev test that setting the eth sale amount to an amount below the current eth sale amount reset the current amount function testCurrentEthSaleAmountIsUpdatedWhenAboveTheNewEthSaleAmount() public { vm.startPrank(admin); - uint128 ethSaleAmount = carbonPOL.ethSaleAmount(); + uint128 ethSaleAmount = carbonPOL.ethSaleAmount().initial; assertEq(ethSaleAmount, ETH_SALE_AMOUNT_DEFAULT); // enable trading to set the current eth sale amount @@ -232,7 +232,7 @@ contract CarbonPOLTest is TestFixture { carbonPOL.enableTradingETH(price); // assert current and max amounts are equal - uint128 currentEthSaleAmount = carbonPOL.currentEthSaleAmount(); + uint128 currentEthSaleAmount = carbonPOL.ethSaleAmount().current; assertEq(currentEthSaleAmount, ethSaleAmount); // set the new amount to amount / 2 @@ -240,8 +240,8 @@ contract CarbonPOLTest is TestFixture { carbonPOL.setEthSaleAmount(newSaleAmount); // assert both amounts are updated - ethSaleAmount = carbonPOL.ethSaleAmount(); - currentEthSaleAmount = carbonPOL.currentEthSaleAmount(); + ethSaleAmount = carbonPOL.ethSaleAmount().initial; + currentEthSaleAmount = carbonPOL.ethSaleAmount().current; assertEq(ethSaleAmount, currentEthSaleAmount); vm.stopPrank(); } @@ -301,7 +301,7 @@ contract CarbonPOLTest is TestFixture { // assert trading is enabled assertTrue(carbonPOL.tradingEnabled(NATIVE_TOKEN)); // check current eth sale amount is set to the initial eth sale amount - assertEq(carbonPOL.ethSaleAmount(), carbonPOL.currentEthSaleAmount()); + assertEq(carbonPOL.ethSaleAmount().current, carbonPOL.ethSaleAmount().initial); } /// @dev test enabling trading for a token should emit an event @@ -338,7 +338,7 @@ contract CarbonPOLTest is TestFixture { i = bound(i, 0, 2); // enable trading vm.startPrank(admin); - // setting any of ethAmount or tokenAmount to 0 results in invalid price error + // setting any of sourceAmount or targetAmount to 0 results in invalid price error vm.expectRevert(ICarbonPOL.InvalidPrice.selector); carbonPOL.enableTrading(tokens[i], ICarbonPOL.Price({ sourceAmount: 0, targetAmount: 10000 })); vm.expectRevert(ICarbonPOL.InvalidPrice.selector); @@ -351,7 +351,7 @@ contract CarbonPOLTest is TestFixture { function testShouldRevertWhenSettingInvalidPriceForNativeToken() public { // enable trading vm.startPrank(admin); - // setting any of ethAmount or tokenAmount to 0 results in invalid price error + // setting any of sourceAmount or targetAmount to 0 results in invalid price error vm.expectRevert(ICarbonPOL.InvalidPrice.selector); carbonPOL.enableTradingETH(ICarbonPOL.Price({ sourceAmount: 0, targetAmount: 10000 })); vm.expectRevert(ICarbonPOL.InvalidPrice.selector); @@ -370,7 +370,7 @@ contract CarbonPOLTest is TestFixture { } /// @dev test should properly return price for enabled tokens as time passes - function testShouldProperlyReturnPriceAsTimePasses(uint128 ethAmount, uint128 tokenAmount, uint256 i) public { + function testShouldProperlyReturnPriceAsTimePasses(uint128 sourceAmount, uint128 targetAmount, uint256 i) public { // pick one of these tokens to test Token[4] memory tokens = [token1, token2, bnt, NATIVE_TOKEN]; // pick a random number from 0 to 2 for the tokens @@ -379,10 +379,13 @@ contract CarbonPOLTest is TestFixture { vm.prank(admin); Token token = tokens[i]; - ethAmount = uint128(bound(ethAmount, 10, 1e30)); - tokenAmount = uint128(bound(tokenAmount, 10, 1e30)); + sourceAmount = uint128(bound(sourceAmount, 10, 1e30)); + targetAmount = uint128(bound(targetAmount, 10, 1e30)); - ICarbonPOL.Price memory initialPrice = ICarbonPOL.Price({ sourceAmount: ethAmount, targetAmount: tokenAmount }); + ICarbonPOL.Price memory initialPrice = ICarbonPOL.Price({ + sourceAmount: sourceAmount, + targetAmount: targetAmount + }); token == NATIVE_TOKEN ? carbonPOL.enableTradingETH(initialPrice) : carbonPOL.enableTrading(token, initialPrice); // set timestamp to 1 @@ -390,33 +393,36 @@ contract CarbonPOLTest is TestFixture { ICarbonPOL.Price memory price = carbonPOL.tokenPrice(token); // price should be exactly 2x the market price at start - assertEq(price.sourceAmount, ethAmount * MARKET_PRICE_MULTIPLY_DEFAULT); + assertEq(price.sourceAmount, sourceAmount * MARKET_PRICE_MULTIPLY_DEFAULT); // set timestamp to 10 days (half-life time) vm.warp(10 days + 1); // price should be equal market price at half-life price = carbonPOL.tokenPrice(token); - assertEq(price.sourceAmount, ethAmount); + assertEq(price.sourceAmount, sourceAmount); // // set timestamp to 20 days vm.warp(20 days + 1); // price should be equal to half the market price at 2x half-life price = carbonPOL.tokenPrice(token); - assertEq(price.sourceAmount, ethAmount / 2); + assertEq(price.sourceAmount, sourceAmount / 2); } /// @dev test should properly return price for native token as time passes - function testShouldProperlyReturnNativeTokenPriceAfterBigSale(uint128 ethAmount, uint128 tokenAmount) public { + function testShouldProperlyReturnNativeTokenPriceAfterBigSale(uint128 sourceAmount, uint128 targetAmount) public { // enable trading and set price for token vm.prank(admin); Token token = NATIVE_TOKEN; - ethAmount = uint128(bound(ethAmount, 1e17, 1 * 1e18)); - tokenAmount = uint128(bound(tokenAmount, 1000 * 1e18, 4000 * 1e18)); + sourceAmount = uint128(bound(sourceAmount, 1e17, 1 * 1e18)); + targetAmount = uint128(bound(targetAmount, 1000 * 1e18, 4000 * 1e18)); - ICarbonPOL.Price memory initialPrice = ICarbonPOL.Price({ sourceAmount: ethAmount, targetAmount: tokenAmount }); + ICarbonPOL.Price memory initialPrice = ICarbonPOL.Price({ + sourceAmount: sourceAmount, + targetAmount: targetAmount + }); carbonPOL.enableTradingETH(initialPrice); vm.startPrank(user1); @@ -431,7 +437,7 @@ contract CarbonPOLTest is TestFixture { bnt.safeApprove(address(carbonPOL), type(uint256).max); // trade 95% of the eth sale amount - uint128 currentEthSaleAmount = uint128(carbonPOL.currentEthSaleAmount()); + uint128 currentEthSaleAmount = uint128(carbonPOL.ethSaleAmount().initial); uint128 tradeAmount = (currentEthSaleAmount * 95) / 100; carbonPOL.trade(token, tradeAmount); @@ -451,7 +457,7 @@ contract CarbonPOLTest is TestFixture { /// @dev test correct prices retrieved by tokenPrice with different initial prices and different timestamps function testPricesAtTimestamps() public { - // test the following timestamps, ethAmounts and tokenAmounts + // test the following timestamps, sourceAmounts and targetAmounts uint24[10] memory timestamps = [ 1, 1 days, @@ -464,7 +470,7 @@ contract CarbonPOLTest is TestFixture { 50 days, 100 days ]; - uint88[10] memory ethAmounts = [ + uint88[10] memory sourceAmounts = [ 100, 1e18, 10e18, @@ -476,7 +482,7 @@ contract CarbonPOLTest is TestFixture { 5000000e18, 10000000e18 ]; - uint88[10] memory tokenAmounts = [ + uint88[10] memory targetAmounts = [ 100, 1e18, 10e18, @@ -493,25 +499,25 @@ contract CarbonPOLTest is TestFixture { Token token = token1; // get test cases from the pol test case parser - POLTestCaseParser.TestCase[] memory testCases = testCaseParser.getTestCases(false); + POLTestCaseParser.TestCase[] memory testCases = testCaseParser.getTestCases(); - // go through each of the eth amounts, token amounts and timestamps to verify token price output matches test data - for (uint256 i = 0; i < ethAmounts.length; ++i) { - for (uint256 j = 0; j < tokenAmounts.length; ++j) { + // go through each of the source amounts, target amounts and timestamps to verify token price output matches test data + for (uint256 i = 0; i < sourceAmounts.length; ++i) { + for (uint256 j = 0; j < targetAmounts.length; ++j) { vm.warp(1); - uint128 ethAmount = uint128(ethAmounts[i]); - uint128 tokenAmount = uint128(tokenAmounts[j]); + uint128 sourceAmount = uint128(sourceAmounts[i]); + uint128 targetAmount = uint128(targetAmounts[j]); ICarbonPOL.Price memory price = ICarbonPOL.Price({ - sourceAmount: ethAmount, - targetAmount: tokenAmount + sourceAmount: sourceAmount, + targetAmount: targetAmount }); carbonPOL.enableTrading(token1, price); // get the correct test case for this price POLTestCaseParser.TestCase memory currentCase; for (uint256 t = 0; t < testCases.length; ++t) { if ( - testCases[t].initialPrice.sourceAmount == ethAmount && - testCases[t].initialPrice.targetAmount == tokenAmount + testCases[t].initialPrice.sourceAmount == sourceAmount && + testCases[t].initialPrice.targetAmount == targetAmount ) { currentCase = testCases[t]; } @@ -525,8 +531,8 @@ contract CarbonPOLTest is TestFixture { POLTestCaseParser.PriceAtTimestamp memory priceAtTimestamp = currentCase.pricesAtTimestamp[k]; // assert test data matches the actual token price data assertEq(priceAtTimestamp.timestamp, timestamps[k]); - assertEq(priceAtTimestamp.ethAmount, price.sourceAmount); - assertEq(priceAtTimestamp.tokenAmount, price.targetAmount); + assertEq(priceAtTimestamp.sourceAmount, price.sourceAmount); + assertEq(priceAtTimestamp.targetAmount, price.targetAmount); } } } @@ -767,7 +773,7 @@ contract CarbonPOLTest is TestFixture { uint128 tradeAmount = 4000 * 1e18; uint128 expectedEthReceived = carbonPOL.expectedTradeReturn(token, tradeAmount); - uint128 saleAmountBefore = carbonPOL.currentEthSaleAmount(); + uint128 saleAmountBefore = carbonPOL.ethSaleAmount().current; // approve bnt for eth -> bnt trades bnt.safeApprove(address(carbonPOL), tradeAmount); @@ -775,7 +781,7 @@ contract CarbonPOLTest is TestFixture { // trade carbonPOL.trade(token, expectedEthReceived); - uint128 saleAmountAfter = carbonPOL.currentEthSaleAmount(); + uint128 saleAmountAfter = carbonPOL.ethSaleAmount().current; assertEq(saleAmountBefore - saleAmountAfter, expectedEthReceived); @@ -797,8 +803,8 @@ contract CarbonPOLTest is TestFixture { // set timestamp to 10 days vm.warp(10 days); - uint128 initialSaleAmount = carbonPOL.ethSaleAmount(); - uint128 currentSaleAmount = carbonPOL.currentEthSaleAmount(); + uint128 initialSaleAmount = carbonPOL.ethSaleAmount().initial; + uint128 currentSaleAmount = carbonPOL.ethSaleAmount().current; // assert current and initial eth sale amount are equal assertEq(initialSaleAmount, currentSaleAmount); @@ -813,7 +819,7 @@ contract CarbonPOLTest is TestFixture { carbonPOL.trade(token, amountToSell); // assert we have 15% available eth for sale - currentSaleAmount = carbonPOL.currentEthSaleAmount(); + currentSaleAmount = carbonPOL.ethSaleAmount().current; assertEq(currentSaleAmount, initialSaleAmount - amountToSell); // get the price before the threshold trade @@ -824,10 +830,10 @@ contract CarbonPOLTest is TestFixture { carbonPOL.trade(token, amountToSell); // assert initial sale amount is the same - assertEq(initialSaleAmount, carbonPOL.ethSaleAmount()); + assertEq(initialSaleAmount, carbonPOL.ethSaleAmount().initial); // assert new current eth sale amount is equal to the initial (we have topped up the amount) - currentSaleAmount = carbonPOL.currentEthSaleAmount(); + currentSaleAmount = carbonPOL.ethSaleAmount().current; assertEq(currentSaleAmount, initialSaleAmount); vm.warp(block.timestamp + 1); @@ -856,8 +862,8 @@ contract CarbonPOLTest is TestFixture { // set timestamp to 10 days vm.warp(10 days); - uint128 initialSaleAmount = carbonPOL.ethSaleAmount(); - uint128 currentSaleAmount = carbonPOL.currentEthSaleAmount(); + uint128 initialSaleAmount = carbonPOL.ethSaleAmount().initial; + uint128 currentSaleAmount = carbonPOL.ethSaleAmount().current; // assert current and initial eth sale amount are equal assertEq(initialSaleAmount, currentSaleAmount); @@ -1061,10 +1067,10 @@ contract CarbonPOLTest is TestFixture { Token token = NATIVE_TOKEN; vm.prank(admin); // enable token to test - carbonPOL.enableTradingETH(ICarbonPOL.Price({ sourceAmount: 1e18, targetAmount: 2000 * 1e18 })); + carbonPOL.enableTradingETH(ICarbonPOL.Price({ sourceAmount: 2000 * 1e18, targetAmount: 1e18 })); // assert that available eth amount is exactly 100 ether - assertEq(carbonPOL.currentEthSaleAmount(), 100 ether); + assertEq(carbonPOL.ethSaleAmount().initial, 100 ether); vm.startPrank(user1); @@ -1076,10 +1082,10 @@ contract CarbonPOLTest is TestFixture { // set block.timestamp to 1000 vm.warp(1000); // trade a bit over 100 eth - uint128 ethAmount = 100 ether + 1; + uint128 sourceAmount = 100 ether + 1; // expect trade to revert vm.expectRevert(ICarbonPOL.InsufficientEthForSale.selector); - carbonPOL.trade(token, ethAmount); + carbonPOL.trade(token, sourceAmount); vm.stopPrank(); } diff --git a/test/forge/POLTestCaseParser.t.sol b/test/forge/POLTestCaseParser.t.sol index 32244118..4afe8fdb 100644 --- a/test/forge/POLTestCaseParser.t.sol +++ b/test/forge/POLTestCaseParser.t.sol @@ -12,15 +12,15 @@ contract POLTestCaseParser is Test { using stdJson for string; struct PriceAtTimestamp { + uint128 sourceAmount; + uint128 targetAmount; uint32 timestamp; - uint128 ethAmount; - uint128 tokenAmount; } struct PriceAtTimestampString { - string ethAmount; + string sourceAmount; + string targetAmount; string timestamp; - string tokenAmount; } struct TestCase { @@ -31,10 +31,8 @@ contract POLTestCaseParser is Test { /** * @dev helper function to get test cases by parsing test data json */ - function getTestCases(bool forNativeToken) public returns (TestCase[] memory testCases) { - string memory path = "./test/helpers/data/"; - string memory filename = forNativeToken ? "polPricingTestDataEth.json" : "polPricingTestData.json"; - path = string.concat(path, filename); + function getTestCases() public returns (TestCase[] memory testCases) { + string memory path = "./test/helpers/data/polPricingTestData.json"; string memory json = vm.readFile(path); testCases = parseTestCases(json, "testCase"); @@ -48,17 +46,17 @@ contract POLTestCaseParser is Test { string memory json, string memory initialParseString ) private returns (ICarbonPOL.Price memory price) { - uint256 initialPriceEthAmount = vm.parseJsonUint( + uint256 initialPriceSourceAmount = vm.parseJsonUint( json, - string.concat(initialParseString, "].initialPriceEthAmount") + string.concat(initialParseString, "].initialPriceSourceAmount") ); - uint256 initialPriceTokenAmount = vm.parseJsonUint( + uint256 initialPriceTargetAmount = vm.parseJsonUint( json, - string.concat(initialParseString, "].initialPriceTokenAmount") + string.concat(initialParseString, "].initialPriceTargetAmount") ); price = ICarbonPOL.Price({ - sourceAmount: uint128(initialPriceEthAmount), - targetAmount: uint128(initialPriceTokenAmount) + sourceAmount: uint128(initialPriceSourceAmount), + targetAmount: uint128(initialPriceTargetAmount) }); } @@ -123,8 +121,8 @@ contract POLTestCaseParser is Test { return PriceAtTimestamp({ timestamp: uint32(stringToUint(priceAtTimestampString.timestamp)), - ethAmount: uint128(stringToUint(priceAtTimestampString.ethAmount)), - tokenAmount: uint128(stringToUint(priceAtTimestampString.tokenAmount)) + sourceAmount: uint128(stringToUint(priceAtTimestampString.sourceAmount)), + targetAmount: uint128(stringToUint(priceAtTimestampString.targetAmount)) }); } diff --git a/test/helpers/data/polPricingTestData.json b/test/helpers/data/polPricingTestData.json index 55d8778a..8f8451ce 100644 --- a/test/helpers/data/polPricingTestData.json +++ b/test/helpers/data/polPricingTestData.json @@ -4,5601 +4,5601 @@ "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "100" + "sourceAmount": "200", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "100" + "sourceAmount": "186", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "100" + "sourceAmount": "174", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "100" + "sourceAmount": "141", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "100" + "sourceAmount": "100", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "100" + "sourceAmount": "50", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "100" + "sourceAmount": "25", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "100" + "sourceAmount": "12", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "100" + "sourceAmount": "6", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "100" + "sourceAmount": "0", + "targetAmount": "100" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "1000000000000000000" + "sourceAmount": "200", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "1000000000000000000" + "sourceAmount": "186", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "1000000000000000000" + "sourceAmount": "174", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "1000000000000000000" + "sourceAmount": "141", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "1000000000000000000" + "sourceAmount": "100", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "1000000000000000000" + "sourceAmount": "50", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "1000000000000000000" + "sourceAmount": "25", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "1000000000000000000" + "sourceAmount": "12", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "1000000000000000000" + "sourceAmount": "6", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "1000000000000000000" + "sourceAmount": "0", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "10000000000000000000" + "sourceAmount": "200", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "10000000000000000000" + "sourceAmount": "186", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "10000000000000000000" + "sourceAmount": "174", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "10000000000000000000" + "sourceAmount": "141", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "10000000000000000000" + "sourceAmount": "100", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "10000000000000000000" + "sourceAmount": "50", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "10000000000000000000" + "sourceAmount": "25", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "10000000000000000000" + "sourceAmount": "12", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "10000000000000000000" + "sourceAmount": "6", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "10000000000000000000" + "sourceAmount": "0", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "200", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "186", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "174", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "141", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "100", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "50", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "25", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "12", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "6", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "0", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "200", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "186", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "174", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "141", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "100", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "50", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "25", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "12", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "6", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "0", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "200", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "186", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "174", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "141", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "100", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "50", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "25", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "12", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "6", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "0", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "200", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "186", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "174", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "141", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "100", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "50", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "25", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "12", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "6", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "0", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "200", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "186", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "174", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "141", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "100", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "50", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "25", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "12", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "6", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "0", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "200", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "186", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "174", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "141", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "100", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "50", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "25", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "12", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "6", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "0", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "200", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "186", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "174", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "141", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "100", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "50", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "25", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "12", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "6", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "0", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "0", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "100", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "100" + "sourceAmount": "2000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "100" + "sourceAmount": "1866067480132519632", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "100" + "sourceAmount": "1741102523397596730", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "100" + "sourceAmount": "1414214696931586572", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "100" + "sourceAmount": "1000000802254003009", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "100" + "sourceAmount": "500000401127001504", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "100" + "sourceAmount": "250000200563500752", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "100" + "sourceAmount": "125000100281750376", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "100" + "sourceAmount": "62500050140875188", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "100" + "sourceAmount": "1953126566902349", + "targetAmount": "100" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "1000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "1000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "1000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "1000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "10000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "10000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "10000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "10000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "2000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1866067480132519632", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1741102523397596730", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1414214696931586572", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1000000802254003009", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "500000401127001504", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "250000200563500752", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "125000100281750376", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "62500050140875188", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1953126566902349", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "100" + "sourceAmount": "20000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "100" + "sourceAmount": "18660674801325196320", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "100" + "sourceAmount": "17411025233975967307", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "100" + "sourceAmount": "14142146969315865725", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "100" + "sourceAmount": "10000008022540030092", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "100" + "sourceAmount": "5000004011270015046", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "100" + "sourceAmount": "2500002005635007523", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "100" + "sourceAmount": "1250001002817503761", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "100" + "sourceAmount": "625000501408751880", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "100" + "sourceAmount": "19531265669023496", + "targetAmount": "100" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "1000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "1000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "1000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "1000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "1000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "1000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "1000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "1000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "10000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "10000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "10000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "10000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "10000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "10000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "10000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "10000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "20000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "18660674801325196320", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "17411025233975967307", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "14142146969315865725", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "10000008022540030092", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "5000004011270015046", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "2500002005635007523", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1250001002817503761", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "625000501408751880", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "19531265669023496", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "100" + "sourceAmount": "2000000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "100" + "sourceAmount": "1866067480132519632088", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "100" + "sourceAmount": "1741102523397596730750", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "100" + "sourceAmount": "1414214696931586572533", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "100" + "sourceAmount": "1000000802254003009210", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "100" + "sourceAmount": "500000401127001504605", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "100" + "sourceAmount": "250000200563500752302", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "100" + "sourceAmount": "125000100281750376151", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "100" + "sourceAmount": "62500050140875188075", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "100" + "sourceAmount": "1953126566902349627", + "targetAmount": "100" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "1000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "1000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "1000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "1000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "10000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "10000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "10000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "10000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "2000000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1866067480132519632088", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1741102523397596730750", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1414214696931586572533", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1000000802254003009210", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "500000401127001504605", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "250000200563500752302", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "125000100281750376151", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "62500050140875188075", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1953126566902349627", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "100" + "sourceAmount": "20000000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "100" + "sourceAmount": "18660674801325196320886", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "100" + "sourceAmount": "17411025233975967307506", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "100" + "sourceAmount": "14142146969315865725336", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "100" + "sourceAmount": "10000008022540030092109", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "100" + "sourceAmount": "5000004011270015046054", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "100" + "sourceAmount": "2500002005635007523027", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "100" + "sourceAmount": "1250001002817503761513", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "100" + "sourceAmount": "625000501408751880756", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "100" + "sourceAmount": "19531265669023496273", + "targetAmount": "100" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "1000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "1000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "1000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "1000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "1000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "1000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "1000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "1000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "10000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "10000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "10000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "10000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "10000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "10000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "10000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "10000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "20000000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "18660674801325196320886", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "17411025233975967307506", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "14142146969315865725336", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "10000008022540030092109", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "5000004011270015046054", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "2500002005635007523027", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1250001002817503761513", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "625000501408751880756", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "19531265669023496273", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "100" + "sourceAmount": "200000000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "100" + "sourceAmount": "186606748013251963208869", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "100" + "sourceAmount": "174110252339759673075068", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "100" + "sourceAmount": "141421469693158657253364", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "100" + "sourceAmount": "100000080225400300921096", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "100" + "sourceAmount": "50000040112700150460548", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "100" + "sourceAmount": "25000020056350075230274", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "100" + "sourceAmount": "12500010028175037615137", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "100" + "sourceAmount": "6250005014087518807568", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "100" + "sourceAmount": "195312656690234962736", + "targetAmount": "100" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "1000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "1000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "1000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "1000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "1000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "1000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "1000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "1000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "1000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "10000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "10000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "10000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "10000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "10000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "10000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "10000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "10000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "10000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "200000000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "200000000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "186606748013251963208869", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "186606748013251963208869", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "174110252339759673075068", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "174110252339759673075068", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "141421469693158657253364", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "141421469693158657253364", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "100000080225400300921096", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "100000080225400300921096", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "50000040112700150460548", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "50000040112700150460548", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "25000020056350075230274", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "25000020056350075230274", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "12500010028175037615137", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "12500010028175037615137", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "6250005014087518807568", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "6250005014087518807568", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "195312656690234962736", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "195312656690234962736", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "100000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "100000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "100" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "100" + "sourceAmount": "933033740066259816044347", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "100" + "sourceAmount": "870551261698798365375344", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "100" + "sourceAmount": "707107348465793286266820", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "100" + "sourceAmount": "500000401127001504605481", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "100" + "sourceAmount": "250000200563500752302740", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "100" + "sourceAmount": "125000100281750376151370", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "100" + "sourceAmount": "62500050140875188075685", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "100" + "sourceAmount": "31250025070437594037842", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "100" + "sourceAmount": "976563283451174813682", + "targetAmount": "100" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "1000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "1000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "1000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "1000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "1000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "1000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "1000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "1000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "1000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "10000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "10000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "10000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "10000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "10000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "10000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "10000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "10000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "10000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "1000000000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1000000000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "933033740066259816044347", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "933033740066259816044347", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "870551261698798365375344", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "870551261698798365375344", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "707107348465793286266820", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "707107348465793286266820", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "31250025070437594037842", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "31250025070437594037842", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "976563283451174813682", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "976563283451174813682", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "500000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "500000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "100" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "100" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "100" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "100" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "100" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "100" + "sourceAmount": "500000401127001504605481", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "100" + "sourceAmount": "250000200563500752302740", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "100" + "sourceAmount": "125000100281750376151370", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "100" + "sourceAmount": "62500050140875188075685", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "100" + "sourceAmount": "1953126566902349627365", + "targetAmount": "100" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "1000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "1000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "1000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "1000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "10000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "10000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "10000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "10000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "2000000000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "2000000000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "1866067480132519632088694", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1866067480132519632088694", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "1741102523397596730750688", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1741102523397596730750688", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "1414214696931586572533640", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1414214696931586572533640", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "1000000802254003009210963", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1000000802254003009210963", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "500000401127001504605481", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "500000401127001504605481", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "250000200563500752302740", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "250000200563500752302740", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "125000100281750376151370", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "125000100281750376151370", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "62500050140875188075685", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "62500050140875188075685", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "1953126566902349627365", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1953126566902349627365", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "1000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "1000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "100" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "100" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "100" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "100" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "100" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "100" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "100" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "100" + "sourceAmount": "625000501408751880756852", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "100" + "sourceAmount": "312500250704375940378426", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "100" + "sourceAmount": "9765632834511748136825", + "targetAmount": "100" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "1000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "1000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "1000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "1000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "1000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "1000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "1000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "1000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "10000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "10000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "10000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "10000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "10000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "10000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "10000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "10000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "10000000000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "10000000000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "9330337400662598160443472", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "9330337400662598160443472", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "8705512616987983653753443", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "8705512616987983653753443", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "7071073484657932862668202", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "7071073484657932862668202", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "312500250704375940378426", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "312500250704375940378426", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "9765632834511748136825", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "9765632834511748136825", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "5000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "5000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "100" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "100" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "100" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "100" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "100" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "100" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "100" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "100" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "100" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "100" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "100" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "100" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "100" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "100" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "100" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "100" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "100" + "sourceAmount": "625000501408751880756852", + "targetAmount": "100" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "100" + "sourceAmount": "19531265669023496273651", + "targetAmount": "100" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "100" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "100" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "1000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "1000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "1000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "1000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "1000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "1000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "1000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "1000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "1000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "1000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "1000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "1000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "1000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "1000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "1000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "1000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "1000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "1000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "1000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "1000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "10000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "10000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "10000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "10000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "10000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "10000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "10000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "10000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "10000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "10000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "10000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "10000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "10000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "10000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "10000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "10000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "10000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "10000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "10000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "10000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "1000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "1000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "1000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "1000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "1000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "1000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "1000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "1000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "1000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "1000000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "1000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "10000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "10000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "10000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "10000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "10000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "10000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "10000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "10000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "10000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "10000000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "10000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "100000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "100000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "100000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "100000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "100000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "100000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "100000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "100000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "100000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "100000000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "100000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "100000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "100000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "500000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "500000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "500000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "500000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "500000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "500000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "500000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "500000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "500000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "500000000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "500000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "500000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "500000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "1000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "1000000000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "1000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "1000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "5000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "5000000000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "5000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "5000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "5000000000000000000000000" }, { "tokenPriceAtTimestamps": [ { "timestamp": "1", - "ethAmount": "20000000000000000000000000", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "20000000000000000000000000", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "86400", - "ethAmount": "18660674801325196320886945", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "18660674801325196320886945", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "172800", - "ethAmount": "17411025233975967307506887", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "17411025233975967307506887", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "432000", - "ethAmount": "14142146969315865725336404", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "14142146969315865725336404", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "864000", - "ethAmount": "10000008022540030092109633", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "10000008022540030092109633", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "1728000", - "ethAmount": "5000004011270015046054816", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "5000004011270015046054816", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "2592000", - "ethAmount": "2500002005635007523027408", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "2500002005635007523027408", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "3456000", - "ethAmount": "1250001002817503761513704", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "1250001002817503761513704", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "4320000", - "ethAmount": "625000501408751880756852", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "625000501408751880756852", + "targetAmount": "10000000000000000000000000" }, { "timestamp": "8640000", - "ethAmount": "19531265669023496273651", - "tokenAmount": "10000000000000000000000000" + "sourceAmount": "19531265669023496273651", + "targetAmount": "10000000000000000000000000" } ], - "initialPriceEthAmount": "10000000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000000" + "initialPriceSourceAmount": "10000000000000000000000000", + "initialPriceTargetAmount": "10000000000000000000000000" } ] } diff --git a/test/helpers/data/polPricingTestDataEth.json b/test/helpers/data/polPricingTestDataEth.json deleted file mode 100644 index 8a87725c..00000000 --- a/test/helpers/data/polPricingTestDataEth.json +++ /dev/null @@ -1,3084 +0,0 @@ -{ - "testCase": [ - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "100", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "200" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "186" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "174" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "141" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "100" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "50" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "25" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "12" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "6" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "0" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "1000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "2000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "1866067480132519632" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "1741102523397596730" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "1414214696931586572" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "1000000802254003009" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "500000401127001504" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "250000200563500752" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "125000100281750376" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "62500050140875188" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "1953126566902349" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "10000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "20000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "18660674801325196320" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "17411025233975967307" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "14142146969315865725" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "10000008022540030092" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "5000004011270015046" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "2500002005635007523" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "1250001002817503761" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "625000501408751880" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "19531265669023496" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "100000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "200000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "186606748013251963208" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "174110252339759673075" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "141421469693158657253" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "100000080225400300921" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "50000040112700150460" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "25000020056350075230" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "12500010028175037615" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "6250005014087518807" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "195312656690234962" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "1000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "2000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "1866067480132519632088" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "1741102523397596730750" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "1414214696931586572533" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "62500050140875188075" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "1953126566902349627" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "1200000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "2400000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "2239280976159023558506" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "2089323028077116076900" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "1697057636317903887040" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "75000060169050225690" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "2343751880282819552" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "1500000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "3000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "2799101220198779448133" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "2611653785096395096126" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "2121322045397379858800" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "93750075211312782113" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "2929689850353524441" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "2000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "4000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "3732134960265039264177" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "3482205046795193461501" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "2828429393863173145067" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "2000001604508006018421" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "3906253133804699254" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "2400000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "4800000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "4478561952318047117012" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "4178646056154232153801" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "3394115272635807774080" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "2400001925409607222106" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "4687503760565639105" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "3000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "6000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "5598202440397558896266" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "5223307570192790192252" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "4242644090794759717600" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "3000002406762009027632" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "5859379700707048882" - } - ] - }, - { - "initialPriceEthAmount": "100", - "initialPriceTokenAmount": "10000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100", - "tokenAmount": "20000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100", - "tokenAmount": "18660674801325196320886" - }, - { - "timestamp": "172800", - "ethAmount": "100", - "tokenAmount": "17411025233975967307506" - }, - { - "timestamp": "432000", - "ethAmount": "100", - "tokenAmount": "14142146969315865725336" - }, - { - "timestamp": "864000", - "ethAmount": "100", - "tokenAmount": "10000008022540030092109" - }, - { - "timestamp": "1728000", - "ethAmount": "100", - "tokenAmount": "5000004011270015046054" - }, - { - "timestamp": "2592000", - "ethAmount": "100", - "tokenAmount": "2500002005635007523027" - }, - { - "timestamp": "3456000", - "ethAmount": "100", - "tokenAmount": "1250001002817503761513" - }, - { - "timestamp": "4320000", - "ethAmount": "100", - "tokenAmount": "625000501408751880756" - }, - { - "timestamp": "8640000", - "ethAmount": "100", - "tokenAmount": "19531265669023496273" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "100", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "200" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "186" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "174" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "141" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "100" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "50" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "25" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "12" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "6" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "0" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "1000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "2000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "1866067480132519632" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "1741102523397596730" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1414214696931586572" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1000000802254003009" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "500000401127001504" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "250000200563500752" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "125000100281750376" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "62500050140875188" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1953126566902349" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "10000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "20000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "18660674801325196320" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "17411025233975967307" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "14142146969315865725" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "10000008022540030092" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "5000004011270015046" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "2500002005635007523" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1250001002817503761" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "625000501408751880" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "19531265669023496" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "100000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "200000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "186606748013251963208" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "174110252339759673075" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "141421469693158657253" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "100000080225400300921" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "50000040112700150460" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "25000020056350075230" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "12500010028175037615" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "6250005014087518807" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "195312656690234962" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "2000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "1866067480132519632088" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "1741102523397596730750" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1414214696931586572533" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "62500050140875188075" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1953126566902349627" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "1200000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "2400000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "2239280976159023558506" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "2089323028077116076900" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1697057636317903887040" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "75000060169050225690" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "2343751880282819552" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "1500000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "3000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "2799101220198779448133" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "2611653785096395096126" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "2121322045397379858800" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "93750075211312782113" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "2929689850353524441" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "2000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "4000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "3732134960265039264177" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "3482205046795193461501" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "2828429393863173145067" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "2000001604508006018421" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "3906253133804699254" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "2400000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "4800000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "4478561952318047117012" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "4178646056154232153801" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "3394115272635807774080" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "2400001925409607222106" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "4687503760565639105" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "3000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "6000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "5598202440397558896266" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "5223307570192790192252" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "4242644090794759717600" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "3000002406762009027632" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "5859379700707048882" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000", - "tokenAmount": "20000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000", - "tokenAmount": "18660674801325196320886" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000", - "tokenAmount": "17411025233975967307506" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000", - "tokenAmount": "14142146969315865725336" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000", - "tokenAmount": "10000008022540030092109" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000", - "tokenAmount": "5000004011270015046054" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000", - "tokenAmount": "2500002005635007523027" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000", - "tokenAmount": "1250001002817503761513" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000", - "tokenAmount": "625000501408751880756" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000", - "tokenAmount": "19531265669023496273" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "100", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "200" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "186" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "174" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "141" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "100" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "50" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "25" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "12" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "6" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "0" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "1000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "2000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "1866067480132519632" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "1741102523397596730" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1414214696931586572" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1000000802254003009" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "500000401127001504" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "250000200563500752" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "125000100281750376" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "62500050140875188" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1953126566902349" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "10000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "20000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "18660674801325196320" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "17411025233975967307" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "14142146969315865725" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "10000008022540030092" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "5000004011270015046" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "2500002005635007523" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1250001002817503761" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "625000501408751880" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "19531265669023496" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "100000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "200000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "186606748013251963208" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "174110252339759673075" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "141421469693158657253" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "100000080225400300921" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "50000040112700150460" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "25000020056350075230" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "12500010028175037615" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "6250005014087518807" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "195312656690234962" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "2000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "1866067480132519632088" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "1741102523397596730750" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1414214696931586572533" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "62500050140875188075" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1953126566902349627" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "1200000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "2400000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "2239280976159023558506" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "2089323028077116076900" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1697057636317903887040" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "75000060169050225690" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "2343751880282819552" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "1500000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "3000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "2799101220198779448133" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "2611653785096395096126" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "2121322045397379858800" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "93750075211312782113" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "2929689850353524441" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "2000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "4000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "3732134960265039264177" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "3482205046795193461501" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "2828429393863173145067" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "2000001604508006018421" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "3906253133804699254" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "2400000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "4800000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "4478561952318047117012" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "4178646056154232153801" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "3394115272635807774080" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "2400001925409607222106" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "4687503760565639105" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "3000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "6000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "5598202440397558896266" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "5223307570192790192252" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "4242644090794759717600" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "3000002406762009027632" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "5859379700707048882" - } - ] - }, - { - "initialPriceEthAmount": "10000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "10000000000000000000", - "tokenAmount": "20000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "10000000000000000000", - "tokenAmount": "18660674801325196320886" - }, - { - "timestamp": "172800", - "ethAmount": "10000000000000000000", - "tokenAmount": "17411025233975967307506" - }, - { - "timestamp": "432000", - "ethAmount": "10000000000000000000", - "tokenAmount": "14142146969315865725336" - }, - { - "timestamp": "864000", - "ethAmount": "10000000000000000000", - "tokenAmount": "10000008022540030092109" - }, - { - "timestamp": "1728000", - "ethAmount": "10000000000000000000", - "tokenAmount": "5000004011270015046054" - }, - { - "timestamp": "2592000", - "ethAmount": "10000000000000000000", - "tokenAmount": "2500002005635007523027" - }, - { - "timestamp": "3456000", - "ethAmount": "10000000000000000000", - "tokenAmount": "1250001002817503761513" - }, - { - "timestamp": "4320000", - "ethAmount": "10000000000000000000", - "tokenAmount": "625000501408751880756" - }, - { - "timestamp": "8640000", - "ethAmount": "10000000000000000000", - "tokenAmount": "19531265669023496273" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "100", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "200" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "186" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "174" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "141" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "100" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "50" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "25" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "12" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "6" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "0" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "1000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "2000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "1866067480132519632" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "1741102523397596730" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1414214696931586572" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1000000802254003009" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "500000401127001504" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "250000200563500752" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "125000100281750376" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "62500050140875188" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1953126566902349" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "10000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "20000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "18660674801325196320" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "17411025233975967307" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "14142146969315865725" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "10000008022540030092" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "5000004011270015046" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "2500002005635007523" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1250001002817503761" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "625000501408751880" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "19531265669023496" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "100000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "200000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "186606748013251963208" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "174110252339759673075" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "141421469693158657253" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "100000080225400300921" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "50000040112700150460" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "25000020056350075230" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "12500010028175037615" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "6250005014087518807" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "195312656690234962" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "2000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "1866067480132519632088" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "1741102523397596730750" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1414214696931586572533" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "62500050140875188075" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1953126566902349627" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "1200000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "2400000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "2239280976159023558506" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "2089323028077116076900" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1697057636317903887040" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "75000060169050225690" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "2343751880282819552" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "1500000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "3000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "2799101220198779448133" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "2611653785096395096126" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "2121322045397379858800" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "93750075211312782113" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "2929689850353524441" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "2000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "4000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "3732134960265039264177" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "3482205046795193461501" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "2828429393863173145067" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "2000001604508006018421" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "3906253133804699254" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "2400000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "4800000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "4478561952318047117012" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "4178646056154232153801" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "3394115272635807774080" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "2400001925409607222106" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "4687503760565639105" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "3000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "6000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "5598202440397558896266" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "5223307570192790192252" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "4242644090794759717600" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "3000002406762009027632" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "5859379700707048882" - } - ] - }, - { - "initialPriceEthAmount": "100000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "100000000000000000000", - "tokenAmount": "20000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "100000000000000000000", - "tokenAmount": "18660674801325196320886" - }, - { - "timestamp": "172800", - "ethAmount": "100000000000000000000", - "tokenAmount": "17411025233975967307506" - }, - { - "timestamp": "432000", - "ethAmount": "100000000000000000000", - "tokenAmount": "14142146969315865725336" - }, - { - "timestamp": "864000", - "ethAmount": "100000000000000000000", - "tokenAmount": "10000008022540030092109" - }, - { - "timestamp": "1728000", - "ethAmount": "100000000000000000000", - "tokenAmount": "5000004011270015046054" - }, - { - "timestamp": "2592000", - "ethAmount": "100000000000000000000", - "tokenAmount": "2500002005635007523027" - }, - { - "timestamp": "3456000", - "ethAmount": "100000000000000000000", - "tokenAmount": "1250001002817503761513" - }, - { - "timestamp": "4320000", - "ethAmount": "100000000000000000000", - "tokenAmount": "625000501408751880756" - }, - { - "timestamp": "8640000", - "ethAmount": "100000000000000000000", - "tokenAmount": "19531265669023496273" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "100", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "200" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "186" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "174" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "141" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "100" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "50" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "25" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "12" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "6" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "0" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1866067480132519632" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1741102523397596730" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1414214696931586572" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1000000802254003009" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "500000401127001504" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "250000200563500752" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "125000100281750376" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "62500050140875188" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1953126566902349" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "20000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "18660674801325196320" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "17411025233975967307" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "14142146969315865725" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "10000008022540030092" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "5000004011270015046" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2500002005635007523" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1250001002817503761" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "625000501408751880" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "19531265669023496" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "100000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "200000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "186606748013251963208" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "174110252339759673075" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "141421469693158657253" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "100000080225400300921" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "50000040112700150460" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "25000020056350075230" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "12500010028175037615" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "6250005014087518807" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "195312656690234962" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "1000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1866067480132519632088" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1741102523397596730750" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1414214696931586572533" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "62500050140875188075" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1953126566902349627" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "1200000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2400000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2239280976159023558506" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2089323028077116076900" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1697057636317903887040" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "75000060169050225690" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2343751880282819552" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "1500000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "3000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2799101220198779448133" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2611653785096395096126" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2121322045397379858800" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "93750075211312782113" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2929689850353524441" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "2000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "4000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "3732134960265039264177" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "3482205046795193461501" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2828429393863173145067" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2000001604508006018421" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1000000802254003009210" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "500000401127001504605" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "250000200563500752302" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "125000100281750376151" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "3906253133804699254" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "2400000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "4800000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "4478561952318047117012" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "4178646056154232153801" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "3394115272635807774080" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2400001925409607222106" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1200000962704803611053" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "600000481352401805526" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "300000240676200902763" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "150000120338100451381" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "4687503760565639105" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "3000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "6000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "5598202440397558896266" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "5223307570192790192252" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "4242644090794759717600" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "3000002406762009027632" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1500001203381004513816" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "750000601690502256908" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "375000300845251128454" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "187500150422625564227" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "5859379700707048882" - } - ] - }, - { - "initialPriceEthAmount": "1000000000000000000000", - "initialPriceTokenAmount": "10000000000000000000000", - "tokenPriceAtTimestamps": [ - { - "timestamp": "1", - "ethAmount": "1000000000000000000000", - "tokenAmount": "20000000000000000000000" - }, - { - "timestamp": "86400", - "ethAmount": "1000000000000000000000", - "tokenAmount": "18660674801325196320886" - }, - { - "timestamp": "172800", - "ethAmount": "1000000000000000000000", - "tokenAmount": "17411025233975967307506" - }, - { - "timestamp": "432000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "14142146969315865725336" - }, - { - "timestamp": "864000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "10000008022540030092109" - }, - { - "timestamp": "1728000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "5000004011270015046054" - }, - { - "timestamp": "2592000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "2500002005635007523027" - }, - { - "timestamp": "3456000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "1250001002817503761513" - }, - { - "timestamp": "4320000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "625000501408751880756" - }, - { - "timestamp": "8640000", - "ethAmount": "1000000000000000000000", - "tokenAmount": "19531265669023496273" - } - ] - } - ] -}